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={"siteTo":"Marketing Land"};var i52676618437163=new FrameBuilder("52676618437163",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%2F52676618437163\" 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%2F52676618437163\" title=\"oEmbed Form\">\n<meta property=\"og:title\" content=\"How To Become A Guest Contributor - Universal\" >\n<meta property=\"og:url\" content=\"http:\/\/www.jotform.us\/form\/52676618437163\" >\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>How To Become A Guest Contributor - Universal<\/title>\n<link href=\"https:\/\/cdn.jotfor.ms\/static\/formCss.css?3.3.983\" rel=\"stylesheet\" type=\"text\/css\" \/>\n<link type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/css\/styles\/nova.css?3.3.983\" \/>\n<link type=\"text\/css\" media=\"print\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/css\/printForm.css?3.3.983\" \/>\n<style type=\"text\/css\">\n@import url(http:\/\/fonts.googleapis.com\/css?family=Oswald:400,300,700);\n\n    .form-label-left{\n        width:200px !important;\n    }\n    .form-line{\n        padding-top:12px;\n        padding-bottom:12px;\n    }\n    .form-label-right{\n        width:200px !important;\n    }\n    body, html{\n        margin:0;\n        padding:0;\n        background:rgb(255, 255, 255);\n    }\n\n    .form-all{\n        margin:0px auto;\n        padding-top:20px;\n        width:800px;\n        color:rgb(0, 0, 0) !important;\n        font-family:'Arial';\n        font-size:20px;\n    }\n    .form-radio-item label, .form-checkbox-item label, .form-grading-label, .form-header{\n        color: #555;\n    }\n\n<\/style>\n\n<style type=\"text\/css\" id=\"form-designer-style\">\n    \/* Injected CSS Code *\/\n@import url(\/\/fonts.googleapis.com\/css?family=Oswald:400,300,700);\n@import \"https:\/\/fonts.googleapis.com\/css?family=Oswald:light,lightitalic,normal,italic,bold,bolditalic\";\n.form-all {\n  font-family: \"Arial\", sans-serif;\n}\n.form-all {\n  width: 800px;\n  width: 100%;\n  max-width: 800px;\n}\n.form-label-left,\n.form-label-right {\n  width: 200px;\n}\n.form-label {\n  white-space: normal;\n}\n.form-label.form-label-auto {\n  display: inline-block;\n  float: left;\n  text-align: left;\n  width: 200px;\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-all {\n  font-size: 20px;\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 {\n    padding: 10px 0;\n  }\n}\n\/* | *\/\n\/* | *\/\n@media screen and (min-width: 480px) and (max-width: 768px) {\n  .jotform-form {\n    padding: 30px 0;\n  }\n}\n\/* | *\/\n\/* | *\/\n@media screen and (min-width: 480px) and (max-width: 799px) {\n  .jotform-form {\n    padding: 30px 0;\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: 799px) {\n  .jotform-form {\n    padding: 0;\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: #000000;\n}\n.form-header-group .form-header {\n  color: #000000;\n}\n.form-header-group .form-subHeader {\n  color: #1a1a1a;\n}\n.form-sub-label {\n  color: #1a1a1a;\n}\n.form-label-top,\n.form-label-left,\n.form-label-right,\n.form-html {\n  color: #000000;\n}\n.form-checkbox-item label,\n.form-radio-item label {\n  color: #1a1a1a;\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\/* \u00f6mer *\/\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\/* \u00f6mer *\/\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: 30px;\n  margin-bottom: 30px;\n}\n.form-line {\n  padding: 2px 0px;\n}\n.form-all .form-submit-button,\n.form-all .form-submit-reset,\n.form-all .form-submit-print {\n  -webkit-border-radius: 6px;\n  -moz-border-radius: 6px;\n  border-radius: 6px;\n}\n.form-all .form-sub-label {\n  margin-left: 3px;\n}\n.form-all {\n  -webkit-border-radius: 6px;\n  -moz-border-radius: 6px;\n  border-radius: 6px;\n}\n.form-section:first-child {\n  -webkit-border-radius: 6px 6px 0 0;\n  -moz-border-radius: 6px 6px 0 0;\n  border-radius: 6px 6px 0 0;\n}\n.form-section:last-child {\n  -webkit-border-radius: 0 0 6px 6px;\n  -moz-border-radius: 0 0 6px 6px;\n  border-radius: 0 0 6px 6px;\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  font-size: 1em;\n  padding: 9px 15px;\n  font-family: \"Arial\", sans-serif;\n  font-size: 20px;\n  font-weight: normal;\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: #ffffff !important;\n  background: #0093ff;\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: \"Arial\", sans-serif;\n  font-size: 20px;\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: \"Oswald\", sans-serif;\n}\n.form-section {\n  padding: 0px 0px 0px 0px;\n}\n.form-header-group {\n  margin: 0px 0px 0px 0px;\n}\n.form-header-group {\n  padding: 0px 0px 0px 0px;\n}\n.form-header-group .form-header,\n.form-header-group .form-subHeader {\n  color: #000000;\n}\n.form-textbox,\n.form-textarea {\n  padding: 4px 3px 2px 3px;\n}\n.form-textarea {\n  height: 110px;\n}\n.form-textbox,\n.form-textarea {\n  width: 100%;\n  max-width: 450px;\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box;\n}\n[data-type=\"control_textbox\"] .form-input,\n[data-type=\"control_textarea\"] .form-input,\n[data-type=\"control_fullname\"] .form-input,\n[data-type=\"control_phone\"] .form-input,\n[data-type=\"control_datetime\"] .form-input,\n[data-type=\"control_address\"] .form-input,\n[data-type=\"control_email\"] .form-input,\n[data-type=\"control_passwordbox\"] .form-input,\n[data-type=\"control_autocomp\"] .form-input,\n[data-type=\"control_textbox\"] .form-input-wide,\n[data-type=\"control_textarea\"] .form-input-wide,\n[data-type=\"control_fullname\"] .form-input-wide,\n[data-type=\"control_phone\"] .form-input-wide,\n[data-type=\"control_datetime\"] .form-input-wide,\n[data-type=\"control_address\"] .form-input-wide,\n[data-type=\"control_email\"] .form-input-wide,\n[data-type=\"control_passwordbox\"] .form-input-wide,\n[data-type=\"control_autocomp\"] .form-input-wide {\n  width: 100%;\n  max-width: 450px;\n}\n[data-type=\"control_fullname\"] .form-sub-label-container {\n  -moz-box-sizing: border-box;\n  -webkit-box-sizing: border-box;\n  box-sizing: border-box;\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: 32.5%;\n  margin-right: 2.5%;\n}\n[data-type=\"control_phone\"] .form-sub-label-container .date-separate {\n  visibility: hidden;\n}\n[data-type=\"control_datetime\"] .form-sub-label-container {\n  width: 28%;\n  margin-right: 4%;\n}\n[data-type=\"control_datetime\"] .form-sub-label-container:last-child {\n  width: 4%;\n  margin-right: 0;\n}\n[data-type=\"control_datetime\"] .form-sub-label-container .date-separate {\n  visibility: hidden;\n}\n[data-type=\"control_datetime\"].allowTime .form-sub-label-container {\n  width: 12%;\n  margin-right: 3%;\n}\n[data-type=\"control_datetime\"].allowTime .form-sub-label-container:last-child {\n  width: 4%;\n  margin-right: 0;\n}\n[data-type=\"control_datetime\"].allowTime .allowTime-container {\n  float: right;\n  width: 51%;\n}\n[data-type=\"control_datetime\"].allowTime .allowTime-container .form-sub-label-container {\n  width: 27%;\n  margin-right: 4%;\n}\n[data-type=\"control_datetime\"].allowTime .allowTime-container .form-sub-label-container:first-child {\n  width: 4%;\n  margin-left: 3%;\n}\n[data-type=\"control_datetime\"].allowTime .allowTime-container .form-sub-label-container:last-child {\n  width: 27%;\n  margin-right: 0;\n}\n[data-type=\"control_datetime\"].allowTime .form-dropdown {\n  width: 100%;\n}\n.form-matrix-table {\n  width: 100%;\n  max-width: 450px;\n}\n.form-address-table {\n  width: 100%;\n  max-width: 450px;\n}\n.form-address-table td .form-dropdown {\n  width: 100%;\n}\n.form-address-table td .form-sub-label-container {\n  width: 96%;\n}\n.form-address-table td:last-child .form-sub-label-container {\n  margin-left: 4%;\n}\n.form-address-table td[colspan=\"2\"] .form-sub-label-container {\n  width: 100%;\n  margin: 0;\n}\n[data-type=\"control_dropdown\"] .form-input,\n[data-type=\"control_birthdate\"] .form-input,\n[data-type=\"control_time\"] .form-input,\n[data-type=\"control_dropdown\"] .form-input-wide,\n[data-type=\"control_birthdate\"] .form-input-wide,\n[data-type=\"control_time\"] .form-input-wide {\n  width: 100%;\n  max-width: 450px;\n}\n[data-type=\"control_dropdown\"] .form-dropdown {\n  width: 100% !important;\n  max-width: 450px;\n}\n[data-type=\"control_birthdate\"] .form-sub-label-container {\n  width: 22%;\n  margin-right: 3%;\n}\n[data-type=\"control_birthdate\"] .form-sub-label-container:first-child {\n  width: 50%;\n}\n[data-type=\"control_birthdate\"] .form-sub-label-container:last-child {\n  margin-right: 0;\n}\n[data-type=\"control_birthdate\"] .form-sub-label-container .form-dropdown {\n  width: 100%;\n}\n[data-type=\"control_time\"] .form-sub-label-container {\n  width: 37%;\n  margin-right: 3%;\n}\n[data-type=\"control_time\"] .form-sub-label-container:last-child {\n  width: 20%;\n  margin-right: 0;\n}\n[data-type=\"control_time\"] .form-sub-label-container .form-dropdown {\n  width: 100%;\n}\n.form-buttons-wrapper {\n  margin-left: 0 !important;\n  text-align: center !important;\n}\n.form-header-group {\n  border-bottom: none;\n}\n.form-label {\n  font-family: \"Arial\", 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: #fff4f4;\n}\n.form-line-error .form-error-message {\n  background-color: #ff3200;\n  clear: both;\n  float: none;\n}\n.form-line-error .form-error-message .form-error-arrow {\n  border-bottom-color: #ff3200;\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 #ff3200;\n  -webkit-box-shadow: 0 0 3px #ff3200;\n  -moz-box-shadow: 0 0 3px #ff3200;\n  box-shadow: 0 0 3px #ff3200;\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: 768px) and (orientation: portrait), screen and (max-device-width: 415px) and (orientation: landscape) {\n  .jotform-form {\n    padding: 0;\n  }\n  .form-all {\n    border: 0;\n    width: 100% !important;\n    max-width: initial;\n  }\n  .form-sub-label-container {\n    width: 100%;\n    margin: 0;\n  }\n  .form-input {\n    width: 100%;\n  }\n  .form-label {\n    width: 100%!important;\n  }\n  .form-line {\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-input,\n  .form-input-wide,\n  .form-textarea,\n  .form-textbox,\n  .form-dropdown {\n    max-width: initial !important;\n  }\n  div.form-header-group {\n    padding: 0px 0px !important;\n    padding-left: 5% !important;\n    padding-right: 5% !important;\n    margin: 0 0px 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  [data-type=\"control_button\"] {\n    margin-bottom: 0 !important;\n  }\n  .form-buttons-wrapper {\n    margin: 0!important;\n  }\n  .form-buttons-wrapper button {\n    width: 100%;\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 input,\n  .form-radio-item input {\n    width: auto;\n  }\n  .form-collapse-table {\n    margin: 0 5%;\n  }\n}\n\/* | *\/\n\n\/*__INSPECT_SEPERATOR__*\/\n@import url(\/\/fonts.googleapis.com\/css?family=Oswald:400,300,700);\n\n.list-item {\n    line-height : 1.6;\n}\n\n.form-all {\n    font-family : 'Arial', sans-serif;\n}\n\n.form-header {\n    font : Oswald;\n    font-family : Oswald;\n}\n\n.form-subHeader {\n    font-family : Arial,sans-serif;\n    font-weight : normal;\n}\n\n.form-label.form-label-left {\n    font-family : Oswald;\n}\n\n.form-textbox {\n    font-family : Arial,sans-serif;\n}\n\n.form-dropdown {\n    font-family : Arial,sans-serif;\n}\n\n.form-textarea {\n    font-family : Oswald;\n}\n\n.form-submit-button {\n    font-family : Oswald;\n}\n\n.form-all {\n    padding-top : 0;\n    margin-top : -40px;\n}\n\n.undefined li {\n    line-height : 1.42857143;\n}\n\n.form-html li {\n    line-height : 1.42857143;\n}\n\n.undefined li {\n    line-height : 1.42857143;\n}\n\n.ul {\nlist-style-type: disc;\n}\n\n\n    \/* Injected CSS Code *\/\n<\/style>\n\n<link type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/css\/responsive.css?3.3.983\" \/>\n<script src=\"https:\/\/cdn.jotfor.ms\/file-uploader\/fileuploader.js?v=3.3.983\"><\/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.983\" type=\"text\/javascript\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/js\/vendor\/math-processor.js?v=3.3.983\" type=\"text\/javascript\"><\/script>\n<script type=\"text\/javascript\">\n   JotForm.setCalculations([{\"replaceText\":\"\",\"readOnly\":false,\"newCalculationType\":true,\"useCommasForDecimals\":false,\"operands\":\"\",\"equation\":\"Martech (Marketing Technology)\",\"showBeforeInput\":false,\"showEmptyDecimals\":false,\"ignoreHiddenFields\":false,\"insertAsText\":false,\"id\":\"action_1479248642292\",\"resultField\":\"38\",\"decimalPlaces\":\"2\",\"isError\":false,\"conditionId\":\"1479248693690\",\"conditionTrue\":false}]);\n   JotForm.setConditions([{\"action\":[{\"id\":\"action_1481635554934\",\"visibility\":\"Show\",\"isError\":false,\"field\":\"40\"}],\"id\":\"1481635572865\",\"index\":\"0\",\"link\":\"Any\",\"priority\":\"0\",\"terms\":[{\"id\":\"term_1481635554934\",\"field\":\"22\",\"operator\":\"equals\",\"value\":\"Search Engine Land\",\"isError\":false}],\"type\":\"field\"},{\"action\":[{\"id\":\"action_1481635524095\",\"visibility\":\"Show\",\"isError\":false,\"field\":\"41\"}],\"id\":\"1481635546666\",\"index\":\"1\",\"link\":\"Any\",\"priority\":\"1\",\"terms\":[{\"id\":\"term_1481635524095\",\"field\":\"22\",\"operator\":\"equals\",\"value\":\"MarTech Today\",\"isError\":false}],\"type\":\"field\"},{\"action\":[{\"id\":\"action_1481635438696\",\"visibility\":\"Show\",\"isError\":false,\"field\":\"39\"}],\"id\":\"1481635461500\",\"index\":\"2\",\"link\":\"Any\",\"priority\":\"2\",\"terms\":[{\"id\":\"term_1481635438696\",\"field\":\"22\",\"operator\":\"equals\",\"value\":\"Marketing Land\",\"isError\":false}],\"type\":\"field\"},{\"action\":[{\"replaceText\":\"\",\"readOnly\":false,\"newCalculationType\":true,\"useCommasForDecimals\":false,\"operands\":\"\",\"equation\":\"Martech (Marketing Technology)\",\"showBeforeInput\":false,\"showEmptyDecimals\":false,\"ignoreHiddenFields\":false,\"insertAsText\":false,\"id\":\"action_1479248642292\",\"resultField\":\"38\",\"decimalPlaces\":\"2\",\"isError\":false,\"conditionId\":\"1479248693690\",\"conditionTrue\":false}],\"id\":\"1479248693690\",\"index\":\"3\",\"link\":\"Any\",\"priority\":\"3\",\"terms\":[{\"id\":\"term_1479248642292\",\"field\":\"22\",\"operator\":\"equals\",\"value\":\"MarTech Today\",\"isError\":false}],\"type\":\"calculation\"},{\"action\":[{\"id\":\"action_1479248601199\",\"visibility\":\"Show\",\"isError\":false,\"field\":\"38\"}],\"id\":\"1479248627027\",\"index\":\"4\",\"link\":\"Any\",\"priority\":\"4\",\"terms\":[{\"id\":\"term_1479248601199\",\"field\":\"22\",\"operator\":\"equals\",\"value\":\"MarTech Today\",\"isError\":false}],\"type\":\"field\"},{\"action\":[{\"id\":\"action_1449776369614\",\"visibility\":\"Show\",\"isError\":false,\"field\":\"13\"}],\"id\":\"1449776386552\",\"index\":\"8\",\"link\":\"Any\",\"priority\":\"8\",\"terms\":[{\"id\":\"term_1449776369614\",\"field\":\"22\",\"operator\":\"equals\",\"value\":\"Marketing Land\",\"isError\":false}],\"type\":\"field\"},{\"action\":[{\"id\":\"action_1449776340570\",\"visibility\":\"Show\",\"isError\":false,\"field\":\"23\"}],\"id\":\"1449776359834\",\"index\":\"9\",\"link\":\"Any\",\"priority\":\"9\",\"terms\":[{\"id\":\"term_1449776340570\",\"field\":\"22\",\"operator\":\"equals\",\"value\":\"Search Engine Land\",\"isError\":false}],\"type\":\"field\"},{\"action\":[{\"field\":\"21\",\"visibility\":\"Show\"},{\"field\":\"17\",\"visibility\":\"Show\"},{\"field\":\"18\",\"visibility\":\"Show\"},{\"field\":\"19\",\"visibility\":\"Show\"}],\"id\":\"1444075543660\",\"index\":\"14\",\"link\":\"Any\",\"priority\":\"14\",\"terms\":[{\"field\":\"24\",\"operator\":\"equals\",\"value\":\"Yes\"}],\"type\":\"field\"},{\"action\":[{\"field\":\"30\",\"visibility\":\"Show\"},{\"field\":\"31\",\"visibility\":\"Show\"}],\"id\":\"1444135704818\",\"index\":\"15\",\"link\":\"Any\",\"priority\":\"15\",\"terms\":[{\"field\":\"29\",\"operator\":\"equals\",\"value\":\"Yes\"}],\"type\":\"field\"}]);\n   JotForm.init(function(){\n      setTimeout(function() {\n          $('input_3').hint('ex: myname@example.com');\n       }, 20);\n      setTimeout(function() {\n          $('input_31').hint('ex: myname@example.com');\n       }, 20);\n      setTimeout(function() {\n          $('input_18').hint('ex: myname@example.com');\n       }, 20);\n\tJotForm.clearFieldOnHide=\"disable\";\n      setTimeout(function() {\n          JotForm.initMultipleUploads();\n      }, 2);\n   });\n\n   JotForm.prepareCalculationsOnTheFly([null,null,{\"name\":\"submit\",\"qid\":\"2\",\"text\":\"Submit\",\"type\":\"control_button\"},{\"name\":\"email3\",\"qid\":\"3\",\"text\":\"Email\",\"type\":\"control_email\"},{\"name\":\"twitterHandle\",\"qid\":\"4\",\"text\":\"Twitter Handle\",\"type\":\"control_textbox\"},{\"name\":\"columnIdeaswriting5\",\"qid\":\"5\",\"text\":\"Column Ideas\/Writing Samples (1500 character limit.)\",\"type\":\"control_textarea\"},{\"name\":\"shortBio\",\"qid\":\"6\",\"text\":\"Short Bio\",\"type\":\"control_textarea\"},null,null,{\"name\":\"doubleclickTo9\",\"qid\":\"9\",\"text\":\"<p>At Marketing Land, MarTech Today and Search Engine Land we offer a number of opportunities for industry members to share the benefit of their experience through contributed guest content on a wide variety of topics related to marketing technology &amp; digital marketing.<\/p>\",\"type\":\"control_text\"},{\"name\":\"doubleclickTo10\",\"qid\":\"10\",\"text\":\"<p>Unfortunately, due to the volume of contributor applications, you may not receive a response. All applications are kept on file and we may contact you in the future if we do not have an available slot for your contributions now.<\/p>\",\"type\":\"control_text\"},{\"name\":\"doubleclickTo11\",\"qid\":\"11\",\"text\":\"<p>Contributors <strong>must be marketing professionals<\/strong> working in the field that they are writing about, or in a closely related field. We think of our sites as the publications of record for a community of marketers, and our contributors share their knowledge to discuss important issues and help move the industry forward.<\/p>\\n<p>Our audience appreciates highly actionable content which can be immediately applied to their own online marketing strategies. We are mainly looking for:<\/p>\\n<ul><li>Tactical advice and tips<\/li>\\n<li>How-tos and step-by-step guides<\/li>\\n<li>Case studies<\/li>\\n<li>Thought-leadership pieces about the future of the industry and marketers' roles<\/li>\\n<li>CMO-level strategic pieces about running a marketing organization<\/li>\\n<\/ul>\",\"type\":\"control_text\"},{\"name\":\"clickTo12\",\"qid\":\"12\",\"text\":\"Contributor Requirements\",\"type\":\"control_head\"},{\"name\":\"primaryArea13\",\"qid\":\"13\",\"text\":\"Primary Area of Expertise\/Desired Column Assignment\",\"type\":\"control_dropdown\"},{\"name\":\"currentJob\",\"qid\":\"14\",\"text\":\"Current Job Title\",\"type\":\"control_textbox\"},{\"name\":\"currentCompanyemployer\",\"qid\":\"15\",\"text\":\"Current Company\/Employer\",\"type\":\"control_textbox\"},{\"name\":\"commitmentLevel\",\"qid\":\"16\",\"text\":\"Commitment Level Desired\",\"type\":\"control_dropdown\"},{\"name\":\"referenceFull\",\"qid\":\"17\",\"text\":\"Reference Full Name\",\"type\":\"control_fullname\"},{\"name\":\"referenceEmail\",\"qid\":\"18\",\"text\":\"Reference Email\",\"type\":\"control_email\"},{\"name\":\"howThis\",\"qid\":\"19\",\"text\":\"How This Person Knows You\",\"type\":\"control_textbox\"},null,{\"name\":\"doubleclickTo21\",\"qid\":\"21\",\"text\":\"<p><strong>Industry Reference:<\/strong> Let us know if you've been referred to us by someone we know, like a staff writer, an editor or a current or past contributor. If this person can vouch for you, please note the person's name and contact info below, and note how this person is familiar with your work.\u00a0<\/p>\",\"type\":\"control_text\"},{\"name\":\"siteTo\",\"qid\":\"22\",\"text\":\"Site To Which You Want To Contribute\",\"type\":\"control_dropdown\"},{\"name\":\"primaryArea23\",\"qid\":\"23\",\"text\":\"Primary Area of Expertise\/Desired Column Assignment\",\"type\":\"control_dropdown\"},{\"name\":\"hasA\",\"qid\":\"24\",\"text\":\"Has a friend of Third Door Media referred you to us\",\"type\":\"control_checkbox\"},{\"name\":\"clickTo\",\"qid\":\"25\",\"text\":\"Commitment Levels\",\"type\":\"control_head\"},{\"name\":\"doubleclickTo\",\"qid\":\"26\",\"text\":\"<ul><li><strong>Regular Contributors<\/strong> are assigned to an ongoing column to appear at a regular interval (4 weeks is most typical, though we will consider other intervals). This type of columnist must commit to writing regularly on the same topic for six to 12 months and must meet deadlines consistently to maintain their assigned spot on the editorial calendar. We prioritize Regular Columnists when editing and seek to publish their pieces on the scheduled publication date. Contributors with a lesser commitment may not have as much visibility as to exactly when their piece will appear.\u00a0<\/li>\\n<li><strong>Ad-Hoc Contributors<\/strong> must provide a minimum of three contributed pieces for standalone features and how-to articles over the course of 3-6 months. Contributors can irregularly submit ideas or already-written content when they have ideas they want to write about, or they can commit to a regular schedule for the duration of their relationship with us.<\/li>\\n<li><strong>Special Contributors<\/strong> may contribute on a one-off basis if they have a very unique perspective, can share proprietary research, or wish to comment on a particular important or timely topic. (CEOs and CMOs of well-known companies would qualify as having unique perspectives, provided their topic was relevant.)\u00a0<\/li>\\n<\/ul>\",\"type\":\"control_text\"},{\"name\":\"clickTo27\",\"qid\":\"27\",\"text\":\"Editorial Standards\",\"type\":\"control_head\"},{\"name\":\"doubleclickTo28\",\"qid\":\"28\",\"text\":\"<ul><li><strong>Full disclosure of agency \/ client \/ partner relationships<\/strong> is required at all times, and our editors reserve the right to remove self-promotional content and links, as well as make significant edits to content and headlines.<\/li>\\n<li>All accepted contributors must agree to provide <strong>original content<\/strong>, with exclusive rights granted to Third Door Media for a period of TWO years.<\/li>\\n<li>If accepted as a contributor, <strong>you will receive writer guidelines and instructions<\/strong>, as well as a formal writer agreement to execute before any content is published on our properties.<\/li>\\n<\/ul><p>If this sounds like a good fit for you, please fill out the following form and we\u2019ll consider your application.<\/p>\",\"type\":\"control_text\"},{\"name\":\"doYou29\",\"qid\":\"29\",\"text\":\"Do you have a PR representative or assistant that we should include on correspondence?\",\"type\":\"control_checkbox\"},{\"name\":\"prPerson30\",\"qid\":\"30\",\"text\":\"PR Person Full Name\",\"type\":\"control_fullname\"},{\"name\":\"prPerson\",\"qid\":\"31\",\"text\":\"PR Person Email\",\"type\":\"control_email\"},null,null,null,{\"name\":\"lastName\",\"qid\":\"35\",\"text\":\"Last Name\",\"type\":\"control_textbox\"},{\"name\":\"firstName\",\"qid\":\"36\",\"text\":\"First Name\",\"type\":\"control_textbox\"},{\"name\":\"alternativelyUpload\",\"qid\":\"37\",\"text\":\"Alternatively, upload a finished piece in .doc, .docx, .rtf or .txt format for consideration\",\"type\":\"control_fileupload\"},{\"name\":\"primaryArea38\",\"qid\":\"38\",\"text\":\"Primary Area of Expertise\/Desired Column Assignment\",\"type\":\"control_dropdown\"},{\"name\":\"doubleclickTo39\",\"qid\":\"39\",\"text\":\"<p><strong>Note:<\/strong> If you have an already completed bylined article, <a href=\\\"http:\/\/marketingland.com\/submissions\\\" target=\\\"_self\\\" rel=\\\"nofollow\\\">please use our submission form<\/a>, rather than this application form, to submit it for consideration.\u00a0<\/p>\",\"type\":\"control_text\"},{\"name\":\"doubleclickTo40\",\"qid\":\"40\",\"text\":\"<p><strong>Note:<\/strong> If you have an already completed bylined article, <a href=\\\"http:\/\/searchengineland.com\/submissions\\\" rel=\\\"nofollow\\\">please use our submission form<\/a>, rather than this application form, to submit it for consideration.\u00a0<\/p>\",\"type\":\"control_text\"},{\"name\":\"doubleclickTo41\",\"qid\":\"41\",\"text\":\"<p><strong>Note:<\/strong> If you have an already completed bylined article, <a href=\\\"https:\/\/martechtoday.com\/submissions\\\" target=\\\"_self\\\" rel=\\\"nofollow\\\">please use our submission form<\/a>, rather than this application form, to submit it for consideration.\u00a0<\/p>\",\"type\":\"control_text\"}]);<\/script>\n<\/head>\n<body>\n<form class=\"jotform-form\" action=\"https:\/\/submit.jotform.us\/submit\/52676618437163\/\" method=\"post\" enctype=\"multipart\/form-data\" name=\"form_52676618437163\" id=\"52676618437163\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"52676618437163\" \/>\n  <div class=\"form-all\">\n    <ul class=\"form-section page-section\">\n      <li class=\"form-line\" data-type=\"control_text\" id=\"id_9\">\n        <div id=\"cid_9\" class=\"form-input-wide\">\n          <div id=\"text_9\" class=\"form-html\" data-component=\"text\">\n            <p>At Marketing Land, MarTech Today and Search Engine Land we offer a number of opportunities for industry members to share the benefit of their experience through contributed guest content on a wide variety of topics related to marketing technology &amp; digital marketing.<\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-field-hidden\" style=\"display:none;\" data-type=\"control_text\" id=\"id_39\">\n        <div id=\"cid_39\" class=\"form-input-wide\">\n          <div id=\"text_39\" class=\"form-html\" data-component=\"text\">\n            <p><strong>Note:<\/strong> If you have an already completed bylined article, <a href=\"http:\/\/marketingland.com\/submissions\" target=\"_self\">please use our submission form<\/a>, rather than this application form, to submit it for consideration.\u00a0<\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-field-hidden\" style=\"display:none;\" data-type=\"control_text\" id=\"id_41\">\n        <div id=\"cid_41\" class=\"form-input-wide\">\n          <div id=\"text_41\" class=\"form-html\" data-component=\"text\">\n            <p><strong>Note:<\/strong> If you have an already completed bylined article, <a href=\"https:\/\/martechtoday.com\/submissions\" target=\"_self\">please use our submission form<\/a>, rather than this application form, to submit it for consideration.\u00a0<\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-field-hidden\" style=\"display:none;\" data-type=\"control_text\" id=\"id_40\">\n        <div id=\"cid_40\" class=\"form-input-wide\">\n          <div id=\"text_40\" class=\"form-html\" data-component=\"text\">\n            <p><strong>Note:<\/strong> If you have an already completed bylined article, <a href=\"http:\/\/searchengineland.com\/submissions\">please use our submission form<\/a>, rather than this application form, to submit it for consideration.\u00a0<\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li id=\"cid_12\" class=\"form-input-wide\" data-type=\"control_head\">\n        <div class=\"form-header-group \">\n          <div class=\"header-text httal htvam\">\n            <h2 id=\"header_12\" class=\"form-header\" data-component=\"header\">\n              Contributor Requirements\n            <\/h2>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_text\" id=\"id_11\">\n        <div id=\"cid_11\" class=\"form-input-wide\">\n          <div id=\"text_11\" class=\"form-html\" data-component=\"text\">\n            <p>Contributors <strong>must be marketing professionals<\/strong> working in the field that they are writing about, or in a closely related field. We think of our sites as the publications of record for a community of marketers, and our contributors share their knowledge to discuss important issues and help move the industry forward.<\/p>\n            <p>Our audience appreciates highly actionable content which can be immediately applied to their own online marketing strategies. We are mainly looking for:<\/p>\n            <ul>\n              <li>\n                Tactical advice and tips\n              <\/li>\n              <li>\n                How-tos and step-by-step guides\n              <\/li>\n              <li>\n                Case studies\n              <\/li>\n              <li>\n                Thought-leadership pieces about the future of the industry and marketers' roles\n              <\/li>\n              <li>\n                CMO-level strategic pieces about running a marketing organization\n              <\/li>\n            <\/ul>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li id=\"cid_25\" class=\"form-input-wide\" data-type=\"control_head\">\n        <div class=\"form-header-group \">\n          <div class=\"header-text httal htvam\">\n            <h2 id=\"header_25\" class=\"form-header\" data-component=\"header\">\n              Commitment Levels\n            <\/h2>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_text\" id=\"id_26\">\n        <div id=\"cid_26\" class=\"form-input-wide\">\n          <div id=\"text_26\" class=\"form-html\" data-component=\"text\">\n            <ul>\n              <li>\n                <strong>Regular Contributors<\/strong>\n                are assigned to an ongoing column to appear at a regular interval (4 weeks is most typical, though we will consider other intervals). This type of columnist must commit to writing regularly on the same topic for six to 12 months and must meet deadlines consistently to maintain their assigned spot on the editorial calendar. We prioritize Regular Columnists when editing and seek to publish their pieces on the scheduled publication date. Contributors with a lesser commitment may not have as much visibility as to exactly when their piece will appear.\u00a0\n              <\/li>\n              <li>\n                <strong>Ad-Hoc Contributors<\/strong>\n                must provide a minimum of three contributed pieces for standalone features and how-to articles over the course of 3-6 months. Contributors can irregularly submit ideas or already-written content when they have ideas they want to write about, or they can commit to a regular schedule for the duration of their relationship with us.\n              <\/li>\n              <li>\n                <strong>Special Contributors<\/strong>\n                may contribute on a one-off basis if they have a very unique perspective, can share proprietary research, or wish to comment on a particular important or timely topic. (CEOs and CMOs of well-known companies would qualify as having unique perspectives, provided their topic was relevant.)\u00a0\n              <\/li>\n            <\/ul>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li id=\"cid_27\" class=\"form-input-wide\" data-type=\"control_head\">\n        <div class=\"form-header-group \">\n          <div class=\"header-text httal htvam\">\n            <h2 id=\"header_27\" class=\"form-header\" data-component=\"header\">\n              Editorial Standards\n            <\/h2>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_text\" id=\"id_28\">\n        <div id=\"cid_28\" class=\"form-input-wide\">\n          <div id=\"text_28\" class=\"form-html\" data-component=\"text\">\n            <ul>\n              <li>\n                <strong>Full disclosure of agency \/ client \/ partner relationships<\/strong>\n                is required at all times, and our editors reserve the right to remove self-promotional content and links, as well as make significant edits to content and headlines.\n              <\/li>\n              <li>\n                All accepted contributors must agree to provide\n                <strong>original content<\/strong>\n                , with exclusive rights granted to Third Door Media for a period of TWO years.\n              <\/li>\n              <li>\n                If accepted as a contributor,\n                <strong>you will receive writer guidelines and instructions<\/strong>\n                , as well as a formal writer agreement to execute before any content is published on our properties.\n              <\/li>\n            <\/ul>\n            <p>If this sounds like a good fit for you, please fill out the following form and we\u2019ll consider your application.<\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_textbox\" id=\"id_36\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_36\" for=\"input_36\">\n          First Name\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_36\" class=\"form-input jf-required\">\n          <input type=\"text\" id=\"input_36\" name=\"q36_firstName\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_textbox\" id=\"id_35\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_35\" for=\"input_35\">\n          Last Name\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_35\" class=\"form-input jf-required\">\n          <input type=\"text\" id=\"input_35\" name=\"q35_lastName\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\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-left form-label-auto\" id=\"label_3\" for=\"input_3\">\n          Email\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_3\" class=\"form-input jf-required\">\n          <input type=\"email\" id=\"input_3\" name=\"q3_email3\" class=\"form-textbox validate[required, Email]\" size=\"30\" value=\"\" placeholder=\"ex: myname@example.com\" data-component=\"email\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_textbox\" id=\"id_4\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_4\" for=\"input_4\"> Twitter Handle <\/label>\n        <div id=\"cid_4\" class=\"form-input jf-required\">\n          <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n            <input type=\"text\" id=\"input_4\" name=\"q4_twitterHandle\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" \/>\n            <label class=\"form-sub-label\" for=\"input_4\" style=\"min-height:13px;\"> Just your username. Leave off the @ and the rest of the URL <\/label>\n          <\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_textarea\" id=\"id_6\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_6\" for=\"input_6\">\n          Short Bio\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_6\" class=\"form-input jf-required\">\n          <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n            <textarea id=\"input_6\" class=\"form-textarea validate[required]\" name=\"q6_shortBio\" cols=\"40\" rows=\"6\" data-component=\"textarea\" required=\"\"><\/textarea>\n            <label class=\"form-sub-label\" for=\"input_6\" style=\"min-height:13px;\"> Link to public LinkedIn profile is acceptable. <\/label>\n          <\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_textbox\" id=\"id_14\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_14\" for=\"input_14\">\n          Current Job Title\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_14\" class=\"form-input jf-required\">\n          <input type=\"text\" id=\"input_14\" name=\"q14_currentJob\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_textbox\" id=\"id_15\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_15\" for=\"input_15\">\n          Current Company\/Employer\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_15\" class=\"form-input jf-required\">\n          <input type=\"text\" id=\"input_15\" name=\"q15_currentCompanyemployer\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line always-hidden jf-required\" data-type=\"control_dropdown\" id=\"id_22\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_22\" for=\"input_22\">\n          Site To Which You Want To Contribute\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_22\" class=\"form-input always-hidden jf-required\">\n          <select class=\"form-dropdown validate[required]\" id=\"input_22\" name=\"q22_siteTo\" style=\"width:150px;\" data-component=\"dropdown\" required=\"\">\n            <option value=\"\">  <\/option>\n            <option value=\"Search Engine Land\"> Search Engine Land <\/option>\n            <option value=\"MarTech Today\"> MarTech Today <\/option>\n            <option value=\"Marketing Land\"> Marketing Land <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required form-field-hidden\" style=\"display:none;\" data-type=\"control_dropdown\" id=\"id_13\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_13\" for=\"input_13\">\n          Primary Area of Expertise\/Desired Column Assignment\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_13\" class=\"form-input jf-required\">\n          <select class=\"form-dropdown validate[required]\" id=\"input_13\" name=\"q13_primaryArea13\" style=\"width:150px;\" data-component=\"dropdown\" required=\"\">\n            <option value=\"\">  <\/option>\n            <option value=\"Analytics &amp; Marketing\"> Analytics &amp; Marketing <\/option>\n            <option value=\"Content Marketing\"> Content Marketing <\/option>\n            <option value=\"Design, Usability &amp; Conversion\"> Design, Usability &amp; Conversion <\/option>\n            <option value=\"Display Advertising\"> Display Advertising <\/option>\n            <option value=\"Email Marketing\"> Email Marketing <\/option>\n            <option value=\"Marketing Strategies\"> Marketing Strategies <\/option>\n            <option value=\"Mobile Marketing\"> Mobile Marketing <\/option>\n            <option value=\"Retail\"> Retail <\/option>\n            <option value=\"Social Media Marketing\"> Social Media Marketing <\/option>\n            <option value=\"Video Marketing\"> Video Marketing <\/option>\n            <option value=\"What I Wish My CMO Knew About [Topic]\"> What I Wish My CMO Knew About [Topic] <\/option>\n            <option value=\"A CMO&#x27;s Guide To [Topic]\"> A CMO&#x27;s Guide To [Topic] <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required form-field-hidden\" style=\"display:none;\" data-type=\"control_dropdown\" id=\"id_23\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_23\" for=\"input_23\">\n          Primary Area of Expertise\/Desired Column Assignment\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_23\" class=\"form-input jf-required\">\n          <select class=\"form-dropdown validate[required]\" id=\"input_23\" name=\"q23_primaryArea23\" style=\"width:150px;\" data-component=\"dropdown\" required=\"\">\n            <option value=\"\">  <\/option>\n            <option value=\"All Things SEO\"> All Things SEO <\/option>\n            <option value=\"Link Week\"> Link Week <\/option>\n            <option value=\"Paid Search\"> Paid Search <\/option>\n            <option value=\"Local Search\"> Local Search <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required form-field-hidden\" style=\"display:none;\" data-type=\"control_dropdown\" id=\"id_38\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_38\" for=\"input_38\">\n          Primary Area of Expertise\/Desired Column Assignment\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_38\" class=\"form-input jf-required\">\n          <select class=\"form-dropdown validate[required]\" id=\"input_38\" name=\"q38_primaryArea38\" style=\"width:150px;\" data-component=\"dropdown\" required=\"\">\n            <option value=\"\">  <\/option>\n            <option value=\"Martech (Marketing Technology)\"> Martech (Marketing Technology) <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_dropdown\" id=\"id_16\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_16\" for=\"input_16\">\n          Commitment Level Desired\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_16\" class=\"form-input jf-required\">\n          <select class=\"form-dropdown validate[required]\" id=\"input_16\" name=\"q16_commitmentLevel\" style=\"width:150px;\" data-component=\"dropdown\" required=\"\">\n            <option value=\"\">  <\/option>\n            <option value=\"regular recurring column every 4 or 8 weeks (or other interval)\"> regular recurring column every 4 or 8 weeks (or other interval) <\/option>\n            <option value=\"at least 3 columns submitted on a regular schedule over the course of 6 months\"> at least 3 columns submitted on a regular schedule over the course of 6 months <\/option>\n            <option value=\"at least 3 columns submitted irregularly (whenever you get a great idea) over the course of 6 months\"> at least 3 columns submitted irregularly (whenever you get a great idea) over the course of 6 months <\/option>\n            <option value=\"a single column on a unique subject or by a special expert (ex: original research, well-known contributor, very timely topic)\"> a single column on a unique subject or by a special expert (ex: original research, well-known contributor, very timely topic) <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_textarea\" id=\"id_5\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_5\" for=\"input_5\">\n          Column Ideas\/Writing Samples (1500 character limit.)\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_5\" class=\"form-input jf-required\">\n          <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n            <textarea id=\"input_5\" class=\"form-textarea validate[required]\" name=\"q5_columnIdeaswriting5\" cols=\"40\" rows=\"6\" data-component=\"textarea\" required=\"\"><\/textarea>\n            <label class=\"form-sub-label\" for=\"input_5\" style=\"min-height:13px;\"> Tell us about your marketing experience and what you'd like to write about. Please include specific column ideas and links to previous examples of your writing. <\/label>\n          <\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line always-hidden\" data-type=\"control_fileupload\" id=\"id_37\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_37\" for=\"input_37\"> Alternatively, upload a finished piece in .doc, .docx, .rtf or .txt format for consideration <\/label>\n        <div id=\"cid_37\" class=\"form-input always-hidden jf-required\">\n          <div data-wrapper-react=\"true\">\n            <div data-wrapper-react=\"true\">\n              <div class=\"qq-uploader-buttonText-value\">\n                Upload a File\n              <\/div>\n              <input type=\"file\" id=\"input_37\" name=\"q37_alternativelyUpload[]\" multiple=\"\" class=\"form-upload-multiple\" data-file-accept=\"doc, docx, xls, txt, rtf\" data-file-maxsize=\"1024\" data-file-minsize=\"0\" data-file-limit=\"3\" data-component=\"fileupload\" \/>\n            <\/div>\n            <span style=\"display:none;\" class=\"cancelText\">\n              Cancel\n            <\/span>\n            <span style=\"display:none;\" class=\"ofText\">\n              of\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_checkbox\" id=\"id_29\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_29\" for=\"input_29_0\">\n          Do you have a PR representative or assistant that we should include on correspondence?\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_29\" class=\"form-input jf-required\">\n          <div class=\"form-single-column\" data-component=\"checkbox\">\n            <span class=\"form-checkbox-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_29_0\" name=\"q29_doYou29[]\" value=\"Yes\" required=\"\" \/>\n              <label id=\"label_input_29_0\" for=\"input_29_0\"> Yes <\/label>\n            <\/span>\n            <span class=\"form-checkbox-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"checkbox\" class=\"form-checkbox validate[required]\" id=\"input_29_1\" name=\"q29_doYou29[]\" value=\"No\" required=\"\" \/>\n              <label id=\"label_input_29_1\" for=\"input_29_1\"> No <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-field-hidden\" style=\"display:none;\" data-type=\"control_fullname\" id=\"id_30\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_30\" for=\"first_30\"> PR Person Full Name <\/label>\n        <div id=\"cid_30\" class=\"form-input jf-required\">\n          <div data-wrapper-react=\"true\">\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <input type=\"text\" id=\"first_30\" name=\"q30_prPerson30[first]\" class=\"form-textbox\" size=\"10\" value=\"\" data-component=\"first\" \/>\n              <label class=\"form-sub-label\" for=\"first_30\" id=\"sublabel_first\" style=\"min-height:13px;\"> First Name <\/label>\n            <\/span>\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <input type=\"text\" id=\"last_30\" name=\"q30_prPerson30[last]\" class=\"form-textbox\" size=\"15\" value=\"\" data-component=\"last\" \/>\n              <label class=\"form-sub-label\" for=\"last_30\" id=\"sublabel_last\" style=\"min-height:13px;\"> Last Name <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-field-hidden\" style=\"display:none;\" data-type=\"control_email\" id=\"id_31\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_31\" for=\"input_31\"> PR Person Email <\/label>\n        <div id=\"cid_31\" class=\"form-input jf-required\">\n          <input type=\"email\" id=\"input_31\" name=\"q31_prPerson\" class=\"form-textbox validate[Email]\" size=\"30\" value=\"\" placeholder=\"ex: myname@example.com\" data-component=\"email\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_checkbox\" id=\"id_24\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_24\" for=\"input_24_0\">\n          Has a friend of Third Door Media referred you to us\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_24\" class=\"form-input jf-required\">\n          <div class=\"form-single-column\" data-component=\"checkbox\">\n            <span class=\"form-checkbox-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"checkbox\" class=\"form-checkbox validate[required, maxselection]\" id=\"input_24_0\" name=\"q24_hasA[]\" value=\"Yes\" required=\"\" data-maxselection=\"1\" \/>\n              <label id=\"label_input_24_0\" for=\"input_24_0\"> Yes <\/label>\n            <\/span>\n            <span class=\"form-checkbox-item\" style=\"clear:left;\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"checkbox\" class=\"form-checkbox validate[required, maxselection]\" id=\"input_24_1\" name=\"q24_hasA[]\" value=\"No\" required=\"\" data-maxselection=\"1\" \/>\n              <label id=\"label_input_24_1\" for=\"input_24_1\"> No <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-field-hidden\" style=\"display:none;\" data-type=\"control_text\" id=\"id_21\">\n        <div id=\"cid_21\" class=\"form-input-wide\">\n          <div id=\"text_21\" class=\"form-html\" data-component=\"text\">\n            <p><strong>Industry Reference:<\/strong> Let us know if you've been referred to us by someone we know, like a staff writer, an editor or a current or past contributor. If this person can vouch for you, please note the person's name and contact info below, and note how this person is familiar with your work.\u00a0<\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-field-hidden\" style=\"display:none;\" data-type=\"control_fullname\" id=\"id_17\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_17\" for=\"first_17\"> Reference Full Name <\/label>\n        <div id=\"cid_17\" class=\"form-input jf-required\">\n          <div data-wrapper-react=\"true\">\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <input type=\"text\" id=\"first_17\" name=\"q17_referenceFull[first]\" class=\"form-textbox\" size=\"10\" value=\"\" data-component=\"first\" \/>\n              <label class=\"form-sub-label\" for=\"first_17\" id=\"sublabel_first\" style=\"min-height:13px;\"> First Name <\/label>\n            <\/span>\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <input type=\"text\" id=\"last_17\" name=\"q17_referenceFull[last]\" class=\"form-textbox\" size=\"15\" value=\"\" data-component=\"last\" \/>\n              <label class=\"form-sub-label\" for=\"last_17\" id=\"sublabel_last\" style=\"min-height:13px;\"> Last Name <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-field-hidden\" style=\"display:none;\" data-type=\"control_email\" id=\"id_18\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_18\" for=\"input_18\"> Reference Email <\/label>\n        <div id=\"cid_18\" class=\"form-input jf-required\">\n          <input type=\"email\" id=\"input_18\" name=\"q18_referenceEmail\" class=\"form-textbox validate[Email]\" size=\"30\" value=\"\" placeholder=\"ex: myname@example.com\" data-component=\"email\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-field-hidden\" style=\"display:none;\" data-type=\"control_textbox\" id=\"id_19\">\n        <label class=\"form-label form-label-left form-label-auto\" id=\"label_19\" for=\"input_19\"> How This Person Knows You <\/label>\n        <div id=\"cid_19\" class=\"form-input jf-required\">\n          <input type=\"text\" id=\"input_19\" name=\"q19_howThis\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" \/>\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=\"margin-left:156px;\" 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 class=\"form-line\" data-type=\"control_text\" id=\"id_10\">\n        <div id=\"cid_10\" class=\"form-input-wide\">\n          <div id=\"text_10\" class=\"form-html\" data-component=\"text\">\n            <p>Unfortunately, due to the volume of contributor applications, you may not receive a response. All applications are kept on file and we may contact you in the future if we do not have an available slot for your contributions now.<\/p>\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=\"52676618437163\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"52676618437163-52676618437163\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n","How To Become A Guest Contributor - Universal");(function(){window.handleIFrameMessage=function(e){var args=e.data.split(":");var iframe=document.getElementById("52676618437163");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);}})();