// source --> https://www.icpep.org/wp-content/themes/classipress/framework/js/validate/jquery.validate.min.js?ver=1.15.0 
/*! jQuery Validation Plugin - v1.15.0 - 2/24/2016
 * http://jqueryvalidation.org/
 * Copyright (c) 2016 Jörn Zaefferer; Licensed MIT */
!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof module&&module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){a.extend(a.fn,{validate:function(b){if(!this.length)return void(b&&b.debug&&window.console&&console.warn("Nothing selected, can't validate, returning nothing."));var c=a.data(this[0],"validator");return c?c:(this.attr("novalidate","novalidate"),c=new a.validator(b,this[0]),a.data(this[0],"validator",c),c.settings.onsubmit&&(this.on("click.validate",":submit",function(b){c.settings.submitHandler&&(c.submitButton=b.target),a(this).hasClass("cancel")&&(c.cancelSubmit=!0),void 0!==a(this).attr("formnovalidate")&&(c.cancelSubmit=!0)}),this.on("submit.validate",function(b){function d(){var d,e;return c.settings.submitHandler?(c.submitButton&&(d=a("<input type='hidden'/>").attr("name",c.submitButton.name).val(a(c.submitButton).val()).appendTo(c.currentForm)),e=c.settings.submitHandler.call(c,c.currentForm,b),c.submitButton&&d.remove(),void 0!==e?e:!1):!0}return c.settings.debug&&b.preventDefault(),c.cancelSubmit?(c.cancelSubmit=!1,d()):c.form()?c.pendingRequest?(c.formSubmitted=!0,!1):d():(c.focusInvalid(),!1)})),c)},valid:function(){var b,c,d;return a(this[0]).is("form")?b=this.validate().form():(d=[],b=!0,c=a(this[0].form).validate(),this.each(function(){b=c.element(this)&&b,b||(d=d.concat(c.errorList))}),c.errorList=d),b},rules:function(b,c){if(this.length){var d,e,f,g,h,i,j=this[0];if(b)switch(d=a.data(j.form,"validator").settings,e=d.rules,f=a.validator.staticRules(j),b){case"add":a.extend(f,a.validator.normalizeRule(c)),delete f.messages,e[j.name]=f,c.messages&&(d.messages[j.name]=a.extend(d.messages[j.name],c.messages));break;case"remove":return c?(i={},a.each(c.split(/\s/),function(b,c){i[c]=f[c],delete f[c],"required"===c&&a(j).removeAttr("aria-required")}),i):(delete e[j.name],f)}return g=a.validator.normalizeRules(a.extend({},a.validator.classRules(j),a.validator.attributeRules(j),a.validator.dataRules(j),a.validator.staticRules(j)),j),g.required&&(h=g.required,delete g.required,g=a.extend({required:h},g),a(j).attr("aria-required","true")),g.remote&&(h=g.remote,delete g.remote,g=a.extend(g,{remote:h})),g}}}),a.extend(a.expr[":"],{blank:function(b){return!a.trim(""+a(b).val())},filled:function(b){var c=a(b).val();return null!==c&&!!a.trim(""+c)},unchecked:function(b){return!a(b).prop("checked")}}),a.validator=function(b,c){this.settings=a.extend(!0,{},a.validator.defaults,b),this.currentForm=c,this.init()},a.validator.format=function(b,c){return 1===arguments.length?function(){var c=a.makeArray(arguments);return c.unshift(b),a.validator.format.apply(this,c)}:void 0===c?b:(arguments.length>2&&c.constructor!==Array&&(c=a.makeArray(arguments).slice(1)),c.constructor!==Array&&(c=[c]),a.each(c,function(a,c){b=b.replace(new RegExp("\\{"+a+"\\}","g"),function(){return c})}),b)},a.extend(a.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",pendingClass:"pending",validClass:"valid",errorElement:"label",focusCleanup:!1,focusInvalid:!0,errorContainer:a([]),errorLabelContainer:a([]),onsubmit:!0,ignore:":hidden",ignoreTitle:!1,onfocusin:function(a){this.lastActive=a,this.settings.focusCleanup&&(this.settings.unhighlight&&this.settings.unhighlight.call(this,a,this.settings.errorClass,this.settings.validClass),this.hideThese(this.errorsFor(a)))},onfocusout:function(a){this.checkable(a)||!(a.name in this.submitted)&&this.optional(a)||this.element(a)},onkeyup:function(b,c){var d=[16,17,18,20,35,36,37,38,39,40,45,144,225];9===c.which&&""===this.elementValue(b)||-1!==a.inArray(c.keyCode,d)||(b.name in this.submitted||b.name in this.invalid)&&this.element(b)},onclick:function(a){a.name in this.submitted?this.element(a):a.parentNode.name in this.submitted&&this.element(a.parentNode)},highlight:function(b,c,d){"radio"===b.type?this.findByName(b.name).addClass(c).removeClass(d):a(b).addClass(c).removeClass(d)},unhighlight:function(b,c,d){"radio"===b.type?this.findByName(b.name).removeClass(c).addClass(d):a(b).removeClass(c).addClass(d)}},setDefaults:function(b){a.extend(a.validator.defaults,b)},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date ( ISO ).",number:"Please enter a valid number.",digits:"Please enter only digits.",equalTo:"Please enter the same value again.",maxlength:a.validator.format("Please enter no more than {0} characters."),minlength:a.validator.format("Please enter at least {0} characters."),rangelength:a.validator.format("Please enter a value between {0} and {1} characters long."),range:a.validator.format("Please enter a value between {0} and {1}."),max:a.validator.format("Please enter a value less than or equal to {0}."),min:a.validator.format("Please enter a value greater than or equal to {0}."),step:a.validator.format("Please enter a multiple of {0}.")},autoCreateRanges:!1,prototype:{init:function(){function b(b){var c=a.data(this.form,"validator"),d="on"+b.type.replace(/^validate/,""),e=c.settings;e[d]&&!a(this).is(e.ignore)&&e[d].call(c,this,b)}this.labelContainer=a(this.settings.errorLabelContainer),this.errorContext=this.labelContainer.length&&this.labelContainer||a(this.currentForm),this.containers=a(this.settings.errorContainer).add(this.settings.errorLabelContainer),this.submitted={},this.valueCache={},this.pendingRequest=0,this.pending={},this.invalid={},this.reset();var c,d=this.groups={};a.each(this.settings.groups,function(b,c){"string"==typeof c&&(c=c.split(/\s/)),a.each(c,function(a,c){d[c]=b})}),c=this.settings.rules,a.each(c,function(b,d){c[b]=a.validator.normalizeRule(d)}),a(this.currentForm).on("focusin.validate focusout.validate keyup.validate",":text, [type='password'], [type='file'], select, textarea, [type='number'], [type='search'], [type='tel'], [type='url'], [type='email'], [type='datetime'], [type='date'], [type='month'], [type='week'], [type='time'], [type='datetime-local'], [type='range'], [type='color'], [type='radio'], [type='checkbox'], [contenteditable]",b).on("click.validate","select, option, [type='radio'], [type='checkbox']",b),this.settings.invalidHandler&&a(this.currentForm).on("invalid-form.validate",this.settings.invalidHandler),a(this.currentForm).find("[required], [data-rule-required], .required").attr("aria-required","true")},form:function(){return this.checkForm(),a.extend(this.submitted,this.errorMap),this.invalid=a.extend({},this.errorMap),this.valid()||a(this.currentForm).triggerHandler("invalid-form",[this]),this.showErrors(),this.valid()},checkForm:function(){this.prepareForm();for(var a=0,b=this.currentElements=this.elements();b[a];a++)this.check(b[a]);return this.valid()},element:function(b){var c,d,e=this.clean(b),f=this.validationTargetFor(e),g=this,h=!0;return void 0===f?delete this.invalid[e.name]:(this.prepareElement(f),this.currentElements=a(f),d=this.groups[f.name],d&&a.each(this.groups,function(a,b){b===d&&a!==f.name&&(e=g.validationTargetFor(g.clean(g.findByName(a))),e&&e.name in g.invalid&&(g.currentElements.push(e),h=h&&g.check(e)))}),c=this.check(f)!==!1,h=h&&c,c?this.invalid[f.name]=!1:this.invalid[f.name]=!0,this.numberOfInvalids()||(this.toHide=this.toHide.add(this.containers)),this.showErrors(),a(b).attr("aria-invalid",!c)),h},showErrors:function(b){if(b){var c=this;a.extend(this.errorMap,b),this.errorList=a.map(this.errorMap,function(a,b){return{message:a,element:c.findByName(b)[0]}}),this.successList=a.grep(this.successList,function(a){return!(a.name in b)})}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors()},resetForm:function(){a.fn.resetForm&&a(this.currentForm).resetForm(),this.invalid={},this.submitted={},this.prepareForm(),this.hideErrors();var b=this.elements().removeData("previousValue").removeAttr("aria-invalid");this.resetElements(b)},resetElements:function(a){var b;if(this.settings.unhighlight)for(b=0;a[b];b++)this.settings.unhighlight.call(this,a[b],this.settings.errorClass,""),this.findByName(a[b].name).removeClass(this.settings.validClass);else a.removeClass(this.settings.errorClass).removeClass(this.settings.validClass)},numberOfInvalids:function(){return this.objectLength(this.invalid)},objectLength:function(a){var b,c=0;for(b in a)a[b]&&c++;return c},hideErrors:function(){this.hideThese(this.toHide)},hideThese:function(a){a.not(this.containers).text(""),this.addWrapper(a).hide()},valid:function(){return 0===this.size()},size:function(){return this.errorList.length},focusInvalid:function(){if(this.settings.focusInvalid)try{a(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus().trigger("focusin")}catch(b){}},findLastActive:function(){var b=this.lastActive;return b&&1===a.grep(this.errorList,function(a){return a.element.name===b.name}).length&&b},elements:function(){var b=this,c={};return a(this.currentForm).find("input, select, textarea, [contenteditable]").not(":submit, :reset, :image, :disabled").not(this.settings.ignore).filter(function(){var d=this.name||a(this).attr("name");return!d&&b.settings.debug&&window.console&&console.error("%o has no name assigned",this),this.hasAttribute("contenteditable")&&(this.form=a(this).closest("form")[0]),d in c||!b.objectLength(a(this).rules())?!1:(c[d]=!0,!0)})},clean:function(b){return a(b)[0]},errors:function(){var b=this.settings.errorClass.split(" ").join(".");return a(this.settings.errorElement+"."+b,this.errorContext)},resetInternals:function(){this.successList=[],this.errorList=[],this.errorMap={},this.toShow=a([]),this.toHide=a([])},reset:function(){this.resetInternals(),this.currentElements=a([])},prepareForm:function(){this.reset(),this.toHide=this.errors().add(this.containers)},prepareElement:function(a){this.reset(),this.toHide=this.errorsFor(a)},elementValue:function(b){var c,d,e=a(b),f=b.type;return"radio"===f||"checkbox"===f?this.findByName(b.name).filter(":checked").val():"number"===f&&"undefined"!=typeof b.validity?b.validity.badInput?"NaN":e.val():(c=b.hasAttribute("contenteditable")?e.text():e.val(),"file"===f?"C:\\fakepath\\"===c.substr(0,12)?c.substr(12):(d=c.lastIndexOf("/"),d>=0?c.substr(d+1):(d=c.lastIndexOf("\\"),d>=0?c.substr(d+1):c)):"string"==typeof c?c.replace(/\r/g,""):c)},check:function(b){b=this.validationTargetFor(this.clean(b));var c,d,e,f=a(b).rules(),g=a.map(f,function(a,b){return b}).length,h=!1,i=this.elementValue(b);if("function"==typeof f.normalizer){if(i=f.normalizer.call(b,i),"string"!=typeof i)throw new TypeError("The normalizer should return a string value.");delete f.normalizer}for(d in f){e={method:d,parameters:f[d]};try{if(c=a.validator.methods[d].call(this,i,b,e.parameters),"dependency-mismatch"===c&&1===g){h=!0;continue}if(h=!1,"pending"===c)return void(this.toHide=this.toHide.not(this.errorsFor(b)));if(!c)return this.formatAndAdd(b,e),!1}catch(j){throw this.settings.debug&&window.console&&console.log("Exception occurred when checking element "+b.id+", check the '"+e.method+"' method.",j),j instanceof TypeError&&(j.message+=".  Exception occurred when checking element "+b.id+", check the '"+e.method+"' method."),j}}if(!h)return this.objectLength(f)&&this.successList.push(b),!0},customDataMessage:function(b,c){return a(b).data("msg"+c.charAt(0).toUpperCase()+c.substring(1).toLowerCase())||a(b).data("msg")},customMessage:function(a,b){var c=this.settings.messages[a];return c&&(c.constructor===String?c:c[b])},findDefined:function(){for(var a=0;a<arguments.length;a++)if(void 0!==arguments[a])return arguments[a]},defaultMessage:function(b,c){var d=this.findDefined(this.customMessage(b.name,c.method),this.customDataMessage(b,c.method),!this.settings.ignoreTitle&&b.title||void 0,a.validator.messages[c.method],"<strong>Warning: No message defined for "+b.name+"</strong>"),e=/\$?\{(\d+)\}/g;return"function"==typeof d?d=d.call(this,c.parameters,b):e.test(d)&&(d=a.validator.format(d.replace(e,"{$1}"),c.parameters)),d},formatAndAdd:function(a,b){var c=this.defaultMessage(a,b);this.errorList.push({message:c,element:a,method:b.method}),this.errorMap[a.name]=c,this.submitted[a.name]=c},addWrapper:function(a){return this.settings.wrapper&&(a=a.add(a.parent(this.settings.wrapper))),a},defaultShowErrors:function(){var a,b,c;for(a=0;this.errorList[a];a++)c=this.errorList[a],this.settings.highlight&&this.settings.highlight.call(this,c.element,this.settings.errorClass,this.settings.validClass),this.showLabel(c.element,c.message);if(this.errorList.length&&(this.toShow=this.toShow.add(this.containers)),this.settings.success)for(a=0;this.successList[a];a++)this.showLabel(this.successList[a]);if(this.settings.unhighlight)for(a=0,b=this.validElements();b[a];a++)this.settings.unhighlight.call(this,b[a],this.settings.errorClass,this.settings.validClass);this.toHide=this.toHide.not(this.toShow),this.hideErrors(),this.addWrapper(this.toShow).show()},validElements:function(){return this.currentElements.not(this.invalidElements())},invalidElements:function(){return a(this.errorList).map(function(){return this.element})},showLabel:function(b,c){var d,e,f,g,h=this.errorsFor(b),i=this.idOrName(b),j=a(b).attr("aria-describedby");h.length?(h.removeClass(this.settings.validClass).addClass(this.settings.errorClass),h.html(c)):(h=a("<"+this.settings.errorElement+">").attr("id",i+"-error").addClass(this.settings.errorClass).html(c||""),d=h,this.settings.wrapper&&(d=h.hide().show().wrap("<"+this.settings.wrapper+"/>").parent()),this.labelContainer.length?this.labelContainer.append(d):this.settings.errorPlacement?this.settings.errorPlacement(d,a(b)):d.insertAfter(b),h.is("label")?h.attr("for",i):0===h.parents("label[for='"+this.escapeCssMeta(i)+"']").length&&(f=h.attr("id"),j?j.match(new RegExp("\\b"+this.escapeCssMeta(f)+"\\b"))||(j+=" "+f):j=f,a(b).attr("aria-describedby",j),e=this.groups[b.name],e&&(g=this,a.each(g.groups,function(b,c){c===e&&a("[name='"+g.escapeCssMeta(b)+"']",g.currentForm).attr("aria-describedby",h.attr("id"))})))),!c&&this.settings.success&&(h.text(""),"string"==typeof this.settings.success?h.addClass(this.settings.success):this.settings.success(h,b)),this.toShow=this.toShow.add(h)},errorsFor:function(b){var c=this.escapeCssMeta(this.idOrName(b)),d=a(b).attr("aria-describedby"),e="label[for='"+c+"'], label[for='"+c+"'] *";return d&&(e=e+", #"+this.escapeCssMeta(d).replace(/\s+/g,", #")),this.errors().filter(e)},escapeCssMeta:function(a){return a.replace(/([\\!"#$%&'()*+,./:;<=>?@\[\]^`{|}~])/g,"\\$1")},idOrName:function(a){return this.groups[a.name]||(this.checkable(a)?a.name:a.id||a.name)},validationTargetFor:function(b){return this.checkable(b)&&(b=this.findByName(b.name)),a(b).not(this.settings.ignore)[0]},checkable:function(a){return/radio|checkbox/i.test(a.type)},findByName:function(b){return a(this.currentForm).find("[name='"+this.escapeCssMeta(b)+"']")},getLength:function(b,c){switch(c.nodeName.toLowerCase()){case"select":return a("option:selected",c).length;case"input":if(this.checkable(c))return this.findByName(c.name).filter(":checked").length}return b.length},depend:function(a,b){return this.dependTypes[typeof a]?this.dependTypes[typeof a](a,b):!0},dependTypes:{"boolean":function(a){return a},string:function(b,c){return!!a(b,c.form).length},"function":function(a,b){return a(b)}},optional:function(b){var c=this.elementValue(b);return!a.validator.methods.required.call(this,c,b)&&"dependency-mismatch"},startRequest:function(b){this.pending[b.name]||(this.pendingRequest++,a(b).addClass(this.settings.pendingClass),this.pending[b.name]=!0)},stopRequest:function(b,c){this.pendingRequest--,this.pendingRequest<0&&(this.pendingRequest=0),delete this.pending[b.name],a(b).removeClass(this.settings.pendingClass),c&&0===this.pendingRequest&&this.formSubmitted&&this.form()?(a(this.currentForm).submit(),this.formSubmitted=!1):!c&&0===this.pendingRequest&&this.formSubmitted&&(a(this.currentForm).triggerHandler("invalid-form",[this]),this.formSubmitted=!1)},previousValue:function(b,c){return a.data(b,"previousValue")||a.data(b,"previousValue",{old:null,valid:!0,message:this.defaultMessage(b,{method:c})})},destroy:function(){this.resetForm(),a(this.currentForm).off(".validate").removeData("validator").find(".validate-equalTo-blur").off(".validate-equalTo").removeClass("validate-equalTo-blur")}},classRuleSettings:{required:{required:!0},email:{email:!0},url:{url:!0},date:{date:!0},dateISO:{dateISO:!0},number:{number:!0},digits:{digits:!0},creditcard:{creditcard:!0}},addClassRules:function(b,c){b.constructor===String?this.classRuleSettings[b]=c:a.extend(this.classRuleSettings,b)},classRules:function(b){var c={},d=a(b).attr("class");return d&&a.each(d.split(" "),function(){this in a.validator.classRuleSettings&&a.extend(c,a.validator.classRuleSettings[this])}),c},normalizeAttributeRule:function(a,b,c,d){/min|max|step/.test(c)&&(null===b||/number|range|text/.test(b))&&(d=Number(d),isNaN(d)&&(d=void 0)),d||0===d?a[c]=d:b===c&&"range"!==b&&(a[c]=!0)},attributeRules:function(b){var c,d,e={},f=a(b),g=b.getAttribute("type");for(c in a.validator.methods)"required"===c?(d=b.getAttribute(c),""===d&&(d=!0),d=!!d):d=f.attr(c),this.normalizeAttributeRule(e,g,c,d);return e.maxlength&&/-1|2147483647|524288/.test(e.maxlength)&&delete e.maxlength,e},dataRules:function(b){var c,d,e={},f=a(b),g=b.getAttribute("type");for(c in a.validator.methods)d=f.data("rule"+c.charAt(0).toUpperCase()+c.substring(1).toLowerCase()),this.normalizeAttributeRule(e,g,c,d);return e},staticRules:function(b){var c={},d=a.data(b.form,"validator");return d.settings.rules&&(c=a.validator.normalizeRule(d.settings.rules[b.name])||{}),c},normalizeRules:function(b,c){return a.each(b,function(d,e){if(e===!1)return void delete b[d];if(e.param||e.depends){var f=!0;switch(typeof e.depends){case"string":f=!!a(e.depends,c.form).length;break;case"function":f=e.depends.call(c,c)}f?b[d]=void 0!==e.param?e.param:!0:(a.data(c.form,"validator").resetElements(a(c)),delete b[d])}}),a.each(b,function(d,e){b[d]=a.isFunction(e)&&"normalizer"!==d?e(c):e}),a.each(["minlength","maxlength"],function(){b[this]&&(b[this]=Number(b[this]))}),a.each(["rangelength","range"],function(){var c;b[this]&&(a.isArray(b[this])?b[this]=[Number(b[this][0]),Number(b[this][1])]:"string"==typeof b[this]&&(c=b[this].replace(/[\[\]]/g,"").split(/[\s,]+/),b[this]=[Number(c[0]),Number(c[1])]))}),a.validator.autoCreateRanges&&(null!=b.min&&null!=b.max&&(b.range=[b.min,b.max],delete b.min,delete b.max),null!=b.minlength&&null!=b.maxlength&&(b.rangelength=[b.minlength,b.maxlength],delete b.minlength,delete b.maxlength)),b},normalizeRule:function(b){if("string"==typeof b){var c={};a.each(b.split(/\s/),function(){c[this]=!0}),b=c}return b},addMethod:function(b,c,d){a.validator.methods[b]=c,a.validator.messages[b]=void 0!==d?d:a.validator.messages[b],c.length<3&&a.validator.addClassRules(b,a.validator.normalizeRule(b))},methods:{required:function(b,c,d){if(!this.depend(d,c))return"dependency-mismatch";if("select"===c.nodeName.toLowerCase()){var e=a(c).val();return e&&e.length>0}return this.checkable(c)?this.getLength(b,c)>0:b.length>0},email:function(a,b){return this.optional(b)||/^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/.test(a)},url:function(a,b){return this.optional(b)||/^(?:(?:(?:https?|ftp):)?\/\/)(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)(?:\.(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)*(?:\.(?:[a-z\u00a1-\uffff]{2,})).?)(?::\d{2,5})?(?:[/?#]\S*)?$/i.test(a)},date:function(a,b){return this.optional(b)||!/Invalid|NaN/.test(new Date(a).toString())},dateISO:function(a,b){return this.optional(b)||/^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/.test(a)},number:function(a,b){return this.optional(b)||/^(?:-?\d+|-?\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(a)},digits:function(a,b){return this.optional(b)||/^\d+$/.test(a)},minlength:function(b,c,d){var e=a.isArray(b)?b.length:this.getLength(b,c);return this.optional(c)||e>=d},maxlength:function(b,c,d){var e=a.isArray(b)?b.length:this.getLength(b,c);return this.optional(c)||d>=e},rangelength:function(b,c,d){var e=a.isArray(b)?b.length:this.getLength(b,c);return this.optional(c)||e>=d[0]&&e<=d[1]},min:function(a,b,c){return this.optional(b)||a>=c},max:function(a,b,c){return this.optional(b)||c>=a},range:function(a,b,c){return this.optional(b)||a>=c[0]&&a<=c[1]},step:function(b,c,d){var e=a(c).attr("type"),f="Step attribute on input type "+e+" is not supported.",g=["text","number","range"],h=new RegExp("\\b"+e+"\\b"),i=e&&!h.test(g.join());if(i)throw new Error(f);return this.optional(c)||b%d===0},equalTo:function(b,c,d){var e=a(d);return this.settings.onfocusout&&e.not(".validate-equalTo-blur").length&&e.addClass("validate-equalTo-blur").on("blur.validate-equalTo",function(){a(c).valid()}),b===e.val()},remote:function(b,c,d,e){if(this.optional(c))return"dependency-mismatch";e="string"==typeof e&&e||"remote";var f,g,h,i=this.previousValue(c,e);return this.settings.messages[c.name]||(this.settings.messages[c.name]={}),i.originalMessage=i.originalMessage||this.settings.messages[c.name][e],this.settings.messages[c.name][e]=i.message,d="string"==typeof d&&{url:d}||d,h=a.param(a.extend({data:b},d.data)),i.old===h?i.valid:(i.old=h,f=this,this.startRequest(c),g={},g[c.name]=b,a.ajax(a.extend(!0,{mode:"abort",port:"validate"+c.name,dataType:"json",data:g,context:f.currentForm,success:function(a){var d,g,h,j=a===!0||"true"===a;f.settings.messages[c.name][e]=i.originalMessage,j?(h=f.formSubmitted,f.resetInternals(),f.toHide=f.errorsFor(c),f.formSubmitted=h,f.successList.push(c),f.invalid[c.name]=!1,f.showErrors()):(d={},g=a||f.defaultMessage(c,{method:e,parameters:b}),d[c.name]=i.message=g,f.invalid[c.name]=!0,f.showErrors(d)),i.valid=j,f.stopRequest(c,j)}},d)),"pending")}}});var b,c={};a.ajaxPrefilter?a.ajaxPrefilter(function(a,b,d){var e=a.port;"abort"===a.mode&&(c[e]&&c[e].abort(),c[e]=d)}):(b=a.ajax,a.ajax=function(d){var e=("mode"in d?d:a.ajaxSettings).mode,f=("port"in d?d:a.ajaxSettings).port;return"abort"===e?(c[f]&&c[f].abort(),c[f]=b.apply(this,arguments),c[f]):b.apply(this,arguments)})});
// source --> https://www.icpep.org/wp-content/themes/classipress/framework/js/validate/jquery.validate-lang.js?ver=7.0.2 
/*
 * Translate default messages for the jQuery Validation plugin.
 */
jQuery.extend(jQuery.validator.messages, {
	required: validateL10n.required,
	remote: validateL10n.remote,
	email: validateL10n.email,
	url: validateL10n.url,
	date: validateL10n.date,
	dateISO: validateL10n.dateISO,
	number: validateL10n.number,
	digits: validateL10n.digits,
	creditcard: validateL10n.creditcard,
	equalTo: validateL10n.equalTo,
	maxlength: jQuery.validator.format(validateL10n.maxlength),
	minlength: jQuery.validator.format(validateL10n.minlength),
	rangelength: jQuery.validator.format(validateL10n.rangelength),
	range: jQuery.validator.format(validateL10n.range),
	max: jQuery.validator.format(validateL10n.max),
	min: jQuery.validator.format(validateL10n.min)
});
// source --> https://www.icpep.org/wp-content/themes/classipress/includes/js/tinynav.min.js?ver=1.1 
!function(e,t,a){e.fn.tinyNav=function(n){var i=e.extend({active:"selected",header:"",header_href:"",force_header:!1,indent:"-",label:"",excluded:[]},n);return this.each(function(){a++;var n=e(this),l="tinynav"+a,r=".l_"+l,d=e("<select/>").attr("id",l).addClass("tinynav "+l),h=function(e){var t="";for(t in i.excluded)if(1==e.parents(i.excluded[t]).length)return!0;return!1};if(n.is("ul,ol")){""!==i.header&&(""!==i.header_href?d.append(e("<option/>").text(i.header).val(i.header_href)):d.append(e("<option/>").text(i.header)));var s="";n.addClass("l_"+l).find("li > a").each(function(){if(!h(e(this))){s+='<option value="'+e(this).attr("href")+'"',e(this).parent("li").hasClass(i.active)&&(s+=' selected="selected" '),s+=">";var t;for(t=0;t<e(this).parents("ul, ol").length-1;t++)s+=i.indent;s+=" "+e(this).text()+"</option>"}}),d.append(s),d.change(function(){t.location.href=e(this).val()}),e(r).after(d),i.label&&d.before(e("<label/>").attr("for",l).addClass("tinynav_label "+l+"_label").append(i.label))}})}}(jQuery,this,0);
// source --> https://www.icpep.org/wp-content/themes/classipress/theme-framework/js/footable/jquery.footable.min.js?ver=2.0.3 
/*!
 * FooTable - Awesome Responsive Tables
 * Version : 2.0.3
 * http://fooplugins.com/plugins/footable-jquery/
 *
 * Requires jQuery - http://jquery.com/
 *
 * Copyright 2014 Steven Usher & Brad Vincent
 * Released under the MIT license
 * You are free to use FooTable in commercial projects as long as this copyright header is left intact.
 *
 * Date: 11 Nov 2014
 */
(function(e,t){function a(){var e=this;e.id=null,e.busy=!1,e.start=function(t,a){e.busy||(e.stop(),e.id=setTimeout(function(){t(),e.id=null,e.busy=!1},a),e.busy=!0)},e.stop=function(){null!==e.id&&(clearTimeout(e.id),e.id=null,e.busy=!1)}}function i(i,o,n){var r=this;r.id=n,r.table=i,r.options=o,r.breakpoints=[],r.breakpointNames="",r.columns={},r.plugins=t.footable.plugins.load(r);var l=r.options,d=l.classes,s=l.events,u=l.triggers,f=0;return r.timers={resize:new a,register:function(e){return r.timers[e]=new a,r.timers[e]}},r.init=function(){var a=e(t),i=e(r.table);if(t.footable.plugins.init(r),i.hasClass(d.loaded))return r.raise(s.alreadyInitialized),undefined;r.raise(s.initializing),i.addClass(d.loading),i.find(l.columnDataSelector).each(function(){var e=r.getColumnData(this);r.columns[e.index]=e});for(var o in l.breakpoints)r.breakpoints.push({name:o,width:l.breakpoints[o]}),r.breakpointNames+=o+" ";r.breakpoints.sort(function(e,t){return e.width-t.width}),i.unbind(u.initialize).bind(u.initialize,function(){i.removeData("footable_info"),i.data("breakpoint",""),i.trigger(u.resize),i.removeClass(d.loading),i.addClass(d.loaded).addClass(d.main),r.raise(s.initialized)}).unbind(u.redraw).bind(u.redraw,function(){r.redraw()}).unbind(u.resize).bind(u.resize,function(){r.resize()}).unbind(u.expandFirstRow).bind(u.expandFirstRow,function(){i.find(l.toggleSelector).first().not("."+d.detailShow).trigger(u.toggleRow)}).unbind(u.expandAll).bind(u.expandAll,function(){i.find(l.toggleSelector).not("."+d.detailShow).trigger(u.toggleRow)}).unbind(u.collapseAll).bind(u.collapseAll,function(){i.find("."+d.detailShow).trigger(u.toggleRow)}),i.trigger(u.initialize),a.bind("resize.footable",function(){r.timers.resize.stop(),r.timers.resize.start(function(){r.raise(u.resize)},l.delay)})},r.addRowToggle=function(){if(l.addRowToggle){var t=e(r.table),a=!1;t.find("span."+d.toggle).remove();for(var i in r.columns){var o=r.columns[i];if(o.toggle){a=!0;var n="> tbody > tr:not(."+d.detail+",."+d.disabled+") > td:nth-child("+(parseInt(o.index,10)+1)+"),"+"> tbody > tr:not(."+d.detail+",."+d.disabled+") > th:nth-child("+(parseInt(o.index,10)+1)+")";return t.find(n).not("."+d.detailCell).prepend(e(l.toggleHTMLElement).addClass(d.toggle)),undefined}}a||t.find("> tbody > tr:not(."+d.detail+",."+d.disabled+") > td:first-child").add("> tbody > tr:not(."+d.detail+",."+d.disabled+") > th:first-child").not("."+d.detailCell).prepend(e(l.toggleHTMLElement).addClass(d.toggle))}},r.setColumnClasses=function(){var t=e(r.table);for(var a in r.columns){var i=r.columns[a];if(null!==i.className){var o="",n=!0;e.each(i.matches,function(e,t){n||(o+=", "),o+="> tbody > tr:not(."+d.detail+") > td:nth-child("+(parseInt(t,10)+1)+")",n=!1}),t.find(o).not("."+d.detailCell).addClass(i.className)}}},r.bindToggleSelectors=function(){var t=e(r.table);r.hasAnyBreakpointColumn()&&(t.find(l.toggleSelector).unbind(u.toggleRow).bind(u.toggleRow,function(){var t=e(this).is("tr")?e(this):e(this).parents("tr:first");r.toggleDetail(t)}),t.find(l.toggleSelector).unbind("click.footable").bind("click.footable",function(a){t.is(".breakpoint")&&e(a.target).is("td,th,."+d.toggle)&&e(this).trigger(u.toggleRow)}))},r.parse=function(e,t){var a=l.parsers[t.type]||l.parsers.alpha;return a(e)},r.getColumnData=function(t){var a=e(t),i=a.data("hide"),o=a.index();i=i||"",i=jQuery.map(i.split(","),function(e){return jQuery.trim(e)});var n={index:o,hide:{},type:a.data("type")||"alpha",name:a.data("name")||e.trim(a.text()),ignore:a.data("ignore")||!1,toggle:a.data("toggle")||!1,className:a.data("class")||null,matches:[],names:{},group:a.data("group")||null,groupName:null,isEditable:a.data("editable")};if(null!==n.group){var d=e(r.table).find('> thead > tr.footable-group-row > th[data-group="'+n.group+'"], > thead > tr.footable-group-row > td[data-group="'+n.group+'"]').first();n.groupName=r.parse(d,{type:"alpha"})}var u=parseInt(a.prev().attr("colspan")||0,10);f+=u>1?u-1:0;var p=parseInt(a.attr("colspan")||0,10),c=n.index+f;if(p>1){var b=a.data("names");b=b||"",b=b.split(",");for(var g=0;p>g;g++)n.matches.push(g+c),b.length>g&&(n.names[g+c]=b[g])}else n.matches.push(c);n.hide["default"]="all"===a.data("hide")||e.inArray("default",i)>=0;var h=!1;for(var m in l.breakpoints)n.hide[m]="all"===a.data("hide")||e.inArray(m,i)>=0,h=h||n.hide[m];n.hasBreakpoint=h;var v=r.raise(s.columnData,{column:{data:n,th:t}});return v.column.data},r.getViewportWidth=function(){return window.innerWidth||(document.body?document.body.offsetWidth:0)},r.calculateWidth=function(e,t){return jQuery.isFunction(l.calculateWidthOverride)?l.calculateWidthOverride(e,t):(t.viewportWidth<t.width&&(t.width=t.viewportWidth),t.parentWidth<t.width&&(t.width=t.parentWidth),t)},r.hasBreakpointColumn=function(e){for(var t in r.columns)if(r.columns[t].hide[e]){if(r.columns[t].ignore)continue;return!0}return!1},r.hasAnyBreakpointColumn=function(){for(var e in r.columns)if(r.columns[e].hasBreakpoint)return!0;return!1},r.resize=function(){var t=e(r.table);if(t.is(":visible")){if(!r.hasAnyBreakpointColumn())return t.trigger(u.redraw),undefined;var a={width:t.width(),viewportWidth:r.getViewportWidth(),parentWidth:t.parent().width()};a=r.calculateWidth(t,a);var i=t.data("footable_info");if(t.data("footable_info",a),r.raise(s.resizing,{old:i,info:a}),!i||i&&i.width&&i.width!==a.width){for(var o,n=null,l=0;r.breakpoints.length>l;l++)if(o=r.breakpoints[l],o&&o.width&&a.width<=o.width){n=o;break}var d=null===n?"default":n.name,f=r.hasBreakpointColumn(d),p=t.data("breakpoint");t.data("breakpoint",d).removeClass("default breakpoint").removeClass(r.breakpointNames).addClass(d+(f?" breakpoint":"")),d!==p&&(t.trigger(u.redraw),r.raise(s.breakpoint,{breakpoint:d,info:a}))}r.raise(s.resized,{old:i,info:a})}},r.redraw=function(){r.addRowToggle(),r.bindToggleSelectors(),r.setColumnClasses();var t=e(r.table),a=t.data("breakpoint"),i=r.hasBreakpointColumn(a);t.find("> tbody > tr:not(."+d.detail+")").data("detail_created",!1).end().find("> thead > tr:last-child > th").each(function(){var i=r.columns[e(this).index()],o="",n=!0;e.each(i.matches,function(e,t){n||(o+=", ");var a=t+1;o+="> tbody > tr:not(."+d.detail+") > td:nth-child("+a+")",o+=", > tfoot > tr:not(."+d.detail+") > td:nth-child("+a+")",o+=", > colgroup > col:nth-child("+a+")",n=!1}),o+=', > thead > tr[data-group-row="true"] > th[data-group="'+i.group+'"]';var l=t.find(o).add(this);if(""!==a&&(i.hide[a]===!1?l.addClass("footable-visible").show():l.removeClass("footable-visible").hide()),1===t.find("> thead > tr.footable-group-row").length){var s=t.find('> thead > tr:last-child > th[data-group="'+i.group+'"]:visible, > thead > tr:last-child > th[data-group="'+i.group+'"]:visible'),u=t.find('> thead > tr.footable-group-row > th[data-group="'+i.group+'"], > thead > tr.footable-group-row > td[data-group="'+i.group+'"]'),f=0;e.each(s,function(){f+=parseInt(e(this).attr("colspan")||1,10)}),f>0?u.attr("colspan",f).show():u.hide()}}).end().find("> tbody > tr."+d.detailShow).each(function(){r.createOrUpdateDetailRow(this)}),t.find("[data-bind-name]").each(function(){r.toggleInput(this)}),t.find("> tbody > tr."+d.detailShow+":visible").each(function(){var t=e(this).next();t.hasClass(d.detail)&&(i?t.show():t.hide())}),t.find("> thead > tr > th.footable-last-column, > tbody > tr > td.footable-last-column").removeClass("footable-last-column"),t.find("> thead > tr > th.footable-first-column, > tbody > tr > td.footable-first-column").removeClass("footable-first-column"),t.find("> thead > tr, > tbody > tr").find("> th.footable-visible:last, > td.footable-visible:last").addClass("footable-last-column").end().find("> th.footable-visible:first, > td.footable-visible:first").addClass("footable-first-column"),r.raise(s.redrawn)},r.toggleDetail=function(t){var a=t.jquery?t:e(t),i=a.next();a.hasClass(d.detailShow)?(a.removeClass(d.detailShow),i.hasClass(d.detail)&&i.hide(),r.raise(s.rowCollapsed,{row:a[0]})):(r.createOrUpdateDetailRow(a[0]),a.addClass(d.detailShow).next().show(),r.raise(s.rowExpanded,{row:a[0]}))},r.removeRow=function(t){var a=t.jquery?t:e(t);a.hasClass(d.detail)&&(a=a.prev());var i=a.next();a.data("detail_created")===!0&&i.remove(),a.remove(),r.raise(s.rowRemoved)},r.appendRow=function(t){var a=t.jquery?t:e(t);e(r.table).find("tbody").append(a),r.redraw()},r.getColumnFromTdIndex=function(t){var a=null;for(var i in r.columns)if(e.inArray(t,r.columns[i].matches)>=0){a=r.columns[i];break}return a},r.createOrUpdateDetailRow=function(t){var a,i=e(t),o=i.next(),n=[];if(i.data("detail_created")===!0)return!0;if(i.is(":hidden"))return!1;if(r.raise(s.rowDetailUpdating,{row:i,detail:o}),i.find("> td:hidden").each(function(){var t=e(this).index(),a=r.getColumnFromTdIndex(t),i=a.name;if(a.ignore===!0)return!0;t in a.names&&(i=a.names[t]);var o=e(this).attr("data-bind-name");if(null!=o&&e(this).is(":empty")){var l=e("."+d.detailInnerValue+"["+'data-bind-value="'+o+'"]');e(this).html(e(l).contents().detach())}var s;return a.isEditable!==!1&&(a.isEditable||e(this).find(":input").length>0)&&(null==o&&(o="bind-"+e.now()+"-"+t,e(this).attr("data-bind-name",o)),s=e(this).contents().detach()),s||(s=e(this).contents().clone(!0,!0)),n.push({name:i,value:r.parse(this,a),display:s,group:a.group,groupName:a.groupName,bindName:o}),!0}),0===n.length)return!1;var u=i.find("> td:visible").length,f=o.hasClass(d.detail);return f||(o=e('<tr class="'+d.detail+'"><td class="'+d.detailCell+'"><div class="'+d.detailInner+'"></div></td></tr>'),i.after(o)),o.find("> td:first").attr("colspan",u),a=o.find("."+d.detailInner).empty(),l.createDetail(a,n,l.createGroupedDetail,l.detailSeparator,d),i.data("detail_created",!0),r.raise(s.rowDetailUpdated,{row:i,detail:o}),!f},r.raise=function(t,a){r.options.debug===!0&&e.isFunction(r.options.log)&&r.options.log(t,"event"),a=a||{};var i={ft:r};e.extend(!0,i,a);var o=e.Event(t,i);return o.ft||e.extend(!0,o,i),e(r.table).trigger(o),o},r.reset=function(){var t=e(r.table);t.removeData("footable_info").data("breakpoint","").removeClass(d.loading).removeClass(d.loaded),t.find(l.toggleSelector).unbind(u.toggleRow).unbind("click.footable"),t.find("> tbody > tr").removeClass(d.detailShow),t.find("> tbody > tr."+d.detail).remove(),r.raise(s.reset)},r.toggleInput=function(t){var a=e(t).attr("data-bind-name");if(null!=a){var i=e("."+d.detailInnerValue+"["+'data-bind-value="'+a+'"]');null!=i&&(e(t).is(":visible")?e(i).is(":empty")||e(t).html(e(i).contents().detach()):e(t).is(":empty")||e(i).html(e(t).contents().detach()))}},r.init(),r}t.footable={options:{delay:100,breakpoints:{phone:480,tablet:1024},parsers:{alpha:function(t){return e(t).data("value")||e.trim(e(t).text())},numeric:function(t){var a=e(t).data("value")||e(t).text().replace(/[^0-9.\-]/g,"");return a=parseFloat(a),isNaN(a)&&(a=0),a}},addRowToggle:!0,calculateWidthOverride:null,toggleSelector:" > tbody > tr:not(.footable-row-detail)",columnDataSelector:"> thead > tr:last-child > th, > thead > tr:last-child > td",detailSeparator:":",toggleHTMLElement:"<span />",createGroupedDetail:function(e){for(var t={_none:{name:null,data:[]}},a=0;e.length>a;a++){var i=e[a].group;null!==i?(i in t||(t[i]={name:e[a].groupName||e[a].group,data:[]}),t[i].data.push(e[a])):t._none.data.push(e[a])}return t},createDetail:function(t,a,i,o,n){var r=i(a);for(var l in r)if(0!==r[l].data.length){"_none"!==l&&t.append('<div class="'+n.detailInnerGroup+'">'+r[l].name+"</div>");for(var d=0;r[l].data.length>d;d++){var s=r[l].data[d].name?o:"";t.append(e("<div></div>").addClass(n.detailInnerRow).append(e("<div></div>").addClass(n.detailInnerName).append(r[l].data[d].name+s)).append(e("<div></div>").addClass(n.detailInnerValue).attr("data-bind-value",r[l].data[d].bindName).append(r[l].data[d].display)))}}},classes:{main:"footable",loading:"footable-loading",loaded:"footable-loaded",toggle:"footable-toggle",disabled:"footable-disabled",detail:"footable-row-detail",detailCell:"footable-row-detail-cell",detailInner:"footable-row-detail-inner",detailInnerRow:"footable-row-detail-row",detailInnerGroup:"footable-row-detail-group",detailInnerName:"footable-row-detail-name",detailInnerValue:"footable-row-detail-value",detailShow:"footable-detail-show"},triggers:{initialize:"footable_initialize",resize:"footable_resize",redraw:"footable_redraw",toggleRow:"footable_toggle_row",expandFirstRow:"footable_expand_first_row",expandAll:"footable_expand_all",collapseAll:"footable_collapse_all"},events:{alreadyInitialized:"footable_already_initialized",initializing:"footable_initializing",initialized:"footable_initialized",resizing:"footable_resizing",resized:"footable_resized",redrawn:"footable_redrawn",breakpoint:"footable_breakpoint",columnData:"footable_column_data",rowDetailUpdating:"footable_row_detail_updating",rowDetailUpdated:"footable_row_detail_updated",rowCollapsed:"footable_row_collapsed",rowExpanded:"footable_row_expanded",rowRemoved:"footable_row_removed",reset:"footable_reset"},debug:!1,log:null},version:{major:0,minor:5,toString:function(){return t.footable.version.major+"."+t.footable.version.minor},parse:function(e){var t=/(\d+)\.?(\d+)?\.?(\d+)?/.exec(e);return{major:parseInt(t[1],10)||0,minor:parseInt(t[2],10)||0,patch:parseInt(t[3],10)||0}}},plugins:{_validate:function(a){if(!e.isFunction(a))return t.footable.options.debug===!0&&console.error('Validation failed, expected type "function", received type "{0}".',typeof a),!1;var i=new a;return"string"!=typeof i.name?(t.footable.options.debug===!0&&console.error('Validation failed, plugin does not implement a string property called "name".',i),!1):e.isFunction(i.init)?(t.footable.options.debug===!0&&console.log('Validation succeeded for plugin "'+i.name+'".',i),!0):(t.footable.options.debug===!0&&console.error('Validation failed, plugin "'+i.name+'" does not implement a function called "init".',i),!1)},registered:[],register:function(a,i){t.footable.plugins._validate(a)&&(t.footable.plugins.registered.push(a),"object"==typeof i&&e.extend(!0,t.footable.options,i))},load:function(e){var a,i,o=[];for(i=0;t.footable.plugins.registered.length>i;i++)try{a=t.footable.plugins.registered[i],o.push(new a(e))}catch(n){t.footable.options.debug===!0&&console.error(n)}return o},init:function(e){for(var a=0;e.plugins.length>a;a++)try{e.plugins[a].init(e)}catch(i){t.footable.options.debug===!0&&console.error(i)}}}};var o=0;e.fn.footable=function(a){a=a||{};var n=e.extend(!0,{},t.footable.options,a);return this.each(function(){o++;var t=new i(this,n,o);e(this).data("footable",t)})}})(jQuery,window);
// source --> https://www.icpep.org/wp-content/themes/classipress/includes/js/theme-scripts.min.js?ver=3.6.1 
function cp_tab_control(){var a=[],b=[];jQuery("ul.tabnavig a").each(function(){window.location.pathname.match(this.pathname)&&(a.push(this),b.push(jQuery(this.hash).get(0)))}),""!==window.location.hash&&window.location.hash.search("block")>=0?(jQuery(b).hide().filter(window.location.hash).show(),jQuery(a).filter(function(a){return jQuery(this).attr("href")===window.location.hash}).addClass("selected"),jQuery("html").scrollTop(jQuery(window.location.hash).parent().position().top)):(jQuery(b).hide().filter(":first").show(),jQuery(a).filter(":first").addClass("selected")),jQuery(a).click(function(){return jQuery(b).hide().filter(this.hash).show(),jQuery(a).removeClass("selected"),jQuery(this).addClass("selected"),!1})}function imagePreview(){var a=10,b=30;jQuery("a.preview").hover(function(c){var d=jQuery(this).find("img").attr("alt");jQuery("body").append("<div id='preview'><img src='"+jQuery(this).data("rel")+"' alt='' /><p>"+d+"</p></div>"),jQuery("#preview").css("top",c.pageY-a+"px").css("left",c.pageX+b+"px").fadeIn("fast")},function(){jQuery("#preview").remove()}),jQuery("a.preview").mousemove(function(c){jQuery("#preview").css("top",c.pageY-a+"px").css("left",c.pageX+b+"px")})}function unescapeHtml(a){var b=document.createElement("div");b.innerHTML=a;var c=b.childNodes[0].nodeValue;return b.removeChild(b.firstChild),c}function addRemoveCheckboxValues(a,b){var c;!0===a.checked?(c=document.getElementById(b),c.value+=","+a.value,c.value=c.value.replace(/^\,/,"")):(c=document.getElementById(b),c.value=c.value.replace(a.value+",",""),c.value=c.value.replace(a.value,""),c.value=c.value.replace(/\,$/,""))}function trim(a){for(var a=a.replace(/^\s\s*/,""),b=/\s/,c=a.length;b.test(a.charAt(--c)););return a.slice(0,c+1)}function enableNextImage(a,b){jQuery("#upload"+b).removeAttr("disabled")}function cp_currency_position(a){var b=classipress_params.currency_position,c=classipress_params.ad_currency;switch(b){case"left":return c+a;case"left_space":return c+" "+a;case"right":return a+c;default:return a+" "+c}}function cp_show_price_slider(a,b,c,d,e){d=!e&&d<=1e3?b:e&&d>=1e3?1e3:d,jQuery("#slider-range").slider({range:!0,min:a,max:e?1e3:b,step:1,values:[c,d],slide:function(a,b){jQuery("#amount").val(cp_currency_position(b.values[0])+" - "+cp_currency_position(b.values[1]))}}),jQuery("#amount").val(cp_currency_position(jQuery("#slider-range").slider("values",0))+" - "+cp_currency_position(jQuery("#slider-range").slider("values",1)))}function cp_reposition_widgets(){jQuery(window).width()>800?(jQuery(".content_left #welcome_widget").prependTo(".content_right"),jQuery(".content_left #refine_widget").prependTo(".content_right")):(jQuery(".content_right #welcome_widget").prependTo(".content_left"),jQuery(".content_right #refine_widget").prependTo(".content_left"))}function confirmBeforeDeleteAd(){return confirm(classipress_params.text_before_delete_ad)}function cp_handle_form_category_select(){jQuery("#catlvl0").attr("level",0),jQuery(document).on("change","#ad_cat_id",function(){currentLevel=parseInt(jQuery(this).parent().attr("level"),10),cp_get_subcategories(jQuery(this),"catlvl",currentLevel+1,classipress_params.ad_parent_posting),jQuery.each(jQuery(this).parent().parent().children(),function(a,b){currentLevel+1<a&&jQuery(b).remove(),currentLevel+1===a&&jQuery(b).removeClass("hasChild")}),jQuery(this).val()>0?jQuery("#chosenCategory input:first").val(jQuery(this).val()):jQuery("#catlvl"+(currentLevel-1)+" select").val()>0?jQuery("#chosenCategory input:first").val(jQuery("#catlvl"+(currentLevel-1)+" select").val()):jQuery("#chosenCategory input:first").val("-1")})}function cp_get_subcategories(a,b,c,d){parent_dropdown=jQuery(a).parent(),category_ID=jQuery(a).val(),results_div=b+c,jQuery(parent_dropdown).hasClass("hasChild")||jQuery(parent_dropdown).addClass("hasChild").parent().append('<div id="'+results_div+'" level="'+c+'" class="childCategory"></div>'),jQuery.ajax({type:"POST",url:classipress_params.ajax_url,dataType:"json",data:{action:"dropdown-child-categories",cat_id:category_ID,listing_id:classipress_params.listing_id,level:c},beforeSend:function(){jQuery("#getcat").hide(),jQuery(a).addClass("ui-autocomplete-loading").slideDown("fast")},complete:function(){jQuery(a).removeClass("ui-autocomplete-loading")},error:function(a,b,c){},success:function(e){!0===e.success?(jQuery("#"+results_div).html(e.html).slideDown("fast"),jQuery("#"+results_div+" select").val()&&jQuery("#"+results_div+" select").trigger("change"),whenEmpty=1!==c):(jQuery("#"+results_div).slideUp("fast"),-1===jQuery(a).val()&&2===c?whenEmpty=!1:whenEmpty=!0),"yes"===d&&jQuery("#chosenCategory input:first").val()>0?jQuery("#getcat").fadeIn():whenEmpty&&"whenEmpty"===d&&jQuery("#chosenCategory input:first").val()>0?jQuery("#getcat").fadeIn():jQuery("#"+b+(c-1)).hasClass("childCategory")&&jQuery(a).val()>-1&&"no"===d?jQuery("#getcat").fadeIn():jQuery("#getcat").fadeOut()}})}jQuery(document).ready(function(a){jQuery.isFunction(jQuery.fn.selectBox)&&(jQuery("select").selectBox({menuTransition:"fade",menuSpeed:"fast"}),jQuery(".form_step #ad-categories select").selectBox("destroy"),jQuery(".reports_form select").selectBox("destroy")),jQuery.isFunction(jQuery.fn.tinyNav)&&jQuery(".header_menu_res .menu").tinyNav({active:"current-menu-item",header:classipress_params.text_mobile_navigation,header_href:classipress_params.home_url,indent:"-",excluded:["#adv_categories"]}),jQuery(".img-main img, .post-gallery img").mouseover(function(){jQuery(this).stop().animate({opacity:.6},200)}).mouseout(function(){jQuery(this).stop().animate({opacity:1},200)}),jQuery("#step1 .form_step").length>0&&cp_handle_form_category_select(),imagePreview(),cp_tab_control(),jQuery(window).bind("resize",cp_reposition_widgets),cp_reposition_widgets(),jQuery("#s").autocomplete({source:function(a,b){jQuery.ajax({url:classipress_params.ajax_url,dataType:"json",data:{action:"ajax-tag-search-front",tax:classipress_params.appTaxTag,term:a.term},error:function(a,b,c){},success:function(a){b(jQuery.map(a,function(a){return{term:a,value:unescapeHtml(a.name)}}))}})},minLength:2}),jQuery(".entry-content a, .post a").each(function(a,b){/\.(jpg|jpeg|png|gif)$/.test(b.href)&&jQuery(this).has("img").attr("data-rel","colorbox")}),jQuery.isFunction(jQuery.colorbox)&&(jQuery("a[data-rel='colorbox']").colorbox({transition:"fade",rel:"colorbox",current:"",scrolling:!1,slideshow:!1,maxWidth:"100%",maxHeight:"100%",slideshowAuto:!1,title:function(){return jQuery(this).find("img").attr("title")}}),jQuery("#mainImageLink").click(function(){jQuery("#thumb1").click()})),jQuery(document).bind("cbox_open",function(){jQuery("object, embed, iframe").css({visibility:"hidden"})}),jQuery(document).bind("cbox_closed",function(){jQuery("object, embed, iframe").css({visibility:"inherit"})}),jQuery.isFunction(jQuery.fn.validate)&&(jQuery("#your-profile").validate({errorClass:"invalid"}),jQuery(".form_contact").validate({errorClass:"invalid"}),jQuery(".form_step, .form_edit").validate({ignore:".ignore",errorClass:"invalid",errorPlacement:function(a,b){if(b.hasClass("wp-editor-area")){var c=jQuery("#"+b.attr("id")+"_ifr");jQuery(c).addClass("tinymce-invalid"),jQuery(b).addClass("tinymce-invalid"),jQuery(b).parent().find(".tinymce-invalid").css({border:"1px solid #C00"})}if("checkbox"==b.attr("type")||"radio"==b.attr("type"))b.closest("ol").after(a);else if(jQuery.isFunction(jQuery.fn.selectBox)&&b.is("select"))if(jQuery(window).width()>600){var d=jQuery(b).next();a.insertAfter(d),a.css("display","block")}else a.insertBefore(b);else jQuery(window).width()>600?(a.insertAfter(b),a.css("display","block")):a.insertBefore(b)},highlight:function(a,b,c){jQuery(a).addClass(b).removeClass(c),jQuery(a).parent().find("a.selectBox").addClass(b).removeClass(c).focus(),jQuery(a).parent().find(".tinymce-invalid").css({border:"1px solid #C00"}),jQuery(a).parent().find(".tinymce-invalid").css({"background-color":"#FFEBE8"})},unhighlight:function(a,b,c){jQuery(a).removeClass(b).addClass(c),jQuery(a).parent().find("a.selectBox").removeClass(b).addClass(c),jQuery(a).parent().find(".tinymce-invalid").css({border:"none"})},submitHandler:function(a){setTimeout(function(){var a=jQuery("input[type=submit]").val();jQuery("input[type=submit]").attr("disabled",!0).attr("value",classipress_params.text_processing).data("go_value",a).addClass("clicked")},1),a.submit()}}),jQuery("#commentform").validate({errorClass:"invalid",errorElement:"div",errorPlacement:function(a,b){a.insertAfter(b)}}),jQuery("#commentform").fadeIn()),classipress_params.require_images&&void 0!==window.appFileCount&&jQuery("input[type=submit]").on("click",function(){if(window.appFileCountBrowser=0,jQuery('input[type="file"]').each(function(){""!=jQuery(this).val()&&(window.appFileCountBrowser+=1)}),0==window.appFileCountBrowser&&0==window.appFileCount)return jQuery("#app-attachment-upload-container .app-attachment-info .required-image").remove(),jQuery("#app-attachment-upload-container .app-attachment-info").append('<p class="error notice required-image">'+classipress_params.text_require_images+"</p>"),jQuery("#app-attachment-upload-container .app-attachment-info .required-image").delay(5e3).fadeOut("slow"),!1}),jQuery.isFunction(jQuery.fn.easyTooltip)&&jQuery("#mainform a").easyTooltip(),jQuery.isFunction(jQuery.fn.footable)&&jQuery(".footable").footable(),jQuery(".edit a.reports_form_link").on("click",function(){return jQuery(this).parent().parent().find(".reports_form").slideToggle(400),!1}),jQuery("#ad_cat_id").val()>0&&jQuery("#ad_cat_id").trigger("change"),a("a.button, a.btn_orange, .subcat-list .cat-item a, .post-meta a, .comment-bubble a, .tagcloud a, a[class*=tag-link], .paging a.page-numbers").addClass("cp-fixed-color"),jQuery(".pages a").addClass("btn_orange"),jQuery(".dynamic-content").on("click",function(){var a=jQuery(this).attr("id"),b="."+a+"-placeholder";if(jQuery(b).length){jQuery(b).append('<img class="content-loader" src="'+classipress_params.loader+'">');var c={action:"cp_dynamic_content",content:a,security:classipress_params.nonce};jQuery.post(classipress_params.ajax_url,c,function(a){"-1"!=a&&(jQuery(b).after(a),jQuery(b).remove())})}}),jQuery(".order-gateway button.button, .order-gateway input[type=submit]").addClass("btn_orange"),jQuery("#critic-review-wrap").addClass("shadowblock"),jQuery("#critic-review-wrap input[type=submit]").addClass("btn_orange"),jQuery("#critic-review-wrap .critic-reviews-title").addClass("dotted")}),window.onpageshow=function(){jQuery("#getcat.clicked").val(jQuery("#getcat.clicked").data("go_value")).attr("disabled",!1).removeClass("clicked")},jQuery.fn.extend({highlight:function(a,b,c){var d=new RegExp("(<[^>]*>)|(\\b"+a.replace(/([-.*+?^${}()|[\]\/\\])/g,"\\$1")+")",b?"ig":"g");return this.html(this.html().replace(d,function(a,b,d){return"<"===a.charAt(0)?a:'<span class="'+c+'">'+d+"</span>"}))}});
// source --> https://www.icpep.org/wp-content/themes/classipress/includes/js/cufon-yui.js?ver=1.0.9i 
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());
// source --> https://www.icpep.org/wp-content/themes/classipress/includes/fonts/Vegur_400-Vegur_700.font.js?ver=7.0.2 
Cufon.registerFont({"w":205,"face":{"font-family":"Vegur","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","bbox":"-7 -270 310 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+201D"},"glyphs":{" ":{"w":79},"b":{"d":"56,-149v44,-57,134,-23,134,60v0,82,-88,124,-134,64r-1,25r-28,0r0,-252r29,0r0,103xm106,-19v35,0,52,-30,52,-68v0,-36,-17,-68,-52,-68v-40,0,-50,37,-50,85v0,30,23,51,50,51"},"c":{"d":"148,-3v-67,23,-133,-13,-133,-83v0,-73,66,-109,134,-85r-2,23v-50,-19,-99,0,-99,61v0,59,46,80,97,61","w":161},"d":{"d":"150,-252r29,0r0,252r-28,0v-1,-8,1,-19,-2,-25v-43,60,-134,20,-134,-61v0,-81,89,-123,135,-63r0,-103xm99,-19v40,0,51,-37,51,-85v0,-30,-24,-51,-51,-51v-35,0,-51,30,-51,68v0,36,16,68,51,68"},"h":{"d":"56,-252r1,103v29,-45,117,-39,117,38r0,111r-29,0v-6,-57,22,-155,-38,-155v-26,0,-51,20,-51,51r0,104r-29,0r0,-252r29,0","w":196},"i":{"d":"27,0r0,-174r29,0r0,174r-29,0xm41,-206v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18","w":82},"l":{"d":"56,0r-29,0r0,-252r29,0r0,252","w":82},"m":{"d":"215,-178v75,-1,50,106,54,178r-29,0r0,-109v0,-31,-9,-46,-33,-46v-58,1,-44,94,-45,155r-29,0r0,-109v0,-24,-8,-46,-34,-46v-58,1,-40,95,-43,155r-29,0r0,-174r28,0v1,8,-1,19,2,25v23,-40,84,-38,100,6v12,-21,30,-35,58,-35","w":291},"n":{"d":"55,-174v1,8,-1,19,2,25v29,-45,117,-39,117,38r0,111r-29,0v-6,-57,22,-155,-38,-155v-26,0,-51,20,-51,51r0,104r-29,0r0,-174r28,0","w":196},"p":{"d":"56,78r-29,0r0,-252r28,0v1,8,-1,19,2,25v42,-59,133,-22,133,60v0,82,-88,124,-134,64r0,103xm106,-155v-40,0,-50,37,-50,85v0,30,23,51,50,51v35,0,52,-30,52,-68v0,-36,-17,-68,-52,-68"},"q":{"d":"150,-25v-45,58,-135,22,-135,-61v0,-81,89,-123,135,-63r1,-25r28,0r0,252r-29,0r0,-103xm99,-155v-35,0,-51,30,-51,68v0,36,16,68,51,68v40,0,51,-37,51,-85v0,-30,-24,-51,-51,-51"},"r":{"d":"106,-178r0,27v-66,-2,-47,88,-50,151r-29,0r0,-174r28,0v1,10,-1,23,2,31v9,-21,26,-35,49,-35","w":110},"u":{"d":"142,0v-1,-8,1,-19,-2,-25v-29,45,-117,39,-117,-38r0,-111r28,0v6,57,-21,155,39,155v26,0,51,-20,51,-51r0,-104r29,0r0,174r-28,0","w":195},"Z":{"d":"41,-24v40,4,87,0,129,1r0,23r-160,0r0,-24r121,-188r-108,0r0,-23r138,0r0,24","w":176},"Y":{"d":"150,-235r31,0r-73,129r0,106r-29,0r0,-104r-74,-131r33,0r57,104","w":184},"X":{"d":"173,-235r-67,113r71,122r-33,0r-55,-99r-54,99r-31,0r70,-120r-68,-115r33,0r52,92r51,-92r31,0","w":182},"W":{"d":"282,-235r28,0r-69,235r-29,0r-55,-198r-54,198r-30,0r-69,-235r31,0r55,198r54,-198r29,0r55,198","w":313},"V":{"d":"174,-235r28,0r-84,235r-29,0r-84,-235r30,0r70,202"},"T":{"d":"186,-235r0,23r-76,0r0,212r-29,0r0,-212r-76,0r0,-23r181,0","w":190},"S":{"d":"15,-179v0,-50,69,-74,115,-51r-3,23v-29,-15,-82,-12,-81,23v0,19,11,32,43,50v39,23,56,41,56,70v2,61,-74,82,-130,59r3,-23v40,16,95,12,95,-31v0,-18,-8,-32,-39,-50v-40,-23,-59,-46,-59,-70","w":158},"U":{"d":"191,-84v0,57,-37,88,-85,88v-48,0,-85,-32,-85,-81r0,-158r29,0v7,81,-30,216,56,216v89,0,48,-136,57,-216r28,0r0,151","w":210},"R":{"d":"54,-214r0,89v45,7,84,-7,84,-48v0,-39,-43,-48,-84,-41xm25,0r0,-235v67,-12,145,-1,145,57v0,28,-23,48,-44,60v34,10,37,84,54,118r-33,0v-16,-38,-7,-105,-60,-103v-9,0,-20,0,-33,1r0,102r-29,0","w":186},"P":{"d":"54,-214r0,91v42,7,80,0,82,-48v1,-40,-41,-51,-82,-43xm25,0r0,-235v69,-14,146,3,143,61v-3,56,-53,86,-114,74r0,100r-29,0","w":174},"Q":{"d":"243,-118v0,46,-21,83,-53,104r23,52r-32,0r-17,-40v-81,25,-151,-32,-150,-116v0,-72,49,-121,114,-121v65,0,115,49,115,121xm128,-19v48,0,82,-38,82,-99v0,-61,-34,-98,-82,-98v-48,0,-82,37,-82,98v0,61,34,99,82,99","w":256},"O":{"d":"128,-239v65,0,115,49,115,121v0,72,-50,122,-115,122v-65,0,-114,-50,-114,-122v0,-72,49,-121,114,-121xm128,-19v48,0,82,-38,82,-99v0,-61,-34,-98,-82,-98v-48,0,-82,37,-82,98v0,61,34,99,82,99","w":256},"N":{"d":"211,-235r0,235r-39,0r-122,-206r1,206r-27,0r0,-235r39,0r121,206r-1,-206r28,0","w":234},"M":{"d":"257,-235r1,235r-28,0r-1,-200r-75,191r-30,0r-73,-189r-1,198r-27,0r2,-235r39,0r77,197r77,-197r39,0","w":282},"L":{"d":"54,-23r115,0r0,23r-144,0r0,-235r29,0r0,212","w":175},"K":{"d":"183,-235r-91,106r102,129r-37,0r-85,-108r-18,22r0,86r-29,0r0,-235r29,0r1,116r93,-116r35,0","w":195},"J":{"d":"123,-87v2,74,-48,103,-115,87r3,-23v50,13,84,-4,84,-64r0,-148r28,0r0,148","w":144},"I":{"d":"50,0r-28,0r0,-235r28,0r0,235","w":72},"H":{"d":"177,-235r29,0r0,235r-29,0r0,-111r-123,0r0,111r-29,0r0,-235r29,0r0,101r123,0r0,-101","w":231},"G":{"d":"177,-26r0,-73r-49,0r0,-23r78,0r0,114v-94,33,-192,0,-192,-109v0,-98,92,-142,186,-114r-3,23v-78,-24,-151,5,-151,90v0,90,62,112,131,92","w":231},"F":{"d":"54,0r-29,0r0,-235r127,0r0,23r-98,0r0,81r83,0r0,23r-83,0r0,108","w":154},"E":{"d":"54,-23r99,0r0,23r-128,0r0,-235r125,0r0,23r-96,0r0,79r84,0r0,23r-84,0r0,87","w":162},"D":{"d":"25,-235v99,-19,194,19,191,112v-3,98,-91,144,-191,123r0,-235xm54,-214r0,192v72,15,127,-24,129,-99v2,-65,-50,-106,-129,-93","w":229},"C":{"d":"14,-117v0,-101,83,-141,174,-114r-3,23v-73,-25,-139,8,-139,90v0,86,66,116,139,90r3,23v-89,29,-174,-11,-174,-112","w":196},"B":{"d":"131,-126v24,12,47,26,47,55v0,67,-81,85,-153,71r0,-235v64,-11,147,-3,145,54v0,26,-18,44,-39,55xm54,-214r0,82v43,5,83,0,83,-44v0,-37,-44,-45,-83,-38xm54,-22v43,9,91,0,91,-45v0,-41,-49,-47,-91,-42r0,87","w":191},"A":{"d":"170,0r-26,-75r-86,0r-26,75r-28,0r83,-235r30,0r84,235r-31,0xm66,-98r70,0r-36,-104"},"\u201d":{"d":"35,-237v2,-12,20,-9,34,-9v-9,28,-23,62,-33,85r-26,4v8,-22,19,-59,25,-80xm91,-237v3,-12,20,-9,34,-9v-9,28,-24,62,-34,85r-25,4v8,-22,20,-59,25,-80","w":135},"\u201c":{"d":"101,-166v-3,12,-20,9,-34,9v9,-27,23,-62,33,-85r26,-4v-8,22,-19,59,-25,80xm45,-166v-3,12,-20,9,-34,9v9,-27,23,-62,33,-85r26,-4v-8,22,-19,59,-25,80","w":135},"\u2019":{"d":"35,-237v2,-12,20,-9,34,-9v-9,28,-23,62,-33,85r-26,4v8,-22,19,-59,25,-80","w":79},"\u2018":{"d":"45,-166v-3,12,-20,9,-34,9v9,-27,23,-62,33,-85r26,-4v-8,22,-19,59,-25,80","w":79},"\"":{"d":"41,-159r-19,0r-4,-80v0,-11,22,-6,33,-7xm95,-159r-19,0r-4,-80v0,-11,22,-6,33,-7","w":122},"!":{"d":"58,-16v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20xm51,-66r-26,0r-2,-169r30,0","w":76},"@":{"d":"176,-212v61,0,103,49,103,99v0,59,-32,95,-70,95v-19,0,-33,-11,-37,-31v-22,49,-90,43,-93,-11v-4,-69,68,-114,134,-87r-17,74v-6,26,1,38,19,38v20,0,41,-31,41,-71v0,-48,-30,-89,-86,-89v-64,0,-130,51,-130,124v0,92,94,121,162,79r1,16v-76,45,-186,8,-186,-91v0,-90,75,-145,159,-145xm128,-36v35,1,50,-57,57,-96v-43,-13,-78,18,-79,69v0,18,9,27,22,27","w":292},"`":{"d":"11,-246v11,1,28,-4,32,5v7,13,22,38,30,50r-25,2v-9,-12,-25,-36,-37,-57","w":83},"#":{"d":"163,-132r-34,0r-8,38r34,0r0,15r-37,0r-15,72r-18,0r15,-72r-36,0r-15,72r-18,0r15,-72r-31,0r0,-15r34,0r8,-38r-34,0r0,-15r37,0r15,-72r18,0r-15,72r36,0r15,-72r18,0r-15,72r31,0r0,15xm103,-94r8,-38r-36,0r-8,38r36,0","w":177},"$":{"d":"144,-67v0,32,-22,54,-55,59r0,35r-20,0r0,-34v-16,0,-31,-4,-46,-9r3,-23v36,14,87,15,87,-23v0,-16,-5,-25,-35,-43v-41,-24,-54,-40,-54,-64v0,-26,19,-43,47,-48r0,-36r20,0r0,34v15,1,29,4,40,9r-3,24v-23,-13,-73,-17,-73,13v0,19,6,24,38,43v39,23,51,38,51,63","w":168},"%":{"d":"214,-119v34,0,56,28,56,61v0,33,-22,62,-56,62v-34,0,-55,-29,-55,-62v0,-33,21,-61,55,-61xm214,-17v18,0,29,-18,29,-41v0,-23,-11,-41,-29,-41v-18,0,-29,18,-29,41v0,23,11,41,29,41xm67,-230v34,0,56,29,56,62v0,33,-22,61,-56,61v-34,0,-55,-28,-55,-61v0,-33,21,-62,55,-62xm67,-127v18,0,29,-18,29,-41v0,-23,-11,-42,-29,-42v-18,0,-28,19,-28,42v0,23,10,41,28,41xm210,-233r20,0r-158,240r-21,0","w":281},"&":{"d":"220,0r-37,0v-7,-7,-12,-17,-20,-23v-41,44,-149,35,-149,-39v-1,-32,21,-49,56,-74v-11,-10,-29,-33,-29,-54v0,-30,26,-49,55,-49v32,0,54,19,54,44v1,25,-17,43,-42,63r58,68v8,-14,12,-34,13,-57r28,0v-1,31,-11,56,-25,77xm95,-216v-35,0,-22,48,-2,65v19,-12,27,-26,27,-41v0,-15,-10,-24,-25,-24xm45,-64v0,54,74,56,103,22r-64,-76v-30,18,-39,34,-39,54","w":223},"'":{"d":"41,-159r-19,0r-4,-80v0,-11,22,-6,33,-7","w":68},"(":{"d":"86,-248v-47,87,-48,195,0,282r-20,0v-53,-78,-54,-204,0,-282r20,0","w":92},")":{"d":"7,34v46,-87,47,-195,0,-282r20,0v53,78,54,204,0,282r-20,0","w":92},"+":{"d":"118,-102r76,0r0,20r-76,0r0,82r-25,0r0,-82r-76,0r0,-20r76,0r0,-82r25,0r0,82","w":210},"*":{"d":"104,-111v-10,-15,-17,-32,-28,-46r-27,46r-21,-15v12,-14,25,-26,36,-41r-53,-12r8,-24r50,22r-5,-54r25,0v-1,17,-6,39,-4,54r49,-22r8,24v-17,5,-37,6,-52,13r35,40","w":153},",":{"d":"29,-21v2,-12,20,-9,34,-9v-9,28,-23,62,-33,85r-26,4v8,-22,19,-59,25,-80","w":74},".":{"d":"38,-36v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":71},"-":{"d":"98,-102r0,20r-85,0r0,-20r85,0","w":110},"\/":{"d":"108,-245r26,0r-110,258r-26,0","w":132},"0":{"d":"99,-230v54,0,84,48,84,117v0,69,-30,117,-84,117v-54,0,-84,-48,-84,-117v0,-69,30,-117,84,-117xm99,-19v33,0,51,-35,51,-94v0,-59,-18,-94,-51,-94v-33,0,-51,35,-51,94v0,59,18,94,51,94","w":198},"1":{"d":"51,-199v23,-8,36,-27,67,-27r0,226r-28,0r0,-189r-36,13","w":168},"2":{"d":"152,-23r0,23r-142,0r0,-19v28,-37,121,-134,106,-153v2,-42,-61,-41,-89,-22r-3,-23v45,-27,127,-11,124,41v14,23,-60,103,-101,153r105,0","w":168},"3":{"d":"145,-64v0,59,-78,84,-133,58r3,-24v36,18,98,16,98,-30v0,-30,-20,-45,-59,-48r0,-23v56,4,75,-76,13,-76v-14,0,-31,4,-46,12r-3,-23v36,-22,120,-15,120,39v0,29,-23,42,-47,54v35,12,54,33,54,61","w":162},"4":{"d":"145,-81r29,0r0,23r-29,0r0,58r-28,0r0,-58r-108,0r0,-22r106,-146r30,0r0,145xm117,-81r0,-110v-23,42,-49,73,-75,110r75,0","w":181},"5":{"d":"48,-140v53,-15,103,15,103,65v0,67,-82,96,-139,68r2,-23v44,22,106,13,106,-42v0,-43,-43,-60,-78,-42r-22,-2r5,-110r109,0r0,23r-83,0","w":167},"7":{"d":"149,-226r0,20r-93,206r-29,0r91,-203r-110,0r0,-23r141,0","w":156},"8":{"d":"116,-123v31,21,47,37,47,62v0,43,-40,65,-74,65v-34,0,-75,-19,-75,-61v0,-27,18,-47,50,-61v-63,-25,-50,-111,26,-112v40,0,67,26,67,54v0,23,-14,38,-41,53xm90,-207v-50,0,-45,58,1,75v27,-10,34,-24,34,-41v0,-21,-12,-34,-35,-34xm89,-19v27,0,43,-16,43,-39v0,-22,-12,-37,-44,-52v-33,13,-42,31,-42,50v0,23,16,41,43,41","w":177},"6":{"d":"90,4v-47,0,-75,-41,-75,-100v0,-82,60,-132,123,-134r3,23v-51,3,-93,44,-95,90v37,-46,120,-12,120,45v0,42,-33,76,-76,76xm134,-68v0,-62,-88,-61,-88,-12v0,36,18,61,47,61v26,0,41,-22,41,-49","w":177},"9":{"d":"87,-230v47,0,75,41,75,100v0,82,-59,132,-122,134r-3,-23v50,-2,96,-46,94,-90v-37,46,-119,12,-119,-45v0,-42,32,-76,75,-76xm43,-158v0,62,88,59,88,12v0,-36,-18,-61,-47,-61v-26,0,-41,22,-41,49","w":177},":":{"d":"38,-138v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20xm38,-36v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":71},";":{"d":"46,-138v-11,0,-19,-9,-19,-20v0,-11,8,-20,19,-20v11,0,20,9,20,20v0,11,-9,20,-20,20xm29,-21v2,-12,20,-9,34,-9v-9,28,-23,62,-33,85r-26,4v8,-22,19,-59,25,-80","w":78},"<":{"d":"40,-92v34,22,73,39,108,59r0,28r-133,-72r0,-28r133,-72r0,27","w":165},">":{"d":"126,-90v-34,-22,-73,-39,-109,-59r0,-28r133,72r0,28r-133,72r0,-27","w":165},"=":{"d":"196,-120r-177,0r0,-20r177,0r0,20xm196,-44r-177,0r0,-20r177,0r0,20","w":214},"?":{"d":"71,-16v0,-11,-9,-20,-20,-20v-11,0,-20,9,-20,20v0,11,9,20,20,20v11,0,20,-9,20,-20xm36,-66v-10,-51,49,-77,51,-119v2,-38,-52,-37,-77,-16r-2,-23v36,-28,110,-15,110,34v0,41,-65,76,-53,124r-29,0","w":131},"_":{"d":"177,39r-177,0r0,-20r177,0r0,20","w":177},"^":{"d":"109,-228r66,141r-27,0r-53,-115r-51,115r-28,0r66,-141r27,0","w":191},"[":{"d":"90,-225r-36,0r0,236r36,0r0,20r-61,0r0,-276r61,0r0,20","w":98},"{":{"d":"97,-228v-86,-8,4,107,-64,120v66,13,-24,130,64,122r0,21v-64,3,-73,-38,-61,-92v7,-30,-4,-37,-26,-40r0,-20v37,3,26,-44,21,-74v-6,-40,20,-57,66,-57r0,20","w":105},"|":{"d":"54,90r-25,0r0,-360r25,0r0,360","w":82},"}":{"d":"9,14v84,8,-2,-105,63,-120v-66,-12,24,-130,-63,-122r0,-20v64,-4,73,38,61,91v-7,30,3,37,25,40r0,20v-37,-3,-24,45,-20,74v6,40,-20,58,-66,58r0,-21","w":105},"~":{"d":"195,-111v1,93,-111,13,-145,13v-10,0,-17,7,-17,25r-20,0v0,-30,15,-48,41,-48v11,-4,95,38,104,34v10,0,17,-6,17,-24r20,0","w":208},"]":{"d":"9,-225r0,-20r61,0r0,276r-61,0r0,-20r36,0r0,-236r-36,0","w":98},"\\":{"d":"25,-245r110,258r-27,0r-110,-258r27,0","w":132},"e":{"d":"98,-178v49,0,75,42,67,94r-120,0v0,60,52,78,103,56r2,23v-66,28,-135,-13,-135,-82v0,-49,32,-91,83,-91xm98,-155v-30,0,-46,22,-51,48r89,0v0,-29,-11,-48,-38,-48","w":180},"f":{"d":"40,-174v-5,-60,27,-93,82,-79r-3,23v-35,-12,-56,11,-51,56r42,0r0,23r-42,0r0,151r-28,0r0,-151r-31,0r0,-23r31,0","w":117},"g":{"d":"151,-174r28,0r0,163v2,90,-80,108,-146,80r3,-23v52,29,129,9,113,-71v-43,60,-134,20,-134,-61v0,-81,89,-123,135,-63xm99,-19v40,0,51,-37,51,-85v0,-30,-24,-51,-51,-51v-35,0,-51,30,-51,68v0,36,16,68,51,68","w":204},"j":{"d":"46,-206v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18xm31,14r0,-188r29,0r0,184v0,48,-27,71,-64,71r-3,-23v24,0,38,-15,38,-44","w":87},"o":{"d":"100,-178v51,0,86,39,86,91v0,52,-35,91,-86,91v-51,0,-85,-39,-85,-91v0,-52,34,-91,85,-91xm100,-19v34,0,54,-31,54,-68v0,-37,-20,-68,-54,-68v-34,0,-53,31,-53,68v0,37,19,68,53,68","w":200},"t":{"d":"107,-174r0,23r-40,0r0,101v-2,31,15,35,38,28r3,23v-38,8,-71,2,-70,-41r0,-111r-29,0r0,-23r29,0r0,-43r29,0r0,43r40,0","w":120},"k":{"d":"161,-174r-71,78r81,96r-38,0r-62,-76r-15,17r0,59r-29,0r0,-252r29,0r1,160v19,-28,46,-56,68,-82r36,0","w":171},"s":{"d":"63,-76v-67,-21,-60,-100,13,-102v14,0,26,3,38,8r-3,23v-20,-12,-66,-14,-65,15v0,15,7,25,30,32v72,23,53,104,-17,104v-15,0,-32,-4,-46,-10r3,-24v26,15,75,18,76,-14v0,-14,-6,-25,-29,-32","w":136},"v":{"d":"139,-174r28,0r-68,174r-32,0r-63,-174r30,0r50,147","w":170},"w":{"d":"237,-174r28,0r-55,174r-30,0r-46,-146r-45,146r-30,0r-55,-174r31,0r41,144v13,-53,29,-95,45,-144r29,0r46,144","w":268},"x":{"d":"161,-174r-59,83r64,91r-35,0r-47,-71r-47,71r-32,0r63,-89r-61,-85r35,0r44,65r43,-65r32,0","w":171},"a":{"d":"34,-166v44,-25,116,-10,116,49r0,117r-28,0r-1,-25v-26,47,-107,36,-108,-27v-1,-51,55,-74,108,-60v6,-48,-52,-51,-84,-31xm77,-19v30,0,49,-31,44,-71v-36,-8,-77,-3,-75,36v0,21,13,35,31,35","w":172},"y":{"d":"99,0v-23,59,-48,79,-87,81r-3,-23v31,-2,43,-15,59,-53r-64,-179r30,0r50,147r55,-147r28,0","w":170},"z":{"d":"45,-24v29,4,66,0,97,1r0,23r-129,0r0,-23r91,-128r-84,0r0,-23r116,0r0,23","w":157},"\u00a0":{"w":79}}});Cufon.registerFont({"w":189,"face":{"font-family":"Vegur","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-13 -270 325 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+201D"},"glyphs":{" ":{"w":79},"~":{"d":"55,-129v19,-7,91,40,105,36v9,0,14,-7,14,-19r31,0v0,30,-14,57,-45,57v-20,7,-91,-40,-105,-37v-9,0,-14,8,-14,20r-31,0v0,-30,14,-57,45,-57","w":215},"_":{"d":"189,50r-189,0r0,-31r189,0r0,31"},"^":{"d":"79,-228r41,0r65,141r-42,0r-44,-99r-45,99r-40,0","w":198},"]":{"d":"8,-214r0,-31r80,0r0,276r-80,0r0,-31r41,0r0,-214r-41,0","w":115},"\\":{"d":"40,-245r109,258r-41,0r-110,-258r42,0","w":147},"[":{"d":"107,-214r-41,0r0,214r41,0r0,31r-80,0r0,-276r80,0r0,31","w":115},"Z":{"d":"184,-40r0,40r-175,0r0,-39r111,-157r-97,0r0,-39r152,0r0,38r-111,157r120,0"},"Y":{"d":"146,-235r51,0r-72,132r0,103r-48,0r0,-100r-74,-135r55,0r44,94","w":198},"X":{"d":"188,-235r-65,112r70,123r-55,0r-43,-87r-42,87r-51,0r68,-119r-67,-116r56,0r39,80r38,-80r52,0","w":196},"9":{"d":"96,-229v45,0,83,35,83,96v0,83,-64,133,-141,137r-5,-39v46,-4,87,-31,91,-61v-42,34,-114,1,-114,-54v0,-48,40,-79,86,-79xm63,-157v-6,46,61,51,62,10v5,-50,-61,-60,-62,-10","w":192},":":{"d":"45,-53v16,0,28,12,28,28v0,16,-12,29,-28,29v-16,0,-29,-13,-29,-29v0,-16,13,-28,29,-28xm45,-121v-16,0,-29,-12,-29,-28v0,-16,13,-29,29,-29v16,0,28,13,28,29v0,16,-12,28,-28,28","w":84},";":{"d":"31,-32v3,-16,30,-13,50,-13v-10,29,-23,67,-37,100r-41,4v12,-34,24,-72,28,-91xm56,-121v-16,0,-29,-12,-29,-28v0,-16,13,-29,29,-29v16,0,28,13,28,29v0,16,-12,28,-28,28","w":95},"<":{"d":"54,-93v31,19,67,33,99,51r0,42r-139,-70r0,-42r139,-71r0,42","w":168},"=":{"d":"206,-116r-189,0r0,-31r189,0r0,31xm206,-37r-189,0r0,-31r189,0r0,31","w":222},">":{"d":"15,-140r0,-43r139,71r0,42r-139,70r0,-41r99,-49","w":168},"?":{"d":"90,-25v0,-16,-12,-28,-28,-28v-16,0,-29,12,-29,28v0,16,13,29,29,29v16,0,28,-13,28,-29xm39,-71v-12,-37,52,-87,48,-110v-4,-27,-56,-19,-74,-4r-4,-39v42,-26,132,-20,130,36v12,27,-57,76,-56,117r-44,0","w":154},"`":{"d":"9,-246v17,2,38,-6,45,7v8,13,26,40,38,57r-38,2v-13,-17,-34,-47,-45,-66","w":100},"@":{"d":"176,-212v62,0,107,46,107,99v0,60,-32,95,-74,95v-20,1,-33,-9,-40,-24v-19,45,-92,30,-92,-23v0,-72,79,-110,143,-79r-17,71v-4,18,1,28,12,28v20,0,36,-26,36,-61v0,-49,-28,-80,-81,-80v-69,0,-123,50,-123,115v0,90,89,108,154,70r3,25v-77,44,-189,9,-189,-91v0,-87,72,-145,161,-145xm135,-46v26,7,35,-48,42,-76v-34,-9,-57,13,-58,55v0,12,6,21,16,21","w":294},"A":{"d":"165,0r-22,-66r-72,0v-10,32,-22,66,-22,66r-47,0r83,-235r49,0r82,235r-51,0xm84,-105r46,0r-23,-82v-5,28,-13,56,-23,82","w":218},"a":{"d":"31,-166v50,-23,131,-16,131,50r0,116r-48,0r-1,-22v-28,43,-99,33,-101,-32v-2,-48,50,-66,101,-57v4,-37,-53,-29,-76,-15xm84,-36v20,-1,31,-21,29,-45v-23,-4,-50,-5,-49,22v0,15,8,23,20,23","w":182},"b":{"d":"208,-89v0,84,-87,121,-135,67r0,22r-48,0r0,-252r48,0r1,99v46,-53,134,-14,134,64xm115,-138v-31,0,-42,24,-42,59v0,25,17,43,42,43v23,0,41,-19,41,-51v0,-31,-15,-51,-41,-51","w":221},"d":{"d":"148,-252r48,0r0,252r-48,0v-1,-7,2,-17,-1,-22v-45,55,-134,15,-134,-63v0,-82,86,-121,135,-68r0,-99xm106,-36v31,0,42,-24,42,-59v0,-25,-17,-43,-42,-43v-23,0,-41,19,-41,51v0,31,15,51,41,51","w":221},"e":{"d":"103,-178v54,0,82,46,72,102r-113,0v-2,46,57,46,94,31r5,40v-70,26,-148,-6,-148,-82v0,-49,35,-91,90,-91xm99,-138v-18,0,-31,10,-35,30r65,0v0,-18,-9,-30,-30,-30","w":190},"c":{"d":"160,-3v-72,22,-147,-9,-147,-83v0,-75,76,-108,148,-85r-5,40v-15,-5,-25,-7,-42,-7v-67,2,-67,100,0,102v14,0,26,-2,40,-6","w":173},"f":{"d":"38,-174v-6,-63,40,-92,100,-79r-6,40v-27,-9,-53,4,-46,39r42,0r0,39r-42,0r0,135r-48,0r0,-135r-30,0r0,-39r30,0","w":137},"F":{"d":"72,0r-49,0r0,-235r145,0r0,39r-96,0r0,57r81,0r0,40r-81,0r0,99","w":171},"G":{"d":"169,-40r0,-53r-44,0r0,-39r92,0r0,124v-96,30,-205,7,-205,-110v0,-99,101,-140,198,-113r-6,40v-66,-20,-140,-5,-140,73v0,69,46,93,105,78","w":237},"H":{"d":"176,-235r48,0r0,235r-48,0r0,-103r-104,0r0,103r-49,0r0,-235r49,0r0,92r104,0r0,-92","w":247},"I":{"d":"72,0r-49,0r0,-235r49,0r0,235","w":95},"J":{"d":"138,-87v1,76,-61,102,-130,87r5,-40v41,12,77,-3,77,-47r0,-148r48,0r0,148","w":156},"K":{"d":"204,-235r-90,103r97,132r-59,0r-71,-100r-9,11r0,89r-49,0r0,-235r49,0r-1,95v19,-33,50,-65,74,-95r59,0","w":210},"l":{"d":"73,0r-48,0r0,-252r48,0r0,252","w":98},"m":{"d":"230,-178v75,2,50,106,54,178r-48,0r0,-109v0,-18,-8,-29,-26,-29v-45,0,-30,90,-32,138r-48,0r0,-109v0,-19,-8,-29,-26,-29v-46,0,-27,89,-31,138r-48,0r0,-174r48,0v1,7,-2,18,1,24v19,-39,85,-36,99,4v13,-22,29,-32,57,-32","w":304},"N":{"d":"176,-235r46,0r0,235r-68,0r-58,-124v-9,-17,-14,-35,-29,-69r1,193r-46,0r0,-235r68,0r57,120v9,18,16,36,30,73","w":244},"o":{"d":"106,-178v55,0,93,40,93,91v0,51,-38,91,-93,91v-55,0,-93,-40,-93,-91v0,-51,38,-91,93,-91xm106,-36v24,0,41,-19,41,-51v0,-32,-17,-51,-41,-51v-24,0,-41,19,-41,51v0,32,17,51,41,51","w":212},"P":{"d":"72,-198r0,68v32,5,60,-2,60,-35v0,-33,-28,-37,-60,-33xm23,0r0,-235v27,-2,48,-4,76,-4v53,0,85,28,85,70v0,57,-52,89,-112,78r0,91r-49,0","w":187},"p":{"d":"73,78r-48,0r0,-252r48,0v1,6,-2,16,1,21v46,-53,134,-14,134,64v0,83,-86,121,-135,67r0,100xm115,-138v-31,0,-42,24,-42,59v0,25,17,43,42,43v23,0,41,-19,41,-51v0,-31,-15,-51,-41,-51","w":221},"Q":{"d":"203,-17r25,55r-52,0r-16,-37v-85,17,-149,-44,-148,-119v0,-67,48,-121,121,-121v124,0,162,164,70,222xm133,-36v39,0,70,-31,70,-82v0,-51,-31,-81,-70,-81v-39,0,-69,30,-69,81v0,51,30,82,69,82","w":266},"q":{"d":"13,-85v0,-82,87,-121,135,-68r0,-21r48,0r0,252r-48,0r-1,-100v-45,55,-134,15,-134,-63xm106,-36v31,0,42,-24,42,-59v0,-25,-17,-43,-42,-43v-23,0,-41,19,-41,51v0,31,15,51,41,51","w":221},"r":{"d":"126,-178r0,43v-66,-4,-52,73,-53,135r-48,0r0,-174r48,0v1,9,-2,21,1,28v10,-18,28,-32,52,-32","w":132},"R":{"d":"72,-198r0,64v32,7,62,-2,62,-33v0,-31,-29,-35,-62,-31xm146,0v-17,-37,-6,-111,-74,-94r0,94r-49,0r0,-235v24,-2,49,-4,80,-4v90,0,109,94,40,119v33,11,37,86,55,120r-52,0","w":200},"S":{"d":"14,-175v0,-56,80,-78,134,-55r-5,39v-24,-9,-77,-16,-77,12v0,15,5,21,35,36v44,22,63,45,63,76v1,66,-87,84,-150,62r5,-39v29,10,93,18,93,-19v0,-13,-6,-23,-32,-36v-44,-22,-66,-42,-66,-76","w":174},"s":{"d":"72,-65v-40,-14,-57,-29,-57,-60v0,-44,69,-66,115,-45r-5,40v-15,-6,-53,-16,-58,3v0,8,4,11,11,14v48,18,61,33,61,61v2,55,-77,67,-125,46r5,-40v17,9,63,18,69,-2v0,-8,-4,-12,-16,-17","w":149},"M":{"d":"273,-235r1,235r-48,0r0,-190v-13,65,-38,121,-56,181r-50,0v-18,-60,-43,-115,-55,-180r0,189r-44,0r1,-235r70,0r38,117v5,16,12,37,17,64v15,-72,37,-117,56,-181r70,0","w":295},"O":{"d":"133,-239v73,0,122,54,122,121v0,67,-49,122,-122,122v-73,0,-121,-55,-121,-122v0,-67,48,-121,121,-121xm133,-36v39,0,70,-31,70,-82v0,-51,-31,-81,-70,-81v-39,0,-69,30,-69,81v0,51,30,82,69,82","w":266},"T":{"d":"203,-235r0,39r-76,0r0,196r-48,0r0,-196r-75,0r0,-39r199,0","w":206},"U":{"d":"204,-84v0,57,-40,88,-92,88v-52,0,-93,-32,-93,-81r0,-158r48,0r0,154v0,31,20,45,44,45v25,0,47,-12,47,-45r0,-154r46,0r0,151","w":222},"V":{"d":"169,-235r47,0r-82,235r-49,0r-82,-235r51,0v19,61,44,120,57,186v15,-63,38,-126,58,-186","w":218},"W":{"d":"279,-235r46,0r-66,235r-48,0v-19,-71,-35,-108,-47,-193v-12,89,-28,119,-46,193r-49,0r-65,-235r50,0v15,68,34,109,42,190v9,-83,29,-121,46,-190r48,0v18,67,36,111,47,190v6,-84,27,-121,42,-190","w":327},"z":{"d":"15,-174r133,0r0,36r-79,98r86,0r0,40r-146,0r0,-36r80,-99r-74,0r0,-39","w":165},"y":{"d":"72,2r-68,-176r51,0r42,129v10,-44,28,-87,42,-129r47,0r-66,174v-23,58,-46,77,-98,81r-5,-39v28,-2,43,-10,55,-40"},"x":{"d":"177,-174r-57,83r63,91r-59,0v-12,-19,-21,-42,-34,-60r-33,60r-54,0r60,-88r-59,-86r58,0v11,18,19,38,31,54r30,-54r54,0","w":186},"w":{"d":"180,0v-13,-47,-28,-76,-36,-132v-8,57,-22,84,-36,132r-49,0r-55,-174r51,0v12,45,24,75,31,129v10,-52,21,-84,35,-129r50,0v13,45,27,75,34,129v9,-52,19,-84,32,-129r47,0r-55,174r-49,0","w":287},"v":{"d":"139,-174r47,0r-66,174r-50,0r-66,-174r51,0r42,129v10,-44,28,-87,42,-129"},"u":{"d":"98,-36v59,2,35,-84,40,-138r48,0r0,174r-48,0v-1,-7,2,-17,-1,-22v-33,44,-116,31,-116,-41r0,-111r48,0r0,104v0,23,10,34,29,34","w":209},"t":{"d":"128,-174r0,39r-43,0v3,40,-17,117,40,96r5,40v-51,10,-94,-1,-94,-58r0,-78r-28,0r0,-39r28,0r0,-43r49,0r0,43r43,0","w":140},"\u2018":{"d":"59,-155v-3,16,-30,13,-50,13v10,-29,24,-67,38,-100r40,-4v-12,34,-24,72,-28,91","w":95},"\u2019":{"d":"36,-233v3,-15,30,-13,50,-13v-10,29,-23,66,-37,99r-41,5v12,-34,24,-72,28,-91","w":95},"\u201c":{"d":"136,-155v-3,15,-30,13,-50,13v10,-29,23,-67,37,-100r41,-4v-12,34,-24,72,-28,91xm59,-155v-3,16,-30,13,-50,13v10,-29,24,-67,38,-100r40,-4v-12,34,-24,72,-28,91","w":172},"{":{"d":"44,-108v39,9,35,46,28,85v-4,21,9,27,31,27r0,31v-62,3,-76,-36,-64,-92v5,-24,-7,-31,-29,-34r0,-31v38,0,29,-37,25,-69v-6,-40,23,-57,68,-57r0,31v-41,-5,-29,33,-25,62v4,26,-10,41,-34,47","w":112},"|":{"d":"66,90r-39,0r0,-360r39,0r0,360","w":92},"}":{"d":"69,-105v-37,-12,-36,-45,-28,-86v4,-21,-9,-26,-31,-26r0,-31v63,-3,76,37,63,91v-6,23,8,32,30,35r0,31v-38,0,-30,37,-25,68v7,40,-23,58,-68,58r0,-31v41,5,29,-34,25,-63v-4,-26,10,-40,34,-46","w":112},"g":{"d":"148,-174r48,0r0,163v5,84,-93,110,-165,80r6,-40v47,25,124,16,110,-51v-45,55,-134,15,-134,-63v0,-82,86,-121,135,-68r0,-21xm106,-36v31,0,42,-24,42,-59v0,-25,-17,-43,-42,-43v-23,0,-41,19,-41,51v0,31,15,51,41,51","w":220},"h":{"d":"73,-252r1,99v33,-43,116,-30,116,42r0,111r-48,0r0,-104v0,-23,-10,-34,-29,-34v-59,-2,-35,84,-40,138r-48,0r0,-252r48,0","w":215},"i":{"d":"25,0r0,-174r48,0r0,174r-48,0xm49,-185v-15,0,-27,-13,-27,-28v0,-15,12,-28,27,-28v15,0,28,13,28,28v0,15,-13,28,-28,28","w":98},"k":{"d":"179,-174r-69,78r79,96r-62,0r-49,-66v-11,13,-2,45,-5,66r-48,0r0,-252r48,0r0,143v13,-26,29,-44,46,-65r60,0","w":188},"j":{"d":"52,-186v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,28,-28,28xm28,4r0,-178r48,0r0,174v0,50,-33,81,-83,81r-6,-39v24,0,41,-13,41,-38","w":101},"n":{"d":"113,-138v-59,-2,-35,84,-40,138r-48,0r0,-174r48,0v1,6,-2,16,1,21v33,-43,116,-30,116,42r0,111r-48,0r0,-104v0,-23,-10,-34,-29,-34","w":215},"E":{"d":"72,-40r97,0r0,40r-146,0r0,-235r143,0r0,39r-94,0r0,55r81,0r0,39r-81,0r0,62","w":177},"D":{"d":"23,-235v26,-2,56,-4,81,-4v84,0,127,48,127,115v0,76,-54,128,-127,128v-29,0,-57,-2,-81,-4r0,-235xm72,-198r0,161v66,9,108,-17,108,-84v0,-59,-40,-86,-108,-77","w":243},"C":{"d":"12,-117v0,-101,92,-141,187,-114r-5,40v-17,-5,-37,-8,-54,-8v-54,0,-76,35,-76,81v0,46,22,82,76,82v17,0,37,-3,54,-8r5,39v-92,29,-187,-11,-187,-112","w":205},"B":{"d":"191,-70v2,73,-92,82,-168,70r0,-235v67,-9,160,-8,160,54v0,25,-16,43,-40,55v32,10,48,29,48,56xm72,-198r0,58v28,5,62,-1,59,-30v6,-27,-32,-32,-59,-28xm72,-37v32,4,70,0,67,-31v4,-33,-36,-38,-67,-32r0,63","w":203},"8":{"d":"133,-123v32,20,46,36,46,58v0,43,-41,69,-84,69v-43,0,-83,-21,-83,-63v0,-29,17,-45,47,-59v-64,-28,-44,-112,37,-112v83,-1,101,80,37,107xm96,-190v-39,5,-28,41,3,52v29,-11,33,-50,-3,-52xm95,-36v21,0,34,-13,34,-28v0,-18,-12,-30,-36,-40v-21,8,-31,19,-31,37v0,15,12,31,33,31","w":190},"7":{"d":"163,-226r0,38r-91,188r-49,0r90,-186r-107,0r0,-40r157,0","w":169},"6":{"d":"97,4v-45,0,-83,-35,-83,-96v0,-83,64,-133,141,-137r5,40v-46,4,-87,30,-91,60v43,-32,114,-1,114,54v0,48,-40,79,-86,79xm130,-68v6,-46,-62,-51,-62,-9v-5,50,61,58,62,9","w":192},"5":{"d":"65,-145v52,-17,105,13,105,64v0,69,-92,104,-159,74r5,-39v35,16,102,18,102,-28v0,-30,-27,-46,-55,-34r-44,-3r5,-115r126,0r0,40r-83,0","w":185},"4":{"d":"162,-226r0,138r28,0r0,39r-28,0r0,49r-48,0r0,-49r-107,0r0,-40r89,-137r66,0xm114,-88r0,-94v-13,37,-37,62,-55,94r55,0","w":200},"3":{"d":"161,-68v0,66,-91,86,-151,62r5,-40v32,14,96,18,96,-19v0,-23,-15,-32,-59,-35r0,-39v31,-2,48,-10,48,-29v0,-30,-57,-24,-78,-10r-6,-40v45,-24,138,-12,138,37v0,28,-19,43,-49,56v35,10,56,27,56,57","w":175},"2":{"d":"164,-175v0,42,-51,98,-92,135r94,0r0,40r-158,0r0,-32r36,-40v60,-65,68,-79,68,-93v0,-34,-60,-28,-84,-12r-5,-40v51,-22,141,-19,141,42","w":180},"0":{"d":"107,-230v54,0,93,48,93,117v0,69,-39,117,-93,117v-54,0,-93,-48,-93,-117v0,-69,39,-117,93,-117xm107,-36v26,0,43,-24,43,-77v0,-53,-17,-77,-43,-77v-26,0,-43,24,-43,77v0,53,17,77,43,77","w":213},"1":{"d":"46,-192v31,-11,49,-36,93,-34r0,226r-48,0r0,-167r-40,15","w":190},"\/":{"d":"108,-245r40,0r-110,258r-40,0","w":145},".":{"d":"45,-53v16,0,28,12,28,28v0,16,-12,29,-28,29v-16,0,-29,-13,-29,-29v0,-16,13,-28,29,-28","w":84},"-":{"d":"111,-108r0,31r-100,0r0,-31r100,0","w":121},",":{"d":"31,-32v3,-16,30,-13,50,-13v-10,29,-23,67,-37,100r-41,4v12,-34,24,-72,28,-91","w":92},"+":{"d":"127,-108r73,0r0,31r-73,0r0,77r-39,0r0,-77r-73,0r0,-31r73,0r0,-76r39,0r0,76","w":214},"*":{"d":"69,-235r39,0v-1,18,-10,42,-6,56r50,-24r13,37v-18,4,-40,5,-56,11r39,41r-32,23v-10,-16,-17,-34,-28,-49r-27,49r-31,-23v12,-14,27,-27,38,-42r-55,-10r12,-37v18,8,33,18,52,24","w":177},")":{"d":"8,34v31,-79,32,-203,0,-282r31,0v17,33,34,83,34,141v0,58,-17,108,-34,141r-31,0","w":93},"(":{"d":"86,-248v-31,79,-32,203,0,282r-31,0v-17,-33,-35,-83,-35,-141v0,-58,18,-108,35,-141r31,0","w":93},"'":{"d":"53,-145r-33,0r-3,-94v2,-12,31,-5,45,-7","w":77},"&":{"d":"248,0r-64,0v-6,-5,-9,-13,-16,-17v-49,43,-156,19,-156,-52v0,-36,13,-50,48,-70v-43,-34,-14,-104,44,-100v77,5,86,81,27,112r47,49v8,-14,10,-20,11,-43r45,0v-1,31,-9,55,-27,76xm104,-199v-23,1,-13,34,0,41v15,-6,22,-40,0,-41xm63,-71v0,34,54,46,78,24r-53,-63v-16,10,-25,19,-25,39","w":249},"%":{"d":"215,-233r33,0r-159,240r-32,0xm230,-119v34,0,61,25,61,61v0,36,-27,62,-61,62v-34,0,-61,-26,-61,-62v0,-36,27,-61,61,-61xm230,-27v11,0,19,-12,19,-31v0,-19,-8,-30,-19,-30v-11,0,-20,11,-20,30v0,19,9,31,20,31xm75,-230v34,0,61,26,61,62v0,36,-27,61,-61,61v-34,0,-61,-25,-61,-61v0,-36,27,-62,61,-62xm75,-138v11,0,19,-11,19,-30v0,-19,-8,-31,-19,-31v-11,0,-20,12,-20,31v0,19,9,30,20,30","w":304},"$":{"d":"159,-70v0,33,-25,55,-58,61r0,36r-31,0r0,-35v-16,-1,-35,-3,-48,-8r5,-40v26,8,81,20,81,-9v0,-13,-3,-19,-26,-30v-44,-22,-59,-37,-59,-67v0,-28,19,-49,50,-55r0,-36r31,0r0,34v15,1,33,4,43,9r-6,40v-15,-6,-30,-9,-48,-9v-11,0,-18,4,-18,13v0,12,5,16,28,28v48,24,56,40,56,68","w":182},"#":{"d":"187,-129r-37,0r-6,32r33,0r0,22r-38,0r-14,68r-28,0r14,-68r-38,0r-13,68r-28,0r13,-68r-32,0r0,-22r37,0r7,-32r-34,0r0,-23r38,0r14,-67r28,0r-14,67r38,0r13,-67r28,0r-13,67r32,0r0,23xm116,-97r6,-32r-37,0r-7,32r38,0","w":200},"\"":{"d":"53,-145r-33,0r-3,-94v2,-12,31,-5,45,-7xm122,-145r-32,0r-4,-94v3,-12,32,-5,46,-7","w":147},"!":{"d":"73,-25v0,16,-12,29,-28,29v-16,0,-28,-13,-28,-29v0,-16,12,-28,28,-28v16,0,28,12,28,28xm65,-71r-40,0r-3,-164r46,0","w":90},"\u201d":{"d":"36,-233v3,-15,30,-13,50,-13v-10,29,-23,66,-37,99r-41,5v12,-34,24,-72,28,-91xm113,-233v3,-16,30,-13,50,-13v-10,29,-24,66,-38,99r-40,5v12,-34,24,-72,28,-91","w":172},"L":{"d":"72,-40r113,0r0,40r-162,0r0,-235r49,0r0,195"},"\u00a0":{"w":79}}});
// source --> https://www.icpep.org/wp-content/themes/classipress/includes/fonts/Liberation_Serif_400.font.js?ver=7.0.2 
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitized data `2007 Ascender Corporation. All rights reserved.
 * 
 * Trademark:
 * Liberation is a trademark of Red Hat, Inc. registered in U.S. Patent and
 * Trademark Office and certain other jurisdictions.
 * 
 * Manufacturer:
 * Ascender Corporation
 * 
 * Designer:
 * Steve Matteson
 * 
 * Vendor URL:
 * http://www.ascendercorp.com/
 * 
 * License information:
 * http://www.ascendercorp.com/liberation.html
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Liberation Serif","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 2 6 3 5 4 5 2 3 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-10 -261 362 78.3087","underline-thickness":"17.5781","underline-position":"-47.9883","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":90,"k":{"Y":13,"W":7,"V":7,"T":7,"A":20}},"\u00a0":{"w":90},"!":{"d":"60,-37v14,0,21,9,21,21v0,12,-9,21,-21,21v-13,0,-22,-9,-22,-21v0,-12,8,-21,22,-21xm41,-236r38,0r-11,168r-16,0","w":119},"\"":{"d":"90,-236r35,0r-11,85r-13,0xm22,-236r35,0r-11,85r-13,0","w":146},"#":{"d":"173,-92r0,18r-45,0r-14,74r-18,0r14,-74r-55,0r-14,74r-18,0r14,-74r-30,0r0,-18r33,0r10,-54r-43,0r0,-18r47,0r13,-72r18,0r-13,72r54,0r14,-72r18,0r-13,72r28,0r0,18r-31,0r-11,54r42,0xm59,-92r54,0r10,-54r-54,0"},"$":{"d":"169,-68v0,44,-28,66,-70,71r0,24r-14,0r0,-23v-25,-2,-51,-6,-70,-13r0,-56r12,0v0,36,21,53,58,54r0,-99v-32,-13,-67,-22,-66,-68v1,-41,29,-55,66,-60r0,-23r14,0r0,23v17,0,41,3,54,7r0,49r-11,0v-1,-27,-16,-41,-43,-42r0,84v36,12,70,25,70,72xm99,-12v45,1,53,-71,16,-86v-5,-3,-10,-5,-16,-7r0,93xm85,-223v-41,0,-49,57,-15,71v4,2,10,5,15,7r0,-78"},"%":{"d":"77,4r-19,0r167,-243r19,0xm70,-239v39,0,57,24,57,64v0,41,-16,65,-58,65v-41,0,-57,-24,-57,-65v0,-41,17,-64,58,-64xm69,-122v26,0,30,-24,30,-53v0,-28,-3,-51,-30,-51v-27,0,-29,24,-29,51v0,28,2,53,29,53xm231,-125v39,0,57,24,57,64v0,42,-17,66,-58,66v-40,0,-57,-25,-57,-66v0,-41,17,-64,58,-64xm230,-8v26,0,30,-24,30,-53v0,-28,-3,-51,-30,-51v-27,0,-29,24,-29,51v0,28,3,53,29,53","w":299},"&":{"d":"111,-239v38,0,63,13,63,49v-1,38,-32,47,-59,59r75,67v8,-19,16,-41,18,-64r-25,-5r0,-9r80,0r0,9r-24,5v-8,28,-20,56,-35,78r41,36r29,5r0,9r-61,0r-30,-27v-38,44,-169,48,-169,-36v0,-42,29,-56,58,-68v-41,-28,-36,-108,39,-108xm48,-65v-4,67,94,63,123,27r-88,-81v-20,9,-33,25,-35,54xm111,-225v-53,0,-37,70,-8,82v23,-7,40,-18,40,-49v0,-22,-11,-33,-32,-33","w":280},"'":{"d":"15,-236r35,0r-11,85r-13,0","w":64},"(":{"d":"108,-235v-52,28,-62,95,-58,178v3,56,21,97,58,119r0,15v-101,-28,-125,-230,-41,-300v12,-10,25,-19,41,-27r0,15","w":119},")":{"d":"12,-250v101,28,125,231,40,299v-12,10,-24,20,-40,28r0,-15v44,-25,58,-78,58,-149v0,-70,-13,-123,-58,-148r0,-15","w":119},"*":{"d":"18,-187r11,-25r55,34r-7,-58r27,0r-8,58r56,-34r11,25r-59,17r59,17r-11,25r-56,-33r8,57r-27,0r7,-57r-55,34r-11,-25r57,-18"},"+":{"d":"111,-111r0,75r-19,0r0,-75r-74,0r0,-17r74,0r0,-75r19,0r0,75r74,0r0,17r-74,0","w":203},",":{"d":"42,-37v43,0,23,74,-4,81v-7,4,-14,8,-24,11r0,-13v17,-5,29,-14,31,-30v-3,-14,-25,-11,-24,-30v0,-12,9,-19,21,-19","w":90},"-":{"d":"13,-71r0,-27r94,0r0,27r-94,0","w":119},"\u00ad":{"d":"13,-71r0,-27r94,0r0,27r-94,0","w":119},".":{"d":"45,-37v13,0,21,8,21,21v1,14,-9,20,-21,21v-12,-1,-22,-7,-21,-21v0,-13,8,-21,21,-21","w":90},"\/":{"d":"18,4r-18,0r83,-241r17,0","w":100},"0":{"d":"90,-239v59,0,76,52,76,120v0,68,-14,123,-77,123v-58,0,-75,-55,-75,-123v0,-67,17,-120,76,-120xm89,-10v45,-6,45,-58,45,-109v0,-50,0,-101,-45,-106v-45,4,-43,57,-43,106v0,50,-2,104,43,109"},"1":{"d":"110,-14r48,5r0,9r-126,0r0,-9r48,-5r0,-192r-48,17r0,-10r69,-39r9,0r0,224","k":{"1":13}},"2":{"d":"24,-231v66,-21,156,2,128,81v-20,58,-74,84,-113,123r121,0r0,27r-144,0r0,-26r59,-54v26,-25,47,-47,47,-97v0,-48,-47,-57,-81,-37r-6,29r-11,0r0,-46"},"3":{"d":"104,-123v39,3,61,21,62,59v1,71,-83,76,-147,60r-2,-50r12,0v2,29,16,43,51,43v38,0,54,-19,54,-55v2,-43,-34,-49,-75,-50r0,-14v37,0,64,-7,64,-48v0,-47,-47,-56,-81,-36r-6,29r-12,0r0,-46v51,-13,135,-13,131,51v-2,34,-20,52,-51,57"},"4":{"d":"142,-52r0,52r-30,0r0,-52r-105,0r0,-23r115,-162r20,0r0,160r32,0r0,25r-32,0xm112,-77r-1,-119r-84,119r85,0"},"5":{"d":"134,-68v4,-52,-44,-63,-88,-51r-17,0r0,-117r119,0r0,27r-103,0r0,75v60,-10,121,-2,121,64v0,73,-79,85,-143,66r-2,-50r12,0v1,28,14,43,47,43v39,0,51,-20,54,-57"},"6":{"d":"48,-126v45,-28,121,-18,121,53v0,50,-25,77,-72,77v-63,0,-80,-54,-82,-120v-3,-88,52,-142,140,-116r0,40r-12,0v2,-42,-66,-39,-79,-8v-8,20,-16,43,-16,74xm48,-115v2,50,2,105,49,105v33,0,37,-26,40,-60v5,-60,-49,-61,-89,-45"},"7":{"d":"35,-180r-11,0r0,-56r146,0r0,14r-105,222r-23,0r103,-209r-104,0"},"8":{"d":"90,-239v42,0,69,19,69,61v0,28,-14,44,-35,53v25,8,42,28,42,61v0,47,-28,68,-77,68v-48,0,-75,-21,-75,-68v-1,-33,18,-51,41,-61v-19,-9,-34,-25,-34,-53v0,-42,26,-61,69,-61xm89,-10v34,0,46,-20,46,-54v0,-32,-11,-53,-46,-53v-34,0,-44,20,-44,53v-1,34,11,54,44,54xm89,-133v28,0,38,-16,38,-45v0,-29,-9,-47,-38,-47v-28,-1,-36,18,-36,47v0,29,8,45,36,45"},"9":{"d":"133,-108v-46,28,-127,15,-121,-56v4,-49,26,-74,76,-74v64,1,77,52,77,120v0,92,-54,140,-144,116r0,-41r11,0v-4,42,67,39,82,10v10,-20,17,-43,19,-75xm133,-120v-3,-48,0,-104,-45,-104v-34,0,-44,25,-44,61v0,32,10,52,43,52v17,0,33,-4,46,-9"},":":{"d":"50,-37v14,0,21,9,21,21v0,12,-9,21,-21,21v-13,0,-22,-9,-22,-21v0,-12,8,-21,22,-21xm50,-169v12,0,21,9,21,21v0,13,-9,22,-21,22v-13,0,-22,-9,-22,-22v0,-12,9,-21,22,-21","w":100},";":{"d":"50,-169v12,0,21,9,21,21v0,13,-9,22,-21,22v-13,0,-22,-9,-22,-22v0,-12,9,-21,22,-21xm47,-37v42,4,24,74,-3,81v-7,4,-15,8,-25,11r0,-13v22,-4,44,-32,19,-42v-18,-7,-14,-39,9,-37","w":100},"\u037e":{"d":"50,-169v12,0,21,9,21,21v0,13,-9,22,-21,22v-13,0,-22,-9,-22,-22v0,-12,9,-21,22,-21xm47,-37v42,4,24,74,-3,81v-7,4,-15,8,-25,11r0,-13v22,-4,44,-32,19,-42v-18,-7,-14,-39,9,-37","w":100},"<":{"d":"18,-115r0,-9r167,-82r0,18r-142,68r142,69r0,18","w":203},"=":{"d":"185,-92r0,17r-167,0r0,-17r167,0xm185,-165r0,18r-167,0r0,-18r167,0","w":203},">":{"d":"18,-33r0,-18r142,-69r-142,-68r0,-18r168,82r0,9","w":203},"?":{"d":"19,-231v61,-19,146,-3,123,76v-8,29,-32,42,-62,48r-3,45r-14,0r-4,-58v33,-4,57,-15,54,-56v6,-47,-42,-58,-77,-39r-6,29r-11,0r0,-45xm72,-37v14,0,21,9,21,21v0,12,-9,21,-21,21v-12,0,-22,-7,-21,-21v0,-13,8,-21,21,-21","w":159},"@":{"d":"43,-64v-8,111,130,150,207,87r6,9v-26,21,-57,36,-104,36v-84,-1,-133,-50,-133,-132v0,-108,63,-176,170,-176v76,0,124,35,124,108v0,76,-53,125,-128,127v-11,0,-6,-20,-6,-30v-17,24,-84,54,-83,-5v2,-81,44,-129,132,-120r-24,128v1,5,6,7,13,7v52,-7,74,-52,74,-107v0,-62,-39,-93,-103,-93v-96,0,-138,66,-145,161xm120,-54v-2,43,45,21,60,6r20,-94v-59,-6,-78,34,-80,88","w":331},"A":{"d":"81,-9r0,9r-77,0r0,-9r26,-5r81,-224r33,0r83,224r30,5r0,9r-99,0r0,-9r31,-5r-23,-68r-93,0r-24,68xm119,-212r-41,114r82,0","w":259,"k":{"\u2019":40,"y":33,"w":33,"v":27,"Y":33,"W":29,"V":46,"T":40," ":20}},"B":{"d":"75,-131v50,2,93,3,93,-48v0,-46,-48,-41,-93,-41r0,89xm75,-16v55,4,111,6,111,-51v0,-53,-58,-48,-111,-48r0,99xm223,-68v0,92,-121,65,-213,68r0,-9r31,-5r0,-208r-31,-4r0,-10v77,6,193,-24,194,56v0,33,-20,48,-48,54v36,5,67,20,67,58","w":240},"C":{"d":"52,-115v0,93,80,130,150,87r7,-35r11,0r-1,55v-23,7,-52,12,-83,12v-76,0,-117,-41,-121,-119v-5,-113,97,-141,201,-114r1,51r-12,0r-5,-30v-15,-9,-39,-16,-62,-16v-66,0,-86,41,-86,109","w":240},"D":{"d":"75,-17v87,13,134,-18,134,-103v0,-78,-51,-106,-134,-100r0,203xm246,-119v0,124,-107,126,-236,119r0,-9r31,-5r0,-208r-31,-4r0,-10r107,0v82,0,129,35,129,117","w":259},"E":{"d":"10,-9r31,-5r0,-208r-31,-4r0,-10r177,0r0,57r-11,0r-6,-38v-28,-4,-63,-3,-95,-3r0,92r63,0r6,-28r11,0r0,73r-11,0r-6,-29r-63,0r0,96r105,-3r10,-43r12,0r-3,62r-189,0r0,-9","w":219},"F":{"d":"75,-106r0,92r39,5r0,9r-101,0r0,-9r28,-5r0,-208r-31,-4r0,-10r177,0r0,57r-11,0r-6,-38v-28,-4,-63,-3,-95,-3r0,98r69,0r5,-28r11,0r0,73r-11,0r-5,-29r-69,0","w":200,"k":{"A":27,".":29,",":29}},"G":{"d":"52,-115v0,90,69,126,140,93r0,-67r-30,-5r0,-9r87,0r0,9r-23,5r0,77v-27,8,-56,16,-90,16v-77,-2,-121,-41,-121,-119v-1,-82,41,-123,122,-123v31,0,59,4,83,10r0,51r-12,0r-5,-29v-15,-12,-38,-18,-65,-18v-66,-1,-86,42,-86,109","w":259},"H":{"d":"10,0r0,-9r31,-5r0,-208r-31,-4r0,-10r95,0r0,10r-30,4r0,93r110,0r0,-93r-30,-4r0,-10r94,0r0,10r-30,4r0,208r30,5r0,9r-94,0r0,-9r30,-5r0,-99r-110,0r0,99r30,5r0,9r-95,0","w":259},"I":{"d":"77,-14r30,5r0,9r-94,0r0,-9r30,-5r0,-208r-30,-4r0,-10r94,0r0,10r-30,4r0,208","w":119},"J":{"d":"106,-76v4,61,-43,93,-98,74r0,-43r11,0v2,18,5,33,28,33v16,0,25,-11,25,-33r0,-177r-30,-4r0,-10r91,0r0,10r-27,4r0,146","w":140},"K":{"d":"238,-236r0,10r-27,4r-81,79r101,129r25,5r0,9r-57,0r-93,-119r-31,25r0,80r33,5r0,9r-98,0r0,-9r31,-5r0,-208r-31,-4r0,-10r95,0r0,10r-30,4r0,111r112,-111r-23,-4r0,-10r74,0","w":259},"L":{"d":"111,-226r-36,4r0,207v33,-1,73,2,101,-4r11,-49r11,0r-3,68r-185,0r0,-9r31,-5r0,-208r-31,-4r0,-10r101,0r0,10","w":219,"k":{"\u2019":33,"y":20,"Y":36,"W":27,"V":33,"T":33," ":13}},"M":{"d":"152,0r-7,0r-86,-203r0,189r32,5r0,9r-81,0r0,-9r31,-5r0,-208r-31,-4r0,-10r72,0r76,180r84,-180r68,0r0,10r-31,4r0,208r31,5r0,9r-96,0r0,-9r32,-5r0,-189","w":320},"N":{"d":"203,-222r-32,-4r0,-10r81,0r0,10r-31,4r0,222r-17,0r-145,-212r0,198r32,5r0,9r-81,0r0,-9r31,-5r0,-208r-31,-4r0,-10r72,0r121,175r0,-161","w":259},"O":{"d":"130,-224v-62,0,-78,43,-78,106v0,64,16,108,78,108v62,0,78,-45,78,-108v0,-63,-16,-106,-78,-106xm130,4v-77,0,-115,-43,-115,-122v-1,-80,37,-120,115,-120v78,0,115,42,115,120v0,79,-38,122,-115,122","w":259},"P":{"d":"75,-108v48,3,76,-12,76,-58v0,-46,-28,-57,-76,-54r0,112xm186,-166v-1,60,-46,78,-111,74r0,78r37,5r0,9r-99,0r0,-9r28,-5r0,-208r-31,-4r0,-10v81,1,178,-14,176,70","w":200,"k":{"A":33,".":40,",":40," ":13}},"Q":{"d":"130,-224v-62,0,-78,43,-78,106v0,64,16,108,78,108v62,0,78,-44,78,-108v0,-63,-16,-106,-78,-106xm145,3v-84,6,-130,-37,-130,-121v0,-80,37,-120,115,-120v77,0,115,42,115,120v1,59,-21,95,-62,112v19,19,30,53,71,46r0,12v-30,12,-67,2,-84,-19","w":259},"R":{"d":"199,-173v-1,36,-21,56,-49,65r64,94r26,5r0,9r-57,0r-66,-103r-42,0r0,89r35,5r0,9r-97,0r0,-9r28,-5r0,-208r-31,-4r0,-10v80,4,190,-20,189,63xm75,-119v50,2,89,-1,89,-51v0,-49,-39,-52,-89,-50r0,101","w":240,"k":{"y":14,"Y":20,"W":20,"V":29,"T":22}},"S":{"d":"178,-68v0,79,-95,82,-154,59r0,-54r12,0v1,35,22,52,60,52v50,0,69,-58,33,-82v-39,-24,-105,-21,-105,-85v0,-67,86,-66,142,-53r0,49r-12,0r-6,-29v-31,-27,-121,-7,-89,42v28,43,119,24,119,101","w":200},"T":{"d":"55,0r0,-9r38,-5r0,-207v-22,1,-53,0,-70,4r-5,37r-11,0r0,-56r207,0r0,56r-12,0r-5,-37r-70,-3r0,206r37,5r0,9r-109,0","w":219,"k":{"y":25,"w":25,"u":13,"s":25,"r":13,"o":25,"i":13,"e":25,"c":25,"a":25,"O":7,"A":29,";":20,":":18,".":27,"-":33,",":27," ":7}},"U":{"d":"134,-16v44,-1,70,-21,70,-64r0,-142r-32,-4r0,-10r80,0r0,10r-30,4r0,141v0,57,-33,84,-91,85v-58,0,-93,-26,-93,-82r0,-144r-30,-4r0,-10r94,0r0,10r-30,4v7,82,-31,209,62,206","w":259},"V":{"d":"256,-236r0,10r-26,4r-95,227r-9,0r-95,-227r-27,-4r0,-10r95,0r0,10r-31,4r71,174r71,-174r-31,-4r0,-10r77,0","w":259,"k":{"y":40,"u":22,"r":22,"o":46,"i":22,"e":40,"a":40,"A":46,";":27,":":27,".":46,"-":33,",":46," ":7}},"W":{"d":"319,-222r-77,227r-10,0r-61,-162r-63,162r-9,0r-78,-227r-21,-4r0,-10r90,0r0,10r-34,4r56,166r63,-163r8,0r61,163r54,-166r-37,-4r0,-10r78,0r0,10","w":339,"k":{"y":22,"u":14,"r":14,"o":29,"i":14,"e":29,"a":29,"A":40,";":13,":":13,".":33,"-":20,",":33," ":7}},"X":{"d":"56,-14r29,5r0,9r-77,0r0,-9r26,-5r80,-107r-68,-101r-27,-4r0,-10r97,0r0,10r-30,4r49,73r55,-73r-29,-4r0,-10r77,0r0,10r-26,4r-66,88r81,120r26,5r0,9r-97,0r0,-9r30,-5r-62,-91","w":259},"Y":{"d":"147,-93r0,79r38,5r0,9r-109,0r0,-9r37,-5r0,-78r-82,-130r-27,-4r0,-10r100,0r0,10r-32,4r68,109r64,-109r-30,-4r0,-10r77,0r0,10r-26,4","w":259,"k":{"v":36,"u":40,"q":40,"p":33,"o":36,"i":20,"e":36,"a":36,"A":40,";":33,":":33,".":46,"-":40,",":46," ":13}},"Z":{"d":"56,-15v0,0,89,2,122,-6r10,-45r12,0r-5,66r-178,0r0,-17r132,-204v-33,1,-75,-1,-103,4r-6,37r-12,0r0,-56r161,0r0,15","w":219},"[":{"d":"27,48r0,-298r80,0r0,8r-52,8r0,267r52,7r0,8r-80,0","w":119},"\\":{"d":"0,-237r17,0r83,241r-18,0","w":100},"]":{"d":"13,48r0,-8r52,-7r0,-267r-52,-8r0,-8r80,0r0,298r-80,0","w":119},"^":{"d":"80,-236r9,0r75,168r-18,0r-61,-143r-62,143r-18,0","w":168},"_":{"d":"-3,46r0,-18r186,0r0,18r-186,0"},"`":{"d":"83,-197r-62,-47r0,-6r37,0v11,19,28,30,35,53r-10,0","w":119},"a":{"d":"32,-163v41,-10,102,-14,102,39r0,112v8,3,24,-2,21,12r-45,0r-4,-17v-23,30,-103,30,-93,-29v-2,-50,45,-50,92,-51v4,-36,-5,-70,-42,-56v-6,2,-12,4,-16,6v-4,7,0,23,-15,20r0,-36xm42,-47v0,41,41,33,63,22r0,-59v-34,1,-63,-1,-63,37","w":159},"b":{"d":"53,-14v58,12,82,-15,82,-73v0,-52,-35,-77,-82,-58r0,131xm89,4v-25,0,-47,-6,-65,-13r0,-229r-24,-4r0,-8r53,0r-1,94v48,-33,114,-4,114,69v0,57,-23,91,-77,91"},"c":{"d":"45,-84v0,64,52,80,104,63v1,25,-30,25,-55,25v-56,0,-80,-32,-80,-88v0,-76,62,-98,131,-80r0,46r-10,0v-5,-15,-4,-31,-23,-35v-47,-10,-67,21,-67,69","w":159},"d":{"d":"13,-81v0,-71,46,-101,114,-85r-1,-72r-28,-4r0,-8r57,0r0,238v8,3,24,-2,21,12r-47,0r-2,-12v-47,35,-114,11,-114,-69xm90,-155v-37,1,-44,33,-45,74v0,38,9,66,45,66v14,0,27,-3,36,-7r0,-130v-10,-1,-24,-3,-36,-3"},"e":{"d":"84,-170v49,0,66,33,63,87r-101,0v-8,60,38,80,95,63r0,10v-13,8,-33,14,-53,14v-54,0,-74,-33,-74,-88v-1,-54,22,-86,70,-86xm117,-97v12,-57,-57,-82,-69,-24v-1,7,-2,15,-2,24r71,0","w":159},"f":{"d":"103,-236v-39,-15,-35,32,-34,71r44,0r0,15r-44,0r0,136r35,6r0,8r-89,0r0,-8r25,-6r0,-136r-29,0r0,-9r29,-7v-6,-59,23,-100,80,-84r0,36v-15,2,-12,-14,-17,-22","w":119,"k":{"\u2019":-20,"f":7}},"g":{"d":"141,-152v28,39,5,97,-54,97v-9,0,-20,-2,-27,-3r-11,23v29,22,130,-14,124,52v-4,45,-38,57,-88,61v-64,5,-93,-52,-40,-80v-12,-4,-23,-13,-24,-29r28,-31v-19,-9,-28,-26,-28,-51v-2,-51,53,-65,100,-52r38,-20r7,8xm85,64v35,0,61,-11,61,-42v0,-35,-57,-17,-89,-21v-9,8,-16,19,-17,34v0,25,19,29,45,29xm52,-113v1,26,7,46,35,44v28,-1,34,-16,35,-44v0,-26,-6,-43,-34,-43v-28,0,-36,17,-36,43"},"h":{"d":"126,-119v3,-38,-42,-31,-69,-25r0,132r23,4r0,8r-73,0r0,-8r21,-4r0,-226r-24,-4r0,-8r53,0r-1,98v31,-22,99,-31,99,31r0,109v7,3,23,-1,20,12r-71,0r0,-8r22,-4r0,-107"},"i":{"d":"47,-200v-23,0,-25,-39,0,-38v13,0,18,7,20,19v-1,11,-8,19,-20,19xm65,-12r28,4r0,8r-85,0r0,-8r28,-4r0,-141r-24,-4r0,-8r53,0r0,153","w":100},"j":{"d":"50,-238v28,0,22,38,0,38v-10,-2,-19,-7,-19,-19v0,-12,7,-18,19,-19xm3,58v24,15,35,-10,35,-42r0,-169r-25,-4r0,-8r54,0r0,172v4,51,-28,81,-77,66r0,-35v13,-2,9,13,13,20","w":100},"k":{"d":"60,-80r68,-73v-7,-3,-20,0,-17,-12r58,0v3,13,-13,9,-20,12r-47,48r60,93v7,3,21,-1,18,12r-68,0v-3,-12,9,-9,15,-12r-45,-71r-22,23r0,48v7,3,21,-1,18,12r-68,0r0,-8r21,-4r0,-226r-24,-4r0,-8r53,0r0,170"},"l":{"d":"65,-12r28,4r0,8r-86,0r0,-8r28,-4r0,-226r-28,-4r0,-8r58,0r0,238","w":100},"m":{"d":"126,-118v4,-37,-42,-32,-68,-25r0,131r24,4r0,8r-74,0v-3,-13,13,-9,20,-12r0,-141v-7,-3,-23,1,-20,-12r48,0r1,13v22,-15,77,-30,92,2v32,-22,104,-36,104,29r0,109v8,3,24,-2,21,12r-75,0r0,-8r25,-4r0,-106v3,-39,-45,-31,-72,-24v7,37,1,88,3,130r25,4r0,8r-78,0r0,-8r24,-4r0,-106","w":280},"n":{"d":"125,-118v4,-37,-41,-34,-68,-26r0,132r23,4r0,8r-72,0v-3,-13,13,-9,20,-12r0,-141v-7,-3,-23,1,-20,-12r47,0r2,13v31,-23,98,-29,98,31r0,109v7,3,23,-1,20,12r-72,0r0,-8r22,-4r0,-106"},"o":{"d":"90,-170v52,0,76,32,76,87v0,54,-24,87,-77,87v-51,0,-75,-34,-75,-87v0,-54,24,-87,76,-87xm89,-10v39,0,46,-35,46,-73v0,-39,-7,-73,-46,-73v-39,1,-44,34,-44,73v0,39,6,72,44,73"},"p":{"d":"166,-85v3,67,-44,102,-111,85r1,64r29,4r0,9r-79,0r0,-9r21,-4r0,-217v-7,-3,-22,1,-19,-12r46,0r1,9v11,-8,26,-14,45,-14v47,2,64,36,66,85xm56,-13v53,14,83,-14,78,-72v7,-53,-33,-79,-78,-60r0,132"},"q":{"d":"13,-82v-2,-68,46,-101,114,-84v8,-3,15,-8,28,-7r0,237r18,4r0,9r-70,0r0,-9r23,-4v1,-25,-2,-53,2,-75v-11,8,-27,15,-47,15v-49,-1,-66,-35,-68,-86xm126,-152v-53,-13,-86,12,-81,70v-6,54,34,80,81,61r0,-131"},"r":{"d":"57,-145v16,-10,35,-24,60,-25r0,45v-19,1,-8,-30,-40,-17r-20,6r0,124r29,4r0,8r-79,0r0,-8r21,-4r0,-141v-8,-3,-24,2,-21,-12r48,0","w":119,"k":{"\u2019":-13,"g":7,".":20,"-":7,",":14}},"s":{"d":"41,-130v7,48,86,23,86,84v0,56,-69,57,-112,41r0,-40v20,0,9,29,31,31v35,19,77,-26,41,-50v-27,-18,-72,-13,-72,-59v0,-50,58,-52,100,-41r0,36v-19,1,-8,-25,-28,-25v-21,-7,-50,-1,-46,23","w":140},"t":{"d":"54,-38v-1,25,24,26,44,20r0,12v-27,16,-73,15,-73,-29r0,-115r-21,0v-2,-14,14,-10,21,-15r18,-38r11,0r0,38r38,0r0,15r-38,0r0,112","w":100},"u":{"d":"124,-13v-35,21,-98,28,-98,-32r0,-108v-8,-3,-24,2,-21,-12r50,0r0,118v-3,37,42,32,69,25r0,-131r-25,-4r0,-8r54,0r0,153v8,3,24,-2,21,12r-48,0"},"v":{"d":"164,-154r-66,158r-13,0r-68,-157v-7,-3,-20,0,-17,-12r77,0r0,8r-26,4r48,115r46,-115r-26,-4r0,-8r61,0r0,8","k":{".":23,",":23}},"w":{"d":"240,-154r-55,158r-14,0r-41,-109r-40,109r-13,0r-57,-157v-7,-3,-23,1,-20,-12r79,0r0,8r-27,4r39,112r40,-108r14,0r40,109r38,-113r-28,-4r0,-8r63,0r0,8","w":259,"k":{".":23,",":23}},"x":{"d":"156,-12v7,3,23,-1,20,12r-75,0r0,-8r22,-4r-38,-58r-45,58r23,4r0,8r-60,0r0,-8r19,-3r55,-71r-48,-71v-7,-3,-23,1,-20,-12r75,0r0,8r-22,4r32,48r37,-48r-23,-4r0,-8r59,0r0,8r-19,3r-46,60"},"y":{"d":"161,-154r-76,191v-10,29,-36,49,-77,38r0,-36v18,-2,6,24,29,21v30,-4,38,-32,47,-58r-63,-155v-7,-3,-20,0,-17,-12r77,0r0,8r-26,4r45,116r43,-116r-26,-4r0,-8r62,0r0,8","k":{".":23,",":23}},"z":{"d":"10,0r0,-8r90,-143v-23,2,-54,-4,-70,6v-5,8,1,26,-14,24r0,-44r122,0r0,8r-91,143v29,-2,65,3,86,-8r9,-35r8,0r-5,57r-135,0","w":159},"{":{"d":"66,-102v72,12,-10,150,74,142r0,8v-45,4,-70,-11,-70,-52v0,-44,8,-96,-37,-93r0,-8v76,4,-3,-150,83,-145r24,0r0,8v-80,-15,-2,128,-74,140","w":172},"|":{"d":"27,78r0,-328r18,0r0,328r-18,0","w":72},"}":{"d":"102,-55v0,60,3,115,-69,103r0,-8v79,12,4,-128,74,-142v-40,-5,-34,-57,-34,-102v0,-27,-11,-41,-40,-38r0,-8v44,-4,69,10,69,52v0,43,-7,95,38,93r0,8v-26,1,-38,15,-38,42","w":172},"~":{"d":"184,-149v-4,31,-12,61,-47,61v-37,0,-47,-37,-80,-43v-23,1,-26,21,-29,43r-18,0v2,-33,13,-61,47,-61v38,0,47,37,80,43v23,-1,26,-21,29,-43r18,0","w":194},"\u00d7":{"d":"102,-107r-61,61r-13,-13r61,-61r-61,-60r13,-13r61,60r60,-60r13,13r-61,60r61,61r-13,13","w":203},"\u2013":{"d":"182,-93r0,18r-184,0r0,-18r184,0"},"\u2014":{"d":"362,-93r0,18r-364,0r0,-18r364,0","w":360},"\u2018":{"d":"60,-147v-43,-4,-22,-74,3,-82v7,-4,15,-8,25,-11r0,14v-23,3,-44,32,-19,42v18,7,14,40,-9,37","w":119,"k":{"\u2018":27}},"\u2019":{"d":"60,-239v44,3,22,74,-4,81v-7,4,-14,8,-24,11r0,-13v17,-5,29,-14,31,-30v-4,-14,-25,-12,-24,-30v0,-12,9,-19,21,-19","w":119,"k":{"\u2019":27,"t":7,"s":20," ":27}},"\u201c":{"d":"116,-147v-42,-5,-22,-75,4,-82v7,-4,15,-8,25,-11r0,14v-23,2,-45,31,-19,42v16,7,13,39,-10,37xm43,-147v-44,-4,-24,-74,3,-82v7,-4,15,-8,25,-11r0,14v-23,2,-44,30,-19,42v17,8,15,39,-9,37","w":159},"\u201d":{"d":"44,-239v43,4,22,74,-4,81v-7,4,-15,8,-25,11r0,-13v22,-3,45,-31,19,-42v-18,-8,-14,-39,10,-37xm96,-220v8,-33,48,-19,47,9v-2,37,-23,55,-54,64r0,-13v22,-4,44,-31,19,-42v-6,-3,-12,-9,-12,-18","w":159},"\u2026":{"d":"59,-37v14,-1,22,8,22,21v0,13,-9,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,7,-21,21,-21xm180,-37v13,0,21,8,21,21v1,14,-9,20,-21,21v-12,-1,-22,-7,-21,-21v0,-13,8,-21,21,-21xm301,-37v14,0,21,9,21,21v0,12,-9,21,-21,21v-13,0,-22,-8,-22,-21v0,-13,8,-22,22,-21","w":360},"\u2032":{"d":"26,-236r35,0r-30,85r-13,0","w":78},"\u2033":{"d":"96,-236r34,0r-30,85r-13,0xm28,-236r35,0r-30,85r-13,0","w":149},"\u2122":{"d":"45,-94r0,-8r22,-3r0,-120r-40,2r-3,22r-7,0r0,-35r125,0r0,35r-8,0r-3,-22r-40,-2r0,120r22,3r0,8r-68,0xm243,-94r-5,0r-50,-118r0,107r19,3r0,8r-50,0r0,-8r18,-3r0,-121v-7,-3,-20,2,-18,-10r47,0r43,103r46,-103r45,0v2,12,-11,7,-18,10r0,121r18,3r0,8r-61,0r0,-8r19,-3r0,-107","w":352}}});
// source --> https://www.icpep.org/wp-content/themes/classipress/theme-framework/js/colorbox/jquery.colorbox.min.js?ver=1.6.1 
/*!
	Colorbox 1.6.1
	license: MIT
	http://www.jacklmoore.com/colorbox
*/
(function(t,e,i){function n(i,n,o){var r=e.createElement(i);return n&&(r.id=Z+n),o&&(r.style.cssText=o),t(r)}function o(){return i.innerHeight?i.innerHeight:t(i).height()}function r(e,i){i!==Object(i)&&(i={}),this.cache={},this.el=e,this.value=function(e){var n;return void 0===this.cache[e]&&(n=t(this.el).attr("data-cbox-"+e),void 0!==n?this.cache[e]=n:void 0!==i[e]?this.cache[e]=i[e]:void 0!==X[e]&&(this.cache[e]=X[e])),this.cache[e]},this.get=function(e){var i=this.value(e);return t.isFunction(i)?i.call(this.el,this):i}}function h(t){var e=W.length,i=(A+t)%e;return 0>i?e+i:i}function a(t,e){return Math.round((/%/.test(t)?("x"===e?E.width():o())/100:1)*parseInt(t,10))}function s(t,e){return t.get("photo")||t.get("photoRegex").test(e)}function l(t,e){return t.get("retinaUrl")&&i.devicePixelRatio>1?e.replace(t.get("photoRegex"),t.get("retinaSuffix")):e}function d(t){"contains"in y[0]&&!y[0].contains(t.target)&&t.target!==v[0]&&(t.stopPropagation(),y.focus())}function c(t){c.str!==t&&(y.add(v).removeClass(c.str).addClass(t),c.str=t)}function g(e){A=0,e&&e!==!1&&"nofollow"!==e?(W=t("."+te).filter(function(){var i=t.data(this,Y),n=new r(this,i);return n.get("rel")===e}),A=W.index(_.el),-1===A&&(W=W.add(_.el),A=W.length-1)):W=t(_.el)}function u(i){t(e).trigger(i),ae.triggerHandler(i)}function f(i){var o;if(!G){if(o=t(i).data(Y),_=new r(i,o),g(_.get("rel")),!$){$=q=!0,c(_.get("className")),y.css({visibility:"hidden",display:"block",opacity:""}),I=n(se,"LoadedContent","width:0; height:0; overflow:hidden; visibility:hidden"),b.css({width:"",height:""}).append(I),j=T.height()+k.height()+b.outerHeight(!0)-b.height(),D=C.width()+H.width()+b.outerWidth(!0)-b.width(),N=I.outerHeight(!0),z=I.outerWidth(!0);var h=a(_.get("initialWidth"),"x"),s=a(_.get("initialHeight"),"y"),l=_.get("maxWidth"),f=_.get("maxHeight");_.w=(l!==!1?Math.min(h,a(l,"x")):h)-z-D,_.h=(f!==!1?Math.min(s,a(f,"y")):s)-N-j,I.css({width:"",height:_.h}),J.position(),u(ee),_.get("onOpen"),O.add(S).hide(),y.focus(),_.get("trapFocus")&&e.addEventListener&&(e.addEventListener("focus",d,!0),ae.one(re,function(){e.removeEventListener("focus",d,!0)})),_.get("returnFocus")&&ae.one(re,function(){t(_.el).focus()})}var p=parseFloat(_.get("opacity"));v.css({opacity:p===p?p:"",cursor:_.get("overlayClose")?"pointer":"",visibility:"visible"}).show(),_.get("closeButton")?B.html(_.get("close")).appendTo(b):B.appendTo("<div/>"),w()}}function p(){y||(V=!1,E=t(i),y=n(se).attr({id:Y,"class":t.support.opacity===!1?Z+"IE":"",role:"dialog",tabindex:"-1"}).hide(),v=n(se,"Overlay").hide(),M=t([n(se,"LoadingOverlay")[0],n(se,"LoadingGraphic")[0]]),x=n(se,"Wrapper"),b=n(se,"Content").append(S=n(se,"Title"),F=n(se,"Current"),P=t('<button type="button"/>').attr({id:Z+"Previous"}),K=t('<button type="button"/>').attr({id:Z+"Next"}),R=n("button","Slideshow"),M),B=t('<button type="button"/>').attr({id:Z+"Close"}),x.append(n(se).append(n(se,"TopLeft"),T=n(se,"TopCenter"),n(se,"TopRight")),n(se,!1,"clear:left").append(C=n(se,"MiddleLeft"),b,H=n(se,"MiddleRight")),n(se,!1,"clear:left").append(n(se,"BottomLeft"),k=n(se,"BottomCenter"),n(se,"BottomRight"))).find("div div").css({"float":"left"}),L=n(se,!1,"position:absolute; width:9999px; visibility:hidden; display:none; max-width:none;"),O=K.add(P).add(F).add(R)),e.body&&!y.parent().length&&t(e.body).append(v,y.append(x,L))}function m(){function i(t){t.which>1||t.shiftKey||t.altKey||t.metaKey||t.ctrlKey||(t.preventDefault(),f(this))}return y?(V||(V=!0,K.click(function(){J.next()}),P.click(function(){J.prev()}),B.click(function(){J.close()}),v.click(function(){_.get("overlayClose")&&J.close()}),t(e).bind("keydown."+Z,function(t){var e=t.keyCode;$&&_.get("escKey")&&27===e&&(t.preventDefault(),J.close()),$&&_.get("arrowKey")&&W[1]&&!t.altKey&&(37===e?(t.preventDefault(),P.click()):39===e&&(t.preventDefault(),K.click()))}),t.isFunction(t.fn.on)?t(e).on("click."+Z,"."+te,i):t("."+te).live("click."+Z,i)),!0):!1}function w(){var e,o,r,h=J.prep,d=++le;if(q=!0,U=!1,u(he),u(ie),_.get("onLoad"),_.h=_.get("height")?a(_.get("height"),"y")-N-j:_.get("innerHeight")&&a(_.get("innerHeight"),"y"),_.w=_.get("width")?a(_.get("width"),"x")-z-D:_.get("innerWidth")&&a(_.get("innerWidth"),"x"),_.mw=_.w,_.mh=_.h,_.get("maxWidth")&&(_.mw=a(_.get("maxWidth"),"x")-z-D,_.mw=_.w&&_.w<_.mw?_.w:_.mw),_.get("maxHeight")&&(_.mh=a(_.get("maxHeight"),"y")-N-j,_.mh=_.h&&_.h<_.mh?_.h:_.mh),e=_.get("href"),Q=setTimeout(function(){M.show()},100),_.get("inline")){var c=t(e);r=t("<div>").hide().insertBefore(c),ae.one(he,function(){r.replaceWith(c)}),h(c)}else _.get("iframe")?h(" "):_.get("html")?h(_.get("html")):s(_,e)?(e=l(_,e),U=_.get("createImg"),t(U).addClass(Z+"Photo").bind("error."+Z,function(){h(n(se,"Error").html(_.get("imgError")))}).one("load",function(){d===le&&setTimeout(function(){var e;_.get("retinaImage")&&i.devicePixelRatio>1&&(U.height=U.height/i.devicePixelRatio,U.width=U.width/i.devicePixelRatio),_.get("scalePhotos")&&(o=function(){U.height-=U.height*e,U.width-=U.width*e},_.mw&&U.width>_.mw&&(e=(U.width-_.mw)/U.width,o()),_.mh&&U.height>_.mh&&(e=(U.height-_.mh)/U.height,o())),_.h&&(U.style.marginTop=Math.max(_.mh-U.height,0)/2+"px"),W[1]&&(_.get("loop")||W[A+1])&&(U.style.cursor="pointer",t(U).bind("click."+Z,function(){J.next()})),U.style.width=U.width+"px",U.style.height=U.height+"px",h(U)},1)}),U.src=e):e&&L.load(e,_.get("data"),function(e,i){d===le&&h("error"===i?n(se,"Error").html(_.get("xhrError")):t(this).contents())})}var v,y,x,b,T,C,H,k,W,E,I,L,M,S,F,R,K,P,B,O,_,j,D,N,z,A,U,$,q,G,Q,J,V,X={html:!1,photo:!1,iframe:!1,inline:!1,transition:"elastic",speed:300,fadeOut:300,width:!1,initialWidth:"600",innerWidth:!1,maxWidth:!1,height:!1,initialHeight:"450",innerHeight:!1,maxHeight:!1,scalePhotos:!0,scrolling:!0,opacity:.9,preloading:!0,className:!1,overlayClose:!0,escKey:!0,arrowKey:!0,top:!1,bottom:!1,left:!1,right:!1,fixed:!1,data:void 0,closeButton:!0,fastIframe:!0,open:!1,reposition:!0,loop:!0,slideshow:!1,slideshowAuto:!0,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",photoRegex:/\.(gif|png|jp(e|g|eg)|bmp|ico|webp|jxr|svg)((#|\?).*)?$/i,retinaImage:!1,retinaUrl:!1,retinaSuffix:"@2x.$1",current:"image {current} of {total}",previous:"previous",next:"next",close:"close",xhrError:"This content failed to load.",imgError:"This image failed to load.",returnFocus:!0,trapFocus:!0,onOpen:!1,onLoad:!1,onComplete:!1,onCleanup:!1,onClosed:!1,rel:function(){return this.rel},href:function(){return t(this).attr("href")},title:function(){return this.title},createImg:function(){var e=new Image,i=t(this).data("cbox-img-attrs");return"object"==typeof i&&t.each(i,function(t,i){e[t]=i}),e},createIframe:function(){var i=e.createElement("iframe"),n=t(this).data("cbox-iframe-attrs");return"object"==typeof n&&t.each(n,function(t,e){i[t]=e}),"frameBorder"in i&&(i.frameBorder=0),"allowTransparency"in i&&(i.allowTransparency="true"),i.name=(new Date).getTime(),i.allowFullScreen=!0,i}},Y="colorbox",Z="cbox",te=Z+"Element",ee=Z+"_open",ie=Z+"_load",ne=Z+"_complete",oe=Z+"_cleanup",re=Z+"_closed",he=Z+"_purge",ae=t("<a/>"),se="div",le=0,de={},ce=function(){function t(){clearTimeout(h)}function e(){(_.get("loop")||W[A+1])&&(t(),h=setTimeout(J.next,_.get("slideshowSpeed")))}function i(){R.html(_.get("slideshowStop")).unbind(s).one(s,n),ae.bind(ne,e).bind(ie,t),y.removeClass(a+"off").addClass(a+"on")}function n(){t(),ae.unbind(ne,e).unbind(ie,t),R.html(_.get("slideshowStart")).unbind(s).one(s,function(){J.next(),i()}),y.removeClass(a+"on").addClass(a+"off")}function o(){r=!1,R.hide(),t(),ae.unbind(ne,e).unbind(ie,t),y.removeClass(a+"off "+a+"on")}var r,h,a=Z+"Slideshow_",s="click."+Z;return function(){r?_.get("slideshow")||(ae.unbind(oe,o),o()):_.get("slideshow")&&W[1]&&(r=!0,ae.one(oe,o),_.get("slideshowAuto")?i():n(),R.show())}}();t[Y]||(t(p),J=t.fn[Y]=t[Y]=function(e,i){var n,o=this;return e=e||{},t.isFunction(o)&&(o=t("<a/>"),e.open=!0),o[0]?(p(),m()&&(i&&(e.onComplete=i),o.each(function(){var i=t.data(this,Y)||{};t.data(this,Y,t.extend(i,e))}).addClass(te),n=new r(o[0],e),n.get("open")&&f(o[0])),o):o},J.position=function(e,i){function n(){T[0].style.width=k[0].style.width=b[0].style.width=parseInt(y[0].style.width,10)-D+"px",b[0].style.height=C[0].style.height=H[0].style.height=parseInt(y[0].style.height,10)-j+"px"}var r,h,s,l=0,d=0,c=y.offset();if(E.unbind("resize."+Z),y.css({top:-9e4,left:-9e4}),h=E.scrollTop(),s=E.scrollLeft(),_.get("fixed")?(c.top-=h,c.left-=s,y.css({position:"fixed"})):(l=h,d=s,y.css({position:"absolute"})),d+=_.get("right")!==!1?Math.max(E.width()-_.w-z-D-a(_.get("right"),"x"),0):_.get("left")!==!1?a(_.get("left"),"x"):Math.round(Math.max(E.width()-_.w-z-D,0)/2),l+=_.get("bottom")!==!1?Math.max(o()-_.h-N-j-a(_.get("bottom"),"y"),0):_.get("top")!==!1?a(_.get("top"),"y"):Math.round(Math.max(o()-_.h-N-j,0)/2),y.css({top:c.top,left:c.left,visibility:"visible"}),x[0].style.width=x[0].style.height="9999px",r={width:_.w+z+D,height:_.h+N+j,top:l,left:d},e){var g=0;t.each(r,function(t){return r[t]!==de[t]?(g=e,void 0):void 0}),e=g}de=r,e||y.css(r),y.dequeue().animate(r,{duration:e||0,complete:function(){n(),q=!1,x[0].style.width=_.w+z+D+"px",x[0].style.height=_.h+N+j+"px",_.get("reposition")&&setTimeout(function(){E.bind("resize."+Z,J.position)},1),t.isFunction(i)&&i()},step:n})},J.resize=function(t){var e;$&&(t=t||{},t.width&&(_.w=a(t.width,"x")-z-D),t.innerWidth&&(_.w=a(t.innerWidth,"x")),I.css({width:_.w}),t.height&&(_.h=a(t.height,"y")-N-j),t.innerHeight&&(_.h=a(t.innerHeight,"y")),t.innerHeight||t.height||(e=I.scrollTop(),I.css({height:"auto"}),_.h=I.height()),I.css({height:_.h}),e&&I.scrollTop(e),J.position("none"===_.get("transition")?0:_.get("speed")))},J.prep=function(i){function o(){return _.w=_.w||I.width(),_.w=_.mw&&_.mw<_.w?_.mw:_.w,_.w}function a(){return _.h=_.h||I.height(),_.h=_.mh&&_.mh<_.h?_.mh:_.h,_.h}if($){var d,g="none"===_.get("transition")?0:_.get("speed");I.remove(),I=n(se,"LoadedContent").append(i),I.hide().appendTo(L.show()).css({width:o(),overflow:_.get("scrolling")?"auto":"hidden"}).css({height:a()}).prependTo(b),L.hide(),t(U).css({"float":"none"}),c(_.get("className")),d=function(){function i(){t.support.opacity===!1&&y[0].style.removeAttribute("filter")}var n,o,a=W.length;$&&(o=function(){clearTimeout(Q),M.hide(),u(ne),_.get("onComplete")},S.html(_.get("title")).show(),I.show(),a>1?("string"==typeof _.get("current")&&F.html(_.get("current").replace("{current}",A+1).replace("{total}",a)).show(),K[_.get("loop")||a-1>A?"show":"hide"]().html(_.get("next")),P[_.get("loop")||A?"show":"hide"]().html(_.get("previous")),ce(),_.get("preloading")&&t.each([h(-1),h(1)],function(){var i,n=W[this],o=new r(n,t.data(n,Y)),h=o.get("href");h&&s(o,h)&&(h=l(o,h),i=e.createElement("img"),i.src=h)})):O.hide(),_.get("iframe")?(n=_.get("createIframe"),_.get("scrolling")||(n.scrolling="no"),t(n).attr({src:_.get("href"),"class":Z+"Iframe"}).one("load",o).appendTo(I),ae.one(he,function(){n.src="//about:blank"}),_.get("fastIframe")&&t(n).trigger("load")):o(),"fade"===_.get("transition")?y.fadeTo(g,1,i):i())},"fade"===_.get("transition")?y.fadeTo(g,0,function(){J.position(0,d)}):J.position(g,d)}},J.next=function(){!q&&W[1]&&(_.get("loop")||W[A+1])&&(A=h(1),f(W[A]))},J.prev=function(){!q&&W[1]&&(_.get("loop")||A)&&(A=h(-1),f(W[A]))},J.close=function(){$&&!G&&(G=!0,$=!1,u(oe),_.get("onCleanup"),E.unbind("."+Z),v.fadeTo(_.get("fadeOut")||0,0),y.stop().fadeTo(_.get("fadeOut")||0,0,function(){y.hide(),v.hide(),u(he),I.remove(),setTimeout(function(){G=!1,u(re),_.get("onClosed")},1)}))},J.remove=function(){y&&(y.stop(),t[Y].close(),y.stop(!1,!0).remove(),v.remove(),G=!1,y=null,t("."+te).removeData(Y).removeClass(te),t(e).unbind("click."+Z).unbind("keydown."+Z))},J.element=function(){return t(_.el)},J.settings=X)})(jQuery,document,window);
// source --> https://www.icpep.org/wp-content/themes/flatpress/includes/js/theme-scripts.js?ver=7.0.2 
jQuery(document).ready(function($) {
	
	/* convert header menu into select list on mobile devices */
	if ( $.isFunction( $.fn.tinyNav ) ) {
		$('.header_top_res .menu').tinyNav({
			active: 'current-menu-item',
			header: flatpress_params.text_mobile_top_navigation,
			header_href: classipress_params.home_url,
			indent: '-',
			excluded: ['#adv_categories']
		});
	}
	
	
	$('.header_menu_res a.menu-toggle').click(function (){
		$(this).next('ul.menu').toggle();
		return false;
	});
	
	$('#ml_popup_trigger').parents('ul.menu').addClass('value_nav');
	
	$('.paging .pages .page-numbers').removeClass('btn_orange');
	
});