function FrameBuilder(formId,appendTo,initialHeight,iframeCode,title){this.formId=formId;this.initialHeight=initialHeight;this.iframeCode=iframeCode;this.frame=null;this.timeInterval=200;this.appendTo=appendTo||false;this.formSubmitted=0;this.init=function(){this.createFrame();this.addFrameContent(this.iframeCode);};this.createFrame=function(){var tmp_is_ie=!!window.ActiveXObject;var htmlCode="<"+"iframe title=\""+title.replace(/[\\"']/g,'\\$&').replace(/&amp;/g,'&')+"\" onload=\"window.parent.scrollTo(0,0)\" src=\"\" allowtransparency=\"true\" name=\""+this.formId+"\" id=\""+this.formId+"\" style=\"width:100%; overflow: hidden; height:"+this.initialHeight+"px; border:none;\" scrolling=\"no\"></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.formId);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.formId);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){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){console.log("error on frame loading",e);}},200);};this.setTimer=function(){var self=this;this.interval=setTimeout(function(){self.changeHeight();},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){var isChrome=/Chrome/.test(navigator.userAgent)&&/Google Inc/.test(navigator.vendor);if(this.frame.contentWindow.document.body.scrollHeight){height=scrollHeight=this.frame.contentWindow.document.body.scrollHeight;}
if(isChrome){height=scrollHeight=this.frame.contentWindow.document.height;}
if(this.frame.contentWindow.document.body.offsetHeight){height=offsetHeight=this.frame.contentWindow.document.body.offsetHeight;}
if(scrollHeight&&offsetHeight){height=Math.max(scrollHeight,offsetHeight);}}}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.init();}
FrameBuilder.get=[];var i71562407348357=new FrameBuilder("71562407348357",false,"","<!DOCTYPE HTML PUBLIC \"-\/\/W3C\/\/DTD HTML 4.01\/\/EN\" \"http:\/\/www.w3.org\/TR\/html4\/strict.dtd\">\n<html class=\"supernova\"><head>\n<meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\" \/>\n<link rel=\"alternate\" type=\"application\/json+oembed\" href=\"https:\/\/www.jotform.com\/oembed\/?format=json&amp;url=http%3A%2F%2Fwww.jotform.com%2Fform%2F71562407348357\" title=\"oEmbed Form\"><link rel=\"alternate\" type=\"text\/xml+oembed\" href=\"https:\/\/www.jotform.com\/oembed\/?format=xml&amp;url=http%3A%2F%2Fwww.jotform.com%2Fform%2F71562407348357\" title=\"oEmbed Form\">\n<meta property=\"og:title\" content=\"Simple_newsletter\" >\n<meta property=\"og:url\" content=\"http:\/\/www.jotformeu.com\/form\/71562407348357\" >\n<meta property=\"og:description\" content=\"Please click the link to complete this form.\">\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0\" \/>\n<meta name=\"HandheldFriendly\" content=\"true\" \/>\n<title>Simple_newsletter<\/title>\n<link href=\"https:\/\/cdn.jotfor.ms\/static\/formCss.css?3.3.985\" rel=\"stylesheet\" type=\"text\/css\" \/>\n<link type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/css\/styles\/nova.css?3.3.985\" \/>\n<link type=\"text\/css\" media=\"print\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/css\/printForm.css?3.3.985\" \/>\n<link type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/themes\/CSS\/566a91c2977cdfcd478b4567.css?\"\/>\n<style type=\"text\/css\">\n    .form-label-left{\n        width:150px !important;\n    }\n    .form-line{\n        padding-top:0px;\n        padding-bottom:0px;\n    }\n    .form-label-right{\n        width:150px !important;\n    }\n    body, html{\n        margin:0;\n        padding:0;\n        background:#ffffff;\n    }\n\n    .form-all{\n        margin:0px auto;\n        padding-top:20px;\n        width:690px;\n        color:rgb(204, 204, 204) !important;\n        font-family:'Helvetica';\n        font-size:16px;\n    }\n<\/style>\n\n<style type=\"text\/css\" id=\"form-designer-style\">\n    \/* Injected CSS Code *\/\n.form-all:after {\n  content: \"\";\n  display: table;\n  clear: both;\n}\n.form-all {\n  font-family: \"Helvetica\", sans-serif;\n}\n.form-all {\n  width: 690px;\n}\n.form-label-left,\n.form-label-right {\n  width: 150px;\n}\n.form-label {\n  white-space: normal;\n}\n.form-label.form-label-auto {\n  display: block;\n  float: none;\n  text-align: left;\n}\n.form-label-left {\n  display: inline-block;\n  white-space: normal;\n  float: left;\n  text-align: left;\n}\n.form-label-right {\n  display: inline-block;\n  white-space: normal;\n  float: left;\n  text-align: right;\n}\n.form-label-top {\n  white-space: normal;\n  display: block;\n  float: none;\n  text-align: left;\n}\n.form-radio-item label:before {\n  top: 0;\n}\n.form-all {\n  font-size: 16px;\n}\n.form-label {\n  font-weight: bold;\n}\n.form-checkbox-item label,\n.form-radio-item label {\n  font-weight: normal;\n}\n.supernova {\n  background-color: #ffffff;\n}\n.supernova body {\n  background-color: transparent;\n}\n\/*\n@width30: (unit(@formWidth, px) + 60px);\n@width60: (unit(@formWidth, px)+ 120px);\n@width90: (unit(@formWidth, px)+ 180px);\n*\/\n\/* | *\/\n@media screen and (min-width: 480px) {\n  .supernova .form-all {\n    border: 1px solid #e6e6e6;\n    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);\n    -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);\n    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.1);\n  }\n}\n\/* | *\/\n\/* | *\/\n@media screen and (max-width: 480px) {\n  .jotform-form .form-all {\n    margin: 0;\n    width: 100%;\n  }\n}\n\/* | *\/\n\/* | *\/\n@media screen and (min-width: 480px) and (max-width: 767px) {\n  .jotform-form .form-all {\n    margin: 0;\n    width: 100%;\n  }\n}\n\/* | *\/\n\/* | *\/\n@media screen and (min-width: 480px) and (max-width: 689px) {\n  .jotform-form .form-all {\n    margin: 0;\n    width: 100%;\n  }\n}\n\/* | *\/\n\/* | *\/\n@media screen and (min-width: 768px) {\n  .jotform-form {\n    padding: 60px 0;\n  }\n}\n\/* | *\/\n\/* | *\/\n@media screen and (max-width: 689px) {\n  .jotform-form .form-all {\n    margin: 0;\n    width: 100%;\n  }\n}\n\/* | *\/\n.supernova .form-all,\n.form-all {\n  background-color: #ffffff;\n  border: 1px solid transparent;\n}\n.form-header-group {\n  border-color: #e6e6e6;\n}\n.form-matrix-table tr {\n  border-color: #e6e6e6;\n}\n.form-matrix-table tr:nth-child(2n) {\n  background-color: #f2f2f2;\n}\n.form-all {\n  color: #cccccc;\n}\n.form-header-group .form-header {\n  color: #cccccc;\n}\n.form-header-group .form-subHeader {\n  color: #e6e6e6;\n}\n.form-sub-label {\n  color: #e6e6e6;\n}\n.form-label-top,\n.form-label-left,\n.form-label-right,\n.form-html {\n  color: #cccccc;\n}\n.form-checkbox-item label,\n.form-radio-item label {\n  color: #e6e6e6;\n}\n.form-line.form-line-active {\n  -webkit-transition-property: all;\n  -moz-transition-property: all;\n  -ms-transition-property: all;\n  -o-transition-property: all;\n  transition-property: all;\n  -webkit-transition-duration: 0.3s;\n  -moz-transition-duration: 0.3s;\n  -ms-transition-duration: 0.3s;\n  -o-transition-duration: 0.3s;\n  transition-duration: 0.3s;\n  -webkit-transition-timing-function: ease;\n  -moz-transition-timing-function: ease;\n  -ms-transition-timing-function: ease;\n  -o-transition-timing-function: ease;\n  transition-timing-function: ease;\n  background-color: #ffffe0;\n}\n\/* omer *\/\n.form-radio-item,\n.form-checkbox-item {\n  padding-bottom: 0px !important;\n}\n.form-radio-item:last-child,\n.form-checkbox-item:last-child {\n  padding-bottom: 0;\n}\n\/* omer *\/\n.form-single-column .form-checkbox-item,\n.form-single-column .form-radio-item {\n  width: 100%;\n}\n.supernova {\n  height: 100%;\n  background-repeat: no-repeat;\n  background-attachment: scroll;\n  background-position: center top;\n  background-repeat: repeat;\n}\n.supernova {\n  background-image: none;\n}\n#stage {\n  background-image: none;\n}\n\/* | *\/\n.form-all {\n  background-repeat: no-repeat;\n  background-attachment: scroll;\n  background-position: center top;\n  background-repeat: repeat;\n}\n.form-header-group {\n  background-repeat: no-repeat;\n  background-attachment: scroll;\n  background-position: center top;\n}\n.form-line {\n  margin-top: 0px;\n  margin-bottom: 0px;\n}\n.form-line {\n  padding: 1px 36px;\n}\n.form-all .form-textbox,\n.form-all .form-radio-other-input,\n.form-all .form-checkbox-other-input,\n.form-all .form-captcha input,\n.form-all .form-spinner input,\n.form-all .form-pagebreak-back,\n.form-all .form-pagebreak-next,\n.form-all .qq-upload-button,\n.form-all .form-error-message {\n  -webkit-border-radius: 0px;\n  -moz-border-radius: 0px;\n  border-radius: 0px;\n}\n.form-all .form-textarea {\n  -webkit-border-radius: 0px;\n  -moz-border-radius: 0px;\n  border-radius: 0px;\n}\n.form-all .qq-upload-button,\n.form-all .form-submit-button,\n.form-all .form-submit-reset,\n.form-all .form-submit-print {\n  height: 38px;\n  width: 160px;\n  font-size: 1em;\n  padding: 9px 15px;\n  font-family: \"Helvetica\", sans-serif;\n  font-size: 19px;\n  font-weight: normal;\n  border: none;\n  border-width: 0px !important;\n  border-style: solid !important;\n}\n.form-all .qq-upload-button,\n.form-all .form-submit-button,\n.form-all .form-submit-reset,\n.form-all .form-submit-print {\n  color: #fdfdfd !important;\n  background: #ff6600;\n  box-shadow: none;\n  text-shadow: none;\n}\n.form-all .form-pagebreak-back,\n.form-all .form-pagebreak-next {\n  font-size: 1em;\n  padding: 9px 15px;\n  font-family: \"Helvetica\", sans-serif;\n  font-size: 16px;\n  font-weight: normal;\n}\n\/*\n& when ( @buttonFontType = google ) {\n\t@import (css) \"@{buttonFontLink}\";\n}\n*\/\nh2.form-header {\n  line-height: 1.618em;\n  font-size: 1.714em;\n}\nh2 ~ .form-subHeader {\n  line-height: 1.5em;\n  font-size: 1.071em;\n}\n.form-header-group {\n  text-align: left;\n}\n\/*.form-dropdown,\n.form-radio-item,\n.form-checkbox-item,\n.form-radio-other-input,\n.form-checkbox-other-input,*\/\n.form-captcha input,\n.form-spinner input,\n.form-error-message {\n  padding: 4px 3px 2px 3px;\n}\n.form-header-group {\n  font-family: \"Helvetica\", sans-serif;\n}\n.form-section {\n  padding: 0px 0px 0px 0px;\n}\n.form-header-group {\n  margin: 12px 36px 12px 36px;\n}\n.form-header-group {\n  padding: 24px 0px 24px 0px;\n}\n.form-textbox,\n.form-textarea {\n  color: #1c1c1c;\n  padding: 5px 8px 3px 8px;\n}\n.form-textbox,\n.form-textarea,\n.form-radio-other-input,\n.form-checkbox-other-input,\n.form-captcha input,\n.form-spinner input {\n  background-color: #ffffff;\n}\n.form-textbox {\n  height: 34px;\n}\n[data-type=\"control_dropdown\"] .form-input,\n[data-type=\"control_dropdown\"] .form-input-wide {\n  width: 150px;\n}\n.form-buttons-wrapper {\n  margin-left: 0 !important;\n  text-align: center;\n}\n.form-label {\n  font-family: \"Helvetica\", sans-serif;\n}\nli[data-type=\"control_image\"] div {\n  text-align: left;\n}\nli[data-type=\"control_image\"] img {\n  border: none;\n  border-width: 0px !important;\n  border-style: solid !important;\n  border-color: false !important;\n}\n.form-line-column {\n  width: auto;\n}\n.form-line-error {\n  overflow: hidden;\n  -webkit-transition-property: none;\n  -moz-transition-property: none;\n  -ms-transition-property: none;\n  -o-transition-property: none;\n  transition-property: none;\n  -webkit-transition-duration: 0.3s;\n  -moz-transition-duration: 0.3s;\n  -ms-transition-duration: 0.3s;\n  -o-transition-duration: 0.3s;\n  transition-duration: 0.3s;\n  -webkit-transition-timing-function: ease;\n  -moz-transition-timing-function: ease;\n  -ms-transition-timing-function: ease;\n  -o-transition-timing-function: ease;\n  transition-timing-function: ease;\n  background-color: #d1411e;\n}\n.form-line-error .form-error-message {\n  background-color: ;\n  clear: both;\n  float: none;\n}\n.form-line-error .form-error-message .form-error-arrow {\n  border-bottom-color: ;\n}\n.form-line-error input:not(#coupon-input),\n.form-line-error textarea,\n.form-line-error .form-validation-error {\n  border: 1px solid ;\n  -webkit-box-shadow: 0 0 3px ;\n  -moz-box-shadow: 0 0 3px ;\n  box-shadow: 0 0 3px ;\n}\n.ie-8 .form-all {\n  margin-top: auto;\n  margin-top: initial;\n}\n.ie-8 .form-all:before {\n  display: none;\n}\n\/* | *\/\n@media screen and (max-width: 480px), screen and (max-device-width: 767px) and (orientation: portrait), screen and (max-device-width: 415px) and (orientation: landscape) {\n  .testOne {\n    letter-spacing: 0;\n  }\n  .form-all {\n    border: 0;\n    max-width: initial;\n  }\n  .form-sub-label-container {\n    width: 100%;\n    margin: 0;\n    margin-right: 0;\n    float: left;\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n    box-sizing: border-box;\n  }\n  span.form-sub-label-container + span.form-sub-label-container {\n    margin-right: 0;\n  }\n  .form-sub-label {\n    white-space: normal;\n  }\n  .form-address-table td,\n  .form-address-table th {\n    padding: 0 1px 10px;\n  }\n  .form-submit-button,\n  .form-submit-print,\n  .form-submit-reset {\n    width: 100%;\n    margin-left: 0!important;\n  }\n  div[id*=at_] {\n    font-size: 14px;\n    font-weight: 700;\n    height: 8px;\n    margin-top: 6px;\n  }\n  .showAutoCalendar {\n    width: 20px;\n  }\n  img.form-image {\n    max-width: 100%;\n    height: auto;\n  }\n  .form-matrix-row-headers {\n    width: 100%;\n    word-break: break-all;\n    min-width: 40px;\n  }\n  .form-collapse-table,\n  .form-header-group {\n    margin: 0;\n  }\n  .form-collapse-table {\n    height: 100%;\n    display: inline-block;\n    width: 100%;\n  }\n  .form-collapse-hidden {\n    display: none !important;\n  }\n  .form-input {\n    width: 100%;\n  }\n  .form-label {\n    width: 100% !important;\n  }\n  .form-label-left,\n  .form-label-right {\n    display: block;\n    float: none;\n    text-align: left;\n    width: auto!important;\n  }\n  .form-line,\n  .form-line.form-line-column {\n    padding: 2% 5%;\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n    box-sizing: border-box;\n  }\n  input[type=text],\n  input[type=email],\n  input[type=tel],\n  textarea {\n    width: 100%;\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n    box-sizing: border-box;\n    max-width: initial !important;\n  }\n  .form-dropdown,\n  .form-textarea,\n  .form-textbox {\n    width: 100%!important;\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n    box-sizing: border-box;\n  }\n  .form-input,\n  .form-input-wide,\n  .form-textarea,\n  .form-textbox,\n  .form-dropdown {\n    max-width: initial!important;\n  }\n  .form-address-city,\n  .form-address-line,\n  .form-address-postal,\n  .form-address-state,\n  .form-address-table,\n  .form-address-table .form-sub-label-container,\n  .form-address-table select,\n  .form-input {\n    width: 100%;\n  }\n  div.form-header-group {\n    padding: 24px 0px !important;\n    margin: 0 12px 2% !important;\n    margin-left: 5%!important;\n    margin-right: 5%!important;\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n    box-sizing: border-box;\n  }\n  div.form-header-group.hasImage img {\n    max-width: 100%;\n  }\n  [data-type=\"control_button\"] {\n    margin-bottom: 0 !important;\n  }\n  [data-type=control_fullname] .form-sub-label-container {\n    width: 48%;\n  }\n  [data-type=control_fullname] .form-sub-label-container:first-child {\n    margin-right: 4%;\n  }\n  [data-type=control_phone] .form-sub-label-container {\n    width: 65%;\n  }\n  [data-type=control_phone] .form-sub-label-container:first-child {\n    width: 31%;\n    margin-right: 4%;\n  }\n  [data-type=control_datetime] .form-sub-label-container + .form-sub-label-container,\n  [data-type=control_datetime] .form-sub-label-container:first-child {\n    width: 27.3%;\n    margin-right: 6%;\n  }\n  [data-type=control_datetime] .form-sub-label-container + .form-sub-label-container + .form-sub-label-container {\n    width: 33.3%;\n    margin-right: 0;\n  }\n  [data-type=control_datetime] span + span + span > span:first-child {\n    display: block;\n    width: 100% !important;\n  }\n  [data-type=control_birthdate] .form-sub-label-container,\n  [data-type=control_datetime] span + span + span > span:first-child + span + span,\n  [data-type=control_time] .form-sub-label-container {\n    width: 27.3%!important;\n    margin-right: 6% !important;\n  }\n  [data-type=control_birthdate] .form-sub-label-container:last-child,\n  [data-type=control_time] .form-sub-label-container:last-child {\n    width: 33.3%!important;\n    margin-right: 0 !important;\n  }\n  .form-pagebreak-back-container,\n  .form-pagebreak-next-container {\n    width: 50% !important;\n  }\n  .form-pagebreak-back,\n  .form-pagebreak-next,\n  .form-product-item.hover-product-item {\n    width: 100%;\n  }\n  .form-pagebreak-back-container {\n    padding: 0;\n    text-align: right;\n  }\n  .form-pagebreak-next-container {\n    padding: 0;\n    text-align: left;\n  }\n  .form-pagebreak {\n    margin: 0 auto;\n  }\n  .form-buttons-wrapper {\n    margin: 0!important;\n    margin-left: 0!important;\n  }\n  .form-buttons-wrapper button {\n    width: 100%;\n  }\n  .form-buttons-wrapper .form-submit-print {\n    margin: 0 !important;\n  }\n  table {\n    width: 100%!important;\n    max-width: initial!important;\n  }\n  table td + td {\n    padding-left: 3%;\n  }\n  .form-checkbox-item,\n  .form-radio-item {\n    white-space: normal!important;\n  }\n  .form-checkbox-item input,\n  .form-radio-item input {\n    width: auto;\n  }\n  .form-collapse-table {\n    margin: 0 5%;\n    display: block;\n    zoom: 1;\n    width: auto;\n  }\n  .form-collapse-table:before,\n  .form-collapse-table:after {\n    display: table;\n    content: '';\n    line-height: 0;\n  }\n  .form-collapse-table:after {\n    clear: both;\n  }\n  .fb-like-box {\n    width: 98% !important;\n  }\n  .form-error-message {\n    clear: both;\n    bottom: -10px;\n  }\n  .date-separate,\n  .phone-separate {\n    display: none;\n  }\n  .custom-field-frame,\n  .direct-embed-widgets,\n  .signature-pad-wrapper {\n    width: 100% !important;\n  }\n}\n\/* | *\/\n\n\/*__INSPECT_SEPERATOR__*\/\n.supernova, .jotform-form, .form-all {\n    background-color : transparent !important;\n    margin-top : 0;\n    padding-top : 0;\n}\n\nbody.thankyou {\n    background-color : transparent !important;\n}\n\n.form-line-error {\n    background : none repeat scroll 0 0;\n}\n\n\/*hide !*\/\n.form-required {\n    visibility : hidden;\n}\n\n\/*hide red star*\/\n.form-required {\n    display : none !important;\n}\n\n\/*error text color*\/\n.form-button-error p {\n    color : #C24643;\n    font-size : 12px;\n}\n\n.form-error-message img {\n    display : none;\n}\n\n.form-error-arrow {\n    display : none;\n}\n\n.form-error-arrow-inner {\n    display : none;\n}\n\n.form-error-message {\n    background-color : #C24643 !important;\n}\n\n.form-label.form-label-top {\n    font-size : 15px;\n    font-weight : 600;\n}\n\n.form-buttons-wrapper {\n    height : 50px;\n}\n\n.form-line {\n\n}\n\n.form-section.page-section {\n\n}\n\n.form-html {\n    padding-top : 0px;\n}\n\n#id_6 {\n    padding-top : 0px;\n}\n\n#id_2 {\n    height : 50px;\n}\n\n.form-html p {\n\n}\n\n\n    \/* Injected CSS Code *\/\n<\/style>\n\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.985\" type=\"text\/javascript\"><\/script>\n<script type=\"text\/javascript\">\n   JotForm.init(function(){\n      JotForm.highlightInputs = false;\n      JotForm.alterTexts({\"alphabetic\":\"This field can only contain letters\",\"alphanumeric\":\"This field can only contain letters and numbers.\",\"ccDonationMinLimitError\":\"Minimum amount is {minAmount} {currency}\",\"ccInvalidCVC\":\"CVC number is invalid.\",\"ccInvalidExpireDate\":\"Expire date is invalid.\",\"ccInvalidNumber\":\"Credit Card Number is invalid.\",\"ccMissingDetails\":\"Please fill up the Credit Card details.\",\"ccMissingDonation\":\"Please enter numeric values for donation amount.\",\"ccMissingProduct\":\"Please select at least one product.\",\"characterLimitError\":\"Too many Characters.  The limit is\",\"characterMinLimitError\":\"Too few characters. The minimum is\",\"confirmClearForm\":\"Are you sure you want to clear the form?\",\"confirmEmail\":\"E-mail does not match\",\"currency\":\"This field can only contain currency values.\",\"cyrillic\":\"This field can only contain cyrillic characters\",\"dateInvalid\":\"This date is not valid. The date format is {format}\",\"dateInvalidSeparate\":\"This date is not valid. Enter a valid {element}.\",\"dateLimited\":\"This date is unavailable.\",\"disallowDecimals\":\"Please enter a whole number.\",\"email\":\"Enter a valid e-mail address\",\"fillMask\":\"Field value must fill mask.\",\"freeEmailError\":\"Free email accounts are not allowed\",\"generalError\":\"There are errors on the form. Please fix them before continuing.\",\"generalPageError\":\"There are errors on this page. Please fix them before continuing.\",\"gradingScoreError\":\"Score total should only be less than or equal to\",\"incompleteFields\":\"There are incomplete required fields. Please complete them.\",\"inputCarretErrorA\":\"Input should not be less than the minimum value:\",\"inputCarretErrorB\":\"Input should not be greater than the maximum value:\",\"lessThan\":\"Your score should be less than or equal to\",\"maxDigitsError\":\"The maximum digits allowed is\",\"maxSelectionsError\":\"The maximum number of selections allowed is\",\"minSelectionsError\":\"The minimum required number of selections is\",\"multipleFileUploads_emptyError\":\"{file} is empty, please select files again without it.\",\"multipleFileUploads_fileLimitError\":\"Only {fileLimit} file uploads allowed.\",\"multipleFileUploads_minSizeError\":\"{file} is too small, minimum file size is {minSizeLimit}.\",\"multipleFileUploads_onLeave\":\"The files are being uploaded, if you leave now the upload will be cancelled.\",\"multipleFileUploads_sizeError\":\"{file} is too large, maximum file size is {sizeLimit}.\",\"multipleFileUploads_typeError\":\"{file} has invalid extension. Only {extensions} are allowed.\",\"numeric\":\"This field can only contain numeric values\",\"pastDatesDisallowed\":\"Date must not be in the past.\",\"pleaseWait\":\"Please wait...\",\"required\":\"This field is required.\",\"requireEveryCell\":\"Every cell is required.\",\"requireEveryRow\":\"Every row is required.\",\"requireOne\":\"At least one field required.\",\"submissionLimit\":\"Sorry! Only one entry is allowed.  Multiple submissions are disabled for this form.\",\"uploadExtensions\":\"You can only upload following files:\",\"uploadFilesize\":\"File size cannot be bigger than:\",\"uploadFilesizemin\":\"File size cannot be smaller than:\",\"url\":\"This field can only contain a valid URL\",\"wordLimitError\":\"Too many words. The limit is\",\"wordMinLimitError\":\"Too few words.  The minimum is\"});\n\tJotForm.clearFieldOnHide=\"disable\";\n\tJotForm.submitError=\"jumpToFirstError\";\n   });\n\n   JotForm.prepareCalculationsOnTheFly([null,null,{\"name\":\"submit2\",\"qid\":\"2\",\"text\":\"Submit\",\"type\":\"control_button\"},{\"name\":\"email\",\"qid\":\"3\",\"text\":\"E-mail\",\"type\":\"control_email\"},null,{\"name\":\"fullName5\",\"qid\":\"5\",\"text\":\"Full name\",\"type\":\"control_textbox\"}]);<\/script>\n<\/head>\n<body>\n<form class=\"jotform-form\" action=\"https:\/\/submit.jotformeu.com\/submit\/71562407348357\/\" method=\"post\" name=\"form_71562407348357\" id=\"71562407348357\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"71562407348357\" \/>\n  <div class=\"form-all\">\n    <ul class=\"form-section page-section\">\n      <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_5\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_5\" for=\"input_5\"> Full name <\/label>\n        <div id=\"cid_5\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_5\" name=\"q5_fullName5\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_email\" id=\"id_3\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_3\" for=\"input_3\">\n          E-mail\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_3\" class=\"form-input-wide jf-required\">\n          <input type=\"email\" id=\"input_3\" name=\"q3_email\" class=\"form-textbox validate[required, Email]\" size=\"30\" value=\"\" placeholder=\" \" data-component=\"email\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_button\" id=\"id_2\">\n        <div id=\"cid_2\" class=\"form-input-wide\">\n          <div style=\"text-align:center;\" class=\"form-buttons-wrapper\">\n            <button id=\"input_2\" type=\"submit\" class=\"form-submit-button\" data-component=\"button\">\n              Submit\n            <\/button>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li style=\"display:none\">\n        Should be Empty:\n        <input type=\"text\" name=\"website\" value=\"\" \/>\n      <\/li>\n    <\/ul>\n  <\/div>\n  <script>\n  JotForm.showJotFormPowered = \"0\";\n  <\/script>\n  <input type=\"hidden\" id=\"simple_spc\" name=\"simple_spc\" value=\"71562407348357\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"71562407348357-71562407348357\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n<script type=\"text\/javascript\">JotForm.forwardToEu=true;<\/script>","Africa_enews_subscribe");(function(){window.handleIFrameMessage=function(e){var args=e.data.split(":");var iframe=document.getElementById("71562407348357");if(!iframe){return};switch(args[0]){case"scrollIntoView":if(!("nojump"in FrameBuilder.get)){iframe.scrollIntoView();}
break;case"setHeight":iframe.style.height=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;}};if(window.addEventListener){window.addEventListener("message",handleIFrameMessage,false);}else if(window.attachEvent){window.attachEvent("onmessage",handleIFrameMessage);}})();