//validate,cufon,fruity,smoothmenu,cycle
(function(b){b.extend(b.fn,{validate:function(a){if(this.length){var d=b.data(this[0],"validator");if(d)return d;d=new b.validator(a,this[0]);b.data(this[0],"validator",d);if(d.settings.onsubmit){this.find("input, button").filter(".cancel").click(function(){d.cancelSubmit=true});this.submit(function(c){function l(){if(d.settings.submitHandler){d.settings.submitHandler.call(d,d.currentForm);return false}return true}d.settings.debug&&c.preventDefault();if(d.cancelSubmit){d.cancelSubmit=false;return l()}if(d.form()){if(d.pendingRequest){d.formSubmitted=
true;return false}return l()}else{d.focusInvalid();return false}})}return d}else a&&a.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing")},valid:function(){if(b(this[0]).is("form"))return this.validate().form();else{var a=false,d=b(this[0].form).validate();this.each(function(){a|=d.element(this)});return a}},removeAttrs:function(a){var d={},c=this;b.each(a.split(/\s/),function(l,h){d[h]=c.attr(h);c.removeAttr(h)});return d},rules:function(a,d){var c=this[0];
if(a){var l=b.data(c.form,"validator").settings,h=l.rules,j=b.validator.staticRules(c);switch(a){case "add":b.extend(j,b.validator.normalizeRule(d));h[c.name]=j;if(d.messages)l.messages[c.name]=b.extend(l.messages[c.name],d.messages);break;case "remove":if(!d){delete h[c.name];return j}var u={};b.each(d.split(/\s/),function(v,x){u[x]=j[x];delete j[x]});return u}}c=b.validator.normalizeRules(b.extend({},b.validator.metadataRules(c),b.validator.classRules(c),b.validator.attributeRules(c),b.validator.staticRules(c)),
c);if(c.required){l=c.required;delete c.required;c=b.extend({required:l},c)}return c}});b.extend(b.expr[":"],{blank:function(a){return!b.trim(a.value)},filled:function(a){return!!b.trim(a.value)},unchecked:function(a){return!a.checked}});b.format=function(a,d){if(arguments.length==1)return function(){var c=b.makeArray(arguments);c.unshift(a);return b.format.apply(this,c)};if(arguments.length>2&&d.constructor!=Array)d=b.makeArray(arguments).slice(1);if(d.constructor!=Array)d=[d];b.each(d,function(c,
l){a=a.replace(new RegExp("\\{"+c+"\\}","g"),l)});return a};b.validator=function(a,d){this.settings=b.extend({},b.validator.defaults,a);this.currentForm=d;this.init()};b.extend(b.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",errorElement:"label",focusInvalid:true,errorContainer:b([]),errorLabelContainer:b([]),onsubmit:true,ignore:[],ignoreTitle:false,onfocusin:function(a){this.lastActive=a;if(this.settings.focusCleanup&&!this.blockFocusCleanup){this.settings.unhighlight&&
this.settings.unhighlight.call(this,a,this.settings.errorClass);this.errorsFor(a).hide()}},onfocusout:function(a){if(!this.checkable(a)&&(a.name in this.submitted||!this.optional(a)))this.element(a)},onkeyup:function(a){if(a.name in this.submitted||a==this.lastElement)this.element(a)},onclick:function(a){a.name in this.submitted&&this.element(a)},highlight:function(a,d){b(a).addClass(d)},unhighlight:function(a,d){b(a).removeClass(d)}},setDefaults:function(a){b.extend(b.validator.defaults,a)},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).",dateDE:"Bitte geben Sie ein g\u00fcltiges Datum ein.",number:"Please enter a valid number.",numberDE:"Bitte geben Sie eine Nummer ein.",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:b.format("Please enter no more than {0} characters."),minlength:b.format("Please enter at least {0} characters."),rangelength:b.format("Please enter a value between {0} and {1} characters long."),range:b.format("Please enter a value between {0} and {1}."),max:b.format("Please enter a value less than or equal to {0}."),min:b.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:false,prototype:{init:function(){function a(l){var h=b.data(this[0].form,"validator");
h.settings["on"+l.type]&&h.settings["on"+l.type].call(h,this[0])}this.labelContainer=b(this.settings.errorLabelContainer);this.errorContext=this.labelContainer.length&&this.labelContainer||b(this.currentForm);this.containers=b(this.settings.errorContainer).add(this.settings.errorLabelContainer);this.submitted={};this.valueCache={};this.pendingRequest=0;this.pending={};this.invalid={};this.reset();var d=this.groups={};b.each(this.settings.groups,function(l,h){b.each(h.split(/\s/),function(j,u){d[u]=
l})});var c=this.settings.rules;b.each(c,function(l,h){c[l]=b.validator.normalizeRule(h)});b(this.currentForm).delegate("focusin focusout keyup",":text, :password, :file, select, textarea",a).delegate("click",":radio, :checkbox",a);this.settings.invalidHandler&&b(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler)},form:function(){this.checkForm();b.extend(this.submitted,this.errorMap);this.invalid=b.extend({},this.errorMap);this.valid()||b(this.currentForm).triggerHandler("invalid-form",
[this]);this.showErrors();return this.valid()},checkForm:function(){this.prepareForm();for(var a=0,d=this.currentElements=this.elements();d[a];a++)this.check(d[a]);return this.valid()},element:function(a){this.lastElement=a=this.clean(a);this.prepareElement(a);this.currentElements=b(a);var d=this.check(a);if(d)delete this.invalid[a.name];else this.invalid[a.name]=true;if(!this.numberOfInvalids())this.toHide=this.toHide.add(this.containers);this.showErrors();return d},showErrors:function(a){if(a){b.extend(this.errorMap,
a);this.errorList=[];for(var d in a)this.errorList.push({message:a[d],element:this.findByName(d)[0]});this.successList=b.grep(this.successList,function(c){return!(c.name in a)})}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors()},resetForm:function(){b.fn.resetForm&&b(this.currentForm).resetForm();this.submitted={};this.prepareForm();this.hideErrors();this.elements().removeClass(this.settings.errorClass)},numberOfInvalids:function(){return this.objectLength(this.invalid)},
objectLength:function(a){var d=0;for(var c in a)d++;return d},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{b(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus()}catch(a){}},findLastActive:function(){var a=this.lastActive;return a&&b.grep(this.errorList,function(d){return d.element.name==a.name}).length==
1&&a},elements:function(){var a=this,d={};return b([]).add(this.currentForm.elements).filter(":input").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){!this.name&&a.settings.debug&&window.console&&console.error("%o has no name assigned",this);if(this.name in d||!a.objectLength(b(this).rules()))return false;return d[this.name]=true})},clean:function(a){return b(a)[0]},errors:function(){return b(this.settings.errorElement+"."+this.settings.errorClass,this.errorContext)},
reset:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=b([]);this.toHide=b([]);this.formSubmitted=false;this.currentElements=b([])},prepareForm:function(){this.reset();this.toHide=this.errors().add(this.containers)},prepareElement:function(a){this.reset();this.toHide=this.errorsFor(a)},check:function(a){a=this.clean(a);if(this.checkable(a))a=this.findByName(a.name)[0];var d=b(a).rules(),c=false;for(method in d){var l={method:method,parameters:d[method]};try{var h=b.validator.methods[method].call(this,
a.value,a,l.parameters);if(h=="dependency-mismatch")c=true;else{c=false;if(h=="pending"){this.toHide=this.toHide.not(this.errorsFor(a));return}if(!h){this.formatAndAdd(a,l);return false}}}catch(j){this.settings.debug&&window.console&&console.log("exception occured when checking element "+a.id+", check the '"+l.method+"' method");throw j;}}if(!c){this.objectLength(d)&&this.successList.push(a);return true}},customMetaMessage:function(a,d){if(b.metadata){var c=this.settings.meta?b(a).metadata()[this.settings.meta]:
b(a).metadata();return c&&c.messages&&c.messages[d]}},customMessage:function(a,d){var c=this.settings.messages[a];return c&&(c.constructor==String?c:c[d])},findDefined:function(){for(var a=0;a<arguments.length;a++)if(arguments[a]!==undefined)return arguments[a]},defaultMessage:function(a,d){return this.findDefined(this.customMessage(a.name,d),this.customMetaMessage(a,d),!this.settings.ignoreTitle&&a.title||undefined,b.validator.messages[d],"<strong>Warning: No message defined for "+a.name+"</strong>")},
formatAndAdd:function(a,d){var c=this.defaultMessage(a,d.method);if(typeof c=="function")c=c.call(this,d.parameters,a);this.errorList.push({message:c,element:a});this.errorMap[a.name]=c;this.submitted[a.name]=c},addWrapper:function(a){if(this.settings.wrapper)a=a.add(a.parents(this.settings.wrapper));return a},defaultShowErrors:function(){for(var a=0;this.errorList[a];a++){var d=this.errorList[a];this.settings.highlight&&this.settings.highlight.call(this,d.element,this.settings.errorClass);this.showLabel(d.element,
d.message)}if(this.errorList.length)this.toShow=this.toShow.add(this.containers);if(this.settings.success)for(a=0;this.successList[a];a++)this.showLabel(this.successList[a]);if(this.settings.unhighlight){a=0;for(d=this.validElements();d[a];a++)this.settings.unhighlight.call(this,d[a],this.settings.errorClass)}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 b(this.errorList).map(function(){return this.element})},
showLabel:function(a,d){var c=this.errorsFor(a);if(c.length){c.removeClass().addClass(this.settings.errorClass);c.attr("generated")&&c.html(d)}else{c=b("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(a),generated:true}).addClass(this.settings.errorClass).html(d||"");if(this.settings.wrapper)c=c.hide().show().wrap("<"+this.settings.wrapper+"/>").parent();this.labelContainer.append(c).length||(this.settings.errorPlacement?this.settings.errorPlacement(c,b(a)):c.insertAfter(a))}if(!d&&
this.settings.success){c.text("");typeof this.settings.success=="string"?c.addClass(this.settings.success):this.settings.success(c)}this.toShow=this.toShow.add(c)},errorsFor:function(a){return this.errors().filter("[for='"+this.idOrName(a)+"']")},idOrName:function(a){return this.groups[a.name]||(this.checkable(a)?a.name:a.id||a.name)},checkable:function(a){return/radio|checkbox/i.test(a.type)},findByName:function(a){var d=this.currentForm;return b(document.getElementsByName(a)).map(function(c,l){return l.form==
d&&l.name==a&&l||null})},getLength:function(a,d){switch(d.nodeName.toLowerCase()){case "select":return b("option:selected",d).length;case "input":if(this.checkable(d))return this.findByName(d.name).filter(":checked").length}return a.length},depend:function(a,d){return this.dependTypes[typeof a]?this.dependTypes[typeof a](a,d):true},dependTypes:{"boolean":function(a){return a},string:function(a,d){return!!b(a,d.form).length},"function":function(a,d){return a(d)}},optional:function(a){return!b.validator.methods.required.call(this,
b.trim(a.value),a)&&"dependency-mismatch"},startRequest:function(a){if(!this.pending[a.name]){this.pendingRequest++;this.pending[a.name]=true}},stopRequest:function(a,d){this.pendingRequest--;if(this.pendingRequest<0)this.pendingRequest=0;delete this.pending[a.name];if(d&&this.pendingRequest==0&&this.formSubmitted&&this.form())b(this.currentForm).submit();else!d&&this.pendingRequest==0&&this.formSubmitted&&b(this.currentForm).triggerHandler("invalid-form",[this])},previousValue:function(a){return b.data(a,
"previousValue")||b.data(a,"previousValue",previous={old:null,valid:true,message:this.defaultMessage(a,"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(a,d){a.constructor==String?(this.classRuleSettings[a]=d):b.extend(this.classRuleSettings,a)},classRules:function(a){var d={};
(a=b(a).attr("class"))&&b.each(a.split(" "),function(){this in b.validator.classRuleSettings&&b.extend(d,b.validator.classRuleSettings[this])});return d},attributeRules:function(a){var d={};a=b(a);for(method in b.validator.methods){var c=a.attr(method);if(c)d[method]=c}d.maxlength&&/-1|2147483647|524288/.test(d.maxlength)&&delete d.maxlength;return d},metadataRules:function(a){if(!b.metadata)return{};var d=b.data(a.form,"validator").settings.meta;return d?b(a).metadata()[d]:b(a).metadata()},staticRules:function(a){var d=
{},c=b.data(a.form,"validator");if(c.settings.rules)d=b.validator.normalizeRule(c.settings.rules[a.name])||{};return d},normalizeRules:function(a,d){b.each(a,function(c,l){if(l===false)delete a[c];else if(l.param||l.depends){var h=true;switch(typeof l.depends){case "string":h=!!b(l.depends,d.form).length;break;case "function":h=l.depends.call(d,d);break}if(h)a[c]=l.param!==undefined?l.param:true;else delete a[c]}});b.each(a,function(c,l){a[c]=b.isFunction(l)?l(d):l});b.each(["minlength","maxlength",
"min","max"],function(){if(a[this])a[this]=Number(a[this])});b.each(["rangelength","range"],function(){if(a[this])a[this]=[Number(a[this][0]),Number(a[this][1])]});if(b.validator.autoCreateRanges){if(a.min&&a.max){a.range=[a.min,a.max];delete a.min;delete a.max}if(a.minlength&&a.maxlength){a.rangelength=[a.minlength,a.maxlength];delete a.minlength;delete a.maxlength}}a.messages&&delete a.messages;return a},normalizeRule:function(a){if(typeof a=="string"){var d={};b.each(a.split(/\s/),function(){d[this]=
true});a=d}return a},addMethod:function(a,d,c){b.validator.methods[a]=d;b.validator.messages[a]=c;d.length<3&&b.validator.addClassRules(a,b.validator.normalizeRule(a))},methods:{required:function(a,d,c){if(!this.depend(c,d))return"dependency-mismatch";switch(d.nodeName.toLowerCase()){case "select":a=b("option:selected",d);return a.length>0&&(d.type=="select-multiple"||(b.browser.msie&&!a[0].attributes.value.specified?a[0].text:a[0].value).length>0);case "input":if(this.checkable(d))return this.getLength(a,
d)>0;default:return b.trim(a).length>0}},remote:function(a,d,c){if(this.optional(d))return"dependency-mismatch";var l=this.previousValue(d);this.settings.messages[d.name]||(this.settings.messages[d.name]={});this.settings.messages[d.name].remote=typeof l.message=="function"?l.message(a):l.message;c=typeof c=="string"&&{url:c}||c;if(l.old!==a){l.old=a;var h=this;this.startRequest(d);var j={};j[d.name]=a;b.ajax(b.extend(true,{url:c,mode:"abort",port:"validate"+d.name,dataType:"json",data:j,success:function(u){if(u){var v=
h.formSubmitted;h.prepareElement(d);h.formSubmitted=v;h.successList.push(d);h.showErrors()}else{v={};v[d.name]=u||h.defaultMessage(d,"remote");h.showErrors(v)}l.valid=u;h.stopRequest(d,u)}},c));return"pending"}else if(this.pending[d.name])return"pending";return l.valid},minlength:function(a,d,c){return this.optional(d)||this.getLength(b.trim(a),d)>=c},maxlength:function(a,d,c){return this.optional(d)||this.getLength(b.trim(a),d)<=c},rangelength:function(a,d,c){a=this.getLength(b.trim(a),d);return this.optional(d)||
a>=c[0]&&a<=c[1]},min:function(a,d,c){return this.optional(d)||a>=c},max:function(a,d,c){return this.optional(d)||a<=c},range:function(a,d,c){return this.optional(d)||a>=c[0]&&a<=c[1]},email:function(a,d){return this.optional(d)||/^((([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(a)},
url:function(a,d){return this.optional(d)||/^(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(a)},
date:function(a,d){var c=new Date;return this.optional(d)||!/Invalid|NaN/.test(new Date(c.toLocaleDateString(a)))},dateISO:function(a,d){return this.optional(d)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(a)},dateDE:function(a,d){return this.optional(d)||/^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(a)},number:function(a,d){return this.optional(d)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(a)},numberDE:function(a,d){return this.optional(d)||/^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(a)},digits:function(a,
d){return this.optional(d)||/^\d+$/.test(a)},creditcard:function(a,d){if(this.optional(d))return"dependency-mismatch";if(/[^0-9-]+/.test(a))return false;var c=0,l=0,h=false;a=a.replace(/\D/g,"");for(n=a.length-1;n>=0;n--){l=a.charAt(n);l=parseInt(l,10);if(h)if((l*=2)>9)l-=9;c+=l;h=!h}return c%10==0},accept:function(a,d,c){c=typeof c=="string"?c:"png|jpe?g|gif";return this.optional(d)||a.match(new RegExp(".("+c+")$","i"))},equalTo:function(a,d,c){return a==b(c).val()}}})})(jQuery);
(function(b){var a=b.ajax,d={};b.ajax=function(c){c=b.extend(c,b.extend({},b.ajaxSettings,c));var l=c.port;if(c.mode=="abort"){d[l]&&d[l].abort();return d[l]=a.apply(this,arguments)}return a.apply(this,arguments)}})(jQuery);
(function(b){b.each({focus:"focusin",blur:"focusout"},function(a,d){b.event.special[d]={setup:function(){if(b.browser.msie)return false;this.addEventListener(a,b.event.special[d].handler,true)},teardown:function(){if(b.browser.msie)return false;this.removeEventListener(a,b.event.special[d].handler,true)},handler:function(c){arguments[0]=b.event.fix(c);arguments[0].type=d;return b.event.handle.apply(this,arguments)}}});b.extend(b.fn,{delegate:function(a,d,c){return this.bind(a,function(l){var h=b(l.target);
if(h.is(d))return c.apply(h,arguments)})},triggerEvent:function(a,d){return this.triggerHandler(a,[b.event.fix({type:a,target:d})])}})})(jQuery);
var Cufon=function(){function b(i){var m=this.face=i.face,q={" ":1,"\u00a0":1,"\u3000":1};this.glyphs=i.glyphs;this.w=i.w;this.baseSize=parseInt(m["units-per-em"],10);this.family=m["font-family"].toLowerCase();this.weight=m["font-weight"];this.style=m["font-style"]||"normal";this.viewBox=function(){var k=m.bbox.split(/\s+/);k={minX:parseInt(k[0],10),minY:parseInt(k[1],10),maxX:parseInt(k[2],10),maxY:parseInt(k[3],10)};k.width=k.maxX-k.minX;k.height=k.maxY-k.minY;k.toString=function(){return[this.minX,
this.minY,this.width,this.height].join(" ")};return k}();this.ascent=-parseInt(m.ascent,10);this.descent=-parseInt(m.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(k,t,w){for(var D=this.glyphs,C,B,F=[],I=0,H=-1,K=-1,L;L=k[++H];)if(C=D[L]||this.missingGlyph){if(B){I-=B=B[L]||0;F[K]-=B}I+=F[++K]=~~(C.w||this.w)+t+(q[L]?w:0);B=C.k}F.total=I;return F}}function a(){var i={},m={oblique:"italic",italic:"oblique"};this.add=function(q){(i[q.style]||(i[q.style]={}))[q.weight]=q};this.get=
function(q,k){var t=i[q]||i[m[q]]||i.normal||i.italic||i.oblique;if(!t)return null;k={normal:400,bold:700}[k]||parseInt(k,10);if(t[k])return t[k];var w={1:1,99:0}[k%100],D=[],C,B;if(w===undefined)w=k>400;if(k==500)k=400;for(var F in t)if(t.hasOwnProperty(F)){F=parseInt(F,10);if(!C||F<C)C=F;if(!B||F>B)B=F;D.push(F)}if(k<C)k=C;if(k>B)k=B;D.sort(function(I,H){return(w?I>=k&&H>=k?I<H:I>H:I<=k&&H<=k?I>H:I<H)?-1:1});return t[D[0]]}}function d(i){var m={},q={};this.extend=function(k){for(var t in k)if(k.hasOwnProperty(t))m[t]=
k[t];return this};this.get=function(k){return m[k]!=undefined?m[k]:i[k]};this.getSize=function(k,t){return q[k]||(q[k]=new G.Size(this.get(k),t))};this.isUsable=function(){return!!i}}function c(i,m,q){if(i.addEventListener)i.addEventListener(m,q,false);else i.attachEvent&&i.attachEvent("on"+m,function(){return q.call(i,window.event)})}function l(i,m){var q=e.get(i);if(q.options)return i;m.hover&&m.hoverables[i.nodeName.toLowerCase()]&&g.attach(i);q.options=m;return i}function h(i){var m={};return function(q){m.hasOwnProperty(q)||
(m[q]=i.apply(null,arguments));return m[q]}}function j(i){return document.getElementsByTagName(i)}function u(){for(var i={},m,q,k=0,t=arguments.length;m=arguments[k],k<t;++k)for(q in m)if(m.hasOwnProperty(q))i[q]=m[q];return i}function v(i,m,q,k,t,w){var D=document.createDocumentFragment();if(m==="")return D;var C=k.separate,B=m.split(A[C]);if((C=C=="words")&&J){/^\s/.test(m)&&B.unshift("");/\s$/.test(m)&&B.push("")}for(var F=0,I=B.length;F<I;++F)(m=s[k.engine](i,C?G.textAlign(B[F],q,F,I):B[F],q,
k,t,w,F<I-1))&&D.appendChild(m);return D}function x(i,m){var q=i.nodeName.toLowerCase();if(!m.ignore[q]){q=!m.textless[q];var k=G.getStyle(l(i,m)).extend(m),t;a:{t=G.quotedList(k.get("fontFamily").toLowerCase());for(var w,D=0;w=t[D];++D)if(f[w]){t=f[w].get(k.get("fontStyle"),k.get("fontWeight"));break a}t=null}var C,B,F;if(t)for(w=i.firstChild;w;w=C){D=w.nodeType;C=w.nextSibling;if(q&&D==3){if(B){B.appendData(w.data);i.removeChild(w)}else B=w;if(C)continue}if(B){i.replaceChild(v(t,G.whiteSpace(B.data,
k,B,F),k,m,w,i),B);B=null}if(D==1){if(w.firstChild)w.nodeName.toLowerCase()=="cufon"?s[m.engine](t,null,k,m,w,i):arguments.callee(w,m);F=w}}}}var z=function(){return z.replace.apply(null,arguments)},E=z.DOM={ready:function(){var i=false,m={loaded:1,complete:1},q=[],k=function(){if(!i){i=true;for(var t;t=q.shift();t());}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",k,false);window.addEventListener("pageshow",k,false)}!window.opera&&document.readyState&&function(){m[document.readyState]?
k():setTimeout(arguments.callee,10)}();document.readyState&&document.createStyleSheet&&function(){try{document.body.doScroll("left");k()}catch(t){setTimeout(arguments.callee,1)}}();c(window,"load",k);return function(t){if(arguments.length)i?t():q.push(t);else k()}}(),root:function(){return document.documentElement||document.body}},G=z.CSS={Size:function(i,m){this.value=parseFloat(i);this.unit=String(i).match(/[a-z%]*$/)[0]||"px";this.convert=function(q){return q/m*this.value};this.convertFrom=function(q){return q/
this.value*m};this.toString=function(){return this.value+this.unit}},addClass:function(i,m){var q=i.className;i.className=q+(q&&" ")+m;return i},color:h(function(i){var m={};m.color=i.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(q,k,t){m.opacity=parseFloat(t);return"rgb("+k+")"});return m}),fontStretch:h(function(i){if(typeof i=="number")return i;if(/%$/.test(i))return parseFloat(i)/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}[i]||1}),getStyle:function(i){var m=document.defaultView;if(m&&m.getComputedStyle)return new d(m.getComputedStyle(i,null));if(i.currentStyle)return new d(i.currentStyle);return new d(i.style)},gradient:h(function(i){var m={id:i,type:i.match(/^-([a-z]+)-gradient\(/)[1],stops:[]};i=i.substr(i.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var q=0,k=i.length,t;q<k;++q){t=i[q].split("=",2).reverse();m.stops.push([t[1]||q/
(k-1),t[0]])}return m}),quotedList:h(function(i){for(var m=[],q=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,k;k=q.exec(i);)m.push(k[3]||k[1]);return m}),recognizesMedia:h(function(i){var m=document.createElement("style"),q;m.type="text/css";m.media=i;try{m.appendChild(document.createTextNode("/**/"))}catch(k){}i=j("head")[0];i.insertBefore(m,i.firstChild);q=(q=m.sheet||m.styleSheet)&&!q.disabled;i.removeChild(m);return q}),removeClass:function(i,m){var q=RegExp("(?:^|\\s+)"+m+"(?=\\s|$)","g");i.className=
i.className.replace(q,"");return i},supports:function(i,m){var q=document.createElement("span").style;if(q[i]===undefined)return false;q[i]=m;return q[i]===m},textAlign:function(i,m,q,k){if(m.get("textAlign")=="right"){if(q>0)i=" "+i}else if(q<k-1)i+=" ";return i},textShadow:h(function(i){if(i=="none")return null;for(var m=[],q={},k,t=0,w=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;k=w.exec(i);)if(k[0]==","){m.push(q);q={};t=0}else if(k[1])q.color=k[1];else q[["offX","offY","blur"][t++]]=
k[2];m.push(q);return m}),textTransform:function(){var i={uppercase:function(m){return m.toUpperCase()},lowercase:function(m){return m.toLowerCase()},capitalize:function(m){return m.replace(/\b./g,function(q){return q.toUpperCase()})}};return function(m,q){var k=i[q.get("textTransform")];return k?k(m):m}}(),whiteSpace:function(){var i={inline:1,"inline-block":1,"run-in":1},m=/^\s+/,q=/\s+$/;return function(k,t,w,D){if(D)if(D.nodeName.toLowerCase()=="br")k=k.replace(m,"");if(i[t.get("display")])return k;
w.previousSibling||(k=k.replace(m,""));w.nextSibling||(k=k.replace(q,""));return k}}()};G.ready=function(){function i(C,B){if(!G.recognizesMedia(B||"all"))return true;if(!C||C.disabled)return false;try{var F=C.cssRules,I;if(F){var H=0,K=F.length;a:for(;I=F[H],H<K;++H)switch(I.type){case 2:break;case 3:if(!i(I.styleSheet,I.media.mediaText))return false;break;default:break a}}}catch(L){}return true}function m(){if(document.createStyleSheet)return true;var C,B;for(B=0;C=w[B];++B)if(C.rel.toLowerCase()==
"stylesheet"&&!(C.disabled||i(C.sheet,C.media||"screen")))return false;for(B=0;C=D[B];++B)if(!(C.disabled||i(C.sheet,C.media||"screen")))return false;return true}var q=!G.recognizesMedia("all"),k=false,t=[],w=j("link"),D=j("style");E.ready(function(){k||(k=G.getStyle(document.body).isUsable());if(q||k&&m()){q=true;for(var C;C=t.shift();C());}else setTimeout(arguments.callee,10)});return function(C){q?C():t.push(C)}}();var J=" ".split(/\s+/).length==0,e=new function(){var i={},m=0;this.get=function(q){q=
q.cufid||(q.cufid=++m);return i[q]||(i[q]={})}},g=new (function(){function i(k){var t=k.relatedTarget,w;if(!(w=!t))w=this.contains?this.contains(t):this.compareDocumentPosition(t)&16;w||q(this,k.type=="mouseover")}function m(k){q(this,k.type=="mouseenter")}function q(k,t){setTimeout(function(){var w=e.get(k).options;z.replace(k,t?u(w,w.hover):w,true)},10)}this.attach=function(k){if(k.onmouseenter===undefined){c(k,"mouseover",i);c(k,"mouseout",i)}else{c(k,"mouseenter",m);c(k,"mouseleave",m)}}}),o=
new (function(){var i=[],m={};this.add=function(q,k){m[q]=i.push(k)-1};this.repeat=function(){var q;if(arguments.length){q=[];for(var k,t=0;k=arguments[t];++t)q[t]=i[m[k]];q=q}else q=i;for(t=0;k=q[t++];)z.replace(k[0],k[1],true)}}),r=false,s={},f={},y={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(i){return jQuery(i)}||window.dojo&&dojo.query||window.Ext&&Ext.query||window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query||window.$$&&function(i){return $$(i)}||window.$&&function(i){return $(i)}||document.querySelectorAll&&function(i){return document.querySelectorAll(i)}||j,separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"},A={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};
z.now=function(){E.ready();return z};z.refresh=function(){o.repeat.apply(o,arguments);return z};z.registerEngine=function(i,m){if(!m)return z;s[i]=m;return z.set("engine",i)};z.registerFont=function(i){if(!i)return z;i=new b(i);var m=i.family;f[m]||(f[m]=new a);f[m].add(i);return z.set("fontFamily",'"'+m+'"')};z.replace=function(i,m,q){m=u(y,m);if(!m.engine)return z;if(!r){G.addClass(E.root(),"cufon-active cufon-loading");G.ready(function(){G.addClass(G.removeClass(E.root(),"cufon-loading"),"cufon-ready")});
r=true}if(m.hover)m.forceHitArea=true;m.autoDetect&&delete m.fontFamily;if(typeof m.textShadow=="string")m.textShadow=G.textShadow(m.textShadow);if(typeof m.color=="string"&&/^-/.test(m.color))m.textGradient=G.gradient(m.color);else delete m.textGradient;q||o.add(i,arguments);if(i.nodeType||typeof i=="string")i=[i];G.ready(function(){for(var k=0,t=i.length;k<t;++k){var w=i[k];typeof w=="string"?z.replace(m.selector(w),m,true):x(w,m)}});return z};z.set=function(i,m){y[i]=m;return z};return z}();
Cufon.registerEngine("canvas",function(){var b=document.createElement("canvas");if(!(!b||!b.getContext||!b.getContext.apply)){b=null;var a=Cufon.CSS.supports("display","inline-block");b=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var d=document.createElement("style");d.type="text/css";d.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+
(b?"":"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(d);return function(c,l,h,j,u){function v(){var t=c.glyphs,w,D=-1,C=-1;for(k.scale(q,1);A[++D];)if(w=t[A[D]]||c.missingGlyph){if(w.d){k.beginPath();
if(w.code){w=w.code;for(var B=k,F=0,I=w.length;F<I;++F){var H=w[F];B[H.m].apply(B,H.a)}}else{B="m"+w.d;F=k;H=I=0;var K=[],L=/([mrvxe])([^a-z]*)/g,M=void 0,O=0;a:for(;M=L.exec(B);++O){var N=M[2].split(",");switch(M[1]){case "v":K[O]={m:"bezierCurveTo",a:[I+~~N[0],H+~~N[1],I+~~N[2],H+~~N[3],I+=~~N[4],H+=~~N[5]]};break;case "r":K[O]={m:"lineTo",a:[I+=~~N[0],H+=~~N[1]]};break;case "m":K[O]={m:"moveTo",a:[I=~~N[0],H=~~N[1]]};break;case "x":K[O]={m:"closePath"};break;case "e":break a}F[K[O].m].apply(F,
K[O].a)}w.code=K}k.fill()}k.translate(i[++C],0)}k.restore()}var x=l===null;if(x)l=u.getAttribute("alt");var z=c.viewBox,E=h.getSize("fontSize",c.baseSize),G=0,J=0,e=0,g=0,o=j.textShadow,r=[];if(o)for(var s=o.length;s--;){var f=o[s],y=E.convertFrom(parseFloat(f.offX));f=E.convertFrom(parseFloat(f.offY));r[s]=[y,f];if(f<G)G=f;if(y>J)J=y;if(f>e)e=f;if(y<g)g=y}var A=Cufon.CSS.textTransform(l,h).split(""),i=c.spacing(A,~~E.convertFrom(parseFloat(h.get("letterSpacing"))||0),~~E.convertFrom(parseFloat(h.get("wordSpacing"))||
0));if(!i.length)return null;f=i.total;J+=z.width-i[i.length-1];g+=z.minX;if(x){x=u;s=u.firstChild}else{x=document.createElement("cufon");x.className="cufon cufon-canvas";x.setAttribute("alt",l);s=document.createElement("canvas");x.appendChild(s);if(j.printable){u=document.createElement("cufontext");u.appendChild(document.createTextNode(l));x.appendChild(u)}}u=x.style;var m=s.style;y=E.convert(z.height);l=Math.ceil(y)/y;var q=l*Cufon.CSS.fontStretch(h.get("fontStretch"));f=f*q;J=Math.ceil(E.convert(f+
J-g));e=Math.ceil(E.convert(z.height-G+e));s.width=J;s.height=e;m.width=J+"px";m.height=e+"px";G+=z.minY;m.top=Math.round(E.convert(G-c.ascent))+"px";m.left=Math.round(E.convert(g))+"px";e=Math.max(Math.ceil(E.convert(f)),0)+"px";if(a){u.width=e;u.height=E.convert(c.height)+"px"}else{u.paddingLeft=e;u.paddingBottom=E.convert(c.height)-1+"px"}var k=s.getContext("2d");E=y/z.height;k.scale(E,E*l);k.translate(-g,-G);k.save();if(o)for(s=o.length;s--;){f=o[s];k.save();k.fillStyle=f.color;k.translate.apply(k,
r[s]);v()}if(j=j.textGradient){h=j.stops;z=k.createLinearGradient(0,z.minY,0,z.maxY);s=0;for(j=h.length;s<j;++s)z.addColorStop.apply(z,h[s]);k.fillStyle=z}else k.fillStyle=h.get("color");v();return x}}}());
Cufon.registerEngine("vml",function(){function b(h,j){if(j==="0")return 0;if(/px$/i.test(j))return parseFloat(j);var u=h.style.left,v=h.runtimeStyle.left;h.runtimeStyle.left=h.currentStyle.left;h.style.left=j.replace("%","em");var x=h.style.pixelLeft;h.style.left=u;h.runtimeStyle.left=v;return x}function a(h,j,u,v){var x="computed"+v,z=j[x];if(isNaN(z)){z=j.get(v);j[x]=z=z=="normal"?0:~~u.convertFrom(b(h,z))}return z}var d=document.namespaces;if(d){d.add("cvml","urn:schemas-microsoft-com:vml");d=
null;d=document.createElement("cvml:shape");d.style.behavior="url(#default#VML)";if(d.coordsize){d=null;var c=(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:'+(c?"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;"));var l={};return function(h,j,u,v,x,z,E){var G=j===null;if(G)j=x.alt;var J=h.viewBox,e;if(!(e=u.computedFontSize)){e=Cufon.CSS.Size;var g;g=u.get("fontSize");g=b(z,/(?:em|ex|%)$|^[a-z-]+$/i.test(g)?"1em":g);e=u.computedFontSize=new e(g+"px",h.baseSize)}g=e;if(G){e=x;x=x.firstChild}else{e=document.createElement("cufon");e.className="cufon cufon-vml";e.alt=j;x=document.createElement("cufoncanvas");e.appendChild(x);if(v.printable){var o=document.createElement("cufontext");o.appendChild(document.createTextNode(j));
e.appendChild(o)}E||e.appendChild(document.createElement("cvml:shape"))}E=e.style;var r=x.style,s=g.convert(J.height);o=Math.ceil(s);s=o/s*Cufon.CSS.fontStretch(u.get("fontStretch"));var f=J.minX,y=J.minY;r.height=o;r.top=Math.round(g.convert(y-h.ascent));r.left=Math.round(g.convert(f));E.height=g.convert(h.height)+"px";var A=u.get("color"),i=Cufon.CSS.textTransform(j,u).split(""),m=h.spacing(i,a(z,u,g,"letterSpacing"),a(z,u,g,"wordSpacing"));if(!m.length)return null;j=m.total;var q=-f+j+(J.width-
m[m.length-1]);r=g.convert(q*s);r=Math.round(r);J=q+","+J.height;var k;q="r"+J+"ns";var t;if(t=v.textGradient){var w=v.textGradient;t=w.id;if(!l[t]){w=w.stops;var D=document.createElement("cvml:fill"),C=[];D.type="gradient";D.angle=180;D.focus="0";D.method="sigma";D.color=w[0][1];for(var B=1,F=w.length-1;B<F;++B)C.push(w[B][0]*100+"% "+w[B][1]);D.colors=C.join(",");D.color2=w[F][1];l[t]=D}t=l[t]}t=t;w=h.glyphs;D=0;C=v.textShadow;B=-1;for(F=0;i[++B];){var I=w[i[B]]||h.missingGlyph,H;if(I){if(G)for(H=
x.childNodes[F];H.firstChild;)H.removeChild(H.firstChild);else{H=document.createElement("cvml:shape");x.appendChild(H)}H.stroked="f";H.coordsize=J;H.coordorigin=k=f-D+","+y;H.path=(I.d?"m"+I.d+"xe":"")+"m"+k+q;H.fillcolor=A;t&&H.appendChild(t.cloneNode(false));k=H.style;k.width=r;k.height=o;if(C){k=C[0];I=C[1];var K=Cufon.CSS.color(k.color),L,M=document.createElement("cvml:shadow");M.on="t";M.color=K.color;M.offset=k.offX+","+k.offY;if(I){L=Cufon.CSS.color(I.color);M.type="double";M.color2=L.color;
M.offset2=I.offX+","+I.offY}M.opacity=K.opacity||L&&L.opacity||1;H.appendChild(M)}D+=m[F++]}}h=H.nextSibling;if(v.forceHitArea){if(!h){h=document.createElement("cvml:rect");h.stroked="f";h.className="cufon-vml-cover";v=document.createElement("cvml:fill");v.opacity=0;h.appendChild(v);x.appendChild(h)}v=h.style;v.width=r;v.height=o}else h&&x.removeChild(h);E.width=Math.max(Math.ceil(g.convert(j*s)),0);if(c){v=u.computedYAdjust;if(v===undefined){v=u.get("lineHeight");if(v=="normal")v="1em";else isNaN(v)||
(v+="em");u.computedYAdjust=v=0.5*(b(z,v)-parseFloat(E.height))}if(v){E.marginTop=Math.ceil(v)+"px";E.marginBottom=v+"px"}}return e}}}}());
Cufon.registerFont({w:200,face:{"font-family":"Frutiger","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0",ascent:"288",descent:"-72","x-height":"4",bbox:"-9 -290 359 90","underline-thickness":"18","underline-position":"-36",stemh:"27",stemv:"34","unicode-range":"U+0020-U+007E"},glyphs:{" ":{w:100},"!":{d:"90,-251r-4,180r-31,0r-5,-180r40,0xm50,0r0,-40r40,0r0,40r-40,0",w:140},'"':{d:"111,-163r0,-88r32,0r0,88r-32,0xm57,-163r0,-88r32,0r0,88r-32,0"},"#":{d:"34,0r10,-75r-34,0r0,-27r38,0r7,-47r-35,0r0,-27r39,0r10,-75r27,0r-10,75r43,0r10,-75r27,0r-10,75r34,0r0,27r-38,0r-7,47r35,0r0,27r-39,0r-10,75r-27,0r10,-75r-42,0r-11,75r-27,0xm118,-102r7,-47r-43,0r-6,47r42,0"},
$:{d:"89,-157r0,-64v-32,8,-30,54,0,64xm110,-104r0,73v33,-10,32,-64,0,-73xm89,38r0,-34v-23,0,-41,-3,-59,-10r4,-35v14,10,32,15,55,14r0,-88v-31,-15,-63,-32,-62,-72v0,-36,27,-62,62,-67r0,-36r21,0r0,34v18,0,34,3,51,9r-5,34v-13,-7,-27,-11,-46,-11r0,78v30,17,63,33,63,76v0,39,-25,66,-63,72r0,36r-21,0"},"%":{d:"94,-112v-41,0,-54,-36,-54,-72v0,-39,10,-72,54,-72v44,0,54,34,54,72v0,36,-13,72,-54,72xm266,-21v22,0,23,-32,23,-47v0,-16,1,-46,-23,-46v-22,0,-22,31,-22,46v0,15,0,47,22,47xm89,8r156,-267r26,0r-156,267r-26,0xm266,4v-41,0,-54,-36,-54,-72v0,-39,10,-72,54,-72v44,0,54,34,54,72v0,36,-13,72,-54,72xm94,-137v22,0,22,-32,22,-47v0,-16,2,-46,-22,-46v-22,0,-23,31,-23,46v0,15,1,47,23,47",
w:360},"&":{d:"199,-136r34,0v-3,41,-15,64,-29,86r44,50r-45,0r-20,-24v-39,51,-153,31,-153,-42v0,-38,22,-59,56,-73v-13,-16,-26,-34,-26,-58v0,-40,30,-59,66,-59v33,0,62,17,62,57v0,32,-28,54,-55,66r51,58v10,-15,13,-32,15,-61xm68,-68v0,54,79,53,96,21r-61,-71v-19,13,-35,25,-35,50xm124,-228v-40,-1,-34,59,-8,75v15,-7,38,-23,38,-44v0,-23,-13,-31,-30,-31",w:259},"(":{d:"115,50r-33,0v-33,-49,-59,-101,-59,-161v0,-62,27,-111,59,-161r33,0v-28,49,-56,103,-56,161v0,58,27,112,56,161",w:119},")":{d:"5,-272r32,0v33,49,59,101,59,161v0,62,-27,111,-59,161r-32,0v28,-49,55,-103,55,-161v0,-58,-26,-112,-55,-161",
w:119},"*":{d:"129,-112r-29,-49r-29,49r-27,-18r40,-44r-58,-12r10,-30r54,22r-5,-57r32,0r-5,57r53,-22r9,30r-56,12r38,44"},"+":{d:"17,-75r0,-32r75,0r0,-75r32,0r0,75r75,0r0,32r-75,0r0,75r-32,0r0,-75r-75,0",w:216},",":{d:"7,48r23,-88r40,0r-30,88r-33,0",w:100},"-":{d:"14,-83r0,-28r92,0r0,28r-92,0",w:119},".":{d:"30,0r0,-40r40,0r0,40r-40,0",w:100},"/":{d:"-9,4r86,-260r32,0r-86,260r-32,0",w:100},"0":{d:"15,-126v0,-55,16,-130,85,-130v69,0,85,75,85,130v0,55,-16,130,-85,130v-69,0,-85,-75,-85,-130xm53,-126v0,31,4,101,47,101v43,0,47,-70,47,-101v0,-32,-6,-100,-47,-100v-41,0,-47,68,-47,100"},
"1":{d:"97,0r0,-210r-39,33r-19,-24r62,-50r32,0r0,251r-36,0"},"2":{d:"174,-184v-3,64,-77,116,-117,154r120,0r0,30r-159,0r0,-39v38,-37,113,-84,117,-147v3,-48,-76,-46,-105,-24r-4,-31v58,-29,152,-17,148,57"},"3":{d:"52,-116r0,-29v38,1,82,-2,83,-41v2,-52,-75,-45,-105,-26r-3,-32v56,-22,146,-16,146,57v0,33,-27,50,-54,58v33,7,56,26,56,62v0,79,-95,79,-157,62r3,-34v33,19,116,25,116,-29v0,-45,-41,-50,-85,-48"},"4":{d:"124,-87r-1,-135r-78,135r79,0xm124,0r0,-57r-117,0r0,-30r101,-164r52,0r0,164r32,0r0,30r-32,0r0,57r-36,0"},
"5":{d:"172,-251r0,29r-104,0r-2,68v55,-16,113,18,113,74v0,76,-89,97,-150,76r1,-34v37,24,111,16,111,-37v0,-56,-70,-64,-109,-44r2,-132r138,0"},"6":{d:"172,-248r-5,32v-60,-32,-119,14,-114,81v46,-50,131,-14,131,56v0,52,-35,83,-81,83v-70,0,-84,-63,-84,-120v0,-68,22,-140,102,-140v17,0,42,4,51,8xm101,-25v58,1,61,-104,3,-104v-30,0,-47,23,-47,51v0,24,14,53,44,53"},"7":{d:"177,-251r0,29r-93,222r-40,0r96,-222r-122,0r0,-29r159,0"},"8":{d:"99,4v-42,0,-85,-24,-85,-70v-1,-34,25,-55,53,-67v-79,-30,-56,-124,34,-123v91,1,104,89,33,122v30,10,52,33,52,66v0,50,-40,72,-87,72xm148,-65v1,-35,-27,-41,-54,-54v-21,14,-42,21,-42,51v0,54,95,58,96,3xm56,-190v0,17,18,28,52,45v30,-23,33,-32,33,-49v0,-46,-85,-42,-85,4"},
"9":{d:"148,-117v-45,51,-132,16,-132,-55v0,-52,35,-84,81,-84v70,0,84,64,84,121v0,68,-21,139,-101,139v-17,0,-43,-4,-52,-8r5,-32v59,34,119,-14,115,-81xm99,-226v-58,-1,-61,103,-3,103v30,0,47,-22,47,-50v0,-24,-14,-53,-44,-53"},":":{d:"70,-184r0,41r-40,0r0,-41r40,0xm30,0r0,-40r40,0r0,40r-40,0",w:100},";":{d:"7,48r23,-88r40,0r-30,88r-33,0xm70,-184r0,41r-40,0r0,-41r40,0",w:100},"<":{d:"199,-185r0,32r-141,62r141,62r0,32r-182,-80r0,-28",w:216},"=":{d:"17,-113r0,-32r182,0r0,32r-182,0xm17,-37r0,-32r182,0r0,32r-182,0",
w:216},">":{d:"17,3r0,-32r141,-62r-141,-62r0,-32r182,80r0,28",w:216},"?":{d:"164,-190v0,51,-56,65,-57,119r-34,0v-8,-53,51,-70,53,-117v1,-47,-74,-41,-97,-22r-2,-34v50,-24,137,-12,137,54xm70,0r0,-40r41,0r0,40r-41,0",w:180},"@":{d:"132,-78v41,1,68,-84,18,-89v-45,-3,-71,84,-18,89xm221,-192r-27,107v0,5,2,9,7,9v21,0,44,-30,44,-67v0,-56,-43,-87,-96,-87v-61,0,-101,46,-101,105v0,104,124,133,183,72r27,0v-59,100,-240,62,-240,-73v0,-78,60,-130,132,-130v63,0,120,43,120,107v0,68,-58,100,-85,100v-12,1,-19,-9,-22,-20v-29,38,-92,14,-92,-37v0,-63,77,-127,118,-67r5,-19r27,0",
w:288},A:{d:"4,0r108,-251r37,0r107,251r-40,0r-25,-63r-123,0r-26,63r-38,0xm179,-93r-50,-124r-50,124r100,0",w:259},B:{d:"30,0r0,-251v72,-1,156,-7,156,63v0,36,-22,51,-52,61v34,3,59,25,59,60v-1,78,-87,67,-163,67xm66,-114r0,84v43,0,88,4,88,-40v0,-47,-45,-44,-88,-44xm66,-222r0,78v42,0,86,4,84,-40v-2,-45,-43,-38,-84,-38",w:219},C:{d:"208,-245r-2,35v-67,-38,-149,7,-149,84v0,81,82,122,150,86r2,35v-100,32,-190,-22,-190,-122v0,-96,96,-155,189,-118",w:219},D:{d:"30,0r0,-251v115,-10,207,18,208,123v2,112,-89,138,-208,128xm66,-220r0,188v81,6,136,-14,134,-94v-2,-75,-55,-102,-134,-94",
w:259},E:{d:"34,0r0,-251r141,0r0,31r-105,0r0,74r95,0r0,32r-95,0r0,82r105,0r0,32r-141,0"},F:{d:"30,0r0,-251r133,0r0,31r-97,0r0,74r93,0r0,32r-93,0r0,114r-36,0",w:180},G:{d:"226,-243r-3,36v-18,-12,-37,-17,-69,-17v-58,0,-97,42,-97,98v0,74,69,114,135,94r0,-76r-53,0r0,-30r89,0r0,131v-14,5,-37,11,-76,11v-80,0,-133,-51,-133,-131v0,-105,115,-154,207,-116",w:259},H:{d:"34,0r0,-251r36,0r0,105r120,0r0,-105r36,0r0,251r-36,0r0,-114r-120,0r0,114r-36,0",w:259},I:{d:"32,0r0,-251r36,0r0,251r-36,0",w:100},J:{d:"8,0r0,-31v37,13,63,-5,63,-45r0,-175r36,0r0,186v8,44,-44,82,-99,65",
w:140},K:{d:"34,0r0,-251r36,0r0,110r107,-110r48,0r-118,119r127,132r-52,0r-112,-123r0,123r-36,0",w:240},L:{d:"32,0r0,-251r36,0r0,219r105,0r0,32r-141,0",w:180},M:{d:"32,0r0,-251r60,0r79,209r77,-209r59,0r0,251r-36,0r0,-217r-83,217r-36,0r-84,-217r0,217r-36,0",w:339},N:{d:"32,0r0,-251r49,0r111,202r0,-202r36,0r0,251r-46,0r-114,-207r0,207r-36,0",w:259},O:{d:"57,-126v0,50,25,99,83,99v58,0,83,-49,83,-99v0,-51,-28,-98,-83,-98v-55,0,-83,47,-83,98xm19,-126v0,-75,45,-130,121,-130v76,0,121,55,121,130v0,76,-44,130,-121,130v-77,0,-121,-54,-121,-130",
w:280},P:{d:"66,-220r0,88v44,1,82,3,86,-44v-5,-43,-44,-46,-86,-44xm30,0r0,-251v79,-1,160,-7,160,75v0,69,-57,80,-124,76r0,100r-36,0"},Q:{d:"57,-126v0,50,25,99,83,99v58,0,83,-49,83,-99v0,-51,-28,-98,-83,-98v-55,0,-83,47,-83,98xm207,46r-47,-43v-89,10,-141,-47,-141,-129v0,-75,45,-130,121,-130v137,0,160,208,53,250r59,52r-45,0",w:280},R:{d:"30,0r0,-251v75,2,157,-14,159,68v1,32,-25,50,-52,58v11,4,18,10,25,25r47,100r-41,0r-38,-87v-14,-31,-32,-24,-64,-25r0,112r-36,0xm66,-220r0,77v43,3,85,-6,85,-40v0,-35,-44,-40,-85,-37",
w:219},S:{d:"151,-247r-5,34v-32,-15,-91,-22,-91,23v0,48,108,36,108,119v0,73,-83,87,-143,65r3,-34v32,16,102,26,102,-28v0,-56,-108,-41,-108,-119v0,-65,76,-82,134,-60",w:180},T:{d:"82,0r0,-220r-78,0r0,-31r192,0r0,31r-78,0r0,220r-36,0"},U:{d:"228,-251r0,147v0,71,-36,108,-98,108v-62,0,-98,-37,-98,-108r0,-147r36,0v7,87,-30,224,62,224v92,0,54,-138,62,-224r36,0",w:259},V:{d:"238,-251r-96,251r-45,0r-95,-251r40,0r79,219r79,-219r38,0",w:240},W:{d:"77,0r-76,-251r39,0r61,215r54,-215r51,0r55,215r60,-215r38,0r-77,251r-47,0r-55,-220r-55,220r-48,0",
w:360},X:{d:"3,0r92,-131r-84,-120r43,0r67,96r67,-96r41,0r-85,120r93,131r-45,0r-74,-107r-72,107r-43,0",w:240},Y:{d:"102,0r0,-105r-98,-146r42,0r75,112r73,-112r42,0r-98,146r0,105r-36,0",w:240},Z:{d:"12,0r0,-32r130,-188r-126,0r0,-31r167,0r0,32r-130,187r132,0r0,32r-173,0"},"[":{d:"34,50r0,-322r68,0r0,25r-36,0r0,272r36,0r0,25r-68,0",w:119},"\\":{d:"77,4r-86,-260r32,0r86,260r-32,0",w:100},"]":{d:"86,-272r0,322r-68,0r0,-25r36,0r0,-272r-36,0r0,-25r68,0",w:119},"^":{d:"22,-106r71,-145r30,0r71,145r-32,0r-54,-112r-54,112r-32,0",
w:216},_:{d:"0,27r180,0r0,18r-180,0r0,-18",w:180},a:{d:"39,-142r-2,-29v17,-10,38,-17,61,-17v97,0,69,103,75,188r-32,0r0,-24v-8,11,-26,28,-57,28v-40,0,-67,-17,-67,-57v0,-59,65,-63,121,-60v8,-59,-69,-57,-99,-29xm87,-23v39,-1,55,-25,51,-64v-33,-2,-85,-6,-85,34v0,19,19,30,34,30"},b:{d:"29,0r0,-270r34,0r0,112v10,-17,29,-30,61,-30v53,0,79,44,79,93v0,50,-23,99,-78,99v-34,1,-53,-17,-64,-30r0,26r-32,0xm117,-23v67,-5,70,-136,0,-138v-71,2,-74,135,0,138",w:219},c:{d:"148,-181r-3,28v-50,-25,-95,11,-95,61v0,47,50,89,97,59r3,30v-72,26,-136,-21,-136,-89v0,-71,65,-114,134,-89",
w:159},d:{d:"159,0v-1,-8,2,-20,-1,-26v-9,14,-30,30,-63,30v-55,0,-78,-49,-78,-99v0,-49,26,-93,79,-93v32,0,51,13,61,30r0,-112r34,0r0,270r-32,0xm53,-93v0,29,14,70,50,70v74,0,71,-136,0,-138v-37,0,-50,35,-50,68",w:219},e:{d:"170,-41r0,33v-13,5,-28,12,-58,12v-65,0,-95,-39,-95,-99v0,-54,34,-93,86,-93v61,0,81,45,81,104r-131,0v0,36,28,61,60,61v22,0,49,-11,57,-18xm53,-109r95,0v0,-28,-17,-52,-46,-52v-33,0,-46,28,-49,52"},f:{d:"51,0r0,-156r-43,0r0,-28r43,0v-7,-63,18,-101,84,-88r-1,27v-41,-10,-55,17,-49,61r48,0r0,28r-48,0r0,156r-34,0",
w:140},g:{d:"191,-184v-9,115,41,264,-95,264v-19,0,-35,-3,-65,-13r3,-31v57,34,135,19,123,-64v-14,19,-39,28,-62,28v-53,0,-78,-42,-78,-90v0,-47,27,-98,82,-98v33,-1,49,14,61,32r0,-28r31,0xm104,-27v32,0,53,-29,53,-63v0,-38,-17,-71,-53,-71v-67,0,-68,135,0,134",w:219},h:{d:"29,0r0,-270r34,0r0,113v12,-19,33,-31,59,-31v88,0,67,105,69,188r-34,0v-4,-59,18,-160,-39,-161v-68,-1,-54,92,-55,161r-34,0",w:219},i:{d:"33,0r0,-184r34,0r0,184r-34,0xm69,-263r0,38r-38,0r0,-38r38,0",w:100},j:{d:"-6,78r1,-29v25,5,39,-6,38,-37r0,-196r34,0r0,190v0,27,-1,74,-52,74v-7,0,-16,-1,-21,-2xm69,-263r0,38r-38,0r0,-38r38,0",
w:100},k:{d:"29,0r0,-270r34,0r0,161r73,-75r47,0r-86,82r96,102r-48,0r-82,-94r0,94r-34,0"},l:{d:"33,0r0,-270r34,0r0,270r-34,0",w:100},m:{d:"28,0r0,-184r32,0v1,8,-2,21,1,27v23,-40,91,-45,110,5v32,-64,121,-37,121,34r0,118r-34,0r0,-109v0,-23,-6,-52,-33,-52v-65,0,-45,96,-48,161r-34,0r0,-109v0,-23,-5,-52,-32,-52v-66,0,-46,95,-49,161r-34,0",w:320},n:{d:"29,0r0,-184r33,0r0,30v10,-21,34,-34,60,-34v88,0,67,105,69,188r-34,0v-4,-59,18,-160,-39,-161v-68,-1,-54,92,-55,161r-34,0",w:219},o:{d:"17,-92v0,-56,37,-96,93,-96v56,0,93,40,93,96v0,53,-38,96,-93,96v-55,0,-93,-43,-93,-96xm110,-161v-73,0,-79,137,0,138v79,-1,73,-138,0,-138",
w:219},p:{d:"29,76r0,-260r32,0v1,8,-2,20,1,26v9,-14,30,-30,62,-30v53,0,79,44,79,93v0,50,-23,99,-78,99v-32,0,-52,-12,-62,-29r0,101r-34,0xm117,-23v67,-5,70,-136,0,-138v-71,2,-74,135,0,138",w:219},q:{d:"191,-184r0,260r-34,0r0,-100v-10,17,-35,28,-62,28v-55,0,-78,-49,-78,-99v0,-49,26,-93,79,-93v33,-1,52,18,63,31r0,-27r32,0xm53,-93v0,29,14,70,50,70v74,0,71,-136,0,-138v-37,0,-50,35,-50,68",w:219},r:{d:"29,0r0,-184r31,0v1,9,-2,22,1,29v12,-26,40,-39,70,-30r0,30v-72,-24,-71,79,-68,155r-34,0",w:140},s:{d:"13,-6r2,-30v13,9,32,13,42,13v15,0,35,-6,35,-26v0,-33,-80,-31,-80,-82v0,-54,61,-67,107,-50r-3,30v-21,-13,-68,-16,-68,13v0,37,80,26,80,85v0,59,-68,68,-115,47",
w:140},t:{d:"126,-184r0,28r-48,0v2,53,-18,160,51,126r0,29v-40,13,-85,1,-85,-48r0,-107r-41,0r0,-28r41,0r0,-42r34,-11r0,53r48,0",w:140},u:{d:"191,-184r0,184r-33,0r0,-29v-10,21,-34,33,-60,33v-88,0,-67,-105,-69,-188r34,0v4,59,-18,160,39,161v68,1,54,-92,55,-161r34,0",w:219},v:{d:"176,-184r-66,184r-40,0r-66,-184r37,0r50,150r51,-150r34,0",w:180},w:{d:"296,-184r-59,184r-40,0r-48,-154r-46,154r-40,0r-59,-184r37,0r43,152r47,-152r40,0r47,152r44,-152r34,0",w:299},x:{d:"4,0r66,-96r-60,-88r42,0r40,66r41,-66r38,0r-59,88r64,96r-41,0r-46,-72r-45,72r-40,0",
w:180},y:{d:"13,77r2,-27v4,1,10,3,16,3v30,0,40,-42,40,-46r-68,-191r37,0r50,152r50,-152r34,0r-67,188v-13,42,-37,89,-94,73",w:180},z:{d:"15,0r0,-30r106,-126r-100,0r0,-28r140,0r0,30r-106,127r110,0r0,27r-150,0",w:180},"{":{d:"113,-272r0,25v-53,-11,-37,49,-37,93v0,32,-24,41,-33,43v9,1,33,10,33,45v0,38,-21,100,37,91r0,25v-39,3,-69,-3,-69,-45v0,-41,6,-104,-31,-103r0,-25v38,2,31,-63,31,-104v0,-42,30,-48,69,-45",w:119},"|":{d:"24,-270r32,0r0,360r-32,0r0,-360",w:79},"}":{d:"7,50r0,-25v52,11,37,-48,37,-92v0,-32,24,-42,33,-44v-9,-1,-33,-10,-33,-45v0,-38,21,-100,-37,-91r0,-25v39,-3,69,3,69,45v0,41,-6,105,31,104r0,25v-37,-2,-31,62,-31,103v0,42,-30,48,-69,45",
w:119},"~":{d:"70,-118v24,0,56,23,77,24v14,0,23,-13,31,-26r13,25v-8,15,-21,31,-45,31v-24,0,-56,-25,-77,-25v-14,0,-23,14,-31,27r-13,-25v8,-15,21,-31,45,-31",w:216},"'":{d:"34,-163r0,-88r32,0r0,88r-32,0",w:100},"`":{d:"42,-261r32,52r-24,0r-47,-52r39,0",w:100},"\u00a0":{w:100}}});
Cufon.registerFont({w:200,face:{"font-family":"Frutiger","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0",ascent:"288",descent:"-72","x-height":"4",bbox:"-5 -282 356 90","underline-thickness":"18","underline-position":"-36",stemh:"35",stemv:"50","unicode-range":"U+0020-U+007E"},glyphs:{" ":{w:100},"!":{d:"49,-74r-7,-177r56,0r-8,177r-41,0xm45,0r0,-50r50,0r0,50r-50,0",w:140},'"':{d:"98,-161r0,-90r43,0r0,90r-43,0xm32,-161r0,-90r44,0r0,90r-44,0",w:173},"#":{d:"178,-103r0,29r-33,0r-11,74r-31,0r10,-74r-37,0r-10,74r-32,0r10,-74r-32,0r0,-29r36,0r6,-46r-31,0r0,-28r36,0r10,-74r32,0r-10,74r36,0r11,-74r31,0r-10,74r29,0r0,28r-33,0r-6,46r29,0xm123,-149r-37,0r-6,46r37,0"},
$:{d:"93,-156r0,-56v-23,7,-29,48,0,56xm110,-95r0,55v27,-9,28,-46,0,-55xm93,-282r17,0r0,26v21,0,41,3,59,9r-5,42v-17,-7,-34,-11,-54,-11r0,67v32,13,74,25,74,77v0,47,-33,70,-74,75r0,29r-17,0r0,-28v-29,0,-42,-3,-68,-9r5,-46v19,10,40,19,63,15r0,-67v-32,-13,-72,-26,-72,-76v0,-49,33,-71,72,-76r0,-27"},"%":{d:"262,-24v33,0,33,-75,0,-75v-19,0,-23,22,-23,37v0,15,4,38,23,38xm88,8r156,-267r29,0r-155,267r-30,0xm99,-123v-39,0,-61,-24,-61,-66v0,-42,22,-67,61,-67v39,0,59,25,59,67v0,42,-20,66,-59,66xm99,-152v19,0,22,-22,22,-37v0,-15,-3,-38,-22,-38v-33,0,-33,75,0,75xm262,4v-39,0,-60,-24,-60,-66v0,-42,21,-66,60,-66v39,0,60,24,60,66v0,42,-21,66,-60,66",
w:360},"&":{d:"156,-48r-56,-63v-41,13,-38,80,12,78v17,0,33,-4,44,-15xm112,-158v13,-6,32,-21,32,-36v0,-18,-13,-26,-27,-26v-14,0,-29,8,-29,26v0,14,14,26,24,36xm140,-132r46,50v12,-14,15,-35,16,-54r44,0v-1,32,-13,62,-33,86r45,50r-61,0r-17,-22v-47,48,-158,28,-158,-47v0,-30,13,-52,53,-69v-19,-18,-35,-31,-35,-60v2,-74,146,-82,148,-1v0,35,-21,51,-48,67",w:259},"(":{d:"72,-272r45,0v-67,88,-68,232,0,322r-45,0v-76,-90,-76,-234,0,-322",w:119},")":{d:"48,50r-45,0v67,-90,68,-234,0,-322r45,0v76,88,76,232,0,322",
w:119},"*":{d:"174,-182r-50,11r35,39r-33,23r-26,-44r-27,44r-33,-23r35,-39r-49,-11r12,-38r48,21r-6,-52r41,0r-6,52r48,-21"},"+":{d:"89,-110r0,-72r38,0r0,72r72,0r0,38r-72,0r0,72r-38,0r0,-72r-72,0r0,-38r72,0",w:216},",":{d:"8,40r23,-90r53,0r-33,90r-43,0",w:100},"-":{d:"107,-77r-94,0r0,-40r94,0r0,40",w:119},".":{d:"25,0r0,-50r50,0r0,50r-50,0",w:100},"/":{d:"8,4r87,-260r38,0r-88,260r-37,0",w:140},"0":{d:"100,-33v38,0,37,-60,37,-92v0,-32,0,-93,-37,-93v-37,0,-37,61,-37,93v0,32,0,92,37,92xm100,4v-77,0,-87,-76,-87,-129v0,-63,19,-131,87,-131v73,0,88,73,88,131v0,58,-15,129,-88,129"},
"1":{d:"28,-192r74,-59r45,0r0,251r-51,0r0,-194r-42,35"},"2":{d:"182,0r-167,0r0,-42v23,-23,108,-94,108,-140v0,-49,-72,-36,-99,-14r-3,-42v58,-32,153,-25,153,56v0,53,-54,102,-95,142r103,0r0,40"},"3":{d:"16,-4r3,-43v36,16,104,23,109,-24v4,-38,-39,-40,-80,-39r0,-40v38,2,81,-4,79,-33v-3,-47,-68,-36,-100,-20r-3,-40v56,-19,147,-30,153,52v3,35,-23,49,-47,61v32,4,48,28,48,59v0,85,-94,82,-162,67"},"4":{d:"51,-90r63,0r-1,-109xm6,-52r0,-41r94,-158r62,0r0,161r32,0r0,38r-32,0r0,52r-48,0r0,-52r-108,0"},"5":{d:"176,-251r0,37r-96,0r-2,54v51,-10,105,4,105,79v0,47,-33,85,-98,85v-19,0,-42,-3,-59,-7r1,-45v31,18,106,23,105,-32v-1,-48,-61,-49,-102,-36r2,-135r144,0"},
"6":{d:"172,-247r-6,41v-13,-6,-27,-10,-44,-10v-43,-1,-61,43,-59,78v36,-53,122,-17,122,52v0,54,-27,90,-84,90v-70,0,-85,-58,-85,-117v0,-68,22,-143,103,-143v18,0,36,3,53,9xm100,-125v-24,0,-34,22,-34,47v0,24,10,45,35,45v45,-1,44,-93,-1,-92"},"7":{d:"18,-212r0,-39r162,0r0,41r-89,210r-55,0r93,-212r-111,0"},"8":{d:"13,-68v-1,-29,18,-46,46,-63v-25,-11,-42,-32,-42,-58v0,-45,34,-67,80,-67v44,0,84,19,84,61v0,23,-14,49,-42,60v33,15,49,37,49,66v0,51,-37,73,-87,73v-49,0,-88,-21,-88,-72xm65,-188v0,22,23,32,40,38v33,-8,40,-68,-3,-68v-18,0,-37,10,-37,30xm95,-110v-42,10,-42,77,6,77v20,0,36,-13,36,-34v0,-25,-21,-36,-42,-43"},
"9":{d:"28,-5r7,-40v13,6,27,10,44,10v44,1,62,-43,59,-79v-36,52,-122,18,-122,-51v0,-54,26,-91,83,-91v70,0,86,58,86,117v0,68,-23,143,-104,143v-18,0,-36,-3,-53,-9xm100,-126v24,0,34,-23,34,-48v0,-24,-10,-44,-35,-44v-45,1,-44,93,1,92"},":":{d:"25,-135r0,-50r50,0r0,50r-50,0xm25,0r0,-50r50,0r0,50r-50,0",w:100},";":{d:"8,40r23,-90r53,0r-33,90r-43,0xm25,-135r0,-50r50,0r0,50r-50,0",w:100},"<":{d:"199,-34r0,37r-182,-79r0,-31r182,-78r0,37r-134,57",w:216},"=":{d:"199,-149r0,37r-182,0r0,-37r182,0xm199,-71r0,38r-182,0r0,-38r182,0",
w:216},">":{d:"17,-34r134,-57r-134,-57r0,-37r182,78r0,31r-182,79r0,-37",w:216},"?":{d:"66,-73v-3,-60,46,-69,53,-112v-4,-46,-66,-35,-97,-19r-4,-40v60,-21,153,-21,153,53v0,50,-65,71,-61,118r-44,0xm63,0r0,-50r50,0r0,50r-50,0",w:180},"@":{d:"149,-161v-39,-3,-59,73,-13,76v38,3,59,-73,13,-76xm227,-51r31,0v-68,95,-244,67,-245,-75v0,-72,59,-130,140,-130v58,0,122,32,122,106v0,74,-67,100,-91,100v-11,0,-17,-7,-20,-18v-29,36,-92,12,-92,-41v0,-67,75,-118,116,-64r4,-17r30,0r-22,100v0,3,1,5,5,5v18,0,41,-19,41,-64v0,-59,-51,-73,-93,-73v-60,0,-102,45,-102,96v0,91,106,124,176,75",
w:288},A:{d:"165,-97r-37,-104r-36,104r73,0xm3,0r98,-251r57,0r99,251r-56,0r-22,-58r-102,0r-22,58r-52,0",w:259},B:{d:"80,-112r0,72v35,0,75,2,75,-35v0,-42,-38,-37,-75,-37xm80,-212r0,62v31,0,68,3,68,-30v0,-36,-36,-32,-68,-32xm29,0r0,-251v78,5,161,-24,169,64v3,31,-22,50,-50,57v34,3,58,26,58,57v0,98,-93,68,-177,73",w:219},C:{d:"210,-46r2,42v-98,25,-195,-11,-195,-117v0,-107,95,-159,195,-124r-4,42v-66,-37,-139,6,-139,78v0,73,76,110,141,79",w:219},D:{d:"29,0r0,-251v115,-3,214,-3,214,125v0,127,-98,130,-214,126xm80,-212r0,172v64,6,110,-20,110,-86v0,-66,-46,-92,-110,-86",
w:259},E:{d:"29,0r0,-251r148,0r0,39r-97,0r0,62r89,0r0,40r-89,0r0,70r98,0r0,40r-149,0"},F:{d:"29,0r0,-251r140,0r0,39r-89,0r0,62r85,0r0,40r-85,0r0,110r-51,0",w:180},G:{d:"229,-245r-4,42v-70,-34,-156,1,-156,78v0,62,52,104,119,86r0,-65r-53,0r0,-40r101,0r0,135v-102,33,-219,5,-219,-112v0,-115,108,-157,212,-124",w:259},H:{d:"29,0r0,-251r51,0r0,101r100,0r0,-101r51,0r0,251r-51,0r0,-110r-100,0r0,110r-51,0",w:259},I:{d:"25,0r0,-251r50,0r0,251r-50,0",w:100},J:{d:"8,0r0,-44v7,3,14,4,24,4v33,0,33,-26,33,-44r0,-167r50,0r0,191v0,27,-18,64,-69,64v-14,0,-24,0,-38,-4",
w:140},K:{d:"29,0r0,-251r51,0r0,108r90,-108r62,0r-103,118r108,133r-66,0r-91,-117r0,117r-51,0",w:240},L:{d:"29,0r0,-251r51,0r0,211r97,0r0,40r-148,0",w:180},M:{d:"29,0r0,-251r81,0r60,190r60,-190r81,0r0,251r-49,0r0,-207r-68,207r-48,0r-69,-207r0,207r-48,0",w:339},N:{d:"27,0r0,-251r62,0r96,188r0,-188r48,0r0,251r-61,0r-97,-188r0,188r-48,0",w:259},O:{d:"17,-126v0,-77,43,-130,123,-130v79,0,123,54,123,130v0,76,-43,130,-123,130v-81,0,-123,-53,-123,-130xm140,-216v-96,1,-96,180,0,181v97,-1,96,-180,0,-181",w:280},
P:{d:"75,-212r0,77v34,1,66,-1,66,-37v0,-36,-30,-42,-66,-40xm25,0r0,-251v82,-1,168,-7,168,76v0,66,-52,83,-118,80r0,95r-50,0"},Q:{d:"257,48r-61,0r-44,-44v-87,5,-136,-49,-135,-130v0,-77,43,-130,123,-130v138,0,162,200,60,247xm140,-216v-96,1,-96,180,0,181v97,-1,96,-180,0,-181",w:280},R:{d:"75,-212r0,68v34,0,70,2,70,-35v0,-36,-37,-33,-70,-33xm25,0r0,-251v78,4,168,-21,173,68v1,31,-22,52,-52,59v14,1,21,15,26,26r41,98r-56,0r-31,-78v-7,-25,-22,-27,-51,-26r0,104r-50,0",w:219},S:{d:"169,-247r-5,42v-33,-13,-91,-25,-91,24v0,44,111,25,111,109v1,79,-92,87,-159,67r5,-46v31,19,101,29,101,-17v0,-48,-110,-28,-110,-111v1,-80,85,-88,148,-68"},
T:{d:"75,0r0,-212r-72,0r0,-39r194,0r0,39r-72,0r0,212r-50,0"},U:{d:"27,-91r0,-160r51,0v9,79,-31,216,52,216v83,0,43,-138,52,-216r51,0r0,160v0,67,-39,95,-103,95v-64,0,-103,-28,-103,-95",w:259},V:{d:"90,0r-86,-251r54,0r65,197r63,-197r51,0r-85,251r-62,0",w:240},W:{d:"70,0r-66,-251r53,0r47,201r43,-201r68,0r45,201r47,-201r49,0r-65,251r-65,0r-46,-201r-45,201r-65,0",w:360},X:{d:"4,0r82,-131r-75,-120r58,0r53,89r54,-89r54,0r-76,120r83,131r-60,0r-58,-98r-59,98r-56,0",w:240},Y:{d:"96,0r0,-99r-92,-152r59,0r59,105r61,-105r53,0r-90,152r0,99r-50,0",
w:240},Z:{d:"13,0r0,-41r118,-171r-113,0r0,-39r167,0r0,41r-119,170r121,0r0,40r-174,0"},"[":{d:"26,50r0,-322r81,0r0,35r-35,0r0,252r35,0r0,35r-81,0",w:119},"\\":{d:"95,4r-88,-260r38,0r87,260r-37,0",w:140},"]":{d:"13,-272r81,0r0,322r-81,0r0,-35r35,0r0,-252r-35,0r0,-35",w:119},"^":{d:"61,-113r-37,0r67,-138r34,0r67,138r-37,0r-47,-100",w:216},_:{d:"0,27r180,0r0,18r-180,0r0,-18",w:180},a:{d:"13,-51v0,-61,60,-65,121,-63v3,-57,-72,-43,-99,-20r-2,-42v60,-27,142,-20,144,64r3,112r-42,0v-3,-10,0,-24,-3,-28v-25,51,-122,39,-122,-23xm59,-54v0,31,53,28,64,6v8,-10,11,-24,11,-38v-33,0,-75,-3,-75,32"},
b:{d:"73,-93v0,26,11,60,43,60v32,0,41,-34,41,-60v0,-25,-9,-59,-40,-59v-31,0,-44,33,-44,59xm25,0r0,-270r48,0r1,108v13,-18,30,-28,55,-28v57,0,78,46,78,97v0,51,-21,97,-78,97v-21,0,-43,-7,-57,-27r0,23r-47,0",w:219},c:{d:"149,-184r-4,39v-38,-19,-82,1,-82,51v0,51,47,75,87,52r3,40v-73,22,-140,-15,-140,-92v0,-71,63,-114,136,-90",w:159},d:{d:"63,-93v0,26,9,60,41,60v60,0,58,-119,-1,-119v-31,0,-40,34,-40,59xm148,0r0,-21v-14,18,-34,25,-57,25v-57,0,-78,-46,-78,-97v0,-51,21,-97,78,-97v25,-1,40,10,56,26r0,-106r48,0r0,270r-47,0",
w:219},e:{d:"59,-111r82,0v-1,-23,-12,-43,-39,-43v-27,0,-41,18,-43,43xm174,-50r0,40v-68,35,-161,5,-161,-82v0,-54,28,-98,86,-98v69,0,88,47,88,112r-128,0v2,58,79,54,115,28"},f:{d:"42,0r0,-150r-35,0r0,-35r35,0v-10,-67,32,-102,95,-85r-4,40v-14,-14,-48,-4,-42,22r0,23r42,0r0,35r-42,0r0,150r-49,0",w:140},g:{d:"104,-37v30,0,43,-27,43,-58v0,-32,-12,-57,-40,-57v-61,1,-58,115,-3,115xm149,-185r46,0r0,167v0,50,-20,98,-98,98v-19,0,-41,-3,-64,-13r4,-41v15,8,39,16,54,16v52,1,58,-42,55,-72v-9,16,-30,30,-57,30v-55,0,-76,-44,-76,-94v0,-45,23,-96,78,-96v25,-1,43,11,58,30r0,-25",
w:219},h:{d:"25,0r0,-270r48,0r1,110v12,-18,33,-30,58,-30v86,-1,59,110,63,190r-48,0r0,-99v0,-23,0,-53,-31,-53v-65,0,-37,90,-43,152r-48,0",w:219},i:{d:"26,0r0,-185r48,0r0,185r-48,0xm26,-219r0,-46r48,0r0,46r-48,0",w:100},j:{d:"-5,77r1,-35v26,-1,30,-6,30,-35r0,-192r48,0r0,199v0,26,-8,66,-56,66v-8,0,-17,-1,-23,-3xm26,-219r0,-46r48,0r0,46r-48,0",w:100},k:{d:"26,0r0,-270r48,0r1,159r57,-74r57,0r-69,82r78,103r-61,0r-63,-90r0,90r-48,0"},l:{d:"26,0r0,-270r48,0r0,270r-48,0",w:100},m:{d:"24,0r0,-185r45,0v1,8,-2,20,1,26v28,-44,90,-41,110,2v11,-22,35,-33,58,-33v86,1,50,113,58,190r-48,0r0,-111v0,-17,0,-41,-28,-41v-59,0,-29,94,-36,152r-48,0r0,-111v0,-17,0,-41,-28,-41v-59,0,-29,94,-36,152r-48,0",
w:320},n:{d:"25,0r0,-185r46,0r0,25v35,-54,124,-32,124,43r0,117r-48,0r0,-99v0,-23,0,-53,-31,-53v-65,0,-37,90,-43,152r-48,0",w:219},o:{d:"13,-91v0,-61,42,-99,97,-99v55,0,97,38,97,99v0,53,-35,95,-97,95v-61,0,-97,-42,-97,-95xm63,-97v0,31,10,64,47,64v65,-1,64,-119,0,-119v-31,0,-47,27,-47,55",w:219},p:{d:"25,76r0,-261r46,0v1,8,-2,20,1,26v11,-18,29,-31,57,-31v57,0,78,46,78,97v0,51,-21,97,-79,97v-22,1,-37,-6,-55,-25r0,97r-48,0xm117,-152v-31,0,-44,33,-44,59v0,26,11,60,43,60v32,0,41,-34,41,-60v0,-25,-9,-59,-40,-59",
w:219},q:{d:"147,76r-1,-97v-17,21,-33,25,-54,25v-58,0,-79,-46,-79,-97v0,-51,21,-97,79,-97v28,-1,43,14,57,31r0,-26r46,0r0,261r-48,0xm103,-152v-31,0,-40,34,-40,59v0,26,9,60,41,60v60,0,58,-119,-1,-119",w:219},r:{d:"26,0r0,-185r43,0r0,42v2,-20,31,-57,66,-45r0,48v-4,-3,-13,-4,-22,-4v-60,0,-33,88,-39,144r-48,0",w:140},s:{d:"138,-183r-3,36v-23,-7,-72,-18,-72,13v0,30,84,11,84,78v0,63,-77,69,-132,52r3,-39v25,13,71,24,79,-11v0,-36,-84,-11,-84,-78v0,-60,77,-66,125,-51",w:159},t:{d:"99,4v-74,3,-56,-85,-58,-154r-36,0r0,-35r36,0r0,-37r48,-16r0,53r43,0r0,35r-43,0r0,86v-5,27,25,38,45,26r1,38v-10,3,-22,4,-36,4",
w:140},u:{d:"195,-185r0,185r-46,0r0,-25v-35,50,-124,33,-124,-43r0,-117r48,0r0,99v0,23,0,53,31,53v65,0,37,-90,43,-152r48,0",w:219},v:{d:"73,0r-69,-185r52,0r47,135r45,-135r48,0r-69,185r-54,0"},w:{d:"67,0r-63,-185r51,0r42,137r37,-137r56,0r41,137r39,-137r46,0r-57,185r-57,0r-41,-141r-39,141r-55,0",w:320},x:{d:"67,-97r-57,-88r57,0r36,60r36,-60r51,0r-56,88r63,97r-58,0r-41,-69r-42,69r-53,0"},y:{d:"57,-185r46,135r44,-135r49,0r-69,184v-14,53,-45,97,-112,76r4,-36v24,8,60,1,56,-30r-71,-194r53,0"},z:{d:"17,-148r0,-37r147,0r0,39r-92,109r95,0r0,37r-154,0r0,-39r94,-109r-90,0",
w:180},"{":{d:"6,-95r0,-31v13,0,30,-8,30,-34r0,-64v2,-43,37,-51,80,-48r0,29v-50,-11,-34,48,-34,88v0,34,-25,43,-40,44v15,1,40,8,40,47v0,35,-20,96,34,86r0,28v-43,3,-80,-4,-80,-48r0,-61v0,-28,-17,-36,-30,-36",w:119},"|":{d:"21,-270r38,0r0,360r-38,0r0,-360",w:79},"}":{d:"113,-126r0,31v-13,0,-29,8,-29,36r0,61v-2,43,-37,51,-80,48r0,-28v49,11,34,-46,34,-86v0,-39,25,-46,40,-47v-15,-1,-40,-10,-40,-44v0,-36,21,-97,-34,-88r0,-29v43,-3,80,4,80,48v0,37,-7,103,29,98",w:119},"~":{d:"150,-60v-41,-2,-92,-52,-112,1r-13,-32v8,-15,20,-31,43,-31v45,1,86,52,110,-1r13,32v-9,15,-22,31,-41,31",
w:216},"'":{d:"28,-161r0,-90r44,0r0,90r-44,0",w:100},"`":{d:"60,-263r30,52r-30,0r-50,-52r50,0",w:100},"\u00a0":{w:100}}});
Cufon.registerFont({w:200,face:{"font-family":"Frutiger","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0",ascent:"288",descent:"-72","x-height":"4",bbox:"-40 -290 393 90","underline-thickness":"18","underline-position":"-36",slope:"-12",stemh:"27",stemv:"34","unicode-range":"U+0020-U+007E"},glyphs:{" ":{w:100},"!":{d:"50,-71r35,-180r43,0r-45,180r-33,0xm32,0r8,-40r41,0r-9,40r-40,0",w:140},'"':{d:"131,-163r0,-88r31,0r0,88r-31,0xm77,-163r0,-88r31,0r0,88r-31,0"},
"#":{d:"44,0r10,-75r-38,0r4,-27r38,0r6,-47r-38,0r4,-27r38,0r11,-75r27,0r-10,75r42,0r11,-75r27,0r-10,75r38,0r-4,27r-38,0r-7,47r38,0r-4,27r-38,0r-10,75r-28,0r11,-75r-43,0r-10,75r-27,0xm127,-102r7,-47r-43,0r-6,47r42,0"},$:{d:"60,37r7,-33v-22,-1,-41,-5,-60,-14r11,-33v17,9,35,16,56,16r20,-91v-27,-14,-54,-31,-54,-66v0,-50,42,-72,84,-72r8,-34r21,0r-8,34v19,1,37,7,54,15r-10,34v-15,-9,-33,-17,-51,-17r-17,78v36,21,60,32,60,77v0,49,-49,73,-94,73r-7,33r-20,0xm102,-155r15,-69v-43,-4,-51,58,-15,69xm113,-108r-19,81v22,0,49,-14,49,-40v0,-23,-12,-30,-30,-41"},
"%":{d:"73,8r184,-267r25,0r-183,267r-26,0xm40,-179v0,-39,23,-77,64,-77v36,0,52,22,52,55v0,41,-20,75,-64,75v-32,0,-52,-21,-52,-53xm70,-179v0,17,4,30,23,30v27,0,34,-33,34,-54v0,-16,-3,-30,-23,-30v-27,0,-34,31,-34,54xm198,-48v0,-39,23,-77,64,-77v36,0,52,22,52,55v0,41,-21,74,-65,74v-32,0,-51,-20,-51,-52xm227,-48v0,17,5,29,24,29v27,0,33,-32,33,-53v0,-16,-2,-30,-22,-30v-27,0,-35,31,-35,54",w:360},"&":{d:"144,-128r40,60v18,-19,25,-44,30,-68r32,0v-6,35,-17,68,-44,94r27,42r-40,0r-12,-19v-46,42,-152,25,-152,-47v0,-42,35,-67,72,-75v-13,-17,-20,-34,-20,-55v0,-74,137,-85,138,-4v0,42,-37,59,-71,72xm160,-44r-48,-73v-24,6,-51,19,-51,49v0,52,63,58,99,24xm128,-151v21,-6,55,-20,55,-47v0,-22,-15,-30,-34,-30v-42,0,-47,54,-21,77",
w:259},"(":{d:"121,-272r36,0v-56,57,-93,112,-93,194v0,44,10,86,21,128r-30,0v-16,-50,-25,-95,-25,-148v0,-69,44,-128,91,-174",w:119},")":{d:"13,50r-36,0v56,-57,94,-112,94,-194v0,-44,-11,-86,-22,-128r30,0v16,50,25,95,25,148v0,69,-44,128,-91,174",w:119},"*":{d:"62,-228r47,34r7,-57r31,7r-17,53r56,-10r2,32r-57,0r28,50r-29,13r-18,-54r-40,41r-21,-23r47,-33r-52,-25"},"+":{d:"22,-75r0,-32r76,0r0,-75r31,0r0,75r75,0r0,32r-75,0r0,75r-31,0r0,-75r-76,0",w:216},",":{d:"-20,48r41,-88r43,0r-50,88r-34,0",w:100},"-":{d:"13,-83r5,-28r95,0r-5,28r-95,0",
w:119},".":{d:"12,0r9,-40r40,0r-8,40r-41,0",w:100},"/":{d:"0,4r86,-260r32,0r-86,260r-32,0",w:100},"0":{d:"17,-78v0,-68,33,-178,114,-178v48,0,68,35,68,82v0,51,-21,178,-115,178v-49,0,-67,-38,-67,-82xm53,-76v0,22,6,51,34,51v57,0,76,-114,76,-151v0,-20,-4,-50,-36,-50v-55,0,-74,109,-74,150"},"1":{d:"69,0r45,-210r-45,31r-16,-27r74,-45r32,0r-54,251r-36,0"},"2":{d:"-1,0r8,-37v31,-24,146,-107,146,-153v0,-54,-68,-37,-101,-20r3,-33v53,-22,136,-23,136,48v0,62,-98,133,-143,165r115,0r-6,30r-158,0"},"3":{d:"61,-116r6,-29v36,0,90,-6,90,-48v0,-49,-69,-34,-102,-20r3,-34v55,-15,132,-19,135,51v1,36,-33,58,-64,66v26,7,42,26,42,53v0,81,-98,95,-169,70r9,-32v44,23,124,22,124,-39v0,-35,-45,-38,-74,-38"},
"4":{d:"125,-87r32,-135r-111,135r79,0xm105,0r12,-57r-117,0r7,-30r136,-164r52,0r-36,164r33,0r-6,30r-33,0r-13,57r-35,0"},"5":{d:"40,-121r30,-130r135,0r-6,29r-102,0r-15,66v52,-9,95,12,95,66v0,84,-90,108,-164,86r6,-32v48,22,123,11,122,-50v-1,-49,-62,-49,-101,-35"},"6":{d:"208,-246r-11,29v-67,-30,-124,21,-133,84v35,-45,121,-26,121,39v0,54,-32,98,-91,98v-48,0,-73,-28,-73,-77v0,-66,30,-183,135,-183v17,0,36,4,52,10xm93,-25v58,0,79,-103,18,-104v-32,0,-54,33,-54,65v0,21,12,39,36,39"},"7":{d:"46,-222r7,-29r159,0r-8,32r-137,219r-41,0r141,-222r-121,0"},
"8":{d:"81,-188v0,19,21,35,36,44v22,-12,49,-21,49,-51v0,-45,-84,-40,-85,7xm45,-188v0,-49,43,-68,83,-68v33,0,74,16,74,58v0,33,-29,57,-58,66v73,36,26,136,-51,136v-41,0,-81,-18,-81,-64v0,-43,35,-67,66,-73v-19,-12,-33,-31,-33,-55xm48,-66v0,26,20,41,45,41v27,0,52,-20,52,-49v0,-28,-32,-40,-42,-44v-25,6,-55,23,-55,52"},"9":{d:"10,-5r11,-29v67,31,124,-22,133,-84v-35,45,-121,26,-121,-39v0,-54,32,-99,91,-99v48,0,73,29,73,78v0,66,-30,182,-135,182v-17,0,-36,-3,-52,-9xm125,-226v-59,0,-79,103,-17,103v32,0,53,-32,53,-64v0,-21,-12,-39,-36,-39"},
":":{d:"90,-184r-8,41r-40,0r8,-41r40,0xm12,0r9,-40r40,0r-8,40r-41,0",w:100},";":{d:"-20,48r41,-88r43,0r-50,88r-34,0xm90,-184r-8,41r-40,0r8,-41r40,0",w:100},"<":{d:"205,-185r0,32r-142,62r142,62r0,32r-183,-80r0,-28",w:216},"=":{d:"22,-113r0,-32r182,0r0,32r-182,0xm22,-37r0,-32r182,0r0,32r-182,0",w:216},">":{d:"22,3r0,-32r142,-62r-142,-62r0,-32r183,80r0,28",w:216},"?":{d:"188,-197v3,56,-86,79,-84,126r-34,0v10,-42,12,-50,49,-77v15,-12,30,-25,30,-46v0,-46,-63,-29,-94,-19r4,-34v53,-16,125,-17,129,50xm53,0r8,-40r41,0r-9,40r-40,0",
w:180},"@":{d:"141,-78v41,1,68,-84,18,-89v-45,-3,-71,84,-18,89xm230,-192r-27,107v0,5,2,9,7,9v21,0,44,-30,44,-67v0,-56,-43,-87,-96,-87v-61,0,-101,46,-101,105v0,104,124,133,183,72r27,0v-59,100,-240,62,-240,-73v0,-78,60,-130,132,-130v63,0,120,43,120,107v0,68,-58,100,-85,100v-12,1,-19,-9,-22,-20v-29,38,-92,14,-92,-37v0,-63,77,-127,118,-67r5,-19r27,0",w:288},A:{d:"187,-93r-24,-119r-76,119r100,0xm-11,0r163,-251r36,0r55,251r-37,0r-13,-63r-124,0r-40,63r-40,0",w:259},B:{d:"100,-222r-16,78v44,1,91,1,91,-44v0,-38,-40,-34,-75,-34xm17,0r54,-251v66,0,140,-10,140,58v0,36,-26,55,-52,64v28,10,40,24,40,51v0,35,-26,78,-103,78r-79,0xm77,-114r-18,84v50,1,102,4,102,-49v0,-40,-45,-35,-84,-35",
w:219},C:{d:"195,-36r-4,33v-85,23,-165,-11,-164,-108v0,-62,42,-145,150,-145v20,0,41,4,60,12r-10,31v-82,-37,-162,28,-162,104v0,73,69,97,130,73",w:219},D:{d:"15,0r53,-251r56,0v89,0,126,44,126,101v0,89,-55,150,-160,150r-75,0xm98,-220r-40,188v93,9,151,-32,154,-114v2,-49,-37,-80,-114,-74",w:259},E:{d:"15,0r55,-251r137,0r-8,31r-99,0r-16,74r93,0r-6,32r-94,0r-19,82r106,0r-7,32r-142,0"},F:{d:"14,0r54,-251r132,0r-6,31r-96,0r-16,74r89,0r-7,32r-89,0r-25,114r-36,0",w:180},G:{d:"255,-241r-11,31v-15,-7,-38,-14,-66,-14v-76,0,-113,56,-113,115v-1,66,54,93,115,78r17,-77r-53,0r8,-30r87,0r-29,135v-86,21,-183,-2,-183,-108v0,-62,42,-145,150,-145v37,0,61,8,78,15",
w:259},H:{d:"17,0r52,-251r37,0r-22,105r119,0r23,-105r35,0r-53,251r-36,0r25,-114r-120,0r-24,114r-36,0",w:259},I:{d:"14,0r54,-251r36,0r-54,251r-36,0",w:100},J:{d:"143,-251r-42,191v-7,58,-56,74,-111,58r6,-33v34,22,74,-6,73,-42r39,-174r35,0",w:140},K:{d:"19,0r54,-251r36,0r-24,111r121,-111r47,0r-135,124r100,127r-46,0r-92,-120r-25,120r-36,0",w:240},L:{d:"14,0r54,-251r36,0r-47,219r104,0r-6,32r-141,0",w:180},M:{d:"15,0r58,-251r54,0r34,205r122,-205r59,0r-53,251r-36,0r45,-215r-129,215r-35,0r-36,-215r-48,215r-35,0",
w:339},N:{d:"15,0r52,-251r48,0r71,210r45,-210r34,0r-54,251r-47,0r-71,-209r-43,209r-35,0",w:259},O:{d:"27,-102v0,-71,49,-154,141,-154v64,0,102,38,102,102v0,80,-47,158,-138,158v-69,0,-105,-37,-105,-106xm65,-101v0,45,24,74,69,74v62,0,98,-67,98,-122v0,-48,-22,-75,-65,-75v-62,0,-102,59,-102,123",w:280},P:{d:"14,0r54,-251v70,0,140,-9,144,65v4,62,-58,94,-140,86r-22,100r-36,0xm98,-220r-19,88v46,1,95,0,95,-48v0,-42,-37,-40,-76,-40"},Q:{d:"65,-101v0,45,24,74,69,74v62,0,98,-67,98,-122v0,-48,-22,-75,-65,-75v-62,0,-102,59,-102,123xm175,46r-34,-42v-72,3,-114,-34,-114,-106v0,-71,49,-154,141,-154v64,0,102,38,102,102v0,66,-32,130,-94,151r45,49r-46,0",
w:280},R:{d:"15,0r54,-251v65,3,143,-19,143,61v0,35,-28,63,-61,68v30,29,28,82,43,122r-38,0v-11,-33,-14,-119,-49,-112r-32,0r-24,112r-36,0xm98,-220r-16,77v42,1,88,1,92,-42v3,-38,-38,-36,-76,-35",w:219},S:{d:"183,-244r-10,32v-29,-18,-95,-22,-96,27v0,42,86,43,86,109v0,38,-27,80,-87,80v-29,0,-50,-6,-70,-14r12,-33v15,9,35,16,53,16v38,0,54,-24,54,-45v0,-51,-86,-42,-86,-112v0,-70,85,-87,144,-60",w:180},T:{d:"233,-251r-7,31r-78,0r-48,220r-36,0r47,-220r-78,0r7,-31r193,0"},U:{d:"265,-251r-32,147v-17,76,-53,108,-111,108v-157,0,-61,-160,-53,-255r36,0r-35,174v0,33,24,50,55,50v53,0,67,-55,76,-97r28,-127r36,0",
w:259},V:{d:"274,-251r-151,251r-43,0r-41,-251r36,0r32,215r127,-215r40,0",w:240},W:{d:"61,0r-21,-251r36,0r15,215r100,-215r47,0r8,215r108,-215r39,0r-132,251r-46,0r-7,-217r-100,217r-47,0",w:360},X:{d:"108,-134r-62,-117r39,0r50,96r84,-96r46,0r-111,121r66,130r-40,0r-53,-109r-95,109r-45,0",w:240},Y:{d:"84,0r21,-105r-67,-146r40,0r50,113r99,-113r46,0r-132,146r-22,105r-35,0",w:240},Z:{d:"-5,0r6,-32r166,-188r-124,0r7,-31r167,0r-6,32r-165,187r130,0r-6,32r-175,0"},"[":{d:"7,50r70,-322r69,0r-6,25r-36,0r-59,272r36,0r-5,25r-69,0",
w:119},"\\":{d:"86,4r-86,-260r32,0r86,260r-32,0",w:100},"]":{d:"125,-272r-70,322r-69,0r6,-25r36,0r59,-272r-36,0r5,-25r69,0",w:119},"^":{d:"29,-106r71,-145r30,0r72,145r-32,0r-55,-112r-55,112r-31,0",w:216},_:{d:"0,27r180,0r0,18r-180,0r0,-18",w:180},a:{d:"176,-130v0,46,-17,89,-22,130r-32,0v1,-10,7,-23,6,-31v-22,48,-117,50,-119,-15v-2,-60,66,-71,134,-66v13,-59,-63,-57,-97,-33r6,-34v53,-17,124,-15,124,49xm135,-88v-41,-1,-90,-2,-90,40v0,16,15,25,31,25v34,0,55,-34,59,-65"},b:{d:"63,-71v0,25,14,48,45,48v59,0,93,-138,21,-138v-40,0,-66,45,-66,90xm13,0r57,-270r34,0r-22,106v34,-45,124,-23,124,46v0,67,-32,122,-93,122v-40,1,-51,-17,-63,-35r-6,31r-31,0",
w:219},c:{d:"165,-181r-9,29v-55,-29,-103,17,-103,75v0,51,47,64,87,46r-6,31v-61,14,-117,-8,-117,-72v0,-80,65,-138,148,-109",w:159},d:{d:"230,-270r-46,209v-4,21,-7,41,-10,61r-32,0v2,-9,3,-19,6,-28v-13,24,-35,32,-63,32v-44,0,-68,-35,-68,-77v0,-58,32,-115,95,-115v26,-1,48,13,60,35r24,-117r34,0xm53,-75v0,29,14,52,45,52v42,0,61,-53,61,-88v0,-27,-15,-50,-45,-50v-40,0,-61,51,-61,86",w:219},e:{d:"58,-109r94,0v5,-30,-7,-52,-38,-52v-28,0,-49,25,-56,52xm161,-34r-5,31v-68,15,-138,13,-139,-75v0,-51,35,-110,100,-110v57,0,78,47,66,104r-129,0v-11,66,58,71,107,50"},
f:{d:"32,0r34,-156r-44,0r5,-28r44,0v7,-48,33,-105,104,-86r-7,27v-41,-16,-59,24,-63,59r49,0r-5,28r-50,0r-33,156r-34,0",w:140},g:{d:"179,-184r32,0r-43,197v-8,55,-92,87,-160,54r8,-31v17,9,40,17,59,17v47,-1,62,-35,68,-74v-34,40,-124,23,-124,-52v0,-68,40,-115,93,-115v26,0,49,13,61,37xm55,-75v0,24,13,48,41,48v30,0,63,-24,63,-84v0,-27,-15,-50,-45,-50v-39,0,-59,51,-59,86",w:219},h:{d:"13,0r56,-270r34,0r-22,109v30,-43,123,-36,119,31v-3,47,-17,87,-24,130r-34,0v8,-43,24,-80,24,-127v0,-19,-12,-34,-33,-34v-80,0,-67,96,-87,161r-33,0",
w:219},i:{d:"15,0r39,-184r33,0r-38,184r-34,0xm107,-263r-8,38r-39,0r8,-38r39,0",w:100},j:{d:"-40,73r7,-26v27,9,38,-1,45,-36r42,-195r33,0r-43,204v-5,26,-14,60,-58,60v-6,0,-21,-4,-26,-7xm107,-263r-8,38r-39,0r8,-38r39,0",w:100},k:{d:"13,0r57,-270r34,0r-34,158r86,-72r49,0r-104,82r75,102r-43,0r-67,-94r-20,94r-33,0"},l:{d:"15,0r57,-270r34,0r-57,270r-34,0",w:100},m:{d:"13,0r37,-184r32,0v-1,8,-6,20,-4,26v21,-36,92,-44,107,2v26,-43,116,-45,116,16v0,49,-18,94,-26,140r-34,0r26,-134v0,-15,-10,-27,-27,-27v-67,0,-61,102,-79,161r-34,0r26,-134v0,-15,-10,-27,-27,-27v-68,0,-61,102,-80,161r-33,0",
w:320},n:{d:"13,0r37,-184r31,0r-5,30v11,-17,31,-34,63,-34v49,0,67,41,57,91r-20,97r-34,0v8,-43,24,-80,24,-127v0,-19,-12,-34,-33,-34v-80,0,-67,96,-87,161r-33,0",w:219},o:{d:"17,-77v0,-61,38,-111,105,-111v49,0,81,30,81,80v0,62,-37,112,-103,112v-50,0,-83,-27,-83,-81xm53,-75v0,29,15,52,47,52v38,0,67,-44,67,-85v0,-27,-16,-53,-47,-53v-45,0,-67,48,-67,86",w:219},p:{d:"-6,76r42,-199v4,-21,7,-41,10,-61r32,0r-6,28v33,-55,131,-36,131,38v0,67,-31,122,-92,122v-33,1,-50,-12,-61,-31r-22,103r-34,0xm60,-71v0,25,15,48,46,48v59,0,92,-138,20,-138v-40,0,-66,45,-66,90",
w:219},q:{d:"211,-184r-55,260r-34,0r19,-94v-40,48,-124,14,-124,-55v0,-58,32,-115,95,-115v26,-1,49,13,61,37r6,-33r32,0xm53,-75v0,29,14,52,45,52v42,0,61,-53,61,-88v0,-27,-15,-50,-45,-50v-40,0,-61,51,-61,86",w:219},r:{d:"13,0r37,-184r31,0r-5,30v11,-19,43,-42,78,-31r-7,30v-48,-16,-75,40,-81,65r-20,90r-33,0",w:140},s:{d:"140,-178r-10,27v-20,-12,-71,-19,-71,13v0,31,63,33,63,84v-1,65,-81,65,-123,50r6,-29v26,12,81,20,81,-18v0,-31,-63,-37,-63,-83v0,-57,72,-63,117,-44",w:140},t:{d:"22,-156r5,-28r41,0r9,-42r36,-13r-11,55r50,0r-5,28r-51,0r-23,113v-3,22,32,23,49,15r-5,28v-34,13,-81,-4,-77,-36v6,-43,15,-80,22,-120r-40,0",
w:140},u:{d:"210,-184r-37,184r-32,0r6,-29v-11,17,-31,33,-63,33v-50,0,-67,-41,-57,-91r20,-97r34,0v-8,43,-24,80,-24,127v0,19,12,34,33,34v80,0,67,-96,86,-161r34,0",w:219},v:{d:"54,0r-29,-184r36,0r19,149r82,-149r36,0r-105,184r-39,0",w:180},w:{d:"45,0r-20,-184r34,0r13,148r78,-148r42,0r13,148r76,-148r38,0r-101,184r-39,0r-15,-148r-79,148r-40,0",w:299},x:{d:"-15,0r85,-97r-39,-87r37,0r27,67r55,-67r42,0r-79,89r45,95r-38,0r-32,-72r-61,72r-42,0",w:180},y:{d:"-14,77r6,-28v30,12,47,-6,63,-39r-29,-194r35,0r22,147r80,-147r36,0r-125,219v-18,36,-41,52,-88,42",
w:180},z:{d:"-2,0r6,-30r130,-126r-102,0r6,-28r145,0r-7,30r-131,127r108,0r-6,27r-149,0",w:180},"{":{d:"151,-272r-5,25v-56,-11,-46,55,-57,92v-10,32,-33,43,-43,44v11,-2,30,20,24,45v-6,26,-13,49,-15,77v-2,15,16,15,31,14r-5,25v-37,4,-67,-5,-59,-45r15,-76v0,-18,-11,-27,-24,-27r6,-25v40,-2,44,-65,53,-104v10,-44,35,-47,79,-45",w:119},"|":{d:"33,-270r32,0r0,360r-32,0r0,-360",w:79},"}":{d:"-31,50r5,-25v56,11,46,-55,57,-92v10,-32,33,-43,43,-44v-11,2,-29,-20,-24,-45r16,-77v2,-16,-17,-15,-32,-14r5,-25v37,-4,65,5,59,45v-4,26,-15,49,-15,77v0,18,11,27,24,27r-5,25v-40,1,-45,64,-54,103v-10,44,-35,47,-79,45",
w:119},"~":{d:"75,-118v24,0,56,25,77,25v14,0,24,-14,32,-27r13,25v-11,15,-23,31,-45,31v-37,0,-92,-51,-109,2r-13,-25v8,-15,21,-31,45,-31",w:216},"'":{d:"49,-163r0,-88r31,0r0,88r-31,0",w:100},"`":{d:"74,-261r24,52r-24,0r-37,-52r37,0",w:100},"\u00a0":{w:100}}});
Cufon.registerFont({w:200,face:{"font-family":"Frutiger","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0",ascent:"288",descent:"-72","x-height":"4",bbox:"-37 -286 391 90","underline-thickness":"18","underline-position":"-36",slope:"-12",stemh:"35",stemv:"50","unicode-range":"U+0020-U+007E"},glyphs:{" ":{w:100},"!":{d:"48,-74r29,-177r56,0r-45,177r-40,0xm38,-50r51,0r-11,50r-50,0",w:140},'"':{d:"118,-161r0,-90r44,0r0,90r-44,0xm53,-161r0,-90r43,0r0,90r-43,0",
w:180},"#":{d:"189,-103r-4,29r-33,0r-11,74r-32,0r11,-74r-38,0r-10,74r-32,0r10,-74r-33,0r4,-29r33,0r7,-46r-33,0r4,-28r33,0r10,-74r32,0r-11,74r38,0r10,-74r32,0r-11,74r33,0r-4,28r-32,0r-6,46r33,0xm129,-149r-36,0r-6,46r36,0"},$:{d:"203,-244r-12,41v-17,-8,-36,-13,-55,-13r-14,66v30,14,62,31,62,69v0,55,-40,85,-93,85r-6,32r-19,0r6,-32v-28,0,-56,-8,-69,-14r13,-44v19,11,39,19,64,19r16,-75v-30,-14,-61,-31,-61,-70v0,-51,44,-76,91,-76r6,-30r18,0r-6,30v18,0,47,7,59,12xm106,-158r12,-58v-33,-2,-44,48,-12,58xm113,-102r-14,67v36,-2,47,-54,14,-67"},
"%":{d:"256,4v-30,0,-50,-15,-50,-50v0,-41,22,-82,68,-82v31,0,55,16,55,49v0,41,-24,83,-73,83xm76,8r195,-267r30,0r-195,267r-30,0xm260,-24v27,0,31,-37,31,-58v0,-12,-6,-17,-18,-17v-24,0,-30,38,-30,57v0,12,7,18,17,18xm100,-152v27,0,31,-37,31,-58v0,-12,-6,-17,-18,-17v-24,0,-29,38,-29,57v0,12,6,18,16,18xm96,-123v-30,0,-50,-16,-50,-51v0,-41,22,-82,68,-82v31,0,55,16,55,49v0,41,-24,84,-73,84",w:360},"&":{d:"187,0r-9,-14v-53,32,-157,25,-156,-53v0,-42,32,-67,69,-78v-10,-14,-18,-25,-18,-47v0,-43,38,-64,76,-64v30,0,69,18,69,58v0,40,-32,58,-65,70r36,52v12,-18,21,-38,22,-60r44,0v-4,35,-18,69,-43,94r29,42r-54,0xm157,-46r-45,-67v-21,8,-42,18,-42,44v0,44,61,42,87,23xm176,-198v0,-17,-13,-22,-25,-22v-34,-2,-38,42,-18,61v18,-5,43,-15,43,-39",
w:259},"(":{d:"103,-272r51,0v-54,65,-84,111,-84,198v0,43,7,84,19,124r-41,0v-14,-45,-29,-91,-29,-139v0,-79,35,-124,84,-183",w:119},")":{d:"30,50r-52,0v54,-65,85,-111,85,-198v0,-43,-7,-84,-19,-124r41,0v14,45,29,91,29,139v0,79,-35,124,-84,183",w:119},"*":{d:"65,-231r43,32r5,-52r38,8r-17,49r51,-10r3,38r-50,0r25,42r-36,17r-16,-50r-37,41r-26,-28r45,-31r-48,-21"},"+":{d:"95,-110r0,-72r37,0r0,72r73,0r0,38r-73,0r0,72r-37,0r0,-72r-73,0r0,-38r73,0",w:216},",":{d:"-13,40r36,-90r55,0r-48,90r-43,0",w:100},"-":{d:"21,-77r9,-40r94,0r-8,40r-95,0",
w:140},".":{d:"8,0r10,-50r50,0r-10,50r-50,0",w:100},"/":{d:"148,-256r-137,260r-42,0r138,-260r41,0",w:100},"0":{d:"151,-181v0,-16,-5,-37,-24,-37v-47,0,-62,115,-62,143v0,19,5,42,28,42v43,0,58,-124,58,-148xm127,-256v53,0,72,36,72,84v0,66,-24,176,-109,176v-53,0,-73,-40,-73,-88v0,-64,29,-172,110,-172"},"1":{d:"67,-162r-22,-34r84,-55r46,0r-55,251r-50,0r43,-194"},"2":{d:"170,-40r-8,40r-165,0r8,-41v45,-41,135,-99,135,-140v0,-51,-70,-37,-96,-13r-1,-45v56,-28,150,-26,150,51v0,61,-78,116,-121,148r98,0"},"3":{d:"3,-10r9,-39v40,21,114,25,114,-28v0,-33,-46,-33,-70,-33r7,-40v31,0,80,0,80,-41v0,-39,-70,-24,-93,-12r5,-42v55,-20,139,-17,141,50v1,38,-28,54,-59,64v26,9,42,24,42,53v-1,84,-107,98,-176,68"},
"4":{d:"5,-52r5,-43r126,-156r62,0r-35,161r36,0r-8,38r-35,0r-11,52r-48,0r11,-52r-103,0xm116,-90r25,-117r-86,117r61,0"},"5":{d:"38,-116r30,-135r144,0r-8,37r-96,0r-12,52v51,-6,88,17,91,76v4,87,-108,105,-174,78r9,-40v38,20,112,20,112,-36v0,-47,-59,-43,-96,-32"},"6":{d:"97,4v-55,0,-77,-38,-77,-89v0,-81,39,-171,132,-171v19,0,45,5,58,11r-13,37v-55,-25,-109,10,-116,58v46,-30,107,-1,107,56v0,56,-34,98,-91,98xm97,-33v45,1,61,-92,11,-92v-28,0,-40,30,-40,54v0,19,10,38,29,38"},"7":{d:"37,-212r7,-39r167,0r-9,45r-130,206r-58,0r136,-212r-113,0"},
"8":{d:"139,-72v0,-21,-13,-30,-28,-42v-22,8,-48,22,-48,47v0,22,15,34,36,34v22,0,40,-16,40,-39xm163,-191v0,-42,-74,-32,-73,7v0,15,18,28,30,35v21,-8,43,-17,43,-42xm12,-62v0,-40,24,-63,61,-74v-17,-10,-29,-27,-29,-47v0,-50,41,-73,88,-73v34,0,77,16,77,57v0,35,-19,58,-53,67v20,12,34,30,34,54v0,55,-40,82,-96,82v-41,0,-82,-24,-82,-66"},"9":{d:"120,-256v55,0,77,38,77,89v0,81,-38,171,-131,171v-19,0,-45,-4,-58,-10r13,-37v55,25,109,-10,116,-58v-46,31,-107,0,-107,-57v0,-56,33,-98,90,-98xm149,-180v0,-19,-9,-38,-28,-38v-30,0,-41,33,-41,58v0,19,8,34,29,34v28,0,40,-30,40,-54"},
":":{d:"46,-185r50,0r-10,50r-50,0xm18,-50r50,0r-10,50r-50,0",w:100},";":{d:"23,-50r55,0r-48,90r-43,0xm46,-185r50,0r-10,50r-50,0",w:100},"<":{d:"205,-34r0,37r-183,-79r0,-31r183,-78r0,37r-134,57",w:216},"=":{d:"205,-149r0,37r-183,0r0,-37r183,0xm205,-71r0,38r-183,0r0,-38r183,0",w:216},">":{d:"22,-34r134,-57r-134,-57r0,-37r183,78r0,31r-183,79r0,-37",w:216},"?":{d:"182,-190v2,58,-72,65,-82,116r-43,0v4,-36,19,-54,47,-76v13,-10,26,-21,26,-39v0,-37,-57,-33,-87,-20r0,-40v57,-15,137,-9,139,59xm51,-50r50,0r-10,50r-51,0",
w:180},"@":{d:"158,-161v-39,-3,-59,73,-13,76v38,3,59,-73,13,-76xm236,-51r30,0v-67,96,-243,66,-244,-75v0,-72,58,-130,139,-130v58,0,122,32,122,106v0,74,-66,100,-90,100v-11,0,-18,-7,-21,-18v-29,37,-92,11,-92,-41v0,-67,75,-118,116,-64r5,-17r30,0r-23,100v0,3,2,5,6,5v18,0,41,-19,41,-64v0,-59,-52,-73,-94,-73v-60,0,-102,45,-102,96v0,91,107,124,177,75",w:288},A:{d:"157,-207v-23,35,-41,74,-62,110r78,0xm-15,0r152,-251r56,0r46,251r-51,0r-8,-58r-107,0r-32,58r-56,0",w:259},B:{d:"8,0r52,-251v70,1,149,-14,151,60v0,31,-25,55,-54,60v28,4,40,26,40,53v0,72,-81,78,-118,78r-71,0xm79,-112r-15,72v40,0,83,3,83,-42v0,-31,-36,-30,-68,-30xm100,-212r-13,62v36,1,73,1,73,-36v0,-30,-33,-25,-60,-26",
w:219},C:{d:"243,-243r-13,42v-62,-39,-153,2,-153,86v0,42,28,80,72,80v21,0,39,-7,53,-16r-8,48v-93,27,-169,-22,-169,-112v0,-108,111,-170,218,-128",w:219},D:{d:"106,-212r-36,172v87,6,129,-33,129,-111v0,-44,-40,-65,-93,-61xm11,0r53,-251v101,0,188,-13,188,107v0,58,-29,144,-156,144r-85,0",w:259},E:{d:"11,0r53,-251r148,0r-8,39r-98,0r-13,62r88,0r-8,40r-88,0r-15,70r100,0r-9,40r-150,0"},F:{d:"11,0r53,-251r139,0r-9,39r-88,0r-13,62r84,0r-8,40r-84,0r-23,110r-51,0",w:180},G:{d:"261,-242r-12,44v-19,-13,-44,-18,-70,-18v-61,0,-100,48,-100,107v0,49,43,85,96,71r14,-66r-53,0r8,-40r102,0r-29,137v-84,28,-190,5,-190,-100v0,-124,119,-177,234,-135",
w:259},H:{d:"11,0r53,-251r50,0r-21,101r101,0r22,-101r50,0r-53,251r-50,0r23,-110r-101,0r-23,110r-51,0",w:259},I:{d:"6,0r53,-251r53,0r-53,251r-53,0",w:100},J:{d:"98,-251r50,0r-35,170v-6,65,-52,100,-125,80r11,-43v32,12,56,-6,63,-38",w:140},K:{d:"65,-251r51,0r-21,98r100,-98r70,0r-127,114r81,137r-60,0r-70,-128r-27,128r-51,0",w:240},L:{d:"8,0r54,-251r50,0r-45,211r99,0r-9,40r-149,0",w:180},M:{d:"11,0r53,-251r84,0r17,181r99,-181r84,0r-54,251r-53,0r47,-208r-114,208r-48,0r-21,-208r-46,208r-48,0",w:339},N:{d:"9,0r54,-251r64,0r54,191r41,-191r48,0r-55,251r-65,0r-53,-193r-40,193r-48,0",
w:259},O:{d:"25,-100v0,-81,62,-156,143,-156v68,0,105,40,105,107v0,81,-62,153,-149,153v-62,0,-99,-44,-99,-104xm166,-216v-59,0,-89,68,-89,119v0,33,17,62,53,62v58,0,90,-69,90,-119v0,-33,-18,-62,-54,-62",w:280},P:{d:"78,-95r-20,95r-50,0r53,-251v68,2,152,-13,152,65v0,71,-61,96,-135,91xm103,-212r-16,77v39,3,74,-9,74,-46v0,-32,-28,-31,-58,-31"},Q:{d:"273,-149v0,62,-39,127,-93,144r53,53r-60,0r-37,-44v-71,4,-110,-40,-111,-104v-2,-81,62,-156,143,-156v68,0,105,40,105,107xm166,-216v-59,0,-89,68,-89,119v0,33,17,62,53,62v58,0,90,-69,90,-119v0,-33,-18,-62,-54,-62",
w:280},R:{d:"8,0r52,-251v71,5,156,-22,160,59v2,44,-35,64,-74,68v14,1,23,9,26,23r24,101r-53,0v-16,-40,4,-116,-63,-104r-22,104r-50,0xm103,-212r-14,68v38,1,78,-2,78,-41v0,-34,-34,-26,-64,-27",w:219},S:{d:"199,-244r-12,41v-29,-15,-94,-26,-94,16v0,40,86,37,86,107v0,90,-105,97,-175,70r13,-43v34,21,109,32,109,-22v0,-45,-86,-38,-86,-105v1,-77,95,-89,159,-64"},T:{d:"30,-212r9,-39r194,0r-8,39r-71,0r-46,212r-53,0r46,-212r-71,0"},U:{d:"63,-251r50,0r-25,119v-8,35,-22,97,34,97v52,0,62,-48,71,-89r27,-127r50,0v-32,100,-18,255,-148,255v-149,0,-73,-161,-59,-255",
w:259},V:{d:"72,0r-33,-251r50,0r24,195r104,-195r55,0r-140,251r-60,0",w:240},W:{d:"54,0r-15,-251r50,0r8,192r84,-192r67,0r2,192r89,-192r52,0r-120,251r-63,0r-3,-201r-88,201r-63,0",w:360},X:{d:"45,-251r55,0r37,86r69,-86r59,0r-104,120r59,131r-55,0r-40,-101r-78,101r-63,0r116,-136",w:240},Y:{d:"76,0r22,-104r-59,-147r53,0r37,105r82,-105r59,0r-122,147r-22,104r-50,0",w:240},Z:{d:"45,-212r8,-39r173,0r-9,39r-151,172r114,0r-8,40r-177,0r8,-40r151,-172r-109,0"},"[":{d:"11,50r71,-322r83,0r-8,35r-38,0r-56,252r38,0r-8,35r-82,0",
w:140},"\\":{d:"84,4r-88,-260r38,0r88,260r-38,0",w:100},"]":{d:"143,-272r-72,322r-82,0r8,-35r38,0r56,-252r-38,0r7,-35r83,0",w:140},"^":{d:"68,-113r-37,0r67,-138r34,0r67,138r-37,0r-47,-100",w:216},_:{d:"0,27r180,0r0,18r-180,0r0,-18",w:180},a:{d:"120,0r5,-28v-26,47,-119,43,-117,-21v2,-67,75,-65,130,-65v13,-54,-60,-44,-96,-26r7,-39v53,-18,133,-22,135,47v0,25,-19,97,-23,132r-41,0xm54,-50v0,13,12,19,24,19v36,0,47,-25,55,-55v-34,0,-79,-1,-79,36"},b:{d:"65,-270r49,0r-24,104v11,-9,29,-24,51,-24v46,0,68,32,68,76v0,58,-32,118,-96,118v-26,0,-39,-4,-54,-30r-6,26r-45,0xm74,-77v0,24,8,44,31,44v40,0,54,-51,54,-80v0,-23,-12,-39,-34,-39v-33,0,-51,43,-51,75",
w:219},c:{d:"172,-183r-11,40v-46,-28,-96,12,-96,62v0,24,8,48,41,48v12,0,26,-3,39,-9r-5,38v-61,25,-125,-6,-125,-72v0,-82,74,-134,157,-107",w:159},d:{d:"189,-270r48,0r-57,270r-45,0v1,-8,6,-20,4,-27v-14,20,-33,31,-61,31v-44,0,-63,-37,-63,-77v0,-55,30,-117,93,-117v24,0,42,10,57,27xm116,-152v-35,0,-51,47,-51,75v0,19,6,44,30,44v35,0,56,-41,56,-75v0,-22,-11,-44,-35,-44",w:219},e:{d:"188,-78r-130,0v-4,59,69,53,108,34r-6,38v-66,23,-148,8,-148,-71v0,-58,44,-113,105,-113v62,0,88,51,71,112xm64,-111r82,0v5,-25,-6,-44,-30,-43v-30,0,-43,17,-52,43"},
f:{d:"25,0r32,-150r-38,0r8,-35r37,0v8,-57,43,-104,112,-85r-11,36v-34,-15,-49,25,-53,49r44,0r-8,35r-43,0r-32,150r-48,0",w:140},g:{d:"2,67r12,-39v19,8,37,14,58,14v50,1,62,-37,70,-77v-12,22,-35,35,-62,35v-45,0,-65,-37,-65,-78v0,-55,34,-112,94,-112v24,0,45,13,57,32r5,-27r46,0r-35,165v-12,60,-38,100,-106,100v-25,0,-50,-4,-74,-13xm150,-113v0,-22,-12,-39,-34,-39v-35,0,-50,45,-50,73v0,22,8,42,30,42v39,0,54,-41,54,-76",w:219},h:{d:"8,0r57,-270r48,0r-22,103v33,-38,118,-27,113,37v-4,47,-17,86,-25,130r-49,0v7,-42,24,-81,24,-126v0,-15,-12,-26,-27,-26v-65,0,-52,98,-71,152r-48,0",
w:219},i:{d:"8,0r39,-185r48,0r-39,185r-48,0xm55,-219r10,-46r48,0r-10,46r-48,0",w:100},j:{d:"47,-185r48,0r-39,184v-14,73,-32,90,-93,77r11,-36v18,6,27,-3,30,-22xm55,-219r10,-46r48,0r-10,46r-48,0",w:100},k:{d:"8,0r57,-270r48,0r-31,152r67,-67r63,0r-89,84r56,101r-55,0r-48,-98r-21,98r-47,0"},l:{d:"8,0r57,-270r48,0r-57,270r-48,0",w:100},m:{d:"8,0r37,-185r45,0v0,7,-5,18,-3,24v23,-39,94,-39,105,7v22,-50,116,-48,116,15v0,51,-20,93,-28,139r-48,0v8,-43,26,-83,26,-130v0,-14,-11,-22,-23,-22v-33,0,-43,39,-48,64r-19,88r-48,0v8,-43,25,-84,25,-130v0,-14,-10,-22,-22,-22v-33,0,-43,39,-48,64r-19,88r-48,0",
w:320},n:{d:"8,0r38,-185r48,0v0,6,-5,14,-3,18v33,-38,118,-27,113,37v-4,47,-17,86,-25,130r-49,0v7,-42,24,-81,24,-126v0,-15,-12,-26,-27,-26v-65,0,-52,98,-71,152r-48,0",w:219},o:{d:"103,-33v37,0,56,-43,56,-75v0,-24,-9,-44,-37,-44v-38,0,-57,42,-57,75v0,24,10,44,38,44xm125,-190v50,0,85,31,85,82v0,65,-45,112,-111,112v-53,0,-84,-32,-84,-84v0,-62,48,-110,110,-110",w:219},p:{d:"-9,76r53,-261r46,0r-5,24v35,-56,124,-26,124,47v0,58,-32,118,-96,118v-22,0,-42,-9,-52,-33r-21,105r-49,0xm159,-113v0,-23,-12,-39,-34,-39v-33,0,-51,43,-51,75v0,24,8,44,31,44v40,0,54,-51,54,-80",
w:219},q:{d:"65,-77v0,19,6,44,30,44v35,0,56,-41,56,-75v0,-22,-11,-44,-35,-44v-35,0,-51,47,-51,75xm112,76r22,-101v-11,20,-30,29,-56,29v-44,0,-63,-37,-63,-77v0,-55,30,-117,93,-117v28,0,44,11,56,36r7,-31r46,0r-56,261r-49,0",w:219},r:{d:"8,0r37,-185r46,0r-6,35v13,-25,39,-47,73,-38r-10,47v-78,-18,-77,78,-92,141r-48,0",w:140},s:{d:"159,-182r-10,36v-22,-8,-66,-17,-72,10v0,23,62,33,62,78v0,69,-86,72,-140,51r11,-38v14,8,27,14,46,14v16,0,33,-5,33,-20v0,-30,-63,-34,-63,-80v0,-63,80,-67,133,-51",w:159},t:{d:"19,-150r8,-35r35,0r8,-39r52,-16r-12,55r43,0r-8,35r-43,0r-20,99v-1,20,28,21,42,14r-8,37v-39,10,-84,2,-82,-44v2,-37,14,-72,20,-106r-35,0",
w:140},u:{d:"216,-185r-39,185r-47,0v0,-6,4,-14,2,-18v-33,37,-119,26,-113,-37v4,-46,18,-86,26,-130r48,0v-7,42,-20,80,-23,126v0,15,11,26,26,26v65,0,53,-98,72,-152r48,0",w:219},v:{d:"55,0r-31,-185r49,0r20,136r73,-136r51,0r-109,185r-53,0"},w:{d:"48,0r-24,-185r48,0r14,139r68,-139r54,0r11,139r71,-139r49,0r-103,185r-54,0r-11,-142r-68,142r-55,0",w:320},x:{d:"80,-185r24,63r52,-63r58,0r-79,88r44,97r-52,0r-29,-71r-55,71r-58,0r84,-97r-39,-88r50,0"},y:{d:"24,-185r49,0r18,137r74,-137r53,0r-126,213v-15,35,-57,65,-110,47r11,-37v30,9,42,5,64,-29"},
z:{d:"185,-185r-8,37r-113,111r93,0r-7,37r-155,0r7,-37r114,-111r-85,0r8,-37r146,0",w:180},"{":{d:"157,-272r-7,29v-78,-7,-19,129,-102,132v57,6,15,73,13,110v-8,21,8,25,29,23r-6,28r-31,0v-62,-1,-30,-70,-23,-108v5,-23,3,-37,-25,-37r7,-31v76,-5,25,-153,114,-146r31,0",w:119},"|":{d:"30,-270r38,0r0,360r-38,0r0,-360",w:79},"}":{d:"64,4v-10,38,-42,50,-89,46r6,-28v78,7,20,-129,102,-133v-57,-6,-15,-73,-12,-109v8,-21,-9,-25,-30,-23r7,-29r30,0v62,1,31,70,24,108v-4,23,-4,38,24,38r-7,31v-47,-1,-45,61,-55,99",w:119},
"~":{d:"155,-60v-41,-2,-92,-52,-112,1r-13,-32v8,-15,21,-31,44,-31v45,2,86,52,110,-1r13,32v-9,15,-23,31,-42,31",w:216},"'":{d:"48,-161r0,-90r44,0r0,90r-44,0",w:100},"`":{d:"107,-211r-31,0r-46,-52r47,0",w:100},"\u00a0":{w:100}}});
var ddsmoothmenu={arrowimages:{down:["downarrowclass",""],right:["rightarrowclass",""]},transition:{overtime:200,outtime:200},shadow:{enabled:false,offsetx:5,offsety:5},detectwebkit:navigator.userAgent.toLowerCase().indexOf("applewebkit")!=-1,getajaxmenu:function(b,a){var d=b("#"+a.contentsource[0]);d.html("Loading Menu...");b.ajax({url:a.contentsource[1],async:true,error:function(c){d.html("Error fetching content. Server Response: "+c.responseText)},success:function(c){d.html(c);
ddsmoothmenu.buildmenu(b,a)}})},buildshadow:function(){},buildmenu:function(b,a){var d=ddsmoothmenu,c=b("#"+a.mainmenuid+">ul"),l=c.find("ul").parent();l.hover(function(){b(this).children("a:eq(0)").addClass("selected")},function(){b(this).children("a:eq(0)").removeClass("selected")});l.each(function(h){h=b(this).css({zIndex:100-h});var j=b(this).find("ul:eq(0)").css({display:"block"});this._dimensions={w:this.offsetWidth,h:this.offsetHeight,subulw:j.outerWidth(),subulh:j.outerHeight()};this.istopheader=
h.parents("ul").length==1?true:false;j.css({top:this.istopheader?this._dimensions.h+"px":0});h.children("a:eq(0)").css(this.istopheader?{paddingRight:d.arrowimages.down[2]}:{}).append('');if(d.shadow.enabled){this._shadowoffset={x:this.istopheader?j.offset().left+d.shadow.offsetx:this._dimensions.w,y:this.istopheader?j.offset().top+
d.shadow.offsety:h.position().top};$parentshadow=this.istopheader?b(document.body):h.parents("li:eq(0)").get(0).$shadow;this.$shadow=b('<div class="ddshadow'+(this.istopheader?" toplevelshadow":"")+'"></div>').prependTo($parentshadow).css({left:this._shadowoffset.x+"px",top:this._shadowoffset.y+"px"})}h.hover(function(){var u=b(this).children("ul:eq(0)");this._offsets={left:b(this).offset().left,top:b(this).offset().top};var v=this.istopheader?0:this._dimensions.w;v=this._offsets.left+v+this._dimensions.subulw>
b(window).width()?this.istopheader?-this._dimensions.subulw+this._dimensions.w:-this._dimensions.w:v;if(u.queue().length<=1){u.css({left:v+"px",width:this._dimensions.subulw+"px"}).animate({height:"show",opacity:"show"},ddsmoothmenu.transition.overtime);if(d.shadow.enabled){v=this.istopheader?u.offset().left+ddsmoothmenu.shadow.offsetx:v;u=this.istopheader?u.offset().top+d.shadow.offsety:this._shadowoffset.y;!this.istopheader&&ddsmoothmenu.detectwebkit&&this.$shadow.css({opacity:1});this.$shadow.css({overflow:"",
width:this._dimensions.subulw+"px",left:v+"px",top:u+"px"}).animate({height:this._dimensions.subulh+"px"},ddsmoothmenu.transition.overtime)}}},function(){b(this).children("ul:eq(0)").animate({height:"hide",opacity:"hide"},ddsmoothmenu.transition.outtime);if(d.shadow.enabled){ddsmoothmenu.detectwebkit&&this.$shadow.children("div:eq(0)").css({opacity:0});this.$shadow.css({overflow:"hidden"}).animate({height:0},ddsmoothmenu.transition.outtime)}})});c.find("ul").css({display:"none",visibility:"visible"})},
init:function(b){if(typeof b.customtheme=="object"&&b.customtheme.length==2){var a="#"+b.mainmenuid;document.write('<style type="text/css">\n'+a+", "+a+" ul li a {background:"+b.customtheme[0]+";}\n"+a+" ul li a:hover {background:"+b.customtheme[1]+";}\n</style>")}jQuery(document).ready(function(d){typeof b.contentsource=="object"?ddsmoothmenu.getajaxmenu(d,b):ddsmoothmenu.buildmenu(d,b)})}};ddsmoothmenu.init({mainmenuid:"smoothmenu1",contentsource:"markup"});
(function(b){function a(e){b.fn.cycle.debug&&d(e)}function d(){window.console&&window.console.log&&window.console.log("[cycle] "+Array.prototype.join.call(arguments," "))}function c(e,g,o){if(e.cycleStop==undefined)e.cycleStop=0;if(g===undefined||g===null)g={};if(g.constructor==String){switch(g){case "stop":e.cycleStop++;e.cycleTimeout&&clearTimeout(e.cycleTimeout);e.cycleTimeout=0;b(e).removeData("cycle.opts");return false;case "pause":e.cyclePause=1;return false;case "resume":e.cyclePause=0;if(o===
true){g=b(e).data("cycle.opts");if(!g){d("options not found, can not resume");return false}if(e.cycleTimeout){clearTimeout(e.cycleTimeout);e.cycleTimeout=0}x(g.elements,g,1,1)}return false;case "prev":case "next":e=b(e).data("cycle.opts");if(!e){d('options not found, "prev/next" ignored');return false}b.fn.cycle[g](e);return false;default:g={fx:g}}return g}else if(g.constructor==Number){var r=g;g=b(e).data("cycle.opts");if(!g){d("options not found, can not advance slide");return false}if(r<0||r>=
g.elements.length){d("invalid slide index: "+r);return false}g.nextSlide=r;if(e.cycleTimeout){clearTimeout(e.cycleTimeout);e.cycleTimeout=0}if(typeof o=="string")g.oneTimeFx=o;x(g.elements,g,1,r>=g.currSlide);return false}return g}function l(e,g){if(!b.support.opacity&&g.cleartype&&e.style.filter)try{e.style.removeAttribute("filter")}catch(o){}}function h(e,g,o,r,s){var f=b.extend({},b.fn.cycle.defaults,r||{},b.metadata?e.metadata():b.meta?e.data():{});if(f.autostop)f.countdown=f.autostopCount||o.length;
var y=e[0];e.data("cycle.opts",f);f.$cont=e;f.stopCount=y.cycleStop;f.elements=o;f.before=f.before?[f.before]:[];f.after=f.after?[f.after]:[];f.after.unshift(function(){f.busy=0});!b.support.opacity&&f.cleartype&&f.after.push(function(){l(this,f)});f.continuous&&f.after.push(function(){x(o,f,0,!f.rev)});j(f);!b.support.opacity&&f.cleartype&&!f.cleartypeNoBg&&J(g);e.css("position")=="static"&&e.css("position","relative");f.width&&e.width(f.width);f.height&&f.height!="auto"&&e.height(f.height);if(f.startingSlide)f.startingSlide=
parseInt(f.startingSlide);if(f.random){f.randomMap=[];for(y=0;y<o.length;y++)f.randomMap.push(y);f.randomMap.sort(function(){return Math.random()-0.5});f.randomIndex=0;f.startingSlide=f.randomMap[0]}else if(f.startingSlide>=o.length)f.startingSlide=0;f.currSlide=f.startingSlide=f.startingSlide||0;var A=f.startingSlide;g.css({position:"absolute",top:0,left:0}).hide().each(function(D){D=A?D>=A?o.length-(D-A):A-D:o.length-D;b(this).css("z-index",D)});b(o[A]).css("opacity",1).show();l(o[A],f);f.fit&&
f.width&&g.width(f.width);f.fit&&f.height&&f.height!="auto"&&g.height(f.height);if(f.containerResize&&!e.innerHeight()){for(var i=y=0,m=0;m<o.length;m++){var q=b(o[m]),k=q[0],t=q.outerWidth();q=q.outerHeight();if(!t)t=k.offsetWidth;if(!q)q=k.offsetHeight;y=t>y?t:y;i=q>i?q:i}y>0&&i>0&&e.css({width:y+"px",height:i+"px"})}f.pause&&e.hover(function(){this.cyclePause++},function(){this.cyclePause--});if(u(f)===false)return false;var w=false;r.requeueAttempts=r.requeueAttempts||0;g.each(function(){var D=
b(this);this.cycleH=f.fit&&f.height?f.height:D.height();this.cycleW=f.fit&&f.width?f.width:D.width();if(D.is("img")){D=b.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete;var C=b.browser.opera&&(this.cycleW==42&&this.cycleH==19||this.cycleW==37&&this.cycleH==17)&&!this.complete,B=this.cycleH==0&&this.cycleW==0&&!this.complete;if(b.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete||D||C||B)if(s.s&&f.requeueOnImageNotLoaded&&++r.requeueAttempts<100){d(r.requeueAttempts,
" - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){b(s.s,s.c).cycle(r)},f.requeueTimeout);w=true;return false}else d("could not determine size of image: "+this.src,this.cycleW,this.cycleH)}return true});if(w)return false;f.cssBefore=f.cssBefore||{};f.animIn=f.animIn||{};f.animOut=f.animOut||{};g.not(":eq("+A+")").css(f.cssBefore);f.cssFirst&&b(g[A]).css(f.cssFirst);if(f.timeout){f.timeout=parseInt(f.timeout);if(f.speed.constructor==String)f.speed=
b.fx.speeds[f.speed]||parseInt(f.speed);for(f.sync||(f.speed/=2);f.timeout-f.speed<250;)f.timeout+=f.speed}if(f.easing)f.easeIn=f.easeOut=f.easing;if(!f.speedIn)f.speedIn=f.speed;if(!f.speedOut)f.speedOut=f.speed;f.slideCount=o.length;f.currSlide=f.lastSlide=A;if(f.random){f.nextSlide=f.currSlide;if(++f.randomIndex==o.length)f.randomIndex=0;f.nextSlide=f.randomMap[f.randomIndex]}else f.nextSlide=f.startingSlide>=o.length-1?0:f.startingSlide+1;if(!f.multiFx){y=b.fn.cycle.transitions[f.fx];if(b.isFunction(y))y(e,
g,f);else if(f.fx!="custom"&&!f.multiFx){d("unknown transition: "+f.fx,"; slideshow terminating");return false}}e=g[A];f.before.length&&f.before[0].apply(e,[e,e,f,true]);f.after.length>1&&f.after[1].apply(e,[e,e,f,true]);f.next&&b(f.next).bind(f.prevNextEvent,function(){return E(f,f.rev?-1:1)});f.prev&&b(f.prev).bind(f.prevNextEvent,function(){return E(f,f.rev?1:-1)});f.pager&&G(o,f);v(f,o);return f}function j(e){e.original={before:[],after:[]};e.original.cssBefore=b.extend({},e.cssBefore);e.original.cssAfter=
b.extend({},e.cssAfter);e.original.animIn=b.extend({},e.animIn);e.original.animOut=b.extend({},e.animOut);b.each(e.before,function(){e.original.before.push(this)});b.each(e.after,function(){e.original.after.push(this)})}function u(e){var g,o,r=b.fn.cycle.transitions;if(e.fx.indexOf(",")>0){e.multiFx=true;e.fxs=e.fx.replace(/\s*/g,"").split(",");for(g=0;g<e.fxs.length;g++){var s=e.fxs[g];o=r[s];if(!o||!r.hasOwnProperty(s)||!b.isFunction(o)){d("discarding unknown transition: ",s);e.fxs.splice(g,1);
g--}}if(!e.fxs.length){d("No valid transitions named; slideshow terminating.");return false}}else if(e.fx=="all"){e.multiFx=true;e.fxs=[];for(p in r){o=r[p];r.hasOwnProperty(p)&&b.isFunction(o)&&e.fxs.push(p)}}if(e.multiFx&&e.randomizeEffects){o=Math.floor(Math.random()*20)+30;for(g=0;g<o;g++)e.fxs.push(e.fxs.splice(Math.floor(Math.random()*e.fxs.length),1)[0]);a("randomized fx sequence: ",e.fxs)}return true}function v(e,g){e.addSlide=function(o,r){var s=b(o),f=s[0];e.autostopCount||e.countdown++;
g[r?"unshift":"push"](f);if(e.els)e.els[r?"unshift":"push"](f);e.slideCount=g.length;s.css("position","absolute");s[r?"prependTo":"appendTo"](e.$cont);if(r){e.currSlide++;e.nextSlide++}!b.support.opacity&&e.cleartype&&!e.cleartypeNoBg&&J(s);e.fit&&e.width&&s.width(e.width);e.fit&&e.height&&e.height!="auto"&&$slides.height(e.height);f.cycleH=e.fit&&e.height?e.height:s.height();f.cycleW=e.fit&&e.width?e.width:s.width();s.css(e.cssBefore);e.pager&&b.fn.cycle.createPagerAnchor(g.length-1,f,b(e.pager),
g,e);b.isFunction(e.onAddSlide)?e.onAddSlide(s):s.hide()}}function x(e,g,o,r){if(o&&g.busy&&g.manualTrump){b(e).stop(true,true);g.busy=false}if(!g.busy){var s=g.$cont[0],f=e[g.currSlide],y=e[g.nextSlide];if(!(s.cycleStop!=g.stopCount||s.cycleTimeout===0&&!o))if(!o&&!s.cyclePause&&(g.autostop&&--g.countdown<=0||g.nowrap&&!g.random&&g.nextSlide<g.currSlide))g.end&&g.end(g);else{if(o||!s.cyclePause){var A=g.fx;f.cycleH=f.cycleH||b(f).height();f.cycleW=f.cycleW||b(f).width();y.cycleH=y.cycleH||b(y).height();
y.cycleW=y.cycleW||b(y).width();if(g.multiFx){if(g.lastFx==undefined||++g.lastFx>=g.fxs.length)g.lastFx=0;A=g.fxs[g.lastFx];g.currFx=A}if(g.oneTimeFx){A=g.oneTimeFx;g.oneTimeFx=null}b.fn.cycle.resetState(g,A);g.before.length&&b.each(g.before,function(i,m){s.cycleStop==g.stopCount&&m.apply(y,[f,y,g,r])});A=function(){b.each(g.after,function(i,m){s.cycleStop==g.stopCount&&m.apply(y,[f,y,g,r])})};if(g.nextSlide!=g.currSlide){g.busy=1;if(g.fxFn)g.fxFn(f,y,g,A,r);else b.isFunction(b.fn.cycle[g.fx])?b.fn.cycle[g.fx](f,
y,g,A):b.fn.cycle.custom(f,y,g,A,o&&g.fastOnEvent)}g.lastSlide=g.currSlide;if(g.random){g.currSlide=g.nextSlide;if(++g.randomIndex==e.length)g.randomIndex=0;g.nextSlide=g.randomMap[g.randomIndex]}else{o=g.nextSlide+1==e.length;g.nextSlide=o?0:g.nextSlide+1;g.currSlide=o?e.length-1:g.nextSlide-1}g.pager&&b.fn.cycle.updateActivePagerLink(g.pager,g.currSlide)}o=0;if(g.timeout&&!g.continuous)o=z(f,y,g,r);else if(g.continuous&&s.cyclePause)o=10;if(o>0)s.cycleTimeout=setTimeout(function(){x(e,g,0,!g.rev)},
o)}}}function z(e,g,o,r){if(o.timeoutFn){for(e=o.timeoutFn(e,g,o,r);e-o.speed<250;)e+=o.speed;a("calculated timeout: "+e+"; speed: "+o.speed);if(e!==false)return e}return o.timeout}function E(e,g){var o=e.elements,r=e.$cont[0],s=r.cycleTimeout;if(s){clearTimeout(s);r.cycleTimeout=0}if(e.random&&g<0){e.randomIndex--;if(--e.randomIndex==-2)e.randomIndex=o.length-2;else if(e.randomIndex==-1)e.randomIndex=o.length-1;e.nextSlide=e.randomMap[e.randomIndex]}else if(e.random){if(++e.randomIndex==o.length)e.randomIndex=
0;e.nextSlide=e.randomMap[e.randomIndex]}else{e.nextSlide=e.currSlide+g;if(e.nextSlide<0){if(e.nowrap)return false;e.nextSlide=o.length-1}else if(e.nextSlide>=o.length){if(e.nowrap)return false;e.nextSlide=0}}b.isFunction(e.prevNextClick)&&e.prevNextClick(g>0,e.nextSlide,o[e.nextSlide]);x(o,e,1,g>=0);return false}function G(e,g){var o=b(g.pager);b.each(e,function(r,s){b.fn.cycle.createPagerAnchor(r,s,o,e,g)});b.fn.cycle.updateActivePagerLink(g.pager,g.startingSlide)}function J(e){function g(r){r=
parseInt(r).toString(16);return r.length<2?"0"+r:r}function o(r){for(;r&&r.nodeName.toLowerCase()!="html";r=r.parentNode){var s=b.css(r,"background-color");if(s.indexOf("rgb")>=0){r=s.match(/\d+/g);return"#"+g(r[0])+g(r[1])+g(r[2])}if(s&&s!="transparent")return s}return"#ffffff"}e.each(function(){b(this).css("background-color",o(this))})}if(b.support==undefined)b.support={opacity:!b.browser.msie};b.fn.cycle=function(e,g){var o={s:this.selector,c:this.context};if(this.length===0&&e!="stop"){if(!b.isReady&&
o.s){d("DOM not ready, queuing slideshow");b(function(){b(o.s,o.c).cycle(e,g)});return this}d("terminating; zero elements found by selector"+(b.isReady?"":" (DOM not ready)"));return this}return this.each(function(){var r=c(this,e,g);if(r!==false){this.cycleTimeout&&clearTimeout(this.cycleTimeout);this.cycleTimeout=this.cyclePause=0;var s=b(this),f=r.slideExpr?b(r.slideExpr,this):s.children(),y=f.get();if(y.length<2)d("terminating; too few slides: "+y.length);else{var A=h(s,f,y,r,o);if(A!==false)if(r=
A.continuous?10:z(A.currSlide,A.nextSlide,A,!A.rev)){r+=A.delay||0;if(r<10)r=10;a("first timeout: "+r);this.cycleTimeout=setTimeout(function(){x(y,A,0,!A.rev)},r)}}}})};b.fn.cycle.resetState=function(e,g){g=g||e.fx;e.before=[];e.after=[];e.cssBefore=b.extend({},e.original.cssBefore);e.cssAfter=b.extend({},e.original.cssAfter);e.animIn=b.extend({},e.original.animIn);e.animOut=b.extend({},e.original.animOut);e.fxFn=null;b.each(e.original.before,function(){e.before.push(this)});b.each(e.original.after,
function(){e.after.push(this)});var o=b.fn.cycle.transitions[g];b.isFunction(o)&&o(e.$cont,b(e.elements),e)};b.fn.cycle.updateActivePagerLink=function(e,g){b(e).find("a").removeClass("activeSlide").filter("a:eq("+g+")").addClass("activeSlide")};b.fn.cycle.next=function(e){E(e,e.rev?-1:1)};b.fn.cycle.prev=function(e){E(e,e.rev?1:-1)};b.fn.cycle.createPagerAnchor=function(e,g,o,r,s){if(g=b.isFunction(s.pagerAnchorBuilder)?s.pagerAnchorBuilder(e,g):'<a href="#">'+(e+1)+"</a>"){var f=b(g);if(f.parents("body").length===
0){var y=[];if(o.length>1){o.each(function(){var A=f.clone(true);b(this).append(A);y.push(A)});f=b(y)}else f.appendTo(o)}f.bind(s.pagerEvent,function(A){A.preventDefault();s.nextSlide=e;A=s.$cont[0];var i=A.cycleTimeout;if(i){clearTimeout(i);A.cycleTimeout=0}b.isFunction(s.pagerClick)&&s.pagerClick(s.nextSlide,r[s.nextSlide]);x(r,s,1,s.currSlide<e);return false});s.pagerEvent!="click"&&f.click(function(){return false});s.pauseOnPagerHover&&f.hover(function(){s.$cont[0].cyclePause++},function(){s.$cont[0].cyclePause--})}};
b.fn.cycle.hopsFromLast=function(e,g){var o=e.lastSlide,r=e.currSlide;return g?r>o?r-o:e.slideCount-o:r<o?o-r:o+e.slideCount-r};b.fn.cycle.commonReset=function(e,g,o,r,s,f){b(o.elements).not(e).hide();o.cssBefore.opacity=1;o.cssBefore.display="block";if(r!==false&&g.cycleW>0)o.cssBefore.width=g.cycleW;if(s!==false&&g.cycleH>0)o.cssBefore.height=g.cycleH;o.cssAfter=o.cssAfter||{};o.cssAfter.display="none";b(e).css("zIndex",o.slideCount+(f===true?1:0));b(g).css("zIndex",o.slideCount+(f===true?0:1))};
b.fn.cycle.custom=function(e,g,o,r,s){var f=b(e),y=b(g),A=o.speedIn;e=o.speedOut;var i=o.easeIn;g=o.easeOut;y.css(o.cssBefore);if(s){A=typeof s=="number"?(e=s):(e=1);i=g=null}f.animate(o.animOut,e,g,function(){o.cssAfter&&f.css(o.cssAfter);o.sync||y.animate(o.animIn,A,i,r)});o.sync&&y.animate(o.animIn,A,i,r)};b.fn.cycle.transitions={fade:function(e,g,o){g.not(":eq("+o.currSlide+")").css("opacity",0);o.before.push(function(r,s,f){b.fn.cycle.commonReset(r,s,f);f.cssBefore.opacity=0});o.animIn={opacity:1};
o.animOut={opacity:0};o.cssBefore={top:0,left:0}}};b.fn.cycle.ver=function(){return"2.72"};b.fn.cycle.defaults={fx:"fade",timeout:4E3,timeoutFn:null,continuous:0,speed:1E3,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,prevNextEvent:"click",pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,
sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!b.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250}})(jQuery);
(function(b){b.fn.cycle.transitions.none=function(a,d,c){c.fxFn=function(l,h,j,u){b(h).show();b(l).hide();u()}};b.fn.cycle.transitions.scrollUp=function(a,d,c){a.css("overflow","hidden");c.before.push(b.fn.cycle.commonReset);a=a.height();c.cssBefore={top:a,left:0};c.cssFirst={top:0};c.animIn={top:0};c.animOut={top:-a}};b.fn.cycle.transitions.scrollDown=function(a,d,c){a.css("overflow","hidden");c.before.push(b.fn.cycle.commonReset);a=a.height();c.cssFirst={top:0};c.cssBefore={top:-a,left:0};c.animIn=
{top:0};c.animOut={top:a}};b.fn.cycle.transitions.scrollLeft=function(a,d,c){a.css("overflow","hidden");c.before.push(b.fn.cycle.commonReset);a=a.width();c.cssFirst={left:0};c.cssBefore={left:a,top:0};c.animIn={left:0};c.animOut={left:0-a}};b.fn.cycle.transitions.scrollRight=function(a,d,c){a.css("overflow","hidden");c.before.push(b.fn.cycle.commonReset);a=a.width();c.cssFirst={left:0};c.cssBefore={left:-a,top:0};c.animIn={left:0};c.animOut={left:a}};b.fn.cycle.transitions.scrollHorz=function(a,d,
c){a.css("overflow","hidden").width();c.before.push(function(l,h,j,u){b.fn.cycle.commonReset(l,h,j);j.cssBefore.left=u?h.cycleW-1:1-h.cycleW;j.animOut.left=u?-l.cycleW:l.cycleW});c.cssFirst={left:0};c.cssBefore={top:0};c.animIn={left:0};c.animOut={top:0}};b.fn.cycle.transitions.scrollVert=function(a,d,c){a.css("overflow","hidden");c.before.push(function(l,h,j,u){b.fn.cycle.commonReset(l,h,j);j.cssBefore.top=u?1-h.cycleH:h.cycleH-1;j.animOut.top=u?l.cycleH:-l.cycleH});c.cssFirst={top:0};c.cssBefore=
{left:0};c.animIn={top:0};c.animOut={left:0}};b.fn.cycle.transitions.slideX=function(a,d,c){c.before.push(function(l,h,j){b(j.elements).not(l).hide();b.fn.cycle.commonReset(l,h,j,false,true);j.animIn.width=h.cycleW});c.cssBefore={left:0,top:0,width:0};c.animIn={width:"show"};c.animOut={width:0}};b.fn.cycle.transitions.slideY=function(a,d,c){c.before.push(function(l,h,j){b(j.elements).not(l).hide();b.fn.cycle.commonReset(l,h,j,true,false);j.animIn.height=h.cycleH});c.cssBefore={left:0,top:0,height:0};
c.animIn={height:"show"};c.animOut={height:0}};b.fn.cycle.transitions.shuffle=function(a,d,c){a=a.css("overflow","visible").width();d.css({left:0,top:0});c.before.push(function(l,h,j){b.fn.cycle.commonReset(l,h,j,true,true,true)});if(!c.speedAdjusted){c.speed/=2;c.speedAdjusted=true}c.random=0;c.shuffle=c.shuffle||{left:-a,top:15};c.els=[];for(a=0;a<d.length;a++)c.els.push(d[a]);for(a=0;a<c.currSlide;a++)c.els.push(c.els.shift());c.fxFn=function(l,h,j,u,v){var x=v?b(l):b(h);b(h).css(j.cssBefore);
var z=j.slideCount;x.animate(j.shuffle,j.speedIn,j.easeIn,function(){for(var E=b.fn.cycle.hopsFromLast(j,v),G=0;G<E;G++)v?j.els.push(j.els.shift()):j.els.unshift(j.els.pop());if(v){E=0;for(G=j.els.length;E<G;E++)b(j.els[E]).css("z-index",G-E+z)}else{E=b(l).css("z-index");x.css("z-index",parseInt(E)+1+z)}x.animate({left:0,top:0},j.speedOut,j.easeOut,function(){b(v?this:l).hide();u&&u()})})};c.cssBefore={display:"block",opacity:1,top:0,left:0}};b.fn.cycle.transitions.turnUp=function(a,d,c){c.before.push(function(l,
h,j){b.fn.cycle.commonReset(l,h,j,true,false);j.cssBefore.top=h.cycleH;j.animIn.height=h.cycleH});c.cssFirst={top:0};c.cssBefore={left:0,height:0};c.animIn={top:0};c.animOut={height:0}};b.fn.cycle.transitions.turnDown=function(a,d,c){c.before.push(function(l,h,j){b.fn.cycle.commonReset(l,h,j,true,false);j.animIn.height=h.cycleH;j.animOut.top=l.cycleH});c.cssFirst={top:0};c.cssBefore={left:0,top:0,height:0};c.animOut={height:0}};b.fn.cycle.transitions.turnLeft=function(a,d,c){c.before.push(function(l,
h,j){b.fn.cycle.commonReset(l,h,j,false,true);j.cssBefore.left=h.cycleW;j.animIn.width=h.cycleW});c.cssBefore={top:0,width:0};c.animIn={left:0};c.animOut={width:0}};b.fn.cycle.transitions.turnRight=function(a,d,c){c.before.push(function(l,h,j){b.fn.cycle.commonReset(l,h,j,false,true);j.animIn.width=h.cycleW;j.animOut.left=l.cycleW});c.cssBefore={top:0,left:0,width:0};c.animIn={left:0};c.animOut={width:0}};b.fn.cycle.transitions.zoom=function(a,d,c){c.before.push(function(l,h,j){b.fn.cycle.commonReset(l,
h,j,false,false,true);j.cssBefore.top=h.cycleH/2;j.cssBefore.left=h.cycleW/2;j.animIn={top:0,left:0,width:h.cycleW,height:h.cycleH};j.animOut={width:0,height:0,top:l.cycleH/2,left:l.cycleW/2}});c.cssFirst={top:0,left:0};c.cssBefore={width:0,height:0}};b.fn.cycle.transitions.fadeZoom=function(a,d,c){c.before.push(function(l,h,j){b.fn.cycle.commonReset(l,h,j,false,false);j.cssBefore.left=h.cycleW/2;j.cssBefore.top=h.cycleH/2;j.animIn={top:0,left:0,width:h.cycleW,height:h.cycleH}});c.cssBefore={width:0,
height:0};c.animOut={opacity:0}};b.fn.cycle.transitions.blindX=function(a,d,c){a=a.css("overflow","hidden").width();c.before.push(function(l,h,j){b.fn.cycle.commonReset(l,h,j);j.animIn.width=h.cycleW;j.animOut.left=l.cycleW});c.cssBefore={left:a,top:0};c.animIn={left:0};c.animOut={left:a}};b.fn.cycle.transitions.blindY=function(a,d,c){a=a.css("overflow","hidden").height();c.before.push(function(l,h,j){b.fn.cycle.commonReset(l,h,j);j.animIn.height=h.cycleH;j.animOut.top=l.cycleH});c.cssBefore={top:a,
left:0};c.animIn={top:0};c.animOut={top:a}};b.fn.cycle.transitions.blindZ=function(a,d,c){d=a.css("overflow","hidden").height();a=a.width();c.before.push(function(l,h,j){b.fn.cycle.commonReset(l,h,j);j.animIn.height=h.cycleH;j.animOut.top=l.cycleH});c.cssBefore={top:d,left:a};c.animIn={top:0,left:0};c.animOut={top:d,left:a}};b.fn.cycle.transitions.growX=function(a,d,c){c.before.push(function(l,h,j){b.fn.cycle.commonReset(l,h,j,false,true);j.cssBefore.left=this.cycleW/2;j.animIn={left:0,width:this.cycleW};
j.animOut={left:0}});c.cssBefore={width:0,top:0}};b.fn.cycle.transitions.growY=function(a,d,c){c.before.push(function(l,h,j){b.fn.cycle.commonReset(l,h,j,true,false);j.cssBefore.top=this.cycleH/2;j.animIn={top:0,height:this.cycleH};j.animOut={top:0}});c.cssBefore={height:0,left:0}};b.fn.cycle.transitions.curtainX=function(a,d,c){c.before.push(function(l,h,j){b.fn.cycle.commonReset(l,h,j,false,true,true);j.cssBefore.left=h.cycleW/2;j.animIn={left:0,width:this.cycleW};j.animOut={left:l.cycleW/2,width:0}});
c.cssBefore={top:0,width:0}};b.fn.cycle.transitions.curtainY=function(a,d,c){c.before.push(function(l,h,j){b.fn.cycle.commonReset(l,h,j,true,false,true);j.cssBefore.top=h.cycleH/2;j.animIn={top:0,height:h.cycleH};j.animOut={top:l.cycleH/2,height:0}});c.cssBefore={left:0,height:0}};b.fn.cycle.transitions.cover=function(a,d,c){var l=c.direction||"left",h=a.css("overflow","hidden").width(),j=a.height();c.before.push(function(u,v,x){b.fn.cycle.commonReset(u,v,x);if(l=="right")x.cssBefore.left=-h;else if(l==
"up")x.cssBefore.top=j;else if(l=="down")x.cssBefore.top=-j;else x.cssBefore.left=h});c.animIn={left:0,top:0};c.animOut={opacity:1};c.cssBefore={top:0,left:0}};b.fn.cycle.transitions.uncover=function(a,d,c){var l=c.direction||"left",h=a.css("overflow","hidden").width(),j=a.height();c.before.push(function(u,v,x){b.fn.cycle.commonReset(u,v,x,true,true,true);if(l=="right")x.animOut.left=h;else if(l=="up")x.animOut.top=-j;else if(l=="down")x.animOut.top=j;else x.animOut.left=-h});c.animIn={left:0,top:0};
c.animOut={opacity:1};c.cssBefore={top:0,left:0}};b.fn.cycle.transitions.toss=function(a,d,c){var l=a.css("overflow","visible").width(),h=a.height();c.before.push(function(j,u,v){b.fn.cycle.commonReset(j,u,v,true,true,true);if(!v.animOut.left&&!v.animOut.top)v.animOut={left:l*2,top:-h/2,opacity:0};else v.animOut.opacity=0});c.cssBefore={left:0,top:0};c.animIn={left:0}};b.fn.cycle.transitions.wipe=function(a,d,c){var l=a.css("overflow","hidden").width(),h=a.height();c.cssBefore=c.cssBefore||{};var j;
if(c.clip)if(/l2r/.test(c.clip))j="rect(0px 0px "+h+"px 0px)";else if(/r2l/.test(c.clip))j="rect(0px "+l+"px "+h+"px "+l+"px)";else if(/t2b/.test(c.clip))j="rect(0px "+l+"px 0px 0px)";else if(/b2t/.test(c.clip))j="rect("+h+"px "+l+"px "+h+"px 0px)";else if(/zoom/.test(c.clip)){a=parseInt(h/2);d=parseInt(l/2);j="rect("+a+"px "+d+"px "+a+"px "+d+"px)"}c.cssBefore.clip=c.cssBefore.clip||j||"rect(0px 0px 0px 0px)";a=c.cssBefore.clip.match(/(\d+)/g);var u=parseInt(a[0]),v=parseInt(a[1]),x=parseInt(a[2]),
z=parseInt(a[3]);c.before.push(function(E,G,J){if(E!=G){var e=b(E),g=b(G);b.fn.cycle.commonReset(E,G,J,true,true,false);J.cssAfter.display="block";var o=1,r=parseInt(J.speedIn/13)-1;(function s(){var f=u?u-parseInt(o*(u/r)):0,y=z?z-parseInt(o*(z/r)):0,A=x<h?x+parseInt(o*((h-x)/r||1)):h,i=v<l?v+parseInt(o*((l-v)/r||1)):l;g.css({clip:"rect("+f+"px "+i+"px "+A+"px "+y+"px)"});o++<=r?setTimeout(s,13):e.css("display","none")})()}});c.cssBefore={display:"block",opacity:1,top:0,left:0};c.animIn={left:0};
c.animOut={left:0}}})(jQuery);