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 i92181484863869=new FrameBuilder("92181484863869",false,"","<html lang=\"\"><head><title>Ammonia Training Observation Survey<\/title><link rel=\"canonical\" href=\"https:\/\/form.jotform.co\/92181484863869\"\/><link rel=\"alternate\" type=\"application\/json+oembed\" href=\"https:\/\/www.jotform.com\/oembed\/?format=json&amp;url=http:\/\/www.jotform.com\/form\/92181484863869\" 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;92181484863869\" title=\"oEmbed Form\"\/><meta property=\"og:title\" content=\"Ammonia Training Observation Survey\"\/><meta property=\"og:url\" content=\"http:\/\/www.jotform.co\/form\/92181484863869\"\/><meta property=\"og:description\" content=\"\"\/><meta name=\"slack-app-id\" content=\"AHNMASS8M\"\/><link id=\"default-css\" type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/stylebuilder\/default.css?c9eb316c\"\/><link id=\"form-css\" type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/stylebuilder\/92181484863869.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:\/\/cdnjs.cloudflare.com\/ajax\/libs\/punycode\/1.4.1\/punycode.min.js\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/\/js\/pen\/toMarkdown.js?v=3.3.12585\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/\/js\/pen\/showdown.js?v=3.3.12585\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/static\/prototype.forms.js\" type=\"text\/javascript\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/static\/jotform.forms.js?3.3.12585\" type=\"text\/javascript\"><\/script>\n<script type=\"text\/javascript\">\n var jsTime = setInterval(function(){try{\n   JotForm.jsForm = true;\n\n   if (window.CardForm) { window.CardForm.jsForm = true; } \n\n\tJotForm.init(function(){\n\tJotForm.clearFieldOnHide=\"disable\";\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(\"32\", 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-32\");\nJotForm.setMatrixLayout(44, false);\n\n    if (window.CardForm && typeof window.CardForm.setInitialSelectionForMatrixSliders === 'function') {window.CardForm.setInitialSelectionForMatrixSliders(44);}\n  JotForm.setMatrixLayout(48, false);\n\n    if (window.CardForm && typeof window.CardForm.setInitialSelectionForMatrixSliders === 'function') {window.CardForm.setInitialSelectionForMatrixSliders(48);}\n  JotForm.setMatrixLayout(49, false);\n\n    if (window.CardForm && typeof window.CardForm.setInitialSelectionForMatrixSliders === 'function') {window.CardForm.setInitialSelectionForMatrixSliders(49);}\n  JotForm.setRatingLayout(46);\n\n        \n\t});\n\n   clearInterval(jsTime);\n }catch(e){}}, 1000);\n\n   JotForm.prepareCalculationsOnTheFly([null,null,null,{\"name\":\"trainingAccreditation\",\"qid\":\"3\",\"text\":\"Training Accreditation Level\",\"type\":\"control_radio\"},null,null,null,{\"name\":\"trainerBehavior\",\"qid\":\"7\",\"text\":\"Trainer Behavior\",\"type\":\"control_checkbox\"},null,null,null,null,{\"name\":\"trainerObserved\",\"qid\":\"12\",\"text\":\"Trainer Observed\",\"type\":\"control_dropdown\"},null,null,null,null,null,{\"name\":\"classroomEnvironment18\",\"qid\":\"18\",\"text\":\"Classroom Environment\",\"type\":\"control_checkbox\"},null,null,{\"name\":\"instructionalStrategies\",\"qid\":\"21\",\"text\":\"Instructional Strategies (Check if observed)\",\"type\":\"control_checkbox\"},{\"name\":\"checkFor22\",\"qid\":\"22\",\"text\":\"Check for Understanding\",\"type\":\"control_checkbox\"},null,{\"name\":\"studentBehaviorskills24\",\"qid\":\"24\",\"text\":\"Student Behavior\\u002FSkills Demonstrated\",\"type\":\"control_checkbox\"},null,{\"name\":\"email26\",\"qid\":\"26\",\"text\":\"E-mail\",\"type\":\"control_email\"},null,null,null,{\"description\":\"\",\"name\":\"observedBy30\",\"qid\":\"30\",\"text\":\"Observed by\",\"type\":\"control_fullname\"},{\"description\":\"\",\"name\":\"bloomsTaxonomy31\",\"qid\":\"31\",\"text\":\"Bloom's Taxonomy observed (Multiple choice allowed)\",\"type\":\"control_checkbox\"},{\"description\":\"\",\"name\":\"dateObserved\",\"qid\":\"32\",\"text\":\"Date Observed\",\"type\":\"control_datetime\"},{\"description\":\"\",\"name\":\"courseTitle\",\"qid\":\"33\",\"text\":\"Course Title Observed\",\"type\":\"control_radio\"},{\"description\":\"\",\"name\":\"lessonPlan34\",\"qid\":\"34\",\"text\":\"Lesson Plan Provided?\",\"type\":\"control_yesno\"},{\"description\":\"\",\"name\":\"whatIs\",\"qid\":\"35\",\"text\":\"What is the type of training?\",\"type\":\"control_checkbox\"},{\"description\":\"\",\"name\":\"whatCould36\",\"qid\":\"36\",\"subLabel\":\"\",\"text\":\"What could of been improved? What was done well?\",\"type\":\"control_textarea\"},{\"description\":\"\",\"name\":\"wereThe\",\"qid\":\"37\",\"text\":\"Were the course outcomes & strategies explained clearly?\",\"type\":\"control_yesno\"},{\"description\":\"\",\"name\":\"healthamp\",\"qid\":\"38\",\"text\":\"Health & Safety\",\"type\":\"control_checkbox\"},{\"description\":\"\",\"name\":\"wasPrior\",\"qid\":\"39\",\"text\":\"Was prior knowledge obtained by the trainer?\",\"type\":\"control_yesno\"},{\"description\":\"\",\"name\":\"doesThe40\",\"qid\":\"40\",\"text\":\"Does the course feel culturally inclusive and welcoming to diversity?\",\"type\":\"control_yesno\"},{\"description\":\"\",\"name\":\"howWas\",\"qid\":\"41\",\"text\":\"How was the introduction executed?\",\"type\":\"control_imagechoice\"},{\"description\":\"\",\"name\":\"trainersDepth\",\"qid\":\"42\",\"text\":\"Trainers depth of knowledge\",\"type\":\"control_checkbox\"},null,{\"description\":\"\",\"name\":\"trainerVerbal\",\"qid\":\"44\",\"text\":\"Trainer Verbal Performance\",\"type\":\"control_matrix\"},null,{\"description\":\"\",\"name\":\"overallPerformance\",\"qid\":\"46\",\"subLabel\":\"\",\"text\":\"Overall performance of the Trainer\",\"type\":\"control_rating\"},{\"description\":\"\",\"name\":\"additionalComments\",\"qid\":\"47\",\"subLabel\":\"\",\"text\":\"Additional Comments\",\"type\":\"control_textarea\"},{\"description\":\"\",\"name\":\"trainersEnthusiasm48\",\"qid\":\"48\",\"text\":\"Trainers Enthusiasm & Engagement  \",\"type\":\"control_matrix\"},{\"description\":\"\",\"name\":\"trainersPersonal\",\"qid\":\"49\",\"text\":\"Trainers Personal Presentation\",\"type\":\"control_matrix\"},{\"description\":\"\",\"name\":\"totalTime50\",\"qid\":\"50\",\"text\":\"Total Time of Observation\",\"type\":\"control_time\"},{\"description\":\"\",\"name\":\"wasLiteracy\",\"qid\":\"51\",\"text\":\"Was literacy and numeracy included within the course format? \",\"type\":\"control_yesno\"}]);\n   setTimeout(function() {\nJotForm.paymentExtrasOnTheFly([null,null,null,{\"name\":\"trainingAccreditation\",\"qid\":\"3\",\"text\":\"Training Accreditation Level\",\"type\":\"control_radio\"},null,null,null,{\"name\":\"trainerBehavior\",\"qid\":\"7\",\"text\":\"Trainer Behavior\",\"type\":\"control_checkbox\"},null,null,null,null,{\"name\":\"trainerObserved\",\"qid\":\"12\",\"text\":\"Trainer Observed\",\"type\":\"control_dropdown\"},null,null,null,null,null,{\"name\":\"classroomEnvironment18\",\"qid\":\"18\",\"text\":\"Classroom Environment\",\"type\":\"control_checkbox\"},null,null,{\"name\":\"instructionalStrategies\",\"qid\":\"21\",\"text\":\"Instructional Strategies (Check if observed)\",\"type\":\"control_checkbox\"},{\"name\":\"checkFor22\",\"qid\":\"22\",\"text\":\"Check for Understanding\",\"type\":\"control_checkbox\"},null,{\"name\":\"studentBehaviorskills24\",\"qid\":\"24\",\"text\":\"Student Behavior\\u002FSkills Demonstrated\",\"type\":\"control_checkbox\"},null,{\"name\":\"email26\",\"qid\":\"26\",\"text\":\"E-mail\",\"type\":\"control_email\"},null,null,null,{\"description\":\"\",\"name\":\"observedBy30\",\"qid\":\"30\",\"text\":\"Observed by\",\"type\":\"control_fullname\"},{\"description\":\"\",\"name\":\"bloomsTaxonomy31\",\"qid\":\"31\",\"text\":\"Bloom's Taxonomy observed (Multiple choice allowed)\",\"type\":\"control_checkbox\"},{\"description\":\"\",\"name\":\"dateObserved\",\"qid\":\"32\",\"text\":\"Date Observed\",\"type\":\"control_datetime\"},{\"description\":\"\",\"name\":\"courseTitle\",\"qid\":\"33\",\"text\":\"Course Title Observed\",\"type\":\"control_radio\"},{\"description\":\"\",\"name\":\"lessonPlan34\",\"qid\":\"34\",\"text\":\"Lesson Plan Provided?\",\"type\":\"control_yesno\"},{\"description\":\"\",\"name\":\"whatIs\",\"qid\":\"35\",\"text\":\"What is the type of training?\",\"type\":\"control_checkbox\"},{\"description\":\"\",\"name\":\"whatCould36\",\"qid\":\"36\",\"subLabel\":\"\",\"text\":\"What could of been improved? What was done well?\",\"type\":\"control_textarea\"},{\"description\":\"\",\"name\":\"wereThe\",\"qid\":\"37\",\"text\":\"Were the course outcomes & strategies explained clearly?\",\"type\":\"control_yesno\"},{\"description\":\"\",\"name\":\"healthamp\",\"qid\":\"38\",\"text\":\"Health & Safety\",\"type\":\"control_checkbox\"},{\"description\":\"\",\"name\":\"wasPrior\",\"qid\":\"39\",\"text\":\"Was prior knowledge obtained by the trainer?\",\"type\":\"control_yesno\"},{\"description\":\"\",\"name\":\"doesThe40\",\"qid\":\"40\",\"text\":\"Does the course feel culturally inclusive and welcoming to diversity?\",\"type\":\"control_yesno\"},{\"description\":\"\",\"name\":\"howWas\",\"qid\":\"41\",\"text\":\"How was the introduction executed?\",\"type\":\"control_imagechoice\"},{\"description\":\"\",\"name\":\"trainersDepth\",\"qid\":\"42\",\"text\":\"Trainers depth of knowledge\",\"type\":\"control_checkbox\"},null,{\"description\":\"\",\"name\":\"trainerVerbal\",\"qid\":\"44\",\"text\":\"Trainer Verbal Performance\",\"type\":\"control_matrix\"},null,{\"description\":\"\",\"name\":\"overallPerformance\",\"qid\":\"46\",\"subLabel\":\"\",\"text\":\"Overall performance of the Trainer\",\"type\":\"control_rating\"},{\"description\":\"\",\"name\":\"additionalComments\",\"qid\":\"47\",\"subLabel\":\"\",\"text\":\"Additional Comments\",\"type\":\"control_textarea\"},{\"description\":\"\",\"name\":\"trainersEnthusiasm48\",\"qid\":\"48\",\"text\":\"Trainers Enthusiasm & Engagement  \",\"type\":\"control_matrix\"},{\"description\":\"\",\"name\":\"trainersPersonal\",\"qid\":\"49\",\"text\":\"Trainers Personal Presentation\",\"type\":\"control_matrix\"},{\"description\":\"\",\"name\":\"totalTime50\",\"qid\":\"50\",\"text\":\"Total Time of Observation\",\"type\":\"control_time\"},{\"description\":\"\",\"name\":\"wasLiteracy\",\"qid\":\"51\",\"text\":\"Was literacy and numeracy included within the course format? \",\"type\":\"control_yesno\"}]);}, 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\"> 28<\/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-clock.svg \"><svg class=\"iconSvgFill\" stroke=\"none\"  version=\"1.0\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path d=\"M32,0C14.328,0,0,14.328,0,32s14.328,32,32,32s32-14.328,32-32S49.672,0,32,0z M32,60 C16.535,60,4,47.465,4,32S16.535,4,32,4s28,12.535,28,28S47.465,60,32,60z\"><\/path><path d=\"M56,30h-2.004c-1.105,0-2,0.895-2,2s0.895,2,2,2H56c1.105,0,2-0.895,2-2S57.105,30,56,30z\"><\/path><path d=\"M47.559,13.613l-1.418,1.418c-0.781,0.781-0.781,2.047,0,2.828c0.781,0.783,2.047,0.781,2.828,0 l1.418-1.418c0.781-0.781,0.781-2.045,0-2.828C49.605,12.832,48.34,12.832,47.559,13.613z\"><\/path><path d=\"M16.441,13.611c-0.781-0.781-2.043-0.781-2.828,0c-0.781,0.783-0.781,2.047,0,2.828l1.418,1.416 c0.781,0.783,2.047,0.785,2.828,0.002c0.783-0.779,0.781-2.047,0-2.826L16.441,13.611z\"><\/path><path d=\"M10.004,30l-2.008-0.002c-1.105,0.002-1.996,0.893-2,2c0.002,1.105,0.895,1.998,2,2L10,33.996 c1.105,0,2.004-0.891,2.002-1.998C12.004,30.893,11.107,29.998,10.004,30z\"><\/path><path d=\"M15.033,46.139l-1.422,1.418c-0.779,0.783-0.779,2.043,0.002,2.83c0.781,0.779,2.043,0.777,2.828,0 l1.414-1.42c0.781-0.781,0.789-2.045,0.004-2.828C17.078,45.355,15.812,45.355,15.033,46.139z\"><\/path><path d=\"M32,51.996c-1.107-0.002-2.002,0.893-2,2l-0.002,2.006c0.002,1.104,0.895,1.996,2.002,2 c1.105-0.002,1.996-0.896,2-2l-0.004-2.004C33.996,52.895,33.109,51.996,32,51.996z\"><\/path><path d=\"M48.967,46.143c-0.779-0.779-2.041-0.787-2.826-0.004c-0.785,0.781-0.785,2.047,0,2.828l1.416,1.42 c0.783,0.777,2.045,0.779,2.83-0.002c0.781-0.783,0.777-2.045,0-2.828L48.967,46.143z\"><\/path><path d=\"M37.4,34.572C37.773,33.789,38,32.924,38,32c0-2.607-1.676-4.805-4-5.633V10c0-1.105-0.895-2-2-2 s-2,0.895-2,2v16.367c-2.324,0.828-4,3.025-4,5.633c0,3.312,2.688,6,6,6c0.924,0,1.789-0.227,2.572-0.6l6.779,6.779 c0.783,0.781,2.039,0.773,2.822-0.01c0.781-0.781,0.742-2.084-0.041-2.865L37.4,34.572z M32,34c-1.105,0-2-0.895-2-2s0.895-2,2-2 s2,0.895,2,2S33.105,34,32,34z\"><\/path><\/g><\/svg><\/span><\/div><\/div><div id=\"header_welcomePage\" class=\"jfWelcome-header form-header\" data-component=\"header\" style=\"opacity:1\">Gauge Refrigeration Management - Classroom Observation Survey<\/div><div id=\"subHeader_welcomePage\" class=\"jfWelcome-description form-subHeader\">We will introduce you prior to starting the class.<\/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-clock.svg \"><svg class=\"iconSvgFill\" stroke=\"none\"  version=\"1.0\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 64 64\" enable-background=\"new 0 0 64 64\" xml:space=\"preserve\"><g><path d=\"M32,0C14.328,0,0,14.328,0,32s14.328,32,32,32s32-14.328,32-32S49.672,0,32,0z M32,60 C16.535,60,4,47.465,4,32S16.535,4,32,4s28,12.535,28,28S47.465,60,32,60z\"><\/path><path d=\"M56,30h-2.004c-1.105,0-2,0.895-2,2s0.895,2,2,2H56c1.105,0,2-0.895,2-2S57.105,30,56,30z\"><\/path><path d=\"M47.559,13.613l-1.418,1.418c-0.781,0.781-0.781,2.047,0,2.828c0.781,0.783,2.047,0.781,2.828,0 l1.418-1.418c0.781-0.781,0.781-2.045,0-2.828C49.605,12.832,48.34,12.832,47.559,13.613z\"><\/path><path d=\"M16.441,13.611c-0.781-0.781-2.043-0.781-2.828,0c-0.781,0.783-0.781,2.047,0,2.828l1.418,1.416 c0.781,0.783,2.047,0.785,2.828,0.002c0.783-0.779,0.781-2.047,0-2.826L16.441,13.611z\"><\/path><path d=\"M10.004,30l-2.008-0.002c-1.105,0.002-1.996,0.893-2,2c0.002,1.105,0.895,1.998,2,2L10,33.996 c1.105,0,2.004-0.891,2.002-1.998C12.004,30.893,11.107,29.998,10.004,30z\"><\/path><path d=\"M15.033,46.139l-1.422,1.418c-0.779,0.783-0.779,2.043,0.002,2.83c0.781,0.779,2.043,0.777,2.828,0 l1.414-1.42c0.781-0.781,0.789-2.045,0.004-2.828C17.078,45.355,15.812,45.355,15.033,46.139z\"><\/path><path d=\"M32,51.996c-1.107-0.002-2.002,0.893-2,2l-0.002,2.006c0.002,1.104,0.895,1.996,2.002,2 c1.105-0.002,1.996-0.896,2-2l-0.004-2.004C33.996,52.895,33.109,51.996,32,51.996z\"><\/path><path d=\"M48.967,46.143c-0.779-0.779-2.041-0.787-2.826-0.004c-0.785,0.781-0.785,2.047,0,2.828l1.416,1.42 c0.783,0.777,2.045,0.779,2.83-0.002c0.781-0.783,0.777-2.045,0-2.828L48.967,46.143z\"><\/path><path d=\"M37.4,34.572C37.773,33.789,38,32.924,38,32c0-2.607-1.676-4.805-4-5.633V10c0-1.105-0.895-2-2-2 s-2,0.895-2,2v16.367c-2.324,0.828-4,3.025-4,5.633c0,3.312,2.688,6,6,6c0.924,0,1.789-0.227,2.572-0.6l6.779,6.779 c0.783,0.781,2.039,0.773,2.822-0.01c0.781-0.781,0.742-2.084-0.041-2.865L37.4,34.572z M32,34c-1.105,0-2-0.895-2-2s0.895-2,2-2 s2,0.895,2,2S33.105,34,32,34z\"><\/path><\/g><\/svg><\/span><\/div><form role=\"main\" class=\"jotform-form\" id=\"92181484863869\" name=\"form_92181484863869\" action=\"https:\/\/submit.jotform.co\/submit\/92181484863869\/\" method=\"post\"><input type=\"hidden\" name=\"formID\" value=\"92181484863869\"\/><ul class=\"jfForm-all form-section page-section form-all\" id=\"cardAnimationWrapper\"><li class=\"form-line\" data-type=\"control_dropdown\" id=\"id_12\"><div id=\"cid_12\" 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_12\" class=\"jfQuestion-label isLeftAlign\" id=\"label_12\"><span class=\"jsQuestionLabelContainer\">Trainer Observed<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_12_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\"><div class=\"jfField\" aria-hidden=\"false\"><select name=\"q12_trainerObserved\" data-component=\"dropdown\" required=\"\" id=\"input_12\" class=\"form-dropdown validate[required]\"><option value=\"\"><\/option><option value=\"Padraic Durham \">Padraic Durham <\/option><option value=\"Glenville Stiles\">Glenville Stiles<\/option><option value=\"Glenn Marsh\">Glenn Marsh<\/option><option value=\"Deano Kaire\">Deano Kaire<\/option><option value=\"Kim Durham \">Kim Durham <\/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-12\" class=\"jfDropdown-optionListWrapper forDrawer\" aria-hidden=\"true\"><ul name=\"q12_trainerObserved\" data-component=\"dropdown\" required=\"\" class=\"jfDropdown-optionList form-dropdown\"><li style=\"height:36px\" data-value=\"\" class=\"jfDropdown-optionListItem\"><\/li><li data-value=\"Padraic Durham \" class=\"jfDropdown-optionListItem\">Padraic Durham <\/li><li data-value=\"Glenville Stiles\" class=\"jfDropdown-optionListItem\">Glenville Stiles<\/li><li data-value=\"Glenn Marsh\" class=\"jfDropdown-optionListItem\">Glenn Marsh<\/li><li data-value=\"Deano Kaire\" class=\"jfDropdown-optionListItem\">Deano Kaire<\/li><li data-value=\"Kim Durham \" class=\"jfDropdown-optionListItem\">Kim Durham <\/li><\/ul><\/div><\/div><label class=\"jfField-sublabel\" for=\"input_12\"><\/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_radio\" id=\"id_33\"><div id=\"cid_33\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_radio\"><div class=\"jfCard-index\"><div>2<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_33\" class=\"jfQuestion-label isLeftAlign\" id=\"label_33\"><span class=\"jsQuestionLabelContainer\">Course Title Observed<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_33_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-multiple-column\" data-columncount=\"2\" data-component=\"radio\"><div class=\"jfField form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio validate[required]\" name=\"q33_courseTitle\" value=\"Introduction to Ammonia\" id=\"input_33_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\">Introduction to Ammonia<\/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=\"q33_courseTitle\" value=\"Ammonia Awareness One Day\" id=\"input_33_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\">Ammonia Awareness One Day<\/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=\"q33_courseTitle\" value=\"Ammonia Operator\" id=\"input_33_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\">Ammonia Operator<\/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=\"q33_courseTitle\" value=\"Ammonia Technician\" id=\"input_33_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\">Ammonia Technician<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio validate[required]\" name=\"q33_courseTitle\" value=\"Emergency Management\" id=\"input_33_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\">Emergency Management<\/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_3\"><div id=\"cid_3\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_radio\"><div class=\"jfCard-index\"><div>3<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_3\" class=\"jfQuestion-label isLeftAlign\" id=\"label_3\"><span class=\"jsQuestionLabelContainer\">Training Accreditation Level<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_3_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=\"q3_trainingAccreditation\" value=\"5\" id=\"input_3_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\">5<\/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=\"q3_trainingAccreditation\" value=\"4\" id=\"input_3_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\">4<\/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=\"q3_trainingAccreditation\" value=\"3\" id=\"input_3_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\">3<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio validate[required]\" name=\"q3_trainingAccreditation\" value=\"2\" id=\"input_3_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\">2<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withoutImage\"><input type=\"radio\" class=\"jfRadio-input form-radio validate[required]\" name=\"q3_trainingAccreditation\" value=\"1\" id=\"input_3_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\">1<\/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_yesno\" id=\"id_34\"><div id=\"cid_34\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_yesno\"><div class=\"jfCard-index\"><div>4<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_34\" class=\"jfQuestion-label isLeftAlign\" id=\"label_34\"><span class=\"jsQuestionLabelContainer\">Lesson Plan Provided?<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_34_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-wrapper-react=\"true\"><div class=\"jfField\"><label class=\"jfYesno\"><input type=\"radio\" class=\"form-radio validate[required] jsToggle\" value=\"YES\" id=\"input_input_34_0\" name=\"q34_lessonPlan34\"\/><span class=\"jfYesno-label\">YES<\/span><\/label><label class=\"jfYesno\"><input type=\"radio\" class=\"form-radio validate[required] jsToggle\" value=\"NO\" id=\"input_input_34_1\" name=\"q34_lessonPlan34\"\/><span class=\"jfYesno-label\">NO<\/span><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_checkbox\" id=\"id_35\"><div id=\"cid_35\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_checkbox\"><div class=\"jfCard-index\"><div>5<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_35_0\" class=\"jfQuestion-label isLeftAlign\" id=\"label_35\"><span class=\"jsQuestionLabelContainer\">What is the type of training?<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_35_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-multiple-column\" data-columncount=\"2\" data-component=\"checkbox\"><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q35_whatIs[]\" value=\"Theory\" id=\"input_35_0\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Theory<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q35_whatIs[]\" value=\"Practical\" id=\"input_35_1\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Practical<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q35_whatIs[]\" value=\"Presentation\" id=\"input_35_2\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Presentation<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q35_whatIs[]\" value=\"Demonstration\" id=\"input_35_3\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Demonstration<\/span><\/div><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_datetime\" id=\"id_32\"><div id=\"cid_32\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_datetime\"><div class=\"jfCard-index\"><div>6<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"lite_mode_32\" class=\"jfQuestion-label isLeftAlign\" id=\"label_32\"><span class=\"jsQuestionLabelContainer\">Date Observed<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_32_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_32\" 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_32\" id=\"sublabel_input_32\">Date<\/label><\/div><div style=\"display:none\"><div class=\"jfField  isHidden cf-valid-hidden\" data-type=\"year\"><input type=\"tel\" id=\"year_32\" name=\"q32_dateObserved[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_32_description\"\/><label class=\"jfField-sublabel\" for=\"year_32\" id=\"sublabel_32_year\">Year<\/label><\/div><div class=\"jfField  isHidden cf-valid-hidden\" data-type=\"month\"><input type=\"tel\" id=\"month_32\" name=\"q32_dateObserved[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_32_description\"\/><label class=\"jfField-sublabel\" for=\"month_32\" id=\"sublabel_32_month\">Month<\/label><\/div><div class=\"jfField  isHidden cf-valid-hidden\" data-type=\"day\"><input type=\"tel\" id=\"day_32\" name=\"q32_dateObserved[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_32_description\"\/><label class=\"jfField-sublabel\" for=\"day_32\" id=\"sublabel_32_day\">Day<\/label><\/div><\/div><div class=\"jfField  isHidden cf-valid-hidden\"><input type=\"text\" id=\"lite_mode_32\" class=\"form-textbox validate[required, limitDate, validateLiteDate] jfInput-input hasSublabel\" size=\"12\" value=\"\" maxLength=\"12\" data-maxlength=\"12\" data-format=\"yyyymmdd\" data-seperator=\"-\" data-age=\"\" required=\"\" aria-required=\"true\" aria-describedby=\"lite_mode_32_description\"\/><label class=\"jfField-sublabel\" for=\"lite_mode_32\" id=\"sublabel_32_litemode\">Date<\/label><\/div><img alt=\"Pick a Date\" id=\"input_32_pick\" style=\"display:none;vertical-align:middle\" data-component=\"datetime\"\/><div class=\"jfCalendar-wrapper\"><div id=\"calendar-container-32\" 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_fullname\" id=\"id_30\" data-compound-hint=\"\"><div id=\"cid_30\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_fullname\"><div class=\"jfCard-index\"><div>7<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"first_30\" class=\"jfQuestion-label isLeftAlign\" id=\"label_30\"><span class=\"jsQuestionLabelContainer\">Observed by<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_30_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-wrapper-react=\"true\"><div class=\"jfField\" data-type=\"first\"><input type=\"text\" id=\"first_30\" name=\"q30_observedBy30[first]\" class=\"form-textbox validate[required] forFullname jfInput-input hasSublabel\" autoComplete=\"fname\" size=\"10\" value=\"\" data-component=\"first\" required=\"\" aria-required=\"true\" aria-describedby=\"first_30_description\" aria-labelledby=\"label_30 sublabel_30_first\"\/><label class=\"jfField-sublabel\" for=\"first_30\" id=\"sublabel_30_first\">First Name<\/label><\/div><div class=\"jfField\" data-type=\"last\"><input type=\"text\" id=\"last_30\" name=\"q30_observedBy30[last]\" class=\"form-textbox validate[required] forFullname jfInput-input hasSublabel\" autoComplete=\"lname\" size=\"15\" value=\"\" data-component=\"last\" required=\"\" aria-required=\"true\" aria-describedby=\"last_30_description\" aria-labelledby=\"label_30 sublabel_30_last\"\/><label class=\"jfField-sublabel\" for=\"last_30\" id=\"sublabel_30_last\">Last Name<\/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_email\" id=\"id_26\"><div id=\"cid_26\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_email\"><div class=\"jfCard-index\"><div>8<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_26\" class=\"jfQuestion-label isLeftAlign\" id=\"label_26\"><span class=\"jsQuestionLabelContainer\">E-mail<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_26_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields questionMode\"><div class=\"jfField\" data-type=\"email\"><input type=\"email\" id=\"input_26\" name=\"q26_email26\" class=\"form-textbox validate[required, Email] forEmail jfInput-input\" autoComplete=\"email\" size=\"30\" value=\"\" placeholder=\"ex: myname@example.com\" data-component=\"email\" required=\"\" aria-required=\"true\" aria-describedby=\"input_26_description\"\/><label class=\"jfField-sublabel\" for=\"input_26\"><\/label><div class=\"jfCardTooltip js-tooltipContainer\"><div class=\"js-tooltipMessageContainer-info\"><\/div><div class=\"js-tooltipMessageContainer-error\"><\/div><div class=\"jfCardTooltip-close js-tooltipCloseButton\"><span class=\"iconSvg  icon_error \"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 326 326\"><g data-name=\"Layer 2\"><g data-name=\"Layer 1\"><path class=\"fail-outer\" d=\"M163,0C73.12,0,0,73.12,0,163S73.12,326,163,326s163-73.12,163-163S252.88,0,163,0Z\"><\/path><path class=\"fail-inner\" d=\"M227.6,98.4a14.75,14.75,0,0,0-20.86,0L163,142.14,119.26,98.4A14.75,14.75,0,1,0,98.4,119.26L142.14,163,98.4,206.74a14.75,14.75,0,1,0,20.86,20.86L163,183.86l43.74,43.74a14.75,14.75,0,1,0,20.86-20.86L183.86,163l43.74-43.74A14.75,14.75,0,0,0,227.6,98.4Z\"><\/path><\/g><\/g><\/svg><\/span><\/div><\/div><\/div><div class=\"jfEmailVerify-loading\"><span class=\"loadingDot\"><\/span><span class=\"loadingDot isD2\"><\/span><span class=\"loadingDot isD3\"><\/span><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_checkbox\" id=\"id_18\"><div id=\"cid_18\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_checkbox\"><div class=\"jfCard-index\"><div>9<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_18_0\" class=\"jfQuestion-label isLeftAlign\" id=\"label_18\"><span class=\"jsQuestionLabelContainer\">Classroom Environment<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_18_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-single-column\" data-component=\"checkbox\"><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q18_classroomEnvironment18[]\" value=\"Classroom is organised and tidy\" id=\"input_18_0\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Classroom is organised and tidy<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q18_classroomEnvironment18[]\" value=\"Physical set up satisfactory\" id=\"input_18_1\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Physical set up satisfactory<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q18_classroomEnvironment18[]\" value=\"Hand outs \/ Course manuals distributed\" id=\"input_18_2\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Hand outs \/ Course manuals distributed<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q18_classroomEnvironment18[]\" value=\"Equipment ready prepared in advance\" id=\"input_18_3\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Equipment ready prepared in advance<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q18_classroomEnvironment18[]\" value=\"External distractions addressed, temperature managed\" id=\"input_18_4\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">External distractions addressed, temperature managed<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q18_classroomEnvironment18[]\" value=\"Teaching aids \/ Props prepared\" id=\"input_18_5\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Teaching aids \/ Props prepared<\/span><\/div><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_imagechoice\" id=\"id_41\"><div id=\"cid_41\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_imagechoice\"><div class=\"jfCard-index\"><div>10<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_41\" class=\"jfQuestion-label isLeftAlign\" id=\"label_41\"><span class=\"jsQuestionLabelContainer\">How was the introduction executed?<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_41_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 validate[required]\" name=\"q41_howWas[]\" value=\"Hard to watch|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_down.5d4a73d7b29432.23871709.png\" id=\"input_41_0\" required=\"\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_down.5d4a73d7b29432.23871709.png&quot;)\"><img alt=\"Hard to watch\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_down.5d4a73d7b29432.23871709.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\">Hard to watch<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withImage \"><input type=\"radio\" class=\"jfRadio-input form-radio validate[required]\" name=\"q41_howWas[]\" value=\"Average - see comments section|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/thought.5d4a73ec131ac0.62365132.png\" id=\"input_41_1\" required=\"\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/thought.5d4a73ec131ac0.62365132.png&quot;)\"><img alt=\"Average - see comments section\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/thought.5d4a73ec131ac0.62365132.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\">Average - see comments section<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withImage \"><input type=\"radio\" class=\"jfRadio-input form-radio validate[required]\" name=\"q41_howWas[]\" value=\"Satisfactory|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_up.5d4a73bfe03b66.48533595.png\" id=\"input_41_2\" required=\"\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_up.5d4a73bfe03b66.48533595.png&quot;)\"><img alt=\"Satisfactory\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/hand_thumb_up.5d4a73bfe03b66.48533595.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\">Satisfactory<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-radio-item\"><label class=\"jfRadio withImage \"><input type=\"radio\" class=\"jfRadio-input form-radio validate[required]\" name=\"q41_howWas[]\" value=\"Brilliant|https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/genius.5d4a742c329377.32415215.png\" id=\"input_41_3\" required=\"\"\/><div class=\"jfRadio-label\"><div class=\"jfRadio-image\" style=\"background-image:url(&quot;https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/genius.5d4a742c329377.32415215.png&quot;)\"><img alt=\"Brilliant\" src=\"https:\/\/www.jotform.com\/uploads\/GaugeRef\/form_files\/genius.5d4a742c329377.32415215.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\">Brilliant<\/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_checkbox\" id=\"id_38\"><div id=\"cid_38\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_checkbox\"><div class=\"jfCard-index\"><div>11<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_38_0\" class=\"jfQuestion-label isLeftAlign\" id=\"label_38\"><span class=\"jsQuestionLabelContainer\">Health & Safety<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_38_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-single-column\" data-component=\"checkbox\"><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q38_healthamp[]\" value=\"Were the restrooms identified?\" id=\"input_38_0\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Were the restrooms identified?<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q38_healthamp[]\" value=\"Was the refreshment area identified?\" id=\"input_38_1\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Was the refreshment area identified?<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q38_healthamp[]\" value=\"Were the the Emergency Procedures explained\" id=\"input_38_2\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Were the the Emergency Procedures explained<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q38_healthamp[]\" value=\"Was there a PPE check ?\" id=\"input_38_3\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Was there a PPE check ?<\/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_yesno\" id=\"id_37\"><div id=\"cid_37\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_yesno\"><div class=\"jfCard-index\"><div>12<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_37\" class=\"jfQuestion-label isLeftAlign\" id=\"label_37\"><span class=\"jsQuestionLabelContainer\">Were the course outcomes & strategies explained clearly?<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_37_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-wrapper-react=\"true\"><div class=\"jfField\"><label class=\"jfYesno\"><input type=\"radio\" class=\"form-radio validate[required] jsToggle\" value=\"YES\" id=\"input_input_37_0\" name=\"q37_wereThe\"\/><span class=\"jfYesno-label\">YES<\/span><\/label><label class=\"jfYesno\"><input type=\"radio\" class=\"form-radio validate[required] jsToggle\" value=\"NO\" id=\"input_input_37_1\" name=\"q37_wereThe\"\/><span class=\"jfYesno-label\">NO<\/span><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_yesno\" id=\"id_39\"><div id=\"cid_39\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_yesno\"><div class=\"jfCard-index\"><div>13<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_39\" class=\"jfQuestion-label isLeftAlign\" id=\"label_39\"><span class=\"jsQuestionLabelContainer\">Was prior knowledge obtained by the trainer?<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_39_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-wrapper-react=\"true\"><div class=\"jfField\"><label class=\"jfYesno\"><input type=\"radio\" class=\"form-radio validate[required] jsToggle\" value=\"YES\" id=\"input_input_39_0\" name=\"q39_wasPrior\"\/><span class=\"jfYesno-label\">YES<\/span><\/label><label class=\"jfYesno\"><input type=\"radio\" class=\"form-radio validate[required] jsToggle\" value=\"NO\" id=\"input_input_39_1\" name=\"q39_wasPrior\"\/><span class=\"jfYesno-label\">NO<\/span><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_yesno\" id=\"id_40\"><div id=\"cid_40\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_yesno\"><div class=\"jfCard-index\"><div>14<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_40\" class=\"jfQuestion-label isLeftAlign\" id=\"label_40\"><span class=\"jsQuestionLabelContainer\">Does the course feel culturally inclusive and welcoming to diversity?<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_40_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-wrapper-react=\"true\"><div class=\"jfField\"><label class=\"jfYesno\"><input type=\"radio\" class=\"form-radio validate[required] jsToggle\" value=\"YES\" id=\"input_input_40_0\" name=\"q40_doesThe40\"\/><span class=\"jfYesno-label\">YES<\/span><\/label><label class=\"jfYesno\"><input type=\"radio\" class=\"form-radio validate[required] jsToggle\" value=\"NO\" id=\"input_input_40_1\" name=\"q40_doesThe40\"\/><span class=\"jfYesno-label\">NO<\/span><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_yesno\" id=\"id_51\"><div id=\"cid_51\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_yesno\"><div class=\"jfCard-index\"><div>15<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_51\" class=\"jfQuestion-label isLeftAlign\" id=\"label_51\"><span class=\"jsQuestionLabelContainer\">Was literacy and numeracy included within the course format? <\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_51_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-wrapper-react=\"true\"><div class=\"jfField\"><label class=\"jfYesno\"><input type=\"radio\" class=\"form-radio validate[required] jsToggle\" value=\"YES\" id=\"input_input_51_0\" name=\"q51_wasLiteracy\"\/><span class=\"jfYesno-label\">YES<\/span><\/label><label class=\"jfYesno\"><input type=\"radio\" class=\"form-radio validate[required] jsToggle\" value=\"NO\" id=\"input_input_51_1\" name=\"q51_wasLiteracy\"\/><span class=\"jfYesno-label\">NO<\/span><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_textarea\" id=\"id_36\"><div id=\"cid_36\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_textarea\"><div class=\"jfCard-index\"><div>16<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen\"><\/div><label for=\"input_36\" class=\"jfQuestion-label isLeftAlign\" id=\"label_36\"><span class=\"jsQuestionLabelContainer\">What could of been improved? What was done well?<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_36_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-component=\"textarea\" data-render-type=\"mde\"><div class=\"jfField\"><textarea id=\"input_36\" name=\"q36_whatCould36\" placeholder=\"Type here...\" class=\"mdInput form-textarea validate[required]\"><\/textarea><div id=\"input_36_editor\" class=\"jfTextarea-editor\" contenteditable=\"true\" data-placeholder=\"Type here...\"><\/div><div class=\"jfTextarea-infoSpan isHidden\"><span class=\"jfTextarea-limitSpan\"><\/span><span class=\"jfTextarea-modeSpan\"><\/span><\/div><\/div><\/div><\/div><div class=\"jfToolbar\" id=\"input_36_toolbar\"><div id=\"input_36_fontSize\" data-command=\"heading\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-fontSize \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>TextSize<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"TextSize\" fill=\"#4A4A4A\"><g id=\"Group-2\" transform=\"translate(3.000000, 6.000000)\"><g id=\"type\" fill-rule=\"nonzero\"><path d=\"M2.34756098,2.5 L16.902439,2.5 L16.902439,4.25 C16.902439,4.94035594 17.4279584,5.5 18.0762195,5.5 C18.7244806,5.5 19.25,4.94035594 19.25,4.25 L19.25,1.25 C19.25,0.559644063 18.7244806,0 18.0762195,0 L1.17378049,0 C0.525519425,0 0,0.559644063 0,1.25 L0,4.25 C0,4.94035594 0.525519425,5.5 1.17378049,5.5 C1.82204155,5.5 2.34756098,4.94035594 2.34756098,4.25 L2.34756098,2.5 Z\" id=\"Shape\"><\/path><path d=\"M5.25,20.5 L13.25,20.5 C13.9403559,20.5 14.5,19.9403559 14.5,19.25 C14.5,18.5596441 13.9403559,18 13.25,18 L5.25,18 C4.55964406,18 4,18.5596441 4,19.25 C4,19.9403559 4.55964406,20.5 5.25,20.5 Z\" id=\"Shape\"><\/path><path d=\"M8,1.25 L8,19.25 C8,19.9403559 8.55964406,20.5 9.25,20.5 C9.94035594,20.5 10.5,19.9403559 10.5,19.25 L10.5,1.25 C10.5,0.559644063 9.94035594,0 9.25,0 C8.55964406,0 8,0.559644063 8,1.25 Z\" id=\"Shape\"><\/path><\/g><g id=\"Group\" transform=\"translate(15.000000, 8.700000)\"><path d=\"M1.4609612,1.70000076 L10.5189207,1.70000076 L10.5390388,2.45720466 C10.5390388,2.75698225 10.8660861,3 11.2695194,3 C11.6729527,3 12,2.75698225 12,2.45720466 L11.9798819,0.542795343 C11.9798819,0.243017753 11.6528346,0 11.2494013,0 L0.730480602,0 C0.327047306,0 0,0.243017753 0,0.542795343 L0.0201181228,2.45720466 C0.0201181228,2.75698225 0.347165428,3 0.750598725,3 C1.15403202,3 1.48107933,2.75698225 1.48107933,2.45720466 L1.4609612,1.70000076 Z\" id=\"Shape\" fill-rule=\"nonzero\"><\/path><path d=\"M5,1.6097561 L5,10.3902439 C5,10.7270029 5.44771525,11 6,11 C6.55228475,11 7,10.7270029 7,10.3902439 L7,1.6097561 C7,1.2729971 6.55228475,1 6,1 C5.44771525,1 5,1.2729971 5,1.6097561 Z\" id=\"Shape\" fill-rule=\"nonzero\"><\/path><rect id=\"Rectangle-12\" x=\"2\" y=\"10\" width=\"8\" height=\"1.79999995\" rx=\"0.899999976\"><\/rect><\/g><\/g><\/g><\/g><\/svg><\/span><\/div><ul class=\"jfToolbar-select jfToolbar-select-heading\" data-command=\"heading\"><li data-value=\"6\" style=\"font-size:0.67em\" data-selected=\"true\">Small<\/li><li data-value=\"5\" style=\"font-size:0.83em\" data-selected=\"false\">Normal<\/li><li data-value=\"3\" style=\"font-size:1.17em\" data-selected=\"false\">Large<\/li><li data-value=\"1\" style=\"font-size:2em\" data-selected=\"false\">Huge<\/li><\/ul><\/div><div id=\"input_36_bold\" data-command=\"bold\" class=\"jfToolbar-item breakBefore forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-bold \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Bold<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Bold\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"bold\" transform=\"translate(9.000000, 6.000000)\"><path d=\"M2.47159091,2.5 L2.47159091,8.75 L8.65056818,8.75 C9.96967752,8.75 11.1221591,7.38998343 11.1221591,5.625 C11.1221591,3.86001657 9.96967752,2.5 8.65056818,2.5 L2.47159091,2.5 Z M1.23579545,0 L8.65056818,0 C11.4265247,0 13.59375,2.55749187 13.59375,5.625 C13.59375,8.69250813 11.4265247,11.25 8.65056818,11.25 L1.23579545,11.25 C0.553284471,11.25 0,10.6903559 0,10 L0,1.25 C0,0.559644063 0.553284471,0 1.23579545,0 Z\" id=\"Shape\"><\/path><path d=\"M2.5,11.40625 L2.5,17.65625 L9.90384615,17.65625 C11.2992605,17.65625 12.5,16.2904088 12.5,14.53125 C12.5,12.7720912 11.2992605,11.40625 9.90384615,11.40625 L2.5,11.40625 Z M1.25,8.90625 L9.90384615,8.90625 C12.7567761,8.90625 15,11.4579172 15,14.53125 C15,17.6045828 12.7567761,20.15625 9.90384615,20.15625 L1.25,20.15625 C0.559644063,20.15625 0,19.5966059 0,18.90625 L0,10.15625 C0,9.46589406 0.559644063,8.90625 1.25,8.90625 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_36_italic\" data-command=\"italic\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-italic \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Italic<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Italic\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"italic\" transform=\"translate(9.000000, 6.000000)\"><path d=\"M13.5882353,0 L4.94117647,0 C4.25894237,0 3.70588235,0.553060015 3.70588235,1.23529412 C3.70588235,1.91752822 4.25894237,2.47058824 4.94117647,2.47058824 L13.5882353,2.47058824 C14.2704694,2.47058824 14.8235294,1.91752822 14.8235294,1.23529412 C14.8235294,0.553060015 14.2704694,0 13.5882353,0 Z\" id=\"Shape\"><\/path><path d=\"M9.88235294,17.2941176 L1.23529412,17.2941176 C0.553060015,17.2941176 0,17.8471777 0,18.5294118 C0,19.2116459 0.553060015,19.7647059 1.23529412,19.7647059 L9.88235294,19.7647059 C10.564587,19.7647059 11.1176471,19.2116459 11.1176471,18.5294118 C11.1176471,17.8471777 10.564587,17.2941176 9.88235294,17.2941176 Z\" id=\"Shape\"><\/path><path d=\"M8.69458806,0.895932724 L3.75341159,18.1900504 C3.56598747,18.8460348 3.94583065,19.5297525 4.60181508,19.7171766 C5.2577995,19.9046008 5.94151722,19.5247576 6.12894135,18.8687732 L11.0701178,1.57465551 C11.2575419,0.918671083 10.8776988,0.234953363 10.2217143,0.0475292411 C9.56572991,-0.139894881 8.88201219,0.239948297 8.69458806,0.895932724 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_36_underline\" data-command=\"underline\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-underline \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Underline<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Underline\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"underline\" transform=\"translate(7.000000, 5.000000)\"><path d=\"M2.15909091,1.29545455 L2.15909091,8.27097902 C2.15909091,12.2813233 5.34161889,15.5454545 9.28409091,15.5454545 C13.2265629,15.5454545 16.4090909,12.2813233 16.4090909,8.27097902 L16.4090909,1.29545455 C16.4090909,0.579994756 15.8290962,0 15.1136364,0 C14.3981766,0 13.8181818,0.579994756 13.8181818,1.29545455 L13.8181818,8.27097902 C13.8181818,10.864879 11.780757,12.9545455 9.28409091,12.9545455 C6.78742483,12.9545455 4.75,10.864879 4.75,8.27097902 L4.75,1.29545455 C4.75,0.579994756 4.17000524,0 3.45454545,0 C2.73908566,0 2.15909091,0.579994756 2.15909091,1.29545455 Z\" id=\"Shape\"><\/path><path d=\"M1.29545455,20.7272727 L16.8409091,20.7272727 C17.5563689,20.7272727 18.1363636,20.147278 18.1363636,19.4318182 C18.1363636,18.7163584 17.5563689,18.1363636 16.8409091,18.1363636 L1.29545455,18.1363636 C0.579994756,18.1363636 0,18.7163584 0,19.4318182 C0,20.147278 0.579994756,20.7272727 1.29545455,20.7272727 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_36_createLink\" data-command=\"createLink\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-createLink \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Underline Copy<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Underline-Copy\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"link\" transform=\"translate(6.000000, 6.000000)\"><path d=\"M8.12250978,12.0615096 C9.11153092,13.434589 10.6344227,14.2986277 12.2960505,14.422209 C13.960001,14.5459629 15.5906008,13.9142984 16.7617681,12.6976288 L19.3990078,9.95891998 C21.5549175,7.64114792 21.5244655,4.00194322 19.3454622,1.73910167 C17.139984,-0.551233494 13.5527271,-0.583605157 11.3086344,1.66720454 L9.78321622,3.24190674 C9.27889786,3.76258411 9.29215946,4.59350732 9.81283683,5.09782568 C10.3335142,5.60214404 11.1644374,5.58888244 11.6687558,5.06820507 L13.1808677,3.50704343 C14.3730084,2.31152892 16.2689674,2.32863819 17.4546094,3.55989839 C18.6667264,4.81865222 18.683922,6.87363295 17.492498,8.15466767 L14.8707504,10.8770033 C14.2384113,11.5339102 13.371049,11.8699104 12.4907435,11.804439 C11.6081154,11.7387948 10.7913272,11.275376 10.2524902,10.527297 C9.82882911,9.93911912 9.00857156,9.80575194 8.4203937,10.2294131 C7.83221584,10.6530742 7.69884867,11.4733317 8.12250978,12.0615096 Z\" id=\"Shape\"><\/path><path d=\"M12.8774902,8.93849043 C11.8884691,7.56541104 10.3655773,6.70137225 8.70394945,6.57779104 C7.03999899,6.45403709 5.40939918,7.08570163 4.23823187,8.30237124 L1.60099221,11.04108 C-0.554917535,13.3588521 -0.524465488,16.9980568 1.65453778,19.2608983 C3.86001604,21.5512335 7.4472729,21.5836052 9.69136555,19.3327955 L11.2106491,17.7553425 C11.7134482,17.2331979 11.6977656,16.4023168 11.175621,15.8995177 C10.6534764,15.3967186 9.82259538,15.4124012 9.31979625,15.9345457 L7.81647565,17.4957074 C6.62699163,18.6884711 4.7310326,18.6713618 3.54539059,17.4401016 C2.33327358,16.1813478 2.31607797,14.1263671 3.50750204,12.8453323 L6.12924958,10.1229967 C6.76158874,9.46608985 7.62895105,9.13008955 8.50925653,9.19556102 C9.39188462,9.26120523 10.2086728,9.72462402 10.7475098,10.472703 C11.1711709,11.0608809 11.9914284,11.1942481 12.5796063,10.7705869 C13.1677842,10.3469258 13.3011513,9.52666829 12.8774902,8.93849043 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><div class=\"jfToolbar-modal forUrl\"><input type=\"url\" id=\"modalLinkUrl\" class=\"jfModal-input jfModal-modalLinkUrl\" data-disable-enter-event=\"true\" data-disable-escape-event=\"true\" placeholder=\"Enter URL\" aria-label=\"link url input\"\/><div class=\"modal-btn\">Ok<\/div><\/div><\/div><div id=\"input_36_ul\" data-command=\"insertUnorderedList\" class=\"jfToolbar-item breakBefore forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-ul \"><svg viewBox=\"0 0 18 18\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>NumberList Copy 2<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"NumberList-Copy-2\" fill=\"#4A4A4A\"><rect id=\"Rectangle-8\" x=\"6\" y=\"2\" width=\"9\" height=\"2\" rx=\"1\"><\/rect><rect id=\"Rectangle-8-Copy\" x=\"6\" y=\"7\" width=\"9\" height=\"2\" rx=\"1\"><\/rect><rect id=\"Rectangle-8-Copy-2\" x=\"6\" y=\"12\" width=\"9\" height=\"2\" rx=\"1\"><\/rect><circle id=\"Oval-2\" cx=\"3\" cy=\"3\" r=\"1\"><\/circle><circle id=\"Oval-2-Copy\" cx=\"3\" cy=\"8\" r=\"1\"><\/circle><circle id=\"Oval-2-Copy-2\" cx=\"3\" cy=\"13\" r=\"1\"><\/circle><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_36_ol\" data-command=\"insertOrderedList\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-ol \"><svg viewBox=\"0 0 18 18\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"NumberList-Copy\" fill=\"#4A4A4A\"><g id=\"Group\" transform=\"translate(1.000000, 1.000000)\"><path d=\"M0,11 L2,11 L2,11.5 L1,11.5 L1,12.5 L2,12.5 L2,13 L0,13 L0,14 L3,14 L3,10 L0,10 L0,11 Z M0,6 L1.8,6 L0,8.1 L0,9 L3,9 L3,8 L1.2,8 L3,5.9 L3,5 L0,5 L0,6 Z M1,4 L2,4 L2,0 L0,0 L0,1 L1,1 L1,4 Z\" id=\"Shape\"><\/path><\/g><rect id=\"Rectangle-8\" x=\"6\" y=\"2\" width=\"9\" height=\"2\"><\/rect><rect id=\"Rectangle-8-Copy\" x=\"6\" y=\"7\" width=\"9\" height=\"2\"><\/rect><rect id=\"Rectangle-8-Copy-2\" x=\"6\" y=\"12\" width=\"9\" height=\"2\"><\/rect><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_36_quote\" data-command=\"formatBlock\" class=\"jfToolbar-item breakBefore forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-quote \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>quote<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"quote\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"Group-4\" transform=\"translate(10.000000, 11.000000)\"><path d=\"M9.68229167,9.75 L10.4783857,9.75 L10.4783857,9.75 C10.8611857,9.75 11.2103962,9.53147077 11.3777535,9.18719271 L12.8993679,6.0570147 L12.8993679,6.0570147 C12.9655901,5.92078603 13,5.77129358 13,5.61982199 L13,1 L13,1 C13,0.44771525 12.5522847,1.20591542e-16 12,2.22044605e-16 L8.3125,0 L8.3125,0 C7.76021525,1.01453063e-16 7.3125,0.44771525 7.3125,1 L7.3125,4.85 L7.3125,4.85 C7.3125,5.40228475 7.76021525,5.85 8.3125,5.85 L8.734375,5.85 L8.734375,5.85 C9.22578821,5.85 9.62415732,6.24836912 9.62415732,6.73978232 C9.62415732,6.87455906 9.59354003,7.0075748 9.53461662,7.12878867 L8.88205005,8.47121133 L8.88205005,8.47121133 C8.66720778,8.91317258 8.85132408,9.44561702 9.29328532,9.6604593 C9.41449919,9.7193827 9.54751493,9.75 9.68229167,9.75 Z\" id=\"Shape\"><\/path><path d=\"M2.36979167,9.75 L3.16588569,9.75 L3.16588569,9.75 C3.54868575,9.75 3.89789615,9.53147077 4.06525355,9.18719271 L5.58686785,6.0570147 L5.58686785,6.0570147 C5.65309013,5.92078603 5.6875,5.77129358 5.6875,5.61982199 L5.6875,1 L5.6875,1 C5.6875,0.44771525 5.23978475,1.20591542e-16 4.6875,2.22044605e-16 L1,0 L1,0 C0.44771525,1.01453063e-16 -6.76353751e-17,0.44771525 0,1 L0,4.85 L0,4.85 C-4.22892021e-16,5.40228475 0.44771525,5.85 1,5.85 L1.421875,5.85 L1.421875,5.85 C1.91328821,5.85 2.31165732,6.24836912 2.31165732,6.73978232 C2.31165732,6.87455906 2.28104003,7.0075748 2.22211662,7.12878867 L1.56955005,8.47121133 L1.56955005,8.47121133 C1.35470778,8.91317258 1.53882408,9.44561702 1.98078532,9.6604593 C2.10199919,9.7193827 2.23501493,9.75 2.36979167,9.75 Z\" id=\"Shape-Copy\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_36_hr\" data-command=\"insertHorizontalRule\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-hr \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Break<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Break\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"minus\" transform=\"translate(4.000000, 14.000000)\"><path d=\"M1.5625,3.125 L23.4375,3.125 C24.3004449,3.125 25,2.42544492 25,1.5625 C25,0.699555078 24.3004449,0 23.4375,0 L1.5625,0 C0.699555078,0 0,0.699555078 0,1.5625 C0,2.42544492 0.699555078,3.125 1.5625,3.125 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_36_imagePicker\" data-command=\"insertImage\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-imagePicker \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Image<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Image\" fill=\"#4A4A4A\"><g transform=\"translate(4.000000, 4.000000)\"><path d=\"M4.23529412,2.82352941 C3.455598,2.82352941 2.82352941,3.455598 2.82352941,4.23529412 L2.82352941,19.7647059 C2.82352941,20.544402 3.455598,21.1764706 4.23529412,21.1764706 L19.7647059,21.1764706 C20.544402,21.1764706 21.1764706,20.544402 21.1764706,19.7647059 L21.1764706,4.23529412 C21.1764706,3.455598 20.544402,2.82352941 19.7647059,2.82352941 L4.23529412,2.82352941 Z M4.23529412,0 L19.7647059,0 C22.1037942,-3.13474736e-16 24,1.89620577 24,4.23529412 L24,19.7647059 C24,22.1037942 22.1037942,24 19.7647059,24 L4.23529412,24 C1.89620577,24 3.13474736e-16,22.1037942 0,19.7647059 L0,4.23529412 C-3.13474736e-16,1.89620577 1.89620577,4.70212105e-16 4.23529412,0 Z\" id=\"Rectangle-path\" fill-rule=\"nonzero\"><\/path><circle id=\"Oval\" cx=\"8\" cy=\"8\" r=\"2\"><\/circle><path d=\"M21.5506729,16.416153 C22.1109903,16.9757102 23.0194444,16.9757102 23.5797619,16.416153 C24.1400794,15.8565958 24.1400794,14.9493743 23.5797619,14.3898171 L17.601501,8.4196679 C17.0411836,7.8601107 16.1327295,7.8601107 15.572412,8.4196679 L2.4202381,21.5539963 C1.85992063,22.1135534 1.85992063,23.0207749 2.4202381,23.5803321 C2.98055556,24.1398893 3.88900966,24.1398893 4.44932712,23.5803321 L16.5869565,11.4591717 L21.5506729,16.416153 Z\" id=\"Shape\" fill-rule=\"nonzero\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><div class=\"jfToolbar-modal forImage\"><input type=\"url\" id=\"modalImageUrl\" class=\"jfModal-input jfModal-modalImageUrl\" data-disable-enter-event=\"true\" data-disable-escape-event=\"true\" placeholder=\"Enter image URL\" aria-label=\"image url input\"\/><div class=\"modal-btn\">Ok<\/div><\/div><\/div><div id=\"input_36_emoji\" data-command=\"insertEmoji\" class=\"jfToolbar-item hasDropdown forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-emoji \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Smiley<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Smiley\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"if_smile-o_1608409\" transform=\"translate(3.000000, 3.000000)\"><path d=\"M19.4451446,16.0843869 C19.0223005,17.4164151 18.2337534,18.4897437 17.0795033,19.3043725 C15.9252533,20.1190014 14.6224364,20.5263158 13.1710526,20.5263158 C11.7196689,20.5263158 10.416852,20.1190014 9.26260193,19.3043725 C8.10835187,18.4897437 7.31980479,17.4164151 6.89696071,16.0843869 C6.80553496,15.8091744 6.8283914,15.5422183 6.96553002,15.2835186 C7.10266864,15.0248189 7.31980479,14.8514351 7.61693847,14.7633671 C7.90264393,14.6752991 8.17977823,14.6973161 8.44834136,14.8294181 C8.7169045,14.9615201 8.89689894,15.1706815 8.98832468,15.4569025 C9.27403015,16.3375823 9.80258525,17.0503826 10.57399,17.5953032 C11.3453947,18.1402239 12.2110823,18.4126842 13.1710526,18.4126842 C14.131023,18.4126842 14.9967105,18.1402239 15.7681153,17.5953032 C16.53952,17.0503826 17.0680751,16.3375823 17.3537806,15.4569025 C17.4452063,15.1706815 17.6280578,14.9615201 17.9023351,14.8294181 C18.1766123,14.6973161 18.4566037,14.6752991 18.7423091,14.7633671 C19.0280146,14.8514351 19.2394366,15.0248189 19.3765752,15.2835186 C19.5137139,15.5422183 19.5365703,15.8091744 19.4451446,16.0843869 Z M10.9473684,8.72368421 C10.9473684,9.33751371 10.7302118,9.86158512 10.2958984,10.2958984 C9.86158512,10.7302118 9.33751371,10.9473684 8.72368421,10.9473684 C8.10985471,10.9473684 7.58578331,10.7302118 7.15146998,10.2958984 C6.71715666,9.86158512 6.5,9.33751371 6.5,8.72368421 C6.5,8.10985471 6.71715666,7.58578331 7.15146998,7.15146998 C7.58578331,6.71715666 8.10985471,6.5 8.72368421,6.5 C9.33751371,6.5 9.86158512,6.71715666 10.2958984,7.15146998 C10.7302118,7.58578331 10.9473684,8.10985471 10.9473684,8.72368421 Z M19.5,8.72368421 C19.5,9.33751371 19.2828433,9.86158512 18.84853,10.2958984 C18.4142167,10.7302118 17.8901453,10.9473684 17.2763158,10.9473684 C16.6624863,10.9473684 16.1384149,10.7302118 15.7041016,10.2958984 C15.2697882,9.86158512 15.0526316,9.33751371 15.0526316,8.72368421 C15.0526316,8.10985471 15.2697882,7.58578331 15.7041016,7.15146998 C16.1384149,6.71715666 16.6624863,6.5 17.2763158,6.5 C17.8901453,6.5 18.4142167,6.71715666 18.84853,7.15146998 C19.2828433,7.58578331 19.5,8.10985471 19.5,8.72368421 Z M23.6052632,12.8289474 C23.6052632,11.3696546 23.3190173,9.97490748 22.7465255,8.644706 C22.1740337,7.31450452 21.407905,6.16952097 20.4481394,5.20975535 C19.4883738,4.24998972 18.3433902,3.48386102 17.0131887,2.91136924 C15.6829873,2.33887747 14.2882401,2.05263158 12.8289474,2.05263158 C11.3696546,2.05263158 9.97490748,2.33887747 8.644706,2.91136924 C7.31450452,3.48386102 6.16952097,4.24998972 5.20975535,5.20975535 C4.24998972,6.16952097 3.48386102,7.31450452 2.91136924,8.644706 C2.33887747,9.97490748 2.05263158,11.3696546 2.05263158,12.8289474 C2.05263158,14.2882401 2.33887747,15.6829873 2.91136924,17.0131887 C3.48386102,18.3433902 4.24998972,19.4883738 5.20975535,20.4481394 C6.16952097,21.407905 7.31450452,22.1740337 8.644706,22.7465255 C9.97490748,23.3190173 11.3696546,23.6052632 12.8289474,23.6052632 C14.2882401,23.6052632 15.6829873,23.3190173 17.0131887,22.7465255 C18.3433902,22.1740337 19.4883738,21.407905 20.4481394,20.4481394 C21.407905,19.4883738 22.1740337,18.3433902 22.7465255,17.0131887 C23.3190173,15.6829873 23.6052632,14.2882401 23.6052632,12.8289474 Z M26,13 C26,15.3585069 25.4188368,17.5336372 24.2565104,19.5253906 C23.094184,21.5171441 21.5171441,23.094184 19.5253906,24.2565104 C17.5336372,25.4188368 15.3585069,26 13,26 C10.6414931,26 8.46636285,25.4188368 6.47460938,24.2565104 C4.4828559,23.094184 2.90581597,21.5171441 1.74348958,19.5253906 C0.581163194,17.5336372 0,15.3585069 0,13 C0,10.6414931 0.581163194,8.46636285 1.74348958,6.47460938 C2.90581597,4.4828559 4.4828559,2.90581597 6.47460938,1.74348958 C8.46636285,0.581163194 10.6414931,0 13,0 C15.3585069,0 17.5336372,0.581163194 19.5253906,1.74348958 C21.5171441,2.90581597 23.094184,4.4828559 24.2565104,6.47460938 C25.4188368,8.46636285 26,10.6414931 26,13 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_checkbox\" id=\"id_21\"><div id=\"cid_21\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_checkbox\"><div class=\"jfCard-index\"><div>17<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_21_0\" class=\"jfQuestion-label isLeftAlign\" id=\"label_21\"><span class=\"jsQuestionLabelContainer\">Instructional Strategies (Check if observed)<\/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 form-single-column\" data-component=\"checkbox\"><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q21_instructionalStrategies[]\" value=\"Instruction\/Lecture (Firsthand account\/PowerPoint\/video)\" id=\"input_21_0\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Instruction\/Lecture (Firsthand account\/PowerPoint\/video)<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q21_instructionalStrategies[]\" value=\"Questioning\/Reflective Discussion\" id=\"input_21_1\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Questioning\/Reflective Discussion<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q21_instructionalStrategies[]\" value=\"Note Taking\" id=\"input_21_2\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Note Taking<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q21_instructionalStrategies[]\" value=\"Independent Production\" id=\"input_21_3\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Independent Production<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q21_instructionalStrategies[]\" value=\"Interactive Instruction (debate, brainstorming, peer partner learning)\" id=\"input_21_4\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Interactive Instruction (debate, brainstorming, peer partner learning)<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q21_instructionalStrategies[]\" value=\"Inquiry\" id=\"input_21_5\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Inquiry<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q21_instructionalStrategies[]\" value=\"Performance Task\" id=\"input_21_6\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Performance Task<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q21_instructionalStrategies[]\" value=\"Review\" id=\"input_21_7\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Review<\/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_checkbox\" id=\"id_31\"><div id=\"cid_31\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_checkbox\"><div class=\"jfCard-index\"><div>18<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_31_0\" class=\"jfQuestion-label isLeftAlign\" id=\"label_31\"><span class=\"jsQuestionLabelContainer\">Bloom's Taxonomy observed (Multiple choice allowed)<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_31_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-multiple-column\" data-columncount=\"2\" data-component=\"checkbox\"><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q31_bloomsTaxonomy31[]\" value=\"Remembering\" id=\"input_31_0\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Remembering<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q31_bloomsTaxonomy31[]\" value=\"Understanding\" id=\"input_31_1\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Understanding<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q31_bloomsTaxonomy31[]\" value=\"Applying\" id=\"input_31_2\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Applying<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q31_bloomsTaxonomy31[]\" value=\"Analyzing\" id=\"input_31_3\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Analyzing<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q31_bloomsTaxonomy31[]\" value=\"Evaluating\" id=\"input_31_4\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Evaluating<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q31_bloomsTaxonomy31[]\" value=\"Creating\" id=\"input_31_5\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Creating<\/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_checkbox\" id=\"id_24\"><div id=\"cid_24\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_checkbox\"><div class=\"jfCard-index\"><div>19<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_24_0\" class=\"jfQuestion-label isLeftAlign\" id=\"label_24\"><span class=\"jsQuestionLabelContainer\">Student Behavior\/Skills Demonstrated<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_24_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-single-column\" data-component=\"checkbox\"><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q24_studentBehaviorskills24[]\" value=\"On Task Behavior\" id=\"input_24_0\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">On Task Behavior<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q24_studentBehaviorskills24[]\" value=\"Critical Thinking Skills\" id=\"input_24_1\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Critical Thinking Skills<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q24_studentBehaviorskills24[]\" value=\"An Understanding of What to Do\" id=\"input_24_2\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">An Understanding of What to Do<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q24_studentBehaviorskills24[]\" value=\"Interest in the Subject\" id=\"input_24_3\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Interest in the Subject<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q24_studentBehaviorskills24[]\" value=\"Engagement\" id=\"input_24_4\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Engagement<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q24_studentBehaviorskills24[]\" value=\"Boredom\" id=\"input_24_5\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Boredom<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q24_studentBehaviorskills24[]\" value=\"Little Interest\" id=\"input_24_6\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Little Interest<\/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_checkbox\" id=\"id_22\"><div id=\"cid_22\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_checkbox\"><div class=\"jfCard-index\"><div>20<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_22_0\" class=\"jfQuestion-label isLeftAlign\" id=\"label_22\"><span class=\"jsQuestionLabelContainer\">Check for Understanding<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_22_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-single-column\" data-component=\"checkbox\"><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q22_checkFor22[]\" value=\"Individual Presentation\" id=\"input_22_0\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Individual Presentation<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q22_checkFor22[]\" value=\"Student Collaboration\" id=\"input_22_1\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Student Collaboration<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q22_checkFor22[]\" value=\"Randomly Chosen Student\" id=\"input_22_2\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Randomly Chosen Student<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q22_checkFor22[]\" value=\"No check for understanding observed\" id=\"input_22_3\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">No check for understanding observed<\/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_checkbox\" id=\"id_7\"><div id=\"cid_7\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_checkbox\"><div class=\"jfCard-index\"><div>21<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_7_0\" class=\"jfQuestion-label isLeftAlign\" id=\"label_7\"><span class=\"jsQuestionLabelContainer\">Trainer Behavior<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_7_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-multiple-column\" data-columncount=\"2\" data-component=\"checkbox\"><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q7_trainerBehavior[]\" value=\"Lecturing - presentation\" id=\"input_7_0\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Lecturing - presentation<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q7_trainerBehavior[]\" value=\"Working with Small Groups\" id=\"input_7_1\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Working with Small Groups<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q7_trainerBehavior[]\" value=\"Sitting behind a desk\" id=\"input_7_2\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Sitting behind a desk<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q7_trainerBehavior[]\" value=\"Working with Individuals\" id=\"input_7_3\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Working with Individuals<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q7_trainerBehavior[]\" value=\"Demonstrating\" id=\"input_7_4\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Demonstrating<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q7_trainerBehavior[]\" value=\"Working with whole class\" id=\"input_7_5\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Working with whole class<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q7_trainerBehavior[]\" value=\"Comfortable\" id=\"input_7_6\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Comfortable<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q7_trainerBehavior[]\" value=\"Uncomfortable\" id=\"input_7_7\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Uncomfortable<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q7_trainerBehavior[]\" value=\"Standing only\" id=\"input_7_8\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Standing only<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q7_trainerBehavior[]\" value=\"Moving around the class\" id=\"input_7_9\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Moving around the class<\/span><\/div><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_matrix\" id=\"id_44\"><div id=\"cid_44\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_matrix\"><div class=\"jfCard-index\"><div>22<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_44\" class=\"jfQuestion-label isLeftAlign\" id=\"label_44\"><span class=\"jsQuestionLabelContainer\">Trainer Verbal Performance<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_44_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-component=\"matrix2\" data-wrapper-react=\"true\"><div class=\"jfField\" id=\"matrix_44\" data-type=\"Slider\" style=\"width:100%\"><div class=\"jfMatrix isFun forDesktop forSlider\"><div class=\"jfMatrixTable-wrapper jfMatrix-innerScrollableArea\"><div class=\"jfMatrixLabelList\"><div class=\"jfMatrixLabelList-item\">Trainers pace matched to the learners\u00a0<\/div><div class=\"jfMatrixLabelList-item\">Trainer vocabulary suited to learners<\/div><div class=\"jfMatrixLabelList-item\">Does the trainer allow enough time for questioning<\/div><div class=\"jfMatrixLabelList-item\">Trainer volume was suitable to the space\u00a0<\/div><div class=\"jfMatrixLabelList-item\">Trainer tone was suitable &amp; varied\u00a0<\/div><div class=\"jfMatrixLabelList-item\">Did the trainer explain unusual words or phrases?\u00a0<\/div><\/div><div class=\"jfMatrixInputList\"><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale-labelWrapper\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\">Not Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\">Somewhat Satisfied<\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"66.67\">Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\">Very Satisfied<\/div><\/div><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_44_0_0\" name=\"q44_trainerVerbal[0]\" value=\"Not Satisfied\" class=\"form-radio\"\/><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_44_0_1\" name=\"q44_trainerVerbal[0]\" value=\"Somewhat Satisfied\" class=\"form-radio\"\/><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_44_0_2\" name=\"q44_trainerVerbal[0]\" value=\"Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_44_0_3\" name=\"q44_trainerVerbal[0]\" value=\"Very Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:66.67%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale-labelWrapper\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\">Not Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\">Somewhat Satisfied<\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"66.67\">Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\">Very Satisfied<\/div><\/div><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_44_1_0\" name=\"q44_trainerVerbal[1]\" value=\"Not Satisfied\" class=\"form-radio\"\/><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_44_1_1\" name=\"q44_trainerVerbal[1]\" value=\"Somewhat Satisfied\" class=\"form-radio\"\/><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_44_1_2\" name=\"q44_trainerVerbal[1]\" value=\"Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_44_1_3\" name=\"q44_trainerVerbal[1]\" value=\"Very Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:66.67%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale-labelWrapper\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\">Not Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\">Somewhat Satisfied<\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"66.67\">Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\">Very Satisfied<\/div><\/div><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_44_2_0\" name=\"q44_trainerVerbal[2]\" value=\"Not Satisfied\" class=\"form-radio\"\/><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_44_2_1\" name=\"q44_trainerVerbal[2]\" value=\"Somewhat Satisfied\" class=\"form-radio\"\/><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_44_2_2\" name=\"q44_trainerVerbal[2]\" value=\"Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_44_2_3\" name=\"q44_trainerVerbal[2]\" value=\"Very Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:66.67%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale-labelWrapper\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\">Not Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\">Somewhat Satisfied<\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"66.67\">Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\">Very Satisfied<\/div><\/div><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_44_3_0\" name=\"q44_trainerVerbal[3]\" value=\"Not Satisfied\" class=\"form-radio\"\/><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_44_3_1\" name=\"q44_trainerVerbal[3]\" value=\"Somewhat Satisfied\" class=\"form-radio\"\/><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_44_3_2\" name=\"q44_trainerVerbal[3]\" value=\"Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_44_3_3\" name=\"q44_trainerVerbal[3]\" value=\"Very Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:66.67%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale-labelWrapper\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\">Not Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\">Somewhat Satisfied<\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"66.67\">Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\">Very Satisfied<\/div><\/div><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_44_4_0\" name=\"q44_trainerVerbal[4]\" value=\"Not Satisfied\" class=\"form-radio\"\/><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_44_4_1\" name=\"q44_trainerVerbal[4]\" value=\"Somewhat Satisfied\" class=\"form-radio\"\/><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_44_4_2\" name=\"q44_trainerVerbal[4]\" value=\"Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_44_4_3\" name=\"q44_trainerVerbal[4]\" value=\"Very Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:66.67%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale-labelWrapper\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\">Not Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\">Somewhat Satisfied<\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"66.67\">Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\">Very Satisfied<\/div><\/div><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_44_5_0\" name=\"q44_trainerVerbal[5]\" value=\"Not Satisfied\" class=\"form-radio\"\/><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_44_5_1\" name=\"q44_trainerVerbal[5]\" value=\"Somewhat Satisfied\" class=\"form-radio\"\/><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_44_5_2\" name=\"q44_trainerVerbal[5]\" value=\"Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_44_5_3\" name=\"q44_trainerVerbal[5]\" value=\"Very Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:66.67%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><\/button><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"jfMatrix forMobile forSlider\"><div class=\"jfMobileMatrix-questionList\"><div class=\"jfMobileMatrix-question jfMobileMatrix-row isSelected\" data-order=\"0\">Trainers pace matched to the learners\u00a0<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"1\">Trainer vocabulary suited to learners<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"2\">Does the trainer allow enough time for questioning<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"3\">Trainer volume was suitable to the space\u00a0<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"4\">Trainer tone was suitable &amp; varied\u00a0<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"5\">Did the trainer explain unusual words or phrases?\u00a0<\/div><\/div><div class=\"jfMobileMatrix-content slider\"><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale-labelWrapper\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\">Not Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\">Somewhat Satisfied<\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"66.67\">Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\">Very Satisfied<\/div><\/div><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_44_0_0\" name=\"q44_trainerVerbal[0]\" value=\"Not Satisfied\" class=\"form-radio\"\/><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_44_0_1\" name=\"q44_trainerVerbal[0]\" value=\"Somewhat Satisfied\" class=\"form-radio\"\/><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_44_0_2\" name=\"q44_trainerVerbal[0]\" value=\"Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_44_0_3\" name=\"q44_trainerVerbal[0]\" value=\"Very Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:66.67%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow  isHidden\" data-required=\"No\"><div class=\"jfMatrixScale-labelWrapper\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\">Not Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\">Somewhat Satisfied<\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"66.67\">Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\">Very Satisfied<\/div><\/div><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_44_1_0\" name=\"q44_trainerVerbal[1]\" value=\"Not Satisfied\" class=\"form-radio\"\/><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_44_1_1\" name=\"q44_trainerVerbal[1]\" value=\"Somewhat Satisfied\" class=\"form-radio\"\/><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_44_1_2\" name=\"q44_trainerVerbal[1]\" value=\"Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_44_1_3\" name=\"q44_trainerVerbal[1]\" value=\"Very Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:66.67%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow  isHidden\" data-required=\"No\"><div class=\"jfMatrixScale-labelWrapper\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\">Not Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\">Somewhat Satisfied<\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"66.67\">Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\">Very Satisfied<\/div><\/div><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_44_2_0\" name=\"q44_trainerVerbal[2]\" value=\"Not Satisfied\" class=\"form-radio\"\/><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_44_2_1\" name=\"q44_trainerVerbal[2]\" value=\"Somewhat Satisfied\" class=\"form-radio\"\/><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_44_2_2\" name=\"q44_trainerVerbal[2]\" value=\"Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_44_2_3\" name=\"q44_trainerVerbal[2]\" value=\"Very Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:66.67%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow  isHidden\" data-required=\"No\"><div class=\"jfMatrixScale-labelWrapper\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\">Not Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\">Somewhat Satisfied<\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"66.67\">Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\">Very Satisfied<\/div><\/div><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_44_3_0\" name=\"q44_trainerVerbal[3]\" value=\"Not Satisfied\" class=\"form-radio\"\/><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_44_3_1\" name=\"q44_trainerVerbal[3]\" value=\"Somewhat Satisfied\" class=\"form-radio\"\/><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_44_3_2\" name=\"q44_trainerVerbal[3]\" value=\"Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_44_3_3\" name=\"q44_trainerVerbal[3]\" value=\"Very Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:66.67%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow  isHidden\" data-required=\"No\"><div class=\"jfMatrixScale-labelWrapper\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\">Not Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\">Somewhat Satisfied<\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"66.67\">Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\">Very Satisfied<\/div><\/div><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_44_4_0\" name=\"q44_trainerVerbal[4]\" value=\"Not Satisfied\" class=\"form-radio\"\/><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_44_4_1\" name=\"q44_trainerVerbal[4]\" value=\"Somewhat Satisfied\" class=\"form-radio\"\/><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_44_4_2\" name=\"q44_trainerVerbal[4]\" value=\"Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_44_4_3\" name=\"q44_trainerVerbal[4]\" value=\"Very Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:66.67%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow  isHidden\" data-required=\"No\"><div class=\"jfMatrixScale-labelWrapper\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\">Not Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"33.33\">Somewhat Satisfied<\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"66.67\">Satisfied<\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\">Very Satisfied<\/div><\/div><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_44_5_0\" name=\"q44_trainerVerbal[5]\" value=\"Not Satisfied\" class=\"form-radio\"\/><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_44_5_1\" name=\"q44_trainerVerbal[5]\" value=\"Somewhat Satisfied\" class=\"form-radio\"\/><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_44_5_2\" name=\"q44_trainerVerbal[5]\" value=\"Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_44_5_3\" name=\"q44_trainerVerbal[5]\" value=\"Very Satisfied\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:66.67%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><\/button><\/div><\/div><\/div><\/div><div class=\"jfMobileMatrix-columnDotlist\"><button type=\"button\" aria-label=\"Previous\" class=\"jfMobileMatrix-prevRow forMatrixPrev js-mobilMatrixPrevButton\" disabled=\"\"><span class=\"iconSvg  arrow_left \"><svg version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 30.2 52.6\" style=\"enable-background:new 0 0 30.2 52.6;\" xml:space=\"preserve\"><g><g><path class=\"st0\" d=\"M23.7,51.7c1.5,1.4,3.8,1.3,5.2-0.2c1.3-1.4,1.3-3.6,0-5l-20-20l20-20 c1.5-1.4,1.7-3.7,0.3-5.2c-1.4-1.5-3.7-1.7-5.2-0.3c-0.1,0.1-0.2,0.2-0.3,0.3L1.1,23.8c-1.4,1.4-1.4,3.8,0,5.2c0,0,0,0,0,0 L23.7,51.7z\"><\/path><\/g><\/g><\/svg><\/span><\/button><span class=\"jfMobileMatrix-columnDotWrapper\"><div class=\"jfMobileMatrix-columnDot\"><\/div><div class=\"jfMobileMatrix-columnDot\"><\/div><div class=\"jfMobileMatrix-columnDot\"><\/div><div class=\"jfMobileMatrix-columnDot\"><\/div><div class=\"jfMobileMatrix-columnDot\"><\/div><div class=\"jfMobileMatrix-columnDot\"><\/div><\/span><button type=\"button\" aria-label=\"Next\" class=\"jfMobileMatrix-nextRow forMatrixNext js-mobileMatrixNextButton\"><span class=\"iconSvg  arrow_left \"><svg version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 30.2 52.6\" style=\"enable-background:new 0 0 30.2 52.6;\" xml:space=\"preserve\"><g><g><path class=\"st0\" d=\"M23.7,51.7c1.5,1.4,3.8,1.3,5.2-0.2c1.3-1.4,1.3-3.6,0-5l-20-20l20-20 c1.5-1.4,1.7-3.7,0.3-5.2c-1.4-1.5-3.7-1.7-5.2-0.3c-0.1,0.1-0.2,0.2-0.3,0.3L1.1,23.8c-1.4,1.4-1.4,3.8,0,5.2c0,0,0,0,0,0 L23.7,51.7z\"><\/path><\/g><\/g><\/svg><\/span><\/button><\/div><\/div><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_checkbox\" id=\"id_42\"><div id=\"cid_42\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_checkbox\"><div class=\"jfCard-index\"><div>23<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_42_0\" class=\"jfQuestion-label isLeftAlign\" id=\"label_42\"><span class=\"jsQuestionLabelContainer\">Trainers depth of knowledge<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_42_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-multiple-column\" data-columncount=\"2\" data-component=\"checkbox\"><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q42_trainersDepth[]\" value=\"Elementary\" id=\"input_42_0\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Elementary<\/span><\/div><\/label><\/div><div class=\"jfField form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q42_trainersDepth[]\" value=\"Intermediate\" id=\"input_42_1\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Intermediate<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q42_trainersDepth[]\" value=\"Specialist\" id=\"input_42_2\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Specialist<\/span><\/div><\/label><\/div><div class=\"jfField jfField-lastRowItem form-checkbox-item\"><label class=\"jfCheckbox withoutImage\"><input type=\"checkbox\" class=\"jfCheckbox-input form-checkbox validate[required]\" name=\"q42_trainersDepth[]\" value=\"Expert\" id=\"input_42_3\" required=\"\"\/><div class=\"jfCheckbox-label\"><span class=\"jfCheckbox-customInput\"><span class=\"jfCheckbox-customInputIcon\"><\/span><\/span><img class=\"jfCheckbox-visual\" alt=\"Checkbox\"\/><span class=\"jfCheckbox-labelText\">Expert<\/span><\/div><\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_matrix\" id=\"id_48\"><div id=\"cid_48\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_matrix\"><div class=\"jfCard-index\"><div>24<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_48\" class=\"jfQuestion-label isLeftAlign\" id=\"label_48\"><span class=\"jsQuestionLabelContainer\">Trainers Enthusiasm & Engagement  <\/span><\/label><span class=\"jfQuestion-description\" id=\"input_48_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-component=\"matrix2\" data-wrapper-react=\"true\"><div class=\"jfField\" id=\"matrix_48\" 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\">Did the trainer have appropriate gestures &amp; body Language?<\/div><div class=\"jfMatrixLabelList-item\">Did the Trainer have appropriate Facial Expressions?<\/div><div class=\"jfMatrixLabelList-item\">How much eye contact did the Trainer have with the learners?<\/div><div class=\"jfMatrixLabelList-item\">Did the Trainer attempt to remember everyone&#x27;s name?<\/div><\/div><div class=\"jfMatrixInputList\"><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_0_0\" name=\"q48_trainersEnthusiasm48[0]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_0_1\" name=\"q48_trainersEnthusiasm48[0]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_0_2\" name=\"q48_trainersEnthusiasm48[0]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_0_3\" name=\"q48_trainersEnthusiasm48[0]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_0_4\" name=\"q48_trainersEnthusiasm48[0]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_1_0\" name=\"q48_trainersEnthusiasm48[1]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_1_1\" name=\"q48_trainersEnthusiasm48[1]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_1_2\" name=\"q48_trainersEnthusiasm48[1]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_1_3\" name=\"q48_trainersEnthusiasm48[1]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_1_4\" name=\"q48_trainersEnthusiasm48[1]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_2_0\" name=\"q48_trainersEnthusiasm48[2]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_2_1\" name=\"q48_trainersEnthusiasm48[2]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_2_2\" name=\"q48_trainersEnthusiasm48[2]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_2_3\" name=\"q48_trainersEnthusiasm48[2]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_2_4\" name=\"q48_trainersEnthusiasm48[2]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_3_0\" name=\"q48_trainersEnthusiasm48[3]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_3_1\" name=\"q48_trainersEnthusiasm48[3]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_3_2\" name=\"q48_trainersEnthusiasm48[3]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_3_3\" name=\"q48_trainersEnthusiasm48[3]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_3_4\" name=\"q48_trainersEnthusiasm48[3]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"jfMatrix forMobile forEmojiSlider\"><div class=\"jfMobileMatrix-questionList\"><div class=\"jfMobileMatrix-question jfMobileMatrix-row isSelected\" data-order=\"0\">Did the trainer have appropriate gestures &amp; body Language?<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"1\">Did the Trainer have appropriate Facial Expressions?<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"2\">How much eye contact did the Trainer have with the learners?<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"3\">Did the Trainer attempt to remember everyone&#x27;s name?<\/div><\/div><div class=\"jfMobileMatrix-content slider\"><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_0_0\" name=\"q48_trainersEnthusiasm48[0]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_0_1\" name=\"q48_trainersEnthusiasm48[0]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_0_2\" name=\"q48_trainersEnthusiasm48[0]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_0_3\" name=\"q48_trainersEnthusiasm48[0]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_0_4\" name=\"q48_trainersEnthusiasm48[0]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow  isHidden\" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_1_0\" name=\"q48_trainersEnthusiasm48[1]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_1_1\" name=\"q48_trainersEnthusiasm48[1]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_1_2\" name=\"q48_trainersEnthusiasm48[1]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_1_3\" name=\"q48_trainersEnthusiasm48[1]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_1_4\" name=\"q48_trainersEnthusiasm48[1]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow  isHidden\" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_2_0\" name=\"q48_trainersEnthusiasm48[2]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_2_1\" name=\"q48_trainersEnthusiasm48[2]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_2_2\" name=\"q48_trainersEnthusiasm48[2]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_2_3\" name=\"q48_trainersEnthusiasm48[2]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_2_4\" name=\"q48_trainersEnthusiasm48[2]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow  isHidden\" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_3_0\" name=\"q48_trainersEnthusiasm48[3]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_3_1\" name=\"q48_trainersEnthusiasm48[3]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_3_2\" name=\"q48_trainersEnthusiasm48[3]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_3_3\" name=\"q48_trainersEnthusiasm48[3]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_48_3_4\" name=\"q48_trainersEnthusiasm48[3]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><\/div><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><\/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_matrix\" id=\"id_49\"><div id=\"cid_49\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_matrix\"><div class=\"jfCard-index\"><div>25<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_49\" class=\"jfQuestion-label isLeftAlign\" id=\"label_49\"><span class=\"jsQuestionLabelContainer\">Trainers Personal Presentation<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_49_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-component=\"matrix2\" data-wrapper-react=\"true\"><div class=\"jfField\" id=\"matrix_49\" 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\">Clean &amp; Tidy<\/div><div class=\"jfMatrixLabelList-item\">Clothing appropriate<\/div><div class=\"jfMatrixLabelList-item\">Personal Protective Equipment <\/div><\/div><div class=\"jfMatrixInputList\"><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_0_0\" name=\"q49_trainersPersonal[0]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_0_1\" name=\"q49_trainersPersonal[0]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_0_2\" name=\"q49_trainersPersonal[0]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_0_3\" name=\"q49_trainersPersonal[0]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_0_4\" name=\"q49_trainersPersonal[0]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_1_0\" name=\"q49_trainersPersonal[1]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_1_1\" name=\"q49_trainersPersonal[1]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_1_2\" name=\"q49_trainersPersonal[1]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_1_3\" name=\"q49_trainersPersonal[1]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_1_4\" name=\"q49_trainersPersonal[1]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_2_0\" name=\"q49_trainersPersonal[2]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_2_1\" name=\"q49_trainersPersonal[2]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_2_2\" name=\"q49_trainersPersonal[2]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_2_3\" name=\"q49_trainersPersonal[2]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_2_4\" name=\"q49_trainersPersonal[2]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><\/div><\/div><\/div><div class=\"jfMatrix forMobile forEmojiSlider\"><div class=\"jfMobileMatrix-questionList\"><div class=\"jfMobileMatrix-question jfMobileMatrix-row isSelected\" data-order=\"0\">Clean &amp; Tidy<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"1\">Clothing appropriate<\/div><div class=\"jfMobileMatrix-question jfMobileMatrix-row\" data-order=\"2\">Personal Protective Equipment <\/div><\/div><div class=\"jfMobileMatrix-content slider\"><div class=\"jfMatrixInputList-item js-matrixRow \" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_0_0\" name=\"q49_trainersPersonal[0]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_0_1\" name=\"q49_trainersPersonal[0]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_0_2\" name=\"q49_trainersPersonal[0]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_0_3\" name=\"q49_trainersPersonal[0]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_0_4\" name=\"q49_trainersPersonal[0]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow  isHidden\" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_1_0\" name=\"q49_trainersPersonal[1]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_1_1\" name=\"q49_trainersPersonal[1]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_1_2\" name=\"q49_trainersPersonal[1]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_1_3\" name=\"q49_trainersPersonal[1]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_1_4\" name=\"q49_trainersPersonal[1]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><div class=\"jfMatrixInputList-item js-matrixRow  isHidden\" data-required=\"No\"><div class=\"jfMatrixScale\"><div class=\"jfMatrixScale-sep\"><span class=\"scaleSep\" data-scale=\"0.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_2_0\" name=\"q49_trainersPersonal[2]\" value=\"1\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"25.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_2_1\" name=\"q49_trainersPersonal[2]\" value=\"2\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"50.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_2_2\" name=\"q49_trainersPersonal[2]\" value=\"4\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"75.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_2_3\" name=\"q49_trainersPersonal[2]\" value=\"6\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><span class=\"scaleSep\" data-scale=\"100.00\"><label class=\"form-matrix-values jfMatrix-inputWrapper forRadio\"><input type=\"radio\" id=\"input_49_2_4\" name=\"q49_trainersPersonal[2]\" value=\"7\" class=\"form-radio\"\/><span class=\"jfMatrix-customRadio\"><span class=\"jfMatrix-customRadioInner\"><\/span><\/span><\/label><\/span><\/div><div class=\"jfMatrixScale-item\" style=\"width:50.00%\"><button class=\"jfMatrixScale-button noTranslate\" type=\"button\" aria-label=\"Drag\"><div class=\"jfMatrixScale-label \" data-scale=\"0.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/1.png\" alt=\"Extremely Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"25.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/2.png\" alt=\"Dissatisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label isVisible\" data-scale=\"50.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/4.png\" alt=\"Neutral\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"75.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/6.png\" alt=\"Satisfied\" class=\"sliderImage\"\/><\/div><div class=\"jfMatrixScale-label \" data-scale=\"100.00\"><img src=\"https:\/\/cdn.jotfor.ms\/images\/seven_scale_icons\/7.png\" alt=\"Extremely Satisfied\" class=\"sliderImage\"\/><\/div><\/button><\/div><\/div><\/div><\/div><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><\/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_time\" id=\"id_50\"><div id=\"cid_50\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_time\"><div class=\"jfCard-index\"><div>26<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_50_hourSelect\" class=\"jfQuestion-label isLeftAlign\" id=\"label_50\"><span class=\"jsQuestionLabelContainer\">Total Time of Observation<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_50_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-wrapper-react=\"true\"><div class=\"jfField isFilled\" data-type=\"time-hour\" aria-hidden=\"false\"><select id=\"input_50_hourSelect\" name=\"q50_totalTime50[hourSelect]\" class=\"time-dropdown form-dropdown\"><option value=\"\"><\/option><option selected=\"\" value=\"00\">00<\/option><option value=\"01\">01<\/option><option value=\"02\">02<\/option><option value=\"03\">03<\/option><option value=\"04\">04<\/option><option value=\"05\">05<\/option><option value=\"06\">06<\/option><option value=\"07\">07<\/option><option value=\"08\">08<\/option><option value=\"09\">09<\/option><option value=\"10\">10<\/option><option value=\"11\">11<\/option><option value=\"12\">12<\/option><option value=\"13\">13<\/option><option value=\"14\">14<\/option><option value=\"15\">15<\/option><option value=\"16\">16<\/option><option value=\"17\">17<\/option><option value=\"18\">18<\/option><option value=\"19\">19<\/option><option value=\"20\">20<\/option><option value=\"21\">21<\/option><option value=\"22\">22<\/option><option value=\"23\">23<\/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\">00<\/span><\/div><span class=\"jfDropdown-toggle\"><i class=\"fa fa-caret-down\" aria-hidden=\"true\"><\/i><\/span><\/div><div id=\"jfDropdown-optionList-50-time-hour\" class=\"jfDropdown-optionListWrapper forDrawer\" aria-hidden=\"true\"><ul class=\"jfDropdown-optionList form-dropdown\"><li class=\"jfDropdown-optionListItem\"><\/li><li data-value=\"00\" class=\"jfDropdown-optionListItem\">00<\/li><li data-value=\"01\" class=\"jfDropdown-optionListItem\">01<\/li><li data-value=\"02\" class=\"jfDropdown-optionListItem\">02<\/li><li data-value=\"03\" class=\"jfDropdown-optionListItem\">03<\/li><li data-value=\"04\" class=\"jfDropdown-optionListItem\">04<\/li><li data-value=\"05\" class=\"jfDropdown-optionListItem\">05<\/li><li data-value=\"06\" class=\"jfDropdown-optionListItem\">06<\/li><li data-value=\"07\" class=\"jfDropdown-optionListItem\">07<\/li><li data-value=\"08\" class=\"jfDropdown-optionListItem\">08<\/li><li data-value=\"09\" class=\"jfDropdown-optionListItem\">09<\/li><li data-value=\"10\" class=\"jfDropdown-optionListItem\">10<\/li><li data-value=\"11\" class=\"jfDropdown-optionListItem\">11<\/li><li data-value=\"12\" class=\"jfDropdown-optionListItem\">12<\/li><li data-value=\"13\" class=\"jfDropdown-optionListItem\">13<\/li><li data-value=\"14\" class=\"jfDropdown-optionListItem\">14<\/li><li data-value=\"15\" class=\"jfDropdown-optionListItem\">15<\/li><li data-value=\"16\" class=\"jfDropdown-optionListItem\">16<\/li><li data-value=\"17\" class=\"jfDropdown-optionListItem\">17<\/li><li data-value=\"18\" class=\"jfDropdown-optionListItem\">18<\/li><li data-value=\"19\" class=\"jfDropdown-optionListItem\">19<\/li><li data-value=\"20\" class=\"jfDropdown-optionListItem\">20<\/li><li data-value=\"21\" class=\"jfDropdown-optionListItem\">21<\/li><li data-value=\"22\" class=\"jfDropdown-optionListItem\">22<\/li><li data-value=\"23\" class=\"jfDropdown-optionListItem\">23<\/li><\/ul><\/div><\/div><label class=\"jfField-sublabel\" for=\"input_50_hourSelect\" id=\"sublabel_50_hour\">Hour<\/label><\/div><div class=\"jfField isFilled\" data-type=\"time-minute\" aria-hidden=\"false\"><select id=\"input_50_minuteSelect\" name=\"q50_totalTime50[minuteSelect]\" class=\"time-dropdown form-dropdown\"><option value=\"\"><\/option><option selected=\"\" value=\"00\">00<\/option><option value=\"10\">10<\/option><option value=\"20\">20<\/option><option value=\"30\">30<\/option><option value=\"40\">40<\/option><option value=\"50\">50<\/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\">00<\/span><\/div><span class=\"jfDropdown-toggle\"><i class=\"fa fa-caret-down\" aria-hidden=\"true\"><\/i><\/span><\/div><div id=\"jfDropdown-optionList-50-time-minute\" class=\"jfDropdown-optionListWrapper forDrawer\" aria-hidden=\"true\"><ul class=\"jfDropdown-optionList form-dropdown\"><li class=\"jfDropdown-optionListItem\"><\/li><li data-value=\"00\" class=\"jfDropdown-optionListItem\">00<\/li><li data-value=\"10\" class=\"jfDropdown-optionListItem\">10<\/li><li data-value=\"20\" class=\"jfDropdown-optionListItem\">20<\/li><li data-value=\"30\" class=\"jfDropdown-optionListItem\">30<\/li><li data-value=\"40\" class=\"jfDropdown-optionListItem\">40<\/li><li data-value=\"50\" class=\"jfDropdown-optionListItem\">50<\/li><\/ul><\/div><\/div><label class=\"jfField-sublabel\" for=\"input_50_minuteSelect\" id=\"sublabel_50_minutes\">Minutes<\/label><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_textarea\" id=\"id_47\"><div id=\"cid_47\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_textarea\"><div class=\"jfCard-index\"><div>27<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen\"><\/div><label for=\"input_47\" class=\"jfQuestion-label isLeftAlign\" id=\"label_47\"><span class=\"jsQuestionLabelContainer\">Additional Comments<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_47_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-component=\"textarea\" data-render-type=\"mde\"><div class=\"jfField\"><textarea id=\"input_47\" name=\"q47_additionalComments\" placeholder=\"Type here...\" class=\"mdInput form-textarea\"><\/textarea><div id=\"input_47_editor\" class=\"jfTextarea-editor\" contenteditable=\"true\" data-placeholder=\"Type here...\"><\/div><div class=\"jfTextarea-infoSpan isHidden\"><span class=\"jfTextarea-limitSpan\"><\/span><span class=\"jfTextarea-modeSpan\"><\/span><\/div><\/div><\/div><\/div><div class=\"jfToolbar\" id=\"input_47_toolbar\"><div id=\"input_47_fontSize\" data-command=\"heading\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-fontSize \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>TextSize<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"TextSize\" fill=\"#4A4A4A\"><g id=\"Group-2\" transform=\"translate(3.000000, 6.000000)\"><g id=\"type\" fill-rule=\"nonzero\"><path d=\"M2.34756098,2.5 L16.902439,2.5 L16.902439,4.25 C16.902439,4.94035594 17.4279584,5.5 18.0762195,5.5 C18.7244806,5.5 19.25,4.94035594 19.25,4.25 L19.25,1.25 C19.25,0.559644063 18.7244806,0 18.0762195,0 L1.17378049,0 C0.525519425,0 0,0.559644063 0,1.25 L0,4.25 C0,4.94035594 0.525519425,5.5 1.17378049,5.5 C1.82204155,5.5 2.34756098,4.94035594 2.34756098,4.25 L2.34756098,2.5 Z\" id=\"Shape\"><\/path><path d=\"M5.25,20.5 L13.25,20.5 C13.9403559,20.5 14.5,19.9403559 14.5,19.25 C14.5,18.5596441 13.9403559,18 13.25,18 L5.25,18 C4.55964406,18 4,18.5596441 4,19.25 C4,19.9403559 4.55964406,20.5 5.25,20.5 Z\" id=\"Shape\"><\/path><path d=\"M8,1.25 L8,19.25 C8,19.9403559 8.55964406,20.5 9.25,20.5 C9.94035594,20.5 10.5,19.9403559 10.5,19.25 L10.5,1.25 C10.5,0.559644063 9.94035594,0 9.25,0 C8.55964406,0 8,0.559644063 8,1.25 Z\" id=\"Shape\"><\/path><\/g><g id=\"Group\" transform=\"translate(15.000000, 8.700000)\"><path d=\"M1.4609612,1.70000076 L10.5189207,1.70000076 L10.5390388,2.45720466 C10.5390388,2.75698225 10.8660861,3 11.2695194,3 C11.6729527,3 12,2.75698225 12,2.45720466 L11.9798819,0.542795343 C11.9798819,0.243017753 11.6528346,0 11.2494013,0 L0.730480602,0 C0.327047306,0 0,0.243017753 0,0.542795343 L0.0201181228,2.45720466 C0.0201181228,2.75698225 0.347165428,3 0.750598725,3 C1.15403202,3 1.48107933,2.75698225 1.48107933,2.45720466 L1.4609612,1.70000076 Z\" id=\"Shape\" fill-rule=\"nonzero\"><\/path><path d=\"M5,1.6097561 L5,10.3902439 C5,10.7270029 5.44771525,11 6,11 C6.55228475,11 7,10.7270029 7,10.3902439 L7,1.6097561 C7,1.2729971 6.55228475,1 6,1 C5.44771525,1 5,1.2729971 5,1.6097561 Z\" id=\"Shape\" fill-rule=\"nonzero\"><\/path><rect id=\"Rectangle-12\" x=\"2\" y=\"10\" width=\"8\" height=\"1.79999995\" rx=\"0.899999976\"><\/rect><\/g><\/g><\/g><\/g><\/svg><\/span><\/div><ul class=\"jfToolbar-select jfToolbar-select-heading\" data-command=\"heading\"><li data-value=\"6\" style=\"font-size:0.67em\" data-selected=\"true\">Small<\/li><li data-value=\"5\" style=\"font-size:0.83em\" data-selected=\"false\">Normal<\/li><li data-value=\"3\" style=\"font-size:1.17em\" data-selected=\"false\">Large<\/li><li data-value=\"1\" style=\"font-size:2em\" data-selected=\"false\">Huge<\/li><\/ul><\/div><div id=\"input_47_bold\" data-command=\"bold\" class=\"jfToolbar-item breakBefore forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-bold \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Bold<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Bold\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"bold\" transform=\"translate(9.000000, 6.000000)\"><path d=\"M2.47159091,2.5 L2.47159091,8.75 L8.65056818,8.75 C9.96967752,8.75 11.1221591,7.38998343 11.1221591,5.625 C11.1221591,3.86001657 9.96967752,2.5 8.65056818,2.5 L2.47159091,2.5 Z M1.23579545,0 L8.65056818,0 C11.4265247,0 13.59375,2.55749187 13.59375,5.625 C13.59375,8.69250813 11.4265247,11.25 8.65056818,11.25 L1.23579545,11.25 C0.553284471,11.25 0,10.6903559 0,10 L0,1.25 C0,0.559644063 0.553284471,0 1.23579545,0 Z\" id=\"Shape\"><\/path><path d=\"M2.5,11.40625 L2.5,17.65625 L9.90384615,17.65625 C11.2992605,17.65625 12.5,16.2904088 12.5,14.53125 C12.5,12.7720912 11.2992605,11.40625 9.90384615,11.40625 L2.5,11.40625 Z M1.25,8.90625 L9.90384615,8.90625 C12.7567761,8.90625 15,11.4579172 15,14.53125 C15,17.6045828 12.7567761,20.15625 9.90384615,20.15625 L1.25,20.15625 C0.559644063,20.15625 0,19.5966059 0,18.90625 L0,10.15625 C0,9.46589406 0.559644063,8.90625 1.25,8.90625 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_47_italic\" data-command=\"italic\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-italic \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Italic<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Italic\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"italic\" transform=\"translate(9.000000, 6.000000)\"><path d=\"M13.5882353,0 L4.94117647,0 C4.25894237,0 3.70588235,0.553060015 3.70588235,1.23529412 C3.70588235,1.91752822 4.25894237,2.47058824 4.94117647,2.47058824 L13.5882353,2.47058824 C14.2704694,2.47058824 14.8235294,1.91752822 14.8235294,1.23529412 C14.8235294,0.553060015 14.2704694,0 13.5882353,0 Z\" id=\"Shape\"><\/path><path d=\"M9.88235294,17.2941176 L1.23529412,17.2941176 C0.553060015,17.2941176 0,17.8471777 0,18.5294118 C0,19.2116459 0.553060015,19.7647059 1.23529412,19.7647059 L9.88235294,19.7647059 C10.564587,19.7647059 11.1176471,19.2116459 11.1176471,18.5294118 C11.1176471,17.8471777 10.564587,17.2941176 9.88235294,17.2941176 Z\" id=\"Shape\"><\/path><path d=\"M8.69458806,0.895932724 L3.75341159,18.1900504 C3.56598747,18.8460348 3.94583065,19.5297525 4.60181508,19.7171766 C5.2577995,19.9046008 5.94151722,19.5247576 6.12894135,18.8687732 L11.0701178,1.57465551 C11.2575419,0.918671083 10.8776988,0.234953363 10.2217143,0.0475292411 C9.56572991,-0.139894881 8.88201219,0.239948297 8.69458806,0.895932724 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_47_underline\" data-command=\"underline\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-underline \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Underline<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Underline\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"underline\" transform=\"translate(7.000000, 5.000000)\"><path d=\"M2.15909091,1.29545455 L2.15909091,8.27097902 C2.15909091,12.2813233 5.34161889,15.5454545 9.28409091,15.5454545 C13.2265629,15.5454545 16.4090909,12.2813233 16.4090909,8.27097902 L16.4090909,1.29545455 C16.4090909,0.579994756 15.8290962,0 15.1136364,0 C14.3981766,0 13.8181818,0.579994756 13.8181818,1.29545455 L13.8181818,8.27097902 C13.8181818,10.864879 11.780757,12.9545455 9.28409091,12.9545455 C6.78742483,12.9545455 4.75,10.864879 4.75,8.27097902 L4.75,1.29545455 C4.75,0.579994756 4.17000524,0 3.45454545,0 C2.73908566,0 2.15909091,0.579994756 2.15909091,1.29545455 Z\" id=\"Shape\"><\/path><path d=\"M1.29545455,20.7272727 L16.8409091,20.7272727 C17.5563689,20.7272727 18.1363636,20.147278 18.1363636,19.4318182 C18.1363636,18.7163584 17.5563689,18.1363636 16.8409091,18.1363636 L1.29545455,18.1363636 C0.579994756,18.1363636 0,18.7163584 0,19.4318182 C0,20.147278 0.579994756,20.7272727 1.29545455,20.7272727 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_47_createLink\" data-command=\"createLink\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-createLink \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Underline Copy<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Underline-Copy\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"link\" transform=\"translate(6.000000, 6.000000)\"><path d=\"M8.12250978,12.0615096 C9.11153092,13.434589 10.6344227,14.2986277 12.2960505,14.422209 C13.960001,14.5459629 15.5906008,13.9142984 16.7617681,12.6976288 L19.3990078,9.95891998 C21.5549175,7.64114792 21.5244655,4.00194322 19.3454622,1.73910167 C17.139984,-0.551233494 13.5527271,-0.583605157 11.3086344,1.66720454 L9.78321622,3.24190674 C9.27889786,3.76258411 9.29215946,4.59350732 9.81283683,5.09782568 C10.3335142,5.60214404 11.1644374,5.58888244 11.6687558,5.06820507 L13.1808677,3.50704343 C14.3730084,2.31152892 16.2689674,2.32863819 17.4546094,3.55989839 C18.6667264,4.81865222 18.683922,6.87363295 17.492498,8.15466767 L14.8707504,10.8770033 C14.2384113,11.5339102 13.371049,11.8699104 12.4907435,11.804439 C11.6081154,11.7387948 10.7913272,11.275376 10.2524902,10.527297 C9.82882911,9.93911912 9.00857156,9.80575194 8.4203937,10.2294131 C7.83221584,10.6530742 7.69884867,11.4733317 8.12250978,12.0615096 Z\" id=\"Shape\"><\/path><path d=\"M12.8774902,8.93849043 C11.8884691,7.56541104 10.3655773,6.70137225 8.70394945,6.57779104 C7.03999899,6.45403709 5.40939918,7.08570163 4.23823187,8.30237124 L1.60099221,11.04108 C-0.554917535,13.3588521 -0.524465488,16.9980568 1.65453778,19.2608983 C3.86001604,21.5512335 7.4472729,21.5836052 9.69136555,19.3327955 L11.2106491,17.7553425 C11.7134482,17.2331979 11.6977656,16.4023168 11.175621,15.8995177 C10.6534764,15.3967186 9.82259538,15.4124012 9.31979625,15.9345457 L7.81647565,17.4957074 C6.62699163,18.6884711 4.7310326,18.6713618 3.54539059,17.4401016 C2.33327358,16.1813478 2.31607797,14.1263671 3.50750204,12.8453323 L6.12924958,10.1229967 C6.76158874,9.46608985 7.62895105,9.13008955 8.50925653,9.19556102 C9.39188462,9.26120523 10.2086728,9.72462402 10.7475098,10.472703 C11.1711709,11.0608809 11.9914284,11.1942481 12.5796063,10.7705869 C13.1677842,10.3469258 13.3011513,9.52666829 12.8774902,8.93849043 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><div class=\"jfToolbar-modal forUrl\"><input type=\"url\" id=\"modalLinkUrl\" class=\"jfModal-input jfModal-modalLinkUrl\" data-disable-enter-event=\"true\" data-disable-escape-event=\"true\" placeholder=\"Enter URL\" aria-label=\"link url input\"\/><div class=\"modal-btn\">Ok<\/div><\/div><\/div><div id=\"input_47_ul\" data-command=\"insertUnorderedList\" class=\"jfToolbar-item breakBefore forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-ul \"><svg viewBox=\"0 0 18 18\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>NumberList Copy 2<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"NumberList-Copy-2\" fill=\"#4A4A4A\"><rect id=\"Rectangle-8\" x=\"6\" y=\"2\" width=\"9\" height=\"2\" rx=\"1\"><\/rect><rect id=\"Rectangle-8-Copy\" x=\"6\" y=\"7\" width=\"9\" height=\"2\" rx=\"1\"><\/rect><rect id=\"Rectangle-8-Copy-2\" x=\"6\" y=\"12\" width=\"9\" height=\"2\" rx=\"1\"><\/rect><circle id=\"Oval-2\" cx=\"3\" cy=\"3\" r=\"1\"><\/circle><circle id=\"Oval-2-Copy\" cx=\"3\" cy=\"8\" r=\"1\"><\/circle><circle id=\"Oval-2-Copy-2\" cx=\"3\" cy=\"13\" r=\"1\"><\/circle><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_47_ol\" data-command=\"insertOrderedList\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-ol \"><svg viewBox=\"0 0 18 18\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"NumberList-Copy\" fill=\"#4A4A4A\"><g id=\"Group\" transform=\"translate(1.000000, 1.000000)\"><path d=\"M0,11 L2,11 L2,11.5 L1,11.5 L1,12.5 L2,12.5 L2,13 L0,13 L0,14 L3,14 L3,10 L0,10 L0,11 Z M0,6 L1.8,6 L0,8.1 L0,9 L3,9 L3,8 L1.2,8 L3,5.9 L3,5 L0,5 L0,6 Z M1,4 L2,4 L2,0 L0,0 L0,1 L1,1 L1,4 Z\" id=\"Shape\"><\/path><\/g><rect id=\"Rectangle-8\" x=\"6\" y=\"2\" width=\"9\" height=\"2\"><\/rect><rect id=\"Rectangle-8-Copy\" x=\"6\" y=\"7\" width=\"9\" height=\"2\"><\/rect><rect id=\"Rectangle-8-Copy-2\" x=\"6\" y=\"12\" width=\"9\" height=\"2\"><\/rect><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_47_quote\" data-command=\"formatBlock\" class=\"jfToolbar-item breakBefore forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-quote \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>quote<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"quote\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"Group-4\" transform=\"translate(10.000000, 11.000000)\"><path d=\"M9.68229167,9.75 L10.4783857,9.75 L10.4783857,9.75 C10.8611857,9.75 11.2103962,9.53147077 11.3777535,9.18719271 L12.8993679,6.0570147 L12.8993679,6.0570147 C12.9655901,5.92078603 13,5.77129358 13,5.61982199 L13,1 L13,1 C13,0.44771525 12.5522847,1.20591542e-16 12,2.22044605e-16 L8.3125,0 L8.3125,0 C7.76021525,1.01453063e-16 7.3125,0.44771525 7.3125,1 L7.3125,4.85 L7.3125,4.85 C7.3125,5.40228475 7.76021525,5.85 8.3125,5.85 L8.734375,5.85 L8.734375,5.85 C9.22578821,5.85 9.62415732,6.24836912 9.62415732,6.73978232 C9.62415732,6.87455906 9.59354003,7.0075748 9.53461662,7.12878867 L8.88205005,8.47121133 L8.88205005,8.47121133 C8.66720778,8.91317258 8.85132408,9.44561702 9.29328532,9.6604593 C9.41449919,9.7193827 9.54751493,9.75 9.68229167,9.75 Z\" id=\"Shape\"><\/path><path d=\"M2.36979167,9.75 L3.16588569,9.75 L3.16588569,9.75 C3.54868575,9.75 3.89789615,9.53147077 4.06525355,9.18719271 L5.58686785,6.0570147 L5.58686785,6.0570147 C5.65309013,5.92078603 5.6875,5.77129358 5.6875,5.61982199 L5.6875,1 L5.6875,1 C5.6875,0.44771525 5.23978475,1.20591542e-16 4.6875,2.22044605e-16 L1,0 L1,0 C0.44771525,1.01453063e-16 -6.76353751e-17,0.44771525 0,1 L0,4.85 L0,4.85 C-4.22892021e-16,5.40228475 0.44771525,5.85 1,5.85 L1.421875,5.85 L1.421875,5.85 C1.91328821,5.85 2.31165732,6.24836912 2.31165732,6.73978232 C2.31165732,6.87455906 2.28104003,7.0075748 2.22211662,7.12878867 L1.56955005,8.47121133 L1.56955005,8.47121133 C1.35470778,8.91317258 1.53882408,9.44561702 1.98078532,9.6604593 C2.10199919,9.7193827 2.23501493,9.75 2.36979167,9.75 Z\" id=\"Shape-Copy\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_47_hr\" data-command=\"insertHorizontalRule\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-hr \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Break<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Break\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"minus\" transform=\"translate(4.000000, 14.000000)\"><path d=\"M1.5625,3.125 L23.4375,3.125 C24.3004449,3.125 25,2.42544492 25,1.5625 C25,0.699555078 24.3004449,0 23.4375,0 L1.5625,0 C0.699555078,0 0,0.699555078 0,1.5625 C0,2.42544492 0.699555078,3.125 1.5625,3.125 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><div id=\"input_47_imagePicker\" data-command=\"insertImage\" class=\"jfToolbar-item forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-imagePicker \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Image<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Image\" fill=\"#4A4A4A\"><g transform=\"translate(4.000000, 4.000000)\"><path d=\"M4.23529412,2.82352941 C3.455598,2.82352941 2.82352941,3.455598 2.82352941,4.23529412 L2.82352941,19.7647059 C2.82352941,20.544402 3.455598,21.1764706 4.23529412,21.1764706 L19.7647059,21.1764706 C20.544402,21.1764706 21.1764706,20.544402 21.1764706,19.7647059 L21.1764706,4.23529412 C21.1764706,3.455598 20.544402,2.82352941 19.7647059,2.82352941 L4.23529412,2.82352941 Z M4.23529412,0 L19.7647059,0 C22.1037942,-3.13474736e-16 24,1.89620577 24,4.23529412 L24,19.7647059 C24,22.1037942 22.1037942,24 19.7647059,24 L4.23529412,24 C1.89620577,24 3.13474736e-16,22.1037942 0,19.7647059 L0,4.23529412 C-3.13474736e-16,1.89620577 1.89620577,4.70212105e-16 4.23529412,0 Z\" id=\"Rectangle-path\" fill-rule=\"nonzero\"><\/path><circle id=\"Oval\" cx=\"8\" cy=\"8\" r=\"2\"><\/circle><path d=\"M21.5506729,16.416153 C22.1109903,16.9757102 23.0194444,16.9757102 23.5797619,16.416153 C24.1400794,15.8565958 24.1400794,14.9493743 23.5797619,14.3898171 L17.601501,8.4196679 C17.0411836,7.8601107 16.1327295,7.8601107 15.572412,8.4196679 L2.4202381,21.5539963 C1.85992063,22.1135534 1.85992063,23.0207749 2.4202381,23.5803321 C2.98055556,24.1398893 3.88900966,24.1398893 4.44932712,23.5803321 L16.5869565,11.4591717 L21.5506729,16.416153 Z\" id=\"Shape\" fill-rule=\"nonzero\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><div class=\"jfToolbar-modal forImage\"><input type=\"url\" id=\"modalImageUrl\" class=\"jfModal-input jfModal-modalImageUrl\" data-disable-enter-event=\"true\" data-disable-escape-event=\"true\" placeholder=\"Enter image URL\" aria-label=\"image url input\"\/><div class=\"modal-btn\">Ok<\/div><\/div><\/div><div id=\"input_47_emoji\" data-command=\"insertEmoji\" class=\"jfToolbar-item hasDropdown forBoth\"><div class=\"jfToolbar-icon\"><span class=\"iconSvg  jftoolbar-emoji \"><svg viewBox=\"0 0 32 32\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\"><title>Smiley<\/title><desc>Created with Sketch.<\/desc><defs><\/defs><g id=\"Icons\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\"><g id=\"Smiley\" fill-rule=\"nonzero\" fill=\"#4A4A4A\"><g id=\"if_smile-o_1608409\" transform=\"translate(3.000000, 3.000000)\"><path d=\"M19.4451446,16.0843869 C19.0223005,17.4164151 18.2337534,18.4897437 17.0795033,19.3043725 C15.9252533,20.1190014 14.6224364,20.5263158 13.1710526,20.5263158 C11.7196689,20.5263158 10.416852,20.1190014 9.26260193,19.3043725 C8.10835187,18.4897437 7.31980479,17.4164151 6.89696071,16.0843869 C6.80553496,15.8091744 6.8283914,15.5422183 6.96553002,15.2835186 C7.10266864,15.0248189 7.31980479,14.8514351 7.61693847,14.7633671 C7.90264393,14.6752991 8.17977823,14.6973161 8.44834136,14.8294181 C8.7169045,14.9615201 8.89689894,15.1706815 8.98832468,15.4569025 C9.27403015,16.3375823 9.80258525,17.0503826 10.57399,17.5953032 C11.3453947,18.1402239 12.2110823,18.4126842 13.1710526,18.4126842 C14.131023,18.4126842 14.9967105,18.1402239 15.7681153,17.5953032 C16.53952,17.0503826 17.0680751,16.3375823 17.3537806,15.4569025 C17.4452063,15.1706815 17.6280578,14.9615201 17.9023351,14.8294181 C18.1766123,14.6973161 18.4566037,14.6752991 18.7423091,14.7633671 C19.0280146,14.8514351 19.2394366,15.0248189 19.3765752,15.2835186 C19.5137139,15.5422183 19.5365703,15.8091744 19.4451446,16.0843869 Z M10.9473684,8.72368421 C10.9473684,9.33751371 10.7302118,9.86158512 10.2958984,10.2958984 C9.86158512,10.7302118 9.33751371,10.9473684 8.72368421,10.9473684 C8.10985471,10.9473684 7.58578331,10.7302118 7.15146998,10.2958984 C6.71715666,9.86158512 6.5,9.33751371 6.5,8.72368421 C6.5,8.10985471 6.71715666,7.58578331 7.15146998,7.15146998 C7.58578331,6.71715666 8.10985471,6.5 8.72368421,6.5 C9.33751371,6.5 9.86158512,6.71715666 10.2958984,7.15146998 C10.7302118,7.58578331 10.9473684,8.10985471 10.9473684,8.72368421 Z M19.5,8.72368421 C19.5,9.33751371 19.2828433,9.86158512 18.84853,10.2958984 C18.4142167,10.7302118 17.8901453,10.9473684 17.2763158,10.9473684 C16.6624863,10.9473684 16.1384149,10.7302118 15.7041016,10.2958984 C15.2697882,9.86158512 15.0526316,9.33751371 15.0526316,8.72368421 C15.0526316,8.10985471 15.2697882,7.58578331 15.7041016,7.15146998 C16.1384149,6.71715666 16.6624863,6.5 17.2763158,6.5 C17.8901453,6.5 18.4142167,6.71715666 18.84853,7.15146998 C19.2828433,7.58578331 19.5,8.10985471 19.5,8.72368421 Z M23.6052632,12.8289474 C23.6052632,11.3696546 23.3190173,9.97490748 22.7465255,8.644706 C22.1740337,7.31450452 21.407905,6.16952097 20.4481394,5.20975535 C19.4883738,4.24998972 18.3433902,3.48386102 17.0131887,2.91136924 C15.6829873,2.33887747 14.2882401,2.05263158 12.8289474,2.05263158 C11.3696546,2.05263158 9.97490748,2.33887747 8.644706,2.91136924 C7.31450452,3.48386102 6.16952097,4.24998972 5.20975535,5.20975535 C4.24998972,6.16952097 3.48386102,7.31450452 2.91136924,8.644706 C2.33887747,9.97490748 2.05263158,11.3696546 2.05263158,12.8289474 C2.05263158,14.2882401 2.33887747,15.6829873 2.91136924,17.0131887 C3.48386102,18.3433902 4.24998972,19.4883738 5.20975535,20.4481394 C6.16952097,21.407905 7.31450452,22.1740337 8.644706,22.7465255 C9.97490748,23.3190173 11.3696546,23.6052632 12.8289474,23.6052632 C14.2882401,23.6052632 15.6829873,23.3190173 17.0131887,22.7465255 C18.3433902,22.1740337 19.4883738,21.407905 20.4481394,20.4481394 C21.407905,19.4883738 22.1740337,18.3433902 22.7465255,17.0131887 C23.3190173,15.6829873 23.6052632,14.2882401 23.6052632,12.8289474 Z M26,13 C26,15.3585069 25.4188368,17.5336372 24.2565104,19.5253906 C23.094184,21.5171441 21.5171441,23.094184 19.5253906,24.2565104 C17.5336372,25.4188368 15.3585069,26 13,26 C10.6414931,26 8.46636285,25.4188368 6.47460938,24.2565104 C4.4828559,23.094184 2.90581597,21.5171441 1.74348958,19.5253906 C0.581163194,17.5336372 0,15.3585069 0,13 C0,10.6414931 0.581163194,8.46636285 1.74348958,6.47460938 C2.90581597,4.4828559 4.4828559,2.90581597 6.47460938,1.74348958 C8.46636285,0.581163194 10.6414931,0 13,0 C15.3585069,0 17.5336372,0.581163194 19.5253906,1.74348958 C21.5171441,2.90581597 23.094184,4.4828559 24.2565104,6.47460938 C25.4188368,8.46636285 26,10.6414931 26,13 Z\" id=\"Shape\"><\/path><\/g><\/g><\/g><\/svg><\/span><\/div><\/div><\/div><div class=\"jfCard-actions\"><button style=\"display:block\" type=\"button\" class=\"jfInput-button forPrev u-left\" data-component=\"button\" aria-label=\"Previous\">Previous<\/button><button style=\"display:block\" type=\"button\" class=\"jfInput-button forNext u-right\" data-component=\"button\" aria-label=\"Next\">Next<\/button><button style=\"display:none\" type=\"submit\" class=\"jfInput-button forSubmit form-submit-button u-right\" data-component=\"button\" aria-label=\"Submit\">Submit<\/button><div class=\"cf\"><div class=\"jfCard-actionsNotification\"><div class=\"jfPressEnter isHidden\">Press<br\/>Enter<\/div><\/div><\/div><div class=\"jfCard-disableSubmitError\"><\/div><\/div><\/div><\/div><\/li><li class=\"form-line\" data-type=\"control_rating\" id=\"id_46\"><div id=\"cid_46\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_rating\"><div class=\"jfCard-index\"><div>28<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_46\" class=\"jfQuestion-label isLeftAlign\" id=\"label_46\"><span class=\"jsQuestionLabelContainer\">Overall performance of the Trainer<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_46_description\"><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" style=\"overflow:hidden\"><div class=\"jfField isFilled\" id=\"rating_46\"><div id=\"input_46\" name=\"q46_overallPerformance\" data-component=\"rating\" class=\"jfRating form-star-rating\"><input type=\"tel\" class=\"jfInput jfRating-shortcut-input\" name=\"jfRating-shortcut-input\" data-qid=\"input_46\" aria-label=\"Select from 1 to 10\"\/><ul class=\"jfRating-items\" name=\"q46_overallPerformance\" data-type=\"stars\" data-item-count=\"10\"><li class=\"jfRating-item jfRating-selection  input_46_1\" data-value=\"1\" tabindex=\"1461\" style=\"height:76px\"><style>\n                \/* #input_46_1:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_46_1.checked .jfRating-svg-container,\n                .jfRating-selection.input_46_1.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q46_overallPerformance\" value=\"1\" title=\"1\" id=\"input_46_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_46_2\" data-value=\"2\" tabindex=\"1462\" style=\"height:76px\"><style>\n                \/* #input_46_2:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_46_2.checked .jfRating-svg-container,\n                .jfRating-selection.input_46_2.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q46_overallPerformance\" value=\"2\" title=\"2\" id=\"input_46_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_46_3\" data-value=\"3\" tabindex=\"1463\" style=\"height:76px\"><style>\n                \/* #input_46_3:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_46_3.checked .jfRating-svg-container,\n                .jfRating-selection.input_46_3.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q46_overallPerformance\" value=\"3\" title=\"3\" id=\"input_46_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_46_4\" data-value=\"4\" tabindex=\"1464\" style=\"height:76px\"><style>\n                \/* #input_46_4:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_46_4.checked .jfRating-svg-container,\n                .jfRating-selection.input_46_4.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q46_overallPerformance\" value=\"4\" title=\"4\" id=\"input_46_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_46_5\" data-value=\"5\" tabindex=\"1465\" style=\"height:76px\"><style>\n                \/* #input_46_5:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_46_5.checked .jfRating-svg-container,\n                .jfRating-selection.input_46_5.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q46_overallPerformance\" value=\"5\" title=\"5\" id=\"input_46_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_46_6\" data-value=\"6\" tabindex=\"1466\" style=\"height:76px\"><style>\n                \/* #input_46_6:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_46_6.checked .jfRating-svg-container,\n                .jfRating-selection.input_46_6.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q46_overallPerformance\" value=\"6\" title=\"6\" id=\"input_46_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_46_7\" data-value=\"7\" tabindex=\"1467\" style=\"height:76px\"><style>\n                \/* #input_46_7:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_46_7.checked .jfRating-svg-container,\n                .jfRating-selection.input_46_7.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q46_overallPerformance\" value=\"7\" title=\"7\" id=\"input_46_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_46_8\" data-value=\"8\" tabindex=\"1468\" style=\"height:76px\"><style>\n                \/* #input_46_8:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_46_8.checked .jfRating-svg-container,\n                .jfRating-selection.input_46_8.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q46_overallPerformance\" value=\"8\" title=\"8\" id=\"input_46_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_46_9\" data-value=\"9\" tabindex=\"1469\" style=\"height:76px\"><style>\n                \/* #input_46_9:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_46_9.checked .jfRating-svg-container,\n                .jfRating-selection.input_46_9.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q46_overallPerformance\" value=\"9\" title=\"9\" id=\"input_46_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_46_10\" data-value=\"10\" tabindex=\"14610\" style=\"height:76px\"><style>\n                \/* #input_46_10:checked + .jfRating-svg-container, *\/\n                .jfRating-selection.input_46_10.checked .jfRating-svg-container,\n                .jfRating-selection.input_46_10.indicate .jfRating-svg-container {\n                  color: #FCC657 !important;\n              }<\/style><input type=\"radio\" class=\"jfRating-input form-radio validate[required]\" name=\"q46_overallPerformance\" value=\"10\" title=\"10\" id=\"input_46_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><input type=\"hidden\" name=\"q46_stars\" class=\"form-textbox\" data-lowest=\"1\"\/><\/div><label class=\"jfField-sublabel\" for=\"input_46\"><\/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;92181484863869-92181484863869&quot;\"\/><div class=\"js-overlayWrapper jfOverlay\" aria-hidden=\"true\"><div class=\"jfOverlay-modalWrapper js-overlay-modalWrapper\"><span class=\"jfOverlay-close\"><span class=\"iconSvg  close \"><svg data-name=\"Layer 1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 209.37 209.37\"><path d=\"M104.1,94.23c-5.83-6-11.26-11.65-16.79-17.2C75.06,64.72,62.72,52.5,50.5,40.17c-1.61-1.63-2.65-1.87-4.22,0a53.62,53.62,0,0,1-5.62,5.61c-1.83,1.58-1.87,2.65-.07,4.42C50.95,60.34,61.17,70.65,71.45,80.91,79,88.46,86.6,96,94.5,103.84L38.58,160l9.18,9.74,56.09-56.38,56.38,56.56,10.38-10.36-56.16-55.81c10-10,19.95-20,29.87-29.88,8-8,16-15.91,23.94-23.94,0.66-.66,1.31-2.42,1-2.78-2.8-3.08-5.82-6-9.24-9.36Z\"><\/path><\/svg><\/span><\/span><img class=\"js-overlayImage jfOverlayImage\" alt=\"close\"\/><\/div><\/div><script src=\"https:\/\/cdn.jotfor.ms\/cardforms\/layout.min.js?c9eb316c\"><\/script><script src=\"https:\/\/www.jotform.com\/ownerView.php?id=92181484863869\"><\/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_12\",\"id\":\"12\",\"type\":\"control_dropdown\"},{\"qid\":\"input_33\",\"id\":\"33\",\"type\":\"control_radio\"},{\"qid\":\"input_3\",\"id\":\"3\",\"type\":\"control_radio\"},{\"qid\":\"input_34\",\"id\":\"34\",\"type\":\"control_yesno\"},{\"qid\":\"input_35\",\"id\":\"35\",\"type\":\"control_checkbox\"},{\"qid\":\"input_32\",\"id\":\"32\",\"type\":\"control_datetime\"},{\"qid\":\"input_30\",\"id\":\"30\",\"type\":\"control_fullname\"},{\"qid\":\"input_26\",\"id\":\"26\",\"type\":\"control_email\"},{\"qid\":\"input_18\",\"id\":\"18\",\"type\":\"control_checkbox\"},{\"qid\":\"input_41\",\"id\":\"41\",\"type\":\"control_imagechoice\"},{\"qid\":\"input_38\",\"id\":\"38\",\"type\":\"control_checkbox\"},{\"qid\":\"input_37\",\"id\":\"37\",\"type\":\"control_yesno\"},{\"qid\":\"input_39\",\"id\":\"39\",\"type\":\"control_yesno\"},{\"qid\":\"input_40\",\"id\":\"40\",\"type\":\"control_yesno\"},{\"qid\":\"input_51\",\"id\":\"51\",\"type\":\"control_yesno\"},{\"qid\":\"input_36\",\"id\":\"36\",\"type\":\"control_textarea\"},{\"qid\":\"input_21\",\"id\":\"21\",\"type\":\"control_checkbox\"},{\"qid\":\"input_31\",\"id\":\"31\",\"type\":\"control_checkbox\"},{\"qid\":\"input_24\",\"id\":\"24\",\"type\":\"control_checkbox\"},{\"qid\":\"input_22\",\"id\":\"22\",\"type\":\"control_checkbox\"},{\"qid\":\"input_7\",\"id\":\"7\",\"type\":\"control_checkbox\"},{\"qid\":\"input_44\",\"id\":\"44\",\"type\":\"control_matrix\"},{\"qid\":\"input_42\",\"id\":\"42\",\"type\":\"control_checkbox\"},{\"qid\":\"input_48\",\"id\":\"48\",\"type\":\"control_matrix\"},{\"qid\":\"input_49\",\"id\":\"49\",\"type\":\"control_matrix\"},{\"qid\":\"input_50\",\"id\":\"50\",\"type\":\"control_time\"},{\"qid\":\"input_47\",\"id\":\"47\",\"type\":\"control_textarea\"},{\"qid\":\"input_46\",\"id\":\"46\",\"type\":\"control_rating\"}],\"allQuestions\":[{\"id\":\"12\",\"type\":\"control_dropdown\",\"isHidden\":false,\"fields\":null},{\"id\":\"33\",\"type\":\"control_radio\",\"isHidden\":false,\"fields\":null},{\"id\":\"3\",\"type\":\"control_radio\",\"isHidden\":false,\"fields\":null},{\"id\":\"34\",\"type\":\"control_yesno\",\"isHidden\":false,\"fields\":null},{\"id\":\"35\",\"type\":\"control_checkbox\",\"isHidden\":false,\"fields\":null},{\"id\":\"32\",\"type\":\"control_datetime\",\"isHidden\":false,\"fields\":null},{\"id\":\"30\",\"type\":\"control_fullname\",\"isHidden\":false,\"fields\":null},{\"id\":\"26\",\"type\":\"control_email\",\"isHidden\":false,\"fields\":null},{\"id\":\"18\",\"type\":\"control_checkbox\",\"isHidden\":false,\"fields\":null},{\"id\":\"41\",\"type\":\"control_imagechoice\",\"isHidden\":false,\"fields\":null},{\"id\":\"38\",\"type\":\"control_checkbox\",\"isHidden\":false,\"fields\":null},{\"id\":\"37\",\"type\":\"control_yesno\",\"isHidden\":false,\"fields\":null},{\"id\":\"39\",\"type\":\"control_yesno\",\"isHidden\":false,\"fields\":null},{\"id\":\"40\",\"type\":\"control_yesno\",\"isHidden\":false,\"fields\":null},{\"id\":\"51\",\"type\":\"control_yesno\",\"isHidden\":false,\"fields\":null},{\"id\":\"36\",\"type\":\"control_textarea\",\"isHidden\":false,\"fields\":null},{\"id\":\"21\",\"type\":\"control_checkbox\",\"isHidden\":false,\"fields\":null},{\"id\":\"31\",\"type\":\"control_checkbox\",\"isHidden\":false,\"fields\":null},{\"id\":\"24\",\"type\":\"control_checkbox\",\"isHidden\":false,\"fields\":null},{\"id\":\"22\",\"type\":\"control_checkbox\",\"isHidden\":false,\"fields\":null},{\"id\":\"7\",\"type\":\"control_checkbox\",\"isHidden\":false,\"fields\":null},{\"id\":\"44\",\"type\":\"control_matrix\",\"isHidden\":false,\"fields\":null},{\"id\":\"42\",\"type\":\"control_checkbox\",\"isHidden\":false,\"fields\":null},{\"id\":\"48\",\"type\":\"control_matrix\",\"isHidden\":false,\"fields\":null},{\"id\":\"49\",\"type\":\"control_matrix\",\"isHidden\":false,\"fields\":null},{\"id\":\"50\",\"type\":\"control_time\",\"isHidden\":false,\"fields\":null},{\"id\":\"47\",\"type\":\"control_textarea\",\"isHidden\":false,\"fields\":null},{\"id\":\"46\",\"type\":\"control_rating\",\"isHidden\":false,\"fields\":null}],\"captchaMode\":null,\"sectionHeaders\":[],\"welcomePageProps\":{\"id\":{\"value\":\"welcomePage\"},\"text\":{\"value\":\"Gauge Refrigeration Management - Classroom Observation Survey\"},\"subHeader\":{\"value\":\"We will introduce you prior to starting the class.\"},\"imageSrc\":{\"value\":\"https:\/\/icons.jotfor.ms\/cardforms\/assets\/icons\/icon-sets\/default\/business-clock.svg\"},\"buttonText\":{\"value\":\"START\"},\"showQuestionCount\":{\"value\":\"No\"},\"isFormTitleVisible\":true},\"formID\":92181484863869,\"fullscreenMode\":true});<\/script><\/body><\/html>\n","Ammonia Training Observation Survey",{"aeea075f8082f93f25f7661f519fc38a":{"smartStyle":{"actions-bg":"#2f2f2f","general-showFormTitle":0,"pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"49cc19090c0763b1a95acca178666ff9":{"smartStyle":{"actions-bg":"#2c2c2d","welcome-titleBackgroundAverage":"#40A5F5","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"0b56d3713d87c51decfa0632d999fb0d":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#40A0F5","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"18b7f1a4389a739337a1d157c0affea8":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#40A0F5","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"7330ff4341cf4176cdd73dfb4564a83d":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#3BA0F5","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"9f9b0f426c60d5c5baa7c5bb1d2b569b":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#40A5F5","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"ffbb68969fd40b483b095c73c4a530ff":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#40A5F5","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"b9b1f5db3802125842daea2c5115dc7b":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#40A5F5","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"9025c488a4bcb15a98e206a55dfda62c":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#40A5F5","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"caff96225dc8e21f4b3683a5e67f6f40":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#40A0F5","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"a9e19af40705cc17d835fbb378e052a3":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#40A5F5","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"3b0eb00e25b1b39156ee3fcf89ca9ad0":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#40A5F5","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"f2c49620d728122066d60fdb69a71f74":{"smartStyle":{"actions-bg":"#2c2c2d","welcome-titleBackgroundAverage":"#40A0F5","pageBg-colorBegin":"rgba(255,255,255,0)","pageBg-colorEnd":"rgba(255,255,255,0)"},"inlineStyle":[]},"15afe72cd7d655b435774132b1c4b719":{"smartStyle":{"actions-bg":"#4094d3","welcome-titleBackgroundAverage":"#40A5F5","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]!="92181484863869"){return;}
var iframe=document.getElementById("92181484863869");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);}})();