var qsProxy = {};
function FrameBuilder(formId,appendTo,initialHeight,iframeCode,title,embedStyleJSON){this.formId=formId;this.initialHeight=initialHeight;this.iframeCode=iframeCode;this.frame=null;this.timeInterval=200;this.appendTo=appendTo||false;this.formSubmitted=0;this.frameMinWidth='100%';this.defaultHeight='';this.init=function(){this.embedURLHash=this.getMD5(window.location.href);if(embedStyleJSON&&(embedStyleJSON[this.embedURLHash]&&embedStyleJSON[this.embedURLHash]['inlineStyle']['embedWidth'])){this.frameMinWidth=embedStyleJSON[this.embedURLHash]['inlineStyle']['embedWidth']+'px';}
if(embedStyleJSON&&(embedStyleJSON[this.embedURLHash])){if(embedStyleJSON[this.embedURLHash]['inlineStyle']&&embedStyleJSON[this.embedURLHash]['inlineStyle']['embedHeight']){this.defaultHeight='data-frameHeight="'+embedStyleJSON[this.embedURLHash]['inlineStyle']['embedHeight']+'"';}}
this.createFrame();this.addFrameContent(this.iframeCode);};this.createFrame=function(){var tmp_is_ie=!!window.ActiveXObject;this.iframeDomId=document.getElementById(this.formId)?this.formId+'_'+new Date().getTime():this.formId;var htmlCode="<"+"iframe title=\""+title.replace(/[\\"']/g,'\\$&').replace(/&amp;/g,'&')+"\" src=\"\" allowtransparency=\"true\" allow=\"geolocation; microphone; camera\" allowfullscreen=\"true\" name=\""+this.formId+"\" id=\""+this.iframeDomId+"\" style=\"width: 10px; min-width:"+this.frameMinWidth+"; display: block; overflow: hidden; height:"+this.initialHeight+"px; border: none;\" scrolling=\"no\""+this.defaultHeight+"></if"+"rame>";if(this.appendTo===false){document.write(htmlCode);}else{var tmp=document.createElement('div');tmp.innerHTML=htmlCode;var a=this.appendTo;document.getElementById(a).appendChild(tmp.firstChild);}
this.frame=document.getElementById(this.iframeDomId);if(tmp_is_ie===true){try{var iframe=this.frame;var doc=iframe.contentDocument?iframe.contentDocument:(iframe.contentWindow.document||iframe.document);doc.open();doc.write("");}
catch(err){this.frame.src="javascript:void((function(){document.open();document.domain=\'"+this.getBaseDomain()+"\';document.close();})())";}}
this.addEvent(this.frame,'load',this.bindMethod(this.setTimer,this));var self=this;if(window.chrome!==undefined){this.frame.onload=function(){try{var doc=this.contentWindow.document;var _jotform=this.contentWindow.JotForm;if(doc!==undefined){var form=doc.getElementById(""+self.iframeDomId);self.addEvent(form,"submit",function(){if(_jotform.validateAll()){self.formSubmitted=1;}});}}catch(e){}}}};this.addEvent=function(obj,type,fn){if(obj.attachEvent){obj["e"+type+fn]=fn;obj[type+fn]=function(){obj["e"+type+fn](window.event);};obj.attachEvent("on"+type,obj[type+fn]);}
else{obj.addEventListener(type,fn,false);}};this.addFrameContent=function(string){if(window.location.search&&window.location.search.indexOf('disableSmartEmbed')>-1){string=string.replace(new RegExp('smartEmbed=1(?:&amp;|&)'),'');string=string.replace(new RegExp('isSmartEmbed'),'');}else{var cssLink='stylebuilder/'+this.formId+'.css';var cssPlace=string.indexOf(cssLink);var prepend=string[cssPlace+cssLink.length]==='?'?'&amp;':'?';var embedUrl=prepend+'embedUrl='+window.location.href;if(cssPlace>-1){var positionLastRequestElement=string.indexOf('\"/>',cssPlace);if(positionLastRequestElement>-1){string=string.substr(0,positionLastRequestElement)+embedUrl+string.substr(positionLastRequestElement);string=string.replace(cssLink,'stylebuilder/'+this.formId+'/'+this.embedURLHash+'.css');}}}
string=string.replace(new RegExp('src\\=\\"[^"]*captcha.php\"><\/scr'+'ipt>','gim'),'src="http://api.recaptcha.net/js/recaptcha_ajax.js"></scr'+'ipt><'+'div id="recaptcha_div"><'+'/div>'+'<'+'style>#recaptcha_logo{ display:none;} #recaptcha_tagline{display:none;} #recaptcha_table{border:none !important;} .recaptchatable .recaptcha_image_cell, #recaptcha_table{ background-color:transparent !important; } <'+'/style>'+'<'+'script defer="defer"> window.onload = function(){ Recaptcha.create("6Ld9UAgAAAAAAMon8zjt30tEZiGQZ4IIuWXLt1ky", "recaptcha_div", {theme: "clean",tabindex: 0,callback: function (){'+'if (document.getElementById("uword")) { document.getElementById("uword").parentNode.removeChild(document.getElementById("uword")); } if (window["validate"] !== undefined) { if (document.getElementById("recaptcha_response_field")){ document.getElementById("recaptcha_response_field").onblur = function(){ validate(document.getElementById("recaptcha_response_field"), "Required"); } } } if (document.getElementById("recaptcha_response_field")){ document.getElementsByName("recaptcha_challenge_field")[0].setAttribute("name", "anum"); } if (document.getElementById("recaptcha_response_field")){ document.getElementsByName("recaptcha_response_field")[0].setAttribute("name", "qCap"); }}})'+' }<'+'/script>');string=string.replace(/(type="text\/javascript">)\s+(validate\(\"[^"]*"\);)/,'$1 jTime = setInterval(function(){if("validate" in window){$2clearTimeout(jTime);}}, 1000);');if(string.match('#sublabel_litemode')){string=string.replace('class="form-all"','class="form-all" style="margin-top:0;"');}
var iframe=this.frame;var doc=iframe.contentDocument?iframe.contentDocument:(iframe.contentWindow.document||iframe.document);doc.open();doc.write(string);setTimeout(function(){doc.close();try{if('JotFormFrameLoaded'in window){JotFormFrameLoaded();}}catch(e){}},200);};this.setTimer=function(){var self=this;this.interval=setTimeout(this.changeHeight.bind(this),this.timeInterval);};this.getBaseDomain=function(){var thn=window.location.hostname;var cc=0;var buff="";for(var i=0;i<thn.length;i++){var chr=thn.charAt(i);if(chr=="."){cc++;}
if(cc==0){buff+=chr;}}
if(cc==2){thn=thn.replace(buff+".","");}
return thn;}
this.changeHeight=function(){var actualHeight=this.getBodyHeight();var currentHeight=this.getViewPortHeight();if(actualHeight===undefined){this.frame.style.height=this.frameHeight;if(!this.frame.style.minHeight){this.frame.style.minHeight="300px";}}else if(Math.abs(actualHeight-currentHeight)>18){this.frame.style.height=(actualHeight)+"px";}
this.setTimer();};this.bindMethod=function(method,scope){return function(){method.apply(scope,arguments);};};this.frameHeight=0;this.getBodyHeight=function(){if(this.formSubmitted===1){return;}
var height;var scrollHeight;var offsetHeight;try{if(this.frame.contentWindow.document.height){height=this.frame.contentWindow.document.height;if(this.frame.contentWindow.document.body.scrollHeight){height=scrollHeight=this.frame.contentWindow.document.body.scrollHeight;}
if(this.frame.contentWindow.document.body.offsetHeight){height=offsetHeight=this.frame.contentWindow.document.body.offsetHeight;}}else if(this.frame.contentWindow.document.body){if(this.frame.contentWindow.document.body.offsetHeight){height=offsetHeight=this.frame.contentWindow.document.body.offsetHeight;}
var formWrapper=this.frame.contentWindow.document.querySelector('.form-all');var margin=parseInt(getComputedStyle(formWrapper).marginTop,10);if(!isNaN(margin)){height+=margin;}}}catch(e){}
this.frameHeight=height;return height;};this.getViewPortHeight=function(){if(this.formSubmitted===1){return;}
var height=0;try{if(this.frame.contentWindow.window.innerHeight){height=this.frame.contentWindow.window.innerHeight-18;}else if((this.frame.contentWindow.document.documentElement)&&(this.frame.contentWindow.document.documentElement.clientHeight)){height=this.frame.contentWindow.document.documentElement.clientHeight;}else if((this.frame.contentWindow.document.body)&&(this.frame.contentWindow.document.body.clientHeight)){height=this.frame.contentWindow.document.body.clientHeight;}}catch(e){}
return height;};this.getMD5=function(s){function L(k,d){return(k<<d)|(k>>>(32-d))}function K(G,k){var I,d,F,H,x;F=(G&2147483648);H=(k&2147483648);I=(G&1073741824);d=(k&1073741824);x=(G&1073741823)+(k&1073741823);if(I&d){return(x^2147483648^F^H)}if(I|d){if(x&1073741824){return(x^3221225472^F^H)}else{return(x^1073741824^F^H)}}else{return(x^F^H)}}function r(d,F,k){return(d&F)|((~d)&k)}function q(d,F,k){return(d&k)|(F&(~k))}function p(d,F,k){return(d^F^k)}function n(d,F,k){return(F^(d|(~k)))}function u(G,F,aa,Z,k,H,I){G=K(G,K(K(r(F,aa,Z),k),I));return K(L(G,H),F)}function f(G,F,aa,Z,k,H,I){G=K(G,K(K(q(F,aa,Z),k),I));return K(L(G,H),F)}function D(G,F,aa,Z,k,H,I){G=K(G,K(K(p(F,aa,Z),k),I));return K(L(G,H),F)}function t(G,F,aa,Z,k,H,I){G=K(G,K(K(n(F,aa,Z),k),I));return K(L(G,H),F)}function e(G){var Z;var F=G.length;var x=F+8;var k=(x-(x%64))/64;var I=(k+1)*16;var aa=Array(I-1);var d=0;var H=0;while(H<F){Z=(H-(H%4))/4;d=(H%4)*8;aa[Z]=(aa[Z]|(G.charCodeAt(H)<<d));H++}Z=(H-(H%4))/4;d=(H%4)*8;aa[Z]=aa[Z]|(128<<d);aa[I-2]=F<<3;aa[I-1]=F>>>29;return aa}function B(x){var k="",F="",G,d;for(d=0;d<=3;d++){G=(x>>>(d*8))&255;F="0"+G.toString(16);k=k+F.substr(F.length-2,2)}return k}function J(k){k=k.replace(/rn/g,"n");var d="";for(var F=0;F<k.length;F++){var x=k.charCodeAt(F);if(x<128){d+=String.fromCharCode(x)}else{if((x>127)&&(x<2048)){d+=String.fromCharCode((x>>6)|192);d+=String.fromCharCode((x&63)|128)}else{d+=String.fromCharCode((x>>12)|224);d+=String.fromCharCode(((x>>6)&63)|128);d+=String.fromCharCode((x&63)|128)}}}return d}var C=Array();var P,h,E,v,g,Y,X,W,V;var S=7,Q=12,N=17,M=22;var A=5,z=9,y=14,w=20;var o=4,m=11,l=16,j=23;var U=6,T=10,R=15,O=21;s=J(s);C=e(s);Y=1732584193;X=4023233417;W=2562383102;V=271733878;for(P=0;P<C.length;P+=16){h=Y;E=X;v=W;g=V;Y=u(Y,X,W,V,C[P+0],S,3614090360);V=u(V,Y,X,W,C[P+1],Q,3905402710);W=u(W,V,Y,X,C[P+2],N,606105819);X=u(X,W,V,Y,C[P+3],M,3250441966);Y=u(Y,X,W,V,C[P+4],S,4118548399);V=u(V,Y,X,W,C[P+5],Q,1200080426);W=u(W,V,Y,X,C[P+6],N,2821735955);X=u(X,W,V,Y,C[P+7],M,4249261313);Y=u(Y,X,W,V,C[P+8],S,1770035416);V=u(V,Y,X,W,C[P+9],Q,2336552879);W=u(W,V,Y,X,C[P+10],N,4294925233);X=u(X,W,V,Y,C[P+11],M,2304563134);Y=u(Y,X,W,V,C[P+12],S,1804603682);V=u(V,Y,X,W,C[P+13],Q,4254626195);W=u(W,V,Y,X,C[P+14],N,2792965006);X=u(X,W,V,Y,C[P+15],M,1236535329);Y=f(Y,X,W,V,C[P+1],A,4129170786);V=f(V,Y,X,W,C[P+6],z,3225465664);W=f(W,V,Y,X,C[P+11],y,643717713);X=f(X,W,V,Y,C[P+0],w,3921069994);Y=f(Y,X,W,V,C[P+5],A,3593408605);V=f(V,Y,X,W,C[P+10],z,38016083);W=f(W,V,Y,X,C[P+15],y,3634488961);X=f(X,W,V,Y,C[P+4],w,3889429448);Y=f(Y,X,W,V,C[P+9],A,568446438);V=f(V,Y,X,W,C[P+14],z,3275163606);W=f(W,V,Y,X,C[P+3],y,4107603335);X=f(X,W,V,Y,C[P+8],w,1163531501);Y=f(Y,X,W,V,C[P+13],A,2850285829);V=f(V,Y,X,W,C[P+2],z,4243563512);W=f(W,V,Y,X,C[P+7],y,1735328473);X=f(X,W,V,Y,C[P+12],w,2368359562);Y=D(Y,X,W,V,C[P+5],o,4294588738);V=D(V,Y,X,W,C[P+8],m,2272392833);W=D(W,V,Y,X,C[P+11],l,1839030562);X=D(X,W,V,Y,C[P+14],j,4259657740);Y=D(Y,X,W,V,C[P+1],o,2763975236);V=D(V,Y,X,W,C[P+4],m,1272893353);W=D(W,V,Y,X,C[P+7],l,4139469664);X=D(X,W,V,Y,C[P+10],j,3200236656);Y=D(Y,X,W,V,C[P+13],o,681279174);V=D(V,Y,X,W,C[P+0],m,3936430074);W=D(W,V,Y,X,C[P+3],l,3572445317);X=D(X,W,V,Y,C[P+6],j,76029189);Y=D(Y,X,W,V,C[P+9],o,3654602809);V=D(V,Y,X,W,C[P+12],m,3873151461);W=D(W,V,Y,X,C[P+15],l,530742520);X=D(X,W,V,Y,C[P+2],j,3299628645);Y=t(Y,X,W,V,C[P+0],U,4096336452);V=t(V,Y,X,W,C[P+7],T,1126891415);W=t(W,V,Y,X,C[P+14],R,2878612391);X=t(X,W,V,Y,C[P+5],O,4237533241);Y=t(Y,X,W,V,C[P+12],U,1700485571);V=t(V,Y,X,W,C[P+3],T,2399980690);W=t(W,V,Y,X,C[P+10],R,4293915773);X=t(X,W,V,Y,C[P+1],O,2240044497);Y=t(Y,X,W,V,C[P+8],U,1873313359);V=t(V,Y,X,W,C[P+15],T,4264355552);W=t(W,V,Y,X,C[P+6],R,2734768916);X=t(X,W,V,Y,C[P+13],O,1309151649);Y=t(Y,X,W,V,C[P+4],U,4149444226);V=t(V,Y,X,W,C[P+11],T,3174756917);W=t(W,V,Y,X,C[P+2],R,718787259);X=t(X,W,V,Y,C[P+9],O,3951481745);Y=K(Y,h);X=K(X,E);W=K(W,v);V=K(V,g)}var i=B(Y)+B(X)+B(W)+B(V);return i.toLowerCase()};this.init();}
FrameBuilder.get=qsProxy||[];var i92176773460867=new FrameBuilder("92176773460867",false,"","<html lang=\"\"><head><title>Ammonia Course Customer Evaluation Form<\/title><link rel=\"canonical\" href=\"https:\/\/form.jotform.co\/92176773460867\"\/><link rel=\"alternate\" type=\"application\/json+oembed\" href=\"https:\/\/www.jotform.com\/oembed\/?format=json&amp;url=http:\/\/www.jotform.com\/form\/92176773460867\" title=\"oEmbed Form\"\/><link rel=\"alternate\" type=\"text\/xml+oembed\" href=\"https:\/\/www.jotform.com\/oembed\/?format=xml&amp;url=http:\/\/www.jotform.com\/form\/&#x27;92176773460867\" title=\"oEmbed Form\"\/><meta property=\"og:title\" content=\"Ammonia Course Customer Evaluation Form\"\/><meta property=\"og:url\" content=\"http:\/\/www.jotform.co\/form\/92176773460867\"\/><meta property=\"og:description\" content=\"\"\/><meta name=\"slack-app-id\" content=\"AHNMASS8M\"\/><link id=\"default-css\" type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/stylebuilder\/default.css?c9eb316c\"\/><link id=\"form-css\" type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/stylebuilder\/92176773460867.css?themeID=59647bf8cf3bfe639c0b7cb1&amp;smartEmbed=1\"\/><style>\n        body { overflow: hidden; }\n        body ul,\n        body ol { list-style: none; }\n        body { opacity: 0; }\n      <\/style><link rel=\"shortcut icon\" href=\"https:\/\/cdn.jotfor.ms\/favicon.ico\"\/><meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0\"\/><meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\"\/><script src=\"https:\/\/cdn.ravenjs.com\/3.22.3\/raven.min.js\" crossOrigin=\"anonymous\"><\/script><script>window.FORM_MODE = \"cardform\";<\/script><\/head><body class=\"jfCardForm notLoaded isSmartEmbed cf-minimal\"><div class=\"js-pressEnterHint isHidden\" style=\"color:white;position:absolute;z-index:1;bottom:29.5%;left:37.2%;display:none\">You can always press Enter\u23ce to continue<\/div><div id=\"fullscreen-toggle\" class=\"jfForm-fullscreen\"><\/div><div id=\"jfQuestion-proxy\" class=\"forFullScreen\"><\/div><div>\n        <script src=\"https:\/\/cdn.jotfor.ms\/\/js\/pen\/toMarkdown.js?v=3.3.12585\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/\/js\/pen\/showdown.js?v=3.3.12585\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/static\/prototype.forms.js\" type=\"text\/javascript\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/static\/jotform.forms.js?3.3.12585\" type=\"text\/javascript\"><\/script>\n<script type=\"text\/javascript\">\n var jsTime = setInterval(function(){try{\n   JotForm.jsForm = true;\n\n   if (window.CardForm) { window.CardForm.jsForm = true; } \n\n\tJotForm.init(function(){\n    \n        \n JotForm.calendarMonths = [\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"];\n JotForm.calendarDays = [\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\",\"Sunday\"];\n JotForm.calendarOther = {\"today\":\"Today\"};\n JotForm.setCalendar(\"12\", false, {\"days\":{\"monday\":true,\"tuesday\":true,\"wednesday\":true,\"thursday\":true,\"friday\":true,\"saturday\":true,\"sunday\":true},\"future\":true,\"past\":true,\"custom\":false,\"ranges\":false,\"start\":\"\",\"end\":\"\"}, \"calendar-container-12\");\nJotForm.setRatingLayout(11);\nJotForm.setMatrixLayout(7, false);\n\n    if (window.CardForm && typeof window.CardForm.setInitialSelectionForMatrixSliders === 'function') {window.CardForm.setInitialSelectionForMatrixSliders(7);}\n  \n        \n\t});\n\n   clearInterval(jsTime);\n }catch(e){}}, 1000);\n\n   JotForm.prepareCalculationsOnTheFly([null,null,null,null,null,null,null,{\"name\":\"customerFeedback\",\"qid\":\"7\",\"text\":\"Customer Feedback\",\"type\":\"control_matrix\"},{\"description\":\"\",\"name\":\"wouldYou\",\"qid\":\"8\",\"text\":\"Would you use us for your future training needs?\",\"type\":\"control_yesno\"},{\"description\":\"\",\"name\":\"whatCourse\",\"qid\":\"9\",\"text\":\"What course is this evaluation for?\",\"type\":\"control_checkbox\"},null,{\"description\":\"\",\"name\":\"howWas\",\"qid\":\"11\",\"subLabel\":\"\",\"text\":\"How was your workers overall response to the training?\",\"type\":\"control_rating\"},{\"description\":\"\",\"name\":\"whenWas\",\"qid\":\"12\",\"text\":\"When was the course completed?\",\"type\":\"control_datetime\"},{\"description\":\"\",\"name\":\"haveYou\",\"qid\":\"13\",\"subLabel\":\"\",\"text\":\"Have you any other feedback for us?\",\"type\":\"control_textarea\"},{\"description\":\"\",\"name\":\"whatBest\",\"qid\":\"14\",\"text\":\"What best describes your position?\",\"type\":\"control_radio\"},{\"description\":\"\",\"name\":\"fromYour15\",\"qid\":\"15\",\"text\":\"From your observations, have you noticed an improvement in your workers ability to understand Ammonia, properties, hazards & risk?\",\"type\":\"control_imagechoice\"},{\"description\":\"\",\"name\":\"fromYour\",\"qid\":\"16\",\"text\":\"From your observations, have you noticed an improvement in your workers enthusiasm about their role?\",\"type\":\"control_imagechoice\"},{\"description\":\"\",\"name\":\"fromYour17\",\"qid\":\"17\",\"text\":\"From your observations, have you noticed an improvement in your workers safety practices?\",\"type\":\"control_imagechoice\"},{\"description\":\"\",\"name\":\"tags\",\"qid\":\"18\",\"text\":\"Tags\",\"type\":\"control_checkbox\"}]);\n   setTimeout(function() {\nJotForm.paymentExtrasOnTheFly([null,null,null,null,null,null,null,{\"name\":\"customerFeedback\",\"qid\":\"7\",\"text\":\"Customer Feedback\",\"type\":\"control_matrix\"},{\"description\":\"\",\"name\":\"wouldYou\",\"qid\":\"8\",\"text\":\"Would you use us for your future training needs?\",\"type\":\"control_yesno\"},{\"description\":\"\",\"name\":\"whatCourse\",\"qid\":\"9\",\"text\":\"What course is this evaluation for?\",\"type\":\"control_checkbox\"},null,{\"description\":\"\",\"name\":\"howWas\",\"qid\":\"11\",\"subLabel\":\"\",\"text\":\"How was your workers overall response to the training?\",\"type\":\"control_rating\"},{\"description\":\"\",\"name\":\"whenWas\",\"qid\":\"12\",\"text\":\"When was the course completed?\",\"type\":\"control_datetime\"},{\"description\":\"\",\"name\":\"haveYou\",\"qid\":\"13\",\"subLabel\":\"\",\"text\":\"Have you any other feedback for us?\",\"type\":\"control_textarea\"},{\"description\":\"\",\"name\":\"whatBest\",\"qid\":\"14\",\"text\":\"What best describes your position?\",\"type\":\"control_radio\"},{\"description\":\"\",\"name\":\"fromYour15\",\"qid\":\"15\",\"text\":\"From your observations, have you noticed an improvement in your workers ability to understand Ammonia, properties, hazards & risk?\",\"type\":\"control_imagechoice\"},{\"description\":\"\",\"name\":\"fromYour\",\"qid\":\"16\",\"text\":\"From your observations, have you noticed an improvement in your workers enthusiasm about their role?\",\"type\":\"control_imagechoice\"},{\"description\":\"\",\"name\":\"fromYour17\",\"qid\":\"17\",\"text\":\"From your observations, have you noticed an improvement in your workers safety practices?\",\"type\":\"control_imagechoice\"},{\"description\":\"\",\"name\":\"tags\",\"qid\":\"18\",\"text\":\"Tags\",\"type\":\"control_checkbox\"}]);}, 20); \n<\/script>\n\n      <\/div><div class=\"jfProgress progress-animate\" id=\"cardProgress\"><span class=\"jfProgressLine\"><span class=\"jfProgressLine-inner jsFeedbackProgressLine\" style=\"width:100%\"><\/span><\/span><span class=\"jfProgress-itemWrapperLine \"><\/span><span id=\"jsSubmitError\" class=\"jfProgress-formError\"><\/span><div class=\"jfProgress-itemWrapper \"><div class=\"jfProgress-itemCell\"><div class=\"jfProgress-item\" data-index=\"0\"><div class=\"jfProgress-itemCircle\"><span class=\"jfProgress-itemPulse\"><\/span><\/div><span class=\"jfProgress-itemLabel\">Question Label<\/span><span class=\"jfProgress-statusIcon\"><span class=\"iconSvg  icon_check \"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 326 326\" class=\"check-outer\"><g data-name=\"Layer 2\"><g data-name=\"Layer 1\"><path d=\"M163,0C73.12,0,0,73.12,0,163S73.12,326,163,326s163-73.12,163-163S252.88,0,163,0Z\"><\/path><path d=\"M237.88,108.5a13.49,13.49,0,0,0-19.08,0l-80.38,80.38-31.23-31.22a13.49,13.49,0,0,0-19.08,19.09l40.77,40.76a13.5,13.5,0,0,0,19.08,0l.34-.34h0l89.56-89.56a13.49,13.49,0,0,0,0-19.08Z\" class=\"check-inner\" style=\"fill:#fff\"><\/path><\/g><\/g><\/svg><\/span><\/span><\/div><\/div><\/div><div class=\"jfProgress-info\"><span class=\"jfProgress-infoContent\" id=\"cardProgressToggle\"><span class=\"jfProgress-infoContentText\"><span class=\"cardProgress-currentIndex\" id=\"cardProgress-currentIndex\">1 <\/span><span class=\"cardProgress-questionCount cardProgress-middleText\">of<\/span><span class=\"cardProgress-questionCount\" id=\"cardProgress-questionCount\"> 11<\/span><span class=\"cardProgress-seeAll\">See All<\/span><span class=\"cardProgress-goBack\">Go Back<\/span><\/span><\/span><\/div><div class=\"jfProgress-mobileNavigation jsMobileNavigation\" style=\"display:none\"><button type=\"button\" class=\"jfInput-button forPrev forMobileNav u-left jsMobilePrev noTranslate\" data-component=\"button\" aria-label=\"Previous\"><span class=\"iconSvg  arrow_left \"><svg version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 30.2 52.6\" style=\"enable-background:new 0 0 30.2 52.6;\" xml:space=\"preserve\"><g><g><path class=\"st0\" d=\"M23.7,51.7c1.5,1.4,3.8,1.3,5.2-0.2c1.3-1.4,1.3-3.6,0-5l-20-20l20-20 c1.5-1.4,1.7-3.7,0.3-5.2c-1.4-1.5-3.7-1.7-5.2-0.3c-0.1,0.1-0.2,0.2-0.3,0.3L1.1,23.8c-1.4,1.4-1.4,3.8,0,5.2c0,0,0,0,0,0 L23.7,51.7z\"><\/path><\/g><\/g><\/svg><\/span><\/button><button type=\"button\" class=\"jfInput-button forNext forMobileNav u-right jsMobileNext noTranslate\" data-component=\"button\" aria-label=\"Next\"><span class=\"iconSvg  arrow_left \"><svg version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 30.2 52.6\" style=\"enable-background:new 0 0 30.2 52.6;\" xml:space=\"preserve\"><g><g><path class=\"st0\" d=\"M23.7,51.7c1.5,1.4,3.8,1.3,5.2-0.2c1.3-1.4,1.3-3.6,0-5l-20-20l20-20 c1.5-1.4,1.7-3.7,0.3-5.2c-1.4-1.5-3.7-1.7-5.2-0.3c-0.1,0.1-0.2,0.2-0.3,0.3L1.1,23.8c-1.4,1.4-1.4,3.8,0,5.2c0,0,0,0,0,0 L23.7,51.7z\"><\/path><\/g><\/g><\/svg><\/span><\/button><button style=\"display:none\" type=\"button\" class=\"jfInput-button forSubmit forMobileNav form-submit-button u-center jsMobileSubmit\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><button class=\"jfInput-button u-left forBackToForm\" style=\"display:none\" aria-label=\"Back To Form\"><\/button><\/div><\/div><div class=\"jfForm-wrapper\"><div class=\"jfForm-backgroundContainer\"><\/div><div class=\"jfForm-backgroundUnderlay\"><\/div><div class=\"jfForm-backgroundOverlay\"><\/div><div class=\"jfForm-background\"><div class=\"jfForm-background-mask\"><\/div><\/div><div class=\"jfWelcome-wrapper\" role=\"banner\"><div class=\"jfWelcome\"><div class=\"jfWelcome-imageWrapper\"><div class=\"jfWelcome-image\"><span class=\"iconSvg iconSvgFill https:\/\/icons.jotfor.ms\/cardforms\/assets\/icons\/icon-sets\/default\/business-article.svg \"><svg class=\"iconSvgStroke\" fill=\"none\"  viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>article<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g stroke-width=\"1\" fill-rule=\"evenodd\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><g stroke-width=\"2\"><g transform=\"translate(1.000000, 1.000000)\"><path d=\"M6,24 L6,1.005 C6,1.005 6,0 7,0 L29,0 C29,0 30,0.005 30,1.005 L30,27.005 C30,27.005 30,30 27,30 L3,30 C3,30 0,30.005 0,26.005 L0,11.005 C0,11.005 0,10 1,10 L3,10\" ><\/path><path d=\"M12,6 L17,6\" ><\/path><path d=\"M12,10 L24,10\" ><\/path><path d=\"M12,14 L24,14\" ><\/path><path d=\"M12,18 L24,18\" ><\/path><path d=\"M12,22 L24,22\" ><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"header_welcomePage\" class=\"jfWelcome-header form-header\" data-component=\"header\" style=\"opacity:1\">Gauge Refrigeration Management - Course Evaluation Form<\/div><div id=\"subHeader_welcomePage\" class=\"jfWelcome-description form-subHeader\">Customer Evaluation\u00a0<\/div><div class=\"jfWelcome-sectionInfo\"><span class=\"jfWelcome-sectionInfo-questionCount\"><\/span><span class=\"jfWelcome-sectionInfo-text\"><\/span><\/div><div class=\"jfWelcome-buttonWrapper\"><button class=\"jfWelcome-button\" id=\"jfCard-welcome-previous\" style=\"display:none\" aria-label=\"Previous\"><\/button><\/div><div class=\"jfWelcome-buttonWrapper\"><button class=\"jfWelcome-button\" id=\"jfCard-welcome-start\" style=\"display:inline\" aria-label=\"START\">START<\/button><\/div><\/div><\/div><div class=\"jfForm-logo\" role=\"banner\"><span class=\"iconSvg iconSvgFill https:\/\/icons.jotfor.ms\/cardforms\/assets\/icons\/icon-sets\/default\/business-article.svg \"><svg class=\"iconSvgStroke\" fill=\"none\"  viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>article<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g stroke-width=\"1\" fill-rule=\"evenodd\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><g stroke-width=\"2\"><g transform=\"translate(1.000000, 1.000000)\"><path d=\"M6,24 L6,1.005 C6,1.005 6,0 7,0 L29,0 C29,0 30,0.005 30,1.005 L30,27.005 C30,27.005 30,30 27,30 L3,30 C3,30 0,30.005 0,26.005 L0,11.005 C0,11.005 0,10 1,10 L3,10\" ><\/path><path d=\"M12,6 L17,6\" ><\/path><path d=\"M12,10 L24,10\" ><\/path><path d=\"M12,14 L24,14\" ><\/path><path d=\"M12,18 L24,18\" ><\/path><path d=\"M12,22 L24,22\" ><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><form role=\"main\" class=\"jotform-form\" id=\"92176773460867\" name=\"form_92176773460867\" action=\"https:\/\/submit.jotform.co\/submit\/92176773460867\/\" method=\"post\"><input type=\"hidden\" name=\"formID\" value=\"92176773460867\"\/><ul class=\"jfForm-all form-section page-section form-all\" id=\"cardAnimationWrapper\"><li class=\"form-line\" data-type=\"control_radio\" id=\"id_14\"><div id=\"cid_14\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_radio\"><div class=\"jfCard-index\"><div>1<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_14\" class=\"jfQuestion-label isCenterAlign\" id=\"label_14\"><span class=\"jsQuestionLabelContainer\">What best describes your position?<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_14_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-multiple-column\" data-columncount=\"2\" data-component=\"radio\"><div class=\"jfField form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q14_whatBest\" value=\"Director\" id=\"input_14_0\"\/><div class=\"jfRadio-label\"><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\"\/><span class=\"jfRadio-labelText\">Director<\/span><\/div><\/label><\/div><div class=\"jfField form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q14_whatBest\" value=\"Operations Manager\" id=\"input_14_1\"\/><div class=\"jfRadio-label\"><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\"\/><span class=\"jfRadio-labelText\">Operations Manager<\/span><\/div><\/label><\/div><div class=\"jfField form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q14_whatBest\" value=\"H&amp;S Manager\" id=\"input_14_2\"\/><div class=\"jfRadio-label\"><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\"\/><span class=\"jfRadio-labelText\">H&amp;S Manager<\/span><\/div><\/label><\/div><div class=\"jfField form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q14_whatBest\" value=\"Engineering Manager\" id=\"input_14_3\"\/><div class=\"jfRadio-label\"><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\"\/><span class=\"jfRadio-labelText\">Engineering Manager<\/span><\/div><\/label><\/div><div class=\"jfField form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q14_whatBest\" value=\"Facilities Manager\" id=\"input_14_4\"\/><div class=\"jfRadio-label\"><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\"\/><span class=\"jfRadio-labelText\">Facilities Manager<\/span><\/div><\/label><\/div><div class=\"jfField form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q14_whatBest\" value=\"Training Manager\" id=\"input_14_5\"\/><div class=\"jfRadio-label\"><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\"\/><span class=\"jfRadio-labelText\">Training Manager<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q14_whatBest\" value=\"Supervisor\" id=\"input_14_6\"\/><div class=\"jfRadio-label\"><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\"\/><span class=\"jfRadio-labelText\">Supervisor<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q14_whatBest\" value=\"Other\" id=\"input_14_7\"\/><div class=\"jfRadio-label\"><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\"\/><span class=\"jfRadio-labelText\">Other<\/span><\/div><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:none\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_checkbox\" id=\"id_9\"><div id=\"cid_9\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_checkbox\"><div class=\"jfCard-index\"><div>2<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_9_0\" class=\"jfQuestion-label isCenterAlign\" id=\"label_9\"><span class=\"jsQuestionLabelContainer\">What course is this evaluation for?<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_9_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-multiple-column\" data-columncount=\"2\" data-component=\"checkbox\"><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox\" name=\"q9_whatCourse[]\" value=\"Introduction to Ammonia\" id=\"input_9_0\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Introduction to Ammonia<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox\" name=\"q9_whatCourse[]\" value=\"Ammonia Awareness One day\" id=\"input_9_1\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Ammonia Awareness One day<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox\" name=\"q9_whatCourse[]\" value=\"Ammonia Operator\" id=\"input_9_2\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Ammonia Operator<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox\" name=\"q9_whatCourse[]\" value=\"Ammonia Technician\" id=\"input_9_3\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Ammonia Technician<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox\" name=\"q9_whatCourse[]\" value=\"Emergency Management\" id=\"input_9_4\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Emergency Management<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox\" name=\"q9_whatCourse[]\" value=\"Ammonia Refresher\" id=\"input_9_5\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Ammonia Refresher<\/span><\/div><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_datetime\" id=\"id_12\"><div id=\"cid_12\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_datetime\"><div class=\"jfCard-index\"><div>3<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"lite_mode_12\" class=\"jfQuestion-label isCenterAlign\" id=\"label_12\"><span class=\"jsQuestionLabelContainer\">When was the course completed?<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_12_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields isCompoundField jfQuestion-fields-contentVisible\" data-wrapper-react=\"true\"><div class=\"jfField isFilled\" data-wrapper-react=\"true\" data-type=\"liteDate\"><input type=\"date\" id=\"input_12\" class=\"form-textbox jfInput-input jfCardDateInput\" value=\"\" data-age=\"\" max=\"2100-12-30\"\/><span style=\"display:initial\" class=\"jfField-svgWrapper forDate\"><svg data-name=\"Layer 1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 83.65 83.47\"><path d=\"M17.08,68.74c0-.43,0-0.79,0-1.15q0-16.83,0-33.66a1.23,1.23,0,0,0-.95-1.45,2,2,0,0,1-1.37-2c0-2.23,0-4.45,0-6.68a2.15,2.15,0,0,1,2.11-2.27c2.07-.08,4.15,0,6.22,0a0.59,0.59,0,0,1,.64.75c0,1,0,2,0,3.07a0.63,0.63,0,0,0,.74.76c2.53,0,5.05,0,7.58,0a0.66,0.66,0,0,0,.77-0.82c0-1,0-1.93,0-2.89a0.69,0.69,0,0,1,.8-0.88q8.21,0,16.42,0a0.69,0.69,0,0,1,.8.88c0,1,0,1.93,0,2.89a0.66,0.66,0,0,0,.77.82q3.79,0,7.58,0a0.63,0.63,0,0,0,.73-0.76c0-1,0-2,0-3.07a0.62,0.62,0,0,1,.74-0.75c2,0,4,0,6,0a2.22,2.22,0,0,1,2.28,2.39c0,2.17,0,4.33,0,6.5a2.06,2.06,0,0,1-1.46,2.15,1.12,1.12,0,0,0-.86,1.33q0,16.88,0,33.75v1.14H17.08Zm24.77-4.37H61c1.2,0,1.23,0,1.23-1.2,0-9.77,0-19.54,0-29.31a1,1,0,0,0-1.16-1.17q-19.21,0-38.42,0c-1.19,0-1.19,0-1.19,1.2q0,14.57,0,29.13c0,1.32,0,1.33,1.38,1.33h19Z\"><\/path><path d=\"M26.14,23.64V14.77h4.27v8.86H26.14Z\"><\/path><path d=\"M53.26,14.73h4.2v8.9h-4.2v-8.9Z\"><\/path><path d=\"M57.55,59.73H53.24V55.36c1.33,0,2.64,0,3.95,0a0.66,0.66,0,0,1,.34.5C57.56,57.14,57.55,58.4,57.55,59.73Z\"><\/path><path d=\"M48.52,59.73H44.21V55.35c1.3,0,2.58,0,3.86,0a0.69,0.69,0,0,1,.43.51C48.54,57.14,48.52,58.4,48.52,59.73Z\"><\/path><path d=\"M35.18,59.73V55.41h4.23v4.32H35.18Z\"><\/path><path d=\"M30.47,59.74H26.11c0-1.34,0-2.65,0-4a0.7,0.7,0,0,1,.52-0.41c1.08,0,2.17,0,3.25,0a0.81,0.81,0,0,1,.54.57C30.5,57.17,30.47,58.4,30.47,59.74Z\"><\/path><path d=\"M53.22,50.69V46.33c1.34,0,2.65,0,4,0a0.65,0.65,0,0,1,.35.5c0,1.26,0,2.52,0,3.84H53.22Z\"><\/path><path d=\"M48.44,50.71H44.17c0-1.35,0-2.69,0-4a0.65,0.65,0,0,1,.5-0.34c1.23,0,2.45,0,3.76,0v4.38Z\"><\/path><path d=\"M39.5,50.71H35.13c0-1.34,0-2.65,0-4a0.7,0.7,0,0,1,.52-0.41c1.08,0,2.17,0,3.25,0a0.81,0.81,0,0,1,.54.57C39.52,48.15,39.5,49.38,39.5,50.71Z\"><\/path><path d=\"M30.47,50.71H26.11c0-1.34,0-2.65,0-4a0.7,0.7,0,0,1,.52-0.41c1.08,0,2.17,0,3.25,0a0.81,0.81,0,0,1,.55.57C30.5,48.14,30.47,49.38,30.47,50.71Z\"><\/path><path d=\"M53.26,37.34h4.2v4.34h-4.2V37.34Z\"><\/path><path d=\"M44.24,37.34h4.2v4.34h-4.2V37.34Z\"><\/path><path d=\"M39.5,41.69H35.13c0-1.33,0-2.64,0-3.95a0.61,0.61,0,0,1,.43-0.42c1.14,0,2.29,0,3.43,0a0.75,0.75,0,0,1,.47.56C39.52,39.12,39.5,40.35,39.5,41.69Z\"><\/path><path d=\"M30.39,41.68H26.18V37.36h4.21v4.32Z\"><\/path><\/svg><\/span><label class=\"jfField-sublabel\" for=\"input_12\" id=\"sublabel_input_12\">Date<\/label><\/div><div style=\"display:none\"><div class=\"jfField  isHidden cf-valid-hidden\" data-type=\"year\"><input type=\"tel\" id=\"year_12\" name=\"q12_whenWas[year]\" class=\"form-textbox validate[limitDate] jfInput-input hasSublabel\" size=\"4\" value=\"\" maxLength=\"4\" data-maxlength=\"4\" data-component=\"year\" aria-required=\"false\" aria-describedby=\"year_12_description\"\/><label class=\"jfField-sublabel\" for=\"year_12\" id=\"sublabel_12_year\">Year<\/label><\/div><div class=\"jfField  isHidden cf-valid-hidden\" data-type=\"month\"><input type=\"tel\" id=\"month_12\" name=\"q12_whenWas[month]\" class=\"form-textbox validate[limitDate] jfInput-input hasSublabel\" size=\"2\" value=\"\" maxLength=\"2\" data-maxlength=\"2\" data-component=\"month\" aria-required=\"false\" aria-describedby=\"month_12_description\"\/><label class=\"jfField-sublabel\" for=\"month_12\" id=\"sublabel_12_month\">Month<\/label><\/div><div class=\"jfField  isHidden cf-valid-hidden\" data-type=\"day\"><input type=\"tel\" id=\"day_12\" name=\"q12_whenWas[day]\" class=\"form-textbox validate[limitDate] jfInput-input hasSublabel\" size=\"2\" value=\"\" maxLength=\"2\" data-maxlength=\"2\" data-component=\"day\" aria-required=\"false\" aria-describedby=\"day_12_description\"\/><label class=\"jfField-sublabel\" for=\"day_12\" id=\"sublabel_12_day\">Day<\/label><\/div><\/div><div class=\"jfField  isHidden cf-valid-hidden\"><input type=\"text\" id=\"lite_mode_12\" class=\"form-textbox validate[limitDate, validateLiteDate] jfInput-input hasSublabel\" size=\"12\" value=\"\" maxLength=\"12\" data-maxlength=\"12\" data-format=\"yyyymmdd\" data-seperator=\"-\" data-age=\"\" aria-required=\"false\" aria-describedby=\"lite_mode_12_description\"\/><label class=\"jfField-sublabel\" for=\"lite_mode_12\" id=\"sublabel_12_litemode\">Date<\/label><\/div><img alt=\"Pick a Date\" id=\"input_12_pick\" style=\"display:none;vertical-align:middle\" data-component=\"datetime\"\/><div class=\"jfCalendar-wrapper\"><div id=\"calendar-container-12\" class=\"jfCalendar-container\"><\/div><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_rating\" id=\"id_11\"><div id=\"cid_11\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_rating\"><div class=\"jfCard-index\"><div>4<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_11\" class=\"jfQuestion-label isCenterAlign\" id=\"label_11\"><span class=\"jsQuestionLabelContainer\">How was your workers overall response to the training?<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_11_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" style=\"overflow:hidden\"><div class=\"jfField isFilled\" id=\"rating_11\"><div id=\"input_11\" name=\"q11_howWas\" data-component=\"rating\" class=\"jfRating form-star-rating\"><input type=\"tel\" class=\"jfInput jfRating-shortcut-input\" name=\"jfRating-shortcut-input\" data-qid=\"input_11\" aria-label=\"Select from 1 to 9\"\/><ul class=\"jfRating-items\" name=\"q11_howWas\" data-type=\"stars\" data-item-count=\"9\"><li class=\"jfRating-item jfRating-selection  input_11_1\" data-value=\"1\" tabindex=\"1111\" style=\"height:76px\"><style>\n                \/* #input_11_1:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_11_1.checked .jfRating-svg-container,\n                .jfRating-selection.input_11_1.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q11_howWas\" value=\"1\" title=\"1\" id=\"input_11_1\"\/><div class=\"jfRating-svg-wrapper\" style=\"color:#B0BAC5\"><div class=\"jfRating-svg-container\"><svg class=\"jfRating-svg\" width=\"66px\" height=\"62px\" viewBox=\"0 0 66 62\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n          <g stroke=\"none\" stroke-width=\"1\" fill-rule=\"evenodd\">\n              <g transform=\"translate(-61.000000, -162.000000)\" fill=\"currentColor\">\n                  <polygon\n                    points=\"94 213 74.0153014 223.506578 77.8320392 201.253289 61.6640784 185.493422 84.0076507 182.246711 94 162\n                    103.992349 182.246711 126.335922 185.493422 110.167961 201.253289 113.984699 223.506578\"\n                  \/>\n              <\/g>\n          <\/g>\n        <\/svg><div class=\"jfRating-text\">1<\/div><\/div><\/div><\/li><li class=\"jfRating-item jfRating-selection  input_11_2\" data-value=\"2\" tabindex=\"1112\" style=\"height:76px\"><style>\n                \/* #input_11_2:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_11_2.checked .jfRating-svg-container,\n                .jfRating-selection.input_11_2.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q11_howWas\" value=\"2\" title=\"2\" id=\"input_11_2\"\/><div class=\"jfRating-svg-wrapper\" style=\"color:#B0BAC5\"><div class=\"jfRating-svg-container\"><svg class=\"jfRating-svg\" width=\"66px\" height=\"62px\" viewBox=\"0 0 66 62\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n          <g stroke=\"none\" stroke-width=\"1\" fill-rule=\"evenodd\">\n              <g transform=\"translate(-61.000000, -162.000000)\" fill=\"currentColor\">\n                  <polygon\n                    points=\"94 213 74.0153014 223.506578 77.8320392 201.253289 61.6640784 185.493422 84.0076507 182.246711 94 162\n                    103.992349 182.246711 126.335922 185.493422 110.167961 201.253289 113.984699 223.506578\"\n                  \/>\n              <\/g>\n          <\/g>\n        <\/svg><div class=\"jfRating-text\">2<\/div><\/div><\/div><\/li><li class=\"jfRating-item jfRating-selection  input_11_3\" data-value=\"3\" tabindex=\"1113\" style=\"height:76px\"><style>\n                \/* #input_11_3:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_11_3.checked .jfRating-svg-container,\n                .jfRating-selection.input_11_3.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q11_howWas\" value=\"3\" title=\"3\" id=\"input_11_3\"\/><div class=\"jfRating-svg-wrapper\" style=\"color:#B0BAC5\"><div class=\"jfRating-svg-container\"><svg class=\"jfRating-svg\" width=\"66px\" height=\"62px\" viewBox=\"0 0 66 62\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n          <g stroke=\"none\" stroke-width=\"1\" fill-rule=\"evenodd\">\n              <g transform=\"translate(-61.000000, -162.000000)\" fill=\"currentColor\">\n                  <polygon\n                    points=\"94 213 74.0153014 223.506578 77.8320392 201.253289 61.6640784 185.493422 84.0076507 182.246711 94 162\n                    103.992349 182.246711 126.335922 185.493422 110.167961 201.253289 113.984699 223.506578\"\n                  \/>\n              <\/g>\n          <\/g>\n        <\/svg><div class=\"jfRating-text\">3<\/div><\/div><\/div><\/li><li class=\"jfRating-item jfRating-selection  input_11_4\" data-value=\"4\" tabindex=\"1114\" style=\"height:76px\"><style>\n                \/* #input_11_4:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_11_4.checked .jfRating-svg-container,\n                .jfRating-selection.input_11_4.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q11_howWas\" value=\"4\" title=\"4\" id=\"input_11_4\"\/><div class=\"jfRating-svg-wrapper\" style=\"color:#B0BAC5\"><div class=\"jfRating-svg-container\"><svg class=\"jfRating-svg\" width=\"66px\" height=\"62px\" viewBox=\"0 0 66 62\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n          <g stroke=\"none\" stroke-width=\"1\" fill-rule=\"evenodd\">\n              <g transform=\"translate(-61.000000, -162.000000)\" fill=\"currentColor\">\n                  <polygon\n                    points=\"94 213 74.0153014 223.506578 77.8320392 201.253289 61.6640784 185.493422 84.0076507 182.246711 94 162\n                    103.992349 182.246711 126.335922 185.493422 110.167961 201.253289 113.984699 223.506578\"\n                  \/>\n              <\/g>\n          <\/g>\n        <\/svg><div class=\"jfRating-text\">4<\/div><\/div><\/div><\/li><li class=\"jfRating-item jfRating-selection  input_11_5\" data-value=\"5\" tabindex=\"1115\" style=\"height:76px\"><style>\n                \/* #input_11_5:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_11_5.checked .jfRating-svg-container,\n                .jfRating-selection.input_11_5.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q11_howWas\" value=\"5\" title=\"5\" id=\"input_11_5\"\/><div class=\"jfRating-svg-wrapper\" style=\"color:#B0BAC5\"><div class=\"jfRating-svg-container\"><svg class=\"jfRating-svg\" width=\"66px\" height=\"62px\" viewBox=\"0 0 66 62\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n          <g stroke=\"none\" stroke-width=\"1\" fill-rule=\"evenodd\">\n              <g transform=\"translate(-61.000000, -162.000000)\" fill=\"currentColor\">\n                  <polygon\n                    points=\"94 213 74.0153014 223.506578 77.8320392 201.253289 61.6640784 185.493422 84.0076507 182.246711 94 162\n                    103.992349 182.246711 126.335922 185.493422 110.167961 201.253289 113.984699 223.506578\"\n                  \/>\n              <\/g>\n          <\/g>\n        <\/svg><div class=\"jfRating-text\">5<\/div><\/div><\/div><\/li><li class=\"jfRating-item jfRating-selection  input_11_6\" data-value=\"6\" tabindex=\"1116\" style=\"height:76px\"><style>\n                \/* #input_11_6:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_11_6.checked .jfRating-svg-container,\n                .jfRating-selection.input_11_6.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q11_howWas\" value=\"6\" title=\"6\" id=\"input_11_6\"\/><div class=\"jfRating-svg-wrapper\" style=\"color:#B0BAC5\"><div class=\"jfRating-svg-container\"><svg class=\"jfRating-svg\" width=\"66px\" height=\"62px\" viewBox=\"0 0 66 62\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n          <g stroke=\"none\" stroke-width=\"1\" fill-rule=\"evenodd\">\n              <g transform=\"translate(-61.000000, -162.000000)\" fill=\"currentColor\">\n                  <polygon\n                    points=\"94 213 74.0153014 223.506578 77.8320392 201.253289 61.6640784 185.493422 84.0076507 182.246711 94 162\n                    103.992349 182.246711 126.335922 185.493422 110.167961 201.253289 113.984699 223.506578\"\n                  \/>\n              <\/g>\n          <\/g>\n        <\/svg><div class=\"jfRating-text\">6<\/div><\/div><\/div><\/li><li class=\"jfRating-item jfRating-selection  input_11_7\" data-value=\"7\" tabindex=\"1117\" style=\"height:76px\"><style>\n                \/* #input_11_7:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_11_7.checked .jfRating-svg-container,\n                .jfRating-selection.input_11_7.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q11_howWas\" value=\"7\" title=\"7\" id=\"input_11_7\"\/><div class=\"jfRating-svg-wrapper\" style=\"color:#B0BAC5\"><div class=\"jfRating-svg-container\"><svg class=\"jfRating-svg\" width=\"66px\" height=\"62px\" viewBox=\"0 0 66 62\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n          <g stroke=\"none\" stroke-width=\"1\" fill-rule=\"evenodd\">\n              <g transform=\"translate(-61.000000, -162.000000)\" fill=\"currentColor\">\n                  <polygon\n                    points=\"94 213 74.0153014 223.506578 77.8320392 201.253289 61.6640784 185.493422 84.0076507 182.246711 94 162\n                    103.992349 182.246711 126.335922 185.493422 110.167961 201.253289 113.984699 223.506578\"\n                  \/>\n              <\/g>\n          <\/g>\n        <\/svg><div class=\"jfRating-text\">7<\/div><\/div><\/div><\/li><li class=\"jfRating-item jfRating-selection  input_11_8\" data-value=\"8\" tabindex=\"1118\" style=\"height:76px\"><style>\n                \/* #input_11_8:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_11_8.checked .jfRating-svg-container,\n                .jfRating-selection.input_11_8.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q11_howWas\" value=\"8\" title=\"8\" id=\"input_11_8\"\/><div class=\"jfRating-svg-wrapper\" style=\"color:#B0BAC5\"><div class=\"jfRating-svg-container\"><svg class=\"jfRating-svg\" width=\"66px\" height=\"62px\" viewBox=\"0 0 66 62\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n          <g stroke=\"none\" stroke-width=\"1\" fill-rule=\"evenodd\">\n              <g transform=\"translate(-61.000000, -162.000000)\" fill=\"currentColor\">\n                  <polygon\n                    points=\"94 213 74.0153014 223.506578 77.8320392 201.253289 61.6640784 185.493422 84.0076507 182.246711 94 162\n                    103.992349 182.246711 126.335922 185.493422 110.167961 201.253289 113.984699 223.506578\"\n                  \/>\n              <\/g>\n          <\/g>\n        <\/svg><div class=\"jfRating-text\">8<\/div><\/div><\/div><\/li><li class=\"jfRating-item jfRating-selection  input_11_9\" data-value=\"9\" tabindex=\"1119\" style=\"height:76px\"><style>\n                \/* #input_11_9:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_11_9.checked .jfRating-svg-container,\n                .jfRating-selection.input_11_9.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q11_howWas\" value=\"9\" title=\"9\" id=\"input_11_9\"\/><div class=\"jfRating-svg-wrapper\" style=\"color:#B0BAC5\"><div class=\"jfRating-svg-container\"><svg class=\"jfRating-svg\" width=\"66px\" height=\"62px\" viewBox=\"0 0 66 62\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n          <g stroke=\"none\" stroke-width=\"1\" fill-rule=\"evenodd\">\n              <g transform=\"translate(-61.000000, -162.000000)\" fill=\"currentColor\">\n                  <polygon\n                    points=\"94 213 74.0153014 223.506578 77.8320392 201.253289 61.6640784 185.493422 84.0076507 182.246711 94 162\n                    103.992349 182.246711 126.335922 185.493422 110.167961 201.253289 113.984699 223.506578\"\n                  \/>\n              <\/g>\n          <\/g>\n        <\/svg><div class=\"jfRating-text\">9<\/div><\/div><\/div><\/li><\/ul><div class=\"jfRating-scaleText\"><div class=\"jfRating-fromText\" id=\"jfRating-fromText_11\">Terrible<\/div><div class=\"jfRating-toText\" id=\"jfRating-toText_11\">Outstanding<\/div><\/div><input type=\"hidden\" name=\"q11_stars\" class=\"form-textbox\" data-lowest=\"1\"\/><\/div><label class=\"jfField-sublabel\" for=\"input_11\"><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_imagechoice\" id=\"id_15\"><div id=\"cid_15\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_imagechoice\"><div class=\"jfCard-index\"><div>5<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_15\" class=\"jfQuestion-label isCenterAlign\" id=\"label_15\"><span class=\"jsQuestionLabelContainer\">From your observations, have you noticed an improvement in your workers ability to understand Ammonia, properties, hazards & risk?<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_15_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-multiple-column\" data-columncount=\"4\" data-component=\"radio\"><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withImage \"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q15_fromYour15[]\" value=\"No improvement|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_down.5d4a084603b505.59919475.png\" id=\"input_15_0\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_down.5d4a084603b505.59919475.png&quot;)\"><img alt=\"No improvement\u00a0\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_down.5d4a084603b505.59919475.png\" style=\"display:none\"\/><\/div><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\" style=\"display:none\"\/><span class=\"jfRadio-labelText\">No improvement<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withImage \"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q15_fromYour15[]\" value=\"Not sure|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/thought.5d4a0863b3d5b2.87699819.png\" id=\"input_15_1\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/thought.5d4a0863b3d5b2.87699819.png&quot;)\"><img alt=\"Not sure\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/thought.5d4a0863b3d5b2.87699819.png\" style=\"display:none\"\/><\/div><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\" style=\"display:none\"\/><span class=\"jfRadio-labelText\">Not sure<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withImage \"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q15_fromYour15[]\" value=\"Good improvement|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_up.5d4a084fc2e2c4.92471856.png\" id=\"input_15_2\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_up.5d4a084fc2e2c4.92471856.png&quot;)\"><img alt=\"Good improvement\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_up.5d4a084fc2e2c4.92471856.png\" style=\"display:none\"\/><\/div><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\" style=\"display:none\"\/><span class=\"jfRadio-labelText\">Good improvement<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withImage \"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q15_fromYour15[]\" value=\"Excellent|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/genius.5d4a0858402515.72303247.png\" id=\"input_15_3\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/genius.5d4a0858402515.72303247.png&quot;)\"><img alt=\"Excellent\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/genius.5d4a0858402515.72303247.png\" style=\"display:none\"\/><\/div><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\" style=\"display:none\"\/><span class=\"jfRadio-labelText\">Excellent<\/span><\/div><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_imagechoice\" id=\"id_16\"><div id=\"cid_16\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_imagechoice\"><div class=\"jfCard-index\"><div>6<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_16\" class=\"jfQuestion-label isCenterAlign\" id=\"label_16\"><span class=\"jsQuestionLabelContainer\">From your observations, have you noticed an improvement in your workers enthusiasm about their role?<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_16_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-multiple-column\" data-columncount=\"4\" data-component=\"radio\"><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withImage \"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q16_fromYour[]\" value=\"No improvement|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_down.5d4a084603b505.59919475.png\" id=\"input_16_0\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_down.5d4a084603b505.59919475.png&quot;)\"><img alt=\"No improvement\u00a0\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_down.5d4a084603b505.59919475.png\" style=\"display:none\"\/><\/div><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\" style=\"display:none\"\/><span class=\"jfRadio-labelText\">No improvement<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withImage \"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q16_fromYour[]\" value=\"Not sure|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/thought.5d4a0863b3d5b2.87699819.png\" id=\"input_16_1\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/thought.5d4a0863b3d5b2.87699819.png&quot;)\"><img alt=\"Not sure\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/thought.5d4a0863b3d5b2.87699819.png\" style=\"display:none\"\/><\/div><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\" style=\"display:none\"\/><span class=\"jfRadio-labelText\">Not sure<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withImage \"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q16_fromYour[]\" value=\"Good improvement|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_up.5d4a084fc2e2c4.92471856.png\" id=\"input_16_2\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_up.5d4a084fc2e2c4.92471856.png&quot;)\"><img alt=\"Good improvement\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_up.5d4a084fc2e2c4.92471856.png\" style=\"display:none\"\/><\/div><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\" style=\"display:none\"\/><span class=\"jfRadio-labelText\">Good improvement<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withImage \"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q16_fromYour[]\" value=\"Excellent|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/genius.5d4a0858402515.72303247.png\" id=\"input_16_3\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/genius.5d4a0858402515.72303247.png&quot;)\"><img alt=\"Excellent\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/genius.5d4a0858402515.72303247.png\" style=\"display:none\"\/><\/div><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\" style=\"display:none\"\/><span class=\"jfRadio-labelText\">Excellent<\/span><\/div><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_imagechoice\" id=\"id_17\"><div id=\"cid_17\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_imagechoice\"><div class=\"jfCard-index\"><div>7<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_17\" class=\"jfQuestion-label isCenterAlign\" id=\"label_17\"><span class=\"jsQuestionLabelContainer\">From your observations, have you noticed an improvement in your workers safety practices?<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_17_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-multiple-column\" data-columncount=\"4\" data-component=\"radio\"><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withImage \"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q17_fromYour17[]\" value=\"No improvement|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_down.5d4a084603b505.59919475.png\" id=\"input_17_0\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_down.5d4a084603b505.59919475.png&quot;)\"><img alt=\"No improvement\u00a0\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_down.5d4a084603b505.59919475.png\" style=\"display:none\"\/><\/div><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\" style=\"display:none\"\/><span class=\"jfRadio-labelText\">No improvement<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withImage \"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q17_fromYour17[]\" value=\"Not sure|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/thought.5d4a0863b3d5b2.87699819.png\" id=\"input_17_1\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/thought.5d4a0863b3d5b2.87699819.png&quot;)\"><img alt=\"Not sure\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/thought.5d4a0863b3d5b2.87699819.png\" style=\"display:none\"\/><\/div><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\" style=\"display:none\"\/><span class=\"jfRadio-labelText\">Not sure<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withImage \"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q17_fromYour17[]\" value=\"Good improvement|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_up.5d4a084fc2e2c4.92471856.png\" id=\"input_17_2\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_up.5d4a084fc2e2c4.92471856.png&quot;)\"><img alt=\"Good improvement\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_up.5d4a084fc2e2c4.92471856.png\" style=\"display:none\"\/><\/div><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\" style=\"display:none\"\/><span class=\"jfRadio-labelText\">Good improvement<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withImage \"><input type=\"radio\" class=\"jfRadio-input form-radio\" name=\"q17_fromYour17[]\" value=\"Excellent|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/genius.5d4a0858402515.72303247.png\" id=\"input_17_3\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/genius.5d4a0858402515.72303247.png&quot;)\"><img alt=\"Excellent\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/genius.5d4a0858402515.72303247.png\" style=\"display:none\"\/><\/div><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\" style=\"display:none\"\/><span class=\"jfRadio-labelText\">Excellent<\/span><\/div><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_matrix\" id=\"id_7\"><div id=\"cid_7\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_matrix\"><div class=\"jfCard-index\"><div>8<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_7\" class=\"jfQuestion-label isCenterAlign\" id=\"label_7\"><span class=\"jsQuestionLabelContainer\">Customer Feedback<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_7_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-component=\"matrix2\" data-wrapper-react=\"true\"><div class=\"jfField\" id=\"matrix_7\" data-type=\"Emoji Slider\" style=\"width:100%\"><div class=\"jfMatrix isFun forDesktop forEmojiSlider\"><div class=\"jfMatrixTable-wrapper jfMatrix-innerScrollableArea\"><div class=\"jfMatrixLabelList\"><div class=\"jfMatrixLabelList-item\">The course met our needs:<\/div><div class=\"jfMatrixLabelList-item\">The course improved the skills of our workers:<\/div><div class=\"jfMatrixLabelList-item\">The course time allocation was appropriate:<\/div><div class=\"jfMatrixLabelList-item\">The handouts were useful for future reference:<\/div><div class=\"jfMatrixLabelList-item\">The course booking was easy:<\/div><div class=\"jfMatrixLabelList-item\">It was easy to communicate with Gauge Refrigeration:<\/div><\/div><div class=\"jfMatrixInputList\"><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_0_0\" name=\"q7_customerFeedback[0]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_0_1\" name=\"q7_customerFeedback[0]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_0_2\" name=\"q7_customerFeedback[0]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_0_3\" name=\"q7_customerFeedback[0]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_0_4\" name=\"q7_customerFeedback[0]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_1_0\" name=\"q7_customerFeedback[1]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_1_1\" name=\"q7_customerFeedback[1]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_1_2\" name=\"q7_customerFeedback[1]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_1_3\" name=\"q7_customerFeedback[1]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_1_4\" name=\"q7_customerFeedback[1]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_2_0\" name=\"q7_customerFeedback[2]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_2_1\" name=\"q7_customerFeedback[2]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_2_2\" name=\"q7_customerFeedback[2]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_2_3\" name=\"q7_customerFeedback[2]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_2_4\" name=\"q7_customerFeedback[2]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_3_0\" name=\"q7_customerFeedback[3]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_3_1\" name=\"q7_customerFeedback[3]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_3_2\" name=\"q7_customerFeedback[3]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_3_3\" name=\"q7_customerFeedback[3]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_3_4\" name=\"q7_customerFeedback[3]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_4_0\" name=\"q7_customerFeedback[4]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_4_1\" name=\"q7_customerFeedback[4]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_4_2\" name=\"q7_customerFeedback[4]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_4_3\" name=\"q7_customerFeedback[4]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_4_4\" name=\"q7_customerFeedback[4]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_5_0\" name=\"q7_customerFeedback[5]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_5_1\" name=\"q7_customerFeedback[5]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_5_2\" name=\"q7_customerFeedback[5]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_5_3\" name=\"q7_customerFeedback[5]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_5_4\" name=\"q7_customerFeedback[5]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"jfMatrix forMobile forEmojiSlider\"><div class=\"jfMobileMatrix-questionList\"><div class=\"jfMobileMatrix-question jfMobileMatrix-row isSelected\" data-order=\"0\">The course met our needs:<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"1\">The course improved the skills of our workers:<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"2\">The course time allocation was appropriate:<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"3\">The handouts were useful for future reference:<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"4\">The course booking was easy:<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"5\">It was easy to communicate with Gauge Refrigeration:<\/div><\/div><div class=\"jfMobileMatrix-content slider\"><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_0_0\" name=\"q7_customerFeedback[0]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_0_1\" name=\"q7_customerFeedback[0]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_0_2\" name=\"q7_customerFeedback[0]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_0_3\" name=\"q7_customerFeedback[0]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_0_4\" name=\"q7_customerFeedback[0]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow  isHidden\" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_1_0\" name=\"q7_customerFeedback[1]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_1_1\" name=\"q7_customerFeedback[1]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_1_2\" name=\"q7_customerFeedback[1]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_1_3\" name=\"q7_customerFeedback[1]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_1_4\" name=\"q7_customerFeedback[1]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow  isHidden\" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_2_0\" name=\"q7_customerFeedback[2]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_2_1\" name=\"q7_customerFeedback[2]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_2_2\" name=\"q7_customerFeedback[2]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_2_3\" name=\"q7_customerFeedback[2]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_2_4\" name=\"q7_customerFeedback[2]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow  isHidden\" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_3_0\" name=\"q7_customerFeedback[3]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_3_1\" name=\"q7_customerFeedback[3]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_3_2\" name=\"q7_customerFeedback[3]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_3_3\" name=\"q7_customerFeedback[3]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_3_4\" name=\"q7_customerFeedback[3]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow  isHidden\" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_4_0\" name=\"q7_customerFeedback[4]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_4_1\" name=\"q7_customerFeedback[4]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_4_2\" name=\"q7_customerFeedback[4]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_4_3\" name=\"q7_customerFeedback[4]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_4_4\" name=\"q7_customerFeedback[4]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow  isHidden\" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_5_0\" name=\"q7_customerFeedback[5]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_5_1\" name=\"q7_customerFeedback[5]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_5_2\" name=\"q7_customerFeedback[5]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_5_3\" name=\"q7_customerFeedback[5]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_7_5_4\" name=\"q7_customerFeedback[5]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><\/div><div class=\"jfMobileMatrix-columnDotlist\"><button type=\"button\" aria-label=\"Previous\" class=\"jfMobileMatrix-prevRow forMatrixPrev js-mobilMatrixPrevButton\" disabled=\"\"><span class=\"iconSvg  arrow_left \"><svg version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 30.2 52.6\" style=\"enable-background:new 0 0 30.2 52.6;\" xml:space=\"preserve\"><g><g><path class=\"st0\" d=\"M23.7,51.7c1.5,1.4,3.8,1.3,5.2-0.2c1.3-1.4,1.3-3.6,0-5l-20-20l20-20 c1.5-1.4,1.7-3.7,0.3-5.2c-1.4-1.5-3.7-1.7-5.2-0.3c-0.1,0.1-0.2,0.2-0.3,0.3L1.1,23.8c-1.4,1.4-1.4,3.8,0,5.2c0,0,0,0,0,0 L23.7,51.7z\"><\/path><\/g><\/g><\/svg><\/span><\/button><span class=\"jfMobileMatrix-columnDotWrapper\"><div class=\"jfMobileMatrix-columnDot\"><\/div><div class=\"jfMobileMatrix-columnDot\"><\/div><div class=\"jfMobileMatrix-columnDot\"><\/div><div class=\"jfMobileMatrix-columnDot\"><\/div><div class=\"jfMobileMatrix-columnDot\"><\/div><div class=\"jfMobileMatrix-columnDot\"><\/div><\/span><button type=\"button\" aria-label=\"Next\" class=\"jfMobileMatrix-nextRow forMatrixNext js-mobileMatrixNextButton\"><span class=\"iconSvg  arrow_left \"><svg version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 30.2 52.6\" style=\"enable-background:new 0 0 30.2 52.6;\" xml:space=\"preserve\"><g><g><path class=\"st0\" d=\"M23.7,51.7c1.5,1.4,3.8,1.3,5.2-0.2c1.3-1.4,1.3-3.6,0-5l-20-20l20-20 c1.5-1.4,1.7-3.7,0.3-5.2c-1.4-1.5-3.7-1.7-5.2-0.3c-0.1,0.1-0.2,0.2-0.3,0.3L1.1,23.8c-1.4,1.4-1.4,3.8,0,5.2c0,0,0,0,0,0 L23.7,51.7z\"><\/path><\/g><\/g><\/svg><\/span><\/button><\/div><\/div><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_yesno\" id=\"id_8\"><div id=\"cid_8\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_yesno\"><div class=\"jfCard-index\"><div>9<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_8\" class=\"jfQuestion-label isCenterAlign\" id=\"label_8\"><span class=\"jsQuestionLabelContainer\">Would you use us for your future training needs?<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_8_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-wrapper-react=\"true\"><div class=\"jfField\"><label class=\"jfYesno\"><input type=\"radio\" class=\"form-radio jsToggle\" value=\"YES\" id=\"input_input_8_0\" name=\"q8_wouldYou\"\/><span class=\"jfYesno-label\">YES<\/span><\/label><label class=\"jfYesno\"><input type=\"radio\" class=\"form-radio jsToggle\" value=\"NO\" id=\"input_input_8_1\" name=\"q8_wouldYou\"\/><span class=\"jfYesno-label\">NO<\/span><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_textarea\" id=\"id_13\"><div id=\"cid_13\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_textarea\"><div class=\"jfCard-index\"><div>10<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen\"><\/div><label for=\"input_13\" class=\"jfQuestion-label isCenterAlign\" id=\"label_13\"><span class=\"jsQuestionLabelContainer\">Have you any other feedback for us?<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_13_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-component=\"textarea\" data-render-type=\"mde\"><div class=\"jfField\"><textarea id=\"input_13\" name=\"q13_haveYou\" placeholder=\"Type here...\" class=\"mdInput form-textarea\"><\/textarea><div id=\"input_13_editor\" class=\"jfTextarea-editor\" contenteditable=\"true\" data-placeholder=\"Type here...\"><\/div><div class=\"jfTextarea-infoSpan isHidden\"><span class=\"jfTextarea-limitSpan\"><\/span><span class=\"jfTextarea-modeSpan\"><\/span><\/div><\/div><\/div><\/div><div class=\"jfToolbar\" id=\"input_13_toolbar\"><div id=\"input_13_fontSize\" data-command=\"heading\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-fontSize \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>TextSize<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"TextSize\" fill=\"#4A4A4A\"><g id=\"Group-2\" transform=\"translate(3.000000, 6.000000)\"><g id=\"type\" fill-rule=\"nonzero\"><path d=\"M2.34756098,2.5 L16.902439,2.5 L16.902439,4.25 C16.902439,4.94035594 17.4279584,5.5 18.0762195,5.5 C18.7244806,5.5 19.25,4.94035594 19.25,4.25 L19.25,1.25 C19.25,0.559644063 18.7244806,0 18.0762195,0 L1.17378049,0 C0.525519425,0 0,0.559644063 0,1.25 L0,4.25 C0,4.94035594 0.525519425,5.5 1.17378049,5.5 C1.82204155,5.5 2.34756098,4.94035594 2.34756098,4.25 L2.34756098,2.5 Z\" id=\"Shape\"><\/path><path d=\"M5.25,20.5 L13.25,20.5 C13.9403559,20.5 14.5,19.9403559 14.5,19.25 C14.5,18.5596441 13.9403559,18 13.25,18 L5.25,18 C4.55964406,18 4,18.5596441 4,19.25 C4,19.9403559 4.55964406,20.5 5.25,20.5 Z\" id=\"Shape\"><\/path><path d=\"M8,1.25 L8,19.25 C8,19.9403559 8.55964406,20.5 9.25,20.5 C9.94035594,20.5 10.5,19.9403559 10.5,19.25 L10.5,1.25 C10.5,0.559644063 9.94035594,0 9.25,0 C8.55964406,0 8,0.559644063 8,1.25 Z\" id=\"Shape\"><\/path><\/g><g id=\"Group\" transform=\"translate(15.000000, 8.700000)\"><path d=\"M1.4609612,1.70000076 L10.5189207,1.70000076 L10.5390388,2.45720466 C10.5390388,2.75698225 10.8660861,3 11.2695194,3 C11.6729527,3 12,2.75698225 12,2.45720466 L11.9798819,0.542795343 C11.9798819,0.243017753 11.6528346,0 11.2494013,0 L0.730480602,0 C0.327047306,0 0,0.243017753 0,0.542795343 L0.0201181228,2.45720466 C0.0201181228,2.75698225 0.347165428,3 0.750598725,3 C1.15403202,3 1.48107933,2.75698225 1.48107933,2.45720466 L1.4609612,1.70000076 Z\" id=\"Shape\" fill-rule=\"nonzero\"><\/path><path d=\"M5,1.6097561 L5,10.3902439 C5,10.7270029 5.44771525,11 6,11 C6.55228475,11 7,10.7270029 7,10.3902439 L7,1.6097561 C7,1.2729971 6.55228475,1 6,1 C5.44771525,1 5,1.2729971 5,1.6097561 Z\" id=\"Shape\" fill-rule=\"nonzero\"><\/path><rect id=\"Rectangle-12\" x=\"2\" y=\"10\" width=\"8\" height=\"1.79999995\" rx=\"0.899999976\"><\/rect><\/g><\/g><\/g><\/g><\/svg><\/span><\/div><ul class=\"jfToolbar-select jfToolbar-select-heading\" data-command=\"heading\"><li data-value=\"6\" style=\"font-size:0.67em\" data-selected=\"true\">Small<\/li><li data-value=\"5\" style=\"font-size:0.83em\" data-selected=\"false\">Normal<\/li><li data-value=\"3\" style=\"font-size:1.17em\" data-selected=\"false\">Large<\/li><li data-value=\"1\" style=\"font-size:2em\" data-selected=\"false\">Huge<\/li><\/ul><\/div><div id=\"input_13_bold\" data-command=\"bold\" class=\"jfToolbar-item breakBefore forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-bold \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Bold<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Bold\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"bold\" transform=\"translate(9.000000, 6.000000)\"><path d=\"M2.47159091,2.5 L2.47159091,8.75 L8.65056818,8.75 C9.96967752,8.75 11.1221591,7.38998343 11.1221591,5.625 C11.1221591,3.86001657 9.96967752,2.5 8.65056818,2.5 L2.47159091,2.5 Z M1.23579545,0 L8.65056818,0 C11.4265247,0 13.59375,2.55749187 13.59375,5.625 C13.59375,8.69250813 11.4265247,11.25 8.65056818,11.25 L1.23579545,11.25 C0.553284471,11.25 0,10.6903559 0,10 L0,1.25 C0,0.559644063 0.553284471,0 1.23579545,0 Z\" id=\"Shape\"><\/path><path d=\"M2.5,11.40625 L2.5,17.65625 L9.90384615,17.65625 C11.2992605,17.65625 12.5,16.2904088 12.5,14.53125 C12.5,12.7720912 11.2992605,11.40625 9.90384615,11.40625 L2.5,11.40625 Z M1.25,8.90625 L9.90384615,8.90625 C12.7567761,8.90625 15,11.4579172 15,14.53125 C15,17.6045828 12.7567761,20.15625 9.90384615,20.15625 L1.25,20.15625 C0.559644063,20.15625 0,19.5966059 0,18.90625 L0,10.15625 C0,9.46589406 0.559644063,8.90625 1.25,8.90625 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_13_italic\" data-command=\"italic\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-italic \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Italic<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Italic\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"italic\" transform=\"translate(9.000000, 6.000000)\"><path d=\"M13.5882353,0 L4.94117647,0 C4.25894237,0 3.70588235,0.553060015 3.70588235,1.23529412 C3.70588235,1.91752822 4.25894237,2.47058824 4.94117647,2.47058824 L13.5882353,2.47058824 C14.2704694,2.47058824 14.8235294,1.91752822 14.8235294,1.23529412 C14.8235294,0.553060015 14.2704694,0 13.5882353,0 Z\" id=\"Shape\"><\/path><path d=\"M9.88235294,17.2941176 L1.23529412,17.2941176 C0.553060015,17.2941176 0,17.8471777 0,18.5294118 C0,19.2116459 0.553060015,19.7647059 1.23529412,19.7647059 L9.88235294,19.7647059 C10.564587,19.7647059 11.1176471,19.2116459 11.1176471,18.5294118 C11.1176471,17.8471777 10.564587,17.2941176 9.88235294,17.2941176 Z\" id=\"Shape\"><\/path><path d=\"M8.69458806,0.895932724 L3.75341159,18.1900504 C3.56598747,18.8460348 3.94583065,19.5297525 4.60181508,19.7171766 C5.2577995,19.9046008 5.94151722,19.5247576 6.12894135,18.8687732 L11.0701178,1.57465551 C11.2575419,0.918671083 10.8776988,0.234953363 10.2217143,0.0475292411 C9.56572991,-0.139894881 8.88201219,0.239948297 8.69458806,0.895932724 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_13_underline\" data-command=\"underline\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-underline \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Underline<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Underline\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"underline\" transform=\"translate(7.000000, 5.000000)\"><path d=\"M2.15909091,1.29545455 L2.15909091,8.27097902 C2.15909091,12.2813233 5.34161889,15.5454545 9.28409091,15.5454545 C13.2265629,15.5454545 16.4090909,12.2813233 16.4090909,8.27097902 L16.4090909,1.29545455 C16.4090909,0.579994756 15.8290962,0 15.1136364,0 C14.3981766,0 13.8181818,0.579994756 13.8181818,1.29545455 L13.8181818,8.27097902 C13.8181818,10.864879 11.780757,12.9545455 9.28409091,12.9545455 C6.78742483,12.9545455 4.75,10.864879 4.75,8.27097902 L4.75,1.29545455 C4.75,0.579994756 4.17000524,0 3.45454545,0 C2.73908566,0 2.15909091,0.579994756 2.15909091,1.29545455 Z\" id=\"Shape\"><\/path><path d=\"M1.29545455,20.7272727 L16.8409091,20.7272727 C17.5563689,20.7272727 18.1363636,20.147278 18.1363636,19.4318182 C18.1363636,18.7163584 17.5563689,18.1363636 16.8409091,18.1363636 L1.29545455,18.1363636 C0.579994756,18.1363636 0,18.7163584 0,19.4318182 C0,20.147278 0.579994756,20.7272727 1.29545455,20.7272727 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_13_createLink\" data-command=\"createLink\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-createLink \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Underline Copy<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Underline-Copy\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"link\" transform=\"translate(6.000000, 6.000000)\"><path d=\"M8.12250978,12.0615096 C9.11153092,13.434589 10.6344227,14.2986277 12.2960505,14.422209 C13.960001,14.5459629 15.5906008,13.9142984 16.7617681,12.6976288 L19.3990078,9.95891998 C21.5549175,7.64114792 21.5244655,4.00194322 19.3454622,1.73910167 C17.139984,-0.551233494 13.5527271,-0.583605157 11.3086344,1.66720454 L9.78321622,3.24190674 C9.27889786,3.76258411 9.29215946,4.59350732 9.81283683,5.09782568 C10.3335142,5.60214404 11.1644374,5.58888244 11.6687558,5.06820507 L13.1808677,3.50704343 C14.3730084,2.31152892 16.2689674,2.32863819 17.4546094,3.55989839 C18.6667264,4.81865222 18.683922,6.87363295 17.492498,8.15466767 L14.8707504,10.8770033 C14.2384113,11.5339102 13.371049,11.8699104 12.4907435,11.804439 C11.6081154,11.7387948 10.7913272,11.275376 10.2524902,10.527297 C9.82882911,9.93911912 9.00857156,9.80575194 8.4203937,10.2294131 C7.83221584,10.6530742 7.69884867,11.4733317 8.12250978,12.0615096 Z\" id=\"Shape\"><\/path><path d=\"M12.8774902,8.93849043 C11.8884691,7.56541104 10.3655773,6.70137225 8.70394945,6.57779104 C7.03999899,6.45403709 5.40939918,7.08570163 4.23823187,8.30237124 L1.60099221,11.04108 C-0.554917535,13.3588521 -0.524465488,16.9980568 1.65453778,19.2608983 C3.86001604,21.5512335 7.4472729,21.5836052 9.69136555,19.3327955 L11.2106491,17.7553425 C11.7134482,17.2331979 11.6977656,16.4023168 11.175621,15.8995177 C10.6534764,15.3967186 9.82259538,15.4124012 9.31979625,15.9345457 L7.81647565,17.4957074 C6.62699163,18.6884711 4.7310326,18.6713618 3.54539059,17.4401016 C2.33327358,16.1813478 2.31607797,14.1263671 3.50750204,12.8453323 L6.12924958,10.1229967 C6.76158874,9.46608985 7.62895105,9.13008955 8.50925653,9.19556102 C9.39188462,9.26120523 10.2086728,9.72462402 10.7475098,10.472703 C11.1711709,11.0608809 11.9914284,11.1942481 12.5796063,10.7705869 C13.1677842,10.3469258 13.3011513,9.52666829 12.8774902,8.93849043 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><div class=\"jfToolbar-modal forUrl\"><input type=\"url\" id=\"modalLinkUrl\" class=\"jfModal-input jfModal-modalLinkUrl\" data-disable-enter-event=\"true\" data-disable-escape-event=\"true\" placeholder=\"Enter URL\" aria-label=\"link url input\"\/><div class=\"modal-btn\">Ok<\/div><\/div><\/div><div id=\"input_13_ul\" data-command=\"insertUnorderedList\" class=\"jfToolbar-item breakBefore forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-ul \"><svg viewBox=\"0 0 18 18\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>NumberList Copy 2<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"NumberList-Copy-2\" fill=\"#4A4A4A\"><rect id=\"Rectangle-8\" x=\"6\" y=\"2\" width=\"9\" height=\"2\" rx=\"1\"><\/rect><rect id=\"Rectangle-8-Copy\" x=\"6\" y=\"7\" width=\"9\" height=\"2\" rx=\"1\"><\/rect><rect id=\"Rectangle-8-Copy-2\" x=\"6\" y=\"12\" width=\"9\" height=\"2\" rx=\"1\"><\/rect><circle id=\"Oval-2\" cx=\"3\" cy=\"3\" r=\"1\"><\/circle><circle id=\"Oval-2-Copy\" cx=\"3\" cy=\"8\" r=\"1\"><\/circle><circle id=\"Oval-2-Copy-2\" cx=\"3\" cy=\"13\" r=\"1\"><\/circle><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_13_ol\" data-command=\"insertOrderedList\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-ol \"><svg viewBox=\"0 0 18 18\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"NumberList-Copy\" fill=\"#4A4A4A\"><g id=\"Group\" transform=\"translate(1.000000, 1.000000)\"><path d=\"M0,11 L2,11 L2,11.5 L1,11.5 L1,12.5 L2,12.5 L2,13 L0,13 L0,14 L3,14 L3,10 L0,10 L0,11 Z M0,6 L1.8,6 L0,8.1 L0,9 L3,9 L3,8 L1.2,8 L3,5.9 L3,5 L0,5 L0,6 Z M1,4 L2,4 L2,0 L0,0 L0,1 L1,1 L1,4 Z\" id=\"Shape\"><\/path><\/g><rect id=\"Rectangle-8\" x=\"6\" y=\"2\" width=\"9\" height=\"2\"><\/rect><rect id=\"Rectangle-8-Copy\" x=\"6\" y=\"7\" width=\"9\" height=\"2\"><\/rect><rect id=\"Rectangle-8-Copy-2\" x=\"6\" y=\"12\" width=\"9\" height=\"2\"><\/rect><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_13_quote\" data-command=\"formatBlock\" class=\"jfToolbar-item breakBefore forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-quote \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>quote<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"quote\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"Group-4\" transform=\"translate(10.000000, 11.000000)\"><path d=\"M9.68229167,9.75 L10.4783857,9.75 L10.4783857,9.75 C10.8611857,9.75 11.2103962,9.53147077 11.3777535,9.18719271 L12.8993679,6.0570147 L12.8993679,6.0570147 C12.9655901,5.92078603 13,5.77129358 13,5.61982199 L13,1 L13,1 C13,0.44771525 12.5522847,1.20591542e-16 12,2.22044605e-16 L8.3125,0 L8.3125,0 C7.76021525,1.01453063e-16 7.3125,0.44771525 7.3125,1 L7.3125,4.85 L7.3125,4.85 C7.3125,5.40228475 7.76021525,5.85 8.3125,5.85 L8.734375,5.85 L8.734375,5.85 C9.22578821,5.85 9.62415732,6.24836912 9.62415732,6.73978232 C9.62415732,6.87455906 9.59354003,7.0075748 9.53461662,7.12878867 L8.88205005,8.47121133 L8.88205005,8.47121133 C8.66720778,8.91317258 8.85132408,9.44561702 9.29328532,9.6604593 C9.41449919,9.7193827 9.54751493,9.75 9.68229167,9.75 Z\" id=\"Shape\"><\/path><path d=\"M2.36979167,9.75 L3.16588569,9.75 L3.16588569,9.75 C3.54868575,9.75 3.89789615,9.53147077 4.06525355,9.18719271 L5.58686785,6.0570147 L5.58686785,6.0570147 C5.65309013,5.92078603 5.6875,5.77129358 5.6875,5.61982199 L5.6875,1 L5.6875,1 C5.6875,0.44771525 5.23978475,1.20591542e-16 4.6875,2.22044605e-16 L1,0 L1,0 C0.44771525,1.01453063e-16 -6.76353751e-17,0.44771525 0,1 L0,4.85 L0,4.85 C-4.22892021e-16,5.40228475 0.44771525,5.85 1,5.85 L1.421875,5.85 L1.421875,5.85 C1.91328821,5.85 2.31165732,6.24836912 2.31165732,6.73978232 C2.31165732,6.87455906 2.28104003,7.0075748 2.22211662,7.12878867 L1.56955005,8.47121133 L1.56955005,8.47121133 C1.35470778,8.91317258 1.53882408,9.44561702 1.98078532,9.6604593 C2.10199919,9.7193827 2.23501493,9.75 2.36979167,9.75 Z\" id=\"Shape-Copy\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_13_hr\" data-command=\"insertHorizontalRule\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-hr \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Break<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Break\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"minus\" transform=\"translate(4.000000, 14.000000)\"><path d=\"M1.5625,3.125 L23.4375,3.125 C24.3004449,3.125 25,2.42544492 25,1.5625 C25,0.699555078 24.3004449,0 23.4375,0 L1.5625,0 C0.699555078,0 0,0.699555078 0,1.5625 C0,2.42544492 0.699555078,3.125 1.5625,3.125 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_13_imagePicker\" data-command=\"insertImage\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-imagePicker \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Image<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Image\" fill=\"#4A4A4A\"><g transform=\"translate(4.000000, 4.000000)\"><path d=\"M4.23529412,2.82352941 C3.455598,2.82352941 2.82352941,3.455598 2.82352941,4.23529412 L2.82352941,19.7647059 C2.82352941,20.544402 3.455598,21.1764706 4.23529412,21.1764706 L19.7647059,21.1764706 C20.544402,21.1764706 21.1764706,20.544402 21.1764706,19.7647059 L21.1764706,4.23529412 C21.1764706,3.455598 20.544402,2.82352941 19.7647059,2.82352941 L4.23529412,2.82352941 Z M4.23529412,0 L19.7647059,0 C22.1037942,-3.13474736e-16 24,1.89620577 24,4.23529412 L24,19.7647059 C24,22.1037942 22.1037942,24 19.7647059,24 L4.23529412,24 C1.89620577,24 3.13474736e-16,22.1037942 0,19.7647059 L0,4.23529412 C-3.13474736e-16,1.89620577 1.89620577,4.70212105e-16 4.23529412,0 Z\" id=\"Rectangle-path\" fill-rule=\"nonzero\"><\/path><circle id=\"Oval\" cx=\"8\" cy=\"8\" r=\"2\"><\/circle><path d=\"M21.5506729,16.416153 C22.1109903,16.9757102 23.0194444,16.9757102 23.5797619,16.416153 C24.1400794,15.8565958 24.1400794,14.9493743 23.5797619,14.3898171 L17.601501,8.4196679 C17.0411836,7.8601107 16.1327295,7.8601107 15.572412,8.4196679 L2.4202381,21.5539963 C1.85992063,22.1135534 1.85992063,23.0207749 2.4202381,23.5803321 C2.98055556,24.1398893 3.88900966,24.1398893 4.44932712,23.5803321 L16.5869565,11.4591717 L21.5506729,16.416153 Z\" id=\"Shape\" fill-rule=\"nonzero\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><div class=\"jfToolbar-modal forImage\"><input type=\"url\" id=\"modalImageUrl\" class=\"jfModal-input jfModal-modalImageUrl\" data-disable-enter-event=\"true\" data-disable-escape-event=\"true\" placeholder=\"Enter image URL\" aria-label=\"image url input\"\/><div class=\"modal-btn\">Ok<\/div><\/div><\/div><div id=\"input_13_emoji\" data-command=\"insertEmoji\" class=\"jfToolbar-item hasDropdown forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-emoji \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Smiley<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Smiley\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"if_smile-o_1608409\" transform=\"translate(3.000000, 3.000000)\"><path d=\"M19.4451446,16.0843869 C19.0223005,17.4164151 18.2337534,18.4897437 17.0795033,19.3043725 C15.9252533,20.1190014 14.6224364,20.5263158 13.1710526,20.5263158 C11.7196689,20.5263158 10.416852,20.1190014 9.26260193,19.3043725 C8.10835187,18.4897437 7.31980479,17.4164151 6.89696071,16.0843869 C6.80553496,15.8091744 6.8283914,15.5422183 6.96553002,15.2835186 C7.10266864,15.0248189 7.31980479,14.8514351 7.61693847,14.7633671 C7.90264393,14.6752991 8.17977823,14.6973161 8.44834136,14.8294181 C8.7169045,14.9615201 8.89689894,15.1706815 8.98832468,15.4569025 C9.27403015,16.3375823 9.80258525,17.0503826 10.57399,17.5953032 C11.3453947,18.1402239 12.2110823,18.4126842 13.1710526,18.4126842 C14.131023,18.4126842 14.9967105,18.1402239 15.7681153,17.5953032 C16.53952,17.0503826 17.0680751,16.3375823 17.3537806,15.4569025 C17.4452063,15.1706815 17.6280578,14.9615201 17.9023351,14.8294181 C18.1766123,14.6973161 18.4566037,14.6752991 18.7423091,14.7633671 C19.0280146,14.8514351 19.2394366,15.0248189 19.3765752,15.2835186 C19.5137139,15.5422183 19.5365703,15.8091744 19.4451446,16.0843869 Z M10.9473684,8.72368421 C10.9473684,9.33751371 10.7302118,9.86158512 10.2958984,10.2958984 C9.86158512,10.7302118 9.33751371,10.9473684 8.72368421,10.9473684 C8.10985471,10.9473684 7.58578331,10.7302118 7.15146998,10.2958984 C6.71715666,9.86158512 6.5,9.33751371 6.5,8.72368421 C6.5,8.10985471 6.71715666,7.58578331 7.15146998,7.15146998 C7.58578331,6.71715666 8.10985471,6.5 8.72368421,6.5 C9.33751371,6.5 9.86158512,6.71715666 10.2958984,7.15146998 C10.7302118,7.58578331 10.9473684,8.10985471 10.9473684,8.72368421 Z M19.5,8.72368421 C19.5,9.33751371 19.2828433,9.86158512 18.84853,10.2958984 C18.4142167,10.7302118 17.8901453,10.9473684 17.2763158,10.9473684 C16.6624863,10.9473684 16.1384149,10.7302118 15.7041016,10.2958984 C15.2697882,9.86158512 15.0526316,9.33751371 15.0526316,8.72368421 C15.0526316,8.10985471 15.2697882,7.58578331 15.7041016,7.15146998 C16.1384149,6.71715666 16.6624863,6.5 17.2763158,6.5 C17.8901453,6.5 18.4142167,6.71715666 18.84853,7.15146998 C19.2828433,7.58578331 19.5,8.10985471 19.5,8.72368421 Z M23.6052632,12.8289474 C23.6052632,11.3696546 23.3190173,9.97490748 22.7465255,8.644706 C22.1740337,7.31450452 21.407905,6.16952097 20.4481394,5.20975535 C19.4883738,4.24998972 18.3433902,3.48386102 17.0131887,2.91136924 C15.6829873,2.33887747 14.2882401,2.05263158 12.8289474,2.05263158 C11.3696546,2.05263158 9.97490748,2.33887747 8.644706,2.91136924 C7.31450452,3.48386102 6.16952097,4.24998972 5.20975535,5.20975535 C4.24998972,6.16952097 3.48386102,7.31450452 2.91136924,8.644706 C2.33887747,9.97490748 2.05263158,11.3696546 2.05263158,12.8289474 C2.05263158,14.2882401 2.33887747,15.6829873 2.91136924,17.0131887 C3.48386102,18.3433902 4.24998972,19.4883738 5.20975535,20.4481394 C6.16952097,21.407905 7.31450452,22.1740337 8.644706,22.7465255 C9.97490748,23.3190173 11.3696546,23.6052632 12.8289474,23.6052632 C14.2882401,23.6052632 15.6829873,23.3190173 17.0131887,22.7465255 C18.3433902,22.1740337 19.4883738,21.407905 20.4481394,20.4481394 C21.407905,19.4883738 22.1740337,18.3433902 22.7465255,17.0131887 C23.3190173,15.6829873 23.6052632,14.2882401 23.6052632,12.8289474 Z M26,13 C26,15.3585069 25.4188368,17.5336372 24.2565104,19.5253906 C23.094184,21.5171441 21.5171441,23.094184 19.5253906,24.2565104 C17.5336372,25.4188368 15.3585069,26 13,26 C10.6414931,26 8.46636285,25.4188368 6.47460938,24.2565104 C4.4828559,23.094184 2.90581597,21.5171441 1.74348958,19.5253906 C0.581163194,17.5336372 0,15.3585069 0,13 C0,10.6414931 0.581163194,8.46636285 1.74348958,6.47460938 C2.90581597,4.4828559 4.4828559,2.90581597 6.47460938,1.74348958 C8.46636285,0.581163194 10.6414931,0 13,0 C15.3585069,0 17.5336372,0.581163194 19.5253906,1.74348958 C21.5171441,2.90581597 23.094184,4.4828559 24.2565104,6.47460938 C25.4188368,8.46636285 26,10.6414931 26,13 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line always-hidden\" data-type=\"control_checkbox\" id=\"id_18\"><div id=\"cid_18\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_checkbox\"><div class=\"jfCard-index\"><div>11<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_18_0\" class=\"jfQuestion-label isCenterAlign\" id=\"label_18\"><span class=\"jsQuestionLabelContainer\">Tags<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_18_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-single-column\" data-component=\"checkbox\"><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox\" name=\"q18_tags[]\" value=\"[object Object]\" id=\"input_18_0\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">[object Object]<\/span><\/div><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:none\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:block\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li style=\"display:none\">Should be Empty:<input type=\"text\" name=\"website\" value=\"\" aria-hidden=\"true\"\/><\/li><\/ul><\/form><\/div><input type=\"hidden\" aria-hidden=\"true\" id=\"simple_spc\" name=\"simple_spc\" value=\"&quot;92176773460867-92176773460867&quot;\"\/><div class=\"js-overlayWrapper jfOverlay\" aria-hidden=\"true\"><div class=\"jfOverlay-modalWrapper js-overlay-modalWrapper\"><span class=\"jfOverlay-close\"><span class=\"iconSvg  close \"><svg data-name=\"Layer 1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 209.37 209.37\"><path d=\"M104.1,94.23c-5.83-6-11.26-11.65-16.79-17.2C75.06,64.72,62.72,52.5,50.5,40.17c-1.61-1.63-2.65-1.87-4.22,0a53.62,53.62,0,0,1-5.62,5.61c-1.83,1.58-1.87,2.65-.07,4.42C50.95,60.34,61.17,70.65,71.45,80.91,79,88.46,86.6,96,94.5,103.84L38.58,160l9.18,9.74,56.09-56.38,56.38,56.56,10.38-10.36-56.16-55.81c10-10,19.95-20,29.87-29.88,8-8,16-15.91,23.94-23.94,0.66-.66,1.31-2.42,1-2.78-2.8-3.08-5.82-6-9.24-9.36Z\"><\/path><\/svg><\/span><\/span><img class=\"js-overlayImage jfOverlayImage\" alt=\"close\"\/><\/div><\/div><script src=\"https:\/\/cdn.jotfor.ms\/cardforms\/layout.min.js?c9eb316c\"><\/script><script src=\"https:\/\/www.jotform.com\/ownerView.php?id=92176773460867\"><\/script><script>window.CardForm = new CardLayout({\"formMode\":\"welcome\",\"isSaveAndContinueLaterActivated\":false,\"ownerView\":false,\"ownerPercentage\":99,\"isProduction\":true,\"isFormProgressVisible\":true,\"apiURL\":\"https:\/\/api.jotform.com\",\"reviewBeforeSubmit\":null,\"questions\":[{\"qid\":\"input_14\",\"id\":\"14\",\"type\":\"control_radio\"},{\"qid\":\"input_9\",\"id\":\"9\",\"type\":\"control_checkbox\"},{\"qid\":\"input_12\",\"id\":\"12\",\"type\":\"control_datetime\"},{\"qid\":\"input_11\",\"id\":\"11\",\"type\":\"control_rating\"},{\"qid\":\"input_15\",\"id\":\"15\",\"type\":\"control_imagechoice\"},{\"qid\":\"input_16\",\"id\":\"16\",\"type\":\"control_imagechoice\"},{\"qid\":\"input_17\",\"id\":\"17\",\"type\":\"control_imagechoice\"},{\"qid\":\"input_7\",\"id\":\"7\",\"type\":\"control_matrix\"},{\"qid\":\"input_8\",\"id\":\"8\",\"type\":\"control_yesno\"},{\"qid\":\"input_13\",\"id\":\"13\",\"type\":\"control_textarea\"},{\"qid\":\"input_18\",\"id\":\"18\",\"type\":\"control_checkbox\",\"isHidden\":true}],\"allQuestions\":[{\"id\":\"14\",\"type\":\"control_radio\",\"isHidden\":false,\"fields\":null},{\"id\":\"9\",\"type\":\"control_checkbox\",\"isHidden\":false,\"fields\":null},{\"id\":\"12\",\"type\":\"control_datetime\",\"isHidden\":false,\"fields\":null},{\"id\":\"11\",\"type\":\"control_rating\",\"isHidden\":false,\"fields\":null},{\"id\":\"15\",\"type\":\"control_imagechoice\",\"isHidden\":false,\"fields\":null},{\"id\":\"16\",\"type\":\"control_imagechoice\",\"isHidden\":false,\"fields\":null},{\"id\":\"17\",\"type\":\"control_imagechoice\",\"isHidden\":false,\"fields\":null},{\"id\":\"7\",\"type\":\"control_matrix\",\"isHidden\":false,\"fields\":null},{\"id\":\"8\",\"type\":\"control_yesno\",\"isHidden\":false,\"fields\":null},{\"id\":\"13\",\"type\":\"control_textarea\",\"isHidden\":false,\"fields\":null},{\"id\":\"18\",\"type\":\"control_checkbox\",\"isHidden\":true,\"fields\":null}],\"captchaMode\":null,\"sectionHeaders\":[],\"welcomePageProps\":{\"id\":{\"value\":\"welcomePage\"},\"text\":{\"value\":\"Gauge Refrigeration Management - Course Evaluation Form\"},\"subHeader\":{\"value\":\"Customer Evaluation\u00a0\"},\"imageSrc\":{\"value\":\"https:\/\/icons.jotfor.ms\/cardforms\/assets\/icons\/icon-sets\/default\/business-article.svg\"},\"buttonText\":{\"value\":\"START\"},\"showQuestionCount\":{\"value\":\"No\"},\"isFormTitleVisible\":true},\"formID\":92176773460867,\"fullscreenMode\":true});<\/script><\/body><\/html>\n","Ammonia Course Customer Evaluation Form",{"4b104c7ab946cd9fc6a5da9aff07ae6f":{"smartStyle":{"actions-bg":"#2f2f2f","general-showFormTitle":0,"pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"817e0586e2654d6294e101433813948a":{"smartStyle":{"actions-bg":"#2c2c2d","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"5576dc0d2b1b9adbc3b2bd66c6fd9ce2":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"f72ec5d7dcf7ee948b8e38a309cc914c":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"dcc6b03db5aa347139e55b6ae87a588b":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"e78b85a37d034d0b3a3fdb86bc502e5f":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"32d6a8214900f1758b57ef5a76602bf1":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"652123924d498fca7aedd4fca4c0cfb0":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"04b6310ba0e26efb88f1822cbac7ce6f":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"7cdd9f4ae8fa62935894af4f9d522c33":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"1b3a81231f52e1a86c8b85b013121cb6":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"172958d9d508c6ee88a46ab7c4282846":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"6d17291388f8a4b4655899dd365e2855":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"f4b69d9e3ca3a33c256eab3159470eaa":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"9bd878adb6a8ece0f757c9e29d4c4617":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"505a3fc1e80e65036fb716bcc85ad41b":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"9117377a2f0b555bd5d030b1dccfbd2c":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"da403052e8e04004549966df14b8ae54":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"8cfbb4c3f914476341469ff7c5b936c0":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]}});(function(){window.handleIFrameMessage=function(e){if(!e.data||!e.data.split)return;var args=e.data.split(":");if(args[2]!="92176773460867"){return;}
var iframe=document.getElementById("92176773460867");if(!iframe){return};switch(args[0]){case"scrollIntoView":if(!("nojump"in FrameBuilder.get)){iframe.scrollIntoView();}
break;case"setHeight":var height=args[1]+"px";if(window.jfDeviceType==='mobile'&&typeof $jot!=='undefined'){var parent=$jot(iframe).closest('.jt-feedback.u-responsive-lightbox');if(parent){height='100%';}}
iframe.style.height=height
break;case"setMinHeight":iframe.style.minHeight=args[1]+"px";break;case"collapseErrorPage":if(iframe.clientHeight>window.innerHeight){iframe.style.height=window.innerHeight+"px";}
break;case"reloadPage":if(iframe){location.reload();}
break;case"removeIframeOnloadAttr":iframe.removeAttribute("onload");break;case"loadScript":if(!window.isPermitted(e.origin,['jotform.com','jotform.pro'])){break;}
var src=args[1];if(args.length>3){src=args[1]+':'+args[2];}
var script=document.createElement('script');script.src=src;script.type='text/javascript';document.body.appendChild(script);break;case"exitFullscreen":if(window.document.exitFullscreen)window.document.exitFullscreen();else if(window.document.mozCancelFullScreen)window.document.mozCancelFullScreen();else if(window.document.mozCancelFullscreen)window.document.mozCancelFullScreen();else if(window.document.webkitExitFullscreen)window.document.webkitExitFullscreen();else if(window.document.msExitFullscreen)window.document.msExitFullscreen();break;case'setDeviceType':window.jfDeviceType=args[1];break;}};window.isPermitted=function(url,whitelisted_domains){var hostname=(new URL(url)).hostname;var result=false;if(typeof hostname!=='undefined'){if(whitelisted_domains.indexOf(hostname)>-1){result=true;}
else{whitelisted_domains.forEach(function(element){if(hostname.endsWith('.'.concat(element))==true){result=true;}});}
return result;}}
if(window.addEventListener){window.addEventListener("message",handleIFrameMessage,false);}else if(window.attachEvent){window.attachEvent("onmessage",handleIFrameMessage);}})();