CINXE.COM
Exhibitor Resource Center | Map Your Show
<!doctype html> <!--[if IE 9 ]> <html class="no-js lt-ie10 ie9" lang="en"> <![endif]--> <!--[if (gte IE 10)|!(IE)]><!--> <html class="" lang="en"> <!--<![endif]--> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title> Exhibitor Resource Center | Map Your Show</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="/7_0/assets/css/main.css?mysv=20250128A" rel="stylesheet" type="text/css" /> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400..800&display=swap" rel="stylesheet"> <link href="/7_0/assets/css/boothsales.css?mysv=20250128A" rel="stylesheet" type="text/css" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" /> <style id="themecss"> :root {--color-accent-10: hsl(358, 81%, 48%);--color-accent-20: hsl(358, 81%, 58%);--color-accent-30: hsl(358, 81%, 68%);--color-accent-40: hsl(358, 81%, 78%);--color-accent-50: hsl(358, 81%, 88%);--color-brand-10: hsl(207, 100%, 21%);--color-brand-20: hsl(207, 87%, 29%);--color-brand-30: hsl(207, 82%, 33%);--color-brand-40: hsl(207, 76%, 39%);--color-brand-50: hsl(207, 67%, 45%);--color-brand-60: hsl(207, 65%, 55%);--color-brand-70: hsl(207, 74%, 65%);--color-brand-80: hsl(207, 84%, 74%);--color-brand-90: hsl(207, 97%, 85%);--color-brand-100: hsl(207, 75%, 97%);--color-header: hsl(0, 0%, 100%);--color-header-background: hsl(0, 0%, 100%);--color-nav: hsl(0, 0%, 0%);--color-nav-background: hsl(0, 0%, 100%);--color-shortcut: hsl(0, 0%, 100%);--color-shortcut-background: hsl(205, 82%, 33%);--color-nav-2: hsl(0, 0%, 0%);--color-nav-background-2: hsl(0, 0%, 100%);--style-search-background: hsl(0, 0%, 60%);--border-radius: 0.5rem;--event-info-font-weight: normal;--event-info-visibility: 0;--nav-links-alignment-navbar-v2: center;} </style> <script> function adjustThemeColor(color) { var themeCSSRoot = document.querySelector('#themecss'); if (themeCSSRoot) { if (getComputedStyle(document.documentElement).getPropertyValue(color)) { var colorString = getComputedStyle(document.documentElement).getPropertyValue(color), colorHSLObject = toHSLObject(colorString), colorLValueNumber = colorHSLObject.lightness, adjustedLValueNumber = colorLValueNumber + 5, adjustedLValueString = adjustedLValueNumber.toString(), adjustedHSLValueString = `hsl(${colorHSLObject.hue}, ${colorHSLObject.saturation}%, ${adjustedLValueString}%)`; function toHSLObject(hslStr) { const [hue, saturation, lightness] = hslStr.match(/\d+/g).map(Number); return { hue, saturation, lightness }; } document.documentElement.style.setProperty(color, adjustedHSLValueString); } } } </script> <script async src="https://www.googletagmanager.com/gtag/js?id=G-5PC6ZJCPR8"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-5PC6ZJCPR8'); </script> </head> <body class="env-production is-boothsales" data-boothsalesstep=""> <div class="flow"> <picture> <source media="(min-width: 960px)" srcset="/mys_shared/packexpo25/showfiles/imgs/packexpo25_Exhibitor_Header.png?breakcache=9790D69E-0240-3465-33151FEFC60317FD"> <img src="/mys_shared/packexpo25/packexpo25_logo.png" alt="packexpo25 logo" class="logo--exhdash-page-title"> </picture> <div class="form--wrapper-login loginOnboard--exhdash_wrapper signIn--exhdash-boothSpace"> <dialog id="usermessagediv" open class="alert hidden alert--info"> <div class="media"> <svg class="media-img" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" role="presentation"> <path fill-rule="nonzero" d="M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm1 18h-2v-8h2v8zm-1-12.25c.69 0 1.25.56 1.25 1.25s-.56 1.25-1.25 1.25-1.25-.56-1.25-1.25.56-1.25 1.25-1.25z" /> </svg> <div class="media-body flow"> </div> <button class="button button--transparent button--alert-close" aria-label="close" type="button"> <svg width="16" height="16" xmlns="http://www.w3.org/2000/svg" aria-describedby="title" role="img" class="alertclose"> <title id="title">Close</title> <path fill-rule="nonzero" d="M15.954 14.005L9.831 7.94l6.062-6.116-1.888-1.871-6.06 6.12L1.827.013-.046 1.889l6.124 6.07-6.063 6.123 1.873 1.873 6.075-6.128 6.12 6.067z"></path> </svg> </button> </div> </dialog> <script> (function() { let alertCloseButtons = document.querySelectorAll('button.button--alert-close'); if (alertCloseButtons) { alertCloseButtons.forEach(function(element) { element.addEventListener('click', function() { animateCSS(element.closest('dialog'), 'fadeOutUp'); }) }); } let animateCSS = (element, animation, removeElement = true) => // We create a Promise and return it new Promise((resolve, reject) => { let animationName = `${animation}`, node = element || document.querySelector(element); node.classList.add(`animated`, animationName); // When the animation ends, we clean the classes and resolve the Promise function handleAnimationEnd(event) { event.stopPropagation(); // Remove element from page if (removeElement) { node.remove(); } else { // Remove only animation classes //node.classList.remove(`animated`, animationName); } resolve('Animation ended'); } node.addEventListener('animationend', handleAnimationEnd, { once: true }); }); })() </script> <form action="index.cfm?CFID=1783866&CFTOKEN=6865b3bb4a9e571f-9790D29D-A20A-5AB0-BC1EED828F9F9177" method="get" class="form--wrapper"> <div class="form-item"> <h1 class="heading-text_main"> Apply to Exhibit</h1> </div> <h4 class="heading-text_secondary"> Returning Exhibitors</h4> <div class="form-item"> <label for="exhdash-boothSales-bookingCode" class=""> Booking Code/Password</label> <p> <!-- Booking_Code_Content --></p> <p class="form--hint"> Your code should have been sent to your email. </p> <input type="text" id="exhdash-boothSales-bookingCode" name="renewkey" autofocus /> </div> <div class="form-item flow"> <button type="submit" class="button button--primary db w-100" value=""> Continue </button> <p class="login-help-info"> Having problems finding your booking code? Contact show management at <a href="mailto:expo@pmmi.org">expo@pmmi.org</a>. </p> </div> <div class="form-item"> <hr /> </div> <div class="form-item flow"> <h4 class="heading-text_secondary"> I Don鈥檛 Have a Booking Code / New Exhibitor</h4> <!-- No_Booking_Code_Content --> <p class="description-text"> If you are a new exhibitor, please use the button below to submit your booth application.</p> <a href="index.cfm?new=true&CFID=1783866&CFTOKEN=6865b3bb4a9e571f-9790D29D-A20A-5AB0-BC1EED828F9F9177" class="button mt5" > Continue </a> </div> </form> <p class="indexbottomcontent-text"> <!-- Index_Bottom_Content --></p> </div> </div> </body>