(function(a){a.extend(a.fn,{validate:function(b){if(!this.length){b&&b.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing");return}var c=a.data(this[0],"validator");if(c){return c}c=new a.validator(b,this[0]);a.data(this[0],"validator",c);if(c.settings.onsubmit){this.find("input, button").filter(".cancel").click(function(){c.cancelSubmit=true});if(c.settings.submitHandler){this.find("input, button").filter(":submit").click(function(){c.submitButton=this})}this.submit(function(d){if(c.settings.debug){d.preventDefault()}function e(){if(c.settings.submitHandler){if(c.submitButton){var f=a("<input type='hidden'/>").attr("name",c.submitButton.name).val(c.submitButton.value).appendTo(c.currentForm)}c.settings.submitHandler.call(c,c.currentForm);if(c.submitButton){f.remove()}return false}return true}if(c.cancelSubmit){c.cancelSubmit=false;return e()}if(c.form()){if(c.pendingRequest){c.formSubmitted=true;return false}return e()}else{c.focusInvalid();return false}})}return c},valid:function(){if(a(this[0]).is("form")){return this.validate().form()}else{var c=true;var b=a(this[0].form).validate();this.each(function(){c&=b.element(this)});return c}},removeAttrs:function(d){var b={},c=this;a.each(d.split(/\s/),function(e,f){b[f]=c.attr(f);c.removeAttr(f)});return b},rules:function(e,b){var g=this[0];if(e){var d=a.data(g.form,"validator").settings;var i=d.rules;var j=a.validator.staticRules(g);switch(e){case"add":a.extend(j,a.validator.normalizeRule(b));i[g.name]=j;if(b.messages){d.messages[g.name]=a.extend(d.messages[g.name],b.messages)}break;case"remove":if(!b){delete i[g.name];return j}var h={};a.each(b.split(/\s/),function(k,l){h[l]=j[l];delete j[l]});return h}}var f=a.validator.normalizeRules(a.extend({},a.validator.metadataRules(g),a.validator.classRules(g),a.validator.attributeRules(g),a.validator.staticRules(g)),g);if(f.required){var c=f.required;delete f.required;f=a.extend({required:c},f)}return f}});a.extend(a.expr[":"],{blank:function(b){return !a.trim(""+b.value)},filled:function(b){return !!a.trim(""+b.value)},unchecked:function(b){return !b.checked}});a.validator=function(b,c){this.settings=a.extend(true,{},a.validator.defaults,b);this.currentForm=c;this.init()};a.validator.format=function(b,c){if(arguments.length==1){return function(){var d=a.makeArray(arguments);d.unshift(b);return a.validator.format.apply(this,d)}}if(arguments.length>2&&c.constructor!=Array){c=a.makeArray(arguments).slice(1)}if(c.constructor!=Array){c=[c]}a.each(c,function(d,e){b=b.replace(new RegExp("\\{"+d+"\\}","g"),e)});return b};a.extend(a.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",validClass:"valid",errorElement:"label",focusInvalid:true,errorContainer:a([]),errorLabelContainer:a([]),onsubmit:true,ignore:[],ignoreTitle:false,onfocusin:function(b){this.lastActive=b;if(this.settings.focusCleanup&&!this.blockFocusCleanup){this.settings.unhighlight&&this.settings.unhighlight.call(this,b,this.settings.errorClass,this.settings.validClass);this.addWrapper(this.errorsFor(b)).hide()}},onfocusout:function(b){if(!this.checkable(b)&&(b.name in this.submitted||!this.optional(b))){this.element(b)}},onkeyup:function(b){if(b.name in this.submitted||b==this.lastElement){this.element(b)}},onclick:function(b){if(b.name in this.submitted){this.element(b)}else{if(b.parentNode.name in this.submitted){this.element(b.parentNode)}}},highlight:function(d,b,c){a(d).addClass(b).removeClass(c)},unhighlight:function(d,b,c){a(d).removeClass(b).addClass(c)}},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.",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",accept:"Please enter a value with a valid extension.",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}.")},autoCreateRanges:false,prototype:{init:function(){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 b=(this.groups={});a.each(this.settings.groups,function(e,f){a.each(f.split(/\s/),function(h,g){b[g]=e})});var d=this.settings.rules;a.each(d,function(e,f){d[e]=a.validator.normalizeRule(f)});function c(g){var f=a.data(this[0].form,"validator"),e="on"+g.type.replace(/^validate/,"");f.settings[e]&&f.settings[e].call(f,this[0])}a(this.currentForm).validateDelegate(":text, :password, :file, select, textarea","focusin focusout keyup",c).validateDelegate(":radio, :checkbox, select, option","click",c);if(this.settings.invalidHandler){a(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler)}},form:function(){this.checkForm();a.extend(this.submitted,this.errorMap);this.invalid=a.extend({},this.errorMap);if(!this.valid()){a(this.currentForm).triggerHandler("invalid-form",[this])}this.showErrors();return this.valid()},checkForm:function(){this.prepareForm();for(var b=0,c=(this.currentElements=this.elements());c[b];b++){this.check(c[b])}return this.valid()},element:function(c){c=this.clean(c);this.lastElement=c;this.prepareElement(c);this.currentElements=a(c);var b=this.check(c);if(b){delete this.invalid[c.name]}else{this.invalid[c.name]=true}if(!this.numberOfInvalids()){this.toHide=this.toHide.add(this.containers)}this.showErrors();return b},showErrors:function(c){if(c){a.extend(this.errorMap,c);this.errorList=[];for(var b in c){this.errorList.push({message:c[b],element:this.findByName(b)[0]})}this.successList=a.grep(this.successList,function(d){return !(d.name in c)})}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors()},resetForm:function(){if(a.fn.resetForm){a(this.currentForm).resetForm()}this.submitted={};this.prepareForm();this.hideErrors();this.elements().removeClass(this.settings.errorClass)},numberOfInvalids:function(){return this.objectLength(this.invalid)},objectLength:function(d){var c=0;for(var b in d){c++}return c},hideErrors:function(){this.addWrapper(this.toHide).hide()},valid:function(){return this.size()==0},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&&a.grep(this.errorList,function(c){return c.element.name==b.name}).length==1&&b},elements:function(){var c=this,b={};return a([]).add(this.currentForm.elements).filter(":input").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){!this.name&&c.settings.debug&&window.console&&console.error("%o has no name assigned",this);if(this.name in b||!c.objectLength(a(this).rules())){return false}b[this.name]=true;return true})},clean:function(b){return a(b)[0]},errors:function(){return a(this.settings.errorElement+"."+this.settings.errorClass,this.errorContext)},reset:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=a([]);this.toHide=a([]);this.currentElements=a([])},prepareForm:function(){this.reset();this.toHide=this.errors().add(this.containers)},prepareElement:function(b){this.reset();this.toHide=this.errorsFor(b)},check:function(c){c=this.clean(c);if(this.checkable(c)){c=this.findByName(c.name).not(this.settings.ignore)[0]}var h=a(c).rules();var d=false;for(var i in h){var g={method:i,parameters:h[i]};try{var b=a.validator.methods[i].call(this,c.value.replace(/\r/g,""),c,g.parameters);if(b=="dependency-mismatch"){d=true;continue}d=false;if(b=="pending"){this.toHide=this.toHide.not(this.errorsFor(c));return}if(!b){this.formatAndAdd(c,g);return false}}catch(f){this.settings.debug&&window.console&&console.log("exception occured when checking element "+c.id+", check the '"+g.method+"' method",f);throw f}}if(d){return}if(this.objectLength(h)){this.successList.push(c)}return true},customMetaMessage:function(b,d){if(!a.metadata){return}var c=this.settings.meta?a(b).metadata()[this.settings.meta]:a(b).metadata();return c&&c.messages&&c.messages[d]},customMessage:function(c,d){var b=this.settings.messages[c];return b&&(b.constructor==String?b:b[d])},findDefined:function(){for(var b=0;b<arguments.length;b++){if(arguments[b]!==undefined){return arguments[b]}}return undefined},defaultMessage:function(b,c){return this.findDefined(this.customMessage(b.name,c),this.customMetaMessage(b,c),!this.settings.ignoreTitle&&b.title||undefined,a.validator.messages[c],"<strong>Warning: No message defined for "+b.name+"</strong>")},formatAndAdd:function(c,e){var d=this.defaultMessage(c,e.method),b=/\$?\{(\d+)\}/g;if(typeof d=="function"){d=d.call(this,e.parameters,c)}else{if(b.test(d)){d=jQuery.format(d.replace(b,"{$1}"),e.parameters)}}this.errorList.push({message:d,element:c});this.errorMap[c.name]=d;this.submitted[c.name]=d},addWrapper:function(b){if(this.settings.wrapper){b=b.add(b.parent(this.settings.wrapper))}return b},defaultShowErrors:function(){for(var c=0;this.errorList[c];c++){var b=this.errorList[c];this.settings.highlight&&this.settings.highlight.call(this,b.element,this.settings.errorClass,this.settings.validClass);this.showLabel(b.element,b.message)}if(this.errorList.length){this.toShow=this.toShow.add(this.containers)}if(this.settings.success){for(var c=0;this.successList[c];c++){this.showLabel(this.successList[c])}}if(this.settings.unhighlight){for(var c=0,d=this.validElements();d[c];c++){this.settings.unhighlight.call(this,d[c],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(c,d){var b=this.errorsFor(c);if(b.length){b.removeClass().addClass(this.settings.errorClass);b.attr("generated")&&b.html(d)}else{b=a("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(c),generated:true}).addClass(this.settings.errorClass).html(d||"");if(this.settings.wrapper){b=b.hide().show().wrap("<"+this.settings.wrapper+"/>").parent()}if(!this.labelContainer.append(b).length){this.settings.errorPlacement?this.settings.errorPlacement(b,a(c)):b.insertAfter(c)}}if(!d&&this.settings.success){b.text("");typeof this.settings.success=="string"?b.addClass(this.settings.success):this.settings.success(b)}this.toShow=this.toShow.add(b)},errorsFor:function(c){var b=this.idOrName(c);return this.errors().filter(function(){return a(this).attr("for")==b})},idOrName:function(b){return this.groups[b.name]||(this.checkable(b)?b.name:b.id||b.name)},checkable:function(b){return/radio|checkbox/i.test(b.type)},findByName:function(b){var c=this.currentForm;return a(document.getElementsByName(b)).map(function(d,e){return e.form==c&&e.name==b&&e||null})},getLength:function(c,b){switch(b.nodeName.toLowerCase()){case"select":return a("option:selected",b).length;case"input":if(this.checkable(b)){return this.findByName(b.name).filter(":checked").length}}return c.length},depend:function(c,b){return this.dependTypes[typeof c]?this.dependTypes[typeof c](c,b):true},dependTypes:{"boolean":function(c,b){return c},string:function(c,b){return !!a(c,b.form).length},"function":function(c,b){return c(b)}},optional:function(b){return !a.validator.methods.required.call(this,a.trim(b.value),b)&&"dependency-mismatch"},startRequest:function(b){if(!this.pending[b.name]){this.pendingRequest++;this.pending[b.name]=true}},stopRequest:function(b,c){this.pendingRequest--;if(this.pendingRequest<0){this.pendingRequest=0}delete this.pending[b.name];if(c&&this.pendingRequest==0&&this.formSubmitted&&this.form()){a(this.currentForm).submit();this.formSubmitted=false}else{if(!c&&this.pendingRequest==0&&this.formSubmitted){a(this.currentForm).triggerHandler("invalid-form",[this]);this.formSubmitted=false}}},previousValue:function(b){return a.data(b,"previousValue")||a.data(b,"previousValue",{old:null,valid:true,message:this.defaultMessage(b,"remote")})}},classRuleSettings:{required:{required:true},email:{email:true},url:{url:true},date:{date:true},dateISO:{dateISO:true},dateDE:{dateDE:true},number:{number:true},numberDE:{numberDE:true},digits:{digits:true},creditcard:{creditcard:true}},addClassRules:function(b,c){b.constructor==String?this.classRuleSettings[b]=c:a.extend(this.classRuleSettings,b)},classRules:function(c){var d={};var b=a(c).attr("class");b&&a.each(b.split(" "),function(){if(this in a.validator.classRuleSettings){a.extend(d,a.validator.classRuleSettings[this])}});return d},attributeRules:function(c){var e={};var b=a(c);for(var f in a.validator.methods){var d=b.attr(f);if(d){e[f]=d}}if(e.maxlength&&/-1|2147483647|524288/.test(e.maxlength)){delete e.maxlength}return e},metadataRules:function(b){if(!a.metadata){return{}}var c=a.data(b.form,"validator").settings.meta;return c?a(b).metadata()[c]:a(b).metadata()},staticRules:function(c){var d={};var b=a.data(c.form,"validator");if(b.settings.rules){d=a.validator.normalizeRule(b.settings.rules[c.name])||{}}return d},normalizeRules:function(c,b){a.each(c,function(f,e){if(e===false){delete c[f];return}if(e.param||e.depends){var d=true;switch(typeof e.depends){case"string":d=!!a(e.depends,b.form).length;break;case"function":d=e.depends.call(b,b);break}if(d){c[f]=e.param!==undefined?e.param:true}else{delete c[f]}}});a.each(c,function(d,e){c[d]=a.isFunction(e)?e(b):e});a.each(["minlength","maxlength","min","max"],function(){if(c[this]){c[this]=Number(c[this])}});a.each(["rangelength","range"],function(){if(c[this]){c[this]=[Number(c[this][0]),Number(c[this][1])]}});if(a.validator.autoCreateRanges){if(c.min&&c.max){c.range=[c.min,c.max];delete c.min;delete c.max}if(c.minlength&&c.maxlength){c.rangelength=[c.minlength,c.maxlength];delete c.minlength;delete c.maxlength}}if(c.messages){delete c.messages}return c},normalizeRule:function(c){if(typeof c=="string"){var b={};a.each(c.split(/\s/),function(){b[this]=true});c=b}return c},addMethod:function(b,d,c){a.validator.methods[b]=d;a.validator.messages[b]=c!=undefined?c:a.validator.messages[b];if(d.length<3){a.validator.addClassRules(b,a.validator.normalizeRule(b))}},methods:{required:function(c,b,e){if(!this.depend(e,b)){return"dependency-mismatch"}switch(b.nodeName.toLowerCase()){case"select":var d=a(b).val();return d&&d.length>0;case"input":if(this.checkable(b)){return this.getLength(c,b)>0}default:return a.trim(c).length>0}},remote:function(f,c,g){if(this.optional(c)){return"dependency-mismatch"}var d=this.previousValue(c);if(!this.settings.messages[c.name]){this.settings.messages[c.name]={}}d.originalMessage=this.settings.messages[c.name].remote;this.settings.messages[c.name].remote=d.message;g=typeof g=="string"&&{url:g}||g;if(this.pending[c.name]){return"pending"}if(d.old===f){return d.valid}d.old=f;var b=this;this.startRequest(c);var e={};e[c.name]=f;a.ajax(a.extend(true,{url:g,mode:"abort",port:"validate"+c.name,dataType:"json",data:e,success:function(i){b.settings.messages[c.name].remote=d.originalMessage;var k=i===true;if(k){var h=b.formSubmitted;b.prepareElement(c);b.formSubmitted=h;b.successList.push(c);b.showErrors()}else{var l={};var j=(d.message=i||b.defaultMessage(c,"remote"));l[c.name]=a.isFunction(j)?j(f):j;b.showErrors(l)}d.valid=k;b.stopRequest(c,k)}},g));return"pending"},minlength:function(c,b,d){return this.optional(b)||this.getLength(a.trim(c),b)>=d},maxlength:function(c,b,d){return this.optional(b)||this.getLength(a.trim(c),b)<=d},rangelength:function(d,b,e){var c=this.getLength(a.trim(d),b);return this.optional(b)||(c>=e[0]&&c<=e[1])},min:function(c,b,d){return this.optional(b)||c>=d},max:function(c,b,d){return this.optional(b)||c<=d},range:function(c,b,d){return this.optional(b)||(c>=d[0]&&c<=d[1])},email:function(c,b){return this.optional(b)||/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(c)},url:function(c,b){return this.optional(b)||/^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(c)},date:function(c,b){return this.optional(b)||!/Invalid|NaN/.test(new Date(c))},dateISO:function(c,b){return this.optional(b)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(c)},number:function(c,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(c)},digits:function(c,b){return this.optional(b)||/^\d+$/.test(c)},creditcard:function(f,c){if(this.optional(c)){return"dependency-mismatch"}if(/[^0-9-]+/.test(f)){return false}var g=0,e=0,b=false;f=f.replace(/\D/g,"");for(var h=f.length-1;h>=0;h--){var d=f.charAt(h);var e=parseInt(d,10);if(b){if((e*=2)>9){e-=9}}g+=e;b=!b}return(g%10)==0},accept:function(c,b,d){d=typeof d=="string"?d.replace(/,/g,"|"):"png|jpe?g|gif";return this.optional(b)||c.match(new RegExp(".("+d+")$","i"))},equalTo:function(c,b,e){var d=a(e).unbind(".validate-equalTo").bind("blur.validate-equalTo",function(){a(b).valid()});return c==d.val()}}});a.format=a.validator.format})(jQuery);(function(c){var a={};if(c.ajaxPrefilter){c.ajaxPrefilter(function(f,e,g){var d=f.port;if(f.mode=="abort"){if(a[d]){a[d].abort()}a[d]=g}})}else{var b=c.ajax;c.ajax=function(e){e=c.extend(e,c.extend({},c.ajaxSettings,e));var d=e.port;if(e.mode=="abort"){if(a[d]){a[d].abort()}return(a[d]=b.apply(this,arguments))}return b.apply(this,arguments)}}})(jQuery);(function(a){if(!jQuery.event.special.focusin&&!jQuery.event.special.focusout&&document.addEventListener){a.each({focus:"focusin",blur:"focusout"},function(c,b){a.event.special[b]={setup:function(){this.addEventListener(c,d,true)},teardown:function(){this.removeEventListener(c,d,true)},handler:function(f){arguments[0]=a.event.fix(f);arguments[0].type=b;return a.event.handle.apply(this,arguments)}};function d(f){f=a.event.fix(f);f.type=b;return a.event.handle.call(this,f)}})}a.extend(a.fn,{validateDelegate:function(d,c,b){return this.bind(c,function(e){var f=a(e.target);if(f.is(d)){return b.apply(f,arguments)}})}})})(jQuery);/*
 * 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}})());/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright � 1993, 2001 Adobe Systems Incorporated.  All Rights Reserved.
 * 
 * Trademark:
 * Myriad is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Designer:
 * Carol Twombly, Robert Slimbach, Adobe Type Staff
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"50,-3r-29,3r-2,-175r21,4xm6,-232v9,0,16,6,15,16v0,8,-5,18,-16,16v-10,1,-15,-7,-15,-16v0,-9,7,-16,16,-16xm75,-215v0,8,-4,14,-12,14v-9,0,-16,-7,-16,-15v-1,-8,8,-15,15,-15v7,0,13,5,13,16","w":66},{"d":"113,-76r-57,-3r-28,76r-19,3r63,-246r23,7r62,239r-35,3xm60,-93r49,-3r-25,-120v-13,36,-15,83,-24,123xm109,-282v12,0,9,-18,21,-20v-1,19,-6,33,-27,33v-19,0,-45,-28,-48,4r-16,-2v0,-17,9,-33,26,-33v19,-1,27,17,44,18","w":165,"k":{"T":23,"V":20,"W":11,"t":4,"G":6,"Q":6,"v":13,"w":10,"g":4,"q":3,"Y":25,"\u00dd":25,"d":4,"C":6,"\u00c7":6,"O":6,"\u00d8":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"b":2,"\u00fe":2,"c":4,"\u00e7":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"f":4,"\u00df":4,"j":2,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"y":9,"\u00fd":9,"\u00ff":9,"z":-4}},{"d":"102,14r-17,-2r-88,-249r24,-9","w":105},{"d":"12,-86v0,-62,39,-106,100,-85r-10,25v-39,-21,-65,17,-65,60v0,48,29,87,71,68r4,13v-55,25,-100,-15,-100,-81","w":116,"k":{"t":-5,",":5,"d":3,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"o":3,"\u00f8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"u":-5,"\u00fa":-5,"\u00fb":-5,"\u00fc":-5,"\u00f9":-5,"y":-7,"\u00fd":-7,"\u00ff":-7}},{"d":"137,-136v-2,53,-36,82,-92,76r0,57r-27,6r12,-246r16,-3r3,53v46,-9,90,9,88,57xm111,-127v0,-35,-28,-51,-65,-43r2,92v37,6,63,-13,63,-49","w":147},{"d":"92,-246v50,0,81,33,78,88v-2,44,-28,74,-75,74v-50,0,-84,-31,-84,-81v0,-49,33,-81,81,-81xm158,-166v0,-42,-27,-71,-70,-67v-37,4,-62,31,-62,70v0,41,23,68,63,68v43,0,69,-29,69,-71xm68,-209v40,-21,80,33,36,45v14,6,18,31,26,44r-17,2v-6,-17,-5,-44,-34,-39r-6,37r-10,2xm111,-182v1,-15,-17,-20,-33,-16r2,32v16,-2,31,0,31,-16","w":183},{"d":"79,0r-21,-3r2,-101r-51,-144r18,5r56,113r31,-107r37,-6r-64,138xm96,-309r27,14r-51,34r-12,-2","w":149,"k":{"T":-8,"V":-10,"W":-9,"t":4,",":37,".":33,":":17,";":22,")":-16,"]":-16,"}":-15,"G":12,"Q":12,"v":16,"X":-5,"q":27,"Y":-10,"\u00dd":-10,"d":27,"C":12,"\u00c7":12,"O":12,"\u00d8":12,"\u00d3":12,"\u00d4":12,"\u00d6":12,"\u00d2":12,"\u00d5":12,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":28,"\u00f8":28,"\u00f3":28,"\u00f4":28,"\u00f6":28,"\u00f2":28,"\u00f5":28,"u":21,"\u00fa":21,"\u00fb":21,"\u00fc":21,"\u00f9":21,"a":26,"\u00e6":26,"\u00e1":26,"\u00e2":26,"\u00e4":26,"\u00e0":26,"\u00e5":26,"\u00e3":26,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"l":4,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"S":4}},{"d":"91,-153v-68,0,-40,93,-41,151r-29,5v-1,-58,6,-123,-2,-175r17,-4r7,32v6,-19,16,-40,42,-40","w":91,"k":{"t":-9,",":24,".":20,":":-5,"v":-9,"w":-9,"q":8,"x":-8,"d":-5,"c":5,"\u00e7":5,"e":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"f":-9,"\u00df":-9,"u":-9,"\u00fa":-9,"\u00fb":-9,"\u00fc":-9,"\u00f9":-9,"y":-9,"\u00fd":-9,"\u00ff":-9,"z":-3,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"i":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4}},{"d":"24,-246r19,7r7,238r-28,4xm-13,-261v19,-14,27,-39,55,-44r43,43v-26,6,-34,-19,-54,-26v-13,11,-20,27,-44,27","w":71,"k":{"z":-2}},{"d":"113,-76r-57,-3r-28,76r-19,3r63,-246r23,7r62,239r-35,3xm60,-93r49,-3r-25,-120v-13,36,-15,83,-24,123xm135,-278v0,20,-32,26,-37,6v-4,-14,5,-26,17,-26v11,0,20,10,20,20xm50,-297v14,0,22,19,12,30v-10,11,-29,4,-29,-11v0,-12,8,-19,17,-19","w":165,"k":{"T":23,"V":20,"W":11,"t":4,"G":6,"Q":6,"v":13,"w":10,"g":4,"q":3,"Y":25,"\u00dd":25,"d":4,"C":6,"\u00c7":6,"O":6,"\u00d8":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"b":2,"\u00fe":2,"c":4,"\u00e7":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"f":4,"\u00df":4,"j":2,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"y":9,"\u00fd":9,"\u00ff":9,"z":-4}},{"d":"77,-156v-55,11,-20,102,-23,154r-28,2r-7,-175r18,1v2,8,-1,21,5,25v10,-35,73,-37,82,1v8,-17,23,-28,44,-31v74,6,33,116,35,180r-23,-2r7,-109v2,-25,-3,-48,-28,-48v-22,0,-30,24,-30,46r1,112r-18,-1r-8,-112v-2,-21,-5,-42,-27,-43","w":232,"k":{"t":2,"v":4,"y":4,"\u00fd":4,"\u00ff":4}},{"d":"33,-89v-5,53,33,83,78,64r7,25v-61,22,-110,-19,-106,-84v3,-49,17,-94,64,-92v45,2,52,48,48,95xm99,-105v8,-53,-49,-73,-59,-21v-1,6,-3,13,-3,19xm40,-239r25,-7r29,53v-27,-6,-35,-32,-54,-46","w":135,"k":{",":8,".":4,"x":2,"d":-5,"c":-5,"\u00e7":-5,"z":2}},{"d":"107,-62v-15,18,-55,20,-70,0r-22,26r-14,-14r26,-26v-14,-21,-13,-65,0,-86r-26,-25r14,-14r22,26v14,-19,57,-19,70,0r23,-26r13,14r-26,25v12,22,12,65,0,86r26,26r-14,14xm72,-66v44,-1,46,-103,0,-105v-45,2,-43,104,0,105"},{"d":"38,-103v2,38,6,85,44,85v23,0,27,-29,27,-53v0,-42,-5,-82,-39,-86v-25,2,-34,25,-32,54xm14,-91v-2,-52,30,-100,76,-77v-1,-15,-18,-24,-28,-34r-31,24r-12,-15r32,-19v-10,-10,-19,-17,-30,-26r17,-15r34,29r35,-20r5,8r-29,23v30,31,51,69,50,130v0,49,-16,86,-59,86v-46,0,-58,-44,-60,-94"},{"d":"113,-76r-57,-3r-28,76r-19,3r63,-246r23,7r62,239r-35,3xm60,-93r49,-3r-25,-120v-13,36,-15,83,-24,123xm48,-305r25,-8r29,53v-27,-6,-35,-31,-54,-45","w":165,"k":{"T":23,"V":20,"W":11,"t":4,"G":6,"Q":6,"v":13,"w":10,"g":4,"q":3,"Y":25,"\u00dd":25,"d":4,"C":6,"\u00c7":6,"O":6,"\u00d8":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"b":2,"\u00fe":2,"c":4,"\u00e7":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"f":4,"\u00df":4,"j":2,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"y":9,"\u00fd":9,"\u00ff":9,"z":-4}},{"d":"-12,51v32,-5,34,-32,36,-69r7,-158r17,-4r2,169v2,49,-10,76,-50,83xm53,-222v0,9,-5,17,-16,16v-11,0,-17,-8,-17,-19v-1,-10,6,-16,15,-16v11,0,17,8,18,19","w":68,"k":{",":5}},{"d":"113,-76r-57,-3r-28,76r-19,3r63,-246r23,7r62,239r-35,3xm60,-93r49,-3r-25,-120v-13,36,-15,83,-24,123xm103,-309r27,14r-51,34r-12,-2","w":165,"k":{"T":23,"V":20,"W":11,"t":4,"G":6,"Q":6,"v":13,"w":10,"g":4,"q":3,"Y":25,"\u00dd":25,"d":4,"C":6,"\u00c7":6,"O":6,"\u00d8":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"b":2,"\u00fe":2,"c":4,"\u00e7":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"f":4,"\u00df":4,"j":2,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"y":9,"\u00fd":9,"\u00ff":9,"z":-4}},{"d":"13,-98r77,-8r6,20r-85,2","w":102},{"d":"12,-135r186,-10r2,101r-12,-3r-9,-72r-165,-4","w":214},{"d":"7,45v7,-25,17,-53,20,-82r30,6v-7,26,-22,51,-34,71","w":68,"k":{" ":23}},{"d":"64,45v0,-13,-13,-14,-27,-15r12,-31r19,0r-16,23v14,1,28,8,29,22v1,29,-41,33,-62,22r14,-16v7,7,31,12,31,-5","w":108},{"d":"66,-33v28,34,67,2,64,-49r-10,-156r34,-9v-10,94,27,250,-68,250v-96,0,-55,-150,-67,-239r19,-5r13,159v1,22,6,38,15,49xm99,-309r27,14r-50,34r-12,-2","w":173,"k":{"v":2,"x":4,"s":3,"y":2,"\u00fd":2,"\u00ff":2,"z":4,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11}},{"d":"34,-44v0,42,52,28,57,0v3,-17,-1,-32,-2,-49v-33,0,-55,17,-55,49xm176,-107v6,-40,-36,-69,-55,-33v-5,9,-10,22,-9,36xm25,-160v22,-26,78,-20,85,16v8,-17,20,-33,42,-33v43,0,50,48,47,92r-88,-5v-3,38,2,76,39,77v15,-1,28,-7,35,-16r9,23v-33,19,-84,6,-93,-26v-8,20,-20,35,-45,35v-30,0,-46,-24,-46,-54v0,-41,36,-53,79,-54v9,-45,-31,-64,-61,-44","w":210},{"d":"38,-116v0,61,28,117,90,99r6,11v-9,4,-21,9,-36,9r-15,19v14,2,32,7,32,22v0,30,-45,33,-68,22r16,-16v7,7,33,12,33,-5v0,-14,-15,-14,-29,-15r11,-29v-50,-12,-66,-56,-66,-122v0,-82,46,-148,131,-118r-10,27v-62,-23,-95,34,-95,96","w":145,"k":{"r":5,"G":11,"Q":11,"C":11,"\u00c7":11,"O":11,"\u00d8":11,"\u00d3":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u00d5":11,"e":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00e8":8,"o":8,"\u00f8":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"y":13,"\u00fd":13,"\u00ff":13,"z":-4,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"l":2}},{"d":"189,-72r-27,10r-52,-151r-69,147r-15,-3r66,-166r28,5","w":214},{"d":"89,-113v6,-42,-32,-56,-63,-37r-7,-10v32,-29,93,-19,95,43r3,115r-14,5v-4,-8,-2,-20,-9,-25v-16,40,-87,27,-82,-26v4,-45,36,-59,77,-65xm57,-18v33,1,32,-37,35,-68v-33,-4,-58,5,-58,40v0,18,9,28,23,28xm23,-216v0,-13,18,-22,28,-12v9,9,3,28,-12,28v-10,0,-16,-8,-16,-16xm109,-215v0,8,-4,14,-12,14v-20,1,-21,-30,-2,-30v7,1,14,6,14,16","w":134},{"d":"-3,-23v36,9,55,-14,56,-50r4,-170r19,5r5,169v5,54,-27,80,-76,69","w":99,"k":{")":-5,"]":-5,"}":-5}},{"d":"161,-129v0,73,-16,132,-78,132v-61,0,-71,-55,-71,-119v0,-69,17,-130,79,-130v55,0,70,49,70,117xm37,-134v0,52,6,109,53,115v41,-3,45,-50,45,-93v0,-49,-7,-105,-52,-112v-41,3,-46,47,-46,90xm37,-261v19,-14,28,-39,56,-44r43,43v-25,5,-36,-18,-54,-26v-12,12,-20,28,-45,27","w":172,"k":{"T":12,"V":-9,"W":-5,"t":-3,",":15,".":10,"v":-5,"w":-5,"X":8,"g":-3,"q":-7,"Y":8,"\u00dd":8,"d":-3,"c":-3,"\u00e7":-3,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"f":-3,"\u00df":-3,"o":-3,"\u00f8":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"u":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,"y":-4,"\u00fd":-4,"\u00ff":-4,"z":3,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},{"d":"113,-139r5,15r-61,8r-11,90r78,4r2,15r-101,10r3,-244r89,-6r5,28r-72,-5r6,83xm28,-305r25,-8r29,53v-27,-6,-35,-31,-54,-45","w":133,"k":{"V":-4,"W":-4,"t":-7,",":5,"h":4,"v":5,"w":5,"g":5,"p":3,"q":5,"Y":-4,"\u00dd":-4,"d":5,"b":3,"\u00fe":3,"c":5,"\u00e7":5,"e":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"f":3,"\u00df":3,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":-5,"\u00fa":-5,"\u00fb":-5,"\u00fc":-5,"\u00f9":-5,"y":6,"\u00fd":6,"\u00ff":6,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2}},{"d":"24,-223r64,3r2,13r-72,3","w":108},{"d":"55,-153v-27,0,-45,-20,-45,-47v0,-27,18,-47,45,-47v28,0,44,20,44,48v0,29,-18,46,-44,46xm51,-170v27,1,41,-35,25,-56v-16,-21,-50,0,-50,28v0,16,10,28,25,28","w":102},{"d":"4,-1v21,-54,53,-96,76,-148r-60,-8r-3,-17r97,4r3,12r-87,139r85,-4r-10,25","w":117,"k":{"d":4,"c":4,"\u00e7":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":-9,"\u00fa":-9,"\u00fb":-9,"\u00fc":-9,"\u00f9":-9,"y":-9,"\u00fd":-9,"\u00ff":-9}},{"d":"11,-150v0,-65,84,-85,88,-22v2,43,-7,79,-44,79v-29,0,-44,-23,-44,-57xm59,-108v36,-5,29,-87,-5,-89v-36,5,-29,87,5,89","w":111},{"d":"9,63v23,-15,43,-48,41,-83r-46,-161r33,6r25,138r42,-137r16,7r-23,104v-14,59,-29,114,-80,136xm82,-246r29,6r-40,46r-12,2","w":129,"k":{",":22,".":17,":":-4,"v":-6,"w":-6,"g":4,"q":4,"d":4,"c":4,"\u00e7":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"a":5,"\u00e6":5,"\u00e1":5,"\u00e2":5,"\u00e4":5,"\u00e0":5,"\u00e5":5,"\u00e3":5}},{"d":"13,-98r77,-8r6,20r-85,2","w":102},{"d":"113,-139r5,15r-61,8r-11,90r78,4r2,15r-101,10r3,-244r89,-6r5,28r-72,-5r6,83xm125,-278v0,20,-32,26,-37,6v-4,-13,5,-26,17,-26v11,-1,20,10,20,20xm40,-297v15,-1,23,18,13,30v-9,10,-32,5,-29,-11v-1,-12,8,-19,16,-19","w":133,"k":{"V":-4,"W":-4,"t":-7,",":5,"h":4,"v":5,"w":5,"g":5,"p":3,"q":5,"Y":-4,"\u00dd":-4,"d":5,"b":3,"\u00fe":3,"c":5,"\u00e7":5,"e":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"f":3,"\u00df":3,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":-5,"\u00fa":-5,"\u00fb":-5,"\u00fc":-5,"\u00f9":-5,"y":6,"\u00fd":6,"\u00ff":6,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2}},{"d":"32,-5v-2,-33,21,-89,-17,-90r-6,-12v69,-8,-28,-146,71,-140v-4,7,-2,19,-15,18v-52,13,24,112,-32,130v55,5,-4,115,50,123r-6,16v-30,0,-44,-17,-45,-45","w":92,"k":{"T":-14,"V":-13,"W":-13,"J":-4,"Y":-15,"\u00dd":-15}},{"d":"59,-100r44,-6v-7,-38,-7,-84,-18,-119xm211,0r-90,-4r-14,-81r-52,3r-16,78r-30,4r67,-243r113,4r-2,26r-67,-11r6,87r63,5r5,16r-65,3r9,92r68,-5","w":211,"k":{"V":-4,"W":-4,"t":-7,",":5,"h":4,"v":5,"w":5,"g":5,"p":3,"q":5,"Y":-4,"\u00dd":-4,"d":5,"b":3,"\u00fe":3,"c":5,"\u00e7":5,"e":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"f":3,"\u00df":3,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":-5,"\u00fa":-5,"\u00fb":-5,"\u00fc":-5,"\u00f9":-5,"y":6,"\u00fd":6,"\u00ff":6,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2}},{"d":"77,-6r-20,5r-53,-231r29,-11r34,209r43,-204r25,-5r40,199r38,-199r19,5r-40,238r-37,-11r-29,-172","w":245,"k":{"\u00fc":10,"\u00f6":14,"\u00ea":14,"\u00e4":15,"T":-5,"m":9,"r":9,"t":3,",":28,".":24,":":6,";":10,")":-14,"]":-14,"}":-14,"G":2,"Q":2,"h":3,"d":14,"C":2,"\u00c7":2,"O":2,"\u00d8":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"e":14,"\u00e9":14,"\u00eb":14,"\u00e8":14,"o":14,"\u00f8":14,"\u00f3":14,"\u00f4":14,"\u00f2":14,"\u00f5":14,"u":10,"\u00fa":10,"\u00fb":10,"\u00f9":10,"y":5,"\u00fd":5,"\u00ff":5,"a":15,"\u00e6":15,"\u00e1":15,"\u00e2":15,"\u00e0":15,"\u00e5":15,"\u00e3":15,"i":4,"\u00ed":4,"\u00ee":4,"\u00ef":4,"\u00ec":4,"A":17,"\u00c6":17,"\u00c1":17,"\u00c2":17,"\u00c4":17,"\u00c0":17,"\u00c5":17,"\u00c3":17,"E":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u00c8":7}},{"d":"161,-129v0,73,-16,132,-78,132v-61,0,-71,-55,-71,-119v0,-69,17,-130,79,-130v55,0,70,49,70,117xm37,-134v0,52,6,109,53,115v41,-3,45,-50,45,-93v0,-49,-7,-105,-52,-112v-41,3,-46,47,-46,90xm48,-305r25,-8r29,53v-27,-6,-35,-31,-54,-45","w":172,"k":{"T":12,"V":-9,"W":-5,"t":-3,",":15,".":10,"v":-5,"w":-5,"X":8,"g":-3,"q":-7,"Y":8,"\u00dd":8,"d":-3,"c":-3,"\u00e7":-3,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"f":-3,"\u00df":-3,"o":-3,"\u00f8":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"u":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,"y":-4,"\u00fd":-4,"\u00ff":-4,"z":3,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},{"d":"10,-216v0,-12,17,-22,27,-12v9,9,5,28,-11,28v-10,0,-17,-7,-16,-16xm82,-231v15,-1,20,29,2,30v-20,1,-21,-30,-2,-30","w":108},{"d":"97,-121v43,25,33,108,-17,115r6,36r-23,-3r3,-33v-21,-2,-47,-3,-44,-29v25,23,80,15,76,-31v-5,-60,-95,-48,-73,-125v6,-19,21,-32,41,-36r7,-34r13,0r-1,33v14,1,28,5,36,11r-16,16v-33,-25,-90,13,-55,52v11,13,32,19,47,28"},{"d":"44,-89r-35,-65r13,-2r52,65r-44,63r-16,4xm97,-93r-35,-56r22,-14r34,69r-43,66r-15,0","w":129},{"d":"89,-113v6,-42,-32,-56,-63,-37r-7,-10v32,-29,93,-19,95,43r3,115r-14,5v-4,-8,-2,-20,-9,-25v-16,40,-87,27,-82,-26v4,-45,36,-59,77,-65xm57,-18v33,1,32,-37,35,-68v-33,-4,-58,5,-58,40v0,18,9,28,23,28xm82,-246r30,6r-40,46r-12,2","w":134},{"d":"83,-3r-27,6r5,-73r-52,7r4,-23r47,3r1,-25r-52,-1r3,-12r38,-2r-35,-113r16,2r44,108r38,-108r26,6r-51,102r39,-5r4,23r-54,0r1,24r50,4r-1,11r-48,0"},{"d":"71,-168v6,-30,-34,-33,-48,-17r-8,-17v29,-22,67,-4,70,34r6,71r-18,2v-2,-4,-1,-11,-4,-13v-13,26,-62,16,-59,-18v3,-32,28,-41,61,-42xm46,-105v23,0,23,-22,24,-43v-24,-1,-42,4,-43,25v0,10,7,18,19,18","w":100},{"d":"159,-134v0,94,-48,152,-141,129r9,-237v82,-19,132,26,132,108xm131,-116v-1,-66,-17,-122,-84,-110r6,199v58,12,79,-35,78,-89","w":170,"k":{"V":3,"W":4,",":16,".":14,"Y":10,"\u00dd":10,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"o":-3,"\u00f8":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"u":-5,"\u00fa":-5,"\u00fb":-5,"\u00fc":-5,"\u00f9":-5,"y":-6,"\u00fd":-6,"\u00ff":-6}},{"d":"12,-177r30,6r17,139v11,-50,28,-95,42,-142r23,3r21,138r40,-142r18,3r-41,175r-24,-2r-36,-136r-32,134r-25,4","w":211,"k":{",":20,".":15,":":-6,"v":-6,"q":5,"d":5,"c":5,"\u00e7":5,"e":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"y":-7,"\u00fd":-7,"\u00ff":-7,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3}},{"d":"26,9r-1,-29r131,-69r0,-3r-138,-78r6,-12r161,75r0,20","w":214},{"d":"110,-144v-11,1,-18,-8,-18,-19v0,-9,4,-13,12,-13v12,0,19,7,19,20v1,9,-4,12,-13,12xm200,-90r-190,5r6,-22r181,4xm122,-32v-1,9,-5,16,-15,16v-11,0,-16,-6,-16,-16v0,-9,7,-17,16,-17v8,0,16,8,15,17","w":214},{"d":"66,-33v28,34,67,2,64,-49r-10,-156r34,-9v-10,94,27,250,-68,250v-96,0,-55,-150,-67,-239r19,-5r13,159v1,22,6,38,15,49xm116,-259v-13,-1,-18,-8,-19,-20v0,-10,8,-19,18,-19v11,-1,20,10,20,20v1,10,-9,19,-19,19xm50,-297v15,-1,23,18,13,30v-9,10,-32,5,-29,-11v-1,-12,8,-19,16,-19","w":173,"k":{"v":2,"x":4,"s":3,"y":2,"\u00fd":2,"\u00ff":2,"z":4,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11}},{"d":"111,-172v25,-36,-24,-84,-53,-45v-21,55,-15,145,-24,213r-16,4v10,-97,-26,-246,72,-253v45,-4,61,53,39,86v-11,5,-24,14,-24,29v2,39,41,45,42,87v1,49,-52,64,-93,46r12,-22v25,13,59,0,57,-33v-3,-43,-53,-47,-42,-94v6,-11,18,-13,30,-18","w":158,"k":{",":5}},{"d":"13,-167r14,-23r80,82r80,-76r13,8r-77,85r84,89r-13,5r-86,-83r-83,81r-16,-4r84,-91","w":214},{"d":"26,-33v-26,-72,-22,-210,65,-213v17,0,30,5,40,14r12,-28v13,10,3,25,-2,39v36,64,32,226,-58,224v-15,0,-28,-5,-39,-13r-10,25r-21,-19xm83,-224v-59,0,-49,101,-38,153r72,-130v-7,-13,-16,-23,-34,-23xm90,-19v59,-7,49,-112,35,-164r-68,143v6,11,17,23,33,21","w":172,"k":{"T":12,"V":-9,"W":-5,"t":-3,",":15,".":10,"v":-5,"w":-5,"X":8,"g":-3,"q":-7,"Y":8,"\u00dd":8,"d":-3,"c":-3,"\u00e7":-3,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"f":-3,"\u00df":-3,"o":-3,"\u00f8":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"u":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,"y":-4,"\u00fd":-4,"\u00ff":-4,"z":3,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},{"d":"27,-18v-30,-49,-24,-161,47,-159v12,0,22,4,31,11r4,-13r23,1r-12,29v29,50,19,154,-49,152v-14,0,-25,-4,-35,-12r-8,20r-11,-5xm77,-16v40,0,33,-69,25,-102r-53,81v5,10,14,21,28,21xm67,-158v-40,0,-32,73,-24,108r51,-90v-6,-10,-13,-18,-27,-18","w":145,"k":{",":14,".":12,"v":4,"w":2,"x":5,"y":3,"\u00fd":3,"\u00ff":3,"z":4}},{"d":"195,0r-19,0r4,-35r-54,-5r-6,-13r65,-91r17,2r-6,88r16,3r3,12r-20,3r0,36xm181,-55v-1,-21,3,-47,0,-66v-10,25,-24,45,-36,68xm69,-138v0,-23,-14,-29,-37,-28r1,-11v17,1,32,-9,33,-23v2,-23,-33,-24,-45,-12r-8,-17v21,-18,70,-12,70,24v0,16,-11,24,-21,31v17,5,29,19,29,42v0,39,-52,50,-76,26r3,-13v18,9,51,7,51,-19xm68,8r-21,-5r124,-240r14,-4","w":226},{"d":"51,-29v23,28,51,-7,52,-42r3,-98r17,-6r9,175r-22,3r-3,-32v-6,28,-53,46,-73,17v-24,-34,-15,-104,-22,-155r27,-5v4,45,0,108,12,143xm64,-243r13,-2r29,52r-12,0r-27,-36r-13,32r-19,3","w":149,"k":{",":5}},{"d":"50,0r-20,7r-14,-244r38,-2r78,206r-2,-215r27,5r-9,239r-18,4r-87,-205xm115,-282v8,-1,11,-4,11,-14r10,-6v0,19,-5,33,-26,33v-16,0,-23,-12,-38,-12v-8,0,-10,7,-10,16r-16,-2v0,-17,9,-33,26,-33v19,-1,26,17,43,18","w":176,"k":{"y":2,"\u00fd":2,"\u00ff":2,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5}},{"d":"161,-129v0,73,-16,132,-78,132v-61,0,-71,-55,-71,-119v0,-69,17,-130,79,-130v55,0,70,49,70,117xm37,-134v0,52,6,109,53,115v41,-3,45,-50,45,-93v0,-49,-7,-105,-52,-112v-41,3,-46,47,-46,90xm112,-282v8,0,11,-4,11,-14r10,-6v0,19,-5,34,-26,33v0,0,-45,-28,-48,4r-16,-2v0,-17,9,-33,26,-33v18,-1,27,18,43,18","w":172,"k":{"T":12,"V":-9,"W":-5,"t":-3,",":15,".":10,"v":-5,"w":-5,"X":8,"g":-3,"q":-7,"Y":8,"\u00dd":8,"d":-3,"c":-3,"\u00e7":-3,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"f":-3,"\u00df":-3,"o":-3,"\u00f8":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"u":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,"y":-4,"\u00fd":-4,"\u00ff":-4,"z":3,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},{"d":"13,5r-9,-12r92,-215r-84,6r8,-27r107,6r3,15r-99,196r1,3r102,10r0,13","w":138,"k":{"G":6,"Q":6,"w":8,"C":6,"\u00c7":6,"O":6,"\u00d8":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":8,"\u00f8":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"y":4,"\u00fd":4,"\u00ff":4,"a":3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,"A":-3,"\u00c6":-3,"\u00c1":-3,"\u00c2":-3,"\u00c4":-3,"\u00c0":-3,"\u00c5":-3,"\u00c3":-3}},{"d":"51,-29v23,28,51,-7,52,-42r3,-98r17,-6r9,175r-22,3r-3,-32v-6,28,-53,46,-73,17v-24,-34,-15,-104,-22,-155r27,-5v4,45,0,108,12,143xm85,-246r29,6r-40,46r-12,2","w":149,"k":{",":5}},{"d":"72,3v-45,0,-63,-38,-62,-92v1,-48,17,-88,63,-88v47,0,62,42,62,92v0,49,-18,88,-63,88xm37,-94v0,39,8,72,40,78v27,-2,31,-29,31,-58v0,-36,-6,-84,-41,-84v-28,0,-30,35,-30,64xm33,-239r26,-7r29,53v-27,-6,-35,-32,-55,-46","w":145,"k":{",":14,".":12,"v":4,"w":2,"x":5,"y":3,"\u00fd":3,"\u00ff":3,"z":4}},{"d":"50,-3r-29,3r-2,-175r21,4xm40,-246r29,6r-40,46r-12,2","w":66},{"d":"73,-18v18,0,29,-16,30,-34r4,-121r17,2r11,174r-19,3v-4,-8,-5,-19,-11,-26v-7,24,-50,32,-64,8r10,73r-27,6r-6,-236r31,-6r-6,113v2,23,5,44,30,44","w":149},{"d":"196,-3r-12,6r-2,-41r-60,-1r0,-11r55,-92r24,-3r-4,88r19,-3r-1,21r-17,-1xm181,-56v-3,-20,-3,-44,-5,-65r-30,70xm61,-93r-13,-3r-9,-120r-23,14r-9,-16v18,-7,34,-17,55,-21xm56,7r-18,-13r129,-229r14,-2","w":226},{"d":"135,-171v0,32,-17,48,-38,55v42,12,40,76,62,109r-34,7v-18,-41,-9,-118,-79,-111r5,108r-22,8r-10,-246v59,-16,116,8,116,70xm64,-128v54,3,68,-94,10,-97v-7,0,-18,-1,-23,1r-3,97","w":151,"k":{"T":5,"t":-9,"G":-7,"Q":-7,"h":-9,"X":-4,"Y":6,"\u00dd":6,"d":-11,"C":-7,"\u00c7":-7,"O":-7,"\u00d8":-7,"\u00d3":-7,"\u00d4":-7,"\u00d6":-7,"\u00d2":-7,"\u00d5":-7,"e":-7,"\u00e9":-7,"\u00ea":-7,"\u00eb":-7,"\u00e8":-7,"o":-7,"\u00f8":-7,"\u00f3":-7,"\u00f4":-7,"\u00f6":-7,"\u00f2":-7,"\u00f5":-7,"u":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,"y":-7,"\u00fd":-7,"\u00ff":-7,"a":-13,"\u00e6":-13,"\u00e1":-13,"\u00e2":-13,"\u00e4":-13,"\u00e0":-13,"\u00e5":-13,"\u00e3":-13,"i":-9,"\u00ed":-9,"\u00ee":-9,"\u00ef":-9,"\u00ec":-9,"A":-3,"\u00c6":-3,"\u00c1":-3,"\u00c2":-3,"\u00c4":-3,"\u00c0":-3,"\u00c5":-3,"\u00c3":-3}},{"d":"89,-113v6,-42,-32,-56,-63,-37r-7,-10v32,-29,93,-19,95,43r3,115r-14,5v-4,-8,-2,-20,-9,-25v-16,40,-87,27,-82,-26v4,-45,36,-59,77,-65xm57,-18v33,1,32,-37,35,-68v-33,-4,-58,5,-58,40v0,18,9,28,23,28xm30,-239r25,-7r29,53v-27,-6,-35,-32,-54,-46","w":134},{"d":"37,-86v0,48,29,87,71,68r4,13v-8,3,-19,8,-32,8r-14,19v14,1,30,7,30,22v0,28,-41,33,-63,22r15,-16v7,7,31,12,31,-5v0,-13,-13,-14,-27,-15r11,-29v-33,-9,-51,-42,-51,-87v0,-62,39,-106,100,-85r-10,25v-39,-21,-65,17,-65,60","w":116,"k":{"t":-5,",":5,"d":3,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"o":3,"\u00f8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"u":-5,"\u00fa":-5,"\u00fb":-5,"\u00fc":-5,"\u00f9":-5,"y":-7,"\u00fd":-7,"\u00ff":-7}},{"d":"89,-113v6,-42,-32,-56,-63,-37r-7,-10v32,-29,93,-19,95,43r3,115r-14,5v-4,-8,-2,-20,-9,-25v-16,40,-87,27,-82,-26v4,-45,36,-59,77,-65xm57,-18v33,1,32,-37,35,-68v-33,-4,-58,5,-58,40v0,18,9,28,23,28xm35,-219v-1,-41,70,-49,70,-4v0,19,-14,31,-33,31v-20,0,-37,-7,-37,-27xm68,-204v24,-1,23,-40,0,-41v-21,1,-26,41,0,41","w":134},{"d":"72,3v-45,0,-63,-38,-62,-92v1,-48,17,-88,63,-88v47,0,62,42,62,92v0,49,-18,88,-63,88xm37,-94v0,39,8,72,40,78v27,-2,31,-29,31,-58v0,-36,-6,-84,-41,-84v-28,0,-30,35,-30,64xm29,-216v0,-12,17,-22,27,-12v9,9,5,28,-11,28v-10,0,-17,-7,-16,-16xm101,-231v15,-1,20,29,2,30v-20,1,-21,-30,-2,-30","w":145,"k":{",":14,".":12,"v":4,"w":2,"x":5,"y":3,"\u00fd":3,"\u00ff":3,"z":4}},{"w":68},{"w":68},{"d":"51,-29v23,28,51,-7,52,-42r3,-98r17,-6r9,175r-22,3r-3,-32v-6,28,-53,46,-73,17v-24,-34,-15,-104,-22,-155r27,-5v4,45,0,108,12,143xm32,-216v0,-12,17,-22,27,-12v9,9,5,28,-11,28v-10,0,-17,-7,-16,-16xm118,-215v0,8,-4,14,-13,14v-19,0,-19,-30,-1,-30v7,0,14,6,14,16","w":149,"k":{",":5}},{"d":"51,-29v23,28,51,-7,52,-42r3,-98r17,-6r9,175r-22,3r-3,-32v-6,28,-53,46,-73,17v-24,-34,-15,-104,-22,-155r27,-5v4,45,0,108,12,143xm28,-239r26,-7r29,53v-27,-6,-35,-32,-55,-46","w":149,"k":{",":5}},{"d":"66,3r-16,-222r-38,8r-7,-27r124,-5r-4,14r-42,5r-1,229","w":133,"k":{"\u00fc":20,"\u00f2":23,"\u00f6":23,"\u00ec":3,"\u00ee":3,"\u00ed":3,"\u00e8":23,"\u00eb":23,"\u00ea":23,"\u00e3":24,"\u00e5":24,"\u00e0":24,"\u00e4":24,"\u00e2":24,"T":-5,"V":-7,"W":-6,"m":20,"r":20,",":30,".":26,":":14,";":18,")":-15,"]":-15,"}":-14,"G":12,"Q":12,"h":5,"w":20,"X":-5,"Y":-8,"\u00dd":-8,"s":22,"C":12,"\u00c7":12,"O":12,"\u00d8":12,"\u00d3":12,"\u00d4":12,"\u00d6":12,"\u00d2":12,"\u00d5":12,"e":23,"\u00e9":23,"o":23,"\u00f8":23,"\u00f3":23,"\u00f4":23,"\u00f5":23,"u":20,"\u00fa":20,"\u00fb":20,"\u00f9":20,"y":21,"\u00fd":21,"\u00ff":21,"z":21,"a":24,"\u00e6":24,"\u00e1":24,"i":3,"\u00ef":3,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"S":5}},{"d":"19,-247r26,4r-8,76r-14,3xm66,-246r27,-1r-5,83r-14,2","w":111},{"d":"161,-129v0,73,-16,132,-78,132v-61,0,-71,-55,-71,-119v0,-69,17,-130,79,-130v55,0,70,49,70,117xm37,-134v0,52,6,109,53,115v41,-3,45,-50,45,-93v0,-49,-7,-105,-52,-112v-41,3,-46,47,-46,90","w":172,"k":{"T":12,"V":-9,"W":-5,"t":-3,",":15,".":10,"v":-5,"w":-5,"X":8,"g":-3,"q":-7,"Y":8,"\u00dd":8,"d":-3,"c":-3,"\u00e7":-3,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"f":-3,"\u00df":-3,"o":-3,"\u00f8":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"u":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,"y":-4,"\u00fd":-4,"\u00ff":-4,"z":3,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},{"d":"98,-192r24,-2r-4,88r83,-2r-5,25r-80,-5r-7,94r-13,-3r2,-90r-80,-1r-3,-13r83,-4r0,-87","w":214},{"d":"48,-67r-16,3r-16,-169r34,-10xm54,-15v0,10,-6,20,-18,18v-10,-1,-15,-7,-15,-18v0,-11,6,-18,16,-18v10,0,18,6,17,18","w":73},{"d":"2,45v12,-25,22,-58,28,-88r32,4v-10,29,-26,58,-43,80xm40,-170v20,2,21,39,-1,40v-11,1,-15,-8,-15,-19v0,-11,7,-20,16,-21","w":68,"k":{" ":22}},{"d":"70,-132v0,-23,-19,-31,-43,-27r5,-19v32,6,49,-40,14,-43v-11,0,-17,5,-24,8r-10,-16v21,-17,69,-13,69,23v0,16,-13,25,-23,32v19,4,32,17,33,38v2,38,-51,55,-80,33v5,-12,14,-4,29,-4v17,0,30,-9,30,-25","w":101},{"d":"72,3v-45,0,-63,-38,-62,-92v1,-48,17,-88,63,-88v47,0,62,42,62,92v0,49,-18,88,-63,88xm37,-94v0,39,8,72,40,78v27,-2,31,-29,31,-58v0,-36,-6,-84,-41,-84v-28,0,-30,35,-30,64xm85,-246r29,6r-39,46r-13,2","w":145,"k":{",":14,".":12,"v":4,"w":2,"x":5,"y":3,"\u00fd":3,"\u00ff":3,"z":4}},{"d":"51,-29v23,28,51,-7,52,-42r3,-98r17,-6r9,175r-22,3r-3,-32v-6,28,-53,46,-73,17v-24,-34,-15,-104,-22,-155r27,-5v4,45,0,108,12,143","w":149,"k":{",":5}},{"d":"200,-122r-186,4r6,-15r180,-13r0,24xm194,-54r-174,0r-6,-24r186,9","w":214},{"d":"75,-145r32,-98r16,0r-33,117r63,126r-32,8r-45,-111r-29,100r-32,3r44,-129r-59,-114r14,-4","w":150,"k":{"T":-3,"V":-4,"W":-4,"G":9,"Q":9,"X":-2,"Y":5,"\u00dd":5,"C":9,"\u00c7":9,"O":9,"\u00d8":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"e":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,"y":9,"\u00fd":9,"\u00ff":9,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"A":-2,"\u00c6":-2,"\u00c1":-2,"\u00c2":-2,"\u00c4":-2,"\u00c0":-2,"\u00c5":-2,"\u00c3":-2}},{"d":"53,-123v-48,-23,-35,-114,27,-114v65,0,59,93,14,111v17,15,37,31,36,61v-2,40,-25,68,-65,68v-36,0,-57,-21,-57,-57v0,-36,24,-54,45,-69xm65,-115v-37,15,-40,102,11,100v45,-1,39,-78,6,-90v-5,-3,-11,-7,-17,-10xm70,-137v33,-7,51,-76,10,-86v-48,-1,-42,72,-10,86"},{"d":"24,-246r19,7r7,238r-28,4xm88,-278v1,19,-31,26,-37,6v-4,-14,5,-26,17,-26v11,0,20,10,20,20xm3,-297v14,0,22,19,12,30v-10,11,-29,4,-29,-11v0,-12,8,-19,17,-19","w":71,"k":{"z":-2}},{"d":"189,-3r-14,-200r-56,206r-16,-6r-54,-198r-6,207r-29,-9r19,-236r29,-7r49,202r3,0r43,-190r41,-9r7,243","w":225,"k":{"i":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2}},{"d":"20,-249v57,-5,48,56,40,106v-2,17,8,27,24,27r-7,17v-41,3,-20,59,-21,93v0,32,-17,48,-49,48r-6,-20v68,11,0,-112,58,-126v-38,-9,-15,-69,-14,-106v1,-19,-11,-25,-29,-25","w":92},{"d":"26,-239v86,-21,136,24,136,112v0,100,-46,140,-136,127r1,-113r-31,5r4,-23r27,-1xm136,-126v6,-60,-16,-109,-78,-96r-6,89r43,-3r-4,15r-39,4r-8,98v69,4,86,-44,92,-107","w":173,"k":{"V":3,"W":4,",":16,".":14,"Y":10,"\u00dd":10,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"o":-3,"\u00f8":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"u":-5,"\u00fa":-5,"\u00fb":-5,"\u00fc":-5,"\u00f9":-5,"y":-6,"\u00fd":-6,"\u00ff":-6}},{"d":"28,2r-11,-248r33,8r-2,117r57,-125r30,7r-59,104r76,129r-31,15r-57,-129r-15,24r-1,101","w":150,"k":{"W":-3,"G":10,"Q":10,"h":-2,"v":13,"w":12,"C":10,"\u00c7":10,"O":10,"\u00d8":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":3,"\u00f8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"y":13,"\u00fd":13,"\u00ff":13,"a":-3,"\u00e6":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3,"A":-3,"\u00c6":-3,"\u00c1":-3,"\u00c2":-3,"\u00c4":-3,"\u00c0":-3,"\u00c5":-3,"\u00c3":-3}},{"d":"9,63v23,-15,43,-48,41,-83r-46,-161r33,6r25,138r42,-137r16,7r-23,104v-14,59,-29,114,-80,136xm22,-216v0,-13,18,-22,28,-12v9,9,3,28,-12,28v-10,0,-16,-8,-16,-16xm94,-231v15,-1,20,29,2,30v-20,1,-21,-30,-2,-30","w":129,"k":{",":22,".":17,":":-4,"v":-6,"w":-6,"g":4,"q":4,"d":4,"c":4,"\u00e7":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"a":5,"\u00e6":5,"\u00e1":5,"\u00e2":5,"\u00e4":5,"\u00e0":5,"\u00e5":5,"\u00e3":5}},{"d":"66,-33v28,34,67,2,64,-49r-10,-156r34,-9v-10,94,27,250,-68,250v-96,0,-55,-150,-67,-239r19,-5r13,159v1,22,6,38,15,49xm33,-305r26,-8r29,53v-27,-6,-35,-31,-55,-45","w":173,"k":{"v":2,"x":4,"s":3,"y":2,"\u00fd":2,"\u00ff":2,"z":4,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11}},{"d":"33,-89v-5,53,33,83,78,64r7,25v-61,22,-110,-19,-106,-84v3,-49,17,-94,64,-92v45,2,52,48,48,95xm99,-105v8,-53,-49,-73,-59,-21v-1,6,-3,13,-3,19xm31,-216v0,-12,17,-22,27,-12v9,9,5,28,-11,28v-10,0,-16,-8,-16,-16xm103,-231v15,-1,20,29,2,30v-20,1,-21,-30,-2,-30","w":135,"k":{",":8,".":4,"x":2,"d":-5,"c":-5,"\u00e7":-5,"z":2}},{"d":"24,-246r19,7r7,238r-28,4","w":71,"k":{"z":-2}},{"d":"89,-113v6,-42,-32,-56,-63,-37r-7,-10v32,-29,93,-19,95,43r3,115r-14,5v-4,-8,-2,-20,-9,-25v-16,40,-87,27,-82,-26v4,-45,36,-59,77,-65xm57,-18v33,1,32,-37,35,-68v-33,-4,-58,5,-58,40v0,18,9,28,23,28xm59,-243r13,-2r29,52r-13,0v-9,-12,-16,-26,-27,-36r-12,32r-19,3","w":134},{"d":"12,-116v0,-70,46,-117,116,-117v64,0,104,42,104,104v0,70,-45,118,-115,118v-65,0,-105,-41,-105,-105xm124,-25v57,0,91,-39,91,-96v0,-60,-39,-98,-99,-98v-52,0,-86,40,-86,96v0,59,36,98,94,98xm80,-128v-4,49,53,71,91,48r5,8v-38,31,-113,22,-113,-48v0,-56,56,-81,108,-61r-10,18v-26,-24,-87,-7,-81,35","w":243},{"d":"113,-139r5,15r-61,8r-11,90r78,4r2,15r-101,10r3,-244r89,-6r5,28r-72,-5r6,83xm22,-261v19,-14,28,-38,55,-44r43,43v-25,5,-34,-19,-54,-26v-13,11,-20,27,-44,27","w":133,"k":{"V":-4,"W":-4,"t":-7,",":5,"h":4,"v":5,"w":5,"g":5,"p":3,"q":5,"Y":-4,"\u00dd":-4,"d":5,"b":3,"\u00fe":3,"c":5,"\u00e7":5,"e":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"f":3,"\u00df":3,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":-5,"\u00fa":-5,"\u00fb":-5,"\u00fc":-5,"\u00f9":-5,"y":6,"\u00fd":6,"\u00ff":6,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2}},{"d":"113,-76r-57,-3r-28,76r-19,3r63,-246r23,7r62,239r-35,3xm60,-93r49,-3r-25,-120v-13,36,-15,83,-24,123","w":165,"k":{"T":23,"V":20,"W":11,"t":4,"G":6,"Q":6,"v":13,"w":10,"g":4,"q":3,"Y":25,"\u00dd":25,"d":4,"C":6,"\u00c7":6,"O":6,"\u00d8":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"b":2,"\u00fe":2,"c":4,"\u00e7":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"f":4,"\u00df":4,"j":2,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"y":9,"\u00fd":9,"\u00ff":9,"z":-4}},{"d":"50,-3r-29,3r-2,-175r21,4xm26,-243r14,-2r28,52r-12,0v-9,-12,-16,-26,-27,-36r-12,32r-20,3","w":66},{"d":"66,-33v28,34,67,2,64,-49r-10,-156r34,-9v-10,94,27,250,-68,250v-96,0,-55,-150,-67,-239r19,-5r13,159v1,22,6,38,15,49xm34,-257v19,-14,28,-38,55,-44r43,43v-25,5,-34,-19,-54,-26v-12,12,-20,28,-44,27","w":173,"k":{"v":2,"x":4,"s":3,"y":2,"\u00fd":2,"\u00ff":2,"z":4,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11}},{"d":"161,-129v0,73,-16,132,-78,132v-61,0,-71,-55,-71,-119v0,-69,17,-130,79,-130v55,0,70,49,70,117xm37,-134v0,52,6,109,53,115v41,-3,45,-50,45,-93v0,-49,-7,-105,-52,-112v-41,3,-46,47,-46,90xm139,-278v-1,26,-39,23,-39,-1v0,-10,8,-19,18,-19v11,-1,21,10,21,20xm54,-297v14,0,22,19,12,30v-9,10,-32,5,-29,-11v-1,-12,8,-19,17,-19","w":172,"k":{"T":12,"V":-9,"W":-5,"t":-3,",":15,".":10,"v":-5,"w":-5,"X":8,"g":-3,"q":-7,"Y":8,"\u00dd":8,"d":-3,"c":-3,"\u00e7":-3,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"f":-3,"\u00df":-3,"o":-3,"\u00f8":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"u":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,"y":-4,"\u00fd":-4,"\u00ff":-4,"z":3,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},{"d":"44,-243r4,150v16,-26,25,-59,38,-88r26,17r-37,63r55,104r-19,-3r-54,-80v-14,15,-7,51,-10,77r-17,6r-16,-253","w":130,"k":{"g":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},{"d":"50,-3r-29,3r-2,-175r21,4xm14,-218v-3,-12,4,-21,15,-21v11,0,17,10,17,19v0,9,-6,15,-14,16v-11,1,-16,-6,-18,-14","w":66},{"d":"42,-157v-26,23,-2,59,25,61v14,4,28,11,40,17v28,-31,-6,-70,-43,-70v-8,-2,-16,-5,-22,-8xm123,-63v33,47,-20,101,-81,82v-9,-2,-15,-6,-20,-10r14,-23v19,17,79,19,81,-16v-11,-55,-105,-30,-105,-96v0,-17,9,-26,21,-37v-42,-31,1,-102,58,-79v11,5,19,10,20,24v-19,-14,-68,-16,-68,16v0,57,100,33,97,102v-1,17,-7,28,-17,37","w":149},{"d":"175,-198r10,26r-137,73r0,4r142,73r-9,11r-159,-73r-6,-13","w":214},{"d":"72,3v-45,0,-63,-38,-62,-92v1,-48,17,-88,63,-88v47,0,62,42,62,92v0,49,-18,88,-63,88xm37,-94v0,39,8,72,40,78v27,-2,31,-29,31,-58v0,-36,-6,-84,-41,-84v-28,0,-30,35,-30,64","w":145,"k":{",":14,".":12,"v":4,"w":2,"x":5,"y":3,"\u00fd":3,"\u00ff":3,"z":4}},{"d":"95,-184v2,-35,-40,-46,-63,-29r-13,-8v32,-30,102,-15,97,41v-2,27,-14,45,-35,55v23,10,38,29,39,62v2,56,-59,85,-109,59r4,-28v29,23,83,12,83,-37v0,-32,-24,-50,-56,-50r-3,-22v33,1,54,-11,56,-43"},{"d":"79,-237v87,0,56,160,19,200v-20,22,-46,43,-83,44r6,-27v55,-3,78,-36,83,-89v-7,11,-22,21,-40,21v-33,1,-51,-30,-50,-64v1,-46,21,-85,65,-85xm74,-107v48,2,36,-72,21,-94v-24,-34,-61,-7,-58,35v2,31,8,57,37,59"},{"d":"138,-170v0,53,-36,81,-91,71r5,101r-31,-5r7,-237v57,-14,110,9,110,70xm113,-165v5,-45,-22,-66,-65,-57r2,97v36,6,60,-10,63,-40","w":148,"k":{"\u00e4":10,"r":3,"t":-3,",":56,".":50,";":5,"s":4,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":9,"\u00f8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"y":-2,"\u00fd":-2,"\u00ff":-2,"a":10,"\u00e6":10,"\u00e1":10,"\u00e2":10,"\u00e0":10,"\u00e5":10,"\u00e3":10,"A":23,"\u00c6":23,"\u00c1":23,"\u00c2":23,"\u00c4":23,"\u00c0":23,"\u00c5":23,"\u00c3":23,"E":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u00c8":7,"n":4,"\u00f1":4}},{"d":"68,-178v20,-1,29,10,38,22r-11,-89r29,-6r3,251r-20,5v-1,-8,3,-19,0,-25v-8,12,-20,24,-40,23v-43,-3,-55,-43,-55,-90v0,-49,9,-89,56,-91xm34,-84v-4,42,27,81,56,49v14,-16,11,-48,13,-76v1,-27,-7,-47,-30,-50v-31,4,-36,43,-39,77","w":150,"k":{",":10,".":9}},{"d":"9,63v23,-15,43,-48,41,-83r-46,-161r33,6r25,138r42,-137r16,7r-23,104v-14,59,-29,114,-80,136","w":129,"k":{",":22,".":17,":":-4,"v":-6,"w":-6,"g":4,"q":4,"d":4,"c":4,"\u00e7":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"a":5,"\u00e6":5,"\u00e1":5,"\u00e2":5,"\u00e4":5,"\u00e0":5,"\u00e5":5,"\u00e3":5}},{"d":"68,-14v-1,12,-4,17,-18,17v-8,0,-18,-11,-17,-21v0,-12,5,-17,15,-17v10,-1,20,12,20,21xm17,-237v43,-22,108,3,86,58v-15,36,-53,58,-44,111r-11,6v-16,-51,22,-85,27,-129v4,-36,-39,-49,-61,-26","w":115},{"d":"25,3r-6,-246r96,0r-5,31r-69,-8r8,85r61,-2r5,13r-63,11r-4,105","w":129,"k":{"\u00eb":8,"\u00e3":15,"\u00e0":15,"\u00e4":15,"r":6,",":39,".":35,":":4,";":8,"e":8,"\u00e9":8,"\u00ea":8,"\u00e8":8,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"u":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"\u00f9":7,"y":5,"\u00fd":5,"\u00ff":5,"a":15,"\u00e6":15,"\u00e1":15,"\u00e2":15,"\u00e5":15,"i":5,"\u00ed":5,"\u00ee":5,"\u00ef":5,"\u00ec":5,"l":4,"A":19,"\u00c6":19,"\u00c1":19,"\u00c2":19,"\u00c4":19,"\u00c0":19,"\u00c5":19,"\u00c3":19}},{"d":"6,-165r31,-7r27,67r3,1r33,-68r24,9r-42,71r32,95r-19,-3v-11,-22,-19,-47,-32,-68r-36,66r-17,2r42,-94","w":126,"k":{"t":-6,"v":-6,"w":-6,"c":5,"\u00e7":5,"e":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"y":-8,"\u00fd":-8,"\u00ff":-8}},{"d":"50,-3r-29,3r-2,-175r21,4xm-9,-239r26,-7r29,53v-27,-6,-35,-32,-55,-46","w":66},{"d":"73,3v-75,-1,-79,-106,-23,-138v-27,-33,-25,-114,31,-111v27,1,44,19,43,50v-1,34,-20,46,-43,66v13,20,34,50,50,70v10,-19,9,-39,12,-62r27,-8v-4,33,-8,70,-25,91r28,42v-23,-2,-27,-13,-41,-27v-18,18,-38,27,-59,27xm57,-123v-31,23,-31,101,23,101v18,0,32,-14,39,-26xm103,-197v0,-14,-6,-30,-22,-29v-35,2,-29,61,-13,80v19,-12,35,-25,35,-51","w":181},{"d":"26,-246r33,3r-12,108r80,-3r-5,-105r29,-3r3,246r-24,2r-3,-113r-79,-5r-9,118r-18,-4","w":174},{"d":"72,3v-45,0,-63,-38,-62,-92v1,-48,17,-88,63,-88v47,0,62,42,62,92v0,49,-18,88,-63,88xm37,-94v0,39,8,72,40,78v27,-2,31,-29,31,-58v0,-36,-6,-84,-41,-84v-28,0,-30,35,-30,64xm109,-233v3,36,-34,31,-54,18v-7,1,-7,8,-8,16r-14,-3v0,-14,7,-29,22,-29v17,0,23,15,36,16v11,0,8,-16,18,-18","w":145,"k":{",":14,".":12,"v":4,"w":2,"x":5,"y":3,"\u00fd":3,"\u00ff":3,"z":4}},{"d":"33,-89v-5,53,33,83,78,64r7,25v-61,22,-110,-19,-106,-84v3,-49,17,-94,64,-92v45,2,52,48,48,95xm99,-105v8,-53,-49,-73,-59,-21v-1,6,-3,13,-3,19xm89,-246r29,6r-40,46r-12,2","w":135,"k":{",":8,".":4,"x":2,"d":-5,"c":-5,"\u00e7":-5,"z":2}},{"d":"51,-97v0,11,-7,20,-17,20v-8,0,-17,-10,-17,-19v0,-11,5,-20,16,-20v11,0,18,8,18,19","w":68},{"d":"67,-246r30,6r-40,46r-12,2","w":108},{"d":"75,-94v-2,28,28,20,39,7v17,-20,23,-51,33,-78v-43,-13,-70,30,-72,71xm59,-98v3,-57,42,-106,104,-86r-14,95v0,12,4,18,11,18v27,-7,26,-46,27,-79v2,-48,-19,-81,-65,-81v-105,0,-123,222,-10,219v21,5,35,-15,46,-2v-14,8,-35,19,-56,19v-60,-2,-90,-41,-90,-104v0,-81,43,-144,122,-150v105,-10,102,193,18,193v-15,0,-24,-13,-22,-30v-13,36,-73,37,-71,-12","w":219},{"d":"113,-139r5,15r-61,8r-11,90r78,4r2,15r-101,10r3,-244r89,-6r5,28r-72,-5r6,83","w":133,"k":{"\u00ef":2,"V":-4,"W":-4,"t":-7,",":5,"h":4,"v":5,"w":5,"g":5,"p":3,"q":5,"Y":-4,"\u00dd":-4,"d":5,"b":3,"\u00fe":3,"c":5,"\u00e7":5,"e":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"f":3,"\u00df":3,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":-5,"\u00fa":-5,"\u00fb":-5,"\u00fc":-5,"\u00f9":-5,"y":6,"\u00fd":6,"\u00ff":6,"i":2,"\u00ed":2,"\u00ee":2,"\u00ec":2}},{"d":"48,-122v-3,48,30,86,73,62v4,21,-13,22,-28,25r5,40r-23,-2r3,-35v-40,-6,-56,-37,-55,-85v1,-44,19,-74,54,-84r-8,-30r23,-4r1,32v10,0,22,1,28,5r-11,25v-5,-5,-13,-10,-24,-9v-31,1,-36,30,-38,60"},{"d":"72,3v-45,0,-63,-38,-62,-92v1,-48,17,-88,63,-88v47,0,62,42,62,92v0,49,-18,88,-63,88xm37,-94v0,39,8,72,40,78v27,-2,31,-29,31,-58v0,-36,-6,-84,-41,-84v-28,0,-30,35,-30,64xm69,-243r13,-2r29,52r-12,0r-27,-36r-13,32r-19,3","w":145,"k":{",":14,".":12,"v":4,"w":2,"x":5,"y":3,"\u00fd":3,"\u00ff":3,"z":4}},{"d":"161,-129v0,73,-16,132,-78,132v-61,0,-71,-55,-71,-119v0,-69,17,-130,79,-130v55,0,70,49,70,117xm37,-134v0,52,6,109,53,115v41,-3,45,-50,45,-93v0,-49,-7,-105,-52,-112v-41,3,-46,47,-46,90xm112,-309r27,14r-51,34r-12,-2","w":172,"k":{"T":12,"V":-9,"W":-5,"t":-3,",":15,".":10,"v":-5,"w":-5,"X":8,"g":-3,"q":-7,"Y":8,"\u00dd":8,"d":-3,"c":-3,"\u00e7":-3,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"f":-3,"\u00df":-3,"o":-3,"\u00f8":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"u":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,"y":-4,"\u00fd":-4,"\u00ff":-4,"z":3,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6}},{"d":"69,-5r3,-200r-40,13r-6,-12v22,-8,35,-29,63,-27r10,231"},{"d":"67,-95r-25,-3r13,-125r-33,21r-5,-7r34,-31r17,5","w":100},{"d":"103,-146r-5,62r26,0r3,12r-30,1r-6,71r-19,3r9,-75r-30,-4r-8,81r-21,-2r13,-79r-26,4r6,-21r22,0r8,-54r-26,2r-3,-11r30,-3r12,-77r10,5r-7,72r29,0r8,-69r12,-3r-6,71r26,-7r3,21r-30,0xm88,-146r-28,-2r-6,57r28,6","w":142},{"d":"100,-3r-29,6r-73,-246r33,5r47,206r53,-208r17,-6","w":157,"k":{"\u00f6":15,"\u00f4":15,"\u00e8":15,"\u00eb":15,"\u00ea":15,"\u00e3":15,"\u00e5":15,"\u00e0":15,"\u00e4":15,"\u00e2":15,"r":10,",":35,".":31,":":9,";":13,")":-14,"]":-14,"}":-14,"G":5,"Q":5,"C":5,"\u00c7":5,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"e":15,"\u00e9":15,"o":15,"\u00f8":15,"\u00f3":15,"\u00f2":15,"\u00f5":15,"u":12,"\u00fa":12,"\u00fb":12,"\u00fc":12,"\u00f9":12,"y":6,"\u00fd":6,"\u00ff":6,"a":15,"\u00e6":15,"\u00e1":15,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"E":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u00c8":7}},{"d":"89,-113v6,-42,-32,-56,-63,-37r-7,-10v32,-29,93,-19,95,43r3,115r-14,5v-4,-8,-2,-20,-9,-25v-16,40,-87,27,-82,-26v4,-45,36,-59,77,-65xm57,-18v33,1,32,-37,35,-68v-33,-4,-58,5,-58,40v0,18,9,28,23,28xm86,-215v11,0,7,-17,17,-18v5,38,-34,31,-53,18v-7,1,-8,8,-9,16r-13,-3v0,-14,7,-29,22,-29v17,0,23,16,36,16","w":134},{"d":"24,-217v32,-34,108,-26,102,36v-7,69,-53,114,-93,160v27,2,59,-3,87,-3r3,27r-115,-6v0,-22,15,-28,24,-40v29,-36,62,-69,68,-128v4,-43,-41,-55,-68,-35"},{"d":"24,-246r19,7r7,238r-28,4xm54,-309r27,14r-51,34r-12,-2","w":71,"k":{"z":-2}},{"d":"98,-48v0,43,-49,63,-85,43r6,-23v14,17,60,18,57,-15v-4,-45,-66,-35,-66,-87v0,-43,53,-59,83,-35r-9,10v-17,-14,-49,-4,-47,20v4,42,61,38,61,87","w":108,"k":{",":5}},{"d":"76,-237v46,0,58,57,58,117v0,65,-13,119,-66,123v-44,-5,-58,-56,-58,-117v0,-65,15,-123,66,-123xm66,-215v-53,17,-33,132,-14,176v4,10,15,22,27,20v32,-5,32,-57,29,-96v-3,-42,-5,-91,-42,-100"},{"d":"6,-16v29,-14,50,-49,40,-95r-36,3r5,-24r28,3v-19,-60,15,-132,81,-104r-12,25v-19,-21,-54,-5,-54,29v0,17,5,35,8,49r43,1r-2,15r-38,2v10,40,-6,70,-20,97r87,-11r-8,28r-111,-2"},{"d":"71,-177v19,0,29,13,37,24r-5,-24r22,3v3,102,46,294,-103,232r10,-13v9,4,20,8,34,8v36,1,42,-39,38,-76v-5,13,-20,23,-37,23v-41,0,-55,-42,-55,-86v0,-50,15,-91,59,-91xm79,-26v39,0,24,-57,24,-92v0,-22,-13,-43,-35,-43v-24,0,-31,26,-31,54v1,38,7,81,42,81","w":150,"k":{",":9,".":9}},{"d":"17,40v47,-74,38,-233,-16,-292r30,4v51,64,51,230,-2,291","w":92},{"d":"84,0v-35,15,-57,-12,-58,-50r-2,-106r-19,2r-4,-14r23,-4r-2,-32r20,-14r4,47r27,-7r7,24r-36,-2r9,109v-1,21,16,32,35,23","w":93,"k":{",":5,"w":-4,"g":3,"d":3,"c":3,"\u00e7":3,"e":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"o":3,"\u00f8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"y":-4,"\u00fd":-4,"\u00ff":-4}},{"d":"110,-7r-27,7r6,-68r-85,5r-3,-21r93,-150r24,0r-7,148r28,-4r-2,17r-27,5r0,61xm34,-89v17,4,40,3,59,5v-3,-39,1,-85,-6,-120v-15,44,-35,76,-53,115"},{"d":"47,-153v22,-42,87,-23,84,39r-5,108r-25,6r8,-109v2,-24,-4,-46,-29,-46v-51,12,-28,98,-37,152r-19,-1r0,-239r26,-4v0,30,-8,68,-3,94","w":151,"k":{"t":2,"v":4,"y":4,"\u00fd":4,"\u00ff":4}},{"d":"22,-63r24,4r-2,119r-15,3xm23,-239r28,-7r-5,128r-14,1","w":73},{"d":"11,-167v0,-58,52,-85,115,-73r-6,256r-14,2r3,-237r-24,-4r2,241r-12,-1r-12,-115v-34,-4,-52,-32,-52,-69","w":149},{"d":"56,63r-30,6r0,-177r15,-5xm36,-141v-23,-1,-20,-37,2,-37v11,0,16,8,16,18v-1,10,-7,19,-18,19","w":73},{"d":"102,-202r15,-2r2,72r79,5r2,12r-85,3r0,72r-12,2r-7,-70r-82,-7r3,-12r81,-7xm12,-21r186,9r2,15r-185,-3","w":214},{"d":"22,0r86,-209r-90,-6r-9,-15r116,-6r0,23r-70,209"},{"d":"88,-249v-53,63,-59,221,-10,293r-12,-5v-55,-64,-56,-224,-6,-292","w":92,"k":{"T":-15,"V":-14,"W":-14,"J":-4,"Y":-15,"\u00dd":-15}},{"d":"17,8r9,-261r17,10r3,246","w":66},{"d":"66,-33v28,34,67,2,64,-49r-10,-156r34,-9v-10,94,27,250,-68,250v-96,0,-55,-150,-67,-239r19,-5r13,159v1,22,6,38,15,49","w":173,"k":{"v":2,"x":4,"s":3,"y":2,"\u00fd":2,"\u00ff":2,"z":4,"a":2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11}},{"d":"129,-67v0,61,-72,86,-120,56r10,-14v27,21,84,11,80,-32v-5,-64,-82,-58,-84,-125v-1,-52,54,-76,101,-55r-7,25v-22,-16,-73,-8,-70,26v5,64,90,48,90,119","w":135,"k":{"t":2,"v":5,"w":4,"q":-7,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"o":-7,"\u00f8":-7,"\u00f3":-7,"\u00f4":-7,"\u00f6":-7,"\u00f2":-7,"\u00f5":-7,"y":4,"\u00fd":4,"\u00ff":4,"a":-5,"\u00e6":-5,"\u00e1":-5,"\u00e2":-5,"\u00e4":-5,"\u00e0":-5,"\u00e5":-5,"\u00e3":-5,"l":-4}},{"d":"70,-140v-21,4,-29,-32,-10,-37v13,-3,23,7,23,19v0,10,-5,16,-13,18xm11,24v0,-58,56,-69,47,-135r12,2v18,50,-24,83,-28,127v-3,35,37,39,57,23v-1,21,-19,30,-40,30v-31,0,-48,-17,-48,-47","w":115},{"d":"33,-89v-5,53,33,83,78,64r7,25v-61,22,-110,-19,-106,-84v3,-49,17,-94,64,-92v45,2,52,48,48,95xm99,-105v8,-53,-49,-73,-59,-21v-1,6,-3,13,-3,19xm69,-243r13,-2r29,52r-13,0v-9,-12,-16,-26,-27,-36r-12,32r-19,3","w":135,"k":{",":8,".":4,"x":2,"d":-5,"c":-5,"\u00e7":-5,"z":2}},{"d":"79,0r-21,-3r2,-101r-51,-144r18,5r56,113r31,-107r37,-6r-64,138","w":149,"k":{"\u00fc":21,"\u00f6":28,"T":-8,"V":-10,"W":-9,"t":4,",":37,".":33,":":17,";":22,")":-16,"]":-16,"}":-15,"G":12,"Q":12,"v":16,"X":-5,"q":27,"Y":-10,"\u00dd":-10,"d":27,"C":12,"\u00c7":12,"O":12,"\u00d8":12,"\u00d3":12,"\u00d4":12,"\u00d6":12,"\u00d2":12,"\u00d5":12,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"o":28,"\u00f8":28,"\u00f3":28,"\u00f4":28,"\u00f2":28,"\u00f5":28,"u":21,"\u00fa":21,"\u00fb":21,"\u00f9":21,"a":26,"\u00e6":26,"\u00e1":26,"\u00e2":26,"\u00e4":26,"\u00e0":26,"\u00e5":26,"\u00e3":26,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"l":4,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"S":4}},{"d":"81,3v-19,0,-31,-9,-37,-23r-9,89r-18,-3r1,-287r33,-19r-2,88v8,-15,18,-24,38,-24v78,0,67,177,-6,179xm75,-155v-39,0,-31,57,-27,93v3,22,11,42,34,44v51,-7,40,-137,-7,-137","w":151,"k":{",":17,".":12,"v":3,"y":3,"\u00fd":3,"\u00ff":3}},{"d":"29,-267r18,-3r5,358r-24,2","w":73},{"d":"30,-37v12,1,20,7,20,20v0,12,-7,21,-19,21v-11,0,-13,-12,-12,-24v0,-8,2,-18,11,-17","w":68,"k":{" ":28}},{"d":"59,-95v-63,-1,-64,-141,-3,-142v60,3,64,138,3,142xm56,-111v23,-3,25,-33,26,-59v1,-24,-3,-48,-24,-51v-22,5,-25,33,-26,60v1,23,3,48,24,50xm181,3v-62,-3,-57,-142,4,-142v63,3,56,141,-4,142xm185,-13v36,-5,27,-84,9,-105v-24,-17,-37,14,-36,44v1,28,4,56,27,61xm64,5r-17,-9r134,-239r10,4","w":239},{"d":"78,-156v-55,10,-24,102,-29,157r-29,-2r7,-140v0,-13,0,-24,-1,-33r16,3v1,6,-1,15,2,19v7,-13,21,-26,42,-25v73,5,35,114,35,177r-22,-2r7,-109v0,-24,-5,-44,-28,-45xm102,-215v11,0,7,-17,17,-18v5,38,-34,31,-53,18v-7,1,-9,8,-9,16r-13,-3v0,-14,7,-29,22,-29v17,0,22,16,36,16","w":151,"k":{"t":2,"v":4,"y":4,"\u00fd":4,"\u00ff":4}},{"d":"34,5v-17,-1,-25,-41,-2,-41v11,0,21,7,20,19v0,9,-7,23,-18,22xm33,-169v22,0,25,38,4,40v-14,5,-17,-9,-16,-24v0,-9,3,-16,12,-16","w":68,"k":{" ":26}},{"d":"7,-91v-6,-66,61,-115,96,-61r-5,-32r33,10r-2,237r-18,6r-5,-89v-7,14,-19,26,-40,26v-48,-2,-55,-49,-59,-97xm75,-20v37,0,29,-52,27,-88v-2,-24,-10,-46,-34,-48v-53,8,-44,136,7,136","w":150,"k":{",":3,".":9}},{"d":"28,23r-24,-9r86,-254r14,-6","w":105},{"d":"15,-239r25,-7r29,53v-27,-6,-35,-32,-54,-46","w":108},{"d":"89,-246r17,20v-9,11,-21,21,-29,33r40,-10r9,27v-16,-1,-35,-6,-49,-5r31,44r-15,3r-29,-38r-12,41r-25,-7v10,-15,26,-32,33,-46r-51,8r4,-23v13,2,29,8,40,7r-20,-42r9,-9v9,14,16,31,26,44","w":135},{"d":"50,0r-20,7r-14,-244r38,-2r78,206r-2,-215r27,5r-9,239r-18,4r-87,-205","w":176,"k":{"y":2,"\u00fd":2,"\u00ff":2,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5}},{"d":"68,-171v16,-39,-33,-63,-56,-39v-1,-22,24,-24,42,-27v65,4,26,94,-2,110v-4,5,-10,9,-13,15r55,-3r-5,20r-81,-6v19,-24,47,-39,60,-70","w":102},{"d":"78,-156v-55,10,-24,102,-29,157r-29,-2r7,-140v0,-13,0,-24,-1,-33r16,3v1,6,-1,15,2,19v7,-13,21,-26,42,-25v73,5,35,114,35,177r-22,-2r7,-109v0,-24,-5,-44,-28,-45","w":151,"k":{"t":2,"v":4,"y":4,"\u00fd":4,"\u00ff":4}},{"d":"86,3v-22,0,-30,-13,-41,-25r-1,23r-18,2r-10,-246r30,-5r-4,98v10,-14,21,-27,43,-27v73,4,80,180,1,180xm80,-154v-37,0,-35,48,-35,86v0,24,9,46,31,49v34,-3,38,-42,38,-77v0,-34,-8,-58,-34,-58","w":151,"k":{",":17,".":12,"v":3,"y":3,"\u00fd":3,"\u00ff":3}},{"d":"25,-161v-1,-31,-4,-60,-9,-88r32,6v-3,29,-6,58,-15,81","w":62},{"d":"89,-113v6,-42,-32,-56,-63,-37r-7,-10v32,-29,93,-19,95,43r3,115r-14,5v-4,-8,-2,-20,-9,-25v-16,40,-87,27,-82,-26v4,-45,36,-59,77,-65xm57,-18v33,1,32,-37,35,-68v-33,-4,-58,5,-58,40v0,18,9,28,23,28","w":134},{"d":"82,43r-51,-4r-4,-283r56,-5r4,21r-30,-4r-11,256r35,-4","w":92,"k":{"T":-15,"V":-14,"W":-14,"J":-4,"Y":-15,"\u00dd":-15}},{"d":"62,-101r-25,6r0,-118v-11,2,-25,17,-32,6v16,-9,22,-27,45,-28xm45,-3r-14,6r125,-240r19,10xm189,-97v2,-29,-34,-35,-49,-18r-9,-10v18,-25,81,-26,77,22v-4,40,-27,61,-43,88r53,-6r-6,21r-81,-4v-6,-17,23,-23,29,-38v13,-15,27,-30,29,-55","w":226},{"d":"73,-17v47,0,53,-114,3,-114v-25,0,-41,22,-40,51v1,33,8,63,37,63xm12,-104v0,-73,31,-125,98,-135r8,24v-55,2,-74,44,-84,92r3,1v8,-14,21,-28,45,-27v40,2,55,36,55,78v0,43,-19,74,-59,74v-52,0,-66,-54,-66,-107"},{"d":"153,-98v11,1,15,-16,15,-28r24,-5v3,80,-88,27,-133,27v-14,0,-23,11,-22,28r-12,-5v-2,-26,9,-49,32,-49v36,0,62,29,96,32","w":214},{"d":"3,-177r31,6r35,134r36,-130r18,-5r-38,172r-24,-2","w":130,"k":{",":22,".":18,":":-6,"w":-5,"q":3,"d":4,"c":4,"\u00e7":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"y":-5,"\u00fd":-5,"\u00ff":-5,"a":5,"\u00e6":5,"\u00e1":5,"\u00e2":5,"\u00e4":5,"\u00e0":5,"\u00e5":5,"\u00e3":5}},{"d":"5,-243r57,-7r4,290r-54,4r4,-21r33,2r-12,-250r-31,-5","w":92},{"d":"161,-123v1,58,-12,98,-47,117v13,6,34,6,54,6r-12,32v-27,-6,-45,-28,-72,-31v-57,-7,-72,-59,-72,-122v0,-72,16,-125,77,-125v59,0,70,59,72,123xm96,-224v-61,11,-70,121,-50,181v4,13,14,25,32,24v55,-4,58,-70,58,-128v0,-37,-6,-73,-40,-77","w":172,"k":{"T":9,"V":-5,"W":-5,"X":5,"Y":10,"\u00dd":10,"u":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7}},{"d":"144,-58v0,59,-68,69,-119,51r-6,-236v53,-16,119,2,115,62v-2,26,-16,44,-40,49v27,12,50,35,50,74xm114,-177v2,-34,-28,-45,-60,-42r-2,76v31,8,60,-2,62,-34xm118,-75v-1,-34,-27,-52,-67,-49r-5,100v41,11,74,-11,72,-51","w":153,"k":{"T":6,"V":2,"W":3,",":6,".":7,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"o":-3,"\u00f8":-3,"\u00f3":-3,"\u00f4":-3,"\u00f6":-3,"\u00f2":-3,"\u00f5":-3,"a":-2,"\u00e6":-2,"\u00e1":-2,"\u00e2":-2,"\u00e4":-2,"\u00e0":-2,"\u00e5":-2,"\u00e3":-2}},{"d":"113,-76r-57,-3r-28,76r-19,3r63,-246r23,7r62,239r-35,3xm60,-93r49,-3r-25,-120v-13,36,-15,83,-24,123xm49,-284v0,-19,21,-34,43,-30v16,3,32,10,32,29v0,40,-75,41,-75,1xm105,-283v0,-14,-10,-22,-25,-20v-8,1,-15,7,-14,19v0,11,8,20,20,19v13,0,19,-5,19,-18","w":165,"k":{"T":23,"V":20,"W":11,"t":4,"G":6,"Q":6,"v":13,"w":10,"g":4,"q":3,"Y":25,"\u00dd":25,"d":4,"C":6,"\u00c7":6,"O":6,"\u00d8":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"b":2,"\u00fe":2,"c":4,"\u00e7":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"f":4,"\u00df":4,"j":2,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"y":9,"\u00fd":9,"\u00ff":9,"z":-4}},{"d":"24,-246r19,7r7,238r-28,4xm-7,-305r25,-8r30,53v-27,-6,-35,-31,-55,-45","w":71,"k":{"z":-2}},{"d":"28,2r-10,-239r27,-5r2,226r73,-10r7,22","w":129,"k":{"T":29,"V":25,"W":23,"G":16,"Q":16,"w":16,"Y":33,"\u00dd":33,"C":16,"\u00c7":16,"O":16,"\u00d8":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,"U":12,"\u00da":12,"\u00db":12,"\u00dc":12,"\u00d9":12,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":6,"\u00f8":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"y":9,"\u00fd":9,"\u00ff":9}},{"d":"38,-132v0,70,35,124,96,99r-5,-71r-36,6r-2,-27r65,3r-3,118v-79,31,-141,-21,-141,-114v0,-86,55,-150,135,-117r-11,12v-60,-20,-98,27,-98,91","w":167,"k":{"u":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,"y":3,"\u00fd":3,"\u00ff":3,"a":-2,"\u00e6":-2,"\u00e1":-2,"\u00e2":-2,"\u00e4":-2,"\u00e0":-2,"\u00e5":-2,"\u00e3":-2,"i":-2,"\u00ed":-2,"\u00ee":-2,"\u00ef":-2,"\u00ec":-2}},{"d":"82,3v-20,0,-27,-15,-37,-23r10,89r-31,5r-5,-191v0,-22,-3,-37,-4,-55r18,-5r10,32v6,-19,18,-32,39,-32v41,0,57,45,56,96v-1,42,-10,84,-56,84xm81,-156v-39,7,-39,64,-35,106v2,20,12,32,31,32v32,0,37,-47,37,-80v0,-29,-6,-56,-33,-58","w":151,"k":{",":14,".":12,"w":2,"y":2,"\u00fd":2,"\u00ff":2,"z":3}},{"d":"95,-226v-31,-15,-53,14,-44,52r32,0r3,14r-35,3r-8,152r-20,6r4,-155r-20,5r-3,-23r22,0v-7,-54,22,-100,74,-79","w":82,"k":{"t":-2,",":16,".":12,":":-12,";":-10,")":-28,"]":-28,"}":-28,"i":-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\"":-22,"'":-22}},{"d":"113,-139r5,15r-61,8r-11,90r78,4r2,15r-101,10r3,-244r89,-6r5,28r-72,-5r6,83xm94,-309r27,14r-51,34r-12,-2","w":133,"k":{"V":-4,"W":-4,"t":-7,",":5,"h":4,"v":5,"w":5,"g":5,"p":3,"q":5,"Y":-4,"\u00dd":-4,"d":5,"b":3,"\u00fe":3,"c":5,"\u00e7":5,"e":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"f":3,"\u00df":3,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":-5,"\u00fa":-5,"\u00fb":-5,"\u00fc":-5,"\u00f9":-5,"y":6,"\u00fd":6,"\u00ff":6,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2}},{"d":"33,-89v-5,53,33,83,78,64r7,25v-61,22,-110,-19,-106,-84v3,-49,17,-94,64,-92v45,2,52,48,48,95xm99,-105v8,-53,-49,-73,-59,-21v-1,6,-3,13,-3,19","w":135,"k":{",":8,".":4,"x":2,"d":-5,"c":-5,"\u00e7":-5,"z":2}},{"d":"113,-76r-57,-3r-28,76r-19,3r63,-246r23,7r62,239r-35,3xm60,-93r49,-3r-25,-120v-13,36,-15,83,-24,123xm34,-257v19,-14,28,-38,55,-44r43,43v-25,5,-34,-19,-54,-26v-13,11,-20,27,-44,27","w":165,"k":{"T":23,"V":20,"W":11,"t":4,"G":6,"Q":6,"v":13,"w":10,"g":4,"q":3,"Y":25,"\u00dd":25,"d":4,"C":6,"\u00c7":6,"O":6,"\u00d8":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"b":2,"\u00fe":2,"c":4,"\u00e7":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"f":4,"\u00df":4,"j":2,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"y":9,"\u00fd":9,"\u00ff":9,"z":-4}},{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},{"d":"125,-74v0,60,-54,94,-110,69r-1,-28v33,24,86,8,86,-45v0,-46,-38,-59,-81,-51r18,-105r86,-1r-5,16r-69,11r-5,62v50,-6,81,22,81,72"},{"d":"65,-156r-30,67r40,62r-29,-5r-39,-57r41,-65xm121,-154r-40,58r44,61r-25,7r-39,-63r35,-67","w":129},{"d":"38,-116v0,61,28,117,90,99r6,11v-73,29,-122,-24,-122,-115v0,-82,46,-148,131,-118r-10,27v-62,-23,-95,34,-95,96","w":145,"k":{"\u00ec":2,"r":5,"G":11,"Q":11,"C":11,"\u00c7":11,"O":11,"\u00d8":11,"\u00d3":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u00d5":11,"e":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00e8":8,"o":8,"\u00f8":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"y":13,"\u00fd":13,"\u00ff":13,"z":-4,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"i":2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"l":2}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+370-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("S{lwfYxR,t]gS>*kIY~`D{D]s}xwlY]gs}y`,tMNlZ7rO3R+s5!9-{ZYs5!9-{-3s~iEs5!9-{M*s5!9-{~*s5!9-{MPL*iw-%AElZiw-%AEx{wLIa(9la4LIa(9OaMLIa(9lEALIa(9O3A8s5!9-{-is5!9-{~Ps5!9-{~EX~iw-%A+0~iw-%APOZiw-%A*x*iw-%AExwpLIa(9laMSs5!9-{1Rs5!9-{-es5!9-{~Ys5!9-{D9m*iw-%A+OZiw-%AYl>wLIa(9O}yks5!9-{-}Zwiw-%AP-*iw-%A40>MLIa(9OYyLIa(9la~LIa(9OaZLIa(9Ot~$I3pLIa(9lEILIa(9l{xLIa(9l{lLIa(9l%ILIa(9l%4LIa(9lE4LIa(9OYZLIa(9lYyLIa(9l%~LIa(9l%Z,s5!9-{l4s5!9-{O`s5!9-{ZPs5!9-{Dws5!9-{yE!*iw-%A*-~iw-%A*xwiw-%A*xZiw-%AYx+ALIa(9OaALIa(9lYxLIa(9lE*!s>yKS`$ks5!9-{D3s5!9-{O3IawO0~iw-%AElPw]s5!9-{19zwiw-%AYl*iw-%AP0Ziw-%A*OP*LIa(9layLIa(9Oa*LIa(9O}~As5!9-{Z*s5!9-{M+s5!9-{1},}*LIa(9OaL7f3-p!{MpKRles5!9-{ZEyP4LIa(9lEZLIa(9la*LIa(9OEILIa(9OEM(MZiw-%A4-*iw-%AYx~iw-%AP-3~LIa(9OEPEZ*iw-%A*-3yLIa(9O}M3-~iw-%A4-}LQI%Mcs5!9-{$}s5!9-{D}s5!9-{$is5!9-{Dix`4rZZxLIa(9OYlLIa(9lt~ls5!9-{l*?>e*s5!9-{Oi0N~LX}(8a*iw-%A+-Yp+y}~fs5!9-{yPxNp}sZ~>s5!9-{-ws5!9-{xEa$I9l*iw-%AE0tZLIa(9O3y?xZiw-%A4OP-+XNx9f{*RS>D+SziQKa(rL%w+XN(rf%w9XYi*fYIR,>iNKtDgl+pNf5*9,5-]mhRk,tOcO+pT,3RTs+2G0NIhIw9gSa7cK3cgSw9gL{~rOsQ[fw9gfYi7f{]EOticfhxR?5A4f{~[mY]LXYiTO}~r,(A>%$~{5DySX-x0K1Mza!ZtsOl,fLIm?24+EP*YNcQ8:r|gT9i`3Rw}hep[k7]jG{]3I>PPX}PgI{Z3I>4rf}x4I{*Tf+pcfhxRfY~|lzPQlY]`S%|QK{9kS`|QStIfOw|QsZR]L~|QssRQS>P2")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":144,"face":{"font-family":"Myriad Std Tilt","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 0 0 0 0 0 0 0","ascent":"251","descent":"-109","x-height":"3","cap-height":"3","bbox":"-14 -314.65 232 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+00FF"}}));
var debug=location.host.indexOf(".")==-1;var virtDir=(debug?"/palazzo":"");$(document).ready(function(){var m="nl";if($("body").hasClass("en")){m="en"}for(var e in $.browser){var c=e+$.browser.version.split(".")[0];$("body").addClass(c);break}Cufon.replace("h1, h2, .cufon, #horizontal-menu ul > li a, .homePage #left-col div a, .homePage #right-col div a",{hover:true});var l=$("#fb_choice"),a=l.children("a");if(a.length==2){var b=$("<div id=fb_choice_popup />").hide().append(a).appendTo($("body")).click(function(q){var o=q.srcElement?q.srcElement:q.target;return o.tagName=="A"}),k=a.first().clone().attr("href","#").click(function(q){var r=$(this).offset();b.css({left:r.left+8,top:r.top+8}).show();return false});$($.browser.webkit?window:"body").bind("click.popup",function(q){var o=q.srcElement?q.srcElement:q.target;if($(o).isChildOf(self)||o==self[0]){return}b.hide()});a.each(function(){$(this).text($(this).attr("title"))});l.append(k)}function f(r,t){if(!r){return}var o=r.split("#");if(o.length>1){r=o.slice(1).join("#")}var s=decodeURI(r);t+="=";var v=s.split("&");for(var q=0,u;u=v[q];++q){if(u.indexOf(t)===0){return unescape(u.split("=")[1])}}}function h(q,u){q=q?q:location.href;var t=encodeURIComponent(q);u=encodeURIComponent(u?u:document.title);var s=$("#share").filter(".edge").remove().end();$("<div id=likes />").append('<a href="http://twitter.com/share?url='+t+'" class="twitter-share-button" data-count="horizontal" data-via="">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"><\/script>').append('<iframe class="fb-like" src="http://facebook.com/plugins/like.php?href='+t+'&locale=nl_NL&layout=button_count&show_faces=false&width=100&action=like&colorscheme=light&height=21" scrolling="no" frameborder="0" allowTransparency="allowTransparency"></iframe>').append('<iframe class="hyves-like" src="http://hyves.nl/respect/button?url='+t+'" scrolling="no" frameborder="0" allowTransparency="allowTransparency" ></iframe>').appendTo(s);s.append('<a class="icon digg" href="http://digg.com/submit?url='+t+"&title="+u+'" target="_blank" />').append('<a class="icon delicious" onclick="window.open(\'http://delicious.com/save?v=5&noui&jump=close&url='+t+"&title="+u+"', 'delicious','toolbar=no,resizable=yes,width=550,height=550'); return false;\" href=\"http://delicious.com/save\" target=\"_blank\" />");if(_gaq){var o=0,r=setInterval(function(){try{o++;if(o>30){clearInterval(r)}if(twttr){clearInterval(r);twttr.events.bind("tweet",function(w){if(w){var x;if(w.target&&w.target.nodeName=="IFRAME"){x=f(w.target.src,"url")}_gaq.push(["_trackSocial","twitter","tweet",x])}})}}catch(v){}},100)}}h();var d=$("#vertical-menu li ul");d.closest("li").children("a").append("<span class=icon></span>");$("#vertical-menu span.icon").click(function(){$(this).closest("li").toggleClass("expanded");$("#left-col").css("min-height",$("#vertical-menu *").height());return false});$("#vertical-menu li.selected").addClass("expanded");$("a").externalLink(m=="en"?" (external link)":" (externe link)");var n=$("#news li").hide(),p=n.first().fadeIn();setInterval(function(){p.fadeOut(function(){p=p.next();if(!p.length){p=n.first()}p.fadeIn()})},10000);$(".veel-gestelde-vragen #left-col h3").addClass("js").click(function(){var o=$(this);o.nextUntil("h3").toggle()}).siblings("p").hide();var j=$("#announcements .text").hide(),i=/\s/gi;if(j.text().replace(i,"").length){setTimeout(function(){j.css("background","#000").show().transify({opacityOrig:0.4,opacityNew:0.4,fadeSpeed:200})},$.browser.webkit?100:0)}function g(s){var o=$(this).find("img");if(o.length==0){return}var q=this.youTubePath;var r=this;if(s.type==="mouseenter"){o.attr("src",q+"/1.jpg");o.current=1;r.loopTimer=setInterval(function(){o.current++;if(o.current>3){o.current=1}o.attr("src",q+"/"+o.current+".jpg")},1000)}else{clearInterval(r.loopTimer);r.loopTimer=null;o.attr("src",q+"/default.jpg")}}$(".video-entry .video-link").each(function(){var o=$(this).parents(".video-entry").find("img");var q=o.attr("src").split("/");q.pop();this.youTubePath=q.join("/");this.youTubeId=q.pop()}).click(function(){if(ytplayer==null){return}try{ytplayer.loadVideoByUrl("http://www.youtube.com/v/"+this.youTubeId+"&hl=nl&fs=1&rel=0&ap=%2526fmt%3D22",0)}catch(o){return true}$("h1").text($(this).attr("title"));replaceHeaders();$(".current-video-description").text($(this).parents(".video-entry").find(".video-description").text());return false}).hover(g,g);$(".image-download a").click(function(){window.open($(this).attr("href"),"_blank");return false});if(typeof createSlideShow=="function"){createSlideShow($("#slideshow"),4000)}});function setPalbooTracker(a){$(document).ready(function(){var b=document.getElementById("store");if(b){function c(){var d=_gat._getTrackerByName();b.src=d._getLinkerUrl(a)}if(typeof _gat==="object"){c()}else{if(typeof _gaq==="object"){_gaq.push(c)}else{b.src=a}}}})}Cufon.now();jQuery.fn.extend({externalLink:function(a){this.each(function(){var c=$(this).attr("href");if(c){c=c.toLowerCase();var b=c.indexOf("://");if(b>=0&&c.indexOf(location.host)==-1){$(this).attr("title",$(this).attr("title").length>0?($(this).attr("title")+(a?a:"")):"").attr("target","_blank")}}});return this}});jQuery.extend({postJSON:function(a,b,c){return $.ajax({url:a,type:"POST",contentType:"application/json; charset=utf-8",dataType:"json",data:$.toJSON(b),success:c})}});(function(a){a.fn.transify=function(b){var d={opacityOrig:0.6,fadeSpeed:600},c=a.extend({},d,b);this.each(function(){var f=a(this);f.append('<div class="transify"></div>');var e=f.find(".transify");e.css({backgroundColor:f.css("backgroundColor"),backgroundImage:f.css("backgroundImage"),backgroundRepeat:f.css("backgroundRepeat"),borderTopColor:f.css("borderTopColor"),borderTopWidth:f.css("borderTopWidth"),borderTopStyle:f.css("borderTopStyle"),borderRightColor:f.css("borderRightColor"),borderRightWidth:f.css("borderRightWidth"),borderRightStyle:f.css("borderRightStyle"),borderBottomColor:f.css("borderBottomColor"),borderBottomWidth:f.css("borderBottomWidth"),borderBottomStyle:f.css("borderBottomStyle"),borderLeftColor:f.css("borderLeftColor"),borderLeftWidth:f.css("borderLeftWidth"),borderLeftStyle:f.css("borderLeftStyle"),position:"absolute",top:0,left:0,zIndex:-1,width:f.width()+parseInt(f.css("padding-left"),10)+parseInt(f.css("padding-right"),10),height:f.height()+parseInt(f.css("padding-top"),10)+parseInt(f.css("padding-bottom"),10),opacity:c.opacityOrig});if(c.percentWidth){e.css("width",c.percentWidth)}f.css({zIndex:10,position:"relative",background:"none",border:"none"});if(c.opacityNew){f.hover(function(){e.stop().animate({opacity:c.opacityNew},c.fadeSpeed)},function(){e.stop().animate({opacity:c.opacityOrig},c.fadeSpeed)})}});return this}})(jQuery);function createSlideShow(c,e){if((c==null)||(c==undefined)||(c.length==0)){return}var f=c.children(".slideImages");var a=f.children("img");var b=a.length;if(b==0){return}c.attr("title",a.attr("alt"));if(b==1){return}f.pauseSlideShow=false;f.currentImageIndex=0;f.currentOffset=0;var d=function(){clearTimeout(f.timerId);if(f.pauseSlideShow){f.timerId=setTimeout(d,e);return}if(f.currentImageIndex>=b-1){f.currentImageIndex=-1}var g=$(a[f.currentImageIndex++]);if(f.currentImageIndex===0){f.currentOffset=0}else{f.currentOffset-=g.width()+2}f.animate({left:f.currentOffset+"px"},1000,"swing",function(){f.timerId=setTimeout(d,e);c.attr("title",$(a[f.currentImageIndex]).attr("alt"))})};f.timerId=setTimeout(d,e);c.find(".slideMask").hover(function(){f.pauseSlideShow=true},function(){f.pauseSlideShow=false})};
