(function($){$.extend($.fn,{validate:function(options){if(!this.length){options&&options.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing");return;}
var validator=$.data(this[0],'validator');if(validator){return validator;}
validator=new $.validator(options,this[0]);$.data(this[0],'validator',validator);if(validator.settings.onsubmit){this.find("input, button").filter(".cancel").click(function(){validator.cancelSubmit=true;});if(validator.settings.submitHandler){this.find("input, button").filter(":submit").click(function(){validator.submitButton=this;});}
this.submit(function(event){if(validator.settings.debug)
event.preventDefault();function handle(){if(validator.settings.submitHandler){if(validator.submitButton){var hidden=$("<input type='hidden'/>").attr("name",validator.submitButton.name).val(validator.submitButton.value).appendTo(validator.currentForm);}
validator.settings.submitHandler.call(validator,validator.currentForm);if(validator.submitButton){hidden.remove();}
return false;}
return true;}
if(validator.cancelSubmit){validator.cancelSubmit=false;return handle();}
if(validator.form()){if(validator.pendingRequest){validator.formSubmitted=true;return false;}
return handle();}else{validator.focusInvalid();return false;}});}
return validator;},valid:function(){if($(this[0]).is('form')){return this.validate().form();}else{var valid=true;var validator=$(this[0].form).validate();this.each(function(){valid&=validator.element(this);});return valid;}},removeAttrs:function(attributes){var result={},$element=this;$.each(attributes.split(/\s/),function(index,value){result[value]=$element.attr(value);$element.removeAttr(value);});return result;},rules:function(command,argument){var element=this[0];if(command){var settings=$.data(element.form,'validator').settings;var staticRules=settings.rules;var existingRules=$.validator.staticRules(element);switch(command){case"add":$.extend(existingRules,$.validator.normalizeRule(argument));staticRules[element.name]=existingRules;if(argument.messages)
settings.messages[element.name]=$.extend(settings.messages[element.name],argument.messages);break;case"remove":if(!argument){delete staticRules[element.name];return existingRules;}
var filtered={};$.each(argument.split(/\s/),function(index,method){filtered[method]=existingRules[method];delete existingRules[method];});return filtered;}}
var data=$.validator.normalizeRules($.extend({},$.validator.metadataRules(element),$.validator.classRules(element),$.validator.attributeRules(element),$.validator.staticRules(element)),element);if(data.required){var param=data.required;delete data.required;data=$.extend({required:param},data);}
return data;}});$.extend($.expr[":"],{blank:function(a){return!$.trim(""+a.value);},filled:function(a){return!!$.trim(""+a.value);},unchecked:function(a){return!a.checked;}});$.validator=function(options,form){this.settings=$.extend(true,{},$.validator.defaults,options);this.currentForm=form;this.init();};$.validator.format=function(source,params){if(arguments.length==1)
return function(){var args=$.makeArray(arguments);args.unshift(source);return $.validator.format.apply(this,args);};if(arguments.length>2&&params.constructor!=Array){params=$.makeArray(arguments).slice(1);}
if(params.constructor!=Array){params=[params];}
$.each(params,function(i,n){source=source.replace(new RegExp("\\{"+i+"\\}","g"),n);});return source;};$.extend($.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",validClass:"valid",errorElement:"label",focusInvalid:true,errorContainer:$([]),errorLabelContainer:$([]),onsubmit:true,ignore:[],ignoreTitle:false,onfocusin:function(element){this.lastActive=element;if(this.settings.focusCleanup&&!this.blockFocusCleanup){this.settings.unhighlight&&this.settings.unhighlight.call(this,element,this.settings.errorClass,this.settings.validClass);this.addWrapper(this.errorsFor(element)).hide();}},onfocusout:function(element){if(!this.checkable(element)&&(element.name in this.submitted||!this.optional(element))){this.element(element);}},onkeyup:function(element){if(element.name in this.submitted||element==this.lastElement){this.element(element);}},onclick:function(element){if(element.name in this.submitted)
this.element(element);else if(element.parentNode.name in this.submitted)
this.element(element.parentNode);},highlight:function(element,errorClass,validClass){if(element.type==='radio'){this.findByName(element.name).addClass(errorClass).removeClass(validClass);}else{$(element).addClass(errorClass).removeClass(validClass);}},unhighlight:function(element,errorClass,validClass){if(element.type==='radio'){this.findByName(element.name).removeClass(errorClass).addClass(validClass);}else{$(element).removeClass(errorClass).addClass(validClass);}}},setDefaults:function(settings){$.extend($.validator.defaults,settings);},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:$.validator.format("Please enter no more than {0} characters."),minlength:$.validator.format("Please enter at least {0} characters."),rangelength:$.validator.format("Please enter a value between {0} and {1} characters long."),range:$.validator.format("Please enter a value between {0} and {1}."),max:$.validator.format("Please enter a value less than or equal to {0}."),min:$.validator.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:false,prototype:{init:function(){this.labelContainer=$(this.settings.errorLabelContainer);this.errorContext=this.labelContainer.length&&this.labelContainer||$(this.currentForm);this.containers=$(this.settings.errorContainer).add(this.settings.errorLabelContainer);this.submitted={};this.valueCache={};this.pendingRequest=0;this.pending={};this.invalid={};this.reset();var groups=(this.groups={});$.each(this.settings.groups,function(key,value){$.each(value.split(/\s/),function(index,name){groups[name]=key;});});var rules=this.settings.rules;$.each(rules,function(key,value){rules[key]=$.validator.normalizeRule(value);});function delegate(event){var validator=$.data(this[0].form,"validator"),eventType="on"+event.type.replace(/^validate/,"");validator.settings[eventType]&&validator.settings[eventType].call(validator,this[0]);}
$(this.currentForm).validateDelegate(":text, :password, :file, select, textarea","focusin focusout keyup",delegate).validateDelegate(":radio, :checkbox, select, option","click",delegate);if(this.settings.invalidHandler)
$(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler);},form:function(){this.checkForm();$.extend(this.submitted,this.errorMap);this.invalid=$.extend({},this.errorMap);if(!this.valid())
$(this.currentForm).triggerHandler("invalid-form",[this]);this.showErrors();return this.valid();},checkForm:function(){this.prepareForm();for(var i=0,elements=(this.currentElements=this.elements());elements[i];i++){this.check(elements[i]);}
return this.valid();},element:function(element){element=this.clean(element);this.lastElement=element;this.prepareElement(element);this.currentElements=$(element);var result=this.check(element);if(result){delete this.invalid[element.name];}else{this.invalid[element.name]=true;}
if(!this.numberOfInvalids()){this.toHide=this.toHide.add(this.containers);}
this.showErrors();return result;},showErrors:function(errors){if(errors){$.extend(this.errorMap,errors);this.errorList=[];for(var name in errors){this.errorList.push({message:errors[name],element:this.findByName(name)[0]});}
this.successList=$.grep(this.successList,function(element){return!(element.name in errors);});}
this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors();},resetForm:function(){if($.fn.resetForm)
$(this.currentForm).resetForm();this.submitted={};this.prepareForm();this.hideErrors();this.elements().removeClass(this.settings.errorClass);},numberOfInvalids:function(){return this.objectLength(this.invalid);},objectLength:function(obj){var count=0;for(var i in obj)
count++;return count;},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{$(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus().trigger("focusin");}catch(e){}}},findLastActive:function(){var lastActive=this.lastActive;return lastActive&&$.grep(this.errorList,function(n){return n.element.name==lastActive.name;}).length==1&&lastActive;},elements:function(){var validator=this,rulesCache={};return $(this.currentForm).find("input, select, textarea").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){!this.name&&validator.settings.debug&&window.console&&console.error("%o has no name assigned",this);if(this.name in rulesCache||!validator.objectLength($(this).rules()))
return false;rulesCache[this.name]=true;return true;});},clean:function(selector){return $(selector)[0];},errors:function(){return $(this.settings.errorElement+"."+this.settings.errorClass,this.errorContext);},reset:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=$([]);this.toHide=$([]);this.currentElements=$([]);},prepareForm:function(){this.reset();this.toHide=this.errors().add(this.containers);},prepareElement:function(element){this.reset();this.toHide=this.errorsFor(element);},check:function(element){element=this.clean(element);if(this.checkable(element)){element=this.findByName(element.name).not(this.settings.ignore)[0];}
var rules=$(element).rules();var dependencyMismatch=false;for(var method in rules){var rule={method:method,parameters:rules[method]};try{var result=$.validator.methods[method].call(this,element.value.replace(/\r/g,""),element,rule.parameters);if(result=="dependency-mismatch"){dependencyMismatch=true;continue;}
dependencyMismatch=false;if(result=="pending"){this.toHide=this.toHide.not(this.errorsFor(element));return;}
if(!result){this.formatAndAdd(element,rule);return false;}}catch(e){this.settings.debug&&window.console&&console.log("exception occured when checking element "+element.id
+", check the '"+rule.method+"' method",e);throw e;}}
if(dependencyMismatch)
return;if(this.objectLength(rules))
this.successList.push(element);return true;},customMetaMessage:function(element,method){if(!$.metadata)
return;var meta=this.settings.meta?$(element).metadata()[this.settings.meta]:$(element).metadata();return meta&&meta.messages&&meta.messages[method];},customMessage:function(name,method){var m=this.settings.messages[name];return m&&(m.constructor==String?m:m[method]);},findDefined:function(){for(var i=0;i<arguments.length;i++){if(arguments[i]!==undefined)
return arguments[i];}
return undefined;},defaultMessage:function(element,method){return this.findDefined(this.customMessage(element.name,method),this.customMetaMessage(element,method),!this.settings.ignoreTitle&&element.title||undefined,$.validator.messages[method],"<strong>Warning: No message defined for "+element.name+"</strong>");},formatAndAdd:function(element,rule){var message=this.defaultMessage(element,rule.method),theregex=/\$?\{(\d+)\}/g;if(typeof message=="function"){message=message.call(this,rule.parameters,element);}else if(theregex.test(message)){message=jQuery.format(message.replace(theregex,'{$1}'),rule.parameters);}
this.errorList.push({message:message,element:element});this.errorMap[element.name]=message;this.submitted[element.name]=message;},addWrapper:function(toToggle){if(this.settings.wrapper)
toToggle=toToggle.add(toToggle.parent(this.settings.wrapper));return toToggle;},defaultShowErrors:function(){for(var i=0;this.errorList[i];i++){var error=this.errorList[i];this.settings.highlight&&this.settings.highlight.call(this,error.element,this.settings.errorClass,this.settings.validClass);this.showLabel(error.element,error.message);}
if(this.errorList.length){this.toShow=this.toShow.add(this.containers);}
if(this.settings.success){for(var i=0;this.successList[i];i++){this.showLabel(this.successList[i]);}}
if(this.settings.unhighlight){for(var i=0,elements=this.validElements();elements[i];i++){this.settings.unhighlight.call(this,elements[i],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 $(this.errorList).map(function(){return this.element;});},showLabel:function(element,message){var label=this.errorsFor(element);if(label.length){label.removeClass().addClass(this.settings.errorClass);label.attr("generated")&&label.html(message);}else{label=$("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(element),generated:true}).addClass(this.settings.errorClass).html(message||"");if(this.settings.wrapper){label=label.hide().show().wrap("<"+this.settings.wrapper+"/>").parent();}
if(!this.labelContainer.append(label).length)
this.settings.errorPlacement?this.settings.errorPlacement(label,$(element)):label.insertAfter(element);}
if(!message&&this.settings.success){label.text("");typeof this.settings.success=="string"?label.addClass(this.settings.success):this.settings.success(label);}
this.toShow=this.toShow.add(label);},errorsFor:function(element){var name=this.idOrName(element);return this.errors().filter(function(){return $(this).attr('for')==name;});},idOrName:function(element){return this.groups[element.name]||(this.checkable(element)?element.name:element.id||element.name);},checkable:function(element){return /radio|checkbox/i.test(element.type);},findByName:function(name){var form=this.currentForm;return $(document.getElementsByName(name)).map(function(index,element){return element.form==form&&element.name==name&&element||null;});},getLength:function(value,element){switch(element.nodeName.toLowerCase()){case'select':return $("option:selected",element).length;case'input':if(this.checkable(element))
return this.findByName(element.name).filter(':checked').length;}
return value.length;},depend:function(param,element){return this.dependTypes[typeof param]?this.dependTypes[typeof param](param,element):true;},dependTypes:{"boolean":function(param,element){return param;},"string":function(param,element){return!!$(param,element.form).length;},"function":function(param,element){return param(element);}},optional:function(element){return!$.validator.methods.required.call(this,$.trim(element.value),element)&&"dependency-mismatch";},startRequest:function(element){if(!this.pending[element.name]){this.pendingRequest++;this.pending[element.name]=true;}},stopRequest:function(element,valid){this.pendingRequest--;if(this.pendingRequest<0)
this.pendingRequest=0;delete this.pending[element.name];if(valid&&this.pendingRequest==0&&this.formSubmitted&&this.form()){$(this.currentForm).submit();this.formSubmitted=false;}else if(!valid&&this.pendingRequest==0&&this.formSubmitted){$(this.currentForm).triggerHandler("invalid-form",[this]);this.formSubmitted=false;}},previousValue:function(element){return $.data(element,"previousValue")||$.data(element,"previousValue",{old:null,valid:true,message:this.defaultMessage(element,"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(className,rules){className.constructor==String?this.classRuleSettings[className]=rules:$.extend(this.classRuleSettings,className);},classRules:function(element){var rules={};var classes=$(element).attr('class');classes&&$.each(classes.split(' '),function(){if(this in $.validator.classRuleSettings){$.extend(rules,$.validator.classRuleSettings[this]);}});return rules;},attributeRules:function(element){var rules={};var $element=$(element);for(var method in $.validator.methods){var value=$element.attr(method);if(value){rules[method]=value;}}
if(rules.maxlength&&/-1|2147483647|524288/.test(rules.maxlength)){delete rules.maxlength;}
return rules;},metadataRules:function(element){if(!$.metadata)return{};var meta=$.data(element.form,'validator').settings.meta;return meta?$(element).metadata()[meta]:$(element).metadata();},staticRules:function(element){var rules={};var validator=$.data(element.form,'validator');if(validator.settings.rules){rules=$.validator.normalizeRule(validator.settings.rules[element.name])||{};}
return rules;},normalizeRules:function(rules,element){$.each(rules,function(prop,val){if(val===false){delete rules[prop];return;}
if(val.param||val.depends){var keepRule=true;switch(typeof val.depends){case"string":keepRule=!!$(val.depends,element.form).length;break;case"function":keepRule=val.depends.call(element,element);break;}
if(keepRule){rules[prop]=val.param!==undefined?val.param:true;}else{delete rules[prop];}}});$.each(rules,function(rule,parameter){rules[rule]=$.isFunction(parameter)?parameter(element):parameter;});$.each(['minlength','maxlength','min','max'],function(){if(rules[this]){rules[this]=Number(rules[this]);}});$.each(['rangelength','range'],function(){if(rules[this]){rules[this]=[Number(rules[this][0]),Number(rules[this][1])];}});if($.validator.autoCreateRanges){if(rules.min&&rules.max){rules.range=[rules.min,rules.max];delete rules.min;delete rules.max;}
if(rules.minlength&&rules.maxlength){rules.rangelength=[rules.minlength,rules.maxlength];delete rules.minlength;delete rules.maxlength;}}
if(rules.messages){delete rules.messages;}
return rules;},normalizeRule:function(data){if(typeof data=="string"){var transformed={};$.each(data.split(/\s/),function(){transformed[this]=true;});data=transformed;}
return data;},addMethod:function(name,method,message){$.validator.methods[name]=method;$.validator.messages[name]=message!=undefined?message:$.validator.messages[name];if(method.length<3){$.validator.addClassRules(name,$.validator.normalizeRule(name));}},methods:{required:function(value,element,param){if(!this.depend(param,element))
return"dependency-mismatch";switch(element.nodeName.toLowerCase()){case'select':var val=$(element).val();return val&&val.length>0;case'input':if(this.checkable(element))
return this.getLength(value,element)>0;default:return $.trim(value).length>0;}},remote:function(value,element,param){if(this.optional(element))
return"dependency-mismatch";var previous=this.previousValue(element);if(!this.settings.messages[element.name])
this.settings.messages[element.name]={};previous.originalMessage=this.settings.messages[element.name].remote;this.settings.messages[element.name].remote=previous.message;param=typeof param=="string"&&{url:param}||param;if(this.pending[element.name]){return"pending";}
if(previous.old===value){return previous.valid;}
previous.old=value;var validator=this;this.startRequest(element);var data={};data[element.name]=value;$.ajax($.extend(true,{url:param,mode:"abort",port:"validate"+element.name,dataType:"json",data:data,success:function(response){validator.settings.messages[element.name].remote=previous.originalMessage;var valid=response===true;if(valid){var submitted=validator.formSubmitted;validator.prepareElement(element);validator.formSubmitted=submitted;validator.successList.push(element);validator.showErrors();}else{var errors={};var message=response||validator.defaultMessage(element,"remote");errors[element.name]=previous.message=$.isFunction(message)?message(value):message;validator.showErrors(errors);}
previous.valid=valid;validator.stopRequest(element,valid);}},param));return"pending";},minlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)>=param;},maxlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)<=param;},rangelength:function(value,element,param){var length=this.getLength($.trim(value),element);return this.optional(element)||(length>=param[0]&&length<=param[1]);},min:function(value,element,param){return this.optional(element)||value>=param;},max:function(value,element,param){return this.optional(element)||value<=param;},range:function(value,element,param){return this.optional(element)||(value>=param[0]&&value<=param[1]);},email:function(value,element){return this.optional(element)||/^((([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(value);},url:function(value,element){return this.optional(element)||/^(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(value);},date:function(value,element){return this.optional(element)||!/Invalid|NaN/.test(new Date(value));},dateISO:function(value,element){return this.optional(element)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(value);},number:function(value,element){return this.optional(element)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(value);},digits:function(value,element){return this.optional(element)||/^\d+$/.test(value);},creditcard:function(value,element){if(this.optional(element))
return"dependency-mismatch";if(/[^0-9-]+/.test(value))
return false;var nCheck=0,nDigit=0,bEven=false;value=value.replace(/\D/g,"");for(var n=value.length-1;n>=0;n--){var cDigit=value.charAt(n);var nDigit=parseInt(cDigit,10);if(bEven){if((nDigit*=2)>9)
nDigit-=9;}
nCheck+=nDigit;bEven=!bEven;}
return(nCheck%10)==0;},accept:function(value,element,param){param=typeof param=="string"?param.replace(/,/g,'|'):"png|jpe?g|gif";return this.optional(element)||value.match(new RegExp(".("+param+")$","i"));},equalTo:function(value,element,param){var target=$(param).unbind(".validate-equalTo").bind("blur.validate-equalTo",function(){$(element).valid();});return value==target.val();}}});$.format=$.validator.format;})(jQuery);;(function($){var pendingRequests={};if($.ajaxPrefilter){$.ajaxPrefilter(function(settings,_,xhr){var port=settings.port;if(settings.mode=="abort"){if(pendingRequests[port]){pendingRequests[port].abort();}
pendingRequests[port]=xhr;}});}else{var ajax=$.ajax;$.ajax=function(settings){var mode=("mode"in settings?settings:$.ajaxSettings).mode,port=("port"in settings?settings:$.ajaxSettings).port;if(mode=="abort"){if(pendingRequests[port]){pendingRequests[port].abort();}
return(pendingRequests[port]=ajax.apply(this,arguments));}
return ajax.apply(this,arguments);};}})(jQuery);;(function($){if(!jQuery.event.special.focusin&&!jQuery.event.special.focusout&&document.addEventListener){$.each({focus:'focusin',blur:'focusout'},function(original,fix){$.event.special[fix]={setup:function(){this.addEventListener(original,handler,true);},teardown:function(){this.removeEventListener(original,handler,true);},handler:function(e){arguments[0]=$.event.fix(e);arguments[0].type=fix;return $.event.handle.apply(this,arguments);}};function handler(e){e=$.event.fix(e);e.type=fix;return $.event.handle.call(this,e);}});};$.extend($.fn,{validateDelegate:function(delegate,type,handler){return this.bind(type,function(event){var target=$(event.target);if(target.is(delegate)){return handler.apply(target,arguments);}});}});})(jQuery);
;/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.9994 (28-JUL-2011)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.3.2 or later
 */
;(function($){var ver='2.9994';if($.support==undefined){$.support={opacity:!($.browser.msie)};}
function debug(s){$.fn.cycle.debug&&log(s);}
function log(){window.console&&console.log&&console.log('[cycle] '+Array.prototype.join.call(arguments,' '));}
$.expr[':'].paused=function(el){return el.cyclePause;}
$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!='stop'){if(!$.isReady&&o.s){log('DOM not ready, queuing slideshow');$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}
log('terminating; zero elements found by selector'+($.isReady?'':' (DOM not ready)'));return this;}
return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false)
return;opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout)
clearTimeout(this.cycleTimeout);this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false)
return;if(els.length<2){log('terminating; too few slides: '+els.length);return;}
var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.backwards);if(startTime){startTime+=(opts2.delay||0);if(startTime<10)
startTime=10;debug('first timeout: '+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts.backwards)},startTime);}});};function triggerPause(cont,byHover,onPager){var opts=$(cont).data('cycle.opts');var paused=!!cont.cyclePause;if(paused&&opts.paused)
opts.paused(cont,opts,byHover,onPager);else if(!paused&&opts.resumed)
opts.resumed(cont,opts,byHover,onPager);}
function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined)
cont.cycleStop=0;if(options===undefined||options===null)
options={};if(options.constructor==String){switch(options){case'destroy':case'stop':var opts=$(cont).data('cycle.opts');if(!opts)
return false;cont.cycleStop++;if(cont.cycleTimeout)
clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;opts.elements&&$(opts.elements).stop();$(cont).removeData('cycle.opts');if(options=='destroy')
destroy(opts);return false;case'toggle':cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);triggerPause(cont);return false;case'pause':cont.cyclePause=1;triggerPause(cont);return false;case'resume':cont.cyclePause=0;checkInstantResume(false,arg2,cont);triggerPause(cont);return false;case'prev':case'next':var opts=$(cont).data('cycle.opts');if(!opts){log('options not found, "prev/next" ignored');return false;}
$.fn.cycle[options](opts);return false;default:options={fx:options};};return options;}
else if(options.constructor==Number){var num=options;options=$(cont).data('cycle.opts');if(!options){log('options not found, can not advance slide');return false;}
if(num<0||num>=options.elements.length){log('invalid slide index: '+num);return false;}
options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}
if(typeof arg2=='string')
options.oneTimeFx=arg2;go(options.elements,options,1,num>=options.currSlide);return false;}
return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data('cycle.opts');if(!options){log('options not found, can not resume');return false;}
if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}
go(options.elements,options,1,!options.backwards);}}};function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute('filter');}
catch(smother){}}};function destroy(opts){if(opts.next)
$(opts.next).unbind(opts.prevNextEvent);if(opts.prev)
$(opts.prev).unbind(opts.prevNextEvent);if(opts.pager||opts.pagerAnchorBuilder)
$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});opts.pagerAnchors=null;if(opts.destroy)
opts.destroy(opts);};function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});var meta=$.isFunction($cont.data)?$cont.data(opts.metaAttr):null;if(meta)
opts=$.extend(opts,meta);if(opts.autostop)
opts.countdown=opts.autostopCount||els.length;var cont=$cont[0];$cont.data('cycle.opts',opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];if(!$.support.opacity&&opts.cleartype)
opts.after.push(function(){removeFilter(this,opts);});if(opts.continuous)
opts.after.push(function(){go(els,opts,0,!opts.backwards);});saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg)
clearTypeFix($slides);if($cont.css('position')=='static')
$cont.css('position','relative');if(opts.width)
$cont.width(opts.width);if(opts.height&&opts.height!='auto')
$cont.height(opts.height);if(opts.startingSlide)
opts.startingSlide=parseInt(opts.startingSlide,10);else if(opts.backwards)
opts.startingSlide=els.length-1;if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++)
opts.randomMap.push(i);opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}
else if(opts.startingSlide>=els.length)
opts.startingSlide=0;opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:'absolute',top:0,left:0}).hide().each(function(i){var z;if(opts.backwards)
z=first?i<=first?els.length+(i-first):first-i:els.length-i;else
z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css('z-index',z)});$(els[first]).css('opacity',1).show();removeFilter(els[first],opts);if(opts.fit){if(!opts.aspect){if(opts.width)
$slides.width(opts.width);if(opts.height&&opts.height!='auto')
$slides.height(opts.height);}else{$slides.each(function(){var $slide=$(this);var ratio=(opts.aspect===true)?$slide.width()/$slide.height():opts.aspect;if(opts.width&&$slide.width()!=opts.width){$slide.width(opts.width);$slide.height(opts.width/ratio);}
if(opts.height&&$slide.height()<opts.height){$slide.height(opts.height);$slide.width(opts.height*ratio);}});}}
if(opts.center&&((!opts.fit)||opts.aspect)){$slides.each(function(){var $slide=$(this);$slide.css({"margin-left":opts.width?((opts.width-$slide.width())/2)+"px":0,"margin-top":opts.height?((opts.height-$slide.height())/2)+"px":0});});}
if(opts.center&&!opts.fit&&!opts.slideResize){$slides.each(function(){var $slide=$(this);$slide.css({"margin-left":opts.width?((opts.width-$slide.width())/2)+"px":0,"margin-top":opts.height?((opts.height-$slide.height())/2)+"px":0});});}
var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w)w=e.offsetWidth||e.width||$e.attr('width');if(!h)h=e.offsetHeight||e.height||$e.attr('height');maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}
if(maxw>0&&maxh>0)
$cont.css({width:maxw+'px',height:maxh+'px'});}
var pauseFlag=false;if(opts.pause)
$cont.hover(function(){pauseFlag=true;this.cyclePause++;triggerPause(cont,true);},function(){pauseFlag&&this.cyclePause--;triggerPause(cont,true);});if(supportMultiTransitions(opts)===false)
return false;var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr('height')||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr('width')||0);if($el.is('img')){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts,' - img slide not loaded, requeuing slideshow: ',this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options)},opts.requeueTimeout);requeue=true;return false;}
else{log('could not determine size of image: '+this.src,this.cycleW,this.cycleH);}}}
return true;});if(requeue)
return false;opts.cssBefore=opts.cssBefore||{};opts.cssAfter=opts.cssAfter||{};opts.cssFirst=opts.cssFirst||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(':eq('+first+')').css(opts.cssBefore);$($slides[first]).css(opts.cssFirst);if(opts.timeout){opts.timeout=parseInt(opts.timeout,10);if(opts.speed.constructor==String)
opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed,10);if(!opts.sync)
opts.speed=opts.speed/2;var buffer=opts.fx=='none'?0:opts.fx=='shuffle'?500:250;while((opts.timeout-opts.speed)<buffer)
opts.timeout+=opts.speed;}
if(opts.easing)
opts.easeIn=opts.easeOut=opts.easing;if(!opts.speedIn)
opts.speedIn=opts.speed;if(!opts.speedOut)
opts.speedOut=opts.speed;opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length)
opts.randomIndex=0;opts.nextSlide=opts.randomMap[opts.randomIndex];}
else if(opts.backwards)
opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;else
opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init))
init($cont,$slides,opts);else if(opts.fx!='custom'&&!opts.multiFx){log('unknown transition: '+opts.fx,'; slideshow terminating');return false;}}
var e0=$slides[first];if(!opts.skipInitializationCallbacks){if(opts.before.length)
opts.before[0].apply(e0,[e0,e0,opts,true]);if(opts.after.length)
opts.after[0].apply(e0,[e0,e0,opts,true]);}
if(opts.next)
$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1)});if(opts.prev)
$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0)});if(opts.pager||opts.pagerAnchorBuilder)
buildPager(els,opts);exposeAddSlide(opts,els);return opts;};function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});};function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(',')>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,'').split(',');for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log('discarding unknown transition: ',fx);opts.fxs.splice(i,1);i--;}}
if(!opts.fxs.length){log('No valid transitions named; slideshow terminating.');return false;}}
else if(opts.fx=='all'){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx))
opts.fxs.push(p);}}
if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}
debug('randomized fx sequence: ',opts.fxs);}
return true;};function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount)
opts.countdown++;els[prepend?'unshift':'push'](s);if(opts.els)
opts.els[prepend?'unshift':'push'](s);opts.slideCount=els.length;$s.css('position','absolute');$s[prepend?'prependTo':'appendTo'](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}
if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg)
clearTypeFix($s);if(opts.fit&&opts.width)
$s.width(opts.width);if(opts.fit&&opts.height&&opts.height!='auto')
$s.height(opts.height);s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder)
$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);if($.isFunction(opts.onAddSlide))
opts.onAddSlide($s);else
$s.hide();};}
$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init))
init(opts.$cont,$(opts.elements),opts);};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug('manualTrump in go(), stopping active transition');$(els).stop(true,true);opts.busy=0;}
if(opts.busy){debug('transition active, ignoring new tx request');return;}
var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual)
return;if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end)
opts.end(opts);return;}
var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(fwd&&(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length))
opts.lastFx=0;else if(!fwd&&(opts.lastFx==undefined||--opts.lastFx<0))
opts.lastFx=opts.fxs.length-1;fx=opts.fxs[opts.lastFx];}
if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}
$.fn.cycle.resetState(opts,fx);if(opts.before.length)
$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount)return;o.apply(next,[curr,next,opts,fwd]);});var after=function(){opts.busy=0;$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount)return;o.apply(next,[curr,next,opts,fwd]);});};debug('tx firing('+fx+'); currSlide: '+opts.currSlide+'; nextSlide: '+opts.nextSlide);opts.busy=1;if(opts.fxFn)
opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);else if($.isFunction($.fn.cycle[opts.fx]))
$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);else
$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}
if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length)
opts.randomIndex=0;opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide)
opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}
else if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}
else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}
else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}
else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}
if(changed&&opts.pager)
opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);var ms=0;if(opts.timeout&&!opts.continuous)
ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);else if(opts.continuous&&p.cyclePause)
ms=10;if(ms>0)
p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.backwards)},ms);};$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while(opts.fx!='none'&&(t-opts.speed)<250)
t+=opts.speed;debug('calculated timeout: '+t+'; speed: '+opts.speed);if(t!==false)
return t;}
return opts.timeout;};$.fn.cycle.next=function(opts){advance(opts,1);};$.fn.cycle.prev=function(opts){advance(opts,0);};function advance(opts,moveForward){var val=moveForward?1:-1;var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}
if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2)
opts.randomIndex=els.length-2;else if(opts.randomIndex==-1)
opts.randomIndex=els.length-1;opts.nextSlide=opts.randomMap[opts.randomIndex];}
else if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}
else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap)return false;opts.nextSlide=els.length-1;}
else if(opts.nextSlide>=els.length){if(opts.nowrap)return false;opts.nextSlide=0;}}
var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb))
cb(val>0,opts.nextSlide,els[opts.nextSlide]);go(els,opts,1,moveForward);return false;};function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);};$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug('pagerAnchorBuilder('+i+', el) returned: '+a);}
else
a='<a href="#">'+(i+1)+'</a>';if(!a)
return;var $a=$(a);if($a.parents('body').length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}
else{$a.appendTo($p);}}
opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}
var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb))
cb(opts.nextSlide,els[opts.nextSlide]);go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble)
$a.bind('click.cycle',function(){return false;});var cont=opts.$cont[0];var pauseFlag=false;if(opts.pauseOnPagerHover){$a.hover(function(){pauseFlag=true;cont.cyclePause++;triggerPause(cont,true,true);},function(){pauseFlag&&cont.cyclePause--;triggerPause(cont,true,true);});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd)
hops=c>l?c-l:opts.slideCount-l;else
hops=c<l?l-c:l+opts.slideCount-c;return hops;};function clearTypeFix($slides){debug('applying clearType background-color hack');function hex(s){s=parseInt(s,10).toString(16);return s.length<2?'0'+s:s;};function getBg(e){for(;e&&e.nodeName.toLowerCase()!='html';e=e.parentNode){var v=$.css(e,'background-color');if(v&&v.indexOf('rgb')>=0){var rgb=v.match(/\d+/g);return'#'+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}
if(v&&v!='transparent')
return v;}
return'#ffffff';};$slides.each(function(){$(this).css('background-color',getBg(this));});};$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();if(typeof opts.cssBefore.opacity=='undefined')
opts.cssBefore.opacity=1;opts.cssBefore.display='block';if(opts.slideResize&&w!==false&&next.cycleW>0)
opts.cssBefore.width=next.cycleW;if(opts.slideResize&&h!==false&&next.cycleH>0)
opts.cssBefore.height=next.cycleH;opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display='none';$(curr).css('zIndex',opts.slideCount+(rev===true?1:0));$(next).css('zIndex',opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=='number')
speedIn=speedOut=speedOverride;else
speedIn=speedOut=1;easeIn=easeOut=null;}
var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,function(){cb();});};$l.animate(opts.animOut,speedOut,easeOut,function(){$l.css(opts.cssAfter);if(!opts.sync)
fn();});if(opts.sync)fn();};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(':eq('+opts.currSlide+')').css('opacity',0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={activePagerClass:'activeSlide',after:null,allowPagerClickBubble:false,animIn:null,animOut:null,aspect:false,autostop:0,autostopCount:0,backwards:false,before:null,center:null,cleartype:!$.support.opacity,cleartypeNoBg:false,containerResize:1,continuous:0,cssAfter:null,cssBefore:null,delay:0,easeIn:null,easeOut:null,easing:null,end:null,fastOnEvent:0,fit:0,fx:'fade',fxFn:null,height:'auto',manualTrump:true,metaAttr:'cycle',next:null,nowrap:0,onPagerEvent:null,onPrevNextEvent:null,pager:null,pagerAnchorBuilder:null,pagerEvent:'click.cycle',pause:0,pauseOnPagerHover:0,prev:null,prevNextEvent:'click.cycle',random:0,randomizeEffects:1,requeueOnImageNotLoaded:true,requeueTimeout:250,rev:0,shuffle:null,skipInitializationCallbacks:false,slideExpr:null,slideResize:1,speed:1000,speedIn:null,speedOut:null,startingSlide:0,sync:1,timeout:4000,timeoutFn:null,updateActivePagerLink:null,width:null};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:  2.73
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.fadeout=function($cont,$slides,opts){$slides.not(':eq('+opts.currSlide+')').css({display:'block','opacity':1});opts.before.push(function(curr,next,opts,w,h,rev){$(curr).css('zIndex',opts.slideCount+(!rev===true?1:0));$(next).css('zIndex',opts.slideCount+(!rev===true?0:1));});opts.animIn.opacity=1;opts.animOut.opacity=0;opts.cssBefore.opacity=1;opts.cssBefore.display='block';opts.cssAfter.zIndex=0;};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore.top=h;opts.cssBefore.left=0;opts.cssFirst.top=0;opts.animIn.top=0;opts.animOut.top=-h;};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst.top=0;opts.cssBefore.top=-h;opts.cssBefore.left=0;opts.animIn.top=0;opts.animOut.top=h;};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst.left=0;opts.cssBefore.left=w;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.left=0-w;};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst.left=0;opts.cssBefore.left=-w;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.left=w;};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css('overflow','hidden').width();opts.before.push(function(curr,next,opts,fwd){if(opts.rev)
fwd=!fwd;$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst.left=0;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.top=0;};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css('overflow','hidden');opts.before.push(function(curr,next,opts,fwd){if(opts.rev)
fwd=!fwd;$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst.top=0;opts.cssBefore.left=0;opts.animIn.top=0;opts.animOut.left=0;};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore.left=0;opts.cssBefore.top=0;opts.cssBefore.width=0;opts.animIn.width='show';opts.animOut.width=0;};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore.left=0;opts.cssBefore.top=0;opts.cssBefore.height=0;opts.animIn.height='show';opts.animOut.height=0;};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css('overflow','visible').width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}
opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++)
opts.els.push($slides[i]);for(i=0;i<opts.currSlide;i++)
opts.els.push(opts.els.shift());opts.fxFn=function(curr,next,opts,cb,fwd){if(opts.rev)
fwd=!fwd;var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++)
fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());if(fwd){for(var i=0,len=opts.els.length;i<len;i++)
$(opts.els[i]).css('z-index',len-i+count);}
else{var z=$(curr).css('z-index');$el.css('z-index',parseInt(z,10)+1+count);}
$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb)cb();});});};$.extend(opts.cssBefore,{display:'block',opacity:1,top:0,left:0});};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;opts.animOut.width=next.cycleW;});opts.cssFirst.top=0;opts.cssBefore.left=0;opts.cssBefore.height=0;opts.animIn.top=0;opts.animOut.height=0;};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst.top=0;opts.cssBefore.left=0;opts.cssBefore.top=0;opts.cssBefore.height=0;opts.animOut.height=0;};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore.top=0;opts.cssBefore.width=0;opts.animIn.left=0;opts.animOut.width=0;};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});$.extend(opts.cssBefore,{top:0,left:0,width:0});opts.animIn.left=0;opts.animOut.width=0;};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;$.extend(opts.animIn,{top:0,left:0,width:next.cycleW,height:next.cycleH});$.extend(opts.animOut,{width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2});});opts.cssFirst.top=0;opts.cssFirst.left=0;opts.cssBefore.width=0;opts.cssBefore.height=0;};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;$.extend(opts.animIn,{top:0,left:0,width:next.cycleW,height:next.cycleH});});opts.cssBefore.width=0;opts.cssBefore.height=0;opts.animOut.opacity=0;};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css('overflow','hidden').width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore.left=w;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.left=w;};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css('overflow','hidden').height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore.top=h;opts.cssBefore.left=0;opts.animIn.top=0;opts.animOut.top=h;};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css('overflow','hidden').height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore.top=h;opts.cssBefore.left=w;opts.animIn.top=0;opts.animIn.left=0;opts.animOut.top=h;opts.animOut.left=w;};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn.left=0;opts.animIn.width=this.cycleW;opts.animOut.left=0;});opts.cssBefore.top=0;opts.cssBefore.width=0;};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn.top=0;opts.animIn.height=this.cycleH;opts.animOut.top=0;});opts.cssBefore.height=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn.left=0;opts.animIn.width=this.cycleW;opts.animOut.left=curr.cycleW/2;opts.animOut.width=0;});opts.cssBefore.top=0;opts.cssBefore.width=0;};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn.top=0;opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH/2;opts.animOut.height=0;});opts.cssBefore.height=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||'left';var w=$cont.css('overflow','hidden').width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=='right')
opts.cssBefore.left=-w;else if(d=='up')
opts.cssBefore.top=h;else if(d=='down')
opts.cssBefore.top=-h;else
opts.cssBefore.left=w;});opts.animIn.left=0;opts.animIn.top=0;opts.cssBefore.top=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||'left';var w=$cont.css('overflow','hidden').width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=='right')
opts.animOut.left=w;else if(d=='up')
opts.animOut.top=-h;else if(d=='down')
opts.animOut.top=h;else
opts.animOut.left=-w;});opts.animIn.left=0;opts.animIn.top=0;opts.cssBefore.top=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css('overflow','visible').width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top)
$.extend(opts.animOut,{left:w*2,top:-h/2,opacity:0});else
opts.animOut.opacity=0;});opts.cssBefore.left=0;opts.cssBefore.top=0;opts.animIn.left=0;};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css('overflow','hidden').width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip))
clip='rect(0px 0px '+h+'px 0px)';else if(/r2l/.test(opts.clip))
clip='rect(0px '+w+'px '+h+'px '+w+'px)';else if(/t2b/.test(opts.clip))
clip='rect(0px '+w+'px 0px 0px)';else if(/b2t/.test(opts.clip))
clip='rect('+h+'px '+w+'px '+h+'px 0px)';else if(/zoom/.test(opts.clip)){var top=parseInt(h/2,10);var left=parseInt(w/2,10);clip='rect('+top+'px '+left+'px '+top+'px '+left+'px)';}}
opts.cssBefore.clip=opts.cssBefore.clip||clip||'rect(0px 0px 0px 0px)';var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0],10),r=parseInt(d[1],10),b=parseInt(d[2],10),l=parseInt(d[3],10);opts.before.push(function(curr,next,opts){if(curr==next)return;var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display='block';var step=1,count=parseInt((opts.speedIn/13),10)-1;(function f(){var tt=t?t-parseInt(step*(t/count),10):0;var ll=l?l-parseInt(step*(l/count),10):0;var bb=b<h?b+parseInt(step*((h-b)/count||1),10):h;var rr=r<w?r+parseInt(step*((w-r)/count||1),10):w;$next.css({clip:'rect('+tt+'px '+rr+'px '+bb+'px '+ll+'px)'});(step++<=count)?setTimeout(f,13):$curr.css('display','none');})();});$.extend(opts.cssBefore,{display:'block',opacity:1,top:0,left:0});opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);
;(function($){$.fn.quicksand=function(collection,customOptions){var options={duration:750,easing:'swing',attribute:'data-id',adjustHeight:'auto',useScaling:true,enhancement:function(c){},selector:'> *',dx:0,dy:0};$.extend(options,customOptions);if($.browser.msie||(typeof($.fn.scale)=='undefined')){options.useScaling=false;}
var callbackFunction;if(typeof(arguments[1])=='function'){var callbackFunction=arguments[1];}else if(typeof(arguments[2]=='function')){var callbackFunction=arguments[2];}
return this.each(function(i){var val;var animationQueue=[];var $collection=$(collection).clone();var $sourceParent=$(this);var sourceHeight=$(this).css('height');var destHeight;var adjustHeightOnCallback=false;var offset=$($sourceParent).offset();var offsets=[];var $source=$(this).find(options.selector);if($.browser.msie&&$.browser.version.substr(0,1)<7){$sourceParent.html('').append($collection);return;}
var postCallbackPerformed=0;var postCallback=function(){if(!postCallbackPerformed){postCallbackPerformed=1;$toDelete=$sourceParent.find('> *');$sourceParent.prepend($dest.find('> *'));$toDelete.remove();if(adjustHeightOnCallback){$sourceParent.css('height',destHeight);}
options.enhancement($sourceParent);if(typeof callbackFunction=='function'){callbackFunction.call(this);}}};var $correctionParent=$sourceParent.offsetParent();var correctionOffset=$correctionParent.offset();if($correctionParent.css('position')=='relative'){if($correctionParent.get(0).nodeName.toLowerCase()=='body'){}else{correctionOffset.top+=(parseFloat($correctionParent.css('border-top-width'))||0);correctionOffset.left+=(parseFloat($correctionParent.css('border-left-width'))||0);}}else{correctionOffset.top-=(parseFloat($correctionParent.css('border-top-width'))||0);correctionOffset.left-=(parseFloat($correctionParent.css('border-left-width'))||0);correctionOffset.top-=(parseFloat($correctionParent.css('margin-top'))||0);correctionOffset.left-=(parseFloat($correctionParent.css('margin-left'))||0);}
if(isNaN(correctionOffset.left)){correctionOffset.left=0;}
if(isNaN(correctionOffset.top)){correctionOffset.top=0;}
correctionOffset.left-=options.dx;correctionOffset.top-=options.dy;$sourceParent.css('height',$(this).height());$source.each(function(i){offsets[i]=$(this).offset();});$(this).stop();var dx=0;var dy=0;$source.each(function(i){$(this).stop();var rawObj=$(this).get(0);if(rawObj.style.position=='absolute'){dx=-options.dx;dy=-options.dy;}else{dx=options.dx;dy=options.dy;}
rawObj.style.position='absolute';rawObj.style.margin='0';rawObj.style.top=(offsets[i].top-parseFloat(rawObj.style.marginTop)-correctionOffset.top+dy)+'px';rawObj.style.left=(offsets[i].left-parseFloat(rawObj.style.marginLeft)-correctionOffset.left+dx)+'px';});var $dest=$($sourceParent).clone();var rawDest=$dest.get(0);rawDest.innerHTML='';rawDest.setAttribute('id','');rawDest.style.height='auto';rawDest.style.width=$sourceParent.width()+'px';$dest.append($collection);$dest.insertBefore($sourceParent);$dest.css('opacity',0.0);rawDest.style.zIndex=-1;rawDest.style.margin='0';rawDest.style.position='absolute';rawDest.style.top=offset.top-correctionOffset.top+'px';rawDest.style.left=offset.left-correctionOffset.left+'px';if(options.adjustHeight==='dynamic'){$sourceParent.animate({height:$dest.height()},options.duration,options.easing);}else if(options.adjustHeight==='auto'){destHeight=$dest.height();if(parseFloat(sourceHeight)<parseFloat(destHeight)){$sourceParent.css('height',destHeight);}else{adjustHeightOnCallback=true;}}
$source.each(function(i){var destElement=[];if(typeof(options.attribute)=='function'){val=options.attribute($(this));$collection.each(function(){if(options.attribute(this)==val){destElement=$(this);return false;}});}else{destElement=$collection.filter('['+options.attribute+'='+$(this).attr(options.attribute)+']');}
if(destElement.length){if(!options.useScaling){animationQueue.push({element:$(this),animation:{top:destElement.offset().top-correctionOffset.top,left:destElement.offset().left-correctionOffset.left,opacity:1.0}});}else{animationQueue.push({element:$(this),animation:{top:destElement.offset().top-correctionOffset.top,left:destElement.offset().left-correctionOffset.left,opacity:1.0,scale:'1.0'}});}}else{if(!options.useScaling){animationQueue.push({element:$(this),animation:{opacity:'0.0'}});}else{animationQueue.push({element:$(this),animation:{opacity:'0.0',scale:'0.0'}});}}});$collection.each(function(i){var sourceElement=[];var destElement=[];if(typeof(options.attribute)=='function'){val=options.attribute($(this));$source.each(function(){if(options.attribute(this)==val){sourceElement=$(this);return false;}});$collection.each(function(){if(options.attribute(this)==val){destElement=$(this);return false;}});}else{sourceElement=$source.filter('['+options.attribute+'='+$(this).attr(options.attribute)+']');destElement=$collection.filter('['+options.attribute+'='+$(this).attr(options.attribute)+']');}
var animationOptions;if(sourceElement.length===0){if(!options.useScaling){animationOptions={opacity:'1.0'};}else{animationOptions={opacity:'1.0',scale:'1.0'};}
d=destElement.clone();var rawDestElement=d.get(0);rawDestElement.style.position='absolute';rawDestElement.style.margin='0';rawDestElement.style.top=destElement.offset().top-correctionOffset.top+'px';rawDestElement.style.left=destElement.offset().left-correctionOffset.left+'px';d.css('opacity',0.0);if(options.useScaling){d.css('transform','scale(0.0)');}
d.appendTo($sourceParent);animationQueue.push({element:$(d),animation:animationOptions});}});$dest.remove();options.enhancement($sourceParent);for(i=0;i<animationQueue.length;i++){animationQueue[i].element.animate(animationQueue[i].animation,options.duration,options.easing,postCallback);}});};})(jQuery);
;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:
 *  Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International
 * FontFont release 15
 */
Cufon.registerFont({"w":191,"face":{"font-family":"DIN","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"2","bbox":"-7 -360 351 76.2661","underline-thickness":"25.2","underline-position":"-36.72","stemh":"33","stemv":"37","unicode-range":"U+0020-U+0192"},"glyphs":{" ":{"w":86},"!":{"d":"88,-256r-8,180r-29,0r-7,-180r44,0xm86,0r-40,0r0,-39r40,0r0,39","w":119},"\"":{"d":"132,-188r-37,0r0,-68r37,0r0,68xm64,-188r-36,0r0,-68r36,0r0,68","w":159},"#":{"d":"224,-153r-33,0r-7,44r28,0r0,34r-33,0r-12,75r-38,0r11,-75r-49,0r-11,75r-39,0r12,-75r-29,0r0,-34r34,0r8,-44r-30,0r0,-34r35,0r11,-71r38,0r-11,71r49,0r11,-71r38,0r-11,71r28,0r0,34xm153,-153r-49,0r-8,44r50,0","w":241},"$":{"d":"179,-126v45,44,13,129,-57,127r0,40r-29,0r0,-39v-34,-1,-59,-11,-82,-34r26,-25v17,17,36,23,59,24r0,-80v-46,-4,-76,-25,-77,-70v0,-41,28,-71,74,-75r0,-32r29,0r0,32v28,2,50,11,69,29r-25,24v-13,-12,-29,-18,-47,-19r0,77v25,4,49,9,60,21xm96,-149r0,-75v-35,2,-51,40,-29,63v7,8,18,11,29,12xm119,-33v39,-1,56,-41,33,-66v-9,-10,-21,-9,-33,-11r0,77","w":218},"%":{"d":"282,-83v0,48,-8,86,-50,86v-42,0,-51,-37,-51,-86v0,-31,23,-49,51,-49v28,0,50,18,50,49xm226,-256r-120,256r-30,0r121,-256r29,0xm122,-210v0,49,-8,86,-51,86v-42,0,-50,-37,-50,-86v0,-31,22,-49,50,-49v28,0,51,18,51,49xm232,-22v28,1,23,-33,23,-60v0,-16,-8,-26,-23,-26v-28,0,-23,33,-23,60v0,17,8,26,23,26xm71,-149v28,2,23,-32,23,-59v0,-16,-8,-26,-23,-26v-27,0,-22,34,-22,60v0,17,7,25,22,25","w":303},"&":{"d":"246,0r-47,0r-21,-25v-11,10,-32,27,-71,27v-53,0,-83,-30,-83,-76v0,-36,26,-56,51,-73v-39,-30,-34,-111,36,-111v60,0,82,76,34,102r-19,13r54,65v9,-13,14,-29,14,-52r35,0v-1,33,-9,59,-26,79xm106,-166v15,-10,31,-17,31,-35v0,-14,-11,-25,-26,-25v-36,0,-30,38,-5,60xm156,-51r-61,-72v-19,13,-34,24,-34,48v1,48,64,58,95,24","w":262},"(":{"d":"68,-44v-1,30,10,38,25,53r-25,25v-21,-18,-37,-40,-37,-76r0,-172v-3,-36,16,-58,37,-76r25,25v-16,15,-26,23,-25,53r0,168","w":114},")":{"d":"46,-290v21,19,41,40,38,76v-6,90,25,206,-38,248r-25,-25v15,-15,26,-23,25,-53r0,-168v1,-30,-10,-38,-25,-53","w":114},"*":{"d":"153,-168r-14,24r-40,-25r2,47r-27,0r1,-47r-40,25r-13,-24r41,-22r-41,-22r13,-23r40,24r-1,-46r27,0r-2,46r40,-24r14,23r-42,22","w":174},"+":{"d":"174,-81r-61,0r0,60r-34,0r0,-60r-61,0r0,-34r61,0r0,-60r34,0r0,60r61,0r0,34"},",":{"d":"70,22r-42,34r0,-98r42,0r0,64","w":97},"-":{"d":"129,-83r-105,0r0,-34r105,0r0,34","w":153},".":{"d":"72,0r-44,0r0,-44r44,0r0,44","w":100},"\/":{"d":"138,-283r-103,310r-35,0r103,-310r35,0","w":136},"0":{"d":"170,-71v0,46,-33,73,-74,73v-41,0,-74,-27,-74,-73r0,-114v0,-46,33,-73,74,-73v41,0,74,27,74,73r0,114xm96,-31v59,-2,37,-97,37,-153v0,-25,-14,-42,-37,-42v-59,3,-37,98,-37,154v0,25,14,41,37,41"},"1":{"d":"128,0r-37,0r0,-216r-50,44r0,-41r50,-43r37,0r0,256"},"2":{"d":"172,0r-149,0r0,-33r98,-120v25,-24,16,-74,-23,-73v-19,0,-38,11,-38,40r-37,0v0,-44,31,-72,75,-72v70,0,91,77,50,127r-81,98r105,0r0,33"},"3":{"d":"172,-72v0,49,-35,75,-78,75v-41,0,-78,-22,-79,-72r37,0v1,27,21,38,42,38v24,0,41,-15,41,-42v0,-28,-16,-44,-49,-42r0,-32v31,2,46,-14,45,-39v0,-26,-16,-40,-37,-40v-22,0,-37,14,-39,37r-37,0v2,-44,35,-70,76,-70v72,0,101,99,42,127v22,10,36,28,36,60"},"4":{"d":"179,-39r-27,0r0,39r-36,0r0,-39r-103,0r0,-34r90,-183r40,0r-90,183r63,0r0,-59r36,0r0,59r27,0r0,34"},"5":{"d":"104,-171v49,-2,68,44,68,85v0,49,-22,89,-75,89v-46,0,-73,-29,-74,-69r36,0v3,23,15,35,38,35v30,0,39,-27,39,-55v0,-31,-8,-53,-38,-53v-21,0,-32,10,-36,23r-34,0r0,-140r139,0r0,32r-105,0r0,68v9,-9,23,-15,42,-15"},"6":{"d":"172,-76v0,47,-32,78,-76,78v-72,0,-87,-79,-57,-140r59,-118r39,0r-55,110v48,-16,90,17,90,70xm135,-75v0,-25,-15,-45,-39,-45v-23,0,-39,17,-39,45v0,27,16,44,39,44v23,0,39,-17,39,-44"},"7":{"d":"175,-224r-85,224r-40,0r86,-224r-78,0r0,41r-35,0r0,-73r152,0r0,32"},"8":{"d":"175,-72v0,46,-35,74,-79,74v-44,0,-79,-28,-79,-74v0,-31,17,-49,35,-60v-17,-10,-31,-29,-31,-56v0,-43,33,-70,75,-70v42,0,75,27,75,70v0,27,-14,46,-31,56v18,11,35,29,35,60xm134,-186v0,-22,-16,-40,-38,-40v-22,0,-38,18,-38,40v0,23,16,38,38,38v22,0,38,-15,38,-38xm138,-73v0,-24,-18,-43,-42,-43v-24,0,-42,19,-42,43v0,24,18,42,42,42v24,0,42,-18,42,-42"},"9":{"d":"96,-258v72,0,87,78,57,139r-59,119r-39,0r55,-110v-48,16,-90,-17,-90,-70v0,-47,32,-78,76,-78xm135,-181v0,-27,-16,-45,-39,-45v-23,0,-39,18,-39,45v0,25,15,44,39,44v23,0,39,-16,39,-44"},":":{"d":"81,-103r-44,0r0,-44r44,0r0,44xm81,0r-44,0r0,-44r44,0r0,44","w":109},";":{"d":"81,-103r-44,0r0,-44r44,0r0,44xm80,22r-42,34r0,-98r42,0r0,64","w":109},"<":{"d":"351,-82r-268,0r124,123r-47,0r-141,-141r141,-141r47,0r-124,124r268,0r0,35","w":369},"=":{"d":"174,-118r-156,0r0,-34r156,0r0,34xm174,-48r-156,0r0,-34r156,0r0,34"},">":{"d":"351,-100r-141,141r-47,0r124,-123r-268,0r0,-35r268,0r-124,-124r47,0","w":369},"?":{"d":"97,-258v59,0,95,70,55,113v-12,22,-37,33,-34,69r-37,0v-6,-57,51,-67,51,-114v0,-20,-14,-36,-35,-36v-22,0,-35,18,-35,37r-36,0v0,-41,30,-69,71,-69xm120,0r-41,0r0,-39r41,0r0,39","w":183},"@":{"d":"106,-257v79,0,136,9,136,84r0,174r-35,-1r0,-18v-42,47,-124,10,-109,-66v-13,-77,64,-111,109,-67v9,-65,-31,-74,-97,-74v-30,0,-54,20,-51,52v6,53,-16,127,18,152r-26,25v-46,-28,-24,-111,-28,-177v-3,-53,30,-84,83,-84xm207,-84v0,-31,-7,-56,-37,-56v-30,0,-36,25,-36,56v0,31,6,55,36,55v30,0,37,-24,37,-55","w":264},"A":{"d":"222,0r-41,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0xm152,-85r-39,-113r-40,113r79,0","w":225,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00d5":4,"\u00d6":4,"\u00c7":4,"\u0152":4,"y":8,"v":8,"Y":13,"W":8,"V":13,"T":22,"Q":4,"O":4,"J":-3,"G":4,"C":4}},"B":{"d":"215,-72v2,87,-98,72,-182,72r0,-256r100,0v48,0,78,27,78,70v0,28,-18,47,-35,54v20,8,39,28,39,60xm172,-185v0,-45,-56,-35,-100,-36r0,73v44,0,100,9,100,-37xm176,-74v0,-46,-58,-39,-104,-39r0,78v46,0,104,8,104,-39","w":238,"k":{"J":8}},"C":{"d":"63,-128v0,74,4,95,53,95v28,0,46,-18,52,-44r40,0v-9,51,-46,79,-92,79v-66,0,-92,-50,-92,-130v0,-80,25,-130,92,-130v47,0,83,27,92,78r-40,0v-6,-26,-24,-44,-52,-44v-48,0,-53,23,-53,96","w":226,"k":{"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c0":4,"\u00c5":4,"\u00c4":4,"\u00c6":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":9,"A":4}},"D":{"d":"123,-256v70,-5,93,63,93,126v0,37,1,77,-26,106v-31,33,-97,22,-157,24r0,-256r90,0xm120,-35v49,0,57,-37,57,-95v0,-57,-9,-90,-57,-91r-48,0r0,186r48,0","w":239,"k":{"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c0":4,"\u00c5":4,"\u00c4":4,"\u00c6":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":11,"A":4}},"E":{"d":"197,0r-164,0r0,-256r164,0r0,35r-125,0r0,74r107,0r0,35r-107,0r0,77r125,0r0,35","w":217,"k":{"J":2}},"F":{"d":"197,-221r-125,0r0,78r107,0r0,35r-107,0r0,108r-39,0r0,-256r164,0r0,35","w":210,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00d5":7,"\u00d6":7,"\u00c7":7,"\u0153":13,"\u00f8":13,"\u00e6":13,"\u0152":7,"\u00d8":7,"z":11,"x":11,"u":11,"r":11,"p":11,"o":13,"n":11,"m":11,"e":13,"c":13,"a":13,"S":4,"Q":7,"O":7,"J":47,"G":7,"C":7,"A":22,".":34}},"G":{"d":"116,-33v37,0,60,-29,55,-72r-55,0r0,-34r94,0v10,85,-24,142,-94,141v-66,-2,-92,-50,-92,-130v0,-80,25,-130,92,-130v54,0,87,35,94,79r-40,0v-6,-28,-25,-45,-54,-45v-48,0,-53,23,-53,96v0,74,4,95,53,95","w":233,"k":{"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c0":4,"\u00c5":4,"\u00c4":4,"\u00c6":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":13,"A":4}},"H":{"d":"215,0r-39,0r0,-112r-104,0r0,112r-39,0r0,-256r39,0r0,109r104,0r0,-109r39,0r0,256","w":248},"I":{"d":"72,0r-39,0r0,-256r39,0r0,256","w":105},"J":{"d":"152,-81v4,80,-99,108,-147,58r26,-25v24,29,82,15,82,-36r0,-172r39,0r0,175","w":182,"k":{"A":4}},"K":{"d":"233,0r-45,0r-72,-126r-44,51r0,75r-39,0r0,-256r39,0r0,129r105,-129r48,0r-84,100","w":236,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00d5":4,"\u00d6":4,"\u00c7":4,"\u0152":4,"y":12,"Q":4,"O":4,"J":-3,"G":4,"C":4}},"L":{"d":"196,0r-163,0r0,-256r39,0r0,221r124,0r0,35","w":206,"k":{"\u00d2":11,"\u00d4":11,"\u00d3":11,"\u00d5":11,"\u00d6":11,"\u00c7":8,"\u0152":11,"y":22,"Y":29,"W":14,"V":25,"U":8,"T":29,"Q":11,"O":11,"J":-3,"G":11,"C":11}},"M":{"d":"260,0r-39,0r0,-171r-59,125r-29,0r-61,-125r0,171r-39,0r0,-256r39,0r75,159r74,-159r39,0r0,256","w":292},"N":{"d":"226,0r-35,0r-119,-180r0,180r-39,0r0,-256r36,0r119,180r0,-180r38,0r0,256","w":259},"O":{"d":"116,-258v67,0,101,50,92,130v8,80,-25,130,-92,130v-66,0,-92,-50,-92,-130v0,-80,25,-130,92,-130xm116,-33v47,-9,54,-22,54,-95v0,-74,-7,-86,-54,-96v-47,9,-53,23,-53,96v0,74,6,85,53,95","w":232,"k":{"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c0":4,"\u00c5":4,"\u00c4":4,"\u00c6":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":13,"A":4}},"P":{"d":"213,-179v0,67,-64,86,-141,78r0,101r-39,0r0,-256r98,0v50,0,82,32,82,77xm174,-179v0,-49,-54,-43,-102,-42r0,85v48,1,102,7,102,-43","w":226,"k":{"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c0":18,"\u00e7":4,"\u00c5":18,"\u00c4":18,"\u0153":4,"\u00f8":4,"\u00e6":4,"\u00c6":18,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"J":43,"A":18,".":40}},"Q":{"d":"116,-258v67,0,92,50,92,130v0,44,1,70,-16,93r25,25r-22,22r-25,-26v-77,45,-165,-12,-146,-114v-7,-80,25,-130,92,-130xm63,-128v0,74,6,85,53,95v10,0,19,-3,27,-8r-27,-27r21,-22r25,25v6,-13,8,-30,8,-63v1,-74,-7,-86,-54,-96v-47,9,-53,23,-53,96","w":232},"R":{"d":"220,0r-45,0r-54,-108r-49,0r0,108r-39,0r0,-256r100,0v91,-9,104,129,28,143xm174,-181v0,-47,-55,-41,-102,-40r0,80v47,0,102,7,102,-40","w":235,"k":{"J":6}},"S":{"d":"173,-126v45,51,9,128,-71,128v-39,0,-67,-9,-91,-34r26,-25v28,35,117,35,118,-15v2,-57,-90,-31,-117,-62v-42,-48,-9,-124,67,-124v34,0,58,8,80,29r-25,24v-27,-31,-104,-27,-103,20v1,53,91,31,116,59","w":212,"k":{"Y":7,"S":4,"J":7}},"T":{"d":"191,-221r-71,0r0,221r-39,0r0,-221r-70,0r0,-35r180,0r0,35","w":201,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c1":22,"\u00c2":22,"\u00d5":7,"\u00c3":22,"\u00c0":22,"\u00e7":25,"\u00d6":7,"\u00c7":7,"\u00c5":22,"\u00c4":22,"\u0153":25,"\u00f8":25,"\u00e6":25,"\u0152":7,"\u00d8":7,"\u00c6":22,"z":17,"y":17,"x":17,"w":17,"v":17,"u":17,"s":25,"r":17,"q":25,"p":17,"o":25,"n":17,"m":17,"g":25,"e":25,"d":25,"c":25,"a":25,"Q":7,"O":7,"J":29,"G":7,"C":7,"A":22,".":29}},"U":{"d":"213,-86v0,53,-40,88,-92,88v-52,0,-91,-35,-91,-88r0,-170r38,0r0,168v0,34,21,55,53,55v32,0,54,-21,54,-55r0,-168r38,0r0,170","w":243,"k":{"J":8}},"V":{"d":"201,-256r-85,256r-30,0r-84,-256r40,0r59,186r59,-186r41,0","w":203,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":13,"\u00c2":13,"\u00d5":4,"\u00c3":13,"\u00c0":13,"\u00e7":14,"\u00d6":4,"\u00c7":4,"\u00c5":13,"\u00c4":13,"\u0153":14,"\u00f8":14,"\u00e6":14,"\u0152":4,"\u00d8":4,"\u00c6":13,"z":7,"y":4,"x":7,"u":7,"s":14,"r":7,"q":14,"p":7,"o":14,"n":7,"m":7,"g":14,"e":14,"d":14,"c":14,"a":14,"Q":4,"O":4,"G":4,"C":4,"A":13,".":29}},"W":{"d":"310,-256r-67,256r-34,0r-52,-180r-52,180r-34,0r-67,-256r41,0r45,183r51,-183r31,0r52,183r45,-183r41,0","w":313,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":5,"\u00c2":5,"\u00d5":4,"\u00c3":5,"\u00c0":5,"\u00e7":14,"\u00d6":4,"\u00c7":4,"\u00c5":5,"\u00c4":5,"\u0153":14,"\u00f8":14,"\u00e6":14,"\u0152":4,"\u00d8":4,"\u00c6":5,"s":14,"q":14,"o":14,"g":14,"e":14,"d":14,"c":14,"a":14,"Q":4,"O":4,"G":4,"C":4,"A":5,".":18}},"X":{"d":"204,0r-45,0r-55,-98r-56,98r-44,0r79,-131r-74,-125r44,0r51,91r50,-91r45,0r-74,125","w":208,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00d5":4,"\u00d6":4,"\u00c7":4,"\u0152":4,"y":9,"Q":4,"O":4,"J":-3,"G":4,"C":4}},"Y":{"d":"194,-256r-77,151r0,105r-39,0r0,-105r-76,-151r42,0r54,112r54,-112r42,0","w":195,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":14,"\u00c2":14,"\u00d5":4,"\u00c3":14,"\u00c0":14,"\u00e7":29,"\u00d6":4,"\u00c7":4,"\u00c5":14,"\u00c4":14,"\u0153":29,"\u00f8":29,"\u00e6":29,"\u0152":4,"\u00d8":4,"\u00c6":14,"z":14,"x":14,"u":14,"s":29,"r":14,"q":29,"p":14,"o":29,"n":14,"m":14,"g":29,"e":29,"d":29,"c":29,"a":29,"Q":4,"O":4,"J":14,"G":4,"C":4,"A":14,".":29}},"Z":{"d":"181,0r-164,0r0,-33r119,-188r-114,0r0,-35r159,0r0,31r-119,190r119,0r0,35","w":198},"[":{"d":"109,27r-78,0r0,-310r78,0r0,33r-41,0r0,244r41,0r0,33","w":124},"\\":{"d":"137,27r-35,0r-102,-307r35,0","w":136},"]":{"d":"94,27r-79,0r0,-33r43,0r0,-245r-43,0r0,-32r79,0r0,310","w":124},"^":{"d":"181,-144r-38,0r-40,-75r-41,75r-38,0r62,-115r34,0","w":205},"_":{"d":"206,62r-206,0r0,-25r206,0r0,25","w":205},"a":{"d":"127,-17v-32,36,-118,19,-112,-37v-4,-48,56,-56,112,-52v14,-51,-59,-60,-80,-30r-24,-22v33,-47,140,-33,140,36r0,122r-36,0r0,-17xm85,-28v30,0,47,-16,42,-53v-33,0,-76,-6,-76,27v0,17,11,26,34,26","w":190},"b":{"d":"114,-185v50,-1,65,47,65,94v0,47,-15,96,-66,93v-20,0,-34,-4,-48,-21r0,19r-36,0r0,-256r37,0r0,92v13,-16,29,-21,48,-21xm142,-91v0,-32,-5,-61,-38,-61v-33,0,-38,29,-38,61v0,32,5,60,38,60v33,0,38,-28,38,-60","w":199},"c":{"d":"57,-91v-8,55,47,79,79,43r25,24v-50,50,-141,31,-141,-67v0,-98,90,-118,141,-68r-25,24v-32,-37,-87,-11,-79,44","w":174,"k":{"\u00f5":6,"\u00f6":6,"\u00f4":6,"\u00f2":6,"\u00f3":6,"\u00eb":6,"\u00ea":6,"\u00e8":6,"\u00e9":6,"\u00e5":3,"\u00e3":3,"\u00e4":3,"\u00e2":3,"\u00e0":3,"\u00e1":3,"\u0153":6,"\u00e6":3,"w":7,"o":6,"e":6,"d":4,"c":6,"a":3}},"d":{"d":"21,-91v0,-47,14,-95,64,-94v19,0,35,5,48,21r0,-92r37,0r0,256r-36,0r0,-19v-14,17,-28,21,-48,21v-51,2,-65,-45,-65,-93xm133,-91v0,-32,-5,-61,-38,-61v-33,0,-38,29,-38,61v0,32,5,60,38,60v33,0,38,-28,38,-60","w":199},"e":{"d":"175,-81r-119,0v-5,52,64,66,91,33r23,22v-49,50,-150,39,-150,-65v0,-59,30,-94,77,-94v54,0,82,43,78,104xm138,-106v6,-49,-61,-64,-77,-25v-4,8,-5,14,-5,25r82,0","w":194,"k":{"y":4,"x":4,"w":3,"v":4}},"f":{"d":"108,-151r-36,0r0,151r-37,0r0,-151r-21,0r0,-28r21,0v-6,-53,13,-85,73,-79r0,31v-34,-6,-40,15,-36,48r36,0r0,28","w":118,"k":{"\u00e7":6,"\u0153":6,"\u00e6":6,"o":6,"e":6,"c":6,"a":6,".":18,"*":-7}},"g":{"d":"21,-95v0,-50,15,-90,64,-90v19,0,34,5,48,22r0,-20r35,0r0,182v8,73,-96,102,-142,53r23,-24v25,32,90,14,83,-30r0,-23v-13,16,-28,21,-47,21v-48,0,-64,-41,-64,-91xm132,-95v0,-29,-4,-57,-37,-57v-33,0,-38,28,-38,57v0,29,5,58,38,58v33,0,37,-29,37,-58","w":197},"h":{"d":"176,0r-36,0v-6,-55,21,-152,-37,-152v-58,0,-31,98,-37,152r-37,0r0,-256r37,0r0,92v37,-42,110,-17,110,46r0,118","w":203},"i":{"d":"67,-219r-39,0r0,-38r39,0r0,38xm66,0r-37,0r0,-183r37,0r0,183","w":95},"j":{"d":"67,-219r-39,0r0,-38r39,0r0,38xm66,24v2,35,-28,57,-73,51r0,-32v20,1,36,0,36,-21r0,-205r37,0r0,207","w":95},"k":{"d":"189,0r-45,0r-51,-84r-27,30r0,54r-37,0r0,-256r37,0r0,158r71,-85r44,0r-63,72","w":197,"k":{"\u00f5":5,"\u00f6":5,"\u00f4":5,"\u00f2":5,"\u00f3":5,"\u00eb":5,"\u00ea":5,"\u00e8":5,"\u00e9":5,"\u00e7":5,"\u0153":5,"\u00e6":5,"q":5,"o":5,"g":5,"e":5,"d":5,"c":5}},"l":{"d":"101,0v-45,5,-73,-14,-73,-50r0,-206r37,0r0,203v-2,21,15,24,36,22r0,31","w":111,"k":{"y":10,"w":7,"v":14,"o":7,"e":9,"c":9,"*":22}},"m":{"d":"166,-158v35,-50,122,-26,122,41r0,117r-36,0v-5,-55,21,-152,-37,-152v-20,0,-38,13,-38,39r0,113r-37,0v-6,-54,21,-151,-36,-152v-58,-1,-33,97,-38,152r-37,0r0,-183r36,0r0,19v26,-29,81,-28,101,6","w":315},"n":{"d":"65,-164v38,-43,112,-15,112,47r0,117r-37,0v-6,-54,21,-151,-36,-152v-58,-1,-33,97,-38,152r-37,0r0,-183r36,0r0,19","w":204},"o":{"d":"96,-185v55,0,77,39,77,94v0,55,-22,93,-77,93v-55,0,-75,-38,-75,-93v0,-55,21,-94,75,-94xm96,-31v31,0,40,-28,40,-60v0,-32,-9,-61,-40,-61v-30,0,-39,29,-39,61v0,31,8,60,39,60","w":193,"k":{"y":4,"x":7,"w":3,"v":4}},"p":{"d":"113,-185v50,-1,66,46,66,94v0,46,-14,95,-65,93v-19,0,-35,-5,-48,-21r0,93r-37,0r0,-257r36,0r0,20v14,-17,28,-22,48,-22xm142,-91v0,-32,-5,-61,-38,-61v-33,0,-38,29,-38,61v0,32,5,60,38,60v33,0,38,-28,38,-60","w":199},"q":{"d":"21,-91v0,-48,14,-96,65,-94v20,0,34,5,48,22r0,-20r36,0r0,257r-37,0r0,-93v-13,16,-29,21,-48,21v-50,2,-64,-46,-64,-93xm133,-91v0,-32,-5,-61,-38,-61v-33,0,-38,29,-38,61v0,32,5,60,38,60v33,0,38,-28,38,-60","w":199},"r":{"d":"157,-167r-27,27v-21,-24,-64,-10,-64,29r0,111r-37,0r0,-183r36,0r0,20v17,-25,70,-32,92,-4","w":158,"k":{"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00eb":12,"\u00ea":12,"\u00e8":12,"\u00e9":12,"\u00e7":12,"\u0153":12,"\u00f8":12,"\u00e6":12,"s":4,"q":12,"o":12,"g":12,"e":12,"d":12,"c":12,"a":4,".":43}},"s":{"d":"164,-56v1,67,-111,75,-152,32r24,-24v15,15,34,19,52,19v39,0,59,-44,16,-47v-44,-3,-83,-10,-83,-53v0,-64,98,-70,136,-35r-23,23v-18,-18,-78,-20,-78,10v0,21,33,22,54,24v34,3,54,19,54,51","w":179,"k":{"v":4,"t":4,"s":4}},"t":{"d":"105,0v-44,6,-72,-18,-72,-51r0,-100r-20,0r0,-28r20,0r0,-56r37,0r0,56r35,0r0,28r-35,0r0,98v-1,19,14,24,35,22r0,31","w":123,"k":{"\u00e7":2,"\u0153":2,"\u00e6":2,"o":2,"e":2,"c":2,"a":2}},"u":{"d":"139,-18v-39,43,-112,13,-112,-48r0,-117r37,0v6,55,-21,152,37,152v59,0,33,-97,38,-152r36,0r0,183r-36,0r0,-18","w":204},"v":{"d":"167,-183r-67,183r-30,0r-67,-183r39,0r43,129r43,-129r39,0","w":169,"k":{"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u0153":4,"\u00f8":4,"\u00e6":4,"s":4,"o":4,"e":4,"c":4,"a":4,".":23}},"w":{"d":"265,-183r-57,183r-32,0r-42,-127r-43,127r-32,0r-56,-183r39,0r35,129r43,-129r28,0r42,129r35,-129r40,0","w":267,"k":{"\u00f5":3,"\u00f6":3,"\u00f4":3,"\u00f2":3,"\u00f3":3,"\u00eb":3,"\u00ea":3,"\u00e8":3,"\u00e9":3,"\u00e7":3,"\u0153":3,"\u00f8":3,"\u00e6":3,"o":3,"e":3,"c":3,".":17}},"x":{"d":"173,0r-44,0r-38,-62r-39,62r-44,0r63,-93r-61,-90r45,0r36,60r35,-60r45,0r-60,90","w":181,"k":{"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u0153":7,"\u00f8":7,"\u00e6":7,"o":7,"e":7,"c":7}},"y":{"d":"167,-183r-81,219v-9,28,-30,39,-65,36r0,-33v35,7,37,-25,46,-48r-64,-174r39,0r43,129r43,-129r39,0","w":168,"k":{"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u0153":4,"\u00f8":4,"\u00e6":4,"o":4,"e":4,"c":4,"a":4,".":23}},"z":{"d":"152,0r-137,0r0,-29r91,-121r-85,0r0,-33r131,0r0,30r-92,120r92,0r0,33","w":168},"{":{"d":"66,-128v59,17,-20,138,64,122r0,33v-46,3,-77,-7,-77,-50v0,-39,17,-98,-37,-89r0,-32v82,15,-11,-149,89,-139r25,0r0,33v-26,0,-40,-2,-40,28v0,37,6,90,-24,94","w":146},"|":{"d":"79,27r-37,0r0,-310r37,0r0,310","w":121},"}":{"d":"93,-233v0,39,-16,97,37,89r0,32v-81,-13,9,147,-88,139r-26,0r0,-33v27,0,41,2,41,-28v0,-37,-6,-90,24,-94v-30,-4,-25,-57,-24,-94v1,-30,-14,-28,-41,-28r0,-33v46,-3,77,6,77,50","w":146},"~":{"d":"15,-100v38,-49,76,-20,122,-8v10,0,17,-2,31,-16r23,23v-38,49,-75,19,-122,8v-10,0,-16,2,-30,16","w":206},"\u00a1":{"d":"74,-143r-41,0r0,-40r41,0r0,40xm76,74r-45,0r8,-180r29,0","w":119},"\u00a2":{"d":"165,-66v-15,16,-30,23,-51,26r0,40r-28,0r0,-40v-39,-6,-66,-38,-66,-92v0,-54,27,-86,66,-92r0,-32r28,0r0,32v21,3,36,11,51,27r-24,23v-9,-10,-18,-15,-30,-17r0,118v12,-2,21,-7,30,-17xm89,-190v-44,7,-43,111,0,117r0,-117","w":179},"\u00a3":{"d":"186,0r-148,0r0,-113r-23,0r0,-28r23,0v-20,-102,82,-150,148,-93r-26,26v-24,-30,-90,-16,-83,36r0,31r46,0r0,28r-46,0r0,78r109,0r0,35","w":203},"\u00a5":{"d":"194,-256r-53,104r31,0r0,28r-45,0v-6,10,-12,19,-10,37r55,0r0,28r-55,0r0,59r-39,0r0,-59r-55,0r0,-28r55,0v2,-17,-4,-27,-9,-37r-46,0r0,-28r32,0r-53,-104r42,0r54,113r54,-113r42,0","w":195},"\u0192":{"d":"139,-227v-24,-1,-41,0,-45,21r-12,65r36,0r0,28r-41,0r-33,187r-36,0r32,-187r-29,0r0,-28r34,0v10,-59,11,-128,94,-117r0,31","w":149},"\u00a7":{"d":"119,-162v61,11,64,104,16,123v18,8,32,24,32,51v2,82,-137,87,-139,3r36,0v1,18,14,28,34,28v42,1,45,-54,5,-62v-42,-9,-76,-27,-76,-74v0,-28,18,-48,35,-56v-52,-22,-35,-109,36,-109v42,0,67,24,68,59r-35,0v-1,-19,-15,-27,-33,-27v-20,0,-31,9,-31,27v0,25,31,33,52,37xm98,-55v22,-2,36,-14,36,-39v0,-23,-13,-39,-36,-39v-23,0,-35,14,-35,39v0,25,13,36,35,39","w":195},"\u00a4":{"d":"215,-29r-24,24r-27,-27v-25,19,-64,18,-89,0r-26,27r-25,-24r27,-27v-19,-25,-18,-64,0,-89r-27,-26r25,-24r26,26v25,-18,64,-19,89,0r27,-26r24,24r-27,26v18,25,19,64,0,89xm168,-100v0,-27,-21,-49,-48,-49v-27,0,-49,22,-49,49v0,27,22,49,49,49v27,0,48,-22,48,-49","w":239},"'":{"d":"64,-188r-36,0r0,-68r36,0r0,68","w":92},"\u00ab":{"d":"187,-15r-83,-83r83,-82r0,44r-39,38r39,39r0,44xm96,-15r-83,-83r83,-82r0,44r-38,38r38,39r0,44","w":213},"\u00b7":{"d":"72,-78r-44,0r0,-44r44,0r0,44","w":100},"\u00b6":{"d":"196,74r-37,0r0,-295r-39,0r0,295r-36,0r0,-188v-40,0,-70,-33,-70,-71v0,-43,32,-71,81,-71r101,0r0,330","w":229},"\u00bb":{"d":"200,-98r-83,83r0,-44r39,-39r-39,-38r0,-44xm109,-98r-83,83r0,-44r39,-39r-39,-38r0,-44","w":213},"\u00bf":{"d":"105,-143r-41,0r0,-40r41,0r0,40xm158,7v0,41,-31,69,-72,69v-58,0,-93,-70,-54,-113v12,-22,36,-34,34,-70r37,0v5,55,-52,68,-52,114v0,20,14,36,35,36v22,0,36,-17,36,-36r36,0","w":183},"`":{"d":"109,-216r-28,0r-40,-58r41,0","w":180},"\u00b4":{"d":"139,-274r-40,58r-28,0r27,-58r41,0","w":180},"\u00af":{"d":"146,-224r-112,0r0,-26r112,0r0,26","w":180},"\u00a8":{"d":"145,-217r-33,0r0,-39r33,0r0,39xm68,-217r-33,0r0,-39r33,0r0,39","w":180},"\u00b8":{"d":"115,23r-19,53r-36,0r25,-53r30,0","w":180},"\u00c6":{"d":"323,0r-164,0r0,-58r-84,0r-31,58r-42,0r134,-256r187,0r0,35r-125,0r0,75r107,0r0,35r-107,0r0,76r125,0r0,35xm159,-91r0,-130r-68,130r68,0","w":342},"\u00aa":{"d":"107,-123v-25,27,-94,15,-88,-30v-3,-38,43,-46,88,-42v11,-41,-47,-47,-63,-23r-20,-19v27,-37,112,-27,112,29r0,97r-29,0r0,-12xm73,-134v25,0,37,-12,34,-41v-25,0,-59,-4,-59,21v0,13,7,20,25,20","w":162},"\u0141":{"d":"201,0r-162,0r0,-96r-25,16r0,-33r25,-16r0,-127r38,0r0,103r51,-32r0,32r-51,32r0,86r124,0r0,35","w":211},"\u00d8":{"d":"181,-233v28,23,27,55,27,105v0,98,-53,153,-135,120r-11,24r-29,0r18,-39v-26,-24,-27,-55,-27,-105v0,-97,52,-152,135,-121r11,-23r30,0xm116,-224v-48,0,-54,23,-53,96v0,38,2,56,8,68r74,-156v-8,-5,-18,-8,-29,-8xm116,-33v47,0,55,-22,54,-95v0,-38,-2,-57,-8,-69r-74,156v8,5,17,8,28,8","w":234},"\u0152":{"d":"24,-128v-7,-79,24,-129,92,-130v21,0,40,7,54,23r0,-21r162,0r0,34r-124,0r0,76r105,0r0,34r-105,0r0,77r124,0r0,35r-162,0r0,-21v-69,60,-167,-4,-146,-107xm116,-33v47,-9,54,-22,54,-95v0,-74,-7,-86,-54,-96v-47,9,-53,23,-53,96v0,74,6,85,53,95","w":351},"\u00ba":{"d":"82,-258v43,0,61,31,61,74v0,45,-16,75,-61,75v-44,0,-60,-31,-60,-75v0,-43,17,-74,60,-74xm82,-136v26,0,31,-23,31,-48v0,-25,-6,-47,-31,-47v-24,0,-30,23,-30,47v0,24,5,48,30,48","w":164},"\u00e6":{"d":"144,-26v-33,47,-129,36,-129,-28v0,-49,56,-56,112,-52v14,-51,-59,-60,-80,-30r-24,-22v23,-37,105,-35,127,-3v50,-54,148,-10,132,80r-119,0v-5,52,64,66,91,33r23,22v-29,36,-104,39,-133,0xm245,-106v6,-49,-61,-64,-77,-25v-4,8,-5,14,-5,25r82,0xm85,-28v30,0,47,-16,42,-53v-33,0,-76,-6,-76,27v0,17,11,26,34,26","w":301},"\u0131":{"d":"66,0r-37,0r0,-183r37,0r0,183","w":95},"\u0142":{"d":"106,0v-45,5,-73,-14,-73,-50r0,-66r-21,13r0,-31r21,-13r0,-109r37,0r0,87r25,-16r0,31r-25,16r0,85v-2,21,15,24,36,22r0,31","w":117},"\u00f8":{"d":"42,-20v-40,-51,-28,-165,54,-165v15,0,28,4,38,9r14,-22r24,0r-21,35v41,50,29,165,-55,165v-15,0,-27,-4,-37,-9r-13,23r-25,0xm118,-146v-52,-28,-75,43,-55,94xm75,-37v52,28,74,-41,56,-94","w":193},"\u0153":{"d":"21,-91v0,-55,21,-92,75,-94v27,0,48,11,60,29v45,-62,153,-18,135,75r-119,0v-5,52,64,66,91,33r23,22v-29,36,-104,39,-131,-1v-12,18,-33,29,-59,29v-55,-1,-75,-38,-75,-93xm254,-106v6,-49,-61,-64,-77,-25v-4,8,-5,14,-5,25r82,0xm96,-31v31,0,40,-28,40,-60v0,-32,-9,-61,-40,-61v-30,0,-39,29,-39,61v0,31,8,60,39,60","w":310},"\u00df":{"d":"143,-196v0,-21,-14,-31,-38,-30v-28,0,-39,15,-39,40r0,186r-37,0r0,-188v0,-48,32,-71,77,-71v63,0,99,71,52,103v31,11,20,61,22,101v1,43,-28,59,-75,55r0,-31v49,9,37,-42,38,-83v1,-23,-15,-27,-38,-26r0,-29v23,2,38,-4,38,-27","w":203},"\u00d0":{"d":"130,-256v65,4,100,44,92,128v14,127,-66,132,-182,128r0,-114r-26,0r0,-30r26,0r0,-112r90,0xm79,-35v75,-1,104,5,104,-92v0,-93,-27,-96,-104,-95r0,78r50,0r0,30r-50,0r0,79","w":246},"\u00f0":{"d":"22,-90v0,-56,27,-97,86,-88r-16,-29r-42,0r0,-26r28,0r-14,-25r39,0r14,25r31,0r0,26r-18,0v18,33,41,74,41,117v0,53,-22,92,-75,92v-53,0,-74,-39,-74,-92xm96,-31v31,1,39,-28,39,-59v0,-32,-9,-59,-39,-59v-29,0,-37,28,-37,59v0,30,7,59,37,59","w":193},"\u0160":{"d":"173,-126v45,51,9,128,-71,128v-39,0,-67,-9,-91,-34r26,-25v28,35,117,35,118,-15v2,-57,-90,-31,-117,-62v-42,-48,-9,-124,67,-124v34,0,58,8,80,29r-25,24v-27,-31,-104,-27,-103,20v1,53,91,31,116,59xm167,-339r-46,58r-31,0r-47,-58r31,0r31,35r31,-35r31,0","w":212},"\u0161":{"d":"164,-56v1,67,-111,75,-152,32r24,-24v15,15,34,19,52,19v39,0,59,-44,16,-47v-44,-3,-83,-10,-83,-53v0,-64,98,-70,136,-35r-23,23v-18,-18,-78,-20,-78,10v0,21,33,22,54,24v34,3,54,19,54,51xm151,-274r-46,58r-31,0r-47,-58r31,0r31,35r32,-35r30,0","w":179},"\u00dd":{"d":"194,-256r-77,151r0,105r-39,0r0,-105r-76,-151r42,0r54,112r54,-112r42,0xm147,-339r-40,58r-28,0r27,-58r41,0","w":195},"\u00fd":{"d":"167,-183r-81,219v-9,28,-30,39,-65,36r0,-33v35,7,37,-25,46,-48r-64,-174r39,0r43,129r43,-129r39,0xm133,-274r-40,58r-27,0r27,-58r40,0","w":168},"\u00de":{"d":"213,-129v0,67,-64,85,-141,77r0,52r-39,0r0,-256r39,0r0,49v77,-7,141,10,141,78xm174,-129v0,-49,-53,-44,-102,-43r0,85v48,1,102,7,102,-42","w":229},"\u00fe":{"d":"114,-185v50,-1,65,47,65,94v0,46,-14,95,-65,93v-19,0,-35,-5,-48,-21r0,93r-37,0r0,-330r37,0r0,92v13,-16,29,-21,48,-21xm142,-91v0,-32,-5,-61,-38,-61v-33,0,-38,29,-38,61v0,32,5,60,38,60v33,0,38,-28,38,-60","w":199},"\u017d":{"d":"181,0r-164,0r0,-33r119,-188r-114,0r0,-35r159,0r0,31r-119,190r119,0r0,35xm163,-339r-46,58r-31,0r-47,-58r31,0r31,35r31,-35r31,0","w":198},"\u017e":{"d":"152,0r-137,0r0,-29r91,-121r-85,0r0,-33r131,0r0,30r-92,120r92,0r0,33xm148,-274r-46,58r-31,0r-47,-58r31,0r31,35r31,-35r31,0","w":168},"\u00bd":{"d":"282,0r-94,0r0,-25r58,-67v14,-13,10,-38,-11,-38v-10,0,-19,4,-19,19r-28,0v0,-28,20,-44,47,-44v45,0,57,49,30,80r-44,50r61,0r0,25xm212,-256r-121,256r-29,0r121,-256r29,0xm73,-103r-27,0r0,-122r-32,27r0,-31r32,-27r27,0r0,153","w":297},"\u00bc":{"d":"276,-22r-14,0r0,22r-27,0r0,-22r-62,0r0,-26r53,-106r30,0r-53,106r32,0r0,-29r27,0r0,29r14,0r0,26xm215,-256r-121,256r-29,0r120,-256r30,0xm73,-103r-27,0r0,-122r-32,27r0,-31r32,-27r27,0r0,153","w":290},"\u00b9":{"d":"73,-103r-27,0r0,-122r-32,27r0,-31r32,-27r27,0r0,153","w":99},"\u00be":{"d":"289,-22r-14,0r0,22r-26,0r0,-22r-63,0r0,-26r53,-106r30,0r-53,106r33,0r0,-29r26,0r0,29r14,0r0,26xm230,-256r-121,256r-29,0r121,-256r29,0xm94,-182v37,16,16,90,-28,81v-25,0,-50,-13,-50,-45r28,0v0,14,11,20,22,20v12,0,20,-8,20,-22v0,-14,-10,-22,-26,-21r0,-24v16,1,25,-8,25,-20v0,-26,-39,-27,-39,-1r-28,0v1,-27,21,-44,47,-44v44,0,63,59,29,76","w":303},"\u00b3":{"d":"94,-182v37,16,16,90,-28,81v-25,0,-50,-13,-50,-45r28,0v0,14,11,20,22,20v12,0,20,-8,20,-22v0,-14,-10,-22,-26,-21r0,-24v16,1,25,-8,25,-20v0,-26,-39,-27,-39,-1r-28,0v1,-27,21,-44,47,-44v44,0,63,59,29,76","w":130},"\u00b2":{"d":"110,-103r-94,0r0,-24r58,-67v14,-13,10,-39,-11,-39v-10,0,-19,5,-19,20r-28,0v0,-28,20,-45,47,-45v44,0,63,55,30,80r-43,51r60,0r0,24","w":126},"\u00a6":{"d":"79,-157r-37,0r0,-126r37,0r0,126xm79,27r-37,0r0,-126r37,0r0,126","w":123},"\u00d7":{"d":"171,-48r-23,23r-52,-52r-52,52r-23,-23r52,-52r-52,-53r23,-23r52,53r52,-53r23,23r-52,53"},"\u00c4":{"d":"222,0r-41,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0xm152,-85r-39,-113r-40,113r79,0xm167,-283r-33,0r0,-39r33,0r0,39xm89,-283r-33,0r0,-39r33,0r0,39","w":225,"k":{"\u0152":4,"y":8,"v":8,"Y":13,"W":8,"V":13,"T":22,"Q":4,"O":4,"G":4,"C":4}},"\u00c5":{"d":"222,0r-41,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0xm152,-85r-39,-113r-40,113r79,0xm157,-315v0,25,-20,45,-45,45v-25,0,-45,-20,-45,-45v0,-25,20,-45,45,-45v25,0,45,20,45,45xm135,-315v0,-13,-10,-23,-23,-23v-13,0,-23,10,-23,23v0,13,10,23,23,23v13,0,23,-10,23,-23","w":225,"k":{"\u0152":2,"y":8,"v":8,"Y":13,"W":8,"V":13,"T":22,"Q":4,"O":4,"G":4,"C":4}},"\u00c7":{"d":"63,-128v0,74,4,95,53,95v28,0,46,-18,52,-44r40,0v-9,51,-46,79,-92,79v-66,0,-92,-50,-92,-130v0,-80,25,-130,92,-130v47,0,83,27,92,78r-40,0v-6,-26,-24,-44,-52,-44v-48,0,-53,23,-53,96xm135,23r-19,53r-36,0r25,-53r30,0","w":226,"k":{"\u00c6":2,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":8,"A":4}},"\u00c9":{"d":"197,0r-164,0r0,-256r164,0r0,35r-125,0r0,74r107,0r0,35r-107,0r0,77r125,0r0,35xm161,-339r-40,58r-28,0r27,-58r41,0","w":217},"\u00d1":{"d":"226,0r-35,0r-119,-180r0,180r-39,0r0,-256r36,0r119,180r0,-180r38,0r0,256xm68,-307v36,-52,70,19,106,-16r17,17v-36,50,-70,-16,-106,16","w":259},"\u00d6":{"d":"116,-258v67,0,101,50,92,130v8,80,-25,130,-92,130v-66,0,-92,-50,-92,-130v0,-80,25,-130,92,-130xm116,-33v47,-9,54,-22,54,-95v0,-74,-7,-86,-54,-96v-47,9,-53,23,-53,96v0,74,6,85,53,95xm172,-283r-33,0r0,-39r33,0r0,39xm94,-283r-33,0r0,-39r33,0r0,39","w":232,"k":{"\u00c6":2,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":8,"A":4}},"\u00dc":{"d":"213,-86v0,53,-40,88,-92,88v-52,0,-91,-35,-91,-88r0,-170r38,0r0,168v0,34,21,55,53,55v32,0,54,-21,54,-55r0,-168r38,0r0,170xm177,-283r-33,0r0,-39r33,0r0,39xm99,-283r-33,0r0,-39r33,0r0,39","w":243},"\u00e1":{"d":"127,-17v-32,36,-118,19,-112,-37v-4,-48,56,-56,112,-52v14,-51,-59,-60,-80,-30r-24,-22v33,-47,140,-33,140,36r0,122r-36,0r0,-17xm85,-28v30,0,47,-16,42,-53v-33,0,-76,-6,-76,27v0,17,11,26,34,26xm141,-274r-39,58r-28,0r27,-58r40,0","w":190},"\u00e0":{"d":"127,-17v-32,36,-118,19,-112,-37v-4,-48,56,-56,112,-52v14,-51,-59,-60,-80,-30r-24,-22v33,-47,140,-33,140,36r0,122r-36,0r0,-17xm85,-28v30,0,47,-16,42,-53v-33,0,-76,-6,-76,27v0,17,11,26,34,26xm111,-216r-27,0r-40,-58r40,0","w":190},"\u00e2":{"d":"127,-17v-32,36,-118,19,-112,-37v-4,-48,56,-56,112,-52v14,-51,-59,-60,-80,-30r-24,-22v33,-47,140,-33,140,36r0,122r-36,0r0,-17xm85,-28v30,0,47,-16,42,-53v-33,0,-76,-6,-76,27v0,17,11,26,34,26xm154,-216r-30,0r-31,-35r-32,35r-30,0r46,-58r31,0","w":190},"\u00e4":{"d":"127,-17v-32,36,-118,19,-112,-37v-4,-48,56,-56,112,-52v14,-51,-59,-60,-80,-30r-24,-22v33,-47,140,-33,140,36r0,122r-36,0r0,-17xm85,-28v30,0,47,-16,42,-53v-33,0,-76,-6,-76,27v0,17,11,26,34,26xm148,-217r-33,0r0,-39r33,0r0,39xm70,-217r-33,0r0,-39r33,0r0,39","w":190},"\u00e3":{"d":"127,-17v-32,36,-118,19,-112,-37v-4,-48,56,-56,112,-52v14,-51,-59,-60,-80,-30r-24,-22v33,-47,140,-33,140,36r0,122r-36,0r0,-17xm85,-28v30,0,47,-16,42,-53v-33,0,-76,-6,-76,27v0,17,11,26,34,26xm31,-242v36,-50,70,18,105,-15r17,17v-35,50,-68,-16,-105,15","w":190},"\u00e5":{"d":"127,-17v-32,36,-118,19,-112,-37v-4,-48,56,-56,112,-52v14,-51,-59,-60,-80,-30r-24,-22v33,-47,140,-33,140,36r0,122r-36,0r0,-17xm85,-28v30,0,47,-16,42,-53v-33,0,-76,-6,-76,27v0,17,11,26,34,26xm138,-252v0,25,-20,45,-45,45v-25,0,-45,-20,-45,-45v0,-25,20,-45,45,-45v25,0,45,20,45,45xm116,-252v0,-13,-10,-23,-23,-23v-13,0,-24,10,-24,23v0,13,11,22,24,22v13,0,23,-9,23,-22","w":190},"\u00e7":{"d":"57,-91v-8,55,47,79,79,43r25,24v-50,50,-141,31,-141,-67v0,-98,90,-118,141,-68r-25,24v-32,-37,-87,-11,-79,44xm115,23r-19,53r-36,0r25,-53r30,0","w":175,"k":{"\u0153":6,"\u00e6":3,"o":6,"e":6,"c":3,"a":3}},"\u00e9":{"d":"175,-81r-119,0v-5,52,64,66,91,33r23,22v-49,50,-150,39,-150,-65v0,-59,30,-94,77,-94v54,0,82,43,78,104xm138,-106v6,-49,-61,-64,-77,-25v-4,8,-5,14,-5,25r82,0xm147,-274r-40,58r-27,0r27,-58r40,0","w":194,"k":{"y":4,"x":4,"w":3,"v":4}},"\u00e8":{"d":"175,-81r-119,0v-5,52,64,66,91,33r23,22v-49,50,-150,39,-150,-65v0,-59,30,-94,77,-94v54,0,82,43,78,104xm138,-106v6,-49,-61,-64,-77,-25v-4,8,-5,14,-5,25r82,0xm117,-216r-28,0r-40,-58r41,0","w":194,"k":{"y":4,"x":4,"w":3,"v":4}},"\u00ea":{"d":"175,-81r-119,0v-5,52,64,66,91,33r23,22v-49,50,-150,39,-150,-65v0,-59,30,-94,77,-94v54,0,82,43,78,104xm138,-106v6,-49,-61,-64,-77,-25v-4,8,-5,14,-5,25r82,0xm160,-216r-30,0r-32,-35r-31,35r-31,0r47,-58r31,0","w":194,"k":{"y":4,"x":4,"w":3,"v":4}},"\u00eb":{"d":"175,-81r-119,0v-5,52,64,66,91,33r23,22v-49,50,-150,39,-150,-65v0,-59,30,-94,77,-94v54,0,82,43,78,104xm138,-106v6,-49,-61,-64,-77,-25v-4,8,-5,14,-5,25r82,0xm154,-217r-33,0r0,-39r33,0r0,39xm76,-217r-33,0r0,-39r33,0r0,39","w":194,"k":{"y":4,"x":4,"w":3,"v":4}},"\u00ed":{"d":"66,0r-37,0r0,-183r37,0r0,183xm97,-274r-40,58r-28,0r27,-58r41,0","w":95},"\u00ec":{"d":"66,0r-37,0r0,-183r37,0r0,183xm97,-216r-28,0r-40,-58r41,0","w":95},"\u00ee":{"d":"66,0r-37,0r0,-183r37,0r0,183xm153,-216r-31,0r-31,-35r-31,35r-31,0r47,-58r31,0","w":95},"\u00ef":{"d":"66,0r-37,0r0,-183r37,0r0,183xm140,-217r-33,0r0,-39r33,0r0,39xm62,-217r-33,0r0,-39r33,0r0,39","w":95},"\u00f1":{"d":"65,-164v38,-43,112,-15,112,47r0,117r-37,0v-6,-54,21,-151,-36,-152v-58,-1,-33,97,-38,152r-37,0r0,-183r36,0r0,19xm41,-242v36,-50,71,18,106,-15r17,17v-35,50,-68,-16,-105,15","w":204},"\u00f3":{"d":"96,-185v55,0,77,39,77,94v0,55,-22,93,-77,93v-55,0,-75,-38,-75,-93v0,-55,21,-94,75,-94xm96,-31v31,0,40,-28,40,-60v0,-32,-9,-61,-40,-61v-30,0,-39,29,-39,61v0,31,8,60,39,60xm145,-274r-40,58r-27,0r27,-58r40,0","w":193,"k":{"y":4,"x":4,"w":3,"v":4}},"\u00f2":{"d":"96,-185v55,0,77,39,77,94v0,55,-22,93,-77,93v-55,0,-75,-38,-75,-93v0,-55,21,-94,75,-94xm96,-31v31,0,40,-28,40,-60v0,-32,-9,-61,-40,-61v-30,0,-39,29,-39,61v0,31,8,60,39,60xm113,-216r-28,0r-40,-58r41,0","w":193,"k":{"y":4,"x":4,"w":3,"v":4}},"\u00f4":{"d":"96,-185v55,0,77,39,77,94v0,55,-22,93,-77,93v-55,0,-75,-38,-75,-93v0,-55,21,-94,75,-94xm96,-31v31,0,40,-28,40,-60v0,-32,-9,-61,-40,-61v-30,0,-39,29,-39,61v0,31,8,60,39,60xm158,-216r-30,0r-32,-35r-31,35r-30,0r46,-58r31,0","w":193,"k":{"y":4,"x":4,"w":3,"v":4}},"\u00f6":{"d":"96,-185v55,0,77,39,77,94v0,55,-22,93,-77,93v-55,0,-75,-38,-75,-93v0,-55,21,-94,75,-94xm96,-31v31,0,40,-28,40,-60v0,-32,-9,-61,-40,-61v-30,0,-39,29,-39,61v0,31,8,60,39,60xm152,-217r-33,0r0,-39r33,0r0,39xm74,-217r-33,0r0,-39r33,0r0,39","w":193,"k":{"y":4,"x":4,"w":3,"v":4}},"\u00f5":{"d":"96,-185v55,0,77,39,77,94v0,55,-22,93,-77,93v-55,0,-75,-38,-75,-93v0,-55,21,-94,75,-94xm96,-31v31,0,40,-28,40,-60v0,-32,-9,-61,-40,-61v-30,0,-39,29,-39,61v0,31,8,60,39,60xm35,-242v36,-50,70,18,105,-15r17,17v-35,50,-68,-16,-105,15","w":193,"k":{"y":4,"x":4,"w":3,"v":4}},"\u00fa":{"d":"139,-18v-39,43,-112,13,-112,-48r0,-117r37,0v6,55,-21,152,37,152v59,0,33,-97,38,-152r36,0r0,183r-36,0r0,-18xm150,-274r-40,58r-28,0r27,-58r41,0","w":204},"\u00f9":{"d":"139,-18v-39,43,-112,13,-112,-48r0,-117r37,0v6,55,-21,152,37,152v59,0,33,-97,38,-152r36,0r0,183r-36,0r0,-18xm120,-216r-28,0r-40,-58r41,0","w":204},"\u00fb":{"d":"139,-18v-39,43,-112,13,-112,-48r0,-117r37,0v6,55,-21,152,37,152v59,0,33,-97,38,-152r36,0r0,183r-36,0r0,-18xm163,-216r-31,0r-31,-35r-31,35r-31,0r47,-58r31,0","w":204},"\u00fc":{"d":"139,-18v-39,43,-112,13,-112,-48r0,-117r37,0v6,55,-21,152,37,152v59,0,33,-97,38,-152r36,0r0,183r-36,0r0,-18xm157,-217r-34,0r0,-39r34,0r0,39xm79,-217r-33,0r0,-39r33,0r0,39","w":204},"\u00b0":{"d":"148,-198v0,35,-28,63,-63,63v-35,0,-63,-28,-63,-63v0,-35,28,-63,63,-63v35,0,63,28,63,63xm117,-198v0,-19,-14,-33,-32,-33v-18,0,-33,14,-33,33v0,19,15,33,33,33v18,0,32,-14,32,-33","w":169},"\u00ae":{"d":"285,-128v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130v0,-72,58,-130,130,-130v72,0,130,58,130,130xm259,-128v0,-59,-46,-106,-104,-106v-58,0,-104,47,-104,106v0,59,46,106,104,106v58,0,104,-47,104,-106xm212,-58r-29,0r-29,-56r-18,0r0,56r-26,0r0,-141v47,-3,100,-1,98,43v0,20,-13,34,-28,39xm183,-156v0,-20,-24,-23,-47,-21r0,43v23,2,47,-1,47,-22","w":310},"\u00a9":{"d":"285,-128v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130v0,-72,58,-130,130,-130v72,0,130,58,130,130xm259,-128v0,-59,-46,-106,-104,-106v-58,0,-104,47,-104,106v0,59,46,106,104,106v58,0,104,-47,104,-106xm204,-75v-40,40,-111,14,-111,-53v0,-67,71,-93,111,-53r-16,16v-29,-27,-74,-6,-70,37v-4,43,41,64,70,36","w":310},"\u00b1":{"d":"174,-114r-61,0r0,61r-34,0r0,-61r-61,0r0,-34r61,0r0,-60r34,0r0,60r61,0r0,34xm174,0r-156,0r0,-34r156,0r0,34"},"\u00b5":{"d":"175,0r-36,0r0,-18v-18,20,-53,28,-75,11r0,81r-37,0r0,-257r37,0v6,55,-21,152,37,152v59,0,33,-97,38,-152r36,0r0,183","w":204},"\u00ac":{"d":"174,-35r-34,0r0,-51r-123,0r0,-34r157,0r0,85"},"\u00a0":{"w":86},"\u00c0":{"d":"222,0r-41,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0xm152,-85r-39,-113r-40,113r79,0xm130,-281r-28,0r-40,-58r41,0","w":225,"k":{"\u0152":2,"y":8,"v":8,"Y":13,"W":8,"V":13,"T":22,"Q":4,"O":4,"G":4,"C":4}},"\u00c3":{"d":"222,0r-41,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0xm152,-85r-39,-113r-40,113r79,0xm49,-307v36,-52,71,19,106,-16r17,17v-35,51,-70,-17,-105,16","w":225,"k":{"\u0152":2,"y":8,"v":8,"Y":13,"W":8,"V":13,"T":22,"Q":4,"O":4,"G":4,"C":4}},"\u00d5":{"d":"116,-258v67,0,101,50,92,130v8,80,-25,130,-92,130v-66,0,-92,-50,-92,-130v0,-80,25,-130,92,-130xm116,-33v47,-9,54,-22,54,-95v0,-74,-7,-86,-54,-96v-47,9,-53,23,-53,96v0,74,6,85,53,95xm54,-307v36,-52,71,19,106,-16r17,17v-35,51,-70,-17,-105,16","w":232,"k":{"\u00c6":2,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":8,"A":4}},"\u00f7":{"d":"116,-149r-40,0r0,-39r40,0r0,39xm174,-83r-157,0r0,-34r157,0r0,34xm116,-12r-40,0r0,-39r40,0r0,39"},"\u00ff":{"d":"167,-183r-81,219v-9,28,-30,39,-65,36r0,-33v35,7,37,-25,46,-48r-64,-174r39,0r43,129r43,-129r39,0xm140,-217r-33,0r0,-39r33,0r0,39xm62,-217r-33,0r0,-39r33,0r0,39","w":168},"\u0178":{"d":"194,-256r-77,151r0,105r-39,0r0,-105r-76,-151r42,0r54,112r54,-112r42,0xm153,-283r-33,0r0,-39r33,0r0,39xm76,-283r-34,0r0,-39r34,0r0,39","w":195},"\u00c2":{"d":"222,0r-41,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0xm152,-85r-39,-113r-40,113r79,0xm174,-281r-31,0r-31,-35r-32,35r-30,0r46,-58r31,0","w":225,"k":{"\u0152":2,"y":3,"v":8,"Y":13,"W":8,"V":13,"T":22,"Q":4,"O":4,"G":4,"C":4}},"\u00ca":{"d":"197,0r-164,0r0,-256r164,0r0,35r-125,0r0,74r107,0r0,35r-107,0r0,77r125,0r0,35xm174,-281r-31,0r-31,-35r-31,35r-31,0r46,-58r31,0","w":217},"\u00c1":{"d":"222,0r-41,0r-18,-51r-101,0r-18,51r-41,0r94,-256r31,0xm152,-85r-39,-113r-40,113r79,0xm161,-339r-40,58r-28,0r27,-58r41,0","w":225,"k":{"\u0152":2,"y":8,"v":8,"Y":13,"W":8,"V":13,"T":22,"Q":4,"O":4,"G":4,"C":4}},"\u00cb":{"d":"197,0r-164,0r0,-256r164,0r0,35r-125,0r0,74r107,0r0,35r-107,0r0,77r125,0r0,35xm167,-283r-33,0r0,-39r33,0r0,39xm90,-283r-33,0r0,-39r33,0r0,39","w":217},"\u00c8":{"d":"197,0r-164,0r0,-256r164,0r0,35r-125,0r0,74r107,0r0,35r-107,0r0,77r125,0r0,35xm131,-281r-28,0r-40,-58r41,0","w":217},"\u00cd":{"d":"72,0r-39,0r0,-256r39,0r0,256xm101,-339r-40,58r-28,0r27,-58r41,0","w":105},"\u00ce":{"d":"72,0r-39,0r0,-256r39,0r0,256xm157,-281r-30,0r-32,-35r-31,35r-31,0r47,-58r31,0","w":105},"\u00cf":{"d":"72,0r-39,0r0,-256r39,0r0,256xm144,-283r-33,0r0,-39r33,0r0,39xm67,-283r-34,0r0,-39r34,0r0,39","w":105},"\u00cc":{"d":"72,0r-39,0r0,-256r39,0r0,256xm101,-281r-28,0r-40,-58r41,0","w":105},"\u00d3":{"d":"116,-258v67,0,101,50,92,130v8,80,-25,130,-92,130v-66,0,-92,-50,-92,-130v0,-80,25,-130,92,-130xm116,-33v47,-9,54,-22,54,-95v0,-74,-7,-86,-54,-96v-47,9,-53,23,-53,96v0,74,6,85,53,95xm165,-339r-40,58r-27,0r27,-58r40,0","w":232,"k":{"\u00c6":2,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":8,"A":4}},"\u00d4":{"d":"116,-258v67,0,101,50,92,130v8,80,-25,130,-92,130v-66,0,-92,-50,-92,-130v0,-80,25,-130,92,-130xm116,-33v47,-9,54,-22,54,-95v0,-74,-7,-86,-54,-96v-47,9,-53,23,-53,96v0,74,6,85,53,95xm178,-281r-30,0r-32,-35r-31,35r-31,0r47,-58r31,0","w":232,"k":{"\u00c6":2,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":8,"A":4}},"\u00d2":{"d":"116,-258v67,0,101,50,92,130v8,80,-25,130,-92,130v-66,0,-92,-50,-92,-130v0,-80,25,-130,92,-130xm116,-33v47,-9,54,-22,54,-95v0,-74,-7,-86,-54,-96v-47,9,-53,23,-53,96v0,74,6,85,53,95xm135,-281r-28,0r-40,-58r41,0","w":232,"k":{"Y":4,"X":4,"W":4,"V":4,"T":7,"J":8,"A":4}},"\u00da":{"d":"213,-86v0,53,-40,88,-92,88v-52,0,-91,-35,-91,-88r0,-170r38,0r0,168v0,34,21,55,53,55v32,0,54,-21,54,-55r0,-168r38,0r0,170xm171,-339r-40,58r-28,0r27,-58r41,0","w":243},"\u00db":{"d":"213,-86v0,53,-40,88,-92,88v-52,0,-91,-35,-91,-88r0,-170r38,0r0,168v0,34,21,55,53,55v32,0,54,-21,54,-55r0,-168r38,0r0,170xm184,-281r-31,0r-31,-35r-32,35r-30,0r46,-58r31,0","w":243},"\u00d9":{"d":"213,-86v0,53,-40,88,-92,88v-52,0,-91,-35,-91,-88r0,-170r38,0r0,168v0,34,21,55,53,55v32,0,54,-21,54,-55r0,-168r38,0r0,170xm140,-281r-27,0r-40,-58r40,0","w":243}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International
 * FontFont release 15
 */
Cufon.registerFont({"w":200,"face":{"font-family":"DIN","font-weight":900,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"2","bbox":"-10 -371 353 72","underline-thickness":"38.88","underline-position":"-28.08","stemh":"55","stemv":"57","unicode-range":"U+0020-U+0192"},"glyphs":{" ":{"w":79},"!":{"d":"110,-256r-16,171r-42,0r-16,-171r74,0xm103,0r-60,0r0,-58r60,0r0,58","w":131},"\"":{"d":"155,-172r-53,0r0,-84r53,0r0,84xm73,-172r-52,0r0,-84r52,0r0,84","w":175},"#":{"d":"240,-148r-30,0r-5,31r21,0r0,56r-30,0r-10,61r-62,0r10,-61r-33,0r-10,61r-62,0r10,-61r-21,0r0,-56r30,0r4,-31r-21,0r0,-56r30,0r9,-55r62,0r-8,55r32,0r9,-55r63,0r-9,55r21,0r0,56xm147,-148r-32,0r-5,31r33,0","w":256},"$":{"d":"212,-78v0,45,-33,71,-77,78r0,41r-45,0r0,-39v-35,-1,-64,-10,-88,-34r40,-40v13,13,35,18,55,18r0,-48v-51,-2,-82,-24,-83,-75v0,-42,28,-74,76,-80r0,-33r45,0r0,32v30,2,54,11,73,30r-39,40v-11,-11,-30,-14,-41,-15r0,45v53,4,84,25,84,80xm97,-160r0,-43v-30,5,-29,40,0,43xm128,-55v30,-2,28,-44,0,-44r0,44","w":227},"%":{"d":"292,-82v0,50,-12,84,-54,84v-41,0,-54,-33,-54,-84v0,-34,26,-50,54,-50v28,0,54,16,54,50xm238,-256r-122,256r-45,0r122,-256r45,0xm125,-208v0,50,-12,84,-54,84v-41,0,-55,-33,-55,-84v0,-34,27,-50,55,-50v28,0,54,16,54,50xm238,-35v18,1,12,-29,13,-46v0,-10,-6,-14,-13,-14v-18,-1,-12,29,-13,46v0,10,6,14,13,14xm71,-162v17,1,11,-28,12,-45v0,-10,-5,-14,-12,-14v-18,-1,-12,28,-13,45v0,10,6,14,13,14","w":308},"&":{"d":"181,-194v0,29,-20,41,-43,57r30,35v7,-8,11,-25,12,-37r55,0v-3,33,-10,59,-29,80r50,59r-75,0r-16,-19v-13,9,-27,21,-61,21v-98,0,-108,-113,-46,-144v-39,-33,-30,-116,51,-116v45,0,72,26,72,64xm107,-172v17,-7,30,-34,2,-37v-26,1,-14,31,-2,37xm130,-60r-40,-46v-26,14,-16,56,14,55v13,0,20,-4,26,-9","w":255},"(":{"d":"85,-195v3,66,-17,162,26,189r-39,40v-23,-21,-49,-48,-46,-93v5,-65,-12,-141,10,-190v7,-16,24,-29,36,-41r39,39v-14,16,-28,23,-26,56","w":128},")":{"d":"57,-290v22,21,49,47,46,92v-5,65,12,142,-10,191v-7,16,-24,29,-36,41r-39,-40v43,-27,22,-123,26,-189v2,-33,-12,-40,-26,-56","w":128},"*":{"d":"165,-163r-20,35r-36,-23r2,42r-40,0r2,-42r-36,23r-20,-35r38,-20r-38,-19r20,-35r36,23r-2,-42r40,0r-2,42r36,-23r20,35r-38,19","w":182},"+":{"d":"183,-74r-55,0r0,55r-56,0r0,-55r-54,0r0,-56r54,0r0,-54r56,0r0,54r55,0r0,56"},",":{"d":"83,18r-62,46r0,-127r62,0r0,81","w":103},"-":{"d":"136,-78r-118,0r0,-56r118,0r0,56","w":153},".":{"d":"85,0r-64,0r0,-65r64,0r0,65","w":105},"\/":{"d":"157,-283r-102,310r-55,0r103,-310r54,0","w":155},"0":{"d":"183,-78v0,53,-41,80,-83,80v-42,0,-82,-27,-82,-80r0,-101v0,-53,40,-79,82,-79v42,0,83,26,83,79r0,101xm123,-77r0,-102v0,-18,-10,-26,-23,-26v-13,0,-23,8,-23,26r0,102v0,18,10,26,23,26v13,0,23,-8,23,-26"},"1":{"d":"146,0r-59,0r0,-193r-55,47r0,-63r55,-47r59,0r0,256"},"2":{"d":"184,0r-165,0r0,-53r93,-101v19,-15,18,-50,-10,-51v-11,0,-24,5,-24,25r-59,0v0,-50,38,-78,83,-78v48,0,82,29,82,77v0,27,-11,41,-32,63r-61,65r93,0r0,53"},"3":{"d":"186,-77v0,54,-41,79,-86,79v-42,0,-85,-22,-85,-80r59,0v0,18,11,27,26,27v15,0,27,-9,27,-27v0,-18,-15,-29,-36,-27r0,-52v21,2,33,-9,33,-24v-1,-33,-47,-31,-47,0r-59,0v0,-48,36,-77,82,-77v48,0,83,31,83,75v0,28,-14,43,-27,51v14,10,30,24,30,55"},"4":{"d":"191,-34r-19,0r0,34r-56,0r0,-34r-107,0r0,-56r85,-166r65,0r-85,166r42,0r0,-34r56,0r0,34r19,0r0,56"},"5":{"d":"111,-174v52,-2,73,45,73,87v0,55,-24,87,-83,89v-56,2,-82,-38,-83,-80r59,0v2,17,9,27,24,27v18,0,24,-12,24,-36v0,-48,-42,-42,-48,-18r-54,0r0,-151r156,0r0,53r-103,0r0,40v5,-4,19,-11,35,-11"},"6":{"d":"184,-80v0,54,-39,82,-85,82v-46,0,-85,-28,-85,-82v0,-67,51,-120,73,-176r65,0r-50,100v43,-9,82,20,82,76xm125,-80v0,-19,-12,-29,-26,-29v-14,0,-26,10,-26,29v0,19,12,29,26,29v14,0,26,-10,26,-29"},"7":{"d":"188,-203r-80,203r-65,0r80,-203r-55,0r0,40r-56,0r0,-93r176,0r0,53"},"8":{"d":"186,-77v0,53,-39,79,-86,79v-47,0,-86,-26,-86,-79v0,-32,19,-47,29,-55v-9,-8,-26,-23,-26,-51v0,-49,39,-75,83,-75v44,0,84,26,84,75v0,28,-18,43,-27,51v10,8,29,23,29,55xm125,-181v0,-14,-11,-24,-25,-24v-14,0,-24,10,-24,24v0,14,10,25,24,25v14,0,25,-11,25,-25xm127,-78v0,-15,-12,-27,-27,-27v-15,0,-27,12,-27,27v0,15,12,27,27,27v15,0,27,-12,27,-27"},"9":{"d":"186,-176v0,67,-51,120,-73,176r-65,0r51,-100v-43,7,-83,-19,-83,-76v0,-54,39,-82,85,-82v46,0,85,28,85,82xm127,-176v0,-19,-12,-29,-26,-29v-14,0,-26,10,-26,29v0,19,12,29,26,29v14,0,26,-10,26,-29"},":":{"d":"94,-91r-65,0r0,-65r65,0r0,65xm94,0r-65,0r0,-65r65,0r0,65","w":114},";":{"d":"94,-91r-65,0r0,-65r65,0r0,65xm93,18r-63,46r0,-127r63,0r0,81","w":114},"<":{"d":"352,-78r-235,0r109,108r-73,0r-136,-136r136,-136r73,0r-109,108r235,0r0,56","w":369},"=":{"d":"183,-122r-165,0r0,-56r165,0r0,56xm183,-35r-165,0r0,-55r165,0r0,55"},">":{"d":"353,-106r-136,136r-74,0r110,-108r-236,0r0,-56r236,0r-110,-108r74,0","w":369},"?":{"d":"183,-183v0,46,-43,57,-50,98r-59,0v-6,-49,39,-61,50,-98v0,-13,-8,-22,-22,-22v-15,0,-21,9,-21,22r-59,0v0,-49,36,-75,80,-75v42,0,81,25,81,75xm134,0r-61,0r0,-58r61,0r0,58","w":193},"@":{"d":"116,-258v89,0,149,11,149,96r0,163r-55,-1r0,-14v-44,39,-117,3,-101,-67v-14,-69,53,-106,99,-69v7,-53,-35,-60,-88,-55v-26,-4,-49,19,-46,46v5,43,-11,102,13,125r-41,40v-42,-31,-24,-102,-28,-168v-3,-64,33,-96,98,-96xm208,-81v0,-26,-7,-35,-21,-35v-14,0,-22,9,-22,35v0,26,8,34,22,34v14,0,21,-8,21,-34","w":282},"A":{"d":"235,0r-66,0r-12,-38r-79,0r-12,38r-66,0r93,-256r49,0xm141,-91r-22,-68r-23,68r45,0","w":235,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00d5":4,"\u00d6":4,"\u00c7":4,"\u0152":4,"y":11,"w":5,"v":11,"Y":13,"W":13,"V":13,"T":22,"Q":4,"O":4,"G":4,"C":4}},"B":{"d":"217,-76v0,49,-33,76,-79,76r-112,0r0,-256r106,0v53,0,82,30,82,74v0,29,-20,46,-28,51v10,6,31,19,31,55xm128,-158v32,-1,31,-41,0,-42r-39,0r0,42r39,0xm131,-57v32,0,31,-45,0,-45r-42,0r0,45r42,0","w":235,"k":{"J":5}},"C":{"d":"81,-128v0,66,-2,63,34,74v21,0,29,-13,33,-27r64,0v-9,57,-48,83,-97,83v-68,0,-106,-61,-97,-130v-8,-68,28,-130,97,-130v49,0,88,26,97,83r-64,0v-4,-14,-12,-27,-33,-27v-37,9,-34,9,-34,74","w":219,"k":{"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c0":4,"\u00c5":4,"\u00c4":4,"\u00c6":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":4,"A":4}},"D":{"d":"121,-256v69,-5,107,63,96,128v10,65,-26,128,-96,128r-95,0r0,-256r95,0xm89,-56v58,-4,65,4,65,-72v0,-43,-3,-50,-7,-58v-8,-16,-34,-14,-58,-14r0,144","w":234,"k":{"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c0":4,"\u00c5":4,"\u00c4":4,"\u00c6":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":7,"A":4}},"E":{"d":"200,0r-174,0r0,-256r174,0r0,56r-111,0r0,43r95,0r0,56r-95,0r0,45r111,0r0,56","w":218},"F":{"d":"200,-200r-111,0r0,45r95,0r0,56r-95,0r0,99r-63,0r0,-256r174,0r0,56","w":214,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c1":22,"\u00c2":22,"\u00d5":7,"\u00c3":22,"\u00c0":22,"\u00d6":7,"\u00c7":7,"\u00c5":22,"\u00c4":22,"\u0153":11,"\u00f8":11,"\u00e6":11,"\u0152":7,"\u00d8":7,"\u00c6":22,"z":11,"x":11,"u":11,"r":11,"p":11,"o":11,"n":11,"m":11,"e":11,"c":11,"a":11,"S":4,"Q":7,"O":7,"J":43,"G":7,"C":7,"A":22,".":32}},"G":{"d":"115,-54v26,0,39,-16,38,-41r-38,0r0,-53r100,0v10,91,-26,150,-100,150v-68,0,-106,-61,-97,-130v-8,-68,27,-130,97,-130v66,0,94,42,100,84r-63,0v-5,-19,-15,-28,-37,-28v-37,10,-34,8,-34,74v0,66,-2,63,34,74","w":232,"k":{"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c0":4,"\u00c5":4,"\u00c4":4,"\u00c6":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":11,"A":4}},"H":{"d":"219,0r-63,0r0,-102r-67,0r0,102r-63,0r0,-256r63,0r0,98r67,0r0,-98r63,0r0,256","w":244},"I":{"d":"89,0r-63,0r0,-256r63,0r0,256","w":114},"J":{"d":"163,-88v1,91,-113,117,-166,62r42,-41v17,22,61,16,61,-22r0,-167r63,0r0,168","w":185,"k":{"A":4}},"K":{"d":"242,0r-73,0r-59,-105r-22,25r0,80r-62,0r0,-256r62,0r0,90r74,-90r77,0r-87,103","w":242,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00d5":4,"\u00d6":4,"\u00c7":4,"\u0152":4,"y":14,"Q":4,"O":4,"G":4,"C":4}},"L":{"d":"197,0r-171,0r0,-256r63,0r0,200r108,0r0,56","w":207,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00d5":7,"\u00d6":7,"\u0152":7,"y":22,"Y":29,"W":14,"V":25,"T":29,"Q":7,"O":7,"G":7,"C":7}},"M":{"d":"265,0r-63,0r0,-123r-36,64r-41,0r-36,-64r0,123r-63,0r0,-256r62,0r57,113r58,-113r62,0r0,256","w":290},"N":{"d":"226,0r-55,0r-82,-129r0,129r-63,0r0,-256r55,0r82,129r0,-129r63,0r0,256","w":252},"O":{"d":"115,-258v70,0,107,61,98,130v8,69,-28,130,-98,130v-69,0,-106,-61,-97,-130v-8,-68,27,-130,97,-130xm115,-54v36,-12,35,-8,35,-74v0,-66,1,-63,-35,-74v-37,10,-34,8,-34,74v0,67,-2,61,34,74","w":230,"k":{"\u00c1":4,"\u00c2":4,"\u00c3":4,"\u00c0":4,"\u00c5":4,"\u00c4":4,"\u00c6":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"J":11,"A":4}},"P":{"d":"215,-174v0,55,-51,93,-126,83r0,91r-63,0r0,-256r101,0v57,0,88,40,88,82xm152,-174v0,-27,-33,-28,-63,-26r0,52v29,2,63,1,63,-26","w":225,"k":{"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u00c0":18,"\u00e7":4,"\u00c5":18,"\u00c4":18,"\u0153":4,"\u00f8":4,"\u00e6":4,"\u00c6":18,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"J":43,"A":18,".":40}},"Q":{"d":"115,-258v70,0,98,60,98,130v0,32,0,62,-15,87r19,19r-32,32r-20,-20v-82,42,-164,-29,-147,-118v-8,-68,27,-130,97,-130xm81,-128v0,68,-2,64,39,74r-16,-17r32,-32r12,13v1,-9,2,-21,2,-38v-3,-66,1,-63,-35,-74v-37,10,-34,8,-34,74","w":230},"R":{"d":"229,0r-73,0r-46,-95r-21,0r0,95r-63,0r0,-256r101,0v96,-6,112,121,46,149xm152,-174v0,-27,-33,-28,-63,-26r0,52v29,2,63,1,63,-26","w":234},"S":{"d":"198,-78v1,91,-143,104,-196,46r40,-40v20,27,117,25,89,-20v-27,-15,-81,-10,-99,-34v-41,-53,-5,-132,76,-132v37,0,64,8,86,30r-40,40v-28,-30,-95,-15,-74,20v24,16,84,9,99,33v14,13,19,33,19,57","w":213,"k":{"Y":7,"J":7}},"T":{"d":"200,-200r-63,0r0,200r-63,0r0,-200r-63,0r0,-56r189,0r0,56","w":210,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c1":22,"\u00c2":22,"\u00d5":7,"\u00c3":22,"\u00c0":22,"\u00e7":22,"\u00d6":7,"\u00c7":7,"\u00c5":22,"\u00c4":22,"\u0153":22,"\u00f8":22,"\u00e6":22,"\u0152":7,"\u00d8":7,"\u00c6":22,"z":11,"y":11,"x":11,"w":11,"v":11,"u":11,"s":22,"r":11,"q":22,"p":11,"o":22,"n":11,"m":11,"g":22,"e":22,"d":22,"c":22,"a":22,"Q":7,"O":7,"J":29,"G":7,"C":7,"A":22,".":29}},"U":{"d":"216,-90v0,56,-45,92,-98,92v-53,0,-96,-36,-96,-92r0,-166r63,0r0,165v0,24,12,37,33,37v21,0,35,-13,35,-37r0,-165r63,0r0,166","w":237},"V":{"d":"216,-256r-85,256r-46,0r-85,-256r65,0r43,143r43,-143r65,0","w":216,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":13,"\u00c2":13,"\u00d5":4,"\u00c3":13,"\u00c0":13,"\u00e7":14,"\u00d6":4,"\u00c7":4,"\u00c5":13,"\u00c4":13,"\u0153":14,"\u00f8":14,"\u00e6":14,"\u0152":4,"\u00d8":4,"\u00c6":13,"z":7,"y":4,"x":7,"u":7,"s":14,"r":7,"q":14,"p":7,"o":14,"n":7,"m":7,"g":14,"e":14,"d":14,"c":14,"a":14,"Q":4,"O":4,"G":4,"C":4,"A":13,".":29}},"W":{"d":"326,-256r-70,256r-52,0r-41,-126r-41,126r-51,0r-71,-256r66,0r33,135r42,-135r44,0r42,135r33,-135r66,0","w":326,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":7,"\u00c2":7,"\u00d5":4,"\u00c3":7,"\u00c0":7,"\u00e7":14,"\u00d6":4,"\u00c7":4,"\u00c5":7,"\u00c4":7,"\u0153":14,"\u00f8":14,"\u00e6":14,"\u0152":4,"\u00d8":4,"\u00c6":7,"s":14,"q":14,"o":14,"g":14,"e":14,"d":14,"c":14,"a":14,"Q":4,"O":4,"G":4,"C":4,"A":7,".":18}},"X":{"d":"228,0r-72,0r-42,-79r-42,79r-72,0r80,-131r-75,-125r72,0r37,72r38,-72r71,0r-75,125","w":228,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00d5":4,"\u00d6":4,"\u00c7":4,"\u0152":4,"y":14,"Q":4,"O":4,"G":4,"C":4}},"Y":{"d":"218,-256r-78,152r0,104r-63,0r0,-104r-77,-152r69,0r40,92r40,-92r69,0","w":217,"k":{"\u00d2":4,"\u00d4":4,"\u00d3":4,"\u00c1":14,"\u00c2":14,"\u00d5":4,"\u00c3":14,"\u00c0":14,"\u00e7":29,"\u00d6":4,"\u00c7":4,"\u00c5":14,"\u00c4":14,"\u0153":29,"\u00f8":29,"\u00e6":29,"\u0152":4,"\u00d8":4,"\u00c6":14,"z":14,"x":14,"u":14,"s":29,"r":14,"q":29,"p":14,"o":29,"n":14,"m":14,"g":29,"e":29,"d":29,"c":29,"a":29,"Q":4,"O":4,"J":14,"G":4,"C":4,"A":14,".":29}},"Z":{"d":"185,0r-174,0r0,-49r98,-151r-94,0r0,-56r170,0r0,49r-99,151r99,0r0,56","w":195},"[":{"d":"135,27r-109,0r0,-310r109,0r0,53r-50,0r0,203r50,0r0,54","w":149},"\\":{"d":"155,27r-55,0r-100,-303r55,0","w":155},"]":{"d":"124,27r-110,0r0,-54r51,0r0,-203r-51,0r0,-53r110,0r0,310","w":149},"^":{"d":"210,-135r-62,0r-33,-59r-32,59r-62,0r67,-124r55,0","w":230},"_":{"d":"230,67r-230,0r0,-39r230,0r0,39","w":230},"a":{"d":"116,-16v-34,38,-113,11,-106,-45v-5,-42,48,-63,105,-56v8,-36,-46,-36,-60,-16r-37,-37v41,-47,156,-32,156,44r0,126r-58,0r0,-16xm86,-46v22,1,30,-10,29,-32v-20,0,-50,-4,-49,16v0,9,7,16,20,16","w":192},"b":{"d":"125,-196v52,-3,64,50,64,99v0,49,-11,99,-65,99v-20,0,-32,-6,-44,-18r0,16r-58,0r0,-256r59,0r0,76v11,-11,25,-16,44,-16xm130,-97v0,-28,-2,-46,-24,-46v-22,0,-25,18,-25,46v0,28,3,46,25,46v22,0,24,-18,24,-46","w":204},"c":{"d":"73,-97v-6,41,29,60,52,34r40,40v-16,16,-37,25,-64,25v-33,0,-87,-14,-87,-99v0,-85,54,-99,87,-99v27,0,48,9,64,25r-40,40v-23,-26,-58,-7,-52,34","w":171,"k":{"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u0153":7,"w":7,"o":7,"e":7,"d":4,"c":7}},"d":{"d":"15,-97v-5,-49,12,-99,65,-99v19,0,32,5,43,16r0,-76r60,0r0,256r-58,0r0,-16v-12,12,-24,18,-44,18v-54,0,-71,-50,-66,-99xm123,-97v0,-28,-2,-46,-24,-46v-22,0,-24,18,-24,46v0,28,2,46,24,46v22,0,24,-18,24,-46","w":204},"e":{"d":"188,-78r-116,0v-4,34,61,38,74,14r35,36v-20,20,-39,30,-75,30v-43,0,-92,-15,-92,-99v0,-63,35,-99,86,-99v65,0,94,49,88,118xm129,-117v6,-31,-46,-39,-54,-15v-3,5,-3,10,-3,15r57,0","w":201,"k":{"y":4,"w":4,"v":4}},"f":{"d":"120,-141r-33,0r0,141r-59,0r0,-141r-17,0r0,-45r17,0v-8,-53,28,-80,92,-74r0,49v-20,-1,-38,-2,-33,25r33,0r0,45","w":128,"k":{"\u00e7":5,"\u0153":5,"\u00e6":5,"o":5,"e":5,"c":5,"a":5,".":18,"*":-7}},"g":{"d":"15,-104v-17,-76,59,-118,107,-74r0,-16r58,0r0,180v7,75,-111,105,-161,54r37,-37v17,23,71,10,65,-17r0,-14v-50,41,-122,-2,-106,-76xm121,-104v0,-20,-1,-39,-23,-39v-22,0,-23,19,-23,39v0,20,1,38,23,38v22,0,23,-18,23,-38","w":201},"h":{"d":"186,0r-59,0r0,-117v0,-21,-15,-26,-23,-26v-8,0,-23,5,-23,26r0,117r-59,0r0,-256r59,0r0,78v40,-41,105,-7,105,52r0,126","w":206},"i":{"d":"81,-213r-59,0r0,-45r59,0r0,45xm81,0r-59,0r0,-186r59,0r0,186","w":103},"j":{"d":"81,-213r-59,0r0,-45r59,0r0,45xm81,8v4,37,-37,65,-91,57r0,-50v14,-1,32,4,32,-12r0,-189r59,0r0,194","w":103},"k":{"d":"206,0r-73,0r-40,-71r-12,13r0,58r-59,0r0,-256r59,0r0,130r53,-68r70,0r-71,81","w":206},"l":{"d":"112,0v-54,7,-91,-19,-91,-57r0,-199r59,0r0,194v-2,16,18,11,32,12r0,50","w":122,"k":{"y":14,"w":7,"v":14,"o":7,"e":9,"c":9,"*":22}},"m":{"d":"172,-175v44,-46,122,-11,122,51r0,124r-59,0r0,-116v0,-22,-15,-27,-23,-27v-8,0,-24,5,-24,27r0,116r-59,0r0,-116v0,-22,-16,-27,-24,-27v-8,0,-24,5,-24,27r0,116r-59,0r0,-194r58,0r0,16v26,-25,69,-24,92,3","w":315},"n":{"d":"80,-178v43,-43,108,-3,108,54r0,124r-59,0r0,-116v0,-22,-16,-27,-24,-27v-8,0,-24,5,-24,27r0,116r-59,0r0,-194r58,0r0,16","w":208},"o":{"d":"99,-196v63,6,84,33,84,99v0,67,-21,92,-84,99v-63,-6,-84,-33,-84,-99v0,-67,21,-92,84,-99xm99,-51v23,0,25,-19,24,-46v0,-27,-1,-46,-24,-46v-23,0,-25,19,-24,46v0,27,1,46,24,46","w":198,"k":{"y":4,"x":7,"w":4,"v":4}},"p":{"d":"124,-196v52,0,65,50,65,99v0,48,-11,99,-64,99v-19,0,-33,-5,-44,-16r0,77r-59,0r0,-257r58,0r0,16v12,-12,24,-18,44,-18xm130,-97v0,-28,-2,-46,-24,-46v-22,0,-25,18,-25,46v0,28,3,46,25,46v22,0,24,-18,24,-46","w":204},"q":{"d":"15,-97v-5,-49,13,-99,66,-99v20,0,32,6,44,18r0,-16r58,0r0,257r-60,0r0,-77v-11,11,-24,16,-43,16v-54,0,-70,-50,-65,-99xm123,-97v0,-28,-2,-46,-24,-46v-22,0,-24,18,-24,46v0,28,2,46,24,46v22,0,24,-18,24,-46","w":204},"r":{"d":"171,-178r-45,46v-13,-16,-45,-18,-45,16r0,116r-59,0r0,-194r58,0r0,16v18,-20,70,-27,91,0","w":171,"k":{"\u00f5":11,"\u00f6":11,"\u00f4":11,"\u00f2":11,"\u00f3":11,"\u00eb":11,"\u00ea":11,"\u00e8":11,"\u00e9":11,"\u00e7":11,"\u0153":11,"\u00f8":11,"\u00e6":11,"s":4,"q":11,"o":11,"g":11,"e":11,"d":11,"c":11,"a":4,".":43}},"s":{"d":"172,-63v0,46,-39,65,-84,65v-29,0,-57,-1,-84,-28r38,-38v16,16,37,16,47,16v20,0,40,-22,11,-25v-45,-5,-86,-8,-86,-59v0,-74,111,-81,153,-40r-36,36v-14,-22,-90,-6,-47,11v49,0,88,20,88,62","w":181,"k":{"v":4,"t":4}},"t":{"d":"116,0v-53,7,-89,-20,-89,-57r0,-84r-18,0r0,-45r18,0r0,-56r59,0r0,56r30,0r0,45r-30,0r0,79v-1,15,16,12,30,12r0,50","w":130},"u":{"d":"129,-16v-43,43,-108,4,-108,-54r0,-124r59,0r0,116v0,22,15,27,23,27v8,0,24,-5,24,-27r0,-116r59,0r0,194r-57,0r0,-16","w":208},"v":{"d":"188,-194r-72,194r-45,0r-71,-194r62,0r32,101r32,-101r62,0","w":187,"k":{"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u0153":4,"\u00f8":4,"\u00e6":4,"s":4,"o":4,"e":4,"c":4,"a":4,".":22}},"w":{"d":"281,-194r-59,194r-47,0r-35,-106r-35,106r-47,0r-58,-194r62,0r24,101r34,-101r41,0r33,101r25,-101r62,0","w":280,"k":{"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u0153":4,"\u00f8":4,"\u00e6":4,"o":4,"e":4,"c":4,".":11}},"x":{"d":"200,0r-71,0r-29,-49r-29,49r-71,0r67,-99r-64,-95r70,0r27,47r27,-47r71,0r-65,95","k":{"\u00f5":7,"\u00f6":7,"\u00f4":7,"\u00f2":7,"\u00f3":7,"\u00eb":7,"\u00ea":7,"\u00e8":7,"\u00e9":7,"\u00e7":7,"\u0153":7,"\u00f8":7,"\u00e6":7,"o":7,"e":7,"c":7}},"y":{"d":"188,-194r-80,217v-10,34,-38,46,-81,42r0,-53v25,5,33,-11,37,-31r-64,-175r62,0r33,101r31,-101r62,0","w":185,"k":{"\u00f5":4,"\u00f6":4,"\u00f4":4,"\u00f2":4,"\u00f3":4,"\u00eb":4,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e7":4,"\u0153":4,"\u00f8":4,"\u00e6":4,"o":4,"e":4,"c":4,"a":4,".":22}},"z":{"d":"162,0r-151,0r0,-44r74,-96r-70,0r0,-54r147,0r0,44r-76,97r76,0r0,53","w":176},"{":{"d":"121,-92v0,29,-10,71,26,65r25,0r0,54r-50,0v-55,0,-64,-44,-60,-100v2,-28,-20,-31,-48,-29r0,-53v27,1,50,1,48,-28v-4,-56,5,-100,60,-100r50,0r0,53v-28,1,-51,-6,-51,28r0,38v0,29,-20,34,-27,36v7,2,27,7,27,36","w":186},"|":{"d":"95,27r-59,0r0,-310r59,0r0,310","w":131},"}":{"d":"125,-226v0,40,-9,82,47,71r0,53v-27,-1,-50,0,-47,29v4,56,-5,100,-60,100r-51,0r0,-54v28,0,52,6,52,-28r0,-37v0,-29,19,-34,26,-36v-7,-2,-26,-7,-26,-36v0,-29,10,-71,-26,-66r-26,0r0,-53r51,0v38,-1,60,26,60,57","w":186},"~":{"d":"77,-146v38,0,72,45,107,7r38,37v-23,23,-42,35,-68,35v-37,0,-72,-47,-106,-7r-37,-37v23,-23,40,-35,66,-35","w":232},"\u00a1":{"d":"89,-136r-61,0r0,-58r61,0r0,58xm96,63r-74,0r15,-171r43,0","w":131},"\u00a2":{"d":"173,-63v-12,12,-28,23,-47,28r0,35r-45,0r0,-35v-37,-8,-67,-39,-67,-97v0,-58,30,-88,67,-96r0,-28r45,0r0,28v19,5,35,15,47,27r-38,39v-4,-4,-9,-9,-16,-12r0,85v7,-3,12,-8,16,-12xm88,-90r0,-84v-20,11,-20,74,0,84","w":179},"\u00a3":{"d":"201,0r-167,0r0,-100r-21,0r0,-45r21,0v-15,-106,103,-146,167,-85r-42,41v-17,-22,-64,-16,-62,22r0,22r34,0r0,45r-34,0r0,44r104,0r0,56","w":214},"\u00a5":{"d":"218,-256r-45,88r21,0r0,46r-45,0v-5,10,-11,19,-9,36r54,0r0,45r-54,0r0,41r-63,0r0,-41r-54,0r0,-45r54,0v2,-17,-4,-26,-9,-36r-45,0r0,-46r22,0r-45,-88r69,0r40,92r40,-92r69,0","w":217},"\u0192":{"d":"148,-211v-17,1,-40,-6,-43,12r-9,54r32,0r0,45r-40,0r-29,163r-59,0r29,-163r-18,0r0,-45r26,0v9,-57,10,-112,80,-115r31,0r0,49","w":158},"\u00a7":{"d":"171,-103v0,25,-19,44,-29,51v13,8,25,20,25,48v0,49,-39,69,-74,69v-35,0,-74,-18,-74,-68r56,0v0,8,6,16,18,16v26,0,25,-24,-3,-35v-38,-14,-74,-26,-74,-76v0,-25,19,-44,30,-51v-42,-26,-29,-109,48,-109v53,0,72,31,72,65r-55,0v0,-11,-8,-15,-17,-15v-27,0,-20,21,3,29v38,13,74,26,74,76xm94,-77v16,-2,19,-4,21,-23v-2,-19,-5,-22,-21,-24v-17,2,-19,5,-22,24v2,19,6,21,22,23","w":185},"\u00a4":{"d":"226,-41r-40,39r-26,-26v-23,12,-55,12,-78,0r-26,26r-39,-39r26,-26v-12,-23,-12,-55,0,-78r-26,-26r39,-40r26,27v23,-13,55,-13,78,0r26,-27r40,40r-27,26v13,23,13,55,0,78xm156,-106v0,-19,-16,-34,-35,-34v-19,0,-34,15,-34,34v0,19,15,34,34,34v19,0,35,-15,35,-34","w":242},"'":{"d":"74,-172r-53,0r0,-84r53,0r0,84","w":94},"\u00ab":{"d":"220,-3r-98,-98r98,-97r0,69r-29,28r29,28r0,70xm109,-3r-98,-98r98,-97r0,69r-28,28r28,28r0,70","w":241},"\u00b7":{"d":"85,-74r-64,0r0,-65r64,0r0,65","w":105},"\u00b6":{"d":"229,63r-59,0r0,-263r-33,0r0,263r-59,0r0,-170v-32,0,-67,-32,-67,-74v-1,-100,124,-71,218,-75r0,319","w":254},"\u00bb":{"d":"231,-101r-98,98r0,-70r28,-28r-28,-28r0,-69xm120,-101r-98,98r0,-70r28,-28r-28,-28r0,-69","w":241},"\u00bf":{"d":"120,-136r-60,0r0,-58r60,0r0,58xm172,-11v0,49,-37,76,-81,76v-62,0,-106,-76,-62,-122v10,-17,30,-26,31,-51r60,0v6,48,-40,60,-50,98v0,13,7,22,21,22v15,0,22,-10,22,-23r59,0","w":193},"`":{"d":"111,-220r-36,0r-42,-64r60,0","w":180},"\u00b4":{"d":"147,-284r-42,64r-36,0r18,-64r60,0","w":180},"\u00af":{"d":"149,-230r-118,0r0,-38r118,0r0,38","w":180},"\u00a8":{"d":"155,-219r-48,0r0,-52r48,0r0,52xm73,-219r-48,0r0,-52r48,0r0,52","w":180},"\u00b8":{"d":"120,20r-13,52r-53,0r24,-52r42,0","w":180},"\u00c6":{"d":"346,0r-174,0r0,-54r-77,0r-27,54r-68,0r133,-256r213,0r0,56r-111,0r0,43r95,0r0,56r-95,0r0,45r111,0r0,56xm172,-106r0,-94r-49,94r49,0","w":364},"\u00aa":{"d":"100,-114v-26,30,-90,8,-85,-36v-4,-33,38,-51,84,-45v6,-29,-36,-30,-48,-13r-29,-30v33,-37,125,-24,125,36r0,100r-47,0r0,-12xm76,-139v16,0,25,-6,23,-25v-16,0,-38,-3,-38,12v0,7,5,13,15,13","w":164},"\u0141":{"d":"205,0r-171,0r0,-78r-21,14r0,-53r21,-14r0,-125r63,0r0,86r41,-26r0,52r-41,26r0,62r108,0r0,56","w":215},"\u00d8":{"d":"185,-231v29,24,24,64,28,103v8,83,-49,153,-136,124r-9,20r-43,0r20,-41v-26,-28,-27,-63,-27,-103v0,-84,47,-154,135,-124r10,-20r42,0xm115,-202v-37,10,-31,9,-34,74v0,14,0,25,1,33r49,-104v-4,-2,-10,-3,-16,-3xm115,-54v36,-12,32,-8,35,-74v0,-14,0,-26,-1,-34r-50,104v4,3,10,4,16,4","w":230},"\u0152":{"d":"18,-128v-13,-82,51,-160,132,-119r0,-9r174,0r0,56r-111,0r0,43r95,0r0,56r-95,0r0,45r111,0r0,56r-174,0r0,-9v-80,42,-146,-37,-132,-119xm115,-54v36,-12,35,-8,35,-74v0,-66,1,-63,-35,-74v-37,10,-34,8,-34,74v0,67,-2,61,34,74","w":342},"\u00ba":{"d":"84,-258v52,0,67,26,67,79v0,55,-16,74,-67,79v-51,-5,-67,-25,-67,-79v0,-54,15,-79,67,-79xm84,-143v19,0,19,-15,19,-36v0,-21,0,-37,-19,-37v-20,0,-20,16,-20,37v0,21,1,36,20,36","w":167},"\u00e6":{"d":"139,-21v-46,45,-129,25,-129,-40v0,-43,48,-63,105,-56v8,-36,-46,-36,-60,-16r-37,-37v26,-34,99,-33,132,-10v58,-42,148,4,139,76r0,26r-116,0v-4,34,61,38,74,14r35,36v-30,36,-104,42,-143,7xm230,-117v6,-32,-44,-39,-54,-15v-2,5,-3,10,-3,15r57,0xm86,-46v22,1,30,-10,29,-32v-20,0,-50,-4,-49,16v0,9,7,16,20,16","w":302},"\u0131":{"d":"81,0r-59,0r0,-194r59,0r0,194","w":103},"\u0142":{"d":"118,0v-54,7,-91,-19,-91,-57r0,-43r-18,10r0,-49r18,-11r0,-106r59,0r0,71r17,-11r0,49r-17,11r0,74v-1,16,18,11,32,12r0,50","w":125},"\u00f8":{"d":"15,-97v0,-80,51,-112,121,-92r13,-21r33,0r-22,38v21,22,23,46,23,75v0,80,-51,112,-121,92r-13,21r-33,0r22,-38v-21,-22,-23,-45,-23,-75xm111,-140v-33,-14,-40,24,-36,61xm87,-54v33,14,40,-24,36,-61","w":198},"\u0153":{"d":"15,-97v0,-67,21,-99,84,-99v26,0,44,9,56,19v55,-47,152,-1,142,73r0,26r-116,0v-4,34,61,38,75,14r35,36v-28,34,-96,41,-137,12v-12,10,-29,18,-55,18v-63,0,-84,-33,-84,-99xm239,-117v6,-31,-46,-39,-54,-15v-3,5,-4,10,-4,15r58,0xm99,-51v23,0,25,-19,24,-46v0,-27,-1,-46,-24,-46v-23,0,-25,19,-24,46v0,27,1,46,24,46","w":311},"\u00df":{"d":"133,-191v0,-12,-10,-17,-24,-16v-21,0,-27,8,-27,25r0,182r-60,0r0,-187v0,-53,39,-71,87,-71v49,0,83,20,83,65v0,23,-13,34,-22,39v27,5,22,56,22,92v1,49,-30,66,-83,62r0,-50v34,6,22,-35,24,-63v1,-14,-9,-19,-24,-18r0,-45v13,0,23,0,24,-15","w":210},"\u00d0":{"d":"131,-256v69,-5,107,63,96,128v10,65,-26,128,-96,128r-95,0r0,-105r-23,0r0,-49r23,0r0,-102r95,0xm99,-56v58,-4,65,4,65,-72v0,-43,-3,-50,-7,-58v-8,-16,-34,-14,-58,-14r0,46r32,0r0,49r-32,0r0,49","w":244},"\u00f0":{"d":"18,-93v-1,-61,21,-88,73,-95r-7,-15r-40,0r0,-41r20,0r-8,-16r64,0r7,16r35,0r0,41r-14,0v38,65,61,209,-49,205v-61,-2,-80,-31,-81,-95xm99,-51v21,0,22,-17,22,-42v0,-25,-1,-42,-22,-42v-21,0,-22,17,-22,42v0,25,1,42,22,42","w":198},"\u0160":{"d":"198,-78v1,91,-143,104,-196,46r40,-40v20,27,117,25,89,-20v-27,-15,-81,-10,-99,-34v-41,-53,-5,-132,76,-132v37,0,64,8,86,30r-40,40v-28,-30,-95,-15,-74,20v24,16,84,9,99,33v14,13,19,33,19,57xm179,-346r-49,64r-46,0r-49,-64r43,0r29,30r28,-30r44,0","w":213},"\u0161":{"d":"172,-63v0,46,-39,65,-84,65v-29,0,-57,-1,-84,-28r38,-38v16,16,37,16,47,16v20,0,40,-22,11,-25v-45,-5,-86,-8,-86,-59v0,-74,111,-81,153,-40r-36,36v-14,-22,-90,-6,-47,11v49,0,88,20,88,62xm163,-284r-49,64r-46,0r-49,-64r44,0r28,30r29,-30r43,0","w":181},"\u00dd":{"d":"218,-256r-78,152r0,104r-63,0r0,-104r-77,-152r69,0r40,92r40,-92r69,0xm166,-346r-43,64r-35,0r17,-64r61,0","w":217},"\u00fd":{"d":"188,-194r-80,217v-10,34,-38,46,-81,42r0,-53v25,5,33,-11,37,-31r-64,-175r62,0r33,101r31,-101r62,0xm150,-284r-43,64r-35,0r17,-64r61,0","w":185},"\u00de":{"d":"215,-130v0,55,-51,93,-126,83r0,47r-63,0r0,-256r63,0r0,44v74,-9,126,26,126,82xm152,-130v0,-27,-33,-28,-63,-26r0,52v29,2,63,1,63,-26","w":225},"\u00fe":{"d":"125,-196v52,-3,64,50,64,99v0,48,-11,99,-64,99v-19,0,-33,-5,-44,-16r0,77r-59,0r0,-319r59,0r0,76v11,-11,25,-16,44,-16xm130,-97v0,-28,-2,-46,-24,-46v-22,0,-25,18,-25,46v0,28,3,46,25,46v22,0,24,-18,24,-46","w":205},"\u017d":{"d":"185,0r-174,0r0,-49r98,-151r-94,0r0,-56r170,0r0,49r-99,151r99,0r0,56xm170,-346r-49,64r-45,0r-49,-64r43,0r28,30r29,-30r43,0","w":195},"\u017e":{"d":"162,0r-151,0r0,-44r74,-96r-70,0r0,-54r147,0r0,44r-76,97r76,0r0,53xm160,-284r-49,64r-45,0r-49,-64r43,0r28,30r29,-30r43,0","w":176},"\u00bd":{"d":"311,0r-103,0r0,-37r54,-56v11,-7,11,-23,-2,-25v-4,0,-11,2,-11,11r-41,0v0,-32,25,-48,52,-48v50,0,69,62,30,88r-32,30r53,0r0,37xm237,-256r-122,256r-45,0r122,-256r45,0xm89,-103r-42,0r0,-107r-34,30r0,-47r34,-29r42,0r0,153","w":325},"\u00bc":{"d":"299,-19r-9,0r0,19r-39,0r0,-19r-65,0r0,-40r50,-95r46,0r-51,95r20,0r0,-13r39,0r0,13r9,0r0,40xm237,-256r-122,256r-45,0r122,-256r45,0xm89,-103r-42,0r0,-107r-34,30r0,-47r34,-29r42,0r0,153","w":313},"\u00b9":{"d":"89,-103r-42,0r0,-107r-34,30r0,-47r34,-29r42,0r0,153","w":111},"\u00be":{"d":"306,-19r-9,0r0,19r-39,0r0,-19r-65,0r0,-40r50,-95r46,0r-50,95r19,0r0,-13r39,0r0,13r9,0r0,40xm244,-256r-122,256r-45,0r122,-256r45,0xm121,-150v0,33,-26,49,-54,49v-26,0,-53,-14,-53,-51r42,0v0,8,4,13,11,13v7,0,12,-4,12,-12v-1,-8,-8,-14,-18,-12r0,-36v18,5,23,-20,7,-21v-5,0,-10,3,-10,11r-42,0v0,-30,24,-49,52,-49v44,0,66,54,37,76v6,6,16,14,16,32","w":320},"\u00b3":{"d":"121,-150v0,33,-26,49,-54,49v-26,0,-53,-14,-53,-51r42,0v0,8,4,13,11,13v7,0,12,-4,12,-12v-1,-8,-8,-14,-18,-12r0,-36v18,5,23,-20,7,-21v-5,0,-10,3,-10,11r-42,0v0,-30,24,-49,52,-49v44,0,66,54,37,76v6,6,16,14,16,32","w":135},"\u00b2":{"d":"118,-103r-104,0r0,-37r55,-55v11,-8,11,-24,-3,-25v-4,0,-10,1,-10,10r-42,0v0,-32,25,-48,52,-48v51,0,70,62,30,88r-31,30r53,0r0,37","w":132},"\u00a6":{"d":"95,-157r-59,0r0,-126r59,0r0,126xm95,27r-59,0r0,-126r59,0r0,126","w":131},"\u00d7":{"d":"186,-58r-37,37r-49,-48r-48,48r-38,-37r49,-48r-49,-49r37,-37r49,48r48,-48r38,37r-49,49"},"\u00c4":{"d":"235,0r-66,0r-12,-38r-79,0r-12,38r-66,0r93,-256r49,0xm141,-91r-22,-68r-23,68r45,0xm182,-281r-48,0r0,-52r48,0r0,52xm101,-281r-48,0r0,-52r48,0r0,52","w":235,"k":{"\u0152":4,"y":11,"v":11,"Y":13,"W":13,"V":13,"T":22,"Q":4,"O":4,"G":4,"C":4}},"\u00c5":{"d":"235,0r-66,0r-12,-38r-79,0r-12,38r-66,0r93,-256r49,0xm141,-91r-22,-68r-23,68r45,0xm167,-321v0,27,-23,49,-50,49v-27,0,-49,-22,-49,-49v0,-27,22,-50,49,-50v27,0,50,22,50,50xm136,-321v0,-10,-9,-19,-19,-19v-10,0,-18,9,-18,19v0,10,8,18,18,18v10,0,19,-8,19,-18","w":235,"k":{"y":11,"v":11,"Y":13,"W":13,"V":13,"T":22,"Q":4,"O":4,"G":4,"C":4}},"\u00c7":{"d":"81,-128v0,66,-2,63,34,74v21,0,29,-13,33,-27r64,0v-9,57,-48,83,-97,83v-68,0,-106,-61,-97,-130v-8,-68,28,-130,97,-130v49,0,88,26,97,83r-64,0v-4,-14,-12,-27,-33,-27v-37,9,-34,9,-34,74xm139,20r-13,52r-53,0r24,-52r42,0","w":219,"k":{"Y":4,"X":4,"W":4,"V":4,"T":7,"A":4}},"\u00c9":{"d":"200,0r-174,0r0,-256r174,0r0,56r-111,0r0,43r95,0r0,56r-95,0r0,45r111,0r0,56xm168,-346r-42,64r-36,0r18,-64r60,0","w":218},"\u00d1":{"d":"226,0r-55,0r-82,-129r0,129r-63,0r0,-256r55,0r82,129r0,-129r63,0r0,256xm57,-314v26,-34,59,-21,92,-9v6,0,12,-1,21,-10r25,25v-26,34,-60,21,-93,9v-6,0,-12,1,-21,10","w":252},"\u00d6":{"d":"115,-258v70,0,107,61,98,130v8,69,-28,130,-98,130v-69,0,-106,-61,-97,-130v-8,-68,27,-130,97,-130xm115,-54v36,-12,35,-8,35,-74v0,-66,1,-63,-35,-74v-37,10,-34,8,-34,74v0,67,-2,61,34,74xm180,-281r-48,0r0,-52r48,0r0,52xm99,-281r-49,0r0,-52r49,0r0,52","w":230,"k":{"Y":4,"X":4,"W":4,"V":4,"T":7,"A":4}},"\u00dc":{"d":"216,-90v0,56,-45,92,-98,92v-53,0,-96,-36,-96,-92r0,-166r63,0r0,165v0,24,12,37,33,37v21,0,35,-13,35,-37r0,-165r63,0r0,166xm184,-281r-49,0r0,-52r49,0r0,52xm102,-281r-48,0r0,-52r48,0r0,52","w":237},"\u00e1":{"d":"116,-16v-34,38,-113,11,-106,-45v-5,-42,48,-63,105,-56v8,-36,-46,-36,-60,-16r-37,-37v41,-47,156,-32,156,44r0,126r-58,0r0,-16xm86,-46v22,1,30,-10,29,-32v-20,0,-50,-4,-49,16v0,9,7,16,20,16xm153,-284r-42,64r-36,0r18,-64r60,0","w":192},"\u00e0":{"d":"116,-16v-34,38,-113,11,-106,-45v-5,-42,48,-63,105,-56v8,-36,-46,-36,-60,-16r-37,-37v41,-47,156,-32,156,44r0,126r-58,0r0,-16xm86,-46v22,1,30,-10,29,-32v-20,0,-50,-4,-49,16v0,9,7,16,20,16xm117,-220r-36,0r-42,-64r60,0","w":192},"\u00e2":{"d":"116,-16v-34,38,-113,11,-106,-45v-5,-42,48,-63,105,-56v8,-36,-46,-36,-60,-16r-37,-37v41,-47,156,-32,156,44r0,126r-58,0r0,-16xm86,-46v22,1,30,-10,29,-32v-20,0,-50,-4,-49,16v0,9,7,16,20,16xm167,-220r-43,0r-28,-29r-29,29r-43,0r49,-64r45,0","w":192},"\u00e4":{"d":"116,-16v-34,38,-113,11,-106,-45v-5,-42,48,-63,105,-56v8,-36,-46,-36,-60,-16r-37,-37v41,-47,156,-32,156,44r0,126r-58,0r0,-16xm86,-46v22,1,30,-10,29,-32v-20,0,-50,-4,-49,16v0,9,7,16,20,16xm161,-219r-49,0r0,-52r49,0r0,52xm79,-219r-48,0r0,-52r48,0r0,52","w":192},"\u00e3":{"d":"116,-16v-34,38,-113,11,-106,-45v-5,-42,48,-63,105,-56v8,-36,-46,-36,-60,-16r-37,-37v41,-47,156,-32,156,44r0,126r-58,0r0,-16xm86,-46v22,1,30,-10,29,-32v-20,0,-50,-4,-49,16v0,9,7,16,20,16xm26,-252v26,-34,60,-21,93,-9v6,0,12,-1,21,-10r25,25v-26,34,-60,21,-93,9v-6,0,-12,0,-21,9","w":192},"\u00e5":{"d":"116,-16v-34,38,-113,11,-106,-45v-5,-42,48,-63,105,-56v8,-36,-46,-36,-60,-16r-37,-37v41,-47,156,-32,156,44r0,126r-58,0r0,-16xm86,-46v22,1,30,-10,29,-32v-20,0,-50,-4,-49,16v0,9,7,16,20,16xm145,-263v0,27,-22,50,-49,50v-27,0,-50,-23,-50,-50v0,-27,23,-50,50,-50v27,0,49,22,49,50xm114,-263v0,-10,-8,-19,-18,-19v-10,0,-19,9,-19,19v0,10,9,19,19,19v10,0,18,-9,18,-19","w":192},"\u00e7":{"d":"73,-97v-6,41,29,60,52,34r40,40v-16,16,-37,25,-64,25v-33,0,-87,-14,-87,-99v0,-85,54,-99,87,-99v27,0,48,9,64,25r-40,40v-23,-26,-58,-7,-52,34xm120,20r-13,52r-53,0r24,-52r42,0","w":171,"k":{"\u0153":7,"o":7,"e":7}},"\u00e9":{"d":"188,-78r-116,0v-4,34,61,38,74,14r35,36v-20,20,-39,30,-75,30v-43,0,-92,-15,-92,-99v0,-63,35,-99,86,-99v65,0,94,49,88,118xm129,-117v6,-31,-46,-39,-54,-15v-3,5,-3,10,-3,15r57,0xm159,-284r-42,64r-36,0r18,-64r60,0","w":201,"k":{"y":4,"w":4,"v":4}},"\u00e8":{"d":"188,-78r-116,0v-4,34,61,38,74,14r35,36v-20,20,-39,30,-75,30v-43,0,-92,-15,-92,-99v0,-63,35,-99,86,-99v65,0,94,49,88,118xm129,-117v6,-31,-46,-39,-54,-15v-3,5,-3,10,-3,15r57,0xm123,-220r-36,0r-42,-64r60,0","w":201,"k":{"y":4,"w":4,"v":4}},"\u00ea":{"d":"188,-78r-116,0v-4,34,61,38,74,14r35,36v-20,20,-39,30,-75,30v-43,0,-92,-15,-92,-99v0,-63,35,-99,86,-99v65,0,94,49,88,118xm129,-117v6,-31,-46,-39,-54,-15v-3,5,-3,10,-3,15r57,0xm174,-220r-44,0r-28,-29r-29,29r-43,0r49,-64r46,0","w":201,"k":{"y":4,"w":4,"v":4}},"\u00eb":{"d":"188,-78r-116,0v-4,34,61,38,74,14r35,36v-20,20,-39,30,-75,30v-43,0,-92,-15,-92,-99v0,-63,35,-99,86,-99v65,0,94,49,88,118xm129,-117v6,-31,-46,-39,-54,-15v-3,5,-3,10,-3,15r57,0xm167,-219r-49,0r0,-52r49,0r0,52xm85,-219r-48,0r0,-52r48,0r0,52","w":201,"k":{"y":4,"w":4,"v":4}},"\u00ed":{"d":"81,0r-59,0r0,-194r59,0r0,194xm103,-284r-43,64r-36,0r18,-64r61,0","w":103},"\u00ec":{"d":"81,0r-59,0r0,-194r59,0r0,194xm100,-220r-35,0r-43,-64r61,0","w":103},"\u00ee":{"d":"81,0r-59,0r0,-194r59,0r0,194xm166,-220r-44,0r-28,-29r-28,29r-44,0r49,-64r46,0","w":103},"\u00ef":{"d":"81,0r-59,0r0,-194r59,0r0,194xm152,-219r-48,0r0,-52r48,0r0,52xm71,-219r-49,0r0,-52r49,0r0,52","w":103},"\u00f1":{"d":"80,-178v43,-43,108,-3,108,54r0,124r-59,0r0,-116v0,-22,-16,-27,-24,-27v-8,0,-24,5,-24,27r0,116r-59,0r0,-194r58,0r0,16xm36,-252v26,-34,60,-21,93,-9v6,0,11,-1,20,-10r26,25v-27,34,-60,21,-94,9v-6,0,-12,0,-21,9","w":208},"\u00f3":{"d":"99,-196v63,6,84,33,84,99v0,67,-21,92,-84,99v-63,-6,-84,-33,-84,-99v0,-67,21,-92,84,-99xm99,-51v23,0,25,-19,24,-46v0,-27,-1,-46,-24,-46v-23,0,-25,19,-24,46v0,27,1,46,24,46xm156,-284r-42,64r-36,0r18,-64r60,0","w":198,"k":{"y":4,"w":4,"v":4}},"\u00f2":{"d":"99,-196v63,6,84,33,84,99v0,67,-21,92,-84,99v-63,-6,-84,-33,-84,-99v0,-67,21,-92,84,-99xm99,-51v23,0,25,-19,24,-46v0,-27,-1,-46,-24,-46v-23,0,-25,19,-24,46v0,27,1,46,24,46xm120,-220r-36,0r-42,-64r60,0","w":198,"k":{"y":4,"w":4,"v":4}},"\u00f4":{"d":"99,-196v63,6,84,33,84,99v0,67,-21,92,-84,99v-63,-6,-84,-33,-84,-99v0,-67,21,-92,84,-99xm99,-51v23,0,25,-19,24,-46v0,-27,-1,-46,-24,-46v-23,0,-25,19,-24,46v0,27,1,46,24,46xm171,-220r-44,0r-28,-29r-28,29r-44,0r49,-64r46,0","w":198,"k":{"y":4,"w":4,"v":4}},"\u00f6":{"d":"99,-196v63,6,84,33,84,99v0,67,-21,92,-84,99v-63,-6,-84,-33,-84,-99v0,-67,21,-92,84,-99xm99,-51v23,0,25,-19,24,-46v0,-27,-1,-46,-24,-46v-23,0,-25,19,-24,46v0,27,1,46,24,46xm164,-219r-48,0r0,-52r48,0r0,52xm82,-219r-48,0r0,-52r48,0r0,52","w":198,"k":{"y":4,"w":4,"v":4}},"\u00f5":{"d":"99,-196v63,6,84,33,84,99v0,67,-21,92,-84,99v-63,-6,-84,-33,-84,-99v0,-67,21,-92,84,-99xm99,-51v23,0,25,-19,24,-46v0,-27,-1,-46,-24,-46v-23,0,-25,19,-24,46v0,27,1,46,24,46xm30,-252v26,-34,59,-21,92,-9v6,0,12,-1,21,-10r25,25v-26,34,-60,21,-93,9v-6,0,-12,0,-21,9","w":198,"k":{"y":4,"w":4,"v":4}},"\u00fa":{"d":"129,-16v-43,43,-108,4,-108,-54r0,-124r59,0r0,116v0,22,15,27,23,27v8,0,24,-5,24,-27r0,-116r59,0r0,194r-57,0r0,-16xm161,-284r-43,64r-36,0r18,-64r61,0","w":208},"\u00f9":{"d":"129,-16v-43,43,-108,4,-108,-54r0,-124r59,0r0,116v0,22,15,27,23,27v8,0,24,-5,24,-27r0,-116r59,0r0,194r-57,0r0,-16xm124,-220r-35,0r-43,-64r61,0","w":208},"\u00fb":{"d":"129,-16v-43,43,-108,4,-108,-54r0,-124r59,0r0,116v0,22,15,27,23,27v8,0,24,-5,24,-27r0,-116r59,0r0,194r-57,0r0,-16xm175,-220r-43,0r-29,-29r-28,29r-43,0r49,-64r45,0","w":208},"\u00fc":{"d":"129,-16v-43,43,-108,4,-108,-54r0,-124r59,0r0,116v0,22,15,27,23,27v8,0,24,-5,24,-27r0,-116r59,0r0,194r-57,0r0,-16xm168,-219r-48,0r0,-52r48,0r0,52xm87,-219r-48,0r0,-52r48,0r0,52","w":208},"\u00b0":{"d":"158,-192v0,39,-32,70,-71,70v-39,0,-70,-31,-70,-70v0,-39,31,-71,70,-71v39,0,71,32,71,71xm111,-192v0,-13,-11,-24,-24,-24v-13,0,-23,11,-23,24v0,13,10,23,23,23v13,0,24,-10,24,-23","w":174},"\u00ae":{"d":"278,-128v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130v0,-72,58,-130,130,-130v72,0,130,58,130,130xm241,-128v0,-56,-40,-96,-93,-96v-53,0,-93,40,-93,96v0,56,40,95,93,95v53,0,93,-39,93,-95xm209,-60r-42,0r-21,-51r-11,0r0,51r-37,0r0,-136r61,0v50,-3,59,65,24,79xm168,-152v0,-14,-17,-15,-33,-14r0,27v15,1,33,1,33,-13","w":295},"\u00a9":{"d":"278,-128v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130v0,-72,58,-130,130,-130v72,0,130,58,130,130xm241,-128v0,-56,-40,-96,-93,-96v-53,0,-93,40,-93,96v0,56,40,95,93,95v53,0,93,-39,93,-95xm199,-78v-39,35,-113,22,-113,-50v0,-72,73,-85,113,-51r-24,25v-21,-20,-52,-11,-52,26v0,37,31,45,52,26","w":295},"\u00b1":{"d":"183,-134r-55,0r0,55r-56,0r0,-55r-54,0r0,-55r54,0r0,-55r56,0r0,55r55,0r0,55xm183,0r-165,0r0,-55r165,0r0,55"},"\u00b5":{"d":"188,0r-58,0r0,-16v-14,13,-30,19,-49,18r0,61r-59,0r0,-257r59,0r0,116v0,22,16,27,24,27v8,0,24,-5,24,-27r0,-116r59,0r0,194","w":210},"\u00ac":{"d":"185,-32r-56,0r0,-54r-114,0r0,-55r170,0r0,109"},"\u00a0":{"w":79},"\u00c0":{"d":"235,0r-66,0r-12,-38r-79,0r-12,38r-66,0r93,-256r49,0xm141,-91r-22,-68r-23,68r45,0xm138,-282r-35,0r-43,-64r61,0","w":235,"k":{"y":11,"v":11,"Y":13,"W":13,"V":13,"T":22,"Q":4,"O":4,"G":4,"C":4}},"\u00c3":{"d":"235,0r-66,0r-12,-38r-79,0r-12,38r-66,0r93,-256r49,0xm141,-91r-22,-68r-23,68r45,0xm48,-314v26,-34,60,-21,93,-9v6,0,12,-1,21,-10r25,25v-27,34,-60,21,-94,9v-6,0,-12,1,-21,10","w":235,"k":{"y":11,"v":11,"Y":13,"W":13,"V":13,"T":22,"Q":4,"O":4,"G":4,"C":4}},"\u00d5":{"d":"115,-258v70,0,107,61,98,130v8,69,-28,130,-98,130v-69,0,-106,-61,-97,-130v-8,-68,27,-130,97,-130xm115,-54v36,-12,35,-8,35,-74v0,-66,1,-63,-35,-74v-37,10,-34,8,-34,74v0,67,-2,61,34,74xm46,-314v26,-34,60,-21,93,-9v6,0,11,-1,20,-10r26,25v-27,34,-60,21,-94,9v-6,0,-12,1,-21,10","w":230,"k":{"Y":4,"X":4,"W":4,"V":4,"T":7,"A":4}},"\u00f7":{"d":"128,-156r-56,0r0,-56r56,0r0,56xm185,-78r-170,0r0,-56r170,0r0,56xm128,0r-56,0r0,-56r56,0r0,56"},"\u00ff":{"d":"188,-194r-80,217v-10,34,-38,46,-81,42r0,-53v25,5,33,-11,37,-31r-64,-175r62,0r33,101r31,-101r62,0xm157,-219r-48,0r0,-52r48,0r0,52xm76,-219r-48,0r0,-52r48,0r0,52","w":185},"\u0178":{"d":"218,-256r-78,152r0,104r-63,0r0,-104r-77,-152r69,0r40,92r40,-92r69,0xm174,-281r-49,0r0,-52r49,0r0,52xm92,-281r-48,0r0,-52r48,0r0,52","w":217},"\u00c2":{"d":"235,0r-66,0r-12,-38r-79,0r-12,38r-66,0r93,-256r49,0xm141,-91r-22,-68r-23,68r45,0xm189,-282r-43,0r-29,-29r-28,29r-43,0r49,-64r45,0","w":235,"k":{"v":11,"Y":13,"W":13,"V":13,"T":22,"Q":4,"O":4,"G":4,"C":4}},"\u00ca":{"d":"200,0r-174,0r0,-256r174,0r0,56r-111,0r0,43r95,0r0,56r-95,0r0,45r111,0r0,56xm183,-282r-44,0r-28,-29r-29,29r-43,0r49,-64r46,0","w":218},"\u00c1":{"d":"235,0r-66,0r-12,-38r-79,0r-12,38r-66,0r93,-256r49,0xm141,-91r-22,-68r-23,68r45,0xm175,-346r-43,64r-36,0r18,-64r61,0","w":235,"k":{"y":11,"v":11,"Y":13,"W":13,"V":13,"T":22,"Q":4,"O":4,"G":4,"C":4}},"\u00cb":{"d":"200,0r-174,0r0,-256r174,0r0,56r-111,0r0,43r95,0r0,56r-95,0r0,45r111,0r0,56xm176,-281r-49,0r0,-52r49,0r0,52xm94,-281r-48,0r0,-52r48,0r0,52","w":218},"\u00c8":{"d":"200,0r-174,0r0,-256r174,0r0,56r-111,0r0,43r95,0r0,56r-95,0r0,45r111,0r0,56xm132,-282r-36,0r-42,-64r60,0","w":218},"\u00cd":{"d":"89,0r-63,0r0,-256r63,0r0,256xm115,-346r-43,64r-35,0r17,-64r61,0","w":114},"\u00ce":{"d":"89,0r-63,0r0,-256r63,0r0,256xm169,-282r-43,0r-28,-29r-29,29r-43,0r49,-64r45,0","w":114},"\u00cf":{"d":"89,0r-63,0r0,-256r63,0r0,256xm156,-281r-49,0r0,-52r49,0r0,52xm74,-281r-48,0r0,-52r48,0r0,52","w":114},"\u00cc":{"d":"89,0r-63,0r0,-256r63,0r0,256xm104,-282r-36,0r-42,-64r60,0","w":114},"\u00d3":{"d":"115,-258v70,0,107,61,98,130v8,69,-28,130,-98,130v-69,0,-106,-61,-97,-130v-8,-68,27,-130,97,-130xm115,-54v36,-12,35,-8,35,-74v0,-66,1,-63,-35,-74v-37,10,-34,8,-34,74v0,67,-2,61,34,74xm172,-346r-42,64r-36,0r18,-64r60,0","w":230,"k":{"Y":4,"X":4,"W":4,"V":4,"T":7,"A":4}},"\u00d4":{"d":"115,-258v70,0,107,61,98,130v8,69,-28,130,-98,130v-69,0,-106,-61,-97,-130v-8,-68,27,-130,97,-130xm115,-54v36,-12,35,-8,35,-74v0,-66,1,-63,-35,-74v-37,10,-34,8,-34,74v0,67,-2,61,34,74xm187,-282r-43,0r-29,-29r-28,29r-43,0r49,-64r45,0","w":230,"k":{"Y":4,"X":4,"W":4,"V":4,"T":7,"A":4}},"\u00d2":{"d":"115,-258v70,0,107,61,98,130v8,69,-28,130,-98,130v-69,0,-106,-61,-97,-130v-8,-68,27,-130,97,-130xm115,-54v36,-12,35,-8,35,-74v0,-66,1,-63,-35,-74v-37,10,-34,8,-34,74v0,67,-2,61,34,74xm136,-282r-36,0r-42,-64r60,0","w":230,"k":{"\u00c6":4,"Y":4,"X":4,"W":4,"V":4,"T":7,"A":4}},"\u00da":{"d":"216,-90v0,56,-45,92,-98,92v-53,0,-96,-36,-96,-92r0,-166r63,0r0,165v0,24,12,37,33,37v21,0,35,-13,35,-37r0,-165r63,0r0,166xm176,-346r-42,64r-36,0r18,-64r60,0","w":237},"\u00db":{"d":"216,-90v0,56,-45,92,-98,92v-53,0,-96,-36,-96,-92r0,-166r63,0r0,165v0,24,12,37,33,37v21,0,35,-13,35,-37r0,-165r63,0r0,166xm190,-282r-43,0r-28,-29r-29,29r-43,0r49,-64r45,0","w":237},"\u00d9":{"d":"216,-90v0,56,-45,92,-98,92v-53,0,-96,-36,-96,-92r0,-166r63,0r0,165v0,24,12,37,33,37v21,0,35,-13,35,-37r0,-165r63,0r0,166xm140,-282r-36,0r-42,-64r60,0","w":237}}});Cufon.replace($('.cufon, h1').not('.no-cufon, .ie7 #love h1'),{hover:true})
;(function(jQuery,undefined){var stepHooks="backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color outlineColor".split(" "),rplusequals=/^([\-+])=\s*(\d+\.?\d*)/,stringParsers=[{re:/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,parse:function(execResult){return[execResult[1],execResult[2],execResult[3],execResult[4]];}},{re:/rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,parse:function(execResult){return[2.55*execResult[1],2.55*execResult[2],2.55*execResult[3],execResult[4]];}},{re:/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/,parse:function(execResult){return[parseInt(execResult[1],16),parseInt(execResult[2],16),parseInt(execResult[3],16)];}},{re:/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/,parse:function(execResult){return[parseInt(execResult[1]+execResult[1],16),parseInt(execResult[2]+execResult[2],16),parseInt(execResult[3]+execResult[3],16)];}},{re:/hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d+(?:\.\d+)?)\s*)?\)/,space:"hsla",parse:function(execResult){return[execResult[1],execResult[2]/100,execResult[3]/100,execResult[4]];}}],color=jQuery.Color=function(color,green,blue,alpha){return new jQuery.Color.fn.parse(color,green,blue,alpha);},spaces={rgba:{cache:"_rgba",props:{red:{idx:0,type:"byte",empty:true},green:{idx:1,type:"byte",empty:true},blue:{idx:2,type:"byte",empty:true},alpha:{idx:3,type:"percent",def:1}}},hsla:{cache:"_hsla",props:{hue:{idx:0,type:"degrees",empty:true},saturation:{idx:1,type:"percent",empty:true},lightness:{idx:2,type:"percent",empty:true}}}},propTypes={"byte":{floor:true,min:0,max:255},"percent":{min:0,max:1},"degrees":{mod:360,floor:true}},rgbaspace=spaces.rgba.props,support=color.support={},colors,each=jQuery.each;spaces.hsla.props.alpha=rgbaspace.alpha;function clamp(value,prop,alwaysAllowEmpty){var type=propTypes[prop.type]||{},allowEmpty=prop.empty||alwaysAllowEmpty;if(allowEmpty&&value==null){return null;}
if(prop.def&&value==null){return prop.def;}
if(type.floor){value=~~value;}else{value=parseFloat(value);}
if(jQuery.isNaN(value)){return prop.def;}
if(type.mod){value=value%type.mod;return value<0?type.mod+value:value;}
return type.min>value?type.min:type.max<value?type.max:value;}
color.fn=color.prototype={constructor:color,parse:function(red,green,blue,alpha){if(red===undefined){this._rgba=[null,null,null,null];return this;}
if(red instanceof jQuery||red.nodeType){red=red instanceof jQuery?red.css(green):jQuery(red).css(green);green=undefined;}
var inst=this,type=jQuery.type(red),rgba=this._rgba=[],source;if(green!==undefined){red=[red,green,blue,alpha];type="array";}
if(type==="string"){red=red.toLowerCase();each(stringParsers,function(i,parser){var match=parser.re.exec(red),values=match&&parser.parse(match),parsed,spaceName=parser.space||"rgba",cache=spaces[spaceName].cache;if(values){parsed=inst[spaceName](values);inst[cache]=parsed[cache];rgba=inst._rgba=parsed._rgba;return false;}});if(rgba.length!==0){if(Math.max.apply(Math,rgba)===0){jQuery.extend(rgba,colors.transparent);}
return this;}
red=colors[red]||colors._default;return this.parse(red);}
if(type==="array"){each(rgbaspace,function(key,prop){rgba[prop.idx]=clamp(red[prop.idx],prop);});return this;}
if(type==="object"){if(red instanceof color){each(spaces,function(spaceName,space){if(red[space.cache]){inst[space.cache]=red[space.cache].slice();}});}else{each(spaces,function(spaceName,space){each(space.props,function(key,prop){var cache=space.cache;if(!inst[cache]&&space.to){if(red[key]==null||key==="alpha"){return;}
inst[cache]=space.to(inst._rgba);}
inst[cache][prop.idx]=clamp(red[key],prop,true);});});}
return this;}},is:function(compare){var is=color(compare),same=true,myself=this;each(spaces,function(_,space){var isCache=is[space.cache],localCache;if(isCache){localCache=myself[space.cache]||space.to&&space.to(myself._rgba)||[];each(space.props,function(_,prop){if(isCache[prop.idx]!=null){same=(isCache[prop.idx]==localCache[prop.idx]);return same;}});}
return same;});return same;},_space:function(){var used=[],inst=this;each(spaces,function(spaceName,space){if(inst[space.cache]){used.push(spaceName);}});return used.pop();},transition:function(other,distance){var end=color(other),spaceName=end._space(),space=spaces[spaceName],start=this[space.cache]||space.to(this._rgba),result=start.slice();end=end[space.cache];each(space.props,function(key,prop){var index=prop.idx,startValue=start[index],endValue=end[index],type=propTypes[prop.type]||{};if(endValue===null){return;}
if(startValue===null){result[index]=endValue;}else{if(type.mod){if(endValue-startValue>type.mod/2){startValue+=type.mod;}else if(startValue-endValue>type.mod/2){startValue-=type.mod;}}
result[prop.idx]=clamp((endValue-startValue)*distance+startValue,prop);}});return this[spaceName](result);},blend:function(opaque){if(this._rgba[3]===1){return this;}
var rgb=this._rgba.slice(),a=rgb.pop(),blend=color(opaque)._rgba;return color(jQuery.map(rgb,function(v,i){return(1-a)*blend[i]+a*v;}));},toRgbaString:function(){var prefix="rgba(",rgba=jQuery.map(this._rgba,function(v,i){return v==null?(i>2?1:0):v;});if(rgba[3]===1){rgba.pop();prefix="rgb(";}
return prefix+rgba.join(",")+")";},toHslaString:function(){var prefix="hsla(",hsla=jQuery.map(this.hsla(),function(v,i){if(v==null){v=i>2?1:0;}
if(i&&i<3){v=Math.round(v*100)+"%";}
return v;});if(hsla[3]==1){hsla.pop();prefix="hsl(";}
return prefix+hsla.join(",")+")";},toHexString:function(includeAlpha){var rgba=this._rgba.slice(),alpha=rgba.pop();if(includeAlpha){rgba.push(~~(alpha*255));}
return"#"+jQuery.map(rgba,function(v,i){v=(v||0).toString(16);return v.length==1?"0"+v:v;}).join("");},toString:function(){return this._rgba[3]===0?"transparent":this.toRgbaString();}};color.fn.parse.prototype=color.fn;function hue2rgb(p,q,h){h=(h+1)%1;if(h*6<1){return p+(q-p)*6*h;}
if(h*2<1){return q;}
if(h*3<2){return p+(q-p)*((2/3)-h)*6;}
return p;}
spaces.hsla.to=function(rgba){if(rgba[0]==null||rgba[1]==null||rgba[2]==null){return[null,null,null,rgba[3]];}
var r=rgba[0]/255,g=rgba[1]/255,b=rgba[2]/255,a=rgba[3],max=Math.max(r,g,b),min=Math.min(r,g,b),diff=max-min,add=max+min,l=add*0.5,h,s;if(min===max){h=0;}else if(r===max){h=(60*(g-b)/diff)+360;}else if(g===max){h=(60*(b-r)/diff)+120;}else{h=(60*(r-g)/diff)+240;}
if(l===0||l===1){s=l;}else if(l<=0.5){s=diff/add;}else{s=diff/(2-add);}
return[Math.round(h)%360,s,l,a==null?1:a];};spaces.hsla.from=function(hsla){if(hsla[0]==null||hsla[1]==null||hsla[2]==null){return[null,null,null,hsla[3]];}
var h=hsla[0]/360,s=hsla[1],l=hsla[2],a=hsla[3],q=l<=0.5?l*(1+s):l+s-l*s,p=2*l-q,r,g,b;return[Math.round(hue2rgb(p,q,h+(1/3))*255),Math.round(hue2rgb(p,q,h)*255),Math.round(hue2rgb(p,q,h-(1/3))*255),a];};each(spaces,function(spaceName,space){var props=space.props,cache=space.cache,to=space.to,from=space.from;color.fn[spaceName]=function(value){if(to&&!this[cache]){this[cache]=to(this._rgba);}
if(value===undefined){return this[cache].slice();}
var type=jQuery.type(value),arr=(type==="array"||type==="object")?value:arguments,local=this[cache].slice(),ret;each(props,function(key,prop){var val=arr[type==="object"?key:prop.idx];if(val==null){val=local[prop.idx];}
local[prop.idx]=clamp(val,prop);});if(from){ret=color(from(local));ret[cache]=local;return ret;}else{return color(local);}};each(props,function(key,prop){if(color.fn[key]){return;}
color.fn[key]=function(value){var vtype=jQuery.type(value),fn=(key==='alpha'?(this._hsla?'hsla':'rgba'):spaceName),local=this[fn](),cur=local[prop.idx],match;if(vtype==="undefined"){return cur;}
if(vtype==="function"){value=value.call(this,cur);vtype=jQuery.type(value);}
if(value==null&&prop.empty){return this;}
if(vtype==="string"){match=rplusequals.exec(value);if(match){value=cur+parseFloat(match[2])*(match[1]==="+"?1:-1);}}
local[prop.idx]=value;return this[fn](local);};});});each(stepHooks,function(i,hook){jQuery.cssHooks[hook]={set:function(elem,value){value=color(value);if(!support.rgba&&value._rgba[3]!==1){var backgroundColor,curElem=hook==="backgroundColor"?elem.parentNode:elem;do{backgroundColor=jQuery.curCSS(curElem,"backgroundColor");}while((backgroundColor===""||backgroundColor==="transparent")&&(curElem=curElem.parentNode)&&curElem.style);value=value.blend(backgroundColor&&backgroundColor!=="transparent"?backgroundColor:"_default");}
value=value.toRgbaString();elem.style[hook]=value;}};jQuery.fx.step[hook]=function(fx){if(!fx.colorInit){fx.start=color(fx.elem,hook);fx.end=color(fx.end);fx.colorInit=true;}
jQuery.cssHooks[hook].set(fx.elem,fx.start.transition(fx.end,fx.pos));};});jQuery(function(){var div=document.createElement("div"),div_style=div.style;div_style.cssText="background-color:rgba(1,1,1,.5)";support.rgba=div_style.backgroundColor.indexOf("rgba")>-1;});colors=jQuery.Color.names={aqua:"#00ffff",azure:"#f0ffff",beige:"#f5f5dc",black:"#000000",blue:"#0000ff",brown:"#a52a2a",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgrey:"#a9a9a9",darkgreen:"#006400",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkviolet:"#9400d3",fuchsia:"#ff00ff",gold:"#ffd700",green:"#008000",indigo:"#4b0082",khaki:"#f0e68c",lightblue:"#add8e6",lightcyan:"#e0ffff",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightyellow:"#ffffe0",lime:"#00ff00",magenta:"#ff00ff",maroon:"#800000",navy:"#000080",olive:"#808000",orange:"#ffa500",pink:"#ffc0cb",purple:"#800080",violet:"#800080",red:"#ff0000",silver:"#c0c0c0",white:"#ffffff",yellow:"#ffff00",transparent:[null,null,null,0],_default:"#ffffff"};})(jQuery);
;(function($){$.fn.lazyload=function(options){var settings={threshold:0,failurelimit:0,event:"scroll",effect:"show",container:window};if(options){$.extend(settings,options);}
var elements=this;if("scroll"==settings.event){$(settings.container).bind("scroll",function(event){var counter=0;elements.each(function(){if($.abovethetop(this,settings)||$.leftofbegin(this,settings)){}else if(!$.belowthefold(this,settings)&&!$.rightoffold(this,settings)){$(this).trigger("appear");}else{if(counter++>settings.failurelimit){return false;}}});var temp=$.grep(elements,function(element){return!element.loaded;});elements=$(temp);});}
this.each(function(){var self=this;if(undefined==$(self).attr("original")){$(self).attr("original",$(self).attr("src"));}
if("scroll"!=settings.event||undefined==$(self).attr("src")||settings.placeholder==$(self).attr("src")||($.abovethetop(self,settings)||$.leftofbegin(self,settings)||$.belowthefold(self,settings)||$.rightoffold(self,settings))){if(settings.placeholder){$(self).attr("src",settings.placeholder);}else{$(self).removeAttr("src");}
self.loaded=false;}else{self.loaded=true;}
$(self).one("appear",function(){if(!this.loaded){$("<img />").bind("load",function(){$(self).hide().attr("src",$(self).attr("original"))
[settings.effect](settings.effectspeed);self.loaded=true;}).attr("src",$(self).attr("original"));};});if("scroll"!=settings.event){$(self).bind(settings.event,function(event){if(!self.loaded){$(self).trigger("appear");}});}});$(settings.container).trigger(settings.event);return this;};$.belowthefold=function(element,settings){if(settings.container===undefined||settings.container===window){var fold=$(window).height()+$(window).scrollTop();}else{var fold=$(settings.container).offset().top+$(settings.container).height();}
return fold<=$(element).offset().top-settings.threshold;};$.rightoffold=function(element,settings){if(settings.container===undefined||settings.container===window){var fold=$(window).width()+$(window).scrollLeft();}else{var fold=$(settings.container).offset().left+$(settings.container).width();}
return fold<=$(element).offset().left-settings.threshold;};$.abovethetop=function(element,settings){if(settings.container===undefined||settings.container===window){var fold=$(window).scrollTop();}else{var fold=$(settings.container).offset().top;}
return fold>=$(element).offset().top+settings.threshold+$(element).height();};$.leftofbegin=function(element,settings){if(settings.container===undefined||settings.container===window){var fold=$(window).scrollLeft();}else{var fold=$(settings.container).offset().left;}
return fold>=$(element).offset().left+settings.threshold+$(element).width();};$.extend($.expr[':'],{"below-the-fold":"$.belowthefold(a, {threshold : 0, container: window})","above-the-fold":"!$.belowthefold(a, {threshold : 0, container: window})","right-of-fold":"$.rightoffold(a, {threshold : 0, container: window})","left-of-fold":"!$.rightoffold(a, {threshold : 0, container: window})"});})(jQuery);
;(function($){$.fn.tweet=function(o){var s=$.extend({username:null,list:null,favorites:false,query:null,avatar_size:null,count:3,fetch:null,page:1,retweets:true,intro_text:null,outro_text:null,join_text:null,auto_join_text_default:"i said,",auto_join_text_ed:"i",auto_join_text_ing:"i am",auto_join_text_reply:"i replied to",auto_join_text_url:"i was looking at",loading_text:null,refresh_interval:null,twitter_url:"twitter.com",twitter_api_url:"api.twitter.com",twitter_search_url:"search.twitter.com",template:"{avatar}{time}{join}{text}",comparator:function(tweet1,tweet2){return tweet2["tweet_time"]-tweet1["tweet_time"];},filter:function(tweet){return true;}},o);var url_regexp=/\b((?:[a-z][\w-]+:(?:\/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?«»“”‘’]))/gi;function t(template,info){if(typeof template==="string"){var result=template;for(var key in info){var val=info[key];result=result.replace(new RegExp('{'+key+'}','g'),val===null?'':val);}
return result;}else return template(info);}
$.extend({tweet:{t:t}});function replacer(regex,replacement){return function(){var returning=[];this.each(function(){returning.push(this.replace(regex,replacement));});return $(returning);};}
$.fn.extend({linkUrl:replacer(url_regexp,function(match){var url=(/^[a-z]+:/i).test(match)?match:"http://"+match;return"<a href=\""+url+"\">"+match+"</a>";}),linkUser:replacer(/@(\w+)/gi,"@<a href=\"http://"+s.twitter_url+"/$1\">$1</a>"),linkHash:replacer(/(?:^| )[\#]+([\w\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u00ff\u0600-\u06ff]+)/gi,' <a href="http://'+s.twitter_search_url+'/search?q=&tag=$1&lang=all'+((s.username&&s.username.length==1)?'&from='+s.username.join("%2BOR%2B"):'')+'">#$1</a>'),capAwesome:replacer(/\b(awesome)\b/gi,'<span class="awesome">$1</span>'),capEpic:replacer(/\b(epic)\b/gi,'<span class="epic">$1</span>'),makeHeart:replacer(/(&lt;)+[3]/gi,"<tt class='heart'>&#x2665;</tt>")});function parse_date(date_str){return Date.parse(date_str.replace(/^([a-z]{3})( [a-z]{3} \d\d?)(.*)( \d{4})$/i,'$1,$2$4$3'));}
function relative_time(date){var relative_to=(arguments.length>1)?arguments[1]:new Date();var delta=parseInt((relative_to.getTime()-date)/1000,10);var r='';if(delta<60){r=delta+' seconden geleden';}else if(delta<120){r='a minute ago';}else if(delta<(45*60)){r=(parseInt(delta/60,10)).toString()+' minuten geleden';}else if(delta<(2*60*60)){r='an hour ago';}else if(delta<(24*60*60)){r=''+(parseInt(delta/3600,10)).toString()+' uren geleden';}else if(delta<(48*60*60)){r='a day ago';}else{r=(parseInt(delta/86400,10)).toString()+' dagen geleden';}
return'ongeveer '+r;}
function build_auto_join_text(text){if(text.match(/^(@([A-Za-z0-9-_]+)) .*/i)){return s.auto_join_text_reply;}else if(text.match(url_regexp)){return s.auto_join_text_url;}else if(text.match(/^((\w+ed)|just) .*/im)){return s.auto_join_text_ed;}else if(text.match(/^(\w*ing) .*/i)){return s.auto_join_text_ing;}else{return s.auto_join_text_default;}}
function build_api_url(){var proto=('https:'==document.location.protocol?'https:':'http:');var count=(s.fetch===null)?s.count:s.fetch;if(s.list){return proto+"//"+s.twitter_api_url+"/1/"+s.username[0]+"/lists/"+s.list+"/statuses.json?page="+s.page+"&per_page="+count+"&callback=?";}else if(s.favorites){return proto+"//"+s.twitter_api_url+"/favorites/"+s.username[0]+".json?page="+s.page+"&count="+count+"&callback=?";}else if(s.query===null&&s.username.length==1){return proto+'//'+s.twitter_api_url+'/1/statuses/user_timeline.json?screen_name='+s.username[0]+'&count='+count+(s.retweets?'&include_rts=1':'')+'&page='+s.page+'&callback=?';}else{var query=(s.query||'from:'+s.username.join(' OR from:'));return proto+'//'+s.twitter_search_url+'/search.json?&q='+encodeURIComponent(query)+'&rpp='+count+'&page='+s.page+'&callback=?';}}
function extract_template_data(item){var o={};o.item=item;o.source=item.source;o.screen_name=item.from_user||item.user.screen_name;o.avatar_size=s.avatar_size;o.avatar_url=item.profile_image_url||item.user.profile_image_url;o.retweet=typeof(item.retweeted_status)!='undefined';o.tweet_time=parse_date(item.created_at);o.join_text=s.join_text=="auto"?build_auto_join_text(item.text):s.join_text;o.tweet_id=item.id_str;o.twitter_base="http://"+s.twitter_url+"/";o.user_url=o.twitter_base+o.screen_name;o.tweet_url=o.user_url+"/status/"+o.tweet_id;o.reply_url=o.twitter_base+"intent/tweet?in_reply_to="+o.tweet_id;o.retweet_url=o.twitter_base+"intent/retweet?tweet_id="+o.tweet_id;o.favorite_url=o.twitter_base+"intent/favorite?tweet_id="+o.tweet_id;o.retweeted_screen_name=o.retweet&&item.retweeted_status.user.screen_name;o.tweet_relative_time=relative_time(o.tweet_time);o.tweet_raw_text=o.retweet?('RT @'+o.retweeted_screen_name+' '+item.retweeted_status.text):item.text;o.tweet_text=$([o.tweet_raw_text]).linkUrl().linkUser().linkHash()[0];o.tweet_text_fancy=$([o.tweet_text]).makeHeart().capAwesome().capEpic()[0];o.user=t('<a class="tweet_user" href="{user_url}">{screen_name}</a>',o);o.join=s.join_text?t(' <span class="tweet_join">{join_text}</span> ',o):' ';o.avatar=o.avatar_size?t('<a class="tweet_avatar" href="{user_url}"><img src="{avatar_url}" height="{avatar_size}" width="{avatar_size}" alt="{screen_name}\'s avatar" title="{screen_name}\'s avatar" border="0"/></a>',o):'';o.time=t('<span class="tweet_time"><a href="{tweet_url}" title="view tweet on twitter">{tweet_relative_time}</a></span>',o);o.text=t('<span class="tweet_text">{tweet_text_fancy}</span>',o);o.reply_action=t('<a class="tweet_action tweet_reply" href="{reply_url}">reply</a>',o);o.retweet_action=t('<a class="tweet_action tweet_retweet" href="{retweet_url}">retweet</a>',o);o.favorite_action=t('<a class="tweet_action tweet_favorite" href="{favorite_url}">favorite</a>',o);return o;}
return this.each(function(i,widget){var list=$('<ul class="tweet_list">').appendTo(widget);var intro='<p class="tweet_intro">'+s.intro_text+'</p>';var outro='<p class="tweet_outro">'+s.outro_text+'</p>';var loading=$('<p class="loading">'+s.loading_text+'</p>');if(s.username&&typeof(s.username)=="string"){s.username=[s.username];}
if(s.loading_text)$(widget).append(loading);$(widget).bind("tweet:load",function(){$.getJSON(build_api_url(),function(data){if(s.loading_text)loading.remove();if(s.intro_text)list.before(intro);list.empty();var tweets=$.map(data.results||data,extract_template_data);tweets=$.grep(tweets,s.filter).sort(s.comparator).slice(0,s.count);list.append($.map(tweets,function(o){return"<li>"+t(s.template,o)+"</li>";}).join('')).children('li:first').addClass('tweet_first').end().children('li:odd').addClass('tweet_even').end().children('li:even').addClass('tweet_odd');if(s.outro_text)list.after(outro);$(widget).trigger("loaded").trigger((tweets.length===0?"empty":"full"));if(s.refresh_interval){window.setTimeout(function(){$(widget).trigger("tweet:load");},1000*s.refresh_interval);}});}).trigger("tweet:load");});};})(jQuery);
;window.log=function(){log.history=log.history||[];log.history.push(arguments);arguments.callee=arguments.callee.caller;if(this.console)console.log(Array.prototype.slice.call(arguments));};(function(b){function c(){}for(var d="assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,log,markTimeline,profile,profileEnd,time,timeEnd,trace,warn".split(","),a;a=d.pop();)b[a]=b[a]||c})(window.console=window.console||{});function moveTo(id){var $target=$(id);$target=$target.length&&$target||$('[name='+this.hash.slice(1)+']');if($target.length){var targetOffset=$target.offset().top;$('html,body').animate({scrollTop:targetOffset},750,function(){window.location.hash=$target.attr('id');});return false;}}
window.innerShiv=function(){function h(c,e,b){return/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i.test(b)?c:e+"></"+b+">"}var c,e=document,j,g="abbr article aside audio canvas datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video".split(" ");return function(d,i){if(!c&&(c=e.createElement("div"),c.innerHTML="<nav></nav>",j=c.childNodes.length!==1)){for(var b=e.createDocumentFragment(),f=g.length;f--;)b.createElement(g[f]);b.appendChild(c)}d=d.replace(/^\s\s*/,"").replace(/\s\s*$/,"").replace(/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,"").replace(/(<([\w:]+)[^>]*?)\/>/g,h);c.innerHTML=(b=d.match(/^<(tbody|tr|td|col|colgroup|thead|tfoot)/i))?"<table>"+d+"</table>":d;b=b?c.getElementsByTagName(b[1])[0].parentNode:c;if(i===!1)return b.childNodes;for(var f=e.createDocumentFragment(),k=b.childNodes.length;k--;)f.appendChild(b.firstChild);return f}}();String.prototype.parseURL=function(){return this.replace(/[A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&~\?\/.=]+/g,function(url){return url.link(url);});};String.prototype.parseUsername=function(){return this.replace(/[@]+[A-Za-z0-9-_]+/g,function(u){var username=u.replace("@","")
return u.link("http://twitter.com/"+username);});};String.prototype.parseHashtag=function(){return this.replace(/[#]+[A-Za-z0-9-_]+/g,function(t){var tag=t.replace("#","%23")
return t.link("http://search.twitter.com/search?q="+tag);});};function recordOutboundLink(link,category,action){_gat._getTrackerByName()._trackEvent(category,action);}
$(function(){var $window=$(window);$window.resize(function(){var $this=$(this);windowWidth=$this.width();windowHeight=$this.height();wrapperWidth=$('.page-width').eq(0).width();leftPost=(windowWidth-wrapperWidth)/2;});$window.trigger('resize');if(jQuery.validator){jQuery.extend(jQuery.validator.messages,{required:"Dit veld is verplicht.",maxlength:jQuery.format("U kunt niet meer dan {0} karakters invoeren."),minlength:jQuery.format("U dient minimaal {0} karakters in te voeren."),rangelength:jQuery.format("U dient minimaal {0} en maximaal {1} karakters in te voeren."),email:"Een geldig e-mailadres is verplicht.",url:"Een geldig webadres is verplicht.",date:"Een geldige datum is verplicht.",number:"Een geldig getal is verplicht.",digits:"Gebruik alleen cijfers.",equalTo:"Herhaal de invoer nogmaals.",range:jQuery.format("U dient een waarde tussen {0} en {1} in te voeren."),max:jQuery.format("U dient een waarde kleiner dan of gelijk aan {0} in te voeren."),min:jQuery.format("U dient een waarde groter dan of gelijk aan {0} in te voeren."),creditcard:"Een geldig creditcardnummer is verplicht."});$('form.validate').each(function(){var $this=$(this);$this.validate({focusInvalid:false,highlight:function(element,errorClass,validClass){$(element).addClass(errorClass).removeClass(validClass);$(element).parent().addClass(errorClass).removeClass(validClass);},unhighlight:function(element,errorClass,validClass){$(element).removeClass(errorClass).addClass(validClass);$(element).parent().removeClass(errorClass).addClass(validClass);}});});}
if(!Modernizr.input.placeholder){$('input[placeholder], textarea[placeholder]').each(function(i){var $this=$(this);var $parent=$this.parent();var currValue=$this.attr('placeholder');var $placeholder=$('<span class="placeholder">'+currValue+'</span>');if($this[0].type==="textarea"){$this.html(currValue);$this.blur(function(){if($this.html()===""){$this.html(currValue);}else{}}).focus(function(){$this.html('');});}else{$parent.css({'position':'relative'});$parent.prepend($placeholder);$placeholder=$parent.find('span.placeholder');$this.blur(function(){if($this.val()===""){$placeholder.show();}else{$placeholder.hide();}}).focus(function(){$placeholder.hide();});}
if($('html').hasClass('ie7')){$placeholder.show();$placeholder.hide();$placeholder.show();}});$('span.placeholder').live('click',function(){var $this=$(this);var $siblings=$this.siblings();$siblings.each(function(i,el){if(typeof(el.type)!='undefined'){$(el).focus();}else{}});$this.hide();});}
$('a[rel="external"]').live('click',function(){$(this).attr('target','_blank');return true;});$.fn.equalizeHeights=function(){return this.height(Math.max.apply(this,$(this).map(function(i,e){return $(e).height()}).get()))}
jQuery.fn.delay=function(time,func){return this.each(function(){setTimeout(func,time);});};jQuery.extend({flashMessage:function(msg,type){var $body=$('body');var $flashContainer=$('#flash-message');if($flashContainer.length){$flashContainer.removeClass().addClass(type).find('.msg').html(msg);}else{$body.append('<div id="flash-message" class="'+type+'"><article class="msg">'+decodeURI(msg)+'</article></div>');}
$flashContainer.click(function(){$(this).hide();});$flashContainer.fadeIn().delay(5000,function(){$('#flash-message').fadeOut('fast');});},getUrlVars:function(){var vars=[],hash;var hashes=window.location.href.slice(window.location.href.indexOf('?')+1).split('&');for(var i=0;i<hashes.length;i++){hash=hashes[i].split('=');vars.push(hash[0]);vars[hash[0]]=hash[1];}
return vars;},getUrlVar:function(name){return $.getUrlVars()[name];}});os='';mobile='';ua=navigator.userAgent;checker={iphone:ua.match(/(iPhone|iPod|iPad)/),blackberry:ua.match(/BlackBerry/),android:ua.match(/Android/),mac:ua.match(/Mac/),windows:ua.match(/Windows/),firefox:ua.match(/Firefox/),chrome:ua.match(/Chrome/),safari:ua.match(/Safari/)};if(checker.android){$('body').addClass('android-only');os='android';mobile=true;}
else if(checker.iphone){$('body').addClass('ios-only');os='ios';mobile=true;}
else if(checker.blackberry){$('body').addClass('berry-only')
os='blackberry';mobile=true;}
else if(checker.mac){$('body').addClass('mac-only')
os='mac';mobile=false;if(checker.firefox){$('body').addClass('firefox')}else if(checker.safari){$('body').addClass('safari')}else if(checker.chrome){$('body').addClass('chrome')}}
else if(checker.windows){$('body').addClass('windows-only')
os='windows';mobile=false;if(checker.firefox){$('body').addClass('firefox')}else if(checker.safari){$('body').addClass('safari')}else if(checker.chrome){$('body').addClass('chrome')}}
else{$('body').addClass('not-mobile not-windows not-mac');os='not-mobile not-windows not-mac';mobile=false;}
$('form a.submit').live('click',function(){var $this=$(this);var $form=$this.parents('form');var $inputSubmit=$form.find('input[type=submit]');if($inputSubmit.length){$inputSubmit.trigger('click');}else{$form.append('<input type="submit" class="hidden" />').find('input[type=submit]').trigger('click');}
return false;});});
;busyI=1
function busyTimer(){$cursors=$('.busy-with').find('h1 .cursor');if($cursors.length){$cursors.eq(busyI%2).trigger('click')}
busyI++;}
(function($){$.fn.sorted=function(customOptions){var options={reversed:false,by:function(a){return a.text();}};$.extend(options,customOptions);$data=$(this);arr=$data.get();arr.sort(function(a,b){var valA=options.by($(a));var valB=options.by($(b));if(options.reversed){return(valA<valB)?1:(valA>valB)?-1:0;}else{return(valA<valB)?-1:(valA>valB)?1:0;}});return $(arr);};})(jQuery);$(function(){$.easing.bounce=function(x,t,b,c,d){ts=(t/=d)*t;tc=ts*t;return b+c*(-8.1525*tc*ts+28.5075*ts*ts+-35.105*tc+16*ts+-0.25*t);}
function randomArr(arr){return arr[Math.floor(Math.random()*arr.length)];}
$('#love').each(function(){var $love=$(this);var $loveToggle=$('#love-toggle');var $theLoveText=$love.find('h1');var loveTextArr=['Wij vinden jou leuk, jij ons ook?','Me love you long time!']
function loveToggle(state){var theHeight=(state==='open')?130+'px':0;if(state==='open'){$theLoveText.html(randomArr(loveTextArr));if(!$('html').hasClass('ie7')){Cufon.replace('#love h1');}
$loveToggle.addClass('active');}else{$loveToggle.removeClass('active');}
$love.stop().animate({height:[theHeight,'bounce']});}
$loveToggle.click(function(){loveToggle('close');return false;}).mouseenter(function(){if($love.height()===0){loveToggle('open');}});$('#main').mouseenter(function(){loveToggle('close');})});$('#nav a').hover(function(){var colorArr=['0083D7'];$(this).stop().animate({"color":"#"+randomArr(colorArr)},300);},function(){var $this=$(this);var color=$this.parent().hasClass('last')?'#DC0067':'#2C2C2D';if($this.hasClass('selected')){color='#0083D7';}
$(this).stop().animate({"color":color},300);});$('.cycle').each(function(i){var $this=$(this);var $footer=$this.parents('footer');var $nav=$this.find('.cycle-nav').length?$this.find('.cycle-nav').attr('id','cycle-nav-'+i):false;var $prev=$this.find('.prev').length?$this.find('.prev').attr('id','cycle-prev-'+i):false;var $next=$this.find('.next').length?$this.find('.next').attr('id','cycle-next-'+i):false;var $cycleContainer=$this.find('.slides');var effect=($this.attr('id')==='project-slider')?'scrollHorz':'fade';$cycleContainer.cycle({fx:effect,pager:$nav,pagerAnchorBuilder:pagerFactory,prev:$prev,next:$next,speed:1500,timeout:8000});});function pagerFactory(idx,slide){var s=idx>2?' ':'';return'<li'+s+'><a href="#">'+(idx+1)+'</a></li>';};$('.busy-with').each(function(){var $this=$(this),$busyContainer=$this.find('> div.busy'),$recentContainer=$this.find('> div.recent');$cursors=$this.find('h1 .cursor');inter=setInterval("busyTimer()",5000);$cursors.click(function(){var $this=$(this);$cursors.removeClass('active');$this.addClass('active');Cufon.replace('.busy-with > header h1');if($this.hasClass('recent')){$recentContainer.fadeIn();$busyContainer.fadeOut();}else{$busyContainer.fadeIn();$recentContainer.fadeOut();}});$cursors.hover(function(){clearInterval(inter);})
$this.find('.col').hover(function(){var $this=$(this);$this.stop(true,false).animate({"height":"240px"},1,function(){$this.children('.content').fadeIn('fast');})
clearInterval(inter);},function(){var $this=$(this);$this.children('.content').hide();$this.stop(true,false).animate({"height":"170px"},1);});});var $googlemaps=$('#googlemaps');var $googlemapsClose=$googlemaps.find('.close');var windowWidth=$(window).width();var leftPosition=(windowWidth-924)/2;var $googlemapsTrigger=$('#footer .info .pointer');var $bubbleTriangle=$('#bubble-triangle');$googlemapsClose.css({'left':leftPost+10+'px'}).click(function(){$googlemaps.stop().animate({'height':'0'},function(){$googlemaps.css({'z-index':-2});}).removeClass('open');return false;});var clickI=0;$googlemapsTrigger.click(function(){var $this=$(this);if($googlemaps.hasClass('open')){return false;}
$googlemaps.stop().animate({'height':'450px'},function(){$googlemaps.css({'z-index':2});var targetOffset=$googlemaps.offset().top;$('html,body').animate({scrollTop:targetOffset});$googlemaps.addClass('open');});return false;});$("#last-tweet").tweet({avatar_size:0,count:1,fetch:1,username:["nonverbaal"],loading_text:"loading twitter..."});$('#twitter a').live('click',function(){var $this=$(this);$(this).attr('target','_blank');});$('#smm').each(function(){var $this=$(this);$this.find('.inner .slide').tweet({avatar_size:32,count:20,fetch:20,username:["nonverbaal","bubiblomer","jasperkoopmans","cancia"],loading_text:"loading twitter…"});});var items=$('#stage li'),itemsByTags={};items.each(function(i){var elem=$(this),tags=elem.data('tags').split(',');elem.attr('data-id',i);$.each(tags,function(key,value){value=$.trim(value);if(!(value in itemsByTags)){itemsByTags[value]=[];}
itemsByTags[value].push(elem);});});createList('Alles',items);$.each(itemsByTags,function(k,v){createList(k,v);});$('#filter a').live('click',function(e){var link=$(this);link.addClass('active').siblings().removeClass('active');$('#stage').quicksand(link.data('list').find('li'));e.preventDefault();});$('#filter a:first').click();function createList(text,items){var ul=$('<ul>',{'class':'hidden'});$.each(items,function(){$(this).clone().appendTo(ul);});ul.appendTo('#container');var a=$('<a>',{html:text,href:'#',data:{list:ul}}).appendTo('#filter');}
$('#call-me, #mail').submit(function(){var $this=$(this);if($this.valid()){var data=$this.serialize();$.ajax({type:"POST",url:"/ajax/",data:data,success:function(response){var html='<h1>'+response.title+'</h1><p>'+response.content+'</p>';$.flashMessage(html,'success');$this[0].reset();}});return false;}else{return true}});$('.team-member aside.image').each(function(){var $this=$(this);var $img=$this.find('img');var imgWidth=$this.width();$this.mousemove(function(e){var s=imgWidth/$img.length;var t=e.layerX/$img.length;var u=((e.layerX/$img.length)/imgWidth)%$img.length;var currentDivision=Math.floor(((t*$img.length)-1)/s);if($img.eq(currentDivision).hasClass('active')){}else{$img.removeClass();$img.eq(currentDivision).addClass('active')}});});if($('html').hasClass('ie9')){$('textarea.required').each(function(){if($(this).attr('placeholder')===$(this).val()){$(this).val('');}});}
$('.uri-portfolio .portfolio-item .col .images img').each(function(i){var $this=$(this),theAlt=$this.attr('alt'),hasAlt=theAlt.length?true:false;$this.after('<span class="img-alt">'+theAlt+'</span>');})
$('#expertise article.expertise').equalizeHeights();});
;$(function(){var myOptions={streetViewControl:false,navigationControlOptions:{style:google.maps.NavigationControlStyle.SMALL},mapTypeControlOptions:{style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},mapTypeId:google.maps.MapTypeId.ROADMAP}
var geocoder=new google.maps.Geocoder();var map=new google.maps.Map($("#map").get(0),myOptions);var markerArray=[];var options=$.param({type:'offices'});$.ajax({url:"/ajax/",type:'post',data:options,dataType:'json',success:function(response){$(response.offices).each(function(i){var $this=$(this)[0];var theContent=$this.content;var theLon=$this.lon;var theLat=$this.lat;var theTitle=$this.title;var thePos=new google.maps.LatLng(theLat,theLon);var markerIcon='/images/maps/marker.png';var marker=new google.maps.Marker({position:thePos,id:'marker'+i,icon:markerIcon,map:map,title:theTitle});var infowindow=new google.maps.InfoWindow({content:theContent});google.maps.event.addListener(marker,'click',function(){infowindow.open(map,marker);});});var LatLngList=new Array();var bounds=new google.maps.LatLngBounds();$(response.offices).each(function(i){var $this=$(this)[0];var pos=new google.maps.LatLng(parseFloat($this.lat),parseFloat($this.lon));LatLngList.push(pos);});if($(LatLngList).length>1){$(LatLngList).each(function(){bounds.extend(this);});map.fitBounds(bounds);}else{map.setCenter($(LatLngList)[0]);map.setZoom(14);}}});});
