File: /var/www/BKP/dhoi_stage20210510.sql
-- MySQL dump 10.13 Distrib 5.7.33, for Linux (x86_64)
--
-- Host: localhost Database: dhoi_stage
-- ------------------------------------------------------
-- Server version 5.7.33-0ubuntu0.18.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_actionscheduler_actions`
--
DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_actions` (
`action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`hook` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`scheduled_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`scheduled_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`args` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`schedule` longtext COLLATE utf8mb4_unicode_ci,
`group_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`attempts` int(11) NOT NULL DEFAULT '0',
`last_attempt_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_attempt_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`claim_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`extended_args` varchar(8000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`action_id`),
KEY `hook` (`hook`),
KEY `status` (`status`),
KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
KEY `args` (`args`),
KEY `group_id` (`group_id`),
KEY `last_attempt_gmt` (`last_attempt_gmt`),
KEY `claim_id` (`claim_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1277 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_actions`
--
LOCK TABLES `wp_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_actions` VALUES (1276,'woocommerce_update_marketplace_suggestions','complete','2021-04-14 09:45:57','2021-04-14 05:45:57','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1618393557;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1618393557;}',0,1,'2021-04-14 09:46:23','2021-04-14 05:46:23',0,NULL);
/*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_actionscheduler_claims`
--
DROP TABLE IF EXISTS `wp_actionscheduler_claims`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_claims` (
`claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`claim_id`),
KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=253 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_claims`
--
LOCK TABLES `wp_actionscheduler_claims` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_claims` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_actionscheduler_claims` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_actionscheduler_groups`
--
DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_groups` (
`group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`group_id`),
KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_groups`
--
LOCK TABLES `wp_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'woocommerce-db-updates'),(3,'wc_update_product_lookup_tables');
/*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_actionscheduler_logs`
--
DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_actionscheduler_logs` (
`log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`action_id` bigint(20) unsigned NOT NULL,
`message` text COLLATE utf8mb4_unicode_ci NOT NULL,
`log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`log_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`log_id`),
KEY `action_id` (`action_id`),
KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=502 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_logs`
--
LOCK TABLES `wp_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_logs` VALUES (499,1276,'action created','2021-04-14 09:45:58','2021-04-14 05:45:58'),(500,1276,'action started via Async Request','2021-04-14 09:46:22','2021-04-14 05:46:22'),(501,1276,'action complete via Async Request','2021-04-14 09:46:23','2021-04-14 05:46:23');
/*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` text COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10)),
KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (2,989,'Fire rated openings | dhoi','','https://dhoistage.concertium.com/fire-rated-openings/','162.144.195.204','2019-01-28 08:55:44','2019-01-28 13:55:44','[…] Sawgrass Marriott Golf Resort & Spa The Florida Aquarium […]',0,'0','The Incutio XML-RPC PHP Library -- WordPress/3.9.26','pingback',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=MyISAM AUTO_INCREMENT=28439 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','https://dhoistage.concertium.com/','yes'),(2,'blogname','dhoi','yes'),(3,'blogdescription','Door & Hardware Openings Inc.','yes'),(4,'users_can_register','0','yes'),(5,'admin_email','monika.webmaster2012@gmail.com','yes'),(6,'start_of_week','1','yes'),(7,'use_balanceTags','0','yes'),(8,'use_smilies','1','yes'),(9,'require_name_email','1','yes'),(10,'comments_notify','1','yes'),(11,'posts_per_rss','10','yes'),(12,'rss_use_excerpt','1','yes'),(13,'mailserver_url','mail.example.com','yes'),(14,'mailserver_login','login@example.com','yes'),(15,'mailserver_pass','password','yes'),(16,'mailserver_port','110','yes'),(17,'default_category','1','yes'),(18,'default_comment_status','open','yes'),(19,'default_ping_status','open','yes'),(20,'default_pingback_flag','1','yes'),(21,'posts_per_page','10','yes'),(22,'date_format','F j, Y','yes'),(23,'time_format','g:i a','yes'),(24,'links_updated_date_format','F j, Y g:i a','yes'),(25,'comment_moderation','0','yes'),(26,'moderation_notify','1','yes'),(27,'permalink_structure','/%postname%/','yes'),(29,'hack_file','0','yes'),(30,'blog_charset','UTF-8','yes'),(31,'moderation_keys','','no'),(32,'active_plugins','a:4:{i:0;s:37:\"address-geocoder/address-geocoder.php\";i:1;s:33:\"classic-editor/classic-editor.php\";i:2;s:25:\"media-upload-meta-box.php\";i:3;s:27:\"woocommerce/woocommerce.php\";}','yes'),(33,'home','https://dhoistage.concertium.com/','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(37,'comment_max_links','2','yes'),(38,'gmt_offset','','yes'),(39,'default_email_category','1','yes'),(40,'recently_edited','a:5:{i:0;s:86:\"/var/www/dhoistage.concertium.com/wp-content/themes/dohi/page-templates/contact-us.php\";i:2;s:67:\"/var/www/dhoistage.concertium.com/wp-content/themes/dohi/footer.php\";i:3;s:66:\"/var/www/dhoistage.concertium.com/wp-content/themes/dohi/style.css\";i:4;s:66:\"/home/codeuridco/public_html/dhoi/wp-content/themes/dohi/style.css\";i:5;s:85:\"/home/codeuridco/public_html/dhoi/wp-content/themes/dohi/page-templates/home-page.php\";}','no'),(41,'template','dohi','yes'),(42,'stylesheet','dohi','yes'),(25048,'finished_updating_comment_type','1','yes'),(45,'comment_registration','0','yes'),(46,'html_type','text/html','yes'),(47,'use_trackback','0','yes'),(48,'default_role','subscriber','yes'),(49,'db_version','49752','yes'),(50,'uploads_use_yearmonth_folders','1','yes'),(51,'upload_path','','yes'),(52,'blog_public','1','yes'),(53,'default_link_category','2','yes'),(54,'show_on_front','page','yes'),(55,'tag_base','','yes'),(56,'show_avatars','1','yes'),(57,'avatar_rating','G','yes'),(58,'upload_url_path','','yes'),(59,'thumbnail_size_w','150','yes'),(60,'thumbnail_size_h','150','yes'),(61,'thumbnail_crop','1','yes'),(62,'medium_size_w','300','yes'),(63,'medium_size_h','300','yes'),(64,'avatar_default','mystery','yes'),(65,'large_size_w','1024','yes'),(66,'large_size_h','1024','yes'),(67,'image_default_link_type','file','yes'),(68,'image_default_size','','yes'),(69,'image_default_align','','yes'),(70,'close_comments_for_old_posts','0','yes'),(71,'close_comments_days_old','14','yes'),(72,'thread_comments','1','yes'),(73,'thread_comments_depth','5','yes'),(74,'page_comments','0','yes'),(75,'comments_per_page','50','yes'),(76,'default_comments_page','newest','yes'),(77,'comment_order','asc','yes'),(78,'sticky_posts','a:0:{}','yes'),(79,'widget_categories','a: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'),(80,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(82,'uninstall_plugins','a:1:{s:29:\"go_portfolio/go_portfolio.php\";a:2:{i:0;s:15:\"GW_Go_Portfolio\";i:1;s:9:\"uninstall\";}}','no'),(83,'timezone_string','America/New_York','yes'),(84,'page_for_posts','0','yes'),(85,'page_on_front','5','yes'),(86,'default_post_format','0','yes'),(87,'link_manager_enabled','0','yes'),(88,'initial_db_version','27916','yes'),(89,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:114:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s: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;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','yes'),(25213,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(90,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(91,'widget_recent-posts','a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;i:4;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;s:9:\"show_date\";b:1;}}','yes'),(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'),(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'),(94,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'sidebars_widgets','a:5:{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:1:{i:0;s:14:\"recent-posts-4\";}s:13:\"array_version\";i:3;}','yes'),(96,'cron','a:16:{i:1620629680;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1620630873;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1620631608;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1620631660;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1620631689;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1620642408;a:2:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1620642690;a:1:{s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1620644778;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:1620644816;a:2:{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: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:1620646079;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1620656869;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1620667669;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1620705600;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1621074408;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1621253773;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}s:7:\"version\";i:2;}','yes'),(4005,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:30:\"monika.webmaster2012@gmail.com\";s:7:\"version\";s:5:\"5.7.1\";s:9:\"timestamp\";i:1618547596;}','no'),(528,'toll_free','(877) 431- DHOI','yes'),(537,'company_email_url','mailto:info@dhoi.com','yes'),(546,'map_address','PO Box 22322 Tampa, FL 33622','yes'),(678,'wpcf7','a:1:{s:7:\"version\";s:5:\"3.9.1\";}','yes'),(699,'contact_email_url','mailto:mgonzalez@dhoi.com','yes'),(707,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(1784,'WP_CLIENT_KEY','','yes'),(1802,'gw_go_portfolio_templates','a:6:{s:7:\"default\";a:5:{s:4:\"name\";s:18:\"Default Template 1\";s:11:\"description\";s:18:\"Default Template 1\";s:9:\"json_file\";s:12:\"default.json\";s:8:\"tpl_file\";s:12:\"default.html\";s:4:\"data\";s:342:\"<div class=\"gw-gopf-post\">\r\n <div class=\"gw-gopf-post-header\">\r\n \r\n {{post_media}}\r\n </div>\r\n <div class=\"gw-gopf-post-content-wraps\">\r\n <div class=\"gw-gopf-post-contents\">\r\n <div class=\"gw-gopf-post-titles\"><a href=\"{{post_link}}\" target=\"{{post_link_target}}\">{{post_title}}</a></div>\r\n \r\n </div> \r\n </div> \r\n</div>\";}s:8:\"default2\";a:5:{s:4:\"name\";s:28:\"Default Template 2 (no date)\";s:11:\"description\";s:28:\"Default Template 2 (no date)\";s:9:\"json_file\";s:13:\"default2.json\";s:8:\"tpl_file\";s:13:\"default2.html\";s:4:\"data\";s:618:\"<div class=\"gw-gopf-post\">\r\n <div class=\"gw-gopf-post-header\">\r\n <div class=\"gw-gopf-post-overlay\">{{post_overlay_buttons}}</div>\r\n {{post_media}}\r\n </div>\r\n <div class=\"gw-gopf-post-content-wrap\">\r\n <div class=\"gw-gopf-post-content\">\r\n <div class=\"gw-gopf-post-title\"><h2><a href=\"{{post_link}}\" target=\"{{post_link_target}}\">{{post_title}}</a></h2></div>\r\n <div class=\"gw-gopf-post-excerpt\">{{post_excerpt}}</div>\r\n <div class=\"gw-gopf-post-more\"><a href=\"{{post_link}}\" class=\"{{post_button_style}}\" target=\"{{post_link_target}}\">{{post_button_text}}</a></div>\r\n </div> \r\n </div> \r\n</div>\";}s:8:\"default3\";a:5:{s:4:\"name\";s:36:\"Default Template 3 (no title & date)\";s:11:\"description\";s:36:\"Default Template 3 (no title & date)\";s:9:\"json_file\";s:13:\"default3.json\";s:8:\"tpl_file\";s:13:\"default3.html\";s:4:\"data\";s:494:\"<div class=\"gw-gopf-post\">\r\n <div class=\"gw-gopf-post-header\">\r\n <div class=\"gw-gopf-post-overlay\">{{post_overlay_buttons}}</div>\r\n {{post_media}}\r\n </div>\r\n <div class=\"gw-gopf-post-content-wrap\">\r\n <div class=\"gw-gopf-post-content\">\r\n <div class=\"gw-gopf-post-excerpt\">{{post_excerpt}}</div>\r\n <div class=\"gw-gopf-post-more\"><a href=\"{{post_link}}\" class=\"{{post_button_style}}\" target=\"{{post_link_target}}\">{{post_button_text}}</a></div>\r\n </div> \r\n </div> \r\n</div>\";}s:8:\"default4\";a:5:{s:4:\"name\";s:33:\"Default Template 4 (only excerpt)\";s:11:\"description\";s:33:\"Default Template 4 (only excerpt)\";s:9:\"json_file\";s:13:\"default4.json\";s:8:\"tpl_file\";s:13:\"default4.html\";s:4:\"data\";s:344:\"<div class=\"gw-gopf-post\">\r\n <div class=\"gw-gopf-post-header\">\r\n <div class=\"gw-gopf-post-overlay\">{{post_overlay_buttons}}</div>\r\n {{post_media}}\r\n </div>\r\n <div class=\"gw-gopf-post-content-wrap\">\r\n <div class=\"gw-gopf-post-content\">\r\n <div class=\"gw-gopf-post-excerpt\">{{post_excerpt}}</div>\r\n </div> \r\n </div> \r\n</div>\";}s:11:\"woocommerce\";a:5:{s:4:\"name\";s:22:\"WooCommerce Template 1\";s:11:\"description\";s:22:\"WooCommerce Template 1\";s:9:\"json_file\";s:16:\"woocommerce.json\";s:8:\"tpl_file\";s:16:\"woocommerce.html\";s:4:\"data\";s:703:\"<div class=\"gw-gopf-post\">\r\n <div class=\"gw-gopf-post-header\">\r\n <div class=\"gw-gopf-post-overlay\">{{post_overlay_buttons}}</div>\r\n {{woo_on_sale}}\r\n {{post_media}}\r\n </div>\r\n <div class=\"gw-gopf-post-content-wrap\">\r\n <div class=\"gw-gopf-post-content\">\r\n <div class=\"gw-gopf-post-title\"><h2><a href=\"{{post_link}}\" target=\"{{post_link_target}}\">{{post_title}}</a></h2></div>\r\n <div class=\"gw-gopf-post-woo-price\">{{woo_price}}</div>\r\n <div class=\"gw-gopf-post-excerpt\">{{post_excerpt}}</div>\r\n <div class=\"gw-gopf-post-more\"><a href=\"{{woo_add_to_cart}}\" class=\"{{post_button_style}}\" target=\"{{post_link_target}}\">{{post_button_text}}</a></div>\r\n </div> \r\n </div> \r\n</div>\";}s:12:\"woocommerce2\";a:5:{s:4:\"name\";s:22:\"WooCommerce Template 2\";s:11:\"description\";s:22:\"WooCommerce Template 2\";s:9:\"json_file\";s:17:\"woocommerce2.json\";s:8:\"tpl_file\";s:17:\"woocommerce2.html\";s:4:\"data\";s:730:\"<div class=\"gw-gopf-post\">\r\n <div class=\"gw-gopf-post-header\">\r\n <div class=\"gw-gopf-post-overlay\">{{post_overlay_buttons}}</div>\r\n {{woo_on_sale}}\r\n {{post_media}}\r\n </div>\r\n <div class=\"gw-gopf-post-content-wrap\">\r\n <div class=\"gw-gopf-post-content\">\r\n <div class=\"gw-gopf-post-title gw-gopf-post-highlight-box\"><h2><a href=\"{{post_link}}\" target=\"{{post_link_target}}\">{{post_title}}</a></h2></div>\r\n <div class=\"gw-gopf-post-woo-price\">{{woo_price}}</div>\r\n <div class=\"gw-gopf-post-excerpt\">{{post_excerpt}}</div>\r\n <div class=\"gw-gopf-post-more\"><a href=\"{{woo_add_to_cart}}\" class=\"{{post_button_style}}\" target=\"{{post_link_target}}\">{{post_button_text}}</a></div>\r\n </div> \r\n </div> \r\n</div>\";}}','yes'),(186,'facebook_fan_page_url','http://www.facebook.com/dohi','yes'),(187,'google_plus_page_url','http://www.google.com','yes'),(188,'twitter_fan_page_url','#','yes'),(189,'pinterest_page_url','#','yes'),(190,'instagram_page_url','#','yes'),(191,'phone_no','(813) 281 - 0474','yes'),(192,'another_phone_no','987654321','yes'),(193,'powered_by','Shield Watch','yes'),(196,'fax_no','(813) 281 - 0584','yes'),(25145,'product_cat_children','a:3:{i:13;a:11:{i:0;i:16;i:1;i:17;i:2;i:18;i:3;i:19;i:4;i:20;i:5;i:21;i:6;i:22;i:7;i:23;i:8;i:25;i:9;i:28;i:10;i:34;}i:14;a:1:{i:0;i:24;}i:15;a:2:{i:0;i:32;i:1;i:33;}}','yes'),(128,'_transient_random_seed','3e44359e332e5700fabee70bd8b1a54b','yes'),(184,'dhoi_video_url','http://www.youtube.com/','yes'),(185,'company_email','info@dhoi.com','yes'),(1884,'gw_go_portfolio_cpts','a:1:{s:13:\"53e0e55be3ee0\";a:8:{s:6:\"uniqid\";s:13:\"53e0e55be3ee0\";s:4:\"name\";s:13:\"dhoi projects\";s:13:\"singular_name\";s:12:\"dhoi project\";s:4:\"slug\";s:12:\"dhoi-project\";s:11:\"has-archive\";s:1:\"1\";s:7:\"enabled\";s:1:\"1\";s:14:\"custom-tax-cat\";s:1:\"1\";s:14:\"custom-tax-tag\";s:1:\"1\";}}','yes'),(134,'current_theme','dhoi','yes'),(135,'theme_mods_dohi','a:10:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:26;s:9:\"secondary\";i:27;}s:16:\"header_textcolor\";s:3:\"fff\";s:16:\"background_color\";s:6:\"f5f5f5\";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:5:\"fixed\";s:23:\"featured_content_layout\";s:4:\"grid\";s:18:\"custom_css_post_id\";i:-1;}','yes'),(136,'theme_switched','','yes'),(139,'recently_activated','a:0:{}','yes'),(227,'business_hour_sat','10am to 2pm','yes'),(1803,'gw_go_portfolio_styles','a:4:{s:5:\"delux\";a:7:{s:4:\"name\";s:11:\"DELUX Style\";s:11:\"description\";s:11:\"DELUX Style\";s:9:\"json_file\";s:10:\"delux.json\";s:8:\"css_file\";s:9:\"delux.css\";s:5:\"class\";s:19:\"gw-gopf-style-delux\";s:4:\"data\";s:25182:\"/* -------------------------------------------------------------------------------- /\r\n \r\n DELUX STYLE - v1.4\r\n \r\n You can add custom notes to code. CSS comments will be removed from the generated output.\r\n\r\n [info] Sometimes you should use \"!important\" css suffix to take the changes effect \r\n when setting a value of a CSS property (e.g. font-size: 11px !important);.\r\n \r\n TABLE OF CONTENT\r\n\r\n [0] SETUP & COMMON STYLES\r\n [1] POST FILTER CATEGORIES & SLIDER ARROWS\r\n [2] POST WRAPPER\r\n [3] MEDIA WRAP & POST OVERLAY\r\n [4] POST CONTENT\r\n [4.1] POST CONTENT - TITLE\r\n [4.2] POST CONTENT - META\r\n [4.3] POST CONTENT - EXCERPT\r\n [4.4] POST CONTENT - BUTTON\r\n [4.5] POST CONTENT - OTHER\r\n [5] WOOCOMMERCE STYLES\r\n [6] EFFECTS\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [0] SETUP & COMMON STYLES\r\n \r\n [info] The portfolio filter categories filter \"buttons\".\r\n [tip] You can set e.g. border radius, colors, etc here.\r\n \r\n/ -------------------------------------------------------------------------------- */ \r\n \r\n .gw-gopf-style-delux .gw-gopf-post-header { z-index:2; }\r\n\r\n /* Button style */\r\n .gw-gopf-style-delux a.gw-gopf-btn {\r\n color:((main_color_3));\r\n background:((main_color_1));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px; \r\n border-radius:((border_radius_2))px;\r\n display:inline-block;\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n height:29px; \r\n line-height:29px; \r\n padding:0 9px;\r\n position:relative;\r\n text-align:left;\r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n text-decoration:none !important;\r\n }\r\n \r\n .gw-gopf-style-delux a.gw-gopf-btn.gw-gopf-btn-outlined {\r\n color:((main_color_1));\r\n background:transparent;\r\n border:solid 1px ((main_color_1));\r\n height:27px; \r\n line-height:27px; \r\n padding:0 8px;\r\n } \r\n \r\n /* Hover (mouse over) state of button */\r\n .gw-gopf-style-delux a.gw-gopf-btn:hover {\r\n color:((main_color_3));\r\n background:((highlight_color));\r\n }\r\n \r\n .gw-gopf-style-delux a.gw-gopf-btn.gw-gopf-btn-outlined:hover {\r\n color:((highlight_color));\r\n background:transparent;\r\n border-color:((highlight_color));\r\n } \r\n \r\n /* Circle style */\r\n .gw-gopf-style-delux a.gw-gopf-circle {\r\n -moz-border-radius:((border_radius_3))px;\r\n -webkit-border-radius:((border_radius_3))px;\r\n border-radius:((border_radius_3))px;\r\n display:inline-block;\r\n height:44px;\r\n line-height:44px;\r\n position: relative;\r\n margin-left:3px;\r\n margin-right:3px; \r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n width:44px;\r\n }\r\n\r\n /* Highlight box */\r\n .gw-gopf-style-delux .gw-gopf-post-highlight-box {\r\n background:((highlight_color));\r\n padding:((post_padding))px; \r\n margin:-((post_padding))px;\r\n margin-bottom:((post_padding))px;\r\n }\r\n\r\n /* Highlight box content */ \r\n .gw-gopf-style-delux .gw-gopf-post-highlight-box * { \r\n color:((main_color_3)) !important;\r\n }\r\n\r\n .gw-gopf-style-delux .gw-gopf-post-highlight-box a:hover { \r\n color:((main_color_1)) !important;\r\n }\r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [1] POST FILTER CATEGORIES & SLIDER ARROWS\r\n \r\n [info] The portfolio filter categories filter \"buttons\".\r\n [tip] You can set e.g. border radius, colors, etc here.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n /* Filter categories (buttons) */\r\n .gw-gopf-style-delux .gw-gopf-cats > span a {\r\n background:((main_color_1));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px; \r\n border-radius:((border_radius_2))px; \r\n color:((main_color_3));\r\n display:block;\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px; \r\n height:29px;\r\n line-height:29px;\r\n padding:0 10px;\r\n text-decoration:none;\r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n }\r\n \r\n .gw-gopf-style-delux .gw-gopf-cats > span a.gw-gopf-btn-outlined {\r\n color:((main_color_1));\r\n background:transparent;\r\n border:solid 1px ((main_color_1));\r\n height:27px; \r\n line-height:27px; \r\n padding:0 8px;\r\n } \r\n \r\n /* Filter categories (buttons) - selected element */ \r\n .gw-gopf-style-delux .gw-gopf-cats > span.gw-gopf-current a {\r\n background:((highlight_color));\r\n }\r\n \r\n .gw-gopf-style-delux .gw-gopf-cats > span.gw-gopf-current a.gw-gopf-btn-outlined { \r\n background:transparent; \r\n border-color:((highlight_color));\r\n color:((highlight_color));\r\n } \r\n \r\n /* Filter categories (buttons) - hovered element */\r\n .gw-gopf-style-delux .gw-gopf-cats > span a:hover {\r\n background:((main_color_2));\r\n color:((main_color_3));\r\n }\r\n \r\n .gw-gopf-style-delux .gw-gopf-cats > span a.gw-gopf-btn-outlined:hover { \r\n background:transparent;\r\n border-color:((main_color_2)); \r\n color:((main_color_2));\r\n } \r\n \r\n /* Arrows (buttons) */\r\n .gw-gopf-style-delux .gw-gopf-slider-controls > div a {\r\n background:((highlight_color));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px; \r\n border-radius:((border_radius_2))px; \r\n color:((main_color_3));\r\n display:table-cell;\r\n height:29px;\r\n text-decoration:none;\r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n vertical-align:middle; \r\n width:28px;\r\n }\r\n\r\n /* Arrows (buttons) - hovered element */\r\n .gw-gopf-style-delux .gw-gopf-slider-controls > div a:hover {\r\n background:((main_color_1));\r\n }\r\n\r\n /* Arrows (buttons) - inactive */\r\n .gw-gopf-style-delux .gw-gopf-slider-controls > div a.disabled {\r\n background:((main_color_1));\r\n }\r\n \r\n /* Pagination - Load more (button) */\r\n .gw-gopf-style-delux a.gw-gopf-pagination-load-more {\r\n background:((main_color_1));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px; \r\n border-radius:((border_radius_2))px; \r\n color:((main_color_3));\r\n display:inline-block;\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px; \r\n height:29px;\r\n line-height:29px;\r\n padding:0 10px;\r\n text-decoration:none;\r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out; \r\n }\r\n \r\n /* Pagination - Load more (outlined button) */\r\n .gw-gopf-style-delux a.gw-gopf-pagination-load-more.gw-gopf-btn-outlined {\r\n color:((main_color_1));\r\n background:transparent;\r\n border:solid 1px ((main_color_1));\r\n height:27px; \r\n line-height:27px; \r\n padding:0 8px;\r\n }\r\n \r\n /* Pagination - Load more (button) - hovered */\r\n .gw-gopf-style-delux a.gw-gopf-pagination-load-more:hover { \r\n background:((main_color_2));\r\n }\r\n \r\n /* Pagination - Load more (outlined button) - hovered */\r\n .gw-gopf-style-delux a.gw-gopf-pagination-load-more.gw-gopf-btn-outlined:hover { \r\n background:transparent;\r\n border-color:((main_color_2)); \r\n color:((main_color_2));\r\n } \r\n \r\n\r\n/* -------------------------------------------------------------------------------- /\r\n \r\n [2] POST WRAPPER\r\n \r\n [info] The whole post container, including the media and content.\r\n [tip] You can set e.g. border radius or box shadow here for the the whole post.\r\n\r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-delux.gw-gopf-isotope-ready .gw-gopf-isotope .gw-gopf-isotope-item {\r\n -moz-transition:-moz-transform 0.8s, opacity 0.8s, z-index 0s 0.2s;\r\n -ms-transition:-ms-transform 0.8s, opacity 0.8s, z-index 0s 0.2s;\r\n -o-transition:-o-transform 0.8s, opacity 0.8s, z-index 0s 0.2s;\r\n -webkit-transition:-webkit-transform 0.8s, opacity 0.8s, z-index 0s 0.2s;\r\n transition:transform 0.8s, opacity 0.8s, z-index 0s 0.2s; \r\n }\r\n \r\n .gw-gopf-style-delux.gw-gopf-isotope-ready .gw-gopf-isotope .gw-gopf-isotope-item:hover {\r\n -moz-transition:-moz-transform 0.8s, opacity 0.8s, z-index 0s 0s;\r\n -ms-transition:-ms-transform 0.8s, opacity 0.8s, z-index 0s 0s;\r\n -o-transition:-o-transform 0.8s, opacity 0.8s, z-index 0s 0s;\r\n -webkit-transition:-webkit-transform 0.8s, opacity 0.8s, z-index 0s 0s;\r\n transition:transform 0.8s, opacity 0.8s, z-index 0s 0s; \r\n } \r\n \r\n .gw-gopf-style-delux .gw-gopf-post,\r\n .gw-gopf-touch.gw-gopf-style-delux .gw-gopf-post:hover {\r\n -moz-border-radius:((border_radius_1))px;\r\n -webkit-border-radius:((border_radius_1))px;\r\n border-radius:((border_radius_1))px; \r\n overflow:hidden;\r\n -moz-transition:padding 0.2s ease-in-out, margin 0.2s ease-in-out, z-index 0s 0.2s ease-in-out; \r\n -ms-transition:padding 0.2s ease-in-out, margin 0.2s ease-in-out, z-index 0s 0.2s ease-in-out;\r\n -o-transition:padding 0.2s ease-in-out, margin 0.2s ease-in-out, z-index 0s 0.2s ease-in-out;\r\n -webkit-transition:padding 0.2s ease-in-out, margin 0.2s ease-in-out, z-index 0s 0.2s ease-in-out;\r\n transition:padding 0.2s ease-in-out, margin 0.2s ease-in-out, z-index 0s 0.2s ease-in-out; \r\n z-index:2;\r\n }\r\n \r\n .gw-gopf-style-delux .gw-gopf-post:hover,\r\n .gw-gopf-touch.gw-gopf-style-delux .gw-gopf-current.gw-gopf-post {\r\n -moz-box-shadow:0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity))); \r\n -o-box-shadow:0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity)));\r\n -webkit-box-shadow:0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity)));\r\n box-shadow:0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity)));\r\n -moz-transition:padding 0.3s ease-in-out, margin 0.3s ease-in-out, z-index 0s 0s ease-in-out;\r\n -ms-transition:padding 0.3s ease-in-out, margin 0.3s ease-in-out, z-index 0s 0s ease-in-out;\r\n -o-transition:padding 0.3s ease-in-out, margin 0.3s ease-in-out, z-index 0s 0s ease-in-out;\r\n -webkit-transition:padding 0.3s ease-in-out, margin 0.3s ease-in-out, z-index 0s 0s ease-in-out;\r\n transition:padding 0.3s ease-in-out, margin 0.3s ease-in-out, z-index 0s 0s ease-in-out;\r\n z-index:3;\r\n } \r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n \r\n [3] MEDIA WRAP & POST OVERLAY\r\n \r\n [info] The whole post overlay with its content.\r\n [tip] You can set e.g. overlay circles and buttons.\r\n\r\n/ -------------------------------------------------------------------------------- */\r\n\r\n /* Light border around overlay buttons */\r\n .gw-gopf-style-delux a.gw-gopf-post-overlay-btn:before {\r\n background:((main_color_3)); \r\n content:\'\';\r\n display:block;\r\n height:100%;\r\n left:0;\r\n filter:alpha(opacity=35); /* IE 5-7 */\r\n -ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=35)\"; /* IE 8 */\r\n -khtml-opacity:35; /* Safari 1.x */\r\n -moz-opacity:0.35; /* Netscape */\r\n opacity:0.35;\r\n position:absolute;\r\n padding:5px 5px 5px 0;\r\n top:-5px;\r\n width:100%;\r\n z-index:-1;\r\n }\r\n \r\n .gw-gopf-style-delux a.gw-gopf-post-overlay-btn.gw-gopf-btn-outlined:before {\r\n top:-6px;\r\n padding:6px 6px 6px 0;\r\n }\r\n \r\n .gw-gopf-style-delux a.gw-gopf-post-overlay-btn:first-child:before { \r\n left:-5px; \r\n padding:5px;\r\n }\r\n \r\n .gw-gopf-style-delux a.gw-gopf-post-overlay-btn.gw-gopf-btn-outlined:first-child:before { \r\n left:-6px; \r\n padding:6px 7px 6px 6px;\r\n } \r\n\r\n /* Overlay button - circle style - normal state */\r\n .gw-gopf-style-delux a.gw-gopf-post-overlay-circle { \r\n background:((main_color_1));\r\n } \r\n \r\n /* Overlay button - circle style - hover state */\r\n .gw-gopf-style-delux a.gw-gopf-post-overlay-circle:hover { \r\n background:((highlight_color));\r\n }\r\n \r\n /* Overlay button - button style */\r\n .gw-gopf-style-delux a.gw-gopf-post-overlay-btn {\r\n height:39px;\r\n line-height:39px;\r\n margin-left:5px;\r\n padding:0 15px;\r\n text-transform:uppercase;\r\n }\r\n \r\n .gw-gopf-style-delux a.gw-gopf-post-overlay-btn.gw-gopf-btn-outlined {\r\n height:37px;\r\n line-height:37px;\r\n padding:0 14px;\r\n } \r\n \r\n .gw-gopf-style-delux a.gw-gopf-post-overlay-btn:first-child {\r\n margin:0;\r\n }\r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4] POST CONTENT\r\n \r\n [info] Includes the title, post meta data (e.g. date), the excerpt and read more button or link.\r\n [tip] You can set e.g. padding, etc here.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-delux .gw-gopf-post-content-wrap {\r\n position:absolute;\r\n width:100%;\r\n z-index:1;\r\n }\r\n \r\n .gw-gopf-style-delux .gw-gopf-post-content-wrap:before { \r\n background-color:((post_content_color)); \r\n opacity:((post_opacity));\r\n }\r\n\r\n .gw-gopf-style-delux .gw-gopf-post-content { \r\n color:((main_color_1)); \r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n line-height:((line_height_m))px; \r\n padding:((post_padding))px;\r\n }\r\n \r\n /* General link style */\r\n .gw-gopf-style-delux .gw-gopf-post-content a {\r\n color:((highlight_color));\r\n }\r\n \r\n .gw-gopf-style-delux .gw-gopf-post-content a:hover {\r\n color:((main_color_1)); \r\n } \r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.1] POST CONTENT - TITLE\r\n \r\n [info] The post title.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n /* The title */\r\n .gw-gopf-style-delux .gw-gopf-post-content h2 {\r\n color:((main_color_1)) !important;\r\n font-family:((font_family_l)) !important;\r\n font-size:((font_size_l))px !important;\r\n line-height:((line_height_l))px !important;\r\n text-transform:uppercase;\r\n }\r\n \r\n /* The link inside the title */\r\n .gw-gopf-style-delux .gw-gopf-post-content h2 a {\r\n color:inherit;\r\n font-size:inherit !important;\r\n line-height:inherit !important; \r\n }\r\n \r\n /* Hover state - The link inside the title */\r\n .gw-gopf-style-delux .gw-gopf-post-content h2 a:hover { color:((main_color_1)); }\r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.2] POST CONTENT - META\r\n \r\n [info] The post meta data e.g. post date.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-delux .gw-gopf-post-meta {\r\n color:((main_color_2));\r\n font-family:((font_family_s));\r\n font-size:((font_size_s))px; \r\n line-height:((line_height_s))px;\r\n }\r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.3] POST CONTENT - EXCERPT\r\n \r\n [info] The post excerpt.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-delux .gw-gopf-post-excerpt {\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n line-height:((line_height_m))px !important; \r\n margin-top:15px;\r\n }\r\n \r\n .gw-gopf-style-delux .gw-gopf-post-excerpt p { \r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n line-height:((line_height_m))px !important;\r\n margin:0 0 15px !important;\r\n padding:0 !important; \r\n }\r\n \r\n .gw-gopf-style-delux .gw-gopf-post-excerpt p:last-child { \r\n margin:0 !important;\r\n padding:0 !important;\r\n }\r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.4] POST CONTENT - BUTTON\r\n \r\n [info] The read more button or link\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-delux .gw-gopf-post-more { margin-top:15px; }\r\n \r\n /* Link style - without classname */\r\n .gw-gopf-style-delux .gw-gopf-post-more a {\r\n color:((main_color_1));\r\n font-size:((font_size_m))px;\r\n font-weight:bold;\r\n margin-top:15px;\r\n }\r\n \r\n /* Hover (mouse over) state of link */\r\n .gw-gopf-style-delux .gw-gopf-post-more a:hover { color:((highlight_color)); }\r\n \r\n /* Button style - with \"gw-gopf-btn\" classname */\r\n .gw-gopf-style-delux .gw-gopf-post-more a.gw-gopf-btn {\r\n color:((main_color_3));\r\n font-weight:normal; \r\n margin-top:-3px;\r\n text-transform:uppercase;\r\n }\r\n \r\n .gw-gopf-style-delux .gw-gopf-post-more a.gw-gopf-btn.gw-gopf-btn-outlined { color:((main_color_1)); }\r\n \r\n .gw-gopf-style-delux .gw-gopf-post-more a.gw-gopf-btn.gw-gopf-btn-outlined:hover { color:((highlight_color)); } \r\n \r\n /* Space between buttons */\r\n .gw-gopf-style-delux .gw-gopf-post-more a.gw-gopf-btn { margin-left:10px }\r\n .gw-gopf-style-delux .gw-gopf-post-more a.gw-gopf-btn:first-child { margin-left:0; } \r\n \r\n \r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.5] POST CONTENT - OTHER\r\n \r\n [info] Highlight box, etc.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-delux .gw-gopf-post-content > *:first-child { margin-top:0 !important; }\r\n\r\n /* Highlight box */\r\n .gw-gopf-style-delux div.gw-gopf-post-highlight-box, .gw-gopf-style-delux div.gw-gopf-post-highlight-box:first-child {\r\n background:((highlight_color));\r\n padding:((post_padding))px; \r\n margin:-((post_padding))px -((post_padding))px ((post_padding))px !important;\r\n }\r\n\r\n /* Highlight box content */ \r\n .gw-gopf-style-delux .gw-gopf-post-highlight-box * { \r\n color:((main_color_3)) !important;\r\n }\r\n\r\n .gw-gopf-style-delux .gw-gopf-post-highlight-box a:hover { \r\n color:((main_color_1)) !important;\r\n }\r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [5] WOOCOMMERCE STYLES\r\n \r\n/ -------------------------------------------------------------------------------- */ \r\n\r\n /* Sale circle */\r\n .gw-gopf-style-delux .gw-gopf-woo-sale,\r\n .gw-gopf-touch.gw-gopf-style-delux .gw-gopf-post:hover .gw-gopf-woo-sale {\r\n background:((highlight_color));\r\n -moz-border-radius:22px;\r\n -webkit-border-radius:22px;\r\n border-radius:22px;\r\n color:((main_color_3));\r\n display:inline-block;\r\n font-size:((font_size_m))px;\r\n height:44px;\r\n line-height:44px;\r\n position:absolute; \r\n right:10px;\r\n text-align:center;\r\n top:10px;\r\n -moz-transition:opacity 0.1s ease-in-out;\r\n -ms-transition:opacity 0.1s ease-in-out;\r\n -o-transition:opacity 0.1s ease-in-out;\r\n -webkit-transition:opacity 0.1s ease-in-out;\r\n transition:opacity 0.1s ease-in-out; \r\n width:44px;\r\n z-index:5;\r\n }\r\n\r\n .gw-gopf-style-delux .gw-gopf-post:hover .gw-gopf-woo-sale,\r\n .gw-gopf-touch.gw-gopf-style-delux .gw-gopf-current.gw-gopf-post .gw-gopf-woo-sale { \r\n filter:alpha(opacity=50); /* IE 5-7 */\r\n -ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)\"; /* IE 8 */\r\n -khtml-opacity:0.5; /* Safari 1.x */\r\n -moz-opacity:0.5; /* Netscape */\r\n opacity:0.5;\r\n }\r\n\r\n /* Price general */\r\n .gw-gopf-style-delux .gw-gopf-post-woo-price {\r\n color:((highlight_color));\r\n font-size:((font_size_xl))px;\r\n font-weight:bold; \r\n line-height:((line_height_xl))px; \r\n margin-top:15px;\r\n }\r\n\r\n /* Sale price */\r\n .gw-gopf-style-delux .gw-gopf-post-woo-price del {\r\n background:none;\r\n color:((main_color_4));\r\n font-size:((font_size_l))px;\r\n line-height:((line_height_l))px; \r\n margin-right:5px;\r\n text-decoration:line-through;\r\n }\r\n \r\n /* Old price */\r\n .gw-gopf-style-delux .gw-gopf-post-woo-price ins { \r\n background:none;\r\n text-decoration:none !important;\r\n }\r\n \r\n \r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [6] EFFECTS\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n \r\n /* Push Up */\r\n .gw-gopf-style-delux-push-up .gw-gopf-post-content-wrap { \r\n top:100%;\r\n }\r\n \r\n .gw-gopf-style-delux-push-up .gw-gopf-post-media-wrap,\r\n .gw-gopf-touch.gw-gopf-style-delux-push-up .gw-gopf-post:hover .gw-gopf-post-media-wrap { \r\n border-radius:((border_radius_1))px;\r\n -webkit-transition:-webkit-border-radius 0.1s ease-in-out;\r\n }\r\n \r\n .gw-gopf-style-delux-push-up .gw-gopf-post:hover .gw-gopf-post-media-wrap,\r\n .gw-gopf-touch.gw-gopf-style-delux-push-up .gw-gopf-current.gw-gopf-post .gw-gopf-post-media-wrap {\r\n -moz-border-radius:0;\r\n -webkit-border-radius:0;\r\n border-radius:0; \r\n -moz-border-radius-topleft:((border_radius_1))px;\r\n -moz-border-radius-topright:((border_radius_1))px;\r\n -webkit-border-top-left-radius:((border_radius_1))px;\r\n -webkit-border-top-right-radius:((border_radius_1))px; \r\n border-top-left-radius:((border_radius_1))px;\r\n border-top-right-radius:((border_radius_1))px;\r\n } \r\n \r\n .gw-gopf-style-delux-push-up .gw-gopf-post-overlay-bg { \r\n -moz-border-radius-topleft:((border_radius_1))px;\r\n -moz-border-radius-topright:((border_radius_1))px;\r\n -webkit-border-top-left-radius:((border_radius_1))px;\r\n -webkit-border-top-right-radius:((border_radius_1))px; \r\n border-top-left-radius:((border_radius_1))px;\r\n border-top-right-radius:((border_radius_1))px;\r\n }\r\n \r\n .gw-gopf-style-delux-push-up .gw-gopf-post-content-wrap:before { \r\n -moz-border-radius-bottomleft:((border_radius_1))px;\r\n -moz-border-radius-bottomright:((border_radius_1))px;\r\n -webkit-border-bottom-left-radius:((border_radius_1))px;\r\n -webkit-border-bottom-right-radius:((border_radius_1))px; \r\n border-bottom-left-radius:((border_radius_1))px;\r\n border-bottom-right-radius:((border_radius_1))px;\r\n }\r\n \r\n /* Push Down */\r\n .gw-gopf-style-delux-push-down .gw-gopf-post-content-wrap { \r\n bottom:100%; \r\n }\r\n\r\n .gw-gopf-style-delux-push-down .gw-gopf-post-media-wrap,\r\n .gw-gopf-touch.gw-gopf-style-delux-push-down .gw-gopf-post:hover .gw-gopf-post-media-wrap { \r\n border-radius:((border_radius_1))px;\r\n -webkit-transition:-webkit-border-radius 0.1s ease-in-out;\r\n }\r\n \r\n .gw-gopf-style-delux-push-down .gw-gopf-post:hover .gw-gopf-post-media-wrap,\r\n .gw-gopf-touch.gw-gopf-style-delux-push-down .gw-gopf-current.gw-gopf-post .gw-gopf-post-media-wrap {\r\n -moz-border-radius:0;\r\n -webkit-border-radius:0;\r\n border-radius:0; \r\n -moz-border-radius-bottomleft:((border_radius_1))px;\r\n -moz-border-radius-bottomright:((border_radius_1))px;\r\n -webkit-border-bottom-left-radius:((border_radius_1))px;\r\n -webkit-border-bottom-right-radius:((border_radius_1))px; \r\n border-bottom-left-radius:((border_radius_1))px;\r\n border-bottom-right-radius:((border_radius_1))px;\r\n } \r\n\r\n .gw-gopf-style-delux-push-down .gw-gopf-post-overlay-bg { \r\n -moz-border-radius-bottomleft:((border_radius_1))px;\r\n -moz-border-radius-bottomright:((border_radius_1))px;\r\n -webkit-border-bottom-left-radius:((border_radius_1))px;\r\n -webkit-border-bottom-right-radius:((border_radius_1))px; \r\n border-bottom-left-radius:((border_radius_1))px;\r\n border-bottom-right-radius:((border_radius_1))px;\r\n }\r\n \r\n .gw-gopf-style-delux-push-down .gw-gopf-post-content-wrap:before { \r\n -moz-border-radius-topleft:((border_radius_1))px;\r\n -moz-border-radius-topright:((border_radius_1))px;\r\n -webkit-border-top-left-radius:((border_radius_1))px;\r\n -webkit-border-top-right-radius:((border_radius_1))px; \r\n border-top-left-radius:((border_radius_1))px;\r\n border-top-right-radius:((border_radius_1))px;\r\n } \r\n \";s:7:\"effects\";a:2:{s:7:\"push-up\";s:7:\"Push Up\";s:9:\"push-down\";s:9:\"Push Down\";}}s:5:\"door2\";a:7:{s:4:\"name\";s:10:\"DOOR Style\";s:11:\"description\";s:10:\"DOOR Style\";s:9:\"json_file\";s:9:\"door.json\";s:8:\"css_file\";s:8:\"door.css\";s:5:\"class\";s:18:\"gw-gopf-style-door\";s:4:\"data\";s:23311:\"/* -------------------------------------------------------------------------------- /\r\n \r\n DOOR STYLE - v1.4\r\n \r\n You can add custom notes to code. CSS comments will be removed from the generated output.\r\n\r\n [info] Sometimes you should use \"!important\" css suffix to take the changes effect \r\n when setting a value of a CSS property (e.g. font-size: 11px !important);.\r\n \r\n TABLE OF CONTENT\r\n\r\n [0] SETUP & COMMON STYLES\r\n [1] POST FILTER CATEGORIES & SLIDER ARROWS\r\n [2] POST WRAPPER\r\n [3] MEDIA WRAP & POST OVERLAY\r\n [4] POST CONTENT\r\n [4.1] POST CONTENT - TITLE\r\n [4.2] POST CONTENT - META\r\n [4.3] POST CONTENT - EXCERPT\r\n [4.4] POST CONTENT - BUTTON\r\n [4.5] POST CONTENT - OTHER\r\n [5] WOOCOMMERCE STYLES\r\n [6] EFFECTS\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [0] SETUP & COMMON STYLES\r\n \r\n [info] The portfolio filter categories filter \"buttons\".\r\n [tip] You can set e.g. border radius, colors, etc here.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-door .gw-gopf-post-header { z-index:2 }\r\n\r\n /* Button style */\r\n .gw-gopf-style-door a.gw-gopf-btn {\r\n color:((main_color_3));\r\n background:((main_color_1));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px;\r\n border-radius:((border_radius_2))px;\r\n display:inline-block;\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n height:29px; \r\n line-height:29px; \r\n padding:0 9px;\r\n position:relative;\r\n text-align:left;\r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n text-decoration:none !important;\r\n }\r\n \r\n .gw-gopf-style-door a.gw-gopf-btn.gw-gopf-btn-outlined {\r\n color:((main_color_1));\r\n background:transparent;\r\n border:solid 1px ((main_color_1));\r\n height:27px; \r\n line-height:27px; \r\n padding:0 8px;\r\n }\r\n \r\n \r\n /* Hover (mouse over) state of button */\r\n .gw-gopf-style-door a.gw-gopf-btn:hover {\r\n color:((main_color_3));\r\n background:((highlight_color));\r\n }\r\n \r\n .gw-gopf-style-door a.gw-gopf-btn.gw-gopf-btn-outlined:hover {\r\n color:((highlight_color));\r\n background:transparent;\r\n border-color:((highlight_color));\r\n } \r\n \r\n /* Circle style */\r\n .gw-gopf-style-door a.gw-gopf-circle {\r\n -moz-border-radius:((border_radius_3))px;\r\n -webkit-border-radius:((border_radius_3))px;\r\n border-radius:((border_radius_3))px;\r\n display:inline-block;\r\n height:44px;\r\n line-height:44px;\r\n position: relative;\r\n margin-left:3px;\r\n margin-right:3px; \r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n width:44px;\r\n }\r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [1] POST FILTER CATEGORIES & SLIDER ARROWS\r\n \r\n [info] The portfolio filter categories filter \"buttons\".\r\n [tip] You can set e.g. border radius, colors, etc here.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n /* Filter categories (buttons) */\r\n .gw-gopf-style-door .gw-gopf-cats > span a {\r\n background:((main_color_1));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px; \r\n border-radius:((border_radius_2))px; \r\n color:((main_color_3));\r\n display:block;\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px; \r\n height:29px;\r\n line-height:29px;\r\n padding:0 10px;\r\n text-decoration:none;\r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n }\r\n \r\n .gw-gopf-style-door .gw-gopf-cats > span a.gw-gopf-btn-outlined {\r\n color:((main_color_1));\r\n background:transparent;\r\n border:solid 1px ((main_color_1));\r\n height:27px; \r\n line-height:27px; \r\n padding:0 8px;\r\n } \r\n \r\n /* Filter categories (buttons) - selected element */ \r\n .gw-gopf-style-door .gw-gopf-cats > span.gw-gopf-current a { \r\n background:((highlight_color));\r\n }\r\n \r\n .gw-gopf-style-door .gw-gopf-cats > span.gw-gopf-current a.gw-gopf-btn-outlined { \r\n background:transparent; \r\n border-color:((highlight_color));\r\n color:((highlight_color));\r\n }\r\n \r\n /* Filter categories (buttons) - hovered element */\r\n .gw-gopf-style-door .gw-gopf-cats > span a:hover { \r\n background:((main_color_2));\r\n }\r\n \r\n .gw-gopf-style-door .gw-gopf-cats > span a.gw-gopf-btn-outlined:hover { \r\n background:transparent;\r\n border-color:((main_color_2)); \r\n color:((main_color_2));\r\n } \r\n\r\n /* Arrows (buttons) */\r\n .gw-gopf-style-door .gw-gopf-slider-controls > div a {\r\n background:((highlight_color));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px; \r\n border-radius:((border_radius_2))px; \r\n color:((main_color_3));\r\n display:table-cell;\r\n height:29px;\r\n text-decoration:none;\r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n vertical-align:middle; \r\n width:28px;\r\n }\r\n\r\n /* Arrows (buttons) - hovered element */\r\n .gw-gopf-style-door .gw-gopf-slider-controls > div a:hover {\r\n background:((main_color_1));\r\n }\r\n\r\n /* Arrows (buttons) - inactive */\r\n .gw-gopf-style-door .gw-gopf-slider-controls > div a.disabled {\r\n background:((main_color_1));\r\n } \r\n\r\n /* Pagination - Load more (button) */\r\n .gw-gopf-style-door a.gw-gopf-pagination-load-more {\r\n background:((main_color_1));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px; \r\n border-radius:((border_radius_2))px; \r\n color:((main_color_3));\r\n display:inline-block;\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px; \r\n height:29px;\r\n line-height:29px;\r\n padding:0 10px;\r\n text-decoration:none;\r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n }\r\n \r\n /* Pagination - Load more (outlined button) */\r\n .gw-gopf-style-door a.gw-gopf-pagination-load-more.gw-gopf-btn-outlined {\r\n color:((main_color_1));\r\n background:transparent;\r\n border:solid 1px ((main_color_1));\r\n height:27px; \r\n line-height:27px; \r\n padding:0 8px;\r\n }\r\n \r\n /* Pagination - Load more (button) - hovered */\r\n .gw-gopf-style-door a.gw-gopf-pagination-load-more:hover { \r\n background:((main_color_2));\r\n }\r\n \r\n /* Pagination - Load more (outlined button) - hovered */\r\n .gw-gopf-style-door a.gw-gopf-pagination-load-more.gw-gopf-btn-outlined:hover { \r\n background:transparent;\r\n border-color:((main_color_2)); \r\n color:((main_color_2));\r\n } \r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n \r\n [2] POST WRAPPER\r\n \r\n [info] The whole post container, including the media and content.\r\n [tip] You can set e.g. border radius or box shadow here for the the whole post.\r\n\r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-door .gw-gopf-post,\r\n .gw-gopf-touch.gw-gopf-style-door .gw-gopf-post:hover {\r\n box-shadow:0px 0px 0px 10px rgba(0,0,0,0); \r\n -moz-border-radius:((border_radius_1))px;\r\n -webkit-border-radius:((border_radius_1))px;\r\n border-radius:((border_radius_1))px;\r\n -moz-box-shadow:0px 0px 0px 10px rgba(0,0,0,0); \r\n -o-box-shadow:0px 0px 0px 10px rgba(0,0,0,0); \r\n -webkit-box-shadow:0px 0px 0px 10px rgba(0,0,0,0); \r\n box-shadow:0px 0px 0px 10px rgba(0,0,0,0);\r\n margin-bottom:0; \r\n overflow:hidden;\r\n padding-bottom:0;\r\n -moz-transition:border 0.1s ease-in-out, margin 0.1s ease-in-out, padding 0.1s ease-in-out, z-index 0s 1s;\r\n -ms-transition:border 0.1s ease-in-out, margin 0.1s ease-in-out, padding 0.1s ease-in-out, z-index 0s 1s;\r\n -o-transition:border 0.1s ease-in-out, margin 0.1s ease-in-out, padding 0.1s ease-in-out, z-index 0s 1s; \r\n -webkit-transition:border 0.1s ease-in-out, margin 0.1s ease-in-out, padding 0.1s ease-in-out, z-index 0s 1s;\r\n transition:border 0.1s ease-in-out, margin 0.1s ease-in-out, padding 0.1s ease-in-out, z-index 0s 1s;\r\n -webkit-transform: translateZ(0); \r\n z-index:2 !important;\r\n }\r\n\r\n .gw-gopf-style-door .gw-gopf-post:hover,\r\n .gw-gopf-touch.gw-gopf-style-door .gw-gopf-current.gw-gopf-post {\r\n border-color:((highlight_color));\r\n -moz-box-shadow:0px 0px 0px 10px ((highlight_color))), 0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity))); \r\n -o-box-shadow:0px 0px 0px 10px ((highlight_color)), 0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity)));\r\n -webkit-box-shadow:0px 0px 0px 10px ((highlight_color)), 0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity)));\r\n box-shadow:0px 0px 0px 10px ((highlight_color)), 0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity))); \r\n -moz-transition:border 0.3s ease-in-out, margin 0.2s ease-in-out, padding 0.2s ease-in-out, z-index 0s 0s;\r\n -ms-transition:border 0.3s ease-in-out, margin 0.2s ease-in-out, padding 0.2s ease-in-out, z-index 0s 0s;\r\n -o-transition:border 0.3s ease-in-out, margin 0.2s ease-in-out, padding 0.2s ease-in-out, z-index 0s 0s;\r\n -webkit-transition:border 0.3s ease-in-out, margin 0.2s ease-in-out, padding 0.2s ease-in-out, z-index 0s 0s;\r\n transition:border 0.3s ease-in-out, margin 0.2s ease-in-out, padding 0.2s ease-in-out, z-index 0s 0s;\r\n z-index:3 !important;\r\n }\r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n \r\n [3] MEDIA WRAP & POST OVERLAY\r\n \r\n [info] The whole post overlay with its content.\r\n [tip] You can set e.g. overlay circles and buttons.\r\n\r\n/ -------------------------------------------------------------------------------- */\r\n \r\n /* Overlay button - circle style - normal state */\r\n .gw-gopf-style-door a.gw-gopf-post-overlay-circle { \r\n background:((highlight_color));\r\n }\r\n\r\n /* Overlay button - circle style - hover state */\r\n .gw-gopf-style-door a.gw-gopf-post-overlay-circle:hover { \r\n background:((main_color_1));\r\n } \r\n \r\n /* Overlay button - button style - normal state */\r\n .gw-gopf-style-door a.gw-gopf-post-overlay-btn {\r\n background:((highlight_color));\r\n margin-left:3px;\r\n margin-right:3px;\r\n }\r\n \r\n .gw-gopf-style-door a.gw-gopf-post-overlay-btn.gw-gopf-btn-outlined {\r\n background:transparent;\r\n border-color:((highlight_color));\r\n color:((highlight_color));\r\n }\r\n \r\n /* Overlay button - button style - hover state */\r\n .gw-gopf-style-door a.gw-gopf-post-overlay-btn:hover {\r\n background:((main_color_1));\r\n }\r\n \r\n .gw-gopf-style-door a.gw-gopf-post-overlay-btn.gw-gopf-btn-outlined:hover {\r\n background:transparent;\r\n border-color:((main_color_1));\r\n color:((main_color_1));\r\n } \r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4] POST CONTENT\r\n \r\n [info] Includes the title, post meta data (e.g. date), the excerpt and read more button or link.\r\n [tip] You can set e.g. padding, etc here.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-door .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-door .gw-gopf-post:hover .gw-gopf-post-content-wrap {\r\n opacity:0;\r\n position:absolute;\r\n -moz-transition:opacity 0.1s ease-in-out, height 0.1s ease-in-out;\r\n -ms-transition:opacity 0.1s ease-in-out, height 0.1s ease-in-out;\r\n -o-transition:opacity 0.1s ease-in-out, height 0.1s ease-in-out;\r\n -webkit-transition:opacity 0.1s ease-in-out, height 0.1s ease-in-out;\r\n transition:opacity 0.1s ease-in-out, height 0.1s ease-in-out;\r\n width:100%;\r\n z-index:2; \r\n }\r\n \r\n .gw-gopf-style-door .gw-gopf-post:hover .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-door .gw-gopf-current.gw-gopf-post .gw-gopf-post-content-wrap { \r\n opacity:1; \r\n -moz-transition:opacity 0.3s ease-in-out, height 0.3s ease-in-out;\r\n -ms-transition:opacity 0.3s ease-in-out, height 0.3s ease-in-out;\r\n -o-transition:opacity 0.3s ease-in-out, height 0.3s ease-in-out;;\r\n -webkit-transition:opacity 0.3s ease-in-out, height 0.3s ease-in-out;\r\n transition:opacity 0.3s ease-in-out, height 0.3s ease-in-out; \r\n }\r\n \r\n .gw-gopf-style-door .gw-gopf-post-content-wrap:before {\r\n -moz-border-radius-bottomleft:((border_radius_1))px;\r\n -moz-border-radius-bottomright:((border_radius_1))px;\r\n -webkit-border-bottom-left-radius:((border_radius_1))px;\r\n -webkit-border-bottom-right-radius:((border_radius_1))px; \r\n border-bottom-left-radius:((border_radius_1))px;\r\n border-bottom-right-radius:((border_radius_1))px; \r\n background-color:((post_content_color)); \r\n opacity:((post_opacity));\r\n }\r\n\r\n .gw-gopf-style-door .gw-gopf-post-content {\r\n color:((main_color_1)); \r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n line-height:((line_height_m))px; \r\n padding:((post_padding))px; \r\n }\r\n \r\n /* General link style */\r\n .gw-gopf-style-door .gw-gopf-post-content a {\r\n color:((highlight_color));\r\n }\r\n \r\n .gw-gopf-style-door .gw-gopf-post-content a:hover {\r\n color:((main_color_1)); \r\n }\r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.1] POST CONTENT - TITLE\r\n \r\n [info] The post title.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n /* The title */\r\n .gw-gopf-style-door .gw-gopf-post-content h2 {\r\n color:((main_color_1)) !important;\r\n font-family:((font_family_l)) !important;\r\n font-size:((font_size_l))px !important;\r\n line-height:((line_height_l))px !important;\r\n }\r\n \r\n /* The link inside the title */\r\n .gw-gopf-style-door .gw-gopf-post-content h2 a { \r\n color:inherit;\r\n font-size:inherit !important;\r\n line-height:inherit !important; \r\n }\r\n \r\n /* Hover state - The link inside the title */\r\n .gw-gopf-style-door .gw-gopf-post-content h2 a:hover { color:((highlight_color)); } \r\n \r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.2] POST CONTENT - META\r\n \r\n [info] The post meta data e.g. post date.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-door .gw-gopf-post-meta {\r\n color:((main_color_2));\r\n font-family:((font_family_s));\r\n font-size:((font_size_s))px; \r\n line-height:((line_height_s))px;\r\n }\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.3] POST CONTENT - EXCERPT\r\n \r\n [info] The post excerpt.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-door .gw-gopf-post-excerpt {\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n line-height:((line_height_m))px !important; \r\n margin-top:15px;\r\n }\r\n \r\n .gw-gopf-style-door .gw-gopf-post-excerpt p {\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n line-height:((line_height_m))px !important;\r\n margin:0 0 15px !important;\r\n padding:0 !important; \r\n }\r\n \r\n .gw-gopf-style-door .gw-gopf-post-excerpt p:last-child { \r\n margin:0 !important;\r\n padding:0 !important;\r\n }\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.4] POST CONTENT - BUTTON\r\n \r\n [info] The read more button or link\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-door .gw-gopf-post-more { margin-top:15px; }\r\n \r\n /* Link style - without classname */\r\n .gw-gopf-style-door .gw-gopf-post-more a {\r\n color:((highlight_color));\r\n font-size:((font_size_m))px;\r\n font-weight:bold;\r\n margin-top:15px; \r\n }\r\n \r\n /* Hover (mouse over) state of link */\r\n .gw-gopf-style-door .gw-gopf-post-more a:hover { \r\n color:((main_color_1));\r\n }\r\n \r\n /* Button style - with \"gw-gopf-btn\" classname */\r\n .gw-gopf-style-door .gw-gopf-post-more a.gw-gopf-btn {\r\n color:((main_color_3));\r\n font-weight:normal; \r\n margin-top:-3px;\r\n }\r\n \r\n .gw-gopf-style-door .gw-gopf-post-more a.gw-gopf-btn.gw-gopf-btn-outlined { color:((main_color_1)); }\r\n \r\n .gw-gopf-style-door .gw-gopf-post-more a.gw-gopf-btn.gw-gopf-btn-outlined:hover { color:((highlight_color)); } \r\n \r\n /* Space between buttons */\r\n .gw-gopf-style-door .gw-gopf-post-more a.gw-gopf-btn { margin-left:10px }\r\n .gw-gopf-style-door .gw-gopf-post-more a.gw-gopf-btn:first-child { margin-left:0; } \r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.5] POST CONTENT - OTHER\r\n \r\n [info] Highlight box, etc.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-door .gw-gopf-post-content > *:first-child { margin-top:0 !important; }\r\n\r\n /* Highlight box */\r\n .gw-gopf-style-door div.gw-gopf-post-highlight-box, .gw-gopf-style-door div.gw-gopf-post-highlight-box:first-child {\r\n background:((highlight_color));\r\n padding:((post_padding))px; \r\n margin:-((post_padding))px -((post_padding))px ((post_padding))px !important;\r\n }\r\n\r\n /* Highlight box content */ \r\n .gw-gopf-style-door .gw-gopf-post-highlight-box * { \r\n color:((main_color_3)) !important;\r\n }\r\n\r\n .gw-gopf-style-door .gw-gopf-post-highlight-box a:hover { \r\n color:((main_color_1)) !important;\r\n }\r\n \r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [5] WOOCOMMERCE STYLES\r\n \r\n/ -------------------------------------------------------------------------------- */ \r\n\r\n /* Sale circle */\r\n .gw-gopf-style-door .gw-gopf-woo-sale,\r\n .gw-gopf-touch.gw-gopf-style-door .gw-gopf-post:hover .gw-gopf-woo-sale {\r\n background:((highlight_color));\r\n -moz-border-radius:22px;\r\n -webkit-border-radius:22px;\r\n border-radius:22px;\r\n color:((main_color_3));\r\n display:inline-block;\r\n font-size:((font_size_m))px;\r\n height:44px;\r\n line-height:44px;\r\n position:absolute; \r\n right:10px;\r\n text-align:center;\r\n top:10px;\r\n -moz-transition:opacity 0.1s ease-in-out;\r\n -ms-transition:opacity 0.1s ease-in-out;\r\n -o-transition:opacity 0.1s ease-in-out;\r\n -webkit-transition:opacity 0.1s ease-in-out;\r\n transition:opacity 0.1s ease-in-out; \r\n width:44px;\r\n z-index:2; \r\n }\r\n\r\n .gw-gopf-style-door .gw-gopf-post:hover .gw-gopf-woo-sale,\r\n .gw-gopf-touch.gw-gopf-style-door .gw-gopf-current.gw-gopf-post .gw-gopf-woo-sale { \r\n filter:alpha(opacity=50); /* IE 5-7 */\r\n -ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)\"; /* IE 8 */\r\n -khtml-opacity:0.5; /* Safari 1.x */\r\n -moz-opacity:0.5; /* Netscape */\r\n opacity:0.5;\r\n } \r\n \r\n /* Price general */\r\n .gw-gopf-style-door .gw-gopf-post-woo-price {\r\n color:((highlight_color));\r\n font-size:((font_size_xl))px;\r\n font-weight:bold; \r\n line-height:((line_height_xl))px; \r\n margin-top:15px;\r\n }\r\n\r\n /* Sale price */\r\n .gw-gopf-style-door .gw-gopf-post-woo-price del {\r\n background:none;\r\n color:((main_color_4));\r\n font-size:((font_size_l))px;\r\n line-height:((line_height_l))px; \r\n margin-right:5px;\r\n text-decoration:line-through;\r\n }\r\n \r\n /* Old price */\r\n .gw-gopf-style-door .gw-gopf-post-woo-price ins { \r\n background:none;\r\n text-decoration:none;\r\n }\r\n \r\n \r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [6] EFFECTS\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n \r\n /* No Effect - only overlay */\r\n .gw-gopf-style-door-no-effect .gw-gopf-post-media-wrap { \r\n -moz-border-radius:((border_radius_1))px;\r\n -webkit-border-radius:((border_radius_1))px;\r\n border-radius:((border_radius_1))px;\r\n } \r\n \r\n .gw-gopf-style-door-no-effect .gw-gopf-post-overlay-bg { \r\n -moz-border-radius:((border_radius_1))px;\r\n -webkit-border-radius:((border_radius_1))px;\r\n border-radius:((border_radius_1))px;\r\n }\r\n \r\n .gw-gopf-style-door-no-effect .gw-gopf-post-content-wrap { \r\n display:none;\r\n } \r\n\r\n /* Slide Down */\r\n .gw-gopf-style-door-slide-down .gw-gopf-post-media-wrap,\r\n .gw-gopf-touch.gw-gopf-style-door-slide-down .gw-gopf-post:hover .gw-gopf-post-media-wrap { \r\n border-radius:((border_radius_1))px;\r\n -webkit-transition:-webkit-border-radius 0.1s ease-in-out;\r\n }\r\n .gw-gopf-style-door-slide-down .gw-gopf-post:hover .gw-gopf-post-media-wrap,\r\n .gw-gopf-touch.gw-gopf-style-door-slide-down .gw-gopf-current.gw-gopf-post .gw-gopf-post-media-wrap {\r\n -moz-border-radius:0;\r\n -webkit-border-radius:0;\r\n border-radius:0; \r\n -moz-border-radius-topleft:((border_radius_1))px;\r\n -moz-border-radius-topright:((border_radius_1))px;\r\n -webkit-border-top-left-radius:((border_radius_1))px;\r\n -webkit-border-top-right-radius:((border_radius_1))px; \r\n border-top-left-radius:((border_radius_1))px;\r\n border-top-right-radius:((border_radius_1))px;\r\n } \r\n \r\n .gw-gopf-style-door-slide-down .gw-gopf-post-overlay-bg { \r\n -moz-border-radius-topleft:((border_radius_1))px;\r\n -moz-border-radius-topright:((border_radius_1))px;\r\n -webkit-border-top-left-radius:((border_radius_1))px;\r\n -webkit-border-top-right-radius:((border_radius_1))px; \r\n border-top-left-radius:((border_radius_1))px;\r\n border-top-right-radius:((border_radius_1))px; \r\n }\r\n\r\n\";s:7:\"effects\";a:2:{s:9:\"no-effect\";s:24:\"No effect - only overlay\";s:10:\"slide-down\";s:10:\"Slide Down\";}}s:4:\"flex\";a:7:{s:4:\"name\";s:10:\"FLEX Style\";s:11:\"description\";s:10:\"FLEX Style\";s:9:\"json_file\";s:9:\"flex.json\";s:8:\"css_file\";s:8:\"flex.css\";s:5:\"class\";s:18:\"gw-gopf-style-flex\";s:4:\"data\";s:33640:\"/* -------------------------------------------------------------------------------- /\r\n \r\n FLEX STYLE - v1.4\r\n \r\n You can add custom notes to code. CSS comments will be removed from the generated output.\r\n\r\n [info] Sometimes you should use \"!important\" css suffix to take the changes effect \r\n when setting a value of a CSS property (e.g. font-size: 11px !important);.\r\n \r\n TABLE OF CONTENT\r\n\r\n [0] SETUP & COMMON STYLES\r\n [1] POST FILTER CATEGORIES & SLIDER ARROWS\r\n [2] POST WRAPPER\r\n [3] MEDIA WRAP & POST OVERLAY\r\n [4] POST CONTENT\r\n [4.1] POST CONTENT - TITLE\r\n [4.2] POST CONTENT - META\r\n [4.3] POST CONTENT - EXCERPT\r\n [4.4] POST CONTENT - BUTTON\r\n [4.5] POST CONTENT - OTHER \r\n [5] WOOCOMMERCE STYLES\r\n [6] EFFECTS \r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [0] SETUP & COMMON STYLES\r\n \r\n [info] The portfolio filter categories filter \"buttons\".\r\n [tip] You can set e.g. border radius, colors, etc here.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n /* Button style */\r\n .gw-gopf-style-flex a.gw-gopf-btn {\r\n color:((main_color_3));\r\n background:((highlight_color));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px;\r\n border-radius:((border_radius_2))px;\r\n display:inline-block;\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n height:29px; \r\n line-height:29px; \r\n padding:0 9px;\r\n position:relative;\r\n text-align:left;\r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n text-decoration:none !important; \r\n }\r\n \r\n .gw-gopf-style-flex a.gw-gopf-btn.gw-gopf-btn-outlined {\r\n color:((highlight_color));\r\n background:transparent;\r\n border:solid 1px ((highlight_color));\r\n height:27px; \r\n line-height:27px; \r\n padding:0 8px;\r\n } \r\n \r\n /* Hover (mouse over) state of button */\r\n .gw-gopf-style-flex a.gw-gopf-btn:hover {\r\n color:((main_color_3));\r\n background:((main_color_1));\r\n }\r\n \r\n .gw-gopf-style-flex a.gw-gopf-btn.gw-gopf-btn-outlined:hover {\r\n color:((main_color_1));\r\n background:transparent;\r\n border-color:((main_color_1));\r\n } \r\n\r\n /* Circle style */\r\n .gw-gopf-style-flex a.gw-gopf-circle {\r\n -moz-border-radius:((border_radius_3))px;\r\n -webkit-border-radius:((border_radius_3))px;\r\n border-radius:((border_radius_3))px;\r\n display:inline-block;\r\n height:44px;\r\n line-height:44px;\r\n position: relative;\r\n margin-left:3px;\r\n margin-right:3px; \r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n width:44px;\r\n }\r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [1] POST FILTER CATEGORIES & SLIDER ARROWS\r\n \r\n [info] The portfolio filter categories filter \"buttons\".\r\n [tip] You can set e.g. border radius, colors, etc here.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n /* Filter categories (buttons) */\r\n .gw-gopf-style-flex .gw-gopf-cats > span a {\r\n background:((main_color_1));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px; \r\n border-radius:((border_radius_2))px; \r\n color:((main_color_3));\r\n display:block;\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px; \r\n height:29px;\r\n line-height:29px;\r\n padding:0 10px;\r\n text-decoration:none;\r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out; \r\n }\r\n \r\n .gw-gopf-style-flex .gw-gopf-cats > span a.gw-gopf-btn-outlined {\r\n color:((main_color_1));\r\n background:transparent;\r\n border:solid 1px ((main_color_1));\r\n height:27px; \r\n line-height:27px; \r\n padding:0 8px;\r\n } \r\n \r\n /* Filter categories (buttons) - selected element */ \r\n .gw-gopf-style-flex .gw-gopf-cats > span.gw-gopf-current a { \r\n background:((highlight_color));\r\n }\r\n \r\n .gw-gopf-style-flex .gw-gopf-cats > span.gw-gopf-current a.gw-gopf-btn-outlined { \r\n background:transparent; \r\n border-color:((highlight_color));\r\n color:((highlight_color));\r\n } \r\n \r\n /* Filter categories (buttons) - hovered element */\r\n .gw-gopf-style-flex .gw-gopf-cats > span a:hover { \r\n background:((main_color_2));\r\n }\r\n \r\n .gw-gopf-style-flex .gw-gopf-cats > span a.gw-gopf-btn-outlined:hover { \r\n background:transparent;\r\n border-color:((main_color_2)); \r\n color:((main_color_2));\r\n } \r\n\r\n /* Arrows (buttons) */\r\n .gw-gopf-style-flex .gw-gopf-slider-controls > div a {\r\n background:((highlight_color));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px; \r\n border-radius:((border_radius_2))px; \r\n color:((main_color_3));\r\n display:table-cell;\r\n height:29px;\r\n text-decoration:none;\r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n vertical-align:middle; \r\n width:28px;\r\n }\r\n\r\n /* Arrows (buttons) - hovered element */\r\n .gw-gopf-style-flex .gw-gopf-slider-controls > div a:hover {\r\n background:((main_color_1));\r\n }\r\n\r\n /* Arrows (buttons) - inactive */\r\n .gw-gopf-style-flex .gw-gopf-slider-controls > div a.disabled {\r\n background:((main_color_1));\r\n }\r\n \r\n /* Pagination - Load more (button) */\r\n .gw-gopf-style-flex a.gw-gopf-pagination-load-more {\r\n background:((main_color_1));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px; \r\n border-radius:((border_radius_2))px; \r\n color:((main_color_3));\r\n display:inline-block;\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px; \r\n height:29px;\r\n line-height:29px;\r\n padding:0 10px;\r\n text-decoration:none;\r\n -moz-transition:all 0.08s ease-in-out;\r\n -ms-transition:all 0.08s ease-in-out;\r\n -o-transition:all 0.08s ease-in-out;\r\n -webkit-transition:all 0.08s ease-in-out;\r\n transition:all 0.08s ease-in-out; \r\n }\r\n \r\n /* Pagination - Load more (outlined button) */\r\n .gw-gopf-style-flex a.gw-gopf-pagination-load-more.gw-gopf-btn-outlined {\r\n color:((main_color_1));\r\n background:transparent;\r\n border:solid 1px ((main_color_1));\r\n height:27px; \r\n line-height:27px; \r\n padding:0 8px;\r\n }\r\n \r\n /* Pagination - Load more (button) - hovered */\r\n .gw-gopf-style-flex a.gw-gopf-pagination-load-more:hover { \r\n background:((main_color_2));\r\n }\r\n \r\n /* Pagination - Load more (outlined button) - hovered */\r\n .gw-gopf-style-flex a.gw-gopf-pagination-load-more.gw-gopf-btn-outlined:hover { \r\n background:transparent;\r\n border-color:((main_color_2)); \r\n color:((main_color_2));\r\n } \r\n \r\n/* -------------------------------------------------------------------------------- /\r\n \r\n [2] POST WRAPPER\r\n \r\n [info] The whole post container, including the media and content.\r\n [tip] You can set e.g. border radius or box shadow here for the the whole post.\r\n\r\n/ -------------------------------------------------------------------------------- */\r\n\r\n\r\n .gw-gopf-style-flex .gw-gopf-post {\r\n -moz-border-radius:((border_radius_1))px;\r\n -webkit-border-radius:((border_radius_1))px;\r\n border-radius:((border_radius_1))px;\r\n -moz-box-shadow:0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity))); \r\n -o-box-shadow:0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity)));\r\n -webkit-box-shadow:0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity)));\r\n box-shadow:0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity))); \r\n overflow:hidden;\r\n }\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n \r\n [3] MEDIA WRAP & POST OVERLAY\r\n \r\n [info] The whole post overlay with its content.\r\n [tip] You can set e.g. overlay circles and buttons.\r\n\r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-post-media-wrap { \r\n -webkit-border-radius:((border_radius_1))px;\r\n }\r\n .gw-gopf-chrome.gw-gopf-style-flex .gw-gopf-post-media-wrap{ \r\n -webkit-border-radius:0;\r\n } \r\n\r\n .gw-gopf-style-flex .gw-gopf-post-overlay {\r\n height:100%;\r\n }\r\n\r\n /* Overlay button - circle style - normal state */\r\n .gw-gopf-style-flex a.gw-gopf-post-overlay-circle { \r\n background:((highlight_color));\r\n } \r\n \r\n /* Overlay button - circle style - hover state */\r\n .gw-gopf-style-flex a.gw-gopf-post-overlay-circle:hover { \r\n background:((main_color_1));\r\n } \r\n \r\n /* Overlay button - button style - normal state */\r\n .gw-gopf-style-flex a.gw-gopf-post-overlay-btn {\r\n background:((highlight_color));\r\n margin-left:3px;\r\n margin-right:3px;\r\n } \r\n \r\n .gw-gopf-style-flex a.gw-gopf-post-overlay-btn.gw-gopf-btn-outlined {\r\n background:transparent;\r\n border-color:((highlight_color));\r\n color:((highlight_color));\r\n } \r\n \r\n /* Overlay button - button style - hover state */\r\n .gw-gopf-style-flex a.gw-gopf-post-overlay-btn:hover {\r\n background:((main_color_1));\r\n }\r\n \r\n .gw-gopf-style-flex a.gw-gopf-post-overlay-btn.gw-gopf-btn-outlined:hover {\r\n background:transparent;\r\n border-color:((main_color_1));\r\n color:((main_color_1));\r\n } \r\n \r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4] POST CONTENT\r\n \r\n [info] Includes the title, post meta data (e.g. date), the excerpt and read more button or link.\r\n [tip] You can set e.g. padding, etc here.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-flex .gw-gopf-post-content-wrap {\r\n position:absolute; \r\n width:100%;\r\n -moz-transition:all 0.3s ease-in-out;\r\n -ms-transition:all 0.3s ease-in-out;\r\n -o-transition:all 0.3s ease-in-out;\r\n -webkit-transition:all 0.3s ease-in-out;\r\n transition:all 0.3s ease-in-out; \r\n z-index:1;\r\n }\r\n \r\n .gw-gopf-style-flex .gw-gopf-post-content-wrap:before { \r\n background-color:((post_content_color));\r\n opacity:((post_opacity));\r\n }\r\n \r\n .gw-gopf-style-flex .gw-gopf-post-content { \r\n color:((main_color_1)); \r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n line-height:((line_height_m))px; \r\n padding:((post_padding))px;\r\n }\r\n \r\n /* General link style */\r\n .gw-gopf-style-flex .gw-gopf-post-content a {\r\n color:((highlight_color));\r\n }\r\n \r\n .gw-gopf-style-flex .gw-gopf-post-content a:hover {\r\n color:((main_color_1)); \r\n } \r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.1] POST CONTENT - TITLE\r\n \r\n [info] The post title.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n /* The title */\r\n .gw-gopf-style-flex .gw-gopf-post-content h2 {\r\n color:((main_color_1)) !important;\r\n font-family:((font_family_l)) !important;\r\n font-size:((font_size_l))px !important;\r\n line-height:((line_height_l))px !important;\r\n }\r\n \r\n /* The link inside the title */\r\n .gw-gopf-style-flex .gw-gopf-post-content h2 a { \r\n color:inherit;\r\n font-size:inherit !important;\r\n line-height:inherit !important;\r\n }\r\n \r\n /* Hover state - The link inside the title */\r\n .gw-gopf-style-flex .gw-gopf-post-content h2 a:hover { color:((highlight_color)); } \r\n \r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.2] POST CONTENT - META\r\n \r\n [info] The post meta data e.g. post date.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-flex .gw-gopf-post-meta {\r\n color:((main_color_2));\r\n font-family:((font_family_s));\r\n font-size:((font_size_s))px; \r\n line-height:((line_height_s))px;\r\n }\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.3] POST CONTENT - EXCERPT\r\n \r\n [info] The post excerpt.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-flex .gw-gopf-post-excerpt { \r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n line-height:((line_height_m))px !important; \r\n margin-top:15px\r\n }\r\n \r\n .gw-gopf-style-flex .gw-gopf-post-excerpt p {\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n line-height:((line_height_m))px !important;\r\n margin:0 0 15px !important;\r\n padding:0 !important; \r\n }\r\n \r\n .gw-gopf-style-flex .gw-gopf-post-excerpt p:last-child { \r\n margin:0 !important;\r\n padding:0 !important;\r\n }\r\n \r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.4] POST CONTENT - BUTTON\r\n \r\n [info] The read more button or link\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-flex .gw-gopf-post-more { margin-top:15px; }\r\n \r\n /* Link style - without classname */\r\n .gw-gopf-style-flex .gw-gopf-post-more a {\r\n color:((highlight_color));\r\n font-size:((font_size_m))px;\r\n margin-top:15px;\r\n font-weight:bold; \r\n }\r\n \r\n /* Hover (mouse over) state of link */\r\n .gw-gopf-style-flex .gw-gopf-post-more a:hover { color:((main_color_1)); }\r\n \r\n /* Button style - with \"gw-gopf-btn\" classname */\r\n .gw-gopf-style-flex .gw-gopf-post-more a.gw-gopf-btn {\r\n color:((main_color_3));\r\n font-weight:normal;\r\n margin-top:-3px;\r\n }\r\n \r\n .gw-gopf-style-flex .gw-gopf-post-more a.gw-gopf-btn.gw-gopf-btn-outlined { color:((main_color_1)); }\r\n \r\n .gw-gopf-style-flex .gw-gopf-post-more a.gw-gopf-btn.gw-gopf-btn-outlined:hover { color:((highlight_color)); } \r\n \r\n /* Space between buttons */\r\n .gw-gopf-style-flex .gw-gopf-post-more a.gw-gopf-btn { margin-left:10px }\r\n .gw-gopf-style-flex .gw-gopf-post-more a.gw-gopf-btn:first-child { margin-left:0; } \r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.5] POST CONTENT - OTHER\r\n \r\n [info] Highlight box, etc.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-flex .gw-gopf-post-content > *:first-child { margin-top:0 !important; }\r\n\r\n /* Highlight box */\r\n .gw-gopf-style-flex div.gw-gopf-post-highlight-box, .gw-gopf-style-flex div.gw-gopf-post-highlight-box:first-child {\r\n background:((highlight_color));\r\n padding:((post_padding))px; \r\n margin:-((post_padding))px -((post_padding))px ((post_padding))px !important;\r\n }\r\n\r\n /* Highlight box content */ \r\n .gw-gopf-style-flex .gw-gopf-post-highlight-box * { \r\n color:((main_color_3)) !important;\r\n }\r\n\r\n .gw-gopf-style-flex .gw-gopf-post-highlight-box a:hover { \r\n color:((main_color_1)) !important;\r\n }\r\n \r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [5] WOOCOMMERCE STYLES\r\n \r\n/ -------------------------------------------------------------------------------- */ \r\n\r\n /* Sale circle */\r\n .gw-gopf-style-flex .gw-gopf-woo-sale,\r\n .gw-gopf-touch.gw-gopf-style-flex .gw-gopf-post:hover .gw-gopf-woo-sale { \r\n background:((highlight_color));\r\n -moz-border-radius:22px;\r\n -webkit-border-radius:22px;\r\n border-radius:22px;\r\n color:((main_color_3));\r\n display:inline-block;\r\n font-size:((font_size_m))px;\r\n height:44px;\r\n line-height:44px;\r\n position:absolute; \r\n right:10px;\r\n text-align:center;\r\n top:10px;\r\n -moz-transition:opacity 0.1s ease-in-out;\r\n -ms-transition:opacity 0.1s ease-in-out;\r\n -o-transition:opacity 0.1s ease-in-out;\r\n -webkit-transition:opacity 0.1s ease-in-out;\r\n transition:opacity 0.1s ease-in-out; \r\n width:44px;\r\n z-index:5; \r\n }\r\n\r\n .gw-gopf-style-flex .gw-gopf-post:hover .gw-gopf-woo-sale,\r\n .gw-gopf-touch.gw-gopf-style-flex .gw-gopf-current.gw-gopf-post .gw-gopf-woo-sale { \r\n filter:alpha(opacity=50); /* IE 5-7 */\r\n -ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)\"; /* IE 8 */\r\n -khtml-opacity:0.5; /* Safari 1.x */\r\n -moz-opacity:0.5; /* Netscape */\r\n opacity:0.5;\r\n } \r\n \r\n /* Price general */\r\n .gw-gopf-style-flex .gw-gopf-post-woo-price {\r\n color:((highlight_color));\r\n font-size:((font_size_xl))px;\r\n font-weight:bold; \r\n line-height:((line_height_xl))px; \r\n margin-top:15px;\r\n }\r\n\r\n /* Sale price */\r\n .gw-gopf-style-flex .gw-gopf-post-woo-price del {\r\n background:none;\r\n color:((main_color_4));\r\n font-size:((font_size_l))px;\r\n line-height:((line_height_l))px; \r\n margin-right:5px;\r\n text-decoration:line-through;\r\n }\r\n \r\n /* Old price */\r\n .gw-gopf-style-flex .gw-gopf-post-woo-price ins { \r\n background:none;\r\n text-decoration:none !important;\r\n }\r\n \r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [5] EFFECTS\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n \r\n /* No Effect - only overlay */\r\n .gw-gopf-style-flex-no-effect .gw-gopf-post-overlay-bg {\r\n -moz-border-radius:((border_radius_1))px;\r\n -webkit-border-radius:((border_radius_1))px; \r\n border-radius:((border_radius_1))px;\r\n } \r\n\r\n /* Slide Up */ \r\n .gw-gopf-style-flex-slide-up .gw-gopf-post-content-wrap {\r\n top:100%;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-up .gw-gopf-post-overlay-bg {\r\n -moz-border-radius-topleft:((border_radius_1))px;\r\n -moz-border-radius-topright:((border_radius_1))px;\r\n -webkit-border-top-left-radius:((border_radius_1))px;\r\n -webkit-border-top-right-radius:((border_radius_1))px; \r\n border-top-left-radius:((border_radius_1))px;\r\n border-top-right-radius:((border_radius_1))px; \r\n }\r\n \r\n .gw-gopf-style-flex-slide-up .gw-gopf-post-content-wrap:before { \r\n -moz-border-radius-bottomleft:((border_radius_1))px;\r\n -moz-border-radius-bottomright:((border_radius_1))px;\r\n -webkit-border-bottom-left-radius:((border_radius_1))px;\r\n -webkit-border-bottom-right-radius:((border_radius_1))px; \r\n border-bottom-left-radius:((border_radius_1))px;\r\n border-bottom-right-radius:((border_radius_1))px; \r\n }\r\n \r\n /* Slide Up Full */\r\n .gw-gopf-style-flex-slide-up-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:((border_radius_1))px; \r\n }\r\n \r\n .gw-gopf-chrome.gw-gopf-style-flex-slide-up-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-up-full .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-up-full .gw-gopf-post:hover .gw-gopf-post-content-wrap {\r\n top:100%;\r\n height:100%;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-up-full .gw-gopf-post:hover .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-up-full .gw-gopf-current.gw-gopf-post .gw-gopf-post-content-wrap { \r\n top:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-up-full .gw-gopf-post-overlay {\r\n display:none;\r\n }\r\n \r\n /* Slide & Push Up */\r\n .gw-gopf-style-flex-slide-push-up .gw-gopf-post-overlay-bg {\r\n -moz-border-radius-topleft:((border_radius_1))px;\r\n -moz-border-radius-topright:((border_radius_1))px;\r\n -webkit-border-top-left-radius:((border_radius_1))px;\r\n -webkit-border-top-right-radius:((border_radius_1))px; \r\n border-top-left-radius:((border_radius_1))px;\r\n border-top-right-radius:((border_radius_1))px; \r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-up .gw-gopf-post-content-wrap:before { \r\n -moz-border-radius-bottomleft:((border_radius_1))px;\r\n -moz-border-radius-bottomright:((border_radius_1))px;\r\n -webkit-border-bottom-left-radius:((border_radius_1))px;\r\n -webkit-border-bottom-right-radius:((border_radius_1))px; \r\n border-bottom-left-radius:((border_radius_1))px;\r\n border-bottom-right-radius:((border_radius_1))px; \r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-up .gw-gopf-post-content-wrap {\r\n top:100%;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-up .gw-gopf-post-overlay {\r\n top:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-up .gw-gopf-post-header {\r\n bottom:-100%;\r\n height:100%;\r\n -moz-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -ms-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -o-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -webkit-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-up .gw-gopf-post-overlay-bg {\r\n -moz-border-radius-topleft:((border_radius_1))px;\r\n -moz-border-radius-topright:((border_radius_1))px;\r\n -webkit-border-top-left-radius:((border_radius_1))px;\r\n -webkit-border-top-right-radius:((border_radius_1))px; \r\n border-top-left-radius:((border_radius_1))px;\r\n border-top-right-radius:((border_radius_1))px; \r\n } \r\n \r\n /* Slide & Push Up Full */ \r\n .gw-gopf-style-flex-slide-push-up-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:((border_radius_1))px; \r\n }\r\n \r\n .gw-gopf-chrome.gw-gopf-style-flex-slide-push-up-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-up-full .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-push-up-full .gw-gopf-post:hover .gw-gopf-post-content-wrap { \r\n top:100%;\r\n height:100%;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-up-full .gw-gopf-post:hover .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-push-up-full .gw-gopf-current.gw-gopf-post .gw-gopf-post-content-wrap { \r\n top:0;\r\n } \r\n \r\n .gw-gopf-style-flex-slide-push-up-full .gw-gopf-post-header {\r\n bottom:-100%;\r\n height:100%;\r\n -moz-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -ms-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -o-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -webkit-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n } \r\n \r\n .gw-gopf-style-flex-slide-push-up-full .gw-gopf-post-overlay {\r\n display:none;\r\n } \r\n \r\n /* Slide Down */ \r\n .gw-gopf-style-flex-slide-down .gw-gopf-post-overlay-bg {\r\n -moz-border-radius-bottomleft:((border_radius_1))px;\r\n -moz-border-radius-bottomright:((border_radius_1))px;\r\n -webkit-border-bottom-left-radius:((border_radius_1))px;\r\n -webkit-border-bottom-right-radius:((border_radius_1))px; \r\n border-bottom-left-radius:((border_radius_1))px;\r\n border-bottom-right-radius:((border_radius_1))px; \r\n }\r\n \r\n .gw-gopf-style-flex-slide-down .gw-gopf-post-content-wrap:before { \r\n -moz-border-radius-topleft:((border_radius_1))px;\r\n -moz-border-radius-topright:((border_radius_1))px;\r\n -webkit-border-top-left-radius:((border_radius_1))px;\r\n -webkit-border-top-right-radius:((border_radius_1))px; \r\n border-top-left-radius:((border_radius_1))px;\r\n border-top-right-radius:((border_radius_1))px; \r\n }\r\n \r\n .gw-gopf-style-flex-slide-down .gw-gopf-post-content-wrap {\r\n bottom:100%;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-down .gw-gopf-post-overlay {\r\n bottom:0 !important;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-down .gw-gopf-post-overlay-bg {\r\n -moz-border-radius-bottomleft:((border_radius_1))px;\r\n -moz-border-radius-bottomright:((border_radius_1))px;\r\n -webkit-border-bottom-left-radius:((border_radius_1))px;\r\n -webkit-border-bottom-right-radius:((border_radius_1))px; \r\n border-bottom-left-radius:((border_radius_1))px;\r\n border-bottom-right-radius:((border_radius_1))px; \r\n } \r\n \r\n /* Slide Down Full */ \r\n .gw-gopf-style-flex-slide-down-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:((border_radius_1))px; \r\n }\r\n \r\n .gw-gopf-chrome.gw-gopf-style-flex-slide-down-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-down-full .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-down-full .gw-gopf-post:hover .gw-gopf-post-content-wrap { \r\n bottom:100%;\r\n height:100%;\r\n } \r\n\r\n .gw-gopf-style-flex-slide-down-full .gw-gopf-post:hover .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-down-full .gw-gopf-current.gw-gopf-post .gw-gopf-post-content-wrap { \r\n bottom:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-down-full .gw-gopf-post-overlay {\r\n display:none;\r\n }\r\n \r\n /* Slide & Push Down */\r\n .gw-gopf-style-flex-slide-push-down .gw-gopf-post-overlay-bg {\r\n -moz-border-radius-bottomleft:((border_radius_1))px;\r\n -moz-border-radius-bottomright:((border_radius_1))px;\r\n -webkit-border-bottom-left-radius:((border_radius_1))px;\r\n -webkit-border-bottom-right-radius:((border_radius_1))px; \r\n border-bottom-left-radius:((border_radius_1))px;\r\n border-bottom-right-radius:((border_radius_1))px; \r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-down .gw-gopf-post-content-wrap:before { \r\n -moz-border-radius-topleft:((border_radius_1))px;\r\n -moz-border-radius-topright:((border_radius_1))px;\r\n -webkit-border-top-left-radius:((border_radius_1))px;\r\n -webkit-border-top-right-radius:((border_radius_1))px; \r\n border-top-left-radius:((border_radius_1))px;\r\n border-top-right-radius:((border_radius_1))px; \r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-down .gw-gopf-post-content-wrap {\r\n bottom:100%;\r\n }\r\n .gw-gopf-style-flex-slide-push-down .gw-gopf-post-header {\r\n top:-100%;\r\n height:100%;\r\n -moz-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -ms-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -o-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -webkit-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-down .gw-gopf-post-overlay-bg {\r\n -moz-border-radius-bottomleft:((border_radius_1))px;\r\n -moz-border-radius-bottomright:((border_radius_1))px;\r\n -webkit-border-bottom-left-radius:((border_radius_1))px;\r\n -webkit-border-bottom-right-radius:((border_radius_1))px; \r\n border-bottom-left-radius:((border_radius_1))px;\r\n border-bottom-right-radius:((border_radius_1))px; \r\n } \r\n \r\n /* Slide & Push Down Full */ \r\n .gw-gopf-style-flex-slide-push-down-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:((border_radius_1))px; \r\n }\r\n \r\n .gw-gopf-chrome.gw-gopf-style-flex-slide-push-down-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:0;\r\n }\r\n\r\n .gw-gopf-style-flex-slide-push-down-full .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-push-down-full .gw-gopf-post:hover .gw-gopf-post-content-wrap { \r\n bottom:100%;\r\n height:100%;\r\n }\r\n .gw-gopf-style-flex-slide-push-down-full .gw-gopf-post:hover .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-push-down-full .gw-gopf-current.gw-gopf-post .gw-gopf-post-content-wrap { \r\n bottom:0;\r\n } \r\n \r\n .gw-gopf-style-flex-slide-push-down-full .gw-gopf-post-header {\r\n top:-100%;\r\n height:100%;\r\n -moz-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -ms-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -o-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -webkit-transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n transition:height 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n } \r\n \r\n .gw-gopf-style-flex-slide-push-down-full .gw-gopf-post-overlay {\r\n display:none;\r\n }\r\n \r\n /* Slide Left Full */ \r\n .gw-gopf-style-flex-slide-left-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:((border_radius_1))px; \r\n }\r\n \r\n .gw-gopf-chrome.gw-gopf-style-flex-slide-left-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-left-full .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-left-full .gw-gopf-post:hover .gw-gopf-post-content-wrap {\r\n left:100%;\r\n height:100%;\r\n top:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-left-full .gw-gopf-post:hover .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-left-full .gw-gopf-current.gw-gopf-post .gw-gopf-post-content-wrap { \r\n left:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-left-full .gw-gopf-post-overlay {\r\n display:none;\r\n }\r\n \r\n /* Slide & Push Left Full */ \r\n .gw-gopf-style-flex-slide-push-left-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:((border_radius_1))px; \r\n }\r\n \r\n .gw-gopf-chrome.gw-gopf-style-flex-slide-push-left-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-left-full .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-push-left-full .gw-gopf-post:hover .gw-gopf-post-content-wrap { \r\n left:100%;\r\n height:100%;\r\n top:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-left-full .gw-gopf-post:hover .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-push-left-full .gw-gopf-current.gw-gopf-post .gw-gopf-post-content-wrap { \r\n left:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-left-full .gw-gopf-post-overlay {\r\n display:none;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-left-full .gw-gopf-post-header,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-push-left-full .gw-gopf-post:hover .gw-gopf-post-header { \r\n height:100%;\r\n margin-left:0;\r\n margin-right:0; \r\n -moz-transition:left 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -ms-transition:left 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -o-transition:left 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -webkit-transition:left 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n transition:left 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n }\r\n\r\n .gw-gopf-style-flex-slide-push-left-full .gw-gopf-post:hover .gw-gopf-post-header,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-push-left-full .gw-gopf-current.gw-gopf-post .gw-gopf-post-header { \r\n margin-left:-100%;\r\n margin-right:100%; \r\n }\r\n \r\n /* Slide Right Full */\r\n .gw-gopf-style-flex-slide-right-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:((border_radius_1))px; \r\n }\r\n \r\n .gw-gopf-chrome.gw-gopf-style-flex-slide-right-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:0;\r\n } \r\n \r\n .gw-gopf-style-flex-slide-right-full .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-right-full .gw-gopf-post:hover .gw-gopf-post-content-wrap { \r\n left:-100%;\r\n height:100%;\r\n top:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-right-full .gw-gopf-post:hover .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-right-full .gw-gopf-current.gw-gopf-post .gw-gopf-post-content-wrap { \r\n left:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-right-full .gw-gopf-post-overlay {\r\n display:none;\r\n }\r\n \r\n /* Slide & Push Right Full */ \r\n .gw-gopf-style-flex-slide-push-right-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:((border_radius_1))px; \r\n }\r\n \r\n .gw-gopf-chrome.gw-gopf-style-flex-slide-push-right-full .gw-gopf-post-content-wrap:before { \r\n -webkit-border-radius:0;\r\n } \r\n \r\n .gw-gopf-style-flex-slide-push-right-full .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-push-right-full .gw-gopf-post:hover .gw-gopf-post-content-wrap { \r\n left:-100%;\r\n height:100%;\r\n top:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-right-full .gw-gopf-post:hover .gw-gopf-post-content-wrap,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-push-right-full .gw-gopf-current.gw-gopf-post .gw-gopf-post-content-wrap { \r\n left:0;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-right-full .gw-gopf-post-overlay {\r\n display:none;\r\n }\r\n \r\n .gw-gopf-style-flex-slide-push-right-full .gw-gopf-post-header,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-push-right-full .gw-gopf-post:hover .gw-gopf-post-header {\r\n margin-left:0;\r\n margin-right:0; \r\n height:100%;\r\n -moz-transition:left 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -ms-transition:left 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -o-transition:left 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n -webkit-transition:left 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n transition:left 0.3s ease-in-out, margin 0.3s ease-in-out;\r\n }\r\n\r\n .gw-gopf-style-flex-slide-push-right-full .gw-gopf-post:hover .gw-gopf-post-header,\r\n .gw-gopf-touch.gw-gopf-style-flex-slide-push-right-full .gw-gopf-current.gw-gopf-post .gw-gopf-post-header { \r\n margin-left:100%;\r\n margin-right:-100%; \r\n }\";s:7:\"effects\";a:13:{s:9:\"no-effect\";s:24:\"No effect - only overlay\";s:13:\"slide-push-up\";s:15:\"Slide & Push Up\";s:18:\"slide-push-up-full\";s:22:\"Slide & Push Up (Full)\";s:8:\"slide-up\";s:8:\"Slide Up\";s:13:\"slide-up-full\";s:15:\"Slide Up (Full)\";s:15:\"slide-push-down\";s:17:\"Slide & Push Down\";s:20:\"slide-push-down-full\";s:24:\"Slide & Push Down (Full)\";s:10:\"slide-down\";s:10:\"Slide Down\";s:15:\"slide-down-full\";s:17:\"Slide Down (Full)\";s:20:\"slide-push-left-full\";s:24:\"Slide & Push Left (Full)\";s:15:\"slide-left-full\";s:17:\"Slide Left (Full)\";s:21:\"slide-push-right-full\";s:25:\"Slide & Push Right (Full)\";s:16:\"slide-right-full\";s:18:\"Slide Right (Full)\";}}s:5:\"vario\";a:6:{s:4:\"name\";s:11:\"VARIO Style\";s:11:\"description\";s:11:\"VARIO Style\";s:9:\"json_file\";s:10:\"vario.json\";s:8:\"css_file\";s:9:\"vario.css\";s:5:\"class\";s:19:\"gw-gopf-style-vario\";s:4:\"data\";s:19188:\"/* -------------------------------------------------------------------------------- /\r\n \r\n VARIO STYLE - v1.4\r\n \r\n You can add custom notes to code. CSS comments will be removed from the generated output.\r\n\r\n [info] Sometimes you should use \"!important\" css suffix to take the changes effect \r\n when setting a value of a CSS property (e.g. font-size: 11px !important);.\r\n \r\n TABLE OF CONTENT\r\n\r\n [0] SETUP & COMMON STYLES\r\n [1] POST FILTER CATEGORIES & SLIDER ARROWS & PAGINATION\r\n [2] POST WRAPPER\r\n [3] MEDIA WRAP & POST OVERLAY\r\n [4] POST CONTENT\r\n [4.1] POST CONTENT - TITLE\r\n [4.2] POST CONTENT - META\r\n [4.3] POST CONTENT - EXCERPT\r\n [4.4] POST CONTENT - BUTTON\r\n [4.5] POST CONTENT - OTHER\r\n [5] WOOCOMMERCE STYLES\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [0] SETUP & COMMON STYLES\r\n \r\n [info] The portfolio filter categories filter \"buttons\".\r\n [tip] You can set e.g. border radius, colors, etc here.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n /* Button style */\r\n .gw-gopf-style-vario .gw-gopf-btn {\r\n color:((main_color_3));\r\n background:((highlight_color));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px;\r\n border-radius:((border_radius_2))px;\r\n display:inline-block;\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n height:29px; \r\n line-height:29px; \r\n padding:0 9px;\r\n position:relative;\r\n text-align:left;\r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n text-decoration:none !important; \r\n }\r\n \r\n .gw-gopf-style-vario a.gw-gopf-btn.gw-gopf-btn-outlined {\r\n color:((highlight_color));\r\n background:transparent;\r\n border:solid 1px ((highlight_color));\r\n height:27px; \r\n line-height:27px; \r\n padding:0 8px;\r\n } \r\n \r\n /* Hover (mouse over) state of button */\r\n .gw-gopf-style-vario a.gw-gopf-btn:hover {\r\n color:((main_color_3));\r\n background:((main_color_1));\r\n }\r\n \r\n .gw-gopf-style-vario a.gw-gopf-btn.gw-gopf-btn-outlined:hover {\r\n color:((main_color_1));\r\n background:transparent;\r\n border-color:((main_color_1));\r\n } \r\n \r\n /* Circle style */\r\n .gw-gopf-style-vario a.gw-gopf-circle {\r\n -moz-border-radius:22px;\r\n -webkit-border-radius:22px;\r\n border-radius:22px;\r\n display:inline-block;\r\n height:44px;\r\n line-height:44px;\r\n position: relative;\r\n margin-left:3px;\r\n margin-right:3px; \r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n width:44px;\r\n } \r\n \r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [1] POST FILTER CATEGORIES & SLIDER ARROWS & PAGINATION\r\n \r\n [info] The portfolio filter categories filter \"buttons\".\r\n [tip] You can set e.g. border radius, colors, etc here.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n /* Filter categories (buttons) */\r\n .gw-gopf-style-vario .gw-gopf-cats > span a {\r\n background:((main_color_1));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px; \r\n border-radius:((border_radius_2))px; \r\n color:((main_color_3));\r\n display:block;\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px; \r\n height:29px;\r\n line-height:29px;\r\n padding:0 10px;\r\n text-decoration:none;\r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n }\r\n \r\n .gw-gopf-style-vario .gw-gopf-cats > span a.gw-gopf-btn-outlined {\r\n color:((main_color_1));\r\n background:transparent;\r\n border:solid 1px ((main_color_1));\r\n height:27px; \r\n line-height:27px; \r\n padding:0 8px;\r\n } \r\n \r\n /* Filter categories (buttons) - selected element */ \r\n .gw-gopf-style-vario .gw-gopf-cats > span.gw-gopf-current a { \r\n background:((highlight_color));\r\n }\r\n \r\n .gw-gopf-style-vario .gw-gopf-cats > span.gw-gopf-current a.gw-gopf-btn-outlined { \r\n background:transparent; \r\n border-color:((highlight_color));\r\n color:((highlight_color));\r\n } \r\n \r\n /* Filter categories (buttons) - hovered element */\r\n .gw-gopf-style-vario .gw-gopf-cats > span a:hover { \r\n background:((main_color_2));\r\n }\r\n \r\n .gw-gopf-style-vario .gw-gopf-cats > span a.gw-gopf-btn-outlined:hover { \r\n background:transparent;\r\n border-color:((main_color_2)); \r\n color:((main_color_2));\r\n } \r\n \r\n /* Arrows (buttons) */\r\n .gw-gopf-style-vario .gw-gopf-slider-controls > div a {\r\n background:((highlight_color));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px; \r\n border-radius:((border_radius_2))px; \r\n color:((main_color_3));\r\n display:table-cell;\r\n height:29px;\r\n text-decoration:none;\r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n vertical-align:middle; \r\n width:28px;\r\n }\r\n\r\n /* Arrows (buttons) - hovered element */\r\n .gw-gopf-style-vario .gw-gopf-slider-controls > div a:hover {\r\n background:((main_color_1));\r\n }\r\n\r\n /* Arrows (buttons) - inactive */\r\n .gw-gopf-style-vario .gw-gopf-slider-controls > div a.disabled {\r\n background:((main_color_1));\r\n }\r\n \r\n /* Pagination - Load more (button) */\r\n .gw-gopf-style-vario a.gw-gopf-pagination-load-more {\r\n background:((main_color_1));\r\n -moz-border-radius:((border_radius_2))px;\r\n -webkit-border-radius:((border_radius_2))px; \r\n border-radius:((border_radius_2))px; \r\n color:((main_color_3));\r\n display:inline-block;\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px; \r\n height:29px;\r\n line-height:29px;\r\n padding:0 10px;\r\n text-decoration:none;\r\n -moz-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -ms-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -o-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n -webkit-transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n transition:color 0.08s ease-in-out, background-color 0.08s ease-in-out, border-color 0.08s ease-in-out;\r\n }\r\n \r\n /* Pagination - Load more (outlined button) */\r\n .gw-gopf-style-vario a.gw-gopf-pagination-load-more.gw-gopf-btn-outlined {\r\n color:((main_color_1));\r\n background:transparent;\r\n border:solid 1px ((main_color_1));\r\n height:27px; \r\n line-height:27px; \r\n padding:0 8px;\r\n }\r\n \r\n /* Pagination - Load more (button) - hovered */\r\n .gw-gopf-style-vario a.gw-gopf-pagination-load-more:hover { \r\n background:((main_color_2));\r\n }\r\n \r\n /* Pagination - Load more (outlined button) - hovered */\r\n .gw-gopf-style-vario a.gw-gopf-pagination-load-more.gw-gopf-btn-outlined:hover { \r\n background:transparent;\r\n border-color:((main_color_2)); \r\n color:((main_color_2));\r\n } \r\n \r\n\r\n/* -------------------------------------------------------------------------------- /\r\n \r\n [2] POST WRAPPER\r\n \r\n [info] The whole post container, including the media and content.\r\n [tip] You can set e.g. border radius or box shadow here for the the whole post.\r\n\r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-vario .gw-gopf-post {\r\n -moz-border-radius:((border_radius_1))px;\r\n -webkit-border-radius:((border_radius_1))px;\r\n border-radius:((border_radius_1))px;\r\n -moz-box-shadow:0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity))); \r\n -o-box-shadow:0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity)));\r\n -webkit-box-shadow:0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity)));\r\n box-shadow:0 0 ((box_shadow_blur))px ((box_shadow_spread))px rgba(0,0,0,((box_shadow_opacity))); \r\n overflow:hidden;\r\n }\r\n \r\n\r\n/* -------------------------------------------------------------------------------- /\r\n \r\n [3] MEDIA WRAP & POST OVERLAY\r\n \r\n [info] The whole post overlay with its content.\r\n [tip] You can set e.g. overlay circles and buttons.\r\n\r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-vario .gw-gopf-post-media-wrap { \r\n -moz-border-radius-topleft:((border_radius_1))px;\r\n -moz-border-radius-topright:((border_radius_1))px;\r\n -webkit-border-top-left-radius:((border_radius_1))px;\r\n -webkit-border-top-right-radius:((border_radius_1))px; \r\n border-top-left-radius:((border_radius_1))px;\r\n border-top-right-radius:((border_radius_1))px;\r\n }\r\n\r\n .gw-gopf-style-vario .gw-gopf-post-overlay-bg { \r\n -moz-border-radius-topleft:((border_radius_1))px;\r\n -moz-border-radius-topright:((border_radius_1))px;\r\n -webkit-border-top-left-radius:((border_radius_1))px;\r\n -webkit-border-top-right-radius:((border_radius_1))px; \r\n border-top-left-radius:((border_radius_1))px;\r\n border-top-right-radius:((border_radius_1))px;\r\n }\r\n\r\n /* Overlay button - circle style - normal state */\r\n .gw-gopf-style-vario a.gw-gopf-post-overlay-circle { \r\n background:((highlight_color));\r\n } \r\n \r\n /* Overlay button - circle style - hover state */\r\n .gw-gopf-style-vario a.gw-gopf-post-overlay-circle:hover { \r\n background:((main_color_1));\r\n } \r\n \r\n /* Overlay button - button style - normal state */\r\n .gw-gopf-style-vario a.gw-gopf-post-overlay-btn {\r\n background:((highlight_color));\r\n margin-left:3px;\r\n margin-right:3px;\r\n }\r\n \r\n .gw-gopf-style-vario a.gw-gopf-post-overlay-btn.gw-gopf-btn-outlined {\r\n background:transparent;\r\n border-color:((highlight_color));\r\n color:((highlight_color));\r\n } \r\n \r\n /* Overlay button - button style - hover state */\r\n .gw-gopf-style-vario a.gw-gopf-post-overlay-btn:hover {\r\n background:((main_color_1));\r\n }\r\n \r\n .gw-gopf-style-vario a.gw-gopf-post-overlay-btn.gw-gopf-btn-outlined:hover {\r\n background:transparent;\r\n border-color:((main_color_1));\r\n color:((main_color_1));\r\n } \r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4] POST CONTENT\r\n \r\n [info] Includes the title, post meta data (e.g. date), the excerpt and read more button or link.\r\n [tip] You can set e.g. padding, etc here.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-vario .gw-gopf-post-content-wrap:before { \r\n -moz-border-radius-bottomleft:((border_radius_1))px;\r\n -moz-border-radius-bottomright:((border_radius_1))px;\r\n -webkit-border-bottom-left-radius:((border_radius_1))px;\r\n -webkit-border-bottom-right-radius:((border_radius_1))px; \r\n border-bottom-left-radius:((border_radius_1))px;\r\n border-bottom-right-radius:((border_radius_1))px; \r\n background-color:((post_content_color));\r\n opacity:((post_opacity));\r\n }\r\n \r\n .gw-gopf-style-vario .gw-gopf-post-content { \r\n color:((main_color_1)); \r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n line-height:((line_height_m))px; \r\n padding:((post_padding))px;\r\n }\r\n\r\n /* General link style */\r\n .gw-gopf-style-vario .gw-gopf-post-content a {\r\n color:((highlight_color));\r\n }\r\n \r\n .gw-gopf-style-vario .gw-gopf-post-content a:hover {\r\n color:((main_color_1)); \r\n } \r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.1] POST CONTENT - TITLE\r\n \r\n [info] The post title.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n /* The title */\r\n .gw-gopf-style-vario .gw-gopf-post-content h2 {\r\n color:((main_color_1)) !important;\r\n font-family:((font_family_l)) !important;\r\n font-size:((font_size_l))px !important;\r\n line-height:((line_height_l))px !important;\r\n }\r\n \r\n /* The link inside the title */\r\n .gw-gopf-style-vario .gw-gopf-post-content h2 a { \r\n color:inherit;\r\n font-size:inherit !important;\r\n line-height:inherit !important;\r\n }\r\n \r\n /* Hover state - The link inside the title */\r\n .gw-gopf-style-vario .gw-gopf-post-content h2 a:hover { color:((highlight_color)); } \r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.2] POST CONTENT - META\r\n \r\n [info] The post meta data e.g. post date.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-vario .gw-gopf-post-meta {\r\n color:((highlight_color));\r\n font-family:((font_family_s));\r\n font-size:((font_size_s))px; \r\n line-height:((line_height_s))px; \r\n }\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.3] POST CONTENT - EXCERPT\r\n \r\n [info] The post excerpt.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-vario .gw-gopf-post-excerpt { \r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n line-height:((line_height_m))px !important; \r\n margin-top:15px\r\n }\r\n \r\n .gw-gopf-style-vario .gw-gopf-post-excerpt p {\r\n font-family:((font_family_m));\r\n font-size:((font_size_m))px;\r\n line-height:((line_height_m))px !important;\r\n margin:0 0 15px !important;\r\n padding:0 !important; \r\n }\r\n \r\n .gw-gopf-style-vario .gw-gopf-post-excerpt p:last-child { \r\n margin:0 !important;\r\n padding:0 !important;\r\n }\r\n \r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.4] POST CONTENT - BUTTON\r\n \r\n [info] The read more button or link\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-vario .gw-gopf-post-more { margin-top:15px; }\r\n \r\n /* Link style - without classname */\r\n .gw-gopf-style-vario .gw-gopf-post-more a {\r\n color:((highlight_color));\r\n font-size:((font_size_m))px;\r\n margin-top:15px;\r\n font-weight:bold; \r\n }\r\n \r\n /* Hover (mouse over) state of link */\r\n .gw-gopf-style-vario .gw-gopf-post-more a:hover {\r\n color:((main_color_1));\r\n font-size:((font_size_m))px;\r\n font-weight:bold;\r\n }\r\n \r\n /* Button style - with \"gw-gopf-btn\" classname */\r\n .gw-gopf-style-vario .gw-gopf-post-more a.gw-gopf-btn {\r\n color:((main_color_3));\r\n font-weight:normal;\r\n margin-top:-3px;\r\n }\r\n\r\n .gw-gopf-style-vario .gw-gopf-post-more a.gw-gopf-btn.gw-gopf-btn-outlined { color:((highlight_color)); }\r\n \r\n .gw-gopf-style-vario .gw-gopf-post-more a.gw-gopf-btn.gw-gopf-btn-outlined:hover { color:((main_color_1)); } \r\n \r\n /* Space between buttons */\r\n .gw-gopf-style-vario .gw-gopf-post-more a.gw-gopf-btn { margin-left:10px }\r\n .gw-gopf-style-vario .gw-gopf-post-more a.gw-gopf-btn:first-child { margin-left:0; } \r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [4.5] POST CONTENT - OTHER\r\n \r\n [info] Highlight box, etc.\r\n \r\n/ -------------------------------------------------------------------------------- */\r\n\r\n .gw-gopf-style-vario .gw-gopf-post-content > *:first-child { margin-top:0 !important; }\r\n\r\n /* Highlight box */\r\n .gw-gopf-style-vario div.gw-gopf-post-highlight-box, .gw-gopf-style-vario div.gw-gopf-post-highlight-box:first-child {\r\n background:((highlight_color));\r\n padding:((post_padding))px; \r\n margin:-((post_padding))px -((post_padding))px ((post_padding))px !important;\r\n }\r\n\r\n /* Highlight box content */ \r\n .gw-gopf-style-vario .gw-gopf-post-highlight-box * { \r\n color:((main_color_3)) !important;\r\n }\r\n\r\n .gw-gopf-style-vario .gw-gopf-post-highlight-box a:hover { \r\n color:((main_color_1)) !important;\r\n }\r\n \r\n\r\n\r\n/* -------------------------------------------------------------------------------- /\r\n\r\n [5] WOOCOMMERCE STYLES\r\n \r\n/ -------------------------------------------------------------------------------- */ \r\n\r\n /* Sale circle */\r\n .gw-gopf-style-vario .gw-gopf-woo-sale, \r\n .gw-gopf-touch.gw-gopf-style-vario .gw-gopf-post:hover .gw-gopf-woo-sale { \r\n background:((highlight_color));\r\n -moz-border-radius:22px;\r\n -webkit-border-radius:22px;\r\n border-radius:22px;\r\n color:((main_color_3));\r\n display:inline-block;\r\n font-size:((font_size_m))px;\r\n height:44px;\r\n line-height:44px;\r\n position:absolute; \r\n right:10px;\r\n text-align:center;\r\n top:10px;\r\n -moz-transition:opacity 0.1s ease-in-out;\r\n -ms-transition:opacity 0.1s ease-in-out;\r\n -o-transition:opacity 0.1s ease-in-out;\r\n -webkit-transition:opacity 0.1s ease-in-out;\r\n transition:opacity 0.1s ease-in-out; \r\n width:44px;\r\n z-index:5;\r\n }\r\n\r\n .gw-gopf-style-vario .gw-gopf-post:hover .gw-gopf-woo-sale,\r\n .gw-gopf-touch.gw-gopf-style-vario .gw-gopf-current.gw-gopf-post .gw-gopf-woo-sale { \r\n filter:alpha(opacity=50); /* IE 5-7 */\r\n -ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)\"; /* IE 8 */\r\n -khtml-opacity:0.5; /* Safari 1.x */\r\n -moz-opacity:0.5; /* Netscape */\r\n opacity:0.5;\r\n }\r\n \r\n /* Price general */\r\n .gw-gopf-style-vario .gw-gopf-post-woo-price {\r\n color:((highlight_color));\r\n font-size:((font_size_xl))px;\r\n font-weight:bold; \r\n line-height:((line_height_xl))px; \r\n margin-top:15px;\r\n }\r\n\r\n /* Sale price */\r\n .gw-gopf-style-vario .gw-gopf-post-woo-price del {\r\n background:none;\r\n color:((main_color_4));\r\n font-size:((font_size_l))px;\r\n line-height:((line_height_l))px; \r\n margin-right:8px;\r\n text-decoration:line-through;\r\n }\r\n \r\n /* Old price */\r\n .gw-gopf-style-vario .gw-gopf-post-woo-price ins { \r\n background:none;\r\n text-decoration:none !important;\r\n }\";}}','yes'),(224,'business_hour_mon_to_fry','9am to 5pm','yes'),(228,'business_hour_sun','closed','yes'),(231,'business_hour','<strong>Monday-Friday:</strong> 7am to 4pm\r\n<br><br>\r\n\r\n<strong>Saturday & Sunday:</strong> Closed','yes'),(465,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(4930,'product_shipping_class_children','a:0:{}','yes'),(25052,'category_children','a:0:{}','yes'),(695,'physical_address','5712 W. Sligh Ave.<br>\r\nTampa, FL 33634','yes'),(698,'contact_email','info@dhoi.com','yes'),(311,'woocommerce_default_country','GB','yes'),(312,'woocommerce_allowed_countries','all','yes'),(313,'woocommerce_specific_allowed_countries','','yes'),(314,'woocommerce_demo_store','no','yes'),(315,'woocommerce_demo_store_notice','This is a demo store for testing purposes — no orders shall be fulfilled.','no'),(316,'woocommerce_api_enabled','yes','yes'),(317,'woocommerce_currency','GBP','yes'),(318,'woocommerce_currency_pos','left','yes'),(319,'woocommerce_price_thousand_sep',',','yes'),(320,'woocommerce_price_decimal_sep','.','yes'),(321,'woocommerce_price_num_decimals','2','yes'),(322,'woocommerce_enable_lightbox','yes','yes'),(323,'woocommerce_enable_chosen','yes','no'),(324,'woocommerce_shop_page_id','88','yes'),(325,'woocommerce_shop_page_display','','yes'),(326,'woocommerce_category_archive_display','','yes'),(327,'woocommerce_default_catalog_orderby','title','yes'),(328,'woocommerce_cart_redirect_after_add','no','yes'),(329,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(330,'woocommerce_weight_unit','kg','yes'),(331,'woocommerce_dimension_unit','cm','yes'),(332,'woocommerce_enable_review_rating','yes','no'),(333,'woocommerce_review_rating_required','yes','no'),(334,'woocommerce_review_rating_verification_label','yes','no'),(335,'woocommerce_review_rating_verification_required','no','no'),(336,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";b:1;}','yes'),(337,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";i:1;}','yes'),(338,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:2:\"90\";s:6:\"height\";s:2:\"90\";s:4:\"crop\";i:1;}','yes'),(339,'woocommerce_file_download_method','force','no'),(340,'woocommerce_downloads_require_login','no','no'),(341,'woocommerce_downloads_grant_access_after_payment','yes','no'),(342,'woocommerce_manage_stock','yes','yes'),(343,'woocommerce_hold_stock_minutes','60','no'),(344,'woocommerce_notify_low_stock','yes','no'),(345,'woocommerce_notify_no_stock','yes','no'),(346,'woocommerce_stock_email_recipient','monika.webmaster2012@gmail.com','no'),(347,'woocommerce_notify_low_stock_amount','2','no'),(348,'woocommerce_notify_no_stock_amount','0','no'),(349,'woocommerce_hide_out_of_stock_items','no','yes'),(350,'woocommerce_stock_format','','yes'),(351,'woocommerce_calc_taxes','no','yes'),(352,'woocommerce_prices_include_tax','no','yes'),(353,'woocommerce_tax_based_on','shipping','yes'),(354,'woocommerce_default_customer_address','base','yes'),(355,'woocommerce_shipping_tax_class','title','yes'),(356,'woocommerce_tax_round_at_subtotal','no','yes'),(25360,'_transient_health-check-site-status-result','{\"good\":13,\"recommended\":5,\"critical\":2}','yes'),(358,'woocommerce_tax_display_shop','excl','yes'),(359,'woocommerce_price_display_suffix','','yes'),(360,'woocommerce_tax_display_cart','excl','no'),(361,'woocommerce_tax_total_display','itemized','no'),(362,'woocommerce_enable_coupons','yes','no'),(363,'woocommerce_enable_guest_checkout','yes','no'),(364,'woocommerce_force_ssl_checkout','no','yes'),(365,'woocommerce_unforce_ssl_checkout','no','yes'),(366,'woocommerce_cart_page_id','89','yes'),(367,'woocommerce_checkout_page_id','90','yes'),(368,'woocommerce_terms_page_id','','no'),(369,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(370,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(371,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(372,'woocommerce_calc_shipping','yes','yes'),(373,'woocommerce_enable_shipping_calc','yes','no'),(374,'woocommerce_shipping_cost_requires_address','no','no'),(375,'woocommerce_shipping_method_format','','no'),(376,'woocommerce_ship_to_billing','yes','no'),(377,'woocommerce_ship_to_billing_address_only','no','no'),(378,'woocommerce_ship_to_countries','','yes'),(379,'woocommerce_specific_ship_to_countries','','yes'),(380,'woocommerce_myaccount_page_id','91','yes'),(381,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(382,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(383,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(384,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(385,'woocommerce_logout_endpoint','customer-logout','yes'),(386,'woocommerce_enable_signup_and_login_from_checkout','yes','no'),(387,'woocommerce_enable_myaccount_registration','no','no'),(388,'woocommerce_enable_checkout_login_reminder','yes','no'),(389,'woocommerce_registration_generate_username','yes','no'),(390,'woocommerce_registration_generate_password','no','no'),(391,'woocommerce_email_from_name','dhoi','no'),(392,'woocommerce_email_from_address','monika.webmaster2012@gmail.com','no'),(393,'woocommerce_email_header_image','','no'),(394,'woocommerce_email_footer_text','dhoi - Powered by WooCommerce','no'),(395,'woocommerce_email_base_color','#557da1','no'),(396,'woocommerce_email_background_color','#f5f5f5','no'),(397,'woocommerce_email_body_background_color','#fdfdfd','no'),(398,'woocommerce_email_text_color','#505050','no'),(400,'woocommerce_db_version','5.0.0','yes'),(401,'woocommerce_version','5.1.0','yes'),(428,'_transient_woocommerce_cache_excluded_uris','a:6:{i:0;s:4:\"p=89\";i:1;s:4:\"p=90\";i:2;s:4:\"p=91\";i:3;s:5:\"/cart\";i:4;s:9:\"/checkout\";i:5;s:11:\"/my-account\";}','yes'),(410,'woocommerce_meta_box_errors','a:0:{}','yes'),(24639,'_transient_timeout_woocommerce_processing_order_count','1631973454','no'),(24640,'_transient_woocommerce_processing_order_count','0','no'),(427,'slurp_page_installed','1','yes'),(1804,'gw_go_portfolio_general_settings','a:14:{s:16:\"enable_post_type\";a:1:{s:7:\"project\";s:7:\"project\";}s:12:\"primary-font\";s:0:\"\";s:16:\"primary-font-css\";s:0:\"\";s:14:\"secondary-font\";s:0:\"\";s:18:\"secondary-font-css\";s:0:\"\";s:12:\"responsivity\";s:1:\"1\";s:9:\"size1-min\";s:5:\"768px\";s:9:\"size1-max\";s:5:\"959px\";s:9:\"size2-min\";s:5:\"480px\";s:9:\"size2-max\";s:5:\"767px\";s:9:\"size3-min\";s:0:\"\";s:9:\"size3-max\";s:5:\"479px\";s:10:\"max-width2\";s:0:\"\";s:9:\"max-width\";s:5:\"400px\";}','yes'),(2952,'gw_go_portfolio_version','1.4.0','yes'),(1831,'gw_go_portfolio_portfolios','a:2:{s:13:\"53e0e12fa675b\";a:69:{s:6:\"uniqid\";s:13:\"53e0e12fa675b\";s:4:\"name\";s:4:\"port\";s:2:\"id\";s:6:\"port_1\";s:9:\"post-type\";s:7:\"project\";s:7:\"enabled\";s:1:\"1\";s:16:\"cpt-query-method\";s:6:\"manual\";s:20:\"gallery-query-method\";s:6:\"visual\";s:8:\"post-tax\";a:3:{s:4:\"post\";s:8:\"category\";s:7:\"product\";s:11:\"product_cat\";s:5:\"brand\";s:11:\"product_cat\";}s:5:\"order\";s:4:\"DESC\";s:7:\"orderby\";s:4:\"date\";s:10:\"post-count\";s:0:\"\";s:11:\"layout-type\";s:4:\"grid\";s:13:\"trans-enabled\";s:1:\"1\";s:25:\"slider-autoplay-direction\";s:4:\"left\";s:23:\"slider-autoplay-timeout\";s:4:\"3000\";s:19:\"slider-arrows-align\";s:0:\"\";s:21:\"slider-arrows-v-space\";s:2:\"20\";s:21:\"slider-arrows-h-space\";s:1:\"6\";s:13:\"column-layout\";s:13:\"gw-gopf-3cols\";s:7:\"h-space\";s:2:\"20\";s:7:\"v-space\";s:2:\"20\";s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:14:\"thumbnail-size\";s:4:\"full\";s:13:\"lightbox-size\";s:4:\"full\";s:8:\"template\";s:7:\"default\";s:5:\"style\";s:4:\"flex\";s:11:\"effect-data\";s:13:\"slide-up-full\";s:3:\"css\";a:26:{s:12:\"font_size_xl\";a:2:{s:3:\"val\";s:2:\"22\";s:4:\"type\";s:3:\"int\";}s:14:\"line_height_xl\";a:2:{s:3:\"val\";s:2:\"22\";s:4:\"type\";s:3:\"int\";}s:14:\"font_family_xl\";a:2:{s:3:\"val\";s:1:\"1\";s:4:\"type\";s:6:\"string\";}s:11:\"font_size_l\";a:2:{s:3:\"val\";s:2:\"16\";s:4:\"type\";s:3:\"int\";}s:13:\"line_height_l\";a:2:{s:3:\"val\";s:2:\"20\";s:4:\"type\";s:3:\"int\";}s:13:\"font_family_l\";a:2:{s:3:\"val\";s:1:\"1\";s:4:\"type\";s:6:\"string\";}s:11:\"font_size_m\";a:2:{s:3:\"val\";s:2:\"12\";s:4:\"type\";s:3:\"int\";}s:13:\"line_height_m\";a:2:{s:3:\"val\";s:2:\"15\";s:4:\"type\";s:3:\"int\";}s:13:\"font_family_m\";a:2:{s:3:\"val\";s:0:\"\";s:4:\"type\";s:6:\"string\";}s:11:\"font_size_s\";a:2:{s:3:\"val\";s:2:\"11\";s:4:\"type\";s:3:\"int\";}s:13:\"line_height_s\";a:2:{s:3:\"val\";s:2:\"15\";s:4:\"type\";s:3:\"int\";}s:13:\"font_family_s\";a:2:{s:3:\"val\";s:0:\"\";s:4:\"type\";s:6:\"string\";}s:12:\"main_color_1\";a:2:{s:3:\"val\";s:7:\"#333333\";s:4:\"type\";s:6:\"string\";}s:12:\"main_color_2\";a:2:{s:3:\"val\";s:7:\"#787878\";s:4:\"type\";s:6:\"string\";}s:12:\"main_color_3\";a:2:{s:3:\"val\";s:7:\"#ffffff\";s:4:\"type\";s:6:\"string\";}s:12:\"main_color_4\";a:2:{s:3:\"val\";s:7:\"#b8b8b8\";s:4:\"type\";s:6:\"string\";}s:15:\"highlight_color\";a:2:{s:3:\"val\";s:7:\"#28ac86\";s:4:\"type\";s:6:\"string\";}s:18:\"post_content_color\";a:2:{s:3:\"val\";s:7:\"#ffffff\";s:4:\"type\";s:6:\"string\";}s:12:\"post_padding\";a:2:{s:3:\"val\";s:2:\"20\";s:4:\"type\";s:3:\"int\";}s:12:\"post_opacity\";a:2:{s:3:\"val\";s:3:\"100\";s:4:\"type\";s:3:\"int\";}s:15:\"border_radius_1\";a:2:{s:3:\"val\";s:1:\"0\";s:4:\"type\";s:3:\"int\";}s:15:\"border_radius_2\";a:2:{s:3:\"val\";s:1:\"0\";s:4:\"type\";s:3:\"int\";}s:15:\"border_radius_3\";a:2:{s:3:\"val\";s:2:\"22\";s:4:\"type\";s:3:\"int\";}s:18:\"box_shadow_opacity\";a:2:{s:3:\"val\";s:1:\"0\";s:4:\"type\";s:3:\"int\";}s:15:\"box_shadow_blur\";a:2:{s:3:\"val\";s:1:\"0\";s:4:\"type\";s:3:\"int\";}s:17:\"box_shadow_spread\";a:2:{s:3:\"val\";s:1:\"0\";s:4:\"type\";s:3:\"int\";}}s:10:\"filter-tax\";a:3:{s:4:\"post\";s:8:\"category\";s:7:\"product\";s:11:\"product_cat\";s:5:\"brand\";s:11:\"product_cat\";}s:15:\"filter-all-text\";s:3:\"All\";s:16:\"filter-tag-style\";s:0:\"\";s:24:\"filter-current-tag-style\";s:0:\"\";s:12:\"filter-align\";s:0:\"\";s:14:\"filter-v-space\";s:2:\"20\";s:14:\"filter-h-space\";s:1:\"6\";s:7:\"overlay\";s:1:\"1\";s:13:\"overlay-hover\";s:1:\"1\";s:13:\"overlay-color\";s:7:\"#333333\";s:15:\"overlay-opacity\";s:2:\"30\";s:17:\"overlay-button-lb\";s:1:\"1\";s:19:\"overlay-button-link\";s:1:\"1\";s:13:\"overlay-style\";s:1:\"1\";s:17:\"overlay-btn-style\";s:0:\"\";s:21:\"overlay-btn-link-post\";s:9:\"Read More\";s:22:\"overlay-btn-link-image\";s:9:\"Show More\";s:22:\"overlay-btn-link-video\";s:10:\"Watch This\";s:22:\"overlay-btn-link-audio\";s:11:\"Listen This\";s:16:\"lightbox-caption\";s:1:\"1\";s:16:\"lightbox-gallery\";s:1:\"1\";s:21:\"lightbox-deep-linking\";s:1:\"1\";s:10:\"post-align\";s:4:\"left\";s:12:\"title-length\";s:0:\"\";s:11:\"excerpt-src\";s:7:\"content\";s:14:\"excerpt-length\";s:2:\"10\";s:12:\"excerpt-more\";s:3:\"...\";s:16:\"excerpt-strip-sc\";s:1:\"1\";s:18:\"excerpt-strip-html\";s:1:\"1\";s:20:\"excerpt-allowed-tags\";s:0:\"\";s:16:\"post-button-text\";s:9:\"Read More\";s:17:\"post-button-align\";s:4:\"left\";s:17:\"post_button_style\";s:0:\"\";s:10:\"pagination\";s:1:\"1\";s:15:\"pagination-type\";s:9:\"load-more\";s:16:\"pagination-align\";s:0:\"\";s:18:\"pagination-v-space\";s:2:\"20\";s:22:\"load-more-button-style\";s:0:\"\";s:21:\"load-more-button-text\";s:9:\"Load More\";s:29:\"load-more-button-loading-text\";s:10:\"Loading...\";}s:13:\"53e8d890c71ce\";a:69:{s:6:\"uniqid\";s:13:\"53e8d890c71ce\";s:4:\"name\";s:4:\"test\";s:2:\"id\";s:6:\"test-1\";s:9:\"post-type\";s:7:\"project\";s:16:\"cpt-query-method\";s:6:\"manual\";s:20:\"gallery-query-method\";s:6:\"visual\";s:8:\"post-tax\";a:3:{s:4:\"post\";s:8:\"category\";s:7:\"product\";s:12:\"product_type\";s:5:\"brand\";s:11:\"product_cat\";}s:5:\"order\";s:4:\"DESC\";s:7:\"orderby\";s:4:\"date\";s:10:\"post-count\";s:0:\"\";s:11:\"layout-type\";s:4:\"grid\";s:13:\"trans-enabled\";s:1:\"1\";s:25:\"slider-autoplay-direction\";s:4:\"left\";s:23:\"slider-autoplay-timeout\";s:4:\"3000\";s:19:\"slider-arrows-align\";s:0:\"\";s:21:\"slider-arrows-v-space\";s:2:\"20\";s:21:\"slider-arrows-h-space\";s:1:\"6\";s:13:\"column-layout\";s:13:\"gw-gopf-3cols\";s:7:\"h-space\";s:2:\"20\";s:7:\"v-space\";s:2:\"20\";s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"100\";s:14:\"thumbnail-size\";s:4:\"full\";s:13:\"lightbox-size\";s:4:\"full\";s:8:\"template\";s:8:\"default4\";s:5:\"style\";s:5:\"delux\";s:11:\"effect-data\";s:7:\"push-up\";s:3:\"css\";a:26:{s:12:\"font_size_xl\";a:2:{s:3:\"val\";s:2:\"22\";s:4:\"type\";s:3:\"int\";}s:14:\"line_height_xl\";a:2:{s:3:\"val\";s:2:\"22\";s:4:\"type\";s:3:\"int\";}s:14:\"font_family_xl\";a:2:{s:3:\"val\";s:0:\"\";s:4:\"type\";s:6:\"string\";}s:11:\"font_size_l\";a:2:{s:3:\"val\";s:2:\"16\";s:4:\"type\";s:3:\"int\";}s:13:\"line_height_l\";a:2:{s:3:\"val\";s:2:\"20\";s:4:\"type\";s:3:\"int\";}s:13:\"font_family_l\";a:2:{s:3:\"val\";s:0:\"\";s:4:\"type\";s:6:\"string\";}s:11:\"font_size_m\";a:2:{s:3:\"val\";s:2:\"12\";s:4:\"type\";s:3:\"int\";}s:13:\"line_height_m\";a:2:{s:3:\"val\";s:2:\"15\";s:4:\"type\";s:3:\"int\";}s:13:\"font_family_m\";a:2:{s:3:\"val\";s:0:\"\";s:4:\"type\";s:6:\"string\";}s:11:\"font_size_s\";a:2:{s:3:\"val\";s:2:\"11\";s:4:\"type\";s:3:\"int\";}s:13:\"line_height_s\";a:2:{s:3:\"val\";s:2:\"15\";s:4:\"type\";s:3:\"int\";}s:13:\"font_family_s\";a:2:{s:3:\"val\";s:0:\"\";s:4:\"type\";s:6:\"string\";}s:12:\"main_color_1\";a:2:{s:3:\"val\";s:7:\"#333333\";s:4:\"type\";s:6:\"string\";}s:12:\"main_color_2\";a:2:{s:3:\"val\";s:7:\"#787878\";s:4:\"type\";s:6:\"string\";}s:12:\"main_color_3\";a:2:{s:3:\"val\";s:7:\"#ffffff\";s:4:\"type\";s:6:\"string\";}s:12:\"main_color_4\";a:2:{s:3:\"val\";s:7:\"#b8b8b8\";s:4:\"type\";s:6:\"string\";}s:15:\"highlight_color\";a:2:{s:3:\"val\";s:7:\"#28ac86\";s:4:\"type\";s:6:\"string\";}s:18:\"post_content_color\";a:2:{s:3:\"val\";s:7:\"#ffffff\";s:4:\"type\";s:6:\"string\";}s:12:\"post_padding\";a:2:{s:3:\"val\";s:2:\"20\";s:4:\"type\";s:3:\"int\";}s:12:\"post_opacity\";a:2:{s:3:\"val\";s:3:\"100\";s:4:\"type\";s:3:\"int\";}s:15:\"border_radius_1\";a:2:{s:3:\"val\";s:1:\"0\";s:4:\"type\";s:3:\"int\";}s:15:\"border_radius_2\";a:2:{s:3:\"val\";s:1:\"0\";s:4:\"type\";s:3:\"int\";}s:15:\"border_radius_3\";a:2:{s:3:\"val\";s:2:\"22\";s:4:\"type\";s:3:\"int\";}s:18:\"box_shadow_opacity\";a:2:{s:3:\"val\";s:1:\"0\";s:4:\"type\";s:3:\"int\";}s:15:\"box_shadow_blur\";a:2:{s:3:\"val\";s:1:\"0\";s:4:\"type\";s:3:\"int\";}s:17:\"box_shadow_spread\";a:2:{s:3:\"val\";s:1:\"0\";s:4:\"type\";s:3:\"int\";}}s:10:\"filterable\";s:1:\"1\";s:10:\"filter-tax\";a:3:{s:4:\"post\";s:8:\"category\";s:7:\"product\";s:12:\"product_type\";s:5:\"brand\";s:11:\"product_cat\";}s:15:\"filter-all-text\";s:3:\"All\";s:16:\"filter-tag-style\";s:0:\"\";s:24:\"filter-current-tag-style\";s:0:\"\";s:12:\"filter-align\";s:0:\"\";s:14:\"filter-v-space\";s:2:\"20\";s:14:\"filter-h-space\";s:1:\"6\";s:7:\"overlay\";s:1:\"1\";s:13:\"overlay-hover\";s:1:\"1\";s:13:\"overlay-color\";s:7:\"#333333\";s:15:\"overlay-opacity\";s:2:\"30\";s:17:\"overlay-button-lb\";s:1:\"1\";s:19:\"overlay-button-link\";s:1:\"1\";s:13:\"overlay-style\";s:1:\"1\";s:17:\"overlay-btn-style\";s:0:\"\";s:21:\"overlay-btn-link-post\";s:9:\"Read More\";s:22:\"overlay-btn-link-image\";s:9:\"Show More\";s:22:\"overlay-btn-link-video\";s:10:\"Watch This\";s:22:\"overlay-btn-link-audio\";s:11:\"Listen This\";s:16:\"lightbox-caption\";s:1:\"1\";s:16:\"lightbox-gallery\";s:1:\"1\";s:21:\"lightbox-deep-linking\";s:1:\"1\";s:10:\"post-align\";s:4:\"left\";s:12:\"title-length\";s:0:\"\";s:11:\"excerpt-src\";s:7:\"content\";s:14:\"excerpt-length\";s:2:\"10\";s:12:\"excerpt-more\";s:3:\"...\";s:16:\"excerpt-strip-sc\";s:1:\"1\";s:18:\"excerpt-strip-html\";s:1:\"1\";s:20:\"excerpt-allowed-tags\";s:0:\"\";s:16:\"post-button-text\";s:9:\"Read More\";s:17:\"post-button-align\";s:4:\"left\";s:17:\"post_button_style\";s:0:\"\";s:10:\"pagination\";s:1:\"1\";s:15:\"pagination-type\";s:9:\"load-more\";s:16:\"pagination-align\";s:0:\"\";s:18:\"pagination-v-space\";s:2:\"20\";s:22:\"load-more-button-style\";s:0:\"\";s:21:\"load-more-button-text\";s:9:\"Load More\";s:29:\"load-more-button-loading-text\";s:10:\"Loading...\";}}','yes'),(1889,'gw_go_portfolio_cpts_hash','6c6860a42fd128d4df8ba2d1e726c453','yes'),(13499,'db_upgraded','','yes'),(14645,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(14646,'widget_calendar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(14647,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(14648,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(14649,'widget_woocommerce_widget_cart','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(14650,'widget_woocommerce_products','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(24589,'_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c','1578533233','no'),(18952,'woocommerce_thumbnail_cropping','1:1','yes'),(18951,'theme_mods_orfeo','a:3:{i:0;b:0;s:29:\"hestia_contact_form_shortcode\";s:14:\"[pirate_forms]\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1542736237;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:14:\"recent-posts-4\";}s:18:\"orphaned_widgets_1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(18947,'theme_mods_vantage','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1542727144;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:4:\"shop\";a:0:{}s:14:\"sidebar-footer\";a:1:{i:0;s:14:\"recent-posts-4\";}s:14:\"sidebar-header\";N;s:16:\"sidebar-masthead\";N;}}}','yes'),(24586,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1578533233','no'),(14651,'widget_woocommerce_layered_nav','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(14652,'widget_woocommerce_layered_nav_filters','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(14653,'widget_woocommerce_price_filter','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(14654,'widget_woocommerce_product_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(14655,'widget_woocommerce_product_search','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(14656,'widget_woocommerce_product_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(14657,'widget_woocommerce_recent_reviews','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(14658,'widget_woocommerce_recently_viewed_products','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(14659,'widget_woocommerce_top_rated_products','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(14660,'widget_widget_twentyfourteen_ephemera','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(18956,'hestia_contact_form_legacy','1','yes'),(18960,'theme_mods_twentyfourteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1542736285;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:14:\"recent-posts-4\";}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'),(25021,'rewrite_rules','a:337:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:19:\"home_page_slider/?$\";s:36:\"index.php?post_type=home_page_slider\";s:49:\"home_page_slider/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?post_type=home_page_slider&feed=$matches[1]\";s:44:\"home_page_slider/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?post_type=home_page_slider&feed=$matches[1]\";s:36:\"home_page_slider/page/([0-9]{1,})/?$\";s:54:\"index.php?post_type=home_page_slider&paged=$matches[1]\";s:11:\"partners/?$\";s:28:\"index.php?post_type=partners\";s:41:\"partners/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=partners&feed=$matches[1]\";s:36:\"partners/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=partners&feed=$matches[1]\";s:28:\"partners/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=partners&paged=$matches[1]\";s:17:\"industry-links/?$\";s:34:\"index.php?post_type=industry-links\";s:47:\"industry-links/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?post_type=industry-links&feed=$matches[1]\";s:42:\"industry-links/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?post_type=industry-links&feed=$matches[1]\";s:34:\"industry-links/page/([0-9]{1,})/?$\";s:52:\"index.php?post_type=industry-links&paged=$matches[1]\";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:6:\"FAQ/?$\";s:23:\"index.php?post_type=faq\";s:36:\"FAQ/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?post_type=faq&feed=$matches[1]\";s:31:\"FAQ/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?post_type=faq&feed=$matches[1]\";s:23:\"FAQ/page/([0-9]{1,})/?$\";s:41:\"index.php?post_type=faq&paged=$matches[1]\";s:8:\"brand/?$\";s:25:\"index.php?post_type=brand\";s:38:\"brand/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=brand&feed=$matches[1]\";s:33:\"brand/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=brand&feed=$matches[1]\";s:25:\"brand/page/([0-9]{1,})/?$\";s:43:\"index.php?post_type=brand&paged=$matches[1]\";s:7:\"shop/?$\";s:24:\"index.php?post_type=shop\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:41:\"index.php?post_type=shop&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:41:\"index.php?post_type=shop&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:42:\"index.php?post_type=shop&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:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"home_page_slider/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"home_page_slider/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"home_page_slider/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"home_page_slider/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"home_page_slider/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"home_page_slider/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"home_page_slider/([^/]+)/embed/?$\";s:49:\"index.php?home_page_slider=$matches[1]&embed=true\";s:37:\"home_page_slider/([^/]+)/trackback/?$\";s:43:\"index.php?home_page_slider=$matches[1]&tb=1\";s:57:\"home_page_slider/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?home_page_slider=$matches[1]&feed=$matches[2]\";s:52:\"home_page_slider/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?home_page_slider=$matches[1]&feed=$matches[2]\";s:45:\"home_page_slider/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?home_page_slider=$matches[1]&paged=$matches[2]\";s:52:\"home_page_slider/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?home_page_slider=$matches[1]&cpage=$matches[2]\";s:42:\"home_page_slider/([^/]+)/wc-api(/(.*))?/?$\";s:57:\"index.php?home_page_slider=$matches[1]&wc-api=$matches[3]\";s:48:\"home_page_slider/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:59:\"home_page_slider/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:41:\"home_page_slider/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?home_page_slider=$matches[1]&page=$matches[2]\";s:33:\"home_page_slider/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"home_page_slider/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"home_page_slider/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"home_page_slider/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"home_page_slider/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"home_page_slider/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"partners/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"partners/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"partners/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"partners/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"partners/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"partners/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"partners/([^/]+)/embed/?$\";s:41:\"index.php?partners=$matches[1]&embed=true\";s:29:\"partners/([^/]+)/trackback/?$\";s:35:\"index.php?partners=$matches[1]&tb=1\";s:49:\"partners/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?partners=$matches[1]&feed=$matches[2]\";s:44:\"partners/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?partners=$matches[1]&feed=$matches[2]\";s:37:\"partners/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?partners=$matches[1]&paged=$matches[2]\";s:44:\"partners/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?partners=$matches[1]&cpage=$matches[2]\";s:34:\"partners/([^/]+)/wc-api(/(.*))?/?$\";s:49:\"index.php?partners=$matches[1]&wc-api=$matches[3]\";s:40:\"partners/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"partners/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:33:\"partners/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?partners=$matches[1]&page=$matches[2]\";s:25:\"partners/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"partners/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"partners/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"partners/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"partners/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"partners/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"industry-links/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"industry-links/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"industry-links/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"industry-links/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"industry-links/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"industry-links/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"industry-links/([^/]+)/embed/?$\";s:47:\"index.php?industry-links=$matches[1]&embed=true\";s:35:\"industry-links/([^/]+)/trackback/?$\";s:41:\"index.php?industry-links=$matches[1]&tb=1\";s:55:\"industry-links/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?industry-links=$matches[1]&feed=$matches[2]\";s:50:\"industry-links/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?industry-links=$matches[1]&feed=$matches[2]\";s:43:\"industry-links/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?industry-links=$matches[1]&paged=$matches[2]\";s:50:\"industry-links/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?industry-links=$matches[1]&cpage=$matches[2]\";s:40:\"industry-links/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?industry-links=$matches[1]&wc-api=$matches[3]\";s:46:\"industry-links/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"industry-links/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:39:\"industry-links/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?industry-links=$matches[1]&page=$matches[2]\";s:31:\"industry-links/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"industry-links/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"industry-links/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"industry-links/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"industry-links/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"industry-links/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:33:\"project/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?project=$matches[1]&wc-api=$matches[3]\";s:39:\"project/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"project/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"FAQ/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"FAQ/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"FAQ/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"FAQ/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"FAQ/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"FAQ/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:20:\"FAQ/([^/]+)/embed/?$\";s:36:\"index.php?faq=$matches[1]&embed=true\";s:24:\"FAQ/([^/]+)/trackback/?$\";s:30:\"index.php?faq=$matches[1]&tb=1\";s:44:\"FAQ/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?faq=$matches[1]&feed=$matches[2]\";s:39:\"FAQ/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?faq=$matches[1]&feed=$matches[2]\";s:32:\"FAQ/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?faq=$matches[1]&paged=$matches[2]\";s:39:\"FAQ/([^/]+)/comment-page-([0-9]{1,})/?$\";s:43:\"index.php?faq=$matches[1]&cpage=$matches[2]\";s:29:\"FAQ/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?faq=$matches[1]&wc-api=$matches[3]\";s:35:\"FAQ/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:46:\"FAQ/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:28:\"FAQ/([^/]+)(?:/([0-9]+))?/?$\";s:42:\"index.php?faq=$matches[1]&page=$matches[2]\";s:20:\"FAQ/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:30:\"FAQ/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:50:\"FAQ/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"FAQ/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"FAQ/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\"FAQ/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"brand/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"brand/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"brand/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"brand/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"brand/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"brand/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"brand/([^/]+)/embed/?$\";s:38:\"index.php?brand=$matches[1]&embed=true\";s:26:\"brand/([^/]+)/trackback/?$\";s:32:\"index.php?brand=$matches[1]&tb=1\";s:46:\"brand/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?brand=$matches[1]&feed=$matches[2]\";s:41:\"brand/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?brand=$matches[1]&feed=$matches[2]\";s:34:\"brand/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?brand=$matches[1]&paged=$matches[2]\";s:41:\"brand/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?brand=$matches[1]&cpage=$matches[2]\";s:31:\"brand/([^/]+)/wc-api(/(.*))?/?$\";s:46:\"index.php?brand=$matches[1]&wc-api=$matches[3]\";s:37:\"brand/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:48:\"brand/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:30:\"brand/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?brand=$matches[1]&page=$matches[2]\";s:22:\"brand/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"brand/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"brand/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"brand/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"brand/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"brand/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"shop/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"shop/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"shop/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"shop/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"shop/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"shop/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"shop/([^/]+)/embed/?$\";s:37:\"index.php?shop=$matches[1]&embed=true\";s:25:\"shop/([^/]+)/trackback/?$\";s:31:\"index.php?shop=$matches[1]&tb=1\";s:45:\"shop/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?shop=$matches[1]&feed=$matches[2]\";s:40:\"shop/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?shop=$matches[1]&feed=$matches[2]\";s:33:\"shop/([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?shop=$matches[1]&paged=$matches[2]\";s:40:\"shop/([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?shop=$matches[1]&cpage=$matches[2]\";s:30:\"shop/([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?shop=$matches[1]&wc-api=$matches[3]\";s:36:\"shop/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:47:\"shop/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:29:\"shop/([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?shop=$matches[1]&page=$matches[2]\";s:21:\"shop/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:31:\"shop/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:51:\"shop/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"shop/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"shop/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:27:\"shop/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=5&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:25:\"([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&wc-api=$matches[3]\";s:31:\"[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(26405,'_transient_timeout_wc_term_counts','1620797375','no'),(25111,'woocommerce_schema_version','430','yes'),(25112,'woocommerce_store_address','','yes'),(25113,'woocommerce_store_address_2','','yes'),(25114,'woocommerce_store_city','','yes'),(25115,'woocommerce_store_postcode','','yes'),(25116,'woocommerce_all_except_countries','','yes'),(25117,'woocommerce_calc_discounts_sequentially','yes','no'),(25118,'woocommerce_placeholder_image','1109','yes'),(25119,'woocommerce_enable_reviews','yes','yes'),(25120,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(25121,'woocommerce_ship_to_destination','billing','no'),(25122,'woocommerce_shipping_debug_mode','no','yes'),(25123,'woocommerce_erasure_request_removes_order_data','no','no'),(25124,'woocommerce_erasure_request_removes_download_data','no','no'),(25125,'woocommerce_allow_bulk_remove_personal_data','no','no'),(25126,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(25127,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(25128,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(20819,'address_geocoder_options','a:15:{s:6:\"apikey\";s:39:\"AIzaSyAN11RV4FlP9wPJBWNSoVGgV9T5u7Mj2jc\";s:4:\"post\";s:7:\"enabled\";s:4:\"page\";s:7:\"enabled\";s:7:\"product\";s:7:\"enabled\";s:17:\"product_variation\";s:7:\"enabled\";s:10:\"shop_order\";s:7:\"enabled\";s:11:\"shop_coupon\";s:7:\"enabled\";s:8:\"partners\";s:7:\"enabled\";s:14:\"industry-links\";s:7:\"enabled\";s:3:\"faq\";s:7:\"enabled\";s:5:\"brand\";s:7:\"enabled\";s:4:\"shop\";s:7:\"enabled\";s:14:\"meta-box-title\";s:0:\"\";s:16:\"home_page_slider\";s:7:\"exclude\";s:7:\"project\";s:7:\"exclude\";}','yes'),(18847,'woocommerce_admin_notices','a:3:{i:0;s:6:\"update\";i:1;s:20:\"no_secure_connection\";i:3;s:15:\"legacy_shipping\";}','yes'),(18851,'theme_mods_twentytwelve','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1541770818;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:14:\"recent-posts-4\";}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'),(18852,'theme_mods_decor-lite','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1541770875;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:14:\"recent-posts-4\";}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(18853,'theme_mods_twentythirteen','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1541770947;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:14:\"recent-posts-4\";}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\";N;}}}','yes'),(18864,'theme_mods_consulting','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1542727288;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:14:\"recent-posts-4\";}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:\"footer-w1\";a:0:{}s:9:\"footer-w2\";a:0:{}s:9:\"footer-w3\";N;s:9:\"footer-w4\";N;s:9:\"footer-w5\";N;s:9:\"footer-w6\";N;}}}','yes'),(18865,'consulting_thinkup_migrate_introstyle','1','yes'),(18953,'woocommerce_thumbnail_cropping_custom_width','23','yes'),(18954,'woocommerce_thumbnail_cropping_custom_height','35','yes'),(18955,'hestia_update_woocommerce_customizer_controls','1','yes'),(18867,'theme_mods_multipurpose-ecommerce','a:2:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1542635311;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:14:\"recent-posts-4\";}s:18:\"orphaned_widgets_1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(25098,'current_theme_supports_woocommerce','no','yes'),(25099,'woocommerce_queue_flush_rewrite_rules','no','yes'),(25102,'woocommerce_onboarding_profile','a:1:{s:9:\"completed\";b:1;}','yes'),(25103,'woocommerce_task_list_hidden','yes','yes'),(25107,'woocommerce_admin_install_timestamp','1617362868','yes'),(25026,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(25027,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(25028,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(25029,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(25030,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(25047,'WPLANG','','yes'),(25032,'recovery_keys','a:0:{}','yes'),(25033,'https_detection_errors','a:0:{}','yes'),(25034,'finished_splitting_shared_terms','1','yes'),(25035,'site_icon','0','yes'),(25036,'medium_large_size_w','768','yes'),(25037,'medium_large_size_h','0','yes'),(25038,'wp_page_for_privacy_policy','0','yes'),(25039,'show_comments_cookies_opt_in','1','yes'),(25040,'admin_email_lifespan','1632911490','yes'),(25041,'disallowed_keys','','no'),(25042,'comment_previously_approved','1','yes'),(25043,'auto_plugin_theme_update_emails','a:0:{}','no'),(25044,'auto_update_core_dev','enabled','yes'),(25045,'auto_update_core_minor','enabled','yes'),(25046,'auto_update_core_major','unset','yes'),(25053,'_split_terms','a:2:{i:57;a:1:{s:8:\"post_tag\";i:58;}i:56;a:1:{s:8:\"post_tag\";i:59;}}','yes'),(25211,'_transient_orders-transient-version','1617365756','yes'),(25212,'_transient_product-transient-version','1617365757','yes'),(25067,'can_compress_scripts','1','no'),(27709,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.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-5.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.7.1\";s:7:\"version\";s:5:\"5.7.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1620627273;s:15:\"version_checked\";s:5:\"5.7.1\";s:12:\"translations\";a:0:{}}','no'),(28432,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1620627273;s:7:\"checked\";a:12:{s:10:\"consulting\";s:5:\"1.2.7\";s:10:\"decor-lite\";s:3:\"1.1\";s:4:\"dohi\";s:3:\"1.1\";s:6:\"hestia\";s:6:\"2.0.11\";s:4:\"mins\";s:5:\"1.1.4\";s:22:\"multipurpose-ecommerce\";s:5:\"0.3.5\";s:5:\"orfeo\";s:5:\"1.0.6\";s:6:\"primer\";s:5:\"1.8.6\";s:14:\"twentyfourteen\";s:3:\"2.2\";s:14:\"twentythirteen\";s:3:\"1.2\";s:12:\"twentytwelve\";s:3:\"1.4\";s:7:\"vantage\";s:3:\"1.8\";}s:8:\"response\";a:9:{s:10:\"consulting\";a:6:{s:5:\"theme\";s:10:\"consulting\";s:11:\"new_version\";s:6:\"1.2.17\";s:3:\"url\";s:40:\"https://wordpress.org/themes/consulting/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/consulting.1.2.17.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.6.0\";}s:10:\"decor-lite\";a:6:{s:5:\"theme\";s:10:\"decor-lite\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:40:\"https://wordpress.org/themes/decor-lite/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/decor-lite.1.3.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:6:\"hestia\";a:6:{s:5:\"theme\";s:6:\"hestia\";s:11:\"new_version\";s:6:\"3.0.16\";s:3:\"url\";s:36:\"https://wordpress.org/themes/hestia/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/hestia.3.0.16.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.4.0\";}s:22:\"multipurpose-ecommerce\";a:6:{s:5:\"theme\";s:22:\"multipurpose-ecommerce\";s:11:\"new_version\";s:5:\"0.6.3\";s:3:\"url\";s:52:\"https://wordpress.org/themes/multipurpose-ecommerce/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/theme/multipurpose-ecommerce.0.6.3.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:6:\"7.2.14\";}s:6:\"primer\";a:6:{s:5:\"theme\";s:6:\"primer\";s:11:\"new_version\";s:5:\"1.8.9\";s:3:\"url\";s:36:\"https://wordpress.org/themes/primer/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/primer.1.8.9.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:14:\"twentyfourteen\";a:6:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.3.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentythirteen\";a:6:{s:5:\"theme\";s:14:\"twentythirteen\";s:11:\"new_version\";s:3:\"3.3\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentythirteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentythirteen.3.3.zip\";s:8:\"requires\";s:3:\"3.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwelve\";a:6:{s:5:\"theme\";s:12:\"twentytwelve\";s:11:\"new_version\";s:3:\"3.3\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwelve/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwelve.3.3.zip\";s:8:\"requires\";s:3:\"3.5\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:7:\"vantage\";a:6:{s:5:\"theme\";s:7:\"vantage\";s:11:\"new_version\";s:6:\"1.17.2\";s:3:\"url\";s:37:\"https://wordpress.org/themes/vantage/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/vantage.1.17.2.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:6:\"5.6.20\";}}s:9:\"no_update\";a:1:{s:4:\"mins\";a:6:{s:5:\"theme\";s:4:\"mins\";s:11:\"new_version\";s:5:\"1.1.4\";s:3:\"url\";s:34:\"https://wordpress.org/themes/mins/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/theme/mins.1.1.4.zip\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";b:0;}}s:12:\"translations\";a:0:{}}','no'),(28433,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1620627273;s:7:\"checked\";a:10:{s:37:\"address-geocoder/address-geocoder.php\";s:5:\"1.0.1\";s:19:\"akismet/akismet.php\";s:5:\"4.1.9\";s:33:\"classic-editor/classic-editor.php\";s:3:\"1.6\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.0.3\";s:49:\"dynamic-featured-image/dynamic-featured-image.php\";s:5:\"3.1.0\";s:29:\"go_portfolio/go_portfolio.php\";s:5:\"1.4.0\";s:9:\"hello.php\";s:3:\"1.6\";s:25:\"media-upload-meta-box.php\";s:3:\"1.1\";s:41:\"multi-image-upload/multi-image-upload.php\";s:3:\"1.1\";s:27:\"woocommerce/woocommerce.php\";s:5:\"5.1.0\";}s:8:\"response\";a:5:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.4.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.4.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:49:\"dynamic-featured-image/dynamic-featured-image.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:36:\"w.org/plugins/dynamic-featured-image\";s:4:\"slug\";s:22:\"dynamic-featured-image\";s:6:\"plugin\";s:49:\"dynamic-featured-image/dynamic-featured-image.php\";s:11:\"new_version\";s:5:\"3.7.0\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/dynamic-featured-image/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/dynamic-featured-image.3.7.0.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:73:\"https://s.w.org/plugins/geopattern-icon/dynamic-featured-image_444643.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:76:\"https://ps.w.org/dynamic-featured-image/assets/banner-772x250.jpg?rev=861662\";}s:11:\"banners_rtl\";a:0:{}s:14:\"upgrade_notice\";s:65:\"<ul>\n<li>Autoselect feature and attachment id bug fix.</li>\n</ul>\";s:6:\"tested\";s:5:\"5.6.3\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:9:\"hello.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.5.4\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:41:\"multi-image-upload/multi-image-upload.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:32:\"w.org/plugins/multi-image-upload\";s:4:\"slug\";s:18:\"multi-image-upload\";s:6:\"plugin\";s:41:\"multi-image-upload/multi-image-upload.php\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/multi-image-upload/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/multi-image-upload.2.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/multi-image-upload/assets/icon-128x128.jpg?rev=1159163\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/multi-image-upload/assets/banner-772x250.jpg?rev=804778\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.1.9\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"5.2.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2366418\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2366418\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2366418\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2366418\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:3:\"7.0\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{s:37:\"address-geocoder/address-geocoder.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:30:\"w.org/plugins/address-geocoder\";s:4:\"slug\";s:16:\"address-geocoder\";s:6:\"plugin\";s:37:\"address-geocoder/address-geocoder.php\";s:11:\"new_version\";s:5:\"1.0.1\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/address-geocoder/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/address-geocoder.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/address-geocoder/assets/icon-256x256.png?rev=1400499\";s:2:\"1x\";s:69:\"https://ps.w.org/address-geocoder/assets/icon-128x128.png?rev=1400499\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/address-geocoder/assets/banner-772x250.png?rev=1400499\";}s:11:\"banners_rtl\";a:0:{}}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.9\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}}s:25:\"media-upload-meta-box.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:35:\"w.org/plugins/media-upload-meta-box\";s:4:\"slug\";s:21:\"media-upload-meta-box\";s:6:\"plugin\";s:25:\"media-upload-meta-box.php\";s:11:\"new_version\";s:5:\"1.0.2\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/media-upload-meta-box/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/media-upload-meta-box.1.0.2.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:72:\"https://s.w.org/plugins/geopattern-icon/media-upload-meta-box_cacaca.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/media-upload-meta-box/assets/banner-772x250.jpg?rev=708243\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(25092,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"3INCGQqtePMlIxNnejA1QnQZ1XZ0dLpx\";}','yes'),(25093,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(25094,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(25095,'action_scheduler_hybrid_store_demarkation','1109','yes'),(25096,'schema-ActionScheduler_StoreSchema','3.0.1617362860','yes'),(25097,'schema-ActionScheduler_LoggerSchema','2.0.1617362860','yes'),(25106,'woocommerce_admin_version','2.0.2','yes'),(25129,'woocommerce_trash_pending_orders','','no'),(25130,'woocommerce_trash_failed_orders','','no'),(25131,'woocommerce_trash_cancelled_orders','','no'),(25132,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(25133,'woocommerce_merchant_email_notifications','no','no'),(25134,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(25135,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(25136,'woocommerce_myaccount_orders_endpoint','orders','yes'),(25137,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(25138,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(25139,'woocommerce_allow_tracking','no','no'),(25140,'woocommerce_show_marketplace_suggestions','yes','no'),(25141,'woocommerce_single_image_width','300','yes'),(25142,'woocommerce_thumbnail_image_width','150','yes'),(25143,'woocommerce_checkout_highlight_required_fields','yes','yes'),(25144,'wc_blocks_db_schema_version','260','yes'),(25146,'default_product_cat','69','yes'),(25147,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:0;s:22:\"there_are_now_products\";b:1;}','yes'),(25148,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),(25149,'action_scheduler_lock_async-request-runner','1620627334','yes'),(25150,'wc_remote_inbox_notifications_specs','a:15:{s:20:\"paypal_ppcp_gtm_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"paypal_ppcp_gtm_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Offer more options with the new PayPal\";s:7:\"content\";s:132:\"Get the latest PayPal extension for a full suite of payment methods, extensive currency and country coverage, and Pay Later options.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"open_wc_paypal_payments_product_page\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:61:\"https://woocommerce.com/products/woocommerce-paypal-payments/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-04-05 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-04-21 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:30:\"woocommerce-gateway-paypal-pro\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:37:\"woocommerce-gateway-paypal-pro-hosted\";}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:35:\"woocommerce-gateway-paypal-advanced\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:40:\"woocommerce-gateway-paypal-digital-goods\";}}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"woocommerce-paypal-here-gateway\";}}i:6;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:44:\"woocommerce-gateway-paypal-adaptive-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:27:\"woocommerce-paypal-payments\";s:7:\"version\";s:5:\"1.2.1\";s:8:\"operator\";s:1:\"<\";}}}}}s:23:\"facebook_pixel_api_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:23:\"facebook_pixel_api_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:44:\"Improve the performance of your Facebook ads\";s:7:\"content\";s:168:\"Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved performance and measurement of your Facebook ad campaigns.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"upgrade_now_facebook_pixel_api\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Upgrade now\";}}s:3:\"url\";s:67:\"plugin-install.php?tab=plugin-information&plugin=§ion=changelog\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-02-15 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-02-29 00:00:00\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"facebook-for-woocommerce\";s:7:\"version\";s:5:\"2.1.4\";s:8:\"operator\";s:2:\"<=\";}}}s:16:\"facebook_ec_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:16:\"facebook_ec_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:59:\"Sync your product catalog with Facebook to help boost sales\";s:7:\"content\";s:170:\"A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"learn_more_facebook_ec\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:42:\"https://woocommerce.com/products/facebook/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-03-01 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-03-15 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:24:\"facebook-for-woocommerce\";}}}}s:37:\"ecomm-need-help-setting-up-your-store\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"ecomm-need-help-setting-up-your-store\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:32:\"Need help setting up your Store?\";s:7:\"content\";s:350:\"Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"set-up-concierge\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Schedule free session\";}}s:3:\"url\";s:34:\"https://wordpress.com/me/concierge\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:255:\"WooCommerce Shipping & Tax helps get your store “ready to sell” as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:32:\"ecomm-unique-shopping-experience\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"ecomm-unique-shopping-experience\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"For a shopping experience as unique as your customers\";s:7:\"content\";s:274:\"Product Add-Ons allow your customers to personalize products while they’re shopping on your online store. No more follow-up email requests—customers get what they want, before they’re done checking out. Learn more about this extension that comes included in your plan.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"learn-more-ecomm-unique-shopping-experience\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:71:\"https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:37:\"wc-admin-getting-started-in-ecommerce\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-getting-started-in-ecommerce\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Getting Started in eCommerce - webinar\";s:7:\"content\";s:174:\"We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"watch-the-webinar\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Watch the webinar\";}}s:3:\"url\";s:28:\"https://youtu.be/V_2XtCOyZ7o\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:12:\"setup_client\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:4:\"none\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:10:\"up-to-2500\";}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:461:\"That\'s huge! You\'re well on your way to building a successful online store — now it’s time to think about how you\'ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:31:\"wc-square-apple-pay-boost-sales\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wc-square-apple-pay-boost-sales\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"Boost sales with Apple Pay\";s:7:\"content\";s:191:\"Now that you accept Apple Pay® with Square you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"boost-sales-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:97:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:18:\"woocommerce-square\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"2.3\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"wc_square_apple_pay_enabled\";s:5:\"value\";i:1;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:38:\"wc-square-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:38:\"wc-square-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:38:\"wc-square-apple-pay-grow-your-business\";O:8:\"stdClass\":8:{s:4:\"slug\";s:38:\"wc-square-apple-pay-grow-your-business\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"Grow your business with Square and Apple Pay \";s:7:\"content\";s:178:\"Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"grow-your-business-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:104:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:18:\"woocommerce-square\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"2.3\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"wc_square_apple_pay_enabled\";s:5:\"value\";i:2;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:31:\"wc-square-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:31:\"wc-square-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wcpay-apple-pay-is-now-available\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wcpay-apple-pay-is-now-available\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"Apple Pay is now available with WooCommerce Payments!\";s:7:\"content\";s:397:\"Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>®. It’s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"add-apple-pay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Add Apple Pay\";}}s:3:\"url\";s:69:\"/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:121:\"https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.2.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";b:0;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}s:27:\"wcpay-apple-pay-boost-sales\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"wcpay-apple-pay-boost-sales\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"Boost sales with Apple Pay\";s:7:\"content\";s:205:\"Now that you accept Apple Pay® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"boost-sales-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:96:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";i:1;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:34:\"wcpay-apple-pay-grow-your-business\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"wcpay-apple-pay-grow-your-business\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:58:\"Grow your business with WooCommerce Payments and Apple Pay\";s:7:\"content\";s:178:\"Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"grow-your-business-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:103:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";i:2;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:171:\"It\'s crucial to get your store\'s checkout as smooth as possible to avoid losing sales. Let\'s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:78:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:39:\"wc-admin-first-five-things-to-customize\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-admin-first-five-things-to-customize\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"The first 5 things to customize in your store\";s:7:\"content\";s:173:\"Deciding what to start with first is tricky. To help you properly prioritize, we\'ve put together this short list of the first few things you should customize in WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:2;}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:5:\"value\";s:9:\"NOT EMPTY\";s:7:\"default\";s:9:\"NOT EMPTY\";s:9:\"operation\";s:2:\"!=\";}}}}','yes'),(25209,'woocommerce_legacy_flat_rate_settings','a:13:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:9:\"Flat rate\";s:12:\"availability\";s:3:\"all\";s:9:\"countries\";s:0:\"\";s:10:\"tax_status\";s:7:\"taxable\";s:4:\"cost\";s:0:\"\";s:4:\"type\";s:5:\"class\";s:7:\"options\";b:0;s:7:\"version\";s:5:\"2.4.0\";s:11:\"minimum_fee\";s:0:\"\";s:3:\"fee\";s:0:\"\";s:14:\"cost_per_order\";s:0:\"\";s:13:\"no_class_cost\";s:0:\"\";}','yes'),(25156,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:9:\"moderated\";s:1:\"1\";s:8:\"approved\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(27486,'_transient_timeout_wc_low_stock_count','1620982055','no'),(27487,'_transient_wc_low_stock_count','0','no'),(27488,'_transient_timeout_wc_outofstock_count','1620982055','no'),(27489,'_transient_wc_outofstock_count','0','no'),(27490,'_transient_product_query-transient-version','1619094215','yes'),(25161,'_transient_woocommerce_reports-transient-version','1617362881','yes'),(25166,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:26:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:12;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:13;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:14;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:15;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:16;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:18;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:19;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:20;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:21;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:22;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:23;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:24;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:25;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1618393582;}','no'),(26406,'_transient_wc_term_counts','a:1:{i:22;s:2:\"20\";}','no'),(25210,'woocommerce_legacy_international_delivery_settings','a:13:{s:7:\"enabled\";s:2:\"no\";s:5:\"title\";s:9:\"Flat rate\";s:12:\"availability\";s:9:\"including\";s:9:\"countries\";s:0:\"\";s:10:\"tax_status\";s:7:\"taxable\";s:4:\"cost\";s:0:\"\";s:4:\"type\";s:5:\"class\";s:7:\"options\";b:0;s:7:\"version\";s:5:\"2.4.0\";s:11:\"minimum_fee\";s:0:\"\";s:3:\"fee\";s:0:\"\";s:14:\"cost_per_order\";s:0:\"\";s:13:\"no_class_cost\";s:0:\"\";}','yes'),(25222,'action_scheduler_migration_status','complete','yes'),(25256,'fresh_site','0','yes'),(28198,'_transient_twentyfourteen_category_count','3','yes'),(28410,'_site_transient_timeout_php_check_e98d1c0a2cbc82b93e734914cd140141','1621157630','no'),(28411,'_site_transient_php_check_e98d1c0a2cbc82b93e734914cd140141','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no'),(28426,'_transient_timeout__woocommerce_helper_subscriptions','1620628173','no'),(28427,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(28428,'_site_transient_timeout_theme_roots','1620629073','no'),(28429,'_site_transient_theme_roots','a:12:{s:10:\"consulting\";s:7:\"/themes\";s:10:\"decor-lite\";s:7:\"/themes\";s:4:\"dohi\";s:7:\"/themes\";s:6:\"hestia\";s:7:\"/themes\";s:4:\"mins\";s:7:\"/themes\";s:22:\"multipurpose-ecommerce\";s:7:\"/themes\";s:5:\"orfeo\";s:7:\"/themes\";s:6:\"primer\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";s:7:\"vantage\";s:7:\"/themes\";}','no'),(28430,'_transient_timeout__woocommerce_helper_updates','1620670473','no'),(28431,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1620627273;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(28412,'_transient_timeout_wc_onboarding_product_data','1620639231','no'),(28413,'_transient_wc_onboarding_product_data','a:6:{s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:18:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Sun, 09 May 2021 09:33:51 GMT\";s:12:\"content-type\";s:31:\"application/json; charset=UTF-8\";s:14:\"content-length\";s:5:\"11517\";s:12:\"x-robots-tag\";s:7:\"noindex\";s:4:\"link\";s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:29:\"access-control-expose-headers\";s:33:\"X-WP-Total, X-WP-TotalPages, Link\";s:28:\"access-control-allow-headers\";s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";s:13:\"x-wccom-cache\";s:3:\"HIT\";s:13:\"cache-control\";s:10:\"max-age=60\";s:5:\"allow\";s:3:\"GET\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"x-rq\";s:15:\"dca6 89 84 3136\";s:3:\"age\";s:2:\"58\";s:7:\"x-cache\";s:3:\"hit\";s:4:\"vary\";s:23:\"Accept-Encoding, Origin\";s:13:\"accept-ranges\";s:5:\"bytes\";}}s:4:\"body\";s:48082:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Power up and protect your store with Jetpack\\r\\n\\r\\nFor free security, insights and monitoring, connect to Jetpack. It\'s everything you need for a strong, secure start.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"Securely accept payments, track cash flow, and manage recurring revenue from your dashboard \\u2014 all without setup costs or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104},{\"title\":\"PayPal Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Dark.png\",\"excerpt\":\"PayPal Checkout now with Smart Payment Buttons\\u2122, dynamically displays, PayPal, Venmo, PayPal Credit, or other local payment options in a single stack giving customers the choice to pay with their preferred option.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"69e6cba62ac4021df9e117cc3f716d07\",\"slug\":\"woocommerce-gateway-paypal-express-checkout\",\"id\":1597922},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596},{\"title\":\"Google Ads & Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"$249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay & Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&utm_source=woocommerce.com&utm_medium=integration&utm_campaign=woocommerce.com\",\"price\":\"$0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"$99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate with 3000+ cloud apps and services today.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259},{\"title\":\"WooCommerce Print Invoices & Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed product data to Google Merchant Center for setting up Google product listings & product ads.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"$49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on time tax return filing. No more tracking sales tax rates, rules, or jurisdictional boundaries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"$0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"$99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CP.png?v=1\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products & let customers request & manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging & dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790},{\"title\":\"eWAY\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/eway-logo-3000-2000.jpg\",\"excerpt\":\"Take credit card payments securely via eWay (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Advanced & sequential order numbers with optional prefixes \\/ suffixes\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CSP.png?v=1\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout & pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"$49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"FirstData gateway for WooCommerce\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645},{\"title\":\"WooSlider\",\"image\":\"\",\"excerpt\":\"WooSlider is the ultimate responsive slideshow WordPress slider plugin\\r\\n\\r\\n\\u00a0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/wooslider\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"$49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506},{\"title\":\"WooCommerce Social Login\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Thumbnail-Social-Login-updated.png\",\"excerpt\":\"Enable Social Login for seamless checkout and account creation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-social-login\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"$79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762},{\"title\":\"Variation Swatches and Photos\",\"image\":\"\",\"excerpt\":\"Show color and image swatches instead of dropdowns for variable products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/variation-swatches-and-photos\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/swatches-and-photos\\/\",\"price\":\"$99.00\",\"hash\":\"37bea8d549df279c8278878d081b062f\",\"slug\":\"woocommerce-variation-swatches-and-photos\",\"id\":18697},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037},{\"title\":\"Jilt\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/12\\/Thumbnail-Jilt-updated.png\",\"excerpt\":\"All-in-one email marketing platform built for WooCommerce stores. Send newsletters, abandoned cart reminders, win-backs, welcome automations, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jilt\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"b53aafb64dca33835e41ee06de7e9816\",\"slug\":\"jilt-for-woocommerce\",\"id\":2754876},{\"title\":\"Opayo Payment Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_RGB.png\",\"excerpt\":\"Take payments on your WooCommerce store via Opayo (formally SagePay).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599},{\"title\":\"EU VAT Number\",\"image\":\"\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592},{\"title\":\"QuickBooks Commerce (formerly TradeGecko)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/qbo-mark.png\",\"excerpt\":\"Get a wholesale and multichannel inventory & order management platform for your WooCommerce store with QuickBooks Commerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tradegecko\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"21da7811f7fc1f13ee19daa7415f0ff3\",\"slug\":\"woocommerce-tradegecko\",\"id\":245960},{\"title\":\"WooCommerce Tab Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/11\\/Thumbnail-Tab-Manager-updated.png\",\"excerpt\":\"Gives you complete control over your product page tabs, create local and global tabs using a visual drag-and-drop interface, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tab-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"89a9ac74850855cfe772b4b4ee1e31e0\",\"slug\":\"woocommerce-tab-manager\",\"id\":132195}]}\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;s:13:\"http_response\";O:25:\"WP_HTTP_Requests_Response\":5:{s:11:\"\0*\0response\";O:17:\"Requests_Response\":10:{s:4:\"body\";s:48082:\"{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Power up and protect your store with Jetpack\\r\\n\\r\\nFor free security, insights and monitoring, connect to Jetpack. It\'s everything you need for a strong, secure start.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"Securely accept payments, track cash flow, and manage recurring revenue from your dashboard \\u2014 all without setup costs or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104},{\"title\":\"PayPal Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Dark.png\",\"excerpt\":\"PayPal Checkout now with Smart Payment Buttons\\u2122, dynamically displays, PayPal, Venmo, PayPal Credit, or other local payment options in a single stack giving customers the choice to pay with their preferred option.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"69e6cba62ac4021df9e117cc3f716d07\",\"slug\":\"woocommerce-gateway-paypal-express-checkout\",\"id\":1597922},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596},{\"title\":\"Google Ads & Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"$249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay & Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&utm_source=woocommerce.com&utm_medium=integration&utm_campaign=woocommerce.com\",\"price\":\"$0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"$99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate with 3000+ cloud apps and services today.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259},{\"title\":\"WooCommerce Print Invoices & Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed product data to Google Merchant Center for setting up Google product listings & product ads.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"$49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on time tax return filing. No more tracking sales tax rates, rules, or jurisdictional boundaries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"$0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"$99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CP.png?v=1\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products & let customers request & manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging & dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790},{\"title\":\"eWAY\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/eway-logo-3000-2000.jpg\",\"excerpt\":\"Take credit card payments securely via eWay (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Advanced & sequential order numbers with optional prefixes \\/ suffixes\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CSP.png?v=1\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout & pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"$49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"FirstData gateway for WooCommerce\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645},{\"title\":\"WooSlider\",\"image\":\"\",\"excerpt\":\"WooSlider is the ultimate responsive slideshow WordPress slider plugin\\r\\n\\r\\n\\u00a0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/wooslider\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"$49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506},{\"title\":\"WooCommerce Social Login\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Thumbnail-Social-Login-updated.png\",\"excerpt\":\"Enable Social Login for seamless checkout and account creation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-social-login\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"$79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762},{\"title\":\"Variation Swatches and Photos\",\"image\":\"\",\"excerpt\":\"Show color and image swatches instead of dropdowns for variable products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/variation-swatches-and-photos\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/swatches-and-photos\\/\",\"price\":\"$99.00\",\"hash\":\"37bea8d549df279c8278878d081b062f\",\"slug\":\"woocommerce-variation-swatches-and-photos\",\"id\":18697},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037},{\"title\":\"Jilt\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/12\\/Thumbnail-Jilt-updated.png\",\"excerpt\":\"All-in-one email marketing platform built for WooCommerce stores. Send newsletters, abandoned cart reminders, win-backs, welcome automations, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jilt\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"b53aafb64dca33835e41ee06de7e9816\",\"slug\":\"jilt-for-woocommerce\",\"id\":2754876},{\"title\":\"Opayo Payment Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_RGB.png\",\"excerpt\":\"Take payments on your WooCommerce store via Opayo (formally SagePay).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599},{\"title\":\"EU VAT Number\",\"image\":\"\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592},{\"title\":\"QuickBooks Commerce (formerly TradeGecko)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/qbo-mark.png\",\"excerpt\":\"Get a wholesale and multichannel inventory & order management platform for your WooCommerce store with QuickBooks Commerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tradegecko\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"21da7811f7fc1f13ee19daa7415f0ff3\",\"slug\":\"woocommerce-tradegecko\",\"id\":245960},{\"title\":\"WooCommerce Tab Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/11\\/Thumbnail-Tab-Manager-updated.png\",\"excerpt\":\"Gives you complete control over your product page tabs, create local and global tabs using a visual drag-and-drop interface, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tab-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"89a9ac74850855cfe772b4b4ee1e31e0\",\"slug\":\"woocommerce-tab-manager\",\"id\":132195}]}\";s:3:\"raw\";s:48719:\"HTTP/1.1 200 OK\r\nServer: nginx\r\nDate: Sun, 09 May 2021 09:33:51 GMT\r\nContent-Type: application/json; charset=UTF-8\r\nContent-Length: 11517\r\nConnection: close\r\nX-Robots-Tag: noindex\r\nLink: <https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\r\nX-Content-Type-Options: nosniff\r\nAccess-Control-Expose-Headers: X-WP-Total, X-WP-TotalPages, Link\r\nAccess-Control-Allow-Headers: Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\r\nX-WCCOM-Cache: HIT\r\nCache-Control: max-age=60\r\nAllow: GET\r\nContent-Encoding: gzip\r\nX-rq: dca6 89 84 3136\r\nAge: 58\r\nX-Cache: hit\r\nVary: Accept-Encoding, Origin\r\nAccept-Ranges: bytes\r\n\r\n{\"products\":[{\"title\":\"WooCommerce Google Analytics\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/GA-Dark.png\",\"excerpt\":\"Understand your customers and increase revenue with world\\u2019s leading analytics platform - integrated with WooCommerce for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"2d21f7de14dfb8e9885a4622be701ddf\",\"slug\":\"woocommerce-google-analytics-integration\",\"id\":1442927},{\"title\":\"WooCommerce Tax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Tax-Dark.png\",\"excerpt\":\"Automatically calculate how much sales tax should be collected for WooCommerce orders - by city, country, or state - at checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/tax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":3220291},{\"title\":\"Stripe\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Stripe-Dark-1.png\",\"excerpt\":\"Accept all major debit and credit cards as well as local payment methods with Stripe.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/stripe\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"50bb7a985c691bb943a9da4d2c8b5efd\",\"slug\":\"woocommerce-gateway-stripe\",\"id\":18627},{\"title\":\"Jetpack\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Jetpack-Dark.png\",\"excerpt\":\"Power up and protect your store with Jetpack\\r\\n\\r\\nFor free security, insights and monitoring, connect to Jetpack. It\'s everything you need for a strong, secure start.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jetpack\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"d5bfef9700b62b2b132c74c74c3193eb\",\"slug\":\"jetpack\",\"id\":2725249},{\"title\":\"Facebook for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Facebook-Dark.png\",\"excerpt\":\"Get the Official Facebook for WooCommerce plugin for three powerful ways to help grow your business.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/facebook\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"0ea4fe4c2d7ca6338f8a322fb3e4e187\",\"slug\":\"facebook-for-woocommerce\",\"id\":2127297},{\"title\":\"Amazon Pay\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Amazon-Pay-Dark.png\",\"excerpt\":\"Amazon Pay is embedded in your WooCommerce store. Transactions take place via\\u00a0Amazon widgets, so the buyer never leaves your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/pay-with-amazon\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"9865e043bbbe4f8c9735af31cb509b53\",\"slug\":\"woocommerce-gateway-amazon-payments-advanced\",\"id\":238816},{\"title\":\"Square for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Square-Dark.png\",\"excerpt\":\"Accepting payments is easy with Square. Clear rates, fast deposits (1-2 business days). Sell online and in person, and sync all payments, items and inventory.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/square\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"e907be8b86d7df0c8f8e0d0020b52638\",\"slug\":\"woocommerce-square\",\"id\":1770503},{\"title\":\"WooCommerce Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Dark-1.png\",\"excerpt\":\"Print USPS and DHL labels right from your WooCommerce dashboard and instantly save up to 90%. WooCommerce Shipping is free to use and saves you time and money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"f31b3b9273cce188cc2b27f7849d02dd\",\"slug\":\"woocommerce-services\",\"id\":2165910},{\"title\":\"Mailchimp for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/09\\/logo-mailchimp-dark-v2.png\",\"excerpt\":\"Increase traffic, drive repeat purchases, and personalize your marketing when you connect to Mailchimp.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/mailchimp-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"b4481616ebece8b1ff68fc59b90c1a91\",\"slug\":\"mailchimp-for-woocommerce\",\"id\":2545166},{\"title\":\"WooCommerce Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Pay-Dark.png\",\"excerpt\":\"Securely accept payments, track cash flow, and manage recurring revenue from your dashboard \\u2014 all without setup costs or monthly fees.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"8c6319ca-8f41-4e69-be63-6b15ee37773b\",\"slug\":\"woocommerce-payments\",\"id\":5278104},{\"title\":\"PayPal Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Dark.png\",\"excerpt\":\"PayPal Checkout now with Smart Payment Buttons\\u2122, dynamically displays, PayPal, Venmo, PayPal Credit, or other local payment options in a single stack giving customers the choice to pay with their preferred option.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"69e6cba62ac4021df9e117cc3f716d07\",\"slug\":\"woocommerce-gateway-paypal-express-checkout\",\"id\":1597922},{\"title\":\"WooCommerce Subscriptions\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Subscriptions-Dark.png\",\"excerpt\":\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscriptions\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"6115e6d7e297b623a169fdcf5728b224\",\"slug\":\"woocommerce-subscriptions\",\"id\":27147},{\"title\":\"ShipStation Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Shipstation-Dark.png\",\"excerpt\":\"Fulfill all your Woo orders (and wherever else you sell) quickly and easily using ShipStation. Try it free for 30 days today!\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipstation-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"9de8640767ba64237808ed7f245a49bb\",\"slug\":\"woocommerce-shipstation-integration\",\"id\":18734},{\"title\":\"Product Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-Add-Ons-Dark.png\",\"excerpt\":\"Offer add-ons like gift wrapping, special messages or other special options for your products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"147d0077e591e16db9d0d67daeb8c484\",\"slug\":\"woocommerce-product-addons\",\"id\":18618},{\"title\":\"PayFast Payment Gateway\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Payfast-Dark-1.png\",\"excerpt\":\"Take payments on your WooCommerce store via PayFast (redirect method).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/payfast-payment-gateway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"557bf07293ad916f20c207c6c9cd15ff\",\"slug\":\"woocommerce-payfast-gateway\",\"id\":18596},{\"title\":\"Google Ads & Marketing by Kliken\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/02\\/GA-for-Woo-Logo-374x192px-qu3duk.png\",\"excerpt\":\"Get in front of shoppers and drive traffic to your store so you can grow your business with Smart Shopping Campaigns and free listings.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-ads-and-marketing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"bf66e173-a220-4da7-9512-b5728c20fc16\",\"slug\":\"kliken-marketing-for-google\",\"id\":3866145},{\"title\":\"USPS Shipping Method\",\"image\":\"\",\"excerpt\":\"Get shipping rates from the USPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/usps-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"83d1524e8f5f1913e58889f83d442c32\",\"slug\":\"woocommerce-shipping-usps\",\"id\":18657},{\"title\":\"UPS Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/UPS-Shipping-Method-Dark.png\",\"excerpt\":\"Get shipping rates from the UPS API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ups-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8dae58502913bac0fbcdcaba515ea998\",\"slug\":\"woocommerce-shipping-ups\",\"id\":18665},{\"title\":\"Braintree for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/02\\/braintree-black-copy.png\",\"excerpt\":\"Accept PayPal, credit cards and debit cards with a single payment gateway solution \\u2014 PayPal Powered by Braintree.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-paypal-powered-by-braintree\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"27f010c8e34ca65b205ddec88ad14536\",\"slug\":\"woocommerce-gateway-paypal-powered-by-braintree\",\"id\":1489837},{\"title\":\"WooCommerce Memberships\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/06\\/Thumbnail-Memberships-updated.png\",\"excerpt\":\"Give members access to restricted content or products, for a fee or for free.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-memberships\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$199.00\",\"hash\":\"9288e7609ad0b487b81ef6232efa5cfc\",\"slug\":\"woocommerce-memberships\",\"id\":958589},{\"title\":\"Shipment Tracking\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Ship-Tracking-Dark-1.png\",\"excerpt\":\"Add shipment tracking information to your orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipment-tracking\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"1968e199038a8a001c9f9966fd06bf88\",\"slug\":\"woocommerce-shipment-tracking\",\"id\":18693},{\"title\":\"Table Rate Shipping\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Product-Table-Rate-Shipping-Dark.png\",\"excerpt\":\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/table-rate-shipping\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"3034ed8aff427b0f635fe4c86bbf008a\",\"slug\":\"woocommerce-table-rate-shipping\",\"id\":18718},{\"title\":\"Checkout Field Editor\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Checkout-Field-Editor-Dark.png\",\"excerpt\":\"Optimize your checkout process by adding, removing or editing fields to suit your needs.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-field-editor\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"2b8029f0d7cdd1118f4d843eb3ab43ff\",\"slug\":\"woocommerce-checkout-field-editor\",\"id\":184594},{\"title\":\"WooCommerce Bookings\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Dark.png\",\"excerpt\":\"Allow customers to book appointments, make reservations or rent equipment without leaving your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/hotel\\/\",\"price\":\"$249.00\",\"hash\":\"911c438934af094c2b38d5560b9f50f3\",\"slug\":\"WooCommerce Bookings\",\"id\":390890},{\"title\":\"Product Bundles\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-PB.png?v=1\",\"excerpt\":\"Offer personalized product bundles, bulk discount packages, and assembled\\u00a0products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-bundles\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"aa2518b5-ab19-4b75-bde9-60ca51e20f28\",\"slug\":\"woocommerce-product-bundles\",\"id\":18716},{\"title\":\"Multichannel for WooCommerce: Google, Amazon, eBay & Walmart Integration\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/10\\/Woo-Extension-Store-Logo-v2.png\",\"excerpt\":\"Get the official Google, Amazon, eBay and Walmart extension and create, sync and manage multichannel listings directly from WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-ebay-integration\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"e4000666-9275-4c71-8619-be61fb41c9f9\",\"slug\":\"woocommerce-amazon-ebay-integration\",\"id\":3545890},{\"title\":\"Min\\/Max Quantities\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Min-Max-Qua-Dark.png\",\"excerpt\":\"Specify minimum and maximum allowed product quantities for orders to be completed.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/minmax-quantities\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"2b5188d90baecfb781a5aa2d6abb900a\",\"slug\":\"woocommerce-min-max-quantities\",\"id\":18616},{\"title\":\"LiveChat for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2015\\/11\\/LC_woo_regular-zmiaym.png\",\"excerpt\":\"Live Chat and messaging platform for sales and support -- increase average order value and overall sales through live conversations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/livechat\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.livechat.com\\/livechat-for-ecommerce\\/?a=woocommerce&utm_source=woocommerce.com&utm_medium=integration&utm_campaign=woocommerce.com\",\"price\":\"$0.00\",\"hash\":\"5344cc1f-ed4a-4d00-beff-9d67f6d372f3\",\"slug\":\"livechat-woocommerce\",\"id\":1348888},{\"title\":\"FedEx Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/01\\/FedEx_Logo_Wallpaper.jpeg\",\"excerpt\":\"Get shipping rates from the FedEx API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/fedex-shipping-module\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1a48b598b47a81559baadef15e320f64\",\"slug\":\"woocommerce-shipping-fedex\",\"id\":18620},{\"title\":\"Authorize.Net\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/04\\/Thumbnail-Authorize.net-updated.png\",\"excerpt\":\"Authorize.Net gateway with support for pre-orders and subscriptions.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/authorize-net\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8b61524fe53add7fdd1a8d1b00b9327d\",\"slug\":\"woocommerce-gateway-authorize-net-cim\",\"id\":178481},{\"title\":\"Product CSV Import Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Product-CSV-Import-Dark.png\",\"excerpt\":\"Import, merge, and export products and variations to and from WooCommerce using a CSV file.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-csv-import-suite\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"7ac9b00a1fe980fb61d28ab54d167d0d\",\"slug\":\"woocommerce-product-csv-import-suite\",\"id\":18680},{\"title\":\"Follow-Ups\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Follow-Ups-Dark.png\",\"excerpt\":\"Automatically contact customers after purchase - be it everyone, your most loyal or your biggest spenders - and keep your store top-of-mind.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/follow-up-emails\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"05ece68fe94558e65278fe54d9ec84d2\",\"slug\":\"woocommerce-follow-up-emails\",\"id\":18686},{\"title\":\"WooCommerce Customer \\/ Order \\/ Coupon Export\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-Customer-Order-Coupon-Export-updated.png\",\"excerpt\":\"Export customers, orders, and coupons from WooCommerce manually or on an automated schedule.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/ordercustomer-csv-export\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"914de15813a903c767b55445608bf290\",\"slug\":\"woocommerce-customer-order-csv-export\",\"id\":18652},{\"title\":\"Australia Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/australia-post.gif\",\"excerpt\":\"Get shipping rates for your WooCommerce store from the Australia Post API, which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/australia-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1dbd4dc6bd91a9cda1bd6b9e7a5e4f43\",\"slug\":\"woocommerce-shipping-australia-post\",\"id\":18622},{\"title\":\"Canada Post Shipping Method\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/canada-post.png\",\"excerpt\":\"Get shipping rates from the Canada Post Ratings API which handles both domestic and international parcels.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/canada-post-shipping-method\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"ac029cdf3daba20b20c7b9be7dc00e0e\",\"slug\":\"woocommerce-shipping-canada-post\",\"id\":18623},{\"title\":\"Product Vendors\",\"image\":\"\",\"excerpt\":\"Turn your store into a multi-vendor marketplace\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-vendors\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"a97d99fccd651bbdd728f4d67d492c31\",\"slug\":\"woocommerce-product-vendors\",\"id\":219982},{\"title\":\"Smart Coupons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/10\\/wc-product-smart-coupons.png\",\"excerpt\":\"Everything you need for discounts, coupons, credits, gift cards, product giveaways, offers, and promotions. Most popular and complete coupons plugin for WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/smart-coupons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demo.storeapps.org\\/?demo=sc\",\"price\":\"$99.00\",\"hash\":\"05c45f2aa466106a466de4402fff9dde\",\"slug\":\"woocommerce-smart-coupons\",\"id\":18729},{\"title\":\"WooCommerce Accommodation Bookings\",\"image\":\"\",\"excerpt\":\"Book accommodation using WooCommerce and the WooCommerce Bookings extension.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-accommodation-bookings\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"99b2a7a4af90b6cefd2a733b3b1f78e7\",\"slug\":\"woocommerce-accommodation-bookings\",\"id\":1412069},{\"title\":\"WooCommerce Brands\",\"image\":\"\",\"excerpt\":\"Create, assign and list brands for products, and allow customers to view by brand.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/brands\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"8a88c7cbd2f1e73636c331c7a86f818c\",\"slug\":\"woocommerce-brands\",\"id\":18737},{\"title\":\"Xero\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/08\\/xero2.png\",\"excerpt\":\"Save time with automated sync between WooCommerce and your Xero account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/xero\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"f0dd29d338d3c67cf6cee88eddf6869b\",\"slug\":\"woocommerce-xero\",\"id\":18733},{\"title\":\"WooCommerce Zapier\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/woocommerce-zapier-logo.png\",\"excerpt\":\"Integrate with 3000+ cloud apps and services today.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-zapier\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$59.00\",\"hash\":\"0782bdbe932c00f4978850268c6cfe40\",\"slug\":\"woocommerce-zapier\",\"id\":243589},{\"title\":\"Dynamic Pricing\",\"image\":\"\",\"excerpt\":\"Bulk discounts, role-based pricing and much more\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/dynamic-pricing\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"9a41775bb33843f52c93c922b0053986\",\"slug\":\"woocommerce-dynamic-pricing\",\"id\":18643},{\"title\":\"Royal Mail\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/04\\/royalmail.png\",\"excerpt\":\"Offer Royal Mail shipping rates to your customers\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/royal-mail\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"03839cca1a16c4488fcb669aeb91a056\",\"slug\":\"woocommerce-shipping-royalmail\",\"id\":182719},{\"title\":\"AutomateWoo\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-AutomateWoo-Dark-1.png\",\"excerpt\":\"Powerful marketing automation for WooCommerce. AutomateWoo has the tools you need to grow your store and make more money.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/automatewoo\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"ba9299b8-1dba-4aa0-a313-28bc1755cb88\",\"slug\":\"automatewoo\",\"id\":4652610},{\"title\":\"Advanced Notifications\",\"image\":\"\",\"excerpt\":\"Easily setup \\\"new order\\\" and stock email notifications for multiple recipients of your choosing.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/advanced-notifications\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"112372c44b002fea2640bd6bfafbca27\",\"slug\":\"woocommerce-advanced-notifications\",\"id\":18740},{\"title\":\"Name Your Price\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2012\\/09\\/nyp-icon-dark-v83owf.png\",\"excerpt\":\"Allow customers to define the product price. Also useful for accepting user-set donations.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/name-your-price\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"31b4e11696cd99a3c0572975a84f1c08\",\"slug\":\"woocommerce-name-your-price\",\"id\":18738},{\"title\":\"WooCommerce Points and Rewards\",\"image\":\"\",\"excerpt\":\"Reward your customers for purchases and other actions with points which can be redeemed for discounts.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-points-and-rewards\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"1649b6cca5da8b923b01ca56b5cdd246\",\"slug\":\"woocommerce-points-and-rewards\",\"id\":210259},{\"title\":\"WooCommerce Print Invoices & Packing lists\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/03\\/Thumbnail-Print-Invoices-Packing-lists-updated.png\",\"excerpt\":\"Generate invoices, packing slips, and pick lists for your WooCommerce orders.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/print-invoices-packing-lists\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"465de1126817cdfb42d97ebca7eea717\",\"slug\":\"woocommerce-pip\",\"id\":18666},{\"title\":\"WooCommerce Pre-Orders\",\"image\":\"\",\"excerpt\":\"Allow customers to order products before they are available.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-pre-orders\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"b2dc75e7d55e6f5bbfaccb59830f66b7\",\"slug\":\"woocommerce-pre-orders\",\"id\":178477},{\"title\":\"WooCommerce Subscription Downloads\",\"image\":\"\",\"excerpt\":\"Offer additional downloads to your subscribers, via downloadable products listed in your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-subscription-downloads\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"5be9e21c13953253e4406d2a700382ec\",\"slug\":\"woocommerce-subscription-downloads\",\"id\":420458},{\"title\":\"Google Product Feed\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2011\\/11\\/logo-regular-lscryp.png\",\"excerpt\":\"Feed product data to Google Merchant Center for setting up Google product listings & product ads.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/google-product-feed\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"d55b4f852872025741312839f142447e\",\"slug\":\"woocommerce-product-feeds\",\"id\":18619},{\"title\":\"WooCommerce Additional Variation Images\",\"image\":\"\",\"excerpt\":\"Add gallery images per variation on variable products within WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-additional-variation-images\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/themes.woocommerce.com\\/storefront\\/product\\/woo-single-1\\/\",\"price\":\"$49.00\",\"hash\":\"c61dd6de57dcecb32bd7358866de4539\",\"slug\":\"woocommerce-additional-variation-images\",\"id\":477384},{\"title\":\"WooCommerce Deposits\",\"image\":\"\",\"excerpt\":\"Enable customers to pay for products using a deposit or a payment plan.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-deposits\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$179.00\",\"hash\":\"de192a6cf12c4fd803248da5db700762\",\"slug\":\"woocommerce-deposits\",\"id\":977087},{\"title\":\"WooCommerce AvaTax\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-Avalara-updated.png\",\"excerpt\":\"Get 100% accurate sales tax calculations and on time tax return filing. No more tracking sales tax rates, rules, or jurisdictional boundaries.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-avatax\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"57077a4b28ba71cacf692bcf4a1a7f60\",\"slug\":\"woocommerce-avatax\",\"id\":1389326},{\"title\":\"PayPal Payments Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Paypal-Payments-Pro-Dark.png\",\"excerpt\":\"Take credit card payments directly on your checkout using PayPal Pro.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/paypal-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"6d23ba7f0e0198937c0029f9e865b40e\",\"slug\":\"woocommerce-gateway-paypal-pro\",\"id\":18594},{\"title\":\"Amazon S3 Storage\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/09\\/amazon.png\",\"excerpt\":\"Serve digital products via Amazon S3\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/amazon-s3-storage\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"473bf6f221b865eff165c97881b473bb\",\"slug\":\"woocommerce-amazon-s3-storage\",\"id\":18663},{\"title\":\"Cart Add-ons\",\"image\":\"\",\"excerpt\":\"A powerful tool for driving incremental and impulse purchases by customers once they are in the shopping cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/cart-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"3a8ef25334396206f5da4cf208adeda3\",\"slug\":\"woocommerce-cart-add-ons\",\"id\":18717},{\"title\":\"Shipping Multiple Addresses\",\"image\":\"\",\"excerpt\":\"Allow your customers to ship individual items in a single order to multiple addresses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/shipping-multiple-addresses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"aa0eb6f777846d329952d5b891d6f8cc\",\"slug\":\"woocommerce-shipping-multiple-addresses\",\"id\":18741},{\"title\":\"Klarna Checkout\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2018\\/01\\/Partner_marketing_Klarna_Checkout_Black-1.png\",\"excerpt\":\"Klarna Checkout is a full checkout experience embedded on your site that includes all popular payment methods (Pay Now, Pay Later, Financing, Installments).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/klarna-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.krokedil.se\\/klarnacheckout\\/\",\"price\":\"$0.00\",\"hash\":\"90f8ce584e785fcd8c2d739fd4f40d78\",\"slug\":\"klarna-checkout-for-woocommerce\",\"id\":2754152},{\"title\":\"Gravity Forms Product Add-ons\",\"image\":\"\",\"excerpt\":\"Powerful product add-ons, Gravity style\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/gravity-forms-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/gravity-forms\\/\",\"price\":\"$99.00\",\"hash\":\"a6ac0ab1a1536e3a357ccf24c0650ed0\",\"slug\":\"woocommerce-gravityforms-product-addons\",\"id\":18633},{\"title\":\"Composite Products\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CP.png?v=1\",\"excerpt\":\"Create product kit builders and custom product configurators using existing products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/composite-products\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"0343e0115bbcb97ccd98442b8326a0af\",\"slug\":\"woocommerce-composite-products\",\"id\":216836},{\"title\":\"Bulk Stock Management\",\"image\":\"\",\"excerpt\":\"Edit product and variation stock levels in bulk via this handy interface\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bulk-stock-management\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"02f4328d52f324ebe06a78eaaae7934f\",\"slug\":\"woocommerce-bulk-stock-management\",\"id\":18670},{\"title\":\"WooCommerce Email Customizer\",\"image\":\"\",\"excerpt\":\"Connect with your customers with each email you send by visually modifying your email templates via the WordPress Customizer.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-email-customizer\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"bd909fa97874d431f203b5336c7e8873\",\"slug\":\"woocommerce-email-customizer\",\"id\":853277},{\"title\":\"TaxJar\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/10\\/taxjar-logotype.png\",\"excerpt\":\"Save hours every month by putting your sales tax on autopilot. Automated, multi-state sales tax calculation, reporting, and filing for your WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/taxjar\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"12072d8e-e933-4561-97b1-9db3c7eeed91\",\"slug\":\"taxjar-simplified-taxes-for-woocommerce\",\"id\":514914},{\"title\":\"Force Sells\",\"image\":\"\",\"excerpt\":\"Force products to be added to the cart\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/force-sells\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"3ebddfc491ca168a4ea4800b893302b0\",\"slug\":\"woocommerce-force-sells\",\"id\":18678},{\"title\":\"WooCommerce Quick View\",\"image\":\"\",\"excerpt\":\"Show a quick-view button to view product details and add to cart via lightbox popup\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-quick-view\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"619c6e57ce72c49c4b57e15b06eddb65\",\"slug\":\"woocommerce-quick-view\",\"id\":187509},{\"title\":\"WooCommerce Purchase Order Gateway\",\"image\":\"\",\"excerpt\":\"Receive purchase orders via your WooCommerce-powered online store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gateway-purchase-order\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"573a92318244ece5facb449d63e74874\",\"slug\":\"woocommerce-gateway-purchase-order\",\"id\":478542},{\"title\":\"WooCommerce Paid Courses\",\"image\":\"\",\"excerpt\":\"Sell your online courses using the most popular eCommerce platform on the web \\u2013 WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-paid-courses\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"bad2a02a063555b7e2bee59924690763\",\"slug\":\"woothemes-sensei\",\"id\":152116},{\"title\":\"Returns and Warranty Requests\",\"image\":\"\",\"excerpt\":\"Manage the RMA process, add warranties to products & let customers request & manage returns \\/ exchanges from their account.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/warranty-requests\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"9b4c41102e6b61ea5f558e16f9b63e25\",\"slug\":\"woocommerce-warranty\",\"id\":228315},{\"title\":\"Product Enquiry Form\",\"image\":\"\",\"excerpt\":\"Allow visitors to contact you directly from the product details page via a reCAPTCHA protected form to enquire about a product.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/product-enquiry-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"5a0f5d72519a8ffcc86669f042296937\",\"slug\":\"woocommerce-product-enquiry-form\",\"id\":18601},{\"title\":\"WooCommerce Box Office\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-BO-Dark.png\",\"excerpt\":\"Sell tickets for your next event, concert, function, fundraiser or conference directly on your own site\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-box-office\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"e704c9160de318216a8fa657404b9131\",\"slug\":\"woocommerce-box-office\",\"id\":1628717},{\"title\":\"WooCommerce Order Barcodes\",\"image\":\"\",\"excerpt\":\"Generates a unique barcode for each order on your site - perfect for e-tickets, packing slips, reservations and a variety of other uses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-barcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"889835bb29ee3400923653e1e44a3779\",\"slug\":\"woocommerce-order-barcodes\",\"id\":391708},{\"title\":\"WooCommerce 360\\u00ba Image\",\"image\":\"\",\"excerpt\":\"An easy way to add a dynamic, controllable 360\\u00ba image rotation to your WooCommerce site, by adding a group of images to a product\\u2019s gallery.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-360-image\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"24eb2cfa3738a66bf3b2587876668cd2\",\"slug\":\"woocommerce-360-image\",\"id\":512186},{\"title\":\"WooCommerce Photography\",\"image\":\"\",\"excerpt\":\"Sell photos in the blink of an eye using this simple as dragging & dropping interface.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-photography\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"ee76e8b9daf1d97ca4d3874cc9e35687\",\"slug\":\"woocommerce-photography\",\"id\":583602},{\"title\":\"Software Add-on\",\"image\":\"\",\"excerpt\":\"Sell License Keys for Software\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/software-add-on\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$129.00\",\"hash\":\"79f6dbfe1f1d3a56a86f0509b6d6b04b\",\"slug\":\"woocommerce-software-add-on\",\"id\":18683},{\"title\":\"WooCommerce Bookings Availability\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/06\\/Logo-Woo-Bookings-Aval-Dark.png\",\"excerpt\":\"Sell more bookings by presenting a calendar or schedule of available slots in a page or post.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/bookings-availability\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"30770d2a-e392-4e82-baaa-76cfc7d02ae3\",\"slug\":\"woocommerce-bookings-availability\",\"id\":4228225},{\"title\":\"WooCommerce Products Compare\",\"image\":\"\",\"excerpt\":\"WooCommerce Products Compare will allow your potential customers to easily compare products within your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-products-compare\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"c3ba0a4a3199a0cc7a6112eb24414548\",\"slug\":\"woocommerce-products-compare\",\"id\":853117},{\"title\":\"WooCommerce Store Catalog PDF Download\",\"image\":\"\",\"excerpt\":\"Offer your customers a PDF download of your product catalog, generated by WooCommerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-store-catalog-pdf-download\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"79ca7aadafe706364e2d738b7c1090c4\",\"slug\":\"woocommerce-store-catalog-pdf-download\",\"id\":675790},{\"title\":\"eWAY\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/eway-logo-3000-2000.jpg\",\"excerpt\":\"Take credit card payments securely via eWay (SG, MY, HK, AU, and NZ) keeping customers on your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eway\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"2c497769d98d025e0d340cd0b5ea5da1\",\"slug\":\"woocommerce-gateway-eway\",\"id\":18604},{\"title\":\"Catalog Visibility Options\",\"image\":\"\",\"excerpt\":\"Transform WooCommerce into an online catalog by removing eCommerce functionality\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/catalog-visibility-options\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"12e791110365fdbb5865c8658907967e\",\"slug\":\"woocommerce-catalog-visibility-options\",\"id\":18648},{\"title\":\"Sequential Order Numbers Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/05\\/Thumbnail-Sequential-Order-Numbers-Pro-updated.png\",\"excerpt\":\"Tame your order numbers! Advanced & sequential order numbers with optional prefixes \\/ suffixes\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sequential-order-numbers-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"0b18a2816e016ba9988b93b1cd8fe766\",\"slug\":\"woocommerce-sequential-order-numbers-pro\",\"id\":18688},{\"title\":\"WooCommerce Blocks\",\"image\":\"\",\"excerpt\":\"WooCommerce Blocks offers a range of Gutenberg blocks you can use to build and customise your site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-gutenberg-products-block\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"c2e9f13a-f90c-4ffe-a8a5-b432399ec263\",\"slug\":\"woo-gutenberg-products-block\",\"id\":3076677},{\"title\":\"Conditional Shipping and Payments\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2020\\/07\\/Logo-CSP.png?v=1\",\"excerpt\":\"Use conditional logic to restrict the shipping and payment options available on your store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/conditional-shipping-and-payments\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"1f56ff002fa830b77017b0107505211a\",\"slug\":\"woocommerce-conditional-shipping-and-payments\",\"id\":680253},{\"title\":\"WooCommerce Order Status Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2015\\/02\\/Thumbnail-Order-Status-Manager-updated.png\",\"excerpt\":\"Create, edit, and delete completely custom order statuses and integrate them seamlessly into your order management flow.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$49.00\",\"hash\":\"51fd9ab45394b4cad5a0ebf58d012342\",\"slug\":\"woocommerce-order-status-manager\",\"id\":588398},{\"title\":\"WooCommerce Checkout Add-Ons\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/07\\/Thumbnail-Checkout-Add-Ons-updated.png\",\"excerpt\":\"Highlight relevant products, offers like free shipping and other up-sells during checkout.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-checkout-add-ons\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"8fdca00b4000b7a8cc26371d0e470a8f\",\"slug\":\"woocommerce-checkout-add-ons\",\"id\":466854},{\"title\":\"WooCommerce Google Analytics Pro\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2016\\/01\\/Thumbnail-GAPro-updated.png\",\"excerpt\":\"Add advanced event tracking and enhanced eCommerce tracking to your WooCommerce site.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-google-analytics-pro\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"d8aed8b7306b509eec1589e59abe319f\",\"slug\":\"woocommerce-google-analytics-pro\",\"id\":1312497},{\"title\":\"QuickBooks Sync for WooCommerce\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2019\\/04\\/woocommerce-com-logo-1-hyhzbh.png\",\"excerpt\":\"Automatic two-way sync for orders, customers, products, inventory and more between WooCommerce and QuickBooks (Online, Desktop, or POS).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/quickbooks-sync-for-woocommerce\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"c5e32e20-7c1f-4585-8b15-d930c2d842ac\",\"slug\":\"myworks-woo-sync-for-quickbooks-online\",\"id\":4065824},{\"title\":\"WooCommerce One Page Checkout\",\"image\":\"\",\"excerpt\":\"Create special pages where customers can choose products, checkout & pay all on the one page.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-one-page-checkout\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"c9ba8f8352cd71b5508af5161268619a\",\"slug\":\"woocommerce-one-page-checkout\",\"id\":527886},{\"title\":\"WooCommerce Product Search\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2014\\/10\\/woocommerce-product-search-product-image-1870x960-1-jvsljj.png\",\"excerpt\":\"The perfect search engine helps customers to find and buy products quickly \\u2013 essential for every WooCommerce store.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-product-search\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/demo.itthinx.com\\/wps\\/\",\"price\":\"$49.00\",\"hash\":\"c84cc8ca16ddac3408e6b6c5871133a8\",\"slug\":\"woocommerce-product-search\",\"id\":512174},{\"title\":\"First Data\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/02\\/Thumbnail-FirstData-updated.png\",\"excerpt\":\"FirstData gateway for WooCommerce\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/firstdata\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"eb3e32663ec0810592eaf0d097796230\",\"slug\":\"woocommerce-gateway-firstdata\",\"id\":18645},{\"title\":\"WooSlider\",\"image\":\"\",\"excerpt\":\"WooSlider is the ultimate responsive slideshow WordPress slider plugin\\r\\n\\r\\n\\u00a0\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/wooslider\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/www.wooslider.com\\/\",\"price\":\"$49.00\",\"hash\":\"209d98f3ccde6cc3de7e8732a2b20b6a\",\"slug\":\"wooslider\",\"id\":46506},{\"title\":\"WooCommerce Social Login\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/08\\/Thumbnail-Social-Login-updated.png\",\"excerpt\":\"Enable Social Login for seamless checkout and account creation.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-social-login\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"http:\\/\\/demos.skyverge.com\\/woocommerce-social-login\\/\",\"price\":\"$79.00\",\"hash\":\"b231cd6367a79cc8a53b7d992d77525d\",\"slug\":\"woocommerce-social-login\",\"id\":473617},{\"title\":\"Coupon Shortcodes\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/woocommerce_uploads\\/2013\\/09\\/woocommerce-coupon-shortcodes-product-image-1870x960-1-vc5gux.png\",\"excerpt\":\"Show coupon discount info using shortcodes. Allows to render coupon information and content conditionally, based on the validity of coupons.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/coupon-shortcodes\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"ac5d9d51-70b2-4d8f-8b89-24200eea1394\",\"slug\":\"woocommerce-coupon-shortcodes\",\"id\":244762},{\"title\":\"Variation Swatches and Photos\",\"image\":\"\",\"excerpt\":\"Show color and image swatches instead of dropdowns for variable products.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/variation-swatches-and-photos\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"https:\\/\\/www.elementstark.com\\/woocommerce-extension-demos\\/product-category\\/swatches-and-photos\\/\",\"price\":\"$99.00\",\"hash\":\"37bea8d549df279c8278878d081b062f\",\"slug\":\"woocommerce-variation-swatches-and-photos\",\"id\":18697},{\"title\":\"WooCommerce Order Status Control\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2014\\/06\\/Thumbnail-Order-Status-Control-updated.png\",\"excerpt\":\"Use this extension to automatically change the order status to \\\"completed\\\" after successful payment.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-order-status-control\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"32400e509c7c36dcc1cd368e8267d981\",\"slug\":\"woocommerce-order-status-control\",\"id\":439037},{\"title\":\"Jilt\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2017\\/12\\/Thumbnail-Jilt-updated.png\",\"excerpt\":\"All-in-one email marketing platform built for WooCommerce stores. Send newsletters, abandoned cart reminders, win-backs, welcome automations, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/jilt\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"b53aafb64dca33835e41ee06de7e9816\",\"slug\":\"jilt-for-woocommerce\",\"id\":2754876},{\"title\":\"Opayo Payment Suite\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2011\\/10\\/Opayo_logo_RGB.png\",\"excerpt\":\"Take payments on your WooCommerce store via Opayo (formally SagePay).\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/sage-pay-form\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$79.00\",\"hash\":\"6bc0cca47d0274d8ef9b164f6fbec1cc\",\"slug\":\"woocommerce-gateway-sagepay-form\",\"id\":18599},{\"title\":\"EU VAT Number\",\"image\":\"\",\"excerpt\":\"Collect VAT numbers at checkout and remove the VAT charge for eligible EU businesses.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/eu-vat-number\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$29.00\",\"hash\":\"d2720c4b4bb8d6908e530355b7a2d734\",\"slug\":\"woocommerce-eu-vat-number\",\"id\":18592},{\"title\":\"QuickBooks Commerce (formerly TradeGecko)\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2013\\/09\\/qbo-mark.png\",\"excerpt\":\"Get a wholesale and multichannel inventory & order management platform for your WooCommerce store with QuickBooks Commerce.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tradegecko\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$0.00\",\"hash\":\"21da7811f7fc1f13ee19daa7415f0ff3\",\"slug\":\"woocommerce-tradegecko\",\"id\":245960},{\"title\":\"WooCommerce Tab Manager\",\"image\":\"https:\\/\\/woocommerce.com\\/wp-content\\/uploads\\/2012\\/11\\/Thumbnail-Tab-Manager-updated.png\",\"excerpt\":\"Gives you complete control over your product page tabs, create local and global tabs using a visual drag-and-drop interface, and more.\",\"link\":\"https:\\/\\/woocommerce.com\\/products\\/woocommerce-tab-manager\\/?utm_source=product&utm_medium=upsell&utm_campaign=wcaddons\",\"demo_url\":\"\",\"price\":\"$99.00\",\"hash\":\"89a9ac74850855cfe772b4b4ee1e31e0\",\"slug\":\"woocommerce-tab-manager\",\"id\":132195}]}\";s:7:\"headers\";O:25:\"Requests_Response_Headers\":1:{s:7:\"\0*\0data\";a:18:{s:6:\"server\";a:1:{i:0;s:5:\"nginx\";}s:4:\"date\";a:1:{i:0;s:29:\"Sun, 09 May 2021 09:33:51 GMT\";}s:12:\"content-type\";a:1:{i:0;s:31:\"application/json; charset=UTF-8\";}s:14:\"content-length\";a:1:{i:0;s:5:\"11517\";}s:12:\"x-robots-tag\";a:1:{i:0;s:7:\"noindex\";}s:4:\"link\";a:1:{i:0;s:60:\"<https://woocommerce.com/wp-json/>; rel=\"https://api.w.org/\"\";}s:22:\"x-content-type-options\";a:1:{i:0;s:7:\"nosniff\";}s:29:\"access-control-expose-headers\";a:1:{i:0;s:33:\"X-WP-Total, X-WP-TotalPages, Link\";}s:28:\"access-control-allow-headers\";a:1:{i:0;s:73:\"Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type\";}s:13:\"x-wccom-cache\";a:1:{i:0;s:3:\"HIT\";}s:13:\"cache-control\";a:1:{i:0;s:10:\"max-age=60\";}s:5:\"allow\";a:1:{i:0;s:3:\"GET\";}s:16:\"content-encoding\";a:1:{i:0;s:4:\"gzip\";}s:4:\"x-rq\";a:1:{i:0;s:15:\"dca6 89 84 3136\";}s:3:\"age\";a:1:{i:0;s:2:\"58\";}s:7:\"x-cache\";a:1:{i:0;s:3:\"hit\";}s:4:\"vary\";a:1:{i:0;s:23:\"Accept-Encoding, Origin\";}s:13:\"accept-ranges\";a:1:{i:0;s:5:\"bytes\";}}}s:11:\"status_code\";i:200;s:16:\"protocol_version\";d:1.1;s:7:\"success\";b:1;s:9:\"redirects\";i:0;s:3:\"url\";s:59:\"https://woocommerce.com/wp-json/wccom-extensions/1.0/search\";s:7:\"history\";a:0:{}s:7:\"cookies\";O:19:\"Requests_Cookie_Jar\":1:{s:10:\"\0*\0cookies\";a:0:{}}}s:11:\"\0*\0filename\";N;s:4:\"data\";N;s:7:\"headers\";N;s:6:\"status\";N;}}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=4487 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (2,5,'_edit_last','1'),(3,5,'_edit_lock','1618293384:1'),(4,5,'_wp_page_template','page-templates/home-page.php'),(5,7,'_edit_last','1'),(6,7,'_wp_page_template','default'),(7,7,'_edit_lock','1618401154:1'),(8,9,'_edit_last','1'),(9,9,'_edit_lock','1618234444:1'),(10,9,'_wp_page_template','page-templates/about-us.php'),(11,11,'_edit_last','1'),(12,11,'_wp_page_template','page-templates/services.php'),(13,11,'_edit_lock','1547385893:1'),(14,13,'_edit_last','1'),(15,13,'_wp_page_template','page-templates/contact-us.php'),(16,13,'_edit_lock','1541428164:1'),(17,15,'_edit_last','1'),(18,15,'_wp_page_template','default'),(19,15,'_edit_lock','1541704456:1'),(20,17,'_edit_last','1'),(21,17,'_wp_page_template','default'),(22,17,'_edit_lock','1541704559:1'),(97,83,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:278;s:6:\"height\";i:271;s:4:\"file\";s:22:\"2014/07/hardwarebg.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"hardwarebg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"hardwarebg-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"hardwarebg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:\"\";}}'),(96,83,'_wp_attached_file','2014/07/hardwarebg.jpg'),(32,25,'_edit_last','1'),(33,25,'_wp_page_template','default'),(34,25,'_edit_lock','1541704441:1'),(41,51,'_edit_last','1'),(42,51,'_edit_lock','1547128223:1'),(840,289,'_thumbnail_id','310'),(817,51,'_wp_old_slug','project-test-1'),(818,51,'gw_go_portfolio_thumb_type','image'),(819,51,'gw_go_portfolio_thumb_video_type','youtube_video'),(820,51,'gw_go_portfolio_thumb_audio_type','soundcloud_audio'),(821,51,'gw_go_portfolio_lighbox_type','image'),(822,51,'gw_go_portfolio_lightbox_video_type','youtube_video'),(823,51,'gw_go_portfolio_lightbox_audio_type','soundcloud_audio'),(45,51,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(46,9,'dfiFeatured','a:1:{i:0;s:43:\"/2014/06/0005-150x150.jpg,/2014/06/0005.jpg\";}'),(3791,520,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:141;s:6:\"height\";i:52;s:4:\"file\";s:15:\"2014/08/sdi.gif\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"sdi-90x52.gif\";s:5:\"width\";i:90;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/gif\";}}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:\"\";}}'),(3790,520,'_wp_attached_file','2014/08/sdi.gif'),(50,60,'_edit_last','1'),(51,60,'_edit_lock','1408440212:1'),(52,60,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(552,214,'_edit_last','1'),(53,60,'partners_url','http://ul.com/'),(54,51,'featured',''),(55,51,'loaction','Address 213'),(56,13,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(57,15,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(58,11,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(59,17,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(60,66,'_edit_last','1'),(61,66,'_edit_lock','1541425357:1'),(62,67,'_wp_attached_file','2014/06/EAD_Logo_EN_resize.jpg'),(63,67,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:220;s:6:\"height\";i:182;s:4:\"file\";s:30:\"2014/06/EAD_Logo_EN_resize.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"EAD_Logo_EN_resize-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:\"\";}}'),(64,66,'dfiFeatured','a:1:{i:0;s:71:\"/2014/06/EAD_Logo_EN_resize-150x150.jpg,/2014/06/EAD_Logo_EN_resize.jpg\";}'),(65,68,'_edit_last','1'),(66,68,'_edit_lock','1402665535:1'),(67,68,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(68,69,'_edit_last','1'),(69,69,'_edit_lock','1547128209:1'),(70,69,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(741,289,'miu_images','s:6:\"a:0:{}\";'),(740,289,'featured',''),(71,69,'loaction','Address 4'),(72,69,'featured',''),(73,70,'_edit_last','1'),(74,70,'dfiFeatured','a:1:{i:0;s:71:\"/2014/06/EAD_Logo_EN_resize-150x150.jpg,/2014/06/EAD_Logo_EN_resize.jpg\";}'),(75,70,'_edit_lock','1541425315:1'),(76,71,'_edit_last','1'),(77,71,'dfiFeatured','a:1:{i:0;s:71:\"/2014/06/EAD_Logo_EN_resize-150x150.jpg,/2014/06/EAD_Logo_EN_resize.jpg\";}'),(78,71,'_edit_lock','1541425229:1'),(549,213,'_wp_attached_file','2014/06/yale.png'),(3789,519,'_edit_lock','1408439910:1'),(80,72,'_edit_last','1'),(81,72,'_edit_lock','1402665906:1'),(82,72,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(83,74,'_edit_last','1'),(84,74,'_edit_lock','1548678099:1'),(85,74,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(86,75,'_edit_last','1'),(87,75,'_edit_lock','1548678509:1'),(88,75,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(89,75,'slider_sub_heading1','hello'),(90,75,'slider_sub_heading2','hi'),(91,74,'slider_sub_heading1','Sub Heading12'),(92,74,'slider_sub_heading2','Sub Heading21'),(93,76,'_edit_last','1'),(94,76,'_edit_lock','1402997465:1'),(95,76,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(533,205,'_edit_last','1'),(98,84,'_wp_attached_file','2014/07/hollowmetalbg.jpg'),(99,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:219;s:4:\"file\";s:25:\"2014/07/hollowmetalbg.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"hollowmetalbg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"hollowmetalbg-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"hollowmetalbg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:\"\";}}'),(100,85,'_wp_attached_file','2014/07/wooddoorbg.jpg'),(101,85,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:254;s:4:\"file\";s:22:\"2014/07/wooddoorbg.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"wooddoorbg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"wooddoorbg-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"wooddoorbg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:\"\";}}'),(102,95,'_edit_last','1'),(103,95,'_edit_lock','1405683049:1'),(104,95,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(105,95,'brand_url','http://www.cal-royal.com/'),(111,97,'_wp_attached_file','2014/07/index.jpeg'),(107,96,'_edit_last','1'),(108,96,'_edit_lock','1405687786:1'),(109,96,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(110,96,'brand_url','www.hagerhinge.com'),(112,97,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:124;s:6:\"height\";i:86;s:4:\"file\";s:18:\"2014/07/index.jpeg\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"index-90x86.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:86;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:\"\";}}'),(113,95,'_thumbnail_id','97'),(114,98,'_edit_last','1'),(115,98,'_edit_lock','1405683222:1'),(116,99,'_wp_attached_file','2014/07/index1.jpeg'),(117,99,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:312;s:6:\"height\";i:161;s:4:\"file\";s:19:\"2014/07/index1.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index1-150x150.jpeg\";s:5:\"width\";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:\"index1-300x154.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"index1-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"index1-300x161.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:161;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:\"\";}}'),(118,98,'_thumbnail_id','99'),(119,98,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(120,98,'brand_url','http://www.mckinneyhinge.com/en/site/McKinney-Hinge/'),(121,100,'_edit_last','1'),(122,100,'_edit_lock','1405683357:1'),(123,101,'_wp_attached_file','2014/07/index2.jpeg'),(124,101,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:183;s:6:\"height\";i:137;s:4:\"file\";s:19:\"2014/07/index2.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index2-150x137.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:137;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"index2-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index2-150x137.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:137;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:\"\";}}'),(125,100,'_thumbnail_id','101'),(126,100,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(127,100,'brand_url','http://www.stanleyblackanddecker.com/'),(128,102,'_edit_last','1'),(129,102,'_edit_lock','1405684640:1'),(130,103,'_wp_attached_file','2014/07/index3.jpeg'),(131,103,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:301;s:6:\"height\";i:167;s:4:\"file\";s:19:\"2014/07/index3.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index3-150x150.jpeg\";s:5:\"width\";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:\"index3-300x166.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"index3-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index3-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"index3-300x167.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:167;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:\"\";}}'),(132,102,'_thumbnail_id','103'),(133,102,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(134,102,'brand_url','http://www.corbinrusswin.com/en/site/corbin-russwin/'),(135,104,'_edit_last','1'),(136,104,'_edit_lock','1405683855:1'),(137,105,'_wp_attached_file','2014/07/index4.jpeg'),(138,105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:130;s:4:\"file\";s:19:\"2014/07/index4.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index4-150x130.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:130;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"index4-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index4-150x130.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:130;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:\"\";}}'),(139,104,'_thumbnail_id','105'),(140,104,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(141,104,'brand_url','http://us.allegion.com/brands/falcon/Pages/default.aspx'),(142,107,'_edit_last','1'),(143,107,'_edit_lock','1405684156:1'),(144,108,'_wp_attached_file','2014/07/index5.jpeg'),(145,108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:271;s:6:\"height\";i:186;s:4:\"file\";s:19:\"2014/07/index5.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index5-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"index5-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index5-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:\"\";}}'),(146,107,'_thumbnail_id','108'),(147,107,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(148,107,'brand_url','http://www.sargentlock.com/'),(149,109,'_edit_last','1'),(150,109,'_edit_lock','1405684252:1'),(151,110,'_wp_attached_file','2014/07/index6.jpeg'),(152,110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:302;s:6:\"height\";i:167;s:4:\"file\";s:19:\"2014/07/index6.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index6-150x150.jpeg\";s:5:\"width\";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:\"index6-300x165.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"index6-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index6-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"index6-300x167.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:167;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:\"\";}}'),(153,109,'_thumbnail_id','110'),(154,109,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(155,109,'brand_url','http://www.schlage.com/en/home.html'),(156,111,'_edit_last','1'),(157,111,'_edit_lock','1405684570:1'),(158,112,'_wp_attached_file','2014/07/index7.jpeg'),(159,112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:195;s:6:\"height\";i:258;s:4:\"file\";s:19:\"2014/07/index7.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index7-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"index7-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index7-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:\"\";}}'),(160,111,'_thumbnail_id','112'),(161,111,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(162,111,'brand_url','http://www.yalecommercial.com/'),(163,113,'_edit_last','1'),(164,113,'_edit_lock','1405685316:1'),(165,114,'_wp_attached_file','2014/07/index8.jpeg'),(166,114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:224;s:4:\"file\";s:19:\"2014/07/index8.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index8-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"index8-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index8-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:\"\";}}'),(167,113,'_thumbnail_id','114'),(168,113,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(169,113,'brand_url','http://www.dorma.com/us/en/'),(170,115,'_edit_last','1'),(171,115,'_edit_lock','1405684927:1'),(172,115,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(173,115,'brand_url','http://exits.dormatic.com/'),(174,116,'_edit_last','1'),(175,116,'_edit_lock','1405685043:1'),(176,117,'_wp_attached_file','2014/07/index9.jpeg'),(177,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:308;s:6:\"height\";i:164;s:4:\"file\";s:19:\"2014/07/index9.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index9-150x150.jpeg\";s:5:\"width\";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:\"index9-300x159.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"index9-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index9-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"index9-300x164.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(178,116,'_thumbnail_id','117'),(179,116,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(180,116,'brand_url','www.lcnclosers.com'),(181,118,'_edit_last','1'),(182,118,'_edit_lock','1405685116:1'),(183,119,'_wp_attached_file','2014/07/images10.jpeg'),(184,119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:54;s:4:\"file\";s:21:\"2014/07/images10.jpeg\";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:\"\";}}'),(185,118,'_thumbnail_id','119'),(186,118,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(187,118,'brand_url','http://www.nortondoorcontrols.com/en/site/norton/'),(188,120,'_edit_last','1'),(189,120,'_edit_lock','1405689214:1'),(190,121,'_wp_attached_file','2014/07/index11.jpeg'),(191,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:333;s:6:\"height\";i:151;s:4:\"file\";s:20:\"2014/07/index11.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"index11-150x150.jpeg\";s:5:\"width\";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:\"index11-300x136.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index11-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"index11-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"index11-300x151.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:151;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:\"\";}}'),(192,120,'_thumbnail_id','121'),(193,120,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(194,120,'brand_url','http://www.rixson.com/'),(195,122,'_edit_last','1'),(196,122,'_edit_lock','1405685457:1'),(197,123,'_wp_attached_file','2014/07/index13.jpeg'),(198,123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:145;s:6:\"height\";i:43;s:4:\"file\";s:20:\"2014/07/index13.jpeg\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index13-90x43.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:43;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:\"\";}}'),(199,122,'_thumbnail_id','123'),(200,122,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(201,122,'brand_url','www.monarchhardware.com'),(202,124,'_edit_last','1'),(203,124,'_edit_lock','1405685551:1'),(204,125,'_wp_attached_file','2014/07/index14.jpeg'),(205,125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:103;s:4:\"file\";s:20:\"2014/07/index14.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"index14-150x103.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"index14-300x64.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index14-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"index14-150x103.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"index14-300x103.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:103;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:\"\";}}'),(206,124,'_thumbnail_id','125'),(207,124,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(208,124,'brand_url','http://www.precisionlock.com/'),(209,126,'_edit_last','1'),(210,126,'_edit_lock','1405687144:1'),(211,127,'_wp_attached_file','2014/07/index15.jpeg'),(212,127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:162;s:6:\"height\";i:56;s:4:\"file\";s:20:\"2014/07/index15.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index15-150x56.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:56;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index15-90x56.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:56;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index15-150x56.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:56;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:\"\";}}'),(213,126,'_thumbnail_id','127'),(214,126,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(215,126,'brand_url','www.vonduprin.com'),(216,128,'_edit_last','1'),(217,128,'_edit_lock','1405686625:1'),(218,129,'_wp_attached_file','2014/07/index151.jpeg'),(219,129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:162;s:6:\"height\";i:56;s:4:\"file\";s:21:\"2014/07/index151.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"index151-150x56.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:56;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"index151-90x56.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:56;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"index151-150x56.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:56;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:\"\";}}'),(220,130,'_wp_attached_file','2014/07/images16.jpeg'),(221,130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:184;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2014/07/images16.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"images16-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"images16-90x80.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"images16-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;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:\"\";}}'),(222,128,'_thumbnail_id','130'),(223,128,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(224,128,'brand_url','http://www.adamsrite.com/'),(225,131,'_edit_last','1'),(226,131,'_edit_lock','1405686753:1'),(227,132,'_wp_attached_file','2014/07/images17.jpeg'),(228,132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:140;s:6:\"height\";i:98;s:4:\"file\";s:21:\"2014/07/images17.jpeg\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"images17-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;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:\"\";}}'),(229,131,'_thumbnail_id','132'),(230,131,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(231,131,'brand_url','http://www.arcat.com'),(232,133,'_edit_last','1'),(233,133,'_edit_lock','1405686844:1'),(234,134,'_wp_attached_file','2014/07/images18.jpeg'),(235,134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:184;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2014/07/images18.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"images18-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"images18-90x80.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"images18-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;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:\"\";}}'),(236,133,'_thumbnail_id','134'),(237,133,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(238,133,'brand_url','http://www.hesinnovations.com/'),(239,135,'_edit_last','1'),(240,135,'_edit_lock','1405687042:1'),(241,136,'_wp_attached_file','2014/07/index19.jpeg'),(242,136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:156;s:6:\"height\";i:52;s:4:\"file\";s:20:\"2014/07/index19.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index19-150x52.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index19-90x52.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index19-150x52.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:52;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:\"\";}}'),(243,135,'_thumbnail_id','136'),(244,135,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(245,135,'brand_url','www.locknetics.com/'),(246,137,'_edit_last','1'),(247,137,'_edit_lock','1405687274:1'),(248,138,'_wp_attached_file','2014/07/index20.jpeg'),(249,138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:72;s:4:\"file\";s:20:\"2014/07/index20.jpeg\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index20-90x72.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:72;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(250,137,'_thumbnail_id','138'),(251,137,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(252,137,'brand_url','http://www.doorcontrols.com/'),(276,145,'_wp_attached_file','2014/07/index23.jpeg'),(275,144,'_edit_lock','1405687929:1'),(274,144,'_edit_last','1'),(257,140,'_edit_last','1'),(258,140,'_edit_lock','1405687549:1'),(259,141,'_wp_attached_file','2014/07/index21.jpeg'),(260,141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:188;s:6:\"height\";i:68;s:4:\"file\";s:20:\"2014/07/index21.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index21-150x68.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:68;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index21-90x68.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:68;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index21-150x68.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:68;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:\"\";}}'),(261,140,'_thumbnail_id','141'),(262,140,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(263,140,'brand_url','www.iveshardware.com'),(264,142,'_edit_last','1'),(265,142,'_edit_lock','1405687651:1'),(266,143,'_wp_attached_file','2014/07/images22.jpeg'),(267,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:108;s:6:\"height\";i:58;s:4:\"file\";s:21:\"2014/07/images22.jpeg\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"images22-90x58.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:58;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(268,142,'_thumbnail_id','143'),(269,142,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(270,142,'brand_url','http://www.rockwoodmfg.com/'),(271,142,'_wp_old_slug','hager-3'),(277,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:112;s:4:\"file\";s:20:\"2014/07/index23.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"index23-150x112.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"index23-300x74.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:74;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index23-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"index23-150x112.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"index23-300x112.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:112;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:\"\";}}'),(278,144,'_thumbnail_id','145'),(279,144,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(280,144,'brand_url','http://www.trimcobbw.com/door-hardware/index.asp'),(281,146,'_edit_last','1'),(282,146,'_edit_lock','1405687998:1'),(283,147,'_wp_attached_file','2014/07/index24.jpeg'),(284,147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:68;s:4:\"file\";s:20:\"2014/07/index24.jpeg\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index24-90x68.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:68;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:\"\";}}'),(285,146,'_thumbnail_id','147'),(286,146,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(287,146,'brand_url','http://www.pemko.com/'),(288,148,'_edit_last','1'),(289,148,'_edit_lock','1405688093:1'),(290,149,'_wp_attached_file','2014/07/index25.jpeg'),(291,149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:353;s:6:\"height\";i:143;s:4:\"file\";s:20:\"2014/07/index25.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"index25-150x143.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"index25-300x121.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index25-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"index25-150x143.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:143;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"index25-300x143.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:143;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:\"\";}}'),(292,148,'_thumbnail_id','149'),(293,148,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(294,148,'brand_url','http://www.ngpinc.com'),(295,150,'_edit_last','1'),(296,150,'_edit_lock','1405688200:1'),(297,151,'_wp_attached_file','2014/07/index26.jpeg'),(298,151,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:288;s:6:\"height\";i:66;s:4:\"file\";s:20:\"2014/07/index26.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index26-150x66.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index26-90x66.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:66;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index26-150x66.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:66;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:\"\";}}'),(299,150,'_thumbnail_id','151'),(300,150,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(301,150,'brand_url','http://www.reeseusa.com/'),(302,152,'_edit_last','1'),(303,152,'_edit_lock','1405688361:1'),(304,153,'_wp_attached_file','2014/07/index27.jpeg'),(305,153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:132;s:6:\"height\";i:60;s:4:\"file\";s:20:\"2014/07/index27.jpeg\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index27-90x60.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:60;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:\"\";}}'),(306,152,'_thumbnail_id','153'),(307,152,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(308,152,'brand_url','www.glynn-johnson.com'),(309,154,'_edit_last','1'),(310,154,'_edit_lock','1405689304:1'),(311,155,'_wp_attached_file','2014/07/index28.jpeg'),(312,155,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:524;s:6:\"height\";i:96;s:4:\"file\";s:20:\"2014/07/index28.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index28-150x96.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"index28-300x54.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:54;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index28-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index28-150x96.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"index28-300x96.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:96;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:\"\";}}'),(313,154,'_thumbnail_id','155'),(314,154,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(315,154,'brand_url','http://www.amweld.com/'),(316,156,'_edit_last','1'),(317,156,'_edit_lock','1405689397:1'),(318,157,'_wp_attached_file','2014/07/images29.jpeg'),(319,157,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:52;s:4:\"file\";s:21:\"2014/07/images29.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"images29-150x52.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"images29-90x52.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"images29-150x52.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:52;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:\"\";}}'),(320,156,'_thumbnail_id','157'),(321,156,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(322,156,'brand_url','http://www.cecodoor.com'),(323,158,'_edit_last','1'),(324,158,'_edit_lock','1405689712:1'),(325,159,'_wp_attached_file','2014/07/images30.jpeg'),(326,159,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:40;s:4:\"file\";s:21:\"2014/07/images30.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"images30-150x40.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"images30-90x40.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:40;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"images30-150x40.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:40;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:\"\";}}'),(327,158,'_thumbnail_id','159'),(328,158,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(329,158,'brand_url','http://hollowmetalinc.com/'),(330,160,'_edit_last','1'),(331,160,'_edit_lock','1405689797:1'),(332,161,'_wp_attached_file','2014/07/index31.jpeg'),(333,161,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:188;s:6:\"height\";i:31;s:4:\"file\";s:20:\"2014/07/index31.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index31-150x31.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:31;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index31-90x31.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:31;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index31-150x31.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:31;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:\"\";}}'),(334,160,'_thumbnail_id','161'),(335,160,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(336,160,'brand_url','http://www.daybar.com/'),(337,162,'_edit_last','1'),(338,162,'_edit_lock','1405689906:1'),(339,163,'_wp_attached_file','2014/07/logo.jpg'),(340,163,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:57;s:6:\"height\";i:53;s:4:\"file\";s:16:\"2014/07/logo.jpg\";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:\"\";}}'),(341,162,'_thumbnail_id','163'),(342,162,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(343,162,'brand_url','http://www.premierprod.com/'),(344,164,'_edit_last','1'),(345,164,'_edit_lock','1405689973:1'),(346,165,'_wp_attached_file','2014/07/index32.jpeg'),(347,165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:112;s:4:\"file\";s:20:\"2014/07/index32.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"index32-150x112.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"index32-300x74.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:74;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index32-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"index32-150x112.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"index32-300x112.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:112;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:\"\";}}'),(348,164,'_thumbnail_id','165'),(349,164,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(350,164,'brand_url','http://www.republicdoor.com/'),(351,166,'_edit_last','1'),(352,166,'_edit_lock','1405690078:1'),(353,167,'_wp_attached_file','2014/07/index321.jpeg'),(354,167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:112;s:4:\"file\";s:21:\"2014/07/index321.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"index321-150x112.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"index321-300x74.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:74;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"index321-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"index321-150x112.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"index321-300x112.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:112;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:\"\";}}'),(355,168,'_wp_attached_file','2014/07/images33.jpeg'),(356,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:149;s:6:\"height\";i:63;s:4:\"file\";s:21:\"2014/07/images33.jpeg\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"images33-90x63.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:63;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:\"\";}}'),(357,166,'_thumbnail_id','168'),(358,166,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(359,166,'brand_url','www.steelcraft.com'),(360,169,'_edit_last','1'),(361,169,'_edit_lock','1405690189:1'),(362,170,'_wp_attached_file','2014/07/images34.jpeg'),(363,170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:62;s:4:\"file\";s:21:\"2014/07/images34.jpeg\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"images34-90x62.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:62;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:\"\";}}'),(364,169,'_thumbnail_id','170'),(365,169,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(366,169,'brand_url','http://www.anemostat.com/'),(367,171,'_edit_last','1'),(368,171,'_edit_lock','1405690231:1'),(369,171,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(370,171,'brand_url','http://www.dhoi.com/All%20Metals%20Shipping'),(371,172,'_edit_last','1'),(372,172,'_edit_lock','1407311984:1'),(373,173,'_wp_attached_file','2014/07/index35.jpeg'),(374,173,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:208;s:6:\"height\";i:80;s:4:\"file\";s:20:\"2014/07/index35.jpeg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"index35-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"index35-90x80.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"index35-150x80.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:80;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:\"\";}}'),(375,172,'_thumbnail_id','173'),(376,172,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(377,172,'brand_url','http://www.activarcpg.com'),(3795,521,'_edit_lock','1541426715:1'),(3794,521,'_edit_last','1'),(3793,519,'partners_url','http://www.steeldoor.org/index.php'),(393,182,'_menu_item_type','post_type'),(394,182,'_menu_item_menu_item_parent','0'),(395,182,'_menu_item_object_id','13'),(396,182,'_menu_item_object','page'),(397,182,'_menu_item_target',''),(398,182,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(399,182,'_menu_item_xfn',''),(400,182,'_menu_item_url',''),(4200,51,'project_address',''),(4199,69,'project_address',''),(4198,289,'project_address',''),(4197,313,'_edit_lock','1547128189:1'),(4196,290,'project_address',''),(4195,291,'project_address',''),(411,184,'_menu_item_type','post_type'),(412,184,'_menu_item_menu_item_parent','0'),(413,184,'_menu_item_object_id','9'),(414,184,'_menu_item_object','page'),(415,184,'_menu_item_target',''),(416,184,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(417,184,'_menu_item_xfn',''),(418,184,'_menu_item_url',''),(420,185,'_menu_item_type','post_type'),(421,185,'_menu_item_menu_item_parent','0'),(422,185,'_menu_item_object_id','5'),(423,185,'_menu_item_object','page'),(424,185,'_menu_item_target',''),(425,185,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(426,185,'_menu_item_xfn',''),(427,185,'_menu_item_url',''),(1196,371,'_wp_page_template','default'),(1318,410,'_regular_price',''),(1317,410,'_virtual','no'),(1315,410,'total_sales','0'),(433,188,'_edit_last','1'),(434,188,'_wp_page_template','page-templates/project_isotope.php'),(435,188,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(436,188,'_edit_lock','1547385547:1'),(441,192,'_edit_last','1'),(442,192,'_edit_lock','1618548713:1'),(443,192,'_wp_page_template','page-templates/industry-news.php'),(444,192,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(481,198,'_menu_item_type','post_type'),(482,198,'_menu_item_menu_item_parent','0'),(483,198,'_menu_item_object_id','25'),(1316,410,'_downloadable','no'),(1314,410,'_stock_status','instock'),(1312,410,'_thumbnail_id','382'),(1313,410,'_visibility','visible'),(1311,410,'_edit_lock','1407931964:1'),(1310,410,'_edit_last','1'),(484,198,'_menu_item_object','page'),(485,198,'_menu_item_target',''),(486,198,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(487,198,'_menu_item_xfn',''),(488,198,'_menu_item_url',''),(526,5,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(490,199,'_menu_item_type','post_type'),(491,199,'_menu_item_menu_item_parent','0'),(492,199,'_menu_item_object_id','17'),(493,199,'_menu_item_object','page'),(494,199,'_menu_item_target',''),(495,199,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(496,199,'_menu_item_xfn',''),(497,199,'_menu_item_url',''),(499,200,'_menu_item_type','post_type'),(500,200,'_menu_item_menu_item_parent','0'),(501,200,'_menu_item_object_id','15'),(502,200,'_menu_item_object','page'),(503,200,'_menu_item_target',''),(504,200,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(505,200,'_menu_item_xfn',''),(506,200,'_menu_item_url',''),(528,203,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:771;s:6:\"height\";i:344;s:4:\"file\";s:40:\"2014/06/banner-image1-e1541766251782.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"banner-image1-150x150.jpg\";s:5:\"width\";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:\"banner-image1-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"banner-image1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"banner-image1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"banner-image1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"banner-image1-672x344.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:344;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:\"\";}}'),(508,201,'_menu_item_type','post_type'),(509,201,'_menu_item_menu_item_parent','0'),(510,201,'_menu_item_object_id','13'),(511,201,'_menu_item_object','page'),(512,201,'_menu_item_target',''),(513,201,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(514,201,'_menu_item_xfn',''),(515,201,'_menu_item_url',''),(517,202,'_menu_item_type','post_type'),(518,202,'_menu_item_menu_item_parent','0'),(519,202,'_menu_item_object_id','7'),(520,202,'_menu_item_object','page'),(521,202,'_menu_item_target',''),(522,202,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(523,202,'_menu_item_xfn',''),(524,202,'_menu_item_url',''),(527,203,'_wp_attached_file','2014/06/banner-image1-e1541766251782.jpg'),(4100,74,'_thumbnail_id','1025'),(530,204,'_wp_attached_file','2014/06/banner-image2.jpg'),(531,204,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:771;s:6:\"height\";i:344;s:4:\"file\";s:25:\"2014/06/banner-image2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"banner-image2-150x150.jpg\";s:5:\"width\";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:\"banner-image2-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"banner-image2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"banner-image2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"banner-image2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"banner-image2-672x344.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:344;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:\"\";}}'),(532,75,'_thumbnail_id','1030'),(534,205,'_edit_lock','1547385965:1'),(539,205,'_thumbnail_id','875'),(536,205,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(537,205,'slider_sub_heading1',''),(538,205,'slider_sub_heading2',''),(540,51,'project_url','http://www.google.com'),(541,69,'project_url','http://www.yahoo.com'),(542,209,'_edit_last','1'),(543,209,'_edit_lock','1546946510:1'),(544,209,'_wp_page_template','default'),(545,209,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(546,212,'_wp_attached_file','2014/06/partners1.png'),(547,212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:108;s:6:\"height\";i:32;s:4:\"file\";s:21:\"2014/06/partners1.png\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"partners1-90x32.png\";s:5:\"width\";i:90;s:6:\"height\";i:32;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:\"\";}}'),(3788,519,'_edit_last','1'),(550,213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:53;s:4:\"file\";s:16:\"2014/06/yale.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:\"\";}}'),(3782,518,'_wp_attached_file','2014/06/ul.gif'),(553,214,'_edit_lock','1408440043:1'),(554,215,'_wp_attached_file','2014/07/sbd.png'),(555,215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:24;s:4:\"file\";s:15:\"2014/07/sbd.png\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"sbd-90x24.png\";s:5:\"width\";i:90;s:6:\"height\";i:24;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:\"\";}}'),(3778,517,'_wp_attached_file','2014/07/warnock.gif'),(557,214,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(558,214,'partners_url','http://www.intertek.com/marks/wh/'),(559,216,'_edit_last','1'),(560,216,'_edit_lock','1408440083:1'),(561,217,'_wp_attached_file','2014/07/trimco.png'),(562,217,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:134;s:6:\"height\";i:50;s:4:\"file\";s:18:\"2014/07/trimco.png\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"trimco-90x50.png\";s:5:\"width\";i:90;s:6:\"height\";i:50;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:\"\";}}'),(3774,515,'_wp_attached_file','2014/07/dhi.gif'),(564,217,'_wp_attachment_image_alt','trimco'),(565,216,'dfiFeatured','a:1:{i:0;s:0:\"\";}'),(566,216,'partners_url','http://www.dhi.org/'),(842,311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1224;s:6:\"height\";i:1632;s:4:\"file\";s:27:\"2014/08/e-INS-St.Pete-2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-2-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"e-INS-St.Pete-2-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"e-INS-St.Pete-2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-2-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:28:\"e-INS-St.Pete-2-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.2000000000000002;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1400069145;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.12\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(826,309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5168;s:6:\"height\";i:3340;s:4:\"file\";s:22:\"2014/06/DHOI-Tampa.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"DHOI-Tampa-150x150.jpg\";s:5:\"width\";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:\"DHOI-Tampa-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"DHOI-Tampa-1024x661.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:661;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"DHOI-Tampa-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"DHOI-Tampa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"DHOI-Tampa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"DHOI-Tampa-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:23:\"DHOI-Tampa-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:7.0999999999999996;s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1400161525;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";}}'),(575,221,'_wp_attached_file','2014/07/product71.jpg'),(576,221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:221;s:6:\"height\";i:189;s:4:\"file\";s:21:\"2014/07/product71.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"product71-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"product71-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"product71-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:\"\";}}'),(739,289,'project_location',''),(737,289,'_edit_lock','1547128197:1'),(736,289,'_edit_last','1'),(753,291,'featured',''),(583,223,'_wp_attached_file','2014/07/product81.jpg'),(584,223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:221;s:6:\"height\";i:189;s:4:\"file\";s:21:\"2014/07/product81.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"product81-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"product81-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"product81-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:\"\";}}'),(752,291,'project_location',''),(750,291,'_edit_lock','1547128158:1'),(749,291,'_edit_last','1'),(756,51,'longitude','-82.569144'),(755,51,'latitude','28.079478'),(754,291,'miu_images','s:6:\"a:0:{}\";'),(597,226,'_wp_attached_file','2014/07/rixson.png'),(598,226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:146;s:6:\"height\";i:70;s:4:\"file\";s:18:\"2014/07/rixson.png\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"rixson-90x70.png\";s:5:\"width\";i:90;s:6:\"height\";i:70;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:\"\";}}'),(3775,515,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:180;s:6:\"height\";i:80;s:4:\"file\";s:15:\"2014/07/dhi.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"dhi-150x80.gif\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:13:\"dhi-90x80.gif\";s:5:\"width\";i:90;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:14:\"dhi-150x80.gif\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/gif\";}}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:\"\";}}'),(3776,216,'_thumbnail_id','515'),(3777,216,'_wp_old_slug','trimco'),(3779,517,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:86;s:6:\"height\";i:86;s:4:\"file\";s:19:\"2014/07/warnock.gif\";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:\"\";}}'),(3780,214,'_thumbnail_id','517'),(3783,518,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:158;s:6:\"height\";i:58;s:4:\"file\";s:14:\"2014/06/ul.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"ul-150x58.gif\";s:5:\"width\";i:150;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:12:\"ul-90x58.gif\";s:5:\"width\";i:90;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:13:\"ul-150x58.gif\";s:5:\"width\";i:150;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/gif\";}}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:\"\";}}'),(627,232,'_form','[text* FullName placeholder \"Full Name\"] \n\n\n[text* EmailAddress placeholder \"Email Address\"]\n\n\n[textarea* FullAddress 1x1 placeholder \"Full Address\"]\n\n\n[textarea* Description 1x1 placeholder \"Description\"]\n[submit \"Contact\"]'),(628,232,'_mail','a:8:{s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:27:\"[FullName] <[EmailAddress]>\";s:4:\"body\";s:142:\"From: [FullName] <[EmailAddress]>\n\nMessage Body:\n[Description]\n\n--\nThis e-mail was sent from a contact form on dhoi (http://192.168.1.44/dhoi)\";s:9:\"recipient\";s:30:\"monika.webmaster2012@gmail.com\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(629,232,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:26:\"[your-name] <[your-email]>\";s:4:\"body\";s:108:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on dhoi (http://192.168.1.44/dhoi)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(630,232,'_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.\";}'),(631,232,'_additional_settings',''),(632,232,'_locale','en_US'),(633,51,'project_location','kolkata, West Bengal'),(634,69,'project_location','Durgapur, West Bengal'),(635,233,'_edit_last','1'),(636,233,'_edit_lock','1541704450:1'),(637,233,'_wp_page_template','page-templates/onsite-modification-shop.php'),(638,233,'miu_images','s:6:\"a:0:{}\";'),(3785,60,'_wp_old_slug','test'),(3784,60,'_thumbnail_id','518'),(3763,319,'project_address',''),(3781,214,'_wp_old_slug','sbd'),(675,260,'_wp_attached_file','2014/08/service_pic2.jpg'),(654,244,'_wp_attached_file','2014/08/partners9.png'),(655,244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:64;s:4:\"file\";s:21:\"2014/08/partners9.png\";s:5:\"sizes\";a:1:{s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"partners9-90x64.png\";s:5:\"width\";i:90;s:6:\"height\";i:64;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:\"\";}}'),(656,245,'_wp_attached_file','2014/08/pro_pic1.jpg'),(657,245,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:963;s:6:\"height\";i:386;s:4:\"file\";s:20:\"2014/08/pro_pic1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"pro_pic1-150x150.jpg\";s:5:\"width\";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:\"pro_pic1-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"pro_pic1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"pro_pic1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"pro_pic1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"pro_pic1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;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:\"\";}}'),(1210,376,'_edit_last','1'),(1211,376,'_edit_lock','1541683610:1'),(659,251,'_wp_attached_file','2014/06/industry_logo1.png'),(660,251,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:192;s:6:\"height\";i:174;s:4:\"file\";s:26:\"2014/06/industry_logo1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"industry_logo1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"industry_logo1-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"industry_logo1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(661,66,'_thumbnail_id','522'),(662,66,'_wp_old_slug','66'),(663,253,'_wp_attached_file','2014/06/industry_logo2.png'),(664,253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:192;s:6:\"height\";i:174;s:4:\"file\";s:26:\"2014/06/industry_logo2.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"industry_logo2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"industry_logo2-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"industry_logo2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(665,70,'_thumbnail_id','520'),(666,254,'_wp_attached_file','2014/06/industry_logo3.png'),(667,254,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:192;s:6:\"height\";i:174;s:4:\"file\";s:26:\"2014/06/industry_logo3.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"industry_logo3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"industry_logo3-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"industry_logo3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(668,71,'_thumbnail_id','254'),(669,255,'_edit_last','1'),(670,255,'_edit_lock','1541425185:1'),(671,255,'_thumbnail_id','251'),(672,256,'_edit_last','1'),(673,256,'_edit_lock','1617365725:1'),(674,256,'_thumbnail_id','253'),(676,260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:358;s:6:\"height\";i:230;s:4:\"file\";s:24:\"2014/08/service_pic2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"service_pic2-150x150.jpg\";s:5:\"width\";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:\"service_pic2-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"service_pic2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"service_pic2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"service_pic2-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(677,260,'_wp_attachment_image_alt','Metal Shop'),(1209,357,'_wp_old_slug','metal-shop-2'),(679,261,'_edit_last','1'),(680,261,'_edit_lock','1541506539:1'),(681,262,'_wp_attached_file','2014/08/service_pic1.jpg'),(682,262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:358;s:6:\"height\";i:230;s:4:\"file\";s:24:\"2014/08/service_pic1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"service_pic1-150x150.jpg\";s:5:\"width\";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:\"service_pic1-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"service_pic1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"service_pic1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"service_pic1-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1255,391,'_wp_attached_file','2014/08/wood-shop-5.jpg'),(684,261,'miu_images','s:6:\"a:0:{}\";'),(685,265,'_wp_attached_file','2014/06/about_pic.jpg'),(686,265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:348;s:6:\"height\";i:221;s:4:\"file\";s:21:\"2014/06/about_pic.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"about_pic-150x150.jpg\";s:5:\"width\";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:\"about_pic-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"about_pic-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"about_pic-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"about_pic-300x221.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:221;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:\"\";}}'),(1208,9,'_thumbnail_id','268'),(688,266,'_wp_attached_file','2014/08/about_pic2.jpg'),(689,266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:140;s:4:\"file\";s:22:\"2014/08/about_pic2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"about_pic2-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"about_pic2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"about_pic2-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;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:\"\";}}'),(690,267,'_wp_attached_file','2014/08/about_pic21.jpg'),(691,267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:140;s:4:\"file\";s:23:\"2014/08/about_pic21.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"about_pic21-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"about_pic21-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"about_pic21-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;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:\"\";}}'),(692,268,'_wp_attached_file','2014/08/about_pic3.jpg'),(693,268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:140;s:4:\"file\";s:22:\"2014/08/about_pic3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"about_pic3-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"about_pic3-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"about_pic3-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;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:\"\";}}'),(694,269,'_wp_attached_file','2014/08/about_pic4.jpg'),(695,269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:140;s:4:\"file\";s:22:\"2014/08/about_pic4.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"about_pic4-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"about_pic4-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"about_pic4-150x140.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:140;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:\"\";}}'),(696,9,'miu_images','s:241:\"a:3:{i:0;s:67:\"http://192.168.1.44/dhoi/wp-content/uploads/2014/08/about_pic21.jpg\";i:1;s:66:\"http://192.168.1.44/dhoi/wp-content/uploads/2014/08/about_pic3.jpg\";i:2;s:66:\"http://192.168.1.44/dhoi/wp-content/uploads/2014/08/about_pic4.jpg\";}\";'),(697,11,'miu_images','s:6:\"a:0:{}\";'),(698,277,'_wp_attached_file','2014/06/about_pic1.jpg'),(699,277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:348;s:6:\"height\";i:221;s:4:\"file\";s:22:\"2014/06/about_pic1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"about_pic1-150x150.jpg\";s:5:\"width\";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:\"about_pic1-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"about_pic1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"about_pic1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"about_pic1-300x221.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:221;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:\"\";}}'),(956,338,'_wp_attached_file','2014/06/DHOI-Tampa1.jpg'),(828,69,'_wp_old_slug','project-2'),(829,69,'latitude',''),(830,69,'longitude',''),(831,69,'gw_go_portfolio_thumb_type','image'),(832,69,'gw_go_portfolio_thumb_video_type','youtube_video'),(833,69,'gw_go_portfolio_thumb_audio_type','soundcloud_audio'),(834,69,'gw_go_portfolio_lighbox_type','image'),(835,69,'gw_go_portfolio_lightbox_video_type','youtube_video'),(836,69,'gw_go_portfolio_lightbox_audio_type','soundcloud_audio'),(3946,602,'_menu_item_object_id','600'),(3945,602,'_menu_item_menu_item_parent','0'),(3944,602,'_menu_item_type','post_type'),(3943,600,'_wp_page_template','default'),(3941,600,'_edit_last','1'),(3942,600,'_edit_lock','1618590183:1'),(807,305,'_wp_attached_file','2014/06/ASIBARNDOOR-St.Pete_.jpg'),(724,51,'miu_images','s:6:\"a:0:{}\";'),(838,310,'_wp_attached_file','2014/08/e-INS-St.Pete-1-e1548688358472.jpg'),(839,310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:333;s:6:\"height\";i:444;s:4:\"file\";s:42:\"2014/08/e-INS-St.Pete-1-e1548688358472.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"e-INS-St.Pete-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"e-INS-St.Pete-1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:28:\"e-INS-St.Pete-1-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.20000000000000017763568394002504646778106689453125;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1400069756;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.12\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(825,309,'_wp_attached_file','2014/06/DHOI-Tampa.jpg'),(728,69,'miu_images','s:6:\"a:0:{}\";'),(766,298,'_wp_attached_file','2014/08/about_pic.jpg'),(729,188,'miu_images','s:6:\"a:0:{}\";'),(747,290,'miu_images','s:175:\"a:2:{i:0;s:72:\"http://192.168.1.44/dhoi/wp-content/uploads/2014/06/pro_pic2-300x120.jpg\";i:1;s:73:\"http://192.168.1.44/dhoi/wp-content/uploads/2014/08/about_pic-300x190.jpg\";}\";'),(742,290,'_edit_last','1'),(743,290,'_edit_lock','1547128171:1'),(745,290,'project_location',''),(746,290,'featured',''),(767,298,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:348;s:6:\"height\";i:221;s:4:\"file\";s:21:\"2014/08/about_pic.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"about_pic-150x150.jpg\";s:5:\"width\";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:\"about_pic-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"about_pic-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"about_pic-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"about_pic-300x221.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:221;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:\"\";}}'),(768,290,'latitude',''),(769,290,'longitude',''),(770,290,'gw_go_portfolio_thumb_type','image'),(771,290,'gw_go_portfolio_thumb_video_type','youtube_video'),(772,290,'gw_go_portfolio_thumb_audio_type','soundcloud_audio'),(773,290,'gw_go_portfolio_lighbox_type','image'),(774,290,'gw_go_portfolio_lightbox_video_type','youtube_video'),(775,290,'gw_go_portfolio_lightbox_audio_type','soundcloud_audio'),(844,312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1224;s:6:\"height\";i:1632;s:4:\"file\";s:27:\"2014/08/e-INS-St.Pete-3.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-3-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"e-INS-St.Pete-3-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"e-INS-St.Pete-3-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-3-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:28:\"e-INS-St.Pete-3-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.2000000000000002;s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1400069292;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.12\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";}}'),(843,312,'_wp_attached_file','2014/08/e-INS-St.Pete-3.jpg'),(841,311,'_wp_attached_file','2014/08/e-INS-St.Pete-2.jpg'),(814,307,'_wp_attached_file','2014/06/ASIPAIRDOORS-St.Pete_.jpg'),(815,307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:573;s:6:\"height\";i:768;s:4:\"file\";s:33:\"2014/06/ASIPAIRDOORS-St.Pete_.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"ASIPAIRDOORS-St.Pete_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"ASIPAIRDOORS-St.Pete_-223x300.jpg\";s:5:\"width\";i:223;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"ASIPAIRDOORS-St.Pete_-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"ASIPAIRDOORS-St.Pete_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"ASIPAIRDOORS-St.Pete_-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"ASIPAIRDOORS-St.Pete_-573x372.jpg\";s:5:\"width\";i:573;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:33:\"ASIPAIRDOORS-St.Pete_-573x576.jpg\";s:5:\"width\";i:573;s:6:\"height\";i:576;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:\"\";}}'),(808,305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:573;s:6:\"height\";i:768;s:4:\"file\";s:32:\"2014/06/ASIBARNDOOR-St.Pete_.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"ASIBARNDOOR-St.Pete_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"ASIBARNDOOR-St.Pete_-223x300.jpg\";s:5:\"width\";i:223;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"ASIBARNDOOR-St.Pete_-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"ASIBARNDOOR-St.Pete_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"ASIBARNDOOR-St.Pete_-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"ASIBARNDOOR-St.Pete_-573x372.jpg\";s:5:\"width\";i:573;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:32:\"ASIBARNDOOR-St.Pete_-573x576.jpg\";s:5:\"width\";i:573;s:6:\"height\";i:576;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:\"\";}}'),(809,51,'_thumbnail_id','305'),(845,313,'_wp_attached_file','2014/08/e-INS-St.Pete-4.jpg'),(846,313,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1224;s:6:\"height\";i:1632;s:4:\"file\";s:27:\"2014/08/e-INS-St.Pete-4.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-4-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"e-INS-St.Pete-4-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"e-INS-St.Pete-4-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"e-INS-St.Pete-4-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:28:\"e-INS-St.Pete-4-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.2000000000000002;s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1400069345;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.12\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(847,289,'_wp_old_slug','project-3'),(848,289,'latitude',''),(849,289,'longitude',''),(850,289,'gw_go_portfolio_thumb_type','image'),(851,289,'gw_go_portfolio_thumb_video_type','youtube_video'),(852,289,'gw_go_portfolio_thumb_audio_type','soundcloud_audio'),(853,289,'gw_go_portfolio_lighbox_type','image'),(854,289,'gw_go_portfolio_lightbox_video_type','youtube_video'),(855,289,'gw_go_portfolio_lightbox_audio_type','soundcloud_audio'),(861,290,'_thumbnail_id','315'),(859,315,'_wp_attached_file','2014/08/Holland-Knight-Suntrust-Tampa-e1541427135863.jpg'),(860,315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:968;s:6:\"height\";i:1296;s:4:\"file\";s:56:\"2014/08/Holland-Knight-Suntrust-Tampa-e1541427135863.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"Holland-Knight-Suntrust-Tampa-e1541427135863-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Holland-Knight-Suntrust-Tampa-e1541427135863-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Holland-Knight-Suntrust-Tampa-e1541427135863-764x1024.jpg\";s:5:\"width\";i:764;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:54:\"Holland-Knight-Suntrust-Tampa-e1541427135863-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:56:\"Holland-Knight-Suntrust-Tampa-e1541427135863-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:56:\"Holland-Knight-Suntrust-Tampa-e1541427135863-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"Holland-Knight-Suntrust-Tampa-e1541427135863-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:56:\"Holland-Knight-Suntrust-Tampa-e1541427135863-968x576.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.79999999999999982236431605997495353221893310546875;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 4\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1351776224;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.85\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.041666666666667\";s:5:\"title\";s:0:\"\";}}'),(862,290,'_wp_old_slug','project-4'),(863,316,'_wp_attached_file','2014/08/Lifelink-Tampa-1.jpg'),(864,316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1111;s:6:\"height\";i:1557;s:4:\"file\";s:28:\"2014/08/Lifelink-Tampa-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Lifelink-Tampa-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Lifelink-Tampa-1-214x300.jpg\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Lifelink-Tampa-1-730x1024.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Lifelink-Tampa-1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"Lifelink-Tampa-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"Lifelink-Tampa-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Lifelink-Tampa-1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"Lifelink-Tampa-1-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.2000000000000002;s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1394448307;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.12\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(865,291,'_thumbnail_id','316'),(866,318,'_wp_attached_file','2014/08/Lifelink-Tampa-2.jpg'),(867,318,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1178;s:6:\"height\";i:1485;s:4:\"file\";s:28:\"2014/08/Lifelink-Tampa-2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Lifelink-Tampa-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Lifelink-Tampa-2-237x300.jpg\";s:5:\"width\";i:237;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Lifelink-Tampa-2-812x1024.jpg\";s:5:\"width\";i:812;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Lifelink-Tampa-2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"Lifelink-Tampa-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"Lifelink-Tampa-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"Lifelink-Tampa-2-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"Lifelink-Tampa-2-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.2000000000000002;s:6:\"credit\";s:6:\"Picasa\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1392988361;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.12\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(868,291,'_wp_old_slug','project-5'),(869,291,'latitude',''),(870,291,'longitude',''),(871,291,'gw_go_portfolio_thumb_type','image'),(872,291,'gw_go_portfolio_thumb_video_type','youtube_video'),(873,291,'gw_go_portfolio_thumb_audio_type','soundcloud_audio'),(874,291,'gw_go_portfolio_lighbox_type','image'),(875,291,'gw_go_portfolio_lightbox_video_type','youtube_video'),(876,291,'gw_go_portfolio_lightbox_audio_type','soundcloud_audio'),(877,319,'_edit_last','1'),(878,319,'_edit_lock','1547128142:1'),(879,320,'_wp_attached_file','2014/08/The-Cloisters-Boca-Raton.jpg'),(880,320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1296;s:6:\"height\";i:968;s:4:\"file\";s:36:\"2014/08/The-Cloisters-Boca-Raton.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"The-Cloisters-Boca-Raton-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"The-Cloisters-Boca-Raton-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"The-Cloisters-Boca-Raton-1024x764.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:764;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"The-Cloisters-Boca-Raton-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"The-Cloisters-Boca-Raton-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:36:\"The-Cloisters-Boca-Raton-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"The-Cloisters-Boca-Raton-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:37:\"The-Cloisters-Boca-Raton-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 4\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1350287631;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.85\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";}}'),(881,319,'_thumbnail_id','320'),(882,319,'project_location',''),(883,319,'featured',''),(884,319,'latitude',''),(885,319,'longitude',''),(886,319,'gw_go_portfolio_thumb_type','image'),(887,319,'gw_go_portfolio_thumb_video_type','youtube_video'),(888,319,'gw_go_portfolio_thumb_audio_type','soundcloud_audio'),(889,319,'gw_go_portfolio_lighbox_type','image'),(890,319,'gw_go_portfolio_lightbox_video_type','youtube_video'),(891,319,'gw_go_portfolio_lightbox_audio_type','soundcloud_audio'),(892,321,'_edit_last','1'),(893,321,'_edit_lock','1618381554:1'),(894,322,'_wp_attached_file','2014/08/SW-Buddist-Temple-St.Pete_.jpg'),(895,322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2448;s:6:\"height\";i:3264;s:4:\"file\";s:38:\"2014/08/SW-Buddist-Temple-St.Pete_.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"SW-Buddist-Temple-St.Pete_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"SW-Buddist-Temple-St.Pete_-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"SW-Buddist-Temple-St.Pete_-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"SW-Buddist-Temple-St.Pete_-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:38:\"SW-Buddist-Temple-St.Pete_-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:38:\"SW-Buddist-Temple-St.Pete_-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"SW-Buddist-Temple-St.Pete_-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:39:\"SW-Buddist-Temple-St.Pete_-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.3999999999999999;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1393915531;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.12\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";}}'),(951,337,'_wp_attached_file','2014/08/SW-Buddist-Temple-St.Pete_1.jpg'),(897,321,'project_location',''),(898,321,'featured',''),(899,321,'latitude',''),(900,321,'longitude',''),(901,321,'gw_go_portfolio_thumb_type','image'),(902,321,'gw_go_portfolio_thumb_video_type','youtube_video'),(903,321,'gw_go_portfolio_thumb_audio_type','soundcloud_audio'),(904,321,'gw_go_portfolio_lighbox_type','image'),(905,321,'gw_go_portfolio_lightbox_video_type','youtube_video'),(906,321,'gw_go_portfolio_lightbox_audio_type','soundcloud_audio'),(957,338,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:662;s:4:\"file\";s:23:\"2014/06/DHOI-Tampa1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"DHOI-Tampa1-150x150.jpg\";s:5:\"width\";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:\"DHOI-Tampa1-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"DHOI-Tampa1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"DHOI-Tampa1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"DHOI-Tampa1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"DHOI-Tampa1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"DHOI-Tampa1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:7.0999999999999996;s:6:\"credit\";s:6:\"??????\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1400161525;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";}}'),(909,324,'_wp_attached_file','2014/08/UT-Athletic-Bldg-Tampa.jpg'),(910,324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:968;s:6:\"height\";i:1296;s:4:\"file\";s:34:\"2014/08/UT-Athletic-Bldg-Tampa.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"UT-Athletic-Bldg-Tampa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"UT-Athletic-Bldg-Tampa-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa-764x1024.jpg\";s:5:\"width\";i:764;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"UT-Athletic-Bldg-Tampa-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"UT-Athletic-Bldg-Tampa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"UT-Athletic-Bldg-Tampa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"UT-Athletic-Bldg-Tampa-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:34:\"UT-Athletic-Bldg-Tampa-968x576.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 4\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1343312284;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.85\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(931,332,'_wp_attached_file','2014/08/UT-Brevard-Hall-Tampa.jpg'),(932,332,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:33:\"2014/08/UT-Brevard-Hall-Tampa.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"UT-Brevard-Hall-Tampa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"UT-Brevard-Hall-Tampa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"UT-Brevard-Hall-Tampa-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"UT-Brevard-Hall-Tampa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"UT-Brevard-Hall-Tampa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"UT-Brevard-Hall-Tampa-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:34:\"UT-Brevard-Hall-Tampa-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1399901473;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(934,333,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:552;s:4:\"file\";s:46:\"2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"UT-R.K.-Bailey-Art-Studios-Tampa-1-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:44:\"UT-R.K.-Bailey-Art-Studios-Tampa-1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:46:\"UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:46:\"UT-R.K.-Bailey-Art-Studios-Tampa-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:46:\"UT-R.K.-Bailey-Art-Studios-Tampa-1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:9;s:6:\"credit\";s:6:\"??????\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1399901653;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";}}'),(4171,899,'_edit_lock','1547045367:1'),(4172,872,'_edit_lock','1547045432:1'),(4173,902,'_wp_attached_file','2019/01/Urso1.jpg'),(4174,902,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:500;s:4:\"file\";s:17:\"2019/01/Urso1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Urso1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Urso1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"Urso1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"Urso1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:17:\"Urso1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"Urso1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;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:\"\";}}'),(927,330,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:968;s:6:\"height\";i:1296;s:4:\"file\";s:35:\"2014/08/UT-Athletic-Bldg-Tampa1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa1-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"UT-Athletic-Bldg-Tampa1-764x1024.jpg\";s:5:\"width\";i:764;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"UT-Athletic-Bldg-Tampa1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa1-968x576.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 4\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1343312284;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.85\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(933,333,'_wp_attached_file','2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg'),(926,330,'_wp_attached_file','2014/08/UT-Athletic-Bldg-Tampa1.jpg'),(924,329,'_edit_last','1'),(925,329,'_edit_lock','1547128123:1'),(961,339,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:634;s:4:\"file\";s:31:\"2014/08/UT-Schoomaker-ROTCA.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"UT-Schoomaker-ROTCA-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"UT-Schoomaker-ROTCA-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"UT-Schoomaker-ROTCA-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"UT-Schoomaker-ROTCA-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"UT-Schoomaker-ROTCA-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"UT-Schoomaker-ROTCA-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:32:\"UT-Schoomaker-ROTCA-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:9;s:6:\"credit\";s:6:\"??????\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1399901236;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";}}'),(937,335,'_wp_attached_file','2014/08/UT-Sports-Complex-Tampa.jpg'),(938,335,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:637;s:4:\"file\";s:35:\"2014/08/UT-Sports-Complex-Tampa.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"UT-Sports-Complex-Tampa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"UT-Sports-Complex-Tampa-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"UT-Sports-Complex-Tampa-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"UT-Sports-Complex-Tampa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"UT-Sports-Complex-Tampa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"UT-Sports-Complex-Tampa-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"UT-Sports-Complex-Tampa-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:7.0999999999999996;s:6:\"credit\";s:6:\"??????\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1399902027;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";}}'),(939,336,'_wp_attached_file','2014/08/UT-Sykes-Chapel-Tampa.jpg'),(940,336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:33:\"2014/08/UT-Sykes-Chapel-Tampa.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"UT-Sykes-Chapel-Tampa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"UT-Sykes-Chapel-Tampa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"UT-Sykes-Chapel-Tampa-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"UT-Sykes-Chapel-Tampa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"UT-Sykes-Chapel-Tampa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"UT-Sykes-Chapel-Tampa-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:34:\"UT-Sykes-Chapel-Tampa-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996;s:6:\"credit\";s:6:\"??????\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1399901862;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(941,329,'project_location','1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA'),(942,329,'featured',''),(943,329,'latitude',''),(944,329,'longitude',''),(945,329,'gw_go_portfolio_thumb_type','image'),(946,329,'gw_go_portfolio_thumb_video_type','youtube_video'),(947,329,'gw_go_portfolio_thumb_audio_type','soundcloud_audio'),(948,329,'gw_go_portfolio_lighbox_type','image'),(949,329,'gw_go_portfolio_lightbox_video_type','youtube_video'),(950,329,'gw_go_portfolio_lightbox_audio_type','soundcloud_audio'),(952,337,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:1024;s:4:\"file\";s:39:\"2014/08/SW-Buddist-Temple-St.Pete_1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"SW-Buddist-Temple-St.Pete_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"SW-Buddist-Temple-St.Pete_1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"SW-Buddist-Temple-St.Pete_1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:39:\"SW-Buddist-Temple-St.Pete_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:39:\"SW-Buddist-Temple-St.Pete_1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"SW-Buddist-Temple-St.Pete_1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:39:\"SW-Buddist-Temple-St.Pete_1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.3999999999999999;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1393915531;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.12\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";}}'),(953,321,'_thumbnail_id','337'),(958,69,'_thumbnail_id','338'),(960,339,'_wp_attached_file','2014/08/UT-Schoomaker-ROTCA.jpg'),(975,343,'_edit_last','1'),(976,343,'_edit_lock','1407744482:1'),(977,343,'_thumbnail_id','337'),(978,343,'_visibility','visible'),(979,343,'_stock_status','instock'),(980,343,'total_sales','0'),(981,343,'_downloadable','no'),(982,343,'_virtual','no'),(983,343,'_regular_price',''),(984,343,'_sale_price',''),(985,343,'_purchase_note',''),(986,343,'_featured','no'),(987,343,'_weight',''),(988,343,'_length',''),(989,343,'_width',''),(990,343,'_height',''),(991,343,'_sku',''),(992,343,'_product_attributes','a:0:{}'),(993,343,'_sale_price_dates_from',''),(994,343,'_sale_price_dates_to',''),(995,343,'_price',''),(996,343,'_sold_individually',''),(997,343,'_manage_stock','no'),(998,343,'_backorders','no'),(999,343,'_stock',''),(1000,343,'_product_image_gallery',''),(1001,344,'_edit_last','1'),(1002,344,'_edit_lock','1407427239:1'),(1003,344,'_thumbnail_id','333'),(1004,344,'_visibility','visible'),(1005,344,'_stock_status','instock'),(1006,344,'total_sales','0'),(1007,344,'_downloadable','no'),(1008,344,'_virtual','no'),(1009,344,'_regular_price',''),(1010,344,'_sale_price',''),(1011,344,'_purchase_note',''),(1012,344,'_featured','yes'),(1013,344,'_weight',''),(1014,344,'_length',''),(1015,344,'_width',''),(1016,344,'_height',''),(1017,344,'_sku',''),(1018,344,'_product_attributes','a:0:{}'),(1019,344,'_sale_price_dates_from',''),(1020,344,'_sale_price_dates_to',''),(1021,344,'_price',''),(1022,344,'_sold_individually',''),(1023,344,'_manage_stock','no'),(1024,344,'_backorders','no'),(1025,344,'_stock',''),(1026,344,'_product_image_gallery',''),(1027,345,'_edit_last','1'),(1028,345,'_edit_lock','1407771982:1'),(1029,345,'_thumbnail_id','332'),(1030,345,'_visibility','visible'),(1031,345,'_stock_status','instock'),(1032,345,'total_sales','0'),(1033,345,'_downloadable','no'),(1034,345,'_virtual','no'),(1035,345,'_regular_price',''),(1036,345,'_sale_price',''),(1037,345,'_purchase_note',''),(1038,345,'_featured','yes'),(1039,345,'_weight',''),(1040,345,'_length',''),(1041,345,'_width',''),(1042,345,'_height',''),(1043,345,'_sku',''),(1044,345,'_product_attributes','a:0:{}'),(1045,345,'_sale_price_dates_from',''),(1046,345,'_sale_price_dates_to',''),(1047,345,'_price',''),(1048,345,'_sold_individually',''),(1049,345,'_manage_stock','no'),(1050,345,'_backorders','no'),(1051,345,'_stock',''),(1052,345,'_product_image_gallery',''),(1053,346,'_edit_last','1'),(1054,346,'_edit_lock','1407744863:1'),(1055,346,'_thumbnail_id','324'),(1056,346,'_visibility','visible'),(1057,346,'_stock_status','instock'),(1058,346,'total_sales','0'),(1059,346,'_downloadable','no'),(1060,346,'_virtual','no'),(1061,346,'_regular_price',''),(1062,346,'_sale_price',''),(1063,346,'_purchase_note',''),(1064,346,'_featured','yes'),(1065,346,'_weight',''),(1066,346,'_length',''),(1067,346,'_width',''),(1068,346,'_height',''),(1069,346,'_sku',''),(1070,346,'_product_attributes','a:0:{}'),(1071,346,'_sale_price_dates_from',''),(1072,346,'_sale_price_dates_to',''),(1073,346,'_price',''),(1074,346,'_sold_individually',''),(1075,346,'_manage_stock','no'),(1076,346,'_backorders','no'),(1077,346,'_stock',''),(1078,346,'_product_image_gallery','381,379,378'),(1079,347,'_edit_last','1'),(1080,347,'_edit_lock','1409062849:1'),(1223,382,'_wp_attached_file','2014/08/product-img1.png'),(1082,347,'_visibility','visible'),(1083,347,'_stock_status','instock'),(1084,347,'total_sales','0'),(1085,347,'_downloadable','no'),(1086,347,'_virtual','no'),(1087,347,'_regular_price',''),(1088,347,'_sale_price',''),(1089,347,'_purchase_note',''),(1090,347,'_featured','yes'),(1091,347,'_weight',''),(1092,347,'_length',''),(1093,347,'_width',''),(1094,347,'_height',''),(1095,347,'_sku',''),(1096,347,'_product_attributes','a:0:{}'),(1097,347,'_sale_price_dates_from',''),(1098,347,'_sale_price_dates_to',''),(1099,347,'_price',''),(1100,347,'_sold_individually',''),(1101,347,'_manage_stock','no'),(1102,347,'_backorders','no'),(1103,347,'_stock',''),(1104,347,'_product_image_gallery','382,381,353'),(1114,349,'_wp_attached_file','2014/08/closers.png'),(1115,349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:152;s:4:\"file\";s:19:\"2014/08/closers.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"closers-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"closers-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"closers-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(1116,350,'_wp_attached_file','2014/08/electric.png'),(1117,350,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:152;s:4:\"file\";s:20:\"2014/08/electric.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"electric-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"electric-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"electric-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(1118,351,'_wp_attached_file','2014/08/exit-devices.png'),(1119,351,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:152;s:4:\"file\";s:24:\"2014/08/exit-devices.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"exit-devices-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"exit-devices-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"exit-devices-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(1120,352,'_wp_attached_file','2014/08/flat-goods.png'),(1121,352,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:152;s:4:\"file\";s:22:\"2014/08/flat-goods.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"flat-goods-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"flat-goods-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"flat-goods-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(1122,353,'_wp_attached_file','2014/08/hinges.png'),(1123,353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:152;s:4:\"file\";s:18:\"2014/08/hinges.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"hinges-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"hinges-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"hinges-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(1124,354,'_wp_attached_file','2014/08/locks.png'),(1125,354,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:152;s:4:\"file\";s:17:\"2014/08/locks.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"locks-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"locks-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"locks-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(1126,355,'_wp_attached_file','2014/08/overhead-stops.png'),(1127,355,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:230;s:6:\"height\";i:152;s:4:\"file\";s:26:\"2014/08/overhead-stops.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:\"\";}}'),(1128,356,'_wp_attached_file','2014/08/threshold.png'),(1129,356,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:152;s:4:\"file\";s:21:\"2014/08/threshold.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"threshold-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"threshold-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"threshold-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(1130,357,'_edit_last','1'),(1131,357,'_edit_lock','1541506542:1'),(1279,399,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:987;s:6:\"height\";i:768;s:4:\"file\";s:24:\"2014/08/metal-shop-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"metal-shop-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"metal-shop-2-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"metal-shop-2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"metal-shop-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"metal-shop-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"metal-shop-2-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"metal-shop-2-987x576.jpg\";s:5:\"width\";i:987;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:3.5;s:6:\"credit\";s:6:\"??????\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1400148509;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(1280,400,'_wp_attached_file','2014/08/metal-shop-3.jpg'),(1272,398,'_wp_attached_file','2014/08/metal-shop-1.jpg'),(1281,400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:24:\"2014/08/metal-shop-3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"metal-shop-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"metal-shop-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"metal-shop-3-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"metal-shop-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"metal-shop-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"metal-shop-3-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"metal-shop-3-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4;s:6:\"credit\";s:6:\"??????\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1400149821;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(1282,401,'_wp_attached_file','2014/08/metal-shop-4.jpg'),(1283,401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:711;s:4:\"file\";s:24:\"2014/08/metal-shop-4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"metal-shop-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"metal-shop-4-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"metal-shop-4-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"metal-shop-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"metal-shop-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"metal-shop-4-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"metal-shop-4-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4.5;s:6:\"credit\";s:6:\"??????\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1400164127;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(1284,402,'_wp_attached_file','2014/08/metal-shop-5.jpg'),(1259,329,'project_address','1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA'),(1260,392,'_wp_attached_file','2014/08/wood-shop-1.jpg'),(1261,392,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:23:\"2014/08/wood-shop-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"wood-shop-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"wood-shop-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"wood-shop-1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"wood-shop-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"wood-shop-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"wood-shop-1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"wood-shop-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:3.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"DSC-P150\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1192786725;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"13.7\";s:3:\"iso\";s:3:\"120\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(1194,371,'_edit_last','1'),(1195,371,'_edit_lock','1541508747:1'),(1207,374,'_wp_page_template','default'),(4209,952,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1350;s:6:\"height\";i:900;s:4:\"file\";s:23:\"2019/01/corp-ctr3-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"corp-ctr3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"corp-ctr3-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"corp-ctr3-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"corp-ctr3-1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"corp-ctr3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"corp-ctr3-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"corp-ctr3-1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"corp-ctr3-1-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;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:\"\";}}'),(4208,952,'_wp_attached_file','2019/01/corp-ctr3-1.jpg'),(4206,951,'_edit_last','1'),(4207,951,'_edit_lock','1547387203:1'),(1206,374,'_edit_lock','1547385799:1'),(1205,374,'_edit_last','1'),(1290,403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:23:\"2014/08/warehouse-3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"warehouse-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"warehouse-3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"warehouse-3-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"warehouse-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"warehouse-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"warehouse-3-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"warehouse-3-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"DSC-P150\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1189780549;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"7.9\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";}}'),(1291,376,'_thumbnail_id','403'),(1292,404,'_wp_attached_file','2014/08/warehouse-1.jpg'),(1293,404,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:23:\"2014/08/warehouse-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"warehouse-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"warehouse-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"warehouse-1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"warehouse-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"warehouse-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"warehouse-1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"warehouse-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:41:\"KODAK EASYSHARE ZD710 ZOOM DIGITAL CAMERA\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1245422930;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"6.3\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(1294,405,'_wp_attached_file','2014/08/warehouse-2.jpg'),(1295,405,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:23:\"2014/08/warehouse-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"warehouse-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"warehouse-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"warehouse-2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"warehouse-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"warehouse-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"warehouse-2-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"warehouse-2-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"FinePix F601 ZOOM\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1175027736;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"8.3\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.071428571428571\";s:5:\"title\";s:0:\"\";}}'),(1219,381,'_wp_attached_file','2014/08/product_pic8.png'),(1220,381,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:152;s:4:\"file\";s:24:\"2014/08/product_pic8.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"product_pic8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"product_pic8-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"product_pic8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(1221,347,'post_views_count','52'),(1222,344,'post_views_count','22'),(1224,382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:282;s:6:\"height\";i:318;s:4:\"file\";s:24:\"2014/08/product-img1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"product-img1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"product-img1-266x300.png\";s:5:\"width\";i:266;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"product-img1-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"product-img1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"product-img1-282x300.png\";s:5:\"width\";i:282;s:6:\"height\";i:300;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:\"\";}}'),(1225,347,'_thumbnail_id','382'),(1226,347,'product_short_description','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.'),(1227,347,'product_specification','Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source.'),(1228,347,'product_shipping_information','The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.'),(1229,346,'post_views_count','20'),(1230,343,'post_views_count','10'),(1240,346,'product_short_description','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.'),(1241,346,'product_specification','It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.'),(1242,346,'product_shipping_information','It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.'),(1243,345,'post_views_count','11'),(1244,345,'product_short_description','The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.'),(1245,345,'product_specification','Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.'),(1246,345,'product_shipping_information','Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.'),(1256,391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:814;s:6:\"height\";i:768;s:4:\"file\";s:23:\"2014/08/wood-shop-5.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"wood-shop-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"wood-shop-5-300x283.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"wood-shop-5-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"wood-shop-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"wood-shop-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"wood-shop-5-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:23:\"wood-shop-5-814x576.jpg\";s:5:\"width\";i:814;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4;s:6:\"credit\";s:6:\"??????\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1400160710;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(1257,261,'_thumbnail_id','391'),(1262,393,'_wp_attached_file','2014/08/wood-shop-2.jpg'),(1263,393,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:23:\"2014/08/wood-shop-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"wood-shop-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"wood-shop-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"wood-shop-2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"wood-shop-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"wood-shop-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"wood-shop-2-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"wood-shop-2-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:3.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"DSC-P150\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1192786856;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"12.1\";s:3:\"iso\";s:3:\"120\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(1264,394,'_wp_attached_file','2014/08/wood-shop-3.jpg'),(1265,394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:23:\"2014/08/wood-shop-3.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"wood-shop-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"wood-shop-3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"wood-shop-3-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"wood-shop-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"wood-shop-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"wood-shop-3-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"wood-shop-3-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:3.2000000000000002;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"DSC-P150\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1192787156;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"9.2\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(1266,395,'_wp_attached_file','2014/08/wood-shop-4.jpg'),(1267,395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2014/08/wood-shop-4.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"wood-shop-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"wood-shop-4-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"wood-shop-4-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"wood-shop-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"wood-shop-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"wood-shop-4-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"wood-shop-4-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:3.5;s:6:\"credit\";s:6:\"??????\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1400150231;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(1268,396,'_wp_attached_file','2014/08/wood-shop-6.jpg'),(1269,396,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:661;s:4:\"file\";s:23:\"2014/08/wood-shop-6.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"wood-shop-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"wood-shop-6-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"wood-shop-6-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"wood-shop-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"wood-shop-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"wood-shop-6-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"wood-shop-6-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4;s:6:\"credit\";s:6:\"??????\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1400161111;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(1270,397,'_wp_attached_file','2014/08/wood-shop-7.jpg'),(1271,397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:712;s:4:\"file\";s:23:\"2014/08/wood-shop-7.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"wood-shop-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"wood-shop-7-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"wood-shop-7-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"wood-shop-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"wood-shop-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"wood-shop-7-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:24:\"wood-shop-7-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4;s:6:\"credit\";s:6:\"??????\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1400161135;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(1273,398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:24:\"2014/08/metal-shop-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"metal-shop-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"metal-shop-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"metal-shop-1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"metal-shop-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"metal-shop-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"metal-shop-1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"metal-shop-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"DSC-P150\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1239791929;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"7.9\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";}}'),(1274,357,'_thumbnail_id','398'),(1285,402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:765;s:4:\"file\";s:24:\"2014/08/metal-shop-5.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"metal-shop-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"metal-shop-5-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"metal-shop-5-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"metal-shop-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"metal-shop-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"metal-shop-5-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"metal-shop-5-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:4.5;s:6:\"credit\";s:6:\"??????\";s:6:\"camera\";s:19:\"Canon EOS REBEL T3i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1400164174;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";}}'),(1278,399,'_wp_attached_file','2014/08/metal-shop-2.jpg'),(1289,403,'_wp_attached_file','2014/08/warehouse-3.jpg'),(1296,406,'_wp_attached_file','2014/08/UT-Athletic-Bldg-Tampa2.jpg'),(1297,406,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:968;s:6:\"height\";i:1296;s:4:\"file\";s:35:\"2014/08/UT-Athletic-Bldg-Tampa2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa2-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"UT-Athletic-Bldg-Tampa2-764x1024.jpg\";s:5:\"width\";i:764;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"UT-Athletic-Bldg-Tampa2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa2-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa2-968x576.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 4\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1343312284;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.85\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(1298,407,'_edit_last','1'),(1299,407,'_edit_lock','1618395633:1'),(1300,407,'_wp_page_template','page-templates/product.php'),(4205,950,'featured','1'),(4204,950,'project_address',''),(4203,950,'_thumbnail_id','878'),(4202,950,'_edit_lock','1618293683:1'),(4201,950,'_edit_last','1'),(1319,410,'_sale_price',''),(1320,410,'_purchase_note',''),(1321,410,'_featured','no'),(1322,410,'_weight',''),(1323,410,'_length',''),(1324,410,'_width',''),(1325,410,'_height',''),(1326,410,'_sku',''),(1327,410,'_product_attributes','a:0:{}'),(1328,410,'_sale_price_dates_from',''),(1329,410,'_sale_price_dates_to',''),(1330,410,'_price',''),(1331,410,'_sold_individually',''),(1332,410,'_manage_stock','no'),(1333,410,'_backorders','no'),(1334,410,'_stock',''),(1335,410,'_product_image_gallery',''),(1336,410,'product_short_description','DHOI maintains a full line of wood doors in 5 ply and 7 ply. \r\nOur stock doors are available in a variety of cores, in heights up to 9\'. \r\nWe maintain a full inventoryof 20 min, 45 min and 90 min fire rated doors. \r\nAll of the doors we carry are readily available in Birch, Red Oak, White Maple, \r\nCherry and Mahogany.'),(1337,410,'product_specification',''),(1338,410,'product_shipping_information',''),(1339,410,'post_views_count','2'),(1340,415,'_edit_last','1'),(1341,415,'_edit_lock','1407932032:1'),(1342,415,'_thumbnail_id','395'),(1343,415,'_visibility','visible'),(1344,415,'_stock_status','instock'),(1345,415,'total_sales','0'),(1346,415,'_downloadable','no'),(1347,415,'_virtual','no'),(1348,415,'_regular_price',''),(1349,415,'_sale_price',''),(1350,415,'_purchase_note',''),(1351,415,'_featured','no'),(1352,415,'_weight',''),(1353,415,'_length',''),(1354,415,'_width',''),(1355,415,'_height',''),(1356,415,'_sku',''),(1357,415,'_product_attributes','a:0:{}'),(1358,415,'_sale_price_dates_from',''),(1359,415,'_sale_price_dates_to',''),(1360,415,'_price',''),(1361,415,'_sold_individually',''),(1362,415,'_manage_stock','no'),(1363,415,'_backorders','no'),(1364,415,'_stock',''),(1365,415,'_product_image_gallery',''),(1366,415,'product_short_description',''),(1367,415,'product_specification',''),(1368,415,'product_shipping_information',''),(1369,416,'_edit_last','1'),(1370,416,'_edit_lock','1407932219:1'),(1371,416,'_thumbnail_id','392'),(1372,416,'_visibility','visible'),(1373,416,'_stock_status','instock'),(1374,416,'total_sales','0'),(1375,416,'_downloadable','no'),(1376,416,'_virtual','no'),(1377,416,'_regular_price',''),(1378,416,'_sale_price',''),(1379,416,'_purchase_note',''),(1380,416,'_featured','no'),(1381,416,'_weight',''),(1382,416,'_length',''),(1383,416,'_width',''),(1384,416,'_height',''),(1385,416,'_sku',''),(1386,416,'_product_attributes','a:0:{}'),(1387,416,'_sale_price_dates_from',''),(1388,416,'_sale_price_dates_to',''),(1389,416,'_price',''),(1390,416,'_sold_individually',''),(1391,416,'_manage_stock','no'),(1392,416,'_backorders','no'),(1393,416,'_stock',''),(1394,416,'_product_image_gallery',''),(1395,416,'product_short_description',''),(1396,416,'product_specification',''),(1397,416,'product_shipping_information',''),(1398,417,'_edit_last','1'),(1399,417,'_edit_lock','1407932124:1'),(1400,417,'_thumbnail_id','395'),(1401,417,'_visibility','visible'),(1402,417,'_stock_status','instock'),(1403,417,'total_sales','0'),(1404,417,'_downloadable','no'),(1405,417,'_virtual','no'),(1406,417,'_regular_price',''),(1407,417,'_sale_price',''),(1408,417,'_purchase_note',''),(1409,417,'_featured','no'),(1410,417,'_weight',''),(1411,417,'_length',''),(1412,417,'_width',''),(1413,417,'_height',''),(1414,417,'_sku',''),(1415,417,'_product_attributes','a:0:{}'),(1416,417,'_sale_price_dates_from',''),(1417,417,'_sale_price_dates_to',''),(1418,417,'_price',''),(1419,417,'_sold_individually',''),(1420,417,'_manage_stock','no'),(1421,417,'_backorders','no'),(1422,417,'_stock',''),(1423,417,'_product_image_gallery',''),(1424,417,'product_short_description',''),(1425,417,'product_specification',''),(1426,417,'product_shipping_information',''),(1427,418,'_edit_last','1'),(1428,418,'_edit_lock','1407932162:1'),(1429,418,'_thumbnail_id','398'),(1430,418,'_visibility','visible'),(1431,418,'_stock_status','instock'),(1432,418,'total_sales','0'),(1433,418,'_downloadable','no'),(1434,418,'_virtual','no'),(1435,418,'_regular_price',''),(1436,418,'_sale_price',''),(1437,418,'_purchase_note',''),(1438,418,'_featured','no'),(1439,418,'_weight',''),(1440,418,'_length',''),(1441,418,'_width',''),(1442,418,'_height',''),(1443,418,'_sku',''),(1444,418,'_product_attributes','a:0:{}'),(1445,418,'_sale_price_dates_from',''),(1446,418,'_sale_price_dates_to',''),(1447,418,'_price',''),(1448,418,'_sold_individually',''),(1449,418,'_manage_stock','no'),(1450,418,'_backorders','no'),(1451,418,'_stock',''),(1452,418,'_product_image_gallery',''),(1453,418,'product_short_description',''),(1454,418,'product_specification',''),(1455,418,'product_shipping_information',''),(1456,419,'_edit_last','1'),(1457,419,'_edit_lock','1407932204:1'),(1458,419,'_thumbnail_id','400'),(1459,419,'_visibility','visible'),(1460,419,'_stock_status','instock'),(1461,419,'total_sales','0'),(1462,419,'_downloadable','no'),(1463,419,'_virtual','no'),(1464,419,'_regular_price',''),(1465,419,'_sale_price',''),(1466,419,'_purchase_note',''),(1467,419,'_featured','no'),(1468,419,'_weight',''),(1469,419,'_length',''),(1470,419,'_width',''),(1471,419,'_height',''),(1472,419,'_sku',''),(1473,419,'_product_attributes','a:0:{}'),(1474,419,'_sale_price_dates_from',''),(1475,419,'_sale_price_dates_to',''),(1476,419,'_price',''),(1477,419,'_sold_individually',''),(1478,419,'_manage_stock','no'),(1479,419,'_backorders','no'),(1480,419,'_stock',''),(1481,419,'_product_image_gallery',''),(1482,419,'product_short_description',''),(1483,419,'product_specification',''),(1484,419,'product_shipping_information',''),(1485,420,'_edit_last','1'),(1486,420,'_edit_lock','1407932240:1'),(1487,420,'_thumbnail_id','398'),(1488,420,'_visibility','visible'),(1489,420,'_stock_status','instock'),(1490,420,'total_sales','0'),(1491,420,'_downloadable','no'),(1492,420,'_virtual','no'),(1493,420,'_regular_price',''),(1494,420,'_sale_price',''),(1495,420,'_purchase_note',''),(1496,420,'_featured','no'),(1497,420,'_weight',''),(1498,420,'_length',''),(1499,420,'_width',''),(1500,420,'_height',''),(1501,420,'_sku',''),(1502,420,'_product_attributes','a:0:{}'),(1503,420,'_sale_price_dates_from',''),(1504,420,'_sale_price_dates_to',''),(1505,420,'_price',''),(1506,420,'_sold_individually',''),(1507,420,'_manage_stock','no'),(1508,420,'_backorders','no'),(1509,420,'_stock',''),(1510,420,'_product_image_gallery',''),(1511,420,'product_short_description',''),(1512,420,'product_specification',''),(1513,420,'product_shipping_information',''),(1514,421,'_edit_last','1'),(1515,421,'_edit_lock','1407932418:1'),(1516,421,'_thumbnail_id','395'),(1517,421,'_visibility','visible'),(1518,421,'_stock_status','instock'),(1519,421,'total_sales','0'),(1520,421,'_downloadable','no'),(1521,421,'_virtual','no'),(1522,421,'_regular_price',''),(1523,421,'_sale_price',''),(1524,421,'_purchase_note',''),(1525,421,'_featured','no'),(1526,421,'_weight',''),(1527,421,'_length',''),(1528,421,'_width',''),(1529,421,'_height',''),(1530,421,'_sku',''),(1531,421,'_product_attributes','a:0:{}'),(1532,421,'_sale_price_dates_from',''),(1533,421,'_sale_price_dates_to',''),(1534,421,'_price',''),(1535,421,'_sold_individually',''),(1536,421,'_manage_stock','no'),(1537,421,'_backorders','no'),(1538,421,'_stock',''),(1539,421,'_product_image_gallery',''),(1540,421,'product_short_description',''),(1541,421,'product_specification',''),(1542,421,'product_shipping_information',''),(1543,422,'_edit_last','1'),(1544,422,'_edit_lock','1407932319:1'),(1545,422,'_thumbnail_id','400'),(1546,422,'_visibility','visible'),(1547,422,'_stock_status','instock'),(1548,422,'total_sales','0'),(1549,422,'_downloadable','no'),(1550,422,'_virtual','no'),(1551,422,'_regular_price',''),(1552,422,'_sale_price',''),(1553,422,'_purchase_note',''),(1554,422,'_featured','no'),(1555,422,'_weight',''),(1556,422,'_length',''),(1557,422,'_width',''),(1558,422,'_height',''),(1559,422,'_sku',''),(1560,422,'_product_attributes','a:0:{}'),(1561,422,'_sale_price_dates_from',''),(1562,422,'_sale_price_dates_to',''),(1563,422,'_price',''),(1564,422,'_sold_individually',''),(1565,422,'_manage_stock','no'),(1566,422,'_backorders','no'),(1567,422,'_stock',''),(1568,422,'_product_image_gallery',''),(1569,422,'product_short_description',''),(1570,422,'product_specification',''),(1571,422,'product_shipping_information',''),(1572,423,'_edit_last','1'),(1573,423,'_edit_lock','1407933172:1'),(1574,423,'_thumbnail_id','400'),(1575,423,'_visibility','visible'),(1576,423,'_stock_status','instock'),(1577,423,'total_sales','0'),(1578,423,'_downloadable','no'),(1579,423,'_virtual','no'),(1580,423,'_regular_price',''),(1581,423,'_sale_price',''),(1582,423,'_purchase_note',''),(1583,423,'_featured','no'),(1584,423,'_weight',''),(1585,423,'_length',''),(1586,423,'_width',''),(1587,423,'_height',''),(1588,423,'_sku',''),(1589,423,'_product_attributes','a:0:{}'),(1590,423,'_sale_price_dates_from',''),(1591,423,'_sale_price_dates_to',''),(1592,423,'_price',''),(1593,423,'_sold_individually',''),(1594,423,'_manage_stock','no'),(1595,423,'_backorders','no'),(1596,423,'_stock',''),(1597,423,'_product_image_gallery',''),(1598,423,'product_short_description',''),(1599,423,'product_specification',''),(1600,423,'product_shipping_information',''),(1601,415,'post_views_count','1'),(1602,424,'_edit_last','1'),(1603,424,'_edit_lock','1407932729:1'),(1604,424,'_thumbnail_id','395'),(1605,424,'_visibility','visible'),(1606,424,'_stock_status','instock'),(1607,424,'total_sales','0'),(1608,424,'_downloadable','no'),(1609,424,'_virtual','no'),(1610,424,'_regular_price',''),(1611,424,'_sale_price',''),(1612,424,'_purchase_note',''),(1613,424,'_featured','no'),(1614,424,'_weight',''),(1615,424,'_length',''),(1616,424,'_width',''),(1617,424,'_height',''),(1618,424,'_sku',''),(1619,424,'_product_attributes','a:0:{}'),(1620,424,'_sale_price_dates_from',''),(1621,424,'_sale_price_dates_to',''),(1622,424,'_price',''),(1623,424,'_sold_individually',''),(1624,424,'_manage_stock','no'),(1625,424,'_backorders','no'),(1626,424,'_stock',''),(1627,424,'_product_image_gallery',''),(1628,424,'product_short_description',''),(1629,424,'product_specification',''),(1630,424,'product_shipping_information',''),(1631,425,'_edit_last','1'),(1632,425,'_edit_lock','1408021384:1'),(1633,425,'_thumbnail_id','404'),(1634,425,'_visibility','visible'),(1635,425,'_stock_status','instock'),(1636,425,'total_sales','0'),(1637,425,'_downloadable','no'),(1638,425,'_virtual','no'),(1639,425,'_regular_price',''),(1640,425,'_sale_price',''),(1641,425,'_purchase_note',''),(1642,425,'_featured','no'),(1643,425,'_weight',''),(1644,425,'_length',''),(1645,425,'_width',''),(1646,425,'_height',''),(1647,425,'_sku',''),(1648,425,'_product_attributes','a:0:{}'),(1649,425,'_sale_price_dates_from',''),(1650,425,'_sale_price_dates_to',''),(1651,425,'_price',''),(1652,425,'_sold_individually',''),(1653,425,'_manage_stock','no'),(1654,425,'_backorders','no'),(1655,425,'_stock',''),(1656,425,'_product_image_gallery',''),(1657,425,'product_short_description',''),(1658,425,'product_specification',''),(1659,425,'product_shipping_information',''),(1660,425,'post_views_count','8'),(1661,429,'_edit_last','1'),(1662,429,'_edit_lock','1408021405:1'),(1663,429,'_visibility','visible'),(1664,429,'_stock_status','instock'),(1665,429,'total_sales','0'),(1666,429,'_downloadable','no'),(1667,429,'_virtual','no'),(1668,429,'_regular_price',''),(1669,429,'_sale_price',''),(1670,429,'_purchase_note',''),(1671,429,'_featured','no'),(1672,429,'_weight',''),(1673,429,'_length',''),(1674,429,'_width',''),(1675,429,'_height',''),(1676,429,'_sku',''),(1677,429,'_product_attributes','a:0:{}'),(1678,429,'_sale_price_dates_from',''),(1679,429,'_sale_price_dates_to',''),(1680,429,'_price',''),(1681,429,'_sold_individually',''),(1682,429,'_manage_stock','no'),(1683,429,'_backorders','no'),(1684,429,'_stock',''),(1685,429,'_product_image_gallery',''),(1686,429,'product_short_description',''),(1687,429,'product_specification',''),(1688,429,'product_shipping_information',''),(1689,430,'_edit_last','1'),(1690,430,'_edit_lock','1408020849:1'),(1691,430,'_visibility','visible'),(1692,430,'_stock_status','instock'),(1693,430,'total_sales','0'),(1694,430,'_downloadable','no'),(1695,430,'_virtual','no'),(1696,430,'_regular_price',''),(1697,430,'_sale_price',''),(1698,430,'_purchase_note',''),(1699,430,'_featured','no'),(1700,430,'_weight',''),(1701,430,'_length',''),(1702,430,'_width',''),(1703,430,'_height',''),(1704,430,'_sku',''),(1705,430,'_product_attributes','a:0:{}'),(1706,430,'_sale_price_dates_from',''),(1707,430,'_sale_price_dates_to',''),(1708,430,'_price',''),(1709,430,'_sold_individually',''),(1710,430,'_manage_stock','no'),(1711,430,'_backorders','no'),(1712,430,'_stock',''),(1713,430,'_product_image_gallery',''),(1714,430,'product_short_description',''),(1715,430,'product_specification',''),(1716,430,'product_shipping_information',''),(1717,431,'_edit_last','1'),(1718,431,'_edit_lock','1408018217:1'),(1719,431,'_visibility','visible'),(1720,431,'_stock_status','instock'),(1721,431,'total_sales','0'),(1722,431,'_downloadable','no'),(1723,431,'_virtual','no'),(1724,431,'_regular_price',''),(1725,431,'_sale_price',''),(1726,431,'_purchase_note',''),(1727,431,'_featured','no'),(1728,431,'_weight',''),(1729,431,'_length',''),(1730,431,'_width',''),(1731,431,'_height',''),(1732,431,'_sku',''),(1733,431,'_product_attributes','a:0:{}'),(1734,431,'_sale_price_dates_from',''),(1735,431,'_sale_price_dates_to',''),(1736,431,'_price',''),(1737,431,'_sold_individually',''),(1738,431,'_manage_stock','no'),(1739,431,'_backorders','no'),(1740,431,'_stock',''),(1741,431,'_product_image_gallery',''),(1742,431,'product_short_description',''),(1743,431,'product_specification',''),(1744,431,'product_shipping_information',''),(1745,432,'_edit_last','1'),(1746,432,'_edit_lock','1408454565:1'),(1747,432,'_visibility','visible'),(1748,432,'_stock_status','instock'),(1749,432,'total_sales','0'),(1750,432,'_downloadable','no'),(1751,432,'_virtual','no'),(1752,432,'_regular_price',''),(1753,432,'_sale_price',''),(1754,432,'_purchase_note',''),(1755,432,'_featured','no'),(1756,432,'_weight',''),(1757,432,'_length',''),(1758,432,'_width',''),(1759,432,'_height',''),(1760,432,'_sku',''),(1761,432,'_product_attributes','a:0:{}'),(1762,432,'_sale_price_dates_from',''),(1763,432,'_sale_price_dates_to',''),(1764,432,'_price',''),(1765,432,'_sold_individually',''),(1766,432,'_manage_stock','no'),(1767,432,'_backorders','no'),(1768,432,'_stock',''),(1769,432,'_product_image_gallery',''),(1770,432,'product_short_description','<strong>Application:</strong> <br>- ANSI A8133<br>\r\n- Five knuckle<br>\r\n- Non-rising removable pin with button tip and plug<br>\r\n- With door closer use ball bearing hinge<br>\r\n- For use on medium weight doors or doors requiring medium frequency service'),(1771,432,'product_specification','<strong>Material:</strong> - Steel with Steel pin<<br>\r\n\r\n<strong>Fasteners:</strong> - All machine and all wood<br>\r\n\r\n<strong>Finishes:</strong> - US10B<br>'),(1772,432,'product_shipping_information',''),(1773,435,'_edit_last','1'),(1774,435,'_edit_lock','1408454563:1'),(1775,435,'_visibility','visible'),(1776,435,'_stock_status','instock'),(1777,435,'total_sales','0'),(1778,435,'_downloadable','no'),(1779,435,'_virtual','no'),(1780,435,'_regular_price',''),(1781,435,'_sale_price',''),(1782,435,'_purchase_note',''),(1783,435,'_featured','no'),(1784,435,'_weight',''),(1785,435,'_length',''),(1786,435,'_width',''),(1787,435,'_height',''),(1788,435,'_sku',''),(1789,435,'_product_attributes','a:0:{}'),(1790,435,'_sale_price_dates_from',''),(1791,435,'_sale_price_dates_to',''),(1792,435,'_price',''),(1793,435,'_sold_individually',''),(1794,435,'_manage_stock','no'),(1795,435,'_backorders','no'),(1796,435,'_stock',''),(1797,435,'_product_image_gallery',''),(1798,435,'product_short_description','<strong>Application:</strong> <br>- ANSI A8133<br>\r\n- Five knuckle<br>\r\n- Non-rising removable pin with button tip and plug<br>\r\n- With door closer use ball bearing hinge<br>\r\n- For use on medium weight doors or doors requiring medium frequency service'),(1799,435,'product_specification','<strong>Material:</strong> - Steel with Steel pin<<br>\r\n\r\n<strong>Fasteners:</strong> - All machine and all wood<br>\r\n\r\n<strong>Finishes:</strong> - US26<br>'),(1800,435,'product_shipping_information',''),(1801,436,'_edit_last','1'),(1802,436,'_edit_lock','1408454575:1'),(1803,436,'_visibility','visible'),(1804,436,'_stock_status','instock'),(1805,436,'total_sales','0'),(1806,436,'_downloadable','no'),(1807,436,'_virtual','no'),(1808,436,'_regular_price',''),(1809,436,'_sale_price',''),(1810,436,'_purchase_note',''),(1811,436,'_featured','no'),(1812,436,'_weight',''),(1813,436,'_length',''),(1814,436,'_width',''),(1815,436,'_height',''),(1816,436,'_sku',''),(1817,436,'_product_attributes','a:0:{}'),(1818,436,'_sale_price_dates_from',''),(1819,436,'_sale_price_dates_to',''),(1820,436,'_price',''),(1821,436,'_sold_individually',''),(1822,436,'_manage_stock','no'),(1823,436,'_backorders','no'),(1824,436,'_stock',''),(1825,436,'_product_image_gallery','525'),(1826,436,'product_short_description','<strong>Application:</strong> - ANSI A8133<br>\r\n- Five knuckle<br>\r\n- Non-rising removable pin with button tip and plug<br>\r\n- With door closer use ball bearing hinge<br>\r\n- For use on medium weight doors or doors requiring medium frequency service'),(1827,436,'product_specification','<strong>Material:</strong> - Steel with Steel pin<<br>\r\n\r\n<strong>Fasteners:</strong> - All machine and all wood<br>\r\n\r\n<strong>Finishes:</strong> - US26D<br>'),(1828,436,'product_shipping_information',''),(1829,437,'_edit_last','1'),(1830,437,'_visibility','visible'),(1831,437,'_stock_status','instock'),(1832,437,'total_sales','0'),(1833,437,'_downloadable','no'),(1834,437,'_virtual','no'),(1835,437,'_regular_price',''),(1836,437,'_sale_price',''),(1837,437,'_purchase_note',''),(1838,437,'_featured','no'),(1839,437,'_weight',''),(1840,437,'_length',''),(1841,437,'_width',''),(1842,437,'_height',''),(1843,437,'_sku',''),(1844,437,'_product_attributes','a:0:{}'),(1845,437,'_sale_price_dates_from',''),(1846,437,'_sale_price_dates_to',''),(1847,437,'_price',''),(1848,437,'_sold_individually',''),(1849,437,'_manage_stock','no'),(1850,437,'_backorders','no'),(1851,437,'_stock',''),(1852,437,'_product_image_gallery','526'),(1853,437,'product_short_description','<strong>Application:</strong><br>\r\n- ANSI A8112<br>\r\n- Five knuckle<br>\r\n- Non-rising removable pin with button tip and plug<br>\r\n- With door closer use ball bearing hinge<br>\r\n- For use on medium weight doors or doors requiring medium frequency service<br><br> \r\n<strong>Note:</strong><br>\r\n- Complies with NFPA80 requirements for use on fire rated door assemblies'),(1854,437,'product_specification','<strong>Material:</strong> - Steel with Steel pin<br>\r\n<strong>Fasteners:</strong> - All machine and all wood<br>\r\n<strong>Finishes:</strong> - US10B<br>'),(1855,437,'product_shipping_information',''),(1856,437,'_edit_lock','1408455685:1'),(1857,438,'_edit_last','1'),(1858,438,'_visibility','visible'),(1859,438,'_stock_status','instock'),(1860,438,'total_sales','0'),(1861,438,'_downloadable','no'),(1862,438,'_virtual','no'),(1863,438,'_regular_price',''),(1864,438,'_sale_price',''),(1865,438,'_purchase_note',''),(1866,438,'_featured','no'),(1867,438,'_weight',''),(1868,438,'_length',''),(1869,438,'_width',''),(1870,438,'_height',''),(1871,438,'_sku',''),(1872,438,'_product_attributes','a:0:{}'),(1873,438,'_sale_price_dates_from',''),(1874,438,'_sale_price_dates_to',''),(1875,438,'_price',''),(1876,438,'_sold_individually',''),(1877,438,'_manage_stock','no'),(1878,438,'_backorders','no'),(1879,438,'_stock',''),(1880,438,'_product_image_gallery','526'),(1881,438,'product_short_description','<strong>Application:</strong><br>\r\n- ANSI A8112<br>\r\n- Five knuckle<br>\r\n- Non-rising removable pin with button tip and plug<br>\r\n- With door closer use ball bearing hinge<br>\r\n- For use on medium weight doors or doors requiring medium frequency service<br><br> \r\n<strong>Note:</strong><br>\r\n- Complies with NFPA80 requirements for use on fire rated door assemblies'),(1882,438,'product_specification','<strong>Material:</strong> - Steel with Steel pin<br>\r\n<strong>Fasteners:</strong> - All machine and all wood<br>\r\n<strong>Finishes:</strong> - US26<br>'),(1883,438,'product_shipping_information',''),(1884,438,'_edit_lock','1408455683:1'),(1885,439,'_edit_last','1'),(1886,439,'_edit_lock','1408455682:1'),(1887,439,'_visibility','visible'),(1888,439,'_stock_status','instock'),(1889,439,'total_sales','0'),(1890,439,'_downloadable','no'),(1891,439,'_virtual','no'),(1892,439,'_regular_price',''),(1893,439,'_sale_price',''),(1894,439,'_purchase_note',''),(1895,439,'_featured','no'),(1896,439,'_weight',''),(1897,439,'_length',''),(1898,439,'_width',''),(1899,439,'_height',''),(1900,439,'_sku',''),(1901,439,'_product_attributes','a:0:{}'),(1902,439,'_sale_price_dates_from',''),(1903,439,'_sale_price_dates_to',''),(1904,439,'_price',''),(1905,439,'_sold_individually',''),(1906,439,'_manage_stock','no'),(1907,439,'_backorders','no'),(1908,439,'_stock',''),(1909,439,'_product_image_gallery','526'),(1910,439,'product_short_description','<strong>Application:</strong><br>\r\n- ANSI A8112<br>\r\n- Five knuckle<br>\r\n- Non-rising removable pin with button tip and plug<br>\r\n- With door closer use ball bearing hinge<br>\r\n- For use on medium weight doors or doors requiring medium frequency service<br><br> \r\n<strong>Note:</strong><br>\r\n- Complies with NFPA80 requirements for use on fire rated door assemblies'),(1911,439,'product_specification','<strong>Material:</strong> - Steel with Steel pin<br>\r\n<strong>Fasteners:</strong> - All machine and all wood<br>\r\n<strong>Finishes:</strong> - US26D<br>'),(1912,439,'product_shipping_information',''),(1913,440,'_edit_last','1'),(1914,440,'_edit_lock','1408455680:1'),(1915,440,'_visibility','visible'),(1916,440,'_stock_status','instock'),(1917,440,'total_sales','0'),(1918,440,'_downloadable','no'),(1919,440,'_virtual','no'),(1920,440,'_regular_price',''),(1921,440,'_sale_price',''),(1922,440,'_purchase_note',''),(1923,440,'_featured','no'),(1924,440,'_weight',''),(1925,440,'_length',''),(1926,440,'_width',''),(1927,440,'_height',''),(1928,440,'_sku',''),(1929,440,'_product_attributes','a:0:{}'),(1930,440,'_sale_price_dates_from',''),(1931,440,'_sale_price_dates_to',''),(1932,440,'_price',''),(1933,440,'_sold_individually',''),(1934,440,'_manage_stock','no'),(1935,440,'_backorders','no'),(1936,440,'_stock',''),(1937,440,'_product_image_gallery','526'),(1938,440,'product_short_description','<strong>Application:</strong><br>\r\n- ANSI A8112<br>\r\n- Five knuckle<br>\r\n- Non-rising removable pin with button tip and plug<br>\r\n- With door closer use ball bearing hinge<br>\r\n- For use on medium weight doors or doors requiring medium frequency service<br><br> \r\n<strong>Note:</strong><br>\r\n- Complies with NFPA80 requirements for use on fire rated door assemblies'),(1939,440,'product_specification','<strong>Material:</strong> - Steel with Steel pin<br>\r\n<strong>Fasteners:</strong> - All machine and all wood<br>\r\n<strong>Finishes:</strong> - US3<br>'),(1940,440,'product_shipping_information',''),(1941,441,'_edit_last','1'),(1942,441,'_edit_lock','1408456008:1'),(1943,441,'_visibility','visible'),(1944,441,'_stock_status','instock'),(1945,441,'total_sales','0'),(1946,441,'_downloadable','no'),(1947,441,'_virtual','no'),(1948,441,'_regular_price',''),(1949,441,'_sale_price',''),(1950,441,'_purchase_note',''),(1951,441,'_featured','no'),(1952,441,'_weight',''),(1953,441,'_length',''),(1954,441,'_width',''),(1955,441,'_height',''),(1956,441,'_sku',''),(1957,441,'_product_attributes','a:0:{}'),(1958,441,'_sale_price_dates_from',''),(1959,441,'_sale_price_dates_to',''),(1960,441,'_price',''),(1961,441,'_sold_individually',''),(1962,441,'_manage_stock','no'),(1963,441,'_backorders','no'),(1964,441,'_stock',''),(1965,441,'_product_image_gallery','526'),(1966,441,'product_short_description','<strong>Description:</strong><br> \r\n- ANSI A2112 (Brass)<br>\r\n- ANSI A5112 (Stainless steel)<br>\r\n- Two ball bearings<br>\r\n- Non-rising removable pin with button tip and plug<br>\r\n- For use on medium weight doors or doors requiring medium frequency service<br>\r\n- Only available in 4-1/2\" x 4-1/2\" (114 mm x 114 mm)<br>\r\n- Fasteners are AMS x 1/2 WS'),(1967,441,'product_specification','<strong>Material:</strong><br> \r\n- Brass with Stainless Steel pin ANSI A2112<br>\r\n- Stainless Steel with Stainless Steel pin ANSI A5112<br>\r\n<strong>Fasteners:</strong> - All machine and half wood<br>\r\n<strong>Finishes:</strong> - US15, US26, US26D, US32D<br>'),(1968,441,'product_shipping_information',''),(1969,442,'_edit_last','1'),(1970,442,'_edit_lock','1408455679:1'),(1971,442,'_visibility','visible'),(1972,442,'_stock_status','instock'),(1973,442,'total_sales','0'),(1974,442,'_downloadable','no'),(1975,442,'_virtual','no'),(1976,442,'_regular_price',''),(1977,442,'_sale_price',''),(1978,442,'_purchase_note',''),(1979,442,'_featured','no'),(1980,442,'_weight',''),(1981,442,'_length',''),(1982,442,'_width',''),(1983,442,'_height',''),(1984,442,'_sku',''),(1985,442,'_product_attributes','a:0:{}'),(1986,442,'_sale_price_dates_from',''),(1987,442,'_sale_price_dates_to',''),(1988,442,'_price',''),(1989,442,'_sold_individually',''),(1990,442,'_manage_stock','no'),(1991,442,'_backorders','no'),(1992,442,'_stock',''),(1993,442,'_product_image_gallery','526'),(1994,442,'product_short_description','<strong>Application:</strong><br>\r\n- ANSI A8112<br>\r\n- Five knuckle<br>\r\n- Non-rising removable pin with button tip and plug<br>\r\n- With door closer use ball bearing hinge<br>\r\n- For use on medium weight doors or doors requiring medium frequency service<br><br> \r\n<strong>Note:</strong><br>\r\n- Complies with NFPA80 requirements for use on fire rated door assemblies'),(1995,442,'product_specification','<strong>Material:</strong> - Steel with Steel pin<br>\r\n<strong>Fasteners:</strong> - All machine and all wood<br>\r\n<strong>Finishes:</strong> - USP<br>'),(1996,442,'product_shipping_information',''),(1997,443,'_edit_last','1'),(1998,443,'_edit_lock','1408456337:1'),(1999,443,'_visibility','visible'),(2000,443,'_stock_status','instock'),(2001,443,'total_sales','0'),(2002,443,'_downloadable','no'),(2003,443,'_virtual','no'),(2004,443,'_regular_price',''),(2005,443,'_sale_price',''),(2006,443,'_purchase_note',''),(2007,443,'_featured','no'),(2008,443,'_weight',''),(2009,443,'_length',''),(2010,443,'_width',''),(2011,443,'_height',''),(2012,443,'_sku',''),(2013,443,'_product_attributes','a:0:{}'),(2014,443,'_sale_price_dates_from',''),(2015,443,'_sale_price_dates_to',''),(2016,443,'_price',''),(2017,443,'_sold_individually',''),(2018,443,'_manage_stock','no'),(2019,443,'_backorders','no'),(2020,443,'_stock',''),(2021,443,'_product_image_gallery','528'),(2022,443,'product_short_description','<strong>Application:</strong><br> \r\n- For use on 1 3/4\'\' doors<br>\r\n- Recommended maximum door weight 180 lbs.<br>\r\n- For maximum versatility use all spring hinges or a combination of spring hinges and ball bearing hinges. Do not use plain bearing hinges.<br>\r\n- Full spring tension may not be required on all hinges<br>\r\n- Strong wind conditions, drafts, carpeting drag, twisted/misaligned frames, or weatherstripping on doors may require additional spring hinges.'),(2023,443,'product_specification','<strong>Material:</strong> - Steel ANSI K81071F<br>\r\n<strong>Fasteners:</strong> - All machine and all wood<br>\r\n<strong>Finishes:</strong> - USP, US3, US4, US10B, US15, US26, US26D'),(2024,443,'product_shipping_information',''),(2025,444,'_edit_last','1'),(2026,444,'_edit_lock','1408019665:1'),(2027,444,'_visibility','visible'),(2028,444,'_stock_status','instock'),(2029,444,'total_sales','0'),(2030,444,'_downloadable','no'),(2031,444,'_virtual','no'),(2032,444,'_regular_price',''),(2033,444,'_sale_price',''),(2034,444,'_purchase_note',''),(2035,444,'_featured','no'),(2036,444,'_weight',''),(2037,444,'_length',''),(2038,444,'_width',''),(2039,444,'_height',''),(2040,444,'_sku',''),(2041,444,'_product_attributes','a:0:{}'),(2042,444,'_sale_price_dates_from',''),(2043,444,'_sale_price_dates_to',''),(2044,444,'_price',''),(2045,444,'_sold_individually',''),(2046,444,'_manage_stock','no'),(2047,444,'_backorders','no'),(2048,444,'_stock',''),(2049,444,'_product_image_gallery',''),(2050,444,'product_short_description',''),(2051,444,'product_specification',''),(2052,444,'product_shipping_information',''),(2053,445,'_edit_last','1'),(2054,445,'_edit_lock','1408019704:1'),(2055,445,'_visibility','visible'),(2056,445,'_stock_status','instock'),(2057,445,'total_sales','0'),(2058,445,'_downloadable','no'),(2059,445,'_virtual','no'),(2060,445,'_regular_price',''),(2061,445,'_sale_price',''),(2062,445,'_purchase_note',''),(2063,445,'_featured','no'),(2064,445,'_weight',''),(2065,445,'_length',''),(2066,445,'_width',''),(2067,445,'_height',''),(2068,445,'_sku',''),(2069,445,'_product_attributes','a:0:{}'),(2070,445,'_sale_price_dates_from',''),(2071,445,'_sale_price_dates_to',''),(2072,445,'_price',''),(2073,445,'_sold_individually',''),(2074,445,'_manage_stock','no'),(2075,445,'_backorders','no'),(2076,445,'_stock',''),(2077,445,'_product_image_gallery',''),(2078,445,'product_short_description',''),(2079,445,'product_specification',''),(2080,445,'product_shipping_information',''),(2081,424,'post_views_count','4'),(2082,446,'_edit_last','1'),(2083,446,'_edit_lock','1408019743:1'),(2084,446,'_visibility','visible'),(2085,446,'_stock_status','instock'),(2086,446,'total_sales','0'),(2087,446,'_downloadable','no'),(2088,446,'_virtual','no'),(2089,446,'_regular_price',''),(2090,446,'_sale_price',''),(2091,446,'_purchase_note',''),(2092,446,'_featured','no'),(2093,446,'_weight',''),(2094,446,'_length',''),(2095,446,'_width',''),(2096,446,'_height',''),(2097,446,'_sku',''),(2098,446,'_product_attributes','a:0:{}'),(2099,446,'_sale_price_dates_from',''),(2100,446,'_sale_price_dates_to',''),(2101,446,'_price',''),(2102,446,'_sold_individually',''),(2103,446,'_manage_stock','no'),(2104,446,'_backorders','no'),(2105,446,'_stock',''),(2106,446,'_product_image_gallery',''),(2107,446,'product_short_description',''),(2108,446,'product_specification',''),(2109,446,'product_shipping_information',''),(2110,447,'_edit_last','1'),(2111,447,'_edit_lock','1408019767:1'),(2112,447,'_visibility','visible'),(2113,447,'_stock_status','instock'),(2114,447,'total_sales','0'),(2115,447,'_downloadable','no'),(2116,447,'_virtual','no'),(2117,447,'_regular_price',''),(2118,447,'_sale_price',''),(2119,447,'_purchase_note',''),(2120,447,'_featured','no'),(2121,447,'_weight',''),(2122,447,'_length',''),(2123,447,'_width',''),(2124,447,'_height',''),(2125,447,'_sku',''),(2126,447,'_product_attributes','a:0:{}'),(2127,447,'_sale_price_dates_from',''),(2128,447,'_sale_price_dates_to',''),(2129,447,'_price',''),(2130,447,'_sold_individually',''),(2131,447,'_manage_stock','no'),(2132,447,'_backorders','no'),(2133,447,'_stock',''),(2134,447,'_product_image_gallery',''),(2135,447,'product_short_description',''),(2136,447,'product_specification',''),(2137,447,'product_shipping_information',''),(2138,448,'_edit_last','1'),(2139,448,'_edit_lock','1408019796:1'),(2140,448,'_visibility','visible'),(2141,448,'_stock_status','instock'),(2142,448,'total_sales','0'),(2143,448,'_downloadable','no'),(2144,448,'_virtual','no'),(2145,448,'_regular_price',''),(2146,448,'_sale_price',''),(2147,448,'_purchase_note',''),(2148,448,'_featured','no'),(2149,448,'_weight',''),(2150,448,'_length',''),(2151,448,'_width',''),(2152,448,'_height',''),(2153,448,'_sku',''),(2154,448,'_product_attributes','a:0:{}'),(2155,448,'_sale_price_dates_from',''),(2156,448,'_sale_price_dates_to',''),(2157,448,'_price',''),(2158,448,'_sold_individually',''),(2159,448,'_manage_stock','no'),(2160,448,'_backorders','no'),(2161,448,'_stock',''),(2162,448,'_product_image_gallery',''),(2163,448,'product_short_description',''),(2164,448,'product_specification',''),(2165,448,'product_shipping_information',''),(2166,449,'_edit_last','1'),(2167,449,'_edit_lock','1408019830:1'),(2168,449,'_visibility','visible'),(2169,449,'_stock_status','instock'),(2170,449,'total_sales','0'),(2171,449,'_downloadable','no'),(2172,449,'_virtual','no'),(2173,449,'_regular_price',''),(2174,449,'_sale_price',''),(2175,449,'_purchase_note',''),(2176,449,'_featured','no'),(2177,449,'_weight',''),(2178,449,'_length',''),(2179,449,'_width',''),(2180,449,'_height',''),(2181,449,'_sku',''),(2182,449,'_product_attributes','a:0:{}'),(2183,449,'_sale_price_dates_from',''),(2184,449,'_sale_price_dates_to',''),(2185,449,'_price',''),(2186,449,'_sold_individually',''),(2187,449,'_manage_stock','no'),(2188,449,'_backorders','no'),(2189,449,'_stock',''),(2190,449,'_product_image_gallery',''),(2191,449,'product_short_description',''),(2192,449,'product_specification',''),(2193,449,'product_shipping_information',''),(2194,450,'_edit_last','1'),(2195,450,'_edit_lock','1408019860:1'),(2196,450,'_visibility','visible'),(2197,450,'_stock_status','instock'),(2198,450,'total_sales','0'),(2199,450,'_downloadable','no'),(2200,450,'_virtual','no'),(2201,450,'_regular_price',''),(2202,450,'_sale_price',''),(2203,450,'_purchase_note',''),(2204,450,'_featured','no'),(2205,450,'_weight',''),(2206,450,'_length',''),(2207,450,'_width',''),(2208,450,'_height',''),(2209,450,'_sku',''),(2210,450,'_product_attributes','a:0:{}'),(2211,450,'_sale_price_dates_from',''),(2212,450,'_sale_price_dates_to',''),(2213,450,'_price',''),(2214,450,'_sold_individually',''),(2215,450,'_manage_stock','no'),(2216,450,'_backorders','no'),(2217,450,'_stock',''),(2218,450,'_product_image_gallery',''),(2219,450,'product_short_description',''),(2220,450,'product_specification',''),(2221,450,'product_shipping_information',''),(2222,451,'_edit_last','1'),(2223,451,'_edit_lock','1408019894:1'),(2224,451,'_visibility','visible'),(2225,451,'_stock_status','instock'),(2226,451,'total_sales','0'),(2227,451,'_downloadable','no'),(2228,451,'_virtual','no'),(2229,451,'_regular_price',''),(2230,451,'_sale_price',''),(2231,451,'_purchase_note',''),(2232,451,'_featured','no'),(2233,451,'_weight',''),(2234,451,'_length',''),(2235,451,'_width',''),(2236,451,'_height',''),(2237,451,'_sku',''),(2238,451,'_product_attributes','a:0:{}'),(2239,451,'_sale_price_dates_from',''),(2240,451,'_sale_price_dates_to',''),(2241,451,'_price',''),(2242,451,'_sold_individually',''),(2243,451,'_manage_stock','no'),(2244,451,'_backorders','no'),(2245,451,'_stock',''),(2246,451,'_product_image_gallery',''),(2247,451,'product_short_description',''),(2248,451,'product_specification',''),(2249,451,'product_shipping_information',''),(2250,452,'_edit_last','1'),(2251,452,'_edit_lock','1408714542:1'),(2252,452,'_visibility','visible'),(2253,452,'_stock_status','instock'),(2254,452,'total_sales','0'),(2255,452,'_downloadable','no'),(2256,452,'_virtual','no'),(2257,452,'_regular_price',''),(2258,452,'_sale_price',''),(2259,452,'_purchase_note',''),(2260,452,'_featured','no'),(2261,452,'_weight',''),(2262,452,'_length',''),(2263,452,'_width',''),(2264,452,'_height',''),(2265,452,'_sku',''),(2266,452,'_product_attributes','a:0:{}'),(2267,452,'_sale_price_dates_from',''),(2268,452,'_sale_price_dates_to',''),(2269,452,'_price',''),(2270,452,'_sold_individually',''),(2271,452,'_manage_stock','no'),(2272,452,'_backorders','no'),(2273,452,'_stock',''),(2274,452,'_product_image_gallery','540'),(2275,452,'product_short_description','<strong>Certifications: </strong><br>\r\n- BHMA Certified ANSI A156.5 Grade 2<br>\r\n- ANSI A250.13 Severe Windstorm Resistant Component<br>\r\n- UL/cUL Listed for all functions up to 3 hours for \"A\" label single doors<br>\r\n- UL10C Positive Pressure Rated<br>\r\n- UL10B Neutral Pressure Rated<br>\r\n- ADA - Thumbturn<br>\r\n- Lifetime warranty<br>\r\n\r\n<strong>Exposed Trim: </strong><br>\r\n- Wrought brass, stainless steel or bronze<br>\r\n\r\n<strong>Mechanism: </strong>\r\n- Steel, zinc dichromate plating<br>\r\n\r\n<strong>Keys:</strong> <br>\r\n- Two operating keys supplied per lock<br>\r\n\r\n<strong>Cylinders:</strong> <br>\r\n- Brass <br>\r\n- Keyed Different - C Keyway<br>\r\n- Other keying options, including keyed 6-pin, available from the factory<br>\r\n- SFIC uncombinated or combinated, brass 6- or 7-pin sold separately<br>\r\n- Drilled 6-pin, keyed 5-pin - Standard<br>\r\n- Small Format Interchangeable Core housing available<br>\r\n\r\n<strong>Door Thickness:</strong> <br>\r\n- 1-3/8\'\' - 1-3/4\'\' (35 mm - 45 mm) - Standard<br>\r\n- 1-3/4\" (35 mm) Only - 3214 SFIC<br>\r\n- 2\" - 2-1/4\" (51 mm - 57 mm) available for conventional cylinder - Must specify<br>\r\n\r\n<strong>Backset: </strong><br>\r\n- 2-3/4\'\' (70 mm) - Standard<br>\r\n- 2-3/8\'\' (60 mm) - Optional<br>\r\n- 2-3/8\" - 2-3/4\" (60mm - 70mm) adjustable backset supplied with 3220 and 3221 (not available on 3214 or 3215)<br>\r\n\r\n<strong>Latchbolt: </strong><br>\r\n- 1\'\' (25 mm) Throw - Brass with concealed hardened steel roller to prevent sawing or cutting<br>\r\n- 2-1/4\'\' x 1-1/8\'\' (57 mm x 29 mm) square corner faceplate<br>\r\n\r\n<strong>Strikes: </strong><br>\r\n- 3930 Square Corner, 1-1/8\'\' x 2-3/4\'\' (29 mm x 70 mm) with dustbox - Standard<br>\r\n- 3929 ASA Deadbolt Strike - Optional<br>\r\n\r\n<strong>Standard door prep: </strong><br>\r\n- Cylinder hole: 2-1/8\'\' (54 mm) diameter (cross bore)<br>\r\n- Latch hole: 1\'\' (25 mm) diameter (edge bore)<br>\r\n\r\n<strong> Finishes:</strong><br>\r\n- US3, US4, US10, US10B, US26D, US32, US32D<br>\r\n\r\n<strong> Functions:</strong><br> - 14 - Double Cylinder, 15 - Cylinder x Thumbturn, \r\n 20 - Thumbturn only w/ blank plate, 21 - Thumbturn Only (Replaced 3219), \r\n 22 - Retrofit Kit for use w/ 3221 or 3219<br>\r\n\r\n<strong>Options: </strong><br>\r\n- Split finish<br>\r\n- Additional deadbolts and strikes available<br>'),(2276,452,'product_specification','- Auxiliary and primary locking<br>\r\n- Non-handed<br>\r\n- Conventional cylinder or Small Format Interchangeable Core housing available<br>'),(2277,452,'product_shipping_information',''),(2278,453,'_edit_last','1'),(2279,453,'_edit_lock','1408019998:1'),(2280,453,'_visibility','visible'),(2281,453,'_stock_status','instock'),(2282,453,'total_sales','0'),(2283,453,'_downloadable','no'),(2284,453,'_virtual','no'),(2285,453,'_regular_price',''),(2286,453,'_sale_price',''),(2287,453,'_purchase_note',''),(2288,453,'_featured','no'),(2289,453,'_weight',''),(2290,453,'_length',''),(2291,453,'_width',''),(2292,453,'_height',''),(2293,453,'_sku',''),(2294,453,'_product_attributes','a:0:{}'),(2295,453,'_sale_price_dates_from',''),(2296,453,'_sale_price_dates_to',''),(2297,453,'_price',''),(2298,453,'_sold_individually',''),(2299,453,'_manage_stock','no'),(2300,453,'_backorders','no'),(2301,453,'_stock',''),(2302,453,'_product_image_gallery',''),(2303,453,'product_short_description',''),(2304,453,'product_specification',''),(2305,453,'product_shipping_information',''),(2306,454,'_edit_last','1'),(2307,454,'_edit_lock','1408020055:1'),(2308,454,'_visibility','visible'),(2309,454,'_stock_status','instock'),(2310,454,'total_sales','0'),(2311,454,'_downloadable','no'),(2312,454,'_virtual','no'),(2313,454,'_regular_price',''),(2314,454,'_sale_price',''),(2315,454,'_purchase_note',''),(2316,454,'_featured','no'),(2317,454,'_weight',''),(2318,454,'_length',''),(2319,454,'_width',''),(2320,454,'_height',''),(2321,454,'_sku',''),(2322,454,'_product_attributes','a:0:{}'),(2323,454,'_sale_price_dates_from',''),(2324,454,'_sale_price_dates_to',''),(2325,454,'_price',''),(2326,454,'_sold_individually',''),(2327,454,'_manage_stock','no'),(2328,454,'_backorders','no'),(2329,454,'_stock',''),(2330,454,'_product_image_gallery',''),(2331,454,'product_short_description',''),(2332,454,'product_specification',''),(2333,454,'product_shipping_information',''),(2334,455,'_edit_last','1'),(2335,455,'_edit_lock','1408020079:1'),(2336,455,'_visibility','visible'),(2337,455,'_stock_status','instock'),(2338,455,'total_sales','0'),(2339,455,'_downloadable','no'),(2340,455,'_virtual','no'),(2341,455,'_regular_price',''),(2342,455,'_sale_price',''),(2343,455,'_purchase_note',''),(2344,455,'_featured','no'),(2345,455,'_weight',''),(2346,455,'_length',''),(2347,455,'_width',''),(2348,455,'_height',''),(2349,455,'_sku',''),(2350,455,'_product_attributes','a:0:{}'),(2351,455,'_sale_price_dates_from',''),(2352,455,'_sale_price_dates_to',''),(2353,455,'_price',''),(2354,455,'_sold_individually',''),(2355,455,'_manage_stock','no'),(2356,455,'_backorders','no'),(2357,455,'_stock',''),(2358,455,'_product_image_gallery',''),(2359,455,'product_short_description',''),(2360,455,'product_specification',''),(2361,455,'product_shipping_information',''),(2362,456,'_edit_last','1'),(2363,456,'_edit_lock','1408020111:1'),(2364,456,'_visibility','visible'),(2365,456,'_stock_status','instock'),(2366,456,'total_sales','0'),(2367,456,'_downloadable','no'),(2368,456,'_virtual','no'),(2369,456,'_regular_price',''),(2370,456,'_sale_price',''),(2371,456,'_purchase_note',''),(2372,456,'_featured','no'),(2373,456,'_weight',''),(2374,456,'_length',''),(2375,456,'_width',''),(2376,456,'_height',''),(2377,456,'_sku',''),(2378,456,'_product_attributes','a:0:{}'),(2379,456,'_sale_price_dates_from',''),(2380,456,'_sale_price_dates_to',''),(2381,456,'_price',''),(2382,456,'_sold_individually',''),(2383,456,'_manage_stock','no'),(2384,456,'_backorders','no'),(2385,456,'_stock',''),(2386,456,'_product_image_gallery',''),(2387,456,'product_short_description',''),(2388,456,'product_specification',''),(2389,456,'product_shipping_information',''),(2390,430,'post_views_count','9'),(2391,457,'_edit_last','1'),(2392,457,'_edit_lock','1408456810:1'),(2393,457,'_visibility','visible'),(2394,457,'_stock_status','instock'),(2395,457,'total_sales','0'),(2396,457,'_downloadable','no'),(2397,457,'_virtual','no'),(2398,457,'_regular_price',''),(2399,457,'_sale_price',''),(2400,457,'_purchase_note',''),(2401,457,'_featured','no'),(2402,457,'_weight',''),(2403,457,'_length',''),(2404,457,'_width',''),(2405,457,'_height',''),(2406,457,'_sku',''),(2407,457,'_product_attributes','a:0:{}'),(2408,457,'_sale_price_dates_from',''),(2409,457,'_sale_price_dates_to',''),(2410,457,'_price',''),(2411,457,'_sold_individually',''),(2412,457,'_manage_stock','no'),(2413,457,'_backorders','no'),(2414,457,'_stock',''),(2415,457,'_product_image_gallery','529'),(2416,457,'product_short_description','- Full rack and pinion operation<br>\r\n- Precision machined, heat treated steel piston<br>\r\n- Triple heat treated steel spindle'),(2417,457,'product_specification','<strong>Size:</strong> - 1-6 adjustable <br>\r\n<strong>Certifications:</strong> - BHMA Certified ANSI A156.4, adjustable sizes 2 to 5 - Standard<br>\r\n- ADA Compliant ANSI A117.1 Accessibility Code<br>\r\n- UL/cUL Listed for up to 3 hours<br>\r\n- UL10C Positive Pressure Rated<br>\r\n- UL10B Neutral Pressure Rated<br>\r\n<strong>Material:</strong> - Aluminum alloy<br>\r\n<strong>Cover:</strong> - Full plastic cover - Standard<br>\r\n- Slim line plastic cover - Optional<br>\r\n- Full size plated metal cover - Optional<br>\r\n<strong>Springs:</strong> - Double heat treated steel, tempered springs<br>\r\n- Precision machined, heat treated Steel piston<br>\r\n- Triple heat treated Steel spindle<br>\r\n<strong>Valves:</strong> - Adjustable latching and sweep speed valve<br>\r\n- Adjustable backcheck valve - Standard<br>\r\n- Delayed action valve - Optional<br>\r\n<strong>Handing:</strong> - Non-Handed<br>\r\n<strong>Arms & Brackets:</strong> - Tri-Pack - Regular, parallel arm, and top jamb mount - Standard<br>\r\n- 15% power adjustment in standard arm for regular and top jamb mount<br>\r\n<strong>Optional Arms:</strong> - Hold Open Arm<br>\r\n- Extra Heavy Duty Hold Open Stop Arm<br>\r\n- Extra Heavy Duty Stop Arm<br>\r\n- Extra Heavy Duty Arm<br>\r\n- Extra Heavy Duty Hold Open Arm<br>\r\n- Extra Heavy Duty Cushion Stop Arm<br>\r\n- Extra Heavy Duty Hold Open Cushion Stop Arm<br>\r\n<strong>Fasteners:</strong> - Self-reaming, self-tapping wood and machine screws<br>\r\n- Sex nuts and bolts<br>\r\n<strong>Door Thickness:</strong> - 1-3/4\" (44 mm)<br>\r\n- 1-3/8\'\' - 2-1/4\'\' (36 mm - 57 mm) - Optional<br>\r\n\r\n<strong>Finishes:</strong> - ALM, BRZ, DBZ, GOL, US3, US26, US26D<br>\r\n- Rust inhibiting primer - Standard<br>'),(2418,457,'product_shipping_information',''),(2419,458,'_edit_last','1'),(2420,458,'_edit_lock','1408020169:1'),(2421,458,'_visibility','visible'),(2422,458,'_stock_status','instock'),(2423,458,'total_sales','0'),(2424,458,'_downloadable','no'),(2425,458,'_virtual','no'),(2426,458,'_regular_price',''),(2427,458,'_sale_price',''),(2428,458,'_purchase_note',''),(2429,458,'_featured','no'),(2430,458,'_weight',''),(2431,458,'_length',''),(2432,458,'_width',''),(2433,458,'_height',''),(2434,458,'_sku',''),(2435,458,'_product_attributes','a:0:{}'),(2436,458,'_sale_price_dates_from',''),(2437,458,'_sale_price_dates_to',''),(2438,458,'_price',''),(2439,458,'_sold_individually',''),(2440,458,'_manage_stock','no'),(2441,458,'_backorders','no'),(2442,458,'_stock',''),(2443,458,'_product_image_gallery',''),(2444,458,'product_short_description',''),(2445,458,'product_specification',''),(2446,458,'product_shipping_information',''),(2447,459,'_edit_last','1'),(2448,459,'_edit_lock','1408457066:1'),(2449,459,'_visibility','visible'),(2450,459,'_stock_status','instock'),(2451,459,'total_sales','0'),(2452,459,'_downloadable','no'),(2453,459,'_virtual','no'),(2454,459,'_regular_price',''),(2455,459,'_sale_price',''),(2456,459,'_purchase_note',''),(2457,459,'_featured','no'),(2458,459,'_weight',''),(2459,459,'_length',''),(2460,459,'_width',''),(2461,459,'_height',''),(2462,459,'_sku',''),(2463,459,'_product_attributes','a:0:{}'),(2464,459,'_sale_price_dates_from',''),(2465,459,'_sale_price_dates_to',''),(2466,459,'_price',''),(2467,459,'_sold_individually',''),(2468,459,'_manage_stock','no'),(2469,459,'_backorders','no'),(2470,459,'_stock',''),(2471,459,'_product_image_gallery','530'),(2472,459,'product_short_description','<strong>Options: </strong>\r\n- May be ordered cut for cylinder (CFC) or engraved \"PUSH\"'),(2473,459,'product_specification','<strong>Gauge:</strong> \r\n- .050\" (1 mm)<br>\r\n\r\n<strong>Materials: </strong>\r\n- Aluminum, brass, bronze, stainless steel<br>\r\n\r\n<strong>Finishes: </strong>\r\n- US3, US4, US10, US10B, US26, US26D, US28, US32, US32D<br>\r\n\r\n<strong>Fasteners: </strong>\r\n- Six (6) #6 x 5/8\'\' OPH Tapping Screws<br>\r\n\r\n<strong>Certification: </strong>\r\n- Meet ANSI A156.6 for J301 push plate<br>'),(2474,459,'product_shipping_information',''),(2475,460,'_edit_last','1'),(2476,460,'_edit_lock','1408457218:1'),(2477,460,'_visibility','visible'),(2478,460,'_stock_status','instock'),(2479,460,'total_sales','0'),(2480,460,'_downloadable','no'),(2481,460,'_virtual','no'),(2482,460,'_regular_price',''),(2483,460,'_sale_price',''),(2484,460,'_purchase_note',''),(2485,460,'_featured','no'),(2486,460,'_weight',''),(2487,460,'_length',''),(2488,460,'_width',''),(2489,460,'_height',''),(2490,460,'_sku',''),(2491,460,'_product_attributes','a:0:{}'),(2492,460,'_sale_price_dates_from',''),(2493,460,'_sale_price_dates_to',''),(2494,460,'_price',''),(2495,460,'_sold_individually',''),(2496,460,'_manage_stock','no'),(2497,460,'_backorders','no'),(2498,460,'_stock',''),(2499,460,'_product_image_gallery','531'),(2500,460,'product_short_description','- Pull Plate\r\n- Aluminum, Brass, Bronze, Stainless Steel\r\n- Square Corner\r\n- 30S Plate\r\n- 3G Pull'),(2501,460,'product_specification','<strong>Gauge:</strong><br>\r\n- 0.050\" (1.3 mm) <br>\r\n\r\n<strong>Standard Sizes:</strong><br>\r\n- 3\" x 12\" (76 mm x 305 mm)<br>\r\n- 3-1/2\" x 15\" (89 mm x 381 mm)<br>\r\n- 4\" x 16\" (102 mm x 406 mm)<br>\r\n- 6\" x 16\" (152 mm x 406 mm)<br>\r\n- 8\" x 16\" (203 mm x 406 mm)<br>\r\n\r\n<strong>Finishes:</strong><br>\r\n- US3, US4, US10, US10B, US26, US26D, US28, US32, US32D<br> \r\n\r\n<strong>Certifications:</strong><br>\r\n- Meets ANSI A156.6 for J405 Pull Plate<br> \r\n\r\n<strong>Fasteners:</strong><br>\r\n- #6 x 5/8\" OPH Tapping Screws<br>'),(2502,460,'product_shipping_information',''),(2503,461,'_edit_last','1'),(2504,461,'_edit_lock','1408020246:1'),(2505,461,'_visibility','visible'),(2506,461,'_stock_status','instock'),(2507,461,'total_sales','0'),(2508,461,'_downloadable','no'),(2509,461,'_virtual','no'),(2510,461,'_regular_price',''),(2511,461,'_sale_price',''),(2512,461,'_purchase_note',''),(2513,461,'_featured','no'),(2514,461,'_weight',''),(2515,461,'_length',''),(2516,461,'_width',''),(2517,461,'_height',''),(2518,461,'_sku',''),(2519,461,'_product_attributes','a:0:{}'),(2520,461,'_sale_price_dates_from',''),(2521,461,'_sale_price_dates_to',''),(2522,461,'_price',''),(2523,461,'_sold_individually',''),(2524,461,'_manage_stock','no'),(2525,461,'_backorders','no'),(2526,461,'_stock',''),(2527,461,'_product_image_gallery',''),(2528,461,'product_short_description',''),(2529,461,'product_specification',''),(2530,461,'product_shipping_information',''),(2531,462,'_edit_last','1'),(2532,462,'_edit_lock','1408020272:1'),(2533,462,'_visibility','visible'),(2534,462,'_stock_status','instock'),(2535,462,'total_sales','0'),(2536,462,'_downloadable','no'),(2537,462,'_virtual','no'),(2538,462,'_regular_price',''),(2539,462,'_sale_price',''),(2540,462,'_purchase_note',''),(2541,462,'_featured','no'),(2542,462,'_weight',''),(2543,462,'_length',''),(2544,462,'_width',''),(2545,462,'_height',''),(2546,462,'_sku',''),(2547,462,'_product_attributes','a:0:{}'),(2548,462,'_sale_price_dates_from',''),(2549,462,'_sale_price_dates_to',''),(2550,462,'_price',''),(2551,462,'_sold_individually',''),(2552,462,'_manage_stock','no'),(2553,462,'_backorders','no'),(2554,462,'_stock',''),(2555,462,'_product_image_gallery',''),(2556,462,'product_short_description',''),(2557,462,'product_specification',''),(2558,462,'product_shipping_information',''),(2559,463,'_edit_last','1'),(2560,463,'_edit_lock','1408020299:1'),(2561,463,'_visibility','visible'),(2562,463,'_stock_status','instock'),(2563,463,'total_sales','0'),(2564,463,'_downloadable','no'),(2565,463,'_virtual','no'),(2566,463,'_regular_price',''),(2567,463,'_sale_price',''),(2568,463,'_purchase_note',''),(2569,463,'_featured','no'),(2570,463,'_weight',''),(2571,463,'_length',''),(2572,463,'_width',''),(2573,463,'_height',''),(2574,463,'_sku',''),(2575,463,'_product_attributes','a:0:{}'),(2576,463,'_sale_price_dates_from',''),(2577,463,'_sale_price_dates_to',''),(2578,463,'_price',''),(2579,463,'_sold_individually',''),(2580,463,'_manage_stock','no'),(2581,463,'_backorders','no'),(2582,463,'_stock',''),(2583,463,'_product_image_gallery',''),(2584,463,'product_short_description',''),(2585,463,'product_specification',''),(2586,463,'product_shipping_information',''),(2587,431,'post_views_count','3'),(2588,464,'_edit_last','1'),(2589,464,'_edit_lock','1408020325:1'),(2590,464,'_visibility','visible'),(2591,464,'_stock_status','instock'),(2592,464,'total_sales','0'),(2593,464,'_downloadable','no'),(2594,464,'_virtual','no'),(2595,464,'_regular_price',''),(2596,464,'_sale_price',''),(2597,464,'_purchase_note',''),(2598,464,'_featured','no'),(2599,464,'_weight',''),(2600,464,'_length',''),(2601,464,'_width',''),(2602,464,'_height',''),(2603,464,'_sku',''),(2604,464,'_product_attributes','a:0:{}'),(2605,464,'_sale_price_dates_from',''),(2606,464,'_sale_price_dates_to',''),(2607,464,'_price',''),(2608,464,'_sold_individually',''),(2609,464,'_manage_stock','no'),(2610,464,'_backorders','no'),(2611,464,'_stock',''),(2612,464,'_product_image_gallery',''),(2613,464,'product_short_description',''),(2614,464,'product_specification',''),(2615,464,'product_shipping_information',''),(2616,465,'_edit_last','1'),(2617,465,'_edit_lock','1408020351:1'),(2618,465,'_visibility','visible'),(2619,465,'_stock_status','instock'),(2620,465,'total_sales','0'),(2621,465,'_downloadable','no'),(2622,465,'_virtual','no'),(2623,465,'_regular_price',''),(2624,465,'_sale_price',''),(2625,465,'_purchase_note',''),(2626,465,'_featured','no'),(2627,465,'_weight',''),(2628,465,'_length',''),(2629,465,'_width',''),(2630,465,'_height',''),(2631,465,'_sku',''),(2632,465,'_product_attributes','a:0:{}'),(2633,465,'_sale_price_dates_from',''),(2634,465,'_sale_price_dates_to',''),(2635,465,'_price',''),(2636,465,'_sold_individually',''),(2637,465,'_manage_stock','no'),(2638,465,'_backorders','no'),(2639,465,'_stock',''),(2640,465,'_product_image_gallery',''),(2641,465,'product_short_description',''),(2642,465,'product_specification',''),(2643,465,'product_shipping_information',''),(2644,466,'_edit_last','1'),(2645,466,'_edit_lock','1408457553:1'),(2646,466,'_visibility','visible'),(2647,466,'_stock_status','instock'),(2648,466,'total_sales','0'),(2649,466,'_downloadable','no'),(2650,466,'_virtual','no'),(2651,466,'_regular_price',''),(2652,466,'_sale_price',''),(2653,466,'_purchase_note',''),(2654,466,'_featured','no'),(2655,466,'_weight',''),(2656,466,'_length',''),(2657,466,'_width',''),(2658,466,'_height',''),(2659,466,'_sku',''),(2660,466,'_product_attributes','a:0:{}'),(2661,466,'_sale_price_dates_from',''),(2662,466,'_sale_price_dates_to',''),(2663,466,'_price',''),(2664,466,'_sold_individually',''),(2665,466,'_manage_stock','no'),(2666,466,'_backorders','no'),(2667,466,'_stock',''),(2668,466,'_product_image_gallery','532'),(2669,466,'product_short_description','<strong>Certifications: </strong><br>\r\n- Square corners<br>\r\n- Packed (1 each) in polybag with strikeplate and screws<br>'),(2670,466,'product_specification','<strong>Bolt Diameter: </strong>\r\n- 1/2\" (13 mm)<br>\r\n\r\n<strong>Bolt Throw: </strong>\r\n- 15/16\" (24 mm)<br>\r\n\r\n<strong>Faceplate: </strong>\r\n- 3/4\" x 6\" (19 mm x 181 mm)<br>\r\n\r\n<strong>Backset: </strong>\r\n- 7/16\" (11 mm)<br>\r\n\r\n<strong>Strike: </strong>\r\n- 7/8\" x 1-3/4\" (22 mm x 45 mm)<br>\r\n\r\n<strong>Materials: </strong>\r\n- Brass faceplate with steel components<br>\r\n\r\n<strong>Fasteners: </strong>\r\n- Four (4) #6 x 3/4\" FPHWS<br>\r\n\r\n<strong>Finishes: </strong>\r\n- US3, US4, US5, 10A, 10R, US15A, US15, US26, US26D, ABA, AN<br>'),(2671,466,'product_shipping_information',''),(2672,467,'_edit_last','1'),(2673,467,'_edit_lock','1408457551:1'),(2674,467,'_visibility','visible'),(2675,467,'_stock_status','instock'),(2676,467,'total_sales','0'),(2677,467,'_downloadable','no'),(2678,467,'_virtual','no'),(2679,467,'_regular_price',''),(2680,467,'_sale_price',''),(2681,467,'_purchase_note',''),(2682,467,'_featured','no'),(2683,467,'_weight',''),(2684,467,'_length',''),(2685,467,'_width',''),(2686,467,'_height',''),(2687,467,'_sku',''),(2688,467,'_product_attributes','a:0:{}'),(2689,467,'_sale_price_dates_from',''),(2690,467,'_sale_price_dates_to',''),(2691,467,'_price',''),(2692,467,'_sold_individually',''),(2693,467,'_manage_stock','no'),(2694,467,'_backorders','no'),(2695,467,'_stock',''),(2696,467,'_product_image_gallery','532'),(2697,467,'product_short_description','<strong>Certifications: </strong><br>\r\n- Square corners<br>\r\n- Packed (1 each) in polybag with strikeplate and screws<br>'),(2698,467,'product_specification','<strong>Bolt Diameter: </strong>\r\n- 1/2\" (13 mm)<br>\r\n\r\n<strong>Bolt Throw: </strong>\r\n- 15/16\" (24 mm)<br>\r\n\r\n<strong>Faceplate: </strong>\r\n- 3/4\" x 6\" (19 mm x 181 mm)<br>\r\n\r\n<strong>Backset: </strong>\r\n- 7/16\" (11 mm)<br>\r\n\r\n<strong>Strike: </strong>\r\n- 7/8\" x 1-3/4\" (22 mm x 45 mm)<br>\r\n\r\n<strong>Materials: </strong>\r\n- Brass faceplate with steel components<br>\r\n\r\n<strong>Fasteners: </strong>\r\n- Four (4) #6 x 3/4\" FPHWS<br>\r\n\r\n<strong>Finishes: </strong>\r\n- US3, US4, US5, 10A, 10R, US15A, US15, US26, US26D, ABA, AN<br>'),(2699,467,'product_shipping_information',''),(2700,468,'_edit_last','1'),(2701,468,'_edit_lock','1408457550:1'),(2702,468,'_visibility','visible'),(2703,468,'_stock_status','instock'),(2704,468,'total_sales','0'),(2705,468,'_downloadable','no'),(2706,468,'_virtual','no'),(2707,468,'_regular_price',''),(2708,468,'_sale_price',''),(2709,468,'_purchase_note',''),(2710,468,'_featured','no'),(2711,468,'_weight',''),(2712,468,'_length',''),(2713,468,'_width',''),(2714,468,'_height',''),(2715,468,'_sku',''),(2716,468,'_product_attributes','a:0:{}'),(2717,468,'_sale_price_dates_from',''),(2718,468,'_sale_price_dates_to',''),(2719,468,'_price',''),(2720,468,'_sold_individually',''),(2721,468,'_manage_stock','no'),(2722,468,'_backorders','no'),(2723,468,'_stock',''),(2724,468,'_product_image_gallery','532'),(2725,468,'product_short_description','<strong>Certifications: </strong><br>\r\n- Square corners<br>\r\n- Packed (1 each) in polybag with strikeplate and screws<br>'),(2726,468,'product_specification','<strong>Bolt Diameter: </strong>\r\n- 1/2\" (13 mm)<br>\r\n\r\n<strong>Bolt Throw: </strong>\r\n- 15/16\" (24 mm)<br>\r\n\r\n<strong>Faceplate: </strong>\r\n- 3/4\" x 6\" (19 mm x 181 mm)<br>\r\n\r\n<strong>Backset: </strong>\r\n- 7/16\" (11 mm)<br>\r\n\r\n<strong>Strike: </strong>\r\n- 7/8\" x 1-3/4\" (22 mm x 45 mm)<br>\r\n\r\n<strong>Materials: </strong>\r\n- Brass faceplate with steel components<br>\r\n\r\n<strong>Fasteners: </strong>\r\n- Four (4) #6 x 3/4\" FPHWS<br>\r\n\r\n<strong>Finishes: </strong>\r\n- US3, US4, US5, 10A, 10R, US15A, US15, US26, US26D, ABA, AN<br>'),(2727,468,'product_shipping_information',''),(2728,469,'_edit_last','1'),(2729,469,'_edit_lock','1408712595:1'),(2730,469,'_visibility','visible'),(2731,469,'_stock_status','instock'),(2732,469,'total_sales','0'),(2733,469,'_downloadable','no'),(2734,469,'_virtual','no'),(2735,469,'_regular_price',''),(2736,469,'_sale_price',''),(2737,469,'_purchase_note',''),(2738,469,'_featured','no'),(2739,469,'_weight',''),(2740,469,'_length',''),(2741,469,'_width',''),(2742,469,'_height',''),(2743,469,'_sku',''),(2744,469,'_product_attributes','a:0:{}'),(2745,469,'_sale_price_dates_from',''),(2746,469,'_sale_price_dates_to',''),(2747,469,'_price',''),(2748,469,'_sold_individually',''),(2749,469,'_manage_stock','no'),(2750,469,'_backorders','no'),(2751,469,'_stock',''),(2752,469,'_product_image_gallery','534'),(2753,469,'product_short_description','<strong>Certifications: </strong>\r\n- Meets ANSI 156.16 for L14251<br>\r\n\r\n<strong>Face Plate: </strong>\r\n- 1\'\' x 6-3/4\'\' (25 mm x 172 mm)<br>\r\n\r\n<strong>Flattened Round Bolt Head: </strong>\r\n- 1/2\" (13 mm) square<br>\r\n\r\n<strong>Bolt Throw:</strong>\r\n- 3/4\" (19 mm)<br>\r\n\r\n<strong>Standard Rod Length:</strong> \r\n- 12\" (305 mm) (from center of face to corner of door) <br>\r\n\r\n<strong>Bolt Backset:</strong>\r\n- 3/4\" (19 mm)<br>\r\n\r\n<strong>Guide Plate: </strong>\r\n- 1\" x 2\" (25 mm x 51 mm)<br>\r\n\r\n<strong>Mortise strike: </strong>\r\n- 15/16\'\' x 2-1/4\'\' (24 mm x 57 mm)<br>\r\n\r\n<strong>Optional Rod Length:</strong> \r\n- 18\" (457 mm)<br>\r\n- 25\" (636 mm)<br>\r\n- 30\" (762 mm)<br>\r\n- Specify 282R<br>\r\n\r\n<strong>Materials: </strong>\r\n- Brass faceplate with steel components<br>\r\n\r\n<strong>Finishes: </strong>\r\n- US3, US4, US5, US9, US10, US10B, US15, US15A, US19, US26, US26D<br>\r\n\r\n<strong>Fasteners: </strong>\r\n- Eight (8) #8 x 3/4\" combo screws<br>\r\n- Eight (8) #8 x 1-1/2\" combo screws<br>'),(2754,469,'product_specification','<strong>Notes:</strong><br>\r\n- Sold in increments of 2<br>\r\n- 3-hour fire rating for metal doors up to 4 feet wide by 10 feet tall<br>\r\n- 282S strike plate bag and 282P bolt head available<br>\r\n- For use on hollow metal/fire rated doors<br>\r\n- 282R optional rod length available: 18\" (457 mm) , 25\" (635 mm), and 30\" (762 mm) (bolt head not included) - no charge<br>\r\n- Non-handed<br>\r\n- Bolt head rods are adjustable<br>'),(2755,469,'product_shipping_information',''),(2756,470,'_edit_last','1'),(2757,470,'_edit_lock','1408712843:1'),(2758,470,'_visibility','visible'),(2759,470,'_stock_status','instock'),(2760,470,'total_sales','0'),(2761,470,'_downloadable','no'),(2762,470,'_virtual','no'),(2763,470,'_regular_price',''),(2764,470,'_sale_price',''),(2765,470,'_purchase_note',''),(2766,470,'_featured','no'),(2767,470,'_weight',''),(2768,470,'_length',''),(2769,470,'_width',''),(2770,470,'_height',''),(2771,470,'_sku',''),(2772,470,'_product_attributes','a:0:{}'),(2773,470,'_sale_price_dates_from',''),(2774,470,'_sale_price_dates_to',''),(2775,470,'_price',''),(2776,470,'_sold_individually',''),(2777,470,'_manage_stock','no'),(2778,470,'_backorders','no'),(2779,470,'_stock',''),(2780,470,'_product_image_gallery','536'),(2781,470,'product_short_description','<strong>Certification: </strong>\r\n- Meets ANSI A156.16 for L02251<br>\r\n\r\n<strong>Diameter: </strong>\r\n- 2-7/16\" (75 mm)<br>\r\n\r\n<strong>Projection: </strong>\r\n- 1\" (25 mm)<br>\r\n\r\n<strong>Materials:</strong>\r\n- Wrought brass, bronze, stainless steel with grey rubber bumper<br>\r\n\r\n<strong>Finishes:</strong> \r\n- US3, US4, US10, US10B, US15, US15A, US19, US26, US26D, 32, 32D<br>\r\n\r\n<strong>Fastener: </strong>\r\n- One (1) #10 x 1-1/2\" PPHWS with plastic and toggle anchor - for drywall<br>'),(2782,470,'product_specification','- Specify 230T for machine screw and toggle nut screw pack (10 pk) for concrete<br>\r\n- BL236W is 236W case quantity 50<br>\r\n- Easy installation by inserting screwdriver through small hole in bumper<br>\r\n- Concave rubber bumper prevents damage to locksets with projecting buttons<br>\r\n- Concealed tamper proof mounting<br>'),(2783,470,'product_shipping_information',''),(2952,477,'_edit_last','1'),(2953,477,'_edit_lock','1408713046:1'),(2954,477,'_visibility','visible'),(2955,477,'_stock_status','instock'),(2956,477,'total_sales','0'),(2957,477,'_downloadable','no'),(2958,477,'_virtual','no'),(2959,477,'_regular_price',''),(2960,477,'_sale_price',''),(2961,477,'_purchase_note',''),(2962,477,'_featured','no'),(2963,477,'_weight',''),(2964,477,'_length',''),(2965,477,'_width',''),(2966,477,'_height',''),(2967,477,'_sku',''),(2968,477,'_product_attributes','a:0:{}'),(2969,477,'_sale_price_dates_from',''),(2970,477,'_sale_price_dates_to',''),(2971,477,'_price',''),(2972,477,'_sold_individually',''),(2973,477,'_manage_stock','no'),(2974,477,'_backorders','no'),(2975,477,'_stock',''),(2976,477,'_product_image_gallery','537'),(2977,477,'product_short_description','<strong>Base: </strong>\r\n- 1-3/4\" x 4\" (45 mm x 102 mm) <br>\r\n\r\n<strong>Base Thickness: </strong>\r\n- 5/32\" (4 mm)<br>\r\n\r\n<strong>Overall Height: </strong>\r\n- 1\" (25 mm)<br>\r\n\r\n<strong>Material: </strong>\r\n- Cast brass with grey rubber bumper<br>\r\n\r\n<strong>Finishes: </strong>\r\n- US3, US4, US10, US10B, US26, US26D<br>\r\n\r\n<strong>Fasteners: </strong>\r\n- Two (2) #14 - 1-1/2\" FPHWS, two (2) 1/4-20 x 3/4\" FPHMS, two (2) 1/4-20 lead anchor, and two (2) plastic anchor<br>'),(2978,477,'product_specification','- Heavy duty - for use in high traffic areas<br>\r\n- For use when no threshold is used (door not undercut)<br>\r\n- For use with wood or concrete floors<br>'),(2979,477,'product_shipping_information',''),(2980,478,'_edit_last','1'),(2981,478,'_edit_lock','1408713455:1'),(2982,478,'_visibility','visible'),(2983,478,'_stock_status','instock'),(2984,478,'total_sales','0'),(2985,478,'_downloadable','no'),(2986,478,'_virtual','no'),(2987,478,'_regular_price',''),(2988,478,'_sale_price',''),(2989,478,'_purchase_note',''),(2990,478,'_featured','no'),(2991,478,'_weight',''),(2992,478,'_length',''),(2993,478,'_width',''),(2994,478,'_height',''),(2995,478,'_sku',''),(2996,478,'_product_attributes','a:0:{}'),(2997,478,'_sale_price_dates_from',''),(2998,478,'_sale_price_dates_to',''),(2999,478,'_price',''),(3000,478,'_sold_individually',''),(3001,478,'_manage_stock','no'),(3002,478,'_backorders','no'),(3003,478,'_stock',''),(3004,478,'_product_image_gallery','538'),(3005,478,'product_short_description','<strong>Base Diameter: </strong>\r\n- 1/2\" (12.5 mm)<br>\r\n\r\n<strong>Projection:</strong> \r\n- 1/8\" (3 mm)<br>\r\n\r\n<strong>Material:</strong> \r\n- Rubber<br>\r\n\r\n<strong>Certifications: </strong>\r\n- Meets ANSI A156.16 for L03011<br>'),(3006,478,'product_specification','- For use with metal frames<br>\r\n- Proper installation eliminates door rattle and provides constant tension for door latches or locks<br>'),(3007,478,'product_shipping_information',''),(3008,429,'post_views_count','3'),(3009,479,'_edit_last','1'),(3010,479,'_edit_lock','1408021112:1'),(3011,479,'_visibility','visible'),(3012,479,'_stock_status','instock'),(3013,479,'total_sales','0'),(3014,479,'_downloadable','no'),(3015,479,'_virtual','no'),(3016,479,'_regular_price',''),(3017,479,'_sale_price',''),(3018,479,'_purchase_note',''),(3019,479,'_featured','no'),(3020,479,'_weight',''),(3021,479,'_length',''),(3022,479,'_width',''),(3023,479,'_height',''),(3024,479,'_sku',''),(3025,479,'_product_attributes','a:0:{}'),(3026,479,'_sale_price_dates_from',''),(3027,479,'_sale_price_dates_to',''),(3028,479,'_price',''),(3029,479,'_sold_individually',''),(3030,479,'_manage_stock','no'),(3031,479,'_backorders','no'),(3032,479,'_stock',''),(3033,479,'_product_image_gallery',''),(3034,479,'product_short_description',''),(3035,479,'product_specification',''),(3036,479,'product_shipping_information',''),(3037,480,'_edit_last','1'),(3038,480,'_edit_lock','1408021143:1'),(3039,480,'_visibility','visible'),(3040,480,'_stock_status','instock'),(3041,480,'total_sales','0'),(3042,480,'_downloadable','no'),(3043,480,'_virtual','no'),(3044,480,'_regular_price',''),(3045,480,'_sale_price',''),(3046,480,'_purchase_note',''),(3047,480,'_featured','no'),(3048,480,'_weight',''),(3049,480,'_length',''),(3050,480,'_width',''),(3051,480,'_height',''),(3052,480,'_sku',''),(3053,480,'_product_attributes','a:0:{}'),(3054,480,'_sale_price_dates_from',''),(3055,480,'_sale_price_dates_to',''),(3056,480,'_price',''),(3057,480,'_sold_individually',''),(3058,480,'_manage_stock','no'),(3059,480,'_backorders','no'),(3060,480,'_stock',''),(3061,480,'_product_image_gallery',''),(3062,480,'product_short_description',''),(3063,480,'product_specification',''),(3064,480,'product_shipping_information',''),(3065,481,'_edit_last','1'),(3066,481,'_edit_lock','1408021171:1'),(3067,481,'_visibility','visible'),(3068,481,'_stock_status','instock'),(3069,481,'total_sales','0'),(3070,481,'_downloadable','no'),(3071,481,'_virtual','no'),(3072,481,'_regular_price',''),(3073,481,'_sale_price',''),(3074,481,'_purchase_note',''),(3075,481,'_featured','no'),(3076,481,'_weight',''),(3077,481,'_length',''),(3078,481,'_width',''),(3079,481,'_height',''),(3080,481,'_sku',''),(3081,481,'_product_attributes','a:0:{}'),(3082,481,'_sale_price_dates_from',''),(3083,481,'_sale_price_dates_to',''),(3084,481,'_price',''),(3085,481,'_sold_individually',''),(3086,481,'_manage_stock','no'),(3087,481,'_backorders','no'),(3088,481,'_stock',''),(3089,481,'_product_image_gallery',''),(3090,481,'product_short_description',''),(3091,481,'product_specification',''),(3092,481,'product_shipping_information',''),(3093,482,'_edit_last','1'),(3094,482,'_edit_lock','1408021203:1'),(3095,482,'_visibility','visible'),(3096,482,'_stock_status','instock'),(3097,482,'total_sales','0'),(3098,482,'_downloadable','no'),(3099,482,'_virtual','no'),(3100,482,'_regular_price',''),(3101,482,'_sale_price',''),(3102,482,'_purchase_note',''),(3103,482,'_featured','no'),(3104,482,'_weight',''),(3105,482,'_length',''),(3106,482,'_width',''),(3107,482,'_height',''),(3108,482,'_sku',''),(3109,482,'_product_attributes','a:0:{}'),(3110,482,'_sale_price_dates_from',''),(3111,482,'_sale_price_dates_to',''),(3112,482,'_price',''),(3113,482,'_sold_individually',''),(3114,482,'_manage_stock','no'),(3115,482,'_backorders','no'),(3116,482,'_stock',''),(3117,482,'_product_image_gallery',''),(3118,482,'product_short_description',''),(3119,482,'product_specification',''),(3120,482,'product_shipping_information',''),(3121,483,'_edit_last','1'),(3122,483,'_edit_lock','1408021230:1'),(3123,483,'_visibility','visible'),(3124,483,'_stock_status','instock'),(3125,483,'total_sales','0'),(3126,483,'_downloadable','no'),(3127,483,'_virtual','no'),(3128,483,'_regular_price',''),(3129,483,'_sale_price',''),(3130,483,'_purchase_note',''),(3131,483,'_featured','no'),(3132,483,'_weight',''),(3133,483,'_length',''),(3134,483,'_width',''),(3135,483,'_height',''),(3136,483,'_sku',''),(3137,483,'_product_attributes','a:0:{}'),(3138,483,'_sale_price_dates_from',''),(3139,483,'_sale_price_dates_to',''),(3140,483,'_price',''),(3141,483,'_sold_individually',''),(3142,483,'_manage_stock','no'),(3143,483,'_backorders','no'),(3144,483,'_stock',''),(3145,483,'_product_image_gallery',''),(3146,483,'product_short_description',''),(3147,483,'product_specification',''),(3148,483,'product_shipping_information',''),(3149,484,'_edit_last','1'),(3150,484,'_edit_lock','1408021257:1'),(3151,484,'_visibility','visible'),(3152,484,'_stock_status','instock'),(3153,484,'total_sales','0'),(3154,484,'_downloadable','no'),(3155,484,'_virtual','no'),(3156,484,'_regular_price',''),(3157,484,'_sale_price',''),(3158,484,'_purchase_note',''),(3159,484,'_featured','no'),(3160,484,'_weight',''),(3161,484,'_length',''),(3162,484,'_width',''),(3163,484,'_height',''),(3164,484,'_sku',''),(3165,484,'_product_attributes','a:0:{}'),(3166,484,'_sale_price_dates_from',''),(3167,484,'_sale_price_dates_to',''),(3168,484,'_price',''),(3169,484,'_sold_individually',''),(3170,484,'_manage_stock','no'),(3171,484,'_backorders','no'),(3172,484,'_stock',''),(3173,484,'_product_image_gallery',''),(3174,484,'product_short_description',''),(3175,484,'product_specification',''),(3176,484,'product_shipping_information',''),(3177,486,'_edit_last','1'),(3178,486,'_visibility','visible'),(3179,486,'_stock_status','instock'),(3180,486,'total_sales','0'),(3181,486,'_downloadable','no'),(3182,486,'_virtual','no'),(3183,486,'_regular_price',''),(3184,486,'_sale_price',''),(3185,486,'_purchase_note',''),(3186,486,'_featured','no'),(3187,486,'_weight',''),(3188,486,'_length',''),(3189,486,'_width',''),(3190,486,'_height',''),(3191,486,'_sku',''),(3192,486,'_product_attributes','a:0:{}'),(3193,486,'_sale_price_dates_from',''),(3194,486,'_sale_price_dates_to',''),(3195,486,'_price',''),(3196,486,'_sold_individually',''),(3197,486,'_manage_stock','no'),(3198,486,'_backorders','no'),(3199,486,'_stock',''),(3200,486,'_product_image_gallery',''),(3201,486,'product_short_description',''),(3202,486,'product_specification',''),(3203,486,'product_shipping_information',''),(3204,486,'_edit_lock','1408021322:1'),(3205,487,'_edit_last','1'),(3206,487,'_edit_lock','1408021358:1'),(3207,487,'_visibility','visible'),(3208,487,'_stock_status','instock'),(3209,487,'total_sales','0'),(3210,487,'_downloadable','no'),(3211,487,'_virtual','no'),(3212,487,'_regular_price',''),(3213,487,'_sale_price',''),(3214,487,'_purchase_note',''),(3215,487,'_featured','no'),(3216,487,'_weight',''),(3217,487,'_length',''),(3218,487,'_width',''),(3219,487,'_height',''),(3220,487,'_sku',''),(3221,487,'_product_attributes','a:0:{}'),(3222,487,'_sale_price_dates_from',''),(3223,487,'_sale_price_dates_to',''),(3224,487,'_price',''),(3225,487,'_sold_individually',''),(3226,487,'_manage_stock','no'),(3227,487,'_backorders','no'),(3228,487,'_stock',''),(3229,487,'_product_image_gallery',''),(3230,487,'product_short_description',''),(3231,487,'product_specification',''),(3232,487,'product_shipping_information',''),(3233,488,'_edit_last','1'),(3234,488,'_edit_lock','1408021384:1'),(3235,488,'_visibility','visible'),(3236,488,'_stock_status','instock'),(3237,488,'total_sales','0'),(3238,488,'_downloadable','no'),(3239,488,'_virtual','no'),(3240,488,'_regular_price',''),(3241,488,'_sale_price',''),(3242,488,'_purchase_note',''),(3243,488,'_featured','no'),(3244,488,'_weight',''),(3245,488,'_length',''),(3246,488,'_width',''),(3247,488,'_height',''),(3248,488,'_sku',''),(3249,488,'_product_attributes','a:0:{}'),(3250,488,'_sale_price_dates_from',''),(3251,488,'_sale_price_dates_to',''),(3252,488,'_price',''),(3253,488,'_sold_individually',''),(3254,488,'_manage_stock','no'),(3255,488,'_backorders','no'),(3256,488,'_stock',''),(3257,488,'_product_image_gallery',''),(3258,488,'product_short_description',''),(3259,488,'product_specification',''),(3260,488,'product_shipping_information',''),(3261,489,'_edit_last','1'),(3262,489,'_edit_lock','1408021412:1'),(3263,489,'_visibility','visible'),(3264,489,'_stock_status','instock'),(3265,489,'total_sales','0'),(3266,489,'_downloadable','no'),(3267,489,'_virtual','no'),(3268,489,'_regular_price',''),(3269,489,'_sale_price',''),(3270,489,'_purchase_note',''),(3271,489,'_featured','no'),(3272,489,'_weight',''),(3273,489,'_length',''),(3274,489,'_width',''),(3275,489,'_height',''),(3276,489,'_sku',''),(3277,489,'_product_attributes','a:0:{}'),(3278,489,'_sale_price_dates_from',''),(3279,489,'_sale_price_dates_to',''),(3280,489,'_price',''),(3281,489,'_sold_individually',''),(3282,489,'_manage_stock','no'),(3283,489,'_backorders','no'),(3284,489,'_stock',''),(3285,489,'_product_image_gallery',''),(3286,489,'product_short_description',''),(3287,489,'product_specification',''),(3288,489,'product_shipping_information',''),(3289,490,'_edit_last','1'),(3290,490,'_edit_lock','1408021440:1'),(3291,490,'_visibility','visible'),(3292,490,'_stock_status','instock'),(3293,490,'total_sales','0'),(3294,490,'_downloadable','no'),(3295,490,'_virtual','no'),(3296,490,'_regular_price',''),(3297,490,'_sale_price',''),(3298,490,'_purchase_note',''),(3299,490,'_featured','no'),(3300,490,'_weight',''),(3301,490,'_length',''),(3302,490,'_width',''),(3303,490,'_height',''),(3304,490,'_sku',''),(3305,490,'_product_attributes','a:0:{}'),(3306,490,'_sale_price_dates_from',''),(3307,490,'_sale_price_dates_to',''),(3308,490,'_price',''),(3309,490,'_sold_individually',''),(3310,490,'_manage_stock','no'),(3311,490,'_backorders','no'),(3312,490,'_stock',''),(3313,490,'_product_image_gallery',''),(3314,490,'product_short_description',''),(3315,490,'product_specification',''),(3316,490,'product_shipping_information',''),(3317,491,'_edit_last','1'),(3318,491,'_edit_lock','1408021473:1'),(3319,491,'_visibility','visible'),(3320,491,'_stock_status','instock'),(3321,491,'total_sales','0'),(3322,491,'_downloadable','no'),(3323,491,'_virtual','no'),(3324,491,'_regular_price',''),(3325,491,'_sale_price',''),(3326,491,'_purchase_note',''),(3327,491,'_featured','no'),(3328,491,'_weight',''),(3329,491,'_length',''),(3330,491,'_width',''),(3331,491,'_height',''),(3332,491,'_sku',''),(3333,491,'_product_attributes','a:0:{}'),(3334,491,'_sale_price_dates_from',''),(3335,491,'_sale_price_dates_to',''),(3336,491,'_price',''),(3337,491,'_sold_individually',''),(3338,491,'_manage_stock','no'),(3339,491,'_backorders','no'),(3340,491,'_stock',''),(3341,491,'_product_image_gallery',''),(3342,491,'product_short_description',''),(3343,491,'product_specification',''),(3344,491,'product_shipping_information',''),(3345,492,'_edit_last','1'),(3346,492,'_edit_lock','1408021523:1'),(3347,492,'_visibility','visible'),(3348,492,'_stock_status','instock'),(3349,492,'total_sales','0'),(3350,492,'_downloadable','no'),(3351,492,'_virtual','no'),(3352,492,'_regular_price',''),(3353,492,'_sale_price',''),(3354,492,'_purchase_note',''),(3355,492,'_featured','no'),(3356,492,'_weight',''),(3357,492,'_length',''),(3358,492,'_width',''),(3359,492,'_height',''),(3360,492,'_sku',''),(3361,492,'_product_attributes','a:0:{}'),(3362,492,'_sale_price_dates_from',''),(3363,492,'_sale_price_dates_to',''),(3364,492,'_price',''),(3365,492,'_sold_individually',''),(3366,492,'_manage_stock','no'),(3367,492,'_backorders','no'),(3368,492,'_stock',''),(3369,492,'_product_image_gallery',''),(3370,492,'product_short_description',''),(3371,492,'product_specification',''),(3372,492,'product_shipping_information',''),(3373,493,'_edit_last','1'),(3374,493,'_edit_lock','1408021557:1'),(3375,493,'_visibility','visible'),(3376,493,'_stock_status','instock'),(3377,493,'total_sales','0'),(3378,493,'_downloadable','no'),(3379,493,'_virtual','no'),(3380,493,'_regular_price',''),(3381,493,'_sale_price',''),(3382,493,'_purchase_note',''),(3383,493,'_featured','no'),(3384,493,'_weight',''),(3385,493,'_length',''),(3386,493,'_width',''),(3387,493,'_height',''),(3388,493,'_sku',''),(3389,493,'_product_attributes','a:0:{}'),(3390,493,'_sale_price_dates_from',''),(3391,493,'_sale_price_dates_to',''),(3392,493,'_price',''),(3393,493,'_sold_individually',''),(3394,493,'_manage_stock','no'),(3395,493,'_backorders','no'),(3396,493,'_stock',''),(3397,493,'_product_image_gallery',''),(3398,493,'product_short_description',''),(3399,493,'product_specification',''),(3400,493,'product_shipping_information',''),(3401,494,'_edit_last','1'),(3402,494,'_edit_lock','1408021579:1'),(3403,494,'_visibility','visible'),(3404,494,'_stock_status','instock'),(3405,494,'total_sales','0'),(3406,494,'_downloadable','no'),(3407,494,'_virtual','no'),(3408,494,'_regular_price',''),(3409,494,'_sale_price',''),(3410,494,'_purchase_note',''),(3411,494,'_featured','no'),(3412,494,'_weight',''),(3413,494,'_length',''),(3414,494,'_width',''),(3415,494,'_height',''),(3416,494,'_sku',''),(3417,494,'_product_attributes','a:0:{}'),(3418,494,'_sale_price_dates_from',''),(3419,494,'_sale_price_dates_to',''),(3420,494,'_price',''),(3421,494,'_sold_individually',''),(3422,494,'_manage_stock','no'),(3423,494,'_backorders','no'),(3424,494,'_stock',''),(3425,494,'_product_image_gallery',''),(3426,494,'product_short_description',''),(3427,494,'product_specification',''),(3428,494,'product_shipping_information',''),(3429,495,'_edit_last','1'),(3430,495,'_edit_lock','1408713756:1'),(3431,495,'_visibility','visible'),(3432,495,'_stock_status','instock'),(3433,495,'total_sales','0'),(3434,495,'_downloadable','no'),(3435,495,'_virtual','no'),(3436,495,'_regular_price',''),(3437,495,'_sale_price',''),(3438,495,'_purchase_note',''),(3439,495,'_featured','no'),(3440,495,'_weight',''),(3441,495,'_length',''),(3442,495,'_width',''),(3443,495,'_height',''),(3444,495,'_sku',''),(3445,495,'_product_attributes','a:0:{}'),(3446,495,'_sale_price_dates_from',''),(3447,495,'_sale_price_dates_to',''),(3448,495,'_price',''),(3449,495,'_sold_individually',''),(3450,495,'_manage_stock','no'),(3451,495,'_backorders','no'),(3452,495,'_stock',''),(3453,495,'_product_image_gallery','539'),(3454,495,'product_short_description','<strong>Width:</strong> - 2-1/2\" (63.5 mm)<br>\r\n\r\n<strong>Height:</strong> - 1-1/2\" (38.1 mm)<br>\r\n\r\n<strong>Fasteners:</strong> - #6 x 5/8\'\' Pan head sheet metal screws.<br>'),(3455,495,'product_specification','<strong>Available Finishes:</strong> - MIL, DBA, GLD'),(3456,495,'product_shipping_information',''),(3457,496,'_edit_last','1'),(3458,496,'_edit_lock','1408713617:1'),(3459,496,'_visibility','visible'),(3460,496,'_stock_status','instock'),(3461,496,'total_sales','0'),(3462,496,'_downloadable','no'),(3463,496,'_virtual','no'),(3464,496,'_regular_price',''),(3465,496,'_sale_price',''),(3466,496,'_purchase_note',''),(3467,496,'_featured','no'),(3468,496,'_weight',''),(3469,496,'_length',''),(3470,496,'_width',''),(3471,496,'_height',''),(3472,496,'_sku',''),(3473,496,'_product_attributes','a:0:{}'),(3474,496,'_sale_price_dates_from',''),(3475,496,'_sale_price_dates_to',''),(3476,496,'_price',''),(3477,496,'_sold_individually',''),(3478,496,'_manage_stock','no'),(3479,496,'_backorders','no'),(3480,496,'_stock',''),(3481,496,'_product_image_gallery','539'),(3482,496,'product_short_description','<strong>Width:</strong> - 2-1/2\" (63.5 mm)<br>\r\n\r\n<strong>Height:</strong> - 1-1/2\" (38.1 mm)<br>\r\n\r\n<strong>Fasteners:</strong> - #6 x 5/8\'\' Pan head sheet metal screws.<br>'),(3483,496,'product_specification','<strong>Available Finishes:</strong> - MIL, DBA, GLD'),(3484,496,'product_shipping_information',''),(3485,497,'_edit_last','1'),(3486,497,'_edit_lock','1408021649:1'),(3487,497,'_visibility','visible'),(3488,497,'_stock_status','instock'),(3489,497,'total_sales','0'),(3490,497,'_downloadable','no'),(3491,497,'_virtual','no'),(3492,497,'_regular_price',''),(3493,497,'_sale_price',''),(3494,497,'_purchase_note',''),(3495,497,'_featured','no'),(3496,497,'_weight',''),(3497,497,'_length',''),(3498,497,'_width',''),(3499,497,'_height',''),(3500,497,'_sku',''),(3501,497,'_product_attributes','a:0:{}'),(3502,497,'_sale_price_dates_from',''),(3503,497,'_sale_price_dates_to',''),(3504,497,'_price',''),(3505,497,'_sold_individually',''),(3506,497,'_manage_stock','no'),(3507,497,'_backorders','no'),(3508,497,'_stock',''),(3509,497,'_product_image_gallery',''),(3510,497,'product_short_description',''),(3511,497,'product_specification',''),(3512,497,'product_shipping_information',''),(3513,498,'_edit_last','1'),(3514,498,'_edit_lock','1408021684:1'),(3515,498,'_visibility','visible'),(3516,498,'_stock_status','instock'),(3517,498,'total_sales','0'),(3518,498,'_downloadable','no'),(3519,498,'_virtual','no'),(3520,498,'_regular_price',''),(3521,498,'_sale_price',''),(3522,498,'_purchase_note',''),(3523,498,'_featured','no'),(3524,498,'_weight',''),(3525,498,'_length',''),(3526,498,'_width',''),(3527,498,'_height',''),(3528,498,'_sku',''),(3529,498,'_product_attributes','a:0:{}'),(3530,498,'_sale_price_dates_from',''),(3531,498,'_sale_price_dates_to',''),(3532,498,'_price',''),(3533,498,'_sold_individually',''),(3534,498,'_manage_stock','no'),(3535,498,'_backorders','no'),(3536,498,'_stock',''),(3537,498,'_product_image_gallery',''),(3538,498,'product_short_description',''),(3539,498,'product_specification',''),(3540,498,'product_shipping_information',''),(3541,499,'_edit_last','1'),(3542,499,'_edit_lock','1408021756:1'),(3543,499,'_visibility','visible'),(3544,499,'_stock_status','instock'),(3545,499,'total_sales','0'),(3546,499,'_downloadable','no'),(3547,499,'_virtual','no'),(3548,499,'_regular_price',''),(3549,499,'_sale_price',''),(3550,499,'_purchase_note',''),(3551,499,'_featured','no'),(3552,499,'_weight',''),(3553,499,'_length',''),(3554,499,'_width',''),(3555,499,'_height',''),(3556,499,'_sku',''),(3557,499,'_product_attributes','a:0:{}'),(3558,499,'_sale_price_dates_from',''),(3559,499,'_sale_price_dates_to',''),(3560,499,'_price',''),(3561,499,'_sold_individually',''),(3562,499,'_manage_stock','no'),(3563,499,'_backorders','no'),(3564,499,'_stock',''),(3565,499,'_product_image_gallery',''),(3566,499,'product_short_description',''),(3567,499,'product_specification',''),(3568,499,'product_shipping_information',''),(3569,500,'_edit_last','1'),(3570,500,'_edit_lock','1408021798:1'),(3571,500,'_visibility','visible'),(3572,500,'_stock_status','instock'),(3573,500,'total_sales','0'),(3574,500,'_downloadable','no'),(3575,500,'_virtual','no'),(3576,500,'_regular_price',''),(3577,500,'_sale_price',''),(3578,500,'_purchase_note',''),(3579,500,'_featured','no'),(3580,500,'_weight',''),(3581,500,'_length',''),(3582,500,'_width',''),(3583,500,'_height',''),(3584,500,'_sku',''),(3585,500,'_product_attributes','a:0:{}'),(3586,500,'_sale_price_dates_from',''),(3587,500,'_sale_price_dates_to',''),(3588,500,'_price',''),(3589,500,'_sold_individually',''),(3590,500,'_manage_stock','no'),(3591,500,'_backorders','no'),(3592,500,'_stock',''),(3593,500,'_product_image_gallery',''),(3594,500,'product_short_description',''),(3595,500,'product_specification',''),(3596,500,'product_shipping_information',''),(3597,501,'_edit_last','1'),(3598,501,'_edit_lock','1408021855:1'),(3599,501,'_visibility','visible'),(3600,501,'_stock_status','instock'),(3601,501,'total_sales','0'),(3602,501,'_downloadable','no'),(3603,501,'_virtual','no'),(3604,501,'_regular_price',''),(3605,501,'_sale_price',''),(3606,501,'_purchase_note',''),(3607,501,'_featured','no'),(3608,501,'_weight',''),(3609,501,'_length',''),(3610,501,'_width',''),(3611,501,'_height',''),(3612,501,'_sku',''),(3613,501,'_product_attributes','a:0:{}'),(3614,501,'_sale_price_dates_from',''),(3615,501,'_sale_price_dates_to',''),(3616,501,'_price',''),(3617,501,'_sold_individually',''),(3618,501,'_manage_stock','no'),(3619,501,'_backorders','no'),(3620,501,'_stock',''),(3621,501,'_product_image_gallery',''),(3622,501,'product_short_description',''),(3623,501,'product_specification',''),(3624,501,'product_shipping_information',''),(3625,502,'_edit_last','1'),(3626,502,'_edit_lock','1408021890:1'),(3627,502,'_visibility','visible'),(3628,502,'_stock_status','instock'),(3629,502,'total_sales','0'),(3630,502,'_downloadable','no'),(3631,502,'_virtual','no'),(3632,502,'_regular_price',''),(3633,502,'_sale_price',''),(3634,502,'_purchase_note',''),(3635,502,'_featured','no'),(3636,502,'_weight',''),(3637,502,'_length',''),(3638,502,'_width',''),(3639,502,'_height',''),(3640,502,'_sku',''),(3641,502,'_product_attributes','a:0:{}'),(3642,502,'_sale_price_dates_from',''),(3643,502,'_sale_price_dates_to',''),(3644,502,'_price',''),(3645,502,'_sold_individually',''),(3646,502,'_manage_stock','no'),(3647,502,'_backorders','no'),(3648,502,'_stock',''),(3649,502,'_product_image_gallery',''),(3650,502,'product_short_description',''),(3651,502,'product_specification',''),(3652,502,'product_shipping_information',''),(3653,503,'_edit_last','1'),(3654,503,'_edit_lock','1408021909:1'),(3655,503,'_visibility','visible'),(3656,503,'_stock_status','instock'),(3657,503,'total_sales','0'),(3658,503,'_downloadable','no'),(3659,503,'_virtual','no'),(3660,503,'_regular_price',''),(3661,503,'_sale_price',''),(3662,503,'_purchase_note',''),(3663,503,'_featured','no'),(3664,503,'_weight',''),(3665,503,'_length',''),(3666,503,'_width',''),(3667,503,'_height',''),(3668,503,'_sku',''),(3669,503,'_product_attributes','a:0:{}'),(3670,503,'_sale_price_dates_from',''),(3671,503,'_sale_price_dates_to',''),(3672,503,'_price',''),(3673,503,'_sold_individually',''),(3674,503,'_manage_stock','no'),(3675,503,'_backorders','no'),(3676,503,'_stock',''),(3677,503,'_product_image_gallery',''),(3678,503,'product_short_description',''),(3679,503,'product_specification',''),(3680,503,'product_shipping_information',''),(3681,504,'_edit_last','1'),(3682,504,'_edit_lock','1540581173:1'),(3683,504,'_visibility','visible'),(3684,504,'_stock_status','instock'),(3685,504,'total_sales','0'),(3686,504,'_downloadable','no'),(3687,504,'_virtual','no'),(3688,504,'_regular_price',''),(3689,504,'_sale_price',''),(3690,504,'_purchase_note',''),(3691,504,'_featured','no'),(3692,504,'_weight',''),(3693,504,'_length',''),(3694,504,'_width',''),(3695,504,'_height',''),(3696,504,'_sku',''),(3697,504,'_product_attributes','a:0:{}'),(3698,504,'_sale_price_dates_from',''),(3699,504,'_sale_price_dates_to',''),(3700,504,'_price',''),(3701,504,'_sold_individually',''),(3702,504,'_manage_stock','no'),(3703,504,'_backorders','no'),(3704,504,'_stock',''),(3705,504,'_product_image_gallery',''),(3706,504,'product_short_description',''),(3707,504,'product_specification',''),(3708,504,'product_shipping_information',''),(3709,505,'_edit_last','1'),(3710,505,'_edit_lock','1409118933:1'),(3711,505,'_visibility','visible'),(3712,505,'_stock_status','instock'),(3713,505,'total_sales','0'),(3714,505,'_downloadable','no'),(3715,505,'_virtual','no'),(3716,505,'_regular_price',''),(3717,505,'_sale_price',''),(3718,505,'_purchase_note',''),(3719,505,'_featured','yes'),(3720,505,'_weight',''),(3721,505,'_length',''),(3722,505,'_width',''),(3723,505,'_height',''),(3724,505,'_sku',''),(3725,505,'_product_attributes','a:0:{}'),(3726,505,'_sale_price_dates_from',''),(3727,505,'_sale_price_dates_to',''),(3728,505,'_price',''),(3729,505,'_sold_individually',''),(3730,505,'_manage_stock','no'),(3731,505,'_backorders','no'),(3732,505,'_stock',''),(3733,505,'_product_image_gallery',''),(3734,505,'product_short_description',''),(3735,505,'product_specification',''),(3736,505,'product_shipping_information',''),(3741,508,'_wp_attached_file','2014/08/image_left.png'),(3742,508,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:257;s:6:\"height\";i:279;s:4:\"file\";s:22:\"2014/08/image_left.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"image_left-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"image_left-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"image_left-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(3743,509,'_wp_attached_file','2014/08/image-right.png'),(3744,509,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:232;s:6:\"height\";i:306;s:4:\"file\";s:23:\"2014/08/image-right.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"image-right-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"image-right-227x300.png\";s:5:\"width\";i:227;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"image-right-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"image-right-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"image-right-232x300.png\";s:5:\"width\";i:232;s:6:\"height\";i:300;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:\"\";}}'),(3745,508,'_edit_lock','1408033401:1'),(3746,508,'_edit_last','1'),(3747,509,'_edit_lock','1541509854:1'),(3748,423,'post_views_count','1'),(3796,522,'_wp_attached_file','2014/08/naamm.gif'),(3792,519,'_thumbnail_id','520'),(3797,522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:166;s:6:\"height\";i:52;s:4:\"file\";s:17:\"2014/08/naamm.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"naamm-150x52.gif\";s:5:\"width\";i:150;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/gif\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"naamm-90x52.gif\";s:5:\"width\";i:90;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"naamm-150x52.gif\";s:5:\"width\";i:150;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/gif\";}}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:\"\";}}'),(3798,521,'_thumbnail_id','522'),(3799,521,'partners_url','http://www.naamm.org/'),(3800,216,'_wp_old_slug','the-door-and-hardware-institute'),(3801,523,'_wp_attached_file','2014/08/UT-Athletic-Bldg-Tampa3.jpg'),(3802,523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:968;s:6:\"height\";i:1296;s:4:\"file\";s:35:\"2014/08/UT-Athletic-Bldg-Tampa3.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa3-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"UT-Athletic-Bldg-Tampa3-764x1024.jpg\";s:5:\"width\";i:764;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"UT-Athletic-Bldg-Tampa3-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa3-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"UT-Athletic-Bldg-Tampa3-968x576.jpg\";s:5:\"width\";i:968;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.7999999999999998;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 4\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1343312284;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.85\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";}}'),(3803,329,'_thumbnail_id','523'),(3804,505,'_thumbnail_id','353'),(3805,505,'post_views_count','12'),(3806,504,'post_views_count','1'),(3807,436,'post_views_count','4'),(3808,525,'_wp_attached_file','2014/08/architectural-hinges-EC1100.png'),(3809,525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:227;s:6:\"height\";i:250;s:4:\"file\";s:39:\"2014/08/architectural-hinges-EC1100.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"architectural-hinges-EC1100-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"architectural-hinges-EC1100-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:39:\"architectural-hinges-EC1100-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(3810,436,'_thumbnail_id','525'),(3811,432,'_thumbnail_id','525'),(3812,435,'_thumbnail_id','525'),(3813,526,'_wp_attached_file','2014/08/architectural-hinges-ECBB1100.png'),(3814,526,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:227;s:6:\"height\";i:250;s:4:\"file\";s:41:\"2014/08/architectural-hinges-ECBB1100.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"architectural-hinges-ECBB1100-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"architectural-hinges-ECBB1100-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:41:\"architectural-hinges-ECBB1100-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(3815,442,'_thumbnail_id','526'),(3816,442,'post_views_count','5'),(3817,440,'_thumbnail_id','526'),(3818,439,'_thumbnail_id','526'),(3819,438,'_thumbnail_id','526'),(3820,437,'_thumbnail_id','526'),(3821,441,'_thumbnail_id','526'),(3822,441,'post_views_count','1'),(3823,528,'_wp_attached_file','2014/08/architectural-hinges-EC1105.png'),(3824,528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:250;s:4:\"file\";s:39:\"2014/08/architectural-hinges-EC1105.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"architectural-hinges-EC1105-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"architectural-hinges-EC1105-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:39:\"architectural-hinges-EC1105-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(3825,443,'_thumbnail_id','528'),(3826,529,'_wp_attached_file','2014/08/door-control-5200.png'),(3827,529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:183;s:4:\"file\";s:29:\"2014/08/door-control-5200.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"door-control-5200-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"door-control-5200-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"door-control-5200-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(3828,457,'_thumbnail_id','529'),(3829,457,'post_views_count','3'),(3830,530,'_wp_attached_file','2014/08/trim-and-auxiliary-30S.png'),(3831,530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:69;s:6:\"height\";i:250;s:4:\"file\";s:34:\"2014/08/trim-and-auxiliary-30S.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"trim-and-auxiliary-30S-69x150.png\";s:5:\"width\";i:69;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"trim-and-auxiliary-30S-69x90.png\";s:5:\"width\";i:69;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"trim-and-auxiliary-30S-69x150.png\";s:5:\"width\";i:69;s:6:\"height\";i:150;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:\"\";}}'),(3832,459,'_thumbnail_id','530'),(3833,531,'_wp_attached_file','2014/08/33.png'),(3834,531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:250;s:4:\"file\";s:14:\"2014/08/33.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"33-72x150.png\";s:5:\"width\";i:72;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:12:\"33-72x90.png\";s:5:\"width\";i:72;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:13:\"33-72x150.png\";s:5:\"width\";i:72;s:6:\"height\";i:150;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:\"\";}}'),(3835,460,'_thumbnail_id','531'),(3836,532,'_wp_attached_file','2014/08/trim-and-auxiliary-1413.png'),(3837,532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:64;s:6:\"height\";i:250;s:4:\"file\";s:35:\"2014/08/trim-and-auxiliary-1413.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"trim-and-auxiliary-1413-64x150.png\";s:5:\"width\";i:64;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"trim-and-auxiliary-1413-64x90.png\";s:5:\"width\";i:64;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"trim-and-auxiliary-1413-64x150.png\";s:5:\"width\";i:64;s:6:\"height\";i:150;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:\"\";}}'),(3838,468,'_thumbnail_id','532'),(3839,467,'_thumbnail_id','532'),(3840,466,'_thumbnail_id','532'),(3842,534,'_wp_attached_file','2014/08/trim-and-auxiliary-282D.png'),(3843,534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:40;s:6:\"height\";i:250;s:4:\"file\";s:35:\"2014/08/trim-and-auxiliary-282D.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"trim-and-auxiliary-282D-40x150.png\";s:5:\"width\";i:40;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"trim-and-auxiliary-282D-40x90.png\";s:5:\"width\";i:40;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"trim-and-auxiliary-282D-40x150.png\";s:5:\"width\";i:40;s:6:\"height\";i:150;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:\"\";}}'),(3844,469,'_thumbnail_id','534'),(3851,536,'_wp_attached_file','2014/08/trim-and-auxiliary-236W.png'),(3852,536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:233;s:6:\"height\";i:250;s:4:\"file\";s:35:\"2014/08/trim-and-auxiliary-236W.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"trim-and-auxiliary-236W-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"trim-and-auxiliary-236W-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"trim-and-auxiliary-236W-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(3853,470,'_thumbnail_id','536'),(3854,470,'_wp_old_slug','wall-stop-236-x-us10b'),(3861,537,'_wp_attached_file','2014/08/trim-and-auxiliary-244F.png'),(3862,537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:172;s:4:\"file\";s:35:\"2014/08/trim-and-auxiliary-244F.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"trim-and-auxiliary-244F-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"trim-and-auxiliary-244F-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"trim-and-auxiliary-244F-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(3863,477,'_thumbnail_id','537'),(3864,477,'_wp_old_slug','floor-stop-242f-x-us3'),(3865,538,'_wp_attached_file','2014/08/trim-and-auxiliary-307D.png'),(3866,538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:273;s:6:\"height\";i:250;s:4:\"file\";s:35:\"2014/08/trim-and-auxiliary-307D.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"trim-and-auxiliary-307D-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"trim-and-auxiliary-307D-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"trim-and-auxiliary-307D-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(3867,478,'_thumbnail_id','538'),(3868,539,'_wp_attached_file','2014/08/thresholds-and-weatherstripping-810S.png'),(3869,539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:115;s:4:\"file\";s:48:\"2014/08/thresholds-and-weatherstripping-810S.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"thresholds-and-weatherstripping-810S-150x115.png\";s:5:\"width\";i:150;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:46:\"thresholds-and-weatherstripping-810S-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"thresholds-and-weatherstripping-810S-150x115.png\";s:5:\"width\";i:150;s:6:\"height\";i:115;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:\"\";}}'),(3870,496,'_thumbnail_id','539'),(3871,495,'_thumbnail_id','539'),(3872,451,'post_views_count','2'),(3873,452,'post_views_count','2'),(3874,540,'_wp_attached_file','2014/08/locks-3200.png'),(3875,540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:234;s:4:\"file\";s:22:\"2014/08/locks-3200.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"locks-3200-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"locks-3200-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"locks-3200-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(3876,452,'_thumbnail_id','540'),(3877,470,'post_views_count','1'),(3878,477,'post_views_count','1'),(3879,440,'post_views_count','1'),(3880,456,'post_views_count','1'),(3881,443,'post_views_count','1'),(3885,561,'_menu_item_type','post_type'),(3886,561,'_menu_item_menu_item_parent','0'),(3887,561,'_menu_item_object_id','5'),(3888,561,'_menu_item_object','page'),(3889,561,'_menu_item_target',''),(3890,561,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3891,561,'_menu_item_xfn',''),(3892,561,'_menu_item_url',''),(3894,562,'_menu_item_type','post_type'),(3895,562,'_menu_item_menu_item_parent','0'),(3896,562,'_menu_item_object_id','9'),(3897,562,'_menu_item_object','page'),(3898,562,'_menu_item_target',''),(3899,562,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3900,562,'_menu_item_xfn',''),(3901,562,'_menu_item_url',''),(3903,563,'_menu_item_type','post_type'),(3904,563,'_menu_item_menu_item_parent','0'),(3905,563,'_menu_item_object_id','7'),(3906,563,'_menu_item_object','page'),(3907,563,'_menu_item_target',''),(3908,563,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3909,563,'_menu_item_xfn',''),(3910,563,'_menu_item_url',''),(3912,564,'_menu_item_type','post_type'),(3913,564,'_menu_item_menu_item_parent','0'),(3914,564,'_menu_item_object_id','407'),(3915,564,'_menu_item_object','page'),(3916,564,'_menu_item_target',''),(3917,564,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3918,564,'_menu_item_xfn',''),(3919,564,'_menu_item_url',''),(3921,565,'_menu_item_type','post_type'),(3922,565,'_menu_item_menu_item_parent','0'),(3923,565,'_menu_item_object_id','188'),(3924,565,'_menu_item_object','page'),(3925,565,'_menu_item_target',''),(3926,565,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3927,565,'_menu_item_xfn',''),(3928,565,'_menu_item_url',''),(3930,315,'_wp_attachment_backup_sizes','a:9:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1296;s:6:\"height\";i:968;s:4:\"file\";s:33:\"Holland-Knight-Suntrust-Tampa.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:41:\"Holland-Knight-Suntrust-Tampa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:41:\"Holland-Knight-Suntrust-Tampa-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:42:\"Holland-Knight-Suntrust-Tampa-1024x764.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:764;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:39:\"Holland-Knight-Suntrust-Tampa-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:41:\"Holland-Knight-Suntrust-Tampa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:41:\"Holland-Knight-Suntrust-Tampa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"post-thumbnail-orig\";a:4:{s:4:\"file\";s:41:\"Holland-Knight-Suntrust-Tampa-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"twentyfourteen-full-width-orig\";a:4:{s:4:\"file\";s:42:\"Holland-Knight-Suntrust-Tampa-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(3932,599,'_menu_item_type','post_type'),(3933,599,'_menu_item_menu_item_parent','0'),(3934,599,'_menu_item_object_id','11'),(3935,599,'_menu_item_object','page'),(3936,599,'_menu_item_target',''),(3937,599,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3938,599,'_menu_item_xfn',''),(3939,599,'_menu_item_url',''),(3947,602,'_menu_item_object','page'),(3948,602,'_menu_item_target',''),(3949,602,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(3950,602,'_menu_item_xfn',''),(3951,602,'_menu_item_url',''),(3956,605,'_edit_last','1'),(3957,605,'_edit_lock','1618381454:1'),(3958,605,'_wp_page_template','default'),(4104,851,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:364;s:6:\"height\";i:138;s:4:\"file\";s:28:\"2019/01/laser-spine-pink.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"laser-spine-pink-150x138.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"laser-spine-pink-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"laser-spine-pink-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"laser-spine-pink-150x138.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"laser-spine-pink-300x138.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:138;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:\"\";}}'),(4103,851,'_wp_attached_file','2019/01/laser-spine-pink.jpg'),(3964,631,'_edit_last','1'),(3965,631,'_wp_page_template','default'),(3966,631,'_edit_lock','1618395614:1'),(3967,633,'_edit_last','1'),(3968,633,'_wp_page_template','default'),(3969,633,'_edit_lock','1618381630:1'),(3970,697,'_wp_attached_file','2018/11/ahc-.png'),(3971,697,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:151;s:4:\"file\";s:16:\"2018/11/ahc-.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"ahc--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:14:\"ahc--90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"ahc--150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a: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:\"\";}}'),(3972,706,'_wp_attached_file','2018/11/Walnut-Kensington-pre-fin.jpg'),(3973,706,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:1500;s:4:\"file\";s:37:\"2018/11/Walnut-Kensington-pre-fin.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Walnut-Kensington-pre-fin-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Walnut-Kensington-pre-fin-115x300.jpg\";s:5:\"width\";i:115;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Walnut-Kensington-pre-fin-392x1024.jpg\";s:5:\"width\";i:392;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"Walnut-Kensington-pre-fin-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:37:\"Walnut-Kensington-pre-fin-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"Walnut-Kensington-pre-fin-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"Walnut-Kensington-pre-fin-575x372.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:37:\"Walnut-Kensington-pre-fin-575x576.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:576;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:\"\";}}'),(3975,761,'_edit_last','1'),(3976,761,'_edit_lock','1541683344:1'),(3990,763,'_wp_attached_file','2018/11/barber-poll.jpg'),(3981,761,'_wp_old_slug','understanding-wood-grain-and-cuts'),(3991,763,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:620;s:6:\"height\";i:340;s:4:\"file\";s:23:\"2018/11/barber-poll.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"barber-poll-150x150.jpg\";s:5:\"width\";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:\"barber-poll-300x164.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"barber-poll-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"barber-poll-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"barber-poll-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:\"\";}}'),(3992,761,'_thumbnail_id','763'),(3996,782,'_wp_page_template','default'),(3995,782,'_edit_last','1'),(3997,782,'_edit_lock','1618923769:1'),(3998,785,'_wp_attached_file','2018/11/StrazHall_lrg.jpg'),(3999,785,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:466;s:4:\"file\";s:25:\"2018/11/StrazHall_lrg.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"StrazHall_lrg-150x150.jpg\";s:5:\"width\";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:\"StrazHall_lrg-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"StrazHall_lrg-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"StrazHall_lrg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"StrazHall_lrg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"StrazHall_lrg-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;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:\"\";}}'),(4000,782,'_thumbnail_id','876'),(4001,788,'_menu_item_type','post_type'),(4002,788,'_menu_item_menu_item_parent','0'),(4003,788,'_menu_item_object_id','782'),(4004,788,'_menu_item_object','page'),(4005,788,'_menu_item_target',''),(4006,788,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4007,788,'_menu_item_xfn',''),(4008,788,'_menu_item_url',''),(4010,791,'_wp_attached_file','2018/11/UT_TampaBay_Banner-e1541766139654.jpg'),(4011,791,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:450;s:4:\"file\";s:45:\"2018/11/UT_TampaBay_Banner-e1541766139654.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"UT_TampaBay_Banner-e1541766139654-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"UT_TampaBay_Banner-e1541766139654-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"UT_TampaBay_Banner-e1541766139654-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:45:\"UT_TampaBay_Banner-e1541766139654-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:45:\"UT_TampaBay_Banner-e1541766139654-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:45:\"UT_TampaBay_Banner-e1541766139654-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;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:\"\";}}'),(4012,794,'_edit_last','1'),(4013,794,'_edit_lock','1547386150:1'),(4014,794,'_wp_page_template','default'),(4015,794,'_thumbnail_id','392'),(4016,812,'_menu_item_type','post_type'),(4017,812,'_menu_item_menu_item_parent','0'),(4018,812,'_menu_item_object_id','794'),(4019,812,'_menu_item_object','page'),(4020,812,'_menu_item_target',''),(4021,812,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4022,812,'_menu_item_xfn',''),(4023,812,'_menu_item_url',''),(4107,855,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1370;s:6:\"height\";i:913;s:4:\"file\";s:22:\"2019/01/sparkman-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"sparkman-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"sparkman-1-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"sparkman-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"sparkman-1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"sparkman-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"sparkman-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"sparkman-1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:23:\"sparkman-1-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;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:\"\";}}'),(4106,855,'_wp_attached_file','2019/01/sparkman-1.jpg'),(4105,851,'_edit_lock','1547042506:1'),(4039,816,'_wp_page_template','default'),(4038,816,'_edit_last','1'),(4040,816,'_edit_lock','1541702113:1'),(4041,819,'_edit_last','1'),(4042,819,'_edit_lock','1548687875:1'),(4043,819,'_thumbnail_id','822'),(4046,822,'_wp_attached_file','2018/11/standard_ic_cores-e1547385488233.jpg'),(4047,822,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:333;s:6:\"height\";i:333;s:4:\"file\";s:44:\"2018/11/standard_ic_cores-e1547385488233.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"standard_ic_cores-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"standard_ic_cores-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"standard_ic_cores-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"standard_ic_cores-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"standard_ic_cores-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"standard_ic_cores-566x372.jpg\";s:5:\"width\";i:566;s:6:\"height\";i:372;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:\"\";}}'),(4050,819,'_wp_old_slug','standard-vs-removable-core-cylinders'),(4096,791,'_wp_attachment_backup_sizes','a:7:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:720;s:6:\"height\";i:450;s:4:\"file\";s:22:\"UT_TampaBay_Banner.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:30:\"UT_TampaBay_Banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:30:\"UT_TampaBay_Banner-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:28:\"UT_TampaBay_Banner-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:30:\"UT_TampaBay_Banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:30:\"UT_TampaBay_Banner-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"post-thumbnail-orig\";a:4:{s:4:\"file\";s:30:\"UT_TampaBay_Banner-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(4170,899,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:629;s:6:\"height\";i:450;s:4:\"file\";s:47:\"2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"UT-Bob-Martinez-Athletics-Ctr-Tampa-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:45:\"UT-Bob-Martinez-Athletics-Ctr-Tampa-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:47:\"UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:47:\"UT-Bob-Martinez-Athletics-Ctr-Tampa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:47:\"UT-Bob-Martinez-Athletics-Ctr-Tampa-629x372.jpg\";s:5:\"width\";i:629;s:6:\"height\";i:372;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:\"\";}}'),(4098,203,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:771;s:6:\"height\";i:344;s:4:\"file\";s:17:\"banner-image1.jpg\";}}'),(4099,785,'_edit_lock','1547045490:1'),(4101,5,'vantage_metaslider_slider','demo'),(4102,5,'vantage_metaslider_slider_stretch','1'),(4108,855,'_edit_lock','1547039665:1'),(4109,857,'_edit_last','1'),(4110,857,'_edit_lock','1547047407:1'),(4111,857,'_wp_page_template','default'),(4112,860,'_edit_last','1'),(4113,860,'_edit_lock','1618393357:1'),(4114,860,'_wp_page_template','default'),(4115,862,'_edit_last','1'),(4116,862,'_edit_lock','1618330574:1'),(4117,862,'_wp_page_template','default'),(4118,867,'_wp_attached_file','2019/01/marshall-center-front.jpg'),(4119,867,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1516;s:4:\"file\";s:33:\"2019/01/marshall-center-front.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"marshall-center-front-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"marshall-center-front-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"marshall-center-front-1024x776.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:776;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"marshall-center-front-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"marshall-center-front-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"marshall-center-front-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"marshall-center-front-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:34:\"marshall-center-front-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;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:1231562310;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(4120,868,'_wp_attached_file','2019/01/marshall-center-hall.jpg'),(4121,868,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1310;s:4:\"file\";s:32:\"2019/01/marshall-center-hall.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"marshall-center-hall-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"marshall-center-hall-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"marshall-center-hall-1024x670.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:670;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"marshall-center-hall-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"marshall-center-hall-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"marshall-center-hall-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"marshall-center-hall-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:33:\"marshall-center-hall-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;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:1231511338;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(4122,869,'_wp_attached_file','2019/01/sparkman-2.jpg'),(4123,869,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:22:\"2019/01/sparkman-2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"sparkman-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"sparkman-2-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"sparkman-2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"sparkman-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"sparkman-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"sparkman-2-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;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:1543537743;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(4124,870,'_wp_attached_file','2019/01/sparkman-3.png'),(4125,870,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1140;s:6:\"height\";i:641;s:4:\"file\";s:22:\"2019/01/sparkman-3.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"sparkman-3-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:22:\"sparkman-3-300x168.png\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"sparkman-3-1024x575.png\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"sparkman-3-90x90.png\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"sparkman-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"sparkman-3-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"sparkman-3-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:23:\"sparkman-3-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;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:\"\";}}'),(4126,871,'_wp_attached_file','2019/01/strazhall-2.jpg'),(4127,871,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2019/01/strazhall-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"strazhall-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"strazhall-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"strazhall-2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"strazhall-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"strazhall-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"strazhall-2-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:23:\"strazhall-2-700x576.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:576;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:\"\";}}'),(4128,872,'_wp_attached_file','2019/01/straz-hall3.jpg'),(4129,872,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:467;s:4:\"file\";s:23:\"2019/01/straz-hall3.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"straz-hall3-150x150.jpg\";s:5:\"width\";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:\"straz-hall3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"straz-hall3-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"straz-hall3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"straz-hall3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"straz-hall3-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;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:\"\";}}'),(4130,873,'_wp_attached_file','2019/01/city-hall-front.jpg'),(4131,873,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:685;s:4:\"file\";s:27:\"2019/01/city-hall-front.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"city-hall-front-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"city-hall-front-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"city-hall-front-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"city-hall-front-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"city-hall-front-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"city-hall-front-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:28:\"city-hall-front-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;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:\"\";}}'),(4132,874,'_wp_attached_file','2019/01/city-hall-elevation.jpg'),(4133,874,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:685;s:4:\"file\";s:31:\"2019/01/city-hall-elevation.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"city-hall-elevation-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"city-hall-elevation-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"city-hall-elevation-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"city-hall-elevation-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"city-hall-elevation-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"city-hall-elevation-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:32:\"city-hall-elevation-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;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:\"\";}}'),(4134,875,'_wp_attached_file','2019/01/skyline-tampa.jpg'),(4135,875,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:820;s:6:\"height\";i:317;s:4:\"file\";s:25:\"2019/01/skyline-tampa.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"skyline-tampa-150x150.jpg\";s:5:\"width\";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:\"skyline-tampa-300x115.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"skyline-tampa-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"skyline-tampa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"skyline-tampa-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"skyline-tampa-672x317.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:317;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:\"\";}}'),(4136,876,'_wp_attached_file','2019/01/tampa-skyline-2.jpg'),(4137,876,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2019/01/tampa-skyline-2.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"tampa-skyline-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"tampa-skyline-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"tampa-skyline-2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"tampa-skyline-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"tampa-skyline-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"tampa-skyline-2-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:27:\"tampa-skyline-2-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;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:\"\";}}'),(4138,867,'_edit_lock','1547042436:1'),(4139,877,'_wp_attached_file','2019/01/laser-spine1.jpg'),(4140,877,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:168;s:4:\"file\";s:24:\"2019/01/laser-spine1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"laser-spine1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"laser-spine1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"laser-spine1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a: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:\"\";}}'),(4141,878,'_wp_attached_file','2019/01/Laser-Spine-Institute-B.jpg'),(4142,878,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2033;s:6:\"height\";i:1017;s:4:\"file\";s:35:\"2019/01/Laser-Spine-Institute-B.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Laser-Spine-Institute-B-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Laser-Spine-Institute-B-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Laser-Spine-Institute-B-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"Laser-Spine-Institute-B-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"Laser-Spine-Institute-B-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"Laser-Spine-Institute-B-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"Laser-Spine-Institute-B-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"Laser-Spine-Institute-B-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;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:\"\";}}'),(4143,877,'_edit_lock','1548678134:1'),(4144,874,'_edit_lock','1547042766:1'),(4145,879,'_wp_attached_file','2019/01/usf-camls-side.jpg'),(4146,879,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:26:\"2019/01/usf-camls-side.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"usf-camls-side-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"usf-camls-side-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"usf-camls-side-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"usf-camls-side-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"usf-camls-side-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"usf-camls-side-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"usf-camls-side-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:27:\"usf-camls-side-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;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:\"\";}}'),(4147,880,'_wp_attached_file','2019/01/usf-camls-auditorium.jpg'),(4148,880,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1240;s:4:\"file\";s:32:\"2019/01/usf-camls-auditorium.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"usf-camls-auditorium-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"usf-camls-auditorium-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"usf-camls-auditorium-1024x634.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:634;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"usf-camls-auditorium-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"usf-camls-auditorium-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"usf-camls-auditorium-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"usf-camls-auditorium-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:33:\"usf-camls-auditorium-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;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:1335105566;s:9:\"copyright\";s:24:\"Copyright Skycraft Media\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(4149,881,'_wp_attached_file','2019/01/usf-camls-logo.jpg'),(4150,881,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1325;s:4:\"file\";s:26:\"2019/01/usf-camls-logo.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"usf-camls-logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"usf-camls-logo-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"usf-camls-logo-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"usf-camls-logo-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"usf-camls-logo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"usf-camls-logo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"usf-camls-logo-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:27:\"usf-camls-logo-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;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:1328813653;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(4151,881,'_edit_lock','1547042847:1'),(4152,883,'_edit_last','1'),(4153,883,'_edit_lock','1618393357:1'),(4154,883,'_wp_page_template','default'),(4155,885,'_edit_last','1'),(4156,885,'_edit_lock','1547047256:1'),(4157,885,'_wp_page_template','default'),(4158,888,'_edit_last','1'),(4159,888,'_edit_lock','1548678756:1'),(4160,888,'_wp_page_template','default'),(4161,860,'_thumbnail_id','791'),(4162,332,'_edit_lock','1547044487:1'),(4169,899,'_wp_attached_file','2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg'),(4164,333,'_edit_lock','1547044693:1'),(4165,339,'_edit_lock','1547044626:1'),(4166,336,'_edit_lock','1547044632:1'),(4167,335,'_edit_lock','1547044783:1'),(4168,879,'_edit_lock','1547044976:1'),(4175,902,'_edit_lock','1547046441:1'),(4177,868,'_edit_lock','1547046531:1'),(4178,878,'_edit_lock','1547046701:1'),(4179,914,'_wp_attached_file','2019/01/laser-spine2.jpg'),(4180,914,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1115;s:6:\"height\";i:750;s:4:\"file\";s:24:\"2019/01/laser-spine2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"laser-spine2-150x150.jpg\";s:5:\"width\";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:\"laser-spine2-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"laser-spine2-1024x688.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:688;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"laser-spine2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"laser-spine2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"laser-spine2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"laser-spine2-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:25:\"laser-spine2-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;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:\"\";}}'),(4423,1109,'_wp_attached_file','woocommerce-placeholder.png'),(4424,1109,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-672x372.png\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1038x576.png\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4187,945,'_edit_last','1'),(4188,945,'project_address','402 W Kennedy Blvd, Tampa FL, 33606, USA'),(4189,945,'featured','1'),(4190,945,'_edit_lock','1618392012:1'),(4191,945,'_thumbnail_id','791'),(4210,953,'_wp_attached_file','2019/01/corp-ctr4-1.jpg'),(4211,953,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:465;s:4:\"file\";s:23:\"2019/01/corp-ctr4-1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"corp-ctr4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"corp-ctr4-1-300x178.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"corp-ctr4-1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"corp-ctr4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"corp-ctr4-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"corp-ctr4-1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;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:\"\";}}'),(4212,951,'_thumbnail_id','952'),(4213,951,'project_address',''),(4214,951,'featured',''),(4241,989,'_edit_last','1'),(4215,954,'_edit_last','1'),(4216,954,'_edit_lock','1618394240:1'),(4218,955,'_wp_attached_file','2019/01/city-hall-elevation-bw.jpg'),(4219,955,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:767;s:4:\"file\";s:34:\"2019/01/city-hall-elevation-bw.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"city-hall-elevation-bw-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"city-hall-elevation-bw-300x239.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"city-hall-elevation-bw-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"city-hall-elevation-bw-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"city-hall-elevation-bw-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"city-hall-elevation-bw-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:34:\"city-hall-elevation-bw-960x576.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:576;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:21:\"www.TampaChanging.com\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(4225,954,'_thumbnail_id','955'),(4226,957,'_wp_attached_file','2014/06/blueprints-stock-1-e1548678314535.jpg'),(4227,957,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:45:\"2014/06/blueprints-stock-1-e1548678314535.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"blueprints-stock-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"blueprints-stock-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"blueprints-stock-1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"blueprints-stock-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"blueprints-stock-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"blueprints-stock-1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:31:\"blueprints-stock-1-1000x576.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:576;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:\"\";}}'),(4223,954,'project_address','Old City Hall, Tampa, FL 33602, United States'),(4224,954,'featured','1'),(4230,822,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:566;s:6:\"height\";i:566;s:4:\"file\";s:21:\"standard_ic_cores.jpg\";}}'),(4231,986,'_wp_attached_file','2018/11/sawgrass-interior.jpeg'),(4232,986,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:664;s:4:\"file\";s:30:\"2018/11/sawgrass-interior.jpeg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"sawgrass-interior-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"sawgrass-interior-300x207.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"sawgrass-interior-90x90.jpeg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"sawgrass-interior-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"sawgrass-interior-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"sawgrass-interior-672x372.jpeg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"sawgrass-interior-960x576.jpeg\";s:5:\"width\";i:960;s:6:\"height\";i:576;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:\"\";}}'),(4233,987,'_wp_attached_file','2018/11/sawgrass-aerial1.jpg'),(4234,987,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:472;s:4:\"file\";s:28:\"2018/11/sawgrass-aerial1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"sawgrass-aerial1-150x150.jpg\";s:5:\"width\";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:\"sawgrass-aerial1-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"sawgrass-aerial1-1024x409.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:409;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"sawgrass-aerial1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"sawgrass-aerial1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"sawgrass-aerial1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"sawgrass-aerial1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:29:\"sawgrass-aerial1-1038x472.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:472;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:\"\";}}'),(4235,987,'_edit_lock','1548677394:1'),(4236,988,'_edit_last','1'),(4237,988,'_edit_lock','1618394423:1'),(4238,988,'project_address','4103 USF Cedar Cir, Tampa, FL 33620, United States'),(4239,988,'featured','1'),(4240,988,'_thumbnail_id','867'),(4242,989,'_edit_lock','1618390293:1'),(4243,989,'_wp_page_template','default'),(4244,986,'_edit_lock','1547387528:1'),(4245,994,'_edit_last','1'),(4246,994,'_edit_lock','1547387830:1'),(4247,994,'_wp_page_template','default'),(4248,952,'_edit_lock','1548678124:1'),(4249,1013,'_edit_last','1'),(4250,1013,'_edit_lock','1548688587:1'),(4255,1021,'_wp_attached_file','2019/01/sawgrass-marriott.jpg'),(4256,1021,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:29:\"2019/01/sawgrass-marriott.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"sawgrass-marriott-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"sawgrass-marriott-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"sawgrass-marriott-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"sawgrass-marriott-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"sawgrass-marriott-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"sawgrass-marriott-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"sawgrass-marriott-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:30:\"sawgrass-marriott-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;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:\"\";}}'),(4257,1022,'_wp_attached_file','2019/01/sawgrass-marriott-ext-e1548677759412.jpg'),(4258,1022,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:358;s:6:\"height\";i:284;s:4:\"file\";s:48:\"2019/01/sawgrass-marriott-ext-e1548677759412.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"sawgrass-marriott-ext-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"sawgrass-marriott-ext-300x237.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:237;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"sawgrass-marriott-ext-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"sawgrass-marriott-ext-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"sawgrass-marriott-ext-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;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:\"\";}}'),(4259,1021,'_edit_lock','1548677458:1'),(4260,1022,'_edit_lock','1548677880:1'),(4261,1022,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:358;s:6:\"height\";i:284;s:4:\"file\";s:25:\"sawgrass-marriott-ext.jpg\";}}'),(4262,1025,'_wp_attached_file','2019/01/sawgrass-marriott-ext1.jpg'),(4263,1025,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:500;s:4:\"file\";s:34:\"2019/01/sawgrass-marriott-ext1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"sawgrass-marriott-ext1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"sawgrass-marriott-ext1-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"sawgrass-marriott-ext1-1024x400.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"sawgrass-marriott-ext1-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"sawgrass-marriott-ext1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"sawgrass-marriott-ext1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"sawgrass-marriott-ext1-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"sawgrass-marriott-ext1-1038x500.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:500;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:\"\";}}'),(4264,1026,'_wp_attached_file','2019/01/sawgrass-marriott-int2.jpg'),(4265,1026,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:34:\"2019/01/sawgrass-marriott-int2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"sawgrass-marriott-int2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"sawgrass-marriott-int2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"sawgrass-marriott-int2-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"sawgrass-marriott-int2-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"sawgrass-marriott-int2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"sawgrass-marriott-int2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"sawgrass-marriott-int2-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:35:\"sawgrass-marriott-int2-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;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:\"\";}}'),(4266,1025,'_edit_lock','1548678105:1'),(4267,1026,'_edit_lock','1548677989:1'),(4268,953,'_edit_lock','1548678115:1'),(4269,875,'_edit_lock','1548678139:1'),(4270,957,'_edit_lock','1548678191:1'),(4271,957,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:22:\"blueprints-stock-1.jpg\";}}'),(4272,957,'_edit_last','1'),(4273,1030,'_wp_attached_file','2014/06/corp-ctr3-1-scaled.jpg'),(4274,1030,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1238;s:6:\"height\";i:696;s:4:\"file\";s:30:\"2014/06/corp-ctr3-1-scaled.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"corp-ctr3-1-scaled-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"corp-ctr3-1-scaled-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"corp-ctr3-1-scaled-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"corp-ctr3-1-scaled-90x90.jpg\";s:5:\"width\";i:90;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"corp-ctr3-1-scaled-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"corp-ctr3-1-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"corp-ctr3-1-scaled-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:31:\"corp-ctr3-1-scaled-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;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:\"\";}}'),(4275,988,'_wp_old_slug','sawgrass-marriot-resort-spa'),(4388,1013,'_thumbnail_id','310'),(4391,310,'_wp_attachment_backup_sizes','a:3:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1224;s:6:\"height\";i:1632;s:4:\"file\";s:19:\"e-INS-St.Pete-1.jpg\";}s:18:\"full-1548688147648\";a:3:{s:5:\"width\";i:800;s:6:\"height\";i:1067;s:4:\"file\";s:34:\"e-INS-St.Pete-1-e1548688109498.jpg\";}s:18:\"full-1548688358472\";a:3:{s:5:\"width\";i:600;s:6:\"height\";i:800;s:4:\"file\";s:34:\"e-INS-St.Pete-1-e1548688147648.jpg\";}}'),(4402,822,'_edit_lock','1548688606:1'),(4426,185,'_wp_old_date','2014-07-21'),(4425,496,'post_views_count','1'),(4427,182,'_wp_old_date','2014-07-21'),(4428,788,'_wp_old_date','2018-11-07'),(4429,602,'_wp_old_date','2018-11-06'),(4430,812,'_wp_old_date','2018-11-08'),(4432,184,'_wp_old_date','2014-07-21'),(4433,1118,'_wp_attached_file','2021/04/home-banner-web.jpg'),(4434,1118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1238;s:6:\"height\";i:458;s:4:\"file\";s:27:\"2021/04/home-banner-web.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"home-banner-web-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:28:\"home-banner-web-1024x379.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"home-banner-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"home-banner-web-768x284.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"home-banner-web-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:28:\"home-banner-web-1038x458.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:458;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"home-banner-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"home-banner-web-300x111.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"home-banner-web-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"home-banner-web-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"home-banner-web-300x111.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"home-banner-web-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4435,5,'_thumbnail_id','1118'),(4436,1120,'_edit_last','1'),(4437,1120,'_edit_lock','1618394423:1'),(4454,860,'martygeocoderlatlng','20.0127399,64.4523598'),(4455,1142,'_wp_attached_file','2021/04/marriott_sawgrass_interior.jpg'),(4456,1142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:38:\"2021/04/marriott_sawgrass_interior.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"marriott_sawgrass_interior-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"marriott_sawgrass_interior-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"marriott_sawgrass_interior-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"marriott_sawgrass_interior-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"marriott_sawgrass_interior-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"twentyfourteen-full-width\";a:4:{s:4:\"file\";s:39:\"marriott_sawgrass_interior-1038x576.jpg\";s:5:\"width\";i:1038;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"marriott_sawgrass_interior-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:38:\"marriott_sawgrass_interior-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"marriott_sawgrass_interior-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:38:\"marriott_sawgrass_interior-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:38:\"marriott_sawgrass_interior-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"marriott_sawgrass_interior-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4440,1120,'_thumbnail_id','1122'),(4441,1120,'project_address','Bob Martinez Athletics Center, North Boulevard, Tampa, FL, USA'),(4442,1120,'featured','1'),(4443,950,'_wp_trash_meta_status','publish'),(4444,950,'_wp_trash_meta_time','1618293827'),(4445,950,'_wp_desired_post_slug','laser-spine-institute'),(4446,1122,'_wp_attached_file','2021/04/utbmac_interior_doors.jpg'),(4447,1122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:33:\"2021/04/utbmac_interior_doors.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"utbmac_interior_doors-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"utbmac_interior_doors-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"utbmac_interior_doors-640x372.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"utbmac_interior_doors-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"utbmac_interior_doors-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"utbmac_interior_doors-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"utbmac_interior_doors-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"utbmac_interior_doors-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"utbmac_interior_doors-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 8\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1595429184\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:18:\"0.0057803468208092\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4448,1122,'_edit_lock','1618294147:1'),(4457,1142,'_edit_lock','1618389837:1'),(4458,1146,'_edit_last','1'),(4459,1146,'_edit_lock','1618392015:1'),(4460,1146,'_wp_page_template','default'),(4461,1156,'_edit_last','1'),(4462,1156,'_edit_lock','1618394061:1'),(4463,1156,'project_address',''),(4464,1156,'featured',''),(4465,1157,'_edit_last','1'),(4466,1157,'_edit_lock','1618394228:1'),(4467,1157,'_wp_trash_meta_status','draft'),(4468,1157,'_wp_trash_meta_time','1618394284'),(4469,1157,'_wp_desired_post_slug',''),(4470,1159,'_edit_last','1'),(4471,1159,'_edit_lock','1618835467:1'),(4472,1159,'_thumbnail_id','1142'),(4473,1159,'project_address',''),(4474,1159,'featured',''),(4475,1166,'_wp_attached_file','2021/04/favicon.ico'),(4476,1166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:16;s:6:\"height\";i:16;s:4:\"file\";s:19:\"2021/04/favicon.ico\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4481,185,'_wp_old_date','2021-04-12'),(4482,182,'_wp_old_date','2021-04-12'),(4483,788,'_wp_old_date','2021-04-12'),(4484,602,'_wp_old_date','2021-04-12'),(4485,812,'_wp_old_date','2021-04-12'),(4486,184,'_wp_old_date','2021-04-12');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT '0',
`post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`),
KEY `post_name` (`post_name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=1172 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (854,1,'2019-01-09 08:08:13','2019-01-09 13:08:13','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine-pink.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Laser Spine Institute</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 08:08:13','2019-01-09 13:08:13','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(851,1,'2019-01-09 08:06:13','2019-01-09 13:06:13','','laser-spine-pink','','inherit','open','open','','laser-spine-pink','','','2019-01-09 08:06:13','2019-01-09 13:06:13','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine-pink.jpg',0,'attachment','image/jpeg',0),(101,1,'2014-07-18 11:37:19','2014-07-18 11:37:19','','index2','','inherit','open','open','','index2','','','2014-07-18 11:37:19','2014-07-18 11:37:19','',100,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index2.jpeg',0,'attachment','image/jpeg',0),(5,1,'2014-06-13 11:10:02','2014-06-13 11:10:02','','Home','','publish','open','open','','home','','','2021-04-12 09:36:48','2021-04-12 13:36:48','',0,'https://dhoistage.concertium.com/?page_id=5',0,'page','',0),(6,1,'2014-06-13 11:10:02','2014-06-13 11:10:02','','Home','','inherit','open','open','','5-revision-v1','','','2014-06-13 11:10:02','2014-06-13 11:10:02','',5,'https://dhoistage.concertium.com/5-revision-v1/',0,'revision','',0),(7,1,'2014-06-13 11:10:24','2014-06-13 11:10:24','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nThe door is open, so come in and explore our divisions and visit our exceptional list of manufacturers!\r\n','Blog','','publish','open','open','','blog','','','2018-11-08 08:15:25','2018-11-08 13:15:25','',0,'https://dhoistage.concertium.com/?page_id=7',0,'page','',0),(8,1,'2014-06-13 11:10:24','2014-06-13 11:10:24','','Blog','','inherit','open','open','','7-revision-v1','','','2014-06-13 11:10:24','2014-06-13 11:10:24','',7,'https://dhoistage.concertium.com/7-revision-v1/',0,'revision','',0),(9,1,'2014-06-13 11:10:57','2014-06-13 11:10:57','Door and hardware openings is a leader in the industry of architectual doors and finish hardware. For the past 30 years, DHOI has been providing project management and consulting for many projects all over the USA and many international projects. With such a strong and skilled sales force, no project is too small or too large!\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>What sets DHOI apart</strong></span>\r\n\r\nDHOI is more than the average door and hardware supplier. We maintain an extensive inventory of Division 8 finish hardware suited for fire rated openings, impact safety openings as well as handicap openings. We carry several products from the major vendors that are approved for a wide variety of building projects such as Schlage, Sargent, Von Duprin and many more. \r\nIn addition to our vast hardware supply, we also stock commercial doors and frames in many standard sizes. Since not every project is comprised of standard off the shelf materials, we are able to provide customizations to your openings with our in house wood and metal machine shops.\r\nDHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>The Mission</strong></span>\r\nProvide cost and time efficient solutions for your project through expert technical knowledge and professionalism. The cornerstone of our mission is to create long lasting working relationships with our customers and seek to always provide reliable customer service.','About us','','publish','open','open','','about-us','','','2021-04-12 08:05:48','2021-04-12 12:05:48','',0,'https://dhoistage.concertium.com/?page_id=9',0,'page','',0),(548,1,'2018-11-02 17:49:50','2018-11-02 17:49:50','<span style=\"font-size: xx-large;\"><strong>About DHOI</strong></span>\r\n\r\nDoor and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.\r\n\r\n \r\n\r\nDHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.','About Us','','inherit','open','open','','9-revision-v1','','','2018-11-02 17:49:50','2018-11-02 17:49:50','',9,'https://dhoistage.concertium.com/9-revision-v1/',0,'revision','',0),(10,1,'2014-06-13 11:10:57','2014-06-13 11:10:57','','About Us','','inherit','open','open','','9-revision-v1','','','2014-06-13 11:10:57','2014-06-13 11:10:57','',9,'https://dhoistage.concertium.com/9-revision-v1/',0,'revision','',0),(11,1,'2014-06-13 11:11:06','2014-06-13 11:11:06','<p class=\"paragraph\">DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</p>\r\n\r\n\r\n\r\n<p class=\"paragraph\">If you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.</p>\r\n\r\n<p class=\"paragraph\">We provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.</p>\r\n\r\n<p class=\"paragraph\">We produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.</p>\r\n\r\n<p class=\"paragraph\">The door is open, so come in and let us provide a solution for your custom project today!</p>\r\n','Our Services','','publish','open','open','','services1','','','2019-01-13 08:27:15','2019-01-13 13:27:15','',0,'https://dhoistage.concertium.com/?page_id=11',0,'page','',0),(12,1,'2014-06-13 11:11:06','2014-06-13 11:11:06','','Services','','inherit','open','open','','11-revision-v1','','','2014-06-13 11:11:06','2014-06-13 11:11:06','',11,'https://dhoistage.concertium.com/11-revision-v1/',0,'revision','',0),(13,1,'2014-06-13 11:11:18','2014-06-13 11:11:18','','Contact Us','','publish','open','open','','contact-us','','','2018-11-05 12:15:20','2018-11-05 12:15:20','',0,'https://dhoistage.concertium.com/?page_id=13',0,'page','',0),(557,1,'2018-11-05 12:15:20','2018-11-05 12:15:20','','Contact Us','','inherit','open','open','','13-revision-v1','','','2018-11-05 12:15:20','2018-11-05 12:15:20','',13,'https://dhoistage.concertium.com/13-revision-v1/',0,'revision','',0),(14,1,'2014-06-13 11:11:18','2014-06-13 11:11:18','','Contact Us','','inherit','open','open','','13-revision-v1','','','2014-06-13 11:11:18','2014-06-13 11:11:18','',13,'https://dhoistage.concertium.com/13-revision-v1/',0,'revision','',0),(15,1,'2014-06-13 11:11:40','2014-06-13 11:11:40','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.','Privacy Policy','','publish','open','open','','privacy-policy','','','2014-06-13 13:05:26','2014-06-13 13:05:26','',0,'https://dhoistage.concertium.com/?page_id=15',0,'page','',0),(16,1,'2014-06-13 11:11:40','2014-06-13 11:11:40','','Privacy Policy','','inherit','open','open','','15-revision-v1','','','2014-06-13 11:11:40','2014-06-13 11:11:40','',15,'https://dhoistage.concertium.com/15-revision-v1/',0,'revision','',0),(17,1,'2014-06-13 11:11:58','2014-06-13 11:11:58','\r\n\r\nDHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nThe door is open, so come in and explore our divisions and visit our exceptional list of manufacturers!\r\n','Terms and Conditions','','publish','open','open','','terms-and-conditions','','','2014-08-01 16:10:21','2014-08-01 16:10:21','',0,'https://dhoistage.concertium.com/?page_id=17',0,'page','',0),(18,1,'2014-06-13 11:11:58','2014-06-13 11:11:58','','Terms and Conditions','','inherit','open','open','','17-revision-v1','','','2014-06-13 11:11:58','2014-06-13 11:11:58','',17,'https://dhoistage.concertium.com/17-revision-v1/',0,'revision','',0),(209,1,'2014-07-31 13:21:53','2014-07-31 13:21:53','<p>DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</p>\r\n<p>If you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.</p>\r\n<p>The door is open, so come in and explore our divisions and visit our exceptional list of manufacturers! </p>','ABOUT US','','publish','open','open','','about-us','','','2014-07-31 13:21:53','2014-07-31 13:21:53','',5,'http://192.168.1.44/dhoi/?page_id=209',0,'page','',0),(25,1,'2014-06-13 11:14:58','2014-06-13 11:14:58','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nThe door is open, so come in and explore our divisions and visit our exceptional list of manufacturers!','FAQ','','publish','open','open','','faq','','','2014-08-04 06:41:36','2014-08-04 06:41:36','',0,'https://dhoistage.concertium.com/?page_id=25',0,'page','',0),(26,1,'2014-06-13 11:14:58','2014-06-13 11:14:58','','FAQ','','inherit','open','open','','25-revision-v1','','','2014-06-13 11:14:58','2014-06-13 11:14:58','',25,'https://dhoistage.concertium.com/25-revision-v1/',0,'revision','',0),(110,1,'2014-07-18 11:52:50','2014-07-18 11:52:50','','index6','','inherit','open','open','','index6','','','2014-07-18 11:52:50','2014-07-18 11:52:50','',109,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index6.jpeg',0,'attachment','image/jpeg',0),(109,1,'2014-07-18 11:52:56','2014-07-18 11:52:56','','Schlage','','publish','closed','closed','','schlage','','','2014-07-18 11:52:56','2014-07-18 11:52:56','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=109',0,'brand','',0),(103,1,'2014-07-18 11:40:08','2014-07-18 11:40:08','','index3','','inherit','open','open','','index3','','','2014-07-18 11:40:08','2014-07-18 11:40:08','',102,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index3.jpeg',0,'attachment','image/jpeg',0),(104,1,'2014-07-18 11:46:31','2014-07-18 11:46:31','','Falcon','','publish','closed','closed','','falcon','','','2014-07-18 11:46:31','2014-07-18 11:46:31','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=104',0,'brand','',0),(105,1,'2014-07-18 11:46:24','2014-07-18 11:46:24','','index4','','inherit','open','open','','index4','','','2014-07-18 11:46:24','2014-07-18 11:46:24','',104,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index4.jpeg',0,'attachment','image/jpeg',0),(97,1,'2014-07-18 11:26:59','2014-07-18 11:26:59','','index','','inherit','open','open','','index','','','2014-07-18 11:26:59','2014-07-18 11:26:59','',95,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index.jpeg',0,'attachment','image/jpeg',0),(98,1,'2014-07-18 11:35:47','2014-07-18 11:35:47','','McKinney','','publish','closed','closed','','mckinney','','','2014-07-18 11:35:47','2014-07-18 11:35:47','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=98',0,'brand','',0),(99,1,'2014-07-18 11:35:38','2014-07-18 11:35:38','','index1','','inherit','open','open','','index1','','','2014-07-18 11:35:38','2014-07-18 11:35:38','',98,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index1.jpeg',0,'attachment','image/jpeg',0),(100,1,'2014-07-18 11:37:24','2014-07-18 11:37:24','','Stanley','','publish','closed','closed','','stanley','','','2014-07-18 11:37:24','2014-07-18 11:37:24','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=100',0,'brand','',0),(95,1,'2014-07-18 10:38:35','2014-07-18 10:38:35','','Cal-Royal','','publish','closed','closed','','cal-royal','','','2014-07-18 11:27:05','2014-07-18 11:27:05','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=95',0,'brand','',0),(96,1,'2014-07-18 11:22:47','2014-07-18 11:22:47','','Hager','','publish','closed','closed','','hager','','','2014-07-18 12:52:05','2014-07-18 12:52:05','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=96',0,'brand','',0),(343,1,'2014-08-07 16:02:06','2014-08-07 16:02:06','Recommended for use on high frequency and/or heavy wood or metal doors in schools, hospitals or other public buildings where heavy traffic is experienced\r\n\r\nHinge allows for maximum clearance for passage of beds, tables or other equipment through the doorway Meets ADA Requirements and ANS I A117.1-1986 Pressed steel jambs require no special reinforcing\r\n\r\nPin is held in place by an NRP set screw, which allows the hinge to be reversible For Beveled Edge, where doors are beveled in hinge side, specify T4A4395 or T4A4795\r\n\r\nRecommended for use on high frequency and/or heavy wood or metal doors in schools, hospitals or other public buildings where heavy traffic is experienced\r\n\r\nPin is held in place by an NRP set screw, which allows the hinge to be reversible For Beveled Edge, where doors are beveled in hinge side, specify T4A4395 or T4A4795\r\n\r\nHinge allows for maximum clearance for passage of beds, tables or other equipment through the doorway Meets ADA Requirements and ANS I A117.1-1986 Pressed steel jambs require no special reinforcing\r\n\r\nPin is held in place by an NRP set screw, which allows the hinge to be reversible For Beveled Edge, where doors are beveled in hinge side, specify T4A4395 or T4A4795','Swing Clear Bearing Hinges-Five Knuckle Heavy Weight Series (Reversible) - T4A3395/T4A3795','','publish','open','closed','','swing-clear-bearing-hinges-five-knuckle-heavy-weight-series-reversible-t4a3395t4a3795','','','2014-08-07 16:02:06','2014-08-07 16:02:06','',0,'http://codeuridea.net/dhoi/?post_type=product&p=343',0,'product','',0),(85,1,'2014-07-18 09:42:49','2014-07-18 09:42:49','','wooddoorbg','','inherit','open','open','','wooddoorbg','','','2014-07-18 09:42:49','2014-07-18 09:42:49','',600,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/wooddoorbg.jpg',0,'attachment','image/jpeg',0),(519,1,'2014-08-19 09:10:36','2014-08-19 09:10:36','','Steel Door Institute','','publish','closed','closed','','steel-door-institute','','','2014-08-19 09:20:51','2014-08-19 09:20:51','',0,'http://codeuridea.net/dhoi/?post_type=partners&p=519',0,'partners','',0),(102,1,'2014-07-18 11:40:15','2014-07-18 11:40:15','','Corbin-Russwin','','publish','closed','closed','','corbin-russwin','','','2014-07-18 11:59:10','2014-07-18 11:59:10','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=102',0,'brand','',0),(51,1,'2014-06-13 12:32:21','2014-06-13 12:32:21','<p class=\"paragraph\">DHOI provides complete opening solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective opening solutions that add beauty and value to every project.</p>\r\n<p class=\"paragraph\">Whether working with new construction, renovation, upgrades, or refurbishment, DHOI customers are assured top quality, professional service, and a commitment to satisfaction.</p>','ASIBARNDOOR-St.Pete','','publish','closed','closed','','asibarndoor','','','2019-01-10 08:52:44','2019-01-10 13:52:44','',0,'http://192.168.1.44/dhoi/?post_type=project&p=51',0,'project','',0),(306,1,'2014-08-06 11:48:06','2014-08-06 11:48:06','<p class=\"paragraph\">DHOI provides complete opening solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective opening solutions that add beauty and value to every project.</p>\n<p class=\"paragraph\">Whether working with new construction, renovation, upgrades, or refurbishment, DHOI customers are assured top quality, professional service, and a commitment to satisfaction.</p>','ASIBARNDOOR-St.Pete','','inherit','open','open','','51-autosave-v1','','','2014-08-06 11:48:06','2014-08-06 11:48:06','',51,'http://codeuridea.net/dhoi/51-autosave-v1/',0,'revision','',0),(53,1,'2014-06-13 12:35:11','2014-06-13 12:35:11','<p class=\"paragraph\" style=\"color: #000000;\">Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p>\r\n<p class=\"paragraph\" style=\"color: #000000;\">DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.</p>','About Us','','inherit','open','open','','9-revision-v1','','','2014-06-13 12:35:11','2014-06-13 12:35:11','',9,'http://192.168.1.44/dhoi/9-revision-v1/',0,'revision','',0),(107,1,'2014-07-18 11:51:27','2014-07-18 11:51:27','','Sargent','','publish','closed','closed','','sargent','','','2014-07-18 11:51:27','2014-07-18 11:51:27','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=107',0,'brand','',0),(83,1,'2014-07-18 09:36:14','2014-07-18 09:36:14','','hardwarebg','','inherit','open','open','','hardwarebg','','','2014-07-18 09:36:14','2014-07-18 09:36:14','',0,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/hardwarebg.jpg',0,'attachment','image/jpeg',0),(84,1,'2014-07-18 09:38:58','2014-07-18 09:38:58','','hollowmetalbg','','inherit','open','open','','hollowmetalbg','','','2014-07-18 09:38:58','2014-07-18 09:38:58','',0,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/hollowmetalbg.jpg',0,'attachment','image/jpeg',0),(60,1,'2014-06-13 12:50:36','2014-06-13 12:50:36','','Underwriters Laboratories Inc','','publish','closed','closed','','underwriters-laboratories-inc','','','2014-08-19 09:23:32','2014-08-19 09:23:32','',0,'http://192.168.1.44/dhoi/?post_type=partners&p=60',0,'partners','',0),(248,1,'2014-08-01 12:04:32','2014-08-01 12:04:32','','Contact Us','','inherit','open','open','','13-revision-v1','','','2014-08-01 12:04:32','2014-08-01 12:04:32','',13,'http://192.168.1.44/dhoi/13-revision-v1/',0,'revision','',0),(247,1,'2014-08-01 11:32:07','2014-08-01 11:32:07','[contact-form-7 id=\"232\" title=\"Contact form 1\"]','Contact Us','','inherit','open','open','','13-revision-v1','','','2014-08-01 11:32:07','2014-08-01 11:32:07','',13,'http://192.168.1.44/dhoi/13-revision-v1/',0,'revision','',0),(61,1,'2014-06-13 13:04:23','2014-06-13 13:04:23','<p class=\"paragraph\"><span class=\"subhead-blue\">Corporate Office</span>\r\nTel 813-281-0474\r\nFax 813-281-0584</p>\r\n<p class=\"paragraph\">\r\n<span class=\"subhead-blue\">Physical Address</span>\r\n5712 W. Sligh Ave.\r\nTampa, FL 33634</p>\r\n<p class=\"paragraph\">\r\n<span class=\"subhead-blue\">Mailing Address</span>\r\nPO Box 22322\r\nTampa, FL 33622</p>\r\n<p class=\"paragraph\"><a class=\"subhead-blue\" href=\"mailto:info@dhoi.com\">info@dhoi.com</a></p>','Contact Us','','inherit','open','open','','13-revision-v1','','','2014-06-13 13:04:23','2014-06-13 13:04:23','',13,'http://192.168.1.44/dhoi/13-revision-v1/',0,'revision','',0),(62,1,'2014-06-13 13:05:26','2014-06-13 13:05:26','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum.','Privacy Policy','','inherit','open','open','','15-revision-v1','','','2014-06-13 13:05:26','2014-06-13 13:05:26','',15,'http://192.168.1.44/dhoi/15-revision-v1/',0,'revision','',0),(63,1,'2014-06-13 13:06:12','2014-06-13 13:06:12','<p class=\"paragraph\">We realize that not everyone wants the same thing. So even though we stock the best products by the best manufacturers, some clients do require customized items. For this reason we have a complete machine shop operated by skilled experienced craftsmen capable of creating your most complex requests.</p>\r\n<p class=\"paragraph\">We provide re-railing and re-stiling of your wood doors to custom specifications. In addition we manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors.</p>\r\n<p class=\"paragraph\">We produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.</p>','Services','','inherit','open','open','','11-revision-v1','','','2014-06-13 13:06:12','2014-06-13 13:06:12','',11,'http://192.168.1.44/dhoi/11-revision-v1/',0,'revision','',0),(64,1,'2014-06-13 13:07:01','2014-06-13 13:07:01','Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem. Investigationes demonstraverunt lectores legere me lius quod ii legunt saepius.','Terms and Conditions','','inherit','open','open','','17-revision-v1','','','2014-06-13 13:07:01','2014-06-13 13:07:01','',17,'http://192.168.1.44/dhoi/17-revision-v1/',0,'revision','',0),(66,1,'2014-06-13 13:17:51','2014-06-13 13:17:51','The National Association of Architectural Metal Manufacturers (NAAMM) is the trade association representing manufacturers of a wide range of metal products used chiefly in commercial and industrial building construction, particularly hollow metal doors and frames.','Industry Links 1','','publish','closed','closed','','industry-links-1','','','2018-11-05 08:44:29','2018-11-05 13:44:29','',0,'http://192.168.1.44/dhoi/?post_type=industry_links&p=66',0,'industry-links','',0),(67,1,'2014-06-13 13:17:44','2014-06-13 13:17:44','','EAD_Logo_EN_resize','','inherit','open','open','','ead_logo_en_resize','','','2014-06-13 13:17:44','2014-06-13 13:17:44','',66,'http://192.168.1.44/dhoi/wp-content/uploads/2014/06/EAD_Logo_EN_resize.jpg',0,'attachment','image/jpeg',0),(68,1,'2014-06-13 13:21:04','2014-06-13 13:21:04','I am fine','how are you?','','publish','closed','closed','','how-are-you','','','2014-06-13 13:21:04','2014-06-13 13:21:04','',0,'http://192.168.1.44/dhoi/?post_type=faq&p=68',0,'faq','',0),(69,1,'2014-06-13 13:22:19','2014-06-13 13:22:19','<p class=\"paragraph\">DHOI provides complete opening solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective opening solutions that add beauty and value to every project.</p>\r\n<p class=\"paragraph\">Whether working with new construction, renovation, upgrades, or refurbishment, DHOI customers are assured top quality, professional service, and a commitment to satisfaction.</p>','DHOI','','publish','closed','closed','','dhoi','','','2019-01-10 08:52:30','2019-01-10 13:52:30','',0,'http://192.168.1.44/dhoi/?post_type=project&p=69',0,'project','',0),(70,1,'2014-06-13 13:24:58','2014-06-13 13:24:58','The Steel Door Institute is a voluntary, unincorporated, non-profit business association formed to promote the use of steel doors and frames in the construction industry.','Industry Link 2','','publish','closed','closed','','auto-draft','','','2018-11-05 08:44:18','2018-11-05 13:44:18','',0,'http://192.168.1.44/dhoi/?post_type=industry_links&p=70',0,'industry-links','',0),(76,1,'2014-06-13 14:34:49','2014-06-13 14:34:49','well','What\'s going on?','','publish','closed','closed','','whats-going-on','','','2014-06-13 14:34:49','2014-06-13 14:34:49','',0,'http://192.168.1.44/dhoi/?post_type=faq&p=76',0,'faq','',0),(111,1,'2014-07-18 11:54:15','2014-07-18 11:54:15','','Yale','','publish','closed','closed','','yale','','','2014-07-18 11:55:27','2014-07-18 11:55:27','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=111',0,'brand','',0),(112,1,'2014-07-18 11:54:09','2014-07-18 11:54:09','','index7','','inherit','open','open','','index7','','','2014-07-18 11:54:09','2014-07-18 11:54:09','',111,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index7.jpeg',0,'attachment','image/jpeg',0),(113,1,'2014-07-18 12:01:02','2014-07-18 12:01:02','','Dorma','','publish','closed','closed','','dorma','','','2014-07-18 12:10:35','2014-07-18 12:10:35','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=113',0,'brand','',0),(114,1,'2014-07-18 12:00:53','2014-07-18 12:00:53','','index8','','inherit','open','open','','index8','','','2014-07-18 12:00:53','2014-07-18 12:00:53','',113,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index8.jpeg',0,'attachment','image/jpeg',0),(115,1,'2014-07-18 12:03:49','2014-07-18 12:03:49','','Dor-O-Matic','','publish','closed','closed','','dor-o-matic','','','2014-07-18 12:04:19','2014-07-18 12:04:19','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=115',0,'brand','',0),(71,1,'2014-06-13 13:25:41','2014-06-13 13:25:41','Underwriters Laboratories Inc. (UL) is an independent, not-for-profit product safety testing and certification organization. We have tested products for public safety for more than a century. Each year, more than 16 billion UL Marks are applied to products worldwide.','Industry Link 3','','publish','closed','closed','','auto-draft-2','','','2018-11-05 08:42:52','2018-11-05 13:42:52','',0,'http://192.168.1.44/dhoi/?post_type=industry_links&p=71',0,'industry-links','',0),(72,1,'2014-06-13 13:27:17','2014-06-13 13:27:17','Jst going on.','Hey! What\'s Up','','publish','closed','closed','','hey-whats-up','','','2014-06-13 13:27:17','2014-06-13 13:27:17','',0,'http://192.168.1.44/dhoi/?post_type=faq&p=72',0,'faq','',0),(108,1,'2014-07-18 11:51:15','2014-07-18 11:51:15','','index5','','inherit','open','open','','index5','','','2014-07-18 11:51:15','2014-07-18 11:51:15','',107,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index5.jpeg',0,'attachment','image/jpeg',0),(74,1,'2014-06-13 13:32:07','2014-06-13 13:32:07','','Slider 1','','publish','closed','closed','','slider-1','','','2019-01-28 07:23:39','2019-01-28 12:23:39','',0,'http://192.168.1.44/dhoi/?post_type=home_page_slider&p=74',0,'home_page_slider','',0),(75,1,'2014-06-13 13:32:28','2014-06-13 13:32:28','','Slider 2','','publish','closed','closed','','slider-2','','','2019-01-28 07:26:50','2019-01-28 12:26:50','',0,'http://192.168.1.44/dhoi/?post_type=home_page_slider&p=75',0,'home_page_slider','',0),(116,1,'2014-07-18 12:06:07','2014-07-18 12:06:07','','LCN','','publish','closed','closed','','lcn','','','2014-07-18 12:06:07','2014-07-18 12:06:07','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=116',0,'brand','',0),(117,1,'2014-07-18 12:05:51','2014-07-18 12:05:51','','index9','','inherit','open','open','','index9','','','2014-07-18 12:05:51','2014-07-18 12:05:51','',116,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index9.jpeg',0,'attachment','image/jpeg',0),(118,1,'2014-07-18 12:07:29','2014-07-18 12:07:29','','Norton','','publish','closed','closed','','norton','','','2014-07-18 12:07:29','2014-07-18 12:07:29','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=118',0,'brand','',0),(119,1,'2014-07-18 12:07:18','2014-07-18 12:07:18','','images10','','inherit','open','open','','images10','','','2014-07-18 12:07:18','2014-07-18 12:07:18','',118,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/images10.jpeg',0,'attachment','image/jpeg',0),(120,1,'2014-07-18 12:10:01','2014-07-18 12:10:01','','Rixon','','publish','closed','closed','','rixon','','','2014-07-18 13:02:15','2014-07-18 13:02:15','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=120',0,'brand','',0),(121,1,'2014-07-18 12:08:23','2014-07-18 12:08:23','','index11','','inherit','open','open','','index11','','','2014-07-18 12:08:23','2014-07-18 12:08:23','',120,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index11.jpeg',0,'attachment','image/jpeg',0),(122,1,'2014-07-18 12:13:15','2014-07-18 12:13:15','','Monarch','','publish','closed','closed','','monarch','','','2014-07-18 12:13:15','2014-07-18 12:13:15','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=122',0,'brand','',0),(123,1,'2014-07-18 12:12:42','2014-07-18 12:12:42','','index13','','inherit','open','open','','index13','','','2014-07-18 12:12:42','2014-07-18 12:12:42','',122,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index13.jpeg',0,'attachment','image/jpeg',0),(124,1,'2014-07-18 12:14:36','2014-07-18 12:14:36','','Precision','','publish','closed','closed','','precision','','','2014-07-18 12:14:36','2014-07-18 12:14:36','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=124',0,'brand','',0),(125,1,'2014-07-18 12:14:26','2014-07-18 12:14:26','','index14','','inherit','open','open','','index14','','','2014-07-18 12:14:26','2014-07-18 12:14:26','',124,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index14.jpeg',0,'attachment','image/jpeg',0),(126,1,'2014-07-18 12:15:46','2014-07-18 12:15:46','','Von Duprin ','','publish','closed','closed','','von-duprin','','','2014-07-18 12:40:32','2014-07-18 12:40:32','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=126',0,'brand','',0),(127,1,'2014-07-18 12:15:41','2014-07-18 12:15:41','','index15','','inherit','open','open','','index15','','','2014-07-18 12:15:41','2014-07-18 12:15:41','',126,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index15.jpeg',0,'attachment','image/jpeg',0),(128,1,'2014-07-18 12:29:29','2014-07-18 12:29:29','','Adams-Rite','','publish','closed','closed','','adams-rite','','','2014-07-18 12:32:08','2014-07-18 12:32:08','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=128',0,'brand','',0),(129,1,'2014-07-18 12:28:41','2014-07-18 12:28:41','','index15','','inherit','open','open','','index15-2','','','2014-07-18 12:28:41','2014-07-18 12:28:41','',128,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index151.jpeg',0,'attachment','image/jpeg',0),(130,1,'2014-07-18 12:29:21','2014-07-18 12:29:21','','images16','','inherit','open','open','','images16','','','2014-07-18 12:29:21','2014-07-18 12:29:21','',128,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/images16.jpeg',0,'attachment','image/jpeg',0),(131,1,'2014-07-18 12:34:29','2014-07-18 12:34:29','','Architectural Control','','publish','closed','closed','','architectural-control','','','2014-07-18 12:34:29','2014-07-18 12:34:29','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=131',0,'brand','',0),(132,1,'2014-07-18 12:34:22','2014-07-18 12:34:22','','images17','','inherit','open','open','','images17','','','2014-07-18 12:34:22','2014-07-18 12:34:22','',131,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/images17.jpeg',0,'attachment','image/jpeg',0),(133,1,'2014-07-18 12:36:02','2014-07-18 12:36:02','','HES','','publish','closed','closed','','hes','','','2014-07-18 12:36:02','2014-07-18 12:36:02','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=133',0,'brand','',0),(134,1,'2014-07-18 12:35:56','2014-07-18 12:35:56','','images18','','inherit','open','open','','images18','','','2014-07-18 12:35:56','2014-07-18 12:35:56','',133,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/images18.jpeg',0,'attachment','image/jpeg',0),(135,1,'2014-07-18 12:39:12','2014-07-18 12:39:12','','Locknetics','','publish','closed','closed','','locknetics','','','2014-07-18 12:39:12','2014-07-18 12:39:12','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=135',0,'brand','',0),(136,1,'2014-07-18 12:37:54','2014-07-18 12:37:54','','index19','','inherit','open','open','','index19','','','2014-07-18 12:37:54','2014-07-18 12:37:54','',135,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index19.jpeg',0,'attachment','image/jpeg',0),(137,1,'2014-07-18 12:42:39','2014-07-18 12:42:39','','DCI','','publish','closed','closed','','dci','','','2014-07-18 12:43:33','2014-07-18 12:43:33','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=137',0,'brand','',0),(138,1,'2014-07-18 12:42:31','2014-07-18 12:42:31','','index20','','inherit','open','open','','index20','','','2014-07-18 12:42:31','2014-07-18 12:42:31','',137,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index20.jpeg',0,'attachment','image/jpeg',0),(144,1,'2014-07-18 12:54:13','2014-07-18 12:54:13','','Trimco','','publish','closed','closed','','trimco','','','2014-07-18 12:54:13','2014-07-18 12:54:13','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=144',0,'brand','',0),(140,1,'2014-07-18 12:46:50','2014-07-18 12:46:50','','IVES','','publish','closed','closed','','ives','','','2014-07-18 12:46:50','2014-07-18 12:46:50','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=140',0,'brand','',0),(141,1,'2014-07-18 12:46:42','2014-07-18 12:46:42','','index21','','inherit','open','open','','index21','','','2014-07-18 12:46:42','2014-07-18 12:46:42','',140,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index21.jpeg',0,'attachment','image/jpeg',0),(142,1,'2014-07-18 12:49:10','2014-07-18 12:49:10','','Rockwood','','publish','closed','closed','','rockwood','','','2014-07-18 12:49:48','2014-07-18 12:49:48','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=142',0,'brand','',0),(143,1,'2014-07-18 12:49:02','2014-07-18 12:49:02','','images22','','inherit','open','open','','images22','','','2014-07-18 12:49:02','2014-07-18 12:49:02','',142,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/images22.jpeg',0,'attachment','image/jpeg',0),(145,1,'2014-07-18 12:54:06','2014-07-18 12:54:06','','index23','','inherit','open','open','','index23','','','2014-07-18 12:54:06','2014-07-18 12:54:06','',144,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index23.jpeg',0,'attachment','image/jpeg',0),(146,1,'2014-07-18 12:55:25','2014-07-18 12:55:25','','Pemko','','publish','closed','closed','','pemko','','','2014-07-18 12:55:25','2014-07-18 12:55:25','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=146',0,'brand','',0),(147,1,'2014-07-18 12:55:17','2014-07-18 12:55:17','','index24','','inherit','open','open','','index24','','','2014-07-18 12:55:17','2014-07-18 12:55:17','',146,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index24.jpeg',0,'attachment','image/jpeg',0),(148,1,'2014-07-18 12:56:55','2014-07-18 12:56:55','','National Guard','','publish','closed','closed','','national-guard','','','2014-07-18 12:56:55','2014-07-18 12:56:55','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=148',0,'brand','',0),(149,1,'2014-07-18 12:56:46','2014-07-18 12:56:46','','index25','','inherit','open','open','','index25','','','2014-07-18 12:56:46','2014-07-18 12:56:46','',148,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index25.jpeg',0,'attachment','image/jpeg',0),(150,1,'2014-07-18 12:58:17','2014-07-18 12:58:17','','Reese','','publish','closed','closed','','reese','','','2014-07-18 12:58:17','2014-07-18 12:58:17','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=150',0,'brand','',0),(151,1,'2014-07-18 12:58:08','2014-07-18 12:58:08','','index26','','inherit','open','open','','index26','','','2014-07-18 12:58:08','2014-07-18 12:58:08','',150,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index26.jpeg',0,'attachment','image/jpeg',0),(152,1,'2014-07-18 13:01:09','2014-07-18 13:01:09','','Glynn Johnson','','publish','closed','closed','','glynn-johnson','','','2014-07-18 13:01:09','2014-07-18 13:01:09','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=152',0,'brand','',0),(153,1,'2014-07-18 13:00:53','2014-07-18 13:00:53','','index27','','inherit','open','open','','index27','','','2014-07-18 13:00:53','2014-07-18 13:00:53','',152,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index27.jpeg',0,'attachment','image/jpeg',0),(154,1,'2014-07-18 13:17:23','2014-07-18 13:17:23','','Amweld','','publish','closed','closed','','amweld','','','2014-07-18 13:17:23','2014-07-18 13:17:23','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=154',0,'brand','',0),(155,1,'2014-07-18 13:17:16','2014-07-18 13:17:16','','index28','','inherit','open','open','','index28','','','2014-07-18 13:17:16','2014-07-18 13:17:16','',154,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index28.jpeg',0,'attachment','image/jpeg',0),(156,1,'2014-07-18 13:18:46','2014-07-18 13:18:46','','Ceco','','publish','closed','closed','','ceco','','','2014-07-18 13:18:46','2014-07-18 13:18:46','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=156',0,'brand','',0),(157,1,'2014-07-18 13:18:40','2014-07-18 13:18:40','','images29','','inherit','open','open','','images29','','','2014-07-18 13:18:40','2014-07-18 13:18:40','',156,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/images29.jpeg',0,'attachment','image/jpeg',0),(158,1,'2014-07-18 13:24:03','2014-07-18 13:24:03','','Hollow Metal Inc.','','publish','closed','closed','','hollow-metal-inc','','','2014-07-18 13:24:03','2014-07-18 13:24:03','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=158',0,'brand','',0),(159,1,'2014-07-18 13:23:52','2014-07-18 13:23:52','','images30','','inherit','open','open','','images30','','','2014-07-18 13:23:52','2014-07-18 13:23:52','',158,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/images30.jpeg',0,'attachment','image/jpeg',0),(160,1,'2014-07-18 13:25:33','2014-07-18 13:25:33','','Daybar','','publish','closed','closed','','daybar','','','2014-07-18 13:25:33','2014-07-18 13:25:33','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=160',0,'brand','',0),(161,1,'2014-07-18 13:25:27','2014-07-18 13:25:27','','index31','','inherit','open','open','','index31','','','2014-07-18 13:25:27','2014-07-18 13:25:27','',160,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index31.jpeg',0,'attachment','image/jpeg',0),(162,1,'2014-07-18 13:27:17','2014-07-18 13:27:17','','Premier Products','','publish','closed','closed','','premier-products','','','2014-07-18 13:27:17','2014-07-18 13:27:17','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=162',0,'brand','',0),(163,1,'2014-07-18 13:27:10','2014-07-18 13:27:10','','logo','','inherit','open','open','','logo','','','2014-07-18 13:27:10','2014-07-18 13:27:10','',162,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/logo.jpg',0,'attachment','image/jpeg',0),(164,1,'2014-07-18 13:28:28','2014-07-18 13:28:28','','Republic Builders','','publish','closed','closed','','republic-builders','','','2014-07-18 13:28:28','2014-07-18 13:28:28','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=164',0,'brand','',0),(165,1,'2014-07-18 13:28:19','2014-07-18 13:28:19','','index32','','inherit','open','open','','index32','','','2014-07-18 13:28:19','2014-07-18 13:28:19','',164,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index32.jpeg',0,'attachment','image/jpeg',0),(166,1,'2014-07-18 13:30:11','2014-07-18 13:30:11','','Steelcraft','','publish','closed','closed','','steelcraft','','','2014-07-18 13:30:11','2014-07-18 13:30:11','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=166',0,'brand','',0),(167,1,'2014-07-18 13:29:50','2014-07-18 13:29:50','','index32','','inherit','open','open','','index32-2','','','2014-07-18 13:29:50','2014-07-18 13:29:50','',166,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index321.jpeg',0,'attachment','image/jpeg',0),(168,1,'2014-07-18 13:30:04','2014-07-18 13:30:04','','images33','','inherit','open','open','','images33','','','2014-07-18 13:30:04','2014-07-18 13:30:04','',166,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/images33.jpeg',0,'attachment','image/jpeg',0),(169,1,'2014-07-18 13:31:31','2014-07-18 13:31:31','','Anemostat','','publish','closed','closed','','anemostat','','','2014-07-18 13:31:31','2014-07-18 13:31:31','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=169',0,'brand','',0),(170,1,'2014-07-18 13:31:14','2014-07-18 13:31:14','','images34','','inherit','open','open','','images34','','','2014-07-18 13:31:14','2014-07-18 13:31:14','',169,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/images34.jpeg',0,'attachment','image/jpeg',0),(171,1,'2014-07-18 13:32:46','2014-07-18 13:32:46','','All Metals Shipping','','publish','closed','closed','','all-metals-shipping','','','2014-07-18 13:32:46','2014-07-18 13:32:46','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=171',0,'brand','',0),(172,1,'2014-07-18 13:34:18','2014-07-18 13:34:18','','Air Louver','','publish','closed','closed','','air-louver','','','2014-07-18 13:34:18','2014-07-18 13:34:18','',0,'http://192.168.1.44/dhoi/?post_type=brand&p=172',0,'brand','',0),(173,1,'2014-07-18 13:34:11','2014-07-18 13:34:11','','index35','','inherit','open','open','','index35','','','2014-07-18 13:34:11','2014-07-18 13:34:11','',172,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/index35.jpeg',0,'attachment','image/jpeg',0),(349,1,'2014-08-07 16:13:42','2014-08-07 16:13:42','','closers','','inherit','open','open','','closers','','','2014-08-07 16:13:42','2014-08-07 16:13:42','',0,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/closers.png',0,'attachment','image/png',0),(531,1,'2014-08-19 14:07:39','2014-08-19 14:07:39','','33','','inherit','open','open','','33','','','2014-08-19 14:07:39','2014-08-19 14:07:39','',460,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/33.png',0,'attachment','image/png',0),(532,1,'2014-08-19 14:11:16','2014-08-19 14:11:16','','trim-and-auxiliary-1413','','inherit','open','open','','trim-and-auxiliary-1413','','','2014-08-19 14:11:16','2014-08-19 14:11:16','',468,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/trim-and-auxiliary-1413.png',0,'attachment','image/png',0),(539,1,'2014-08-22 13:21:49','2014-08-22 13:21:49','','thresholds-and-weatherstripping-810S','','inherit','open','open','','thresholds-and-weatherstripping-810s','','','2014-08-22 13:21:49','2014-08-22 13:21:49','',496,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/thresholds-and-weatherstripping-810S.png',0,'attachment','image/png',0),(540,1,'2014-08-22 13:36:21','2014-08-22 13:36:21','','locks-3200','','inherit','open','open','','locks-3200','','','2014-08-22 13:36:21','2014-08-22 13:36:21','',452,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/locks-3200.png',0,'attachment','image/png',0),(523,1,'2014-08-19 09:13:23','2014-08-19 09:13:23','','UT Athletic Bldg-Tampa','','inherit','open','open','','ut-athletic-bldg-tampa-4','','','2014-08-19 09:13:23','2014-08-19 09:13:23','',329,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa3.jpg',0,'attachment','image/jpeg',0),(524,1,'2014-08-19 13:11:29','2014-08-19 13:11:29','','EC1100 4.5X4.5 US26D HINGES','<strong>Plain Bearing\nStandard Weight</strong>\nFull Mortise - ECCO\n','inherit','open','open','','436-autosave-v1','','','2014-08-19 13:11:29','2014-08-19 13:11:29','',436,'http://codeuridea.net/dhoi/436-autosave-v1/',0,'revision','',0),(525,1,'2014-08-19 13:11:54','2014-08-19 13:11:54','','architectural-hinges-EC1100','','inherit','open','open','','architectural-hinges-ec1100','','','2014-08-19 13:11:54','2014-08-19 13:11:54','',436,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/architectural-hinges-EC1100.png',0,'attachment','image/png',0),(526,1,'2014-08-19 13:31:12','2014-08-19 13:31:12','','architectural-hinges-ECBB1100','','inherit','open','open','','architectural-hinges-ecbb1100','','','2014-08-19 13:31:12','2014-08-19 13:31:12','',442,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/architectural-hinges-ECBB1100.png',0,'attachment','image/png',0),(527,1,'2014-08-19 13:35:20','2014-08-19 13:35:20','','ECBB1100 4.5 USP NRP HINGES','Five Knuckle Plain Bearing Standard Weight\nFull Mortise - ECCO','inherit','open','open','','442-autosave-v1','','','2014-08-19 13:35:20','2014-08-19 13:35:20','',442,'http://codeuridea.net/dhoi/442-autosave-v1/',0,'revision','',0),(528,1,'2014-08-19 13:50:50','2014-08-19 13:50:50','','architectural-hinges-EC1105','','inherit','open','open','','architectural-hinges-ec1105','','','2014-08-19 13:50:50','2014-08-19 13:50:50','',443,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/architectural-hinges-EC1105.png',0,'attachment','image/png',0),(529,1,'2014-08-19 13:55:27','2014-08-19 13:55:27','','door-control-5200','','inherit','open','open','','door-control-5200','','','2014-08-19 13:55:27','2014-08-19 13:55:27','',457,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/door-control-5200.png',0,'attachment','image/png',0),(293,1,'2014-08-05 12:50:17','2014-08-05 12:50:17','','Projects','','inherit','open','open','','188-revision-v1','','','2014-08-05 12:50:17','2014-08-05 12:50:17','',188,'http://192.168.1.44/dhoi/188-revision-v1/',0,'revision','',0),(292,1,'2014-08-05 12:40:29','2014-08-05 12:40:29','[project_list]','Projects','','inherit','open','open','','188-revision-v1','','','2014-08-05 12:40:29','2014-08-05 12:40:29','',188,'http://192.168.1.44/dhoi/188-revision-v1/',0,'revision','',0),(182,1,'2021-04-20 01:01:30','2014-07-21 06:45:45',' ','','','publish','open','closed','','182','','','2021-04-20 01:01:30','2021-04-20 05:01:30','',0,'http://192.168.1.44/dhoi/?p=182',2,'nav_menu_item','',0),(950,1,'2019-01-10 08:53:31','2019-01-10 13:53:31','','Laser Spine Institute Tampa','','trash','closed','closed','','laser-spine-institute__trashed','','','2021-04-13 02:03:47','2021-04-13 06:03:47','',0,'https://dhoistage.concertium.com/?post_type=project&p=950',0,'project','',0),(184,1,'2021-04-20 01:01:30','2014-07-21 06:45:45',' ','','','publish','open','closed','','184','','','2021-04-20 01:01:30','2021-04-20 05:01:30','',0,'http://192.168.1.44/dhoi/?p=184',6,'nav_menu_item','',0),(185,1,'2021-04-20 01:01:30','2014-07-21 06:45:45',' ','','','publish','open','closed','','185','','','2021-04-20 01:01:30','2021-04-20 05:01:30','',0,'http://192.168.1.44/dhoi/?p=185',1,'nav_menu_item','',0),(410,1,'2014-08-13 11:42:12','2014-08-13 11:42:12','','3070 SC BIRCH SLAB 90 MIN','','publish','open','closed','','3070-sc-birch-slab-90-minalgoma','','','2014-08-13 12:13:48','2014-08-13 12:13:48','',0,'http://codeuridea.net/dhoi/?post_type=product&p=410',0,'product','',0),(371,1,'2014-08-08 20:07:47','2014-08-08 20:07:47','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <td>\r\n<p class=\"paragraph\">We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida.</p>\r\n\r\n<p class=\"paragraph\">We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</p> \r\n<p class=\"paragraph\">\r\nWe send dedicated trucks to:<br>\r\n<strong>Sarasota</strong> on <u>Monday and Wednesday</u> <br>\r\n<strong>Orlando</strong> on <u>Tuesday and Thursday</u>.\r\n</p></td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','publish','open','open','','fast-delivery','','','2018-11-05 10:24:00','2018-11-05 15:24:00','',0,'http://codeuridea.net/dhoi/?page_id=371',0,'page','',0),(569,1,'2018-11-05 08:50:18','2018-11-05 13:50:18','<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d902822.2373330186!2d-82.32577186974858!3d27.878582341677664!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88c2c1f34e8cf813%3A0xa75c1b78d45e4a81!2s5712+W+Sligh+Ave%2C+Tampa%2C+FL+33634!5e0!3m2!1sen!2sus!4v1541425924515\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 08:50:18','2018-11-05 13:50:18','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(188,1,'2014-07-21 06:42:20','2014-07-21 06:42:20','','Featured projects','','publish','open','open','','featured-projects','','','2019-01-10 08:49:29','2019-01-10 13:49:29','',0,'http://192.168.1.44/dhoi/?page_id=188',0,'page','',0),(189,1,'2014-07-21 06:42:20','2014-07-21 06:42:20','','Projects','','inherit','open','open','','188-revision-v1','','','2014-07-21 06:42:20','2014-07-21 06:42:20','',188,'http://192.168.1.44/dhoi/188-revision-v1/',0,'revision','',0),(393,1,'2014-08-12 11:51:28','2014-08-12 11:51:28','','wood shop 2','','inherit','open','open','','wood-shop-2','','','2014-08-12 11:51:28','2014-08-12 11:51:28','',261,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/wood-shop-2.jpg',0,'attachment','image/jpeg',0),(192,1,'2014-07-21 06:51:29','2014-07-21 06:51:29','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nThe door is open, so come in and explore our divisions and visit our exceptional list of manufacturers!','Indutry News','','publish','open','open','','resources','','','2021-04-16 00:51:52','2021-04-16 04:51:52','',7,'http://192.168.1.44/dhoi/?page_id=192',0,'page','',0),(193,1,'2014-07-21 06:51:29','2014-07-21 06:51:29','','Resources','','inherit','open','open','','192-revision-v1','','','2014-07-21 06:51:29','2014-07-21 06:51:29','',192,'http://192.168.1.44/dhoi/192-revision-v1/',0,'revision','',0),(1170,1,'2021-04-20 01:07:42','2021-04-20 05:07:42','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/project/old-tampa-city-hall/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n US Border and Customs Patrol Intake Facility – Tampa, FL\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/project/usf-student-union/\">USF Student Union</a>\r\n <a href=\"https://dhoistage.concertium.com/project/university-of-tampa-expansions/\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/project/u-tampa-bob-martinez-athletic-center/\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/project/usf-marshall/\">USF Marshall Center</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/project/sawgrass-marriott-resort-spa-ponte-vedra/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n</div>\r\n</center>','Projects','','inherit','closed','closed','','782-revision-v1','','','2021-04-20 01:07:42','2021-04-20 05:07:42','',782,'https://dhoistage.concertium.com/?p=1170',0,'revision','',0),(392,1,'2014-08-12 11:50:55','2014-08-12 11:50:55','','wood shop 1','','inherit','open','open','','wood-shop-1','','','2014-08-12 11:50:55','2014-08-12 11:50:55','',261,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/wood-shop-1.jpg',0,'attachment','image/jpeg',0),(198,1,'2014-07-21 07:16:42','2014-07-21 07:16:42','','FAQs','','publish','open','open','','faqs','','','2014-07-21 07:16:42','2014-07-21 07:16:42','',0,'http://192.168.1.44/dhoi/?p=198',4,'nav_menu_item','',0),(199,1,'2014-07-21 07:16:41','2014-07-21 07:16:41','','Terms & Conditions','','publish','open','open','','terms-conditions','','','2014-07-21 07:16:41','2014-07-21 07:16:41','',0,'http://192.168.1.44/dhoi/?p=199',2,'nav_menu_item','',0),(200,1,'2014-07-21 07:16:41','2014-07-21 07:16:41',' ','','','publish','open','open','','200','','','2014-07-21 07:16:41','2014-07-21 07:16:41','',0,'http://192.168.1.44/dhoi/?p=200',1,'nav_menu_item','',0),(201,1,'2014-07-21 07:16:42','2014-07-21 07:16:42',' ','','','publish','open','open','','201','','','2014-07-21 07:16:42','2014-07-21 07:16:42','',0,'http://192.168.1.44/dhoi/?p=201',5,'nav_menu_item','',0),(202,1,'2014-07-21 07:16:42','2014-07-21 07:16:42',' ','','','publish','open','open','','202','','','2014-07-21 07:16:42','2014-07-21 07:16:42','',0,'http://192.168.1.44/dhoi/?p=202',3,'nav_menu_item','',0),(203,1,'2014-07-23 10:42:22','2014-07-23 10:42:22','','banner-image1','','inherit','open','open','','banner-image1','','','2014-07-23 10:42:22','2014-07-23 10:42:22','',74,'http://192.168.1.44/dhoi/wp-content/uploads/2014/06/banner-image1.jpg',0,'attachment','image/jpeg',0),(204,1,'2014-07-23 10:46:36','2014-07-23 10:46:36','','banner-image2','','inherit','open','open','','banner-image2','','','2014-07-23 10:46:36','2014-07-23 10:46:36','',75,'http://192.168.1.44/dhoi/wp-content/uploads/2014/06/banner-image2.jpg',0,'attachment','image/jpeg',0),(205,1,'2014-07-23 11:24:12','2014-07-23 11:24:12','','Slider 3','','publish','closed','closed','','slider-3','','','2019-01-13 08:28:28','2019-01-13 13:28:28','',0,'http://192.168.1.44/dhoi/?post_type=home_page_slider&p=205',0,'home_page_slider','',0),(210,1,'2014-07-31 13:21:53','2014-07-31 13:21:53','<p>DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</p>\r\n<p>If you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.</p>\r\n<p>The door is open, so come in and explore our divisions and visit our exceptional list of manufacturers! </p>','ABOUT US','','inherit','open','open','','209-revision-v1','','','2014-07-31 13:21:53','2014-07-31 13:21:53','',209,'http://192.168.1.44/dhoi/209-revision-v1/',0,'revision','',0),(520,1,'2014-08-19 09:10:27','2014-08-19 09:10:27','','sdi','','inherit','open','open','','sdi','','','2014-08-19 09:10:27','2014-08-19 09:10:27','',519,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/sdi.gif',0,'attachment','image/gif',0),(212,1,'2014-07-31 14:02:49','2014-07-31 14:02:49','','arcat','arcat','inherit','open','open','','partners1','','','2014-07-31 14:02:49','2014-07-31 14:02:49','',0,'http://192.168.1.44/dhoi/wp-content/uploads/2014/06/partners1.png',0,'attachment','image/png',0),(213,1,'2014-07-31 14:05:39','2014-07-31 14:05:39','','yale','','inherit','open','open','','yale-2','','','2014-07-31 14:05:39','2014-07-31 14:05:39','',60,'http://192.168.1.44/dhoi/wp-content/uploads/2014/06/yale.png',0,'attachment','image/png',0),(214,1,'2014-07-31 14:13:21','2014-07-31 14:13:21','','Intertek','','publish','closed','closed','','intertek','','','2014-08-19 09:23:04','2014-08-19 09:23:04','',0,'http://192.168.1.44/dhoi/?post_type=partners&p=214',0,'partners','',0),(215,1,'2014-07-31 14:13:14','2014-07-31 14:13:14','','sbd','','inherit','open','open','','sbd','','','2014-07-31 14:13:14','2014-07-31 14:13:14','',214,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/sbd.png',0,'attachment','image/png',0),(216,1,'2014-07-31 14:15:06','2014-07-31 14:15:06','','Door and Hardware Institute','','publish','closed','closed','','door-and-hardware-institute','','','2014-08-19 09:21:22','2014-08-19 09:21:22','',0,'http://192.168.1.44/dhoi/?post_type=partners&p=216',0,'partners','',0),(217,1,'2014-07-31 14:14:41','2014-07-31 14:14:41','','trimco','','inherit','open','open','','trimco-2','','','2014-07-31 14:14:41','2014-07-31 14:14:41','',216,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/trimco.png',0,'attachment','image/png',0),(308,1,'2014-08-06 12:07:36','2014-08-06 12:07:36','<p class=\"paragraph\">DHOI provides complete opening solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective opening solutions that add beauty and value to every project.</p>\n<p class=\"paragraph\">Whether working with new construction, renovation, upgrades, or refurbishment, DHOI customers are assured top quality, professional service, and a commitment to satisfaction.</p>','DHOI','','inherit','open','open','','69-autosave-v1','','','2014-08-06 12:07:36','2014-08-06 12:07:36','',69,'http://codeuridea.net/dhoi/69-autosave-v1/',0,'revision','',0),(290,1,'2014-08-05 10:58:35','2014-08-05 10:58:35','<p class=\"paragraph\">DHOI provides complete opening solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective opening solutions that add beauty and value to every project.</p>\r\n<p class=\"paragraph\">Whether working with new construction, renovation, upgrades, or refurbishment, DHOI customers are assured top quality, professional service, and a commitment to satisfaction.</p>','Holland Knight Suntrust-Tampa','','publish','closed','closed','','holland-knight-suntrust','','','2019-01-10 08:51:54','2019-01-10 13:51:54','',0,'http://192.168.1.44/dhoi/?post_type=project&p=290',0,'project','',0),(221,1,'2014-07-31 15:00:43','2014-07-31 15:00:43','','product7','','inherit','open','open','','product7','','','2014-07-31 15:00:43','2014-07-31 15:00:43','',0,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/product71.jpg',0,'attachment','image/jpeg',0),(289,1,'2014-08-05 10:57:54','2014-08-05 10:57:54','<p class=\"paragraph\">DHOI provides complete opening solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective opening solutions that add beauty and value to every project.</p>\r\n<p class=\"paragraph\">Whether working with new construction, renovation, upgrades, or refurbishment, DHOI customers are assured top quality, professional service, and a commitment to satisfaction.</p>','e-INS-St.Pete','','publish','closed','closed','','e-ins','','','2019-01-10 08:52:19','2019-01-10 13:52:19','',0,'http://192.168.1.44/dhoi/?post_type=project&p=289',0,'project','',0),(223,1,'2014-07-31 15:02:02','2014-07-31 15:02:02','','product8','','inherit','open','open','','product8','','','2014-07-31 15:02:02','2014-07-31 15:02:02','',0,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/product81.jpg',0,'attachment','image/jpeg',0),(291,1,'2014-08-05 11:04:35','2014-08-05 11:04:35','<p class=\"paragraph\">DHOI provides complete opening solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective opening solutions that add beauty and value to every project.</p>\r\n<p class=\"paragraph\">Whether working with new construction, renovation, upgrades, or refurbishment, DHOI customers are assured top quality, professional service, and a commitment to satisfaction.</p>','Lifelink-Tampa','','publish','closed','closed','','lifelink','','','2019-01-10 08:51:40','2019-01-10 13:51:40','',0,'http://192.168.1.44/dhoi/?post_type=project&p=291',0,'project','',0),(514,1,'2014-08-19 09:04:50','2014-08-19 09:04:50','','The Door and Hardware Institute','','inherit','open','open','','216-autosave-v1','','','2014-08-19 09:04:50','2014-08-19 09:04:50','',216,'http://codeuridea.net/dhoi/216-autosave-v1/',0,'revision','',0),(226,1,'2014-07-31 15:08:21','2014-07-31 15:08:21','','rixson','','inherit','open','open','','rixson','','','2014-07-31 15:08:21','2014-07-31 15:08:21','',0,'http://192.168.1.44/dhoi/wp-content/uploads/2014/07/rixson.png',0,'attachment','image/png',0),(515,1,'2014-08-19 09:05:55','2014-08-19 09:05:55','','dhi','','inherit','open','open','','dhi','','','2014-08-19 09:05:55','2014-08-19 09:05:55','',216,'http://codeuridea.net/dhoi/wp-content/uploads/2014/07/dhi.gif',0,'attachment','image/gif',0),(516,1,'2014-08-19 09:07:32','2014-08-19 09:07:32','','Intertek','','inherit','open','open','','214-autosave-v1','','','2014-08-19 09:07:32','2014-08-19 09:07:32','',214,'http://codeuridea.net/dhoi/214-autosave-v1/',0,'revision','',0),(517,1,'2014-08-19 09:08:05','2014-08-19 09:08:05','','warnock','','inherit','open','open','','warnock','','','2014-08-19 09:08:05','2014-08-19 09:08:05','',214,'http://codeuridea.net/dhoi/wp-content/uploads/2014/07/warnock.gif',0,'attachment','image/gif',0),(518,1,'2014-08-19 09:09:17','2014-08-19 09:09:17','','ul','','inherit','open','open','','ul','','','2014-08-19 09:09:17','2014-08-19 09:09:17','',60,'http://codeuridea.net/dhoi/wp-content/uploads/2014/06/ul.gif',0,'attachment','image/gif',0),(232,1,'2014-08-01 08:40:41','2014-08-01 08:40:41','[text* FullName placeholder \"Full Name\"] \r\n\r\n\r\n[text* EmailAddress placeholder \"Email Address\"]\r\n\r\n\r\n[textarea* FullAddress 1x1 placeholder \"Full Address\"]\r\n\r\n\r\n[textarea* Description 1x1 placeholder \"Description\"]\r\n[submit \"Contact\"]\n\n[FullName] <[EmailAddress]>\nFrom: [FullName] <[EmailAddress]>\r\n\r\nMessage Body:\r\n[Description]\r\n\r\n--\r\nThis e-mail was sent from a contact form on dhoi (http://192.168.1.44/dhoi)\nmonika.webmaster2012@gmail.com\n\n\n\n\n\n[your-subject]\n[your-name] <[your-email]>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on dhoi (http://192.168.1.44/dhoi)\n[your-email]\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill 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-08-12 06:19:35','2014-08-12 06:19:35','',0,'http://192.168.1.44/dhoi/?post_type=wpcf7_contact_form&p=232',0,'wpcf7_contact_form','',0),(386,1,'2014-08-11 14:45:51','2014-08-11 14:45:51','<p>Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p>\r\n<img class=\"about_pic\" alt=\"\" src=\"http://codeuridea.net/dhoi/wp-content/uploads/2014/06/about_pic.jpg\">\r\n<p>DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available. </p>','About Us','','inherit','open','open','','9-revision-v1','','','2014-08-11 14:45:51','2014-08-11 14:45:51','',9,'http://codeuridea.net/dhoi/9-revision-v1/',0,'revision','',0),(233,1,'2014-08-01 09:37:31','2014-08-01 09:37:31','','On-site Modification Shop','','publish','open','open','','on-site-modification-shop','','','2014-08-08 17:45:18','2014-08-08 17:45:18','',0,'http://192.168.1.44/dhoi/?page_id=233',0,'page','',0),(234,1,'2014-08-01 09:37:31','2014-08-01 09:37:31','','On-site Modification Shop','','inherit','open','open','','233-revision-v1','','','2014-08-01 09:37:31','2014-08-01 09:37:31','',233,'http://192.168.1.44/dhoi/233-revision-v1/',0,'revision','',0),(530,1,'2014-08-19 14:03:11','2014-08-19 14:03:11','','trim-and-auxiliary-30S','','inherit','open','open','','trim-and-auxiliary-30s','','','2014-08-19 14:03:11','2014-08-19 14:03:11','',459,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/trim-and-auxiliary-30S.png',0,'attachment','image/png',0),(521,1,'2014-08-19 09:11:13','2014-08-19 09:11:13','','National Association of Architectural Metal Manufacturers ','','publish','closed','closed','','national-association-of-architectural-metal-manufacturers','','','2014-08-19 09:20:20','2014-08-19 09:20:20','',0,'http://codeuridea.net/dhoi/?post_type=partners&p=521',0,'partners','',0),(522,1,'2014-08-19 09:11:08','2014-08-19 09:11:08','','naamm','','inherit','open','open','','naamm','','','2014-08-19 09:11:08','2014-08-19 09:11:08','',521,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/naamm.gif',0,'attachment','image/gif',0),(376,1,'2014-08-08 21:40:48','2014-08-08 21:40:48','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.','Ware House','','publish','closed','closed','','ware-house','','','2014-08-12 12:05:45','2014-08-12 12:05:45','',0,'http://codeuridea.net/dhoi/?post_type=shop&p=376',0,'shop','',0),(403,1,'2014-08-12 12:04:46','2014-08-12 12:04:46','','warehouse 3','','inherit','open','open','','warehouse-3','','','2014-08-12 12:04:46','2014-08-12 12:04:46','',376,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/warehouse-3.jpg',0,'attachment','image/jpeg',0),(404,1,'2014-08-12 12:05:15','2014-08-12 12:05:15','','warehouse 1','','inherit','open','open','','warehouse-1','','','2014-08-12 12:05:15','2014-08-12 12:05:15','',376,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/warehouse-1.jpg',0,'attachment','image/jpeg',0),(405,1,'2014-08-12 12:05:40','2014-08-12 12:05:40','','warehouse 2','','inherit','open','open','','warehouse-2','','','2014-08-12 12:05:40','2014-08-12 12:05:40','',376,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/warehouse-2.jpg',0,'attachment','image/jpeg',0),(244,1,'2014-08-01 10:39:48','2014-08-01 10:39:48','','partners9','','inherit','open','open','','partners9','','','2014-08-01 10:39:48','2014-08-01 10:39:48','',0,'http://192.168.1.44/dhoi/wp-content/uploads/2014/08/partners9.png',0,'attachment','image/png',0),(245,1,'2014-08-01 10:41:01','2014-08-01 10:41:01','','pro_pic1','','inherit','open','open','','pro_pic1','','','2014-08-01 10:41:01','2014-08-01 10:41:01','',782,'http://192.168.1.44/dhoi/wp-content/uploads/2014/08/pro_pic1.jpg',0,'attachment','image/jpeg',0),(357,1,'2014-08-08 17:43:45','2014-08-08 17:43:45','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.','Metal Shop','','publish','closed','closed','','metal-shop','','','2014-08-12 12:02:12','2014-08-12 12:02:12','',0,'http://codeuridea.net/dhoi/?post_type=shop&p=357',0,'shop','',0),(382,1,'2014-08-09 14:10:05','2014-08-09 14:10:05','','product-img1','','inherit','open','open','','product-img1','','','2014-08-09 14:10:05','2014-08-09 14:10:05','',347,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/product-img1.png',0,'attachment','image/png',0),(249,1,'2014-08-01 12:06:18','2014-08-01 12:06:18','[contact-form-7 id=\"232\" title=\"Contact form 1\"]','Contact Us','','inherit','open','open','','13-revision-v1','','','2014-08-01 12:06:18','2014-08-01 12:06:18','',13,'http://192.168.1.44/dhoi/13-revision-v1/',0,'revision','',0),(251,1,'2014-08-01 14:48:14','2014-08-01 14:48:14','','industry_logo1','','inherit','open','open','','industry_logo1','','','2014-08-01 14:48:14','2014-08-01 14:48:14','',66,'http://192.168.1.44/dhoi/wp-content/uploads/2014/06/industry_logo1.png',0,'attachment','image/png',0),(253,1,'2014-08-01 15:10:26','2014-08-01 15:10:26','','industry_logo2','','inherit','open','open','','industry_logo2','','','2014-08-01 15:10:26','2014-08-01 15:10:26','',70,'http://192.168.1.44/dhoi/wp-content/uploads/2014/06/industry_logo2.png',0,'attachment','image/png',0),(254,1,'2014-08-01 15:32:19','2014-08-01 15:32:19','','industry_logo3','','inherit','open','open','','industry_logo3','','','2014-08-01 15:32:19','2014-08-01 15:32:19','',71,'http://192.168.1.44/dhoi/wp-content/uploads/2014/06/industry_logo3.png',0,'attachment','image/png',0),(255,1,'2014-08-01 15:33:45','2014-08-01 15:33:45','The Door and Hardware Institute is a professional organization that serves as the resource for education and information on doors, hardware, security and specialty products for the architectural openings industry.','Industry Link 4','','publish','closed','closed','','industry-link-4','','','2018-11-05 08:42:01','2018-11-05 13:42:01','',0,'http://192.168.1.44/dhoi/?post_type=industry-links&p=255',0,'industry-links','',0),(256,1,'2014-08-01 15:34:40','2014-08-01 15:34:40','For over 100 years the Warnock Hersey Mark (WHI) has represented quality and integrity. Intertek helps you meet NFPA 80 requirements for fire doors, which gives you code compliance.','Industry Link 5','','publish','closed','closed','','industry-link-5','','','2018-11-05 08:41:41','2018-11-05 13:41:41','',0,'http://192.168.1.44/dhoi/?post_type=industry-links&p=256',0,'industry-links','',0),(257,1,'2014-08-01 16:06:24','2014-08-01 16:06:24','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nThe door is open, so come in and explore our divisions and visit our exceptional list of manufacturers!','Resources','','inherit','open','open','','192-revision-v1','','','2014-08-01 16:06:24','2014-08-01 16:06:24','',192,'http://192.168.1.44/dhoi/192-revision-v1/',0,'revision','',0),(258,1,'2014-08-01 16:10:21','2014-08-01 16:10:21','\r\n\r\nDHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nThe door is open, so come in and explore our divisions and visit our exceptional list of manufacturers!\r\n','Terms and Conditions','','inherit','open','open','','17-revision-v1','','','2014-08-01 16:10:21','2014-08-01 16:10:21','',17,'http://192.168.1.44/dhoi/17-revision-v1/',0,'revision','',0),(259,1,'2014-08-04 06:41:36','2014-08-04 06:41:36','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nThe door is open, so come in and explore our divisions and visit our exceptional list of manufacturers!','FAQ','','inherit','open','open','','25-revision-v1','','','2014-08-04 06:41:36','2014-08-04 06:41:36','',25,'http://192.168.1.44/dhoi/25-revision-v1/',0,'revision','',0),(260,1,'2014-08-04 07:01:52','2014-08-04 07:01:52','','service_pic2','','inherit','open','open','','service_pic2','','','2014-08-04 07:01:52','2014-08-04 07:01:52','',0,'http://192.168.1.44/dhoi/wp-content/uploads/2014/08/service_pic2.jpg',0,'attachment','image/jpeg',0),(261,1,'2014-08-04 07:25:14','2014-08-04 07:25:14','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.','Wood Shop','','publish','closed','closed','','wood-shop','','','2014-08-12 11:53:37','2014-08-12 11:53:37','',0,'http://192.168.1.44/dhoi/?post_type=shop&p=261',0,'shop','',0),(262,1,'2014-08-04 07:25:03','2014-08-04 07:25:03','','service_pic1','','inherit','open','open','','service_pic1','','','2014-08-04 07:25:03','2014-08-04 07:25:03','',261,'http://192.168.1.44/dhoi/wp-content/uploads/2014/08/service_pic1.jpg',0,'attachment','image/jpeg',0),(263,1,'2014-08-04 07:27:06','2014-08-04 07:27:06','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nThe door is open, so come in and explore our divisions and visit our exceptional list of manufacturers!\r\n','Blog','','inherit','open','open','','7-revision-v1','','','2014-08-04 07:27:06','2014-08-04 07:27:06','',7,'http://192.168.1.44/dhoi/7-revision-v1/',0,'revision','',0),(270,1,'2014-08-04 11:11:56','2014-08-04 11:11:56','hellooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo\r\n','Our Services','','inherit','open','open','','11-revision-v1','','','2014-08-04 11:11:56','2014-08-04 11:11:56','',11,'http://192.168.1.44/dhoi/11-revision-v1/',0,'revision','',0),(264,1,'2014-08-04 08:17:13','2014-08-04 08:17:13','<p class=\"paragraph\">We realize that not everyone wants the same thing. So even though we stock the best products by the best manufacturers, some clients do require customized items. For this reason we have a complete machine shop operated by skilled experienced craftsmen capable of creating your most complex requests.</p>\r\n<p class=\"paragraph\">We provide re-railing and re-stiling of your wood doors to custom specifications. In addition we manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors.</p>\r\n<p class=\"paragraph\">We produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.</p>','Our Services','','inherit','open','open','','11-revision-v1','','','2014-08-04 08:17:13','2014-08-04 08:17:13','',11,'http://192.168.1.44/dhoi/11-revision-v1/',0,'revision','',0),(265,1,'2014-08-04 08:30:56','2014-08-04 08:30:56','','about_pic','','inherit','open','open','','about_pic','','','2014-08-04 08:30:56','2014-08-04 08:30:56','',9,'http://192.168.1.44/dhoi/wp-content/uploads/2014/06/about_pic.jpg',0,'attachment','image/jpeg',0),(266,1,'2014-08-04 09:34:54','2014-08-04 09:34:54','','about_pic2','','inherit','open','open','','about_pic2','','','2014-08-04 09:34:54','2014-08-04 09:34:54','',0,'http://192.168.1.44/dhoi/wp-content/uploads/2014/08/about_pic2.jpg',0,'attachment','image/jpeg',0),(267,1,'2014-08-04 09:35:23','2014-08-04 09:35:23','','about_pic2','','inherit','open','open','','about_pic2-2','','','2014-08-04 09:35:23','2014-08-04 09:35:23','',9,'http://192.168.1.44/dhoi/wp-content/uploads/2014/08/about_pic21.jpg',0,'attachment','image/jpeg',0),(268,1,'2014-08-04 09:37:11','2014-08-04 09:37:11','','about_pic3','','inherit','open','open','','about_pic3','','','2014-08-04 09:37:11','2014-08-04 09:37:11','',0,'http://192.168.1.44/dhoi/wp-content/uploads/2014/08/about_pic3.jpg',0,'attachment','image/jpeg',0),(269,1,'2014-08-04 09:38:45','2014-08-04 09:38:45','','about_pic4','','inherit','open','open','','about_pic4','','','2014-08-04 09:38:45','2014-08-04 09:38:45','',0,'http://192.168.1.44/dhoi/wp-content/uploads/2014/08/about_pic4.jpg',0,'attachment','image/jpeg',0),(271,1,'2014-08-04 11:12:33','2014-08-04 11:12:33','<p class=\"paragraph\">We realize that not everyone wants the same thing. So even though we stock the best products by the best manufacturers, some clients do require customized items. For this reason we have a complete machine shop operated by skilled experienced craftsmen capable of creating your most complex requests.</p>\r\n<p class=\"paragraph\">We provide re-railing and re-stiling of your wood doors to custom specifications. In addition we manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors.</p>\r\n<p class=\"paragraph\">We produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.</p>','Our Services','','inherit','open','open','','11-revision-v1','','','2014-08-04 11:12:33','2014-08-04 11:12:33','',11,'http://192.168.1.44/dhoi/11-revision-v1/',0,'revision','',0),(272,1,'2021-04-12 08:05:26','2021-04-12 12:05:26','Door and hardware openings is a leader in the industry of architectual doors and finish hardware. For the past 30 years, DHOI has been providing project management and consulting for many projects all over the USA and many international projects. With such a strong and skilled sales force, no project is too small or too large!\n\n \n\n<span style=\"font-size: xx-large;\"><strong>What sets DHOI apart</strong></span>\n\nDHOI is more than the average door and hardware supplier. We maintain an extensive inventory of Division 8 finish hardware suited for fire rated openings, impact safety openings as well as handicap openings. We carry several products from the major vendors that are approved for a wide variety of building projects such as Schlage, Sargent, Von Duprin and more. \nIn addition to our vast hardware supply, we also stock commercial doors and frames in many standard sizes. Since not every project is comprised of standard off the shelf materials, we are able to provide customizations to your openings with our in house wood and metal machine shops.\nDHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.\n\n \n\n<span style=\"font-size: xx-large;\"><strong>The Mission</strong></span>\nProvide cost and time efficient solutions for your project through expert technical knowledge and professionalism. The cornerstone of our mission is to create long lasting working relationships with our customers and seek to always provide reliable customer service.','About us','','inherit','open','open','','9-autosave-v1','','','2021-04-12 08:05:26','2021-04-12 12:05:26','',9,'http://192.168.1.44/dhoi/9-autosave-v1/',0,'revision','',0),(510,1,'2014-08-14 16:09:52','2014-08-14 16:09:52','<p>Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p>\r\n<img class=\"about_pic\" alt=\"\" src=\"http://codeuridea.net/dhoi/wp-content/uploads/2014/08/image-right.png\"><img class=\"about_pic\" alt=\"\" src=\"http://codeuridea.net/dhoi/wp-content/uploads/2014/08/image_left.png\">\r\n<p>DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available. </p>','About Us','','inherit','open','open','','9-revision-v1','','','2014-08-14 16:09:52','2014-08-14 16:09:52','',9,'http://codeuridea.net/dhoi/9-revision-v1/',0,'revision','',0),(273,1,'2014-08-04 14:08:25','2014-08-04 14:08:25','<p class=\"paragraph\" style=\"color: #000000;\">Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p>\r\n<img src=\"new/images/about_pic\" alt=\"\" />\r\n<p class=\"paragraph\" style=\"color: #000000;\">DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.</p>','About Us','','inherit','open','open','','9-revision-v1','','','2014-08-04 14:08:25','2014-08-04 14:08:25','',9,'http://192.168.1.44/dhoi/9-revision-v1/',0,'revision','',0),(275,1,'2014-08-04 14:10:42','2014-08-04 14:10:42','<p class=\"paragraph\" style=\"color: #000000;\">Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p>\r\n<img src=\"http://192.168.1.44/dhoi/wp-content/uploads/2014/08/about_pic21.jpg\" alt=\"about_pic2\" width=\"224\" height=\"140\" class=\"alignnone size-full wp-image-267\" /></a>\" alt=\"\" />\r\n<p class=\"paragraph\" style=\"color: #000000;\">DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.</p>','About Us','','inherit','open','open','','9-revision-v1','','','2014-08-04 14:10:42','2014-08-04 14:10:42','',9,'http://192.168.1.44/dhoi/9-revision-v1/',0,'revision','',0),(274,1,'2014-08-04 14:10:25','2014-08-04 14:10:25','<p class=\"paragraph\" style=\"color: #000000;\">Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p>\r\n<img src=\"<a href=\"http://192.168.1.44/dhoi/wp-content/uploads/2014/08/about_pic21.jpg\"><img src=\"http://192.168.1.44/dhoi/wp-content/uploads/2014/08/about_pic21.jpg\" alt=\"about_pic2\" width=\"224\" height=\"140\" class=\"alignnone size-full wp-image-267\" /></a>\" alt=\"\" />\r\n<p class=\"paragraph\" style=\"color: #000000;\">DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.</p>','About Us','','inherit','open','open','','9-revision-v1','','','2014-08-04 14:10:25','2014-08-04 14:10:25','',9,'http://192.168.1.44/dhoi/9-revision-v1/',0,'revision','',0),(276,1,'2014-08-04 14:11:11','2014-08-04 14:11:11','<p class=\"paragraph\" style=\"color: #000000;\">Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p>\r\n<img src=\"http://192.168.1.44/dhoi/wp-content/uploads/2014/08/about_pic21.jpg\" alt=\"about_pic2\" width=\"224\" height=\"140\" class=\"alignnone size-full wp-image-267\" />\r\n<p class=\"paragraph\" style=\"color: #000000;\">DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.</p>','About Us','','inherit','open','open','','9-revision-v1','','','2014-08-04 14:11:11','2014-08-04 14:11:11','',9,'http://192.168.1.44/dhoi/9-revision-v1/',0,'revision','',0),(277,1,'2014-08-04 14:11:50','2014-08-04 14:11:50','','about_pic','','inherit','open','open','','about_pic-2','','','2014-08-04 14:11:50','2014-08-04 14:11:50','',9,'http://192.168.1.44/dhoi/wp-content/uploads/2014/06/about_pic1.jpg',0,'attachment','image/jpeg',0),(279,1,'2014-08-04 16:31:23','2014-08-04 16:31:23','<p class=\"paragraph\" style=\"color: #000000;\">Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p>\r\n<p class=\"paragraph\" style=\"color: #000000;\">DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.</p>','About Us','','inherit','open','open','','9-revision-v1','','','2014-08-04 16:31:23','2014-08-04 16:31:23','',9,'http://192.168.1.44/dhoi/9-revision-v1/',0,'revision','',0),(278,1,'2014-08-04 14:11:58','2014-08-04 14:11:58','<p class=\"paragraph\" style=\"color: #000000;\">Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p>\r\n<a href=\"http://192.168.1.44/dhoi/wp-content/uploads/2014/06/about_pic1.jpg\"><img src=\"http://192.168.1.44/dhoi/wp-content/uploads/2014/06/about_pic1-300x190.jpg\" alt=\"about_pic\" width=\"300\" height=\"190\" class=\"alignnone size-medium wp-image-277\" /></a>\r\n<p class=\"paragraph\" style=\"color: #000000;\">DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.</p>','About Us','','inherit','open','open','','9-revision-v1','','','2014-08-04 14:11:58','2014-08-04 14:11:58','',9,'http://192.168.1.44/dhoi/9-revision-v1/',0,'revision','',0),(280,1,'2014-08-04 17:38:59','2014-08-04 17:38:59','<p>Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p>\r\n<img class=\"test\" alt=\"\" src=\"images/about_pic.jpg\">\r\n<p>DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available. </p>','About Us','','inherit','open','open','','9-revision-v1','','','2014-08-04 17:38:59','2014-08-04 17:38:59','',9,'http://192.168.1.44/dhoi/9-revision-v1/',0,'revision','',0),(281,1,'2014-08-04 17:40:40','2014-08-04 17:40:40','<p>Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p>\r\n<img class=\"test\" alt=\"\" src=\"http://192.168.1.44/dhoi/wp-content/uploads/2014/06/about_pic.jpg\">\r\n<p>DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available. </p>','About Us','','inherit','open','open','','9-revision-v1','','','2014-08-04 17:40:40','2014-08-04 17:40:40','',9,'http://192.168.1.44/dhoi/9-revision-v1/',0,'revision','',0),(607,1,'2021-04-14 06:22:59','2021-04-14 10:22:59','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\n\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\n\n \n\n<div style=\"width: 100%; display: table;\">\n<div style=\"display: table-row;\">\n<div style=\"width: 400px; display: table-cell;\">\n<center>\n<figure>\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\n</a>\n</figure>\n</center>\n</div>\n<div style=\"width: 400px; display: table-cell;\">\n<center>\n<figure>\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\n</a>\n</figure>\n</center>\n</div>\n<div style=\"width: 400px; display: table-cell;\">\n<center>\n<figure>\n <a href=\"https://dhoistage.concertium.com/hardware/\">\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\n <center>\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\n</a>\n</figure>\n</center>\n</div>\n</div>\n</div>\n\n \n','Products','','inherit','open','open','','600-autosave-v1','','','2021-04-14 06:22:59','2021-04-14 10:22:59','',600,'https://dhoistage.concertium.com/600-autosave-v1/',0,'revision','',0),(310,1,'2014-08-06 12:18:11','2014-08-06 12:18:11','','e-INS- St.Pete-1','','inherit','open','open','','e-ins-st-pete-1','','','2014-08-06 12:18:11','2014-08-06 12:18:11','',289,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/e-INS-St.Pete-1.jpg',0,'attachment','image/jpeg',0),(296,1,'2014-08-05 13:52:23','2014-08-05 13:52:23','[go_portfolio id=\"port_1\"]','Projects','','inherit','open','open','','188-revision-v1','','','2014-08-05 13:52:23','2014-08-05 13:52:23','',188,'http://192.168.1.44/dhoi/188-revision-v1/',0,'revision','',0),(538,1,'2014-08-22 13:14:45','2014-08-22 13:14:45','','trim-and-auxiliary-307D','','inherit','open','open','','trim-and-auxiliary-307d','','','2014-08-22 13:14:45','2014-08-22 13:14:45','',478,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/trim-and-auxiliary-307D.png',0,'attachment','image/png',0),(298,1,'2014-08-05 14:44:07','2014-08-05 14:44:07','','about_pic','','inherit','open','open','','about_pic-3','','','2014-08-05 14:44:07','2014-08-05 14:44:07','',0,'http://192.168.1.44/dhoi/wp-content/uploads/2014/08/about_pic.jpg',0,'attachment','image/jpeg',0),(947,1,'2019-01-10 08:37:09','2019-01-10 13:37:09','','Featured projects','','inherit','open','open','','188-revision-v1','','','2019-01-10 08:37:09','2019-01-10 13:37:09','',188,'https://dhoistage.concertium.com/188-revision-v1/',0,'revision','',0),(307,1,'2014-08-06 11:48:39','2014-08-06 11:48:39','','ASIPAIRDOORS-St.Pete','','inherit','open','open','','asipairdoors-st-pete','','','2014-08-06 11:48:39','2014-08-06 11:48:39','',51,'http://codeuridea.net/dhoi/wp-content/uploads/2014/06/ASIPAIRDOORS-St.Pete_.jpg',0,'attachment','image/jpeg',0),(305,1,'2014-08-06 11:44:52','2014-08-06 11:44:52','','ASIBARNDOOR-St.Pete','','inherit','open','open','','asibarndoor-st-pete','','','2014-08-06 11:44:52','2014-08-06 11:44:52','',51,'http://codeuridea.net/dhoi/wp-content/uploads/2014/06/ASIBARNDOOR-St.Pete_.jpg',0,'attachment','image/jpeg',0),(309,1,'2014-08-06 12:13:39','2014-08-06 12:13:39','','DHOI- Tampa','','inherit','open','open','','dhoi-tampa','','','2014-08-06 12:13:39','2014-08-06 12:13:39','',69,'http://codeuridea.net/dhoi/wp-content/uploads/2014/06/DHOI-Tampa.jpg',0,'attachment','image/jpeg',0),(311,1,'2014-08-06 12:18:50','2014-08-06 12:18:50','','e-INS- St.Pete-2','','inherit','open','open','','e-ins-st-pete-2','','','2014-08-06 12:18:50','2014-08-06 12:18:50','',289,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/e-INS-St.Pete-2.jpg',0,'attachment','image/jpeg',0),(312,1,'2014-08-06 12:19:13','2014-08-06 12:19:13','','e-INS- St.Pete-3','','inherit','open','open','','e-ins-st-pete-3','','','2014-08-06 12:19:13','2014-08-06 12:19:13','',289,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/e-INS-St.Pete-3.jpg',0,'attachment','image/jpeg',0),(313,1,'2014-08-06 12:19:50','2014-08-06 12:19:50','','e-INS- St.Pete-4','','inherit','open','open','','e-ins-st-pete-4','','','2014-08-06 12:19:50','2014-08-06 12:19:50','',289,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/e-INS-St.Pete-4.jpg',0,'attachment','image/jpeg',0),(315,1,'2014-08-06 12:24:40','2014-08-06 12:24:40','','Holland-Knight-Suntrust-Tampa','','inherit','open','open','','holland-knight-suntrust-tampa','','','2014-08-06 12:24:40','2014-08-06 12:24:40','',290,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/Holland-Knight-Suntrust-Tampa.jpg',0,'attachment','image/jpeg',0),(316,1,'2014-08-06 12:29:34','2014-08-06 12:29:34','','Lifelink-Tampa-1','','inherit','open','open','','lifelink-tampa-1','','','2014-08-06 12:29:34','2014-08-06 12:29:34','',291,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/Lifelink-Tampa-1.jpg',0,'attachment','image/jpeg',0),(317,1,'2014-08-06 12:30:14','2014-08-06 12:30:14','<p class=\"paragraph\">DHOI provides complete opening solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective opening solutions that add beauty and value to every project.</p>\n<p class=\"paragraph\">Whether working with new construction, renovation, upgrades, or refurbishment, DHOI customers are assured top quality, professional service, and a commitment to satisfaction.</p>','Lifelink-Tampa','','inherit','open','open','','291-autosave-v1','','','2014-08-06 12:30:14','2014-08-06 12:30:14','',291,'http://codeuridea.net/dhoi/291-autosave-v1/',0,'revision','',0),(318,1,'2014-08-06 12:30:30','2014-08-06 12:30:30','','Lifelink-Tampa-2','','inherit','open','open','','lifelink-tampa-2','','','2014-08-06 12:30:30','2014-08-06 12:30:30','',291,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/Lifelink-Tampa-2.jpg',0,'attachment','image/jpeg',0),(319,1,'2014-08-06 12:34:45','2014-08-06 12:34:45','<p class=\"paragraph\">DHOI provides complete opening solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective opening solutions that add beauty and value to every project.</p>\r\n<p class=\"paragraph\">Whether working with new construction, renovation, upgrades, or refurbishment, DHOI customers are assured top quality, professional service, and a commitment to satisfaction.</p>','The Cloisters- Boca Raton','','publish','closed','closed','','the-cloisters-boca-raton','','','2019-01-10 08:51:25','2019-01-10 13:51:25','',0,'http://codeuridea.net/dhoi/?post_type=project&p=319',0,'project','',0),(320,1,'2014-08-06 12:34:22','2014-08-06 12:34:22','','The Cloisters- Boca Raton','','inherit','open','open','','the-cloisters-boca-raton','','','2014-08-06 12:34:22','2014-08-06 12:34:22','',319,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/The-Cloisters-Boca-Raton.jpg',0,'attachment','image/jpeg',0),(321,1,'2014-08-06 12:38:12','2014-08-06 12:38:12','<p class=\"paragraph\">DHOI provides complete opening solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective opening solutions that add beauty and value to every project.</p>\r\n<p class=\"paragraph\">Whether working with new construction, renovation, upgrades, or refurbishment, DHOI customers are assured top quality, professional service, and a commitment to satisfaction.</p>','SW Buddist Temple-St.Pete','','publish','closed','closed','','sw-buddist-temple-st-pete','','','2014-08-06 13:11:50','2014-08-06 13:11:50','',0,'http://codeuridea.net/dhoi/?post_type=project&p=321',0,'project','',0),(322,1,'2014-08-06 12:37:52','2014-08-06 12:37:52','','SW Buddist Temple-St.Pete','','inherit','open','open','','sw-buddist-temple-st-pete','','','2014-08-06 12:37:52','2014-08-06 12:37:52','',321,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/SW-Buddist-Temple-St.Pete_.jpg',0,'attachment','image/jpeg',0),(324,1,'2014-08-06 12:39:30','2014-08-06 12:39:30','','UT Athletic Bldg-Tampa','','inherit','open','open','','ut-athletic-bldg-tampa','','','2014-08-06 12:39:30','2014-08-06 12:39:30','',0,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa.jpg',0,'attachment','image/jpeg',0),(332,1,'2014-08-06 13:07:26','2014-08-06 13:07:26','','UT Brevard Hall - Tampa','','inherit','open','open','','ut-brevard-hall-tampa','','','2014-08-06 13:07:26','2014-08-06 13:07:26','',329,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/UT-Brevard-Hall-Tampa.jpg',0,'attachment','image/jpeg',0),(899,1,'2019-01-09 09:50:39','2019-01-09 14:50:39','','UT-Bob-Martinez-Athletics-Ctr-Tampa','','inherit','open','open','','ut-bob-martinez-athletics-ctr-tampa','','','2019-01-09 09:50:39','2019-01-09 14:50:39','',0,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg',0,'attachment','image/jpeg',0),(329,1,'2014-08-06 13:09:28','2014-08-06 13:09:28','<p class=\"paragraph\">DHOI provides complete opening solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective opening solutions that add beauty and value to every project.</p>\r\n<p class=\"paragraph\">Whether working with new construction, renovation, upgrades, or refurbishment, DHOI customers are assured top quality, professional service, and a commitment to satisfaction.</p>','University of Texas','','publish','closed','closed','','university-of-texas','','','2019-01-10 08:51:00','2019-01-10 13:51:00','',0,'http://codeuridea.net/dhoi/?post_type=project&p=329',0,'project','',0),(330,1,'2014-08-06 13:06:15','2014-08-06 13:06:15','','UT Athletic Bldg-Tampa','','inherit','open','open','','ut-athletic-bldg-tampa-2','','','2014-08-06 13:06:15','2014-08-06 13:06:15','',329,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1.jpg',0,'attachment','image/jpeg',0),(333,1,'2014-08-06 13:07:58','2014-08-06 13:07:58','','UT R.K. Bailey Art Studios- Tampa (1)','','inherit','open','open','','ut-r-k-bailey-art-studios-tampa-1','','','2014-08-06 13:07:58','2014-08-06 13:07:58','',329,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg',0,'attachment','image/jpeg',0),(339,1,'2014-08-06 13:17:46','2014-08-06 13:17:46','','UT Schoomaker ROTCA','','inherit','open','open','','ut-schoomaker-rotca','','','2014-08-06 13:17:46','2014-08-06 13:17:46','',329,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg',0,'attachment','image/jpeg',0),(335,1,'2014-08-06 13:09:03','2014-08-06 13:09:03','','UT Sports Complex - Tampa','','inherit','open','open','','ut-sports-complex-tampa','','','2014-08-06 13:09:03','2014-08-06 13:09:03','',329,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/UT-Sports-Complex-Tampa.jpg',0,'attachment','image/jpeg',0),(336,1,'2014-08-06 13:09:22','2014-08-06 13:09:22','','UT Sykes Chapel - Tampa','','inherit','open','open','','ut-sykes-chapel-tampa','','','2014-08-06 13:09:22','2014-08-06 13:09:22','',329,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/UT-Sykes-Chapel-Tampa.jpg',0,'attachment','image/jpeg',0),(337,1,'2014-08-06 13:11:38','2014-08-06 13:11:38','','SW Buddist Temple-St.Pete','','inherit','open','open','','sw-buddist-temple-st-pete-2','','','2014-08-06 13:11:38','2014-08-06 13:11:38','',321,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/SW-Buddist-Temple-St.Pete_1.jpg',0,'attachment','image/jpeg',0),(338,1,'2014-08-06 13:13:59','2014-08-06 13:13:59','','DHOI- Tampa','','inherit','open','open','','dhoi-tampa-2','','','2014-08-06 13:13:59','2014-08-06 13:13:59','',69,'http://codeuridea.net/dhoi/wp-content/uploads/2014/06/DHOI-Tampa1.jpg',0,'attachment','image/jpeg',0),(344,1,'2014-08-07 16:02:48','2014-08-07 16:02:48','Recommended for use on high frequency and/or heavy wood or metal doors in schools, hospitals or other public buildings where heavy traffic is experienced\r\n\r\nHinge allows for maximum clearance for passage of beds, tables or other equipment through the doorway Meets ADA Requirements and ANS I A117.1-1986 Pressed steel jambs require no special reinforcing\r\n\r\nPin is held in place by an NRP set screw, which allows the hinge to be reversible For Beveled Edge, where doors are beveled in hinge side, specify T4A4395 or T4A4795\r\n\r\nRecommended for use on high frequency and/or heavy wood or metal doors in schools, hospitals or other public buildings where heavy traffic is experienced\r\n\r\nPin is held in place by an NRP set screw, which allows the hinge to be reversible For Beveled Edge, where doors are beveled in hinge side, specify T4A4395 or T4A4795\r\n\r\nHinge allows for maximum clearance for passage of beds, tables or other equipment through the doorway Meets ADA Requirements and ANS I A117.1-1986 Pressed steel jambs require no special reinforcing\r\n\r\nPin is held in place by an NRP set screw, which allows the hinge to be reversible For Beveled Edge, where doors are beveled in hinge side, specify T4A4395 or T4A4795','Clear Bearing Hinges-Five Knuckle Heavy Weight Series (Reversible) - T4A3395/T4A3795','','publish','open','closed','','clear-bearing-hinges-five-knuckle-heavy-weight-series-reversible-t4a3395t4a3795','','','2014-08-07 16:02:48','2014-08-07 16:02:48','',0,'http://codeuridea.net/dhoi/?post_type=product&p=344',0,'product','',0),(345,1,'2014-08-07 16:03:34','2014-08-07 16:03:34','Recommended for use on high frequency and/or heavy wood or metal doors in schools, hospitals or other public buildings where heavy traffic is experienced\r\n\r\nHinge allows for maximum clearance for passage of beds, tables or other equipment through the doorway Meets ADA Requirements and ANS I A117.1-1986 Pressed steel jambs require no special reinforcing\r\n\r\nPin is held in place by an NRP set screw, which allows the hinge to be reversible For Beveled Edge, where doors are beveled in hinge side, specify T4A4395 or T4A4795\r\n\r\nRecommended for use on high frequency and/or heavy wood or metal doors in schools, hospitals or other public buildings where heavy traffic is experienced\r\n\r\nPin is held in place by an NRP set screw, which allows the hinge to be reversible For Beveled Edge, where doors are beveled in hinge side, specify T4A4395 or T4A4795\r\n\r\nHinge allows for maximum clearance for passage of beds, tables or other equipment through the doorway Meets ADA Requirements and ANS I A117.1-1986 Pressed steel jambs require no special reinforcing\r\n\r\nPin is held in place by an NRP set screw, which allows the hinge to be reversible For Beveled Edge, where doors are beveled in hinge side, specify T4A4395 or T4A4795\r\n','Bearing Hinges-Five Knuckle Heavy Weight Series (Reversible) - T4A3395/T4A3795','','publish','open','closed','','bearing-hinges-five-knuckle-heavy-weight-series-reversible-t4a3395t4a3795','','','2014-08-11 08:31:02','2014-08-11 08:31:02','',0,'http://codeuridea.net/dhoi/?post_type=product&p=345',0,'product','',0),(346,1,'2014-08-07 16:04:13','2014-08-07 16:04:13','Recommended for use on high frequency and/or heavy wood or metal doors in schools, hospitals or other public buildings where heavy traffic is experienced\r\n\r\nHinge allows for maximum clearance for passage of beds, tables or other equipment through the doorway Meets ADA Requirements and ANS I A117.1-1986 Pressed steel jambs require no special reinforcing\r\n\r\nPin is held in place by an NRP set screw, which allows the hinge to be reversible For Beveled Edge, where doors are beveled in hinge side, specify T4A4395 or T4A4795\r\n\r\nRecommended for use on high frequency and/or heavy wood or metal doors in schools, hospitals or other public buildings where heavy traffic is experienced\r\n\r\nPin is held in place by an NRP set screw, which allows the hinge to be reversible For Beveled Edge, where doors are beveled in hinge side, specify T4A4395 or T4A4795\r\n\r\nHinge allows for maximum clearance for passage of beds, tables or other equipment through the doorway Meets ADA Requirements and ANS I A117.1-1986 Pressed steel jambs require no special reinforcing\r\n\r\nPin is held in place by an NRP set screw, which allows the hinge to be reversible For Beveled Edge, where doors are beveled in hinge side, specify T4A4395 or T4A4795\r\n','Weight Series (Reversible) - T4A3395/T4A3795','','publish','open','closed','','weight-series-reversible-t4a3395t4a3795','','','2014-08-11 08:11:42','2014-08-11 08:11:42','',0,'http://codeuridea.net/dhoi/?post_type=product&p=346',0,'product','',0),(347,1,'2014-08-07 16:05:01','2014-08-07 16:05:01','Recommended for use on high frequency and/or heavy wood or metal doors in schools, hospitals or other public buildings where heavy traffic is experienced\r\n\r\nHinge allows for maximum clearance for passage of beds, tables or other equipment through the doorway Meets ADA Requirements and ANS I A117.1-1986 Pressed steel jambs require no special reinforcing\r\n\r\nPin is held in place by an NRP set screw, which allows the hinge to be reversible For Beveled Edge, where doors are beveled in hinge side, specify T4A4395 or T4A4795\r\n\r\nRecommended for use on high frequency and/or heavy wood or metal doors in schools, hospitals or other public buildings where heavy traffic is experienced\r\n\r\nPin is held in place by an NRP set screw, which allows the hinge to be reversible For Beveled Edge, where doors are beveled in hinge side, specify T4A4395 or T4A4795\r\n\r\nHinge allows for maximum clearance for passage of beds, tables or other equipment through the doorway Meets ADA Requirements and ANS I A117.1-1986 Pressed steel jambs require no special reinforcing\r\n\r\nPin is held in place by an NRP set screw, which allows the hinge to be reversible For Beveled Edge, where doors are beveled in hinge side, specify T4A4395 or T4A4795','Heavy Weight Series (Reversible) - T4A3395/T4A3795','','publish','open','closed','','heavy-weight-series-reversible-t4a3395t4a3795','','','2014-08-09 14:10:41','2014-08-09 14:10:41','',0,'http://codeuridea.net/dhoi/?post_type=product&p=347',0,'product','',0),(350,1,'2014-08-07 16:14:07','2014-08-07 16:14:07','','electric','','inherit','open','open','','electric','','','2014-08-07 16:14:07','2014-08-07 16:14:07','',0,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/electric.png',0,'attachment','image/png',0),(351,1,'2014-08-07 16:14:29','2014-08-07 16:14:29','','exit devices','','inherit','open','open','','exit-devices','','','2014-08-07 16:14:29','2014-08-07 16:14:29','',600,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/exit-devices.png',0,'attachment','image/png',0),(352,1,'2014-08-07 16:14:55','2014-08-07 16:14:55','','removable_core','','inherit','open','open','','flat-goods','','','2014-08-07 16:14:55','2014-08-07 16:14:55','',0,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/flat-goods.png',0,'attachment','image/png',0),(353,1,'2014-08-07 16:15:21','2014-08-07 16:15:21','','hinges','','inherit','open','open','','hinges','','','2014-08-07 16:15:21','2014-08-07 16:15:21','',0,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/hinges.png',0,'attachment','image/png',0),(354,1,'2014-08-07 16:15:47','2014-08-07 16:15:47','','locks','','inherit','open','open','','locks','','','2014-08-07 16:15:47','2014-08-07 16:15:47','',0,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/locks.png',0,'attachment','image/png',0),(355,1,'2014-08-07 16:16:17','2014-08-07 16:16:17','','overhead stops','','inherit','open','open','','overhead-stops','','','2014-08-07 16:16:17','2014-08-07 16:16:17','',0,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/overhead-stops.png',0,'attachment','image/png',0),(356,1,'2014-08-07 16:16:43','2014-08-07 16:16:43','','threshold','','inherit','open','open','','threshold','','','2014-08-07 16:16:43','2014-08-07 16:16:43','',0,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/threshold.png',0,'attachment','image/png',0),(400,1,'2014-08-12 11:59:55','2014-08-12 11:59:55','','metal shop 3','','inherit','open','open','','metal-shop-3','','','2014-08-12 11:59:55','2014-08-12 11:59:55','',357,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/metal-shop-3.jpg',0,'attachment','image/jpeg',0),(401,1,'2014-08-12 12:01:15','2014-08-12 12:01:15','','metal shop 4','','inherit','open','open','','metal-shop-4','','','2014-08-12 12:01:15','2014-08-12 12:01:15','',357,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/metal-shop-4.jpg',0,'attachment','image/jpeg',0),(399,1,'2014-08-12 11:59:02','2014-08-12 11:59:02','','metal shop 2','','inherit','open','open','','metal-shop-2','','','2014-08-12 11:59:02','2014-08-12 11:59:02','',357,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/metal-shop-2.jpg',0,'attachment','image/jpeg',0),(394,1,'2014-08-12 11:51:53','2014-08-12 11:51:53','','wood shop 3','','inherit','open','open','','wood-shop-3','','','2014-08-12 11:51:53','2014-08-12 11:51:53','',261,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/wood-shop-3.jpg',0,'attachment','image/jpeg',0),(948,1,'2019-01-10 08:39:39','2019-01-10 13:39:39','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 08:39:39','2019-01-10 13:39:39','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(374,1,'2014-08-08 20:18:02','2014-08-08 20:18:02','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.','Readily Available Stock','','publish','open','open','','readily-available-stock','','','2018-11-08 14:19:37','2018-11-08 19:19:37','',600,'http://codeuridea.net/dhoi/?page_id=374',0,'page','',0),(373,1,'2014-08-08 20:07:47','2014-08-08 20:07:47','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2014-08-08 20:07:47','2014-08-08 20:07:47','',371,'http://codeuridea.net/dhoi/371-revision-v1/',0,'revision','',0),(375,1,'2014-08-08 20:18:02','2014-08-08 20:18:02','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.','Readily Available Stock','','inherit','open','open','','374-revision-v1','','','2014-08-08 20:18:02','2014-08-08 20:18:02','',374,'http://codeuridea.net/dhoi/374-revision-v1/',0,'revision','',0),(406,1,'2014-08-13 08:40:48','2014-08-13 08:40:48','','UT Athletic Bldg-Tampa','','inherit','open','open','','ut-athletic-bldg-tampa-3','','','2014-08-13 08:40:48','2014-08-13 08:40:48','',329,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa2.jpg',0,'attachment','image/jpeg',0),(380,1,'2014-08-08 21:43:21','2014-08-08 21:43:21','<p>Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p>\r\n<img class=\"test\" alt=\"\" src=\"http://codeuridea.net/dhoi/wp-content/uploads/2014/06/about_pic.jpg\">\r\n<p>DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available. </p>','About Us','','inherit','open','open','','9-revision-v1','','','2014-08-08 21:43:21','2014-08-08 21:43:21','',9,'http://codeuridea.net/dhoi/9-revision-v1/',0,'revision','',0),(381,1,'2014-08-09 09:33:01','2014-08-09 09:33:01','','product_pic8','','inherit','open','open','','product_pic8','','','2014-08-09 09:33:01','2014-08-09 09:33:01','',0,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/product_pic8.png',0,'attachment','image/png',0),(855,1,'2019-01-09 08:10:01','2019-01-09 13:10:01','','sparkman-1','','inherit','open','open','','sparkman-1','','','2019-01-09 08:10:01','2019-01-09 13:10:01','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg',0,'attachment','image/jpeg',0),(856,1,'2019-01-09 08:11:33','2019-01-09 13:11:33','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine-pink.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Laser Spine Institute</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 08:11:33','2019-01-09 13:11:33','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(387,1,'2014-08-11 14:54:32','2014-08-11 14:54:32','[go_portfolio id=\"test-1\"]','Projects','','inherit','open','open','','188-revision-v1','','','2014-08-11 14:54:32','2014-08-11 14:54:32','',188,'http://codeuridea.net/dhoi/188-revision-v1/',0,'revision','',0),(857,1,'2019-01-09 08:17:48','2019-01-09 13:17:48','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-2-300x300.jpg\" alt=\"sparkman-2\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\nSPP, controlled by Tampa Bay Lightning owner Jeff Vinik and Cascade Investment LLC, on Monday hosted a media preview of the wharf\'s dining garden, recreational lawn and craft biergarten, which officially opens Friday. The clattering of construction noise from within the wharf hinted at what\'s to come, as SPP gets underway on the next phase of the redevelopment of the wharf: loft-style office space and retail.\r\n\r\nCity building permit applications shed light on the costs of the renovation, pegging the interior project at $12.7 million and the facade overhaul at $13.9 million. While the total investment in Water Street — including the wharf — is well over $3 billion, SPP does not release figures for individual projects.\r\n\r\nThe Walbridge Group Inc. is the general contractor on the office portion of the wharf.\r\n\r\n\"Demolition has started on the inside,\" SPP CEO James Nozar said. \"The skin will start coming off in the first of the year, and we intend to be in our new space in the fourth quarter of next year.\"\r\n\r\nSPP\'s offices and a marketing center for the forthcoming properties in Water Street will be located within the wharf. The interior renovation will build 180,000 square feet of office space in a portion of the property that was previously home to a movie theater and other entertainment concepts. Ceiling heights will range from 18 feet to as high as 60 feet in the space that was previously the movie theater.\r\n\r\nThe developer first revealed its plans to include office space within the wharf in July; Bevirt says his team is now in active negotiations with several tenants, and that he could announce a major deal in the first quarter of 2019. \"Six or seven\" coworking concepts — including \"national, household names\" — are interested in the wharf\'s office space, Bevirt said.\r\n\r\nBevirt declined to name any potential tenants. Coworking giant WeWork, which has locations in nearly 100 cities across the U.S. and is said to be nearing a deal in Orlando, has been rumored to be looking for a location in the Tampa Bay area for more than a year. Tech companies are also interested, Bevirt said, and the wharf can accommodate users as small as 11,000 square feet.\r\n\r\nThe new office space and the waterfront park are reinventing the wharf for a new era, one that capitalizes on the Channel district\'s 5,000 residents directly north of the property. When Channelside Bay Plaza first opened, the neighborhood was sparsely populated, home to vacant lots and old warehouses instead of condo towers and apartment buildings.\r\n\r\nThe wharf\'s proximity to the urban neighborhood is a selling point for the office space, Bevirt said, for those who want to work or decision makers who look to recruit workers from the district.\r\n\r\n\"I call it a lifestyle decision,\" Bevirt said. \"That\'s not only because of Sparkman Wharf and Water Street Tampa, it\'s the proximity to the neighborhood, too.\"','Sparkman Wharf','','publish','open','open','','sparkman-wharf','','','2019-01-09 10:24:11','2019-01-09 15:24:11','',0,'https://dhoistage.concertium.com/?page_id=857',0,'page','',0),(858,1,'2019-01-09 08:17:48','2019-01-09 13:17:48','','Sparkman Wharf','','inherit','open','open','','857-revision-v1','','','2019-01-09 08:17:48','2019-01-09 13:17:48','',857,'https://dhoistage.concertium.com/857-revision-v1/',0,'revision','',0),(922,1,'2019-01-09 10:24:11','2019-01-09 15:24:11','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-2-300x300.jpg\" alt=\"sparkman-2\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\nSPP, controlled by Tampa Bay Lightning owner Jeff Vinik and Cascade Investment LLC, on Monday hosted a media preview of the wharf\'s dining garden, recreational lawn and craft biergarten, which officially opens Friday. The clattering of construction noise from within the wharf hinted at what\'s to come, as SPP gets underway on the next phase of the redevelopment of the wharf: loft-style office space and retail.\r\n\r\nCity building permit applications shed light on the costs of the renovation, pegging the interior project at $12.7 million and the facade overhaul at $13.9 million. While the total investment in Water Street — including the wharf — is well over $3 billion, SPP does not release figures for individual projects.\r\n\r\nThe Walbridge Group Inc. is the general contractor on the office portion of the wharf.\r\n\r\n\"Demolition has started on the inside,\" SPP CEO James Nozar said. \"The skin will start coming off in the first of the year, and we intend to be in our new space in the fourth quarter of next year.\"\r\n\r\nSPP\'s offices and a marketing center for the forthcoming properties in Water Street will be located within the wharf. The interior renovation will build 180,000 square feet of office space in a portion of the property that was previously home to a movie theater and other entertainment concepts. Ceiling heights will range from 18 feet to as high as 60 feet in the space that was previously the movie theater.\r\n\r\nThe developer first revealed its plans to include office space within the wharf in July; Bevirt says his team is now in active negotiations with several tenants, and that he could announce a major deal in the first quarter of 2019. \"Six or seven\" coworking concepts — including \"national, household names\" — are interested in the wharf\'s office space, Bevirt said.\r\n\r\nBevirt declined to name any potential tenants. Coworking giant WeWork, which has locations in nearly 100 cities across the U.S. and is said to be nearing a deal in Orlando, has been rumored to be looking for a location in the Tampa Bay area for more than a year. Tech companies are also interested, Bevirt said, and the wharf can accommodate users as small as 11,000 square feet.\r\n\r\nThe new office space and the waterfront park are reinventing the wharf for a new era, one that capitalizes on the Channel district\'s 5,000 residents directly north of the property. When Channelside Bay Plaza first opened, the neighborhood was sparsely populated, home to vacant lots and old warehouses instead of condo towers and apartment buildings.\r\n\r\nThe wharf\'s proximity to the urban neighborhood is a selling point for the office space, Bevirt said, for those who want to work or decision makers who look to recruit workers from the district.\r\n\r\n\"I call it a lifestyle decision,\" Bevirt said. \"That\'s not only because of Sparkman Wharf and Water Street Tampa, it\'s the proximity to the neighborhood, too.\"','Sparkman Wharf','','inherit','open','open','','857-revision-v1','','','2019-01-09 10:24:11','2019-01-09 15:24:11','',857,'https://dhoistage.concertium.com/857-revision-v1/',0,'revision','',0),(859,1,'2019-01-09 08:18:16','2019-01-09 13:18:16','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','Sparkman Wharf','','inherit','open','open','','857-revision-v1','','','2019-01-09 08:18:16','2019-01-09 13:18:16','',857,'https://dhoistage.concertium.com/857-revision-v1/',0,'revision','',0),(391,1,'2014-08-12 09:47:17','2014-08-12 09:47:17','','wood shop 5','','inherit','open','open','','wood-shop-5','','','2014-08-12 09:47:17','2014-08-12 09:47:17','',261,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/wood-shop-5.jpg',0,'attachment','image/jpeg',0),(395,1,'2014-08-12 11:52:25','2014-08-12 11:52:25','','wood shop 4','','inherit','open','open','','wood-shop-4','','','2014-08-12 11:52:25','2014-08-12 11:52:25','',261,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/wood-shop-4.jpg',0,'attachment','image/jpeg',0),(396,1,'2014-08-12 11:52:58','2014-08-12 11:52:58','','wood shop 6','','inherit','open','open','','wood-shop-6','','','2014-08-12 11:52:58','2014-08-12 11:52:58','',261,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/wood-shop-6.jpg',0,'attachment','image/jpeg',0),(397,1,'2014-08-12 11:53:16','2014-08-12 11:53:16','','wood shop 7','','inherit','open','open','','wood-shop-7','','','2014-08-12 11:53:16','2014-08-12 11:53:16','',261,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/wood-shop-7.jpg',0,'attachment','image/jpeg',0),(398,1,'2014-08-12 11:56:30','2014-08-12 11:56:30','','metal shop 1','','inherit','open','open','','metal-shop-1','','','2014-08-12 11:56:30','2014-08-12 11:56:30','',357,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/metal-shop-1.jpg',0,'attachment','image/jpeg',0),(402,1,'2014-08-12 12:02:06','2014-08-12 12:02:06','','metal shop 5','','inherit','open','open','','metal-shop-5','','','2014-08-12 12:02:06','2014-08-12 12:02:06','',357,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/metal-shop-5.jpg',0,'attachment','image/jpeg',0),(407,1,'2014-08-13 10:53:12','2014-08-13 10:53:12','','Product','','publish','open','open','','product','','','2014-08-13 10:53:12','2014-08-13 10:53:12','',0,'http://codeuridea.net/dhoi/?page_id=407',0,'page','',0),(408,1,'2014-08-13 10:53:12','2014-08-13 10:53:12','','Product','','inherit','open','open','','407-revision-v1','','','2014-08-13 10:53:12','2014-08-13 10:53:12','',407,'http://codeuridea.net/dhoi/407-revision-v1/',0,'revision','',0),(537,1,'2014-08-22 13:12:19','2014-08-22 13:12:19','','trim-and-auxiliary-244F','','inherit','open','open','','trim-and-auxiliary-244f','','','2014-08-22 13:12:19','2014-08-22 13:12:19','',477,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/trim-and-auxiliary-244F.png',0,'attachment','image/png',0),(414,1,'2014-08-13 12:14:53','2014-08-13 12:14:53','','3070 SC BIRCH SLAB 90 MIN 5-STPC-ME/CE 20 MIN STAMP','','inherit','open','open','','410-autosave-v1','','','2014-08-13 12:14:53','2014-08-13 12:14:53','',410,'http://codeuridea.net/dhoi/410-autosave-v1/',0,'revision','',0),(415,1,'2014-08-13 12:15:52','2014-08-13 12:15:52','','3/0 X 6/8 161 SC BIRCH 5-STPC-ME/CE 20 MIN STAMP','','publish','open','closed','','30-x-68-161-sc-birch-5-stpc-mece-20-min-stamp','','','2014-08-13 12:15:52','2014-08-13 12:15:52','',0,'http://codeuridea.net/dhoi/?post_type=product&p=415',0,'product','',0),(416,1,'2014-08-13 12:16:58','2014-08-13 12:16:58','','3/0 X 7/0 161 LH SC BIRCH 5-STPC-ME/CE 20 MIN STAMP','','publish','open','closed','','30-x-70-161-lh-sc-birch-5-stpc-mece-20-min-stamp','','','2014-08-13 12:16:58','2014-08-13 12:16:58','',0,'http://codeuridea.net/dhoi/?post_type=product&p=416',0,'product','',0),(417,1,'2014-08-13 12:17:39','2014-08-13 12:17:39','','3/0 X 7/0 161 RH SC BIRCH 5-STPC-ME/CE 20 MIN STAMP','','publish','open','closed','','30-x-70-161-rh-sc-birch-5-stpc-mece-20-min-stamp','','','2014-08-13 12:17:39','2014-08-13 12:17:39','',0,'http://codeuridea.net/dhoi/?post_type=product&p=417',0,'product','',0),(418,1,'2014-08-13 12:18:18','2014-08-13 12:18:18','','4/0 X 7/0 SC BIRCH SLAB 5-SLC-ME/CE 20 MIN STAMP','','publish','open','closed','','40-x-70-sc-birch-slab-5-slc-mece-20-min-stamp','','','2014-08-13 12:18:18','2014-08-13 12:18:18','',0,'http://codeuridea.net/dhoi/?post_type=product&p=418',0,'product','',0),(419,1,'2014-08-13 12:19:01','2014-08-13 12:19:01','','3/0 X 6/8 SC BIRCH SLAB 5-STPC-ME/CE 20 MIN STAMP','','publish','open','closed','','30-x-68-sc-birch-slab-5-stpc-mece-20-min-stamp','','','2014-08-13 12:19:01','2014-08-13 12:19:01','',0,'http://codeuridea.net/dhoi/?post_type=product&p=419',0,'product','',0),(420,1,'2014-08-13 12:19:37','2014-08-13 12:19:37','','3/0 X 7/0 SC BIRCH SLAB 5-STPC-ME/CE 20 MIN STAMP','','publish','open','closed','','30-x-70-sc-birch-slab-5-stpc-mece-20-min-stamp','','','2014-08-13 12:19:37','2014-08-13 12:19:37','',0,'http://codeuridea.net/dhoi/?post_type=product&p=420',0,'product','',0),(421,1,'2014-08-13 12:20:16','2014-08-13 12:20:16','','3/0 X 8/0 SC BIRCH SLAB 5-STPC-ME/CE 20 MIN STAMP','','publish','open','closed','','30-x-80-sc-birch-slab-5-stpc-mece-20-min-stamp','','','2014-08-13 12:20:16','2014-08-13 12:20:16','',0,'http://codeuridea.net/dhoi/?post_type=product&p=421',0,'product','',0),(422,1,'2014-08-13 12:20:57','2014-08-13 12:20:57','','3/0 9/0 SC BIRCH SLAB 5-STPC-ME/CE 20 MIN STAMP','','publish','open','closed','','30-90-sc-birch-slab-5-stpc-mece-20-min-stamp','','','2014-08-13 12:20:57','2014-08-13 12:20:57','',0,'http://codeuridea.net/dhoi/?post_type=product&p=422',0,'product','',0),(423,1,'2014-08-13 12:21:31','2014-08-13 12:21:31','','3/0 X 7/0 SC PS RED OAK SLAB 5-STPC-ME/CE 20 MINUTE STAMP 6\" LSL BOTTOM','','publish','open','closed','','30-x-70-sc-ps-red-oak-slab-5-stpc-mece-20-minute-stamp-6-lsl-bottom','','','2014-08-13 12:21:31','2014-08-13 12:21:31','',0,'http://codeuridea.net/dhoi/?post_type=product&p=423',0,'product','',0),(424,1,'2014-08-13 12:26:50','2014-08-13 12:26:50','','3/0 X 9/0 SC PS RED OAK SLAB 5-STPC-ME/CE 20 MIN STAMP 15\" LSL BOTTOM','','publish','open','closed','','30-x-90-sc-ps-red-oak-slab-5-stpc-mece-20-min-stamp-15-lsl-bottom','','','2014-08-13 12:26:50','2014-08-13 12:26:50','',0,'http://codeuridea.net/dhoi/?post_type=product&p=424',0,'product','',0),(425,1,'2014-08-13 12:30:37','2014-08-13 12:30:37','','3/0 X 9/0 SC PS WHITE MAPLE SLAB 5-STPC-ME/CE 20 MIN STAMP 15\" LSL BOTTOM','','publish','open','closed','','30-x-90-sc-ps-white-maple-slab-5-stpc-mece-20-min-stamp-15-lsl-bottom','','','2014-08-13 12:30:37','2014-08-13 12:30:37','',0,'http://codeuridea.net/dhoi/?post_type=product&p=425',0,'product','',0),(427,1,'2014-08-14 11:22:58','2014-08-14 11:22:58','','Projects','','inherit','open','open','','188-autosave-v1','','','2014-08-14 11:22:58','2014-08-14 11:22:58','',188,'http://codeuridea.net/dhoi/188-autosave-v1/',0,'revision','',0),(428,1,'2014-08-14 11:23:07','2014-08-14 11:23:07','','Projects','','inherit','open','open','','188-revision-v1','','','2014-08-14 11:23:07','2014-08-14 11:23:07','',188,'http://codeuridea.net/dhoi/188-revision-v1/',0,'revision','',0),(429,1,'2014-08-14 12:05:55','2014-08-14 12:05:55','','3/0 X 9/0 SC PS WHITE MAPLE SLAB 5-STPC-ME/CE 20 MIN STAMP 15\" LSL BOTTOM','','publish','open','closed','','30-x-90-sc-ps-white-maple-slab-5-stpc-mece-20-min-stamp-15-lsl-bottom-2','','','2014-08-14 12:06:57','2014-08-14 12:06:57','',0,'http://codeuridea.net/dhoi/?post_type=product&p=429',0,'product','',0),(430,1,'2014-08-14 12:09:05','2014-08-14 12:09:05','','3/0 X 9/0 SC PS MAHOGANY SLAB 5-STPC-ME/CE 20 MIN STAMP 15\" LSL BOTTOM','','publish','open','closed','','30-x-90-sc-ps-mahogany-slab-5-stpc-mece-20-min-stamp-15-lsl-bottom','','','2014-08-14 12:09:05','2014-08-14 12:09:05','',0,'http://codeuridea.net/dhoi/?post_type=product&p=430',0,'product','',0),(431,1,'2014-08-14 12:10:16','2014-08-14 12:10:16','','3/0 X 9/0 SC PS CHERRY SLAB 5-STPC-ME/CE 20 MIN STAMP 15\" LSL BOTTOM','','publish','open','closed','','30-x-90-sc-ps-cherry-slab-5-stpc-mece-20-min-stamp-15-lsl-bottom','','','2014-08-14 12:10:16','2014-08-14 12:10:16','',0,'http://codeuridea.net/dhoi/?post_type=product&p=431',0,'product','',0),(432,1,'2014-08-14 12:12:28','2014-08-14 12:12:28','','EC1100 4.5X4.5 US10B HINGES','','publish','open','closed','','ec1100-4-5x4-5-us10b-hinges','','','2014-08-19 13:24:02','2014-08-19 13:24:02','',0,'http://codeuridea.net/dhoi/?post_type=product&p=432',0,'product','',0),(536,1,'2014-08-22 13:09:00','2014-08-22 13:09:00','','trim-and-auxiliary-236W','','inherit','open','open','','trim-and-auxiliary-236w','','','2014-08-22 13:09:00','2014-08-22 13:09:00','',470,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/trim-and-auxiliary-236W.png',0,'attachment','image/png',0),(535,1,'2014-08-22 13:08:05','2014-08-22 13:08:05','','WALL STOP 236','','inherit','open','open','','470-autosave-v1','','','2014-08-22 13:08:05','2014-08-22 13:08:05','',470,'http://codeuridea.net/dhoi/470-autosave-v1/',0,'revision','',0),(435,1,'2014-08-14 12:27:36','2014-08-14 12:27:36','','EC1100 4.5X4.5 US26 HINGES','','publish','open','closed','','ec1100-4-5x4-5-us26-hinges','','','2014-08-19 13:24:16','2014-08-19 13:24:16','',0,'http://codeuridea.net/dhoi/?post_type=product&p=435',0,'product','',0),(436,1,'2014-08-14 12:28:47','2014-08-14 12:28:47','','EC1100 4.5X4.5 US26D HINGES','<strong>Plain Bearing\r\nStandard Weight</strong>\r\nFull Mortise - ECCO','publish','open','closed','','ec1100-4-5x4-5-us26d-hinges','','','2014-08-19 13:20:13','2014-08-19 13:20:13','',0,'http://codeuridea.net/dhoi/?post_type=product&p=436',0,'product','',0),(437,1,'2014-08-14 12:29:34','2014-08-14 12:29:34','','ECBB1100 4.5X4.5 US10B HINGES','Five Knuckle Plain Bearing Standard Weight\r\nFull Mortise - ECCO','publish','open','closed','','ecbb1100-4-5x4-5-us10b-hinges','','','2014-08-19 13:41:32','2014-08-19 13:41:32','',0,'http://codeuridea.net/dhoi/?post_type=product&p=437',0,'product','',0),(438,1,'2014-08-14 12:30:30','2014-08-14 12:30:30','','ECBB1100 4.5X4.5 US26 HINGES','Five Knuckle Plain Bearing Standard Weight\r\nFull Mortise - ECCO','publish','open','closed','','ecbb1100-4-5x4-5-us26-hinges','','','2014-08-19 13:41:21','2014-08-19 13:41:21','',0,'http://codeuridea.net/dhoi/?post_type=product&p=438',0,'product','',0),(439,1,'2014-08-14 12:31:26','2014-08-14 12:31:26','','ECBB1100 4.5X4.5 US26D HINGES','Five Knuckle Plain Bearing Standard Weight\r\nFull Mortise - ECCO','publish','open','closed','','ecbb1100-4-5x4-5-us26d-hinges','','','2014-08-19 13:41:11','2014-08-19 13:41:11','',0,'http://codeuridea.net/dhoi/?post_type=product&p=439',0,'product','',0),(440,1,'2014-08-14 12:32:19','2014-08-14 12:32:19','','ECBB1100 4.5X4.5 US3 HINGES','Five Knuckle Plain Bearing Standard Weight\r\nFull Mortise - ECCO','publish','open','closed','','ecbb1100-4-5x4-5-us3-hinges','','','2014-08-19 13:40:59','2014-08-19 13:40:59','',0,'http://codeuridea.net/dhoi/?post_type=product&p=440',0,'product','',0),(441,1,'2014-08-14 12:32:54','2014-08-14 12:32:54','','ECBB1101 4.5 US32D NRP HINGES','','publish','open','closed','','ecbb1101-4-5-us32d-nrp-hinges','','','2014-08-19 13:47:15','2014-08-19 13:47:15','',0,'http://codeuridea.net/dhoi/?post_type=product&p=441',0,'product','',0),(442,1,'2014-08-14 12:33:28','2014-08-14 12:33:28','','ECBB1100 4.5 USP NRP HINGES','Five Knuckle Plain Bearing Standard Weight\r\nFull Mortise - ECCO','publish','open','closed','','ecbb1100-4-5-usp-nrp-hinges','','','2014-08-19 13:40:47','2014-08-19 13:40:47','',0,'http://codeuridea.net/dhoi/?post_type=product&p=442',0,'product','',0),(443,1,'2014-08-14 12:34:00','2014-08-14 12:34:00','','EC1105 4.5 US26D SPRING HINGES','','publish','open','closed','','ec1105-4-5-us26d-spring-hinges','','','2014-08-19 13:52:30','2014-08-19 13:52:30','',0,'http://codeuridea.net/dhoi/?post_type=product&p=443',0,'product','',0),(444,1,'2014-08-14 12:36:18','2014-08-14 12:36:18','','AL10S SAT 626 PASSAGE w/STRIKE BOX','','publish','open','closed','','al10s-sat-626-passage-wstrike-box','','','2014-08-14 12:36:18','2014-08-14 12:36:18','',0,'http://codeuridea.net/dhoi/?post_type=product&p=444',0,'product','',0),(445,1,'2014-08-14 12:37:17','2014-08-14 12:37:17','','AL40S SAT 626 C KEY PRIVACY w/STRIKE BOX','','publish','open','closed','','al40s-sat-626-c-key-privacy-wstrike-box','','','2014-08-14 12:37:17','2014-08-14 12:37:17','',0,'http://codeuridea.net/dhoi/?post_type=product&p=445',0,'product','',0),(446,1,'2014-08-14 12:37:47','2014-08-14 12:37:47','','AL53PD SAT 626 C KEY LOCKSET w/STRIKE BOX','','publish','open','closed','','al53pd-sat-626-c-key-lockset-wstrike-box','','','2014-08-14 12:37:47','2014-08-14 12:37:47','',0,'http://codeuridea.net/dhoi/?post_type=product&p=446',0,'product','',0),(447,1,'2014-08-14 12:38:26','2014-08-14 12:38:26','','AL80PD SAT 626 C KEY STOREROOM w/STRIKE BOX','','publish','open','closed','','al80pd-sat-626-c-key-storeroom-wstrike-box','','','2014-08-14 12:38:26','2014-08-14 12:38:26','',0,'http://codeuridea.net/dhoi/?post_type=product&p=447',0,'product','',0),(448,1,'2014-08-14 12:38:54','2014-08-14 12:38:54','','2510 WTN ASA X 26D PASSAGE','','publish','open','closed','','2510-wtn-asa-x-26d-passage','','','2014-08-14 12:38:54','2014-08-14 12:38:54','',0,'http://codeuridea.net/dhoi/?post_type=product&p=448',0,'product','',0),(449,1,'2014-08-14 12:39:27','2014-08-14 12:39:27','','2540 WTN ASA X US26D PRIVACY','','publish','open','closed','','2540-wtn-asa-x-us26d-privacy','','','2014-08-14 12:39:27','2014-08-14 12:39:27','',0,'http://codeuridea.net/dhoi/?post_type=product&p=449',0,'product','',0),(450,1,'2014-08-14 12:39:55','2014-08-14 12:39:55','','2553 WTN ASA X US26D LOCKSET','','publish','open','closed','','2553-wtn-asa-x-us26d-lockset','','','2014-08-14 12:39:55','2014-08-14 12:39:55','',0,'http://codeuridea.net/dhoi/?post_type=product&p=450',0,'product','',0),(451,1,'2014-08-14 12:40:28','2014-08-14 12:40:28','','2580 WTN ASA X US26D STOREROOM','','publish','open','closed','','2580-wtn-asa-x-us26d-storeroom','','','2014-08-14 12:40:28','2014-08-14 12:40:28','',0,'http://codeuridea.net/dhoi/?post_type=product&p=451',0,'product','',0),(452,1,'2014-08-14 12:40:56','2014-08-14 12:40:56','','3215 2-3/4 X 26D DEADBOLT','','publish','open','closed','','3215-2-34-x-26d-deadbolt','','','2014-08-22 13:36:40','2014-08-22 13:36:40','',0,'http://codeuridea.net/dhoi/?post_type=product&p=452',0,'product','',0),(453,1,'2014-08-14 12:41:31','2014-08-14 12:41:31','','2200EO36 X ALUM EXIT DEVICE','','publish','open','closed','','2200eo36-x-alum-exit-device','','','2014-08-14 12:41:31','2014-08-14 12:41:31','',0,'http://codeuridea.net/dhoi/?post_type=product&p=453',0,'product','',0),(454,1,'2014-08-14 12:42:38','2014-08-14 12:42:38','','9800EO36 X 32D EXIT DEVICE','','publish','open','closed','','9800eo36-x-32d-exit-device','','','2014-08-14 12:42:38','2014-08-14 12:42:38','',0,'http://codeuridea.net/dhoi/?post_type=product&p=454',0,'product','',0),(455,1,'2014-08-14 12:43:33','2014-08-14 12:43:33','','ENTOOL X 26D TRIM W/ CYL','','publish','open','closed','','entool-x-26d-trim-w-cyl','','','2014-08-14 12:43:33','2014-08-14 12:43:33','',0,'http://codeuridea.net/dhoi/?post_type=product&p=455',0,'product','',0),(456,1,'2014-08-14 12:44:04','2014-08-14 12:44:04','','PAS30L X 26D PASSAGE TRIM','','publish','open','closed','','pas30l-x-26d-passage-trim','','','2014-08-14 12:44:04','2014-08-14 12:44:04','',0,'http://codeuridea.net/dhoi/?post_type=product&p=456',0,'product','',0),(457,1,'2014-08-14 12:44:27','2014-08-14 12:44:27','','5200 MLT ADJ 1-4 ALUM BARRIER FREE CLOSER','','publish','open','closed','','5200-mlt-adj-1-4-alum-barrier-free-closer','','','2014-08-19 13:58:51','2014-08-19 13:58:51','',0,'http://codeuridea.net/dhoi/?post_type=product&p=457',0,'product','',0),(458,1,'2014-08-14 12:45:02','2014-08-14 12:45:02','','4040XP RW/PA AL CLOSER','','publish','open','closed','','4040xp-rwpa-al-closer','','','2014-08-14 12:45:02','2014-08-14 12:45:02','',0,'http://codeuridea.net/dhoi/?post_type=product&p=458',0,'product','',0),(459,1,'2014-08-14 12:45:36','2014-08-14 12:45:36','','PUSH PLATE 30S 4 X 16 X 32D','','publish','open','closed','','push-plate-30s-4-x-16-x-32d','','','2014-08-19 14:06:22','2014-08-19 14:06:22','',0,'http://codeuridea.net/dhoi/?post_type=product&p=459',0,'product','',0),(460,1,'2014-08-14 12:46:02','2014-08-14 12:46:02','','PULL 33G X 4X16 X 32D','','publish','open','closed','','pull-33g-x-4x16-x-32d','','','2014-08-19 14:08:55','2014-08-19 14:08:55','',0,'http://codeuridea.net/dhoi/?post_type=product&p=460',0,'product','',0),(461,1,'2014-08-14 12:46:26','2014-08-14 12:46:26','','KICK PLATE 190S 10 X 34 X32D','','publish','open','closed','','kick-plate-190s-10-x-34-x32d','','','2014-08-14 12:46:26','2014-08-14 12:46:26','',0,'http://codeuridea.net/dhoi/?post_type=product&p=461',0,'product','',0),(462,1,'2014-08-14 12:46:48','2014-08-14 12:46:48','','AUTO FLUSH BOLT 942 X US26','','publish','open','closed','','auto-flush-bolt-942-x-us26','','','2014-08-14 12:46:48','2014-08-14 12:46:48','',0,'http://codeuridea.net/dhoi/?post_type=product&p=462',0,'product','',0),(463,1,'2014-08-14 12:47:11','2014-08-14 12:47:11','','AUTO FLUSH BOLT 942 X US26D','','publish','open','closed','','auto-flush-bolt-942-x-us26d','','','2014-08-14 12:47:11','2014-08-14 12:47:11','',0,'http://codeuridea.net/dhoi/?post_type=product&p=463',0,'product','',0),(464,1,'2014-08-14 12:47:38','2014-08-14 12:47:38','','COORDINATOR 672 X USP','','publish','open','closed','','coordinator-672-x-usp','','','2014-08-14 12:47:38','2014-08-14 12:47:38','',0,'http://codeuridea.net/dhoi/?post_type=product&p=464',0,'product','',0),(465,1,'2014-08-14 12:48:04','2014-08-14 12:48:04','','601AB MOUNTING BRACKETS X USP','','publish','open','closed','','601ab-mounting-brackets-x-usp','','','2014-08-14 12:48:04','2014-08-14 12:48:04','',0,'http://codeuridea.net/dhoi/?post_type=product&p=465',0,'product','',0),(466,1,'2014-08-14 12:48:29','2014-08-14 12:48:29','','FLUSH BOLT 282D X 10B','','publish','open','closed','','flush-bolt-282d-x-10b','','','2014-08-19 14:14:28','2014-08-19 14:14:28','',0,'http://codeuridea.net/dhoi/?post_type=product&p=466',0,'product','',0),(467,1,'2014-08-14 12:48:55','2014-08-14 12:48:55','','FLUSH BOLT 282D X 26','','publish','open','closed','','flush-bolt-282d-x-26','','','2014-08-19 14:14:23','2014-08-19 14:14:23','',0,'http://codeuridea.net/dhoi/?post_type=product&p=467',0,'product','',0),(468,1,'2014-08-14 12:49:33','2014-08-14 12:49:33','','FLUSH BOLT 282D X 26D','','publish','open','closed','','flush-bolt-282d-x-26d','','','2014-08-19 14:14:20','2014-08-19 14:14:20','',0,'http://codeuridea.net/dhoi/?post_type=product&p=468',0,'product','',0),(469,1,'2014-08-14 12:49:58','2014-08-14 12:49:58','','282R VERTICAL ROD 24\"','','publish','open','closed','','282r-vertical-rod-24','','','2014-08-22 13:05:07','2014-08-22 13:05:07','',0,'http://codeuridea.net/dhoi/?post_type=product&p=469',0,'product','',0),(470,1,'2014-08-14 12:50:16','2014-08-14 12:50:16','','WALL STOP 236','','publish','open','closed','','wall-stop-236','','','2014-08-22 13:09:40','2014-08-22 13:09:40','',0,'http://codeuridea.net/dhoi/?post_type=product&p=470',0,'product','',0),(477,1,'2014-08-14 12:53:03','2014-08-14 12:53:03','','FLOOR STOP 242F','','publish','open','closed','','floor-stop-242f','','','2014-08-22 13:12:50','2014-08-22 13:12:50','',0,'http://codeuridea.net/dhoi/?post_type=product&p=477',0,'product','',0),(478,1,'2014-08-14 12:53:27','2014-08-14 12:53:27','','SILENCER 307D','','publish','open','closed','','silencer-307d','','','2014-08-22 13:15:51','2014-08-22 13:15:51','',0,'http://codeuridea.net/dhoi/?post_type=product&p=478',0,'product','',0),(479,1,'2014-08-14 13:00:47','2014-08-14 13:00:47','','412S-36\" FLAT SADDLE','','publish','open','closed','','412s-36-flat-saddle','','','2014-08-14 13:00:47','2014-08-14 13:00:47','',0,'http://codeuridea.net/dhoi/?post_type=product&p=479',0,'product','',0),(480,1,'2014-08-14 13:01:16','2014-08-14 13:01:16','','412S-72\" FLAT SADDLE','','publish','open','closed','','412s-72-flat-saddle','','','2014-08-14 13:01:16','2014-08-14 13:01:16','',0,'http://codeuridea.net/dhoi/?post_type=product&p=480',0,'product','',0),(481,1,'2014-08-14 13:01:46','2014-08-14 13:01:46','','NGP 424 4\"X36\" FLAT SADDLE','','publish','open','closed','','ngp-424-4x36-flat-saddle','','','2014-08-14 13:01:46','2014-08-14 13:01:46','',0,'http://codeuridea.net/dhoi/?post_type=product&p=481',0,'product','',0),(482,1,'2014-08-14 13:02:19','2014-08-14 13:02:19','','520SV-36\" A ADA THRESHOLD','','publish','open','closed','','520sv-36-a-ada-threshold','','','2014-08-14 13:02:19','2014-08-14 13:02:19','',0,'http://codeuridea.net/dhoi/?post_type=product&p=482',0,'product','',0),(483,1,'2014-08-14 13:02:48','2014-08-14 13:02:48','','520SV-72\"A ADA THRESHOLD','','publish','open','closed','','520sv-72a-ada-threshold','','','2014-08-14 13:02:48','2014-08-14 13:02:48','',0,'http://codeuridea.net/dhoi/?post_type=product&p=483',0,'product','',0),(484,1,'2014-08-14 13:03:14','2014-08-14 13:03:14','','532SV-36\" A BUMPER THRESHOLD','','publish','open','closed','','532sv-36-a-bumper-threshold','','','2014-08-14 13:03:15','2014-08-14 13:03:15','',0,'http://codeuridea.net/dhoi/?post_type=product&p=484',0,'product','',0),(486,1,'2014-08-14 13:04:20','2014-08-14 13:04:20','','532SV-72\" A BUMPER THRESHOLD','','publish','open','closed','','532sv-72-a-bumper-threshold','','','2014-08-14 13:04:20','2014-08-14 13:04:20','',0,'http://codeuridea.net/dhoi/?post_type=product&p=486',0,'product','',0),(487,1,'2014-08-14 13:04:54','2014-08-14 13:04:54','','726S C STICKON WEATHRSTRIP 17\'','','publish','open','closed','','726s-c-stickon-weathrstrip-17','','','2014-08-14 13:04:54','2014-08-14 13:04:54','',0,'http://codeuridea.net/dhoi/?post_type=product&p=487',0,'product','',0),(488,1,'2014-08-14 13:05:23','2014-08-14 13:05:23','','726S C STICKON WEATHRSTRIP 20\'','','publish','open','closed','','726s-c-stickon-weathrstrip-20','','','2014-08-14 13:05:23','2014-08-14 13:05:23','',0,'http://codeuridea.net/dhoi/?post_type=product&p=488',0,'product','',0),(489,1,'2014-08-14 13:05:52','2014-08-14 13:05:52','','750SN-36\" C DOOR SWEEP','','publish','open','closed','','750sn-36-c-door-sweep','','','2014-08-14 13:05:52','2014-08-14 13:05:52','',0,'http://codeuridea.net/dhoi/?post_type=product&p=489',0,'product','',0),(490,1,'2014-08-14 13:06:21','2014-08-14 13:06:21','','750SN-48\" C DOOR SWEEP','','publish','open','closed','','750sn-48-c-door-sweep','','','2014-08-14 13:06:21','2014-08-14 13:06:21','',0,'http://codeuridea.net/dhoi/?post_type=product&p=490',0,'product','',0),(491,1,'2014-08-14 13:06:49','2014-08-14 13:06:49','','778SV-36\" A DOOR BOTTOM','','publish','open','closed','','778sv-36-a-door-bottom','','','2014-08-14 13:06:49','2014-08-14 13:06:49','',0,'http://codeuridea.net/dhoi/?post_type=product&p=491',0,'product','',0),(492,1,'2014-08-14 13:07:19','2014-08-14 13:07:19','','789SW-48\" A EXTEND DOOR BOTTOM','','publish','open','closed','','789sw-48-a-extend-door-bottom','','','2014-08-14 13:07:19','2014-08-14 13:07:19','',0,'http://codeuridea.net/dhoi/?post_type=product&p=492',0,'product','',0),(493,1,'2014-08-14 13:08:13','2014-08-14 13:08:13','','789SW-36\" A EXTEND DOOR BOTTOM','','publish','open','closed','','789sw-36-a-extend-door-bottom','','','2014-08-14 13:08:13','2014-08-14 13:08:13','',0,'http://codeuridea.net/dhoi/?post_type=product&p=493',0,'product','',0),(494,1,'2014-08-14 13:08:37','2014-08-14 13:08:37','','740S-36\" AUTO DOOR BOTTOM','','publish','open','closed','','740s-36-auto-door-bottom','','','2014-08-14 13:08:37','2014-08-14 13:08:37','',0,'http://codeuridea.net/dhoi/?post_type=product&p=494',0,'product','',0),(495,1,'2014-08-14 13:09:00','2014-08-14 13:09:00','','810S-40\" A RAIN DRIP','','publish','open','closed','','810s-40-a-rain-drip','','','2014-08-22 13:22:36','2014-08-22 13:22:36','',0,'http://codeuridea.net/dhoi/?post_type=product&p=495',0,'product','',0),(496,1,'2014-08-14 13:09:20','2014-08-14 13:09:20','','810S-76\" A RAIN DRIP','','publish','open','closed','','810s-76-a-rain-drip','','','2014-08-22 13:22:36','2014-08-22 13:22:36','',0,'http://codeuridea.net/dhoi/?post_type=product&p=496',0,'product','',0),(497,1,'2014-08-14 13:09:46','2014-08-14 13:09:46','','891SV-36X84 A WEATHERSTRIP','','publish','open','closed','','891sv-36x84-a-weatherstrip','','','2014-08-14 13:09:46','2014-08-14 13:09:46','',0,'http://codeuridea.net/dhoi/?post_type=product&p=497',0,'product','',0),(498,1,'2014-08-14 13:10:18','2014-08-14 13:10:18','','891SV-72X84 A WEATHERSTRIP','','publish','open','closed','','891sv-72x84-a-weatherstrip','','','2014-08-14 13:10:18','2014-08-14 13:10:18','',0,'http://codeuridea.net/dhoi/?post_type=product&p=498',0,'product','',0),(499,1,'2014-08-14 13:11:34','2014-08-14 13:11:34','','TEMP 1/4 11 X 11','','publish','open','closed','','temp-14-11-x-11','','','2014-08-14 13:11:34','2014-08-14 13:11:34','',0,'http://codeuridea.net/dhoi/?post_type=product&p=499',0,'product','',0),(500,1,'2014-08-14 13:12:08','2014-08-14 13:12:08','','TEMP 1/4 23 X 29','','publish','open','closed','','temp-14-23-x-29','','','2014-08-14 13:12:09','2014-08-14 13:12:09','',0,'http://codeuridea.net/dhoi/?post_type=product&p=500',0,'product','',0),(501,1,'2014-08-14 13:12:38','2014-08-14 13:12:38','','TEMP 1/4 6 X 21','','publish','open','closed','','temp-14-6-x-21','','','2014-08-14 13:12:38','2014-08-14 13:12:38','',0,'http://codeuridea.net/dhoi/?post_type=product&p=501',0,'product','',0),(502,1,'2014-08-14 13:13:45','2014-08-14 13:13:45','','24 X 30','','publish','open','closed','','24-x-30','','','2014-08-14 13:13:45','2014-08-14 13:13:45','',0,'http://codeuridea.net/dhoi/?post_type=product&p=502',0,'product','',0),(503,1,'2014-08-14 13:14:09','2014-08-14 13:14:09','','12 X 12','','publish','open','closed','','12-x-12','','','2014-08-14 13:14:09','2014-08-14 13:14:09','',0,'http://codeuridea.net/dhoi/?post_type=product&p=503',0,'product','',0),(504,1,'2014-08-14 13:14:31','2014-08-14 13:14:31','','7 X 22','','publish','open','closed','','7-x-22','','','2014-08-14 13:14:31','2014-08-14 13:14:31','',0,'http://codeuridea.net/dhoi/?post_type=product&p=504',0,'product','',0),(505,1,'2014-08-14 13:14:52','2014-08-14 13:14:52','','24 X 24 LOUVER 800A1','','publish','open','closed','','24-x-24-louver-800a1','','','2014-08-19 09:15:49','2014-08-19 09:15:49','',0,'http://codeuridea.net/dhoi/?post_type=product&p=505',0,'product','',0),(534,1,'2014-08-22 13:04:43','2014-08-22 13:04:43','','trim-and-auxiliary-282D','','inherit','open','open','','trim-and-auxiliary-282d','','','2014-08-22 13:04:43','2014-08-22 13:04:43','',469,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/trim-and-auxiliary-282D.png',0,'attachment','image/png',0),(508,1,'2014-08-14 16:07:34','2014-08-14 16:07:34','','image_left','','inherit','open','open','','image_left','','','2014-08-14 16:07:34','2014-08-14 16:07:34','',0,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/image_left.png',0,'attachment','image/png',0),(509,1,'2014-08-14 16:07:38','2014-08-14 16:07:38','','image-right','','inherit','open','open','','image-right','','','2014-08-14 16:07:38','2014-08-14 16:07:38','',600,'http://codeuridea.net/dhoi/wp-content/uploads/2014/08/image-right.png',0,'attachment','image/png',0),(511,1,'2014-08-14 16:10:25','2014-08-14 16:10:25','<p>Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p><img class=\"about_pic\" alt=\"\" src=\"http://codeuridea.net/dhoi/wp-content/uploads/2014/08/image_left.png\">\r\n<img class=\"about_pic\" alt=\"\" src=\"http://codeuridea.net/dhoi/wp-content/uploads/2014/08/image-right.png\">\r\n<p>DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available. </p>','About Us','','inherit','open','open','','9-revision-v1','','','2014-08-14 16:10:25','2014-08-14 16:10:25','',9,'http://codeuridea.net/dhoi/9-revision-v1/',0,'revision','',0),(512,1,'2014-08-14 16:17:08','2014-08-14 16:17:08','<p>Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p><img class=\"about_pic\" alt=\"\" src=\"http://codeuridea.net/dhoi/wp-content/uploads/2014/08/image_left.png\"><img class=\"about_pic\" alt=\"\" src=\"http://codeuridea.net/dhoi/wp-content/uploads/2014/08/image-right.png\"><p>DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available. </p>','About Us','','inherit','open','open','','9-revision-v1','','','2014-08-14 16:17:08','2014-08-14 16:17:08','',9,'http://codeuridea.net/dhoi/9-revision-v1/',0,'revision','',0),(513,1,'2014-08-14 16:18:41','2014-08-14 16:18:41','<p>Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p><img class=\"about_pic_right\" alt=\"\" src=\"http://codeuridea.net/dhoi/wp-content/uploads/2014/08/image-right.png\"><img class=\"about_pic\" alt=\"\" src=\"http://codeuridea.net/dhoi/wp-content/uploads/2014/08/image_left.png\"><p>DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available. </p>','About Us','','inherit','open','open','','9-revision-v1','','','2014-08-14 16:18:41','2014-08-14 16:18:41','',9,'http://codeuridea.net/dhoi/9-revision-v1/',0,'revision','',0),(544,1,'2016-03-15 13:54:09','2016-03-15 13:54:09','<p>Door and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.</p><img class=\"about_pic_right\" alt=\"\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right.png\"><img class=\"about_pic\" alt=\"\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image_left.png\"><p>DHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available. </p>','About Us','','inherit','open','open','','9-revision-v1','','','2016-03-15 13:54:09','2016-03-15 13:54:09','',9,'https://dhoistage.concertium.com/9-revision-v1/',0,'revision','',0),(549,1,'2018-11-02 17:51:02','2018-11-02 17:51:02','<span style=\"font-size: xx-large;\"><strong>About DHOI</strong></span>\r\n\r\nDoor and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>What sets DHOI apart</strong></span>\r\nDHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.\r\n\r\n<span style=\"font-size: xx-large;\"><strong>The Mission</strong></span>','About Us','','inherit','open','open','','9-revision-v1','','','2018-11-02 17:51:02','2018-11-02 17:51:02','',9,'https://dhoistage.concertium.com/9-revision-v1/',0,'revision','',0),(550,1,'2018-11-02 17:52:47','2018-11-02 17:52:47','<span style=\"font-size: xx-large;\"><strong>About DHOI</strong></span>\r\n\r\nDoor and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>What sets DHOI apart</strong></span>\r\nDHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>The Mission</strong></span>','About Us','','inherit','open','open','','9-revision-v1','','','2018-11-02 17:52:47','2018-11-02 17:52:47','',9,'https://dhoistage.concertium.com/9-revision-v1/',0,'revision','',0),(551,1,'2018-11-02 17:57:51','2018-11-02 17:57:51','<span style=\"font-size: xx-large;\"><strong>About DHOI</strong></span>\r\n\r\nDoor and hardware openings is a leader in the industry of architectual doors and finish hardware. For the past 30 years, DHOI has been providing project management and consulting for many projects all over the U.S.A and many international projects. With such a strong and skilled sales force, no project is too small or too large!\r\n\r\nDoor and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>What sets DHOI apart</strong></span>\r\nDHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>The Mission</strong></span>','About Us','','inherit','open','open','','9-revision-v1','','','2018-11-02 17:57:51','2018-11-02 17:57:51','',9,'https://dhoistage.concertium.com/9-revision-v1/',0,'revision','',0),(553,1,'2018-11-02 18:03:32','2018-11-02 18:03:32','<span style=\"font-size: xx-large;\"><strong>About DHOI</strong></span>\r\n\r\nDoor and hardware openings is a leader in the industry of architectual doors and finish hardware. For the past 30 years, DHOI has been providing project management and consulting for many projects all over the U.S.A and many international projects. With such a strong and skilled sales force, no project is too small or too large!\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>What sets DHOI apart</strong></span>\r\n\r\nDHOI is more than the average door and hardware supplier. We maintain an extensive inventory of Division 8 finish hardware suited for fire rated openings, impact safety openings as well as handicap openings. We carry many products from the major vendors approved for many building projects such as Schlage, Sargent, Von Duprin and many more. \r\nIn addition to our vast hardware supply, we also stock commercial doors and frames in many standard sizes. Since not every project is comprised of standard off the shelf materials, we are able to provide customizations to your openings with our in house wood and metal machine shops. Finally, what rea\r\nDHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>The Mission</strong></span>','About Us','','inherit','open','open','','9-revision-v1','','','2018-11-02 18:03:32','2018-11-02 18:03:32','',9,'https://dhoistage.concertium.com/9-revision-v1/',0,'revision','',0),(552,1,'2018-11-02 18:03:17','2018-11-02 18:03:17','<span style=\"font-size: xx-large;\"><strong>About DHOI</strong></span>\r\n\r\nDoor and hardware openings is a leader in the industry of architectual doors and finish hardware. For the past 30 years, DHOI has been providing project management and consulting for many projects all over the U.S.A and many international projects. With such a strong and skilled sales force, no project is too small or too large!\r\n\r\nDoor and Hardware Openings maintains an inventory of commercial doors and frames in standard sizes and provides a complete machine shop for custom requirements and special-ordered materials.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>What sets DHOI apart</strong></span>\r\n\r\nDHOI is more than the average door and hardware supplier. We maintain an extensive inventory of Division 8 finish hardware suited for fire rated openings, impact safety openings as well as handicap openings. We carry many products from the major vendors approved for many building projects such as Schlage, Sargent, Von Duprin and many more. \r\nIn addition to our vast hardware supply, we also stock commercial doors and frames in many standard sizes. Since not every project is comprised of standard off the shelf materials, we are able to provide customizations to your openings with our in house wood and metal machine shops. Finally, what rea\r\nDHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>The Mission</strong></span>','About Us','','inherit','open','open','','9-revision-v1','','','2018-11-02 18:03:17','2018-11-02 18:03:17','',9,'https://dhoistage.concertium.com/9-revision-v1/',0,'revision','',0),(1018,1,'2019-01-28 07:04:23','2019-01-28 12:04:23','\r\n\r\nDoor and hardware openings is a leader in the industry of architectual doors and finish hardware. For the past 30 years, DHOI has been providing project management and consulting for many projects all over the USA and many international projects. With such a strong and skilled sales force, no project is too small or too large!\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>What sets DHOI apart</strong></span>\r\n\r\nDHOI is more than the average door and hardware supplier. We maintain an extensive inventory of Division 8 finish hardware suited for fire rated openings, impact safety openings as well as handicap openings. We carry many products from the major vendors approved for many building projects such as Schlage, Sargent, Von Duprin and many more. \r\nIn addition to our vast hardware supply, we also stock commercial doors and frames in many standard sizes. Since not every project is comprised of standard off the shelf materials, we are able to provide customizations to your openings with our in house wood and metal machine shops. Finally, what rea\r\nDHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>The Mission</strong></span>\r\nProvide codt and time efficient solutions for your project through expert technical knowledge and professionalism. The cornerstone of our mission is to create long lasting working relationships with our customers and seek to always provide reliable customer service.','About us','','inherit','open','open','','9-revision-v1','','','2019-01-28 07:04:23','2019-01-28 12:04:23','',9,'https://dhoistage.concertium.com/9-revision-v1/',0,'revision','',0),(554,1,'2018-11-05 12:13:28','2018-11-05 12:13:28','<span style=\"font-size: xx-large;\"><strong>About DHOI</strong></span>\r\n\r\nDoor and hardware openings is a leader in the industry of architectual doors and finish hardware. For the past 30 years, DHOI has been providing project management and consulting for many projects all over the U.S.A and many international projects. With such a strong and skilled sales force, no project is too small or too large!\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>What sets DHOI apart</strong></span>\r\n\r\nDHOI is more than the average door and hardware supplier. We maintain an extensive inventory of Division 8 finish hardware suited for fire rated openings, impact safety openings as well as handicap openings. We carry many products from the major vendors approved for many building projects such as Schlage, Sargent, Von Duprin and many more. \r\nIn addition to our vast hardware supply, we also stock commercial doors and frames in many standard sizes. Since not every project is comprised of standard off the shelf materials, we are able to provide customizations to your openings with our in house wood and metal machine shops. Finally, what rea\r\nDHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>The Mission</strong></span>\r\nProvide codt and time efficient solutions for your project through expert technical knowledge and professionalism. The cornerstone of our mission is to create long lasting working relationships with our customers and seek to always provide reliable customer service.','About Us','','inherit','open','open','','9-revision-v1','','','2018-11-05 12:13:28','2018-11-05 12:13:28','',9,'https://dhoistage.concertium.com/9-revision-v1/',0,'revision','',0),(600,1,'2018-11-06 07:44:29','2018-11-06 12:44:29','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div class=\"product-wrapper\">\r\n<div class=\"product-box\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div class=\"product-box\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div class=\"product-box\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n','Products','','publish','open','open','','products','','','2021-04-16 12:23:03','2021-04-16 16:23:03','',0,'https://dhoistage.concertium.com/?page_id=600',0,'page','',0),(1114,1,'2021-04-12 01:28:49','2021-04-12 05:28:49','','Products','','inherit','closed','closed','','600-revision-v1','','','2021-04-12 01:28:49','2021-04-12 05:28:49','',600,'https://dhoistage.concertium.com/?p=1114',0,'revision','',0),(601,1,'2018-11-06 07:44:29','2018-11-06 12:44:29','','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 07:44:29','2018-11-06 12:44:29','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(602,1,'2021-04-20 01:01:30','2018-11-06 12:46:57',' ','','','publish','open','closed','','602','','','2021-04-20 01:01:30','2021-04-20 05:01:30','',0,'https://dhoistage.concertium.com/?p=602',4,'nav_menu_item','',0),(605,1,'2018-11-06 07:49:32','2018-11-06 12:49:32','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n <a href=\"https://architectural.masonite.com/products/\" target=\"_blank\" rel=\"noopener\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\" target=\"_blank\" rel=\"noopener\">VT Industries</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n','Wood Doors','','publish','open','open','','wood-doors','','','2021-04-14 01:11:23','2021-04-14 05:11:23','',0,'https://dhoistage.concertium.com/?page_id=605',0,'page','',0),(1135,1,'2021-04-14 01:09:23','2021-04-14 05:09:23','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"https://architectural.masonite.com/products/\" target=\"_blank>Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\" target=\"_blank>VT Industries</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n</center>\r\n','Wood Doors','','inherit','closed','closed','','605-revision-v1','','','2021-04-14 01:09:23','2021-04-14 05:09:23','',605,'https://dhoistage.concertium.com/?p=1135',0,'revision','',0),(606,1,'2018-11-06 07:49:32','2018-11-06 12:49:32','','wood doors','','inherit','open','open','','605-revision-v1','','','2018-11-06 07:49:32','2018-11-06 12:49:32','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(556,1,'2018-11-05 12:15:14','2018-11-05 12:15:14','','Contact Us','','inherit','open','open','','13-autosave-v1','','','2018-11-05 12:15:14','2018-11-05 12:15:14','',13,'https://dhoistage.concertium.com/13-autosave-v1/',0,'revision','',0),(559,1,'2018-11-05 13:18:59','2018-11-05 13:18:59','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\nThe door is open, so come in and let us provide a solution for your custom project today!\n\n<!--\n<p class=\"paragraph\">We realize that not everyone wants the same thing. So even though we stock the best products by the best manufacturers, some clients do require customized items. For this reason we have a complete machine shop operated by skilled experienced craftsmen capable of creating your most complex requests.</p>\n<p class=\"paragraph\">We provide re-railing and re-stiling of your wood doors to custom specifications. In addition we manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors.</p>\n<p class=\"paragraph\">We produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.</p>','Our Services','','inherit','open','open','','11-autosave-v1','','','2018-11-05 13:18:59','2018-11-05 13:18:59','',11,'https://dhoistage.concertium.com/11-autosave-v1/',0,'revision','',0),(598,1,'2018-11-06 07:16:01','2018-11-06 12:16:01','<p class=\"paragraph\">DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</p>\r\n\r\n<p class=\"paragraph\">If you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.</p>\r\n\r\n<p class=\"paragraph\">We provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.</p>\r\n\r\n<p class=\"paragraph\">We produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.</p>\r\n\r\n<p class=\"paragraph\">The door is open, so come in and let us provide a solution for your custom project today!</p>\r\n','Our Services','','inherit','open','open','','11-revision-v1','','','2018-11-06 07:16:01','2018-11-06 12:16:01','',11,'https://dhoistage.concertium.com/11-revision-v1/',0,'revision','',0),(560,1,'2018-11-05 13:20:01','2018-11-05 13:20:01','<p class=\"paragraph\">DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</p>\r\n\r\n<p class=\"paragraph\">If you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.</p>\r\n\r\n<p class=\"paragraph\">We provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.</p>\r\n\r\n<p class=\"paragraph\">We produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.</p>\r\n\r\n<p class=\"paragraph\">The door is open, so come in and let us provide a solution for your custom project today!</p>\r\n\r\n<!--\r\n<p class=\"paragraph\">We realize that not everyone wants the same thing. So even though we stock the best products by the best manufacturers, some clients do require customized items. For this reason we have a complete machine shop operated by skilled experienced craftsmen capable of creating your most complex requests.</p>\r\n<p class=\"paragraph\">We provide re-railing and re-stiling of your wood doors to custom specifications. In addition we manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors.</p>\r\n<p class=\"paragraph\">We produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.</p>\r\n-->','Our Services','','inherit','open','open','','11-revision-v1','','','2018-11-05 13:20:01','2018-11-05 13:20:01','',11,'https://dhoistage.concertium.com/11-revision-v1/',0,'revision','',0),(561,1,'2018-11-05 13:27:09','2018-11-05 13:27:09',' ','','','publish','open','open','','561','','','2018-11-06 07:20:28','2018-11-06 12:20:28','',0,'https://dhoistage.concertium.com/?p=561',1,'nav_menu_item','',0),(562,1,'2018-11-05 13:27:09','2018-11-05 13:27:09',' ','','','publish','open','open','','562','','','2018-11-06 07:20:28','2018-11-06 12:20:28','',0,'https://dhoistage.concertium.com/?p=562',2,'nav_menu_item','',0),(563,1,'2018-11-05 13:27:09','2018-11-05 13:27:09','','Industry News','','publish','open','open','','industry-news','','','2018-11-06 07:20:28','2018-11-06 12:20:28','',0,'https://dhoistage.concertium.com/?p=563',6,'nav_menu_item','',0),(564,1,'2018-11-05 13:27:09','2018-11-05 13:27:09',' ','','','publish','open','open','','564','','','2018-11-06 07:20:28','2018-11-06 12:20:28','',0,'https://dhoistage.concertium.com/?p=564',4,'nav_menu_item','',0),(565,1,'2018-11-05 13:27:09','2018-11-05 13:27:09',' ','','','publish','open','open','','565','','','2018-11-06 07:20:28','2018-11-06 12:20:28','',0,'https://dhoistage.concertium.com/?p=565',3,'nav_menu_item','',0),(567,1,'2018-11-05 08:41:18','2018-11-05 13:41:18','Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.','Industry Link 5','','inherit','open','open','','256-autosave-v1','','','2018-11-05 08:41:18','2018-11-05 13:41:18','',256,'https://dhoistage.concertium.com/256-autosave-v1/',0,'revision','',0),(860,1,'2019-01-09 08:18:32','2019-01-09 13:18:32',' Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nStraz\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n<center>\r\n<span style=\"font-size: x-large;\">Educational and Sports Facilities</span>\r\n</center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" />\r\n <figcaption><font size=\"4\">Schoomaker ROTC</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" />\r\n <center><figcaption><font size=\"4\">R.K. Bailey Art Studio</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" />\r\n <center>\r\n <figcaption><font size=\"4\">Bob Martinez Athletics Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<center>\r\n<span style=\"font-size: x-large;\">Residence Halls</span>\r\n</center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" />\r\n <figcaption><font size=\"4\">Brevard Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" />\r\n <center><figcaption><font size=\"4\">David A. Straz Jr.</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" />\r\n <center>\r\n <figcaption><font size=\"4\">Frank P. Urso</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n','University of Tampa Expansion','','publish','open','open','','ut-residence-expansion','','','2021-04-14 02:35:25','2021-04-14 06:35:25','',0,'https://dhoistage.concertium.com/?page_id=860',0,'page','',0),(570,1,'2018-11-05 08:55:57','2018-11-05 13:55:57','<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d902822.2373330186!2d-82.32577186974858!3d27.878582341677664!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88c2c1f34e8cf813%3A0xa75c1b78d45e4a81!2s5712+W+Sligh+Ave%2C+Tampa%2C+FL+33634!5e0!3m2!1sen!2sus!4v1541425924515\" width=\"600\" height=\"450\" align=\"right\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 08:55:57','2018-11-05 13:55:57','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(574,1,'2018-11-05 09:06:07','2018-11-05 14:06:07',' We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n<iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\" align=\"right\"></iframe>','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:06:07','2018-11-05 14:06:07','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(571,1,'2018-11-05 08:57:48','2018-11-05 13:57:48',' We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d902822.2373330186!2d-82.32577186974858!3d27.878582341677664!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88c2c1f34e8cf813%3A0xa75c1b78d45e4a81!2s5712+W+Sligh+Ave%2C+Tampa%2C+FL+33634!5e0!3m2!1sen!2sus!4v1541425924515\" width=\"600\" height=\"450\" align=\"right\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 08:57:48','2018-11-05 13:57:48','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(573,1,'2018-11-05 08:58:45','2018-11-05 13:58:45',' We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d902822.2373330186!2d-82.32577186974858!3d27.878582341677664!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88c2c1f34e8cf813%3A0xa75c1b78d45e4a81!2s5712+W+Sligh+Ave%2C+Tampa%2C+FL+33634!5e0!3m2!1sen!2sus!4v1541425924515\" width=\"600\" height=\"450\" align=\"right\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 08:58:45','2018-11-05 13:58:45','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(572,1,'2018-11-05 08:58:10','2018-11-05 13:58:10',' We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\n<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d902822.2373330186!2d-82.32577186974858!3d27.878582341677664!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x88c2c1f34e8cf813%3A0xa75c1b78d45e4a81!2s5712+W+Sligh+Ave%2C+Tampa%2C+FL+33634!5e0!3m2!1sen!2sus!4v1541425924515\" width=\"600\" height=\"450\" align=\"center\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 08:58:10','2018-11-05 13:58:10','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(576,1,'2018-11-05 09:22:38','2018-11-05 14:22:38','<div class=\"row\">\r\n <div class=\"column\">We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</div>\r\n <div class=\"column\"><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\" align=\"right\"></iframe></div>\r\n</div> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:22:38','2018-11-05 14:22:38','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(577,1,'2018-11-05 09:35:04','2018-11-05 14:35:04','<table style=\"width:100%\">\n <col align=\"left\">\n <col align=\"right\">\n <tr>\n <th>Title</th>\n <th>Map</th>\n </tr>\n <tr>\n <td>\n<p class=\"paragraph\">We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida.</p>\n\n<p class=\"paragraph\">We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</p> \n<p class=\"paragraph\">\nWe deliver to Olrando every Tuesday and Thursday<br>\nWe deliver to Sarasota every Monday and Wed<br>\n\n</p></td>\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\" align=\"right\"></iframe></td>\n </tr>\n</table> ','Fast Delivery','','inherit','open','open','','371-autosave-v1','','','2018-11-05 09:35:04','2018-11-05 14:35:04','',371,'https://dhoistage.concertium.com/371-autosave-v1/',0,'revision','',0),(586,1,'2018-11-05 09:29:06','2018-11-05 14:29:06','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <th>Title</th>\r\n <th>Map</th>\r\n </tr>\r\n <tr>\r\n <td>We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:29:06','2018-11-05 14:29:06','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(579,1,'2018-11-05 09:26:29','2018-11-05 14:26:29','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <th>Title</th>\r\n <th>Map</th>\r\n </tr>\r\n <tr>\r\n <td>We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida.\\ We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"320\" height=\"240\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:26:29','2018-11-05 14:26:29','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(587,1,'2018-11-05 09:30:02','2018-11-05 14:30:02','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <td>We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:30:02','2018-11-05 14:30:02','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(578,1,'2018-11-05 09:25:46','2018-11-05 14:25:46','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <th>Title</th>\r\n <th>Map</th>\r\n </tr>\r\n <tr>\r\n <td>We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"320\" height=\"240\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:25:46','2018-11-05 14:25:46','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(580,1,'2018-11-05 09:26:38','2018-11-05 14:26:38','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <th>Title</th>\r\n <th>Map</th>\r\n </tr>\r\n <tr>\r\n <td>We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida.\\\\ We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"320\" height=\"240\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:26:38','2018-11-05 14:26:38','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(581,1,'2018-11-05 09:27:09','2018-11-05 14:27:09','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <th>Title</th>\r\n <th>Map</th>\r\n </tr>\r\n <tr>\r\n <td>We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida.<br> We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"320\" height=\"240\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:27:09','2018-11-05 14:27:09','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(582,1,'2018-11-05 09:27:28','2018-11-05 14:27:28','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <th>Title</th>\r\n <th>Map</th>\r\n </tr>\r\n <tr>\r\n <td>We serve customers throughout the southeastern United States from three locations,<br> in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"320\" height=\"240\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:27:28','2018-11-05 14:27:28','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(583,1,'2018-11-05 09:27:47','2018-11-05 14:27:47','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <th>Title</th>\r\n <th>Map</th>\r\n </tr>\r\n <tr>\r\n <td>We serve customers throughout the southeastern United States from three locations,<br> in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse<br> stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"320\" height=\"240\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:27:47','2018-11-05 14:27:47','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(584,1,'2018-11-05 09:28:15','2018-11-05 14:28:15','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <th>Title</th>\r\n <th>Map</th>\r\n </tr>\r\n <tr>\r\n <td>We serve customers throughout the southeastern United States from three locations,<br> in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse<br> stocked with doors and hardware from leading manufacturers and a box truck fleet<br> for quick delivery to your location.</td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"320\" height=\"240\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:28:15','2018-11-05 14:28:15','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(585,1,'2018-11-05 09:28:33','2018-11-05 14:28:33','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <th>Title</th>\r\n <th>Map</th>\r\n </tr>\r\n <tr>\r\n <td>We serve customers throughout the southeastern United States from three locations,<br> in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse<br> stocked with doors and hardware from leading manufacturers and a box truck fleet<br> for quick delivery to your location.</td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:28:33','2018-11-05 14:28:33','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(588,1,'2018-11-05 09:30:40','2018-11-05 14:30:40','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <td><span style=\"font-size: xx-large;\">We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</span></td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:30:40','2018-11-05 14:30:40','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(589,1,'2018-11-05 09:30:54','2018-11-05 14:30:54','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <td><span style=\"font-size: large;\">We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</span></td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:30:54','2018-11-05 14:30:54','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(590,1,'2018-11-05 09:31:36','2018-11-05 14:31:36','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <th>Title</th>\r\n <th>Map</th>\r\n </tr>\r\n <tr>\r\n <td>We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:31:36','2018-11-05 14:31:36','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(591,1,'2018-11-05 09:33:50','2018-11-05 14:33:50','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <th>Title</th>\r\n <th>Map</th>\r\n </tr>\r\n <tr>\r\n <td>\r\n<p class=\"paragraph\">We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida.</p>\r\n\r\n<p class=\"paragraph\">We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</p></td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:33:50','2018-11-05 14:33:50','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(593,1,'2018-11-05 09:36:49','2018-11-05 14:36:49','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <td>\r\n<p class=\"paragraph\">We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida.</p>\r\n\r\n<p class=\"paragraph\">We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</p> \r\n<p class=\"paragraph\">\r\nWe send dedicated trucks to Sarasota on Monday and Wednesday <br>\r\nand Orlando on Tuesday and Thursday.\r\n</p></td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:36:49','2018-11-05 14:36:49','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(592,1,'2018-11-05 09:36:17','2018-11-05 14:36:17','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <th>Title</th>\r\n <th>Map</th>\r\n </tr>\r\n <tr>\r\n <td>\r\n<p class=\"paragraph\">We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida.</p>\r\n\r\n<p class=\"paragraph\">We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</p> \r\n<p class=\"paragraph\">\r\nWe send dedicated trucks to Sarasota on Monday and Wednesday <br>\r\nand Orlando on Tuesday and Thursday.\r\n</p></td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:36:17','2018-11-05 14:36:17','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(594,1,'2018-11-05 09:37:43','2018-11-05 14:37:43','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <td>\r\n<p class=\"paragraph\">We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida.</p>\r\n\r\n<p class=\"paragraph\">We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</p> \r\n<p class=\"paragraph\">\r\nWe send dedicated trucks to:<br>\r\n<strong>Sarasota</strong> on Monday and Wednesday <br>\r\nOrlando on Tuesday and Thursday.\r\n</p></td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:37:43','2018-11-05 14:37:43','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(595,1,'2018-11-05 09:38:46','2018-11-05 14:38:46','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <td>\r\n<p class=\"paragraph\">We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida.</p>\r\n\r\n<p class=\"paragraph\">We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</p> \r\n<p class=\"paragraph\">\r\nWe send dedicated trucks to:<br>\r\n<strong>Sarasota</strong> on <u>Monday and Wednesday</u> <br>\r\n<strong>Orlando</strong> on <u>Tuesday and Thursday</u>.\r\n</p></td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\" align=\"right\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 09:38:46','2018-11-05 14:38:46','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(596,1,'2018-11-05 10:19:44','2018-11-05 15:19:44','<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <td>\r\n<p class=\"paragraph\">We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida.</p>\r\n\r\n<p class=\"paragraph\">We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.</p> \r\n<p class=\"paragraph\">\r\nWe send dedicated trucks to:<br>\r\n<strong>Sarasota</strong> on <u>Monday and Wednesday</u> <br>\r\n<strong>Orlando</strong> on <u>Tuesday and Thursday</u>.\r\n</p></td>\r\n <td><iframe src=\"https://www.google.com/maps/d/embed?mid=1OOaJV89e798b0sE3TZF-ijrpTl6YteZZ\" width=\"640\" height=\"480\"></iframe></td>\r\n </tr>\r\n</table> ','Fast Delivery','','inherit','open','open','','371-revision-v1','','','2018-11-05 10:19:44','2018-11-05 15:19:44','',371,'https://dhoistage.concertium.com/371-revision-v1/',0,'revision','',0),(597,1,'2018-11-05 10:36:49','2018-11-05 15:36:49','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nThe door is open, so come in and explore our divisions and visit our exceptional list of manufacturers!','Indutry News','','inherit','open','open','','192-revision-v1','','','2018-11-05 10:36:49','2018-11-05 15:36:49','',192,'https://dhoistage.concertium.com/192-revision-v1/',0,'revision','',0),(599,1,'2018-11-06 07:20:28','2018-11-06 12:20:28',' ','','','publish','open','open','','599','','','2018-11-06 07:20:28','2018-11-06 12:20:28','',0,'https://dhoistage.concertium.com/?p=599',5,'nav_menu_item','',0),(608,1,'2018-11-06 07:51:56','2018-11-06 12:51:56','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n<div class=\"container\">\r\n <div class=\"column-center\">Column center</div>\r\n <div class=\"column-left\">Column left</div>\r\n <div class=\"column-right\">Column right</div>\r\n</div\r\n\r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 07:51:56','2018-11-06 12:51:56','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(611,1,'2018-11-06 07:56:11','2018-11-06 12:56:11','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n<a href=\"https://dhoistage.concertium.com/wood-doors/\" title=\"wood doors\"></a>\r\n\r\n<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <td>\r\n1\r\n </td>\r\n <td>\r\n2\r\n </td>\r\n <td>\r\n3\r\n </td>\r\n </tr>\r\n</table> ','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 07:56:11','2018-11-06 12:56:11','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(610,1,'2018-11-06 07:54:31','2018-11-06 12:54:31','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 07:54:31','2018-11-06 12:54:31','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(609,1,'2018-11-06 07:54:05','2018-11-06 12:54:05','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n<div class=\"wrapper\">\r\n\r\n <header>\r\n <h1>3 DHOI Product lines</h1>\r\n </header>\r\n \r\n<section class=\"columns\">\r\n <div class=\"column\">\r\n <h2>1st Content Area</h2>\r\n <p><a href=\"https://dhoistage.concertium.com/wood-doors/\" title=\"wood doors\"></a></p>\r\n </div>\r\n \r\n <div class=\"column\">\r\n <h2>2nd Content Area</h2>\r\n <p><a href=\"https://dhoistage.concertium.com/wood-doors/\" title=\"wood doors\"></a></p>\r\n </div>\r\n \r\n <div class=\"column\">\r\n <h2>3rd Content Area</h2>\r\n <p><a href=\"https://dhoistage.concertium.com/wood-doors/\" title=\"wood doors\"></a></p>\r\n </div>\r\n</section>\r\n</div>\r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 07:54:05','2018-11-06 12:54:05','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(612,1,'2018-11-06 07:57:48','2018-11-06 12:57:48','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n<a href=\"https://dhoistage.concertium.com/wood-doors/\" title=\"wood doors\"></a>\r\n\r\n<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <td>\r\n 1\r\n </td>\r\n <td>\r\n2\r\n </td>\r\n <td>\r\n3\r\n </td>\r\n </tr>\r\n</table> ','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 07:57:48','2018-11-06 12:57:48','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(618,1,'2018-11-06 08:10:08','2018-11-06 13:10:08','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n<table style=\"width: 521px; height: 77px;\">\r\n<tbody>\r\n<tr>\r\n<td><a title=\"wood\" href=\"https://dhoistage.concertium.com/wood/\">Wood Doors</a></td>\r\n<td>Metal Doors</td>\r\n<td>Hardware</td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:10:08','2018-11-06 13:10:08','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(615,1,'2018-11-06 08:01:58','2018-11-06 13:01:58','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n\r\n<a href=\"https://dhoistage.concertium.com/wood/\" title=\"wood\"></a>\r\n\r\n<a href=\"https://dhoistage.concertium.com/wood-doors/\" title=\"wood doors\"></a>\r\n\r\n<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <td>\r\n 1\r\n </td>\r\n <td>\r\n2\r\n </td>\r\n <td>\r\n3\r\n </td>\r\n </tr>\r\n</table> ','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:01:58','2018-11-06 13:01:58','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(617,1,'2018-11-06 08:07:53','2018-11-06 13:07:53','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n<a href=\"https://www.dhoi.com\" title=\"wood\"></a>\r\n\r\n<a href=\"https://dhoistage.concertium.com/wood-doors/\" title=\"wood doors\"></a>\r\n\r\n<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <td>\r\n 1\r\n </td>\r\n <td>\r\n2\r\n </td>\r\n <td>\r\n3\r\n </td>\r\n </tr>\r\n</table> ','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:07:53','2018-11-06 13:07:53','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(616,1,'2018-11-06 08:06:30','2018-11-06 13:06:30','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right.png\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" width=\"227\" height=\"300\" class=\"alignnone size-medium wp-image-509\" /></a>\r\n\r\n<a href=\"https://dhoistage.concertium.com/wood/\" title=\"wood\"></a>\r\n\r\n<a href=\"https://dhoistage.concertium.com/wood-doors/\" title=\"wood doors\"></a>\r\n\r\n<table style=\"width:100%\">\r\n <col align=\"left\">\r\n <col align=\"right\">\r\n <tr>\r\n <td>\r\n 1\r\n </td>\r\n <td>\r\n2\r\n </td>\r\n <td>\r\n3\r\n </td>\r\n </tr>\r\n</table> ','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:06:30','2018-11-06 13:06:30','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(619,1,'2018-11-06 08:10:29','2018-11-06 13:10:29','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n<table style=\"width: 521px; height: 77px;\">\r\n<tbody>\r\n<tr>\r\n<td><a title=\"wood\" href=\"https://dhoistage.concertium.com/wood/\"> Wood Doors</a></td>\r\n<td>Metal Doors</td>\r\n<td>Hardware</td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:10:29','2018-11-06 13:10:29','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(620,1,'2018-11-06 08:10:52','2018-11-06 13:10:52','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n<table style=\"width: 521px; height: 77px;\">\r\n<tbody>\r\n<tr>\r\n<td><a title=\"wood\" href=\"https://dhoistage.concertium.com/wood/\"> Wood Doors</a></td>\r\n<td> Metal Doors</td>\r\n<td> Hardware</td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:10:52','2018-11-06 13:10:52','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(621,1,'2018-11-06 08:12:35','2018-11-06 13:12:35','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><a title=\"wood\" href=\"https://dhoistage.concertium.com/wood/\"> Wood Doors</a></td>\r\n<td> Metal Doors</td>\r\n<td> Hardware</td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:12:35','2018-11-06 13:12:35','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(625,1,'2018-11-06 08:15:53','2018-11-06 13:15:53','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><a title=\"wood\" href=\"https://dhoistage.concertium.com/wood/\"> Wood Doors</a></td>\r\n<td> Metal Doors</td>\r\n<td> Hardware</td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:15:53','2018-11-06 13:15:53','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(624,1,'2018-11-06 08:15:29','2018-11-06 13:15:29','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n<a href=\"https://dhoistage.concertium.com/wood/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\">\r\n</a> \r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><a title=\"wood\" href=\"https://dhoistage.concertium.com/wood/\"> Wood Doors</a></td>\r\n<td> Metal Doors</td>\r\n<td> Hardware</td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:15:29','2018-11-06 13:15:29','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(622,1,'2018-11-06 08:14:09','2018-11-06 13:14:09','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right.png\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" width=\"227\" height=\"300\" class=\"alignnone size-medium wp-image-509\" /></a>\r\n\r\n \r\n<a href=\"https://dhoistage.concertium.com/wood/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" style=\"width:42px;height:42px;border:0;\">\r\n</a> \r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><a title=\"wood\" href=\"https://dhoistage.concertium.com/wood/\"> Wood Doors</a></td>\r\n<td> Metal Doors</td>\r\n<td> Hardware</td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:14:09','2018-11-06 13:14:09','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(623,1,'2018-11-06 08:14:52','2018-11-06 13:14:52','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right.png\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" width=\"227\" height=\"300\" class=\"alignnone size-medium wp-image-509\" /></a>\r\n\r\n \r\n<a href=\"https://dhoistage.concertium.com/wood/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\">\r\n</a> \r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><a title=\"wood\" href=\"https://dhoistage.concertium.com/wood/\"> Wood Doors</a></td>\r\n<td> Metal Doors</td>\r\n<td> Hardware</td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:14:52','2018-11-06 13:14:52','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(626,1,'2018-11-06 08:16:24','2018-11-06 13:16:24','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>\r\n<a href=\"https://dhoistage.concertium.com/wood/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\">\r\n</a> \r\n</td>\r\n<td> Metal Doors</td>\r\n<td> Hardware</td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:16:24','2018-11-06 13:16:24','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(627,1,'2018-11-06 08:16:43','2018-11-06 13:16:43','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>\r\n<a href=\"https://dhoistage.concertium.com/wood/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\">\r\n</a>\r\nWood Doors\r\n</td>\r\n<td> Metal Doors</td>\r\n<td> Hardware</td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:16:43','2018-11-06 13:16:43','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(628,1,'2018-11-06 08:16:52','2018-11-06 13:16:52','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>\r\n<a href=\"https://dhoistage.concertium.com/wood/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\">\r\n</a>\r\n Wood Doors\r\n</td>\r\n<td> Metal Doors</td>\r\n<td> Hardware</td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:16:52','2018-11-06 13:16:52','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(630,1,'2018-11-06 08:19:07','2018-11-06 13:19:07','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<font size=\"6\">Wood Doors</font></td>\r\n<td> Metal Doors</td>\r\n<td> Hardware</td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:19:07','2018-11-06 13:19:07','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(629,1,'2018-11-06 08:17:16','2018-11-06 13:17:16','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>\r\n<a href=\"https://dhoistage.concertium.com/wood/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\">\r\n</a>\r\n<a title=\"wood\" href=\"https://dhoistage.concertium.com/wood/\"> Wood Doors</a>\r\n</td>\r\n<td> Metal Doors</td>\r\n<td> Hardware</td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:17:16','2018-11-06 13:17:16','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(631,1,'2018-11-06 08:19:31','2018-11-06 13:19:31','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n \r\n<center>\r\n\r\n<figure>\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1-224x300.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>UT Athletic Building</figcaption>\r\n</figure>\r\n\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\" target=\"_blank\" rel=\"noopener\">Daybar</a>\r\n<a href=\"http://www.republicdoor.com/\" target=\"_blank\" rel=\"noopener\">Republic</a>\r\n<a href=\"http://www.cecodoor.com/\" target=\"_blank\" rel=\"noopener\">Ceco</a>\r\n<a href=\"https://www.curries.com/en/site/curries/\" target=\"_blank\" rel=\"noopener\">Curries</a>\r\n<a href=\"https://us.allegion.com/en/home/products/brands/steelcraft.html\" target=\"_blank\" rel=\"noopener\">Steelcraft</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.activarcpg.com/air-louvers\" target=\"_blank\" rel=\"noopener\">Air Louvers</a>\r\n<a href=\"http://www.allmetalstamping.com/\" target=\"_blank\" rel=\"noopener\">All Metal Stamping</a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n ','Hollow Metal','','publish','open','open','','hollow-metal','','','2021-04-14 01:13:21','2021-04-14 05:13:21','',0,'https://dhoistage.concertium.com/?page_id=631',0,'page','',0),(632,1,'2018-11-06 08:19:28','2018-11-06 13:19:28','','metal_shop','','inherit','open','open','','631-revision-v1','','','2018-11-06 08:19:28','2018-11-06 13:19:28','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(633,1,'2018-11-06 08:19:51','2018-11-06 13:19:51','DHOI stocks the highest quality architectural hardware. We store various styles and finishes for immediate availability. In addition to builders hardware we are authorized distributors of the following hardware categories: electronic security, detention, fire/life safety and barrier free hardware.\r\n\r\nDHOI has an Architectural Hardware Consultant on staff to schedule, coordinate, and supervise all hardware, <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\" alt=\"ahc-\" width=\"75\" height=\"75\" class=\"alignnone size-full wp-image-697\" /></a>\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hinges</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=150\" target=\"_blank\" rel=\"noopener\">Hager</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\" target=\"_blank\" rel=\"noopener\">McKinney</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Locks</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\" target=\"_blank\" rel=\"noopener\">Hager</a>\r\n <a href=\"https://www.schlage.com/en/home.html\" target=\"_blank\" rel=\"noopener\">Schlage</a>\r\n <a href=\"https://www.sargentlock.com/\" target=\"_blank\" rel=\"noopener\">Sargent</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Closers</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\" target=\"_blank\" rel=\"noopener\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\" target=\"_blank\" rel=\"noopener\">LCN</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\" target=\"_blank\" rel=\"noopener\">Dorma</a>\r\n <a href=\"https://www.nortondoorcontrols.com/en/site/norton/\" target=\"_blank\" rel=\"noopener\">Norton</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Electric</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\" target=\"_blank\" rel=\"noopener\">Hager</a>\r\n <a href=\"https://www.adamsrite.com/en/site/adamsritecom/\" target=\"_blank\" rel=\"noopener\">Adams Rite</a>\r\n <a href=\"https://www.assaabloyesh.com/en/local/assaabloyeshcom/\" target=\"_blank\" rel=\"noopener\">HES</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\" target=\"_blank\" rel=\"noopener\">Von Duprin</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Exit Devices</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\" target=\"_blank\" rel=\"noopener\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\" target=\"_blank\" rel=\"noopener\">Von Duprin</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n ','Hardware','','publish','open','open','','hardware','','','2021-04-14 01:14:59','2021-04-14 05:14:59','',0,'https://dhoistage.concertium.com/?page_id=633',0,'page','',0),(634,1,'2018-11-06 08:19:44','2018-11-06 13:19:44','','hardware','','inherit','open','open','','633-revision-v1','','','2018-11-06 08:19:44','2018-11-06 13:19:44','',633,'https://dhoistage.concertium.com/633-revision-v1/',0,'revision','',0),(635,1,'2018-11-06 08:20:54','2018-11-06 13:20:54','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>\r\n<a href=\"https://dhoistage.concertium.com/wood/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<font size=\"6\">Wood Doors</font>\r\n</td>\r\n<td>\r\n<a href=\"https://dhoistage.concertium.com/metal_shop/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<font size=\"6\">Metal Doors</font>\r\n</td>\r\n<td>\r\n<a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<font size=\"6\">Wood Doors</font>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:20:54','2018-11-06 13:20:54','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(730,1,'2018-11-07 09:09:39','2018-11-07 14:09:39','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:09:39','2018-11-07 14:09:39','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(636,1,'2018-11-06 08:22:37','2018-11-06 13:22:37','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n<table style=\"height: 389px;\" width=\"674\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/metal_shop/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Metal Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:22:37','2018-11-06 13:22:37','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(637,1,'2018-11-06 08:23:22','2018-11-06 13:23:22','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/metal_shop/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Metal Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:23:22','2018-11-06 13:23:22','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(639,1,'2018-11-06 08:26:08','2018-11-06 13:26:08','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n\r\n \r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"image-right\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/metal_shop/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Metal Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:26:08','2018-11-06 13:26:08','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(638,1,'2018-11-06 08:26:01','2018-11-06 13:26:01','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wooddoorbg\" width=\"270\" height=\"254\" class=\"alignnone size-full wp-image-85\" /></a>\r\n\r\n \r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"image-right\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/metal_shop/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Metal Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:26:01','2018-11-06 13:26:01','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(640,1,'2018-11-06 08:26:44','2018-11-06 13:26:44','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n\r\n \r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"image-right\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/metal_shop/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:26:44','2018-11-06 13:26:44','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(641,1,'2018-11-06 08:27:21','2018-11-06 13:27:21','','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-06 08:27:21','2018-11-06 13:27:21','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(645,1,'2018-11-06 08:49:13','2018-11-06 13:49:13','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"image-right\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Wood Doors</span>\r\n</td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdoorimg\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hardwareimg\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:49:13','2018-11-06 13:49:13','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(642,1,'2018-11-06 08:27:51','2018-11-06 13:27:51','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n\r\n \r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"image-right\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:27:51','2018-11-06 13:27:51','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(643,1,'2018-11-06 08:28:07','2018-11-06 13:28:07','','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 08:28:07','2018-11-06 13:28:07','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(644,1,'2018-11-06 08:44:45','2018-11-06 13:44:45','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n\r\n \r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"image-right\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Wood Doors</span>\r\n</td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdoorimg\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"hardwareimg\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:44:45','2018-11-06 13:44:45','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(646,1,'2018-11-06 08:49:24','2018-11-06 13:49:24','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"image-right\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Wood Doors</span>\r\n</td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdoorimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hardwareimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:49:24','2018-11-06 13:49:24','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(650,1,'2018-11-06 08:55:25','2018-11-06 13:55:25','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n\r\n \r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"image-right\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: xx-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:55:25','2018-11-06 13:55:25','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(649,1,'2018-11-06 08:54:41','2018-11-06 13:54:41','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n <figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"image-right\" width=\"270\" height=\"254\" />\r\n</a>\r\n <figcaption> Trulli, Puglia, Italy.</figcaption>\r\n</figure> \r\n<span style=\"font-size: x-large;\">Wood Doors</span>\r\n</td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdoorimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hardwareimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:54:41','2018-11-06 13:54:41','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(647,1,'2018-11-06 08:51:02','2018-11-06 13:51:02','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n <figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"image-right\" width=\"270\" height=\"254\" />\r\n</a>\r\n <img src=\"pic_trulli.jpg\" alt=\"Trulli\" style=\"width:100%\">\r\n <figcaption>Fig.1 - Trulli, Puglia, Italy.</figcaption>\r\n</figure> \r\n<span style=\"font-size: x-large;\">Wood Doors</span>\r\n</td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdoorimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hardwareimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:51:02','2018-11-06 13:51:02','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(648,1,'2018-11-06 08:51:20','2018-11-06 13:51:20','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n <figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"image-right\" width=\"270\" height=\"254\" />\r\n</a>\r\n <img src=\"pic_trulli.jpg\" alt=\"Trulli\" style=\"width:100%\">\r\n <figcaption> Trulli, Puglia, Italy.</figcaption>\r\n</figure> \r\n<span style=\"font-size: x-large;\">Wood Doors</span>\r\n</td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdoorimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hardwareimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:51:20','2018-11-06 13:51:20','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(651,1,'2018-11-06 08:55:48','2018-11-06 13:55:48','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n\r\n \r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"image-right\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/image-right-227x300.png\" alt=\"image-right\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:55:48','2018-11-06 13:55:48','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(653,1,'2018-11-06 08:57:50','2018-11-06 13:57:50','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:57:50','2018-11-06 13:57:50','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(652,1,'2018-11-06 08:57:28','2018-11-06 13:57:28','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"e-INS- St.Pete-3\" width=\"225\" height=\"300\" class=\"alignnone size-medium wp-image-312\" /></a>\r\n\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"exit devices\" width=\"230\" height=\"152\" class=\"alignnone size-full wp-image-351\" /></a>\r\n\r\n \r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-06 08:57:28','2018-11-06 13:57:28','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(654,1,'2018-11-06 09:00:09','2018-11-06 14:00:09','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:00:09','2018-11-06 14:00:09','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(655,1,'2018-11-06 09:00:43','2018-11-06 14:00:43','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n <table>\r\n <caption align=\"bottom\">My savings</caption>\r\n <tr>\r\n <th>Month</th>\r\n <th>Savings</th>\r\n </tr>\r\n <tr>\r\n <td>January</td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:00:43','2018-11-06 14:00:43','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(656,1,'2018-11-06 09:00:53','2018-11-06 14:00:53','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n <table>\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Month</th>\r\n <th>Savings</th>\r\n </tr>\r\n <tr>\r\n <td>January</td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:00:53','2018-11-06 14:00:53','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(657,1,'2021-04-14 06:17:17','2021-04-14 10:17:17','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\n\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\n\n \n<center>\n\n<figure>\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1-224x300.jpg\" alt=\"Trulli\" style=\"width:20%\">\n <figcaption>UT Athletic Building</figcaption>\n</figure>\n\n\n<div style=\"width: 70%; display: table;\">\n<div style=\"display: table-row;\">\n<div style=\"width: 400px; display: table-cell;\">\n\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\n\n<a href=\"http://www.daybar.com\" target=\"_blank\" rel=\"noopener\">Daybar</a>\n<a href=\"http://www.republicdoor.com/\" target=\"_blank\" rel=\"noopener\">Republic</a>\n<a href=\"http://www.cecodoor.com/\" target=\"_blank\" rel=\"noopener\">Ceco</a>\n<a href=\"https://www.curries.com/en/site/curries/\" target=\"_blank\" rel=\"noopener\">Curries</a>\n<a href=\"https://us.allegion.com/en/home/products/brands/steelcraft.html\" target=\"_blank\" rel=\"noopener\">Steelcraft</a>\n\n</div>\n<div style=\"width: 400px; display: table-cell;\">\n\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\n\n<a href=\"http://www.activarcpg.com/air-louvers\" target=\"_blank\" rel=\"noopener\">Air Louvers</a>\n<a href=\"http://www.allmetalstamping.com/\" target=\"_blank\" rel=\"noopener\">All Metal Stamping</a>\n</div>\n</div>\n</div>\n</center>\n ','Hollow Metal','','inherit','open','open','','631-autosave-v1','','','2021-04-14 06:17:17','2021-04-14 10:17:17','',631,'https://dhoistage.concertium.com/631-autosave-v1/',0,'revision','',0),(1140,1,'2021-04-14 01:13:21','2021-04-14 05:13:21','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n \r\n<center>\r\n\r\n<figure>\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1-224x300.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>UT Athletic Building</figcaption>\r\n</figure>\r\n\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\" target=\"_blank\" rel=\"noopener\">Daybar</a>\r\n<a href=\"http://www.republicdoor.com/\" target=\"_blank\" rel=\"noopener\">Republic</a>\r\n<a href=\"http://www.cecodoor.com/\" target=\"_blank\" rel=\"noopener\">Ceco</a>\r\n<a href=\"https://www.curries.com/en/site/curries/\" target=\"_blank\" rel=\"noopener\">Curries</a>\r\n<a href=\"https://us.allegion.com/en/home/products/brands/steelcraft.html\" target=\"_blank\" rel=\"noopener\">Steelcraft</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.activarcpg.com/air-louvers\" target=\"_blank\" rel=\"noopener\">Air Louvers</a>\r\n<a href=\"http://www.allmetalstamping.com/\" target=\"_blank\" rel=\"noopener\">All Metal Stamping</a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n ','Hollow Metal','','inherit','closed','closed','','631-revision-v1','','','2021-04-14 01:13:21','2021-04-14 05:13:21','',631,'https://dhoistage.concertium.com/?p=1140',0,'revision','',0),(658,1,'2018-11-06 09:05:49','2018-11-06 14:05:49','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n <table border=1>\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Month</th>\r\n <th>Savings</th>\r\n </tr>\r\n <tr>\r\n <td>January</td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:05:49','2018-11-06 14:05:49','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(659,1,'2018-11-06 09:06:30','2018-11-06 14:06:30','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n <table width=50%>\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Month</th>\r\n <th>Savings</th>\r\n </tr>\r\n <tr>\r\n <td>January</td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:06:30','2018-11-06 14:06:30','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(660,1,'2018-11-06 09:07:09','2018-11-06 14:07:09','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n <table width=\"50%\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Month</th>\r\n <th>Savings</th>\r\n </tr>\r\n <tr>\r\n <td>January</td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:07:09','2018-11-06 14:07:09','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(662,1,'2018-11-06 09:18:50','2018-11-06 14:18:50','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Month</th>\r\n <th>Savings</th>\r\n </tr>\r\n <tr>\r\n <td>January</td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:18:50','2018-11-06 14:18:50','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(661,1,'2018-11-06 09:14:21','2018-11-06 14:14:21','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */\r\n@media (max-width: 600px) {\r\n nav, article {\r\n width: 100%;\r\n height: auto;\r\n }\r\n}\r\n\r\n <table width=\"50%\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Month</th>\r\n <th>Savings</th>\r\n </tr>\r\n <tr>\r\n <td>January</td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:14:21','2018-11-06 14:14:21','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(663,1,'2018-11-06 09:20:19','2018-11-06 14:20:19','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:20:19','2018-11-06 14:20:19','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(664,1,'2018-11-06 09:21:09','2018-11-06 14:21:09','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n<tr>\r\n <th> </th>\r\n </tr>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:21:09','2018-11-06 14:21:09','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(665,1,'2018-11-06 09:21:29','2018-11-06 14:21:29','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n<tr>\r\n <th> - </th>\r\n </tr>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:21:29','2018-11-06 14:21:29','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(666,1,'2018-11-06 09:21:50','2018-11-06 14:21:50','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n<tr>\r\n <th> - </th>\r\n<td> </td>\r\n </tr>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:21:50','2018-11-06 14:21:50','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(667,1,'2018-11-06 09:23:47','2018-11-06 14:23:47','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<ul style=\"width:10%; float:left;\">\r\n <li>1</li>\r\n <li>2</li>\r\n </ul>\r\n\r\n <ul style=\"width:10%; float:left;\">\r\n <li>3</li>\r\n <li>4</li>\r\n </ul>\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:23:47','2018-11-06 14:23:47','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(668,1,'2018-11-06 09:24:03','2018-11-06 14:24:03','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<ul style=\"width:10%; float:center;\">\r\n <li>1</li>\r\n <li>2</li>\r\n </ul>\r\n\r\n <ul style=\"width:10%; float:center;\">\r\n <li>3</li>\r\n <li>4</li>\r\n </ul>\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:24:03','2018-11-06 14:24:03','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(669,1,'2018-11-06 09:24:19','2018-11-06 14:24:19','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<ul style=\"width:10%; float:left;\">\r\n <li>1</li>\r\n <li>2</li>\r\n </ul>\r\n\r\n <ul style=\"width:10%; float:right;\">\r\n <li>3</li>\r\n <li>4</li>\r\n </ul>\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:24:19','2018-11-06 14:24:19','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(672,1,'2018-11-06 09:27:08','2018-11-06 14:27:08','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<ul style=\"width:10%; float:left;\">\r\n <li>1</li>\r\n <li>2</li>\r\n </ul>\r\n\r\n <ul style=\"width:10%; float:left;\">\r\n <li>3</li>\r\n <li>4</li>\r\n </ul>\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:27:08','2018-11-06 14:27:08','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(670,1,'2018-11-06 09:26:50','2018-11-06 14:26:50','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n<center>\r\n<ul style=\"width:10%; float:left;\">\r\n <li>1</li>\r\n <li>2</li>\r\n </ul>\r\n\r\n <ul style=\"width:10%; float:right;\">\r\n <li>3</li>\r\n <li>4</li>\r\n </ul>\r\n</center>\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:26:50','2018-11-06 14:26:50','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(671,1,'2018-11-06 09:26:59','2018-11-06 14:26:59','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n<center>\r\n<ul style=\"width:10%; float:left;\">\r\n <li>1</li>\r\n <li>2</li>\r\n </ul>\r\n\r\n <ul style=\"width:10%; float:left;\">\r\n <li>3</li>\r\n <li>4</li>\r\n </ul>\r\n</center>\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:26:59','2018-11-06 14:26:59','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(673,1,'2018-11-06 09:27:30','2018-11-06 14:27:30','<center>\r\nFor both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<ul style=\"width:10%; float:left;\">\r\n <li>1</li>\r\n <li>2</li>\r\n </ul>\r\n\r\n <ul style=\"width:10%; float:left;\">\r\n <li>3</li>\r\n <li>4</li>\r\n </ul>\r\n</center>\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:27:30','2018-11-06 14:27:30','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(674,1,'2018-11-06 09:31:03','2018-11-06 14:31:03','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row\">\r\n <div style=\"width: 600px; display: table-cell;\"> Left </div>\r\n <div style=\"display: table-cell;\"> Right </div>\r\n </div>\r\n</div>\r\n\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:31:03','2018-11-06 14:31:03','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(675,1,'2018-11-06 09:31:20','2018-11-06 14:31:20','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<div style=\"width: 80%; display: table;\">\r\n <div style=\"display: table-row\">\r\n <div style=\"width: 600px; display: table-cell;\"> Left </div>\r\n <div style=\"display: table-cell;\"> Right </div>\r\n </div>\r\n</div>\r\n\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:31:20','2018-11-06 14:31:20','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(676,1,'2018-11-06 09:31:39','2018-11-06 14:31:39','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<center>\r\n<div style=\"width: 80%; display: table;\">\r\n <div style=\"display: table-row\">\r\n <div style=\"width: 600px; display: table-cell;\"> Left </div>\r\n <div style=\"display: table-cell;\"> Right </div>\r\n </div>\r\n</div>\r\n</center>\r\n\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:31:39','2018-11-06 14:31:39','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(677,1,'2018-11-06 09:32:00','2018-11-06 14:32:00','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<center>\r\n<div style=\"width: 80%; display: table;\">\r\n <div style=\"display: table-row\">\r\n <div style=\"width: 400px; display: table-cell;\"> Left </div>\r\n <div style=\"display: table-cell;\"> Right </div>\r\n </div>\r\n</div>\r\n</center>\r\n\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:32:00','2018-11-06 14:32:00','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(678,1,'2018-11-06 09:32:55','2018-11-06 14:32:55','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<center>\r\n<div style=\"width: 80%; display: table;\">\r\n <div style=\"display: table-row\">\r\n <div style=\"width: 400px; display: table-cell;\"> Hollow Metal Manufacturers\r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</ul>\r\n\r\n</div>\r\n <div style=\"display: table-cell;\"> Right </div>\r\n </div>\r\n</div>\r\n</center>\r\n\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:32:55','2018-11-06 14:32:55','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(679,1,'2018-11-06 09:33:14','2018-11-06 14:33:14','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<center>\r\n<div style=\"width: 60%; display: table;\">\r\n <div style=\"display: table-row\">\r\n <div style=\"width: 200px; display: table-cell;\"> Hollow Metal Manufacturers\r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</ul>\r\n\r\n</div>\r\n <div style=\"display: table-cell;\"> Right </div>\r\n </div>\r\n</div>\r\n</center>\r\n\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:33:14','2018-11-06 14:33:14','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(681,1,'2018-11-06 09:34:29','2018-11-06 14:34:29','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<center>\r\n<div style=\"width: 60%; display: table;\">\r\n <div style=\"display: table-row\">\r\n <div style=\"width: 300px; display: table-cell;\"> Hollow Metal Manufacturers\r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n\r\n</ul>\r\n\r\n</div>\r\n <div style=\"display: table-cell;\"> Louver & Light Kit Manufacturers\r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n\r\n</ul>\r\n</div>\r\n </div>\r\n</div>\r\n</center>\r\n','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:34:29','2018-11-06 14:34:29','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(680,1,'2018-11-06 09:34:03','2018-11-06 14:34:03','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<center>\r\n<div style=\"width: 60%; display: table;\">\r\n <div style=\"display: table-row\">\r\n <div style=\"width: 300px; display: table-cell;\"> Hollow Metal Manufacturers\r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n\r\n</ul>\r\n\r\n</div>\r\n <div style=\"display: table-cell;\"> Right \r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n\r\n</ul>\r\n</div>\r\n </div>\r\n</div>\r\n</center>\r\n\r\n\r\n <table width=\"200\">\r\n <caption align=\"center\">My savings</caption>\r\n <tr>\r\n <th>Hollow Metal Manufacturers</th>\r\n <th>Louver & Light Kit Manufacturers</th>\r\n </tr>\r\n <tr>\r\n <td><a href=\"http://www.daybar.com\">Daybar</a></td>\r\n <td>$100</td>\r\n </tr>\r\n</table> ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:34:03','2018-11-06 14:34:03','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(682,1,'2018-11-06 09:35:20','2018-11-06 14:35:20','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<center>\r\n<div style=\"width: 60%; display: table;\">\r\n <div style=\"display: table-row\">\r\n <div style=\"width: 300px; display: table-cell;\"> <font size=\"5\"> Hollow Metal Manufacturers</font>\r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n\r\n</ul>\r\n\r\n</div>\r\n <div style=\"display: table-cell;\"> Louver & Light Kit Manufacturers\r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n\r\n</ul>\r\n</div>\r\n </div>\r\n</div>\r\n</center>\r\n','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:35:20','2018-11-06 14:35:20','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(683,1,'2018-11-06 09:35:30','2018-11-06 14:35:30','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<center>\r\n<div style=\"width: 60%; display: table;\">\r\n <div style=\"display: table-row\">\r\n <div style=\"width: 500px; display: table-cell;\"> <font size=\"5\"> Hollow Metal Manufacturers</font>\r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n\r\n</ul>\r\n\r\n</div>\r\n <div style=\"display: table-cell;\"> Louver & Light Kit Manufacturers\r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n\r\n</ul>\r\n</div>\r\n </div>\r\n</div>\r\n</center>\r\n','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:35:30','2018-11-06 14:35:30','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(684,1,'2018-11-06 09:35:36','2018-11-06 14:35:36','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<center>\r\n<div style=\"width: 60%; display: table;\">\r\n <div style=\"display: table-row\">\r\n <div style=\"width: 500px; display: table-cell;\"> <font size=\"4\"> Hollow Metal Manufacturers</font>\r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n\r\n</ul>\r\n\r\n</div>\r\n <div style=\"display: table-cell;\"> Louver & Light Kit Manufacturers\r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n\r\n</ul>\r\n</div>\r\n </div>\r\n</div>\r\n</center>\r\n','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:35:36','2018-11-06 14:35:36','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(685,1,'2018-11-06 09:35:45','2018-11-06 14:35:45','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<center>\r\n<div style=\"width: 60%; display: table;\">\r\n <div style=\"display: table-row\">\r\n <div style=\"width: 400px; display: table-cell;\"> <font size=\"4\"> Hollow Metal Manufacturers</font>\r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n\r\n</ul>\r\n\r\n</div>\r\n <div style=\"display: table-cell;\"> Louver & Light Kit Manufacturers\r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n\r\n</ul>\r\n</div>\r\n </div>\r\n</div>\r\n</center>\r\n','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:35:45','2018-11-06 14:35:45','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(686,1,'2018-11-06 09:36:05','2018-11-06 14:36:05','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n<center>\r\n<div style=\"width: 60%; display: table;\">\r\n <div style=\"display: table-row\">\r\n <div style=\"width: 400px; display: table-cell;\"> <font size=\"4\"> Hollow Metal Manufacturers</font>\r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n\r\n</ul>\r\n\r\n</div>\r\n <div style=\"display: table-cell;\"> <font size=\"4\">Louver & Light Kit Manufacturers</font>\r\n<ul>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n\r\n</ul>\r\n</div>\r\n </div>\r\n</div>\r\n</center>\r\n','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:36:05','2018-11-06 14:36:05','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(687,1,'2018-11-06 09:37:13','2018-11-06 14:37:13','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n \r\n<div style=\"width: 60%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n</div>\r\n</div>\r\n ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:37:13','2018-11-06 14:37:13','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(688,1,'2018-11-06 09:37:30','2018-11-06 14:37:30','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n \r\n<center>\r\n<div style=\"width: 60%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:37:30','2018-11-06 14:37:30','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(689,1,'2018-11-06 09:37:54','2018-11-06 14:37:54','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-06 09:37:54','2018-11-06 14:37:54','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(691,1,'2018-11-06 09:39:48','2018-11-06 14:39:48','DHOI stocks the highest quality architectural hardware. We store various styles and finishes for immediate availability. In addition to builders hardware we are authorized distributors of the following hardware categories: electronic security, detention, fire/life safety and barrier free hardware.\r\n\r\nDHOI has an Architectural Hardware Consultant on staff to schedule, coordinate, and supervise all hardware,\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 300px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hinges</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n<div style=\"width: 300px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Locks</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n<div style=\"width: 300px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Closers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n</center>\r\n ','Hardware','','inherit','open','open','','633-revision-v1','','','2018-11-06 09:39:48','2018-11-06 14:39:48','',633,'https://dhoistage.concertium.com/633-revision-v1/',0,'revision','',0),(690,1,'2018-11-06 09:39:09','2018-11-06 14:39:09','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 300px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hinges</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n<div style=\"width: 300px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Locks</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n<div style=\"width: 300px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Closers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n</center>\r\n ','Hardware','','inherit','open','open','','633-revision-v1','','','2018-11-06 09:39:09','2018-11-06 14:39:09','',633,'https://dhoistage.concertium.com/633-revision-v1/',0,'revision','',0),(692,1,'2018-11-06 09:40:17','2018-11-06 14:40:17','DHOI stocks the highest quality architectural hardware. We store various styles and finishes for immediate availability. In addition to builders hardware we are authorized distributors of the following hardware categories: electronic security, detention, fire/life safety and barrier free hardware.\r\n\r\nDHOI has an Architectural Hardware Consultant on staff to schedule, coordinate, and supervise all hardware,\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 300px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hinges</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n<div style=\"width: 300px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Locks</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n\r\n<div style=\"width: 300px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Closers</span>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n\r\n<div style=\"width: 300px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Electric</span>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n</center>\r\n ','Hardware','','inherit','open','open','','633-revision-v1','','','2018-11-06 09:40:17','2018-11-06 14:40:17','',633,'https://dhoistage.concertium.com/633-revision-v1/',0,'revision','',0),(693,1,'2021-04-14 01:14:57','2021-04-14 05:14:57','DHOI stocks the highest quality architectural hardware. We store various styles and finishes for immediate availability. In addition to builders hardware we are authorized distributors of the following hardware categories: electronic security, detention, fire/life safety and barrier free hardware.\n\nDHOI has an Architectural Hardware Consultant on staff to schedule, coordinate, and supervise all hardware, <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\" alt=\"ahc-\" width=\"75\" height=\"75\" class=\"alignnone size-full wp-image-697\" /></a>\n\n \n<center>\n\n<div style=\"width: 70%; display: table;\">\n <div style=\"display: table-row;\">\n <div style=\"width: 300px; display: table-cell;\">\n <span style=\"font-size: large;\"> Hinges</span>\n\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=150\" target=\"_blank\" rel=\"noopener\">Hager</a>\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\" target=\"_blank\" rel=\"noopener\">McKinney</a>\n </div>\n\n <div style=\"width: 300px; display: table-cell;\">\n <span style=\"font-size: large;\">Locks</span>\n\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\" target=\"_blank\" rel=\"noopener\">Hager</a>\n <a href=\"https://www.schlage.com/en/home.html\" target=\"_blank\" rel=\"noopener\">Schlage</a>\n <a href=\"https://www.sargentlock.com/\" target=\"_blank\" rel=\"noopener\">Sargent</a>\n </div>\n\n <div style=\"width: 300px; display: table-cell;\">\n <span style=\"font-size: large;\">Closers</span>\n\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\" target=\"_blank\" rel=\"noopener\">Hager</a>\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\" target=\"_blank\" rel=\"noopener\">LCN</a>\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\" target=\"_blank\" rel=\"noopener\">Dorma</a>\n <a href=\"https://www.nortondoorcontrols.com/en/site/norton/\" target=\"_blank\" rel=\"noopener\">Norton</a>\n </div>\n\n <div style=\"width: 300px; display: table-cell;\">\n <span style=\"font-size: large;\">Electric</span>\n\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\" target=\"_blank\" rel=\"noopener\">Hager</a>\n <a href=\"https://www.adamsrite.com/en/site/adamsritecom/\" target=\"_blank\" rel=\"noopener\">Adams Rite</a>\n <a href=\"https://www.assaabloyesh.com/en/local/assaabloyeshcom/\" target=\"_blank\" rel=\"noopener\">HES</a>\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\" target=\"_blank\" rel=\"noopener\">Von Duprin</a>\n </div>\n\n </div>\n <!-- new row -->\n <div style=\"display: table-row;\">\n <div style=\"width: 300px; display: table-cell;\">\n <span style=\"font-size: large;\"> Exit Devices</span>\n\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\" target=\"_blank\" rel=\"noopener\">Hager</a>\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\" target=\"_blank\" rel=\"noopener\">Von Duprin</a>\n </div>\n </div>\n</div>\n</center>\n ','Hardware','','inherit','open','open','','633-autosave-v1','','','2021-04-14 01:14:57','2021-04-14 05:14:57','',633,'https://dhoistage.concertium.com/633-autosave-v1/',0,'revision','',0),(694,1,'2018-11-06 09:41:59','2018-11-06 14:41:59','DHOI stocks the highest quality architectural hardware. We store various styles and finishes for immediate availability. In addition to builders hardware we are authorized distributors of the following hardware categories: electronic security, detention, fire/life safety and barrier free hardware.\r\n\r\nDHOI has an Architectural Hardware Consultant on staff to schedule, coordinate, and supervise all hardware,\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hinges</span>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Locks</span>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Closers</span>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Electric</span>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n</div>\r\n</div>\r\n</center>\r\n ','Hardware','','inherit','open','open','','633-revision-v1','','','2018-11-06 09:41:59','2018-11-06 14:41:59','',633,'https://dhoistage.concertium.com/633-revision-v1/',0,'revision','',0),(695,1,'2018-11-06 09:42:59','2018-11-06 14:42:59','DHOI stocks the highest quality architectural hardware. We store various styles and finishes for immediate availability. In addition to builders hardware we are authorized distributors of the following hardware categories: electronic security, detention, fire/life safety and barrier free hardware.\r\n\r\nDHOI has an Architectural Hardware Consultant on staff to schedule, coordinate, and supervise all hardware,\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hinges</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Locks</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Closers</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Electric</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n</div>\r\n<div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Exit Devices</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n</div>\r\n</div>\r\n</center>\r\n ','Hardware','','inherit','open','open','','633-revision-v1','','','2018-11-06 09:42:59','2018-11-06 14:42:59','',633,'https://dhoistage.concertium.com/633-revision-v1/',0,'revision','',0),(696,1,'2018-11-06 09:44:09','2018-11-06 14:44:09','DHOI stocks the highest quality architectural hardware. We store various styles and finishes for immediate availability. In addition to builders hardware we are authorized distributors of the following hardware categories: electronic security, detention, fire/life safety and barrier free hardware.\r\n\r\nDHOI has an Architectural Hardware Consultant on staff to schedule, coordinate, and supervise all hardware,\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hinges</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Locks</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Closers</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Electric</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Exit Devices</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n ','Hardware','','inherit','open','open','','633-revision-v1','','','2018-11-06 09:44:09','2018-11-06 14:44:09','',633,'https://dhoistage.concertium.com/633-revision-v1/',0,'revision','',0),(697,1,'2018-11-06 09:45:40','2018-11-06 14:45:40','','ahc-','','inherit','open','open','','ahc','','','2018-11-06 09:45:40','2018-11-06 14:45:40','',633,'https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png',0,'attachment','image/png',0),(698,1,'2018-11-06 09:45:55','2018-11-06 14:45:55','DHOI stocks the highest quality architectural hardware. We store various styles and finishes for immediate availability. In addition to builders hardware we are authorized distributors of the following hardware categories: electronic security, detention, fire/life safety and barrier free hardware.\r\n\r\nDHOI has an Architectural Hardware Consultant on staff to schedule, coordinate, and supervise all hardware,\r\n\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\" alt=\"ahc-\" width=\"150\" height=\"151\" class=\"alignnone size-full wp-image-697\" /></a>\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hinges</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Locks</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Closers</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Electric</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Exit Devices</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n ','Hardware','','inherit','open','open','','633-revision-v1','','','2018-11-06 09:45:55','2018-11-06 14:45:55','',633,'https://dhoistage.concertium.com/633-revision-v1/',0,'revision','',0),(699,1,'2018-11-06 09:46:09','2018-11-06 14:46:09','DHOI stocks the highest quality architectural hardware. We store various styles and finishes for immediate availability. In addition to builders hardware we are authorized distributors of the following hardware categories: electronic security, detention, fire/life safety and barrier free hardware.\r\n\r\nDHOI has an Architectural Hardware Consultant on staff to schedule, coordinate, and supervise all hardware,\r\n\r\n \r\n<center>\r\n\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\" alt=\"ahc-\" width=\"150\" height=\"151\" class=\"alignnone size-full wp-image-697\" /></a>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hinges</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Locks</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Closers</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Electric</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Exit Devices</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n ','Hardware','','inherit','open','open','','633-revision-v1','','','2018-11-06 09:46:09','2018-11-06 14:46:09','',633,'https://dhoistage.concertium.com/633-revision-v1/',0,'revision','',0),(700,1,'2018-11-06 09:47:05','2018-11-06 14:47:05','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-06 09:47:05','2018-11-06 14:47:05','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(703,1,'2018-11-06 09:48:50','2018-11-06 14:48:50','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n ','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-06 09:48:50','2018-11-06 14:48:50','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(701,1,'2018-11-06 09:47:33','2018-11-06 14:47:33','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n ','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-06 09:47:33','2018-11-06 14:47:33','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(702,1,'2021-04-14 01:08:01','2021-04-14 05:08:01','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\n\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\n\n \n\n<center>\n<div style=\"width: 70%; display: table;\">\n <div style=\"display: table-row;\">\n <div style=\"width: 400px; display: table-cell;\">\n\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\n\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\n\n </div>\n <div style=\"width: 400px; display: table-cell;\">\n\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\n\n </div>\n </div>\n</div>\n\n \n\n</center>\n','Wood Doors','','inherit','open','open','','605-autosave-v1','','','2021-04-14 01:08:01','2021-04-14 05:08:01','',605,'https://dhoistage.concertium.com/605-autosave-v1/',0,'revision','',0),(705,1,'2018-11-06 09:51:06','2018-11-06 14:51:06','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n </div>\r\n</div>\r\n</center>\r\n ','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-06 09:51:06','2018-11-06 14:51:06','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(704,1,'2018-11-06 09:49:50','2018-11-06 14:49:50','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/06/ASIBARNDOOR-St.Pete_.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/06/ASIBARNDOOR-St.Pete_-223x300.jpg\" alt=\"ASIBARNDOOR-St.Pete\" width=\"223\" height=\"300\" class=\"alignnone size-medium wp-image-305\" /></a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n </div>\r\n</div>\r\n</center>\r\n ','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-06 09:49:50','2018-11-06 14:49:50','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(706,1,'2018-11-06 09:51:25','2018-11-06 14:51:25','','Walnut-Kensington-pre-fin','','inherit','open','open','','walnut-kensington-pre-fin','','','2018-11-06 09:51:25','2018-11-06 14:51:25','',605,'https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg',0,'attachment','image/jpeg',0),(707,1,'2018-11-06 09:51:36','2018-11-06 14:51:36','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n \r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" class=\"alignnone size-medium wp-image-706\" /></a>\r\n </div>\r\n\r\n </div>\r\n</div>\r\n</center>\r\n ','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-06 09:51:36','2018-11-06 14:51:36','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(708,1,'2018-11-06 09:55:01','2018-11-06 14:55:01','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a> \r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n \r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" class=\"alignnone size-medium wp-image-706\" /></a>\r\n </div>\r\n\r\n </div>\r\n</div>\r\n</center>\r\n ','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-06 09:55:01','2018-11-06 14:55:01','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(749,1,'2018-11-07 09:32:06','2018-11-07 14:32:06','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center></center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n<a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n<a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n<a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n</div>\r\n</div>\r\n</div>','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-07 09:32:06','2018-11-07 14:32:06','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(709,1,'2018-11-06 09:55:51','2018-11-06 14:55:51','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a> \r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n \r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" class=\"alignnone size-medium wp-image-706\" /></a>\r\n </div>\r\n\r\n </div>\r\n</div>\r\n</center>\r\n ','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-06 09:55:51','2018-11-06 14:55:51','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(710,1,'2018-11-06 10:05:59','2018-11-06 15:05:59','DHOI stocks the highest quality architectural hardware. We store various styles and finishes for immediate availability. In addition to builders hardware we are authorized distributors of the following hardware categories: electronic security, detention, fire/life safety and barrier free hardware.\r\n\r\nDHOI has an Architectural Hardware Consultant on staff to schedule, coordinate, and supervise all hardware,\r\n\r\n \r\n<center>\r\n\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\" alt=\"ahc-\" width=\"75\" height=\"75\" class=\"alignnone size-full wp-image-697\" /></a>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hinges</span>\r\n\r\n <a href=\"http://www.hagerco.com\">Hager</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\">McKinney</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Locks</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Closers</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Electric</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Exit Devices</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n ','Hardware','','inherit','open','open','','633-revision-v1','','','2018-11-06 10:05:59','2018-11-06 15:05:59','',633,'https://dhoistage.concertium.com/633-revision-v1/',0,'revision','',0),(711,1,'2018-11-06 10:06:16','2018-11-06 15:06:16','DHOI stocks the highest quality architectural hardware. We store various styles and finishes for immediate availability. In addition to builders hardware we are authorized distributors of the following hardware categories: electronic security, detention, fire/life safety and barrier free hardware.\r\n\r\nDHOI has an Architectural Hardware Consultant on staff to schedule, coordinate, and supervise all hardware, <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\" alt=\"ahc-\" width=\"75\" height=\"75\" class=\"alignnone size-full wp-image-697\" /></a>\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hinges</span>\r\n\r\n <a href=\"http://www.hagerco.com\">Hager</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\">McKinney</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Locks</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Closers</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Electric</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Exit Devices</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n ','Hardware','','inherit','open','open','','633-revision-v1','','','2018-11-06 10:06:16','2018-11-06 15:06:16','',633,'https://dhoistage.concertium.com/633-revision-v1/',0,'revision','',0),(712,1,'2018-11-06 10:11:55','2018-11-06 15:11:55','DHOI stocks the highest quality architectural hardware. We store various styles and finishes for immediate availability. In addition to builders hardware we are authorized distributors of the following hardware categories: electronic security, detention, fire/life safety and barrier free hardware.\r\n\r\nDHOI has an Architectural Hardware Consultant on staff to schedule, coordinate, and supervise all hardware, <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\" alt=\"ahc-\" width=\"75\" height=\"75\" class=\"alignnone size-full wp-image-697\" /></a>\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hinges</span>\r\n\r\n <a href=\"http://www.hagerco.com\">Hager</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\">McKinney</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Locks</span>\r\n\r\n <a href=\"http://www.hagerco.com\">Hager</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">Schlage</a>\r\n <a href=\"https://www.sargentlock.com/\">Sargent</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Closers</span>\r\n\r\n <a href=\"http://www.hagerco.com\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">LCN</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Dorma</a>\r\n <a href=\"https://www.nortondoorcontrols.com/en/site/norton/\">Norton</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Electric</span>\r\n\r\n <a href=\"https://www.adamsrite.com/en/site/adamsritecom/\">Adams Rite</a>\r\n <a href=\"https://www.assaabloyesh.com/en/local/assaabloyeshcom/\">HES</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Exit Devices</span>\r\n\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n <a href=\"http://www.daybar.com\">Daybar</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n ','Hardware','','inherit','open','open','','633-revision-v1','','','2018-11-06 10:11:55','2018-11-06 15:11:55','',633,'https://dhoistage.concertium.com/633-revision-v1/',0,'revision','',0),(713,1,'2018-11-06 10:15:04','2018-11-06 15:15:04','DHOI stocks the highest quality architectural hardware. We store various styles and finishes for immediate availability. In addition to builders hardware we are authorized distributors of the following hardware categories: electronic security, detention, fire/life safety and barrier free hardware.\r\n\r\nDHOI has an Architectural Hardware Consultant on staff to schedule, coordinate, and supervise all hardware, <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\" alt=\"ahc-\" width=\"75\" height=\"75\" class=\"alignnone size-full wp-image-697\" /></a>\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hinges</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=150\">Hager</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\">McKinney</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Locks</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\">Hager</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">Schlage</a>\r\n <a href=\"https://www.sargentlock.com/\">Sargent</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Closers</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">LCN</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Dorma</a>\r\n <a href=\"https://www.nortondoorcontrols.com/en/site/norton/\">Norton</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Electric</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Hager</a>\r\n <a href=\"https://www.adamsrite.com/en/site/adamsritecom/\">Adams Rite</a>\r\n <a href=\"https://www.assaabloyesh.com/en/local/assaabloyeshcom/\">HES</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Exit Devices</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n ','Hardware','','inherit','open','open','','633-revision-v1','','','2018-11-06 10:15:04','2018-11-06 15:15:04','',633,'https://dhoistage.concertium.com/633-revision-v1/',0,'revision','',0),(714,1,'2018-11-07 08:33:57','2018-11-07 13:33:57','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n \r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.republicdoor.com/\">Republic</a>\r\n<a href=\"http://www.cecodoor.com/\">Ceco</a>\r\n<a href=\"https://www.curries.com/en/site/curries/\">Curries</a>\r\n<a href=\"https://us.allegion.com/en/home/products/brands/steelcraft.html\">Steelcraft</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.activarcpg.com/air-louvers\">Air Louvers</a>\r\n<a href=\"http://www.allmetalstamping.com/\">All Metal Stamping</a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-07 08:33:57','2018-11-07 13:33:57','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(716,1,'2018-11-07 08:57:53','2018-11-07 13:57:53','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n \r\n<center>\r\n\r\n<figure>\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1-224x300.jpg\" alt=\"Trulli\" style=\"width:100%\">\r\n <figcaption>UT Athletic Building</figcaption>\r\n</figure>\r\n\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.republicdoor.com/\">Republic</a>\r\n<a href=\"http://www.cecodoor.com/\">Ceco</a>\r\n<a href=\"https://www.curries.com/en/site/curries/\">Curries</a>\r\n<a href=\"https://us.allegion.com/en/home/products/brands/steelcraft.html\">Steelcraft</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.activarcpg.com/air-louvers\">Air Louvers</a>\r\n<a href=\"http://www.allmetalstamping.com/\">All Metal Stamping</a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-07 08:57:53','2018-11-07 13:57:53','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(715,1,'2018-11-07 08:56:47','2018-11-07 13:56:47','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n \r\n<center>\r\n\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1-224x300.jpg\" alt=\"UT Athletic Bldg-Tampa\" width=\"224\" height=\"300\" class=\"alignnone size-medium wp-image-330\" /></a>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.republicdoor.com/\">Republic</a>\r\n<a href=\"http://www.cecodoor.com/\">Ceco</a>\r\n<a href=\"https://www.curries.com/en/site/curries/\">Curries</a>\r\n<a href=\"https://us.allegion.com/en/home/products/brands/steelcraft.html\">Steelcraft</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.activarcpg.com/air-louvers\">Air Louvers</a>\r\n<a href=\"http://www.allmetalstamping.com/\">All Metal Stamping</a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-07 08:56:47','2018-11-07 13:56:47','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(717,1,'2018-11-07 08:58:08','2018-11-07 13:58:08','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n \r\n<center>\r\n\r\n<figure>\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1-224x300.jpg\" alt=\"Trulli\" style=\"width:50%\">\r\n <figcaption>UT Athletic Building</figcaption>\r\n</figure>\r\n\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.republicdoor.com/\">Republic</a>\r\n<a href=\"http://www.cecodoor.com/\">Ceco</a>\r\n<a href=\"https://www.curries.com/en/site/curries/\">Curries</a>\r\n<a href=\"https://us.allegion.com/en/home/products/brands/steelcraft.html\">Steelcraft</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.activarcpg.com/air-louvers\">Air Louvers</a>\r\n<a href=\"http://www.allmetalstamping.com/\">All Metal Stamping</a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-07 08:58:08','2018-11-07 13:58:08','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(718,1,'2018-11-07 08:58:16','2018-11-07 13:58:16','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.\r\n\r\n \r\n<center>\r\n\r\n<figure>\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1-224x300.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>UT Athletic Building</figcaption>\r\n</figure>\r\n\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.republicdoor.com/\">Republic</a>\r\n<a href=\"http://www.cecodoor.com/\">Ceco</a>\r\n<a href=\"https://www.curries.com/en/site/curries/\">Curries</a>\r\n<a href=\"https://us.allegion.com/en/home/products/brands/steelcraft.html\">Steelcraft</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.activarcpg.com/air-louvers\">Air Louvers</a>\r\n<a href=\"http://www.allmetalstamping.com/\">All Metal Stamping</a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n ','Hollow Metal','','inherit','open','open','','631-revision-v1','','','2018-11-07 08:58:16','2018-11-07 13:58:16','',631,'https://dhoistage.concertium.com/631-revision-v1/',0,'revision','',0),(740,1,'2018-11-07 09:15:50','2018-11-07 14:15:50','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:30%\">\r\n <figcaption>Wood Doors</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:30%\">\r\n <figcaption>Hollow Metal</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"hdwimg\" style=\"width:30%\">\r\n <figcaption>Wood Doors</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:15:50','2018-11-07 14:15:50','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(719,1,'2018-11-07 09:02:44','2018-11-07 14:02:44','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n\r\n<center>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n</a>\r\n<a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n </div>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n<a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n </div>\r\n\r\n </div>\r\n</div>\r\n</center>\r\n\r\n<!--\r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n-->','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:02:44','2018-11-07 14:02:44','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(720,1,'2018-11-07 09:03:01','2018-11-07 14:03:01','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n\r\n<center>\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n</a>\r\n<a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n </div>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n<a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n </div>\r\n\r\n </div>\r\n</div>\r\n</center>\r\n\r\n<!--\r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n-->','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:03:01','2018-11-07 14:03:01','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(721,1,'2018-11-07 09:03:21','2018-11-07 14:03:21','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n\r\n<center>\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n\r\n</a>\r\n<a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n </div>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n\r\n<a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n </div>\r\n\r\n </div>\r\n</div>\r\n</center>\r\n\r\n<!--\r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n-->','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:03:21','2018-11-07 14:03:21','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(724,1,'2018-11-07 09:06:35','2018-11-07 14:06:35','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n </a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\"/>\r\n </a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\"/>\r\n </a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n\r\n<!--\r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n-->','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:06:35','2018-11-07 14:06:35','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(722,1,'2018-11-07 09:04:56','2018-11-07 14:04:56','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n\r\n<center>\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" \r\n width=\"270\" height=\"254\" />\r\n </a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" \r\n alt=\"hmdimg\" />\r\n </a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" \r\n />\r\n </a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n\r\n<!--\r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n-->','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:04:56','2018-11-07 14:04:56','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(723,1,'2018-11-07 09:06:05','2018-11-07 14:06:05','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n\r\n<center>\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n </a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\"/>\r\n </a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\"/>\r\n </a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n\r\n<!--\r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n-->','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:06:05','2018-11-07 14:06:05','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(726,1,'2018-11-07 09:08:02','2018-11-07 14:08:02','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n\r\n\r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:08:02','2018-11-07 14:08:02','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(725,1,'2018-11-07 09:07:41','2018-11-07 14:07:41','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n \r\n\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.republicdoor.com/\">Republic</a>\r\n<a href=\"http://www.cecodoor.com/\">Ceco</a>\r\n<a href=\"https://www.curries.com/en/site/curries/\">Curries</a>\r\n<a href=\"https://us.allegion.com/en/home/products/brands/steelcraft.html\">Steelcraft</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.activarcpg.com/air-louvers\">Air Louvers</a>\r\n<a href=\"http://www.allmetalstamping.com/\">All Metal Stamping</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<!--\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n </a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\"/>\r\n </a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\"/>\r\n </a>\r\n </div>\r\n </div>\r\n</div>\r\n-->\r\n\r\n\r\n<!--\r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n-->','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:07:41','2018-11-07 14:07:41','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(727,1,'2018-11-07 09:08:29','2018-11-07 14:08:29','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.republicdoor.com/\">Republic</a>\r\n<a href=\"http://www.cecodoor.com/\">Ceco</a>\r\n<a href=\"https://www.curries.com/en/site/curries/\">Curries</a>\r\n<a href=\"https://us.allegion.com/en/home/products/brands/steelcraft.html\">Steelcraft</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.activarcpg.com/air-louvers\">Air Louvers</a>\r\n<a href=\"http://www.allmetalstamping.com/\">All Metal Stamping</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n<!--\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n </a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\"/>\r\n </a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\"/>\r\n </a>\r\n </div>\r\n </div>\r\n</div>\r\n-->\r\n\r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:08:29','2018-11-07 14:08:29','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(729,1,'2018-11-07 09:09:05','2018-11-07 14:09:05','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:09:05','2018-11-07 14:09:05','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(728,1,'2018-11-07 09:08:48','2018-11-07 14:08:48','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<!--\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.republicdoor.com/\">Republic</a>\r\n<a href=\"http://www.cecodoor.com/\">Ceco</a>\r\n<a href=\"https://www.curries.com/en/site/curries/\">Curries</a>\r\n<a href=\"https://us.allegion.com/en/home/products/brands/steelcraft.html\">Steelcraft</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.activarcpg.com/air-louvers\">Air Louvers</a>\r\n<a href=\"http://www.allmetalstamping.com/\">All Metal Stamping</a>\r\n</div>\r\n</div>\r\n</div>\r\n-->\r\n\r\n<!--\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n </a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\"/>\r\n </a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\"/>\r\n </a>\r\n </div>\r\n </div>\r\n</div>\r\n-->\r\n\r\n<table align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td><a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" width=\"270\" height=\"254\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Wood Doors</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmdimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hollow Metal</span></td>\r\n<td><a href=\"https://dhoistage.concertium.com/hardware/\">\r\n<img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" />\r\n</a>\r\n<span style=\"font-size: x-large;\">Hardware</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:08:48','2018-11-07 14:08:48','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(733,1,'2018-11-07 09:10:49','2018-11-07 14:10:49','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:10:49','2018-11-07 14:10:49','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(732,1,'2018-11-07 09:10:20','2018-11-07 14:10:20','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.republicdoor.com/\">Republic</a>\r\n<a href=\"http://www.cecodoor.com/\">Ceco</a>\r\n<a href=\"https://www.curries.com/en/site/curries/\">Curries</a>\r\n<a href=\"https://us.allegion.com/en/home/products/brands/steelcraft.html\">Steelcraft</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.activarcpg.com/air-louvers\">Air Louvers</a>\r\n<a href=\"http://www.allmetalstamping.com/\">All Metal Stamping</a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:10:20','2018-11-07 14:10:20','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(731,1,'2018-11-07 09:10:05','2018-11-07 14:10:05','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n\r\n<figure>\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1-224x300.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>UT Athletic Building</figcaption>\r\n</figure>\r\n\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n\r\n<a href=\"http://www.daybar.com\">Daybar</a>\r\n<a href=\"http://www.republicdoor.com/\">Republic</a>\r\n<a href=\"http://www.cecodoor.com/\">Ceco</a>\r\n<a href=\"https://www.curries.com/en/site/curries/\">Curries</a>\r\n<a href=\"https://us.allegion.com/en/home/products/brands/steelcraft.html\">Steelcraft</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n\r\n<a href=\"http://www.activarcpg.com/air-louvers\">Air Louvers</a>\r\n<a href=\"http://www.allmetalstamping.com/\">All Metal Stamping</a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:10:05','2018-11-07 14:10:05','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(734,1,'2018-11-07 09:11:08','2018-11-07 14:11:08','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:11:08','2018-11-07 14:11:08','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(735,1,'2018-11-07 09:11:17','2018-11-07 14:11:17','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:11:17','2018-11-07 14:11:17','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(736,1,'2018-11-07 09:11:54','2018-11-07 14:11:54','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n<figure>\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1-224x300.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>UT Athletic Building</figcaption>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1-224x300.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>UT Athletic Building</figcaption>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1-224x300.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>UT Athletic Building</figcaption>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:11:54','2018-11-07 14:11:54','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(737,1,'2018-11-07 09:12:53','2018-11-07 14:12:53','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n<figure>\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>UT Athletic Building</figcaption>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1-224x300.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>UT Athletic Building</figcaption>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1-224x300.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>UT Athletic Building</figcaption>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:12:53','2018-11-07 14:12:53','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(738,1,'2018-11-07 09:13:43','2018-11-07 14:13:43','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>Wood Doors</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1-224x300.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>UT Athletic Building</figcaption>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Athletic-Bldg-Tampa1-224x300.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>UT Athletic Building</figcaption>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:13:43','2018-11-07 14:13:43','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(739,1,'2018-11-07 09:14:28','2018-11-07 14:14:28','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>Wood Doors</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>Wood Doors</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"Trulli\" style=\"width:20%\">\r\n <figcaption>Wood Doors</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:14:28','2018-11-07 14:14:28','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(741,1,'2018-11-07 09:16:26','2018-11-07 14:16:26','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:50%\">\r\n <figcaption>Wood Doors</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <figcaption>Hollow Metal</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:50%\">\r\n <figcaption>Wood Doors</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:16:26','2018-11-07 14:16:26','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(742,1,'2018-11-07 09:16:40','2018-11-07 14:16:40','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:50%\">\r\n <figcaption>Wood Doors</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <figcaption>Hollow Metal</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <figcaption>Wood Doors</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:16:40','2018-11-07 14:16:40','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(743,1,'2018-11-07 09:17:18','2018-11-07 14:17:18','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:50%\">\r\n <figcaption><font size=\"4\"Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <figcaption>Hollow Metal</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <figcaption>Wood Doors</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:17:18','2018-11-07 14:17:18','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(744,1,'2018-11-07 09:17:32','2018-11-07 14:17:32','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:50%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <figcaption>Hollow Metal</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <figcaption>Wood Doors</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:17:32','2018-11-07 14:17:32','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(745,1,'2018-11-07 09:17:50','2018-11-07 14:17:50','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:60%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <figcaption>Hollow Metal</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <figcaption>Wood Doors</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:17:50','2018-11-07 14:17:50','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(746,1,'2018-11-07 09:17:58','2018-11-07 14:17:58','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <figcaption>Hollow Metal</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <figcaption>Wood Doors</figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:17:58','2018-11-07 14:17:58','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(748,1,'2018-11-07 09:19:00','2018-11-07 14:19:00','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <figcaption><font size=\"4\">Hollow Metal</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <figcaption><font size=\"4\">Hardware</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:19:00','2018-11-07 14:19:00','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(747,1,'2018-11-07 09:18:34','2018-11-07 14:18:34','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\"> Hollow Metal Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <figcaption><font size=\"4\">Hollow Metal</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Louver & Light Kit Manufacturers</span>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <figcaption><font size=\"4\">Hardware</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 09:18:34','2018-11-07 14:18:34','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(750,1,'2018-11-07 09:32:21','2018-11-07 14:32:21','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n<a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n<a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n<a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-07 09:32:21','2018-11-07 14:32:21','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(751,1,'2018-11-07 09:33:05','2018-11-07 14:33:05','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n<a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n<a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n<a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n</div>\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n<a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n<a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n<a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-07 09:33:05','2018-11-07 14:33:05','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(752,1,'2018-11-07 09:33:43','2018-11-07 14:33:43','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n<a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n<a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n<a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n</div>\r\n</div>\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n<a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n<a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n<a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-07 09:33:43','2018-11-07 14:33:43','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(753,1,'2018-11-07 09:37:15','2018-11-07 14:37:15','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n </div>\r\n </div>\r\n <div style=\"width: 70%; display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n<a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n<a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n<a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-07 09:37:15','2018-11-07 14:37:15','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(754,1,'2018-11-07 09:37:48','2018-11-07 14:37:48','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n </div>\r\n </div>\r\n<center>\r\n <div style=\"width: 70%; display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n<span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n<a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n<a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n<a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n </div>\r\n</center>\r\n</div>\r\n</div>\r\n</center>\r\n','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-07 09:37:48','2018-11-07 14:37:48','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(755,1,'2018-11-07 09:39:05','2018-11-07 14:39:05','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n </div>\r\n </div>\r\n <div style=\"width: 70%; display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\"><strong>Resources</strong></span>\r\n\r\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-07 09:39:05','2018-11-07 14:39:05','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(757,1,'2018-11-07 09:40:49','2018-11-07 14:40:49','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Resources</span>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</center>\r\n','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-07 09:40:49','2018-11-07 14:40:49','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(756,1,'2018-11-07 09:40:22','2018-11-07 14:40:22','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n </div>\r\n </div>\r\n <div style=\"width: 70%; display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\"><strong>Resources</strong></span>\r\n\r\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Resources</span>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</center>\r\n','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-07 09:40:22','2018-11-07 14:40:22','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(758,1,'2018-11-07 09:41:02','2018-11-07 14:41:02','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Resources</span>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</center>\r\n','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-07 09:41:02','2018-11-07 14:41:02','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(764,1,'2018-11-07 09:56:05','2018-11-07 14:56:05','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Resources</span>\r\n\r\n<a href=\" https://dhoistage.concertium.com/wood-grain-cuts/\">Understanding wood grains and cuts</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Common wood door defects</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</center>\r\n','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-07 09:56:05','2018-11-07 14:56:05','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(759,1,'2018-11-07 09:41:25','2018-11-07 14:41:25','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Resources</span>\r\n\r\n<a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</center>\r\n','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-07 09:41:25','2018-11-07 14:41:25','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(760,1,'2018-11-07 09:43:08','2018-11-07 14:43:08','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Resources</span>\r\n\r\n<a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Understanding wood grains and cuts</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Common wood door defects</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</center>\r\n','Wood Doors','','inherit','open','open','','605-revision-v1','','','2018-11-07 09:43:08','2018-11-07 14:43:08','',605,'https://dhoistage.concertium.com/605-revision-v1/',0,'revision','',0),(761,1,'2018-11-07 09:48:26','2018-11-07 14:48:26','Understanding wood grains and cuts!\r\n','Understanding wood grain and cuts','','publish','open','open','','wood-grain-cuts','','','2018-11-08 08:18:41','2018-11-08 13:18:41','',0,'https://dhoistage.concertium.com/?p=761',0,'post','',0),(762,1,'2018-11-07 09:48:26','2018-11-07 14:48:26','Understanding wood grains and cuts!\r\n','Understanding wood grain and cuts','','inherit','open','open','','761-revision-v1','','','2018-11-07 09:48:26','2018-11-07 14:48:26','',761,'https://dhoistage.concertium.com/761-revision-v1/',0,'revision','',0),(763,1,'2018-11-07 09:53:22','2018-11-07 14:53:22','','barber-poll','','inherit','open','open','','barber-poll','','','2018-11-07 09:53:22','2018-11-07 14:53:22','',761,'https://dhoistage.concertium.com/wp-content/uploads/2018/11/barber-poll.jpg',0,'attachment','image/jpeg',0),(766,1,'2018-11-07 15:23:41','2018-11-07 20:23:41','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <figcaption><font size=\"4\">Hollow Metal</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <figcaption><font size=\"4\">Hardware</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:23:41','2018-11-07 20:23:41','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(767,1,'2018-11-07 15:23:55','2018-11-07 20:23:55','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <figcaption><font size=\"4\">Hollow Metal</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 300px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <figcaption><font size=\"4\">Hardware</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:23:55','2018-11-07 20:23:55','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(768,1,'2018-11-07 15:24:18','2018-11-07 20:24:18','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <figcaption><font size=\"4\">Hollow Metal</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:80%\">\r\n <figcaption><font size=\"4\">Hardware</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:24:18','2018-11-07 20:24:18','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(769,1,'2018-11-07 15:24:42','2018-11-07 20:24:42','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <figcaption><font size=\"4\">Hollow Metal</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <figcaption><font size=\"4\">Hardware</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:24:42','2018-11-07 20:24:42','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(770,1,'2018-11-07 15:24:53','2018-11-07 20:24:53','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 80%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <figcaption><font size=\"4\">Hollow Metal</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <figcaption><font size=\"4\">Hardware</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:24:53','2018-11-07 20:24:53','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(771,1,'2018-11-07 15:36:20','2018-11-07 20:36:20','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <figcaption><font size=\"4\">Hollow Metal</font></figcaption>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:36:20','2018-11-07 20:36:20','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(772,1,'2018-11-07 15:37:08','2018-11-07 20:37:08','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <center><figcaption><font size=\"4\">Wood Doors</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:37:08','2018-11-07 20:37:08','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(773,1,'2018-11-07 15:37:37','2018-11-07 20:37:37','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:37:37','2018-11-07 20:37:37','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(774,1,'2018-11-07 15:38:05','2018-11-07 20:38:05','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:38:05','2018-11-07 20:38:05','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(775,1,'2018-11-07 15:38:16','2018-11-07 20:38:16','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:100%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:38:16','2018-11-07 20:38:16','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(776,1,'2018-11-07 15:38:33','2018-11-07 20:38:33','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:80%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:38:33','2018-11-07 20:38:33','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(777,1,'2018-11-07 15:38:45','2018-11-07 20:38:45','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:90%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:38:45','2018-11-07 20:38:45','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(778,1,'2018-11-07 15:39:01','2018-11-07 20:39:01','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:95%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:39:01','2018-11-07 20:39:01','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(779,1,'2018-11-07 15:39:09','2018-11-07 20:39:09','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:39:09','2018-11-07 20:39:09','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(780,1,'2018-11-07 15:48:15','2018-11-07 20:48:15','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 300px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:48:15','2018-11-07 20:48:15','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(781,1,'2018-11-07 15:48:33','2018-11-07 20:48:33','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-07 15:48:33','2018-11-07 20:48:33','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(782,1,'2018-11-07 15:52:51','2018-11-07 20:52:51','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/project/old-tampa-city-hall/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n US Border and Customs Patrol Intake Facility – Tampa, FL\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/project/usf-student-union/\">USF Student Union</a>\r\n <a href=\"https://dhoistage.concertium.com/project/university-of-tampa-expansions/\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/project/u-tampa-bob-martinez-athletic-center/\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/project/usf-marshall/\">USF Marshall Center</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/project/sawgrass-marriott-resort-spa-ponte-vedra/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n</div>\r\n</center>','Projects','','publish','open','open','','projects','','','2021-04-20 01:07:42','2021-04-20 05:07:42','',0,'https://dhoistage.concertium.com/?page_id=782',0,'page','',0),(1112,1,'2021-04-12 01:28:15','2021-04-12 05:28:15','','Projects','','inherit','closed','closed','','782-revision-v1','','','2021-04-12 01:28:15','2021-04-12 05:28:15','',782,'https://dhoistage.concertium.com/?p=1112',0,'revision','',0),(1132,1,'2021-04-13 03:09:48','2021-04-13 07:09:48','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/usf-student-union\">USF Student Union</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n</div>\r\n</center>','Projects','','inherit','closed','closed','','782-revision-v1','','','2021-04-13 03:09:48','2021-04-13 07:09:48','',782,'https://dhoistage.concertium.com/?p=1132',0,'revision','',0),(783,1,'2018-11-07 15:52:48','2018-11-07 20:52:48','','Projects2','','inherit','open','open','','782-revision-v1','','','2018-11-07 15:52:48','2018-11-07 20:52:48','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(784,1,'2018-11-07 15:53:03','2018-11-07 20:53:03','These are the projects we did\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2018-11-07 15:53:03','2018-11-07 20:53:03','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(785,1,'2018-11-07 15:58:56','2018-11-07 20:58:56','','StrazHall_lrg','','inherit','open','open','','strazhall_lrg','','','2018-11-07 15:58:56','2018-11-07 20:58:56','',782,'https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg',0,'attachment','image/jpeg',0),(786,1,'2021-04-14 06:02:06','2021-04-14 10:02:06','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\n\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\n\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\n\n \n<center>\n\n<div style=\"width: 90%; display: table;\">\n <div style=\"display: table-row;\">\n <div style=\"width: 350px; display: table-cell;\">\n <font size=\"5\">Government</font>\n\n <a href=\"https://dhoistage.concertium.com/project/old-tampa-city-hall/\">Old Tampa City Hall</a>\n FDOT Weigh Station - Seffner, FL\n\n </div>\n\n <div style=\"width: 350px; display: table-cell;\">\n <font size=\"5\">Medical</font>\n\n Moffitt Cancer Center\n Florida Hospital\n Tampa General Hospital renovations\n </div>\n\n <div style=\"width: 350px; display: table-cell;\">\n <font size=\"5\">Education</font>\n\n <a href=\"https://dhoistage.concertium.com/project/usf-student-union/\">USF Student Union</a>\n <a href=\"https://dhoistage.concertium.com/project/university-of-tampa-expansions/\">U. Tampa Residence Halls</a>\n <a href=\"https://dhoistage.concertium.com/project/u-tampa-bob-martinez-athletic-center/\">U. Tampa Bob Martinez Athletics center</a>\n <a href=\"https://dhoistage.concertium.com/project/usf-marshall/\">USF Marshall Center</a>\n </div>\n\n <div style=\"width: 350px; display: table-cell;\">\n <font size=\"5\">Hospitality</font>\n\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\n The Florida Aquarium\n </div>\n\n </div>\n <!-- new row -->\n</div>\n</center>','Projects','','inherit','open','open','','782-autosave-v1','','','2021-04-14 06:02:06','2021-04-14 10:02:06','',782,'https://dhoistage.concertium.com/782-autosave-v1/',0,'revision','',0),(1156,1,'2021-04-14 05:56:08','2021-04-14 09:56:08','<p>Tampa, Flordia<br>\r\n 233,000 SF<br>\r\n Beck – Construction<br>\r\n Gould Evans – Architect<span id=\"more-862\"></span></p>\r\n<p>The University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.</p>','USF Student Union','','publish','closed','closed','','usf-student-union','','','2021-04-14 05:56:08','2021-04-14 09:56:08','',0,'https://dhoistage.concertium.com/?post_type=project&p=1156',0,'project','',0),(1131,1,'2021-04-13 03:07:08','2021-04-13 07:07:08','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/usf-student-union\">USF Student Union</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner High school\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n \r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Specialty facilities</font>\r\n\r\n The Florida Aquarium\r\n Unilens Bausch + Lomb\r\n </div>\r\n </div>\r\n</div>\r\n</center>','Projects','','inherit','closed','closed','','782-revision-v1','','','2021-04-13 03:07:08','2021-04-13 07:07:08','',782,'https://dhoistage.concertium.com/?p=1131',0,'revision','',0),(1127,1,'2021-04-13 03:05:23','2021-04-13 07:05:23','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <!-- <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a> -->\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/usf-student-union\">USF Student Union</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner High school\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n \r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Specialty facilities</font>\r\n\r\n The Florida Aquarium\r\n Unilens Bausch + Lomb\r\n </div>\r\n </div>\r\n</div>\r\n</center>','Projects','','inherit','closed','closed','','782-revision-v1','','','2021-04-13 03:05:23','2021-04-13 07:05:23','',782,'https://dhoistage.concertium.com/?p=1127',0,'revision','',0),(787,1,'2018-11-07 16:02:58','2018-11-07 21:02:58','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2018-11-07 16:02:58','2018-11-07 21:02:58','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(788,1,'2021-04-20 01:01:30','2018-11-07 21:03:25',' ','','','publish','open','closed','','788','','','2021-04-20 01:01:30','2021-04-20 05:01:30','',0,'https://dhoistage.concertium.com/?p=788',3,'nav_menu_item','',0),(789,1,'2018-11-07 16:04:57','2018-11-07 21:04:57','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2018-11-07 16:04:57','2018-11-07 21:04:57','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(790,1,'2018-11-07 16:06:28','2018-11-07 21:06:28','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/pro_pic1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/pro_pic1-300x120.jpg\" alt=\"pro_pic1\" width=\"300\" height=\"120\" class=\"alignnone size-medium wp-image-245\" /></a>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2018-11-07 16:06:28','2018-11-07 21:06:28','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(791,1,'2018-11-07 16:07:37','2018-11-07 21:07:37','','UT_TampaBay_Banner','','inherit','open','open','','ut_tampabay_banner','','','2018-11-07 16:07:37','2018-11-07 21:07:37','',782,'https://dhoistage.concertium.com/wp-content/uploads/2018/11/UT_TampaBay_Banner.jpg',0,'attachment','image/jpeg',0),(852,1,'2019-01-09 08:07:06','2019-01-09 13:07:06','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/?p=851\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Laser Spine Institute</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 08:07:06','2019-01-09 13:07:06','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(850,1,'2019-01-09 08:03:46','2019-01-09 13:03:46','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Laser Spine Institute</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 08:03:46','2019-01-09 13:03:46','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(793,1,'2018-11-07 16:08:41','2018-11-07 21:08:41','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2018-11-07 16:08:41','2018-11-07 21:08:41','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(792,1,'2018-11-07 16:08:32','2018-11-07 21:08:32','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"StrazHall_lrg\" width=\"300\" height=\"199\" class=\"alignnone size-medium wp-image-785\" /></a>\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2018-11-07 16:08:32','2018-11-07 21:08:32','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(794,1,'2018-11-08 07:32:44','2018-11-08 12:32:44','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','Our Services','','publish','open','open','','services','','','2019-01-13 08:27:26','2019-01-13 13:27:26','',0,'https://dhoistage.concertium.com/?page_id=794',0,'page','',0),(795,1,'2018-11-08 07:32:44','2018-11-08 12:32:44','Our services are \r\n','Services2','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:32:44','2018-11-08 12:32:44','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(796,1,'2018-11-08 07:33:21','2018-11-08 12:33:21','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!','Services2','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:33:21','2018-11-08 12:33:21','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(797,1,'2018-11-08 07:53:40','2018-11-08 12:53:40','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\n\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\n\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\n\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\n\nThe door is open, so come in and let us provide a solution for your custom project today!\n\n<center>\n<span style=\"font-size: large;\">Metal Shop</span>\n<div style=\"width: 70%; display: table;\">\n <div style=\"display: table-row;\">\n <div style=\"width: 400px; display: table-cell;\">\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\n </div>\n <div style=\"width: 400px; display: table-cell;\">\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\n </div>\n <div style=\"width: 400px; display: table-cell;\">\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\n </div>\n </div>\n</div>\n\n \n\n<span style=\"font-size: large;\">Wood Shop</span>\n<div style=\"width: 70%; display: table;\">\n <div style=\"display: table-row;\">\n <div style=\"width: 400px; display: table-cell;\">\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-1-150x150.jpg\" alt=\"wood shop 1\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-392\" /></a>\n </div>\n <div style=\"width: 400px; display: table-cell;\">\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-1-150x150.jpg\" alt=\"wood shop 1\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-392\" /></a>\n </div>\n </div>\n</div>\n\n</center>\n\n\n[gallery ids=\"399,402,401\"] [gallery ids=\"397,392,391\"]','Services2','','inherit','open','open','','794-autosave-v1','','','2018-11-08 07:53:40','2018-11-08 12:53:40','',794,'https://dhoistage.concertium.com/794-autosave-v1/',0,'revision','',0),(798,1,'2018-11-08 07:36:55','2018-11-08 12:36:55','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n[gallery ids=\"399,402,401\"] [gallery ids=\"397,392,391\"]','Services2','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:36:55','2018-11-08 12:36:55','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(799,1,'2018-11-08 07:48:50','2018-11-08 12:48:50','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-300x233.jpg\" alt=\"metal shop 2\" width=\"300\" height=\"233\" class=\"alignnone size-medium wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-300x233.jpg\" alt=\"metal shop 2\" width=\"300\" height=\"233\" class=\"alignnone size-medium wp-image-399\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Resources</span>\r\n\r\n<a href=\" https://dhoistage.concertium.com/wood-grain-cuts/\">Understanding wood grains and cuts</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Common wood door defects</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</center>\r\n\r\n\r\n[gallery ids=\"399,402,401\"] [gallery ids=\"397,392,391\"]','Services2','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:48:50','2018-11-08 12:48:50','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(800,1,'2018-11-08 07:49:57','2018-11-08 12:49:57','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Resources</span>\r\n\r\n<a href=\" https://dhoistage.concertium.com/wood-grain-cuts/\">Understanding wood grains and cuts</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Common wood door defects</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</center>\r\n\r\n\r\n[gallery ids=\"399,402,401\"] [gallery ids=\"397,392,391\"]','Services2','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:49:57','2018-11-08 12:49:57','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(801,1,'2018-11-08 07:50:46','2018-11-08 12:50:46','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Resources</span>\r\n\r\n<a href=\" https://dhoistage.concertium.com/wood-grain-cuts/\">Understanding wood grains and cuts</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Common wood door defects</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</center>\r\n\r\n\r\n[gallery ids=\"399,402,401\"] [gallery ids=\"397,392,391\"]','Services2','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:50:46','2018-11-08 12:50:46','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(802,1,'2018-11-08 07:51:40','2018-11-08 12:51:40','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Wood Shop</span>\r\n\r\n<a href=\" https://dhoistage.concertium.com/wood-grain-cuts/\">Understanding wood grains and cuts</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Common wood door defects</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</center>\r\n\r\n\r\n[gallery ids=\"399,402,401\"] [gallery ids=\"397,392,391\"]','Services2','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:51:40','2018-11-08 12:51:40','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(803,1,'2018-11-08 07:51:56','2018-11-08 12:51:56','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Wood Shop</span>\r\n\r\n<a href=\" https://dhoistage.concertium.com/wood-grain-cuts/\">Understanding wood grains and cuts</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Common wood door defects</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</center>\r\n\r\n\r\n[gallery ids=\"399,402,401\"] [gallery ids=\"397,392,391\"]','Services2','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:51:56','2018-11-08 12:51:56','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(804,1,'2018-11-08 07:52:16','2018-11-08 12:52:16','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Wood Shop</span>\r\n\r\n<a href=\" https://dhoistage.concertium.com/wood-grain-cuts/\">Understanding wood grains and cuts</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Common wood door defects</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</center>\r\n\r\n\r\n[gallery ids=\"399,402,401\"] [gallery ids=\"397,392,391\"]','Services2','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:52:16','2018-11-08 12:52:16','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(805,1,'2018-11-08 07:52:39','2018-11-08 12:52:39','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n<a href=\" https://dhoistage.concertium.com/wood-grain-cuts/\">Understanding wood grains and cuts</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Common wood door defects</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</center>\r\n\r\n\r\n[gallery ids=\"399,402,401\"] [gallery ids=\"397,392,391\"]','Services2','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:52:39','2018-11-08 12:52:39','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(807,1,'2018-11-08 07:54:30','2018-11-08 12:54:30','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-1-150x150.jpg\" alt=\"wood shop 1\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-392\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','Services2','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:54:30','2018-11-08 12:54:30','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(806,1,'2018-11-08 07:54:19','2018-11-08 12:54:19','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-1-150x150.jpg\" alt=\"wood shop 1\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-392\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n\r\n\r\n[gallery ids=\"399,402,401\"] [gallery ids=\"397,392,391\"]','Services2','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:54:19','2018-11-08 12:54:19','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(808,1,'2018-11-08 07:54:52','2018-11-08 12:54:52','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-1-150x150.jpg\" alt=\"wood shop 1\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-392\" /></a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','Services2','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:54:52','2018-11-08 12:54:52','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(809,1,'2018-11-08 07:55:21','2018-11-08 12:55:21','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-1-150x150.jpg\" alt=\"wood shop 1\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-392\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','Services2','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:55:21','2018-11-08 12:55:21','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(810,1,'2018-11-08 07:56:14','2018-11-08 12:56:14','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','Services2','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:56:14','2018-11-08 12:56:14','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(811,1,'2018-11-08 07:56:37','2018-11-08 12:56:37','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','Our Services','','inherit','open','open','','794-revision-v1','','','2018-11-08 07:56:37','2018-11-08 12:56:37','',794,'https://dhoistage.concertium.com/794-revision-v1/',0,'revision','',0),(812,1,'2021-04-20 01:01:30','2018-11-08 12:57:49',' ','','','publish','open','closed','','812','','','2021-04-20 01:01:30','2021-04-20 05:01:30','',0,'https://dhoistage.concertium.com/?p=812',5,'nav_menu_item','',0),(813,1,'2018-11-08 08:18:43','2018-11-08 13:18:43','Understanding wood grains and cuts!\r\n','Understanding wood grain and cuts','','inherit','open','open','','761-autosave-v1','','','2018-11-08 08:18:43','2018-11-08 13:18:43','',761,'https://dhoistage.concertium.com/761-autosave-v1/',0,'revision','',0),(814,1,'2018-11-08 13:35:37','2018-11-08 18:35:37','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Resources</span>\r\n\r\n<a href=\" https://dhoistage.concertium.com/wood-grain-cuts/\">Understanding wood grains and cuts</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Common wood door defects</a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-08 13:35:37','2018-11-08 18:35:37','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(824,1,'2018-11-08 13:45:21','2018-11-08 18:45:21','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Resources</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\">Understanding core cylinders</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Common wood door defects</a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-08 13:45:21','2018-11-08 18:45:21','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(815,1,'2018-11-08 13:36:11','2018-11-08 18:36:11','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Resources</span>\r\n <a href=\" https://dhoistage.concertium.com/wood-grain-cuts/\">Understanding wood grains and cuts</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Common wood door defects</a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-08 13:36:11','2018-11-08 18:36:11','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(816,1,'2018-11-08 13:36:40','2018-11-08 18:36:40','','Keying basics','','publish','open','open','','keying','','','2018-11-08 13:36:47','2018-11-08 18:36:47','',0,'https://dhoistage.concertium.com/?page_id=816',0,'page','',0),(817,1,'2018-11-08 13:36:40','2018-11-08 18:36:40','','Keying','','inherit','open','open','','816-revision-v1','','','2018-11-08 13:36:40','2018-11-08 18:36:40','',816,'https://dhoistage.concertium.com/816-revision-v1/',0,'revision','',0),(818,1,'2018-11-08 13:36:45','2018-11-08 18:36:45','','Keying basics','','inherit','open','open','','816-revision-v1','','','2018-11-08 13:36:45','2018-11-08 18:36:45','',816,'https://dhoistage.concertium.com/816-revision-v1/',0,'revision','',0),(819,1,'2018-11-08 13:39:03','2018-11-08 18:39:03','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\r\n\r\n<span style=\"font-size: large;\"><strong>Standard core:</strong></span> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder and are commonly referred to as key-in-lever or key-in-knob.\r\n\r\n<b> ♦ </b> Most common type of cylinder\r\n<span style=\"font-weight: bold;\"> ♦ </span> Typically found in light commercial applications with a low number of users\r\n<span style=\"font-weight: bold;\"> ♦ </span> Manufacturer-specific to the lock and cannot be interchanged with other manufacturers\r\n\r\n<span style=\"font-size: large;\"><strong>Interchangeable core:</strong></span> These cores provide maximum flexibility for the end user while maintaining a high level of security and functionality. These cylinders provide the ability for a lock to be re-keyed or with out the need of a locksmith and without the hassle of removing the entire lockset.\r\n\r\n<span style=\"font-weight: bold;\"> ♦ </span> Typically found in large commercial applications where large turnover or high security is required\r\n<span style=\"font-weight: bold;\"> ♦ </span> Not manufacturer-specific to lock type\r\n<span style=\"font-weight: bold;\"> ♦ </span> Very convenient for use in exit devices given the ease of re-keying','Standard vs. removable core cylinders','','publish','open','open','','cylinders_post','','','2018-11-08 14:12:54','2018-11-08 19:12:54','',0,'https://dhoistage.concertium.com/?p=819',0,'post','',0),(820,1,'2018-11-08 13:39:03','2018-11-08 18:39:03','','Standard vs. removable core cylinders','','inherit','open','open','','819-revision-v1','','','2018-11-08 13:39:03','2018-11-08 18:39:03','',819,'https://dhoistage.concertium.com/819-revision-v1/',0,'revision','',0),(821,1,'2018-11-08 14:12:04','2018-11-08 19:12:04','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\n\n<span style=\"font-size: large;\"><strong>Standard core:</strong></span> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder and are commonly referred to as key-in-lever or key-in-knob.\n\n<b> ♦ </b> Most common type of cylinder\n<span style=\"font-weight: bold;\"> ♦ </span> Typically found in light commercial applications with a low number of users\n<span style=\"font-weight: bold;\"> ♦ </span> Manufacturer-specific to the lock and cannot be interchanged with other manufacturers\n\n<span style=\"font-size: large;\"><strong>Interchangeable core:</strong></span> These cores provide maximum flexibility for the end user while maintaining a high level of security and functionality. These cylinders provide the ability for a lock to be re-keyed or with out the need of a locksmith and without the hassle of removing the entire lockset.\n\n<span style=\"font-weight: bold;\"> ♦ </span> Typically found in large commercial applications where large turnover or high security is required\n<span style=\"font-weight: bold;\"> ♦ </span> Not manufacturer-specific to lock type\n<span style=\"font-weight: bold;\"> ♦ </span> Re-keying is facilitated by using a special control key ','Standard vs. removable core cylinders','','inherit','open','open','','819-autosave-v1','','','2018-11-08 14:12:04','2018-11-08 19:12:04','',819,'https://dhoistage.concertium.com/819-autosave-v1/',0,'revision','',0),(822,1,'2018-11-08 13:44:25','2018-11-08 18:44:25','','standard_ic_cores','','inherit','open','open','','standard_ic_cores','','','2018-11-08 13:44:25','2018-11-08 18:44:25','',819,'https://dhoistage.concertium.com/wp-content/uploads/2018/11/standard_ic_cores.jpg',0,'attachment','image/jpeg',0),(823,1,'2018-11-08 13:44:32','2018-11-08 18:44:32','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\r\n\r\n<font size=\"4\"><strong>Standard core:</strong></font> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder \r\n','Standard vs. removable core cylinders','','inherit','open','open','','819-revision-v1','','','2018-11-08 13:44:32','2018-11-08 18:44:32','',819,'https://dhoistage.concertium.com/819-revision-v1/',0,'revision','',0),(825,1,'2018-11-08 13:51:16','2018-11-08 18:51:16','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\r\n\r\n<font size=\"4\"><strong>Standard core:</strong></font> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder and are commonly referred to as key-in-lever or key-in-knob cylinders. \r\n<ul> Most common type of cylinder used due to their lower cost\r\n and are typically found in light commercial applications with a low number of users.\r\n</ul>\r\n<font size=\"4\"><strong>Interchangeable core:</strong></font>','Standard vs. removable core cylinders','','inherit','open','open','','819-revision-v1','','','2018-11-08 13:51:16','2018-11-08 18:51:16','',819,'https://dhoistage.concertium.com/819-revision-v1/',0,'revision','',0),(826,1,'2018-11-08 13:52:59','2018-11-08 18:52:59','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\r\n\r\n<font size=\"4\"><strong>Standard core:</strong></font> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder and are commonly referred to as key-in-lever or key-in-knob cylinders. \r\n\r\n<ul>\r\n <li>Most common type of cylinder used due to their lower cost</li>\r\n <li>Typically found in light commercial applications with a low number of users.</li>\r\n <li>Manufacturer-specific to the lock and cannot be interchanged with other manufacturers</li>\r\n</ul>\r\n\r\n<font size=\"4\"><strong>Interchangeable core:</strong></font>','Standard vs. removable core cylinders','','inherit','open','open','','819-revision-v1','','','2018-11-08 13:52:59','2018-11-08 18:52:59','',819,'https://dhoistage.concertium.com/819-revision-v1/',0,'revision','',0),(827,1,'2018-11-08 13:54:08','2018-11-08 18:54:08','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\r\n\r\n<span style=\"font-size: large;\"><strong>Standard core:</strong></span> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder and are commonly referred to as key-in-lever or key-in-knob cylinders.\r\n<ul>\r\n <li>Most common type of cylinder used due to their lower cost</li>\r\n <li>Typically found in light commercial applications with a low number of users.</li>\r\n <li>Manufacturer-specific to the lock and cannot be interchanged with other manufacturers</li>\r\n</ul>\r\n<span style=\"font-size: large;\"><strong>Interchangeable core:</strong></span>','Standard vs. removable core cylinders','','inherit','open','open','','819-revision-v1','','','2018-11-08 13:54:08','2018-11-08 18:54:08','',819,'https://dhoistage.concertium.com/819-revision-v1/',0,'revision','',0),(828,1,'2018-11-08 13:54:45','2018-11-08 18:54:45','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\r\n\r\n<span style=\"font-size: large;\"><strong>Standard core:</strong></span> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder and are commonly referred to as key-in-lever or key-in-knob cylinders.\r\n<ol>\r\n <li>dsds</li>\r\n <li>dsds</li>\r\n</ol>\r\n<ul>\r\n <li>Most common type of cylinder used due to their lower cost</li>\r\n <li>Typically found in light commercial applications with a low number of users.</li>\r\n <li>Manufacturer-specific to the lock and cannot be interchanged with other manufacturers</li>\r\n</ul>\r\n<span style=\"font-size: large;\"><strong>Interchangeable core:</strong></span>','Standard vs. removable core cylinders','','inherit','open','open','','819-revision-v1','','','2018-11-08 13:54:45','2018-11-08 18:54:45','',819,'https://dhoistage.concertium.com/819-revision-v1/',0,'revision','',0),(830,1,'2018-11-08 13:58:26','2018-11-08 18:58:26','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\r\n\r\n<span style=\"font-size: large;\"><strong>Standard core:</strong></span> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder and are commonly referred to as key-in-lever or key-in-knob.\r\n\r\nMost common type of cylinder\r\n\r\nTypically found in light commercial applications with a low number of users\r\n\r\nManufacturer-specific to the lock and cannot be interchanged with other manufacturers\r\n\r\n<span style=\"font-size: large;\"><strong>Interchangeable core:</strong></span>','Standard vs. removable core cylinders','','inherit','open','open','','819-revision-v1','','','2018-11-08 13:58:26','2018-11-08 18:58:26','',819,'https://dhoistage.concertium.com/819-revision-v1/',0,'revision','',0),(829,1,'2018-11-08 13:55:36','2018-11-08 18:55:36','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\r\n\r\n<span style=\"font-size: large;\"><strong>Standard core:</strong></span> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder and are commonly referred to as key-in-lever or key-in-knob <!--more-->cylinders.\r\n<ol>\r\n <li>dsds</li>\r\n <li>dsds</li>\r\n</ol>\r\n<ul>\r\n <li>Most common type of cylinder used due to their lower cost</li>\r\n <li>Typically found in light commercial applications with a low number of users.</li>\r\n <li>Manufacturer-specific to the lock and cannot be interchanged with other manufacturers</li>\r\n</ul>\r\n<span style=\"font-size: large;\"><strong>Interchangeable core:</strong></span>','Standard vs. removable core cylinders','','inherit','open','open','','819-revision-v1','','','2018-11-08 13:55:36','2018-11-08 18:55:36','',819,'https://dhoistage.concertium.com/819-revision-v1/',0,'revision','',0),(831,1,'2018-11-08 13:58:45','2018-11-08 18:58:45','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\r\n\r\n<span style=\"font-size: large;\"><strong>Standard core:</strong></span> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder and are commonly referred to as key-in-lever or key-in-knob.\r\n\r\n* Most common type of cylinder\r\n\r\n* Typically found in light commercial applications with a low number of users\r\n\r\n* Manufacturer-specific to the lock and cannot be interchanged with other manufacturers\r\n\r\n<span style=\"font-size: large;\"><strong>Interchangeable core:</strong></span>','Standard vs. removable core cylinders','','inherit','open','open','','819-revision-v1','','','2018-11-08 13:58:45','2018-11-08 18:58:45','',819,'https://dhoistage.concertium.com/819-revision-v1/',0,'revision','',0),(832,1,'2018-11-08 13:59:01','2018-11-08 18:59:01','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\r\n\r\n<span style=\"font-size: large;\"><strong>Standard core:</strong></span> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder and are commonly referred to as key-in-lever or key-in-knob.\r\n<ul>\r\n <li>* Most common type of cylinder</li>\r\n <li>* Typically found in light commercial applications with a low number of users</li>\r\n <li>* Manufacturer-specific to the lock and cannot be interchanged with other manufacturers</li>\r\n</ul>\r\n<span style=\"font-size: large;\"><strong>Interchangeable core:</strong></span>','Standard vs. removable core cylinders','','inherit','open','open','','819-revision-v1','','','2018-11-08 13:59:01','2018-11-08 18:59:01','',819,'https://dhoistage.concertium.com/819-revision-v1/',0,'revision','',0),(833,1,'2018-11-08 13:59:27','2018-11-08 18:59:27','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\r\n\r\n<span style=\"font-size: large;\"><strong>Standard core:</strong></span> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder and are commonly referred to as key-in-lever or key-in-knob.\r\n\r\n<b>*</b> Most common type of cylinder\r\n* Typically found in light commercial applications with a low number of users\r\n* Manufacturer-specific to the lock and cannot be interchanged with other manufacturers\r\n\r\n<span style=\"font-size: large;\"><strong>Interchangeable core:</strong></span>','Standard vs. removable core cylinders','','inherit','open','open','','819-revision-v1','','','2018-11-08 13:59:27','2018-11-08 18:59:27','',819,'https://dhoistage.concertium.com/819-revision-v1/',0,'revision','',0),(834,1,'2018-11-08 13:59:48','2018-11-08 18:59:48','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\r\n\r\n<span style=\"font-size: large;\"><strong>Standard core:</strong></span> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder and are commonly referred to as key-in-lever or key-in-knob.\r\n\r\n<strong>*</strong> Most common type of cylinder\r\n<strong>*</strong> Typically found in light commercial applications with a low number of users\r\n<strong>*</strong> Manufacturer-specific to the lock and cannot be interchanged with other manufacturers\r\n\r\n<span style=\"font-size: large;\"><strong>Interchangeable core:</strong></span>','Standard vs. removable core cylinders','','inherit','open','open','','819-revision-v1','','','2018-11-08 13:59:48','2018-11-08 18:59:48','',819,'https://dhoistage.concertium.com/819-revision-v1/',0,'revision','',0),(835,1,'2018-11-08 14:00:37','2018-11-08 19:00:37','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\r\n\r\n<span style=\"font-size: large;\"><strong>Standard core:</strong></span> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder and are commonly referred to as key-in-lever or key-in-knob.\r\n\r\n \r\n\r\n<b> ♦ </b> Most common type of cylinder\r\n<span style=\"font-weight: bold;\"> ♦ </span> Typically found in light commercial applications with a low number of users\r\n<span style=\"font-weight: bold;\"> ♦ </span> Manufacturer-specific to the lock and cannot be interchanged with other manufacturers\r\n\r\n<span style=\"font-size: large;\"><strong>Interchangeable core:</strong></span>','Standard vs. removable core cylinders','','inherit','open','open','','819-revision-v1','','','2018-11-08 14:00:37','2018-11-08 19:00:37','',819,'https://dhoistage.concertium.com/819-revision-v1/',0,'revision','',0),(836,1,'2018-11-08 14:01:02','2018-11-08 19:01:02','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\r\n\r\n<span style=\"font-size: large;\"><strong>Standard core:</strong></span> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder and are commonly referred to as key-in-lever or key-in-knob.\r\n\r\n<b> ♦ </b> Most common type of cylinder\r\n<span style=\"font-weight: bold;\"> ♦ </span> Typically found in light commercial applications with a low number of users\r\n<span style=\"font-weight: bold;\"> ♦ </span> Manufacturer-specific to the lock and cannot be interchanged with other manufacturers\r\n\r\n<span style=\"font-size: large;\"><strong>Interchangeable core:</strong></span>','Standard vs. removable core cylinders','','inherit','open','open','','819-revision-v1','','','2018-11-08 14:01:02','2018-11-08 19:01:02','',819,'https://dhoistage.concertium.com/819-revision-v1/',0,'revision','',0),(837,1,'2018-11-08 14:12:54','2018-11-08 19:12:54','Regardless of the lock you are using, cylindrical, mortise or panic device, the cylinder comes in two types: removable and standard core cylinders.\r\n\r\n<span style=\"font-size: large;\"><strong>Standard core:</strong></span> These are cores which remain in the housing and cannot be changed without removing the entire lock-set or cylinder and are commonly referred to as key-in-lever or key-in-knob.\r\n\r\n<b> ♦ </b> Most common type of cylinder\r\n<span style=\"font-weight: bold;\"> ♦ </span> Typically found in light commercial applications with a low number of users\r\n<span style=\"font-weight: bold;\"> ♦ </span> Manufacturer-specific to the lock and cannot be interchanged with other manufacturers\r\n\r\n<span style=\"font-size: large;\"><strong>Interchangeable core:</strong></span> These cores provide maximum flexibility for the end user while maintaining a high level of security and functionality. These cylinders provide the ability for a lock to be re-keyed or with out the need of a locksmith and without the hassle of removing the entire lockset.\r\n\r\n<span style=\"font-weight: bold;\"> ♦ </span> Typically found in large commercial applications where large turnover or high security is required\r\n<span style=\"font-weight: bold;\"> ♦ </span> Not manufacturer-specific to lock type\r\n<span style=\"font-weight: bold;\"> ♦ </span> Very convenient for use in exit devices given the ease of re-keying','Standard vs. removable core cylinders','','inherit','open','open','','819-revision-v1','','','2018-11-08 14:12:54','2018-11-08 19:12:54','',819,'https://dhoistage.concertium.com/819-revision-v1/',0,'revision','',0),(838,1,'2018-11-08 14:14:43','2018-11-08 19:14:43','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Resources</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-08 14:14:43','2018-11-08 19:14:43','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(839,1,'2018-11-08 14:15:00','2018-11-08 19:15:00','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Resources</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n \r\n','Products2','','inherit','open','open','','600-revision-v1','','','2018-11-08 14:15:00','2018-11-08 19:15:00','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(853,1,'2019-01-09 08:07:55','2019-01-09 13:07:55','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine-pink.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Laser Spine Institute</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 08:07:55','2019-01-09 13:07:55','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(891,1,'2019-01-09 09:21:09','2019-01-09 14:21:09','David A., Straz Jr. Residence hall at University of Tampa\r\n\r\n\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','UT Residence Hall','','inherit','open','open','','860-revision-v1','','','2019-01-09 09:21:09','2019-01-09 14:21:09','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(861,1,'2019-01-09 08:18:32','2019-01-09 13:18:32','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','UT Residence Hall','','inherit','open','open','','860-revision-v1','','','2019-01-09 08:18:32','2019-01-09 13:18:32','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(862,1,'2019-01-09 08:19:08','2019-01-09 13:19:08','Tampa, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','USF Student Union','','publish','open','open','','usf-student-union','','','2021-04-13 03:06:45','2021-04-13 07:06:45','',0,'https://dhoistage.concertium.com/?page_id=862',0,'page','',0),(1129,1,'2021-04-13 03:06:12','2021-04-13 07:06:12','The University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','USF Student Union','','inherit','closed','closed','','862-revision-v1','','','2021-04-13 03:06:12','2021-04-13 07:06:12','',862,'https://dhoistage.concertium.com/?p=1129',0,'revision','',0),(915,1,'2019-01-09 10:15:20','2019-01-09 15:15:20','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine2-150x150.jpg\" alt=\"laser-spine2\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n Tampa, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','Laser Spine Institute','','inherit','open','open','','862-revision-v1','','','2019-01-09 10:15:20','2019-01-09 15:15:20','',862,'https://dhoistage.concertium.com/862-revision-v1/',0,'revision','',0),(916,1,'2019-01-09 10:15:51','2019-01-09 15:15:51','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine2-300x300.jpg\" alt=\"laser-spine2\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n Tampa, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','Laser Spine Institute','','inherit','open','open','','862-revision-v1','','','2019-01-09 10:15:51','2019-01-09 15:15:51','',862,'https://dhoistage.concertium.com/862-revision-v1/',0,'revision','',0),(863,1,'2019-01-09 08:19:08','2019-01-09 13:19:08','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\r\n\r\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\r\n\r\nWe provide re-railing and re-stiling of your wood doors to custom specifications. We also manufacture Dutch doors with shelves, apply moldings, machine wood jambs, and provide plastic laminate doors. In addition if you need custom finishing of natural wood doors, we are partnered with an expert local finisher who can match or create any stain you require.\r\n\r\nWe produce Hollow Metal window frames, sidelight frames and transom frames to specifications for easy installation. We can match any existing opening.\r\n\r\nThe door is open, so come in and let us provide a solution for your custom project today!\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','Laser Spine Institute','','inherit','open','open','','862-revision-v1','','','2019-01-09 08:19:08','2019-01-09 13:19:08','',862,'https://dhoistage.concertium.com/862-revision-v1/',0,'revision','',0),(864,1,'2019-01-09 08:35:10','2019-01-09 13:35:10','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine-pink.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Laser Spine Institute</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 08:35:10','2019-01-09 13:35:10','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(865,1,'2019-01-09 08:37:03','2019-01-09 13:37:03','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine-pink.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Laser Spine Institute</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine-pink.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Laser Spine Institute</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 08:37:03','2019-01-09 13:37:03','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(866,1,'2019-01-09 08:45:42','2019-01-09 13:45:42','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine-pink.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine-pink.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 08:45:42','2019-01-09 13:45:42','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(867,1,'2019-01-09 08:50:48','2019-01-09 13:50:48','','marshall-center-front','','inherit','open','open','','marshall-center-front','','','2019-01-09 08:50:48','2019-01-09 13:50:48','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg',0,'attachment','image/jpeg',0),(868,1,'2019-01-09 08:50:49','2019-01-09 13:50:49','','marshall-center-hall','','inherit','open','open','','marshall-center-hall','','','2019-01-09 08:50:49','2019-01-09 13:50:49','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-hall.jpg',0,'attachment','image/jpeg',0),(869,1,'2019-01-09 08:51:04','2019-01-09 13:51:04','','sparkman-2','','inherit','open','open','','sparkman-2','','','2019-01-09 08:51:04','2019-01-09 13:51:04','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-2.jpg',0,'attachment','image/jpeg',0),(870,1,'2019-01-09 08:51:05','2019-01-09 13:51:05','','sparkman-3','','inherit','open','open','','sparkman-3','','','2019-01-09 08:51:05','2019-01-09 13:51:05','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-3.png',0,'attachment','image/png',0),(871,1,'2019-01-09 08:51:26','2019-01-09 13:51:26','','strazhall-2','','inherit','open','open','','strazhall-2','','','2019-01-09 08:51:26','2019-01-09 13:51:26','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/strazhall-2.jpg',0,'attachment','image/jpeg',0),(872,1,'2019-01-09 08:51:38','2019-01-09 13:51:38','','straz-hall3','','inherit','open','open','','straz-hall3','','','2019-01-09 08:51:38','2019-01-09 13:51:38','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg',0,'attachment','image/jpeg',0),(873,1,'2019-01-09 08:52:00','2019-01-09 13:52:00','','city-hall-front','','inherit','open','open','','city-hall-front','','','2019-01-09 08:52:00','2019-01-09 13:52:00','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-front.jpg',0,'attachment','image/jpeg',0),(874,1,'2019-01-09 08:52:01','2019-01-09 13:52:01','','city-hall-elevation','','inherit','open','open','','city-hall-elevation','','','2019-01-09 08:52:01','2019-01-09 13:52:01','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation.jpg',0,'attachment','image/jpeg',0),(875,1,'2019-01-09 08:52:13','2019-01-09 13:52:13','','skyline-tampa','','inherit','open','open','','skyline-tampa','','','2019-01-09 08:52:13','2019-01-09 13:52:13','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/skyline-tampa.jpg',0,'attachment','image/jpeg',0),(876,1,'2019-01-09 08:52:34','2019-01-09 13:52:34','','tampa-skyline-2','','inherit','open','open','','tampa-skyline-2','','','2019-01-09 08:52:34','2019-01-09 13:52:34','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/tampa-skyline-2.jpg',0,'attachment','image/jpeg',0),(877,1,'2019-01-09 09:04:19','2019-01-09 14:04:19','','laser-spine1','','inherit','open','open','','laser-spine1','','','2019-01-09 09:04:19','2019-01-09 14:04:19','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine1.jpg',0,'attachment','image/jpeg',0),(878,1,'2019-01-09 09:04:20','2019-01-09 14:04:20','','Laser-Spine-Institute-B','','inherit','open','open','','laser-spine-institute-b','','','2019-01-09 09:04:20','2019-01-09 14:04:20','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B.jpg',0,'attachment','image/jpeg',0),(879,1,'2019-01-09 09:08:39','2019-01-09 14:08:39','','usf-camls-side','','inherit','open','open','','usf-camls-side','','','2019-01-09 09:08:39','2019-01-09 14:08:39','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-side.jpg',0,'attachment','image/jpeg',0),(880,1,'2019-01-09 09:08:40','2019-01-09 14:08:40','','usf-camls-auditorium','','inherit','open','open','','usf-camls-auditorium','','','2019-01-09 09:08:40','2019-01-09 14:08:40','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-auditorium.jpg',0,'attachment','image/jpeg',0),(881,1,'2019-01-09 09:08:42','2019-01-09 14:08:42','','usf-camls-logo','','inherit','open','open','','usf-camls-logo','','','2019-01-09 09:08:42','2019-01-09 14:08:42','',782,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo.jpg',0,'attachment','image/jpeg',0),(882,1,'2019-01-09 09:09:26','2019-01-09 14:09:26','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine1.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 09:09:26','2019-01-09 14:09:26','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(883,1,'2019-01-09 09:14:03','2019-01-09 14:14:03','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-front.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-front-300x300.jpg\" alt=\"city-hall-elevation\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\nWith 100 years of history behind it, Tampa, Florida’s Old City Hall has seen its fair share of changes and played a major role in the advancement of the city.\r\n\r\nWalbridge performed design build services on this 100-year old facility in Tampa, Florida. Old City Hall has seen its fair share of changes and played a major role in the advancement of the City. With the use of modern technology, Walbridge transformed this high-profile building to look like it did a century ago.\r\n\r\nWalbridge worked with project partners FleischmanGarcia Architects and local restoration experts Restocon to renovate the century-old building’s exterior. The work included repairing brickwork, granite and ornate terracotta balustrades and cornices. With an impressive “layer cake” look, the building has an historical feeling. Current technology brings a new era to this grand building.\r\n\r\nThe Walbridge team utilized 3-D scanning, drone video flying, and still photography to capture the building conditions before construction then translated that information into a set of pre-work as-built documents.\r\n\r\nWith pedestrians, employees, and vehicles in mind, Walbridge’s continued commitment to safety on all worksites came into play during planning and construction phase and continued during the construction phase.\r\n\r\nWhen the building was first constructed in 1915, it had a price tag of $235,000. The project’s “layer-cake” design was created by renowned local architect M. Leo Elliott.\r\n\r\nNow completed, the building has been restored to its 1915 glory and is compatible with the history that radiates from the building. Tampa Old City Hall is listed as a National Historic Building on the Register for Historic Places.\r\n','Old City Hall Tampa','','publish','open','open','','old-city-hall-tampa','','','2019-01-09 10:19:36','2019-01-09 15:19:36','',0,'https://dhoistage.concertium.com/?page_id=883',0,'page','',0),(884,1,'2019-01-09 09:14:03','2019-01-09 14:14:03','','Old City Hall Tampa','','inherit','open','open','','883-revision-v1','','','2019-01-09 09:14:03','2019-01-09 14:14:03','',883,'https://dhoistage.concertium.com/883-revision-v1/',0,'revision','',0),(885,1,'2019-01-09 09:14:22','2019-01-09 14:14:22','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-auditorium.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-auditorium-300x300.jpg\" alt=\"usf-camls-auditorium\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n Tampa, FL\r\n 80,000 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe USF Health Center for Advanced Medical Learning and Simulation (CAMLS) is a state-of-the-art medical simulation center and training facility that provides world class health education and professional development in the medical field to the Tampa Bay area. CAMLS revolutionizes how to learn, practice and perfect advanced medical skills of tomorrow. Beck designed and built the three-story 90,000 SF facility, which provides space for every possible form of health professional education under one roof and focuses on designing and testing new medical devices and technologies in the Research and Innovation Lab. The facility includes 60,000 SF for surgical skills labs, operating suites, lecture halls, exhibition halls, auditoriums, robotics lab, virtual hospital/simulation center, research and innovations lab on the first two floors. The remaining 30,000 SF is dedicated to office and general classroom space. The project is certified LEED Silver.','USF CAMLS ','','publish','open','open','','usf-camls','','','2019-01-09 10:21:08','2019-01-09 15:21:08','',0,'https://dhoistage.concertium.com/?page_id=885',0,'page','',0),(886,1,'2019-01-09 09:14:22','2019-01-09 14:14:22','','USF CAMLS ','','inherit','open','open','','885-revision-v1','','','2019-01-09 09:14:22','2019-01-09 14:14:22','',885,'https://dhoistage.concertium.com/885-revision-v1/',0,'revision','',0),(923,1,'2019-01-09 10:27:07','2019-01-09 15:27:07','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-hall/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine2-300x300.jpg\" alt=\"laser-spine2\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine1.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 10:27:07','2019-01-09 15:27:07','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(887,1,'2019-01-09 09:14:34','2019-01-09 14:14:34','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-hall/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine1.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 09:14:34','2019-01-09 14:14:34','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(888,1,'2019-01-09 09:15:17','2019-01-09 14:15:17','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-hall.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-hall-300x300.jpg\" alt=\"marshall-center-hall\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n Tampa, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','USF Marshall Center','','publish','open','open','','usf-marshall-center','','','2019-01-09 10:10:29','2019-01-09 15:10:29','',0,'https://dhoistage.concertium.com/?page_id=888',0,'page','',0),(889,1,'2019-01-09 09:15:17','2019-01-09 14:15:17','','USF Marshall Center','','inherit','open','open','','888-revision-v1','','','2019-01-09 09:15:17','2019-01-09 14:15:17','',888,'https://dhoistage.concertium.com/888-revision-v1/',0,'revision','',0),(984,1,'2019-01-13 08:40:26','2019-01-13 13:40:26','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Laser Spine Institute</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">Moffitt Cancer Center</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Florida Hospital</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 08:40:26','2019-01-13 13:40:26','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(983,1,'2019-01-13 08:38:09','2019-01-13 13:38:09','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n <a href=\"https://dhoistage.concertium.com/project/university-of-tampa-expansions/\" title=\"University of Tampa Expansions\">FDOT</a>\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"/index.php/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">USF Marshall Center</a>\r\n <a href=\"https://www.sargentlock.com/\">George Steinbrenner Highschool</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Laser Spine Institute</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">Moffitt Cancer Center</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Florida Hospital</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 08:38:09','2019-01-13 13:38:09','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(892,1,'2019-01-09 09:22:47','2019-01-09 14:22:47','\r\n\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','David A. Straz Residence Hall at University of Tampa','','inherit','open','open','','860-revision-v1','','','2019-01-09 09:22:47','2019-01-09 14:22:47','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(893,1,'2019-01-09 09:35:36','2019-01-09 14:35:36','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','Residence Halls at Universty of Tampa','','inherit','open','open','','860-revision-v1','','','2019-01-09 09:35:36','2019-01-09 14:35:36','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(894,1,'2019-01-09 09:36:20','2019-01-09 14:36:20','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-2-150x150.jpg\" alt=\"metal shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','Residence Halls at Universty of Tampa','','inherit','open','open','','860-revision-v1','','','2019-01-09 09:36:20','2019-01-09 14:36:20','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(895,1,'2019-01-09 09:38:51','2019-01-09 14:38:51','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Metal Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-5-150x150.jpg\" alt=\"metal shop 5\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Wood Shop</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','University of Tampa Expansion','','inherit','open','open','','860-revision-v1','','','2019-01-09 09:38:51','2019-01-09 14:38:51','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(896,1,'2019-01-09 09:40:24','2019-01-09 14:40:24','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Educational and Sports Facilities</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/metal-shop-4-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Residence Halls</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','University of Tampa Expansion','','inherit','open','open','','860-revision-v1','','','2019-01-09 09:40:24','2019-01-09 14:40:24','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(897,1,'2019-01-09 09:41:17','2019-01-09 14:41:17','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Educational and Sports Facilities</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Sports-Complex-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Sports-Complex-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Residence Halls</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','University of Tampa Expansion','','inherit','open','open','','860-revision-v1','','','2019-01-09 09:41:17','2019-01-09 14:41:17','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(898,1,'2019-01-09 09:47:40','2019-01-09 14:47:40','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Educational and Sports Facilities</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Bob-Martinez-Athletics-Ctr-Tampa-e1541766214741.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Bob-Martinez-Athletics-Ctr-Tampa-e1541766214741-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Residence Halls</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','University of Tampa Expansion','','inherit','open','open','','860-revision-v1','','','2019-01-09 09:47:40','2019-01-09 14:47:40','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(900,1,'2019-01-09 09:51:26','2019-01-09 14:51:26','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Educational and Sports Facilities</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Residence Halls</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-2-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-7-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','University of Tampa Expansion','','inherit','open','open','','860-revision-v1','','','2019-01-09 09:51:26','2019-01-09 14:51:26','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(901,1,'2019-01-09 09:53:43','2019-01-09 14:53:43','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Educational and Sports Facilities</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Residence Halls</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/wood-shop-4-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','University of Tampa Expansion','','inherit','open','open','','860-revision-v1','','','2019-01-09 09:53:43','2019-01-09 14:53:43','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(902,1,'2019-01-09 09:54:28','2019-01-09 14:54:28','','Urso1','','inherit','open','open','','urso1','','','2019-01-09 09:54:28','2019-01-09 14:54:28','',0,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1.jpg',0,'attachment','image/jpeg',0),(903,1,'2019-01-09 09:55:01','2019-01-09 14:55:01','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Educational and Sports Facilities</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Residence Halls</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','University of Tampa Expansion','','inherit','open','open','','860-revision-v1','','','2019-01-09 09:55:01','2019-01-09 14:55:01','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(904,1,'2019-01-09 09:56:34','2019-01-09 14:56:34','\r\n Tampa, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','USF Marshall Center','','inherit','open','open','','888-revision-v1','','','2019-01-09 09:56:34','2019-01-09 14:56:34','',888,'https://dhoistage.concertium.com/888-revision-v1/',0,'revision','',0),(905,1,'2019-01-09 10:10:18','2019-01-09 15:10:18','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-hall.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-f-300x300.jpg\" alt=\"marshall-center-front\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\n\n Tampa, Flordia\n 233,000 SF\n Beck – Construction\n Gould Evans – Architect<!--more-->\n\n\n\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\n','USF Marshall Center','','inherit','open','open','','888-autosave-v1','','','2019-01-09 10:10:18','2019-01-09 15:10:18','',888,'https://dhoistage.concertium.com/888-autosave-v1/',0,'revision','',0),(906,1,'2019-01-09 09:58:52','2019-01-09 14:58:52',' <img src=\"http://https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\" alt=\"\" />\r\n\r\n Tampa, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','USF Marshall Center','','inherit','open','open','','888-revision-v1','','','2019-01-09 09:58:52','2019-01-09 14:58:52','',888,'https://dhoistage.concertium.com/888-revision-v1/',0,'revision','',0),(907,1,'2019-01-09 09:59:41','2019-01-09 14:59:41','\r\n\r\n Tampa, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-150x150.jpg\" alt=\"marshall-center-front\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-867\" /></a>','USF Marshall Center','','inherit','open','open','','888-revision-v1','','','2019-01-09 09:59:41','2019-01-09 14:59:41','',888,'https://dhoistage.concertium.com/888-revision-v1/',0,'revision','',0),(908,1,'2019-01-09 10:05:28','2019-01-09 15:05:28','\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"marshall-center-front\" width=\"300\" height=\"300\" class=\"\" /></a>\r\n\r\n Tampa, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','USF Marshall Center','','inherit','open','open','','888-revision-v1','','','2019-01-09 10:05:28','2019-01-09 15:05:28','',888,'https://dhoistage.concertium.com/888-revision-v1/',0,'revision','',0),(909,1,'2019-01-09 10:08:20','2019-01-09 15:08:20','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"marshall-center-front\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n Tampa, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','USF Marshall Center','','inherit','open','open','','888-revision-v1','','','2019-01-09 10:08:20','2019-01-09 15:08:20','',888,'https://dhoistage.concertium.com/888-revision-v1/',0,'revision','',0),(910,1,'2019-01-09 10:08:45','2019-01-09 15:08:45','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"marshall-center-front\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"marshall-center-front\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n Tampa, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','USF Marshall Center','','inherit','open','open','','888-revision-v1','','','2019-01-09 10:08:45','2019-01-09 15:08:45','',888,'https://dhoistage.concertium.com/888-revision-v1/',0,'revision','',0),(912,1,'2019-01-09 10:10:29','2019-01-09 15:10:29','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-hall.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-hall-300x300.jpg\" alt=\"marshall-center-hall\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n Tampa, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','USF Marshall Center','','inherit','open','open','','888-revision-v1','','','2019-01-09 10:10:29','2019-01-09 15:10:29','',888,'https://dhoistage.concertium.com/888-revision-v1/',0,'revision','',0),(911,1,'2019-01-09 10:09:17','2019-01-09 15:09:17','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"marshall-center-front\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n \r\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"marshall-center-front\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n Tampa, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','USF Marshall Center','','inherit','open','open','','888-revision-v1','','','2019-01-09 10:09:17','2019-01-09 15:09:17','',888,'https://dhoistage.concertium.com/888-revision-v1/',0,'revision','',0),(913,1,'2019-01-09 10:15:05','2019-01-09 15:15:05','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine2-150x150.jpg\" alt=\"laser-spine2\" width=\"300\" height=\"300\" class=\"alignnone size-thumbnail wp-image-914\" /></a>\n\n Tampa, Flordia\n 233,000 SF\n Beck – Construction\n Gould Evans – Architect<!--more-->\n\n\n\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\n','Laser Spine Institute','','inherit','open','open','','862-autosave-v1','','','2019-01-09 10:15:05','2019-01-09 15:15:05','',862,'https://dhoistage.concertium.com/862-autosave-v1/',0,'revision','',0),(914,1,'2019-01-09 10:14:27','2019-01-09 15:14:27','','laser-spine2','','inherit','open','open','','laser-spine2','','','2019-01-09 10:14:27','2019-01-09 15:14:27','',862,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine2.jpg',0,'attachment','image/jpeg',0),(917,1,'2019-01-09 10:17:47','2019-01-09 15:17:47','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"city-hall-elevation\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>','Old City Hall Tampa','','inherit','open','open','','883-revision-v1','','','2019-01-09 10:17:47','2019-01-09 15:17:47','',883,'https://dhoistage.concertium.com/883-revision-v1/',0,'revision','',0),(918,1,'2019-01-09 10:18:37','2019-01-09 15:18:37','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"city-hall-elevation\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\nWith 100 years of history behind it, Tampa, Florida’s Old City Hall has seen its fair share of changes and played a major role in the advancement of the city.\r\n\r\nWalbridge performed design build services on this 100-year old facility in Tampa, Florida. Old City Hall has seen its fair share of changes and played a major role in the advancement of the City. With the use of modern technology, Walbridge transformed this high-profile building to look like it did a century ago.\r\n\r\nWalbridge worked with project partners FleischmanGarcia Architects and local restoration experts Restocon to renovate the century-old building’s exterior. The work included repairing brickwork, granite and ornate terracotta balustrades and cornices. With an impressive “layer cake” look, the building has an historical feeling. Current technology brings a new era to this grand building.\r\n\r\nThe Walbridge team utilized 3-D scanning, drone video flying, and still photography to capture the building conditions before construction then translated that information into a set of pre-work as-built documents.\r\n\r\nWith pedestrians, employees, and vehicles in mind, Walbridge’s continued commitment to safety on all worksites came into play during planning and construction phase and continued during the construction phase.\r\n\r\nWhen the building was first constructed in 1915, it had a price tag of $235,000. The project’s “layer-cake” design was created by renowned local architect M. Leo Elliott.\r\n\r\nNow completed, the building has been restored to its 1915 glory and is compatible with the history that radiates from the building. Tampa Old City Hall is listed as a National Historic Building on the Register for Historic Places.\r\n','Old City Hall Tampa','','inherit','open','open','','883-revision-v1','','','2019-01-09 10:18:37','2019-01-09 15:18:37','',883,'https://dhoistage.concertium.com/883-revision-v1/',0,'revision','',0),(919,1,'2019-01-09 10:19:36','2019-01-09 15:19:36','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-front.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-front-300x300.jpg\" alt=\"city-hall-elevation\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\nWith 100 years of history behind it, Tampa, Florida’s Old City Hall has seen its fair share of changes and played a major role in the advancement of the city.\r\n\r\nWalbridge performed design build services on this 100-year old facility in Tampa, Florida. Old City Hall has seen its fair share of changes and played a major role in the advancement of the City. With the use of modern technology, Walbridge transformed this high-profile building to look like it did a century ago.\r\n\r\nWalbridge worked with project partners FleischmanGarcia Architects and local restoration experts Restocon to renovate the century-old building’s exterior. The work included repairing brickwork, granite and ornate terracotta balustrades and cornices. With an impressive “layer cake” look, the building has an historical feeling. Current technology brings a new era to this grand building.\r\n\r\nThe Walbridge team utilized 3-D scanning, drone video flying, and still photography to capture the building conditions before construction then translated that information into a set of pre-work as-built documents.\r\n\r\nWith pedestrians, employees, and vehicles in mind, Walbridge’s continued commitment to safety on all worksites came into play during planning and construction phase and continued during the construction phase.\r\n\r\nWhen the building was first constructed in 1915, it had a price tag of $235,000. The project’s “layer-cake” design was created by renowned local architect M. Leo Elliott.\r\n\r\nNow completed, the building has been restored to its 1915 glory and is compatible with the history that radiates from the building. Tampa Old City Hall is listed as a National Historic Building on the Register for Historic Places.\r\n','Old City Hall Tampa','','inherit','open','open','','883-revision-v1','','','2019-01-09 10:19:36','2019-01-09 15:19:36','',883,'https://dhoistage.concertium.com/883-revision-v1/',0,'revision','',0),(920,1,'2019-01-09 10:20:53','2019-01-09 15:20:53','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-auditorium.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-auditorium-300x300.jpg\" alt=\"usf-camls-auditorium\" width=\"300\" height=\"300\" class=\"alignnone size-thumbnail wp-image-880\" /></a>\r\n\r\n Tampa, FL\r\n 80,000 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe USF Health Center for Advanced Medical Learning and Simulation (CAMLS) is a state-of-the-art medical simulation center and training facility that provides world class health education and professional development in the medical field to the Tampa Bay area. CAMLS revolutionizes how to learn, practice and perfect advanced medical skills of tomorrow. Beck designed and built the three-story 90,000 SF facility, which provides space for every possible form of health professional education under one roof and focuses on designing and testing new medical devices and technologies in the Research and Innovation Lab. The facility includes 60,000 SF for surgical skills labs, operating suites, lecture halls, exhibition halls, auditoriums, robotics lab, virtual hospital/simulation center, research and innovations lab on the first two floors. The remaining 30,000 SF is dedicated to office and general classroom space. The project is certified LEED Silver.','USF CAMLS ','','inherit','open','open','','885-revision-v1','','','2019-01-09 10:20:53','2019-01-09 15:20:53','',885,'https://dhoistage.concertium.com/885-revision-v1/',0,'revision','',0),(921,1,'2019-01-09 10:21:08','2019-01-09 15:21:08','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-auditorium.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-auditorium-300x300.jpg\" alt=\"usf-camls-auditorium\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n Tampa, FL\r\n 80,000 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe USF Health Center for Advanced Medical Learning and Simulation (CAMLS) is a state-of-the-art medical simulation center and training facility that provides world class health education and professional development in the medical field to the Tampa Bay area. CAMLS revolutionizes how to learn, practice and perfect advanced medical skills of tomorrow. Beck designed and built the three-story 90,000 SF facility, which provides space for every possible form of health professional education under one roof and focuses on designing and testing new medical devices and technologies in the Research and Innovation Lab. The facility includes 60,000 SF for surgical skills labs, operating suites, lecture halls, exhibition halls, auditoriums, robotics lab, virtual hospital/simulation center, research and innovations lab on the first two floors. The remaining 30,000 SF is dedicated to office and general classroom space. The project is certified LEED Silver.','USF CAMLS ','','inherit','open','open','','885-revision-v1','','','2019-01-09 10:21:08','2019-01-09 15:21:08','',885,'https://dhoistage.concertium.com/885-revision-v1/',0,'revision','',0),(928,1,'2019-01-09 10:31:25','2019-01-09 15:31:25','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\n\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\n\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\n\n<div style=\"width: 100%; display: table;\">\n<div style=\"display: table-row;\">\n<div style=\"width: 400px; display: table-cell;\">\n<center>\n<figure>\n <a href=\"https://dhoistage.concertium.com/ut-residence-hall/\">\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-200x200.jpg\" alt=\"utres\" width=\"200\" height=\"200\">\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\n</a>\n</figure>\n</center>\n</div>\n<div style=\"width: 400px; display: table-cell;\">\n<center>\n<figure>\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-200x200.jpg\" alt=\"hmimg\" width=\"200\" height=\"200\">\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\n</a>\n</figure>\n</center>\n</div>\n<div style=\"width: 400px; display: table-cell;\">\n<center>\n<figure>\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-200x200.jpg\" alt=\"hdwimg\" width=\"200\" height=\"200\">\n <center>\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\n</a>\n</figure>\n</center>\n</div>\n</div>\n</div>\n\n \n\n<div style=\"width: 100%; display: table;\">\n<div style=\"display: table-row;\">\n<div style=\"width: 400px; display: table-cell;\">\n<center>\n<figure>\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine1.jpg\" alt=\"utres\" width=\"200\" height=\"200\">\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\n</a>\n</figure>\n</center>\n</div>\n<div style=\"width: 400px; display: table-cell;\">\n<center>\n<figure>\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation.jpg\" alt=\"hmimg\" style=\"width:80%\">\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\n</a>\n</figure>\n</center>\n</div>\n<div style=\"width: 400px; display: table-cell;\">\n<center>\n<figure>\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo.jpg\" alt=\"hdwimg\" style=\"width:92%\">\n <center>\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\n</a>\n</figure>\n</center>\n</div>\n</div>\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 10:31:25','2019-01-09 15:31:25','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(927,1,'2019-01-09 10:30:50','2019-01-09 15:30:50','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-hall/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-200x200.jpg\" alt=\"utres\" width=\"200\" height=\"200\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-200x200.jpg\" alt=\"hmimg\" width=\"200\" height=\"200\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-200x200.jpg\" alt=\"hdwimg\" width=\"200\" height=\"200\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine1-200x200.jpg\" alt=\"lspine\" width=\"200\" height=\"200\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-200x200.jpg\" alt=\"chall\" width=\"200\" height=\"200\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-200x200.jpg\" alt=\"camls\" width=\"200\" height=\"200\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 10:30:50','2019-01-09 15:30:50','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(925,1,'2019-01-09 10:28:16','2019-01-09 15:28:16','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-hall/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine1.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 10:28:16','2019-01-09 15:28:16','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(924,1,'2019-01-09 10:27:29','2019-01-09 15:27:29','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\n\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\n\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\n\n<div style=\"width: 100%; display: table;\">\n<div style=\"display: table-row;\">\n<div style=\"width: 400px; display: table-cell;\">\n<center>\n<figure>\n <a href=\"https://dhoistage.concertium.com/ut-residence-hall/\">\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x199.jpg\" alt=\"utres\" style=\"width:70%\">\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\n</a>\n</figure>\n</center>\n</div>\n<div style=\"width: 400px; display: table-cell;\">\n<center>\n<figure>\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine2-300x300.jpg\" alt=\"laser-spine2\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\" alt=\"hmimg\" style=\"width:80%\">\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\n</a>\n</figure>\n</center>\n</div>\n<div style=\"width: 400px; display: table-cell;\">\n<center>\n<figure>\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\n <center>\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\n</a>\n</figure>\n</center>\n</div>\n</div>\n</div>\n\n \n\n<div style=\"width: 100%; display: table;\">\n<div style=\"display: table-row;\">\n<div style=\"width: 400px; display: table-cell;\">\n<center>\n<figure>\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine1.jpg\" alt=\"utres\" style=\"width:70%\">\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\n</a>\n</figure>\n</center>\n</div>\n<div style=\"width: 400px; display: table-cell;\">\n<center>\n<figure>\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation.jpg\" alt=\"hmimg\" style=\"width:80%\">\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\n</a>\n</figure>\n</center>\n</div>\n<div style=\"width: 400px; display: table-cell;\">\n<center>\n<figure>\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo.jpg\" alt=\"hdwimg\" style=\"width:92%\">\n <center>\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\n</a>\n</figure>\n</center>\n</div>\n</div>\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 10:27:29','2019-01-09 15:27:29','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(926,1,'2019-01-09 10:29:17','2019-01-09 15:29:17','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-hall/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine1.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 10:29:17','2019-01-09 15:29:17','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(929,1,'2019-01-09 10:32:08','2019-01-09 15:32:08','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-hall/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine1.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 10:32:08','2019-01-09 15:32:08','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(930,1,'2019-01-09 10:32:36','2019-01-09 15:32:36','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-hall/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-200x200.jpg\" alt=\"utres\" width=\"200\" height=\"200\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine1.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 10:32:36','2019-01-09 15:32:36','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(931,1,'2019-01-09 10:33:02','2019-01-09 15:33:02','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-hall/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"utres\" width=\"150\" height=\"150\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine1.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 10:33:02','2019-01-09 15:33:02','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(932,1,'2019-01-09 10:33:42','2019-01-09 15:33:42','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-hall/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine1.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 10:33:42','2019-01-09 15:33:42','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(933,1,'2019-01-09 10:34:08','2019-01-09 15:34:08','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-hall/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine1.jpg\" alt=\"utres\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation.jpg\" alt=\"hmimg\" style=\"width:80%\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo.jpg\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 10:34:08','2019-01-09 15:34:08','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(934,1,'2019-01-09 10:34:57','2019-01-09 15:34:57','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-hall/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine1-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 10:34:57','2019-01-09 15:34:57','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(935,1,'2019-01-09 10:36:09','2019-01-09 15:36:09','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-hall/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Residence Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 10:36:09','2019-01-09 15:36:09','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(936,1,'2019-01-09 10:40:26','2019-01-09 15:40:26','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects2','','inherit','open','open','','782-revision-v1','','','2019-01-09 10:40:26','2019-01-09 15:40:26','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(946,1,'2019-01-10 07:46:44','2019-01-10 12:46:44','','University of Tampa Expansions','','inherit','open','open','','945-autosave-v1','','','2019-01-10 07:46:44','2019-01-10 12:46:44','',945,'https://dhoistage.concertium.com/945-autosave-v1/',0,'revision','',0),(937,1,'2019-01-09 10:44:14','2019-01-09 15:44:14','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" />\r\n <figcaption><font size=\"4\">Schoomaker ROTC</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" />\r\n <center><figcaption><font size=\"4\">R.K. Bailey Art Studio</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Educational and Sports Facilities</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Residence Halls</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','University of Tampa Expansion','','inherit','open','open','','860-revision-v1','','','2019-01-09 10:44:14','2019-01-09 15:44:14','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(938,1,'2019-01-09 10:45:13','2019-01-09 15:45:13','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" />\r\n <figcaption><font size=\"4\">Schoomaker ROTC</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" />\r\n <center><figcaption><font size=\"4\">R.K. Bailey Art Studio</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" />\r\n <center>\r\n <figcaption><font size=\"4\">Bob Martinez Athletics Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Educational and Sports Facilities</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Residence Halls</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','University of Tampa Expansion','','inherit','open','open','','860-revision-v1','','','2019-01-09 10:45:13','2019-01-09 15:45:13','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(945,1,'2019-01-10 06:47:06','2019-01-10 11:47:06','Tampa, Florida\r\n164,144 SF\r\nBeck – Construction\r\nRobbins Bell & Kreher Architects, Inc – Architect\r\n\r\nStraz\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events.\r\n\r\nJenkins\r\n\r\nTampa, Florida\r\n193,128 SF\r\nBeck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.','University of Tampa Expansions','','publish','closed','closed','','university-of-tampa-expansions','','','2021-04-14 04:56:54','2021-04-14 08:56:54','',0,'https://dhoistage.concertium.com/?post_type=project&p=945',0,'project','',0),(939,1,'2019-01-09 10:47:39','2019-01-09 15:47:39','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" />\r\n <figcaption><font size=\"4\">Schoomaker ROTC</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" />\r\n <center><figcaption><font size=\"4\">R.K. Bailey Art Studio</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" />\r\n <center>\r\n <figcaption><font size=\"4\">Bob Martinez Athletics Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" />\r\n <figcaption><font size=\"4\">Brevard Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" />\r\n <center><figcaption><font size=\"4\">David A. Straz Jr.</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" />\r\n <center>\r\n <figcaption><font size=\"4\">Frank P. Urso</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Educational and Sports Facilities</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Residence Halls</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','University of Tampa Expansion','','inherit','open','open','','860-revision-v1','','','2019-01-09 10:47:39','2019-01-09 15:47:39','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(940,1,'2019-01-09 10:48:31','2019-01-09 15:48:31','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n<span style=\"font-size: large;\">Educational and Sports Facilities</span>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" />\r\n <figcaption><font size=\"4\">Schoomaker ROTC</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" />\r\n <center><figcaption><font size=\"4\">R.K. Bailey Art Studio</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" />\r\n <center>\r\n <figcaption><font size=\"4\">Bob Martinez Athletics Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Residence Halls</span>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" />\r\n <figcaption><font size=\"4\">Brevard Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" />\r\n <center><figcaption><font size=\"4\">David A. Straz Jr.</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" />\r\n <center>\r\n <figcaption><font size=\"4\">Frank P. Urso</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Educational and Sports Facilities</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Residence Halls</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','University of Tampa Expansion','','inherit','open','open','','860-revision-v1','','','2019-01-09 10:48:31','2019-01-09 15:48:31','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(941,1,'2019-01-09 10:48:46','2019-01-09 15:48:46','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n<span style=\"font-size: x-large;\">Educational and Sports Facilities</span>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" />\r\n <figcaption><font size=\"4\">Schoomaker ROTC</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" />\r\n <center><figcaption><font size=\"4\">R.K. Bailey Art Studio</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" />\r\n <center>\r\n <figcaption><font size=\"4\">Bob Martinez Athletics Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Residence Halls</span>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" />\r\n <figcaption><font size=\"4\">Brevard Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" />\r\n <center><figcaption><font size=\"4\">David A. Straz Jr.</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" />\r\n <center>\r\n <figcaption><font size=\"4\">Frank P. Urso</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Educational and Sports Facilities</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Residence Halls</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','University of Tampa Expansion','','inherit','open','open','','860-revision-v1','','','2019-01-09 10:48:46','2019-01-09 15:48:46','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(943,1,'2019-01-09 10:49:47','2019-01-09 15:49:47','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n<center>\r\n<span style=\"font-size: x-large;\">Educational and Sports Facilities</span>\r\n</center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" />\r\n <figcaption><font size=\"4\">Schoomaker ROTC</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" />\r\n <center><figcaption><font size=\"4\">R.K. Bailey Art Studio</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" />\r\n <center>\r\n <figcaption><font size=\"4\">Bob Martinez Athletics Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<center>\r\n<span style=\"font-size: x-large;\">Residence Halls</span>\r\n</center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" />\r\n <figcaption><font size=\"4\">Brevard Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" />\r\n <center><figcaption><font size=\"4\">David A. Straz Jr.</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" />\r\n <center>\r\n <figcaption><font size=\"4\">Frank P. Urso</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n','University of Tampa Expansion','','inherit','open','open','','860-revision-v1','','','2019-01-09 10:49:47','2019-01-09 15:49:47','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(942,1,'2019-01-09 10:49:17','2019-01-09 15:49:17','Straz\r\n Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n<center>\r\n<span style=\"font-size: x-large;\">Educational and Sports Facilities</span>\r\n</center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" />\r\n <figcaption><font size=\"4\">Schoomaker ROTC</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" />\r\n <center><figcaption><font size=\"4\">R.K. Bailey Art Studio</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" />\r\n <center>\r\n <figcaption><font size=\"4\">Bob Martinez Athletics Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Residence Halls</span>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" />\r\n <figcaption><font size=\"4\">Brevard Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" />\r\n <center><figcaption><font size=\"4\">David A. Straz Jr.</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" />\r\n <center>\r\n <figcaption><font size=\"4\">Frank P. Urso</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n\r\n<center>\r\n<span style=\"font-size: large;\">Educational and Sports Facilities</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: large;\">Residence Halls</span>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" /></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" /></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n</center>\r\n','University of Tampa Expansion','','inherit','open','open','','860-revision-v1','','','2019-01-09 10:49:17','2019-01-09 15:49:17','',860,'https://dhoistage.concertium.com/860-revision-v1/',0,'revision','',0),(949,1,'2019-01-10 08:40:24','2019-01-10 13:40:24','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Resources</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n \r\n','Products','','inherit','open','open','','600-revision-v1','','','2019-01-10 08:40:24','2019-01-10 13:40:24','',600,'https://dhoistage.concertium.com/600-revision-v1/',0,'revision','',0),(951,1,'2019-01-10 08:59:30','2019-01-10 13:59:30','','Corporate Center Tampa - I,II,III,IV','','publish','closed','closed','','corporate-center','','','2019-01-13 08:48:47','2019-01-13 13:48:47','',0,'https://dhoistage.concertium.com/?post_type=project&p=951',0,'project','',0),(952,1,'2019-01-10 08:59:03','2019-01-10 13:59:03','','corp-ctr3-1','','inherit','open','open','','corp-ctr3-1','','','2019-01-10 08:59:03','2019-01-10 13:59:03','',951,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/corp-ctr3-1.jpg',0,'attachment','image/jpeg',0),(953,1,'2019-01-10 08:59:04','2019-01-10 13:59:04','','corp-ctr4-1','','inherit','open','open','','corp-ctr4-1','','','2019-01-10 08:59:04','2019-01-10 13:59:04','',951,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/corp-ctr4-1.jpg',0,'attachment','image/jpeg',0),(954,1,'2019-01-10 09:03:21','2019-01-10 14:03:21','With 100 years of history behind it, Tampa, Florida’s Old City Hall has seen its fair share of changes and played a major role in the advancement of the city.\r\n\r\nWalbridge performed design build services on this 100-year old facility in Tampa, Florida. Old City Hall has seen its fair share of changes and played a major role in the advancement of the City. With the use of modern technology, Walbridge transformed this high-profile building to look like it did a century ago.\r\n\r\nWalbridge worked with project partners FleischmanGarcia Architects and local restoration experts Restocon to renovate the century-old building’s exterior. The work included repairing brickwork, granite and ornate terracotta balustrades and cornices. With an impressive “layer cake” look, the building has an historical feeling. Current technology brings a new era to this grand building.\r\n\r\nThe Walbridge team utilized 3-D scanning, drone video flying, and still photography to capture the building conditions before construction then translated that information into a set of pre-work as-built documents.\r\n\r\nWith pedestrians, employees, and vehicles in mind, Walbridge’s continued commitment to safety on all worksites came into play during planning and construction phase and continued during the construction phase.\r\n\r\nWhen the building was first constructed in 1915, it had a price tag of $235,000. The project’s “layer-cake” design was created by renowned local architect M. Leo Elliott.\r\n\r\nNow completed, the building has been restored to its 1915 glory and is compatible with the history that radiates from the building. Tampa Old City Hall is listed as a National Historic Building on the Register for Historic Places.','Old Tampa City Hall','','publish','closed','closed','','old-tampa-city-hall','','','2021-04-14 04:52:37','2021-04-14 08:52:37','',0,'https://dhoistage.concertium.com/?post_type=project&p=954',0,'project','',0),(955,1,'2019-01-10 09:02:41','2019-01-10 14:02:41','','city-hall-elevation-bw','','inherit','open','open','','city-hall-elevation-bw','','','2019-01-10 09:02:41','2019-01-10 14:02:41','',954,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-bw.jpg',0,'attachment','image/jpeg',0),(957,1,'2019-01-10 09:09:04','2019-01-10 14:09:04','','blueprints-stock-1','','inherit','open','open','','blueprints-stock-1','','','2019-01-10 09:09:04','2019-01-10 14:09:04','',75,'https://dhoistage.concertium.com/wp-content/uploads/2014/06/blueprints-stock-1.jpg',0,'attachment','image/jpeg',0),(998,1,'2019-01-13 08:55:24','2019-01-13 13:55:24','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n Gunn-Allen\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 08:55:24','2019-01-13 13:55:24','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(993,1,'2019-01-13 08:52:10','2019-01-13 13:52:10','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 08:52:10','2019-01-13 13:52:10','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(981,1,'2019-01-13 08:33:28','2019-01-13 13:33:28','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\">U. Tampa Expansion</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">USF Marshall Center</a>\r\n <a href=\"https://www.sargentlock.com/\">George Steinbrenner Highschool</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Laser Spine Institute</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">Moffitt Cancer Center</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Florida Hospital</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 08:33:28','2019-01-13 13:33:28','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(961,1,'2019-01-10 09:40:29','2019-01-10 14:40:29','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Government</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Medical</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Education</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Government</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Medical</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Education</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n/////////////////////////////////////////////////////////////////////////////////\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 09:40:29','2019-01-10 14:40:29','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(958,1,'2019-01-10 09:38:07','2019-01-10 14:38:07','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Resources</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n</div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Resources</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n\r\n \r\n\r\n/////////////////////////////////////////////////////////////////////////////////\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 09:38:07','2019-01-10 14:38:07','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(959,1,'2019-01-10 09:38:59','2019-01-10 14:38:59','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Government</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n</div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Medical</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n</div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Education</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n\r\n\r\n \r\n\r\n/////////////////////////////////////////////////////////////////////////////////\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 09:38:59','2019-01-10 14:38:59','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(960,1,'2019-01-10 09:39:14','2019-01-10 14:39:14','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Government</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n</div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Medical</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n</div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Education</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n</div>\r\n\r\n</div>\r\n</div>\r\n\r\n\r\n \r\n\r\n/////////////////////////////////////////////////////////////////////////////////\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 09:39:14','2019-01-10 14:39:14','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(962,1,'2019-01-10 09:41:01','2019-01-10 14:41:01','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Government</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Medical</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Education</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Government</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Medical</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Education</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n\r\n/////////////////////////////////////////////////////////////////////////////////\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 09:41:01','2019-01-10 14:41:01','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(999,1,'2019-01-13 08:57:34','2019-01-13 13:57:34','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 450px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/corporate-center/\">Corporate Center Tampa - I,II,III,IV</a>\r\n Gunn-Allen\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 08:57:34','2019-01-13 13:57:34','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(986,1,'2019-01-13 08:45:54','2019-01-13 13:45:54','','sawgrass-interior','','inherit','open','open','','sawgrass-interior','','','2019-01-13 08:45:54','2019-01-13 13:45:54','',782,'https://dhoistage.concertium.com/wp-content/uploads/2018/11/sawgrass-interior.jpeg',0,'attachment','image/jpeg',0),(985,1,'2019-01-13 08:41:43','2019-01-13 13:41:43','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">Moffitt Cancer Center</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Florida Hospital</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 08:41:43','2019-01-13 13:41:43','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(982,1,'2019-01-13 08:35:27','2019-01-13 13:35:27','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"/index.php/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">USF Marshall Center</a>\r\n <a href=\"https://www.sargentlock.com/\">George Steinbrenner Highschool</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Laser Spine Institute</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">Moffitt Cancer Center</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Florida Hospital</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 08:35:27','2019-01-13 13:35:27','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(965,1,'2019-01-10 09:49:22','2019-01-10 14:49:22','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <center>\r\n <span style=\"font-size: x-large;\">Government</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Old Tampa City Hall</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\"></font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Medical</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Laser Spine Institute Tampa</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Moffitt Cancer Center</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Education</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">University of Tampa Expansions</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">University of South Florida Marshall Center</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">University of Puerto Rico</font></a>\r\n </div>\r\n </center>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Hospitality</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Sawgrass Marriott Golf Resort & Spa</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Tenant Improvement</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n\r\n/////////////////////////////////////////////////////////////////////////////////\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 09:49:22','2019-01-10 14:49:22','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(964,1,'2019-01-10 09:47:50','2019-01-10 14:47:50','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Government</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Old Tampa City Hall</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\"></font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Medical</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Laser Spine Institute Tampa</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Moffitt Cancer Center</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Education</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">University of Tampa Expansions</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">University of South Florida Marshall Center</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">University of Puerto Rico</font></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Hospitality</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Sawgrass Marriott Golf Resort & Spa</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Tenant Improvement</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n\r\n/////////////////////////////////////////////////////////////////////////////////\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 09:47:50','2019-01-10 14:47:50','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(963,1,'2019-01-10 09:47:10','2019-01-10 14:47:10','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n<center>\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Government</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Old Tampa City Hall</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\"></font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Medical</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Laser Spine Institute Tampa</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Moffitt Cancer Center</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Education</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">University of Tampa Expansions</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">University of South Florida Marshall Center</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">University of Puerto Rico</font></a>\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Hospitality</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Sawgrass Marriott Golf Resort & Spa</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Medical</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Education</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n\r\n/////////////////////////////////////////////////////////////////////////////////\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 09:47:10','2019-01-10 14:47:10','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(966,1,'2019-01-10 09:49:47','2019-01-10 14:49:47','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <center>\r\n <span style=\"font-size: x-large;\">Government</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Old Tampa City Hall</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\"></font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Medical</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Laser Spine Institute Tampa</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Moffitt Cancer Center</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Education</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">University of Tampa Expansions</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">University of South Florida Marshall Center</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">University of Puerto Rico</font></a>\r\n </div>\r\n </center>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Hospitality</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Sawgrass Marriott Golf Resort & Spa</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Tenant Improvement</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n\r\n/////////////////////////////////////////////////////////////////////////////////\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 09:49:47','2019-01-10 14:49:47','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(967,1,'2019-01-10 09:50:33','2019-01-10 14:50:33','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <center>\r\n <span style=\"font-size: x-large;\">Government</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Old Tampa City Hall</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\"></font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Medical</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Laser Spine Institute Tampa</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Moffitt Cancer Center</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Education</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">University of Tampa Expansions</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">University of South Florida Marshall Center</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">University of Puerto Rico</font></a>\r\n </div>\r\n </center>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <center>\r\n <span style=\"font-size: x-large;\">Hospitality</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Sawgrass Marriott Golf Resort & Spa</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Tenant Improvement</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n </center>\r\n </div>\r\n</div>\r\n</center>\r\n\r\n/////////////////////////////////////////////////////////////////////////////////\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 09:50:33','2019-01-10 14:50:33','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(968,1,'2019-01-10 09:51:06','2019-01-10 14:51:06','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <center>\r\n <span style=\"font-size: x-large;\">Government</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Old Tampa City Hall</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\"></font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Medical</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Laser Spine Institute Tampa</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Moffitt Cancer Center</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Education</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">University of Tampa Expansions</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">University of South Florida Marshall Center</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">University of Puerto Rico</font></a>\r\n </div>\r\n </center>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <center>\r\n <span style=\"font-size: x-large;\">Hospitality</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Sawgrass Marriott Golf Resort & Spa</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Tenant Improvement</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n </center>\r\n </div>\r\n</div>\r\n</center>\r\n\r\n/////////////////////////////////////////////////////////////////////////////////\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 09:51:06','2019-01-10 14:51:06','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(970,1,'2019-01-10 10:15:30','2019-01-10 15:15:30','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hinges</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=150\">Hager</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\">McKinney</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Locks</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\">Hager</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">Schlage</a>\r\n <a href=\"https://www.sargentlock.com/\">Sargent</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Closers</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">LCN</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Dorma</a>\r\n <a href=\"https://www.nortondoorcontrols.com/en/site/norton/\">Norton</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Electric</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Hager</a>\r\n <a href=\"https://www.adamsrite.com/en/site/adamsritecom/\">Adams Rite</a>\r\n <a href=\"https://www.assaabloyesh.com/en/local/assaabloyeshcom/\">HES</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Exit Devices</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 10:15:30','2019-01-10 15:15:30','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(969,1,'2019-01-10 09:52:55','2019-01-10 14:52:55','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <center>\r\n <span style=\"font-size: x-large;\">Government</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Old Tampa City Hall</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">P</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Medical</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Laser Spine Institute Tampa</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Moffitt Cancer Center</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Education</span>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\"><font size=\"4\">University of Tampa Expansions</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">University of South Florida Marshall Center</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">University of Puerto Rico</font></a>\r\n </div>\r\n </center>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <center>\r\n <span style=\"font-size: x-large;\">Hospitality</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Sawgrass Marriott Golf Resort & Spa</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Tenant Improvement</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n </div>\r\n </center>\r\n </div>\r\n</div>\r\n</center>\r\n\r\n/////////////////////////////////////////////////////////////////////////////////\r\n\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 09:52:55','2019-01-10 14:52:55','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(971,1,'2019-01-10 10:18:38','2019-01-10 15:18:38','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=150\">Hager</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\">McKinney</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\">Hager</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">Schlage</a>\r\n <a href=\"https://www.sargentlock.com/\">Sargent</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">LCN</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Dorma</a>\r\n <a href=\"https://www.nortondoorcontrols.com/en/site/norton/\">Norton</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Hager</a>\r\n <a href=\"https://www.adamsrite.com/en/site/adamsritecom/\">Adams Rite</a>\r\n <a href=\"https://www.assaabloyesh.com/en/local/assaabloyeshcom/\">HES</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Exit Devices</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 10:18:38','2019-01-10 15:18:38','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(972,1,'2019-01-10 10:19:27','2019-01-10 15:19:27','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=150\">Hager</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\">McKinney</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\">Hager</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">Schlage</a>\r\n <a href=\"https://www.sargentlock.com/\">Sargent</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">LCN</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Dorma</a>\r\n <a href=\"https://www.nortondoorcontrols.com/en/site/norton/\">Norton</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Hager</a>\r\n <a href=\"https://www.adamsrite.com/en/site/adamsritecom/\">Adams Rite</a>\r\n <a href=\"https://www.assaabloyesh.com/en/local/assaabloyeshcom/\">HES</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 10:19:27','2019-01-10 15:19:27','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(973,1,'2019-01-10 15:10:23','2019-01-10 20:10:23','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=150\">Old Tampa City Hall</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\">FDOT</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\">Hager</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">Schlage</a>\r\n <a href=\"https://www.sargentlock.com/\">Sargent</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">LCN</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Dorma</a>\r\n <a href=\"https://www.nortondoorcontrols.com/en/site/norton/\">Norton</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Hager</a>\r\n <a href=\"https://www.adamsrite.com/en/site/adamsritecom/\">Adams Rite</a>\r\n <a href=\"https://www.assaabloyesh.com/en/local/assaabloyeshcom/\">HES</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 15:10:23','2019-01-10 20:10:23','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(974,1,'2019-01-10 15:10:37','2019-01-10 20:10:37','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=150\">Old Tampa City Hall</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\">FDOT</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\">Hager</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">Schlage</a>\r\n <a href=\"https://www.sargentlock.com/\">Sargent</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">LCN</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Dorma</a>\r\n <a href=\"https://www.nortondoorcontrols.com/en/site/norton/\">Norton</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Hager</a>\r\n <a href=\"https://www.adamsrite.com/en/site/adamsritecom/\">Adams Rite</a>\r\n <a href=\"https://www.assaabloyesh.com/en/local/assaabloyeshcom/\">HES</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 15:10:37','2019-01-10 20:10:37','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(975,1,'2019-01-10 15:10:47','2019-01-10 20:10:47','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=150\">Old Tampa City Hall</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\">FDOT</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\">Hager</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">Schlage</a>\r\n <a href=\"https://www.sargentlock.com/\">Sargent</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">LCN</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Dorma</a>\r\n <a href=\"https://www.nortondoorcontrols.com/en/site/norton/\">Norton</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Hager</a>\r\n <a href=\"https://www.adamsrite.com/en/site/adamsritecom/\">Adams Rite</a>\r\n <a href=\"https://www.assaabloyesh.com/en/local/assaabloyeshcom/\">HES</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 15:10:47','2019-01-10 20:10:47','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(976,1,'2019-01-10 15:10:58','2019-01-10 20:10:58','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=150\">Old Tampa City Hall</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\">FDOT</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\">Hager</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">Schlage</a>\r\n <a href=\"https://www.sargentlock.com/\">Sargent</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">LCN</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Dorma</a>\r\n <a href=\"https://www.nortondoorcontrols.com/en/site/norton/\">Norton</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Hager</a>\r\n <a href=\"https://www.adamsrite.com/en/site/adamsritecom/\">Adams Rite</a>\r\n <a href=\"https://www.assaabloyesh.com/en/local/assaabloyeshcom/\">HES</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 15:10:58','2019-01-10 20:10:58','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (977,1,'2019-01-10 15:11:31','2019-01-10 20:11:31','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=150\">Old Tampa City Hall</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\">FDOT</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\">Hager</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">Schlage</a>\r\n <a href=\"https://www.sargentlock.com/\">Sargent</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">LCN</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Dorma</a>\r\n <a href=\"https://www.nortondoorcontrols.com/en/site/norton/\">Norton</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Hager</a>\r\n <a href=\"https://www.adamsrite.com/en/site/adamsritecom/\">Adams Rite</a>\r\n <a href=\"https://www.assaabloyesh.com/en/local/assaabloyeshcom/\">HES</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 15:11:31','2019-01-10 20:11:31','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(980,1,'2019-01-10 15:16:56','2019-01-10 20:16:56','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=150\">Old Tampa City Hall</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\">FDOT</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\">U. Tampa Expansion</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">USF Marshall Center</a>\r\n <a href=\"https://www.sargentlock.com/\">George Steinbrenner Highschool</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Laser Spine Institute</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">Moffitt Cancer Center</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Florida Hospital</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 15:16:56','2019-01-10 20:16:56','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(978,1,'2019-01-10 15:13:04','2019-01-10 20:13:04','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=150\">Old Tampa City Hall</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\">FDOT</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\">U. Tampa Expansion</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">USF Marshall Center</a>\r\n <a href=\"https://www.sargentlock.com/\">George Steinbrenner Highschool</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">LCN</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Dorma</a>\r\n <a href=\"https://www.nortondoorcontrols.com/en/site/norton/\">Norton</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Hager</a>\r\n <a href=\"https://www.adamsrite.com/en/site/adamsritecom/\">Adams Rite</a>\r\n <a href=\"https://www.assaabloyesh.com/en/local/assaabloyeshcom/\">HES</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 15:13:04','2019-01-10 20:13:04','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(979,1,'2019-01-10 15:14:06','2019-01-10 20:14:06','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=150\">Old Tampa City Hall</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\">FDOT</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\">U. Tampa Expansion</a>\r\n <a href=\"https://www.schlage.com/en/home.html\">USF Marshall Center</a>\r\n <a href=\"https://www.sargentlock.com/\">George Steinbrenner Highschool</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\">Laser Spine Institute</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\">Moffitt Cancer Center</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\">Florida Hospital</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\">Hager</a>\r\n <a href=\"https://www.adamsrite.com/en/site/adamsritecom/\">Adams Rite</a>\r\n <a href=\"https://www.assaabloyesh.com/en/local/assaabloyeshcom/\">HES</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Von Duprin</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-10 15:14:06','2019-01-10 20:14:06','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(987,1,'2019-01-13 08:45:55','2019-01-13 13:45:55','','sawgrass-aerial1','','inherit','open','open','','sawgrass-aerial1','','','2019-01-13 08:45:55','2019-01-13 13:45:55','',782,'https://dhoistage.concertium.com/wp-content/uploads/2018/11/sawgrass-aerial1.jpg',0,'attachment','image/jpeg',0),(988,1,'2019-01-13 08:47:58','2019-01-13 13:47:58','<p> Tampa, Flordia<br>\r\n 233,000 SF<br>\r\n Beck – Construction<br>\r\n Gould Evans – Architect<span id=\"more-888\"></span></p>\r\n<p>The University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.</p>','USF Marshall Center','','publish','closed','closed','','usf-marshall','','','2021-04-14 05:50:48','2021-04-14 09:50:48','',0,'https://dhoistage.concertium.com/?post_type=project&p=988',0,'project','',0),(989,1,'2019-01-13 08:50:23','2019-01-13 13:50:23','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/marriott_sawgrass_interior.jpg\"><img class=\"\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/marriott_sawgrass_interior-300x200.jpg\" alt=\"sawgrass\" width=\"300\" height=\"300\" align=\"right\" /></a>\r\n\r\nLocation: Ponte Vedra, FL\r\nContractor: Complete Property Services<!--more-->\r\n\r\nOne of the areas largest convention hotels, the Sawgrass Marriott includes over 500 guest rooms, golf villas, beach club and several restaurants. Just outside of downtown Jacksonville, the Sawgrass Marriott is partnered with TPC Sawgrass golf club and offers world class golf events. For those hosting events, our 63,731 square feet of accessible indoor/outdoor venue space and close proximity to Jacksonville make us a memorable destination for any gathering. This project, which consisted of division 8 and division 10 materials , represents one of the largest managed by Door and Hardware Openings.','Sawgrass Marriott Resort & Spa - Ponte Vedra','','publish','open','open','','sawgrass-marriott','','','2021-04-14 03:36:21','2021-04-14 07:36:21','',0,'https://dhoistage.concertium.com/?page_id=989',0,'page','',0),(1143,1,'2021-04-14 03:30:16','2021-04-14 07:30:16','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/marriott_sawgrass_interior.jpg\"><img class=\" wp-image-1142 alignright\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/marriott_sawgrass_interior-1300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n\r\nLocation: Ponte Vedra, FL\r\nContractor: Complete Property Services\r\n\r\nOne of the areas largest convention hotels, the Sawgrass Marriott includes over 500 guest rooms, golf villas, beach club and several restaurants. Just outside of downtown Jacksonville, the Sawgrass Marriott is partnered with TPC Sawgrass golf club and offers world class golf events. For those hosting events, our 63,731 square feet of accessible indoor/outdoor venue space and close proximity to Jacksonville make us a memorable destination for any gathering. This project, which consisted of division 8 and division 10 materials , represents one of the largest managed by Door and Hardware Openings.','Sawgrass Marriott Resort & Spa - Ponte Vedra','','inherit','closed','closed','','989-revision-v1','','','2021-04-14 03:30:16','2021-04-14 07:30:16','',989,'https://dhoistage.concertium.com/?p=1143',0,'revision','',0),(990,1,'2019-01-13 08:50:23','2019-01-13 13:50:23','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine2-300x300.jpg\" alt=\"laser-spine2\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n Tampa, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','Sawgrass Marriott - Jacksonville','','inherit','open','open','','989-revision-v1','','','2019-01-13 08:50:23','2019-01-13 13:50:23','',989,'https://dhoistage.concertium.com/989-revision-v1/',0,'revision','',0),(991,1,'2021-04-14 03:35:30','2021-04-14 07:35:30','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/marriott_sawgrass_interior.jpg\"><img class=\"\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/marriott_sawgrass_interior-300x300.jpg\" alt=\"sawgrass\" width=\"300\" height=\"300\" align=\"right\" /></a>\n\nLocation: Ponte Vedra, FL\nContractor: Complete Property Services<!--more-->\n\nOne of the areas largest convention hotels, the Sawgrass Marriott includes over 500 guest rooms, golf villas, beach club and several restaurants. Just outside of downtown Jacksonville, the Sawgrass Marriott is partnered with TPC Sawgrass golf club and offers world class golf events. For those hosting events, our 63,731 square feet of accessible indoor/outdoor venue space and close proximity to Jacksonville make us a memorable destination for any gathering. This project, which consisted of division 8 and division 10 materials , represents one of the largest managed by Door and Hardware Openings.\n\n<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/marriott_sawgrass_interior.jpg\"><img class=\"alignnone size-thumbnail wp-image-1142\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/marriott_sawgrass_interior-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" data-wp-editing=\"1\" /></a>','Sawgrass Marriott Resort & Spa - Ponte Vedra','','inherit','open','open','','989-autosave-v1','','','2021-04-14 03:35:30','2021-04-14 07:35:30','',989,'https://dhoistage.concertium.com/989-autosave-v1/',0,'revision','',0),(992,1,'2019-01-13 08:51:28','2019-01-13 13:51:28','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/sawgrass-interior.jpeg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/sawgrass-interior-300x300.jpeg\" alt=\"sawgrass\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n Jacksonville, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','Sawgrass Marriott - Jacksonville','','inherit','open','open','','989-revision-v1','','','2019-01-13 08:51:28','2019-01-13 13:51:28','',989,'https://dhoistage.concertium.com/989-revision-v1/',0,'revision','',0),(994,1,'2019-01-13 08:53:38','2019-01-13 13:53:38','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/corp-ctr3-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/corp-ctr3-1-300x300.jpg\" alt=\"city-hall-elevation\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\nWith 100 years of history behind it, Tampa, Florida’s Old City Hall has seen its fair share of changes and played a major role in the advancement of the city.\r\n\r\nWalbridge performed design build services on this 100-year old facility in Tampa, Florida. Old City Hall has seen its fair share of changes and played a major role in the advancement of the City. With the use of modern technology, Walbridge transformed this high-profile building to look like it did a century ago.\r\n\r\nWalbridge worked with project partners FleischmanGarcia Architects and local restoration experts Restocon to renovate the century-old building’s exterior. The work included repairing brickwork, granite and ornate terracotta balustrades and cornices. With an impressive “layer cake” look, the building has an historical feeling. Current technology brings a new era to this grand building.\r\n\r\nThe Walbridge team utilized 3-D scanning, drone video flying, and still photography to capture the building conditions before construction then translated that information into a set of pre-work as-built documents.\r\n\r\nWith pedestrians, employees, and vehicles in mind, Walbridge’s continued commitment to safety on all worksites came into play during planning and construction phase and continued during the construction phase.\r\n\r\nWhen the building was first constructed in 1915, it had a price tag of $235,000. The project’s “layer-cake” design was created by renowned local architect M. Leo Elliott.\r\n\r\nNow completed, the building has been restored to its 1915 glory and is compatible with the history that radiates from the building. Tampa Old City Hall is listed as a National Historic Building on the Register for Historic Places.\r\n','Corporate Center Tampa - I,II,III,IV','','publish','open','open','','corporate-center','','','2019-01-13 08:57:12','2019-01-13 13:57:12','',0,'https://dhoistage.concertium.com/?page_id=994',0,'page','',0),(995,1,'2019-01-13 08:53:38','2019-01-13 13:53:38','','Corporate Center Tampa - I,II,III,IV','','inherit','open','open','','994-revision-v1','','','2019-01-13 08:53:38','2019-01-13 13:53:38','',994,'https://dhoistage.concertium.com/994-revision-v1/',0,'revision','',0),(996,1,'2019-01-13 08:54:01','2019-01-13 13:54:01','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-front.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-front-300x300.jpg\" alt=\"city-hall-elevation\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\nWith 100 years of history behind it, Tampa, Florida’s Old City Hall has seen its fair share of changes and played a major role in the advancement of the city.\r\n\r\nWalbridge performed design build services on this 100-year old facility in Tampa, Florida. Old City Hall has seen its fair share of changes and played a major role in the advancement of the City. With the use of modern technology, Walbridge transformed this high-profile building to look like it did a century ago.\r\n\r\nWalbridge worked with project partners FleischmanGarcia Architects and local restoration experts Restocon to renovate the century-old building’s exterior. The work included repairing brickwork, granite and ornate terracotta balustrades and cornices. With an impressive “layer cake” look, the building has an historical feeling. Current technology brings a new era to this grand building.\r\n\r\nThe Walbridge team utilized 3-D scanning, drone video flying, and still photography to capture the building conditions before construction then translated that information into a set of pre-work as-built documents.\r\n\r\nWith pedestrians, employees, and vehicles in mind, Walbridge’s continued commitment to safety on all worksites came into play during planning and construction phase and continued during the construction phase.\r\n\r\nWhen the building was first constructed in 1915, it had a price tag of $235,000. The project’s “layer-cake” design was created by renowned local architect M. Leo Elliott.\r\n\r\nNow completed, the building has been restored to its 1915 glory and is compatible with the history that radiates from the building. Tampa Old City Hall is listed as a National Historic Building on the Register for Historic Places.\r\n','Corporate Center Tampa - I,II,III,IV','','inherit','open','open','','994-revision-v1','','','2019-01-13 08:54:01','2019-01-13 13:54:01','',994,'https://dhoistage.concertium.com/994-revision-v1/',0,'revision','',0),(997,1,'2019-01-13 08:54:54','2019-01-13 13:54:54','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/corp-ctr3-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/corp-ctr3-1-300x300.jpg\" alt=\"city-hall-elevation\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\nWith 100 years of history behind it, Tampa, Florida’s Old City Hall has seen its fair share of changes and played a major role in the advancement of the city.\r\n\r\nWalbridge performed design build services on this 100-year old facility in Tampa, Florida. Old City Hall has seen its fair share of changes and played a major role in the advancement of the City. With the use of modern technology, Walbridge transformed this high-profile building to look like it did a century ago.\r\n\r\nWalbridge worked with project partners FleischmanGarcia Architects and local restoration experts Restocon to renovate the century-old building’s exterior. The work included repairing brickwork, granite and ornate terracotta balustrades and cornices. With an impressive “layer cake” look, the building has an historical feeling. Current technology brings a new era to this grand building.\r\n\r\nThe Walbridge team utilized 3-D scanning, drone video flying, and still photography to capture the building conditions before construction then translated that information into a set of pre-work as-built documents.\r\n\r\nWith pedestrians, employees, and vehicles in mind, Walbridge’s continued commitment to safety on all worksites came into play during planning and construction phase and continued during the construction phase.\r\n\r\nWhen the building was first constructed in 1915, it had a price tag of $235,000. The project’s “layer-cake” design was created by renowned local architect M. Leo Elliott.\r\n\r\nNow completed, the building has been restored to its 1915 glory and is compatible with the history that radiates from the building. Tampa Old City Hall is listed as a National Historic Building on the Register for Historic Places.\r\n','Corporate Center Tampa - I,II,III,IV','','inherit','open','open','','994-revision-v1','','','2019-01-13 08:54:54','2019-01-13 13:54:54','',994,'https://dhoistage.concertium.com/994-revision-v1/',0,'revision','',0),(1000,1,'2019-01-13 08:58:49','2019-01-13 13:58:49','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 450px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/corporate-center/\">Corporate Center Tampa - I,II,III,IV</a>\r\n Gunn-Allen\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/corporate-center\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/corp-ctr3-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 08:58:49','2019-01-13 13:58:49','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1001,1,'2019-01-13 08:59:14','2019-01-13 13:59:14','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 450px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/corporate-center/\">Corporate Center Tampa - I,II,III,IV</a>\r\n Gunn-Allen\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/corporate-center\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/corp-ctr3-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Corporate Center IV</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 08:59:14','2019-01-13 13:59:14','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1002,1,'2019-01-13 09:00:28','2019-01-13 14:00:28','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 450px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/corporate-center/\">Corporate Center Tampa - I,II,III,IV</a>\r\n Gunn-Allen\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/corporate-center\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/corp-ctr3-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Corporate Center IV</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/sawgrass-aerial1-300x300.jpg\" alt=\"saw\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sawgrass Marriott</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 09:00:28','2019-01-13 14:00:28','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1009,1,'2019-01-13 09:18:52','2019-01-13 14:18:52','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 09:18:52','2019-01-13 14:18:52','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1003,1,'2019-01-13 09:03:59','2019-01-13 14:03:59','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n <ul>\r\n <li><a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a></li>\r\n <li>FDOT</li>\r\n </ul> \r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 450px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/corporate-center/\">Corporate Center Tampa - I,II,III,IV</a>\r\n Gunn-Allen\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/corporate-center\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/corp-ctr3-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Corporate Center IV</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/sawgrass-aerial1-300x300.jpg\" alt=\"saw\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sawgrass Marriott</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 09:03:59','2019-01-13 14:03:59','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1004,1,'2019-01-13 09:04:24','2019-01-13 14:04:24','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n <ul>\r\n <li> <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a></li>\r\n <li> FDOT </li>\r\n </ul> \r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 450px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/corporate-center/\">Corporate Center Tampa - I,II,III,IV</a>\r\n Gunn-Allen\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/corporate-center\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/corp-ctr3-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Corporate Center IV</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/sawgrass-aerial1-300x300.jpg\" alt=\"saw\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sawgrass Marriott</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 09:04:24','2019-01-13 14:04:24','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1005,1,'2019-01-13 09:08:05','2019-01-13 14:08:05','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 09:08:05','2019-01-13 14:08:05','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1007,1,'2019-01-13 09:17:27','2019-01-13 14:17:27','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"6\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 09:17:27','2019-01-13 14:17:27','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1006,1,'2019-01-13 09:09:31','2019-01-13 14:09:31','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Government</span>\r\n<ul>\r\n<li><a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a></li>\r\n</ul>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 09:09:31','2019-01-13 14:09:31','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1008,1,'2019-01-13 09:17:46','2019-01-13 14:17:46','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"4\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Education</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Medical</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hospitality</span>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Office</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 09:17:46','2019-01-13 14:17:46','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1010,1,'2019-01-13 09:19:59','2019-01-13 14:19:59','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n * <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 09:19:59','2019-01-13 14:19:59','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1011,1,'2019-01-13 09:20:12','2019-01-13 14:20:12','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n - <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sparkman Wharf</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-13 09:20:12','2019-01-13 14:20:12','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1013,1,'2019-01-21 14:20:41','2019-01-21 19:20:41','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA).\r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings.\r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:</br>Exterior openings</div>\r\n<div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div>\r\n<div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour:</br> Shaft, exit vestibule, exit passageway</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</div>\r\n<div class=\"divTableCell\">1 hour</br>45 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div>\r\n<div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div>\r\n<div class=\"divTableCell\">1 hour</div>\r\n<div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3</div>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n \r\n\r\n<span style=\"font-size: xx-large;\">Fire rated door with glass</span>\r\n\r\nWhen using glass in a fire rated opening, the most common is 3/16\" ceramic style glasses. The hourly rating of the opening defines the number of lites and the allowed size of total visible glass in a fire rated opening. The fire rating is preserved iff and only if the glass is used with an approved lite kit. Glass is allowed in all fire rated assemblies aside from 3 hours unless otherwise noted by your local building code. The table below contains a listing of limitations of glass size and number of vision lites for a single opening.\r\n\r\n<center>\r\n<span style=\"font-size: large;\">3/16\" Ceramic glass</span>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Fire rating</div>\r\n<div class=\"divTableHead\">Max exposed</br>area (sq. in)</div>\r\n<div class=\"divTableHead\">Max width</div>\r\n<div class=\"divTableHead\">Max height</div>\r\n<div class=\"divTableHead\">Number of lites</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. w/o Hose</div>\r\n<div class=\"divTableCell\">2,835</div>\r\n<div class=\"divTableCell\">35\"</div>\r\n<div class=\"divTableCell\">81\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. & 45 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">60 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">90 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">180 min.</div>\r\n<div class=\"divTableCell\">100</div>\r\n<div class=\"divTableCell\">12\"</div>\r\n<div class=\"divTableCell\">33\"</div>\r\n<div class=\"divTableCell\">1</div>\r\n</div>\r\n</div>\r\n</div>\r\n</center>','Fire rated openings','','publish','open','open','','fire-rated-openings','','\nhttps://dhoistage.concertium.com/sawgrass-marriott/','2019-01-28 10:18:49','2019-01-28 15:18:49','',0,'https://dhoistage.concertium.com/?p=1013',0,'post','',0),(1014,1,'2019-01-21 14:20:41','2019-01-21 19:20:41','List max allowed visible glass\r\nPositive pressure, neutral pressure ...\r\nClosers ','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-21 14:20:41','2019-01-21 19:20:41','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1015,1,'2019-01-28 07:03:23','2019-01-28 12:03:23','<span style=\"font-size: xx-large;\"><strong>About DHOI</strong></span>\r\n\r\nDoor and hardware openings is a leader in the industry of architectual doors and finish hardware. For the past 30 years, DHOI has been providing project management and consulting for many projects all over the U.S.A and many international projects. With such a strong and skilled sales force, no project is too small or too large!\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>What sets DHOI apart</strong></span>\r\n\r\nDHOI is more than the average door and hardware supplier. We maintain an extensive inventory of Division 8 finish hardware suited for fire rated openings, impact safety openings as well as handicap openings. We carry many products from the major vendors approved for many building projects such as Schlage, Sargent, Von Duprin and many more. \r\nIn addition to our vast hardware supply, we also stock commercial doors and frames in many standard sizes. Since not every project is comprised of standard off the shelf materials, we are able to provide customizations to your openings with our in house wood and metal machine shops. Finally, what rea\r\nDHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>The Mission</strong></span>\r\nProvide codt and time efficient solutions for your project through expert technical knowledge and professionalism. The cornerstone of our mission is to create long lasting working relationships with our customers and seek to always provide reliable customer service.','','','inherit','open','open','','9-revision-v1','','','2019-01-28 07:03:23','2019-01-28 12:03:23','',9,'https://dhoistage.concertium.com/9-revision-v1/',0,'revision','',0),(1016,1,'2019-01-28 07:03:59','2019-01-28 12:03:59','<span style=\"font-size: xx-large;\"><strong>About DHOI</strong></span>\r\n\r\nDoor and hardware openings is a leader in the industry of architectual doors and finish hardware. For the past 30 years, DHOI has been providing project management and consulting for many projects all over the USA and many international projects. With such a strong and skilled sales force, no project is too small or too large!\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>What sets DHOI apart</strong></span>\r\n\r\nDHOI is more than the average door and hardware supplier. We maintain an extensive inventory of Division 8 finish hardware suited for fire rated openings, impact safety openings as well as handicap openings. We carry many products from the major vendors approved for many building projects such as Schlage, Sargent, Von Duprin and many more. \r\nIn addition to our vast hardware supply, we also stock commercial doors and frames in many standard sizes. Since not every project is comprised of standard off the shelf materials, we are able to provide customizations to your openings with our in house wood and metal machine shops. Finally, what rea\r\nDHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>The Mission</strong></span>\r\nProvide codt and time efficient solutions for your project through expert technical knowledge and professionalism. The cornerstone of our mission is to create long lasting working relationships with our customers and seek to always provide reliable customer service.','','','inherit','open','open','','9-revision-v1','','','2019-01-28 07:03:59','2019-01-28 12:03:59','',9,'https://dhoistage.concertium.com/9-revision-v1/',0,'revision','',0),(1017,1,'2019-01-28 07:04:12','2019-01-28 12:04:12','<span style=\"font-size: xx-large;\"><strong>About DHOI</strong></span>\r\n\r\nDoor and hardware openings is a leader in the industry of architectual doors and finish hardware. For the past 30 years, DHOI has been providing project management and consulting for many projects all over the USA and many international projects. With such a strong and skilled sales force, no project is too small or too large!\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>What sets DHOI apart</strong></span>\r\n\r\nDHOI is more than the average door and hardware supplier. We maintain an extensive inventory of Division 8 finish hardware suited for fire rated openings, impact safety openings as well as handicap openings. We carry many products from the major vendors approved for many building projects such as Schlage, Sargent, Von Duprin and many more. \r\nIn addition to our vast hardware supply, we also stock commercial doors and frames in many standard sizes. Since not every project is comprised of standard off the shelf materials, we are able to provide customizations to your openings with our in house wood and metal machine shops. Finally, what rea\r\nDHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>The Mission</strong></span>\r\nProvide codt and time efficient solutions for your project through expert technical knowledge and professionalism. The cornerstone of our mission is to create long lasting working relationships with our customers and seek to always provide reliable customer service.','About us','','inherit','open','open','','9-revision-v1','','','2019-01-28 07:04:12','2019-01-28 12:04:12','',9,'https://dhoistage.concertium.com/9-revision-v1/',0,'revision','',0),(1019,1,'2019-01-28 07:09:56','2019-01-28 12:09:56','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n - <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sparkman-wharf/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sparkman-1-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-28 07:09:56','2019-01-28 12:09:56','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1020,1,'2019-01-28 07:10:27','2019-01-28 12:10:27','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/sawgrass-interior.jpeg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/sawgrass-interior-300x300.jpeg\" alt=\"sawgrass\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n Jacksonville, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','Sawgrass Marriott Resort & Spa - Ponte Vedra','','inherit','open','open','','989-revision-v1','','','2019-01-28 07:10:27','2019-01-28 12:10:27','',989,'https://dhoistage.concertium.com/989-revision-v1/',0,'revision','',0),(1021,1,'2019-01-28 07:12:41','2019-01-28 12:12:41','','sawgrass-marriott','','inherit','open','open','','sawgrass-marriott-2','','','2019-01-28 07:12:41','2019-01-28 12:12:41','',988,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott.jpg',0,'attachment','image/jpeg',0),(1022,1,'2019-01-28 07:12:41','2019-01-28 12:12:41','','sawgrass-marriott-ext','','inherit','open','open','','sawgrass-marriott-ext','','','2019-01-28 07:12:41','2019-01-28 12:12:41','',988,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext.jpg',0,'attachment','image/jpeg',0),(1023,1,'2019-01-28 07:13:50','2019-01-28 12:13:50','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n - <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext-300x300.jpg\" alt=\"spark\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-28 07:13:50','2019-01-28 12:13:50','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1024,1,'2019-01-28 07:15:12','2019-01-28 12:15:12','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n - <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-28 07:15:12','2019-01-28 12:15:12','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1025,1,'2019-01-28 07:20:35','2019-01-28 12:20:35','','sawgrass-marriott-ext','','inherit','open','open','','sawgrass-marriott-ext-2','','','2019-01-28 07:20:35','2019-01-28 12:20:35','',0,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext1.jpg',0,'attachment','image/jpeg',0),(1026,1,'2019-01-28 07:20:49','2019-01-28 12:20:49','','sawgrass-marriott-int2','','inherit','open','open','','sawgrass-marriott-int2','','','2019-01-28 07:20:49','2019-01-28 12:20:49','',0,'https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-int2.jpg',0,'attachment','image/jpeg',0),(1027,1,'2019-01-28 07:21:46','2019-01-28 12:21:46','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n - <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext1-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-28 07:21:46','2019-01-28 12:21:46','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1028,1,'2019-01-28 07:22:34','2019-01-28 12:22:34','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/sawgrass-interior.jpeg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-int2-300x300.jpg\" alt=\"sawgrass\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n Jacksonville, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','Sawgrass Marriott Resort & Spa - Ponte Vedra','','inherit','open','open','','989-revision-v1','','','2019-01-28 07:22:34','2019-01-28 12:22:34','',989,'https://dhoistage.concertium.com/989-revision-v1/',0,'revision','',0),(1029,1,'2019-01-28 07:22:54','2019-01-28 12:22:54','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-int2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-int2-300x300.jpg\" alt=\"sawgrass\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n Jacksonville, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','Sawgrass Marriott Resort & Spa - Ponte Vedra','','inherit','open','open','','989-revision-v1','','','2019-01-28 07:22:54','2019-01-28 12:22:54','',989,'https://dhoistage.concertium.com/989-revision-v1/',0,'revision','',0),(1030,1,'2019-01-28 07:30:03','2019-01-28 12:30:03','','corp-ctr3-1-scaled','','inherit','open','open','','corp-ctr3-1-scaled','','','2019-01-28 07:30:03','2019-01-28 12:30:03','',75,'https://dhoistage.concertium.com/wp-content/uploads/2014/06/corp-ctr3-1-scaled.jpg',0,'attachment','image/jpeg',0),(1031,1,'2019-01-28 07:35:15','2019-01-28 12:35:15','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Expansion</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner Highschool\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\">Corporate Center Tampa - I,II,III,IV</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext1-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-28 07:35:15','2019-01-28 12:35:15','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1033,1,'2019-01-28 07:42:36','2019-01-28 12:42:36','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner High school\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext1-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-28 07:42:36','2019-01-28 12:42:36','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1032,1,'2019-01-28 07:41:37','2019-01-28 12:41:37','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner High school\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext1-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-28 07:41:37','2019-01-28 12:41:37','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1040,1,'2019-01-28 07:49:21','2019-01-28 12:49:21','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner High school\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n \r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Specialty facilities</font>\r\n\r\n The Florida Aquarium\r\n Unilens Bausch + Lomb\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext1-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-28 07:49:21','2019-01-28 12:49:21','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1034,1,'2019-01-28 07:43:17','2019-01-28 12:43:17','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner High school\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext1-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-28 07:43:17','2019-01-28 12:43:17','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1035,1,'2019-01-28 07:43:46','2019-01-28 12:43:46','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner High school\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext1-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-28 07:43:46','2019-01-28 12:43:46','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1037,1,'2019-01-28 07:44:32','2019-01-28 12:44:32','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner High school\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext1-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-28 07:44:32','2019-01-28 12:44:32','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1036,1,'2019-01-28 07:44:12','2019-01-28 12:44:12','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner High school\r\n </div>\r\n\r\n\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext1-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-28 07:44:12','2019-01-28 12:44:12','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1038,1,'2019-01-28 07:47:32','2019-01-28 12:47:32','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner High school\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Specialty facilities</font>\r\n\r\n The Florida Aquarium\r\n Unilens Bausch + Lomb - Clearwater, FL\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext1-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-28 07:47:32','2019-01-28 12:47:32','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1039,1,'2019-01-28 07:47:57','2019-01-28 12:47:57','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner High school\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\">Gunn-Allen</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Specialty facilities</font>\r\n\r\n The Florida Aquarium\r\n Unilens Bausch + Lomb\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext1-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','open','open','','782-revision-v1','','','2019-01-28 07:47:57','2019-01-28 12:47:57','',782,'https://dhoistage.concertium.com/782-revision-v1/',0,'revision','',0),(1041,1,'2019-01-28 10:13:46','2019-01-28 15:13:46','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA).\n\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings.\n\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\n\n \n<div class=\"divTable blueTable\">\n<div class=\"divTableHeading\">\n<div class=\"divTableRow\">\n<div class=\"divTableHead\">Wall Assembly</div>\n<div class=\"divTableHead\">Required assembly fire rating</div>\n<div class=\"divTableHead\">Minimum door fire rating</div>\n</div>\n</div>\n<div class=\"divTableBody\">\n<div class=\"divTableRow\">\n<div class=\"divTableCell\">Fire wall greater than 1 hour:Exterior openings</div>\n<div class=\"divTableCell\">4 hours3 hours2 hours90 minute</div>\n<div class=\"divTableCell\">3 hours3 hours90 minute90 minute</div>\n</div>\n<div class=\"divTableRow\">\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div>\n<div class=\"divTableCell\">1 hour</br>1 hour</div>\n<div class=\"divTableCell\">1 hour</br>45 minute</div>\n</div>\n<div class=\"divTableRow\">\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div>\n<div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div>\n<div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div>\n</div>\n<div class=\"divTableRow\">\n<div class=\"divTableCell\">Smoke partitions</div>\n<div class=\"divTableCell\">1 hour</div>\n<div class=\"divTableCell\">20 minute*</div>\n</div>\n<div class=\"divTableRow\">\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3</div>\n</div>\n</div>\n \n\n<span style=\"font-size: xx-large;\">Fire rated opening with glass</span>\n\nWhen using glass in a fire rated opening, the most common is 3/16\" ceramic style glasses. The hourly rating of the opening defines the number of lites and the allowed size of total visible glass in a fire rated opening. The fire rating is preserved iff and only if the glass is used with an approved lite kit. Glass is allowed in all fire rated assemblies aside from 3 hours unless otherwise noted by your local building code. The table below contains a listing of limitations of glass size and number of vision lites for a single opening.\n\n<center>\n<span style=\"font-size: large;\">3/16\" Ceramic glass</span></center>\n<div class=\"divTable blueTable\">\n<div class=\"divTableHeading\">\n<div class=\"divTableRow\">\n<div class=\"divTableHead\">Fire rating</div>\n<div class=\"divTableHead\">Max exposed area (sq. in)</div>\n<div class=\"divTableHead\">Max width</div>\n<div class=\"divTableHead\">Max height</div>\n<div class=\"divTableHead\">Number of lites</div>\n</div>\n</div>\n<div class=\"divTableBody\">\n<div class=\"divTableRow\">\n<div class=\"divTableCell\">20 min. w/o Hose</div>\n<div class=\"divTableCell\">2,835</div>\n<div class=\"divTableCell\">35\"</div>\n<div class=\"divTableCell\">81\"</div>\n<div class=\"divTableCell\">No limit</div>\n</div>\n<div class=\"divTableRow\">\n<div class=\"divTableCell\">20 min. & 45 min.</div>\n<div class=\"divTableCell\">1,296</div>\n<div class=\"divTableCell\">36\"</div>\n<div class=\"divTableCell\">54\"</div>\n<div class=\"divTableCell\">No limit</div>\n</div>\n<div class=\"divTableRow\">\n<div class=\"divTableCell\">60 min.</div>\n<div class=\"divTableCell\">1,296</div>\n<div class=\"divTableCell\">36\"</div>\n<div class=\"divTableCell\">54\"</div>\n<div class=\"divTableCell\">No limit</div>\n</div>\n<div class=\"divTableRow\">\n<div class=\"divTableCell\">90 min.</div>\n<div class=\"divTableCell\">1,296</div>\n<div class=\"divTableCell\">36\"</div>\n<div class=\"divTableCell\">54\"</div>\n<div class=\"divTableCell\">No limit</div>\n</div>\n<div class=\"divTableRow\">\n<div class=\"divTableCell\">180 min.</div>\n<div class=\"divTableCell\">100</div>\n<div class=\"divTableCell\">12\"</div>\n<div class=\"divTableCell\">33\"</div>\n<div class=\"divTableCell\">1</div>\n</div>\n</div>\n \n\n</div>\n</div>','Fire rated openings','','inherit','open','open','','1013-autosave-v1','','','2019-01-28 10:13:46','2019-01-28 15:13:46','',1013,'https://dhoistage.concertium.com/1013-autosave-v1/',0,'revision','',0),(1042,1,'2019-01-28 08:31:34','2019-01-28 13:31:34','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table>\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire resistance greater than 1 hour</td>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Exterior walls</td>\r\n <td>Smoke barriers</td>\r\n </tr>\r\n <tr>\r\n <td>Michelle\\\\Mich</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Michelle</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:31:34','2019-01-28 13:31:34','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1043,1,'2019-01-28 08:31:54','2019-01-28 13:31:54','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table>\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire resistance greater than 1 hour</td>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Exterior walls</td>\r\n <td>Smoke barriers</td>\r\n </tr>\r\n <tr>\r\n <td>Michelle\\\\Mich</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Michelle</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:31:54','2019-01-28 13:31:54','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1051,1,'2019-01-28 08:41:57','2019-01-28 13:41:57','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table>\r\n <col width=\"400\">\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire </br>resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:41:57','2019-01-28 13:41:57','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1045,1,'2019-01-28 08:37:05','2019-01-28 13:37:05','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table>\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Michelle</td>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:37:05','2019-01-28 13:37:05','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1044,1,'2019-01-28 08:36:31','2019-01-28 13:36:31','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table>\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Michelle</td>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:36:31','2019-01-28 13:36:31','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1046,1,'2019-01-28 08:37:23','2019-01-28 13:37:23','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table>\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:37:23','2019-01-28 13:37:23','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1047,1,'2019-01-28 08:38:42','2019-01-28 13:38:42','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table>\r\n <col width=\"130\">\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:38:42','2019-01-28 13:38:42','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1048,1,'2019-01-28 08:38:53','2019-01-28 13:38:53','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table>\r\n <col width=\"300\">\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:38:53','2019-01-28 13:38:53','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1049,1,'2019-01-28 08:39:20','2019-01-28 13:39:20','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table>\r\n <col width=\"400\">\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:39:20','2019-01-28 13:39:20','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1050,1,'2019-01-28 08:40:45','2019-01-28 13:40:45','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table>\r\n <col width=\"400\">\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td><pre>Fire wall having a required fire\r\n resistance greater than 1 hour</pre></td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:40:45','2019-01-28 13:40:45','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1052,1,'2019-01-28 08:45:23','2019-01-28 13:45:23','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table border=\"1\">\r\n <col width=\"400\">\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire </br>resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:45:23','2019-01-28 13:45:23','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1053,1,'2019-01-28 08:45:45','2019-01-28 13:45:45','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table border=\"1\">\r\n <col width=\"400\">\r\n <col width=\"200\">\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire </br>resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:45:45','2019-01-28 13:45:45','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1054,1,'2019-01-28 08:45:58','2019-01-28 13:45:58','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table border=\"1\">\r\n <col width=\"400\">\r\n <col width=\"200\">\r\n <col width=\"200\">\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire </br>resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:45:58','2019-01-28 13:45:58','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1055,1,'2019-01-28 08:46:15','2019-01-28 13:46:15','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table border=\"1\">\r\n <col width=\"300\">\r\n <col width=\"200\">\r\n <col width=\"200\">\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire </br>resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:46:15','2019-01-28 13:46:15','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1059,1,'2019-01-28 08:51:25','2019-01-28 13:51:25','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table width=\"50%\">\r\n <col width=\"300\">\r\n <col width=\"200\">\r\n <col width=\"200\">\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire </br>resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:51:25','2019-01-28 13:51:25','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1056,1,'2019-01-28 08:47:13','2019-01-28 13:47:13','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table border=\"1\" width=\"70%\">\r\n <col width=\"300\">\r\n <col width=\"200\">\r\n <col width=\"200\">\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire </br>resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:47:13','2019-01-28 13:47:13','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1057,1,'2019-01-28 08:47:36','2019-01-28 13:47:36','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table border=\"1\" width=\"50%\">\r\n <col width=\"300\">\r\n <col width=\"200\">\r\n <col width=\"200\">\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire </br>resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:47:36','2019-01-28 13:47:36','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1058,1,'2019-01-28 08:49:02','2019-01-28 13:49:02','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table border=\"1\"; width=\"50%\">\r\n <col width=\"300\">\r\n <col width=\"200\">\r\n <col width=\"200\">\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire </br>resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:49:02','2019-01-28 13:49:02','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1060,1,'2019-01-28 08:51:57','2019-01-28 13:51:57','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table width=\"700\">\r\n <col width=\"300\">\r\n <col width=\"200\">\r\n <col width=\"200\">\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire </br>resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:51:57','2019-01-28 13:51:57','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1061,1,'2019-01-28 08:52:26','2019-01-28 13:52:26','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<table width=\"500\">\r\n <col width=\"300\">\r\n <col width=\"200\">\r\n <col width=\"200\">\r\n <tr>\r\n <th>Wall Assembly</th>\r\n <th>Required fire rating</th>\r\n <th>Minimum door rating</th>\r\n </tr>\r\n <tr>\r\n <td>Fire wall having a required fire </br>resistance greater than 1 hour</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour rating: Shaft, exit enclosure, exit passageway</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>1 hour or less: Corridor walls, Other fire partitions</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Exterior walls</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n <tr>\r\n <td>Smoke barriers</td>\r\n <td>Purple</td>\r\n <td>Purple</td>\r\n </tr>\r\n</table>\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:52:26','2019-01-28 13:52:26','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1064,1,'2019-01-28 08:58:13','2019-01-28 13:58:13','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Wall Assembly</font>\r\n Required fire resistance greater than 1 hour: Exterior walls\r\n Required 1 hour rating: Shaft, exit enclosure, exit passageway\r\n Less than 1 hour rating: Corridor walls, otehr fire partitions\r\n Smoke barrier: Interior partitions\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Fire rating</font>\r\ns\r\ns\r\ns\r\ns\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Minimum door rating</font>\r\ns\r\ns\r\ns\r\ns\r\n </div>\r\n </div>\r\n</center>\r\n \r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:58:13','2019-01-28 13:58:13','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1062,1,'2019-01-28 08:55:42','2019-01-28 13:55:42','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Wall Assembly</font>\r\n Greater than 1 hour\r\n 1 hour rating\r\n Less than 1 hour rating\r\n Smoke barrier\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Fire rating</font>\r\ns\r\ns\r\ns\r\ns\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\ns\r\ns\r\ns\r\ns\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n\r\n</center>\r\n \r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:55:42','2019-01-28 13:55:42','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1063,1,'2019-01-28 08:56:18','2019-01-28 13:56:18','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Wall Assembly</font>\r\n Greater than 1 hour\r\n 1 hour rating\r\n Less than 1 hour rating\r\n Smoke barrier\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Fire rating</font>\r\ns\r\ns\r\ns\r\ns\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Minimum door rating</font>\r\ns\r\ns\r\ns\r\ns\r\n </div>\r\n </div>\r\n</center>\r\n \r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:56:18','2019-01-28 13:56:18','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1065,1,'2019-01-28 08:58:52','2019-01-28 13:58:52','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Wall Assembly</font>\r\n Required fire resistance greater than 1 hour: Exterior walls\r\n Required 1 hour rating: Shaft, exit enclosure, exit passageway\r\n Less than 1 hour rating: Corridor walls, otehr fire partitions\r\n Smoke barrier: Interior partitions\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Required assembly rating</font>\r\n4 hours\r\n3 hours\r\n2 hours\r\n1.5 hours\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Minimum door rating</font>\r\ns\r\ns\r\ns\r\ns\r\n </div>\r\n </div>\r\n</center>\r\n \r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:58:52','2019-01-28 13:58:52','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1066,1,'2019-01-28 08:59:22','2019-01-28 13:59:22','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Wall Assembly</font>\r\n\r\n Required fire resistance greater than 1 hour: Exterior walls\r\n Required 1 hour rating: Shaft, exit enclosure, exit passageway\r\n Less than 1 hour rating: Corridor walls, otehr fire partitions\r\n Smoke barrier: Interior partitions\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Required assembly rating</font>\r\n\r\n4 hours\r\n3 hours\r\n2 hours\r\n1.5 hours\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Minimum door rating</font>\r\n \r\ns\r\ns\r\ns\r\ns\r\n </div>\r\n </div>\r\n</center>\r\n \r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 08:59:22','2019-01-28 13:59:22','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1067,1,'2019-01-28 09:00:13','2019-01-28 14:00:13','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Wall Assembly</font>\r\n\r\n Required fire resistance greater than 1 hour: Exterior walls\r\n Required 1 hour rating: Shaft, exit enclosure, exit passageway\r\n Less than 1 hour rating: Corridor walls, otehr fire partitions\r\n Smoke barrier: Interior partitions\r\n </div>\r\n\r\n <div style=\"width: 250px; display: table-cell;\">\r\n <font size=\"5\">Required assembly rating</font>\r\n\r\n4 hours\r\n3 hours\r\n2 hours\r\n1.5 hours\r\n </div>\r\n\r\n <div style=\"width: 250px; display: table-cell;\">\r\n <font size=\"5\">Minimum door rating</font>\r\n \r\n3 hours\r\n </div>\r\n </div>\r\n</center>\r\n \r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:00:13','2019-01-28 14:00:13','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1068,1,'2019-01-28 09:08:20','2019-01-28 14:08:20','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Wall Assembly</font>\r\n\r\n Required fire resistance greater than 1 hour: Exterior walls\r\n Required 1 hour rating: Shaft, exit enclosure, exit passageway\r\n Less than 1 hour rating: Corridor walls, otehr fire partitions\r\n Smoke barrier: Interior partitions\r\n </div>\r\n\r\n <div style=\"width: 250px; display: table-cell; border: 1px solid black\">\r\n <font size=\"5\">Required assembly rating</font>\r\n\r\n4 hours</br>\r\n3 hours</br>\r\n2 hours</br>\r\n1.5 hours</br>\r\n </div>\r\n\r\n <div style=\"width: 250px; display: table-cell;\">\r\n <font size=\"5\">Minimum door rating</font>\r\n \r\n3 hours\r\n </div>\r\n </div>\r\n</center>\r\n \r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:08:20','2019-01-28 14:08:20','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1070,1,'2019-01-28 09:22:24','2019-01-28 14:22:24','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">head1</div>\r\n<div class=\"divTableHead\">head2</div>\r\n<div class=\"divTableHead\">head3</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_1</div><div class=\"divTableCell\">cell2_1</div><div class=\"divTableCell\">cell3_1</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_2</div><div class=\"divTableCell\">cell2_2</div><div class=\"divTableCell\">cell3_2</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_3</div><div class=\"divTableCell\">cell2_3</div><div class=\"divTableCell\">cell3_3</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_4</div><div class=\"divTableCell\">cell2_4</div><div class=\"divTableCell\">cell3_4</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_5</div><div class=\"divTableCell\">cell2_5</div><div class=\"divTableCell\">cell3_5</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_6</div><div class=\"divTableCell\">cell2_6</div><div class=\"divTableCell\">cell3_6</div></div>\r\n</div>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:22:24','2019-01-28 14:22:24','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1069,1,'2019-01-28 09:17:06','2019-01-28 14:17:06','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n\r\n<div class=\"divTable cinereousTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">head1</div>\r\n<div class=\"divTableHead\">head2</div>\r\n<div class=\"divTableHead\">head3</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_1</div>\r\n<div class=\"divTableCell\">cell2_1</div>\r\n<div class=\"divTableCell\">cell3_1</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_2</div>\r\n<div class=\"divTableCell\">cell2_2</div>\r\n<div class=\"divTableCell\">cell3_2</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_3</div>\r\n<div class=\"divTableCell\">cell2_3</div>\r\n<div class=\"divTableCell\">cell3_3</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_4</div>\r\n<div class=\"divTableCell\">cell2_4</div>\r\n<div class=\"divTableCell\">cell3_4</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_5</div>\r\n<div class=\"divTableCell\">cell2_5</div>\r\n<div class=\"divTableCell\">cell3_5</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_6</div>\r\n<div class=\"divTableCell\">cell2_6</div>\r\n<div class=\"divTableCell\">cell3_6</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_7</div>\r\n<div class=\"divTableCell\">cell2_7</div>\r\n<div class=\"divTableCell\">cell3_7</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_8</div>\r\n<div class=\"divTableCell\">cell2_8</div>\r\n<div class=\"divTableCell\">cell3_8</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableFoot tableFootStyle\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">foot1</div>\r\n<div class=\"divTableCell\">foot2</div>\r\n<div class=\"divTableCell\">foot3</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Wall Assembly</font>\r\n\r\n Required fire resistance greater than 1 hour: Exterior walls\r\n Required 1 hour rating: Shaft, exit enclosure, exit passageway\r\n Less than 1 hour rating: Corridor walls, otehr fire partitions\r\n Smoke barrier: Interior partitions\r\n </div>\r\n\r\n <div style=\"width: 250px; display: table-cell; border: 1px solid black\">\r\n <font size=\"5\">Required assembly rating</font>\r\n\r\n4 hours</br>\r\n3 hours</br>\r\n2 hours</br>\r\n1.5 hours</br>\r\n </div>\r\n\r\n <div style=\"width: 250px; display: table-cell;\">\r\n <font size=\"5\">Minimum door rating</font>\r\n \r\n3 hours\r\n </div>\r\n </div>\r\n</center>\r\n \r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:17:06','2019-01-28 14:17:06','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1071,1,'2019-01-28 09:23:15','2019-01-28 14:23:15','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">head1</div>\r\n<div class=\"divTableHead\">head2</div>\r\n<div class=\"divTableHead\">head3</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_1</div><div class=\"divTableCell\">cell2_1</div><div class=\"divTableCell\">cell3_1</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_2</div><div class=\"divTableCell\">cell2_2</div><div class=\"divTableCell\">cell3_2</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_3</div><div class=\"divTableCell\">cell2_3</div><div class=\"divTableCell\">cell3_3</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_4</div><div class=\"divTableCell\">cell2_4</div><div class=\"divTableCell\">cell3_4</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_5</div><div class=\"divTableCell\">cell2_5</div><div class=\"divTableCell\">cell3_5</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_6</div><div class=\"divTableCell\">cell2_6</div><div class=\"divTableCell\">cell3_6</div></div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:23:15','2019-01-28 14:23:15','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1072,1,'2019-01-28 09:25:05','2019-01-28 14:25:05','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>1 hour</br>90 minute</div><div class=\"divTableCell\">cell3_1</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_2</div><div class=\"divTableCell\">cell2_2</div><div class=\"divTableCell\">cell3_2</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_3</div><div class=\"divTableCell\">cell2_3</div><div class=\"divTableCell\">cell3_3</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_4</div><div class=\"divTableCell\">cell2_4</div><div class=\"divTableCell\">cell3_4</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_5</div><div class=\"divTableCell\">cell2_5</div><div class=\"divTableCell\">cell3_5</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_6</div><div class=\"divTableCell\">cell2_6</div><div class=\"divTableCell\">cell3_6</div></div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:25:05','2019-01-28 14:25:05','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1073,1,'2019-01-28 09:25:58','2019-01-28 14:25:58','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>1 hour</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours*</br>90 minute</br>1 hour</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_2</div><div class=\"divTableCell\">cell2_2</div><div class=\"divTableCell\">cell3_2</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_3</div><div class=\"divTableCell\">cell2_3</div><div class=\"divTableCell\">cell3_3</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_4</div><div class=\"divTableCell\">cell2_4</div><div class=\"divTableCell\">cell3_4</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_5</div><div class=\"divTableCell\">cell2_5</div><div class=\"divTableCell\">cell3_5</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_6</div><div class=\"divTableCell\">cell2_6</div><div class=\"divTableCell\">cell3_6</div></div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:25:58','2019-01-28 14:25:58','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1074,1,'2019-01-28 09:26:14','2019-01-28 14:26:14','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>1 hour</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours*</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_2</div><div class=\"divTableCell\">cell2_2</div><div class=\"divTableCell\">cell3_2</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_3</div><div class=\"divTableCell\">cell2_3</div><div class=\"divTableCell\">cell3_3</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_4</div><div class=\"divTableCell\">cell2_4</div><div class=\"divTableCell\">cell3_4</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_5</div><div class=\"divTableCell\">cell2_5</div><div class=\"divTableCell\">cell3_5</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_6</div><div class=\"divTableCell\">cell2_6</div><div class=\"divTableCell\">cell3_6</div></div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:26:14','2019-01-28 14:26:14','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1075,1,'2019-01-28 09:26:32','2019-01-28 14:26:32','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours*</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_2</div><div class=\"divTableCell\">cell2_2</div><div class=\"divTableCell\">cell3_2</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_3</div><div class=\"divTableCell\">cell2_3</div><div class=\"divTableCell\">cell3_3</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_4</div><div class=\"divTableCell\">cell2_4</div><div class=\"divTableCell\">cell3_4</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_5</div><div class=\"divTableCell\">cell2_5</div><div class=\"divTableCell\">cell3_5</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_6</div><div class=\"divTableCell\">cell2_6</div><div class=\"divTableCell\">cell3_6</div></div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:26:32','2019-01-28 14:26:32','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1083,1,'2019-01-28 09:43:39','2019-01-28 14:43:39','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours*</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute**</br>20 minute</br>20 minute**</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute**</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:43:39','2019-01-28 14:43:39','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1080,1,'2019-01-28 09:33:15','2019-01-28 14:33:15','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours*</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute**</br>20 minute</br>20 minute**</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute**</div></div>\r\n\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:33:15','2019-01-28 14:33:15','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1076,1,'2019-01-28 09:27:40','2019-01-28 14:27:40','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours*</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>3/4 hour</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_3</div><div class=\"divTableCell\">cell2_3</div><div class=\"divTableCell\">cell3_3</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_4</div><div class=\"divTableCell\">cell2_4</div><div class=\"divTableCell\">cell3_4</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_5</div><div class=\"divTableCell\">cell2_5</div><div class=\"divTableCell\">cell3_5</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_6</div><div class=\"divTableCell\">cell2_6</div><div class=\"divTableCell\">cell3_6</div></div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:27:40','2019-01-28 14:27:40','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1082,1,'2019-01-28 09:42:55','2019-01-28 14:42:55','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours*</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute**</br>20 minute</br>20 minute**</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute**</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:42:55','2019-01-28 14:42:55','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1077,1,'2019-01-28 09:31:10','2019-01-28 14:31:10','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours*</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute**</br>20 minute</br>20 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_4</div><div class=\"divTableCell\">cell2_4</div><div class=\"divTableCell\">cell3_4</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_5</div><div class=\"divTableCell\">cell2_5</div><div class=\"divTableCell\">cell3_5</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_6</div><div class=\"divTableCell\">cell2_6</div><div class=\"divTableCell\">cell3_6</div></div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:31:10','2019-01-28 14:31:10','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1079,1,'2019-01-28 09:32:47','2019-01-28 14:32:47','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours*</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute**</br>20 minute</br>20 minute**</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute**</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_6</div><div class=\"divTableCell\">cell2_6</div><div class=\"divTableCell\">cell3_6</div></div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:32:47','2019-01-28 14:32:47','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1078,1,'2019-01-28 09:31:53','2019-01-28 14:31:53','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours*</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute**</br>20 minute</br>20 minute**</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_4</div><div class=\"divTableCell\">cell2_4</div><div class=\"divTableCell\">cell3_4</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_5</div><div class=\"divTableCell\">cell2_5</div><div class=\"divTableCell\">cell3_5</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">cell1_6</div><div class=\"divTableCell\">cell2_6</div><div class=\"divTableCell\">cell3_6</div></div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:31:53','2019-01-28 14:31:53','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1081,1,'2019-01-28 09:33:31','2019-01-28 14:33:31','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours*</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute**</br>20 minute</br>20 minute**</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute**</div></div>\r\n</div>\r\n\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:33:31','2019-01-28 14:33:31','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1084,1,'2019-01-28 09:44:11','2019-01-28 14:44:11','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours*</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute**</br>20 minute</br>20 minute**</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute**</div>\r\n</div>\r\n</div>\r\n<div class=\"divTable blueTable\">\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:44:11','2019-01-28 14:44:11','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1085,1,'2019-01-28 09:44:42','2019-01-28 14:44:42','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours*</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute**</br>20 minute</br>20 minute**</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute**</div>\r\n</div>\r\n</div>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:44:42','2019-01-28 14:44:42','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1087,1,'2019-01-28 09:45:42','2019-01-28 14:45:42','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours*</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute**</br>20 minute</br>20 minute**</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute**</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes:</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:45:42','2019-01-28 14:45:42','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1086,1,'2019-01-28 09:45:23','2019-01-28 14:45:23','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours*</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute**</br>20 minute</br>20 minute**</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute**</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes:</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\"></div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:45:23','2019-01-28 14:45:23','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1088,1,'2019-01-28 09:46:55','2019-01-28 14:46:55','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3 </div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:46:55','2019-01-28 14:46:55','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1089,1,'2019-01-28 09:49:50','2019-01-28 14:49:50','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3 </div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n\r\n<font size=\"6\">Fire rated opening with glass</font>\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:49:50','2019-01-28 14:49:50','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1090,1,'2019-01-28 09:50:22','2019-01-28 14:50:22','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour: Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3 </div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n \r\n \r\n<font size=\"6\">Fire rated opening with glass</font>\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:50:22','2019-01-28 14:50:22','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1091,1,'2019-01-28 09:51:22','2019-01-28 14:51:22','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:</br> Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour:</br> Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3 </div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n \r\n \r\n<font size=\"6\">Fire rated opening with glass</font>\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:51:22','2019-01-28 14:51:22','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1092,1,'2019-01-28 09:51:52','2019-01-28 14:51:52','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:</br>Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour:</br> Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3 </div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n \r\n \r\n<font size=\"6\">Fire rated opening with glass</font>\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 09:51:52','2019-01-28 14:51:52','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1093,1,'2019-01-28 10:05:04','2019-01-28 15:05:04','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:</br>Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour:</br> Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3 </div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n \r\n \r\n<font size=\"6\">Fire rated opening with glass</font>\r\n\r\nWhen using glass in a fire rated opening, the most common is 3/16\" ceramic style glasses. The hourly rating of the opening defines the number of lites and the allowed size of total visible glass in a fire rated opening. The fire rating is preserved iff and only if the glass is used with an approved lite kit. Glass is allowed in all fire rated assemblies aside from 3 hours unless otherwise noted by your local building code. The table below contains a listing of limitations of glass size and number of vision lites for a single opening.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Fire rating</div>\r\n<div class=\"divTableHead\">Max exposed area (sq. in)</div>\r\n<div class=\"divTableHead\">Max width</div>\r\n<div class=\"divTableHead\">Max height</div>\r\n<div class=\"divTableHead\">Number of lites</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. w/o Hose</div><div class=\"divTableCell\">2,835</div><div class=\"divTableCell\">35\"</div><div class=\"divTableCell\">81\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. & 45 min.</div><div class=\"divTableCell\">1,296</div><div class=\"divTableCell\">36\"</div><div class=\"divTableCell\">54\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">60 min.</div><div class=\"divTableCell\">1,296</div><div class=\"divTableCell\">36\"</div><div class=\"divTableCell\">54\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">90 min.</div><div class=\"divTableCell\">1,296</div><div class=\"divTableCell\">36\"</div><div class=\"divTableCell\">54\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">180 min.</div><div class=\"divTableCell\">100</div><div class=\"divTableCell\">12\"</div><div class=\"divTableCell\">33\"</div><div class=\"divTableCell\">1</div></div>\r\n\r\n</div>\r\n</center>\r\n\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 10:05:04','2019-01-28 15:05:04','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1094,1,'2019-01-28 10:05:26','2019-01-28 15:05:26','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:</br>Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour:</br> Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3 </div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n \r\n \r\n<font size=\"6\">Fire rated opening with glass</font>\r\n\r\nWhen using glass in a fire rated opening, the most common is 3/16\" ceramic style glasses. The hourly rating of the opening defines the number of lites and the allowed size of total visible glass in a fire rated opening. The fire rating is preserved iff and only if the glass is used with an approved lite kit. Glass is allowed in all fire rated assemblies aside from 3 hours unless otherwise noted by your local building code. The table below contains a listing of limitations of glass size and number of vision lites for a single opening.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Fire rating</div>\r\n<div class=\"divTableHead\">Max exposed</br> area (sq. in)</div>\r\n<div class=\"divTableHead\">Max width</div>\r\n<div class=\"divTableHead\">Max height</div>\r\n<div class=\"divTableHead\">Number of lites</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. w/o Hose</div><div class=\"divTableCell\">2,835</div><div class=\"divTableCell\">35\"</div><div class=\"divTableCell\">81\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. & 45 min.</div><div class=\"divTableCell\">1,296</div><div class=\"divTableCell\">36\"</div><div class=\"divTableCell\">54\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">60 min.</div><div class=\"divTableCell\">1,296</div><div class=\"divTableCell\">36\"</div><div class=\"divTableCell\">54\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">90 min.</div><div class=\"divTableCell\">1,296</div><div class=\"divTableCell\">36\"</div><div class=\"divTableCell\">54\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">180 min.</div><div class=\"divTableCell\">100</div><div class=\"divTableCell\">12\"</div><div class=\"divTableCell\">33\"</div><div class=\"divTableCell\">1</div></div>\r\n\r\n</div>\r\n</center>\r\n\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 10:05:26','2019-01-28 15:05:26','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1095,1,'2019-01-28 10:06:14','2019-01-28 15:06:14','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:</br>Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour:</br> Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3 </div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n \r\n \r\n<font size=\"6\">Fire rated opening with glass</font>\r\n\r\nWhen using glass in a fire rated opening, the most common is 3/16\" ceramic style glasses. The hourly rating of the opening defines the number of lites and the allowed size of total visible glass in a fire rated opening. The fire rating is preserved iff and only if the glass is used with an approved lite kit. Glass is allowed in all fire rated assemblies aside from 3 hours unless otherwise noted by your local building code. The table below contains a listing of limitations of glass size and number of vision lites for a single opening.\r\n\r\n<center>\r\n<font size=\"4\">3/16\" Ceramic glass</font>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Fire rating</div>\r\n<div class=\"divTableHead\">Max exposed</br> area (sq. in)</div>\r\n<div class=\"divTableHead\">Max width</div>\r\n<div class=\"divTableHead\">Max height</div>\r\n<div class=\"divTableHead\">Number of lites</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. w/o Hose</div><div class=\"divTableCell\">2,835</div><div class=\"divTableCell\">35\"</div><div class=\"divTableCell\">81\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. & 45 min.</div><div class=\"divTableCell\">1,296</div><div class=\"divTableCell\">36\"</div><div class=\"divTableCell\">54\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">60 min.</div><div class=\"divTableCell\">1,296</div><div class=\"divTableCell\">36\"</div><div class=\"divTableCell\">54\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">90 min.</div><div class=\"divTableCell\">1,296</div><div class=\"divTableCell\">36\"</div><div class=\"divTableCell\">54\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">180 min.</div><div class=\"divTableCell\">100</div><div class=\"divTableCell\">12\"</div><div class=\"divTableCell\">33\"</div><div class=\"divTableCell\">1</div></div>\r\n\r\n</div>\r\n</center>\r\n\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 10:06:14','2019-01-28 15:06:14','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1097,1,'2019-01-28 10:11:24','2019-01-28 15:11:24','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA). \r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings. \r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:</br>Exterior openings</div><div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div><div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour:</br> Shaft, exit vestibule, exit passageway</div><div class=\"divTableCell\">1 hour</br>1 hour</div><div class=\"divTableCell\">1 hour</br>45 minute</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div><div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div><div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div></div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div><div class=\"divTableCell\">1 hour</div><div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3 </div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n \r\n \r\n<font size=\"6\">Fire rated opening with glass</font>\r\n\r\nWhen using glass in a fire rated opening, the most common is 3/16\" ceramic style glasses. The hourly rating of the opening defines the number of lites and the allowed size of total visible glass in a fire rated opening. The fire rating is preserved iff and only if the glass is used with an approved lite kit. Glass is allowed in all fire rated assemblies aside from 3 hours unless otherwise noted by your local building code. The table below contains a listing of limitations of glass size and number of vision lites for a single opening.\r\n\r\n<center>\r\n<font size=\"4\">3/16\" Ceramic glass</font>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Fire rating</div>\r\n<div class=\"divTableHead\">Max exposed</br> area (sq. in)</div>\r\n<div class=\"divTableHead\">Max width</div>\r\n<div class=\"divTableHead\">Max height</div>\r\n<div class=\"divTableHead\">Number of lites</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. w/o Hose</div><div class=\"divTableCell\">2,835</div><div class=\"divTableCell\">35\"</div><div class=\"divTableCell\">81\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. & 45 min.</div><div class=\"divTableCell\">1,296</div><div class=\"divTableCell\">36\"</div><div class=\"divTableCell\">54\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">60 min.</div><div class=\"divTableCell\">1,296</div><div class=\"divTableCell\">36\"</div><div class=\"divTableCell\">54\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">90 min.</div><div class=\"divTableCell\">1,296</div><div class=\"divTableCell\">36\"</div><div class=\"divTableCell\">54\"</div><div class=\"divTableCell\">No limit</div></div>\r\n\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">180 min.</div><div class=\"divTableCell\">100</div><div class=\"divTableCell\">12\"</div><div class=\"divTableCell\">33\"</div><div class=\"divTableCell\">1</div></div>\r\n\r\n</div>\r\n</center>\r\n\r\n\r\n\r\n','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 10:11:24','2019-01-28 15:11:24','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1096,1,'2019-01-28 10:10:45','2019-01-28 15:10:45','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA).\r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings.\r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:Exterior openings</div>\r\n<div class=\"divTableCell\">4 hours3 hours2 hours90 minute</div>\r\n<div class=\"divTableCell\">3 hours3 hours90 minute90 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div>\r\n<div class=\"divTableCell\">1 hour1 hour</div>\r\n<div class=\"divTableCell\">1 hour45 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div>\r\n<div class=\"divTableCell\">1 hour1 hour30 minute30 minute</div>\r\n<div class=\"divTableCell\">45 minute20 minute*20 minute20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div>\r\n<div class=\"divTableCell\">1 hour</div>\r\n<div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3</div>\r\n</div>\r\n</div>\r\n \r\n\r\n<span style=\"font-size: xx-large;\">Fire rated opening with glass</span>\r\n\r\nWhen using glass in a fire rated opening, the most common is 3/16\" ceramic style glasses. The hourly rating of the opening defines the number of lites and the allowed size of total visible glass in a fire rated opening. The fire rating is preserved iff and only if the glass is used with an approved lite kit. Glass is allowed in all fire rated assemblies aside from 3 hours unless otherwise noted by your local building code. The table below contains a listing of limitations of glass size and number of vision lites for a single opening.\r\n\r\n<center>\r\n<span style=\"font-size: large;\">3/16\" Ceramic glass</span></center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Fire rating</div>\r\n<div class=\"divTableHead\">Max exposed area (sq. in)</div>\r\n<div class=\"divTableHead\">Max width</div>\r\n<div class=\"divTableHead\">Max height</div>\r\n<div class=\"divTableHead\">Number of lites</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. w/o Hose</div>\r\n<div class=\"divTableCell\">2,835</div>\r\n<div class=\"divTableCell\">35\"</div>\r\n<div class=\"divTableCell\">81\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. & 45 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">60 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">90 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">180 min.</div>\r\n<div class=\"divTableCell\">100</div>\r\n<div class=\"divTableCell\">12\"</div>\r\n<div class=\"divTableCell\">33\"</div>\r\n<div class=\"divTableCell\">1</div>\r\n</div>\r\n</div>\r\n \r\n\r\n</div>\r\n</div>','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 10:10:45','2019-01-28 15:10:45','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1098,1,'2019-01-28 10:11:43','2019-01-28 15:11:43','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA).\r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings.\r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:Exterior openings</div>\r\n<div class=\"divTableCell\">4 hours3 hours2 hours90 minute</div>\r\n<div class=\"divTableCell\">3 hours3 hours90 minute90 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour: Shaft, exit vestibule, exit passageway</div>\r\n<div class=\"divTableCell\">1 hour1 hour</div>\r\n<div class=\"divTableCell\">1 hour45 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div>\r\n<div class=\"divTableCell\">1 hour1 hour30 minute30 minute</div>\r\n<div class=\"divTableCell\">45 minute20 minute*20 minute20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div>\r\n<div class=\"divTableCell\">1 hour</div>\r\n<div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3</div>\r\n</div>\r\n</div>\r\n \r\n\r\n<span style=\"font-size: xx-large;\">Fire rated opening with glass</span>\r\n\r\nWhen using glass in a fire rated opening, the most common is 3/16\" ceramic style glasses. The hourly rating of the opening defines the number of lites and the allowed size of total visible glass in a fire rated opening. The fire rating is preserved iff and only if the glass is used with an approved lite kit. Glass is allowed in all fire rated assemblies aside from 3 hours unless otherwise noted by your local building code. The table below contains a listing of limitations of glass size and number of vision lites for a single opening.\r\n\r\n<center>\r\n<span style=\"font-size: large;\">3/16\" Ceramic glass</span></center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Fire rating</div>\r\n<div class=\"divTableHead\">Max exposed area (sq. in)</div>\r\n<div class=\"divTableHead\">Max width</div>\r\n<div class=\"divTableHead\">Max height</div>\r\n<div class=\"divTableHead\">Number of lites</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. w/o Hose</div>\r\n<div class=\"divTableCell\">2,835</div>\r\n<div class=\"divTableCell\">35\"</div>\r\n<div class=\"divTableCell\">81\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. & 45 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">60 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">90 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">180 min.</div>\r\n<div class=\"divTableCell\">100</div>\r\n<div class=\"divTableCell\">12\"</div>\r\n<div class=\"divTableCell\">33\"</div>\r\n<div class=\"divTableCell\">1</div>\r\n</div>\r\n</div>\r\n \r\n\r\n</div>\r\n</div>','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 10:11:43','2019-01-28 15:11:43','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1099,1,'2019-01-28 10:14:32','2019-01-28 15:14:32','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA).\r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings.\r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:</br>Exterior openings</div>\r\n<div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div>\r\n<div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour:</br> Shaft, exit vestibule, exit passageway</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</div>\r\n<div class=\"divTableCell\">1 hour</br>45 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div>\r\n<div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div>\r\n<div class=\"divTableCell\">1 hour</div>\r\n<div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3</div>\r\n</div>\r\n</div>\r\n \r\n\r\n<span style=\"font-size: xx-large;\">Fire rated opening with glass</span>\r\n\r\nWhen using glass in a fire rated opening, the most common is 3/16\" ceramic style glasses. The hourly rating of the opening defines the number of lites and the allowed size of total visible glass in a fire rated opening. The fire rating is preserved iff and only if the glass is used with an approved lite kit. Glass is allowed in all fire rated assemblies aside from 3 hours unless otherwise noted by your local building code. The table below contains a listing of limitations of glass size and number of vision lites for a single opening.\r\n\r\n<center>\r\n<span style=\"font-size: large;\">3/16\" Ceramic glass</span></center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Fire rating</div>\r\n<div class=\"divTableHead\">Max exposed</br>area (sq. in)</div>\r\n<div class=\"divTableHead\">Max width</div>\r\n<div class=\"divTableHead\">Max height</div>\r\n<div class=\"divTableHead\">Number of lites</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. w/o Hose</div>\r\n<div class=\"divTableCell\">2,835</div>\r\n<div class=\"divTableCell\">35\"</div>\r\n<div class=\"divTableCell\">81\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. & 45 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">60 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">90 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">180 min.</div>\r\n<div class=\"divTableCell\">100</div>\r\n<div class=\"divTableCell\">12\"</div>\r\n<div class=\"divTableCell\">33\"</div>\r\n<div class=\"divTableCell\">1</div>\r\n</div>\r\n</div>\r\n \r\n\r\n</div>\r\n</div>','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 10:14:32','2019-01-28 15:14:32','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1100,1,'2019-01-28 10:14:54','2019-01-28 15:14:54','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA).\r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings.\r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:</br>Exterior openings</div>\r\n<div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div>\r\n<div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour:</br> Shaft, exit vestibule, exit passageway</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</div>\r\n<div class=\"divTableCell\">1 hour</br>45 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div>\r\n<div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div>\r\n<div class=\"divTableCell\">1 hour</div>\r\n<div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3</div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\">Fire rated opening with glass</span>\r\n\r\nWhen using glass in a fire rated opening, the most common is 3/16\" ceramic style glasses. The hourly rating of the opening defines the number of lites and the allowed size of total visible glass in a fire rated opening. The fire rating is preserved iff and only if the glass is used with an approved lite kit. Glass is allowed in all fire rated assemblies aside from 3 hours unless otherwise noted by your local building code. The table below contains a listing of limitations of glass size and number of vision lites for a single opening.\r\n\r\n<center>\r\n<span style=\"font-size: large;\">3/16\" Ceramic glass</span></center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Fire rating</div>\r\n<div class=\"divTableHead\">Max exposed</br>area (sq. in)</div>\r\n<div class=\"divTableHead\">Max width</div>\r\n<div class=\"divTableHead\">Max height</div>\r\n<div class=\"divTableHead\">Number of lites</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. w/o Hose</div>\r\n<div class=\"divTableCell\">2,835</div>\r\n<div class=\"divTableCell\">35\"</div>\r\n<div class=\"divTableCell\">81\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. & 45 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">60 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">90 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">180 min.</div>\r\n<div class=\"divTableCell\">100</div>\r\n<div class=\"divTableCell\">12\"</div>\r\n<div class=\"divTableCell\">33\"</div>\r\n<div class=\"divTableCell\">1</div>\r\n</div>\r\n</div>\r\n \r\n\r\n</div>\r\n</div>','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 10:14:54','2019-01-28 15:14:54','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1101,1,'2019-01-28 10:15:38','2019-01-28 15:15:38','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA).\r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings.\r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:</br>Exterior openings</div>\r\n<div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div>\r\n<div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour:</br> Shaft, exit vestibule, exit passageway</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</div>\r\n<div class=\"divTableCell\">1 hour</br>45 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div>\r\n<div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div>\r\n<div class=\"divTableCell\">1 hour</div>\r\n<div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3</div>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\">Fire rated opening with glass</span>\r\n\r\nWhen using glass in a fire rated opening, the most common is 3/16\" ceramic style glasses. The hourly rating of the opening defines the number of lites and the allowed size of total visible glass in a fire rated opening. The fire rating is preserved iff and only if the glass is used with an approved lite kit. Glass is allowed in all fire rated assemblies aside from 3 hours unless otherwise noted by your local building code. The table below contains a listing of limitations of glass size and number of vision lites for a single opening.\r\n\r\n<center>\r\n<span style=\"font-size: large;\">3/16\" Ceramic glass</span></center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Fire rating</div>\r\n<div class=\"divTableHead\">Max exposed</br>area (sq. in)</div>\r\n<div class=\"divTableHead\">Max width</div>\r\n<div class=\"divTableHead\">Max height</div>\r\n<div class=\"divTableHead\">Number of lites</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. w/o Hose</div>\r\n<div class=\"divTableCell\">2,835</div>\r\n<div class=\"divTableCell\">35\"</div>\r\n<div class=\"divTableCell\">81\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. & 45 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">60 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">90 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">180 min.</div>\r\n<div class=\"divTableCell\">100</div>\r\n<div class=\"divTableCell\">12\"</div>\r\n<div class=\"divTableCell\">33\"</div>\r\n<div class=\"divTableCell\">1</div>\r\n</div>\r\n</div>\r\n \r\n\r\n</div>\r\n</div>','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 10:15:38','2019-01-28 15:15:38','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1103,1,'2019-01-28 10:16:36','2019-01-28 15:16:36','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA).\r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings.\r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:</br>Exterior openings</div>\r\n<div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div>\r\n<div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour:</br> Shaft, exit vestibule, exit passageway</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</div>\r\n<div class=\"divTableCell\">1 hour</br>45 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div>\r\n<div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div>\r\n<div class=\"divTableCell\">1 hour</div>\r\n<div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3</div>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n \r\n\r\n<span style=\"font-size: xx-large;\">Fire rated opening with glass</span>\r\n\r\nWhen using glass in a fire rated opening, the most common is 3/16\" ceramic style glasses. The hourly rating of the opening defines the number of lites and the allowed size of total visible glass in a fire rated opening. The fire rating is preserved iff and only if the glass is used with an approved lite kit. Glass is allowed in all fire rated assemblies aside from 3 hours unless otherwise noted by your local building code. The table below contains a listing of limitations of glass size and number of vision lites for a single opening.\r\n\r\n<center>\r\n<span style=\"font-size: large;\">3/16\" Ceramic glass</span></center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Fire rating</div>\r\n<div class=\"divTableHead\">Max exposed</br>area (sq. in)</div>\r\n<div class=\"divTableHead\">Max width</div>\r\n<div class=\"divTableHead\">Max height</div>\r\n<div class=\"divTableHead\">Number of lites</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. w/o Hose</div>\r\n<div class=\"divTableCell\">2,835</div>\r\n<div class=\"divTableCell\">35\"</div>\r\n<div class=\"divTableCell\">81\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. & 45 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">60 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">90 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">180 min.</div>\r\n<div class=\"divTableCell\">100</div>\r\n<div class=\"divTableCell\">12\"</div>\r\n<div class=\"divTableCell\">33\"</div>\r\n<div class=\"divTableCell\">1</div>\r\n</div>\r\n</div>\r\n</div>','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 10:16:36','2019-01-28 15:16:36','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1102,1,'2019-01-28 10:15:57','2019-01-28 15:15:57','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA).\r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings.\r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:</br>Exterior openings</div>\r\n<div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div>\r\n<div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour:</br> Shaft, exit vestibule, exit passageway</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</div>\r\n<div class=\"divTableCell\">1 hour</br>45 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div>\r\n<div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div>\r\n<div class=\"divTableCell\">1 hour</div>\r\n<div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3</div>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n \r\n\r\n<span style=\"font-size: xx-large;\">Fire rated opening with glass</span>\r\n\r\nWhen using glass in a fire rated opening, the most common is 3/16\" ceramic style glasses. The hourly rating of the opening defines the number of lites and the allowed size of total visible glass in a fire rated opening. The fire rating is preserved iff and only if the glass is used with an approved lite kit. Glass is allowed in all fire rated assemblies aside from 3 hours unless otherwise noted by your local building code. The table below contains a listing of limitations of glass size and number of vision lites for a single opening.\r\n\r\n<center>\r\n<span style=\"font-size: large;\">3/16\" Ceramic glass</span></center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Fire rating</div>\r\n<div class=\"divTableHead\">Max exposed</br>area (sq. in)</div>\r\n<div class=\"divTableHead\">Max width</div>\r\n<div class=\"divTableHead\">Max height</div>\r\n<div class=\"divTableHead\">Number of lites</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. w/o Hose</div>\r\n<div class=\"divTableCell\">2,835</div>\r\n<div class=\"divTableCell\">35\"</div>\r\n<div class=\"divTableCell\">81\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. & 45 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">60 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">90 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">180 min.</div>\r\n<div class=\"divTableCell\">100</div>\r\n<div class=\"divTableCell\">12\"</div>\r\n<div class=\"divTableCell\">33\"</div>\r\n<div class=\"divTableCell\">1</div>\r\n</div>\r\n</div>\r\n \r\n\r\n</div>\r\n</div>','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 10:15:57','2019-01-28 15:15:57','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1105,1,'2019-01-28 10:17:37','2019-01-28 15:17:37','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA).\r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings.\r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:</br>Exterior openings</div>\r\n<div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div>\r\n<div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour:</br> Shaft, exit vestibule, exit passageway</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</div>\r\n<div class=\"divTableCell\">1 hour</br>45 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div>\r\n<div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div>\r\n<div class=\"divTableCell\">1 hour</div>\r\n<div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3</div>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n \r\n\r\n<span style=\"font-size: xx-large;\">Fire rated door with glass</span>\r\n\r\nWhen using glass in a fire rated opening, the most common is 3/16\" ceramic style glasses. The hourly rating of the opening defines the number of lites and the allowed size of total visible glass in a fire rated opening. The fire rating is preserved iff and only if the glass is used with an approved lite kit. Glass is allowed in all fire rated assemblies aside from 3 hours unless otherwise noted by your local building code. The table below contains a listing of limitations of glass size and number of vision lites for a single opening.\r\n\r\n<center>\r\n<span style=\"font-size: large;\">3/16\" Ceramic glass</span>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Fire rating</div>\r\n<div class=\"divTableHead\">Max exposed</br>area (sq. in)</div>\r\n<div class=\"divTableHead\">Max width</div>\r\n<div class=\"divTableHead\">Max height</div>\r\n<div class=\"divTableHead\">Number of lites</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. w/o Hose</div>\r\n<div class=\"divTableCell\">2,835</div>\r\n<div class=\"divTableCell\">35\"</div>\r\n<div class=\"divTableCell\">81\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. & 45 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">60 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">90 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">180 min.</div>\r\n<div class=\"divTableCell\">100</div>\r\n<div class=\"divTableCell\">12\"</div>\r\n<div class=\"divTableCell\">33\"</div>\r\n<div class=\"divTableCell\">1</div>\r\n</div>\r\n</div>\r\n</div>\r\n</center>','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 10:17:37','2019-01-28 15:17:37','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1104,1,'2019-01-28 10:17:05','2019-01-28 15:17:05','Fire rated openings are openings in a fire rated wall with the purpose of allowing people a mode of egress while slowing or stopping the spread of fire throughout the building. In almost every commercial building there is at least 1 fire rated opening and are covered by the National Fire Protection Agency (NFPA).\r\n\r\nA fire rated opening is rated according to the amount of time it is exposed to direct flames. For metal doors, there are 20 minutes, 45 minutes, 60 minutes, 90 minutes, and 3-hours ratings with the appropriate hardware. For wood doors, there are 20 minutes, 45 minutes, and 90 minute ratings.\r\n\r\nThe building code in your area dictates the rating of your opening based on the wall assembly rating. See below for a listing of wall assembly ratings and the door openings rating required.\r\n\r\n \r\n<center>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Wall Assembly</div>\r\n<div class=\"divTableHead\">Required assembly fire rating</div>\r\n<div class=\"divTableHead\">Minimum door fire rating</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall greater than 1 hour:</br>Exterior openings</div>\r\n<div class=\"divTableCell\">4 hours</br>3 hours</br>2 hours</br>90 minute</div>\r\n<div class=\"divTableCell\">3 hours</br>3 hours</br>90 minute</br>90 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall with 1 hour:</br> Shaft, exit vestibule, exit passageway</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</div>\r\n<div class=\"divTableCell\">1 hour</br>45 minute</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Fire wall less than 1 hour: Corridors</div>\r\n<div class=\"divTableCell\">1 hour</br>1 hour</br>30 minute</br>30 minute</div>\r\n<div class=\"divTableCell\">45 minute</br>20 minute*</br>20 minute</br>20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Smoke partitions</div>\r\n<div class=\"divTableCell\">1 hour</div>\r\n<div class=\"divTableCell\">20 minute*</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">Notes: * See NFPA 715.4.3</div>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n \r\n\r\n<span style=\"font-size: xx-large;\">Fire rated opening with glass</span>\r\n\r\nWhen using glass in a fire rated opening, the most common is 3/16\" ceramic style glasses. The hourly rating of the opening defines the number of lites and the allowed size of total visible glass in a fire rated opening. The fire rating is preserved iff and only if the glass is used with an approved lite kit. Glass is allowed in all fire rated assemblies aside from 3 hours unless otherwise noted by your local building code. The table below contains a listing of limitations of glass size and number of vision lites for a single opening.\r\n\r\n<center>\r\n<span style=\"font-size: large;\">3/16\" Ceramic glass</span>\r\n<div class=\"divTable blueTable\">\r\n<div class=\"divTableHeading\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableHead\">Fire rating</div>\r\n<div class=\"divTableHead\">Max exposed</br>area (sq. in)</div>\r\n<div class=\"divTableHead\">Max width</div>\r\n<div class=\"divTableHead\">Max height</div>\r\n<div class=\"divTableHead\">Number of lites</div>\r\n</div>\r\n</div>\r\n<div class=\"divTableBody\">\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. w/o Hose</div>\r\n<div class=\"divTableCell\">2,835</div>\r\n<div class=\"divTableCell\">35\"</div>\r\n<div class=\"divTableCell\">81\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">20 min. & 45 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">60 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">90 min.</div>\r\n<div class=\"divTableCell\">1,296</div>\r\n<div class=\"divTableCell\">36\"</div>\r\n<div class=\"divTableCell\">54\"</div>\r\n<div class=\"divTableCell\">No limit</div>\r\n</div>\r\n<div class=\"divTableRow\">\r\n<div class=\"divTableCell\">180 min.</div>\r\n<div class=\"divTableCell\">100</div>\r\n<div class=\"divTableCell\">12\"</div>\r\n<div class=\"divTableCell\">33\"</div>\r\n<div class=\"divTableCell\">1</div>\r\n</div>\r\n</div>\r\n</div>\r\n</center>','Fire rated openings','','inherit','open','open','','1013-revision-v1','','','2019-01-28 10:17:05','2019-01-28 15:17:05','',1013,'https://dhoistage.concertium.com/1013-revision-v1/',0,'revision','',0),(1109,1,'2021-04-02 07:27:49','2021-04-02 11:27:49','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2021-04-02 07:27:49','2021-04-02 11:27:49','',0,'https://dhoistage.concertium.com/wp-content/uploads/2021/04/woocommerce-placeholder.png',0,'attachment','image/png',0),(1111,1,'2021-04-02 08:56:10','2021-04-02 12:56:10','DHOI is your source for division 8 wood and hollow metal doors, metal frames, and architectural finish hardware. We serve customers throughout the southeastern United States from three locations, in Tampa, Orlando, and Brooksville, Florida. We are at your service, with a warehouse stocked with doors and hardware from leading manufacturers and a box truck fleet for quick delivery to your location.\n\nIf you need custom doors or specialty hardware, or have special requirements, just ask. We operate a machine shop staffed by experienced craftsmen who can fulfill your most complex requests. Our knowledgeable sales personnel are your resource for complete product specifications and delivery.\n\nThe door is open, so come in and explore our divisions and visit our exceptional list of manufacturers!','Indutry News','','inherit','closed','closed','','192-autosave-v1','','','2021-04-02 08:56:10','2021-04-02 12:56:10','',192,'https://dhoistage.concertium.com/?p=1111',0,'revision','',0),(1124,1,'2021-04-13 02:17:10','2021-04-13 06:17:10','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project. Whether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction! See below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects. \r\n<center>\r\n <div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\"> <font size=\"5\">Government</font> <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a> FDOT Weigh Station - Seffner, FL </div>\r\n <div style=\"width: 350px; display: table-cell;\"> <font size=\"5\">Medical</font> <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a> Moffitt Cancer Center Florida Hospital Tampa General Hospital renovations </div>\r\n <div style=\"width: 350px; display: table-cell;\"> <font size=\"5\">Education</font> <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a> <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a> <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a> <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a> George Steinbrenner High school </div>\r\n <div style=\"width: 350px; display: table-cell;\"> <font size=\"5\">Hospitality</font> <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a> The Florida Aquarium </div>\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\"> <font size=\"5\">Office/T.I.</font> Corporate Center Tampa - I,II,III,IV </div>\r\n <div style=\"width: 350px; display: table-cell;\"> <font size=\"5\">Specialty facilities</font> The Florida Aquarium Unilens Bausch + Lomb </div>\r\n </div>\r\n </div>\r\n</center>','Projects','','inherit','closed','closed','','782-revision-v1','','','2021-04-13 02:17:10','2021-04-13 06:17:10','',782,'https://dhoistage.concertium.com/?p=1124',0,'revision','',0),(1113,1,'2021-04-12 01:28:29','2021-04-12 05:28:29','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner High school\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n \r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Specialty facilities</font>\r\n\r\n The Florida Aquarium\r\n Unilens Bausch + Lomb\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext1-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','closed','closed','','782-revision-v1','','','2021-04-12 01:28:29','2021-04-12 05:28:29','',782,'https://dhoistage.concertium.com/?p=1113',0,'revision','',0),(1134,1,'2021-04-14 01:05:39','2021-04-14 05:05:39','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n','Products','','inherit','closed','closed','','600-revision-v1','','','2021-04-14 01:05:39','2021-04-14 05:05:39','',600,'https://dhoistage.concertium.com/?p=1134',0,'revision','',0),(1115,1,'2021-04-12 01:28:58','2021-04-12 05:28:58','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: x-large;\">Resources</span>\r\n <a href=\"https://dhoistage.concertium.com/cylinders_post/\"><font size=\"4\">Understanding core cylinders</font></a>\r\n <a href=\"https://architectural.masonite.com/products/\"><font size=\"4\">Common wood door defects</font></a>\r\n</div>\r\n</div>\r\n</div>\r\n</center>\r\n\r\n \r\n','Products','','inherit','closed','closed','','600-revision-v1','','','2021-04-12 01:28:58','2021-04-12 05:28:58','',600,'https://dhoistage.concertium.com/?p=1115',0,'revision','',0),(1116,1,'2021-04-12 08:03:24','2021-04-12 12:03:24','\r\nDoor and hardware openings is a leader in the industry of architectual doors and finish hardware. For the past 30 years, DHOI has been providing project management and consulting for many projects all over the USA and many international projects. With such a strong and skilled sales force, no project is too small or too large!\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>What sets DHOI apart</strong></span>\r\n\r\nDHOI is more than the average door and hardware supplier. We maintain an extensive inventory of Division 8 finish hardware suited for fire rated openings, impact safety openings as well as handicap openings. We carry many products from the major vendors approved for building projects such as Schlage, Sargent, Von Duprin and more. \r\nIn addition to our vast hardware supply, we also stock commercial doors and frames in many standard sizes. Since not every project is comprised of standard off the shelf materials, we are able to provide customizations to your openings with our in house wood and metal machine shops.\r\nDHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>The Mission</strong></span>\r\nProvide cost and time efficient solutions for your project through expert technical knowledge and professionalism. The cornerstone of our mission is to create long lasting working relationships with our customers and seek to always provide reliable customer service.','About us','','inherit','closed','closed','','9-revision-v1','','','2021-04-12 08:03:24','2021-04-12 12:03:24','',9,'https://dhoistage.concertium.com/?p=1116',0,'revision','',0),(1117,1,'2021-04-12 08:05:48','2021-04-12 12:05:48','Door and hardware openings is a leader in the industry of architectual doors and finish hardware. For the past 30 years, DHOI has been providing project management and consulting for many projects all over the USA and many international projects. With such a strong and skilled sales force, no project is too small or too large!\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>What sets DHOI apart</strong></span>\r\n\r\nDHOI is more than the average door and hardware supplier. We maintain an extensive inventory of Division 8 finish hardware suited for fire rated openings, impact safety openings as well as handicap openings. We carry several products from the major vendors that are approved for a wide variety of building projects such as Schlage, Sargent, Von Duprin and many more. \r\nIn addition to our vast hardware supply, we also stock commercial doors and frames in many standard sizes. Since not every project is comprised of standard off the shelf materials, we are able to provide customizations to your openings with our in house wood and metal machine shops.\r\nDHOI is more than your average supplier. Our sales representatives are full- service architectural hardware consultants who take your job from bid to completion, supplying you with the highest quality products available.\r\n\r\n \r\n\r\n<span style=\"font-size: xx-large;\"><strong>The Mission</strong></span>\r\nProvide cost and time efficient solutions for your project through expert technical knowledge and professionalism. The cornerstone of our mission is to create long lasting working relationships with our customers and seek to always provide reliable customer service.','About us','','inherit','closed','closed','','9-revision-v1','','','2021-04-12 08:05:48','2021-04-12 12:05:48','',9,'https://dhoistage.concertium.com/?p=1117',0,'revision','',0),(1118,1,'2021-04-12 09:35:30','2021-04-12 13:35:30','','home-banner-web','','inherit','open','closed','','home-banner-web','','','2021-04-12 09:35:30','2021-04-12 13:35:30','',0,'https://dhoistage.concertium.com/wp-content/uploads/2021/04/home-banner-web.jpg',0,'attachment','image/jpeg',0),(1119,1,'2021-04-13 01:59:58','2021-04-13 05:59:58','','U. Tampa Bob Martinez Athletic Center','','inherit','closed','closed','','950-autosave-v1','','','2021-04-13 01:59:58','2021-04-13 05:59:58','',950,'https://dhoistage.concertium.com/?p=1119',0,'revision','',0),(1120,1,'2021-04-13 02:03:07','2021-04-13 06:03:07','<p>Location: Tampa, FL<br>\r\nContractor: Miller Construction Management<br>\r\nArchitect: Gensler <span id=\"more-1146\"></span></p>\r\n<p>The Bob Martinez Athletics Center, named for the University of Tampa alumnus who served as Mayor of Tampa, Governor of Florida and President Bush’s cabinet-level Drug Czar, was opened in July 1984. The facility is home to the University of Tampa Spartans men’s and women’s basketball teams in addition to the volleyball team. The main gymnasium houses three full-size courts with permanent seating for over 3,000 to view the main court. It also includes a training room, weight room, athlete locker rooms, classrooms and offices for the athletic and physical education departments. This project required a unique and custom solution to modernize the gym. In particular, Door and Hardware worked with Miller Construction Management to update the gymnasium and provided multi-door hurricane rated transom frames. These openings are NOA and Florida Building Code Hurricane rated and required significant coordination between the design imagined by the architects and what is physically possible within the building code testing limitations.</p>\r\n','U. Tampa Bob Martinez Athletic Center','','publish','closed','closed','','u-tampa-bob-martinez-athletic-center','','','2021-04-14 05:49:26','2021-04-14 09:49:26','',0,'https://dhoistage.concertium.com/?post_type=project&p=1120',0,'project','',0),(1122,1,'2021-04-13 02:04:55','2021-04-13 06:04:55','','utbmac_interior_doors','','inherit','open','closed','','utbmac_interior_doors','','','2021-04-13 02:04:55','2021-04-13 06:04:55','',1120,'https://dhoistage.concertium.com/wp-content/uploads/2021/04/utbmac_interior_doors.jpg',0,'attachment','image/jpeg',0),(1126,1,'2021-04-13 02:18:29','2021-04-13 06:18:29','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner High school\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n \r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Specialty facilities</font>\r\n\r\n The Florida Aquarium\r\n Unilens Bausch + Lomb\r\n </div>\r\n </div>\r\n</div>\r\n</center>','Projects','','inherit','closed','closed','','782-revision-v1','','','2021-04-13 02:18:29','2021-04-13 06:18:29','',782,'https://dhoistage.concertium.com/?p=1126',0,'revision','',0),(1125,1,'2021-04-13 02:17:34','2021-04-13 06:17:34','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner High school\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n \r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Specialty facilities</font>\r\n\r\n The Florida Aquarium\r\n Unilens Bausch + Lomb\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext1-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Projects','','inherit','closed','closed','','782-revision-v1','','','2021-04-13 02:17:34','2021-04-13 06:17:34','',782,'https://dhoistage.concertium.com/?p=1125',0,'revision','',0),(1128,1,'2021-04-13 03:05:26','2021-04-13 07:05:26','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine2.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/laser-spine2-300x300.jpg\" alt=\"laser-spine2\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\r\n\r\n Tampa, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','USF Student Union','','inherit','closed','closed','','862-revision-v1','','','2021-04-13 03:05:26','2021-04-13 07:05:26','',862,'https://dhoistage.concertium.com/?p=1128',0,'revision','',0),(1130,1,'2021-04-13 03:06:45','2021-04-13 07:06:45','Tampa, Flordia\r\n 233,000 SF\r\n Beck – Construction\r\n Gould Evans – Architect<!--more-->\r\n\r\n\r\n\r\nThe University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.\r\n','USF Student Union','','inherit','closed','closed','','862-revision-v1','','','2021-04-13 03:06:45','2021-04-13 07:06:45','',862,'https://dhoistage.concertium.com/?p=1130',0,'revision','',0),(1133,1,'2021-04-13 03:23:11','2021-04-13 07:23:11',' Tampa, Florida\r\n 164,144 SF\r\n Beck – Construction\r\n Robbins Bell & Kreher Architects, Inc – Architect\r\n\r\nStraz\r\nKnown for having some of the better residence halls in the region, about 70 percent of all The University of Tampa students live on its main campus. Straz Hall provides students with all the amenities of an upscale, modern living space, plus spectacular views of the Tampa skyline and Hillsborough Bay with sophisticated dining options. Built by Beck, the 8-story building provides apartment-style living for 480 students. Each apartment has a full kitchen, shared bathroom, living area where students can gather and four single sleeping rooms. On the first floor there is plenty of community space where residents can study and socialize, either inside or outside.\r\n\r\n\r\n\r\nUrso\r\nLocated conveniently across the street from the main entrance to campus, the 11-story Urso Hall houses approximately 180 juniors and seniors. Students live in single and double studio apartments with mini kitchens and private bathrooms. Just outside the lobby is a large community garden room available for studying or hosting events. \r\n\r\nJenkins\r\n\r\n Tampa, Florida\r\n 193,128 SF\r\n Beck – Architect Beck – Construction\r\n\r\nThe University of Tampa’s newest residence hall, Howard and Patricia Jenkins Hall, was designed to promote student community and interaction. Designed and built by Beck, the 11-story residence hall houses 528 undergraduate students. A typical suite has four single bedrooms, a large common living room and two full bathrooms. Two, two-story lofts, accessed from the 10th floor, offer townhouse-like living and outstanding views, for groups of eight students each. All rooms are cable and network ready. There are multiple large living areas with floor to ceiling glass, common kitchen areas as well as a laundry room. In addition to residential suites, the top floor contains two large community multi-purpose rooms, specifically for organizational and group activities. Offering views of Tampa Bay, the rooms have flexible floor plans. With green features such as a rooftop solar array and daylight optimized living spaces, the project achieved LEED Gold certification.\r\n\r\n<center>\r\n<span style=\"font-size: x-large;\">Educational and Sports Facilities</span>\r\n</center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-Schoomaker-ROTCA-150x150.jpg\" alt=\"schoomaker\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-399\" />\r\n <figcaption><font size=\"4\">Schoomaker ROTC</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/UT-R.K.-Bailey-Art-Studios-Tampa-1-150x150.jpg\" alt=\"artstudio\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-402\" />\r\n <center><figcaption><font size=\"4\">R.K. Bailey Art Studio</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/UT-Bob-Martinez-Athletics-Ctr-Tampa-150x150.jpg\" alt=\"metal shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-401\" />\r\n <center>\r\n <figcaption><font size=\"4\">Bob Martinez Athletics Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<center>\r\n<span style=\"font-size: x-large;\">Residence Halls</span>\r\n</center>\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/straz-hall3-150x150.jpg\" alt=\"wood shop 2\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-393\" />\r\n <figcaption><font size=\"4\">Brevard Hall</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-150x150.jpg\" alt=\"wood shop 7\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-397\" />\r\n <center><figcaption><font size=\"4\">David A. Straz Jr.</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Urso1-150x150.jpg\" alt=\"wood shop 4\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-395\" />\r\n <center>\r\n <figcaption><font size=\"4\">Frank P. Urso</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n','University of Tampa Expansion','','inherit','closed','closed','','860-revision-v1','','','2021-04-13 03:23:11','2021-04-13 07:23:11','',860,'https://dhoistage.concertium.com/?p=1133',0,'revision','',0),(1138,1,'2021-04-14 01:10:46','2021-04-14 05:10:46','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n','Wood Doors','','inherit','closed','closed','','605-revision-v1','','','2021-04-14 01:10:46','2021-04-14 05:10:46','',605,'https://dhoistage.concertium.com/?p=1138',0,'revision','',0),(1137,1,'2021-04-14 01:10:30','2021-04-14 05:10:30','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n','Wood Doors','','inherit','closed','closed','','605-revision-v1','','','2021-04-14 01:10:30','2021-04-14 05:10:30','',605,'https://dhoistage.concertium.com/?p=1137',0,'revision','',0),(1136,1,'2021-04-14 01:10:06','2021-04-14 05:10:06','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n\r\n <a href=\"http://www.marshfielddoors.pensacolawebservices.com/main_products.html\">Marshfield-Algoma</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\">VT Industries</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n </div>\r\n </div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Resources</span>\r\n\r\n<a href=\" https://dhoistage.concertium.com/wood-grain-cuts/\">Understanding wood grains and cuts</a>\r\n <a href=\"https://architectural.masonite.com/products/\">Common wood door defects</a>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n</center>\r\n','Wood Doors','','inherit','closed','closed','','605-revision-v1','','','2021-04-14 01:10:06','2021-04-14 05:10:06','',605,'https://dhoistage.concertium.com/?p=1136',0,'revision','',0),(1139,1,'2021-04-14 01:11:23','2021-04-14 05:11:23','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.\r\n\r\n \r\n\r\n<center>\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <span style=\"font-size: large;\">Wood Door Manufacturers</span>\r\n <a href=\"https://architectural.masonite.com/products/\" target=\"_blank\" rel=\"noopener\">Masonite Architectural</a>\r\n <a href=\"http://www.vtindustries.com\" target=\"_blank\" rel=\"noopener\">VT Industries</a>\r\n\r\n </div>\r\n <div style=\"width: 400px; display: table-cell;\">\r\n\r\n <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin.jpg\"><img class=\"alignnone size-medium wp-image-706\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/Walnut-Kensington-pre-fin-115x300.jpg\" alt=\"Walnut-Kensington-pre-fin\" width=\"115\" height=\"300\" /></a>\r\n\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n','Wood Doors','','inherit','closed','closed','','605-revision-v1','','','2021-04-14 01:11:23','2021-04-14 05:11:23','',605,'https://dhoistage.concertium.com/?p=1139',0,'revision','',0),(1141,1,'2021-04-14 01:14:59','2021-04-14 05:14:59','DHOI stocks the highest quality architectural hardware. We store various styles and finishes for immediate availability. In addition to builders hardware we are authorized distributors of the following hardware categories: electronic security, detention, fire/life safety and barrier free hardware.\r\n\r\nDHOI has an Architectural Hardware Consultant on staff to schedule, coordinate, and supervise all hardware, <a href=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/ahc-.png\" alt=\"ahc-\" width=\"75\" height=\"75\" class=\"alignnone size-full wp-image-697\" /></a>\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 70%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Hinges</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=150\" target=\"_blank\" rel=\"noopener\">Hager</a>\r\n <a href=\"https://www.assaabloydooraccessories.us/en/local/assaabloydooraccessoriesus/products/hinges/\" target=\"_blank\" rel=\"noopener\">McKinney</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Locks</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=157\" target=\"_blank\" rel=\"noopener\">Hager</a>\r\n <a href=\"https://www.schlage.com/en/home.html\" target=\"_blank\" rel=\"noopener\">Schlage</a>\r\n <a href=\"https://www.sargentlock.com/\" target=\"_blank\" rel=\"noopener\">Sargent</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Closers</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=158\" target=\"_blank\" rel=\"noopener\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/lcn.html\" target=\"_blank\" rel=\"noopener\">LCN</a>\r\n <a href=\"https://www.dormakaba.com/us-en/solutions/products/door-hardware/door-closers\" target=\"_blank\" rel=\"noopener\">Dorma</a>\r\n <a href=\"https://www.nortondoorcontrols.com/en/site/norton/\" target=\"_blank\" rel=\"noopener\">Norton</a>\r\n </div>\r\n\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\">Electric</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=535\" target=\"_blank\" rel=\"noopener\">Hager</a>\r\n <a href=\"https://www.adamsrite.com/en/site/adamsritecom/\" target=\"_blank\" rel=\"noopener\">Adams Rite</a>\r\n <a href=\"https://www.assaabloyesh.com/en/local/assaabloyeshcom/\" target=\"_blank\" rel=\"noopener\">HES</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\" target=\"_blank\" rel=\"noopener\">Von Duprin</a>\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 300px; display: table-cell;\">\r\n <span style=\"font-size: large;\"> Exit Devices</span>\r\n\r\n <a href=\"https://www.hagerco.com/Product.aspx?CatId=159\" target=\"_blank\" rel=\"noopener\">Hager</a>\r\n <a href=\"https://us.allegion.com/en/home/products/brands/von-duprin.html\" target=\"_blank\" rel=\"noopener\">Von Duprin</a>\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n ','Hardware','','inherit','closed','closed','','633-revision-v1','','','2021-04-14 01:14:59','2021-04-14 05:14:59','',633,'https://dhoistage.concertium.com/?p=1141',0,'revision','',0),(1142,1,'2021-04-14 03:27:49','2021-04-14 07:27:49','','marriott_sawgrass_interior','','inherit','open','closed','','marriott_sawgrass_interior','','','2021-04-14 03:28:55','2021-04-14 07:28:55','',989,'https://dhoistage.concertium.com/wp-content/uploads/2021/04/marriott_sawgrass_interior.jpg',0,'attachment','image/jpeg',0),(1144,1,'2021-04-14 03:31:22','2021-04-14 07:31:22','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/marriott_sawgrass_interior.jpg\"><img class=\"alignnone wp-image-1142 size-medium\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/marriott_sawgrass_interior-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></a>\r\n\r\nLocation: Ponte Vedra, FL\r\nContractor: Complete Property Services\r\n\r\nOne of the areas largest convention hotels, the Sawgrass Marriott includes over 500 guest rooms, golf villas, beach club and several restaurants. Just outside of downtown Jacksonville, the Sawgrass Marriott is partnered with TPC Sawgrass golf club and offers world class golf events. For those hosting events, our 63,731 square feet of accessible indoor/outdoor venue space and close proximity to Jacksonville make us a memorable destination for any gathering. This project, which consisted of division 8 and division 10 materials , represents one of the largest managed by Door and Hardware Openings.','Sawgrass Marriott Resort & Spa - Ponte Vedra','','inherit','closed','closed','','989-revision-v1','','','2021-04-14 03:31:22','2021-04-14 07:31:22','',989,'https://dhoistage.concertium.com/?p=1144',0,'revision','',0),(1145,1,'2021-04-14 03:36:21','2021-04-14 07:36:21','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/marriott_sawgrass_interior.jpg\"><img class=\"\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/marriott_sawgrass_interior-300x200.jpg\" alt=\"sawgrass\" width=\"300\" height=\"300\" align=\"right\" /></a>\r\n\r\nLocation: Ponte Vedra, FL\r\nContractor: Complete Property Services<!--more-->\r\n\r\nOne of the areas largest convention hotels, the Sawgrass Marriott includes over 500 guest rooms, golf villas, beach club and several restaurants. Just outside of downtown Jacksonville, the Sawgrass Marriott is partnered with TPC Sawgrass golf club and offers world class golf events. For those hosting events, our 63,731 square feet of accessible indoor/outdoor venue space and close proximity to Jacksonville make us a memorable destination for any gathering. This project, which consisted of division 8 and division 10 materials , represents one of the largest managed by Door and Hardware Openings.','Sawgrass Marriott Resort & Spa - Ponte Vedra','','inherit','closed','closed','','989-revision-v1','','','2021-04-14 03:36:21','2021-04-14 07:36:21','',989,'https://dhoistage.concertium.com/?p=1145',0,'revision','',0),(1146,1,'2021-04-14 03:38:47','2021-04-14 07:38:47','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/utbmac_interior_doors.jpg\"><img class=\"\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/utbmac_interior_doors-300x225.jpg\" alt=\"sawgrass\" width=\"300\" height=\"225\" align=\"right\" /></a>\r\n\r\nLocation: Tampa, FL\r\nContractor: Miller Construction Management\r\nArchitect: Gensler <!--more-->\r\n\r\nThe Bob Martinez Athletics Center, named for the University of Tampa alumnus who served as Mayor of Tampa, Governor of Florida and President Bush’s cabinet-level Drug Czar, was opened in July 1984. The facility is home to the University of Tampa Spartans men’s and women’s basketball teams in addition to the volleyball team. The main gymnasium houses three full-size courts with permanent seating for over 3,000 to view the main court. It also includes a training room, weight room, athlete locker rooms, classrooms and offices for the athletic and physical education departments. This project required a unique and custom solution to modernize the gym. In particular, Door and Hardware worked with Miller Construction Management to update the gymnasium and provided multi-door hurricane rated transom frames. These openings are NOA and Florida Building Code Hurricane rated and required significant coordination between the design imagined by the architects and what is physically possible within the building code testing limitations.\r\n','U. Bob Martinez Athletic Center','','publish','closed','closed','','u-bob-martinez-athletic-center','','','2021-04-14 03:46:57','2021-04-14 07:46:57','',0,'https://dhoistage.concertium.com/?page_id=1146',0,'page','',0),(1147,1,'2021-04-14 03:38:47','2021-04-14 07:38:47','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/utbmac_interior_doors.jpg\"><img class=\"size-thumbnail wp-image-1122 aligncenter\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/utbmac_interior_doors-150x150.jpg\" alt=\"\" width=\"150\" height=\"150\" /></a>\r\n\r\nLocation: Tampa, FL\r\n\r\nContractor: Miller Construction Management\r\n\r\nArchitect: Gensler\r\n\r\nThe Bob Martinez Athletics Center, named for the University of Tampa alumnus who served as Mayor of Tampa, Governor of Florida and President Bush’s cabinet-level Drug Czar, was opened in July 1984. The facility is home to the University of Tampa Spartans men’s and women’s basketball teams in addition to the volleyball team. The main gymnasium houses three full-size courts with permanent seating for over 3,000 to view the main court. It also includes a training room, weight room, athlete locker rooms, classrooms and offices for the athletic and physical education departments. This project required a unique and custom solution to modernize the gym. In particular, Door and Hardware worked with Miller Construction Management to update the gymnasium and provided multi-door hurricane rated transom frames. These openings are NOA and Florida Building Code Hurricane rated and required significant coordination between the design imagined by the architects and what is physically possible within the building code testing limitations.','U. Bob Martinez Athletic Center','','inherit','closed','closed','','1146-revision-v1','','','2021-04-14 03:38:47','2021-04-14 07:38:47','',1146,'https://dhoistage.concertium.com/?p=1147',0,'revision','',0),(1148,1,'2021-04-14 03:39:23','2021-04-14 07:39:23','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/utbmac_interior_doors.jpg\"><img class=\" wp-image-1122 aligncenter\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/utbmac_interior_doors-150x150.jpg\" alt=\"\" width=\"364\" height=\"364\" /></a>\r\n\r\nLocation: Tampa, FL\r\n\r\nContractor: Miller Construction Management\r\n\r\nArchitect: Gensler\r\n\r\nThe Bob Martinez Athletics Center, named for the University of Tampa alumnus who served as Mayor of Tampa, Governor of Florida and President Bush’s cabinet-level Drug Czar, was opened in July 1984. The facility is home to the University of Tampa Spartans men’s and women’s basketball teams in addition to the volleyball team. The main gymnasium houses three full-size courts with permanent seating for over 3,000 to view the main court. It also includes a training room, weight room, athlete locker rooms, classrooms and offices for the athletic and physical education departments. This project required a unique and custom solution to modernize the gym. In particular, Door and Hardware worked with Miller Construction Management to update the gymnasium and provided multi-door hurricane rated transom frames. These openings are NOA and Florida Building Code Hurricane rated and required significant coordination between the design imagined by the architects and what is physically possible within the building code testing limitations.','U. Bob Martinez Athletic Center','','inherit','closed','closed','','1146-revision-v1','','','2021-04-14 03:39:23','2021-04-14 07:39:23','',1146,'https://dhoistage.concertium.com/?p=1148',0,'revision','',0),(1149,1,'2021-04-14 03:45:26','2021-04-14 07:45:26','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/utbmac_interior_doors.jpg\"><img class=\"\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/utbmac_interior_doors.jpg\" alt=\"sawgrass\" width=\"640\" height=\"480\" align=\"right\" data-wp-editing=\"1\" /></a>\n\nLocation: Tampa, FL\n\nContractor: Miller Construction Management\n\nArchitect: Gensler <!--more-->\n\nThe Bob Martinez Athletics Center, named for the University of Tampa alumnus who served as Mayor of Tampa, Governor of Florida and President Bush’s cabinet-level Drug Czar, was opened in July 1984. The facility is home to the University of Tampa Spartans men’s and women’s basketball teams in addition to the volleyball team. The main gymnasium houses three full-size courts with permanent seating for over 3,000 to view the main court. It also includes a training room, weight room, athlete locker rooms, classrooms and offices for the athletic and physical education departments. This project required a unique and custom solution to modernize the gym. In particular, Door and Hardware worked with Miller Construction Management to update the gymnasium and provided multi-door hurricane rated transom frames. These openings are NOA and Florida Building Code Hurricane rated and required significant coordination between the design imagined by the architects and what is physically possible within the building code testing limitations.','U. Bob Martinez Athletic Center','','inherit','closed','closed','','1146-autosave-v1','','','2021-04-14 03:45:26','2021-04-14 07:45:26','',1146,'https://dhoistage.concertium.com/?p=1149',0,'revision','',0),(1151,1,'2021-04-14 03:46:43','2021-04-14 07:46:43','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/utbmac_interior_doors.jpg\"><img class=\"\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/utbmac_interior_doors-300x225.jpg\" alt=\"sawgrass\" width=\"300\" height=\"225\" align=\"right\" /></a>\r\n\r\nLocation: Tampa, FL\r\n\r\nContractor: Miller Construction Management\r\n\r\nArchitect: Gensler <!--more-->\r\n\r\nThe Bob Martinez Athletics Center, named for the University of Tampa alumnus who served as Mayor of Tampa, Governor of Florida and President Bush’s cabinet-level Drug Czar, was opened in July 1984. The facility is home to the University of Tampa Spartans men’s and women’s basketball teams in addition to the volleyball team. The main gymnasium houses three full-size courts with permanent seating for over 3,000 to view the main court. It also includes a training room, weight room, athlete locker rooms, classrooms and offices for the athletic and physical education departments. This project required a unique and custom solution to modernize the gym. In particular, Door and Hardware worked with Miller Construction Management to update the gymnasium and provided multi-door hurricane rated transom frames. These openings are NOA and Florida Building Code Hurricane rated and required significant coordination between the design imagined by the architects and what is physically possible within the building code testing limitations.\r\n','U. Bob Martinez Athletic Center','','inherit','closed','closed','','1146-revision-v1','','','2021-04-14 03:46:43','2021-04-14 07:46:43','',1146,'https://dhoistage.concertium.com/?p=1151',0,'revision','',0),(1150,1,'2021-04-14 03:44:24','2021-04-14 07:44:24','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/utbmac_interior_doors.jpg\"><img class=\"\" src=\"https://dhoistage.concertium.com/wp-content/uploads/2021/04/utbmac_interior_doors.jpg\" alt=\"sawgrass\" width=\"640\" height=\"480\" align=\"right\" /></a>\r\n\r\nLocation: Tampa, FL\r\n\r\nContractor: Miller Construction Management\r\n\r\nArchitect: Gensler <!--more-->\r\n\r\nThe Bob Martinez Athletics Center, named for the University of Tampa alumnus who served as Mayor of Tampa, Governor of Florida and President Bush’s cabinet-level Drug Czar, was opened in July 1984. The facility is home to the University of Tampa Spartans men’s and women’s basketball teams in addition to the volleyball team. The main gymnasium houses three full-size courts with permanent seating for over 3,000 to view the main court. It also includes a training room, weight room, athlete locker rooms, classrooms and offices for the athletic and physical education departments. This project required a unique and custom solution to modernize the gym. In particular, Door and Hardware worked with Miller Construction Management to update the gymnasium and provided multi-door hurricane rated transom frames. These openings are NOA and Florida Building Code Hurricane rated and required significant coordination between the design imagined by the architects and what is physically possible within the building code testing limitations.','U. Bob Martinez Athletic Center','','inherit','closed','closed','','1146-revision-v1','','','2021-04-14 03:44:24','2021-04-14 07:44:24','',1146,'https://dhoistage.concertium.com/?p=1150',0,'revision','',0),(1153,1,'2021-04-14 04:58:58','2021-04-14 08:58:58','The Bob Martinez Athletics Center, named for the University of Tampa alumnus who served as Mayor of Tampa, Governor of Florida and President Bush’s cabinet-level Drug Czar, was opened in July 1984. The facility is home to the University of Tampa Spartans men’s and women’s basketball teams in addition to the volleyball team. The main gymnasium houses three full-size courts with permanent seating for over 3,000 to view the main court. It also includes a training room, weight room, athlete locker rooms, classrooms and offices for the athletic and physical education departments. This project required a unique and custom solution to modernize the gym. In particular, Door and Hardware worked with Miller Construction Management to update the gymnasium and provided multi-door hurricane rated transom frames. These openings are NOA and Florida Building Code Hurricane rated and required significant coordination between the design imagined by the architects and what is physically possible within the building code testing limitations.','U. Tampa Bob Martinez Athletic Center','','inherit','closed','closed','','1120-autosave-v1','','','2021-04-14 04:58:58','2021-04-14 08:58:58','',1120,'https://dhoistage.concertium.com/?p=1153',0,'revision','',0),(1154,1,'2021-04-14 05:06:45','2021-04-14 09:06:45','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/usf-student-union\">USF Student Union</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/u-bob-martinez-athletic-center\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n</div>\r\n</center>','Projects','','inherit','closed','closed','','782-revision-v1','','','2021-04-14 05:06:45','2021-04-14 09:06:45','',782,'https://dhoistage.concertium.com/?p=1154',0,'revision','',0),(1155,1,'2021-04-14 05:40:01','2021-04-14 09:40:01','<a href=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-front.jpg\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-front-300x300.jpg\" alt=\"city-hall-elevation\" width=\"300\" height=\"300\" class=\"\" align=\"right\" /></a>\n\nWith 100 years of history behind it, Tampa, Florida’s Old City Hall has seen its fair share of changes and played a major role in the advancement of the city.\n\nWalbridge performed design build services on this 100-year old facility in Tampa, Florida. Old City Hall has seen its fair share of changes and played a major role in the advancement of the City. With the use of modern technology, Walbridge transformed this high-profile building to look like it did a century ago.\n\nWalbridge worked with project partners FleischmanGarcia Architects and local restoration experts Restocon to renovate the century-old building’s exterior. The work included repairing brickwork, granite and ornate terracotta balustrades and cornices. With an impressive “layer cake” look, the building has an historical feeling. Current technology brings a new era to this grand building.\n\nThe Walbridge team utilized 3-D scanning, drone video flying, and still photography to capture the building conditions before construction then translated that information into a set of pre-work as-built documents.\n\nWith pedestrians, employees, and vehicles in mind, Walbridge’s continued commitment to safety on all worksites came into play during planning and construction phase and continued during the construction phase.\n\nWhen the building was first constructed in 1915, it had a price tag of $235,000. The project’s “layer-cake” design was created by renowned local architect M. Leo Elliott.\n\nNow completed, the building has been restored to its 1915 glory and is compatible with the history that radiates from the building. Tampa Old City Hall is listed as a National Historic Building on the Register for Historic Places.\n','Old City Hall Tampa','','inherit','closed','closed','','883-autosave-v1','','','2021-04-14 05:40:01','2021-04-14 09:40:01','',883,'https://dhoistage.concertium.com/?p=1155',0,'revision','',0),(1157,1,'2021-04-14 05:58:04','2021-04-14 09:58:04','','U. Tampa Residence Halls','','trash','closed','closed','','__trashed','','','2021-04-14 05:58:04','2021-04-14 09:58:04','',0,'https://dhoistage.concertium.com/?post_type=project&p=1157',0,'project','',0),(1159,1,'2021-04-14 06:02:19','2021-04-14 10:02:19','<p>Location: Ponte Vedra, FL<br>\r\nContractor: Complete Property Services<span id=\"more-989\"></span></p>\r\n<p>One of the areas largest convention hotels, the Sawgrass Marriott includes over 500 guest rooms, golf villas, beach club and several restaurants. Just outside of downtown Jacksonville, the Sawgrass Marriott is partnered with TPC Sawgrass golf club and offers world class golf events. For those hosting events, our 63,731 square feet of accessible indoor/outdoor venue space and close proximity to Jacksonville make us a memorable destination for any gathering. This project, which consisted of division 8 and division 10 materials, represents one of the largest managed by Door and Hardware Openings.</p>','Sawgrass Marriott Resort & Spa – Ponte Vedra','','publish','closed','closed','','sawgrass-marriott-resort-spa-ponte-vedra','','','2021-04-19 08:31:07','2021-04-19 12:31:07','',0,'https://dhoistage.concertium.com/?post_type=project&p=1159',0,'project','',0),(1158,1,'2021-04-14 06:00:19','2021-04-14 10:00:19','<p> Tampa, Flordia<br>\n 233,000 SF<br>\n Beck – Construction<br>\n Gould Evans – Architect<span id=\"more-888\"></span></p>\n<p>The University of South Florida’s student union, the Marshall Student Center, opened in 1960 and is one of the original buildings to the university. USF grew significantly and needed a new student union to support the changes in the campus and student offerings. Students in 2003 realized this and voted for a fee increase to finance plans to build a new union. Built by Beck, the new student center features a 1,200-seat ballroom, 700-seat auditorium and 550-seat food court. The 4-story building also houses centers that support all areas of student involvement including student government, Greek life and volunteerism. An atrium spanning all four levels is the center of activity with space for showcases, numerous dining venues lounges, digital signage, an information desk and displays of school spirit. Designed and built with sustainability in mind, the Marshall Student Center is one of the largest student unions in the Southeast.</p>','USF Marshall Center','','inherit','closed','closed','','988-autosave-v1','','','2021-04-14 06:00:19','2021-04-14 10:00:19','',988,'https://dhoistage.concertium.com/?p=1158',0,'revision','',0),(1160,1,'2021-04-14 06:02:42','2021-04-14 10:02:42','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/project/old-tampa-city-hall/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/project/usf-student-union/\">USF Student Union</a>\r\n <a href=\"https://dhoistage.concertium.com/project/university-of-tampa-expansions/\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/project/u-tampa-bob-martinez-athletic-center/\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/project/usf-marshall/\">USF Marshall Center</a>\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/project/sawgrass-marriott-resort-spa-ponte-vedra/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n</div>\r\n</center>','Projects','','inherit','closed','closed','','782-revision-v1','','','2021-04-14 06:02:42','2021-04-14 10:02:42','',782,'https://dhoistage.concertium.com/?p=1160',0,'revision','',0),(1161,1,'2021-04-14 06:26:16','2021-04-14 10:26:16','<p>DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.</p>\r\n <p>With over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.</p>\r\n <div class=\"contentInn\">\r\n <ul class=\"hardwareProduct clearfix\">\r\n <li>\r\n <div class=\"productsPic\">\r\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n <tbody>\r\n <tr>\r\n <td valign=\"middle\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"Wood Doors\" title=\"Wood Doors\" /></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">Wood Doors</a>\r\n </li>\r\n <li>\r\n <div class=\"productsPic\">\r\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n <tbody>\r\n <tr>\r\n <td valign=\"middle\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"Hollow Metal\" title=\"Hollow Metal\" /></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">Hollow Metal</a>\r\n </li>\r\n <li>\r\n <div class=\"productsPic\">\r\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n <tbody>\r\n <tr>\r\n <td valign=\"middle\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"Hardware\" title=\"\" /></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">Hardware</a>\r\n </li>\r\n </ul>\r\n <div class=\"clear\"></div>\r\n \r\n </div>','Products','','inherit','closed','closed','','600-revision-v1','','','2021-04-14 06:26:16','2021-04-14 10:26:16','',600,'https://dhoistage.concertium.com/?p=1161',0,'revision','',0),(1163,1,'2021-04-14 06:35:22','2021-04-14 10:35:22','<p>DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.</p>\r\n <p>With over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.</p>\r\n <div class=\"contentInn\">\r\n <ul class=\"hardwareProduct clearfix\">\r\n <li>\r\n <div class=\"productsPic\">\r\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n <tbody>\r\n <tr>\r\n <td valign=\"middle\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"Wood Doors\" title=\"Wood Doors\" /></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">Wood Doors</a>\r\n </li>\r\n <li>\r\n <div class=\"productsPic\">\r\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n <tbody>\r\n <tr>\r\n <td valign=\"middle\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"Hollow Metal\" title=\"Hollow Metal\" /></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">Hollow Metal</a>\r\n </li>\r\n <li>\r\n <div class=\"productsPic\">\r\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n <tbody>\r\n <tr>\r\n <td valign=\"middle\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"Hardware\" title=\"\" /></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">Hardware</a>\r\n </li>\r\n </ul>\r\n <div class=\"clear\"></div>\r\n \r\n </div>','Products','','inherit','closed','closed','','600-revision-v1','','','2021-04-14 06:35:22','2021-04-14 10:35:22','',600,'https://dhoistage.concertium.com/?p=1163',0,'revision','',0),(1162,1,'2021-04-14 06:34:55','2021-04-14 10:34:55','DHOI provides complete division 8 solutions for projects throughout the southeastern United States. We work with architects, builders, and designers to plan and implement efficient, cost-effective solutions that add beauty, functionality and value to each project.\r\n\r\nWhether working with new construction, renovations, upgrades or refurbishment projects, DHOI customers are assured top quality, professional service and a commitment to satisfaction!\r\n\r\nSee below for a brief listing of our most enjoyable and challenging projects we have recently completed. Follow the links to learn more information about the individual projects.\r\n\r\n \r\n<center>\r\n\r\n<div style=\"width: 90%; display: table;\">\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Government</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">Old Tampa City Hall</a>\r\n FDOT Weigh Station - Seffner, FL\r\n\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Medical</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute\">Laser Spine Institute</a>\r\n Moffitt Cancer Center\r\n Florida Hospital\r\n Tampa General Hospital renovations\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Education</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Residence Halls</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Bob Martinez Athletics center</a>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion\">U. Tampa Schoomaker ROTC</a>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center\">USF Marshall Center</a>\r\n George Steinbrenner High school\r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Hospitality</font>\r\n\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">Sawgrass Marriott Golf Resort & Spa</a>\r\n The Florida Aquarium\r\n </div>\r\n\r\n </div>\r\n <!-- new row -->\r\n <div style=\"display: table-row;\">\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Office/T.I.</font>\r\n\r\n Corporate Center Tampa - I,II,III,IV\r\n \r\n </div>\r\n\r\n <div style=\"width: 350px; display: table-cell;\">\r\n <font size=\"5\">Specialty facilities</font>\r\n\r\n The Florida Aquarium\r\n Unilens Bausch + Lomb\r\n </div>\r\n </div>\r\n</div>\r\n</center>\r\n \r\n\r\n.....................................................................................\r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/ut-residence-expansion/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2018/11/StrazHall_lrg-300x300.jpg\" alt=\"utres\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">University of Tampa Expansions</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-marshall-center/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/marshall-center-front-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">USF Marshall Center</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/sawgrass-marriott/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/sawgrass-marriott-ext1-300x300.jpg\" alt=\"msc\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Sawgrass Marriott Resort & Spa - Ponte Vedra</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/laser-spine-institute/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/Laser-Spine-Institute-B-300x300.jpg\" alt=\"lspine\" width=\"300\" height=\"300\">\r\n <figcaption><font size=\"4\">Laser Spine Institute</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/old-city-hall-tampa/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/city-hall-elevation-300x300.jpg\" alt=\"chall\" width=\"300\" height=\"300\">\r\n <center><figcaption><font size=\"4\">Old City Hall Tampa</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/usf-camls/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2019/01/usf-camls-logo-300x300.jpg\" alt=\"camls\" width=\"300\" height=\"300\">\r\n <center>\r\n <figcaption><font size=\"4\">USF CAMLS</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>','Products','','inherit','closed','closed','','600-revision-v1','','','2021-04-14 06:34:55','2021-04-14 10:34:55','',600,'https://dhoistage.concertium.com/?p=1162',0,'revision','',0),(1165,1,'2021-04-14 06:58:21','2021-04-14 10:58:21','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div style=\"display: table-row;\">\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div style=\"width: 400px; display: table-cell;\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n','Products','','inherit','closed','closed','','600-revision-v1','','','2021-04-14 06:58:21','2021-04-14 10:58:21','',600,'https://dhoistage.concertium.com/?p=1165',0,'revision','',0),(1164,1,'2021-04-14 06:49:03','2021-04-14 10:49:03','<p>DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.</p>\r\n <p>With over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.</p>\r\n<h2>Hardware Product</h2>\r\n <div class=\"contentInn\">\r\n <ul class=\"hardwareProduct clearfix\">\r\n <li>\r\n <div class=\"productsPic\">\r\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n <tbody>\r\n <tr>\r\n <td valign=\"middle\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"Wood Doors\" title=\"Wood Doors\" /></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">Wood Doors</a>\r\n </li>\r\n <li>\r\n <div class=\"productsPic\">\r\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n <tbody>\r\n <tr>\r\n <td valign=\"middle\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"Hollow Metal\" title=\"Hollow Metal\" /></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">Hollow Metal</a>\r\n </li>\r\n <li>\r\n <div class=\"productsPic\">\r\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n <tbody>\r\n <tr>\r\n <td valign=\"middle\"><img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"Hardware\" title=\"\" /></td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">Hardware</a>\r\n </li>\r\n </ul>\r\n <div class=\"clear\"></div>\r\n \r\n </div>','Products','','inherit','closed','closed','','600-revision-v1','','','2021-04-14 06:49:03','2021-04-14 10:49:03','',600,'https://dhoistage.concertium.com/?p=1164',0,'revision','',0),(1166,1,'2021-04-16 11:52:55','2021-04-16 15:52:55','','favicon','','inherit','open','closed','','favicon','','','2021-04-16 11:52:55','2021-04-16 15:52:55','',0,'https://dhoistage.concertium.com/wp-content/uploads/2021/04/favicon.ico',0,'attachment','image/x-icon',0),(1167,1,'2021-04-16 12:23:03','2021-04-16 16:23:03','DHOI maintains a complete selection of wood and hollow metal doors and frames plus a large variety of commercial hardware for immediate delivery by our box truck fleet in our 16,000 square foot Tampa facility.\r\n\r\nWith over 1,000 doors in stock, we are able to efficiently meet the needs of our customers with top quality products and quick turnaround. Specialty orders are easily accommodated by our on-site custom wood and metalworking shops.\r\n\r\n \r\n\r\n<div style=\"width: 100%; display: table;\">\r\n<div class=\"product-wrapper\">\r\n<div class=\"product-box\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/wood-doors/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/07/wooddoorbg.jpg\" alt=\"wdimg\" style=\"width:70%\">\r\n <figcaption><font size=\"4\">Wood Doors</font></figcaption>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div class=\"product-box\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hollow-metal/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/e-INS-St.Pete-3-225x300.jpg\" alt=\"hmimg\" style=\"width:50%\">\r\n <center><figcaption><font size=\"4\">Hollow Metal</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n<div class=\"product-box\">\r\n<center>\r\n<figure>\r\n <a href=\"https://dhoistage.concertium.com/hardware/\">\r\n <img src=\"https://dhoistage.concertium.com/wp-content/uploads/2014/08/exit-devices.png\" alt=\"hdwimg\" style=\"width:92%\">\r\n <center>\r\n <figcaption><font size=\"4\">Hardware</font></figcaption></center>\r\n</a>\r\n</figure>\r\n</center>\r\n</div>\r\n</div>\r\n</div>\r\n\r\n \r\n','Products','','inherit','closed','closed','','600-revision-v1','','','2021-04-16 12:23:03','2021-04-16 16:23:03','',600,'https://dhoistage.concertium.com/?p=1167',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (95,16,0),(95,18,0),(95,19,0),(95,17,0),(96,16,0),(98,16,0),(100,16,0),(104,17,0),(102,17,0),(96,17,0),(107,17,0),(109,17,0),(111,17,0),(111,18,0),(111,19,0),(102,18,0),(102,19,0),(113,18,0),(115,18,0),(116,18,0),(118,18,0),(120,18,0),(113,19,0),(122,19,0),(124,19,0),(126,19,0),(128,20,0),(131,20,0),(133,20,0),(135,20,0),(126,20,0),(137,21,0),(144,21,0),(148,22,0),(146,22,0),(140,21,0),(142,21,0),(96,21,0),(150,22,0),(152,23,0),(120,23,0),(154,24,0),(156,24,0),(158,24,0),(160,24,0),(162,24,0),(164,24,0),(166,24,0),(169,25,0),(171,25,0),(172,25,0),(182,26,0),(1013,59,0),(184,26,0),(185,26,0),(415,33,0),(200,27,0),(199,27,0),(202,27,0),(198,27,0),(201,27,0),(602,26,0),(347,18,0),(343,19,0),(343,21,0),(343,16,0),(343,2,0),(344,21,0),(344,16,0),(344,17,0),(344,25,0),(344,24,0),(344,2,0),(345,20,0),(345,21,0),(345,17,0),(345,2,0),(346,25,0),(346,24,0),(346,2,0),(347,16,0),(347,17,0),(347,23,0),(347,22,0),(347,2,0),(1013,58,0),(347,20,0),(347,19,0),(347,21,0),(347,25,0),(347,24,0),(416,2,0),(415,2,0),(346,18,0),(346,20,0),(346,16,0),(346,17,0),(416,33,0),(410,32,0),(1013,1,0),(410,2,0),(417,33,0),(417,2,0),(418,33,0),(418,2,0),(419,33,0),(419,2,0),(420,33,0),(420,2,0),(421,33,0),(421,2,0),(422,33,0),(422,2,0),(423,33,0),(423,2,0),(424,33,0),(424,2,0),(425,33,0),(425,2,0),(429,2,0),(429,33,0),(430,33,0),(430,2,0),(431,33,0),(431,2,0),(432,16,0),(432,2,0),(435,16,0),(435,2,0),(436,16,0),(436,2,0),(437,16,0),(437,2,0),(438,16,0),(438,2,0),(439,16,0),(439,2,0),(440,16,0),(440,2,0),(441,16,0),(441,2,0),(442,16,0),(442,2,0),(443,16,0),(443,2,0),(444,17,0),(444,2,0),(445,17,0),(445,2,0),(446,17,0),(446,2,0),(447,17,0),(447,2,0),(448,17,0),(448,2,0),(449,17,0),(449,2,0),(450,17,0),(450,2,0),(451,17,0),(451,2,0),(452,17,0),(452,2,0),(453,19,0),(453,2,0),(454,19,0),(454,2,0),(455,19,0),(455,2,0),(456,19,0),(456,2,0),(457,18,0),(457,2,0),(458,18,0),(458,2,0),(459,21,0),(459,2,0),(460,21,0),(460,2,0),(461,21,0),(461,2,0),(462,21,0),(462,2,0),(463,21,0),(463,2,0),(464,21,0),(464,2,0),(465,21,0),(465,2,0),(466,21,0),(466,2,0),(467,21,0),(467,2,0),(468,21,0),(468,2,0),(469,21,0),(469,2,0),(470,21,0),(470,2,0),(477,21,0),(477,2,0),(478,21,0),(478,2,0),(479,22,0),(479,2,0),(480,22,0),(480,2,0),(481,22,0),(481,2,0),(482,22,0),(482,2,0),(483,22,0),(483,2,0),(484,22,0),(484,2,0),(486,22,0),(486,2,0),(487,22,0),(487,2,0),(488,22,0),(488,2,0),(489,22,0),(489,2,0),(490,22,0),(490,2,0),(491,22,0),(491,2,0),(492,22,0),(492,2,0),(493,22,0),(493,2,0),(494,22,0),(494,2,0),(495,22,0),(495,2,0),(496,22,0),(496,2,0),(497,22,0),(497,2,0),(498,22,0),(498,2,0),(499,34,0),(499,2,0),(500,34,0),(500,2,0),(501,34,0),(501,2,0),(502,25,0),(502,2,0),(503,25,0),(503,2,0),(504,25,0),(504,2,0),(505,25,0),(505,2,0),(561,35,0),(562,35,0),(565,35,0),(564,35,0),(563,35,0),(599,35,0),(761,37,0),(761,36,0),(761,38,0),(761,39,0),(761,40,0),(761,41,0),(761,42,0),(761,43,0),(761,44,0),(761,45,0),(761,46,0),(761,47,0),(788,26,0),(812,26,0),(761,49,0),(819,52,0),(819,51,0),(819,53,0),(819,54,0),(819,55,0),(344,62,0),(345,62,0),(346,62,0),(347,62,0),(505,62,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=70 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'product_type','',0,85),(3,3,'product_type','',0,0),(4,4,'product_type','',0,0),(5,5,'product_type','',0,0),(6,6,'shop_order_status','',0,0),(7,7,'shop_order_status','',0,0),(8,8,'shop_order_status','',0,0),(9,9,'shop_order_status','',0,0),(10,10,'shop_order_status','',0,0),(11,11,'shop_order_status','',0,0),(12,12,'shop_order_status','',0,0),(13,13,'product_cat','DHOI stocks the highest quality architectural hardware. We store various styles and finishes for immediate availability. In addition to builders hardware we are authorized distributors of the following hardware categories: electronic security, detention, fire/life safety and barrier free hardware.',0,0),(14,14,'product_cat','For both internal and external applications, DHOI offers a wide variety of hollow metal doors and frames in a range of sizes, styles and gauges. Stock consists of commercial knock-down frames as well as welded hollow metal frames and doors.\r\n\r\nDHOI maintains an ample stock of fire rated metal doors and frames for specified projects. To fulfill custom specifications in fast-turnaround time, our in-house machine shop modifies doors with lights, louvers and can make hardware preparations. Plus, we offer a variety of specially designed door applications for hospitals, x-ray labs, and acoustical environments.',0,0),(15,15,'product_cat','DHOI maintains a full line of wood doors in 5 ply and 7 ply. Our stock doors are available in a variety of cores, in heights up to 8’-10”. We maintain a full inventory of 20 min, 45 min and 90 min fire rated doors. All of the doors we carry are readily available in Birch, Red Oak, Cherry and Mahogany.\r\n\r\nWe provide factory finishes as well as custom finishes in efforts to provide color consistency and uniformity for every project. Our on-site wood shop can label and perform any door modifications needed for your specifications.',0,0),(16,16,'product_cat','',13,18),(17,17,'product_cat','',13,20),(18,18,'product_cat','',13,12),(19,19,'product_cat','',13,13),(20,20,'product_cat','',13,8),(21,21,'product_cat','',13,23),(22,22,'product_cat','',13,23),(23,23,'product_cat','',13,3),(24,24,'product_cat','',14,10),(25,25,'product_cat','',13,10),(26,26,'nav_menu','',0,6),(27,27,'nav_menu','',0,5),(28,28,'product_cat','',13,0),(32,32,'product_cat','',15,1),(33,33,'product_cat','',15,14),(31,31,'category','',0,0),(34,34,'product_cat','',13,3),(35,35,'nav_menu','',0,6),(36,36,'category','',0,1),(37,37,'post_tag','',0,1),(38,38,'post_tag','',0,1),(39,39,'post_tag','',0,1),(40,40,'post_tag','',0,1),(41,41,'post_tag','',0,1),(42,42,'post_tag','',0,1),(43,43,'post_tag','',0,1),(44,44,'post_tag','',0,1),(45,45,'post_tag','',0,1),(46,46,'post_tag','',0,1),(47,47,'post_tag','',0,1),(48,48,'post_format','',0,0),(49,49,'post_format','',0,1),(50,50,'post_format','',0,0),(51,51,'category','',0,1),(52,52,'post_tag','',0,1),(53,53,'post_tag','',0,1),(54,54,'post_tag','',0,1),(55,55,'post_tag','',0,1),(56,56,'category','',0,0),(57,57,'category','',0,0),(58,58,'post_tag','',0,1),(59,59,'post_tag','',0,1),(60,60,'product_visibility','',0,0),(61,61,'product_visibility','',0,0),(62,62,'product_visibility','',0,0),(63,63,'product_visibility','',0,0),(64,64,'product_visibility','',0,0),(65,65,'product_visibility','',0,0),(66,66,'product_visibility','',0,0),(67,67,'product_visibility','',0,0),(68,68,'product_visibility','',0,0),(69,69,'product_cat','',0,0);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=129 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (1,13,'order','0'),(2,13,'display_type',''),(3,13,'thumbnail_id','83'),(4,14,'order','0'),(5,14,'display_type',''),(6,14,'thumbnail_id','84'),(7,15,'order','0'),(8,15,'display_type',''),(9,15,'thumbnail_id','85'),(10,16,'order','0'),(11,16,'display_type','subcategories'),(12,16,'thumbnail_id','353'),(13,17,'order','0'),(14,17,'display_type','subcategories'),(15,17,'thumbnail_id','354'),(16,18,'order','0'),(17,18,'display_type','subcategories'),(18,18,'thumbnail_id','349'),(19,19,'order','0'),(20,19,'display_type','subcategories'),(21,19,'thumbnail_id','351'),(22,20,'order','0'),(23,20,'display_type','subcategories'),(24,20,'thumbnail_id','350'),(25,21,'order','0'),(26,21,'display_type','subcategories'),(27,21,'thumbnail_id','352'),(28,22,'order','0'),(29,22,'display_type','subcategories'),(30,22,'thumbnail_id','356'),(31,23,'order','0'),(32,23,'display_type','subcategories'),(33,23,'thumbnail_id','381'),(34,24,'order','0'),(35,24,'display_type','subcategories'),(36,24,'thumbnail_id','354'),(37,25,'order','0'),(38,25,'display_type','subcategories'),(39,25,'thumbnail_id','351'),(40,16,'product_count_product_cat','14'),(41,13,'product_count_product_cat','70'),(42,18,'product_count_product_cat','4'),(43,19,'product_count_product_cat','6'),(44,17,'product_count_product_cat','13'),(45,20,'product_count_product_cat','3'),(46,21,'product_count_product_cat','18'),(47,22,'product_count_product_cat','20'),(48,23,'product_count_product_cat','1'),(49,24,'product_count_product_cat','3'),(50,14,'product_count_product_cat','7'),(51,25,'product_count_product_cat','7'),(52,28,'order','0'),(53,28,'display_type',''),(54,28,'thumbnail_id','337'),(55,33,'display_type','subcategories'),(56,32,'display_type','subcategories'),(57,32,'thumbnail_id','395'),(58,33,'order','0'),(59,33,'thumbnail_id','398'),(60,32,'order','0'),(61,15,'product_count_product_cat','15'),(62,32,'product_count_product_cat','1'),(63,33,'product_count_product_cat','14'),(64,34,'order','0'),(65,34,'display_type','subcategories'),(66,34,'thumbnail_id','354'),(67,34,'product_count_product_cat','3'),(128,69,'product_count_product_cat','0');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=70 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'pending','pending',0),(7,'failed','failed',0),(8,'on-hold','on-hold',0),(9,'processing','processing',0),(10,'completed','completed',0),(11,'refunded','refunded',0),(12,'cancelled','cancelled',0),(13,'Hardware','hardware',0),(14,'Hollow Metal Doors','hollow-metal-doors',0),(15,'Wood Doors','wood-doors',0),(16,'Hinges','hinges',0),(17,'Locks','locks',0),(18,'Closers','closers',0),(19,'Exit Devices','exit-devices',0),(20,'Electric','electric',0),(21,'Flat Goods','flat-goods',0),(22,'Threshold/Weather','threshold-weather',0),(23,'Overhead Stops','overhead-stops',0),(24,'Metal Door Manufacturers','metal-door-manufacturers',0),(25,'Louver & Light Kit Manufacturers','louver-light-kit-manufacturers',0),(26,'header','header',0),(27,'footer','footer',0),(28,'Hello','hello',0),(32,'Algoma','algoma',0),(31,'Hardware device','hardware-device',0),(33,'Lampton','lampton',0),(34,'Glass','glass',0),(35,'new-header','new-header',0),(36,'Wood grain','wood-grain',0),(37,'Wood','wood',0),(38,'grain','grain',0),(39,'rift cut','rift-cut',0),(40,'book matched','book-matched',0),(41,'quarter cut','quarter-cut',0),(42,'figured','figured',0),(43,'oak','oak',0),(44,'mahogany','mahogany',0),(45,'birch','birch',0),(46,'hardwood','hardwood',0),(47,'softwood','softwood',0),(48,'post-format-aside','post-format-aside',0),(49,'post-format-image','post-format-image',0),(50,'post-format-gallery','post-format-gallery',0),(51,'hardware','hardware-2',0),(52,'keying','keying',0),(53,'cylinders','cylinders',0),(54,'ic core','ic-core',0),(55,'c-keyway','c-keyway',0),(56,'Building code','building-code',0),(57,'Fire ratings','fire-ratings',0),(58,'Fire ratings','fire-ratings',0),(59,'Building code','building-code',0),(60,'exclude-from-search','exclude-from-search',0),(61,'exclude-from-catalog','exclude-from-catalog',0),(62,'featured','featured',0),(63,'outofstock','outofstock',0),(64,'rated-1','rated-1',0),(65,'rated-2','rated-2',0),(66,'rated-3','rated-3',0),(67,'rated-4','rated-4',0),(68,'rated-5','rated-5',0),(69,'Uncategorized','uncategorized',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=68 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'first_name',''),(2,1,'last_name',''),(3,1,'nickname','admin'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp350_media,wp360_revisions,wp360_locks,wp390_widgets,theme_editor_notice'),(13,1,'show_welcome_panel','1'),(14,1,'wp_dashboard_quick_press_last_post_id','1171'),(15,1,'wp_user-settings','libraryContent=browse&editor=html&mfold=o&wplink=1&hidetb=1&dfw_width=496&imgsize=thumbnail&ed_size=360&posts_list_mode=list&advImgDetails=show'),(16,1,'wp_user-settings-time','1618386399'),(17,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(18,1,'metaboxhidden_nav-menus','a:10:{i:0;s:8:\"add-post\";i:1;s:11:\"add-product\";i:2;s:20:\"add-home_page_slider\";i:3;s:12:\"add-partners\";i:4;s:7:\"add-faq\";i:5;s:9:\"add-brand\";i:6;s:12:\"add-post_tag\";i:7;s:15:\"add-post_format\";i:8;s:15:\"add-product_cat\";i:9;s:15:\"add-product_tag\";}'),(19,1,'nav_menu_recently_edited','26'),(20,1,'closedpostboxes_project','a:0:{}'),(21,1,'metaboxhidden_project','a:1:{i:0;s:7:\"slugdiv\";}'),(22,1,'closedpostboxes_nav-menus','a:0:{}'),(23,1,'closedpostboxes_page','a:0:{}'),(24,1,'metaboxhidden_page','a:2:{i:0;s:12:\"revisionsdiv\";i:1;s:10:\"postcustom\";}'),(27,1,'_woocommerce_persistent_cart','a:1:{s:4:\"cart\";a:0:{}}'),(25,1,'closedpostboxes_industry-links','a:0:{}'),(26,1,'metaboxhidden_industry-links','a:1:{i:0;s:7:\"slugdiv\";}'),(28,1,'meta-box-order_page','a:3:{s:4:\"side\";s:36:\"submitdiv,pageparentdiv,postimagediv\";s:6:\"normal\";s:83:\"revisionsdiv,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv,image_upload\";s:8:\"advanced\";s:0:\"\";}'),(29,1,'screen_layout_page','2'),(30,1,'edit_page_per_page','30'),(31,1,'billing_first_name',''),(32,1,'billing_last_name',''),(33,1,'billing_company',''),(34,1,'billing_address_1',''),(35,1,'billing_address_2',''),(36,1,'billing_city',''),(37,1,'billing_postcode',''),(38,1,'billing_state',''),(39,1,'billing_country',''),(40,1,'billing_phone',''),(41,1,'billing_email',''),(42,1,'shipping_first_name',''),(43,1,'shipping_last_name',''),(44,1,'shipping_company',''),(45,1,'shipping_address_1',''),(46,1,'shipping_address_2',''),(47,1,'shipping_city',''),(48,1,'shipping_postcode',''),(49,1,'shipping_state',''),(50,1,'shipping_country',''),(52,1,'wc_last_active','1619049600'),(53,1,'_woocommerce_tracks_anon_id','woo:5bRbd2al73RL+UD5kf/1dhi3'),(54,1,'_order_count','0'),(62,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"111.93.226.0\";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','$P$BumYMHPE/DgExYQ9GwDUOWyVptvkk61','admin','monika.webmaster2012@gmail.com','','2014-06-13 11:05:23','',0,'admin');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_admin_note_actions`
--
DROP TABLE IF EXISTS `wp_wc_admin_note_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_admin_note_actions` (
`action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`note_id` bigint(20) unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`query` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`is_primary` tinyint(1) NOT NULL DEFAULT '0',
`actioned_text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`action_id`),
KEY `note_id` (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=387 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_admin_note_actions`
--
LOCK TABLES `wp_wc_admin_note_actions` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_note_actions` VALUES (1,1,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&id=13860df971&SIGNUPPAGE=plugin','actioned',0,''),(2,3,'open-marketing-hub','Open marketing hub','https://dhoistage.concertium.com/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned',0,''),(3,2,'connect','Connect','?page=wc-addons§ion=helper','unactioned',0,''),(4,4,'day-after-first-product','Learn more','https://docs.woocommerce.com/document/woocommerce-customizer/?utm_source=inbox','actioned',0,''),(44,5,'open_wc_paypal_payments_product_page','Learn more','https://woocommerce.com/products/woocommerce-paypal-payments/','actioned',1,''),(45,6,'upgrade_now_facebook_pixel_api','Upgrade now','plugin-install.php?tab=plugin-information&plugin=§ion=changelog','actioned',1,''),(46,7,'learn_more_facebook_ec','Learn more','https://woocommerce.com/products/facebook/','unactioned',1,''),(47,8,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,''),(48,9,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,''),(49,10,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,''),(50,11,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,''),(51,12,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox','actioned',1,''),(52,13,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales','actioned',1,''),(53,14,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business','actioned',1,''),(54,15,'add-apple-pay','Add Apple Pay','/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments','actioned',1,''),(55,15,'learn-more','Learn more','https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay','actioned',1,''),(56,16,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales','actioned',1,''),(57,17,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business','actioned',1,''),(58,18,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox','actioned',1,''),(59,19,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox','unactioned',1,''),(386,20,'update-db_done','Thanks!','https://dhoistage.concertium.com/wp-admin/index.php?wc-hide-notice=update&_nonce_action=woocommerce_hide_notices_nonce&_nonce_name=_wc_notice_nonce','actioned',1,'');
/*!40000 ALTER TABLE `wp_wc_admin_note_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_admin_notes`
--
DROP TABLE IF EXISTS `wp_wc_admin_notes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_admin_notes` (
`note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`content_data` longtext COLLATE utf8mb4_unicode_ci,
`status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_reminder` datetime DEFAULT NULL,
`is_snoozable` tinyint(1) NOT NULL DEFAULT '0',
`layout` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`image` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`icon` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'info',
PRIMARY KEY (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_admin_notes`
--
LOCK TABLES `wp_wc_admin_notes` WRITE;
/*!40000 ALTER TABLE `wp_wc_admin_notes` DISABLE KEYS */;
INSERT INTO `wp_wc_admin_notes` VALUES (1,'wc-admin-onboarding-email-marketing','info','en_US','Sign up for tips, product updates, and inspiration','We\'re here for you - get tips, product updates and inspiration straight to your email box','{}','unactioned','woocommerce-admin','2021-04-02 11:27:49',NULL,0,'plain','',0,'info'),(2,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','{}','unactioned','woocommerce-admin','2021-04-02 11:27:49',NULL,0,'plain','',0,'info'),(3,'wc-admin-marketing-intro','info','en_US','Connect with your audience','Grow your customer base and increase your sales with marketing tools built for WooCommerce.','{}','unactioned','woocommerce-admin','2021-04-02 11:27:50',NULL,0,'plain','',0,'info'),(4,'wc-admin-customizing-product-catalog','info','en_US','How to customize your product catalog','You want your product catalog and images to look great and align with your brand. This guide will give you all the tips you need to get your products looking great in your store.','{}','unactioned','woocommerce-admin','2021-04-02 11:27:50',NULL,0,'plain','',0,'info'),(5,'paypal_ppcp_gtm_2021','marketing','en_US','Offer more options with the new PayPal','Get the latest PayPal extension for a full suite of payment methods, extensive currency and country coverage, and Pay Later options.','{}','pending','woocommerce.com','2021-04-02 15:27:51',NULL,0,'plain','',0,'info'),(6,'facebook_pixel_api_2021','marketing','en_US','Improve the performance of your Facebook ads','Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved performance and measurement of your Facebook ad campaigns.','{}','pending','woocommerce.com','2021-04-02 15:27:51',NULL,0,'plain','',0,'info'),(7,'facebook_ec_2021','marketing','en_US','Sync your product catalog with Facebook to help boost sales','A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.','{}','pending','woocommerce.com','2021-04-02 15:27:51',NULL,0,'plain','',0,'info'),(8,'ecomm-need-help-setting-up-your-store','info','en_US','Need help setting up your Store?','Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.','{}','pending','woocommerce.com','2021-04-02 15:27:51',NULL,0,'plain','',0,'info'),(9,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping & Tax helps get your store “ready to sell” as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','{}','pending','woocommerce.com','2021-04-02 15:27:51',NULL,0,'plain','',0,'info'),(10,'ecomm-unique-shopping-experience','info','en_US','For a shopping experience as unique as your customers','Product Add-Ons allow your customers to personalize products while they’re shopping on your online store. No more follow-up email requests—customers get what they want, before they’re done checking out. Learn more about this extension that comes included in your plan.','{}','pending','woocommerce.com','2021-04-02 15:27:51',NULL,0,'plain','',0,'info'),(11,'wc-admin-getting-started-in-ecommerce','info','en_US','Getting Started in eCommerce - webinar','We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.','{}','pending','woocommerce.com','2021-04-02 15:27:51',NULL,0,'plain','',0,'info'),(12,'your-first-product','info','en_US','Your first product','That\'s huge! You\'re well on your way to building a successful online store — now it’s time to think about how you\'ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','{}','pending','woocommerce.com','2021-04-02 15:27:51',NULL,0,'plain','',0,'info'),(13,'wc-square-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with Square you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-04-02 15:27:51',NULL,0,'plain','',0,'info'),(14,'wc-square-apple-pay-grow-your-business','marketing','en_US','Grow your business with Square and Apple Pay ','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','{}','pending','woocommerce.com','2021-04-02 15:27:51',NULL,0,'plain','',0,'info'),(15,'wcpay-apple-pay-is-now-available','marketing','en_US','Apple Pay is now available with WooCommerce Payments!','Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>®. It’s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.','{}','pending','woocommerce.com','2021-04-02 15:27:51',NULL,0,'plain','',0,'info'),(16,'wcpay-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','{}','pending','woocommerce.com','2021-04-02 15:27:52',NULL,0,'plain','',0,'info'),(17,'wcpay-apple-pay-grow-your-business','marketing','en_US','Grow your business with WooCommerce Payments and Apple Pay','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','{}','pending','woocommerce.com','2021-04-02 15:27:53',NULL,0,'plain','',0,'info'),(18,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It\'s crucial to get your store\'s checkout as smooth as possible to avoid losing sales. Let\'s take a look at how you can optimize the checkout experience for your shoppers.','{}','pending','woocommerce.com','2021-04-02 15:27:53',NULL,0,'plain','',0,'info'),(19,'wc-admin-first-five-things-to-customize','info','en_US','The first 5 things to customize in your store','Deciding what to start with first is tricky. To help you properly prioritize, we\'ve put together this short list of the first few things you should customize in WooCommerce.','{}','pending','woocommerce.com','2021-04-02 15:27:53',NULL,0,'plain','',0,'info'),(20,'wc-update-db-reminder','update','en_US','WooCommerce database update done','WooCommerce database update complete. Thank you for updating to the latest version!','{}','unactioned','woocommerce-core','2021-05-29 03:27:59',NULL,0,'plain','',0,'info');
/*!40000 ALTER TABLE `wp_wc_admin_notes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_category_lookup`
--
DROP TABLE IF EXISTS `wp_wc_category_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_category_lookup` (
`category_tree_id` bigint(20) unsigned NOT NULL,
`category_id` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`category_tree_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_category_lookup`
--
LOCK TABLES `wp_wc_category_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_category_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_category_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_customer_lookup`
--
DROP TABLE IF EXISTS `wp_wc_customer_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_customer_lookup` (
`customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned DEFAULT NULL,
`username` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`date_last_active` timestamp NULL DEFAULT NULL,
`date_registered` timestamp NULL DEFAULT NULL,
`country` char(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`postcode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`city` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`state` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`customer_id`),
UNIQUE KEY `user_id` (`user_id`),
KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_customer_lookup`
--
LOCK TABLES `wp_wc_customer_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_customer_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_customer_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_download_log`
--
DROP TABLE IF EXISTS `wp_wc_download_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_download_log` (
`download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`timestamp` datetime NOT NULL,
`permission_id` bigint(20) unsigned NOT NULL,
`user_id` bigint(20) unsigned DEFAULT NULL,
`user_ip_address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
PRIMARY KEY (`download_log_id`),
KEY `permission_id` (`permission_id`),
KEY `timestamp` (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_download_log`
--
LOCK TABLES `wp_wc_download_log` WRITE;
/*!40000 ALTER TABLE `wp_wc_download_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_download_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_order_coupon_lookup`
--
DROP TABLE IF EXISTS `wp_wc_order_coupon_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_coupon_lookup` (
`order_id` bigint(20) unsigned NOT NULL,
`coupon_id` bigint(20) NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`discount_amount` double NOT NULL DEFAULT '0',
PRIMARY KEY (`order_id`,`coupon_id`),
KEY `coupon_id` (`coupon_id`),
KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_order_coupon_lookup`
--
LOCK TABLES `wp_wc_order_coupon_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_coupon_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_order_coupon_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_order_product_lookup`
--
DROP TABLE IF EXISTS `wp_wc_order_product_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_product_lookup` (
`order_item_id` bigint(20) unsigned NOT NULL,
`order_id` bigint(20) unsigned NOT NULL,
`product_id` bigint(20) unsigned NOT NULL,
`variation_id` bigint(20) unsigned NOT NULL,
`customer_id` bigint(20) unsigned DEFAULT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`product_qty` int(11) NOT NULL,
`product_net_revenue` double NOT NULL DEFAULT '0',
`product_gross_revenue` double NOT NULL DEFAULT '0',
`coupon_amount` double NOT NULL DEFAULT '0',
`tax_amount` double NOT NULL DEFAULT '0',
`shipping_amount` double NOT NULL DEFAULT '0',
`shipping_tax_amount` double NOT NULL DEFAULT '0',
PRIMARY KEY (`order_item_id`),
KEY `order_id` (`order_id`),
KEY `product_id` (`product_id`),
KEY `customer_id` (`customer_id`),
KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_order_product_lookup`
--
LOCK TABLES `wp_wc_order_product_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_product_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_order_product_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_order_stats`
--
DROP TABLE IF EXISTS `wp_wc_order_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_stats` (
`order_id` bigint(20) unsigned NOT NULL,
`parent_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`num_items_sold` int(11) NOT NULL DEFAULT '0',
`total_sales` double NOT NULL DEFAULT '0',
`tax_total` double NOT NULL DEFAULT '0',
`shipping_total` double NOT NULL DEFAULT '0',
`net_total` double NOT NULL DEFAULT '0',
`returning_customer` tinyint(1) DEFAULT NULL,
`status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`customer_id` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`order_id`),
KEY `date_created` (`date_created`),
KEY `customer_id` (`customer_id`),
KEY `status` (`status`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_order_stats`
--
LOCK TABLES `wp_wc_order_stats` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_stats` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_order_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_order_tax_lookup`
--
DROP TABLE IF EXISTS `wp_wc_order_tax_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_order_tax_lookup` (
`order_id` bigint(20) unsigned NOT NULL,
`tax_rate_id` bigint(20) unsigned NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`shipping_tax` double NOT NULL DEFAULT '0',
`order_tax` double NOT NULL DEFAULT '0',
`total_tax` double NOT NULL DEFAULT '0',
PRIMARY KEY (`order_id`,`tax_rate_id`),
KEY `tax_rate_id` (`tax_rate_id`),
KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_order_tax_lookup`
--
LOCK TABLES `wp_wc_order_tax_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_order_tax_lookup` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_order_tax_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_product_meta_lookup`
--
DROP TABLE IF EXISTS `wp_wc_product_meta_lookup`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_product_meta_lookup` (
`product_id` bigint(20) NOT NULL,
`sku` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
`virtual` tinyint(1) DEFAULT '0',
`downloadable` tinyint(1) DEFAULT '0',
`min_price` decimal(19,4) DEFAULT NULL,
`max_price` decimal(19,4) DEFAULT NULL,
`onsale` tinyint(1) DEFAULT '0',
`stock_quantity` double DEFAULT NULL,
`stock_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'instock',
`rating_count` bigint(20) DEFAULT '0',
`average_rating` decimal(3,2) DEFAULT '0.00',
`total_sales` bigint(20) DEFAULT '0',
`tax_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'taxable',
`tax_class` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
PRIMARY KEY (`product_id`),
KEY `virtual` (`virtual`),
KEY `downloadable` (`downloadable`),
KEY `stock_status` (`stock_status`),
KEY `stock_quantity` (`stock_quantity`),
KEY `onsale` (`onsale`),
KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_product_meta_lookup`
--
LOCK TABLES `wp_wc_product_meta_lookup` WRITE;
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` DISABLE KEYS */;
INSERT INTO `wp_wc_product_meta_lookup` VALUES (343,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(344,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(345,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(346,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(347,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(410,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(415,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(416,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(417,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(418,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(419,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(420,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(421,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(422,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(423,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(424,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(425,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(429,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(430,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(431,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(432,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(435,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(436,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(437,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(438,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(439,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(440,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(441,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(442,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(443,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(444,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(445,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(446,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(447,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(448,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(449,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(450,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(451,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(452,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(453,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(454,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(455,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(456,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(457,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(458,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(459,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(460,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(461,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(462,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(463,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(464,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(465,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(466,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(467,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(468,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(469,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(470,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(477,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(478,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(479,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(480,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(481,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(482,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(483,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(484,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(486,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(487,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(488,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(489,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(490,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(491,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(492,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(493,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(494,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(495,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(496,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(497,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(498,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(499,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(500,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(501,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(502,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(503,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(504,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL),(505,'',0,0,NULL,NULL,0,NULL,'instock',0,NULL,0,NULL,NULL);
/*!40000 ALTER TABLE `wp_wc_product_meta_lookup` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_reserved_stock`
--
DROP TABLE IF EXISTS `wp_wc_reserved_stock`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_reserved_stock` (
`order_id` bigint(20) NOT NULL,
`product_id` bigint(20) NOT NULL,
`stock_quantity` double NOT NULL DEFAULT '0',
`timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`order_id`,`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_reserved_stock`
--
LOCK TABLES `wp_wc_reserved_stock` WRITE;
/*!40000 ALTER TABLE `wp_wc_reserved_stock` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_reserved_stock` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_tax_rate_classes`
--
DROP TABLE IF EXISTS `wp_wc_tax_rate_classes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_tax_rate_classes` (
`tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`tax_rate_class_id`),
UNIQUE KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_tax_rate_classes`
--
LOCK TABLES `wp_wc_tax_rate_classes` WRITE;
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` DISABLE KEYS */;
INSERT INTO `wp_wc_tax_rate_classes` VALUES (1,'Reduced rate','reduced-rate'),(2,'Zero rate','zero-rate');
/*!40000 ALTER TABLE `wp_wc_tax_rate_classes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wc_webhooks`
--
DROP TABLE IF EXISTS `wp_wc_webhooks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wc_webhooks` (
`webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` text COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) unsigned NOT NULL,
`delivery_url` text COLLATE utf8mb4_unicode_ci NOT NULL,
`secret` text COLLATE utf8mb4_unicode_ci NOT NULL,
`topic` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`api_version` smallint(4) NOT NULL,
`failure_count` smallint(10) NOT NULL DEFAULT '0',
`pending_delivery` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`webhook_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wc_webhooks`
--
LOCK TABLES `wp_wc_webhooks` WRITE;
/*!40000 ALTER TABLE `wp_wc_webhooks` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wc_webhooks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_api_keys`
--
DROP TABLE IF EXISTS `wp_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_api_keys` (
`key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL,
`description` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
`consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
`nonces` longtext COLLATE utf8mb4_unicode_ci,
`truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
`last_access` datetime DEFAULT NULL,
PRIMARY KEY (`key_id`),
KEY `consumer_key` (`consumer_key`),
KEY `consumer_secret` (`consumer_secret`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_api_keys`
--
LOCK TABLES `wp_woocommerce_api_keys` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_api_keys` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_attribute_taxonomies`
--
DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_attribute_taxonomies` (
`attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`attribute_name` varchar(200) NOT NULL,
`attribute_label` varchar(200) DEFAULT NULL,
`attribute_type` varchar(20) NOT NULL,
`attribute_orderby` varchar(20) NOT NULL,
`attribute_public` int(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`attribute_id`),
KEY `attribute_name` (`attribute_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_attribute_taxonomies`
--
LOCK TABLES `wp_woocommerce_attribute_taxonomies` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_downloadable_product_permissions`
--
DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_downloadable_product_permissions` (
`permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`download_id` varchar(36) NOT NULL,
`product_id` bigint(20) unsigned NOT NULL,
`order_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`order_key` varchar(200) NOT NULL,
`user_email` varchar(200) NOT NULL,
`user_id` bigint(20) unsigned DEFAULT NULL,
`downloads_remaining` varchar(9) DEFAULT NULL,
`access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`access_expires` datetime DEFAULT NULL,
`download_count` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`permission_id`),
KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`,`download_id`),
KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
KEY `order_id` (`order_id`),
KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_downloadable_product_permissions`
--
LOCK TABLES `wp_woocommerce_downloadable_product_permissions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_log`
--
DROP TABLE IF EXISTS `wp_woocommerce_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_log` (
`log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`timestamp` datetime NOT NULL,
`level` smallint(4) NOT NULL,
`source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`context` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`log_id`),
KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_log`
--
LOCK TABLES `wp_woocommerce_log` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_order_itemmeta`
--
DROP TABLE IF EXISTS `wp_woocommerce_order_itemmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_itemmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_item_id` bigint(20) unsigned NOT NULL,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `order_item_id` (`order_item_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_order_itemmeta`
--
LOCK TABLES `wp_woocommerce_order_itemmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_order_items`
--
DROP TABLE IF EXISTS `wp_woocommerce_order_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_order_items` (
`order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_item_name` longtext NOT NULL,
`order_item_type` varchar(200) NOT NULL DEFAULT '',
`order_id` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`order_item_id`),
KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_order_items`
--
LOCK TABLES `wp_woocommerce_order_items` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_order_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_payment_tokenmeta`
--
DROP TABLE IF EXISTS `wp_woocommerce_payment_tokenmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokenmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`payment_token_id` bigint(20) unsigned NOT NULL,
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `payment_token_id` (`payment_token_id`),
KEY `meta_key` (`meta_key`(32))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_payment_tokenmeta`
--
LOCK TABLES `wp_woocommerce_payment_tokenmeta` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_payment_tokens`
--
DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_payment_tokens` (
`token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`gateway_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` text COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`is_default` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`token_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_payment_tokens`
--
LOCK TABLES `wp_woocommerce_payment_tokens` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_sessions`
--
DROP TABLE IF EXISTS `wp_woocommerce_sessions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_sessions` (
`session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`session_expiry` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`session_id`),
UNIQUE KEY `session_key` (`session_key`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_sessions`
--
LOCK TABLES `wp_woocommerce_sessions` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_sessions` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_sessions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_shipping_zone_locations`
--
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_locations` (
`location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`zone_id` bigint(20) unsigned NOT NULL,
`location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`location_id`),
KEY `location_id` (`location_id`),
KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_shipping_zone_locations`
--
LOCK TABLES `wp_woocommerce_shipping_zone_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_shipping_zone_methods`
--
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zone_methods` (
`zone_id` bigint(20) unsigned NOT NULL,
`instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`method_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`method_order` bigint(20) unsigned NOT NULL,
`is_enabled` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`instance_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_shipping_zone_methods`
--
LOCK TABLES `wp_woocommerce_shipping_zone_methods` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_shipping_zones`
--
DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_shipping_zones` (
`zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`zone_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`zone_order` bigint(20) unsigned NOT NULL,
PRIMARY KEY (`zone_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_shipping_zones`
--
LOCK TABLES `wp_woocommerce_shipping_zones` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_tax_rate_locations`
--
DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rate_locations` (
`location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`location_code` varchar(200) NOT NULL,
`tax_rate_id` bigint(20) unsigned NOT NULL,
`location_type` varchar(40) NOT NULL,
PRIMARY KEY (`location_id`),
KEY `tax_rate_id` (`tax_rate_id`),
KEY `location_type` (`location_type`),
KEY `location_type_code` (`location_type`,`location_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_tax_rate_locations`
--
LOCK TABLES `wp_woocommerce_tax_rate_locations` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_woocommerce_tax_rates`
--
DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_tax_rates` (
`tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`tax_rate_country` varchar(2) NOT NULL DEFAULT '',
`tax_rate_state` varchar(200) NOT NULL DEFAULT '',
`tax_rate` varchar(8) NOT NULL DEFAULT '',
`tax_rate_name` varchar(200) NOT NULL DEFAULT '',
`tax_rate_priority` bigint(20) unsigned NOT NULL,
`tax_rate_compound` int(1) NOT NULL DEFAULT '0',
`tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
`tax_rate_order` bigint(20) unsigned NOT NULL,
`tax_rate_class` varchar(200) NOT NULL DEFAULT '',
PRIMARY KEY (`tax_rate_id`),
KEY `tax_rate_country` (`tax_rate_country`),
KEY `tax_rate_state` (`tax_rate_state`),
KEY `tax_rate_class` (`tax_rate_class`),
KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_woocommerce_tax_rates`
--
LOCK TABLES `wp_woocommerce_tax_rates` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_tax_rates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping routines for database 'dhoi_stage'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2021-05-10 7:24:20