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 i92172910218857=new FrameBuilder("92172910218857",false,"","<html lang=\"\"><head><title>Ammonia Training Course - Student Evaluation Form<\/title><link rel=\"canonical\" href=\"https:\/\/form.jotform.co\/92172910218857\"\/><link rel=\"alternate\" type=\"application\/json+oembed\" href=\"https:\/\/www.jotform.com\/oembed\/?format=json&amp;url=http:\/\/www.jotform.com\/form\/92172910218857\" 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;92172910218857\" title=\"oEmbed Form\"\/><meta property=\"og:title\" content=\"Ammonia Training Course - Student Evaluation Form\"\/><meta property=\"og:url\" content=\"http:\/\/www.jotform.co\/form\/92172910218857\"\/><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?450406c0\"\/><link id=\"form-css\" type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/stylebuilder\/92172910218857.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\/static\/prototype.forms.js\" type=\"text\/javascript\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/static\/jotform.forms.js?3.3.12559\" 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(\"5\", 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-5\");\nJotForm.setRatingLayout(19);\nJotForm.setMatrixLayout(9, false);\n\n    if (window.CardForm && typeof window.CardForm.setInitialSelectionForMatrixSliders === 'function') {window.CardForm.setInitialSelectionForMatrixSliders(9);}\n  JotForm.setRatingLayout(23);\n\n        \n\t});\n\n   clearInterval(jsTime);\n }catch(e){}}, 1000);\n\n   JotForm.prepareCalculationsOnTheFly([null,null,null,null,null,{\"name\":\"whenDid\",\"qid\":\"5\",\"text\":\"When did you complete the course?\",\"type\":\"control_datetime\"},null,null,null,{\"name\":\"pleaseEvaluate\",\"qid\":\"9\",\"text\":\"Please evaluate honestly\",\"type\":\"control_matrix\"},null,null,null,null,null,{\"name\":\"thisCourse15\",\"qid\":\"15\",\"text\":\"This course is best described as:\",\"type\":\"control_radio\"},null,null,null,{\"description\":\"From 1 being &quot;I hated it&quot; and 10 being &quot;Best course I have ever been on&quot;\u00a0\",\"name\":\"overallDid\",\"qid\":\"19\",\"subLabel\":\"\",\"text\":\"Overall, did you enjoy the course? \",\"type\":\"control_rating\"},null,{\"description\":\"\",\"name\":\"typeA21\",\"qid\":\"21\",\"subLabel\":\"\",\"text\":\"What Course did you complete?\",\"type\":\"control_dropdown\"},{\"description\":\"\",\"name\":\"howWell\",\"qid\":\"22\",\"text\":\"How well do you think you performed?\",\"type\":\"control_imagechoice\"},{\"description\":\"\",\"name\":\"howMuch\",\"qid\":\"23\",\"subLabel\":\"\",\"text\":\"How much effort did you put in?\",\"type\":\"control_rating\"}]);\n   setTimeout(function() {\nJotForm.paymentExtrasOnTheFly([null,null,null,null,null,{\"name\":\"whenDid\",\"qid\":\"5\",\"text\":\"When did you complete the course?\",\"type\":\"control_datetime\"},null,null,null,{\"name\":\"pleaseEvaluate\",\"qid\":\"9\",\"text\":\"Please evaluate honestly\",\"type\":\"control_matrix\"},null,null,null,null,null,{\"name\":\"thisCourse15\",\"qid\":\"15\",\"text\":\"This course is best described as:\",\"type\":\"control_radio\"},null,null,null,{\"description\":\"From 1 being &quot;I hated it&quot; and 10 being &quot;Best course I have ever been on&quot;\u00a0\",\"name\":\"overallDid\",\"qid\":\"19\",\"subLabel\":\"\",\"text\":\"Overall, did you enjoy the course? \",\"type\":\"control_rating\"},null,{\"description\":\"\",\"name\":\"typeA21\",\"qid\":\"21\",\"subLabel\":\"\",\"text\":\"What Course did you complete?\",\"type\":\"control_dropdown\"},{\"description\":\"\",\"name\":\"howWell\",\"qid\":\"22\",\"text\":\"How well do you think you performed?\",\"type\":\"control_imagechoice\"},{\"description\":\"\",\"name\":\"howMuch\",\"qid\":\"23\",\"subLabel\":\"\",\"text\":\"How much effort did you put in?\",\"type\":\"control_rating\"}]);}, 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\"> 7<\/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\">This form is used to evaluate our course and instructors.<\/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=\"92172910218857\" name=\"form_92172910218857\" action=\"https:\/\/submit.jotform.co\/submit\/92172910218857\/\" method=\"post\"><input type=\"hidden\" name=\"formID\" value=\"92172910218857\"\/><ul class=\"jfForm-all form-section page-section form-all\" id=\"cardAnimationWrapper\"><li class=\"form-line\" data-type=\"control_dropdown\" id=\"id_21\"><div id=\"cid_21\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_dropdown\"><div class=\"jfCard-index\"><div>1<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_21\" class=\"jfQuestion-label isCenterAlign\" id=\"label_21\"><span class=\"jsQuestionLabelContainer\">What Course did you complete?<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_21_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\"><div class=\"jfField\" aria-hidden=\"false\"><select name=\"q21_typeA21\" data-component=\"dropdown\" required=\"\" id=\"input_21\" class=\"form-dropdown validate[required]\"><option value=\"\"><\/option><option value=\"Introduction to Ammonia 1-2 hour\">Introduction to Ammonia 1-2 hour<\/option><option value=\"Ammonia Awareness One day\">Ammonia Awareness One day<\/option><option value=\"Ammonia Operator\">Ammonia Operator<\/option><option value=\"Ammonia Technician\">Ammonia Technician<\/option><option value=\"Emergency Management\">Emergency Management<\/option><\/select><div tabindex=\"0\" class=\"jfInput-dropdown isDrawer\" datatype=\"multiselect\"><div class=\"jfDropdown-wrapper\" tabindex=\"-1\"><div class=\"jfDropdown-chipContainer\"><span class=\"jfDropdown-chip isSingle\"><\/span><\/div><span class=\"jfDropdown-toggle\"><i class=\"fa fa-caret-down\" aria-hidden=\"true\"><\/i><\/span><\/div><div id=\"jfDropdown-optionList-21\" class=\"jfDropdown-optionListWrapper forDrawer\" aria-hidden=\"true\"><ul name=\"q21_typeA21\" data-component=\"dropdown\" required=\"\" class=\"jfDropdown-optionList form-dropdown\"><li style=\"height:36px\" data-value=\"\" class=\"jfDropdown-optionListItem\"><\/li><li data-value=\"Introduction to Ammonia 1-2 hour\" class=\"jfDropdown-optionListItem\">Introduction to Ammonia 1-2 hour<\/li><li data-value=\"Ammonia Awareness One day\" class=\"jfDropdown-optionListItem\">Ammonia Awareness One day<\/li><li data-value=\"Ammonia Operator\" class=\"jfDropdown-optionListItem\">Ammonia Operator<\/li><li data-value=\"Ammonia Technician\" class=\"jfDropdown-optionListItem\">Ammonia Technician<\/li><li data-value=\"Emergency Management\" class=\"jfDropdown-optionListItem\">Emergency Management<\/li><\/ul><\/div><\/div><label class=\"jfField-sublabel\" for=\"input_21\"><\/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_datetime\" id=\"id_5\"><div id=\"cid_5\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_datetime\"><div class=\"jfCard-index\"><div>2<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"month_5\" class=\"jfQuestion-label isCenterAlign\" id=\"label_5\"><span class=\"jsQuestionLabelContainer\">When did you complete the course?<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_5_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_5\" 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_5\" id=\"sublabel_input_5\">Date<\/label><\/div><div class=\"jfField  isHidden cf-valid-hidden\" data-type=\"month\"><input type=\"tel\" id=\"month_5\" name=\"q5_whenDid[month]\" class=\"form-textbox validate[required, limitDate] jfInput-input hasSublabel\" size=\"2\" value=\"\" maxLength=\"2\" data-maxlength=\"2\" data-component=\"month\" required=\"\" aria-required=\"true\" aria-describedby=\"month_5_description\"\/><label class=\"jfField-sublabel\" for=\"month_5\" id=\"sublabel_5_month\">Month<\/label><\/div><div class=\"jfField  isHidden cf-valid-hidden\" data-type=\"day\"><input type=\"tel\" id=\"day_5\" name=\"q5_whenDid[day]\" class=\"form-textbox validate[required, limitDate] jfInput-input hasSublabel\" size=\"2\" value=\"\" maxLength=\"2\" data-maxlength=\"2\" data-component=\"day\" required=\"\" aria-required=\"true\" aria-describedby=\"day_5_description\"\/><label class=\"jfField-sublabel\" for=\"day_5\" id=\"sublabel_5_day\">Day<\/label><\/div><div class=\"jfField  isHidden cf-valid-hidden\" data-type=\"year\"><input type=\"tel\" id=\"year_5\" name=\"q5_whenDid[year]\" class=\"form-textbox validate[required, limitDate] jfInput-input hasSublabel\" size=\"4\" value=\"\" maxLength=\"4\" data-maxlength=\"4\" data-component=\"year\" required=\"\" aria-required=\"true\" aria-describedby=\"year_5_description\"\/><label class=\"jfField-sublabel\" for=\"year_5\" id=\"sublabel_5_year\">Year<\/label><\/div><img class=\"showAutoCalendar\" alt=\"Pick a Date\" id=\"input_5_pick\" style=\"display:none;vertical-align:middle\" data-component=\"datetime\"\/><div class=\"jfCalendar-wrapper\"><div id=\"calendar-container-5\" 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_19\"><div id=\"cid_19\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_rating\"><div class=\"jfCard-index\"><div>3<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_19\" class=\"jfQuestion-label isCenterAlign\" id=\"label_19\"><span class=\"jsQuestionLabelContainer\">Overall, did you enjoy the course? <\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_19_description\">From 1 being &quot;I hated it&quot; and 10 being &quot;Best course I have ever been on&quot;\u00a0<\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" style=\"overflow:hidden\"><div class=\"jfField isFilled\" id=\"rating_19\"><div id=\"input_19\" name=\"q19_overallDid\" data-component=\"rating\" class=\"jfRating form-star-rating\"><input type=\"tel\" class=\"jfInput jfRating-shortcut-input\" name=\"jfRating-shortcut-input\" data-qid=\"input_19\" aria-label=\"Select from 1 to 10\"\/><ul class=\"jfRating-items\" name=\"q19_overallDid\" data-type=\"stars\" data-item-count=\"10\"><li class=\"jfRating-item jfRating-selection  input_19_1\" data-value=\"1\" tabindex=\"1191\" style=\"height:76px\"><style>\n                \/* #input_19_1:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_19_1.checked .jfRating-svg-container,\n                .jfRating-selection.input_19_1.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q19_overallDid\" value=\"1\" title=\"1\" id=\"input_19_1\" required=\"\"\/><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_19_2\" data-value=\"2\" tabindex=\"1192\" style=\"height:76px\"><style>\n                \/* #input_19_2:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_19_2.checked .jfRating-svg-container,\n                .jfRating-selection.input_19_2.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q19_overallDid\" value=\"2\" title=\"2\" id=\"input_19_2\" required=\"\"\/><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_19_3\" data-value=\"3\" tabindex=\"1193\" style=\"height:76px\"><style>\n                \/* #input_19_3:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_19_3.checked .jfRating-svg-container,\n                .jfRating-selection.input_19_3.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q19_overallDid\" value=\"3\" title=\"3\" id=\"input_19_3\" required=\"\"\/><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_19_4\" data-value=\"4\" tabindex=\"1194\" style=\"height:76px\"><style>\n                \/* #input_19_4:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_19_4.checked .jfRating-svg-container,\n                .jfRating-selection.input_19_4.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q19_overallDid\" value=\"4\" title=\"4\" id=\"input_19_4\" required=\"\"\/><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_19_5\" data-value=\"5\" tabindex=\"1195\" style=\"height:76px\"><style>\n                \/* #input_19_5:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_19_5.checked .jfRating-svg-container,\n                .jfRating-selection.input_19_5.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q19_overallDid\" value=\"5\" title=\"5\" id=\"input_19_5\" required=\"\"\/><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_19_6\" data-value=\"6\" tabindex=\"1196\" style=\"height:76px\"><style>\n                \/* #input_19_6:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_19_6.checked .jfRating-svg-container,\n                .jfRating-selection.input_19_6.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q19_overallDid\" value=\"6\" title=\"6\" id=\"input_19_6\" required=\"\"\/><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_19_7\" data-value=\"7\" tabindex=\"1197\" style=\"height:76px\"><style>\n                \/* #input_19_7:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_19_7.checked .jfRating-svg-container,\n                .jfRating-selection.input_19_7.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q19_overallDid\" value=\"7\" title=\"7\" id=\"input_19_7\" required=\"\"\/><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_19_8\" data-value=\"8\" tabindex=\"1198\" style=\"height:76px\"><style>\n                \/* #input_19_8:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_19_8.checked .jfRating-svg-container,\n                .jfRating-selection.input_19_8.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q19_overallDid\" value=\"8\" title=\"8\" id=\"input_19_8\" required=\"\"\/><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_19_9\" data-value=\"9\" tabindex=\"1199\" style=\"height:76px\"><style>\n                \/* #input_19_9:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_19_9.checked .jfRating-svg-container,\n                .jfRating-selection.input_19_9.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q19_overallDid\" value=\"9\" title=\"9\" id=\"input_19_9\" required=\"\"\/><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><li class=\"jfRating-item jfRating-selection  input_19_10\" data-value=\"10\" tabindex=\"11910\" style=\"height:76px\"><style>\n                \/* #input_19_10:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_19_10.checked .jfRating-svg-container,\n                .jfRating-selection.input_19_10.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q19_overallDid\" value=\"10\" title=\"10\" id=\"input_19_10\" required=\"\"\/><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\">10<\/div><\/div><\/div><\/li><\/ul><div class=\"jfRating-scaleText\"><div class=\"jfRating-fromText\" id=\"jfRating-fromText_19\">Sigh!<\/div><div class=\"jfRating-toText\" id=\"jfRating-toText_19\">Wow!<\/div><\/div><input type=\"hidden\" name=\"q19_stars\" class=\"form-textbox\" data-lowest=\"1\"\/><\/div><label class=\"jfField-sublabel\" for=\"input_19\"><\/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_9\"><div id=\"cid_9\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_matrix\"><div class=\"jfCard-index\"><div>4<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_9\" class=\"jfQuestion-label isCenterAlign\" id=\"label_9\"><span class=\"jsQuestionLabelContainer\">Please evaluate honestly<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_9_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-component=\"matrix2\" data-wrapper-react=\"true\"><div class=\"jfField\" id=\"matrix_9\" 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 content was:\t<\/div><div class=\"jfMatrixLabelList-item\">The trainer was knowledgeable:\u00a0\u00a0<\/div><div class=\"jfMatrixLabelList-item\">The course was well organised:\t<\/div><div class=\"jfMatrixLabelList-item\">Instructor&#x27;s use of examples and illustrations was:\t<\/div><div class=\"jfMatrixLabelList-item\">Instructor&#x27;s enthusiasm was:\t<\/div><div class=\"jfMatrixLabelList-item\">Availability of extra help and questioning when needed was:\t<\/div><div class=\"jfMatrixLabelList-item\">Amount you learned was:\t<\/div><div class=\"jfMatrixLabelList-item\">The course was relevant and credible:<\/div><\/div><div class=\"jfMatrixInputList\"><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"Require at least one answer\"><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_9_0_0\" name=\"q9_pleaseEvaluate[0]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_0_1\" name=\"q9_pleaseEvaluate[0]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_0_2\" name=\"q9_pleaseEvaluate[0]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_0_3\" name=\"q9_pleaseEvaluate[0]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_0_4\" name=\"q9_pleaseEvaluate[0]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_0_5\" name=\"q9_pleaseEvaluate[0]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_0_6\" name=\"q9_pleaseEvaluate[0]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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=\"Require at least one answer\"><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_9_1_0\" name=\"q9_pleaseEvaluate[1]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_1_1\" name=\"q9_pleaseEvaluate[1]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_1_2\" name=\"q9_pleaseEvaluate[1]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_1_3\" name=\"q9_pleaseEvaluate[1]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_1_4\" name=\"q9_pleaseEvaluate[1]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_1_5\" name=\"q9_pleaseEvaluate[1]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_1_6\" name=\"q9_pleaseEvaluate[1]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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=\"Require at least one answer\"><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_9_2_0\" name=\"q9_pleaseEvaluate[2]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_2_1\" name=\"q9_pleaseEvaluate[2]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_2_2\" name=\"q9_pleaseEvaluate[2]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_2_3\" name=\"q9_pleaseEvaluate[2]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_2_4\" name=\"q9_pleaseEvaluate[2]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_2_5\" name=\"q9_pleaseEvaluate[2]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_2_6\" name=\"q9_pleaseEvaluate[2]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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=\"Require at least one answer\"><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_9_3_0\" name=\"q9_pleaseEvaluate[3]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_3_1\" name=\"q9_pleaseEvaluate[3]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_3_2\" name=\"q9_pleaseEvaluate[3]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_3_3\" name=\"q9_pleaseEvaluate[3]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_3_4\" name=\"q9_pleaseEvaluate[3]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_3_5\" name=\"q9_pleaseEvaluate[3]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_3_6\" name=\"q9_pleaseEvaluate[3]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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=\"Require at least one answer\"><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_9_4_0\" name=\"q9_pleaseEvaluate[4]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_4_1\" name=\"q9_pleaseEvaluate[4]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_4_2\" name=\"q9_pleaseEvaluate[4]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_4_3\" name=\"q9_pleaseEvaluate[4]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_4_4\" name=\"q9_pleaseEvaluate[4]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_4_5\" name=\"q9_pleaseEvaluate[4]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_4_6\" name=\"q9_pleaseEvaluate[4]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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=\"Require at least one answer\"><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_9_5_0\" name=\"q9_pleaseEvaluate[5]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_5_1\" name=\"q9_pleaseEvaluate[5]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_5_2\" name=\"q9_pleaseEvaluate[5]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_5_3\" name=\"q9_pleaseEvaluate[5]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_5_4\" name=\"q9_pleaseEvaluate[5]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_5_5\" name=\"q9_pleaseEvaluate[5]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_5_6\" name=\"q9_pleaseEvaluate[5]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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=\"Require at least one answer\"><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_9_6_0\" name=\"q9_pleaseEvaluate[6]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_6_1\" name=\"q9_pleaseEvaluate[6]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_6_2\" name=\"q9_pleaseEvaluate[6]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_6_3\" name=\"q9_pleaseEvaluate[6]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_6_4\" name=\"q9_pleaseEvaluate[6]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_6_5\" name=\"q9_pleaseEvaluate[6]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_6_6\" name=\"q9_pleaseEvaluate[6]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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=\"Require at least one answer\"><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_9_7_0\" name=\"q9_pleaseEvaluate[7]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_7_1\" name=\"q9_pleaseEvaluate[7]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_7_2\" name=\"q9_pleaseEvaluate[7]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_7_3\" name=\"q9_pleaseEvaluate[7]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_7_4\" name=\"q9_pleaseEvaluate[7]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_7_5\" name=\"q9_pleaseEvaluate[7]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_7_6\" name=\"q9_pleaseEvaluate[7]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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 content was:\t<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"1\">The trainer was knowledgeable:\u00a0\u00a0<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"2\">The course was well organised:\t<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"3\">Instructor&#x27;s use of examples and illustrations was:\t<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"4\">Instructor&#x27;s enthusiasm was:\t<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"5\">Availability of extra help and questioning when needed was:\t<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"6\">Amount you learned was:\t<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"7\">The course was relevant and credible:<\/div><\/div><div class=\"jfMobileMatrix-content slider\"><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"Require at least one answer\"><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_9_0_0\" name=\"q9_pleaseEvaluate[0]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_0_1\" name=\"q9_pleaseEvaluate[0]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_0_2\" name=\"q9_pleaseEvaluate[0]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_0_3\" name=\"q9_pleaseEvaluate[0]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_0_4\" name=\"q9_pleaseEvaluate[0]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_0_5\" name=\"q9_pleaseEvaluate[0]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_0_6\" name=\"q9_pleaseEvaluate[0]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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=\"Require at least one answer\"><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_9_1_0\" name=\"q9_pleaseEvaluate[1]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_1_1\" name=\"q9_pleaseEvaluate[1]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_1_2\" name=\"q9_pleaseEvaluate[1]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_1_3\" name=\"q9_pleaseEvaluate[1]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_1_4\" name=\"q9_pleaseEvaluate[1]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_1_5\" name=\"q9_pleaseEvaluate[1]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_1_6\" name=\"q9_pleaseEvaluate[1]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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=\"Require at least one answer\"><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_9_2_0\" name=\"q9_pleaseEvaluate[2]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_2_1\" name=\"q9_pleaseEvaluate[2]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_2_2\" name=\"q9_pleaseEvaluate[2]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_2_3\" name=\"q9_pleaseEvaluate[2]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_2_4\" name=\"q9_pleaseEvaluate[2]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_2_5\" name=\"q9_pleaseEvaluate[2]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_2_6\" name=\"q9_pleaseEvaluate[2]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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=\"Require at least one answer\"><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_9_3_0\" name=\"q9_pleaseEvaluate[3]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_3_1\" name=\"q9_pleaseEvaluate[3]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_3_2\" name=\"q9_pleaseEvaluate[3]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_3_3\" name=\"q9_pleaseEvaluate[3]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_3_4\" name=\"q9_pleaseEvaluate[3]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_3_5\" name=\"q9_pleaseEvaluate[3]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_3_6\" name=\"q9_pleaseEvaluate[3]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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=\"Require at least one answer\"><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_9_4_0\" name=\"q9_pleaseEvaluate[4]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_4_1\" name=\"q9_pleaseEvaluate[4]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_4_2\" name=\"q9_pleaseEvaluate[4]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_4_3\" name=\"q9_pleaseEvaluate[4]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_4_4\" name=\"q9_pleaseEvaluate[4]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_4_5\" name=\"q9_pleaseEvaluate[4]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_4_6\" name=\"q9_pleaseEvaluate[4]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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=\"Require at least one answer\"><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_9_5_0\" name=\"q9_pleaseEvaluate[5]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_5_1\" name=\"q9_pleaseEvaluate[5]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_5_2\" name=\"q9_pleaseEvaluate[5]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_5_3\" name=\"q9_pleaseEvaluate[5]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_5_4\" name=\"q9_pleaseEvaluate[5]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_5_5\" name=\"q9_pleaseEvaluate[5]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_5_6\" name=\"q9_pleaseEvaluate[5]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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=\"Require at least one answer\"><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_9_6_0\" name=\"q9_pleaseEvaluate[6]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_6_1\" name=\"q9_pleaseEvaluate[6]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_6_2\" name=\"q9_pleaseEvaluate[6]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_6_3\" name=\"q9_pleaseEvaluate[6]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_6_4\" name=\"q9_pleaseEvaluate[6]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_6_5\" name=\"q9_pleaseEvaluate[6]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_6_6\" name=\"q9_pleaseEvaluate[6]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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=\"Require at least one answer\"><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_9_7_0\" name=\"q9_pleaseEvaluate[7]\" value=\"1\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"16.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_7_1\" name=\"q9_pleaseEvaluate[7]\" value=\"2\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"33.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_7_2\" name=\"q9_pleaseEvaluate[7]\" value=\"3\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_7_3\" name=\"q9_pleaseEvaluate[7]\" value=\"4\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"66.67\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_7_4\" name=\"q9_pleaseEvaluate[7]\" value=\"5\" class=\"form-radio validate[required, requireOneAnswer]\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"83.33\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_9_7_5\" name=\"q9_pleaseEvaluate[7]\" value=\"6\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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_9_7_6\" name=\"q9_pleaseEvaluate[7]\" value=\"7\" class=\"form-radio validate[required, requireOneAnswer]\"\/><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=\"16.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/3.png\" alt=\"Slightly 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=\"66.67\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/5.png\" alt=\"Slightly Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"83.33\"><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><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_rating\" id=\"id_23\"><div id=\"cid_23\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_rating\"><div class=\"jfCard-index\"><div>5<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_23\" class=\"jfQuestion-label isCenterAlign\" id=\"label_23\"><span class=\"jsQuestionLabelContainer\">How much effort did you put in?<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_23_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" style=\"overflow:hidden\"><div class=\"jfField isFilled\" id=\"rating_23\"><div id=\"input_23\" name=\"q23_howMuch\" data-component=\"rating\" class=\"jfRating form-star-rating\"><input type=\"tel\" class=\"jfInput jfRating-shortcut-input\" name=\"jfRating-shortcut-input\" data-qid=\"input_23\" aria-label=\"Select from 1 to 10\"\/><ul class=\"jfRating-items\" name=\"q23_howMuch\" data-type=\"stars\" data-item-count=\"10\"><li class=\"jfRating-item jfRating-selection  input_23_1\" data-value=\"1\" tabindex=\"1231\" style=\"height:76px\"><style>\n                \/* #input_23_1:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_23_1.checked .jfRating-svg-container,\n                .jfRating-selection.input_23_1.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q23_howMuch\" value=\"1\" title=\"1\" id=\"input_23_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_23_2\" data-value=\"2\" tabindex=\"1232\" style=\"height:76px\"><style>\n                \/* #input_23_2:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_23_2.checked .jfRating-svg-container,\n                .jfRating-selection.input_23_2.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q23_howMuch\" value=\"2\" title=\"2\" id=\"input_23_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_23_3\" data-value=\"3\" tabindex=\"1233\" style=\"height:76px\"><style>\n                \/* #input_23_3:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_23_3.checked .jfRating-svg-container,\n                .jfRating-selection.input_23_3.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q23_howMuch\" value=\"3\" title=\"3\" id=\"input_23_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_23_4\" data-value=\"4\" tabindex=\"1234\" style=\"height:76px\"><style>\n                \/* #input_23_4:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_23_4.checked .jfRating-svg-container,\n                .jfRating-selection.input_23_4.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q23_howMuch\" value=\"4\" title=\"4\" id=\"input_23_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_23_5\" data-value=\"5\" tabindex=\"1235\" style=\"height:76px\"><style>\n                \/* #input_23_5:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_23_5.checked .jfRating-svg-container,\n                .jfRating-selection.input_23_5.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q23_howMuch\" value=\"5\" title=\"5\" id=\"input_23_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_23_6\" data-value=\"6\" tabindex=\"1236\" style=\"height:76px\"><style>\n                \/* #input_23_6:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_23_6.checked .jfRating-svg-container,\n                .jfRating-selection.input_23_6.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q23_howMuch\" value=\"6\" title=\"6\" id=\"input_23_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_23_7\" data-value=\"7\" tabindex=\"1237\" style=\"height:76px\"><style>\n                \/* #input_23_7:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_23_7.checked .jfRating-svg-container,\n                .jfRating-selection.input_23_7.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q23_howMuch\" value=\"7\" title=\"7\" id=\"input_23_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_23_8\" data-value=\"8\" tabindex=\"1238\" style=\"height:76px\"><style>\n                \/* #input_23_8:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_23_8.checked .jfRating-svg-container,\n                .jfRating-selection.input_23_8.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q23_howMuch\" value=\"8\" title=\"8\" id=\"input_23_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_23_9\" data-value=\"9\" tabindex=\"1239\" style=\"height:76px\"><style>\n                \/* #input_23_9:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_23_9.checked .jfRating-svg-container,\n                .jfRating-selection.input_23_9.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q23_howMuch\" value=\"9\" title=\"9\" id=\"input_23_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><li class=\"jfRating-item jfRating-selection  input_23_10\" data-value=\"10\" tabindex=\"12310\" style=\"height:76px\"><style>\n                \/* #input_23_10:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_23_10.checked .jfRating-svg-container,\n                .jfRating-selection.input_23_10.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio\" name=\"q23_howMuch\" value=\"10\" title=\"10\" id=\"input_23_10\"\/><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\">10<\/div><\/div><\/div><\/li><\/ul><div class=\"jfRating-scaleText\"><div class=\"jfRating-fromText\" id=\"jfRating-fromText_23\">What its over?<\/div><div class=\"jfRating-toText\" id=\"jfRating-toText_23\">I was sweating<\/div><\/div><input type=\"hidden\" name=\"q23_stars\" class=\"form-textbox\" data-lowest=\"1\"\/><\/div><label class=\"jfField-sublabel\" for=\"input_23\"><\/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_22\"><div id=\"cid_22\" 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_22\" class=\"jfQuestion-label isCenterAlign\" id=\"label_22\"><span class=\"jsQuestionLabelContainer\">How well do you think you performed?<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_22_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=\"q22_howWell[]\" value=\"Could of done better|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_down.5d49f7658dd929.03055446.png\" id=\"input_22_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.5d49f7658dd929.03055446.png&quot;)\"><img alt=\"Could of done better\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_down.5d49f7658dd929.03055446.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\">Could of done better<\/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=\"q22_howWell[]\" value=\"Not sure|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/thought.5d49f822840699.10207329.png\" id=\"input_22_1\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/thought.5d49f822840699.10207329.png&quot;)\"><img alt=\"Not sure \" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/thought.5d49f822840699.10207329.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=\"q22_howWell[]\" value=\"Good|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_up.5d49f774064e45.77652588.png\" id=\"input_22_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.5d49f774064e45.77652588.png&quot;)\"><img alt=\"Good\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_up.5d49f774064e45.77652588.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<\/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=\"q22_howWell[]\" value=\"Einstein|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/genius.5d49f7c7cab1f2.02247300.png\" id=\"input_22_3\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/genius.5d49f7c7cab1f2.02247300.png&quot;)\"><img alt=\"Einstein \" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/genius.5d49f7c7cab1f2.02247300.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\">Einstein<\/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_radio\" id=\"id_15\"><div id=\"cid_15\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_radio\"><div class=\"jfCard-index\"><div>7<\/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\">This course is best described as:<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/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=\"3\" data-component=\"radio\"><div class=\"jfField form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio validate[required]\" name=\"q15_thisCourse15\" value=\"Fantastic\" checked=\"\" id=\"input_15_0\" required=\"\"\/><div class=\"jfRadio-label\"><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\"\/><span class=\"jfRadio-labelText\">Fantastic<\/span><\/div><\/label><\/div><div class=\"jfField form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio validate[required]\" name=\"q15_thisCourse15\" value=\"Relevant\" id=\"input_15_1\" required=\"\"\/><div class=\"jfRadio-label\"><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\"\/><span class=\"jfRadio-labelText\">Relevant<\/span><\/div><\/label><\/div><div class=\"jfField form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio validate[required]\" name=\"q15_thisCourse15\" value=\"Compliance\" id=\"input_15_2\" required=\"\"\/><div class=\"jfRadio-label\"><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\"\/><span class=\"jfRadio-labelText\">Compliance<\/span><\/div><\/label><\/div><div class=\"jfField form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio validate[required]\" name=\"q15_thisCourse15\" value=\"Interesting\" id=\"input_15_3\" required=\"\"\/><div class=\"jfRadio-label\"><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\"\/><span class=\"jfRadio-labelText\">Interesting<\/span><\/div><\/label><\/div><div class=\"jfField form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio validate[required]\" name=\"q15_thisCourse15\" value=\"Average\" id=\"input_15_4\" required=\"\"\/><div class=\"jfRadio-label\"><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\"\/><span class=\"jfRadio-labelText\">Average<\/span><\/div><\/label><\/div><div class=\"jfField form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio validate[required]\" name=\"q15_thisCourse15\" value=\"Snooze fest\" id=\"input_15_5\" required=\"\"\/><div class=\"jfRadio-label\"><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><img class=\"jfRadio-visual\" alt=\"Radio\"\/><span class=\"jfRadio-labelText\">Snooze fest<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item form-other-part-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input jfRadio-otherInput form-radio-other form-radio validate[required]\" name=\"q15_thisCourse15\" id=\"other_15\" value=\"other\"\/><div class=\"jfRadio-label\"><span class=\"jfRadio-customInput\"><span class=\"jfRadio-customInputIcon\"><\/span><\/span><span class=\"jfRadio-labelText jfRadio-otherInputText\"><input type=\"text\" class=\"jfRadio-input jfRadio-otherInputField form-radio-other-input form-textbox\" name=\"q15_thisCourse15[other]\" data-otherhint=\"Other\" placeholder=\"Other\" size=\"15\" id=\"input_15\" aria-label=\"Other\"\/><\/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;92172910218857-92172910218857&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?450406c0\"><\/script><script src=\"https:\/\/www.jotform.com\/ownerView.php?id=92172910218857\"><\/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_21\",\"id\":\"21\",\"type\":\"control_dropdown\"},{\"qid\":\"input_5\",\"id\":\"5\",\"type\":\"control_datetime\"},{\"qid\":\"input_19\",\"id\":\"19\",\"type\":\"control_rating\"},{\"qid\":\"input_9\",\"id\":\"9\",\"type\":\"control_matrix\"},{\"qid\":\"input_23\",\"id\":\"23\",\"type\":\"control_rating\"},{\"qid\":\"input_22\",\"id\":\"22\",\"type\":\"control_imagechoice\"},{\"qid\":\"input_15\",\"id\":\"15\",\"type\":\"control_radio\"}],\"allQuestions\":[{\"id\":\"21\",\"type\":\"control_dropdown\",\"isHidden\":false,\"fields\":null},{\"id\":\"5\",\"type\":\"control_datetime\",\"isHidden\":false,\"fields\":null},{\"id\":\"19\",\"type\":\"control_rating\",\"isHidden\":false,\"fields\":null},{\"id\":\"9\",\"type\":\"control_matrix\",\"isHidden\":false,\"fields\":null},{\"id\":\"23\",\"type\":\"control_rating\",\"isHidden\":false,\"fields\":null},{\"id\":\"22\",\"type\":\"control_imagechoice\",\"isHidden\":false,\"fields\":null},{\"id\":\"15\",\"type\":\"control_radio\",\"isHidden\":false,\"fields\":null}],\"captchaMode\":null,\"sectionHeaders\":[],\"welcomePageProps\":{\"id\":{\"value\":\"welcomePage\"},\"text\":{\"value\":\"Gauge Refrigeration Management - Course Evaluation Form\"},\"subHeader\":{\"value\":\"This form is used to evaluate our course and instructors.\"},\"imageSrc\":{\"value\":\"https:\/\/icons.jotfor.ms\/cardforms\/assets\/icons\/icon-sets\/default\/business-article.svg\"},\"buttonText\":{\"value\":\"START\"},\"showQuestionCount\":{\"value\":\"No\"},\"isFormTitleVisible\":true},\"formID\":92172910218857,\"fullscreenMode\":true});<\/script><\/body><\/html>\n","Ammonia Training Course - Student Evaluation Form",{"57256ca1a3581d5eed0be0ad4d5ef6d8":{"smartStyle":{"actions-bg":"#2f2f2f","general-showFormTitle":0,"pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"82af798fec32270569d34c16d7ccdc67":{"smartStyle":{"actions-bg":"#4094d4","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"7acb0ca5e167a14c84f0fdb84a45013d":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"4e22165241c0fd07a0399f501503b97f":{"smartStyle":{"actions-bg":"#2c2c2d","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"7c5e3d318d7731870b40809c84a71dae":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"4491942fbf48ded93f502e12b1049767":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"60a0c15bd46241548cbeb5489b1a842d":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"3320d038d55d10dfc4254abedf79beda":{"smartStyle":{"actions-bg":"#2c2c2d","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"ddc861235502edcbba8e6a0f32cd6eaa":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"cc80303ae206f3768f7b781eea295746":{"smartStyle":{"actions-bg":"#4094d4","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"12740d1680e6f24abad1425720304772":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"6a32a17a80dd11c59ffd27beec124d20":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"f2f9a64a77482bf8b6b58dfa2400002f":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"fe9c741b92579e704813ad06efd8a7bb":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#097DE6","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"023782c32e7d4df70811866340b3f922":{"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]!="92172910218857"){return;}
var iframe=document.getElementById("92172910218857");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);}})();