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 i72576187442868=new FrameBuilder("72576187442868",false,"","<html lang=\"\"><head><title>Auckland Cycle Touring Association Inc - Membership Application<\/title><link rel=\"canonical\" href=\"https:\/\/form.jotform.co\/72576187442868\"\/><link rel=\"alternate\" type=\"application\/json+oembed\" href=\"https:\/\/www.jotform.com\/oembed\/?format=json&amp;url=http:\/\/www.jotform.com\/form\/72576187442868\" 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;72576187442868\" title=\"oEmbed Form\"\/><meta property=\"og:title\" content=\"Auckland Cycle Touring Association Inc - Membership Application\"\/><meta property=\"og:url\" content=\"http:\/\/www.jotform.co\/form\/72576187442868\"\/><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?319df436\"\/><link id=\"form-css\" type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/stylebuilder\/72576187442868.css?themeID=5975e9c3cf3bfe63366002c1\"\/><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 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=\"jfQuestion-proxy\" class=\"forFullScreen\"><\/div><div>\n        <script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/punycode\/1.4.1\/punycode.min.js\"><\/script>\n<!--[if lt IE 9]><script src=\"https:\/\/cdn.jotfor.ms\/js\/vendor\/flashcanvas.js?3.3.14413\" type=\"text\/javascript\"><\/script><![endif]-->\n<script src=\"https:\/\/cdn.jotfor.ms\/js\/vendor\/jquery-1.8.0.min.js?v=3.3.14413\" type=\"text\/javascript\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/js\/vendor\/jSignature.min.noconflict.js?3.3.14413\" type=\"text\/javascript\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/js\/vendor\/jotform.signaturepad.js?3.3.14413\" type=\"text\/javascript\"><\/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.14413\" type=\"text\/javascript\"><\/script>\n<script src=\"https:\/\/js.jotform.com\/vendor\/postMessage.js?3.3.14413\" type=\"text\/javascript\"><\/script>\n<script src=\"https:\/\/js.jotform.com\/WidgetsServer.js?v=1576149357677\" 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      JotForm.alterTexts({\"nextButtonText\":\"Next\",\"prevButtonText\":\"Previous\",\"submitButtonText\":\"Submit\"});\n\tJotForm.clearFieldOnHide=\"disable\";\n\tJotForm.submitError=\"jumpToFirstError\";\n    \n        setTimeout(function(){\n            var _cFieldFrame = document.getElementById(\"customFieldFrame_23\");\n            if (_cFieldFrame) {\n            _cFieldFrame.onload = function(){ if (typeof widgetFrameLoaded !== 'undefined') { widgetFrameLoaded(23, {\"formID\":72576187442868}) } };\n            _cFieldFrame.src = \"\/\/widgets.jotform.io\/pickers\/datepicker.html?qid=23&ref=\" + encodeURIComponent(window.location.protocol + \"\/\/\" + window.location.host);\n            _cFieldFrame.addClassName(\"custom-field-frame-rendered\");\n            }\n        }, 0);\n        \n\t});\n\n   clearInterval(jsTime);\n }catch(e){}}, 1000);\n\n   JotForm.prepareCalculationsOnTheFly([null,{\"description\":\"\",\"name\":\"name\",\"qid\":\"1\",\"text\":\"Your Name \",\"type\":\"control_fullname\"},{\"description\":\"\",\"name\":\"partnerName\",\"qid\":\"2\",\"text\":\"Partner Name: (if applicable) (second one)\",\"type\":\"control_fullname\"},{\"description\":\"\",\"name\":\"address\",\"qid\":\"3\",\"text\":\"Address\",\"type\":\"control_address\"},{\"description\":\"\",\"name\":\"homePhone4\",\"qid\":\"4\",\"text\":\"Home Phone Number (if applicable)\",\"type\":\"control_phone\"},null,{\"description\":\"\",\"name\":\"yourEmail6\",\"qid\":\"6\",\"subLabel\":\"example@example.com\",\"text\":\"Your Email: \",\"type\":\"control_email\"},null,null,{\"description\":\"\",\"name\":\"signature\",\"qid\":\"9\",\"subLabel\":\"\",\"text\":\"Signature - I agree to all the terms in the above membership waiver\",\"type\":\"control_signature\"},null,{\"name\":\"clickTo\",\"qid\":\"11\",\"text\":\"Membership Waiver\\nIn consideration of acceptance of my (our) application for membership of the Auckland Cycle Touring Association I (we) hereby waive,discharge, and forever release any rights to claims for damage which I (we) may have or which may accrue to me (us) against the Club, its officers, agents and representatives.\",\"type\":\"control_text\"},null,{\"name\":\"clickTo13\",\"qid\":\"13\",\"text\":\"Annual Subscription Fee\\nThe annual subscription of $20 can be paid directly into the Club Bank Account\\nBNZ New Lynn: 02 0184 0213886 00\\nPlease be sure to INCLUDE YOUR NAME in the reference details to ensure that you are credited with the payment. Immediately after making your on line payment please send an email to - treasurer@acta.org.nz including your NAME AND ADDRESS confirming that you have paid your subscription.\",\"type\":\"control_text\"},{\"name\":\"clickTo14\",\"qid\":\"14\",\"text\":\"Send Cheque to the Club Treasurer\\nGeoff Phillips\\n36 Sayegh Street,\\nSt Heliers,\\nAuckland 1071.\",\"type\":\"control_text\"},null,{\"name\":\"clickTo16\",\"qid\":\"16\",\"text\":\"PRIVACY STATEMENT\\nPlease note that the information being gathered in this form is being collected solely for the purposes of managing the clubs activities including advising members of club rides and other club activities. Membership details may be supplied to other members from time to time for Club matters.\\nThe information collected in this form will not be supplied to third parties.\\n&nbsp;\",\"type\":\"control_text\"},{\"description\":\"\",\"name\":\"enterThe\",\"qid\":\"17\",\"text\":\"Enter the message as it&#039;s shown\",\"type\":\"control_captcha\"},null,{\"description\":\"\",\"name\":\"partnerEmail\",\"qid\":\"19\",\"subLabel\":\"example@example.com\",\"text\":\"Partner Email: (if applicable)\",\"type\":\"control_email\"},null,null,null,{\"name\":\"applicationDated\",\"qid\":\"23\",\"text\":\"Application Dated:\",\"type\":\"control_widget\"},{\"description\":\"\",\"name\":\"yourMobile24\",\"qid\":\"24\",\"subLabel\":\"\",\"text\":\"Your Mobile Phone Number (If applicable)\",\"type\":\"control_textbox\"},{\"description\":\"\",\"name\":\"partnerMobile25\",\"qid\":\"25\",\"subLabel\":\"\",\"text\":\"Partner Mobile Phone Number (If applicable)\",\"type\":\"control_textbox\"},{\"description\":\"\",\"name\":\"howWill\",\"qid\":\"26\",\"text\":\"How will you make payment?\",\"type\":\"control_radio\"}]);\n   setTimeout(function() {\nJotForm.paymentExtrasOnTheFly([null,{\"description\":\"\",\"name\":\"name\",\"qid\":\"1\",\"text\":\"Your Name \",\"type\":\"control_fullname\"},{\"description\":\"\",\"name\":\"partnerName\",\"qid\":\"2\",\"text\":\"Partner Name: (if applicable) (second one)\",\"type\":\"control_fullname\"},{\"description\":\"\",\"name\":\"address\",\"qid\":\"3\",\"text\":\"Address\",\"type\":\"control_address\"},{\"description\":\"\",\"name\":\"homePhone4\",\"qid\":\"4\",\"text\":\"Home Phone Number (if applicable)\",\"type\":\"control_phone\"},null,{\"description\":\"\",\"name\":\"yourEmail6\",\"qid\":\"6\",\"subLabel\":\"example@example.com\",\"text\":\"Your Email: \",\"type\":\"control_email\"},null,null,{\"description\":\"\",\"name\":\"signature\",\"qid\":\"9\",\"subLabel\":\"\",\"text\":\"Signature - I agree to all the terms in the above membership waiver\",\"type\":\"control_signature\"},null,{\"name\":\"clickTo\",\"qid\":\"11\",\"text\":\"Membership Waiver\\nIn consideration of acceptance of my (our) application for membership of the Auckland Cycle Touring Association I (we) hereby waive,discharge, and forever release any rights to claims for damage which I (we) may have or which may accrue to me (us) against the Club, its officers, agents and representatives.\",\"type\":\"control_text\"},null,{\"name\":\"clickTo13\",\"qid\":\"13\",\"text\":\"Annual Subscription Fee\\nThe annual subscription of $20 can be paid directly into the Club Bank Account\\nBNZ New Lynn: 02 0184 0213886 00\\nPlease be sure to INCLUDE YOUR NAME in the reference details to ensure that you are credited with the payment. Immediately after making your on line payment please send an email to - treasurer@acta.org.nz including your NAME AND ADDRESS confirming that you have paid your subscription.\",\"type\":\"control_text\"},{\"name\":\"clickTo14\",\"qid\":\"14\",\"text\":\"Send Cheque to the Club Treasurer\\nGeoff Phillips\\n36 Sayegh Street,\\nSt Heliers,\\nAuckland 1071.\",\"type\":\"control_text\"},null,{\"name\":\"clickTo16\",\"qid\":\"16\",\"text\":\"PRIVACY STATEMENT\\nPlease note that the information being gathered in this form is being collected solely for the purposes of managing the clubs activities including advising members of club rides and other club activities. Membership details may be supplied to other members from time to time for Club matters.\\nThe information collected in this form will not be supplied to third parties.\\n&nbsp;\",\"type\":\"control_text\"},{\"description\":\"\",\"name\":\"enterThe\",\"qid\":\"17\",\"text\":\"Enter the message as it&#039;s shown\",\"type\":\"control_captcha\"},null,{\"description\":\"\",\"name\":\"partnerEmail\",\"qid\":\"19\",\"subLabel\":\"example@example.com\",\"text\":\"Partner Email: (if applicable)\",\"type\":\"control_email\"},null,null,null,{\"name\":\"applicationDated\",\"qid\":\"23\",\"text\":\"Application Dated:\",\"type\":\"control_widget\"},{\"description\":\"\",\"name\":\"yourMobile24\",\"qid\":\"24\",\"subLabel\":\"\",\"text\":\"Your Mobile Phone Number (If applicable)\",\"type\":\"control_textbox\"},{\"description\":\"\",\"name\":\"partnerMobile25\",\"qid\":\"25\",\"subLabel\":\"\",\"text\":\"Partner Mobile Phone Number (If applicable)\",\"type\":\"control_textbox\"},{\"description\":\"\",\"name\":\"howWill\",\"qid\":\"26\",\"text\":\"How will you make payment?\",\"type\":\"control_radio\"}]);}, 20); \n<\/script>\n\n      <\/div><div class=\"formFooter black-friday-2019\"><div class=\"formFooter-content\"><a href=\"https:\/\/www.jotform.com\/cards\/?utm_source=formfooter&amp;utm_medium=banner&amp;utm_term=72576187442868&amp;utm_content=2019-black-friday-jotform-logo&amp;utm_campaign=bf2019\" target=\"_blank\" class=\"formFooter-logoLink\"><img class=\"formFooter-logo\" alt=\"JotForm Logo\" src=\"https:\/\/cdn.jotfor.ms\/assets\/img\/logo\/logo-new@1x.png\"\/><\/a><div class=\"formFooter-rightSide\"><div class=\"formFooter-text\"><div class=\"formFooter-text-left\"><img width=\"210\" height=\"46\" alt=\"Black Friday\" src=\"https:\/\/cdn.jotfor.ms\/assets\/img\/campaigns\/2019\/blackfriday\/v4-editor\/footer\/black-friday.svg\"\/><\/div><div class=\"formFooter-text-right\"><div class=\"formFooter-text-top\"><img width=\"100\" height=\"10\" alt=\"Black Friday Update Now\" src=\"https:\/\/cdn.jotfor.ms\/assets\/img\/campaigns\/2019\/blackfriday\/v4-editor\/footer\/update-now.svg\"\/><\/div><div class=\"formFooter-text-bottom\"><img width=\"100\" height=\"30\" alt=\"Black Friday 50% Save\" src=\"https:\/\/cdn.jotfor.ms\/assets\/img\/campaigns\/2019\/blackfriday\/v4-editor\/footer\/save-50.svg\"\/><\/div><\/div><\/div><div class=\"formFooter-button-container\"><a class=\"formFooter-button\" href=\"https:\/\/www.jotform.com\/cards\/?utm_source=formfooter&amp;utm_medium=banner&amp;utm_term=72576187442868&amp;utm_content=2019-black-friday-jb-card&amp;utm_campaign=bf2019\" target=\"_blank\">Create your own JotForm<\/a><\/div><\/div><\/div><div class=\"formFooter-mobile jsNewFormFooter\"><a href=\"https:\/\/www.jotform.com\/cards\/?utm_source=formfooter&amp;utm_medium=banner&amp;utm_term=72576187442868&amp;utm_content=jotform_logo&amp;utm_campaign=powered_by_jotform_signup_powered_by_jotform_cf_mobile_new\" class=\"formFooter-mobileLink\" target=\"_blank\">Create your own<img class=\"formFooter-mobileLogo\" alt=\"JotForm\" src=\"https:\/\/cdn.jotfor.ms\/assets\/img\/cardforms\/mobile_footer_logo.png\"\/><img class=\"formFooter-mobilePodo\" alt=\"JotForm mascot Podo\" src=\"https:\/\/cdn.jotfor.ms\/assets\/img\/cardforms\/footer_podoo.png\"\/><\/a><\/div><\/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\"> 16<\/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=\"jStaticItems\"><\/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 id=\"header_welcomePage\" class=\"jfWelcome-header form-header\" data-component=\"header\" style=\"opacity:1\">Welcome<\/div><div id=\"subHeader_welcomePage\" class=\"jfWelcome-description form-subHeader\">Auckland Cycle Touring Association - Membership Application Form<\/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><form role=\"main\" class=\"jotform-form\" id=\"72576187442868\" name=\"form_72576187442868\" action=\"https:\/\/submit.jotform.co\/submit\/72576187442868\/\" method=\"post\"><input type=\"hidden\" name=\"formID\" value=\"72576187442868\"\/><ul class=\"jfForm-all form-section page-section form-all\" id=\"cardAnimationWrapper\"><li class=\"form-line\" data-type=\"control_text\" id=\"id_16\"><div id=\"cid_16\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_text\"><div class=\"jfCard-index\"><div>1<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\"><div class=\"jfField\"><div id=\"text_16\" class=\"form-html\" data-component=\"text\"><p><strong>PRIVACY STATEMENT<\/strong><\/p>\n<p>Please note that the information being gathered in this form is being collected solely for the purposes of managing the clubs activities including advising members of club rides and other club activities. Membership details may be supplied to other members from time to time for Club matters.<\/p>\n<p>The information collected in this form will not be supplied to third parties.<\/p>\n<p> <\/p><\/div><\/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_fullname\" id=\"id_1\" data-compound-hint=\"\"><div id=\"cid_1\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_fullname\"><div class=\"jfCard-index\"><div>2<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"first_1\" class=\"jfQuestion-label isCenterAlign\" id=\"label_1\"><span class=\"jsQuestionLabelContainer\">Your Name <\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required.<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_1_description\"><span><\/span><\/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_1\" name=\"q1_name[first]\" class=\"form-textbox validate[required] forFullname jfInput-input hasSublabel\" autoComplete=\"given-name\" size=\"10\" value=\"\" data-component=\"first\" required=\"\" aria-required=\"true\" aria-describedby=\"first_1_description\" aria-labelledby=\"label_1 sublabel_1_first\"\/><label class=\"jfField-sublabel \" for=\"first_1\" id=\"sublabel_1_first\">First Name<\/label><\/div><div class=\"jfField\" data-type=\"last\"><input type=\"text\" id=\"last_1\" name=\"q1_name[last]\" class=\"form-textbox validate[required] forFullname jfInput-input hasSublabel\" autoComplete=\"family-name\" size=\"15\" value=\"\" data-component=\"last\" required=\"\" aria-required=\"true\" aria-describedby=\"last_1_description\" aria-labelledby=\"label_1 sublabel_1_last\"\/><label class=\"jfField-sublabel \" for=\"last_1\" id=\"sublabel_1_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_fullname\" id=\"id_2\" data-compound-hint=\"\"><div id=\"cid_2\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_fullname\"><div class=\"jfCard-index\"><div>3<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"first_2\" class=\"jfQuestion-label isCenterAlign\" id=\"label_2\"><span class=\"jsQuestionLabelContainer\">Partner Name: (if applicable) (second one)<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_2_description\"><span><\/span><\/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_2\" name=\"q2_partnerName[first]\" class=\"form-textbox forFullname jfInput-input hasSublabel\" autoComplete=\"given-name\" size=\"10\" value=\"\" data-component=\"first\" aria-required=\"false\" aria-describedby=\"first_2_description\" aria-labelledby=\"label_2 sublabel_2_first\"\/><label class=\"jfField-sublabel \" for=\"first_2\" id=\"sublabel_2_first\">First Name<\/label><\/div><div class=\"jfField\" data-type=\"last\"><input type=\"text\" id=\"last_2\" name=\"q2_partnerName[last]\" class=\"form-textbox forFullname jfInput-input hasSublabel\" autoComplete=\"family-name\" size=\"15\" value=\"\" data-component=\"last\" aria-required=\"false\" aria-describedby=\"last_2_description\" aria-labelledby=\"label_2 sublabel_2_last\"\/><label class=\"jfField-sublabel \" for=\"last_2\" id=\"sublabel_2_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_address\" id=\"id_3\" data-compound-hint=\",,,,\"><div id=\"cid_3\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_address\"><div class=\"jfCard-index\"><div>4<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_3_addr_line1\" class=\"jfQuestion-label isCenterAlign\" id=\"label_3\"><span class=\"jsQuestionLabelContainer\">Address<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required.<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_3_description\"><span><\/span><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\" jfQuestion-fields isCompoundField form-address-table   \" data-wrapper-react=\"true\"><div class=\"jfField  \" data-type=\"address_line_1\"><input type=\"text\" id=\"input_3_addr_line1\" name=\"q3_address[addr_line1]\" class=\"form-textbox validate[required] form-address-line form-address-addr1 forAddress jfInput-input hasSublabel\" autoComplete=\"address-line1\" value=\"\" data-component=\"address_line_1\" required=\"\" aria-required=\"true\" aria-describedby=\"input_3_addr_line1_description\" aria-labelledby=\"label_3 sublabel_3_addr_line1\"\/><label class=\"jfField-sublabel \" for=\"input_3_addr_line1\" id=\"sublabel_3_addr_line1\">Street Address<\/label><\/div><div class=\"jfField  \" data-type=\"address_line_2\"><input type=\"text\" id=\"input_3_addr_line2\" name=\"q3_address[addr_line2]\" class=\"form-textbox form-address-line form-address-addr2 forAddress jfInput-input hasSublabel\" autoComplete=\"address-line2\" size=\"46\" value=\"\" data-component=\"address_line_2\" required=\"\" aria-required=\"true\" aria-describedby=\"input_3_addr_line2_description\" aria-labelledby=\"label_3 sublabel_3_addr_line2\"\/><label class=\"jfField-sublabel \" for=\"input_3_addr_line2\" id=\"sublabel_3_addr_line2\">Street Address Line 2<\/label><\/div><div class=\"jfField\" data-type=\"city\"><input type=\"text\" id=\"input_3_city\" name=\"q3_address[city]\" class=\"form-textbox validate[required] form-address-city forAddress jfInput-input hasSublabel\" autoComplete=\"address-level2\" size=\"21\" value=\"\" data-component=\"city\" required=\"\" aria-required=\"true\" aria-describedby=\"input_3_city_description\" aria-labelledby=\"label_3 sublabel_3_city\"\/><label class=\"jfField-sublabel \" for=\"input_3_city\" id=\"sublabel_3_city\">City<\/label><\/div><div class=\"jfField isHidden\" data-type=\"state\" style=\"display:none\"><input type=\"text\" id=\"input_3_state\" name=\"q3_address[state]\" class=\"form-textbox validate[required] form-address-state forAddress jfInput-input\" autoComplete=\"new-password\" size=\"22\" value=\"\" data-component=\"state\" required=\"\" aria-required=\"true\" aria-describedby=\"input_3_state_description\" aria-labelledby=\"label_3\"\/><label class=\"jfField-sublabel \" for=\"input_3_state\" id=\"sublabel_3_state\"><\/label><\/div><div class=\"jfField\" data-type=\"zip\"><input type=\"text\" id=\"input_3_postal\" name=\"q3_address[postal]\" class=\"form-textbox form-address-postal forAddress jfInput-input hasSublabel\" autoComplete=\"postal-code\" size=\"10\" value=\"\" data-component=\"zip\" required=\"\" aria-required=\"true\" aria-describedby=\"input_3_postal_description\" aria-labelledby=\"label_3 sublabel_3_postal\"\/><label class=\"jfField-sublabel \" for=\"input_3_postal\" id=\"sublabel_3_postal\">Postal \/ Zip Code<\/label><\/div><div class=\"jfField isFilled isHidden\" data-type=\"country\" style=\"display:none\" aria-hidden=\"true\"><select data-component=\"country\" tabindex=\"-1\" required=\"\" id=\"input_3_country\" name=\"q3_address[country]\" class=\"form-dropdown validate[required] form-address-country noTranslate\" autoComplete=\"new-password\" aria-labelledby=\"label_3 sublabel_3_country\"><option value=\"\">Please Select<\/option><option value=\"United States\">United States<\/option><option value=\"Afghanistan\">Afghanistan<\/option><option value=\"Albania\">Albania<\/option><option value=\"Algeria\">Algeria<\/option><option value=\"American Samoa\">American Samoa<\/option><option value=\"Andorra\">Andorra<\/option><option value=\"Angola\">Angola<\/option><option value=\"Anguilla\">Anguilla<\/option><option value=\"Antigua and Barbuda\">Antigua and Barbuda<\/option><option value=\"Argentina\">Argentina<\/option><option value=\"Armenia\">Armenia<\/option><option value=\"Aruba\">Aruba<\/option><option value=\"Australia\">Australia<\/option><option value=\"Austria\">Austria<\/option><option value=\"Azerbaijan\">Azerbaijan<\/option><option value=\"The Bahamas\">The Bahamas<\/option><option value=\"Bahrain\">Bahrain<\/option><option value=\"Bangladesh\">Bangladesh<\/option><option value=\"Barbados\">Barbados<\/option><option value=\"Belarus\">Belarus<\/option><option value=\"Belgium\">Belgium<\/option><option value=\"Belize\">Belize<\/option><option value=\"Benin\">Benin<\/option><option value=\"Bermuda\">Bermuda<\/option><option value=\"Bhutan\">Bhutan<\/option><option value=\"Bolivia\">Bolivia<\/option><option value=\"Bosnia and Herzegovina\">Bosnia and Herzegovina<\/option><option value=\"Botswana\">Botswana<\/option><option value=\"Brazil\">Brazil<\/option><option value=\"Brunei\">Brunei<\/option><option value=\"Bulgaria\">Bulgaria<\/option><option value=\"Burkina Faso\">Burkina Faso<\/option><option value=\"Burundi\">Burundi<\/option><option value=\"Cambodia\">Cambodia<\/option><option value=\"Cameroon\">Cameroon<\/option><option value=\"Canada\">Canada<\/option><option value=\"Cape Verde\">Cape Verde<\/option><option value=\"Cayman Islands\">Cayman Islands<\/option><option value=\"Central African Republic\">Central African Republic<\/option><option value=\"Chad\">Chad<\/option><option value=\"Chile\">Chile<\/option><option value=\"China\">China<\/option><option value=\"Christmas Island\">Christmas Island<\/option><option value=\"Cocos (Keeling) Islands\">Cocos (Keeling) Islands<\/option><option value=\"Colombia\">Colombia<\/option><option value=\"Comoros\">Comoros<\/option><option value=\"Congo\">Congo<\/option><option value=\"Cook Islands\">Cook Islands<\/option><option value=\"Costa Rica\">Costa Rica<\/option><option value=\"Cote d&#x27;Ivoire\">Cote d&#x27;Ivoire<\/option><option value=\"Croatia\">Croatia<\/option><option value=\"Cuba\">Cuba<\/option><option value=\"Cyprus\">Cyprus<\/option><option value=\"Czech Republic\">Czech Republic<\/option><option value=\"Democratic Republic of the Congo\">Democratic Republic of the Congo<\/option><option value=\"Denmark\">Denmark<\/option><option value=\"Djibouti\">Djibouti<\/option><option value=\"Dominica\">Dominica<\/option><option value=\"Dominican Republic\">Dominican Republic<\/option><option value=\"Ecuador\">Ecuador<\/option><option value=\"Egypt\">Egypt<\/option><option value=\"El Salvador\">El Salvador<\/option><option value=\"Equatorial Guinea\">Equatorial Guinea<\/option><option value=\"Eritrea\">Eritrea<\/option><option value=\"Estonia\">Estonia<\/option><option value=\"Ethiopia\">Ethiopia<\/option><option value=\"Falkland Islands\">Falkland Islands<\/option><option value=\"Faroe Islands\">Faroe Islands<\/option><option value=\"Fiji\">Fiji<\/option><option value=\"Finland\">Finland<\/option><option value=\"France\">France<\/option><option value=\"French Polynesia\">French Polynesia<\/option><option value=\"Gabon\">Gabon<\/option><option value=\"The Gambia\">The Gambia<\/option><option value=\"Georgia\">Georgia<\/option><option value=\"Germany\">Germany<\/option><option value=\"Ghana\">Ghana<\/option><option value=\"Gibraltar\">Gibraltar<\/option><option value=\"Greece\">Greece<\/option><option value=\"Greenland\">Greenland<\/option><option value=\"Grenada\">Grenada<\/option><option value=\"Guadeloupe\">Guadeloupe<\/option><option value=\"Guam\">Guam<\/option><option value=\"Guatemala\">Guatemala<\/option><option value=\"Guernsey\">Guernsey<\/option><option value=\"Guinea\">Guinea<\/option><option value=\"Guinea-Bissau\">Guinea-Bissau<\/option><option value=\"Guyana\">Guyana<\/option><option value=\"Haiti\">Haiti<\/option><option value=\"Honduras\">Honduras<\/option><option value=\"Hong Kong\">Hong Kong<\/option><option value=\"Hungary\">Hungary<\/option><option value=\"Iceland\">Iceland<\/option><option value=\"India\">India<\/option><option value=\"Indonesia\">Indonesia<\/option><option value=\"Iran\">Iran<\/option><option value=\"Iraq\">Iraq<\/option><option value=\"Ireland\">Ireland<\/option><option value=\"Israel\">Israel<\/option><option value=\"Italy\">Italy<\/option><option value=\"Jamaica\">Jamaica<\/option><option value=\"Japan\">Japan<\/option><option value=\"Jersey\">Jersey<\/option><option value=\"Jordan\">Jordan<\/option><option value=\"Kazakhstan\">Kazakhstan<\/option><option value=\"Kenya\">Kenya<\/option><option value=\"Kiribati\">Kiribati<\/option><option value=\"North Korea\">North Korea<\/option><option value=\"South Korea\">South Korea<\/option><option value=\"Kosovo\">Kosovo<\/option><option value=\"Kuwait\">Kuwait<\/option><option value=\"Kyrgyzstan\">Kyrgyzstan<\/option><option value=\"Laos\">Laos<\/option><option value=\"Latvia\">Latvia<\/option><option value=\"Lebanon\">Lebanon<\/option><option value=\"Lesotho\">Lesotho<\/option><option value=\"Liberia\">Liberia<\/option><option value=\"Libya\">Libya<\/option><option value=\"Liechtenstein\">Liechtenstein<\/option><option value=\"Lithuania\">Lithuania<\/option><option value=\"Luxembourg\">Luxembourg<\/option><option value=\"Macau\">Macau<\/option><option value=\"Macedonia\">Macedonia<\/option><option value=\"Madagascar\">Madagascar<\/option><option value=\"Malawi\">Malawi<\/option><option value=\"Malaysia\">Malaysia<\/option><option value=\"Maldives\">Maldives<\/option><option value=\"Mali\">Mali<\/option><option value=\"Malta\">Malta<\/option><option value=\"Marshall Islands\">Marshall Islands<\/option><option value=\"Martinique\">Martinique<\/option><option value=\"Mauritania\">Mauritania<\/option><option value=\"Mauritius\">Mauritius<\/option><option value=\"Mayotte\">Mayotte<\/option><option value=\"Mexico\">Mexico<\/option><option value=\"Micronesia\">Micronesia<\/option><option value=\"Moldova\">Moldova<\/option><option value=\"Monaco\">Monaco<\/option><option value=\"Mongolia\">Mongolia<\/option><option value=\"Montenegro\">Montenegro<\/option><option value=\"Montserrat\">Montserrat<\/option><option value=\"Morocco\">Morocco<\/option><option value=\"Mozambique\">Mozambique<\/option><option value=\"Myanmar\">Myanmar<\/option><option value=\"Nagorno-Karabakh\">Nagorno-Karabakh<\/option><option value=\"Namibia\">Namibia<\/option><option value=\"Nauru\">Nauru<\/option><option value=\"Nepal\">Nepal<\/option><option value=\"Netherlands\">Netherlands<\/option><option value=\"Netherlands Antilles\">Netherlands Antilles<\/option><option value=\"New Caledonia\">New Caledonia<\/option><option value=\"New Zealand\">New Zealand<\/option><option value=\"Nicaragua\">Nicaragua<\/option><option value=\"Niger\">Niger<\/option><option value=\"Nigeria\">Nigeria<\/option><option value=\"Niue\">Niue<\/option><option value=\"Norfolk Island\">Norfolk Island<\/option><option value=\"Turkish Republic of Northern Cyprus\">Turkish Republic of Northern Cyprus<\/option><option value=\"Northern Mariana\">Northern Mariana<\/option><option value=\"Norway\">Norway<\/option><option value=\"Oman\">Oman<\/option><option value=\"Pakistan\">Pakistan<\/option><option value=\"Palau\">Palau<\/option><option value=\"Palestine\">Palestine<\/option><option value=\"Panama\">Panama<\/option><option value=\"Papua New Guinea\">Papua New Guinea<\/option><option value=\"Paraguay\">Paraguay<\/option><option value=\"Peru\">Peru<\/option><option value=\"Philippines\">Philippines<\/option><option value=\"Pitcairn Islands\">Pitcairn Islands<\/option><option value=\"Poland\">Poland<\/option><option value=\"Portugal\">Portugal<\/option><option value=\"Puerto Rico\">Puerto Rico<\/option><option value=\"Qatar\">Qatar<\/option><option value=\"Republic of the Congo\">Republic of the Congo<\/option><option value=\"Romania\">Romania<\/option><option value=\"Russia\">Russia<\/option><option value=\"Rwanda\">Rwanda<\/option><option value=\"Saint Barthelemy\">Saint Barthelemy<\/option><option value=\"Saint Helena\">Saint Helena<\/option><option value=\"Saint Kitts and Nevis\">Saint Kitts and Nevis<\/option><option value=\"Saint Lucia\">Saint Lucia<\/option><option value=\"Saint Martin\">Saint Martin<\/option><option value=\"Saint Pierre and Miquelon\">Saint Pierre and Miquelon<\/option><option value=\"Saint Vincent and the Grenadines\">Saint Vincent and the Grenadines<\/option><option value=\"Samoa\">Samoa<\/option><option value=\"San Marino\">San Marino<\/option><option value=\"Sao Tome and Principe\">Sao Tome and Principe<\/option><option value=\"Saudi Arabia\">Saudi Arabia<\/option><option value=\"Senegal\">Senegal<\/option><option value=\"Serbia\">Serbia<\/option><option value=\"Seychelles\">Seychelles<\/option><option value=\"Sierra Leone\">Sierra Leone<\/option><option value=\"Singapore\">Singapore<\/option><option value=\"Slovakia\">Slovakia<\/option><option value=\"Slovenia\">Slovenia<\/option><option value=\"Solomon Islands\">Solomon Islands<\/option><option value=\"Somalia\">Somalia<\/option><option value=\"Somaliland\">Somaliland<\/option><option value=\"South Africa\">South Africa<\/option><option value=\"South Ossetia\">South Ossetia<\/option><option value=\"South Sudan\">South Sudan<\/option><option value=\"Spain\">Spain<\/option><option value=\"Sri Lanka\">Sri Lanka<\/option><option value=\"Sudan\">Sudan<\/option><option value=\"Suriname\">Suriname<\/option><option value=\"Svalbard\">Svalbard<\/option><option value=\"eSwatini\">eSwatini<\/option><option value=\"Sweden\">Sweden<\/option><option value=\"Switzerland\">Switzerland<\/option><option value=\"Syria\">Syria<\/option><option value=\"Taiwan\">Taiwan<\/option><option value=\"Tajikistan\">Tajikistan<\/option><option value=\"Tanzania\">Tanzania<\/option><option value=\"Thailand\">Thailand<\/option><option value=\"Timor-Leste\">Timor-Leste<\/option><option value=\"Togo\">Togo<\/option><option value=\"Tokelau\">Tokelau<\/option><option value=\"Tonga\">Tonga<\/option><option value=\"Transnistria Pridnestrovie\">Transnistria Pridnestrovie<\/option><option value=\"Trinidad and Tobago\">Trinidad and Tobago<\/option><option value=\"Tristan da Cunha\">Tristan da Cunha<\/option><option value=\"Tunisia\">Tunisia<\/option><option value=\"Turkey\">Turkey<\/option><option value=\"Turkmenistan\">Turkmenistan<\/option><option value=\"Turks and Caicos Islands\">Turks and Caicos Islands<\/option><option value=\"Tuvalu\">Tuvalu<\/option><option value=\"Uganda\">Uganda<\/option><option value=\"Ukraine\">Ukraine<\/option><option value=\"United Arab Emirates\">United Arab Emirates<\/option><option value=\"United Kingdom\">United Kingdom<\/option><option value=\"Uruguay\">Uruguay<\/option><option value=\"Uzbekistan\">Uzbekistan<\/option><option value=\"Vanuatu\">Vanuatu<\/option><option value=\"Vatican City\">Vatican City<\/option><option value=\"Venezuela\">Venezuela<\/option><option value=\"Vietnam\">Vietnam<\/option><option value=\"British Virgin Islands\">British Virgin Islands<\/option><option value=\"Isle of Man\">Isle of Man<\/option><option value=\"US Virgin Islands\">US Virgin Islands<\/option><option value=\"Wallis and Futuna\">Wallis and Futuna<\/option><option value=\"Western Sahara\">Western Sahara<\/option><option value=\"Yemen\">Yemen<\/option><option value=\"Zambia\">Zambia<\/option><option value=\"Zimbabwe\">Zimbabwe<\/option><option value=\"other\">Other<\/option><\/select><div tabindex=\"0\" class=\"jfInput-dropdown hasSearch isDrawer\" datatype=\"multiselect\"><div class=\"jfDropdown-wrapper\" tabindex=\"-1\"><div class=\"jfDropdown-chipContainer\"><span class=\"jfDropdown-chip isSingle\" style=\"display:none\">Please Select<\/span><div class=\"jfDropdown-searchWrapper\"><input type=\"text\" class=\"form-textbox jfDropdown-search\" name=\"dropdown_search\" placeholder=\"Please Select\" aria-label=\"Please Select\" value=\"Please Select\"\/><\/div><\/div><span class=\"jfDropdown-toggle\"><\/span><\/div><div id=\"jfDropdown-optionList-3-country\" class=\"jfDropdown-optionListWrapper forDrawer\" aria-hidden=\"true\"><ul data-component=\"country\" required=\"\" class=\"jfDropdown-optionList form-dropdown\"><li data-value=\"\" class=\"jfDropdown-optionListItem\">Please Select<\/li><li data-value=\"United States\" class=\"jfDropdown-optionListItem\">United States<\/li><li data-value=\"Afghanistan\" class=\"jfDropdown-optionListItem\">Afghanistan<\/li><li data-value=\"Albania\" class=\"jfDropdown-optionListItem\">Albania<\/li><li data-value=\"Algeria\" class=\"jfDropdown-optionListItem\">Algeria<\/li><li data-value=\"American Samoa\" class=\"jfDropdown-optionListItem\">American Samoa<\/li><li data-value=\"Andorra\" class=\"jfDropdown-optionListItem\">Andorra<\/li><li data-value=\"Angola\" class=\"jfDropdown-optionListItem\">Angola<\/li><li data-value=\"Anguilla\" class=\"jfDropdown-optionListItem\">Anguilla<\/li><li data-value=\"Antigua and Barbuda\" class=\"jfDropdown-optionListItem\">Antigua and Barbuda<\/li><li data-value=\"Argentina\" class=\"jfDropdown-optionListItem\">Argentina<\/li><li data-value=\"Armenia\" class=\"jfDropdown-optionListItem\">Armenia<\/li><li data-value=\"Aruba\" class=\"jfDropdown-optionListItem\">Aruba<\/li><li data-value=\"Australia\" class=\"jfDropdown-optionListItem\">Australia<\/li><li data-value=\"Austria\" class=\"jfDropdown-optionListItem\">Austria<\/li><li data-value=\"Azerbaijan\" class=\"jfDropdown-optionListItem\">Azerbaijan<\/li><li data-value=\"The Bahamas\" class=\"jfDropdown-optionListItem\">The Bahamas<\/li><li data-value=\"Bahrain\" class=\"jfDropdown-optionListItem\">Bahrain<\/li><li data-value=\"Bangladesh\" class=\"jfDropdown-optionListItem\">Bangladesh<\/li><li data-value=\"Barbados\" class=\"jfDropdown-optionListItem\">Barbados<\/li><li data-value=\"Belarus\" class=\"jfDropdown-optionListItem\">Belarus<\/li><li data-value=\"Belgium\" class=\"jfDropdown-optionListItem\">Belgium<\/li><li data-value=\"Belize\" class=\"jfDropdown-optionListItem\">Belize<\/li><li data-value=\"Benin\" class=\"jfDropdown-optionListItem\">Benin<\/li><li data-value=\"Bermuda\" class=\"jfDropdown-optionListItem\">Bermuda<\/li><li data-value=\"Bhutan\" class=\"jfDropdown-optionListItem\">Bhutan<\/li><li data-value=\"Bolivia\" class=\"jfDropdown-optionListItem\">Bolivia<\/li><li data-value=\"Bosnia and Herzegovina\" class=\"jfDropdown-optionListItem\">Bosnia and Herzegovina<\/li><li data-value=\"Botswana\" class=\"jfDropdown-optionListItem\">Botswana<\/li><li data-value=\"Brazil\" class=\"jfDropdown-optionListItem\">Brazil<\/li><li data-value=\"Brunei\" class=\"jfDropdown-optionListItem\">Brunei<\/li><li data-value=\"Bulgaria\" class=\"jfDropdown-optionListItem\">Bulgaria<\/li><li data-value=\"Burkina Faso\" class=\"jfDropdown-optionListItem\">Burkina Faso<\/li><li data-value=\"Burundi\" class=\"jfDropdown-optionListItem\">Burundi<\/li><li data-value=\"Cambodia\" class=\"jfDropdown-optionListItem\">Cambodia<\/li><li data-value=\"Cameroon\" class=\"jfDropdown-optionListItem\">Cameroon<\/li><li data-value=\"Canada\" class=\"jfDropdown-optionListItem\">Canada<\/li><li data-value=\"Cape Verde\" class=\"jfDropdown-optionListItem\">Cape Verde<\/li><li data-value=\"Cayman Islands\" class=\"jfDropdown-optionListItem\">Cayman Islands<\/li><li data-value=\"Central African Republic\" class=\"jfDropdown-optionListItem\">Central African Republic<\/li><li data-value=\"Chad\" class=\"jfDropdown-optionListItem\">Chad<\/li><li data-value=\"Chile\" class=\"jfDropdown-optionListItem\">Chile<\/li><li data-value=\"China\" class=\"jfDropdown-optionListItem\">China<\/li><li data-value=\"Christmas Island\" class=\"jfDropdown-optionListItem\">Christmas Island<\/li><li data-value=\"Cocos (Keeling) Islands\" class=\"jfDropdown-optionListItem\">Cocos (Keeling) Islands<\/li><li data-value=\"Colombia\" class=\"jfDropdown-optionListItem\">Colombia<\/li><li data-value=\"Comoros\" class=\"jfDropdown-optionListItem\">Comoros<\/li><li data-value=\"Congo\" class=\"jfDropdown-optionListItem\">Congo<\/li><li data-value=\"Cook Islands\" class=\"jfDropdown-optionListItem\">Cook Islands<\/li><li data-value=\"Costa Rica\" class=\"jfDropdown-optionListItem\">Costa Rica<\/li><li data-value=\"Cote d&#x27;Ivoire\" class=\"jfDropdown-optionListItem\">Cote d&#x27;Ivoire<\/li><li data-value=\"Croatia\" class=\"jfDropdown-optionListItem\">Croatia<\/li><li data-value=\"Cuba\" class=\"jfDropdown-optionListItem\">Cuba<\/li><li data-value=\"Cyprus\" class=\"jfDropdown-optionListItem\">Cyprus<\/li><li data-value=\"Czech Republic\" class=\"jfDropdown-optionListItem\">Czech Republic<\/li><li data-value=\"Democratic Republic of the Congo\" class=\"jfDropdown-optionListItem\">Democratic Republic of the Congo<\/li><li data-value=\"Denmark\" class=\"jfDropdown-optionListItem\">Denmark<\/li><li data-value=\"Djibouti\" class=\"jfDropdown-optionListItem\">Djibouti<\/li><li data-value=\"Dominica\" class=\"jfDropdown-optionListItem\">Dominica<\/li><li data-value=\"Dominican Republic\" class=\"jfDropdown-optionListItem\">Dominican Republic<\/li><li data-value=\"Ecuador\" class=\"jfDropdown-optionListItem\">Ecuador<\/li><li data-value=\"Egypt\" class=\"jfDropdown-optionListItem\">Egypt<\/li><li data-value=\"El Salvador\" class=\"jfDropdown-optionListItem\">El Salvador<\/li><li data-value=\"Equatorial Guinea\" class=\"jfDropdown-optionListItem\">Equatorial Guinea<\/li><li data-value=\"Eritrea\" class=\"jfDropdown-optionListItem\">Eritrea<\/li><li data-value=\"Estonia\" class=\"jfDropdown-optionListItem\">Estonia<\/li><li data-value=\"Ethiopia\" class=\"jfDropdown-optionListItem\">Ethiopia<\/li><li data-value=\"Falkland Islands\" class=\"jfDropdown-optionListItem\">Falkland Islands<\/li><li data-value=\"Faroe Islands\" class=\"jfDropdown-optionListItem\">Faroe Islands<\/li><li data-value=\"Fiji\" class=\"jfDropdown-optionListItem\">Fiji<\/li><li data-value=\"Finland\" class=\"jfDropdown-optionListItem\">Finland<\/li><li data-value=\"France\" class=\"jfDropdown-optionListItem\">France<\/li><li data-value=\"French Polynesia\" class=\"jfDropdown-optionListItem\">French Polynesia<\/li><li data-value=\"Gabon\" class=\"jfDropdown-optionListItem\">Gabon<\/li><li data-value=\"The Gambia\" class=\"jfDropdown-optionListItem\">The Gambia<\/li><li data-value=\"Georgia\" class=\"jfDropdown-optionListItem\">Georgia<\/li><li data-value=\"Germany\" class=\"jfDropdown-optionListItem\">Germany<\/li><li data-value=\"Ghana\" class=\"jfDropdown-optionListItem\">Ghana<\/li><li data-value=\"Gibraltar\" class=\"jfDropdown-optionListItem\">Gibraltar<\/li><li data-value=\"Greece\" class=\"jfDropdown-optionListItem\">Greece<\/li><li data-value=\"Greenland\" class=\"jfDropdown-optionListItem\">Greenland<\/li><li data-value=\"Grenada\" class=\"jfDropdown-optionListItem\">Grenada<\/li><li data-value=\"Guadeloupe\" class=\"jfDropdown-optionListItem\">Guadeloupe<\/li><li data-value=\"Guam\" class=\"jfDropdown-optionListItem\">Guam<\/li><li data-value=\"Guatemala\" class=\"jfDropdown-optionListItem\">Guatemala<\/li><li data-value=\"Guernsey\" class=\"jfDropdown-optionListItem\">Guernsey<\/li><li data-value=\"Guinea\" class=\"jfDropdown-optionListItem\">Guinea<\/li><li data-value=\"Guinea-Bissau\" class=\"jfDropdown-optionListItem\">Guinea-Bissau<\/li><li data-value=\"Guyana\" class=\"jfDropdown-optionListItem\">Guyana<\/li><li data-value=\"Haiti\" class=\"jfDropdown-optionListItem\">Haiti<\/li><li data-value=\"Honduras\" class=\"jfDropdown-optionListItem\">Honduras<\/li><li data-value=\"Hong Kong\" class=\"jfDropdown-optionListItem\">Hong Kong<\/li><li data-value=\"Hungary\" class=\"jfDropdown-optionListItem\">Hungary<\/li><li data-value=\"Iceland\" class=\"jfDropdown-optionListItem\">Iceland<\/li><li data-value=\"India\" class=\"jfDropdown-optionListItem\">India<\/li><li data-value=\"Indonesia\" class=\"jfDropdown-optionListItem\">Indonesia<\/li><li data-value=\"Iran\" class=\"jfDropdown-optionListItem\">Iran<\/li><li data-value=\"Iraq\" class=\"jfDropdown-optionListItem\">Iraq<\/li><li data-value=\"Ireland\" class=\"jfDropdown-optionListItem\">Ireland<\/li><li data-value=\"Israel\" class=\"jfDropdown-optionListItem\">Israel<\/li><li data-value=\"Italy\" class=\"jfDropdown-optionListItem\">Italy<\/li><li data-value=\"Jamaica\" class=\"jfDropdown-optionListItem\">Jamaica<\/li><li data-value=\"Japan\" class=\"jfDropdown-optionListItem\">Japan<\/li><li data-value=\"Jersey\" class=\"jfDropdown-optionListItem\">Jersey<\/li><li data-value=\"Jordan\" class=\"jfDropdown-optionListItem\">Jordan<\/li><li data-value=\"Kazakhstan\" class=\"jfDropdown-optionListItem\">Kazakhstan<\/li><li data-value=\"Kenya\" class=\"jfDropdown-optionListItem\">Kenya<\/li><li data-value=\"Kiribati\" class=\"jfDropdown-optionListItem\">Kiribati<\/li><li data-value=\"North Korea\" class=\"jfDropdown-optionListItem\">North Korea<\/li><li data-value=\"South Korea\" class=\"jfDropdown-optionListItem\">South Korea<\/li><li data-value=\"Kosovo\" class=\"jfDropdown-optionListItem\">Kosovo<\/li><li data-value=\"Kuwait\" class=\"jfDropdown-optionListItem\">Kuwait<\/li><li data-value=\"Kyrgyzstan\" class=\"jfDropdown-optionListItem\">Kyrgyzstan<\/li><li data-value=\"Laos\" class=\"jfDropdown-optionListItem\">Laos<\/li><li data-value=\"Latvia\" class=\"jfDropdown-optionListItem\">Latvia<\/li><li data-value=\"Lebanon\" class=\"jfDropdown-optionListItem\">Lebanon<\/li><li data-value=\"Lesotho\" class=\"jfDropdown-optionListItem\">Lesotho<\/li><li data-value=\"Liberia\" class=\"jfDropdown-optionListItem\">Liberia<\/li><li data-value=\"Libya\" class=\"jfDropdown-optionListItem\">Libya<\/li><li data-value=\"Liechtenstein\" class=\"jfDropdown-optionListItem\">Liechtenstein<\/li><li data-value=\"Lithuania\" class=\"jfDropdown-optionListItem\">Lithuania<\/li><li data-value=\"Luxembourg\" class=\"jfDropdown-optionListItem\">Luxembourg<\/li><li data-value=\"Macau\" class=\"jfDropdown-optionListItem\">Macau<\/li><li data-value=\"Macedonia\" class=\"jfDropdown-optionListItem\">Macedonia<\/li><li data-value=\"Madagascar\" class=\"jfDropdown-optionListItem\">Madagascar<\/li><li data-value=\"Malawi\" class=\"jfDropdown-optionListItem\">Malawi<\/li><li data-value=\"Malaysia\" class=\"jfDropdown-optionListItem\">Malaysia<\/li><li data-value=\"Maldives\" class=\"jfDropdown-optionListItem\">Maldives<\/li><li data-value=\"Mali\" class=\"jfDropdown-optionListItem\">Mali<\/li><li data-value=\"Malta\" class=\"jfDropdown-optionListItem\">Malta<\/li><li data-value=\"Marshall Islands\" class=\"jfDropdown-optionListItem\">Marshall Islands<\/li><li data-value=\"Martinique\" class=\"jfDropdown-optionListItem\">Martinique<\/li><li data-value=\"Mauritania\" class=\"jfDropdown-optionListItem\">Mauritania<\/li><li data-value=\"Mauritius\" class=\"jfDropdown-optionListItem\">Mauritius<\/li><li data-value=\"Mayotte\" class=\"jfDropdown-optionListItem\">Mayotte<\/li><li data-value=\"Mexico\" class=\"jfDropdown-optionListItem\">Mexico<\/li><li data-value=\"Micronesia\" class=\"jfDropdown-optionListItem\">Micronesia<\/li><li data-value=\"Moldova\" class=\"jfDropdown-optionListItem\">Moldova<\/li><li data-value=\"Monaco\" class=\"jfDropdown-optionListItem\">Monaco<\/li><li data-value=\"Mongolia\" class=\"jfDropdown-optionListItem\">Mongolia<\/li><li data-value=\"Montenegro\" class=\"jfDropdown-optionListItem\">Montenegro<\/li><li data-value=\"Montserrat\" class=\"jfDropdown-optionListItem\">Montserrat<\/li><li data-value=\"Morocco\" class=\"jfDropdown-optionListItem\">Morocco<\/li><li data-value=\"Mozambique\" class=\"jfDropdown-optionListItem\">Mozambique<\/li><li data-value=\"Myanmar\" class=\"jfDropdown-optionListItem\">Myanmar<\/li><li data-value=\"Nagorno-Karabakh\" class=\"jfDropdown-optionListItem\">Nagorno-Karabakh<\/li><li data-value=\"Namibia\" class=\"jfDropdown-optionListItem\">Namibia<\/li><li data-value=\"Nauru\" class=\"jfDropdown-optionListItem\">Nauru<\/li><li data-value=\"Nepal\" class=\"jfDropdown-optionListItem\">Nepal<\/li><li data-value=\"Netherlands\" class=\"jfDropdown-optionListItem\">Netherlands<\/li><li data-value=\"Netherlands Antilles\" class=\"jfDropdown-optionListItem\">Netherlands Antilles<\/li><li data-value=\"New Caledonia\" class=\"jfDropdown-optionListItem\">New Caledonia<\/li><li data-value=\"New Zealand\" class=\"jfDropdown-optionListItem\">New Zealand<\/li><li data-value=\"Nicaragua\" class=\"jfDropdown-optionListItem\">Nicaragua<\/li><li data-value=\"Niger\" class=\"jfDropdown-optionListItem\">Niger<\/li><li data-value=\"Nigeria\" class=\"jfDropdown-optionListItem\">Nigeria<\/li><li data-value=\"Niue\" class=\"jfDropdown-optionListItem\">Niue<\/li><li data-value=\"Norfolk Island\" class=\"jfDropdown-optionListItem\">Norfolk Island<\/li><li data-value=\"Turkish Republic of Northern Cyprus\" class=\"jfDropdown-optionListItem\">Turkish Republic of Northern Cyprus<\/li><li data-value=\"Northern Mariana\" class=\"jfDropdown-optionListItem\">Northern Mariana<\/li><li data-value=\"Norway\" class=\"jfDropdown-optionListItem\">Norway<\/li><li data-value=\"Oman\" class=\"jfDropdown-optionListItem\">Oman<\/li><li data-value=\"Pakistan\" class=\"jfDropdown-optionListItem\">Pakistan<\/li><li data-value=\"Palau\" class=\"jfDropdown-optionListItem\">Palau<\/li><li data-value=\"Palestine\" class=\"jfDropdown-optionListItem\">Palestine<\/li><li data-value=\"Panama\" class=\"jfDropdown-optionListItem\">Panama<\/li><li data-value=\"Papua New Guinea\" class=\"jfDropdown-optionListItem\">Papua New Guinea<\/li><li data-value=\"Paraguay\" class=\"jfDropdown-optionListItem\">Paraguay<\/li><li data-value=\"Peru\" class=\"jfDropdown-optionListItem\">Peru<\/li><li data-value=\"Philippines\" class=\"jfDropdown-optionListItem\">Philippines<\/li><li data-value=\"Pitcairn Islands\" class=\"jfDropdown-optionListItem\">Pitcairn Islands<\/li><li data-value=\"Poland\" class=\"jfDropdown-optionListItem\">Poland<\/li><li data-value=\"Portugal\" class=\"jfDropdown-optionListItem\">Portugal<\/li><li data-value=\"Puerto Rico\" class=\"jfDropdown-optionListItem\">Puerto Rico<\/li><li data-value=\"Qatar\" class=\"jfDropdown-optionListItem\">Qatar<\/li><li data-value=\"Republic of the Congo\" class=\"jfDropdown-optionListItem\">Republic of the Congo<\/li><li data-value=\"Romania\" class=\"jfDropdown-optionListItem\">Romania<\/li><li data-value=\"Russia\" class=\"jfDropdown-optionListItem\">Russia<\/li><li data-value=\"Rwanda\" class=\"jfDropdown-optionListItem\">Rwanda<\/li><li data-value=\"Saint Barthelemy\" class=\"jfDropdown-optionListItem\">Saint Barthelemy<\/li><li data-value=\"Saint Helena\" class=\"jfDropdown-optionListItem\">Saint Helena<\/li><li data-value=\"Saint Kitts and Nevis\" class=\"jfDropdown-optionListItem\">Saint Kitts and Nevis<\/li><li data-value=\"Saint Lucia\" class=\"jfDropdown-optionListItem\">Saint Lucia<\/li><li data-value=\"Saint Martin\" class=\"jfDropdown-optionListItem\">Saint Martin<\/li><li data-value=\"Saint Pierre and Miquelon\" class=\"jfDropdown-optionListItem\">Saint Pierre and Miquelon<\/li><li data-value=\"Saint Vincent and the Grenadines\" class=\"jfDropdown-optionListItem\">Saint Vincent and the Grenadines<\/li><li data-value=\"Samoa\" class=\"jfDropdown-optionListItem\">Samoa<\/li><li data-value=\"San Marino\" class=\"jfDropdown-optionListItem\">San Marino<\/li><li data-value=\"Sao Tome and Principe\" class=\"jfDropdown-optionListItem\">Sao Tome and Principe<\/li><li data-value=\"Saudi Arabia\" class=\"jfDropdown-optionListItem\">Saudi Arabia<\/li><li data-value=\"Senegal\" class=\"jfDropdown-optionListItem\">Senegal<\/li><li data-value=\"Serbia\" class=\"jfDropdown-optionListItem\">Serbia<\/li><li data-value=\"Seychelles\" class=\"jfDropdown-optionListItem\">Seychelles<\/li><li data-value=\"Sierra Leone\" class=\"jfDropdown-optionListItem\">Sierra Leone<\/li><li data-value=\"Singapore\" class=\"jfDropdown-optionListItem\">Singapore<\/li><li data-value=\"Slovakia\" class=\"jfDropdown-optionListItem\">Slovakia<\/li><li data-value=\"Slovenia\" class=\"jfDropdown-optionListItem\">Slovenia<\/li><li data-value=\"Solomon Islands\" class=\"jfDropdown-optionListItem\">Solomon Islands<\/li><li data-value=\"Somalia\" class=\"jfDropdown-optionListItem\">Somalia<\/li><li data-value=\"Somaliland\" class=\"jfDropdown-optionListItem\">Somaliland<\/li><li data-value=\"South Africa\" class=\"jfDropdown-optionListItem\">South Africa<\/li><li data-value=\"South Ossetia\" class=\"jfDropdown-optionListItem\">South Ossetia<\/li><li data-value=\"South Sudan\" class=\"jfDropdown-optionListItem\">South Sudan<\/li><li data-value=\"Spain\" class=\"jfDropdown-optionListItem\">Spain<\/li><li data-value=\"Sri Lanka\" class=\"jfDropdown-optionListItem\">Sri Lanka<\/li><li data-value=\"Sudan\" class=\"jfDropdown-optionListItem\">Sudan<\/li><li data-value=\"Suriname\" class=\"jfDropdown-optionListItem\">Suriname<\/li><li data-value=\"Svalbard\" class=\"jfDropdown-optionListItem\">Svalbard<\/li><li data-value=\"eSwatini\" class=\"jfDropdown-optionListItem\">eSwatini<\/li><li data-value=\"Sweden\" class=\"jfDropdown-optionListItem\">Sweden<\/li><li data-value=\"Switzerland\" class=\"jfDropdown-optionListItem\">Switzerland<\/li><li data-value=\"Syria\" class=\"jfDropdown-optionListItem\">Syria<\/li><li data-value=\"Taiwan\" class=\"jfDropdown-optionListItem\">Taiwan<\/li><li data-value=\"Tajikistan\" class=\"jfDropdown-optionListItem\">Tajikistan<\/li><li data-value=\"Tanzania\" class=\"jfDropdown-optionListItem\">Tanzania<\/li><li data-value=\"Thailand\" class=\"jfDropdown-optionListItem\">Thailand<\/li><li data-value=\"Timor-Leste\" class=\"jfDropdown-optionListItem\">Timor-Leste<\/li><li data-value=\"Togo\" class=\"jfDropdown-optionListItem\">Togo<\/li><li data-value=\"Tokelau\" class=\"jfDropdown-optionListItem\">Tokelau<\/li><li data-value=\"Tonga\" class=\"jfDropdown-optionListItem\">Tonga<\/li><li data-value=\"Transnistria Pridnestrovie\" class=\"jfDropdown-optionListItem\">Transnistria Pridnestrovie<\/li><li data-value=\"Trinidad and Tobago\" class=\"jfDropdown-optionListItem\">Trinidad and Tobago<\/li><li data-value=\"Tristan da Cunha\" class=\"jfDropdown-optionListItem\">Tristan da Cunha<\/li><li data-value=\"Tunisia\" class=\"jfDropdown-optionListItem\">Tunisia<\/li><li data-value=\"Turkey\" class=\"jfDropdown-optionListItem\">Turkey<\/li><li data-value=\"Turkmenistan\" class=\"jfDropdown-optionListItem\">Turkmenistan<\/li><li data-value=\"Turks and Caicos Islands\" class=\"jfDropdown-optionListItem\">Turks and Caicos Islands<\/li><li data-value=\"Tuvalu\" class=\"jfDropdown-optionListItem\">Tuvalu<\/li><li data-value=\"Uganda\" class=\"jfDropdown-optionListItem\">Uganda<\/li><li data-value=\"Ukraine\" class=\"jfDropdown-optionListItem\">Ukraine<\/li><li data-value=\"United Arab Emirates\" class=\"jfDropdown-optionListItem\">United Arab Emirates<\/li><li data-value=\"United Kingdom\" class=\"jfDropdown-optionListItem\">United Kingdom<\/li><li data-value=\"Uruguay\" class=\"jfDropdown-optionListItem\">Uruguay<\/li><li data-value=\"Uzbekistan\" class=\"jfDropdown-optionListItem\">Uzbekistan<\/li><li data-value=\"Vanuatu\" class=\"jfDropdown-optionListItem\">Vanuatu<\/li><li data-value=\"Vatican City\" class=\"jfDropdown-optionListItem\">Vatican City<\/li><li data-value=\"Venezuela\" class=\"jfDropdown-optionListItem\">Venezuela<\/li><li data-value=\"Vietnam\" class=\"jfDropdown-optionListItem\">Vietnam<\/li><li data-value=\"British Virgin Islands\" class=\"jfDropdown-optionListItem\">British Virgin Islands<\/li><li data-value=\"Isle of Man\" class=\"jfDropdown-optionListItem\">Isle of Man<\/li><li data-value=\"US Virgin Islands\" class=\"jfDropdown-optionListItem\">US Virgin Islands<\/li><li data-value=\"Wallis and Futuna\" class=\"jfDropdown-optionListItem\">Wallis and Futuna<\/li><li data-value=\"Western Sahara\" class=\"jfDropdown-optionListItem\">Western Sahara<\/li><li data-value=\"Yemen\" class=\"jfDropdown-optionListItem\">Yemen<\/li><li data-value=\"Zambia\" class=\"jfDropdown-optionListItem\">Zambia<\/li><li data-value=\"Zimbabwe\" class=\"jfDropdown-optionListItem\">Zimbabwe<\/li><li data-value=\"other\" class=\"jfDropdown-optionListItem\">Other<\/li><\/ul><\/div><\/div><label class=\"jfField-sublabel \" for=\"input_3_country\" id=\"sublabel_3_country\">Country<\/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_phone\" id=\"id_4\" data-compound-hint=\"\"><div id=\"cid_4\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_phone\"><div class=\"jfCard-index\"><div>5<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_4_area\" class=\"jfQuestion-label isCenterAlign\" id=\"label_4\"><span class=\"jsQuestionLabelContainer\">Home Phone Number (if applicable)<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_4_description\"><span><\/span><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-wrapper-react=\"true\"><div class=\"jfField\" data-type=\"areaCode\"><input type=\"tel\" id=\"input_4_area\" name=\"q4_homePhone4[area]\" class=\"form-textbox forPhone jfInput-input hasSublabel\" autoComplete=\"tel-area-code\" size=\"6\" value=\"\" data-component=\"areaCode\" aria-required=\"false\" aria-describedby=\"input_4_area_description\" aria-labelledby=\"label_4 sublabel_4_area\"\/><label class=\"jfField-sublabel \" for=\"input_4_area\" id=\"sublabel_4_area\">Area Code<\/label><\/div><div class=\"jfField\" data-type=\"phone\"><input type=\"tel\" id=\"input_4_phone\" name=\"q4_homePhone4[phone]\" class=\"form-textbox forPhone jfInput-input hasSublabel\" autoComplete=\"tel-local\" size=\"12\" value=\"\" data-component=\"phone\" aria-required=\"false\" aria-describedby=\"input_4_phone_description\" aria-labelledby=\"label_4 sublabel_4_phone\"\/><label class=\"jfField-sublabel \" for=\"input_4_phone\" id=\"sublabel_4_phone\">Phone Number<\/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_textbox\" id=\"id_24\"><div id=\"cid_24\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_textbox\"><div class=\"jfCard-index\"><div>6<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_24\" class=\"jfQuestion-label isCenterAlign\" id=\"label_24\"><span class=\"jsQuestionLabelContainer\">Your Mobile Phone Number (If applicable)<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required.<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_24_description\"><span><\/span><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\"><div class=\"jfField\" data-type=\"textbox\"><input type=\"text\" id=\"input_24\" name=\"q24_yourMobile24\" data-type=\"input-textbox\" class=\"form-textbox validate[required] jfInput-input\" size=\"20\" value=\"\" data-component=\"textbox\" required=\"\" aria-required=\"true\" aria-describedby=\"input_24_description\" aria-labelledby=\"label_24\"\/><label class=\"jfField-sublabel \" for=\"input_24\"><\/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_textbox\" id=\"id_25\"><div id=\"cid_25\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_textbox\"><div class=\"jfCard-index\"><div>7<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_25\" class=\"jfQuestion-label isCenterAlign\" id=\"label_25\"><span class=\"jsQuestionLabelContainer\">Partner Mobile Phone Number (If applicable)<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_25_description\"><span><\/span><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\"><div class=\"jfField\" data-type=\"textbox\"><input type=\"text\" id=\"input_25\" name=\"q25_partnerMobile25\" data-type=\"input-textbox\" class=\"form-textbox jfInput-input\" size=\"20\" value=\"\" data-component=\"textbox\" aria-required=\"false\" aria-describedby=\"input_25_description\" aria-labelledby=\"label_25\"\/><label class=\"jfField-sublabel \" for=\"input_25\"><\/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_6\"><div id=\"cid_6\" 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_6\" class=\"jfQuestion-label isCenterAlign\" id=\"label_6\"><span class=\"jsQuestionLabelContainer\">Your Email: <\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required.<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_6_description\"><span><\/span><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields questionMode\"><div class=\"jfField\" data-type=\"email\"><input type=\"email\" id=\"input_6\" name=\"q6_yourEmail6\" class=\"form-textbox validate[required, Email] forEmail jfInput-input hasSublabel\" autoComplete=\"email\" size=\"30\" value=\"\" data-component=\"email\" required=\"\" aria-required=\"true\" aria-describedby=\"input_6_description\"\/><label class=\"jfField-sublabel \" for=\"input_6\" id=\"sublabel_input_6\">example@example.com<\/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_email\" id=\"id_19\"><div id=\"cid_19\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_email\"><div class=\"jfCard-index\"><div>9<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_19\" class=\"jfQuestion-label isCenterAlign\" id=\"label_19\"><span class=\"jsQuestionLabelContainer\">Partner Email: (if applicable)<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_19_description\"><span><\/span><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields questionMode\"><div class=\"jfField\" data-type=\"email\"><input type=\"email\" id=\"input_19\" name=\"q19_partnerEmail\" class=\"form-textbox validate[Email] forEmail jfInput-input hasSublabel\" autoComplete=\"email\" size=\"30\" value=\"\" data-component=\"email\" aria-required=\"false\" aria-describedby=\"input_19_description\"\/><label class=\"jfField-sublabel \" for=\"input_19\" id=\"sublabel_input_19\">example@example.com<\/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_text\" id=\"id_11\"><div id=\"cid_11\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_text\"><div class=\"jfCard-index\"><div>10<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\"><div class=\"jfField\"><div id=\"text_11\" class=\"form-html\" data-component=\"text\"><p><strong>Membership Waiver<\/strong><\/p>\n<p>In consideration of acceptance of my (our) application for membership of the Auckland Cycle Touring Association I (we) hereby waive,discharge, and forever release any rights to claims for damage which I (we) may have or which may accrue to me (us) against the Club, its officers, agents and representatives.<\/p><\/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_signature\" id=\"id_9\"><div id=\"cid_9\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_signature\"><div class=\"jfCard-index\"><div>11<\/div><\/div><div class=\"jfCard-question\" data-widget-id=\"528c8b8186659c5616000004\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_9\" class=\"jfQuestion-label isCenterAlign\" id=\"label_9\"><span class=\"jsQuestionLabelContainer\">Signature - I agree to all the terms in the above membership waiver<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required.<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_9_description\"><span><\/span><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\" data-wrapper-react=\"true\"><div class=\"jfField\"><div id=\"signature_pad_9\" class=\"signature-pad-wrapper\" style=\"width:402px;height:202px\"><div data-wrapper-react=\"true\"><!--[if IE 7]><script type=\"text\/javascript\" src=\"\/js\/vendor\/json2.js\"><\/script><![endif]--><\/div><div class=\"signature-line signature-wrapper\" data-component=\"signature\" style=\"width:402px;height:202px\"><div id=\"sig_pad_9\" data-width=\"400\" data-height=\"200\" data-id=\"9\" data-required=\"true\" class=\"pad validate[required]\"><\/div><input type=\"hidden\" name=\"q9_signature\" class=\"output4\" id=\"input_9\"\/><\/div><span class=\"clear-pad-btn clear-pad\">Clear<\/span><label class=\"jfField-sublabel \" for=\"input_9\"><\/label><\/div><div data-wrapper-react=\"true\"><script type=\"text\/javascript\">window.signatureForm = true<\/script><\/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_text\" id=\"id_13\"><div id=\"cid_13\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_text\"><div class=\"jfCard-index\"><div>12<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\"><div class=\"jfField\"><div id=\"text_13\" class=\"form-html\" data-component=\"text\"><p><strong>Annual Subscription Fee<\/strong><\/p>\n<p>The annual subscription of $20 can be paid directly into the Club Bank Account<\/p>\n<p style=\"text-align: center;\">BNZ New Lynn: 02 0184 0213886 00<\/p>\n<p>Please be sure to <strong>INCLUDE YOUR NAME<\/strong> in the reference details to ensure that you are credited with the payment. Immediately after making your on line payment please send an email to - <a href=\"mailto:treasurer@acta.org.nz\" target=\"_blank\" rel=\"nofollow\">treasurer@acta.org.nz<\/a> including your<strong> NAME AND ADDRESS<\/strong> confirming that you have paid your subscription.<\/p><\/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_radio\" id=\"id_26\"><div id=\"cid_26\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_radio\"><div class=\"jfCard-index\"><div>13<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_26\" class=\"jfQuestion-label isCenterAlign\" id=\"label_26\"><span class=\"jsQuestionLabelContainer\">How will you make payment?<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required.<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_26_description\"><span><\/span><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields form-single-column\" data-component=\"radio\"><div class=\"jfField form-radio-item\"><label id=\"label_input_26_0\" class=\"jfRadio withoutImage\" tabindex=\"0\"><input type=\"radio\" class=\"jfRadio-input form-radio validate[required]\" name=\"q26_howWill\" value=\"By a payment into the Clubs Bank Account\" id=\"input_26_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\">By a payment into the Clubs Bank Account<\/span><\/div><\/label><\/div><div class=\"jfField form-radio-item\"><label id=\"label_input_26_1\" class=\"jfRadio withoutImage\" tabindex=\"0\"><input type=\"radio\" class=\"jfRadio-input form-radio validate[required]\" name=\"q26_howWill\" value=\"By sending a cheque to the Treasurer\" id=\"input_26_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\">By sending a cheque to the Treasurer<\/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_text\" id=\"id_14\"><div id=\"cid_14\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_text\"><div class=\"jfCard-index\"><div>14<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\"><div class=\"jfField\"><div id=\"text_14\" class=\"form-html\" data-component=\"text\"><p><strong>Send Cheque to the Club Treasurer<\/strong><\/p>\n<p>Geoff Phillips<\/p>\n<p>36 Sayegh Street,<\/p>\n<p>St Heliers,<\/p>\n<p>Auckland 1071.<\/p><\/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_captcha\" id=\"id_17\"><div id=\"cid_17\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_captcha\"><div class=\"jfCard-index\"><div>15<\/div><\/div><div class=\"jfCard-question\"><div class=\"jfQuestion-fullscreen isHidden\"><\/div><label for=\"input_17\" class=\"jfQuestion-label isCenterAlign\" id=\"label_17\"><span class=\"jsQuestionLabelContainer\">Enter the message as it's shown<\/span><span class=\"jfRequiredStar\">* <span class=\"jfRequiredStar-message\">This field is required.<\/span><\/span><\/label><span class=\"jfQuestion-description\" id=\"input_17_description\"><span><\/span><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\"><div class=\"jfField\"><section data-wrapper-react=\"true\" style=\"margin:0 auto\"><div id=\"recaptcha_visible\" data-component=\"recaptcha\"><\/div><input type=\"hidden\" name=\"recaptcha_visible\" value=\"1\"\/><\/section><\/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_widget\" id=\"id_23\"><div id=\"cid_23\" class=\"jfCard-wrapper\"><div class=\"jfCard\" data-type=\"control_widget\"><div class=\"jfCard-index\"><div>16<\/div><\/div><div class=\"jfCard-question\" data-widget-id=\"52934dbf3be147110a000030\"><label for=\"input_23\" class=\"jfQuestion-label isCenterAlign\" id=\"label_23\"><span class=\"jsQuestionLabelContainer\">Application Dated:<\/span><\/label><span class=\"jfQuestion-description\" id=\"input_23_description\"><span><\/span><\/span><div class=\"jfCard-mobileError jsMobileErrorWrapper\"><\/div><div class=\"jfQuestion-fields\"><div class=\"jfField jfWidget form-input\" dataType=\"textbox\" data-widget-id=\"52934dbf3be147110a000030\"><div class=\"jfWidget-frame jfWidget-frame-centered\" style=\"text-align:left\" data-component=\"widget-field\"><iframe frameBorder=\"0\" scrolling=\"yes\" allowTransparency=\"true\" allow=\"geolocation; microphone; camera; autoplay; encrypted-media; fullscreen\" data-type=\"iframe\" class=\"custom-field-frame\" id=\"customFieldFrame_23\" title=\"Date Picker\" src=\"\" style=\"border:none;width:380px;height:50px\" data-width=\"380\" data-height=\"50\"><\/iframe><div class=\"widget-inputs-wrapper\"><input type=\"hidden\" id=\"input_23\" class=\"form-hidden form-widget  \" name=\"q23_applicationDated\" value=\"\"\/><input type=\"hidden\" id=\"widget_settings_23\" class=\"form-hidden form-widget-settings\" value=\"%5B%7B%22name%22%3A%22dateFormat%22%2C%22value%22%3A%22d.m.y%22%7D%2C%7B%22name%22%3A%22todayDate%22%2C%22value%22%3A%22Yes%22%7D%5D\" data-version=\"2\"\/><\/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: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;72576187442868-72576187442868&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:\/\/www.google.com\/recaptcha\/api.js\"><\/script><script src=\"https:\/\/cdn.jotfor.ms\/cardforms\/layout.min.js?319df436\"><\/script><script src=\"https:\/\/www.jotform.com\/ownerView.php?id=72576187442868\"><\/script><script>window.CardForm = new CardLayout({\"formMode\":\"welcome\",\"isSSOProtected\":false,\"isSaveAndContinueLaterActivated\":false,\"ownerView\":false,\"ownerPercentage\":12,\"isProduction\":true,\"isFormProgressVisible\":true,\"apiURL\":\"https:\/\/api.jotform.com\",\"reviewBeforeSubmit\":null,\"questions\":[{\"qid\":\"input_16\",\"id\":\"16\",\"type\":\"control_text\"},{\"qid\":\"input_1\",\"id\":\"1\",\"type\":\"control_fullname\"},{\"qid\":\"input_2\",\"id\":\"2\",\"type\":\"control_fullname\"},{\"qid\":\"input_3\",\"id\":\"3\",\"type\":\"control_address\"},{\"qid\":\"input_4\",\"id\":\"4\",\"type\":\"control_phone\"},{\"qid\":\"input_24\",\"id\":\"24\",\"type\":\"control_textbox\"},{\"qid\":\"input_25\",\"id\":\"25\",\"type\":\"control_textbox\"},{\"qid\":\"input_6\",\"id\":\"6\",\"type\":\"control_email\"},{\"qid\":\"input_19\",\"id\":\"19\",\"type\":\"control_email\"},{\"qid\":\"input_11\",\"id\":\"11\",\"type\":\"control_text\"},{\"qid\":\"input_9\",\"id\":\"9\",\"type\":\"control_signature\"},{\"qid\":\"input_13\",\"id\":\"13\",\"type\":\"control_text\"},{\"qid\":\"input_26\",\"id\":\"26\",\"type\":\"control_radio\"},{\"qid\":\"input_14\",\"id\":\"14\",\"type\":\"control_text\"},{\"qid\":\"input_17\",\"id\":\"17\",\"type\":\"control_captcha\"},{\"qid\":\"input_23\",\"id\":\"23\",\"type\":\"control_widget\",\"widgetType\":\"field\"}],\"allQuestions\":[{\"id\":\"16\",\"type\":\"control_text\",\"isHidden\":false,\"fields\":null},{\"id\":\"1\",\"type\":\"control_fullname\",\"isHidden\":false,\"fields\":null},{\"id\":\"2\",\"type\":\"control_fullname\",\"isHidden\":false,\"fields\":null},{\"id\":\"3\",\"type\":\"control_address\",\"isHidden\":false,\"fields\":null},{\"id\":\"4\",\"type\":\"control_phone\",\"isHidden\":false,\"fields\":null},{\"id\":\"24\",\"type\":\"control_textbox\",\"isHidden\":false,\"fields\":null},{\"id\":\"25\",\"type\":\"control_textbox\",\"isHidden\":false,\"fields\":null},{\"id\":\"6\",\"type\":\"control_email\",\"isHidden\":false,\"fields\":null},{\"id\":\"19\",\"type\":\"control_email\",\"isHidden\":false,\"fields\":null},{\"id\":\"11\",\"type\":\"control_text\",\"isHidden\":false,\"fields\":null},{\"id\":\"9\",\"type\":\"control_signature\",\"isHidden\":false,\"fields\":null},{\"id\":\"13\",\"type\":\"control_text\",\"isHidden\":false,\"fields\":null},{\"id\":\"26\",\"type\":\"control_radio\",\"isHidden\":false,\"fields\":null},{\"id\":\"14\",\"type\":\"control_text\",\"isHidden\":false,\"fields\":null},{\"id\":\"17\",\"type\":\"control_captcha\",\"isHidden\":false,\"fields\":null},{\"id\":\"23\",\"type\":\"control_widget\",\"isHidden\":false,\"fields\":null}],\"captchaMode\":\"visible\",\"sectionHeaders\":[],\"welcomePageProps\":{\"id\":{\"value\":\"welcomePage\"},\"text\":{\"value\":\"Welcome\"},\"subHeader\":{\"value\":\"Auckland Cycle Touring Association - Membership Application Form\"},\"imageSrc\":{\"value\":\"\"},\"buttonText\":{\"value\":\"START\"},\"showQuestionCount\":{},\"isFormTitleVisible\":true},\"formID\":72576187442868,\"fullscreenMode\":false});<\/script><\/body><\/html>\n","Auckland Cycle Touring Association Inc - Membership Application",Array);(function(){window.handleIFrameMessage=function(e){if(!e.data||!e.data.split)return;var args=e.data.split(":");if(args[2]!="72576187442868"){return;}
var iframe=document.getElementById("72576187442868");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);}})();