var MooTools={version:"1.2.5",build:"008d8f0f2fcc2044e54fdd3635341aaab274e757"};var Native=function(l){l=l||{};var a=l.name;var j=l.legacy;var b=l.protect;var c=l.implement;var i=l.generics;var g=l.initialize;var h=l.afterImplement||function(){};var d=g||j;i=i!==false;d.constructor=Native;d.$family={name:"native"};if(j&&g){d.prototype=j.prototype;}d.prototype.constructor=d;if(a){var f=a.toLowerCase();d.prototype.$family={name:f};Native.typize(d,f);}var k=function(o,m,p,n){if(!b||n||!o.prototype[m]){o.prototype[m]=p;}if(i){Native.genericize(o,m,b);}h.call(o,m,p);return o;};d.alias=function(o,m,q){if(typeof o=="string"){var p=this.prototype[o];if((o=p)){return k(this,m,o,q);}}for(var n in o){this.alias(n,o[n],m);}return this;};d.implement=function(n,m,q){if(typeof n=="string"){return k(this,n,m,q);}for(var o in n){k(this,o,n[o],m);}return this;};if(c){d.implement(c);}return d;};Native.genericize=function(b,c,a){if((!a||!b[c])&&typeof b.prototype[c]=="function"){b[c]=function(){var d=Array.prototype.slice.call(arguments);return b.prototype[c].apply(d.shift(),d);};}};Native.implement=function(d,c){for(var b=0,a=d.length;b<a;b++){d[b].implement(c);}};Native.typize=function(a,b){if(!a.type){a.type=function(c){return($type(c)===b);};}};(function(){var a={Array:Array,Date:Date,Function:Function,Number:Number,RegExp:RegExp,String:String};for(var j in a){new Native({name:j,initialize:a[j],protect:true});}var d={"boolean":Boolean,"native":Native,object:Object};for(var c in d){Native.typize(d[c],c);}var h={Array:["concat","indexOf","join","lastIndexOf","pop","push","reverse","shift","slice","sort","splice","toString","unshift","valueOf"],String:["charAt","charCodeAt","concat","indexOf","lastIndexOf","match","replace","search","slice","split","substr","substring","toLowerCase","toUpperCase","valueOf"]};for(var f in h){for(var b=h[f].length;b--;){Native.genericize(a[f],h[f][b],true);}}})();var Hash=new Native({name:"Hash",initialize:function(a){if($type(a)=="hash"){a=$unlink(a.getClean());}for(var b in a){this[b]=a[b];}return this;}});Hash.implement({forEach:function(b,c){for(var a in this){if(this.hasOwnProperty(a)){b.call(c,this[a],a,this);}}},getClean:function(){var b={};for(var a in this){if(this.hasOwnProperty(a)){b[a]=this[a];}}return b;},getLength:function(){var b=0;for(var a in this){if(this.hasOwnProperty(a)){b++;}}return b;}});Hash.alias("forEach","each");Array.implement({forEach:function(c,d){for(var b=0,a=this.length;b<a;b++){c.call(d,this[b],b,this);}}});Array.alias("forEach","each");function $A(b){if(b.item){var a=b.length,c=new Array(a);while(a--){c[a]=b[a];}return c;}return Array.prototype.slice.call(b);}function $arguments(a){return function(){return arguments[a];};}function $chk(a){return!!(a||a===0);}function $clear(a){clearTimeout(a);clearInterval(a);return null;}function $defined(a){return(a!=undefined);}function $each(c,b,d){var a=$type(c);((a=="arguments"||a=="collection"||a=="array")?Array:Hash).each(c,b,d);}function $empty(){}function $extend(c,a){for(var b in(a||{})){c[b]=a[b];}return c;}function $H(a){return new Hash(a);}function $lambda(a){return($type(a)=="function")?a:function(){return a;};}function $merge(){var a=Array.slice(arguments);a.unshift({});return $mixin.apply(null,a);}function $mixin(f){for(var d=1,a=arguments.length;d<a;d++){var b=arguments[d];if($type(b)!="object"){continue;}for(var c in b){var h=b[c],g=f[c];f[c]=(g&&$type(h)=="object"&&$type(g)=="object")?$mixin(g,h):$unlink(h);}}return f;}function $pick(){for(var b=0,a=arguments.length;b<a;b++){if(arguments[b]!=undefined){return arguments[b];}}return null;}function $random(b,a){return Math.floor(Math.random()*(a-b+1)+b);}function $splat(b){var a=$type(b);return(a)?((a!="array"&&a!="arguments")?[b]:b):[];}var $time=Date.now||function(){return+new Date;};function $try(){for(var b=0,a=arguments.length;b<a;b++){try{return arguments[b]();}catch(c){}}return null;}function $type(a){if(a==undefined){return false;}if(a.$family){return(a.$family.name=="number"&&!isFinite(a))?false:a.$family.name;}if(a.nodeName){switch(a.nodeType){case 1:return"element";case 3:return(/\S/).test(a.nodeValue)?"textnode":"whitespace";}}else{if(typeof a.length=="number"){if(a.callee){return"arguments";}else{if(a.item){return"collection";}}}}return typeof a;}function $unlink(c){var b;switch($type(c)){case"object":b={};for(var f in c){b[f]=$unlink(c[f]);}break;case"hash":b=new Hash(c);break;case"array":b=[];for(var d=0,a=c.length;d<a;d++){b[d]=$unlink(c[d]);}break;default:return c;}return b;}Array.implement({every:function(c,d){for(var b=0,a=this.length;b<a;b++){if(!c.call(d,this[b],b,this)){return false;}}return true;},filter:function(d,f){var c=[];for(var b=0,a=this.length;b<a;b++){if(d.call(f,this[b],b,this)){c.push(this[b]);}}return c;},clean:function(){return this.filter($defined);},indexOf:function(c,d){var a=this.length;for(var b=(d<0)?Math.max(0,a+d):d||0;b<a;b++){if(this[b]===c){return b;}}return-1;},map:function(d,f){var c=[];for(var b=0,a=this.length;b<a;b++){c[b]=d.call(f,this[b],b,this);}return c;},some:function(c,d){for(var b=0,a=this.length;b<a;b++){if(c.call(d,this[b],b,this)){return true;}}return false;},associate:function(c){var d={},b=Math.min(this.length,c.length);for(var a=0;a<b;a++){d[c[a]]=this[a];}return d;},link:function(c){var a={};for(var f=0,b=this.length;f<b;f++){for(var d in c){if(c[d](this[f])){a[d]=this[f];delete c[d];break;}}}return a;},contains:function(a,b){return this.indexOf(a,b)!=-1;},extend:function(c){for(var b=0,a=c.length;b<a;b++){this.push(c[b]);}return this;},getLast:function(){return(this.length)?this[this.length-1]:null;},getRandom:function(){return(this.length)?this[$random(0,this.length-1)]:null;},include:function(a){if(!this.contains(a)){this.push(a);}return this;},combine:function(c){for(var b=0,a=c.length;b<a;b++){this.include(c[b]);}return this;},erase:function(b){for(var a=this.length;a--;a){if(this[a]===b){this.splice(a,1);}}return this;},empty:function(){this.length=0;return this;},flatten:function(){var d=[];for(var b=0,a=this.length;b<a;b++){var c=$type(this[b]);if(!c){continue;}d=d.concat((c=="array"||c=="collection"||c=="arguments")?Array.flatten(this[b]):this[b]);}return d;},hexToRgb:function(b){if(this.length!=3){return null;}var a=this.map(function(c){if(c.length==1){c+=c;}return c.toInt(16);});return(b)?a:"rgb("+a+")";},rgbToHex:function(d){if(this.length<3){return null;}if(this.length==4&&this[3]==0&&!d){return"transparent";}var b=[];for(var a=0;a<3;a++){var c=(this[a]-0).toString(16);b.push((c.length==1)?"0"+c:c);}return(d)?b:"#"+b.join("");}});String.implement({test:function(a,b){return((typeof a=="string")?new RegExp(a,b):a).test(this);},contains:function(a,b){return(b)?(b+this+b).indexOf(b+a+b)>-1:this.indexOf(a)>-1;},trim:function(){return this.replace(/^\s+|\s+$/g,"");},clean:function(){return this.replace(/\s+/g," ").trim();},camelCase:function(){return this.replace(/-\D/g,function(a){return a.charAt(1).toUpperCase();});},hyphenate:function(){return this.replace(/[A-Z]/g,function(a){return("-"+a.charAt(0).toLowerCase());});},capitalize:function(){return this.replace(/\b[a-z]/g,function(a){return a.toUpperCase();});},escapeRegExp:function(){return this.replace(/([-.*+?^${}()|[\]\/\\])/g,"\\$1");},toInt:function(a){return parseInt(this,a||10);},toFloat:function(){return parseFloat(this);},hexToRgb:function(b){var a=this.match(/^#?(\w{1,2})(\w{1,2})(\w{1,2})$/);return(a)?a.slice(1).hexToRgb(b):null;},rgbToHex:function(b){var a=this.match(/\d{1,3}/g);return(a)?a.rgbToHex(b):null;},stripScripts:function(b){var a="";var c=this.replace(/<script[^>]*>([\s\S]*?)<\/script>/gi,function(){a+=arguments[1]+"\n";return"";});if(b===true){$exec(a);}else{if($type(b)=="function"){b(a,c);}}return c;},substitute:function(a,b){return this.replace(b||(/\\?\{([^{}]+)\}/g),function(d,c){if(d.charAt(0)=="\\"){return d.slice(1);}return(a[c]!=undefined)?a[c]:"";});}});try{delete Function.prototype.bind;}catch(e){}Function.implement({extend:function(a){for(var b in a){this[b]=a[b];}return this;},create:function(b){var a=this;b=b||{};return function(d){var c=b.arguments;c=(c!=undefined)?$splat(c):Array.slice(arguments,(b.event)?1:0);if(b.event){c=[d||window.event].extend(c);}var f=function(){return a.apply(b.bind||null,c);};if(b.delay){return setTimeout(f,b.delay);}if(b.periodical){return setInterval(f,b.periodical);}if(b.attempt){return $try(f);}return f();};},run:function(a,b){return this.apply(b,$splat(a));},pass:function(a,b){return this.create({bind:b,arguments:a});},bind:function(b,a){return this.create({bind:b,arguments:a});},bindWithEvent:function(b,a){return this.create({bind:b,arguments:a,event:true});},attempt:function(a,b){return this.create({bind:b,arguments:a,attempt:true})();},delay:function(b,c,a){return this.create({bind:c,arguments:a,delay:b})();},periodical:function(c,b,a){return this.create({bind:b,arguments:a,periodical:c})();}});Number.implement({limit:function(b,a){return Math.min(a,Math.max(b,this));},round:function(a){a=Math.pow(10,a||0);return Math.round(this*a)/a;},times:function(b,c){for(var a=0;a<this;a++){b.call(c,a,this);}},toFloat:function(){return parseFloat(this);},toInt:function(a){return parseInt(this,a||10);}});Number.alias("times","each");(function(b){var a={};b.each(function(c){if(!Number[c]){a[c]=function(){return Math[c].apply(null,[this].concat($A(arguments)));};}});Number.implement(a);})(["abs","acos","asin","atan","atan2","ceil","cos","exp","floor","log","max","min","pow","sin","sqrt","tan"]);Hash.implement({has:Object.prototype.hasOwnProperty,keyOf:function(b){for(var a in this){if(this.hasOwnProperty(a)&&this[a]===b){return a;}}return null;},hasValue:function(a){return(Hash.keyOf(this,a)!==null);},extend:function(a){Hash.each(a||{},function(c,b){Hash.set(this,b,c);},this);return this;},combine:function(a){Hash.each(a||{},function(c,b){Hash.include(this,b,c);},this);return this;},erase:function(a){if(this.hasOwnProperty(a)){delete this[a];}return this;},get:function(a){return(this.hasOwnProperty(a))?this[a]:null;},set:function(a,b){if(!this[a]||this.hasOwnProperty(a)){this[a]=b;}return this;},empty:function(){Hash.each(this,function(b,a){delete this[a];},this);return this;},include:function(a,b){if(this[a]==undefined){this[a]=b;}return this;},map:function(b,c){var a=new Hash;Hash.each(this,function(f,d){a.set(d,b.call(c,f,d,this));},this);return a;},filter:function(b,c){var a=new Hash;Hash.each(this,function(f,d){if(b.call(c,f,d,this)){a.set(d,f);}},this);return a;},every:function(b,c){for(var a in this){if(this.hasOwnProperty(a)&&!b.call(c,this[a],a)){return false;}}return true;},some:function(b,c){for(var a in this){if(this.hasOwnProperty(a)&&b.call(c,this[a],a)){return true;}}return false;},getKeys:function(){var a=[];Hash.each(this,function(c,b){a.push(b);});return a;},getValues:function(){var a=[];Hash.each(this,function(b){a.push(b);});return a;},toQueryString:function(a){var b=[];Hash.each(this,function(g,f){if(a){f=a+"["+f+"]";}var d;switch($type(g)){case"object":d=Hash.toQueryString(g,f);break;case"array":var c={};g.each(function(j,h){c[h]=j;});d=Hash.toQueryString(c,f);break;default:d=f+"="+encodeURIComponent(g);}if(g!=undefined){b.push(d);}});return b.join("&");}});Hash.alias({keyOf:"indexOf",hasValue:"contains"});function Class(b){if(b instanceof Function){b={initialize:b};}var a=function(){Object.reset(this);if(a._prototyping){return this;}this._current=$empty;var c=(this.initialize)?this.initialize.apply(this,arguments):this;delete this._current;delete this.caller;return c;}.extend(this);a.implement(b);a.constructor=Class;a.prototype.constructor=a;return a;}Function.prototype.protect=function(){this._protected=true;return this;};Object.reset=function(a,c){if(c==null){for(var f in a){Object.reset(a,f);}return a;}delete a[c];switch($type(a[c])){case"object":var d=function(){};d.prototype=a[c];var b=new d;a[c]=Object.reset(b);break;case"array":a[c]=$unlink(a[c]);break;}return a;};new Native({name:"Class",initialize:Class}).extend({instantiate:function(b){b._prototyping=true;var a=new b;delete b._prototyping;return a;},wrap:function(a,b,c){if(c._origin){c=c._origin;}return function(){if(c._protected&&this._current==null){throw new Error('The method "'+b+'" cannot be called.');}var f=this.caller,g=this._current;this.caller=g;this._current=arguments.callee;var d=c.apply(this,arguments);this._current=g;this.caller=f;return d;}.extend({_owner:a,_origin:c,_name:b});}});Class.implement({implement:function(a,d){if($type(a)=="object"){for(var f in a){this.implement(f,a[f]);}return this;}var g=Class.Mutators[a];if(g){d=g.call(this,d);if(d==null){return this;}}var c=this.prototype;switch($type(d)){case"function":if(d._hidden){return this;}c[a]=Class.wrap(this,a,d);break;case"object":var b=c[a];if($type(b)=="object"){$mixin(b,d);}else{c[a]=$unlink(d);}break;case"array":c[a]=$unlink(d);break;default:c[a]=d;}return this;}});Class.Mutators={Extends:function(a){this.parent=a;this.prototype=Class.instantiate(a);this.implement("parent",function(){var b=this.caller._name,c=this.caller._owner.parent.prototype[b];if(!c){throw new Error('The method "'+b+'" has no parent.');}return c.apply(this,arguments);}.protect());},Implements:function(a){$splat(a).each(function(b){if(b instanceof Function){b=Class.instantiate(b);}this.implement(b);},this);}};var Chain=new Class({$chain:[],chain:function(){this.$chain.extend(Array.flatten(arguments));return this;},callChain:function(){return(this.$chain.length)?this.$chain.shift().apply(this,arguments):false;},clearChain:function(){this.$chain.empty();return this;}});var Events=new Class({$events:{},addEvent:function(c,b,a){c=Events.removeOn(c);if(b!=$empty){this.$events[c]=this.$events[c]||[];this.$events[c].include(b);if(a){b.internal=true;}}return this;},addEvents:function(a){for(var b in a){this.addEvent(b,a[b]);}return this;},fireEvent:function(c,b,a){c=Events.removeOn(c);if(!this.$events||!this.$events[c]){return this;}this.$events[c].each(function(d){d.create({bind:this,delay:a,"arguments":b})();},this);return this;},removeEvent:function(b,a){b=Events.removeOn(b);if(!this.$events[b]){return this;}if(!a.internal){this.$events[b].erase(a);}return this;},removeEvents:function(c){var d;if($type(c)=="object"){for(d in c){this.removeEvent(d,c[d]);}return this;}if(c){c=Events.removeOn(c);}for(d in this.$events){if(c&&c!=d){continue;}var b=this.$events[d];for(var a=b.length;a--;a){this.removeEvent(d,b[a]);}}return this;}});Events.removeOn=function(a){return a.replace(/^on([A-Z])/,function(b,c){return c.toLowerCase();});};var Options=new Class({setOptions:function(){this.options=$merge.run([this.options].extend(arguments));if(!this.addEvent){return this;}for(var a in this.options){if($type(this.options[a])!="function"||!(/^on[A-Z]/).test(a)){continue;}this.addEvent(a,this.options[a]);delete this.options[a];}return this;}});var Browser=$merge({Engine:{name:"unknown",version:0},Platform:{name:(window.orientation!=undefined)?"ipod":(navigator.platform.match(/mac|win|linux/i)||["other"])[0].toLowerCase()},Features:{xpath:!!(document.evaluate),air:!!(window.runtime),query:!!(document.querySelector)},Plugins:{},Engines:{presto:function(){return(!window.opera)?false:((arguments.callee.caller)?960:((document.getElementsByClassName)?950:925));},trident:function(){return(!window.ActiveXObject)?false:((window.XMLHttpRequest)?((document.querySelectorAll)?6:5):4);},webkit:function(){return(navigator.taintEnabled)?false:((Browser.Features.xpath)?((Browser.Features.query)?525:420):419);},gecko:function(){return(!document.getBoxObjectFor&&window.mozInnerScreenX==null)?false:((document.getElementsByClassName)?19:18);}}},Browser||{});Browser.Platform[Browser.Platform.name]=true;Browser.detect=function(){for(var b in this.Engines){var a=this.Engines[b]();if(a){this.Engine={name:b,version:a};this.Engine[b]=this.Engine[b+a]=true;break;}}return{name:b,version:a};};Browser.detect();Browser.Request=function(){return $try(function(){return new XMLHttpRequest();},function(){return new ActiveXObject("MSXML2.XMLHTTP");},function(){return new ActiveXObject("Microsoft.XMLHTTP");});};Browser.Features.xhr=!!(Browser.Request());Browser.Plugins.Flash=(function(){var a=($try(function(){return navigator.plugins["Shockwave Flash"].description;},function(){return new ActiveXObject("ShockwaveFlash.ShockwaveFlash").GetVariable("$version");})||"0 r0").match(/\d+/g);return{version:parseInt(a[0]||0+"."+a[1],10)||0,build:parseInt(a[2],10)||0};})();function $exec(b){if(!b){return b;}if(window.execScript){window.execScript(b);}else{var a=document.createElement("script");a.setAttribute("type","text/javascript");a[(Browser.Engine.webkit&&Browser.Engine.version<420)?"innerText":"text"]=b;document.head.appendChild(a);document.head.removeChild(a);}return b;}Native.UID=1;var $uid=(Browser.Engine.trident)?function(a){return(a.uid||(a.uid=[Native.UID++]))[0];}:function(a){return a.uid||(a.uid=Native.UID++);};var Window=new Native({name:"Window",legacy:(Browser.Engine.trident)?null:window.Window,initialize:function(a){$uid(a);if(!a.Element){a.Element=$empty;if(Browser.Engine.webkit){a.document.createElement("iframe");}a.Element.prototype=(Browser.Engine.webkit)?window["[[DOMElement.prototype]]"]:{};}a.document.window=a;return $extend(a,Window.Prototype);},afterImplement:function(b,a){window[b]=Window.Prototype[b]=a;}});Window.Prototype={$family:{name:"window"}};new Window(window);var Document=new Native({name:"Document",legacy:(Browser.Engine.trident)?null:window.Document,initialize:function(a){$uid(a);a.head=a.getElementsByTagName("head")[0];a.html=a.getElementsByTagName("html")[0];if(Browser.Engine.trident&&Browser.Engine.version<=4){$try(function(){a.execCommand("BackgroundImageCache",false,true);});}if(Browser.Engine.trident){a.window.attachEvent("onunload",function(){a.window.detachEvent("onunload",arguments.callee);a.head=a.html=a.window=null;});}return $extend(a,Document.Prototype);},afterImplement:function(b,a){document[b]=Document.Prototype[b]=a;}});Document.Prototype={$family:{name:"document"}};new Document(document);var Element=new Native({name:"Element",legacy:window.Element,initialize:function(a,b){var c=Element.Constructors.get(a);if(c){return c(b);}if(typeof a=="string"){return document.newElement(a,b);}return document.id(a).set(b);},afterImplement:function(a,b){Element.Prototype[a]=b;if(Array[a]){return;}Elements.implement(a,function(){var c=[],h=true;for(var f=0,d=this.length;f<d;f++){var g=this[f][a].apply(this[f],arguments);c.push(g);if(h){h=($type(g)=="element");}}return(h)?new Elements(c):c;});}});Element.Prototype={$family:{name:"element"}};Element.Constructors=new Hash;var IFrame=new Native({name:"IFrame",generics:false,initialize:function(){var g=Array.link(arguments,{properties:Object.type,iframe:$defined});var d=g.properties||{};var c=document.id(g.iframe);var f=d.onload||$empty;delete d.onload;d.id=d.name=$pick(d.id,d.name,c?(c.id||c.name):"IFrame_"+$time());c=new Element(c||"iframe",d);var b=function(){var h=$try(function(){return c.contentWindow.location.host;});if(!h||h==window.location.host){var i=new Window(c.contentWindow);new Document(c.contentWindow.document);$extend(i.Element.prototype,Element.Prototype);}f.call(c.contentWindow,c.contentWindow.document);};var a=$try(function(){return c.contentWindow;});((a&&a.document.body)||window.frames[d.id])?b():c.addListener("load",b);return c;}});var Elements=new Native({initialize:function(g,b){b=$extend({ddup:true,cash:true},b);g=g||[];if(b.ddup||b.cash){var h={},f=[];for(var c=0,a=g.length;c<a;c++){var d=document.id(g[c],!b.cash);if(b.ddup){if(h[d.uid]){continue;}h[d.uid]=true;}if(d){f.push(d);}}g=f;}return(b.cash)?$extend(g,this):g;}});Elements.implement({filter:function(a,b){if(!a){return this;}return new Elements(Array.filter(this,(typeof a=="string")?function(c){return c.match(a);}:a,b));}});(function(){var d;try{var a=document.createElement("<input name=x>");d=(a.name=="x");}catch(b){}var c=function(f){return(""+f).replace(/&/g,"&amp;").replace(/"/g,"&quot;");};Document.implement({newElement:function(f,g){if(g&&g.checked!=null){g.defaultChecked=g.checked;}if(d&&g){f="<"+f;if(g.name){f+=' name="'+c(g.name)+'"';}if(g.type){f+=' type="'+c(g.type)+'"';}f+=">";delete g.name;delete g.type;}return this.id(this.createElement(f)).set(g);},newTextNode:function(f){return this.createTextNode(f);},getDocument:function(){return this;},getWindow:function(){return this.window;},id:(function(){var f={string:function(i,h,g){i=g.getElementById(i);return(i)?f.element(i,h):null;},element:function(g,j){$uid(g);if(!j&&!g.$family&&!(/^object|embed$/i).test(g.tagName)){var h=Element.Prototype;for(var i in h){g[i]=h[i];}}return g;},object:function(h,i,g){if(h.toElement){return f.element(h.toElement(g),i);}return null;}};f.textnode=f.whitespace=f.window=f.document=$arguments(0);return function(h,j,i){if(h&&h.$family&&h.uid){return h;}var g=$type(h);return(f[g])?f[g](h,j,i||document):null;};})()});})();if(window.$==null){Window.implement({$:function(a,b){return document.id(a,b,this.document);}});}Window.implement({$$:function(a){if(arguments.length==1&&typeof a=="string"){return this.document.getElements(a);}var g=[];var c=Array.flatten(arguments);for(var d=0,b=c.length;d<b;d++){var f=c[d];switch($type(f)){case"element":g.push(f);break;case"string":g.extend(this.document.getElements(f,true));}}return new Elements(g);},getDocument:function(){return this.document;},getWindow:function(){return this;}});Native.implement([Element,Document],{getElement:function(a,b){return document.id(this.getElements(a,true)[0]||null,b);},getElements:function(a,d){a=a.split(",");var c=[];var b=(a.length>1);a.each(function(f){var g=this.getElementsByTagName(f.trim());(b)?c.extend(g):c=g;},this);return new Elements(c,{ddup:b,cash:!d});}});(function(){var i={},g={};var j={input:"checked",option:"selected",textarea:(Browser.Engine.webkit&&Browser.Engine.version<420)?"innerHTML":"value"};var c=function(m){return(g[m]||(g[m]={}));};var h=function(o,m){if(!o){return;}var n=o.uid;if(m!==true){m=false;}if(Browser.Engine.trident){if(o.clearAttributes){var r=m&&o.cloneNode(false);o.clearAttributes();if(r){o.mergeAttributes(r);}}else{if(o.removeEvents){o.removeEvents();}}if((/object/i).test(o.tagName)){for(var q in o){if(typeof o[q]=="function"){o[q]=$empty;}}Element.dispose(o);}}if(!n){return;}i[n]=g[n]=null;};var d=function(){Hash.each(i,h);if(Browser.Engine.trident){$A(document.getElementsByTagName("object")).each(h);}if(window.CollectGarbage){CollectGarbage();}i=g=null;};var k=function(o,m,t,n,q,s){var p=o[t||m];var r=[];while(p){if(p.nodeType==1&&(!n||Element.match(p,n))){if(!q){return document.id(p,s);}r.push(p);}p=p[m];}return(q)?new Elements(r,{ddup:false,cash:!s}):null;};var f={html:"innerHTML","class":"className","for":"htmlFor",defaultValue:"defaultValue",text:(Browser.Engine.trident||(Browser.Engine.webkit&&Browser.Engine.version<420))?"innerText":"textContent"};var b=["compact","nowrap","ismap","declare","noshade","checked","disabled","readonly","multiple","selected","noresize","defer"];var l=["value","type","defaultValue","accessKey","cellPadding","cellSpacing","colSpan","frameBorder","maxLength","readOnly","rowSpan","tabIndex","useMap"];b=b.associate(b);Hash.extend(f,b);Hash.extend(f,l.associate(l.map(String.toLowerCase)));var a={before:function(n,m){if(m.parentNode){m.parentNode.insertBefore(n,m);}},after:function(n,m){if(!m.parentNode){return;}var o=m.nextSibling;(o)?m.parentNode.insertBefore(n,o):m.parentNode.appendChild(n);},bottom:function(n,m){m.appendChild(n);},top:function(n,m){var o=m.firstChild;(o)?m.insertBefore(n,o):m.appendChild(n);}};a.inside=a.bottom;Hash.each(a,function(m,n){n=n.capitalize();Element.implement("inject"+n,function(o){m(this,document.id(o,true));return this;});Element.implement("grab"+n,function(o){m(document.id(o,true),this);return this;});});Element.implement({set:function(q,n){switch($type(q)){case"object":for(var o in q){this.set(o,q[o]);}break;case"string":var m=Element.Properties.get(q);(m&&m.set)?m.set.apply(this,Array.slice(arguments,1)):this.setProperty(q,n);}return this;},get:function(n){var m=Element.Properties.get(n);return(m&&m.get)?m.get.apply(this,Array.slice(arguments,1)):this.getProperty(n);},erase:function(n){var m=Element.Properties.get(n);(m&&m.erase)?m.erase.apply(this):this.removeProperty(n);return this;},setProperty:function(n,o){var m=f[n];if(o==undefined){return this.removeProperty(n);}if(m&&b[n]){o=!!o;}(m)?this[m]=o:this.setAttribute(n,""+o);return this;},setProperties:function(m){for(var n in m){this.setProperty(n,m[n]);}return this;},getProperty:function(n){var m=f[n];var o=(m)?this[m]:this.getAttribute(n,2);return(b[n])?!!o:(m)?o:o||null;},getProperties:function(){var m=$A(arguments);return m.map(this.getProperty,this).associate(m);},removeProperty:function(n){var m=f[n];(m)?this[m]=(m&&b[n])?false:"":this.removeAttribute(n);return this;},removeProperties:function(){Array.each(arguments,this.removeProperty,this);return this;},hasClass:function(m){return this.className.contains(m," ");},addClass:function(m){if(!this.hasClass(m)){this.className=(this.className+" "+m).clean();}return this;},removeClass:function(m){this.className=this.className.replace(new RegExp("(^|\\s)"+m+"(?:\\s|$)"),"$1");return this;},toggleClass:function(m){return this.hasClass(m)?this.removeClass(m):this.addClass(m);},adopt:function(){Array.flatten(arguments).each(function(m){m=document.id(m,true);if(m){this.appendChild(m);}},this);return this;},appendText:function(n,m){return this.grab(this.getDocument().newTextNode(n),m);},grab:function(n,m){a[m||"bottom"](document.id(n,true),this);return this;},inject:function(n,m){a[m||"bottom"](this,document.id(n,true));return this;},replaces:function(m){m=document.id(m,true);m.parentNode.replaceChild(this,m);return this;},wraps:function(n,m){n=document.id(n,true);return this.replaces(n).grab(n,m);},getPrevious:function(m,n){return k(this,"previousSibling",null,m,false,n);},getAllPrevious:function(m,n){return k(this,"previousSibling",null,m,true,n);},getNext:function(m,n){return k(this,"nextSibling",null,m,false,n);},getAllNext:function(m,n){return k(this,"nextSibling",null,m,true,n);},getFirst:function(m,n){return k(this,"nextSibling","firstChild",m,false,n);},getLast:function(m,n){return k(this,"previousSibling","lastChild",m,false,n);},getParent:function(m,n){return k(this,"parentNode",null,m,false,n);},getParents:function(m,n){return k(this,"parentNode",null,m,true,n);},getSiblings:function(m,n){return this.getParent().getChildren(m,n).erase(this);},getChildren:function(m,n){return k(this,"nextSibling","firstChild",m,true,n);},getWindow:function(){return this.ownerDocument.window;},getDocument:function(){return this.ownerDocument;},getElementById:function(p,o){var n=this.ownerDocument.getElementById(p);if(!n){return null;}for(var m=n.parentNode;m!=this;m=m.parentNode){if(!m){return null;}}return document.id(n,o);},getSelected:function(){return new Elements($A(this.options).filter(function(m){return m.selected;}));},getComputedStyle:function(n){if(this.currentStyle){return this.currentStyle[n.camelCase()];}var m=this.getDocument().defaultView.getComputedStyle(this,null);return(m)?m.getPropertyValue([n.hyphenate()]):null;},toQueryString:function(){var m=[];this.getElements("input, select, textarea",true).each(function(n){if(!n.name||n.disabled||n.type=="submit"||n.type=="reset"||n.type=="file"){return;}var o=(n.tagName.toLowerCase()=="select")?Element.getSelected(n).map(function(p){return p.value;}):((n.type=="radio"||n.type=="checkbox")&&!n.checked)?null:n.value;$splat(o).each(function(p){if(typeof p!="undefined"){m.push(n.name+"="+encodeURIComponent(p));}});});return m.join("&");},clone:function(p,m){p=p!==false;var s=this.cloneNode(p);var o=function(w,v){if(!m){w.removeAttribute("id");}if(Browser.Engine.trident){w.clearAttributes();w.mergeAttributes(v);w.removeAttribute("uid");if(w.options){var x=w.options,t=v.options;for(var u=x.length;u--;){x[u].selected=t[u].selected;}}}var y=j[v.tagName.toLowerCase()];if(y&&v[y]){w[y]=v[y];}};if(p){var q=s.getElementsByTagName("*"),r=this.getElementsByTagName("*");for(var n=q.length;n--;){o(q[n],r[n]);}}o(s,this);return document.id(s);},destroy:function(){Element.empty(this);Element.dispose(this);h(this,true);return null;},empty:function(){$A(this.childNodes).each(function(m){Element.destroy(m);});return this;},dispose:function(){return(this.parentNode)?this.parentNode.removeChild(this):this;},hasChild:function(m){m=document.id(m,true);if(!m){return false;}if(Browser.Engine.webkit&&Browser.Engine.version<420){return $A(this.getElementsByTagName(m.tagName)).contains(m);}return(this.contains)?(this!=m&&this.contains(m)):!!(this.compareDocumentPosition(m)&16);},match:function(m){return(!m||(m==this)||(Element.get(this,"tag")==m));}});Native.implement([Element,Window,Document],{addListener:function(p,o){if(p=="unload"){var m=o,n=this;o=function(){n.removeListener("unload",o);m();};}else{i[this.uid]=this;}if(this.addEventListener){this.addEventListener(p,o,false);}else{this.attachEvent("on"+p,o);}return this;},removeListener:function(n,m){if(this.removeEventListener){this.removeEventListener(n,m,false);}else{this.detachEvent("on"+n,m);}return this;},retrieve:function(n,m){var p=c(this.uid),o=p[n];if(m!=undefined&&o==undefined){o=p[n]=m;}return $pick(o);},store:function(n,m){var o=c(this.uid);o[n]=m;return this;},eliminate:function(m){var n=c(this.uid);delete n[m];return this;}});window.addListener("unload",d);})();Element.Properties=new Hash;Element.Properties.style={set:function(a){this.style.cssText=a;},get:function(){return this.style.cssText;},erase:function(){this.style.cssText="";}};Element.Properties.tag={get:function(){return this.tagName.toLowerCase();}};Element.Properties.html=(function(){var c=document.createElement("div");var a={table:[1,"<table>","</table>"],select:[1,"<select>","</select>"],tbody:[2,"<table><tbody>","</tbody></table>"],tr:[3,"<table><tbody><tr>","</tr></tbody></table>"]};a.thead=a.tfoot=a.tbody;var b={set:function(){var f=Array.flatten(arguments).join("");var g=Browser.Engine.trident&&a[this.get("tag")];if(g){var h=c;h.innerHTML=g[1]+f+g[2];for(var d=g[0];d--;){h=h.firstChild;}this.empty().adopt(h.childNodes);}else{this.innerHTML=f;}}};b.erase=b.set;return b;})();if(Browser.Engine.webkit&&Browser.Engine.version<420){Element.Properties.text={get:function(){if(this.innerText){return this.innerText;}var a=this.ownerDocument.newElement("div",{html:this.innerHTML}).inject(this.ownerDocument.body);var b=a.innerText;a.destroy();return b;}};}(function(){Element.implement({scrollTo:function(i,j){if(b(this)){this.getWindow().scrollTo(i,j);}else{this.scrollLeft=i;this.scrollTop=j;}return this;},getSize:function(){if(b(this)){return this.getWindow().getSize();}return{x:this.offsetWidth,y:this.offsetHeight};},getScrollSize:function(){if(b(this)){return this.getWindow().getScrollSize();}return{x:this.scrollWidth,y:this.scrollHeight};},getScroll:function(){if(b(this)){return this.getWindow().getScroll();}return{x:this.scrollLeft,y:this.scrollTop};},getScrolls:function(){var j=this,i={x:0,y:0};while(j&&!b(j)){i.x+=j.scrollLeft;i.y+=j.scrollTop;j=j.parentNode;}return i;},getOffsetParent:function(){var i=this;if(b(i)){return null;}if(!Browser.Engine.trident){return i.offsetParent;}while((i=i.parentNode)&&!b(i)){if(d(i,"position")!="static"){return i;}}return null;},getOffsets:function(){if(this.getBoundingClientRect){var k=this.getBoundingClientRect(),n=document.id(this.getDocument().documentElement),q=n.getScroll(),l=this.getScrolls(),j=this.getScroll(),i=(d(this,"position")=="fixed");return{x:k.left.toInt()+l.x-j.x+((i)?0:q.x)-n.clientLeft,y:k.top.toInt()+l.y-j.y+((i)?0:q.y)-n.clientTop};}var m=this,o={x:0,y:0};if(b(this)){return o;}while(m&&!b(m)){o.x+=m.offsetLeft;o.y+=m.offsetTop;if(Browser.Engine.gecko){if(!g(m)){o.x+=c(m);o.y+=h(m);}var p=m.parentNode;if(p&&d(p,"overflow")!="visible"){o.x+=c(p);o.y+=h(p);}}else{if(m!=this&&Browser.Engine.webkit){o.x+=c(m);o.y+=h(m);}}m=m.offsetParent;}if(Browser.Engine.gecko&&!g(this)){o.x-=c(this);o.y-=h(this);}return o;},getPosition:function(l){if(b(this)){return{x:0,y:0};}var m=this.getOffsets(),j=this.getScrolls();var i={x:m.x-j.x,y:m.y-j.y};var k=(l&&(l=document.id(l)))?l.getPosition():{x:0,y:0};return{x:i.x-k.x,y:i.y-k.y};},getCoordinates:function(k){if(b(this)){return this.getWindow().getCoordinates();}var i=this.getPosition(k),j=this.getSize();var l={left:i.x,top:i.y,width:j.x,height:j.y};l.right=l.left+l.width;l.bottom=l.top+l.height;return l;},computePosition:function(i){return{left:i.x-f(this,"margin-left"),top:i.y-f(this,"margin-top")};},setPosition:function(i){return this.setStyles(this.computePosition(i));}});Native.implement([Document,Window],{getSize:function(){if(Browser.Engine.presto||Browser.Engine.webkit){var j=this.getWindow();return{x:j.innerWidth,y:j.innerHeight};}var i=a(this);return{x:i.clientWidth,y:i.clientHeight};},getScroll:function(){var j=this.getWindow(),i=a(this);return{x:j.pageXOffset||i.scrollLeft,y:j.pageYOffset||i.scrollTop};},getScrollSize:function(){var j=a(this),i=this.getSize();return{x:Math.max(j.scrollWidth,i.x),y:Math.max(j.scrollHeight,i.y)};},getPosition:function(){return{x:0,y:0};},getCoordinates:function(){var i=this.getSize();return{top:0,left:0,bottom:i.y,right:i.x,height:i.y,width:i.x};}});var d=Element.getComputedStyle;function f(i,j){return d(i,j).toInt()||0;}function g(i){return d(i,"-moz-box-sizing")=="border-box";}function h(i){return f(i,"border-top-width");}function c(i){return f(i,"border-left-width");}function b(i){return(/^(?:body|html)$/i).test(i.tagName);}function a(i){var j=i.getDocument();return(!j.compatMode||j.compatMode=="CSS1Compat")?j.html:j.body;}})();Element.alias("setPosition","position");Native.implement([Window,Document,Element],{getHeight:function(){return this.getSize().y;},getWidth:function(){return this.getSize().x;},getScrollTop:function(){return this.getScroll().y;},getScrollLeft:function(){return this.getScroll().x;},getScrollHeight:function(){return this.getScrollSize().y;},getScrollWidth:function(){return this.getScrollSize().x;},getTop:function(){return this.getPosition().y;},getLeft:function(){return this.getPosition().x;}});var Event=new Native({name:"Event",initialize:function(a,g){g=g||window;var l=g.document;a=a||g.event;if(a.$extended){return a;}this.$extended=true;var k=a.type;var h=a.target||a.srcElement;while(h&&h.nodeType==3){h=h.parentNode;}if(k.test(/key/)){var b=a.which||a.keyCode;var n=Event.Keys.keyOf(b);if(k=="keydown"){var d=b-111;if(d>0&&d<13){n="f"+d;}}n=n||String.fromCharCode(b).toLowerCase();}else{if(k.match(/(click|mouse|menu)/i)){l=(!l.compatMode||l.compatMode=="CSS1Compat")?l.html:l.body;var j={x:a.pageX||a.clientX+l.scrollLeft,y:a.pageY||a.clientY+l.scrollTop};var c={x:(a.pageX)?a.pageX-g.pageXOffset:a.clientX,y:(a.pageY)?a.pageY-g.pageYOffset:a.clientY};if(k.match(/DOMMouseScroll|mousewheel/)){var i=(a.wheelDelta)?a.wheelDelta/120:-(a.detail||0)/3;}var f=(a.which==3)||(a.button==2);var m=null;if(k.match(/over|out/)){switch(k){case"mouseover":m=a.relatedTarget||a.fromElement;break;case"mouseout":m=a.relatedTarget||a.toElement;}if(!(function(){while(m&&m.nodeType==3){m=m.parentNode;}return true;}).create({attempt:Browser.Engine.gecko})()){m=false;}}}}return $extend(this,{event:a,type:k,page:j,client:c,rightClick:f,wheel:i,relatedTarget:m,target:h,code:b,key:n,shift:a.shiftKey,control:a.ctrlKey,alt:a.altKey,meta:a.metaKey});}});Event.Keys=new Hash({enter:13,up:38,down:40,left:37,right:39,esc:27,space:32,backspace:8,tab:9,"delete":46});Event.implement({stop:function(){return this.stopPropagation().preventDefault();},stopPropagation:function(){if(this.event.stopPropagation){this.event.stopPropagation();}else{this.event.cancelBubble=true;}return this;},preventDefault:function(){if(this.event.preventDefault){this.event.preventDefault();}else{this.event.returnValue=false;}return this;}});Element.Properties.events={set:function(a){this.addEvents(a);}};Native.implement([Element,Window,Document],{addEvent:function(f,h){var i=this.retrieve("events",{});i[f]=i[f]||{keys:[],values:[]};if(i[f].keys.contains(h)){return this;}i[f].keys.push(h);var g=f,a=Element.Events.get(f),c=h,j=this;if(a){if(a.onAdd){a.onAdd.call(this,h);}if(a.condition){c=function(k){if(a.condition.call(this,k)){return h.call(this,k);}return true;};}g=a.base||g;}var d=function(){return h.call(j);};var b=Element.NativeEvents[g];if(b){if(b==2){d=function(k){k=new Event(k,j.getWindow());if(c.call(j,k)===false){k.stop();}};}this.addListener(g,d);}i[f].values.push(d);return this;},removeEvent:function(c,b){var a=this.retrieve("events");if(!a||!a[c]){return this;}var g=a[c].keys.indexOf(b);if(g==-1){return this;}a[c].keys.splice(g,1);var f=a[c].values.splice(g,1)[0];var d=Element.Events.get(c);if(d){if(d.onRemove){d.onRemove.call(this,b);}c=d.base||c;}return(Element.NativeEvents[c])?this.removeListener(c,f):this;},addEvents:function(a){for(var b in a){this.addEvent(b,a[b]);}return this;},removeEvents:function(a){var c;if($type(a)=="object"){for(c in a){this.removeEvent(c,a[c]);}return this;}var b=this.retrieve("events");if(!b){return this;}if(!a){for(c in b){this.removeEvents(c);}this.eliminate("events");}else{if(b[a]){while(b[a].keys[0]){this.removeEvent(a,b[a].keys[0]);}b[a]=null;}}return this;},fireEvent:function(d,b,a){var c=this.retrieve("events");if(!c||!c[d]){return this;}c[d].keys.each(function(f){f.create({bind:this,delay:a,"arguments":b})();},this);return this;},cloneEvents:function(d,a){d=document.id(d);var c=d.retrieve("events");if(!c){return this;}if(!a){for(var b in c){this.cloneEvents(d,b);}}else{if(c[a]){c[a].keys.each(function(f){this.addEvent(a,f);},this);}}return this;}});try{if(typeof HTMLElement!="undefined"){HTMLElement.prototype.fireEvent=Element.prototype.fireEvent;}}catch(e){}Element.NativeEvents={click:2,dblclick:2,mouseup:2,mousedown:2,contextmenu:2,mousewheel:2,DOMMouseScroll:2,mouseover:2,mouseout:2,mousemove:2,selectstart:2,selectend:2,keydown:2,keypress:2,keyup:2,focus:2,blur:2,change:2,reset:2,select:2,submit:2,load:1,unload:1,beforeunload:2,resize:1,move:1,DOMContentLoaded:1,readystatechange:1,error:1,abort:1,scroll:1};(function(){var a=function(b){var c=b.relatedTarget;if(c==undefined){return true;}if(c===false){return false;}return($type(this)!="document"&&c!=this&&c.prefix!="xul"&&!this.hasChild(c));};Element.Events=new Hash({mouseenter:{base:"mouseover",condition:a},mouseleave:{base:"mouseout",condition:a},mousewheel:{base:(Browser.Engine.gecko)?"DOMMouseScroll":"mousewheel"}});})();Element.Properties.styles={set:function(a){this.setStyles(a);}};Element.Properties.opacity={set:function(a,b){if(!b){if(a==0){if(this.style.visibility!="hidden"){this.style.visibility="hidden";}}else{if(this.style.visibility!="visible"){this.style.visibility="visible";}}}if(!this.currentStyle||!this.currentStyle.hasLayout){this.style.zoom=1;}if(Browser.Engine.trident){this.style.filter=(a==1)?"":"alpha(opacity="+a*100+")";}this.style.opacity=a;this.store("opacity",a);},get:function(){return this.retrieve("opacity",1);}};Element.implement({setOpacity:function(a){return this.set("opacity",a,true);},getOpacity:function(){return this.get("opacity");},setStyle:function(b,a){switch(b){case"opacity":return this.set("opacity",parseFloat(a));case"float":b=(Browser.Engine.trident)?"styleFloat":"cssFloat";}b=b.camelCase();if($type(a)!="string"){var c=(Element.Styles.get(b)||"@").split(" ");a=$splat(a).map(function(f,d){if(!c[d]){return"";}return($type(f)=="number")?c[d].replace("@",Math.round(f)):f;}).join(" ");}else{if(a==String(Number(a))){a=Math.round(a);}}this.style[b]=a;return this;},getStyle:function(h){switch(h){case"opacity":return this.get("opacity");case"float":h=(Browser.Engine.trident)?"styleFloat":"cssFloat";}h=h.camelCase();var a=this.style[h];if(!$chk(a)){a=[];for(var g in Element.ShortStyles){if(h!=g){continue;}for(var f in Element.ShortStyles[g]){a.push(this.getStyle(f));}return a.join(" ");}a=this.getComputedStyle(h);}if(a){a=String(a);var c=a.match(/rgba?\([\d\s,]+\)/);if(c){a=a.replace(c[0],c[0].rgbToHex());}}if(Browser.Engine.presto||(Browser.Engine.trident&&!$chk(parseInt(a,10)))){if(h.test(/^(height|width)$/)){var b=(h=="width")?["left","right"]:["top","bottom"],d=0;b.each(function(i){d+=this.getStyle("border-"+i+"-width").toInt()+this.getStyle("padding-"+i).toInt();},this);return this["offset"+h.capitalize()]-d+"px";}if((Browser.Engine.presto)&&String(a).test("px")){return a;}if(h.test(/(border(.+)Width|margin|padding)/)){return"0px";}}return a;},setStyles:function(b){for(var a in b){this.setStyle(a,b[a]);}return this;},getStyles:function(){var a={};Array.flatten(arguments).each(function(b){a[b]=this.getStyle(b);},this);return a;}});Element.Styles=new Hash({left:"@px",top:"@px",bottom:"@px",right:"@px",width:"@px",height:"@px",maxWidth:"@px",maxHeight:"@px",minWidth:"@px",minHeight:"@px",backgroundColor:"rgb(@, @, @)",backgroundPosition:"@px @px",color:"rgb(@, @, @)",fontSize:"@px",letterSpacing:"@px",lineHeight:"@px",clip:"rect(@px @px @px @px)",margin:"@px @px @px @px",padding:"@px @px @px @px",border:"@px @ rgb(@, @, @) @px @ rgb(@, @, @) @px @ rgb(@, @, @)",borderWidth:"@px @px @px @px",borderStyle:"@ @ @ @",borderColor:"rgb(@, @, @) rgb(@, @, @) rgb(@, @, @) rgb(@, @, @)",zIndex:"@",zoom:"@",fontWeight:"@",textIndent:"@px",opacity:"@"});Element.ShortStyles={margin:{},padding:{},border:{},borderWidth:{},borderStyle:{},borderColor:{}};["Top","Right","Bottom","Left"].each(function(h){var g=Element.ShortStyles;var b=Element.Styles;["margin","padding"].each(function(i){var j=i+h;g[i][j]=b[j]="@px";});var f="border"+h;g.border[f]=b[f]="@px @ rgb(@, @, @)";var d=f+"Width",a=f+"Style",c=f+"Color";g[f]={};g.borderWidth[d]=g[f][d]=b[d]="@px";g.borderStyle[a]=g[f][a]=b[a]="@";g.borderColor[c]=g[f][c]=b[c]="rgb(@, @, @)";});var Fx=new Class({Implements:[Chain,Events,Options],options:{fps:50,unit:false,duration:500,link:"ignore"},initialize:function(a){this.subject=this.subject||this;this.setOptions(a);this.options.duration=Fx.Durations[this.options.duration]||this.options.duration.toInt();var b=this.options.wait;if(b===false){this.options.link="cancel";}},getTransition:function(){return function(a){return-(Math.cos(Math.PI*a)-1)/2;};},step:function(){var a=$time();if(a<this.time+this.options.duration){var b=this.transition((a-this.time)/this.options.duration);this.set(this.compute(this.from,this.to,b));}else{this.set(this.compute(this.from,this.to,1));this.complete();}},set:function(a){return a;},compute:function(c,b,a){return Fx.compute(c,b,a);},check:function(){if(!this.timer){return true;}switch(this.options.link){case"cancel":this.cancel();return true;case"chain":this.chain(this.caller.bind(this,arguments));return false;}return false;},start:function(b,a){if(!this.check(b,a)){return this;}this.from=b;this.to=a;this.time=0;this.transition=this.getTransition();this.startTimer();this.onStart();return this;},complete:function(){if(this.stopTimer()){this.onComplete();}return this;},cancel:function(){if(this.stopTimer()){this.onCancel();}return this;},onStart:function(){this.fireEvent("start",this.subject);},onComplete:function(){this.fireEvent("complete",this.subject);if(!this.callChain()){this.fireEvent("chainComplete",this.subject);}},onCancel:function(){this.fireEvent("cancel",this.subject).clearChain();},pause:function(){this.stopTimer();return this;},resume:function(){this.startTimer();return this;},stopTimer:function(){if(!this.timer){return false;}this.time=$time()-this.time;this.timer=$clear(this.timer);return true;},startTimer:function(){if(this.timer){return false;}this.time=$time()-this.time;this.timer=this.step.periodical(Math.round(1000/this.options.fps),this);return true;}});Fx.compute=function(c,b,a){return(b-c)*a+c;};Fx.Durations={"short":250,normal:500,"long":1000};Fx.CSS=new Class({Extends:Fx,prepare:function(d,f,b){b=$splat(b);var c=b[1];if(!$chk(c)){b[1]=b[0];b[0]=d.getStyle(f);}var a=b.map(this.parse);return{from:a[0],to:a[1]};},parse:function(a){a=$lambda(a)();a=(typeof a=="string")?a.split(" "):$splat(a);return a.map(function(c){c=String(c);var b=false;Fx.CSS.Parsers.each(function(g,f){if(b){return;}var d=g.parse(c);if($chk(d)){b={value:d,parser:g};}});b=b||{value:c,parser:Fx.CSS.Parsers.String};return b;});},compute:function(d,c,b){var a=[];(Math.min(d.length,c.length)).times(function(f){a.push({value:d[f].parser.compute(d[f].value,c[f].value,b),parser:d[f].parser});});a.$family={name:"fx:css:value"};return a;},serve:function(c,b){if($type(c)!="fx:css:value"){c=this.parse(c);}var a=[];c.each(function(d){a=a.concat(d.parser.serve(d.value,b));});return a;},render:function(a,d,c,b){a.setStyle(d,this.serve(c,b));},search:function(a){if(Fx.CSS.Cache[a]){return Fx.CSS.Cache[a];}var b={};Array.each(document.styleSheets,function(f,d){var c=f.href;if(c&&c.contains("://")&&!c.contains(document.domain)){return;}var g=f.rules||f.cssRules;Array.each(g,function(k,h){if(!k.style){return;}var j=(k.selectorText)?k.selectorText.replace(/^\w+/,function(i){return i.toLowerCase();}):null;if(!j||!j.test("^"+a+"$")){return;}Element.Styles.each(function(l,i){if(!k.style[i]||Element.ShortStyles[i]){return;}l=String(k.style[i]);b[i]=(l.test(/^rgb/))?l.rgbToHex():l;});});});return Fx.CSS.Cache[a]=b;}});Fx.CSS.Cache={};Fx.CSS.Parsers=new Hash({Color:{parse:function(a){if(a.match(/^#[0-9a-f]{3,6}$/i)){return a.hexToRgb(true);}return((a=a.match(/(\d+),\s*(\d+),\s*(\d+)/)))?[a[1],a[2],a[3]]:false;},compute:function(c,b,a){return c.map(function(f,d){return Math.round(Fx.compute(c[d],b[d],a));});},serve:function(a){return a.map(Number);}},Number:{parse:parseFloat,compute:Fx.compute,serve:function(b,a){return(a)?b+a:b;}},String:{parse:$lambda(false),compute:$arguments(1),serve:$arguments(0)}});Fx.Morph=new Class({Extends:Fx.CSS,initialize:function(b,a){this.element=this.subject=document.id(b);this.parent(a);},set:function(a){if(typeof a=="string"){a=this.search(a);}for(var b in a){this.render(this.element,b,a[b],this.options.unit);}return this;},compute:function(f,d,c){var a={};for(var b in f){a[b]=this.parent(f[b],d[b],c);}return a;},start:function(b){if(!this.check(b)){return this;}if(typeof b=="string"){b=this.search(b);}var f={},d={};for(var c in b){var a=this.prepare(this.element,c,b[c]);f[c]=a.from;d[c]=a.to;}return this.parent(f,d);}});Element.Properties.morph={set:function(a){var b=this.retrieve("morph");if(b){b.cancel();}return this.eliminate("morph").store("morph:options",$extend({link:"cancel"},a));},get:function(a){if(a||!this.retrieve("morph")){if(a||!this.retrieve("morph:options")){this.set("morph",a);}this.store("morph",new Fx.Morph(this,this.retrieve("morph:options")));}return this.retrieve("morph");}};Element.implement({morph:function(a){this.get("morph").start(a);return this;}});Fx.implement({getTransition:function(){var a=this.options.transition||Fx.Transitions.Sine.easeInOut;if(typeof a=="string"){var b=a.split(":");a=Fx.Transitions;a=a[b[0]]||a[b[0].capitalize()];if(b[1]){a=a["ease"+b[1].capitalize()+(b[2]?b[2].capitalize():"")];}}return a;}});Fx.Transition=function(b,a){a=$splat(a);return $extend(b,{easeIn:function(c){return b(c,a);},easeOut:function(c){return 1-b(1-c,a);},easeInOut:function(c){return(c<=0.5)?b(2*c,a)/2:(2-b(2*(1-c),a))/2;}});};Fx.Transitions=new Hash({linear:$arguments(0)});Fx.Transitions.extend=function(a){for(var b in a){Fx.Transitions[b]=new Fx.Transition(a[b]);}};Fx.Transitions.extend({Pow:function(b,a){return Math.pow(b,a[0]||6);},Expo:function(a){return Math.pow(2,8*(a-1));},Circ:function(a){return 1-Math.sin(Math.acos(a));},Sine:function(a){return 1-Math.sin((1-a)*Math.PI/2);},Back:function(b,a){a=a[0]||1.618;return Math.pow(b,2)*((a+1)*b-a);},Bounce:function(g){var f;for(var d=0,c=1;1;d+=c,c/=2){if(g>=(7-4*d)/11){f=c*c-Math.pow((11-6*d-11*g)/4,2);break;}}return f;},Elastic:function(b,a){return Math.pow(2,10*--b)*Math.cos(20*b*Math.PI*(a[0]||1)/3);}});["Quad","Cubic","Quart","Quint"].each(function(b,a){Fx.Transitions[b]=new Fx.Transition(function(c){return Math.pow(c,[a+2]);});});Fx.Tween=new Class({Extends:Fx.CSS,initialize:function(b,a){this.element=this.subject=document.id(b);this.parent(a);},set:function(b,a){if(arguments.length==1){a=b;b=this.property||this.options.property;}this.render(this.element,b,a,this.options.unit);return this;},start:function(c,f,d){if(!this.check(c,f,d)){return this;}var b=Array.flatten(arguments);this.property=this.options.property||b.shift();var a=this.prepare(this.element,this.property,b);return this.parent(a.from,a.to);}});Element.Properties.tween={set:function(a){var b=this.retrieve("tween");if(b){b.cancel();}return this.eliminate("tween").store("tween:options",$extend({link:"cancel"},a));},get:function(a){if(a||!this.retrieve("tween")){if(a||!this.retrieve("tween:options")){this.set("tween",a);}this.store("tween",new Fx.Tween(this,this.retrieve("tween:options")));}return this.retrieve("tween");}};Element.implement({tween:function(a,c,b){this.get("tween").start(arguments);return this;},fade:function(c){var f=this.get("tween"),d="opacity",a;c=$pick(c,"toggle");switch(c){case"in":f.start(d,1);break;case"out":f.start(d,0);break;case"show":f.set(d,1);break;case"hide":f.set(d,0);break;case"toggle":var b=this.retrieve("fade:flag",this.get("opacity")==1);f.start(d,(b)?0:1);this.store("fade:flag",!b);a=true;break;default:f.start(d,arguments);}if(!a){this.eliminate("fade:flag");}return this;},highlight:function(c,a){if(!a){a=this.retrieve("highlight:original",this.getStyle("background-color"));a=(a=="transparent")?"#fff":a;}var b=this.get("tween");b.start("background-color",c||"#ffff88",a).chain(function(){this.setStyle("background-color",this.retrieve("highlight:original"));b.callChain();}.bind(this));return this;}});var Request=new Class({Implements:[Chain,Events,Options],options:{url:"",data:"",headers:{"X-Requested-With":"XMLHttpRequest",Accept:"text/javascript, text/html, application/xml, text/xml, */*"},async:true,format:false,method:"post",link:"ignore",isSuccess:null,emulation:true,urlEncoded:true,encoding:"utf-8",evalScripts:false,evalResponse:false,noCache:false},initialize:function(a){this.xhr=new Browser.Request();this.setOptions(a);this.options.isSuccess=this.options.isSuccess||this.isSuccess;this.headers=new Hash(this.options.headers);},onStateChange:function(){if(this.xhr.readyState!=4||!this.running){return;}this.running=false;this.status=0;$try(function(){this.status=this.xhr.status;}.bind(this));this.xhr.onreadystatechange=$empty;if(this.options.isSuccess.call(this,this.status)){this.response={text:this.xhr.responseText,xml:this.xhr.responseXML};this.success(this.response.text,this.response.xml);}else{this.response={text:null,xml:null};this.failure();}},isSuccess:function(){return((this.status>=200)&&(this.status<300));},processScripts:function(a){if(this.options.evalResponse||(/(ecma|java)script/).test(this.getHeader("Content-type"))){return $exec(a);}return a.stripScripts(this.options.evalScripts);},success:function(b,a){this.onSuccess(this.processScripts(b),a);},onSuccess:function(){this.fireEvent("complete",arguments).fireEvent("success",arguments).callChain();},failure:function(){this.onFailure();},onFailure:function(){this.fireEvent("complete").fireEvent("failure",this.xhr);},setHeader:function(a,b){this.headers.set(a,b);return this;},getHeader:function(a){return $try(function(){return this.xhr.getResponseHeader(a);}.bind(this));},check:function(){if(!this.running){return true;}switch(this.options.link){case"cancel":this.cancel();return true;case"chain":this.chain(this.caller.bind(this,arguments));return false;}return false;},send:function(l){if(!this.check(l)){return this;}this.running=true;var j=$type(l);if(j=="string"||j=="element"){l={data:l};}var d=this.options;l=$extend({data:d.data,url:d.url,method:d.method},l);var h=l.data,b=String(l.url),a=l.method.toLowerCase();switch($type(h)){case"element":h=document.id(h).toQueryString();break;case"object":case"hash":h=Hash.toQueryString(h);}if(this.options.format){var k="format="+this.options.format;h=(h)?k+"&"+h:k;}if(this.options.emulation&&!["get","post"].contains(a)){var i="_method="+a;h=(h)?i+"&"+h:i;a="post";}if(this.options.urlEncoded&&a=="post"){var c=(this.options.encoding)?"; charset="+this.options.encoding:"";this.headers.set("Content-type","application/x-www-form-urlencoded"+c);}if(this.options.noCache){var g="noCache="+new Date().getTime();h=(h)?g+"&"+h:g;}var f=b.lastIndexOf("/");if(f>-1&&(f=b.indexOf("#"))>-1){b=b.substr(0,f);}if(h&&a=="get"){b=b+(b.contains("?")?"&":"?")+h;h=null;}this.xhr.open(a.toUpperCase(),b,this.options.async);this.xhr.onreadystatechange=this.onStateChange.bind(this);this.headers.each(function(n,m){try{this.xhr.setRequestHeader(m,n);}catch(o){this.fireEvent("exception",[m,n]);}},this);this.fireEvent("request");this.xhr.send(h);if(!this.options.async){this.onStateChange();}return this;},cancel:function(){if(!this.running){return this;}this.running=false;this.xhr.abort();this.xhr.onreadystatechange=$empty;this.xhr=new Browser.Request();this.fireEvent("cancel");return this;}});(function(){var a={};["get","post","put","delete","GET","POST","PUT","DELETE"].each(function(b){a[b]=function(){var c=Array.link(arguments,{url:String.type,data:$defined});return this.send($extend(c,{method:b}));};});Request.implement(a);})();Element.Properties.send={set:function(a){var b=this.retrieve("send");if(b){b.cancel();}return this.eliminate("send").store("send:options",$extend({data:this,link:"cancel",method:this.get("method")||"post",url:this.get("action")},a));},get:function(a){if(a||!this.retrieve("send")){if(a||!this.retrieve("send:options")){this.set("send",a);}this.store("send",new Request(this.retrieve("send:options")));}return this.retrieve("send");}};Element.implement({send:function(a){var b=this.get("send");b.send({data:this,url:a||b.options.url});return this;}});Request.HTML=new Class({Extends:Request,options:{update:false,append:false,evalScripts:true,filter:false},processHTML:function(c){var b=c.match(/<body[^>]*>([\s\S]*?)<\/body>/i);c=(b)?b[1]:c;var a=new Element("div");return $try(function(){var d="<root>"+c+"</root>",h;if(Browser.Engine.trident){h=new ActiveXObject("Microsoft.XMLDOM");h.async=false;h.loadXML(d);}else{h=new DOMParser().parseFromString(d,"text/xml");}d=h.getElementsByTagName("root")[0];if(!d){return null;}for(var g=0,f=d.childNodes.length;g<f;g++){var j=Element.clone(d.childNodes[g],true,true);if(j){a.grab(j);}}return a;})||a.set("html",c);},success:function(d){var c=this.options,b=this.response;b.html=d.stripScripts(function(f){b.javascript=f;});var a=this.processHTML(b.html);b.tree=a.childNodes;b.elements=a.getElements("*");if(c.filter){b.tree=b.elements.filter(c.filter);}if(c.update){document.id(c.update).empty().set("html",b.html);}else{if(c.append){document.id(c.append).adopt(a.getChildren());}}if(c.evalScripts){$exec(b.javascript);}this.onSuccess(b.tree,b.elements,b.html,b.javascript);}});Element.Properties.load={set:function(a){var b=this.retrieve("load");if(b){b.cancel();}return this.eliminate("load").store("load:options",$extend({data:this,link:"cancel",update:this,method:"get"},a));},get:function(a){if(a||!this.retrieve("load")){if(a||!this.retrieve("load:options")){this.set("load",a);}this.store("load",new Request.HTML(this.retrieve("load:options")));}return this.retrieve("load");}};Element.implement({load:function(){this.get("load").send(Array.link(arguments,{data:Object.type,url:String.type}));return this;}});var JSON=new Hash(this.JSON&&{stringify:JSON.stringify,parse:JSON.parse}).extend({$specialChars:{"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},$replaceChars:function(a){return JSON.$specialChars[a]||"\\u00"+Math.floor(a.charCodeAt()/16).toString(16)+(a.charCodeAt()%16).toString(16);},encode:function(b){switch($type(b)){case"string":return'"'+b.replace(/[\x00-\x1f\\"]/g,JSON.$replaceChars)+'"';case"array":return"["+String(b.map(JSON.encode).clean())+"]";case"object":case"hash":var a=[];Hash.each(b,function(f,d){var c=JSON.encode(f);if(c){a.push(JSON.encode(d)+":"+c);}});return"{"+a+"}";case"number":case"boolean":return String(b);case false:return"null";}return null;},decode:function(string,secure){if($type(string)!="string"||!string.length){return null;}if(secure&&!(/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(string.replace(/\\./g,"@").replace(/"[^"\\\n\r]*"/g,""))){return null;}return eval("("+string+")");}});Request.JSON=new Class({Extends:Request,options:{secure:true},initialize:function(a){this.parent(a);this.headers.extend({Accept:"application/json","X-Request":"JSON"});},success:function(a){this.response.json=JSON.decode(a,this.options.secure);this.onSuccess(this.response.json,a);}});var Cookie=new Class({Implements:Options,options:{path:false,domain:false,duration:false,secure:false,document:document},initialize:function(b,a){this.key=b;this.setOptions(a);},write:function(b){b=encodeURIComponent(b);if(this.options.domain){b+="; domain="+this.options.domain;}if(this.options.path){b+="; path="+this.options.path;}if(this.options.duration){var a=new Date();a.setTime(a.getTime()+this.options.duration*24*60*60*1000);b+="; expires="+a.toGMTString();}if(this.options.secure){b+="; secure";}this.options.document.cookie=this.key+"="+b;return this;},read:function(){var a=this.options.document.cookie.match("(?:^|;)\\s*"+this.key.escapeRegExp()+"=([^;]*)");return(a)?decodeURIComponent(a[1]):null;},dispose:function(){new Cookie(this.key,$merge(this.options,{duration:-1})).write("");return this;}});Cookie.write=function(b,c,a){return new Cookie(b,a).write(c);};Cookie.read=function(a){return new Cookie(a).read();};Cookie.dispose=function(b,a){return new Cookie(b,a).dispose();};Element.Events.domready={onAdd:function(a){if(Browser.loaded){a.call(this);}}};(function(){var b=function(){if(Browser.loaded){return;}Browser.loaded=true;window.fireEvent("domready");document.fireEvent("domready");};window.addEvent("load",b);if(Browser.Engine.trident){var a=document.createElement("div");(function(){($try(function(){a.doScroll();return document.id(a).inject(document.body).set("html","temp").dispose();}))?b():arguments.callee.delay(50);})();}else{if(Browser.Engine.webkit&&Browser.Engine.version<525){(function(){(["loaded","complete"].contains(document.readyState))?b():arguments.callee.delay(50);})();}else{document.addEvent("DOMContentLoaded",b);}}})();Native.implement([Document,Element],{getElements:function(j,h){j=j.split(",");var c,f={};for(var d=0,b=j.length;d<b;d++){var a=j[d],g=Selectors.Utils.search(this,a,f);if(d!=0&&g.item){g=$A(g);}c=(d==0)?g:(c.item)?$A(c).concat(g):c.concat(g);}return new Elements(c,{ddup:(j.length>1),cash:!h});}});Element.implement({match:function(b){if(!b||(b==this)){return true;}var d=Selectors.Utils.parseTagAndID(b);var a=d[0],f=d[1];if(!Selectors.Filters.byID(this,f)||!Selectors.Filters.byTag(this,a)){return false;}var c=Selectors.Utils.parseSelector(b);return(c)?Selectors.Utils.filter(this,c,{}):true;}});var Selectors={Cache:{nth:{},parsed:{}}};Selectors.RegExps={id:(/#([\w-]+)/),tag:(/^(\w+|\*)/),quick:(/^(\w+|\*)$/),splitter:(/\s*([+>~\s])\s*([a-zA-Z#.*:\[])/g),combined:(/\.([\w-]+)|\[(\w+)(?:([!*^$~|]?=)(["']?)([^\4]*?)\4)?\]|:([\w-]+)(?:\(["']?(.*?)?["']?\)|$)/g)};Selectors.Utils={chk:function(b,c){if(!c){return true;}var a=$uid(b);if(!c[a]){return c[a]=true;}return false;},parseNthArgument:function(i){if(Selectors.Cache.nth[i]){return Selectors.Cache.nth[i];}var f=i.match(/^([+-]?\d*)?([a-z]+)?([+-]?\d*)?$/);if(!f){return false;}var h=parseInt(f[1],10);var d=(h||h===0)?h:1;var g=f[2]||false;var c=parseInt(f[3],10)||0;if(d!=0){c--;while(c<1){c+=d;}while(c>=d){c-=d;}}else{d=c;g="index";}switch(g){case"n":f={a:d,b:c,special:"n"};break;case"odd":f={a:2,b:0,special:"n"};break;case"even":f={a:2,b:1,special:"n"};break;case"first":f={a:0,special:"index"};break;case"last":f={special:"last-child"};break;case"only":f={special:"only-child"};break;default:f={a:(d-1),special:"index"};}return Selectors.Cache.nth[i]=f;},parseSelector:function(f){if(Selectors.Cache.parsed[f]){return Selectors.Cache.parsed[f];}var d,i={classes:[],pseudos:[],attributes:[]};while((d=Selectors.RegExps.combined.exec(f))){var j=d[1],h=d[2],g=d[3],b=d[5],c=d[6],k=d[7];if(j){i.classes.push(j);}else{if(c){var a=Selectors.Pseudo.get(c);if(a){i.pseudos.push({parser:a,argument:k});}else{i.attributes.push({name:c,operator:"=",value:k});}}else{if(h){i.attributes.push({name:h,operator:g,value:b});}}}}if(!i.classes.length){delete i.classes;}if(!i.attributes.length){delete i.attributes;}if(!i.pseudos.length){delete i.pseudos;}if(!i.classes&&!i.attributes&&!i.pseudos){i=null;}return Selectors.Cache.parsed[f]=i;},parseTagAndID:function(b){var a=b.match(Selectors.RegExps.tag);var c=b.match(Selectors.RegExps.id);return[(a)?a[1]:"*",(c)?c[1]:false];},filter:function(g,c,f){var d;if(c.classes){for(d=c.classes.length;d--;d){var h=c.classes[d];if(!Selectors.Filters.byClass(g,h)){return false;}}}if(c.attributes){for(d=c.attributes.length;d--;d){var b=c.attributes[d];if(!Selectors.Filters.byAttribute(g,b.name,b.operator,b.value)){return false;}}}if(c.pseudos){for(d=c.pseudos.length;d--;d){var a=c.pseudos[d];if(!Selectors.Filters.byPseudo(g,a.parser,a.argument,f)){return false;}}}return true;},getByTagAndID:function(b,a,d){if(d){var c=(b.getElementById)?b.getElementById(d,true):Element.getElementById(b,d,true);return(c&&Selectors.Filters.byTag(c,a))?[c]:[];}else{return b.getElementsByTagName(a);}},search:function(p,o,u){var b=[];var c=o.trim().replace(Selectors.RegExps.splitter,function(k,j,i){b.push(j);return":)"+i;}).split(":)");var q,f,B;for(var A=0,w=c.length;A<w;A++){var z=c[A];if(A==0&&Selectors.RegExps.quick.test(z)){q=p.getElementsByTagName(z);continue;}var a=b[A-1];var r=Selectors.Utils.parseTagAndID(z);var C=r[0],s=r[1];if(A==0){q=Selectors.Utils.getByTagAndID(p,C,s);}else{var d={},h=[];for(var y=0,x=q.length;y<x;y++){h=Selectors.Getters[a](h,q[y],C,s,d);}q=h;}var g=Selectors.Utils.parseSelector(z);if(g){f=[];for(var v=0,t=q.length;v<t;v++){B=q[v];if(Selectors.Utils.filter(B,g,u)){f.push(B);}}q=f;}}return q;}};Selectors.Getters={" ":function(j,h,k,a,f){var d=Selectors.Utils.getByTagAndID(h,k,a);for(var c=0,b=d.length;c<b;c++){var g=d[c];if(Selectors.Utils.chk(g,f)){j.push(g);}}return j;},">":function(j,h,k,a,g){var c=Selectors.Utils.getByTagAndID(h,k,a);for(var f=0,d=c.length;f<d;f++){var b=c[f];if(b.parentNode==h&&Selectors.Utils.chk(b,g)){j.push(b);}}return j;},"+":function(c,b,a,f,d){while((b=b.nextSibling)){if(b.nodeType==1){if(Selectors.Utils.chk(b,d)&&Selectors.Filters.byTag(b,a)&&Selectors.Filters.byID(b,f)){c.push(b);}break;}}return c;},"~":function(c,b,a,f,d){while((b=b.nextSibling)){if(b.nodeType==1){if(!Selectors.Utils.chk(b,d)){break;}if(Selectors.Filters.byTag(b,a)&&Selectors.Filters.byID(b,f)){c.push(b);}}}return c;}};Selectors.Filters={byTag:function(b,a){return(a=="*"||(b.tagName&&b.tagName.toLowerCase()==a));},byID:function(a,b){return(!b||(a.id&&a.id==b));},byClass:function(b,a){return(b.className&&b.className.contains&&b.className.contains(a," "));},byPseudo:function(a,d,c,b){return d.call(a,c,b);},byAttribute:function(c,d,b,f){var a=Element.prototype.getProperty.call(c,d);if(!a){return(b=="!=");}if(!b||f==undefined){return true;}switch(b){case"=":return(a==f);case"*=":return(a.contains(f));case"^=":return(a.substr(0,f.length)==f);case"$=":return(a.substr(a.length-f.length)==f);case"!=":return(a!=f);case"~=":return a.contains(f," ");case"|=":return a.contains(f,"-");}return false;}};Selectors.Pseudo=new Hash({checked:function(){return this.checked;},empty:function(){return!(this.innerText||this.textContent||"").length;},not:function(a){return!Element.match(this,a);},contains:function(a){return(this.innerText||this.textContent||"").contains(a);},"first-child":function(){return Selectors.Pseudo.index.call(this,0);},"last-child":function(){var a=this;while((a=a.nextSibling)){if(a.nodeType==1){return false;}}return true;},"only-child":function(){var b=this;while((b=b.previousSibling)){if(b.nodeType==1){return false;}}var a=this;while((a=a.nextSibling)){if(a.nodeType==1){return false;}}return true;},"nth-child":function(h,f){h=(h==undefined)?"n":h;var c=Selectors.Utils.parseNthArgument(h);if(c.special!="n"){return Selectors.Pseudo[c.special].call(this,c.a,f);}var g=0;f.positions=f.positions||{};var d=$uid(this);if(!f.positions[d]){var b=this;while((b=b.previousSibling)){if(b.nodeType!=1){continue;}g++;var a=f.positions[$uid(b)];if(a!=undefined){g=a+g;break;}}f.positions[d]=g;}return(f.positions[d]%c.a==c.b);},index:function(a){var b=this,c=0;while((b=b.previousSibling)){if(b.nodeType==1&&++c>a){return false;}}return(c==a);},even:function(b,a){return Selectors.Pseudo["nth-child"].call(this,"2n+1",a);},odd:function(b,a){return Selectors.Pseudo["nth-child"].call(this,"2n",a);},selected:function(){return this.selected;},enabled:function(){return(this.disabled===false);}});var Swiff=new Class({Implements:[Options],options:{id:null,height:1,width:1,container:null,properties:{},params:{quality:"high",allowScriptAccess:"always",wMode:"transparent",swLiveConnect:true},callBacks:{},vars:{}},toElement:function(){return this.object;},initialize:function(m,n){this.instance="Swiff_"+$time();this.setOptions(n);n=this.options;var b=this.id=n.id||this.instance;var a=document.id(n.container);Swiff.CallBacks[this.instance]={};var f=n.params,h=n.vars,g=n.callBacks;var i=$extend({height:n.height,width:n.width},n.properties);var l=this;for(var d in g){Swiff.CallBacks[this.instance][d]=(function(o){return function(){return o.apply(l.object,arguments);};})(g[d]);h[d]="Swiff.CallBacks."+this.instance+"."+d;}f.flashVars=Hash.toQueryString(h);if(Browser.Engine.trident){i.classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000";f.movie=m;}else{i.type="application/x-shockwave-flash";i.data=m;}var k='<object id="'+b+'"';for(var j in i){k+=" "+j+'="'+i[j]+'"';}k+=">";for(var c in f){if(f[c]){k+='<param name="'+c+'" value="'+f[c]+'" />';}}k+="</object>";this.object=((a)?a.empty():new Element("div")).set("html",k).firstChild;},replaces:function(a){a=document.id(a,true);a.parentNode.replaceChild(this.toElement(),a);return this;},inject:function(a){document.id(a,true).appendChild(this.toElement());return this;},remote:function(){return Swiff.remote.apply(Swiff,[this.toElement()].extend(arguments));}});Swiff.CallBacks={};Swiff.remote=function(obj,fn){var rs=obj.CallFunction('<invoke name="'+fn+'" returntype="javascript">'+__flash__argumentsToXML(arguments,2)+"</invoke>");return eval(rs);};;var MenuMatic=new Class({Implements:Options,options:{id:"nav",subMenusContainerId:"subMenusContainer",effect:"slide & fade",duration:600,physics:Fx.Transitions.Pow.easeOut,hideDelay:1000,stretchMainMenu:false,matchWidthMode:false,orientation:"horizontal",direction:{x:"right",y:"down"},tweakInitial:{x:0,y:0},tweakSubsequent:{x:0,y:0},center:false,opacity:95,mmbFocusedClassName:null,mmbClassName:null,killDivider:null,fixHasLayoutBug:false,onHideAllSubMenusNow_begin:(function(){}),onHideAllSubMenusNow_complete:(function(){}),onInit_begin:(function(){}),onInit_complete:(function(){})},hideAllMenusTimeout:null,allSubMenus:[],subMenuZindex:1,initialize:function(B){this.setOptions(B);this.options.onInit_begin();if(this.options.opacity>99){this.options.opacity=99.9}this.options.opacity=this.options.opacity/100;Element.implement({getId:function(){if(!this.id){var E=this.get("tag")+"-"+$time();while($(E)){E=this.get("tag")+"-"+$time()}this.id=E}return this.id}});this.options.direction.x=this.options.direction.x.toLowerCase();this.options.direction.y=this.options.direction.y.toLowerCase();if(this.options.direction.x==="right"){this.options.direction.xInverse="left"}else{if(this.options.direction.x==="left"){this.options.direction.xInverse="right"}}if(this.options.direction.y==="up"){this.options.direction.yInverse="down"}else{if(this.options.direction.y==="down"){this.options.direction.yInverse="up"}}var A=$(this.options.id).getElements("a");A.each(function(F,E){F.store("parentLinks",F.getParent().getParents("li").getFirst("a"));F.store("parentLinks",F.retrieve("parentLinks").erase(F.retrieve("parentLinks").getFirst()));F.store("childMenu",F.getNext("ul")||F.getNext("ol"));theSubMenuType="subsequent";if($(F.getParent("ul")||F.getParent("ol")).id===this.options.id){theSubMenuType="initial"}F.store("subMenuType",theSubMenuType);if(theSubMenuType==="initial"&&$(F.getNext("ul")||F.getNext("ol"))){F.addClass("mainMenuParentBtn")}else{if($(F.getNext("ul")||F.getNext("ol"))){F.addClass("subMenuParentBtn")}}}.bind(this));var D=new Element("div",{id:this.options.subMenusContainerId}).inject($(document.body),"bottom");$(this.options.id).getElements("ul, ol").each(function(F,E){new Element("div",{"class":"smOW"}).inject(D).grab(F)}.bind(this));D.getElements("a").set("tabindex","-1");A.each(function(G,E){if(!G.retrieve("childMenu")){return}G.store("childMenu",G.retrieve("childMenu").getParent("div"));this.allSubMenus.include(G.retrieve("childMenu"));G.store("parentSubMenus",G.retrieve("parentLinks").retrieve("childMenu"));var F=new MenuMaticSubMenu(this.options,this,G)}.bind(this));var C=$(this.options.id).getElements("a").filter(function(F,E){return!F.retrieve("childMenu")});C.each(function(F,E){F.addEvents({mouseenter:function(G){this.hideAllSubMenusNow();if(this.options.mmbClassName&&this.options.mmbFocusedClassName){$(F).retrieve("btnMorph",new Fx.Morph(F,{duration:(this.options.duration/2),transition:this.options.physics,link:"cancel"})).start(this.options.mmbFocusedClassName)}}.bind(this),focus:function(G){this.hideAllSubMenusNow();if(this.options.mmbClassName&&this.options.mmbFocusedClassName){$(F).retrieve("btnMorph",new Fx.Morph(F,{duration:(this.options.duration/2),transition:this.options.physics,link:"cancel"})).start(this.options.mmbFocusedClassName)}}.bind(this),mouseleave:function(G){if(this.options.mmbClassName&&this.options.mmbFocusedClassName){$(F).retrieve("btnMorph",new Fx.Morph(F,{duration:(this.options.duration*5),transition:this.options.physics,link:"cancel"})).start(this.options.mmbClassName)}}.bind(this),blur:function(G){if(this.options.mmbClassName&&this.options.mmbFocusedClassName){$(F).retrieve("btnMorph",new Fx.Morph(F,{duration:(this.options.duration*5),transition:this.options.physics,link:"cancel"})).start(this.options.mmbClassName)}}.bind(this),keydown:function(H){var G=new Event(H);if(H.key==="up"||H.key==="down"||H.key==="left"||H.key==="right"){H.stop()}if(H.key==="left"&&this.options.orientation==="horizontal"||H.key==="up"&&this.options.orientation==="vertical"){if(F.getParent("li").getPrevious("li")){F.getParent("li").getPrevious("li").getFirst("a").focus()}else{F.getParent("li").getParent().getLast("li").getFirst("a").focus()}}else{if(H.key==="right"&&this.options.orientation==="horizontal"||H.key==="down"&&this.options.orientation==="vertical"){if(F.getParent("li").getNext("li")){F.getParent("li").getNext("li").getFirst("a").focus()}else{F.getParent("li").getParent().getFirst("li").getFirst("a").focus()}}}}.bind(this)})},this);this.stretch();this.killDivider();this.center();this.fixHasLayoutBug();this.options.onInit_complete()},fixHasLayoutBug:function(){if(Browser.Engine.trident&&this.options.fixHasLayoutBug){$(this.options.id).getParents().setStyle("zoom",1);$(this.options.id).setStyle("zoom",1);$(this.options.id).getChildren().setStyle("zoom",1);$(this.options.subMenusContainerId).setStyle("zoom",1);$(this.options.subMenusContainerId).getChildren().setStyle("zoom",1)}},center:function(){if(!this.options.center){return}$(this.options.id).setStyles({left:"50%","margin-left":-($(this.options.id).getSize().x/2)})},stretch:function(){if(this.options.stretchMainMenu&&this.options.orientation==="horizontal"){var C=parseFloat($(this.options.id).getCoordinates().width);var D=0;var B=$(this.options.id).getElements("a");B.setStyles({"padding-left":0,"padding-right":0});B.each(function(F,E){D+=F.getSize().x}.bind(this));if(C<D){return}var A=(C-D)/B.length;B.each(function(F,E){F.setStyle("width",F.getSize().x+A)}.bind(this));B.getLast().setStyle("width",B.getLast().getSize().x-1)}},killDivider:function(){if(this.options.killDivider&&this.options.killDivider.toLowerCase()==="first"){$($(this.options.id).getElements("li")[0]).setStyles({background:"none"})}else{if(this.options.killDivider&&this.options.killDivider.toLowerCase()==="last"){$($(this.options.id).getElements("li").getLast()).setStyles({background:"none"})}}},hideAllSubMenusNow:function(){this.options.onHideAllSubMenusNow_begin();$clear(this.hideAllMenusTimeout);$$(this.allSubMenus).fireEvent("hide");this.options.onHideAllSubMenusNow_complete()}});var MenuMaticSubMenu=new Class({Implements:Options,Extends:MenuMatic,options:{onSubMenuInit_begin:(function(A){}),onSubMenuInit_complete:(function(A){}),onMatchWidth_begin:(function(A){}),onMatchWidth_complete:(function(A){}),onHideSubMenu_begin:(function(A){}),onHideSubMenu_complete:(function(A){}),onHideOtherSubMenus_begin:(function(A){}),onHideOtherSubMenus_complete:(function(A){}),onHideAllSubMenus_begin:(function(A){}),onHideAllSubMenus_complete:(function(A){}),onPositionSubMenu_begin:(function(A){}),onPositionSubMenu_complete:(function(A){}),onShowSubMenu_begin:(function(A){}),onShowSubMenu_complete:(function(A){})},root:null,btn:null,hidden:true,myEffect:null,initialize:function(B,A,C){this.setOptions(B);this.root=A;this.btn=C;this.childMenu=this.btn.retrieve("childMenu");this.subMenuType=this.btn.retrieve("subMenuType");this.childMenu=this.btn.retrieve("childMenu");this.parentSubMenus=$$(this.btn.retrieve("parentSubMenus"));this.parentLinks=$$(this.btn.retrieve("parentLinks"));this.parentSubMenu=$(this.parentSubMenus[0]);if(this.parentSubMenu){this.parentSubMenu=this.parentSubMenu.retrieve("class")}this.childMenu.store("class",this);this.btn.store("class",this);this.childMenu.store("status","closed");this.options.onSubMenuInit_begin(this);this.childMenu.addEvent("hide",function(){this.hideSubMenu()}.bind(this));this.childMenu.addEvent("show",function(){this.showSubMenu()}.bind(this));if(this.options.effect){this.myEffect=new Fx.Morph($(this.childMenu).getFirst(),{duration:this.options.duration,transition:this.options.physics,link:"cancel"})}if(this.options.effect==="slide"||this.options.effect==="slide & fade"){if(this.subMenuType=="initial"&&this.options.orientation==="horizontal"){this.childMenu.getFirst().setStyle("margin-top","0")}else{this.childMenu.getFirst().setStyle("margin-left","0")}}else{if(this.options.effect==="fade"||this.options.effect==="slide & fade"){this.childMenu.getFirst().setStyle("opacity",0)}}if(this.options.effect!="fade"&&this.options.effect!="slide & fade"){this.childMenu.getFirst().setStyle("opacity",this.options.opacity)}var D=$(this.childMenu).getElements("a").filter(function(F,E){return!F.retrieve("childMenu")});D.each(function(F,E){$(F).addClass("subMenuBtn");F.addEvents({mouseenter:function(G){this.childMenu.fireEvent("show");this.cancellHideAllSubMenus();this.hideOtherSubMenus()}.bind(this),focus:function(G){this.childMenu.fireEvent("show");this.cancellHideAllSubMenus();this.hideOtherSubMenus()}.bind(this),mouseleave:function(G){this.cancellHideAllSubMenus();this.hideAllSubMenus()}.bind(this),blur:function(G){this.cancellHideAllSubMenus();this.hideAllSubMenus()}.bind(this),keydown:function(H){var G=new Event(H);if(H.key==="up"||H.key==="down"||H.key==="left"||H.key==="right"||H.key==="tab"){H.stop()}if(H.key==="up"){if(F.getParent("li").getPrevious("li")){F.getParent("li").getPrevious("li").getFirst("a").focus()}else{if(this.options.direction.y==="down"){this.btn.focus()}else{if(this.options.direction.y==="up"){F.getParent("li").getParent().getLast("li").getFirst("a").focus()}}}}else{if(H.key==="down"){if(F.getParent("li").getNext("li")){F.getParent("li").getNext("li").getFirst("a").focus()}else{if(this.options.direction.y==="down"){F.getParent("li").getParent().getFirst("li").getFirst("a").focus()}else{if(this.options.direction.y==="up"){this.btn.focus()}}}}else{if(H.key===this.options.direction.xInverse){this.btn.focus()}}}}.bind(this)})},this);$(this.btn).removeClass("subMenuBtn");if(this.subMenuType=="initial"){this.btn.addClass("mainParentBtn")}else{this.btn.addClass("subParentBtn")}$(this.btn).addEvents({mouseenter:function(E){this.cancellHideAllSubMenus();this.hideOtherSubMenus();this.showSubMenu();if(this.subMenuType==="initial"&&this.options.mmbClassName&&this.options.mmbFocusedClassName){$(this.btn).retrieve("btnMorph",new Fx.Morph($(this.btn),{duration:(this.options.duration/2),transition:this.options.physics,link:"cancel"})).start(this.options.mmbFocusedClassName)}}.bind(this),focus:function(E){this.cancellHideAllSubMenus();this.hideOtherSubMenus();this.showSubMenu();if(this.subMenuType==="initial"&&this.options.mmbClassName&&this.options.mmbFocusedClassName){$(this.btn).retrieve("btnMorph",new Fx.Morph($(this.btn),{duration:(this.options.duration/2),transition:this.options.physics,link:"cancel"})).start(this.options.mmbFocusedClassName)}}.bind(this),mouseleave:function(E){this.cancellHideAllSubMenus();this.hideAllSubMenus()}.bind(this),blur:function(E){this.cancellHideAllSubMenus();this.hideAllSubMenus()}.bind(this),keydown:function(E){E=new Event(E);if(E.key==="up"||E.key==="down"||E.key==="left"||E.key==="right"){E.stop()}if(!this.parentSubMenu){if(this.options.orientation==="horizontal"&&E.key===this.options.direction.y||this.options.orientation==="vertical"&&E.key===this.options.direction.x){if(this.options.direction.y==="down"){this.childMenu.getFirst().getFirst("li").getFirst("a").focus()}else{if(this.options.direction.y==="up"){this.childMenu.getFirst().getLast("li").getFirst("a").focus()}}}else{if(this.options.orientation==="horizontal"&&E.key==="left"||this.options.orientation==="vertical"&&E.key===this.options.direction.yInverse){if(this.btn.getParent().getPrevious()){this.btn.getParent().getPrevious().getFirst().focus()}else{this.btn.getParent().getParent().getLast().getFirst().focus()}}else{if(this.options.orientation==="horizontal"&&E.key==="right"||this.options.orientation==="vertical"&&E.key===this.options.direction.y){if(this.btn.getParent().getNext()){this.btn.getParent().getNext().getFirst().focus()}else{this.btn.getParent().getParent().getFirst().getFirst().focus()}}}}}else{if(E.key==="tab"){E.stop()}if(E.key==="up"){if(this.btn.getParent("li").getPrevious("li")){this.btn.getParent("li").getPrevious("li").getFirst("a").focus()}else{if(this.options.direction.y==="down"){this.parentSubMenu.btn.focus()}else{if(this.options.direction.y==="up"){this.btn.getParent("li").getParent().getLast("li").getFirst("a").focus()}}}}else{if(E.key==="down"){if(this.btn.getParent("li").getNext("li")){this.btn.getParent("li").getNext("li").getFirst("a").focus()}else{if(this.options.direction.y==="down"){this.btn.getParent("li").getParent().getFirst("li").getFirst("a").focus()}else{if(this.options.direction.y==="up"){this.parentSubMenu.btn.focus()}}}}else{if(E.key===this.options.direction.xInverse){this.parentSubMenu.btn.focus()}else{if(E.key===this.options.direction.x){if(this.options.direction.y==="down"){this.childMenu.getFirst().getFirst("li").getFirst("a").focus()}else{if(this.options.direction.y==="up"){}}}}}}}}.bind(this)});this.options.onSubMenuInit_complete(this)},matchWidth:function(){if(this.widthMatched||!this.options.matchWidthMode||this.subMenuType==="subsequent"){return}this.options.onMatchWidth_begin(this);var A=this.btn.getCoordinates().width;$(this.childMenu).getElements("a").each(function(E,D){var C=parseFloat($(this.childMenu).getFirst().getStyle("border-left-width"))+parseFloat($(this.childMenu).getFirst().getStyle("border-right-width"));var B=parseFloat(E.getStyle("padding-left"))+parseFloat(E.getStyle("padding-right"));var F=C+B;if(A>E.getCoordinates().width){E.setStyle("width",A-F);E.setStyle("margin-right",-C)}}.bind(this));this.width=this.childMenu.getFirst().getCoordinates().width;this.widthMatched=true;this.options.onMatchWidth_complete(this)},hideSubMenu:function(){if(this.childMenu.retrieve("status")==="closed"){return}this.options.onHideSubMenu_begin(this);if(this.subMenuType=="initial"){if(this.options.mmbClassName&&this.options.mmbFocusedClassName){$(this.btn).retrieve("btnMorph",new Fx.Morph($(this.btn),{duration:(this.options.duration),transition:this.options.physics,link:"cancel"})).start(this.options.mmbClassName).chain(function(){$(this.btn).removeClass("mainMenuParentBtnFocused");$(this.btn).addClass("mainMenuParentBtn")}.bind(this))}else{$(this.btn).removeClass("mainMenuParentBtnFocused");$(this.btn).addClass("mainMenuParentBtn")}}else{$(this.btn).removeClass("subMenuParentBtnFocused");$(this.btn).addClass("subMenuParentBtn")}this.childMenu.setStyle("z-index",1);if(this.options.effect&&this.options.effect.toLowerCase()==="slide"){if(this.subMenuType=="initial"&&this.options.orientation==="horizontal"&&this.options.direction.y==="down"){this.myEffect.start({"margin-top":-this.height}).chain(function(){this.childMenu.style.display="none"}.bind(this))}else{if(this.subMenuType=="initial"&&this.options.orientation==="horizontal"&&this.options.direction.y==="up"){this.myEffect.start({"margin-top":this.height}).chain(function(){this.childMenu.style.display="none"}.bind(this))}else{if(this.options.direction.x==="right"){this.myEffect.start({"margin-left":-this.width}).chain(function(){this.childMenu.style.display="none"}.bind(this))}else{if(this.options.direction.x==="left"){this.myEffect.start({"margin-left":this.width}).chain(function(){this.childMenu.style.display="none"}.bind(this))}}}}}else{if(this.options.effect=="fade"){this.myEffect.start({opacity:0}).chain(function(){this.childMenu.style.display="none"}.bind(this))}else{if(this.options.effect=="slide & fade"){if(this.subMenuType=="initial"&&this.options.orientation==="horizontal"&&this.options.direction.y==="down"){this.myEffect.start({"margin-top":-this.height,opacity:0}).chain(function(){this.childMenu.style.display="none"}.bind(this))}else{if(this.subMenuType=="initial"&&this.options.orientation==="horizontal"&&this.options.direction.y==="up"){this.myEffect.start({"margin-top":this.height,opacity:0}).chain(function(){this.childMenu.style.display="none"}.bind(this))}else{if(this.options.direction.x==="right"){this.myEffect.start({"margin-left":-this.width,opacity:0}).chain(function(){this.childMenu.style.display="none"}.bind(this))}else{if(this.options.direction.x==="left"){this.myEffect.start({"margin-left":this.width,opacity:0}).chain(function(){this.childMenu.style.display="none"}.bind(this))}}}}}else{this.childMenu.style.display="none"}}}this.childMenu.store("status","closed");this.options.onHideSubMenu_complete(this)},hideOtherSubMenus:function(){this.options.onHideOtherSubMenus_begin(this);if(!this.btn.retrieve("otherSubMenus")){this.btn.store("otherSubMenus",$$(this.root.allSubMenus.filter(function(A){return!this.btn.retrieve("parentSubMenus").contains(A)&&A!=this.childMenu}.bind(this))))}this.parentSubMenus.fireEvent("show");this.btn.retrieve("otherSubMenus").fireEvent("hide");this.options.onHideOtherSubMenus_complete(this)},hideAllSubMenus:function(){this.options.onHideAllSubMenus_begin(this);$clear(this.root.hideAllMenusTimeout);this.root.hideAllMenusTimeout=(function(){$clear(this.hideAllMenusTimeout);$$(this.root.allSubMenus).fireEvent("hide")}).bind(this).delay(this.options.hideDelay);this.options.onHideAllSubMenus_complete(this)},cancellHideAllSubMenus:function(){$clear(this.root.hideAllMenusTimeout)},showSubMenu:function(A){if(this.childMenu.retrieve("status")==="open"){return}this.options.onShowSubMenu_begin(this);if(this.subMenuType=="initial"){$(this.btn).removeClass("mainMenuParentBtn");$(this.btn).addClass("mainMenuParentBtnFocused")}else{$(this.btn).removeClass("subMenuParentBtn");$(this.btn).addClass("subMenuParentBtnFocused")}this.root.subMenuZindex++;this.childMenu.setStyles({display:"block",visibility:"hidden","z-index":this.root.subMenuZindex});if(!this.width||!this.height){this.width=this.childMenu.getFirst().getCoordinates().width;this.height=this.childMenu.getFirst().getCoordinates().height;this.childMenu.setStyle("height",this.height,"border");if(this.options.effect==="slide"||this.options.effect==="slide & fade"){if(this.subMenuType=="initial"&&this.options.orientation==="horizontal"){this.childMenu.getFirst().setStyle("margin-top","0");if(this.options.direction.y==="down"){this.myEffect.set({"margin-top":-this.height})}else{if(this.options.direction.y==="up"){this.myEffect.set({"margin-top":this.height})}}}else{if(this.options.direction.x==="left"){this.myEffect.set({"margin-left":this.width})}else{this.myEffect.set({"margin-left":-this.width})}}}}this.matchWidth();this.positionSubMenu();if(this.options.effect==="slide"){this.childMenu.setStyles({display:"block",visibility:"visible"});if(this.subMenuType==="initial"&&this.options.orientation==="horizontal"){if(A){this.myEffect.set({"margin-top":0}).chain(function(){this.showSubMenuComplete()}.bind(this))}else{this.myEffect.start({"margin-top":0}).chain(function(){this.showSubMenuComplete()}.bind(this))}}else{if(A){this.myEffect.set({"margin-left":0}).chain(function(){this.showSubMenuComplete()}.bind(this))}else{this.myEffect.start({"margin-left":0}).chain(function(){this.showSubMenuComplete()}.bind(this))}}}else{if(this.options.effect==="fade"){if(A){this.myEffect.set({opacity:this.options.opacity}).chain(function(){this.showSubMenuComplete()}.bind(this))}else{this.myEffect.start({opacity:this.options.opacity}).chain(function(){this.showSubMenuComplete()}.bind(this))}}else{if(this.options.effect=="slide & fade"){this.childMenu.setStyles({display:"block",visibility:"visible"});this.childMenu.getFirst().setStyles({left:0});if(this.subMenuType==="initial"&&this.options.orientation==="horizontal"){if(A){this.myEffect.set({"margin-top":0,opacity:this.options.opacity}).chain(function(){this.showSubMenuComplete()}.bind(this))}else{this.myEffect.start({"margin-top":0,opacity:this.options.opacity}).chain(function(){this.showSubMenuComplete()}.bind(this))}}else{if(A){if(this.options.direction.x==="right"){this.myEffect.set({"margin-left":0,opacity:this.options.opacity}).chain(function(){this.showSubMenuComplete()}.bind(this))}else{if(this.options.direction.x==="left"){this.myEffect.set({"margin-left":0,opacity:this.options.opacity}).chain(function(){this.showSubMenuComplete()}.bind(this))}}}else{if(this.options.direction.x==="right"){this.myEffect.set({"margin-left":-this.width,opacity:this.options.opacity});this.myEffect.start({"margin-left":0,opacity:this.options.opacity}).chain(function(){this.showSubMenuComplete()}.bind(this))}else{if(this.options.direction.x==="left"){this.myEffect.start({"margin-left":0,opacity:this.options.opacity}).chain(function(){this.showSubMenuComplete()}.bind(this))}}}}}else{this.childMenu.setStyles({display:"block",visibility:"visible"}).chain(function(){this.showSubMenuComplete(this)}.bind(this))}}}this.childMenu.store("status","open")},showSubMenuComplete:function(){this.options.onShowSubMenu_complete(this)},positionSubMenu:function(){this.options.onPositionSubMenu_begin(this);this.childMenu.setStyle("width",this.width);this.childMenu.getFirst().setStyle("width",this.width);if(this.subMenuType==="subsequent"){if(this.parentSubMenu&&this.options.direction.x!=this.parentSubMenu.options.direction.x){if(this.parentSubMenu.options.direction.x==="left"&&this.options.effect&&this.options.effect.contains("slide")){this.myEffect.set({"margin-left":this.width})}}this.options.direction.x=this.parentSubMenu.options.direction.x;this.options.direction.xInverse=this.parentSubMenu.options.direction.xInverse;this.options.direction.y=this.parentSubMenu.options.direction.y;this.options.direction.yInverse=this.parentSubMenu.options.direction.yInverse}var C;var A;if(this.subMenuType=="initial"){if(this.options.direction.y==="up"){if(this.options.orientation==="vertical"){C=this.btn.getCoordinates().bottom-this.height+this.options.tweakInitial.y}else{C=this.btn.getCoordinates().top-this.height+this.options.tweakInitial.y}this.childMenu.style.top=C+"px"}else{if(this.options.orientation=="horizontal"){this.childMenu.style.top=this.btn.getCoordinates().bottom+this.options.tweakInitial.y+"px"}else{if(this.options.orientation=="vertical"){C=this.btn.getPosition().y+this.options.tweakInitial.y;if((C+this.childMenu.getSize().y)>=$(document.body).getScrollSize().y){A=(C+this.childMenu.getSize().y)-$(document.body).getScrollSize().y;C=C-A-20}this.childMenu.style.top=C+"px"}}}if(this.options.orientation=="horizontal"){this.childMenu.style.left=this.btn.getPosition().x+this.options.tweakInitial.x+"px"}else{if(this.options.direction.x=="left"){this.childMenu.style.left=this.btn.getPosition().x-this.childMenu.getCoordinates().width+this.options.tweakInitial.x+"px"}else{if(this.options.direction.x=="right"){this.childMenu.style.left=this.btn.getCoordinates().right+this.options.tweakInitial.x+"px"}}}}else{if(this.subMenuType=="subsequent"){if(this.options.direction.y==="down"){if((this.btn.getCoordinates().top+this.options.tweakSubsequent.y+this.childMenu.getSize().y)>=$(document.body).getScrollSize().y){A=(this.btn.getCoordinates().top+this.options.tweakSubsequent.y+this.childMenu.getSize().y)-$(document.body).getScrollSize().y;this.childMenu.style.top=(this.btn.getCoordinates().top+this.options.tweakSubsequent.y)-A-20+"px"}else{this.childMenu.style.top=this.btn.getCoordinates().top+this.options.tweakSubsequent.y+"px"}}else{if(this.options.direction.y==="up"){if((this.btn.getCoordinates().bottom-this.height+this.options.tweakSubsequent.y)<1){this.options.direction.y="down";this.options.direction.yInverse="up";this.childMenu.style.top=this.btn.getCoordinates().top+this.options.tweakSubsequent.y+"px"}else{this.childMenu.style.top=this.btn.getCoordinates().bottom-this.height+this.options.tweakSubsequent.y+"px"}}}if(this.options.direction.x=="left"){this.childMenu.style.left=this.btn.getCoordinates().left-this.childMenu.getCoordinates().width+this.options.tweakSubsequent.x+"px";if(this.childMenu.getPosition().x<0){this.options.direction.x="right";this.options.direction.xInverse="left";this.childMenu.style.left=this.btn.getPosition().x+this.btn.getCoordinates().width+this.options.tweakSubsequent.x+"px";if(this.options.effect==="slide"||this.options.effect==="slide & fade"){this.myEffect.set({"margin-left":-this.width,opacity:this.options.opacity})}}}else{if(this.options.direction.x=="right"){this.childMenu.style.left=this.btn.getCoordinates().right+this.options.tweakSubsequent.x+"px";var D=this.childMenu.getCoordinates().right;var B=document.getCoordinates().width+window.getScroll().x;if(D>B){this.options.direction.x="left";this.options.direction.xInverse="right";this.childMenu.style.left=this.btn.getCoordinates().left-this.childMenu.getCoordinates().width+this.options.tweakSubsequent.x+"px";if(this.options.effect==="slide"||this.options.effect==="slide & fade"){this.myEffect.set({"margin-left":this.width,opacity:this.options.opacity})}}}}}}this.options.onPositionSubMenu_complete(this)}});;shutterOnload=function(){shutterReloaded.init('sh');}
if(typeof shutterOnload=='function'){if('undefined'!=typeof jQuery)jQuery(document).ready(function(){shutterOnload();});else if(typeof window.onload!='function')window.onload=shutterOnload;else{oldonld=window.onload;window.onload=function(){if(oldonld){oldonld();};shutterOnload();}};}
shutterReloaded={I:function(a){return document.getElementById(a);},settings:function(){var t=this,s=shutterSettings;t.imageCount=s.imageCount||0;t.msgLoading=s.msgLoading||'L O A D I N G';t.msgClose=s.msgClose||'Click to Close';},init:function(a){var t=this,L,T,ext,i,m,setid,inset,shfile,shMenuPre,k,img;shutterLinks={},shutterSets={};if('object'!=typeof shutterSettings)shutterSettings={};for(i=0;i<document.links.length;i++){L=document.links[i];ext=(L.href.indexOf('?')==-1)?L.href.slice(-4).toLowerCase():L.href.substring(0,L.href.indexOf('?')).slice(-4).toLowerCase();if(ext!='.jpg'&&ext!='.png'&&ext!='.gif'&&ext!='jpeg')continue;if(a=='sh'&&L.className.toLowerCase().indexOf('shutter')==-1)continue;if(a=='lb'&&L.rel.toLowerCase().indexOf('lightbox')==-1)continue;if(L.className.toLowerCase().indexOf('shutterset')!=-1)
setid=L.className.replace(/\s/g,'_');else if(L.rel.toLowerCase().indexOf('lightbox[')!=-1)
setid=L.rel.replace(/\s/g,'_');else setid=0,inset=-1;if(setid){if(!shutterSets[setid])shutterSets[setid]=[];inset=shutterSets[setid].push(i);}
shfile=L.href.slice(L.href.lastIndexOf('/')+1);T=(L.title&&L.title!=shfile)?L.title:'';shutterLinks[i]={link:L.href,num:inset,set:setid,title:T}
L.onclick=new Function('shutterReloaded.make("'+i+'");return false;');}
t.settings();},make:function(ln,fs){var t=this,prev,next,prevlink='',nextlink='',previmg,nextimg,D,S,W,fsarg=-1,imgNum,NavBar;if(!t.Top){if(typeof window.pageYOffset!='undefined')t.Top=window.pageYOffset;else t.Top=(document.documentElement.scrollTop>0)?document.documentElement.scrollTop:document.body.scrollTop;}
if(typeof t.pgHeight=='undefined')
t.pgHeight=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);if(fs)t.FS=(fs>0)?1:0;else t.FS=shutterSettings.FS||0;if(t.resizing)t.resizing=null;window.onresize=new Function('shutterReloaded.resize("'+ln+'");');document.documentElement.style.overflowX='hidden';if(!t.VP){t._viewPort();t.VP=true;}
if(!(S=t.I('shShutter'))){S=document.createElement('div');S.setAttribute('id','shShutter');document.getElementsByTagName('body')[0].appendChild(S);t.hideTags();}
if(!(D=t.I('shDisplay'))){D=document.createElement('div');D.setAttribute('id','shDisplay');D.style.top=t.Top+'px';document.getElementsByTagName('body')[0].appendChild(D);}
S.style.height=t.pgHeight+'px';var dv=t.textBtns?' | ':'';if(shutterLinks[ln].num>1){prev=shutterSets[shutterLinks[ln].set][shutterLinks[ln].num-2];prevlink='<a href="#" id="prevpic" onclick="shutterReloaded.make('+prev+');return false">&lt;&lt;</a>'+dv;previmg=new Image();previmg.src=shutterLinks[prev].link;}else{prevlink='';}
if(shutterLinks[ln].num!=-1&&shutterLinks[ln].num<(shutterSets[shutterLinks[ln].set].length)){next=shutterSets[shutterLinks[ln].set][shutterLinks[ln].num];nextlink='<a href="#" id="nextpic" onclick="shutterReloaded.make('+next+');return false">&gt;&gt;</a>'+dv;nextimg=new Image();nextimg.src=shutterLinks[next].link;}else{nextlink='';}
imgNum=((shutterLinks[ln].num>0)&&t.imageCount)?'<div id="shCount">&nbsp;(&nbsp;'+shutterLinks[ln].num+'&nbsp;/&nbsp;'+shutterSets[shutterLinks[ln].set].length+'&nbsp;)&nbsp;</div>':'';NavBar='<div id="shTitle"><div id="shPrev">'+prevlink+'</div><div id="shNext">'+nextlink+'</div><div id="shName">'+shutterLinks[ln].title+'</div>'+imgNum+'</div>';D.innerHTML='<div id="shWrap"><img src="'+shutterLinks[ln].link+'" id="shTopImg" title="'+t.msgClose+'" onload="shutterReloaded.showImg();" onclick="shutterReloaded.hideShutter();" />'+NavBar+'</div>';document.onkeydown=function(event){shutterReloaded.handleArrowKeys(event);};document.getElementById('shTopImg').src=shutterLinks[ln].link;window.setTimeout(function(){shutterReloaded.loading();},2000);},loading:function(){var t=this,S,WB,W;if((W=t.I('shWrap'))&&W.style.visibility=='visible')return;if(!(S=t.I('shShutter')))return;if(t.I('shWaitBar'))return;WB=document.createElement('div');WB.setAttribute('id','shWaitBar');WB.style.top=t.Top+'px';WB.innerHTML=t.msgLoading;S.appendChild(WB);},hideShutter:function(){var t=this,D,S;if(D=t.I('shDisplay'))D.parentNode.removeChild(D);if(S=t.I('shShutter'))S.parentNode.removeChild(S);t.hideTags(true);window.scrollTo(0,t.Top);window.onresize=t.FS=t.Top=t.VP=null;document.documentElement.style.overflowX='';document.onkeydown=null;},resize:function(ln){var t=this;if(t.resizing)return;if(!t.I('shShutter'))return;var W=t.I('shWrap');if(W)W.style.visibility='hidden';window.setTimeout(function(){shutterReloaded.resizing=null},500);window.setTimeout(new Function('shutterReloaded.VP = null;shutterReloaded.make("'+ln+'");'),100);t.resizing=true;},_viewPort:function(){var t=this;var wiH=window.innerHeight?window.innerHeight:0;var dbH=document.body.clientHeight?document.body.clientHeight:0;var deH=document.documentElement?document.documentElement.clientHeight:0;if(wiH>0){t.wHeight=((wiH-dbH)>1&&(wiH-dbH)<30)?dbH:wiH;t.wHeight=((t.wHeight-deH)>1&&(t.wHeight-deH)<30)?deH:t.wHeight;}else t.wHeight=(deH>0)?deH:dbH;var deW=document.documentElement?document.documentElement.clientWidth:0;var dbW=window.innerWidth?window.innerWidth:document.body.clientWidth;t.wWidth=(deW>1)?deW:dbW;},showImg:function(){var t=this,S=t.I('shShutter'),D=t.I('shDisplay'),TI=t.I('shTopImg'),T=t.I('shTitle'),NB=t.I('shNavBar'),W,WB,wHeight,wWidth,shHeight,maxHeight,itop,mtop,resized=0;if(!S)return;if((W=t.I('shWrap'))&&W.style.visibility=='visible')return;if(WB=t.I('shWaitBar'))WB.parentNode.removeChild(WB);S.style.width=D.style.width='';T.style.width=(TI.width-4)+'px';shHeight=t.wHeight-50;if(t.FS){if(TI.width>(t.wWidth-10))
S.style.width=D.style.width=TI.width+10+'px';document.documentElement.style.overflowX='';}else{window.scrollTo(0,t.Top);if(TI.height>shHeight){TI.width=TI.width*(shHeight/TI.height);TI.height=shHeight;resized=1;}
if(TI.width>(t.wWidth-16)){TI.height=TI.height*((t.wWidth-16)/TI.width);TI.width=t.wWidth-16;resized=1;}
T.style.width=(TI.width-4)+'px';}
maxHeight=t.Top+TI.height+10;if(maxHeight>t.pgHeight)S.style.height=maxHeight+'px';window.scrollTo(0,t.Top);itop=(shHeight-TI.height)*0.45;mtop=(itop>3)?Math.floor(itop):3;D.style.top=t.Top+mtop+'px';W.style.visibility='visible';},hideTags:function(arg){var sel=document.getElementsByTagName('select');var obj=document.getElementsByTagName('object');var emb=document.getElementsByTagName('embed');var ifr=document.getElementsByTagName('iframe');var vis=(arg)?'visible':'hidden';for(i=0;i<sel.length;i++)sel[i].style.visibility=vis;for(i=0;i<obj.length;i++)obj[i].style.visibility=vis;for(i=0;i<emb.length;i++)emb[i].style.visibility=vis;for(i=0;i<ifr.length;i++)ifr[i].style.visibility=vis;},handleArrowKeys:function(e){var code=0;if(!e)var e=window.event
if(e.keyCode)code=e.keyCode;else if(e.which)code=e.which;var nextlink=document.getElementById('prevpic');var prevlink=document.getElementById('nextpic');var closelink=document.getElementById('shTopImg');switch(code){case 39:if(prevlink)prevlink.onclick();break;case 37:if(nextlink)nextlink.onclick();break;case 27:if(closelink)closelink.onclick();break;}}};
/* jQuery v1.7.1 jquery.com | jquery.org/license */
(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function cb(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function ca(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bE.test(a)?d(a,e):ca(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)ca(a+"["+e+"]",b[e],c,d);else d(a,b)}function b_(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function b$(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bT,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=b$(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=b$(a,c,d,e,"*",g));return l}function bZ(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bP),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bC(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bx:by,g=0,h=e.length;if(d>0){if(c!=="border")for(;g<h;g++)c||(d-=parseFloat(f.css(a,"padding"+e[g]))||0),c==="margin"?d+=parseFloat(f.css(a,c+e[g]))||0:d-=parseFloat(f.css(a,"border"+e[g]+"Width"))||0;return d+"px"}d=bz(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0;if(c)for(;g<h;g++)d+=parseFloat(f.css(a,"padding"+e[g]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+e[g]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+e[g]))||0);return d+"px"}function bp(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bo(a){var b=c.createElement("div");bh.appendChild(b),b.innerHTML=a.outerHTML;return b.firstChild}function bn(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bm(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bm)}function bm(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bl(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bk(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bj(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d<e;d++)f.event.add(b,c+(i[c][d].namespace?".":"")+i[c][d].namespace,i[c][d],i[c][d].data)}h.data&&(h.data=f.extend({},h.data))}}function bi(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function U(a){var b=V.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function T(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(O.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c<d;c++)b[a[c]]=!0;return b}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b,c){var d;if(b){if(H)return H.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m=function(b){var d,e,g,h,i;for(d=0,e=b.length;d<e;d++)g=b[d],h=f.type(g),h==="array"?m(g):h==="function"&&(!a.unique||!o.has(g))&&c.push(g)},n=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,l=j||0,j=0,k=c.length;for(;c&&l<k;l++)if(c[l].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}i=!1,c&&(a.once?e===!0?o.disable():c=[]:d&&d.length&&(e=d.shift(),o.fireWith(e[0],e[1])))},o={add:function(){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this},remove:function(){if(c){var b=arguments,d=0,e=b.length;for(;d<e;d++)for(var f=0;f<c.length;f++)if(b[d]===c[f]){i&&f<=k&&(k--,f<=l&&l--),c.splice(f--,1);if(a.unique)break}}return this},has:function(a){if(c){var b=0,d=c.length;for(;b<d;b++)if(a===c[b])return!0}return!1},empty:function(){c=[];return this},disable:function(){c=d=e=b;return this},disabled:function(){return!c},lock:function(){d=b,(!e||e===!0)&&o.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(i?a.once||d.push([b,c]):(!a.once||!e)&&n(b,c));return this},fire:function(){o.fireWith(this,arguments);return this},fired:function(){return!!e}};return o};var i=[].slice;f.extend({Deferred:function(a){var b=f.Callbacks("once memory"),c=f.Callbacks("once memory"),d=f.Callbacks("memory"),e="pending",g={resolve:b,reject:c,notify:d},h={done:b.add,fail:c.add,progress:d.add,state:function(){return e},isResolved:b.fired,isRejected:c.fired,then:function(a,b,c){i.done(a).fail(b).progress(c);return this},always:function(){i.done.apply(i,arguments).fail.apply(i,arguments);return this},pipe:function(a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function(){g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()},promise:function(a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}},i=h.promise({}),j;for(j in g)i[j]=g[j].fire,i[j+"With"]=g[j].fireWith;i.done(function(){e="resolved"},c.disable,d.lock).fail(function(){e="rejected"},b.disable,d.lock),a&&a.call(i,i);return i},when:function(a){function m(a){return function(b){e[a]=arguments.length>1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c<d;c++)b[c]&&b[c].promise&&f.isFunction(b[c].promise)?b[c].promise().then(l(c),j.reject,m(c)):--g;g||j.resolveWith(j,b)}else j!==a&&j.resolveWith(j,d?[a]:[]);return k}}),f.support=function(){var b,d,e,g,h,i,j,k,l,m,n,o,p,q=c.createElement("div"),r=c.documentElement;q.setAttribute("className","t"),q.innerHTML="   <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="<div "+n+"><div></div></div>"+"<table "+n+" cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="<div style='width:4px;'></div>",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e<g;e++)delete d[b[e]];if(!(c?m:f.isEmptyObject)(d))return}}if(!c){delete j[k].data;if(!m(j[k]))return}f.support.deleteExpando||!j.setInterval?delete j[k]:j[k]=null,i&&(f.support.deleteExpando?delete a[h]:a.removeAttribute?a.removeAttribute(h):a[h]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d,e,g,h=null;if(typeof a=="undefined"){if(this.length){h=f.data(this[0]);if(this[0].nodeType===1&&!f._data(this[0],"parsedAttrs")){e=this[0].attributes;for(var i=0,j=e.length;i<j;i++)g=e[i].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),l(this[0],g,h[g]));f._data(this[0],"parsedAttrs",!0)}}return h}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split("."),d[1]=d[1]?"."+d[1]:"";if(c===b){h=this.triggerHandler("getData"+d[1]+"!",[d[0]]),h===b&&this.length&&(h=f.data(this[0],a),h=l(this[0],a,h));return h===b&&d[1]?this.data(d[0]):h}return this.each(function(){var b=f(this),e=[d[0],c];b.triggerHandler("setData"+d[1]+"!",e),f.data(this,a,c),b.triggerHandler("changeData"+d[1]+"!",e)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f.Callbacks("once memory"),!0))h++,l.add(m);m();return d.promise()}});var o=/[\n\t\r]/g,p=/\s+/,q=/\r/g,r=/^(?:button|input)$/i,s=/^(?:button|input|object|select|textarea)$/i,t=/^a(?:rea)?$/i,u=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,v=f.support.getSetAttribute,w,x,y;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(p);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(o," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(p);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(o," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c<d;c++){e=i[c];if(e.selected&&(f.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!f.nodeName(e.parentNode,"optgroup"))){b=f(e).val();if(j)return b;h.push(b)}}if(j&&!h.length&&i.length)return f(i[g]).val();return h},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h<g;h++)e=d[h],e&&(c=f.propFix[e]||e,f.attr(a,e,""),a.removeAttribute(v?e:c),u.test(e)&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(r.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(w&&f.nodeName(a,"button"))return w.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(w&&f.nodeName(a,"button"))return w.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,g,h,i=a.nodeType;if(!!a&&i!==3&&i!==8&&i!==2){h=i!==1||!f.isXMLDoc(a),h&&(c=f.propFix[c]||c,g=f.propHooks[c]);return d!==b?g&&"set"in g&&(e=g.set(a,d,c))!==b?e:a[c]=d:g&&"get"in g&&(e=g.get(a,c))!==null?e:a[c]}},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):s.test(a.nodeName)||t.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabindex=f.propHooks.tabIndex,x={get:function(a,c){var d,e=f.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},v||(y={name:!0,id:!0},w=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&(y[c]?d.nodeValue!=="":d.specified)?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.attrHooks.tabindex.set=w.set,f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})}),f.attrHooks.contenteditable={get:w.get,set:function(a,b,c){b===""&&(b="false"),w.set(a,b,c)}}),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.enctype||(f.propFix.enctype="encoding"),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k<c.length;k++){l=A.exec(c[k])||[],m=l[1],n=(l[2]||"").split(".").sort(),s=f.event.special[m]||{},m=(g?s.delegateType:s.bindType)||m,s=f.event.special[m]||{},o=f.extend({type:m,origType:l[1],data:e,handler:d,guid:d.guid,selector:g,quick:G(g),namespace:n.join(".")},p),r=j[m];if(!r){r=j[m]=[],r.delegateCount=0;if(!s.setup||s.setup.call(a,e,n,i)===!1)a.addEventListener?a.addEventListener(m,i,!1):a.attachEvent&&a.attachEvent("on"+m,i)}s.add&&(s.add.call(a,o),o.handler.guid||(o.handler.guid=d.guid)),g?r.splice(r.delegateCount++,0,o):r.push(o),f.event.global[m]=!0}a=null}},global:{},remove:function(a,b,c,d,e){var g=f.hasData(a)&&f._data(a),h,i,j,k,l,m,n,o,p,q,r,s;if(!!g&&!!(o=g.events)){b=f.trim(I(b||"")).split(" ");for(h=0;h<b.length;h++){i=A.exec(b[h])||[],j=k=i[1],l=i[2];if(!j){for(j in o)f.event.remove(a,j+b[h],c,d,!0);continue}p=f.event.special[j]||{},j=(d?p.delegateType:p.bindType)||j,r=o[j]||[],m=r.length,l=l?new RegExp("(^|\\.)"+l.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(n=0;n<r.length;n++)s=r[n],(e||k===s.origType)&&(!c||c.guid===s.guid)&&(!l||l.test(s.namespace))&&(!d||d===s.selector||d==="**"&&s.selector)&&(r.splice(n--,1),s.selector&&r.delegateCount--,p.remove&&p.remove.call(a,s));r.length===0&&m!==r.length&&((!p.teardown||p.teardown.call(a,l)===!1)&&f.removeEvent(a,j,g.handle),delete o[j])}f.isEmptyObject(o)&&(q=g.handle,q&&(q.elem=null),f.removeData(a,["events","handle"],!0))}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){if(!e||e.nodeType!==3&&e.nodeType!==8){var h=c.type||c,i=[],j,k,l,m,n,o,p,q,r,s;if(E.test(h+f.event.triggered))return;h.indexOf("!")>=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l<r.length&&!c.isPropagationStopped();l++)m=r[l][0],c.type=r[l][1],q=(f._data(m,"events")||{})[c.type]&&f._data(m,"handle"),q&&q.apply(m,d),q=o&&m[o],q&&f.acceptData(m)&&q.apply(m,d)===!1&&c.preventDefault();c.type=h,!g&&!c.isDefaultPrevented()&&(!p._default||p._default.apply(e.ownerDocument,d)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)&&o&&e[h]&&(h!=="focus"&&h!=="blur"||c.target.offsetWidth!==0)&&!f.isWindow(e)&&(n=e[o],n&&(e[o]=null),f.event.triggered=h,e[h](),f.event.triggered=b,n&&(e[o]=n));return c.result}},dispatch:function(c){c=f.event.fix(c||a.event);var d=(f._data(this,"events")||{})[c.type]||[],e=d.delegateCount,g=[].slice.call(arguments,0),h=!c.exclusive&&!c.namespace,i=[],j,k,l,m,n,o,p,q,r,s,t;g[0]=c,c.delegateTarget=this;if(e&&!c.target.disabled&&(!c.button||c.type!=="click")){m=f(this),m.context=this.ownerDocument||this;for(l=c.target;l!=this;l=l.parentNode||this){o={},q=[],m[0]=l;for(j=0;j<e;j++)r=d[j],s=r.selector,o[s]===b&&(o[s]=r.quick?H(l,r.quick):m.is(s)),o[s]&&q.push(r);q.length&&i.push({elem:l,matches:q})}}d.length>e&&i.push({elem:this,matches:d.slice(e)});for(j=0;j<i.length&&!c.isPropagationStopped();j++){p=i[j],c.currentTarget=p.elem;for(k=0;k<p.matches.length&&!c.isImmediatePropagationStopped();k++){r=p.matches[k];if(h||!c.namespace&&!r.namespace||c.namespace_re&&c.namespace_re.test(r.namespace))c.data=r.data,c.handleObj=r,n=((f.event.special[r.origType]||{}).handle||r.handler).apply(p.elem,g),n!==b&&(c.result=n,n===!1&&(c.preventDefault(),c.stopPropagation()))}}return c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode);return a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,d){var e,f,g,h=d.button,i=d.fromElement;a.pageX==null&&d.clientX!=null&&(e=a.target.ownerDocument||c,f=e.documentElement,g=e.body,a.pageX=d.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=d.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?d.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0);return a}},fix:function(a){if(a[f.expando])return a;var d,e,g=a,h=f.event.fixHooks[a.type]||{},i=h.props?this.props.concat(h.props):this.props;a=f.Event(g);for(d=i.length;d;)e=i[--d],a[e]=g[e];a.target||(a.target=g.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey===b&&(a.metaKey=a.ctrlKey);return h.filter?h.filter(a,g):a},special:{ready:{setup:f.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=f.extend(new f.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?f.event.trigger(e,null,b):f.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},f.event.handle=f.event.dispatch,f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!(this instanceof f.Event))return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?K:J):this.type=a,b&&f.extend(this,b),this.timeStamp=a&&a.timeStamp||f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=K;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=K;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=K,this.stopPropagation()},isDefaultPrevented:J,isPropagationStopped:J,isImmediatePropagationStopped:J},f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c=this,d=a.relatedTarget,e=a.handleObj,g=e.selector,h;if(!d||d!==c&&!f.contains(c,d))a.type=e.origType,h=e.handler.apply(this,arguments),a.type=b;return h}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(){if(f.nodeName(this,"form"))return!1;f.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=f.nodeName(c,"input")||f.nodeName(c,"button")?c.form:b;d&&!d._submit_attached&&(f.event.add(d,"submit._submit",function(a){this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0)}),d._submit_attached=!0)})},teardown:function(){if(f.nodeName(this,"form"))return!1;f.event.remove(this,"._submit")}}),f.support.changeBubbles||(f.event.special.change={setup:function(){if(z.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")f.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),f.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1,f.event.simulate("change",this,a,!0))});return!1}f.event.add(this,"beforeactivate._change",function(a){var b=a.target;z.test(b.nodeName)&&!b._change_attached&&(f.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&f.event.simulate("change",this.parentNode,a,!0)}),b._change_attached=!0)})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){f.event.remove(this,"._change");return z.test(this.nodeName)}}),f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){var d=0,e=function(a){f.event.simulate(b,a.target,f.event.fix(a),!0)};f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.fn.extend({on:function(a,c,d,e,g){var h,i;if(typeof a=="object"){typeof c!="string"&&(d=c,c=b);for(i in a)this.on(i,c,d,a[i],g);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=J;else if(!e)return this;g===1&&(h=e,e=function(a){f().off(a);return h.apply(this,arguments)},e.guid=h.guid||(h.guid=f.guid++));return this.each(function(){f.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on.call(this,a,b,c,d,1)},off:function(a,c,d){if(a&&a.preventDefault&&a.handleObj){var e=a.handleObj;f(a.delegateTarget).off(e.namespace?e.type+"."+e.namespace:e.type,e.selector,e.handler);return this}if(typeof a=="object"){for(var g in a)this.off(g,c,a[g]);return this}if(c===!1||typeof c=="function")d=c,c=b;d===!1&&(d=J);return this.each(function(){f.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){f(this.context).on(a,this.selector,b,c);return this},die:function(a,b){f(this.context).off(a,this.selector||"**",b);return this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a,c)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f._data(this,"lastToggle"+a.guid)||0)%d;f._data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}if(j.nodeType===1){g||(j[d]=c,j.sizset=h);if(typeof b!="string"){if(j===b){k=!0;break}}else if(m.filter(b,[j]).length>0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}j.nodeType===1&&!g&&(j[d]=c,j.sizset=h);if(j.nodeName.toLowerCase()===b){k=j;break}j=j[a]}e[h]=k}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},m.matches=function(a,b){return m(a,null,null,b)},m.matchesSelector=function(a,b){return m(b,null,null,[a]).length>0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e<f;e++){h=o.order[e];if(g=o.leftMatch[h].exec(a)){i=g[1],g.splice(1,1);if(i.substr(i.length-1)!=="\\"){g[1]=(g[1]||"").replace(j,""),d=o.find[h](g,b,c);if(d!=null){a=a.replace(o.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},m.filter=function(a,c,d,e){var f,g,h,i,j,k,l,n,p,q=a,r=[],s=c,t=c&&c[0]&&m.isXML(c[0]);while(a&&c.length){for(h in o.filter)if((f=o.leftMatch[h].exec(a))!=null&&f[2]){k=o.filter[h],l=f[1],g=!1,f.splice(1,1);if(l.substr(l.length-1)==="\\")continue;s===r&&(r=[]);if(o.preFilter[h]){f=o.preFilter[h](f,s,d,r,e,t);if(!f)g=i=!0;else if(f===!0)continue}if(f)for(n=0;(j=s[n])!=null;n++)j&&(i=k(j,f,n,s),p=e^i,d&&i!=null?p?g=!0:s[n]=!1:p&&(r.push(j),g=!0));if(i!==b){d||(s=r),a=a.replace(o.match[h],"");if(!g)return[];break}}if(a===q)if(g==null)m.error(a);else break;q=a}return s},m.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)};var n=m.getText=function(a){var b,c,d=a.nodeType,e="";if(d){if(d===1||d===9){if(typeof a.textContent=="string")return a.textContent;if(typeof a.innerText=="string")return a.innerText.replace(k,"");for(a=a.firstChild;a;a=a.nextSibling)e+=n(a)}else if(d===3||d===4)return a.nodeValue}else for(b=0;c=a[b];b++)c.nodeType!==8&&(e+=n(c));return e},o=m.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!l.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&m.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(j,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}m.error(e)},CHILD:function(a,b){var c,e,f,g,h,i,j,k=b[1],l=a;switch(k){case"only":case"first":while(l=l.previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSibling)if(l.nodeType===1)return!1;return!0;case"nth":c=b[2],e=b[3];if(c===1&&e===0)return!0;f=b[0],g=a.parentNode;if(g&&(g[d]!==f||!a.nodeIndex)){i=0;for(l=g.firstChild;l;l=l.nextSibling)l.nodeType===1&&(l.nodeIndex=++i);g[d]=f}j=a.nodeIndex-e;return c===0?j===0:j%c===0&&j/c>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var u,v;c.documentElement.compareDocumentPosition?u=function(a,b){if(a===b){h=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(u=function(a,b){if(a===b){h=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,i=b.parentNode,j=g;if(g===i)return v(a,b);if(!g)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return v(e[k],f[k]);return k===c?v(a,f[k],-1):v(e[k],b,1)},v=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h<i;h++)m(a,g[h],e,c);return m.filter(f,e)};m.attr=f.attr,m.selectors.attrMap={},f.find=m,f.expr=m.selectors,f.expr[":"]=f.expr.filters,f.unique=m.uniqueSort,f.text=m.getText,f.isXMLDoc=m.isXML,f.contains=m.contains}();var L=/Until$/,M=/^(?:parents|prevUntil|prevAll)/,N=/,/,O=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,Q=f.expr.match.POS,R={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(T(this,a,!1),"not",a)},filter:function(a){return this.pushStack(T(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?Q.test(a)?f(a,this.context).index(this[0])>=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d<a.length;d++)f(g).is(a[d])&&c.push({selector:a[d],elem:g,level:h});g=g.parentNode,h++}return c}var i=Q.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(i?i.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|style)/i,bb=/<(?:script|object|embed|option|style)/i,bc=new RegExp("<(?:"+V+")","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function()
{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bi(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bp)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i,j=a[0];b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof j=="string"&&j.length<512&&i===c&&j.charAt(0)==="<"&&!bb.test(j)&&(f.support.checkClone||!bd.test(j))&&(f.support.html5Clone||!bc.test(j))&&(g=!0,h=f.fragments[j],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[j]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1></$2>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof(r=k.length)=="number")for(i=0;i<r;i++)bn(k[i]);else bn(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||be.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.event.special,g=f.support.deleteExpando;for(var h=0,i;(i=a[h])!=null;h++){if(i.nodeName&&f.noData[i.nodeName.toLowerCase()])continue;c=i[f.expando];if(c){b=d[c];if(b&&b.events){for(var j in b.events)e[j]?f.event.remove(i,j):f.removeEvent(i,j,b.handle);b.handle&&(b.handle.elem=null)}g?delete i[f.expando]:i.removeAttribute&&i.removeAttribute(f.expando),delete d[c]}}}});var bq=/alpha\([^)]*\)/i,br=/opacity=([^)]*)/,bs=/([A-Z]|^ms)/g,bt=/^-?\d+(?:px)?$/i,bu=/^-?\d/,bv=/^([\-+])=([\-+.\de]+)/,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Left","Right"],by=["Top","Bottom"],bz,bA,bB;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bz(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bv.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bz)return bz(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return bC(a,b,d);f.swap(a,bw,function(){e=bC(a,b,d)});return e}},set:function(a,b){if(!bt.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cv(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cu("hide",3),a,b,c);var d,e,g=0,h=this.length;for(;g<h;g++)d=this[g],d.style&&(e=f.css(d,"display"),e!=="none"&&!f._data(d,"olddisplay")&&f._data(d,"olddisplay",e));for(g=0;g<h;g++)this[g].style&&(this[g].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cu("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){function g(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(!f.support.inlineBlockNeedsLayout||cv(this.nodeName)==="inline"?this.style.display="inline-block":this.style.zoom=1))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)j=new f.fx(this,b,i),h=a[i],cn.test(h)?(o=f._data(this,"toggle"+i)||(h==="toggle"?d?"show":"hide":0),o?(f._data(this,"toggle"+i,o==="show"?"hide":"show"),j[o]()):j[h]()):(k=co.exec(h),l=j.cur(),k?(m=parseFloat(k[2]),n=k[3]||(f.cssNumber[i]?"":"px"),n!=="px"&&(f.style(this,i,(m||1)+n),l=(m||1)/j.cur()*l,f.style(this,i,l+n)),k[1]&&(m=(k[1]==="-="?-1:1)*m+l),j.custom(l,m,n)):j.custom(l,h,""));return!0}var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return e.queue===!1?this.each(g):this.queue(e.queue,g)},stop:function(a,c,d){typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]);return this.each(function(){function h(a,b,c){var e=b[c];f.removeData(a,c,!0),e.stop(d)}var b,c=!1,e=f.timers,g=f._data(this);d||f._unmark(!0,this);if(a==null)for(b in g)g[b]&&g[b].stop&&b.indexOf(".run")===b.length-4&&h(this,g,b);else g[b=a+".run"]&&g[b].stop&&h(this,g,b);for(b=e.length;b--;)e[b].elem===this&&(a==null||e[b].queue===a)&&(d?e[b](!0):e[b].saveState(),c=!0,e.splice(b,1));(!d||!c)&&f.dequeue(this,a)})}}),f.each({slideDown:cu("show",1),slideUp:cu("hide",1),slideToggle:cu("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue?f.dequeue(this,d.queue):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,c,d){function h(a){return e.step(a)}var e=this,g=f.fx;this.startTime=cr||cs(),this.end=c,this.now=this.start=a,this.pos=this.state=0,this.unit=d||this.unit||(f.cssNumber[this.prop]?"":"px"),h.queue=this.options.queue,h.elem=this.elem,h.saveState=function(){e.options.hide&&f._data(e.elem,"fxshow"+e.prop)===b&&f._data(e.elem,"fxshow"+e.prop,e.start)},h()&&f.timers.push(h)&&!cp&&(cp=setInterval(g.tick,g.interval))},show:function(){var a=f._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=a||f.style(this.elem,this.prop),this.options.show=!0,a!==b?this.custom(this.cur(),a):this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f._data(this.elem,"fxshow"+this.prop)||f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b,c,d,e=cr||cs(),g=!0,h=this.elem,i=this.options;if(a||e>=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cp),cp=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=a.now+a.unit:a.elem[a.prop]=a.now}}}),f.each(["width","height"],function(a,b){f.fx.step[b]=function(a){f.style(a.elem,b,Math.max(0,a.now)+a.unit)}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cy(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.support.fixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.support.doesNotAddBorder&&(!f.support.doesAddBorderForTableAndCells||!cw.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.support.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.support.fixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window);jQuery.noConflict();;(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,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:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;jQuery.fn.nggSlideshow=function(args){var defaults={id:1,width:320,height:240,fx:'fade',domain:'',timeout:5000};var s=jQuery.extend({},defaults,args);var obj=this.selector;var stack=[];var url=s.domain+'index.php?callback=json&api_key=true&format=json&method=gallery&id='+s.id;var stackLength=0;jQuery.getJSON(url,function(r){if(r.stat=="ok"){for(img in r.images){var photo=r.images[img];stack.push(decodeURI(photo['imageURL']));}
stackLength=stack.length;loadImage(1);}});function loadImage(num){if(stackLength>0&&num<=3){var img=new Image();img.src=stack.shift();stackLength--;jQuery(img).bind('load',function(){appendImage(img,num);});}}
function appendImage(img,num){jQuery(img).hide();jQuery(obj).append(imageResize(img,s.width,s.height));if(num==3||stackLength==0){startSlideshow();}else{loadImage(++num);}}
function startSlideshow(){jQuery(obj+'-loader').empty().remove();jQuery(obj+' img:first').fadeIn(1000,function(){jQuery(obj).cycle({fx:s.fx,containerResize:1,fit:1,timeout:s.timeout,next:obj,before:jCycle_onBefore});});}
function imageResize(img,maxWidth,maxHeight){if(!img.complete)
jQuery(img).bind('load',function(){imageResize(img,maxWidth,maxHeight)});if(img.height==0||img.width==0)
return img;var width,height;if(img.width*maxHeight>img.height*maxWidth){if(img.width>maxWidth){width=maxWidth;height=Math.round(img.height/img.width*maxWidth);}}else{if(img.height>maxHeight){height=maxHeight;width=Math.round(img.width/img.height*maxHeight);}}
jQuery(img).css({'height':height,'width':width});return img;};function jCycle_onBefore(curr,next,opts){if(opts.addSlide)
if(stackLength>0){var img=new Image();img.src=stack.shift();stackLength--;jQuery(img).bind('load',function(){opts.addSlide(imageResize(this,s.width,s.height));});}};};
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */
var Cufon=(function(){var api=function(){return api.replace.apply(null,arguments);};var DOM=api.DOM={ready:(function(){var complete=false,readyStatus={loaded:1,complete:1};var queue=[],perform=function(){if(complete)return;complete=true;for(var fn;fn=queue.shift();fn());};if(document.addEventListener){document.addEventListener('DOMContentLoaded',perform,false);window.addEventListener('pageshow',perform,false);}
if(!window.opera&&document.readyState)(function(){readyStatus[document.readyState]?perform():setTimeout(arguments.callee,10);})();if(document.readyState&&document.createStyleSheet)(function(){try{document.body.doScroll('left');perform();}
catch(e){setTimeout(arguments.callee,1);}})();addEvent(window,'load',perform);return function(listener){if(!arguments.length)perform();else complete?listener():queue.push(listener);};})(),root:function(){return document.documentElement||document.body;}};var CSS=api.CSS={Size:function(value,base){this.value=parseFloat(value);this.unit=String(value).match(/[a-z%]*$/)[0]||'px';this.convert=function(value){return value/base*this.value;};this.convertFrom=function(value){return value/this.value*base;};this.toString=function(){return this.value+this.unit;};},addClass:function(el,className){var current=el.className;el.className=current+(current&&' ')+className;return el;},color:cached(function(value){var parsed={};parsed.color=value.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function($0,$1,$2){parsed.opacity=parseFloat($2);return'rgb('+$1+')';});return parsed;}),fontStretch:cached(function(value){if(typeof value=='number')return value;if(/%$/.test(value))return parseFloat(value)/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}[value]||1;}),getStyle:function(el){var view=document.defaultView;if(view&&view.getComputedStyle)return new Style(view.getComputedStyle(el,null));if(el.currentStyle)return new Style(el.currentStyle);return new Style(el.style);},gradient:cached(function(value){var gradient={id:value,type:value.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},colors=value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var i=0,l=colors.length,stop;i<l;++i){stop=colors[i].split('=',2).reverse();gradient.stops.push([stop[1]||i/(l-1),stop[0]]);}
return gradient;}),quotedList:cached(function(value){var list=[],re=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,match;while(match=re.exec(value))list.push(match[3]||match[1]);return list;}),recognizesMedia:cached(function(media){var el=document.createElement('style'),sheet,container,supported;el.type='text/css';el.media=media;try{el.appendChild(document.createTextNode('/**/'));}catch(e){}
container=elementsByTagName('head')[0];container.insertBefore(el,container.firstChild);sheet=(el.sheet||el.styleSheet);supported=sheet&&!sheet.disabled;container.removeChild(el);return supported;}),removeClass:function(el,className){var re=RegExp('(?:^|\\s+)'+className+'(?=\\s|$)','g');el.className=el.className.replace(re,'');return el;},supports:function(property,value){var checker=document.createElement('span').style;if(checker[property]===undefined)return false;checker[property]=value;return checker[property]===value;},textAlign:function(word,style,position,wordCount){if(style.get('textAlign')=='right'){if(position>0)word=' '+word;}
else if(position<wordCount-1)word+=' ';return word;},textShadow:cached(function(value){if(value=='none')return null;var shadows=[],currentShadow={},result,offCount=0;var re=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(result=re.exec(value)){if(result[0]==','){shadows.push(currentShadow);currentShadow={};offCount=0;}
else if(result[1]){currentShadow.color=result[1];}
else{currentShadow[['offX','offY','blur'][offCount++]]=result[2];}}
shadows.push(currentShadow);return shadows;}),textTransform:(function(){var map={uppercase:function(s){return s.toUpperCase();},lowercase:function(s){return s.toLowerCase();},capitalize:function(s){return s.replace(/\b./g,function($0){return $0.toUpperCase();});}};return function(text,style){var transform=map[style.get('textTransform')];return transform?transform(text):text;};})(),whiteSpace:(function(){var ignore={inline:1,'inline-block':1,'run-in':1};var wsStart=/^\s+/,wsEnd=/\s+$/;return function(text,style,node,previousElement){if(previousElement){if(previousElement.nodeName.toLowerCase()=='br'){text=text.replace(wsStart,'');}}
if(ignore[style.get('display')])return text;if(!node.previousSibling)text=text.replace(wsStart,'');if(!node.nextSibling)text=text.replace(wsEnd,'');return text;};})()};CSS.ready=(function(){var complete=!CSS.recognizesMedia('all'),hasLayout=false;var queue=[],perform=function(){complete=true;for(var fn;fn=queue.shift();fn());};var links=elementsByTagName('link'),styles=elementsByTagName('style');function isContainerReady(el){return el.disabled||isSheetReady(el.sheet,el.media||'screen');}
function isSheetReady(sheet,media){if(!CSS.recognizesMedia(media||'all'))return true;if(!sheet||sheet.disabled)return false;try{var rules=sheet.cssRules,rule;if(rules){search:for(var i=0,l=rules.length;rule=rules[i],i<l;++i){switch(rule.type){case 2:break;case 3:if(!isSheetReady(rule.styleSheet,rule.media.mediaText))return false;break;default:break search;}}}}
catch(e){}
return true;}
function allStylesLoaded(){if(document.createStyleSheet)return true;var el,i;for(i=0;el=links[i];++i){if(el.rel.toLowerCase()=='stylesheet'&&!isContainerReady(el))return false;}
for(i=0;el=styles[i];++i){if(!isContainerReady(el))return false;}
return true;}
DOM.ready(function(){if(!hasLayout)hasLayout=CSS.getStyle(document.body).isUsable();if(complete||(hasLayout&&allStylesLoaded()))perform();else setTimeout(arguments.callee,10);});return function(listener){if(complete)listener();else queue.push(listener);};})();function Font(data){var face=this.face=data.face,wordSeparators={'\u0020':1,'\u00a0':1,'\u3000':1};this.glyphs=data.glyphs;this.w=data.w;this.baseSize=parseInt(face['units-per-em'],10);this.family=face['font-family'].toLowerCase();this.weight=face['font-weight'];this.style=face['font-style']||'normal';this.viewBox=(function(){var parts=face.bbox.split(/\s+/);var box={minX:parseInt(parts[0],10),minY:parseInt(parts[1],10),maxX:parseInt(parts[2],10),maxY:parseInt(parts[3],10)};box.width=box.maxX-box.minX;box.height=box.maxY-box.minY;box.toString=function(){return[this.minX,this.minY,this.width,this.height].join(' ');};return box;})();this.ascent=-parseInt(face.ascent,10);this.descent=-parseInt(face.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(chars,letterSpacing,wordSpacing){var glyphs=this.glyphs,glyph,kerning,k,jumps=[],width=0,i=-1,j=-1,chr;while(chr=chars[++i]){glyph=glyphs[chr]||this.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j]-=k;}
width+=jumps[++j]=~~(glyph.w||this.w)+letterSpacing+(wordSeparators[chr]?wordSpacing:0);kerning=glyph.k;}
jumps.total=width;return jumps;};}
function FontFamily(){var styles={},mapping={oblique:'italic',italic:'oblique'};this.add=function(font){(styles[font.style]||(styles[font.style]={}))[font.weight]=font;};this.get=function(style,weight){var weights=styles[style]||styles[mapping[style]]||styles.normal||styles.italic||styles.oblique;if(!weights)return null;weight={normal:400,bold:700}[weight]||parseInt(weight,10);if(weights[weight])return weights[weight];var up={1:1,99:0}[weight%100],alts=[],min,max;if(up===undefined)up=weight>400;if(weight==500)weight=400;for(var alt in weights){if(!hasOwnProperty(weights,alt))continue;alt=parseInt(alt,10);if(!min||alt<min)min=alt;if(!max||alt>max)max=alt;alts.push(alt);}
if(weight<min)weight=min;if(weight>max)weight=max;alts.sort(function(a,b){return(up?(a>=weight&&b>=weight)?a<b:a>b:(a<=weight&&b<=weight)?a>b:a<b)?-1:1;});return weights[alts[0]];};}
function HoverHandler(){function contains(node,anotherNode){if(node.contains)return node.contains(anotherNode);return node.compareDocumentPosition(anotherNode)&16;}
function onOverOut(e){var related=e.relatedTarget;if(!related||contains(this,related))return;trigger(this,e.type=='mouseover');}
function onEnterLeave(e){trigger(this,e.type=='mouseenter');}
function trigger(el,hoverState){setTimeout(function(){var options=sharedStorage.get(el).options;api.replace(el,hoverState?merge(options,options.hover):options,true);},10);}
this.attach=function(el){if(el.onmouseenter===undefined){addEvent(el,'mouseover',onOverOut);addEvent(el,'mouseout',onOverOut);}
else{addEvent(el,'mouseenter',onEnterLeave);addEvent(el,'mouseleave',onEnterLeave);}};}
function ReplaceHistory(){var list=[],map={};function filter(keys){var values=[],key;for(var i=0;key=keys[i];++i)values[i]=list[map[key]];return values;}
this.add=function(key,args){map[key]=list.push(args)-1;};this.repeat=function(){var snapshot=arguments.length?filter(arguments):list,args;for(var i=0;args=snapshot[i++];)api.replace(args[0],args[1],true);};}
function Storage(){var map={},at=0;function identify(el){return el.cufid||(el.cufid=++at);}
this.get=function(el){var id=identify(el);return map[id]||(map[id]={});};}
function Style(style){var custom={},sizes={};this.extend=function(styles){for(var property in styles){if(hasOwnProperty(styles,property))custom[property]=styles[property];}
return this;};this.get=function(property){return custom[property]!=undefined?custom[property]:style[property];};this.getSize=function(property,base){return sizes[property]||(sizes[property]=new CSS.Size(this.get(property),base));};this.isUsable=function(){return!!style;};}
function addEvent(el,type,listener){if(el.addEventListener){el.addEventListener(type,listener,false);}
else if(el.attachEvent){el.attachEvent('on'+type,function(){return listener.call(el,window.event);});}}
function attach(el,options){var storage=sharedStorage.get(el);if(storage.options)return el;if(options.hover&&options.hoverables[el.nodeName.toLowerCase()]){hoverHandler.attach(el);}
storage.options=options;return el;}
function cached(fun){var cache={};return function(key){if(!hasOwnProperty(cache,key))cache[key]=fun.apply(null,arguments);return cache[key];};}
function getFont(el,style){var families=CSS.quotedList(style.get('fontFamily').toLowerCase()),family;for(var i=0;family=families[i];++i){if(fonts[family])return fonts[family].get(style.get('fontStyle'),style.get('fontWeight'));}
return null;}
function elementsByTagName(query){return document.getElementsByTagName(query);}
function hasOwnProperty(obj,property){return obj.hasOwnProperty(property);}
function merge(){var merged={},arg,key;for(var i=0,l=arguments.length;arg=arguments[i],i<l;++i){for(key in arg){if(hasOwnProperty(arg,key))merged[key]=arg[key];}}
return merged;}
function process(font,text,style,options,node,el){var fragment=document.createDocumentFragment(),processed;if(text==='')return fragment;var separate=options.separate;var parts=text.split(separators[separate]),needsAligning=(separate=='words');if(needsAligning&&HAS_BROKEN_REGEXP){if(/^\s/.test(text))parts.unshift('');if(/\s$/.test(text))parts.push('');}
for(var i=0,l=parts.length;i<l;++i){processed=engines[options.engine](font,needsAligning?CSS.textAlign(parts[i],style,i,l):parts[i],style,options,node,el,i<l-1);if(processed)fragment.appendChild(processed);}
return fragment;}
function replaceElement(el,options){var name=el.nodeName.toLowerCase();if(options.ignore[name])return;var replace=!options.textless[name];var style=CSS.getStyle(attach(el,options)).extend(options);var font=getFont(el,style),node,type,next,anchor,text,lastElement;if(!font)return;for(node=el.firstChild;node;node=next){type=node.nodeType;next=node.nextSibling;if(replace&&type==3){if(anchor){anchor.appendData(node.data);el.removeChild(node);}
else anchor=node;if(next)continue;}
if(anchor){el.replaceChild(process(font,CSS.whiteSpace(anchor.data,style,anchor,lastElement),style,options,node,el),anchor);anchor=null;}
if(type==1){if(node.firstChild){if(node.nodeName.toLowerCase()=='cufon'){engines[options.engine](font,null,style,options,node,el);}
else arguments.callee(node,options);}
lastElement=node;}}}
var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=new ReplaceHistory();var initialized=false;var engines={},fonts={},defaultOptions={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(query){return jQuery(query);})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(query){return $$(query);})||(window.$&&function(query){return $(query);})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query);})||elementsByTagName),separate:'words',textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:'none'};var separators={words:/\s/.test('\u00a0')?/[^\S\u00a0]+/:/\s+/,characters:'',none:/^/};api.now=function(){DOM.ready();return api;};api.refresh=function(){replaceHistory.repeat.apply(replaceHistory,arguments);return api;};api.registerEngine=function(id,engine){if(!engine)return api;engines[id]=engine;return api.set('engine',id);};api.registerFont=function(data){if(!data)return api;var font=new Font(data),family=font.family;if(!fonts[family])fonts[family]=new FontFamily();fonts[family].add(font);return api.set('fontFamily','"'+family+'"');};api.replace=function(elements,options,ignoreHistory){options=merge(defaultOptions,options);if(!options.engine)return api;if(!initialized){CSS.addClass(DOM.root(),'cufon-active cufon-loading');CSS.ready(function(){CSS.addClass(CSS.removeClass(DOM.root(),'cufon-loading'),'cufon-ready');});initialized=true;}
if(options.hover)options.forceHitArea=true;if(options.autoDetect)delete options.fontFamily;if(typeof options.textShadow=='string'){options.textShadow=CSS.textShadow(options.textShadow);}
if(typeof options.color=='string'&&/^-/.test(options.color)){options.textGradient=CSS.gradient(options.color);}
else delete options.textGradient;if(!ignoreHistory)replaceHistory.add(elements,arguments);if(elements.nodeType||typeof elements=='string')elements=[elements];CSS.ready(function(){for(var i=0,l=elements.length;i<l;++i){var el=elements[i];if(typeof el=='string')api.replace(options.selector(el),options,true);else replaceElement(el,options);}});return api;};api.set=function(option,value){defaultOptions[option]=value;return api;};return api;})();Cufon.registerEngine('vml',(function(){var ns=document.namespaces;if(!ns)return;ns.add('cvml','urn:schemas-microsoft-com:vml');ns=null;var check=document.createElement('cvml:shape');check.style.behavior='url(#default#VML)';if(!check.coordsize)return;check=null;var HAS_BROKEN_LINEHEIGHT=(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:'+
(HAS_BROKEN_LINEHEIGHT?'middle':'text-bottom')+';}'+'cufon cufontext{position:absolute;left:-10000in;font-size:1px;}'+'a cufon{cursor:pointer}'+'}'+'@media print{'+'cufon cufoncanvas{display:none;}'+'}'+'</style>').replace(/;/g,'!important;'));function getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$|^[a-z-]+$/i.test(value)?'1em':value);}
function getSizeInPixels(el,value){if(value==='0')return 0;if(/px$/i.test(value))return parseFloat(value);var style=el.style.left,runtimeStyle=el.runtimeStyle.left;el.runtimeStyle.left=el.currentStyle.left;el.style.left=value.replace('%','em');var result=el.style.pixelLeft;el.style.left=style;el.runtimeStyle.left=runtimeStyle;return result;}
function getSpacingValue(el,style,size,property){var key='computed'+property,value=style[key];if(isNaN(value)){value=style.get(property);style[key]=value=(value=='normal')?0:~~size.convertFrom(getSizeInPixels(el,value));}
return value;}
var fills={};function gradientFill(gradient){var id=gradient.id;if(!fills[id]){var stops=gradient.stops,fill=document.createElement('cvml:fill'),colors=[];fill.type='gradient';fill.angle=180;fill.focus='0';fill.method='sigma';fill.color=stops[0][1];for(var j=1,k=stops.length-1;j<k;++j){colors.push(stops[j][0]*100+'% '+stops[j][1]);}
fill.colors=colors.join(',');fill.color2=stops[k][1];fills[id]=fill;}
return fills[id];}
return function(font,text,style,options,node,el,hasNext){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.computedFontSize||(style.computedFontSize=new Cufon.CSS.Size(getFontSizeInPixels(el,style.get('fontSize'))+'px',font.baseSize));var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-vml';wrapper.alt=text;canvas=document.createElement('cufoncanvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}
if(!hasNext)wrapper.appendChild(document.createElement('cvml:shape'));}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height),roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var minX=viewBox.minX,minY=viewBox.minY;cStyle.height=roundedHeight;cStyle.top=Math.round(size.convert(minY-font.ascent));cStyle.left=Math.round(size.convert(minX));wStyle.height=size.convert(font.height)+'px';var color=style.get('color');var chars=Cufon.CSS.textTransform(text,style).split('');var jumps=font.spacing(chars,getSpacingValue(el,style,size,'letterSpacing'),getSpacingValue(el,style,size,'wordSpacing'));if(!jumps.length)return null;var width=jumps.total;var fullWidth=-minX+width+(viewBox.width-jumps[jumps.length-1]);var shapeWidth=size.convert(fullWidth*stretchFactor),roundedShapeWidth=Math.round(shapeWidth);var coordSize=fullWidth+','+viewBox.height,coordOrigin;var stretch='r'+coordSize+'ns';var fill=options.textGradient&&gradientFill(options.textGradient);var glyphs=font.glyphs,offsetX=0;var shadows=options.textShadow;var i=-1,j=0,chr;while(chr=chars[++i]){var glyph=glyphs[chars[i]]||font.missingGlyph,shape;if(!glyph)continue;if(redraw){shape=canvas.childNodes[j];while(shape.firstChild)shape.removeChild(shape.firstChild);}
else{shape=document.createElement('cvml:shape');canvas.appendChild(shape);}
shape.stroked='f';shape.coordsize=coordSize;shape.coordorigin=coordOrigin=(minX-offsetX)+','+minY;shape.path=(glyph.d?'m'+glyph.d+'xe':'')+'m'+coordOrigin+stretch;shape.fillcolor=color;if(fill)shape.appendChild(fill.cloneNode(false));var sStyle=shape.style;sStyle.width=roundedShapeWidth;sStyle.height=roundedHeight;if(shadows){var shadow1=shadows[0],shadow2=shadows[1];var color1=Cufon.CSS.color(shadow1.color),color2;var shadow=document.createElement('cvml:shadow');shadow.on='t';shadow.color=color1.color;shadow.offset=shadow1.offX+','+shadow1.offY;if(shadow2){color2=Cufon.CSS.color(shadow2.color);shadow.type='double';shadow.color2=color2.color;shadow.offset2=shadow2.offX+','+shadow2.offY;}
shadow.opacity=color1.opacity||(color2&&color2.opacity)||1;shape.appendChild(shadow);}
offsetX+=jumps[j++];}
var cover=shape.nextSibling,coverFill,vStyle;if(options.forceHitArea){if(!cover){cover=document.createElement('cvml:rect');cover.stroked='f';cover.className='cufon-vml-cover';coverFill=document.createElement('cvml:fill');coverFill.opacity=0;cover.appendChild(coverFill);canvas.appendChild(cover);}
vStyle=cover.style;vStyle.width=roundedShapeWidth;vStyle.height=roundedHeight;}
else if(cover)canvas.removeChild(cover);wStyle.width=Math.max(Math.ceil(size.convert(width*stretchFactor)),0);if(HAS_BROKEN_LINEHEIGHT){var yAdjust=style.computedYAdjust;if(yAdjust===undefined){var lineHeight=style.get('lineHeight');if(lineHeight=='normal')lineHeight='1em';else if(!isNaN(lineHeight))lineHeight+='em';style.computedYAdjust=yAdjust=0.5*(getSizeInPixels(el,lineHeight)-parseFloat(wStyle.height));}
if(yAdjust){wStyle.marginTop=Math.ceil(yAdjust)+'px';wStyle.marginBottom=yAdjust+'px';}}
return wrapper;};})());Cufon.registerEngine('canvas',(function(){var check=document.createElement('canvas');if(!check||!check.getContext||!check.getContext.apply)return;check=null;var HAS_INLINE_BLOCK=Cufon.CSS.supports('display','inline-block');var HAS_BROKEN_LINEHEIGHT=!HAS_INLINE_BLOCK&&(document.compatMode=='BackCompat'||/frameset|transitional/i.test(document.doctype.publicId));var styleSheet=document.createElement('style');styleSheet.type='text/css';styleSheet.appendChild(document.createTextNode(('cufon{text-indent:0;}'+'@media screen,projection{'+'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;'+
(HAS_BROKEN_LINEHEIGHT?'':'font-size:1px;line-height:1px;')+'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}'+
(HAS_INLINE_BLOCK?'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(styleSheet);function generateFromVML(path,context){var atX=0,atY=0;var code=[],re=/([mrvxe])([^a-z]*)/g,match;generate:for(var i=0;match=re.exec(path);++i){var c=match[2].split(',');switch(match[1]){case'v':code[i]={m:'bezierCurveTo',a:[atX+~~c[0],atY+~~c[1],atX+~~c[2],atY+~~c[3],atX+=~~c[4],atY+=~~c[5]]};break;case'r':code[i]={m:'lineTo',a:[atX+=~~c[0],atY+=~~c[1]]};break;case'm':code[i]={m:'moveTo',a:[atX=~~c[0],atY=~~c[1]]};break;case'x':code[i]={m:'closePath'};break;case'e':break generate;}
context[code[i].m].apply(context,code[i].a);}
return code;}
function interpret(code,context){for(var i=0,l=code.length;i<l;++i){var line=code[i];context[line.m].apply(context,line.a);}}
return function(font,text,style,options,node,el){var redraw=(text===null);if(redraw)text=node.getAttribute('alt');var viewBox=font.viewBox;var size=style.getSize('fontSize',font.baseSize);var expandTop=0,expandRight=0,expandBottom=0,expandLeft=0;var shadows=options.textShadow,shadowOffsets=[];if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];var x=size.convertFrom(parseFloat(shadow.offX));var y=size.convertFrom(parseFloat(shadow.offY));shadowOffsets[i]=[x,y];if(y<expandTop)expandTop=y;if(x>expandRight)expandRight=x;if(y>expandBottom)expandBottom=y;if(x<expandLeft)expandLeft=x;}}
var chars=Cufon.CSS.textTransform(text,style).split('');var jumps=font.spacing(chars,~~size.convertFrom(parseFloat(style.get('letterSpacing'))||0),~~size.convertFrom(parseFloat(style.get('wordSpacing'))||0));if(!jumps.length)return null;var width=jumps.total;expandRight+=viewBox.width-jumps[jumps.length-1];expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-canvas';wrapper.setAttribute('alt',text);canvas=document.createElement('canvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height);var roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var stretchedWidth=width*stretchFactor;var canvasWidth=Math.ceil(size.convert(stretchedWidth+expandRight-expandLeft));var canvasHeight=Math.ceil(size.convert(viewBox.height-expandTop+expandBottom));canvas.width=canvasWidth;canvas.height=canvasHeight;cStyle.width=canvasWidth+'px';cStyle.height=canvasHeight+'px';expandTop+=viewBox.minY;cStyle.top=Math.round(size.convert(expandTop-font.ascent))+'px';cStyle.left=Math.round(size.convert(expandLeft))+'px';var wrapperWidth=Math.max(Math.ceil(size.convert(stretchedWidth)),0)+'px';if(HAS_INLINE_BLOCK){wStyle.width=wrapperWidth;wStyle.height=size.convert(font.height)+'px';}
else{wStyle.paddingLeft=wrapperWidth;wStyle.paddingBottom=(size.convert(font.height)-1)+'px';}
var g=canvas.getContext('2d'),scale=height/viewBox.height;g.scale(scale,scale*roundingFactor);g.translate(-expandLeft,-expandTop);g.save();function renderText(){var glyphs=font.glyphs,glyph,i=-1,j=-1,chr;g.scale(stretchFactor,1);while(chr=chars[++i]){var glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(glyph.d){g.beginPath();if(glyph.code)interpret(glyph.code,g);else glyph.code=generateFromVML('m'+glyph.d,g);g.fill();}
g.translate(jumps[++j],0);}
g.restore();}
if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];g.save();g.fillStyle=shadow.color;g.translate.apply(g,shadowOffsets[i]);renderText();}}
var gradient=options.textGradient;if(gradient){var stops=gradient.stops,fill=g.createLinearGradient(0,viewBox.minY,0,viewBox.maxY);for(var i=0,l=stops.length;i<l;++i){fill.addColorStop.apply(fill,stops[i]);}
g.fillStyle=fill;}
else g.fillStyle=style.get('color');renderText();return wrapper;};})());;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1989, 1991, 2001, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Mesquite is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * MesquiteStd
 * 
 * Designer:
 * Joy Redick
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":103,"face":{"font-family":"Mesquite Std","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"4 9 7 3 6 14 2 2 10 4","ascent":"273","descent":"-87","cap-height":"4","bbox":"-21 -327 360 102","underline-thickness":"18","underline-position":"-18","stemh":"14","stemv":"21","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":46},"!":{"d":"28,-55v-8,-16,-8,-60,-20,-71v6,-6,5,-13,-1,-17v12,-20,4,-72,6,-104v0,-3,-1,-5,-3,-5v-5,0,2,17,-5,16r-2,-31v4,0,9,-3,10,-6v5,5,24,5,30,0v1,4,6,7,10,7r-3,29v-7,4,-1,-27,-8,-9v2,32,-6,83,7,103v-7,3,-6,13,-1,17v-13,10,-8,61,-20,71xm19,4v-8,-8,-10,-37,0,-45v4,4,15,4,19,0v10,6,11,37,0,45v-3,-6,-15,-5,-19,0","w":55},"\"":{"d":"10,-280r20,0r-4,97r-12,0xm39,-280r20,0r-4,97r-11,0","w":69},"#":{"d":"31,0r-17,0r8,-85r-18,0r0,-20r20,0r6,-59r-18,0r0,-20r20,0r8,-83r17,0r-8,83r19,0r8,-83r17,0r-8,83r18,0r0,20r-20,0r-6,59r19,0r0,20r-20,0r-9,85r-17,0r8,-85r-19,0xm41,-105r19,0r6,-59r-20,0","w":107},"$":{"d":"64,-128v-1,28,32,94,-17,101v0,9,-1,31,2,34v-4,1,-7,4,-9,7v-11,-6,-5,-17,-6,-41v-29,2,-24,-38,-29,-60v10,-2,9,-12,14,-24v0,17,4,21,12,24v-4,7,-8,46,8,45v6,0,9,-5,9,-16v-1,-27,-11,-61,-26,-72v3,-7,0,-11,-5,-13v-1,-28,-33,-90,17,-99v0,-8,1,-29,-2,-30v4,-1,7,-3,9,-7v9,5,6,15,6,37v30,0,22,38,28,61v-10,1,-9,11,-14,22v0,-17,-4,-20,-12,-23v3,-5,9,-47,-7,-45v-7,0,-11,7,-11,16v1,26,14,58,27,68v-4,4,1,17,6,15","w":80},"%":{"d":"5,-193v12,-17,-11,-89,30,-76v30,-14,26,30,26,56v-1,19,6,14,1,23v1,14,3,101,-23,82v-40,17,-25,-50,-34,-77v4,-3,4,-5,0,-8xm41,-125r0,-129v0,-5,-1,-7,-6,-7v-5,0,-6,3,-6,8r0,128v0,6,2,8,6,8v4,0,6,-2,6,-8xm91,-85v14,-15,-12,-90,31,-76v30,-14,26,30,26,56v-1,19,6,15,0,23v4,12,3,101,-22,82v-41,18,-24,-51,-35,-77v5,-3,5,-5,0,-8xm127,-17r0,-129v0,-5,0,-7,-5,-7v-5,0,-6,3,-6,8r0,128v0,6,2,8,6,8v4,0,5,-2,5,-8xm34,-2v27,-83,45,-178,69,-265v0,-20,10,-10,20,-7r-71,275v-2,0,-7,2,-8,4v-1,-3,-7,-7,-10,-7","w":156},"&":{"d":"54,-269v29,-15,36,37,36,62v0,18,-11,32,-25,40r21,95v2,-9,9,-32,4,-42v-6,-1,0,13,-5,14r-4,-31v4,0,8,-5,9,-7v2,6,20,5,22,0v1,4,6,7,10,7v-3,10,0,26,-6,32v1,-6,-1,-23,-5,-10v1,44,-26,60,-11,90v5,-1,-2,-15,3,-17r10,30v-8,13,-22,2,-35,10r-5,-14v-17,23,-43,20,-51,-20v-9,-47,-45,-118,10,-143v3,-1,3,-1,2,-4v-9,-30,-24,-111,20,-92xm64,-33r-26,-114v-12,6,-8,14,-5,31r18,82v2,10,10,8,13,1xm55,-255v-10,16,6,46,6,66v15,-7,8,-31,5,-49v-2,-14,-6,-17,-11,-17","w":122},"\u2019":{"d":"14,-273v3,5,16,5,20,0v13,17,5,92,-18,77v-3,-10,20,-26,5,-35v-3,0,-6,2,-7,4v-9,-8,-9,-37,0,-46","w":47,"k":{"\u2019":8,"t":-4,"T":-4,"a":16,"\u00e6":16,"\u00e1":16,"\u00e2":16,"\u00e4":16,"\u00e0":16,"\u00e5":16,"\u00e3":16,"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,"x":4,"X":4}},"(":{"d":"64,3v-31,-11,-44,-50,-41,-106v1,-23,-9,-21,-2,-32v-9,-7,2,-31,2,-58v0,-39,9,-64,29,-73v6,-3,11,-6,12,-9v1,3,6,6,11,6v-3,4,-3,8,-2,11v-30,-4,-23,52,-23,88v0,30,9,20,1,35v10,15,-21,123,22,120v-1,3,-1,7,2,11v-4,1,-10,4,-11,7","w":75},")":{"d":"12,-275v31,14,45,50,41,108v-2,25,11,22,2,32v9,8,-4,30,-2,56v3,49,-15,70,-41,82v-1,-3,-6,-6,-11,-7v3,-4,3,-8,2,-11v31,5,21,-48,23,-82v1,-27,-10,-25,-1,-38v-9,-14,20,-126,-22,-123v1,-3,1,-7,-2,-11v5,0,10,-3,11,-6","w":75},"*":{"d":"55,-223v11,27,14,18,7,33v-14,-6,-6,-1,-18,-26v-11,24,-4,20,-19,26v-6,-16,-3,-8,9,-34v-25,1,-17,1,-26,-6v8,-8,1,-8,26,-6v-11,-26,-16,-18,-9,-33v17,3,8,2,20,26v11,-24,3,-22,19,-26v5,15,2,8,-9,33v24,-1,18,-1,26,7v-8,8,-1,8,-26,6","w":88},"+":{"d":"101,-99r-36,0r0,63r-17,0r0,-63r-37,0r0,-18r37,0r0,-62r17,0r0,62r36,0r0,18","w":112},",":{"d":"33,-42v18,14,0,76,-7,79v-2,-2,-6,-3,-10,-2v-4,-7,20,-26,5,-35v-3,0,-6,2,-7,4v-8,-9,-9,-37,0,-46v4,5,15,5,19,0","w":47},"-":{"d":"66,-123v-7,-3,-54,-3,-62,0v2,-6,3,-17,0,-22r62,0v-3,5,-2,16,0,22","w":69},".":{"d":"14,4v-8,-7,-10,-37,0,-45v9,4,22,-2,26,6v0,18,4,46,-16,35v-4,0,-9,2,-10,4","w":47},"\/":{"d":"0,-2v27,-84,45,-179,69,-266v1,-18,10,-9,20,-7r-71,276v-2,0,-7,2,-8,4v-1,-3,-7,-7,-10,-7","w":88},"0":{"d":"8,-169v-1,-47,-6,-119,40,-100v18,-7,36,-4,39,28v3,27,-5,83,6,96v-6,4,-8,11,0,15v-10,10,-4,64,-6,89v-3,39,-20,51,-40,41v-61,21,-26,-87,-46,-128v6,-3,7,-11,0,-14v3,-4,7,-7,7,-27xm56,-28r0,-215v0,-8,-1,-12,-8,-12v-8,0,-9,3,-9,12r0,215v0,11,1,14,8,14v7,0,9,-3,9,-14","w":94},"1":{"d":"46,4v-4,-5,-24,-5,-28,0v-3,-4,-7,-7,-11,-8r3,-30v7,-3,1,29,8,9v-2,-30,5,-85,-5,-103v5,-3,5,-11,0,-14v10,-17,3,-68,5,-96v1,-14,-7,-14,-7,-6r0,20r-5,0r-3,-41v11,-9,31,-2,47,-6v-2,18,-9,111,3,129v-5,2,-5,12,0,14v-10,21,-7,80,-4,110v6,0,-3,-16,6,-14r2,29v-3,0,-9,4,-11,7","w":60},"2":{"d":"28,-145v12,-19,15,-42,18,-89v2,-27,-20,-26,-17,-3v1,13,-2,34,3,41v-12,2,-11,16,-16,30v0,-22,-4,-25,-13,-30v4,-24,-2,-90,30,-74v27,-4,43,2,43,38v0,39,-11,64,-13,93v-7,0,-10,10,-6,15v-16,20,-29,67,-29,91v0,5,2,8,12,8v10,0,11,-2,11,-23v0,-10,1,-30,-2,-33v10,0,9,-13,14,-28v0,21,3,25,13,28v-5,17,-5,59,0,77v-13,8,-38,9,-57,4v-3,0,-5,1,-7,4v-1,-4,-4,-7,-8,-7v-5,-38,14,-93,21,-127v7,0,12,-11,3,-15","w":78},"3":{"d":"1,-197v6,-33,-1,-94,38,-72v23,-10,37,4,35,36v-2,36,12,84,-17,97v26,11,15,64,17,99v1,28,-12,47,-35,37v-39,19,-33,-40,-38,-74v11,-1,11,-13,16,-29v0,20,3,26,13,30v-4,9,-8,58,6,58v6,0,8,-4,8,-22r0,-72v3,-15,-14,-19,-25,-14v0,-4,-5,-10,-9,-12v10,-4,7,-14,19,-9v12,0,15,-4,15,-15r0,-81v3,-21,-18,-22,-17,-3v1,14,-3,38,3,46v-10,4,-13,9,-13,29r-3,0v0,-22,-4,-24,-13,-29","w":78},"4":{"d":"51,-273v4,4,17,5,24,2v-3,20,-9,110,3,129v-4,2,-4,12,0,14v-4,1,-11,32,-3,39v14,-4,7,10,17,13v-10,6,-6,14,-20,14v1,13,-3,35,3,43v6,0,-3,-14,5,-13r2,29v-8,9,-28,-1,-37,7v-3,-4,-8,-7,-12,-8r4,-30v7,-3,1,30,8,8v-2,-12,4,-31,-3,-38r-29,0v0,-7,-5,-14,-12,-14v8,-18,7,-48,15,-58v-3,-26,28,-97,24,-131v5,1,10,-2,11,-6xm24,-91v0,3,18,4,21,0r-1,-113","w":92},"5":{"d":"6,-273v13,9,34,-4,50,4v4,0,7,-2,9,-4v1,3,5,7,9,7v-5,14,-4,55,-1,73v-10,4,-12,8,-12,27r-3,0v0,-19,-2,-23,-12,-27v4,-5,12,-55,-8,-49v-10,0,-11,3,-11,18r0,70v22,-15,48,-8,46,35v-2,45,15,113,-24,123v-3,-5,-17,-5,-20,0v-28,2,-24,-48,-27,-78v11,-2,10,-13,15,-29v0,20,4,25,14,29v-4,9,-9,58,6,59v6,0,7,-4,7,-17r0,-77v5,-39,-21,-27,-29,-12v-1,-4,-6,-6,-9,-6v1,-47,-5,-102,0,-146","w":78},"6":{"d":"4,-143v14,-41,-11,-151,45,-126v27,-15,39,20,35,55v0,9,1,12,3,15v-11,2,-10,14,-15,30v0,-20,-3,-26,-13,-30v3,-11,11,-55,-9,-55v-10,0,-10,7,-10,17r0,94v21,-17,49,-8,49,36v0,46,5,129,-40,107v-61,21,-29,-82,-45,-129v6,-3,5,-10,0,-14xm40,-118r0,91v0,7,1,13,9,13v8,0,10,-5,10,-13r0,-91v0,-8,-2,-12,-10,-12v-8,0,-9,5,-9,12","w":95},"7":{"d":"11,-274v10,11,35,-4,51,5v4,0,8,-3,10,-4v1,3,3,6,6,6v-3,40,-17,86,-11,125v-7,1,-8,11,-2,14v-11,21,-19,81,-17,111v5,-1,2,-15,8,-16r-4,32v-12,8,-29,-4,-41,5v-1,-4,-5,-7,-10,-7v4,-9,4,-24,11,-30v-1,6,-1,26,4,12v3,-32,18,-77,12,-107v8,-1,10,-11,3,-16v13,-14,13,-59,19,-83v3,-16,1,-18,-10,-18v-21,0,-14,17,-14,32v0,12,2,16,4,19v-9,4,-13,8,-13,30r-3,0v0,-22,-3,-25,-12,-29v5,-12,4,-62,0,-74v4,0,8,-4,9,-7","w":79},"8":{"d":"8,-28v0,-37,-11,-93,16,-106v-29,-15,-16,-65,-16,-102v0,-25,18,-44,40,-33v18,-8,36,-2,39,28v-4,39,13,91,-16,107v25,10,16,61,16,94v0,34,-18,51,-40,40v-18,9,-39,-2,-39,-28xm38,-111r0,85v0,8,1,13,10,13v8,0,9,-5,9,-13r0,-85v0,-8,-1,-13,-9,-13v-8,0,-10,5,-10,13xm38,-241r0,87v0,9,2,13,9,13v5,0,10,-3,10,-13r0,-86v0,-9,-2,-14,-10,-14v-8,0,-9,5,-9,13","w":95},"9":{"d":"37,-73v-3,11,-11,55,8,57v10,0,10,-7,10,-17r0,-96v-20,18,-49,7,-49,-36v0,-45,-4,-126,40,-104v61,-21,29,80,45,126v-6,4,-5,11,1,14v-17,29,12,130,-35,133v-2,-6,-20,-5,-22,0v-26,3,-23,-51,-27,-77v11,-1,10,-14,15,-30v0,20,4,26,14,30xm55,-154r0,-88v0,-7,-1,-13,-9,-13v-8,0,-9,5,-9,13r0,88v0,8,1,13,9,13v8,0,9,-6,9,-13","w":94},":":{"d":"14,-112v-9,-7,-9,-37,0,-45v2,3,17,4,19,0v9,7,12,38,0,45v-2,-5,-17,-5,-19,0xm14,4v-8,-7,-10,-37,0,-45v9,4,22,-2,26,6v0,18,4,46,-16,35v-4,0,-9,2,-10,4","w":47},";":{"d":"33,-42v18,14,0,76,-7,79v-2,-2,-6,-3,-10,-2v-4,-7,20,-26,5,-35v-3,0,-6,2,-7,4v-8,-9,-9,-37,0,-46v4,5,15,5,19,0xm14,-112v-9,-7,-9,-37,0,-45v2,3,17,4,19,0v9,7,12,38,0,45v-2,-5,-17,-5,-19,0","w":47},"<":{"d":"101,-37r-90,-63r0,-18r90,-63r0,22r-74,50r74,50r0,22","w":112},"=":{"d":"101,-123r-90,0r0,-19r90,0r0,19xm101,-74r-90,0r0,-18r90,0r0,18","w":112},">":{"d":"11,-181r90,63r0,18r-90,63r0,-22r74,-50r-74,-50r0,-22","w":112},"?":{"d":"34,-144v7,-16,15,-52,14,-84v0,-22,-5,-26,-12,-26v-15,0,-12,23,-12,38v0,14,0,18,3,22v-11,1,-9,14,-14,30v0,-21,-4,-26,-13,-30v8,-11,7,-55,2,-71v4,0,8,-3,10,-8v6,8,19,1,29,0v61,8,27,86,23,135v-6,1,-10,11,-5,16v-8,9,-12,36,-9,51v-4,3,-8,9,-9,13v-13,-10,-8,-41,-9,-69v8,-1,7,-14,2,-17xm50,4v-2,-5,-16,-5,-19,0v-8,-8,-10,-37,0,-45v4,4,15,4,19,0v0,3,4,5,7,6v0,15,2,33,-7,39","w":81},"@":{"d":"118,19r5,13v-13,11,-28,16,-43,16v-27,0,-68,-26,-68,-114v0,-90,39,-159,91,-159v45,0,62,45,62,95v0,76,-19,115,-45,115v-12,0,-19,-12,-18,-34v-16,47,-54,48,-54,-11v0,-58,30,-125,81,-97r-11,79v-4,30,-3,46,5,46v12,0,27,-38,27,-93v0,-55,-16,-85,-50,-85v-34,0,-72,56,-72,144v0,74,40,123,90,85xm78,-39v20,-10,24,-75,29,-107v-19,-8,-35,33,-36,80v0,17,2,27,7,27","w":173},"A":{"d":"35,-273v5,5,23,5,28,0v1,4,3,6,6,7v5,34,3,104,17,123v-6,4,-5,12,0,15v-8,24,-2,84,5,111v6,-1,0,-14,5,-16r4,30v-8,11,-27,-2,-38,7v-1,-4,-6,-7,-10,-7r-1,-29v7,-3,2,24,8,10v-5,-17,7,-49,-21,-44v-12,6,-7,35,-6,49v6,-1,0,-15,6,-16r0,31v-8,9,-21,-3,-30,6v-1,-4,-5,-7,-8,-7r2,-30v8,-1,-2,14,6,15v5,-29,10,-83,4,-110v4,-3,4,-12,0,-15v14,-21,12,-88,17,-123v3,-1,5,-4,6,-7xm44,-201v-8,17,2,52,-3,66v8,8,-17,37,3,42v20,-4,-5,-34,4,-42v-5,-17,3,-48,-4,-66","w":99,"k":{"c":4,"\u00e7":4,"g":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"q":4,"t":14,"v":13,"w":12,"y":17,"\u00fd":17,"\u00ff":17,"\u201d":12,"\u2019":12,"C":4,"\u00c7":4,"G":4,"O":4,"\u00d8":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"Q":4,"T":14,"V":13,"W":12,"Y":17,"\u00dd":17,"\u0178":17}},"B":{"d":"93,-33v0,55,-45,28,-79,36v-1,-4,-8,-7,-12,-7r3,-32v6,-3,1,30,8,10v-2,-31,5,-86,-7,-102v6,-4,7,-10,0,-14v12,-13,8,-82,5,-109v-3,1,-2,11,-2,16r-3,0r-4,-32v4,0,11,-3,12,-7v7,10,26,1,39,1v56,2,37,65,40,115v0,8,-7,20,-17,24v27,11,17,65,17,101xm42,-111r0,85v0,8,3,13,11,13v8,0,10,-5,10,-13r0,-85v0,-6,-1,-12,-10,-12v-9,0,-11,6,-11,12xm42,-240r0,86v0,9,5,13,11,13v5,0,10,-3,10,-13r0,-86v0,-8,-2,-14,-10,-14v-9,0,-11,6,-11,14","w":99},"C":{"d":"11,-223v1,-53,23,-54,54,-45v9,-3,8,3,16,4v-5,13,-5,59,1,71v-9,3,-12,8,-12,27r-3,0v0,-21,-4,-25,-12,-28v5,-11,3,-29,3,-45v0,-8,-1,-15,-9,-15v-6,0,-9,6,-9,15v1,27,-4,82,5,96v-6,4,-5,11,0,16v-9,18,-3,70,-5,99v0,9,3,14,9,14v16,0,9,-48,6,-64v11,-1,9,-12,14,-29v0,22,4,25,13,29v-9,27,8,87,-36,82v-54,8,-24,-92,-41,-131v7,-5,6,-11,0,-16v10,-12,5,-56,6,-80","w":83,"k":{"c":4,"\u00e7":4,"g":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"q":4,"C":4,"\u00c7":4,"G":4,"O":4,"\u00d8":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"Q":4}},"D":{"d":"94,-39v-4,54,-34,43,-70,39v-4,0,-7,1,-11,4v-2,-4,-6,-7,-10,-7r2,-31v6,-4,1,31,8,10v-2,-32,5,-86,-7,-105v6,-5,5,-9,0,-16v12,-19,8,-78,5,-107v-2,5,2,15,-5,15r-3,-29v5,0,10,-4,11,-7v13,9,26,0,43,0v60,0,25,88,43,128v-7,7,-7,9,0,16v-9,11,-5,65,-6,90xm42,-237v2,29,-6,77,7,93v-9,4,-10,10,-1,16v-12,18,-6,68,-6,97v0,14,5,17,11,17v7,0,11,-3,11,-17v-2,-30,5,-80,-7,-97v8,-4,6,-10,1,-16v11,-17,4,-65,6,-93v0,-14,-2,-19,-11,-19v-8,0,-11,5,-11,19","w":105},"E":{"d":"59,-93v-18,1,2,-27,-10,-31v-6,0,-6,5,-6,25r0,74v0,9,3,11,11,11v15,0,9,-48,6,-64v12,-1,10,-14,15,-30v0,24,3,26,13,31v-7,11,-6,61,-1,73v-18,15,-54,-2,-74,8v-1,-3,-7,-7,-11,-8r3,-32v7,-3,0,28,8,12v-1,-30,4,-91,-7,-105v7,-3,6,-11,0,-15v11,-17,9,-79,5,-107v-5,0,-2,11,-3,16r-3,0r-3,-31v5,0,8,-3,11,-7v16,10,39,-5,56,4v3,0,6,-2,9,-4v1,3,5,7,9,7v-5,13,-4,54,-1,71v-10,4,-11,9,-11,30r-3,0v0,-20,-3,-26,-13,-30v5,-8,10,-60,-6,-60v-6,0,-10,5,-10,19r0,71v-1,21,8,22,11,12v-4,-8,-3,-23,6,-23v-6,12,18,21,3,33r8,7r-9,6v18,13,-11,25,-3,37","w":89},"F":{"d":"60,-93v-20,-1,4,-29,-11,-31v-4,0,-6,3,-6,12v2,30,-5,69,3,94v7,1,-1,-14,5,-15r4,30v-11,11,-29,-2,-41,7v-1,-3,-7,-7,-11,-7r3,-31v7,-1,0,13,5,16v4,-28,6,-88,-4,-111v5,-2,5,-12,0,-14v10,-21,7,-78,4,-107v-6,0,3,17,-6,15r-2,-30v21,-13,56,0,77,-5v1,3,4,6,8,6v-5,9,-7,56,-1,70v-10,4,-12,9,-12,28r-3,0v0,-19,-3,-24,-13,-27v7,-8,4,-30,4,-44v0,-13,-3,-16,-10,-16v-7,0,-10,3,-10,16r0,75v-1,18,7,18,12,11v-2,-7,-9,-23,4,-24v-5,12,20,21,3,34r9,6r-9,8v19,10,-13,22,-2,34","w":86,"k":{"\u00e3":12,"\u00e0":12,"\u00e4":12,"a":12,"\u00e6":12,"\u00e1":12,"\u00e2":12,"\u00e5":12,":":9,",":30,".":30,";":9,"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12}},"G":{"d":"11,-241v0,-34,37,-35,63,-28v3,0,5,-1,7,-4v2,5,5,7,9,7v-4,7,-7,62,2,69v-9,5,-12,9,-12,30r-3,0v0,-21,-1,-25,-11,-30v6,-9,4,-70,-11,-58v-24,0,-15,94,-8,113v-6,4,-7,9,-1,13v-9,16,-4,66,-5,94v0,18,3,22,9,22v14,-6,8,-63,6,-83v-5,0,-2,13,-3,18r-3,0r-2,-33v4,0,9,-2,10,-7v6,6,25,5,31,0v1,5,6,7,10,7v-3,10,0,26,-6,33v2,-7,-2,-29,-6,-12r0,87v-6,6,-6,7,-16,3v-25,7,-58,6,-60,-30v-1,-28,4,-86,-6,-99v6,-4,5,-8,0,-13v10,-12,6,-72,6,-99","w":94},"H":{"d":"70,-273v4,6,25,5,29,0v1,3,6,7,9,7r-3,30v-7,1,1,-13,-5,-16v-1,27,-6,95,6,109v-6,4,-5,13,0,16v-11,16,-8,81,-5,109v5,1,-2,-17,5,-16r3,31v-9,9,-30,-1,-40,7v-1,-3,-8,-7,-12,-7v3,-10,1,-25,7,-32v-1,6,2,27,5,12r0,-84v0,-18,-7,-21,-14,-21v-8,0,-13,4,-13,21v0,29,-4,65,3,88v6,0,0,-15,5,-16r4,32v-3,0,-9,4,-9,7v-5,-5,-26,-5,-30,0v-1,-3,-9,-8,-13,-8r3,-32v8,-1,-2,16,6,17v4,-27,6,-87,-4,-109v7,-4,6,-12,0,-16v9,-15,8,-82,4,-108v-4,1,-1,10,-2,15r-3,0r-3,-31v11,-8,30,4,41,-5v1,2,8,6,12,6r-5,30v-7,1,1,-13,-5,-16v-3,0,-4,2,-4,9r0,80v0,16,4,21,13,21v10,0,14,-7,14,-21v-1,-29,3,-63,-2,-88v-4,1,-1,12,-2,17r-3,0r-2,-32v4,0,9,-4,10,-6","w":111},"I":{"d":"14,-273v5,5,23,5,28,0v1,4,7,7,11,7v-3,10,0,26,-6,33v1,-6,-1,-27,-4,-13v2,31,-5,86,6,104v-6,2,-5,12,0,14v-10,20,-7,79,-4,109v6,0,-3,-14,5,-13r2,29v-9,9,-29,-1,-39,7v-3,-4,-7,-7,-11,-8r4,-30v7,-1,-1,14,5,16v3,-27,6,-88,-3,-110v5,-2,6,-12,0,-14v9,-21,6,-80,3,-109v-4,1,-1,11,-2,16r-3,0r-3,-31v3,0,10,-4,11,-7","w":55},"J":{"d":"41,-273v5,5,23,5,28,0v2,3,7,7,11,7v-2,9,1,24,-5,29v2,-9,-6,-27,-6,-8v0,30,-5,84,6,101v-6,2,-5,13,0,15v-18,30,15,137,-39,133v-40,5,-33,-47,-36,-82v9,-5,11,-9,11,-30r3,0v0,24,2,25,11,29v-6,8,-2,34,-3,49v0,12,2,16,9,16v7,0,9,-4,9,-16v-1,-30,4,-79,-5,-99v6,-3,5,-12,0,-15v9,-20,6,-80,3,-109v-5,0,2,16,-5,15r-4,-29v4,0,11,-3,12,-6","w":82},"K":{"d":"102,4v-6,-5,-23,-6,-30,0v-2,-3,-7,-7,-12,-7v1,-9,-6,-24,-1,-30v0,6,11,25,8,9r-16,-99v-10,25,-11,72,-6,105v6,1,0,-14,5,-15r4,30v-11,10,-29,-1,-41,7v-1,-3,-7,-8,-10,-8v3,-10,-1,-26,5,-32v-2,7,3,27,5,11v-2,-31,5,-89,-7,-105v6,-3,7,-11,0,-15v12,-18,8,-79,5,-108v-4,-1,-3,11,-3,16r-3,0r-2,-30v4,0,10,-3,12,-6v6,5,23,5,30,0v1,3,6,6,10,6v-2,10,1,25,-5,31v1,-8,-7,-24,-7,-7r1,93v9,-34,26,-68,30,-101v-6,-2,-5,18,-10,15r7,-31v5,0,11,-3,12,-6v4,6,14,4,19,0v2,2,6,6,10,6r-10,32r-3,0v1,-5,6,-13,1,-15v-12,30,-39,76,-14,107v-7,4,-4,15,2,16v-8,29,6,81,13,111v4,-2,-2,-15,3,-16r6,29v-3,0,-7,4,-8,7","w":110,"k":{"c":5,"\u00e7":5,"g":5,"q":5,"C":5,"\u00c7":5,"G":5,"Q":5}},"L":{"d":"13,-104v1,-24,-10,-22,-3,-34v-7,-10,4,-16,3,-36v-2,-25,4,-58,-3,-78v-4,0,1,15,-4,15r-2,-30v4,0,9,-3,10,-6v5,5,24,4,29,0v2,3,8,6,12,6v-3,9,0,24,-6,30v3,-8,-7,-23,-7,-7v0,29,-5,83,6,99v-6,2,-5,12,0,14v-12,18,-4,70,-6,100v0,10,2,16,12,16v22,0,10,-49,8,-60v10,-4,11,-8,11,-29r3,0v0,20,2,25,12,29v-7,8,-5,64,0,72v-20,14,-54,-2,-74,7v-1,-3,-6,-8,-11,-8r2,-29v7,-3,0,24,8,9r0,-80","w":87,"k":{"t":14,"v":12,"w":9,"y":14,"\u00fd":14,"\u00ff":14,"\u201d":26,"\u2019":26,"T":14,"V":12,"W":9,"Y":14,"\u00dd":14,"\u0178":14,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4}},"M":{"d":"95,-273v6,5,23,5,30,0v1,3,7,7,11,7r-3,31v-7,1,1,-13,-5,-15v-4,25,-5,89,4,107v-4,3,-4,11,1,14v-11,13,-6,79,-7,108v0,3,1,3,3,3v5,-1,1,-11,2,-16r3,0r4,31v-10,10,-29,-2,-41,7v-1,-3,-8,-8,-12,-8r3,-29v6,-3,2,28,8,8v-1,-29,3,-88,-5,-104v3,-3,5,-10,0,-14v4,-6,9,-51,3,-64v-4,21,-2,54,-9,70v5,34,-11,92,-13,134v-3,0,-6,3,-7,7v-2,-4,-6,-7,-8,-7r-11,-97v-10,-41,0,-49,-13,-107v-3,25,7,61,2,71v2,22,-5,77,-2,114v0,4,1,4,3,4v6,1,-3,-16,5,-15r5,30v-9,8,-22,0,-32,7v-2,-3,-7,-7,-11,-7r3,-32v8,-1,-1,14,5,17v4,-27,5,-90,-4,-111v6,-3,5,-11,0,-14v10,-17,7,-81,4,-108v-7,-1,2,16,-6,15r-3,-30v4,0,11,-5,12,-7v6,5,24,4,30,0v2,3,9,6,14,6r10,105r3,0r11,-105v5,0,11,-4,13,-6","w":138},"N":{"d":"62,-267v13,-8,22,1,33,-6v1,3,5,6,9,6r-2,31v-6,4,-2,-28,-8,-8v1,31,-5,84,6,102v-7,5,-5,11,1,15v-11,22,-6,88,-8,124v-4,0,-11,3,-14,7v-3,-4,-9,-6,-13,-6v-8,-39,-11,-95,-25,-125v4,-5,5,-11,-1,-16v2,-15,-1,-40,-7,-52v0,16,-2,45,4,53v-5,4,-6,11,0,15v-8,22,-2,74,-4,105v1,8,5,6,6,0v1,-3,-2,-11,2,-11r3,30v-11,7,-20,0,-31,7v-2,-4,-7,-7,-11,-7r3,-30v6,-3,1,29,8,9v-2,-31,5,-85,-6,-103v6,-4,5,-10,0,-15v11,-17,4,-74,6,-104v1,-8,-6,-9,-5,-1v-1,4,3,12,-3,11r-4,-31v5,0,10,-3,13,-6v5,5,17,4,22,0v2,3,8,7,12,6v10,40,13,88,26,125r0,-105v0,-4,-2,-4,-3,-4v-5,-1,0,15,-5,16","w":105},"O":{"d":"11,-169v-2,-48,-5,-120,42,-100v18,-8,37,-4,40,28v3,27,-5,84,6,96v-5,4,-7,11,0,15v-10,10,-4,64,-6,89v-3,39,-21,51,-41,41v-62,23,-28,-86,-48,-128v6,-3,7,-11,0,-14v4,-4,7,-7,7,-27xm42,-243v1,29,-5,84,6,99v-7,5,-6,12,0,17v-11,17,-4,70,-6,99v0,10,3,14,10,14v6,0,10,-3,10,-14v-1,-28,4,-88,-6,-101v6,-3,5,-11,0,-14v12,-19,4,-69,6,-100v0,-8,-2,-12,-10,-12v-8,0,-10,3,-10,12","k":{"v":7,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"V":7,"W":4,"Y":4,"\u00dd":4,"\u0178":4,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"x":7,"X":7}},"P":{"d":"14,-273v10,8,29,0,42,0v59,0,39,62,39,112v0,27,-20,36,-38,36v-13,0,-15,9,-15,32v0,24,-4,56,3,75v7,0,-1,-14,5,-16r3,31v-9,10,-28,-1,-39,7v-2,-4,-9,-8,-13,-8r4,-31v6,-3,1,28,8,10v-2,-31,5,-82,-5,-102v5,-2,7,-12,1,-14v8,-26,5,-79,2,-109v-6,-1,0,15,-5,16r-3,-31v5,0,10,-4,11,-8xm42,-240r0,82v0,10,3,14,11,14v8,0,12,-5,12,-14r0,-82v0,-10,-4,-15,-12,-15v-7,0,-11,5,-11,15","w":99,"k":{"\u00e4":9,"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e0":9,"\u00e5":9,"\u00e3":9,",":44,".":44,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"Q":{"d":"4,-142v18,-37,-12,-153,48,-127v19,-7,37,-5,41,28v3,27,-5,84,6,96v-6,4,-8,11,0,15v-15,18,4,105,-15,123v18,1,13,22,26,26v0,2,-9,5,-15,5v-15,-1,-17,-27,-43,-20v-69,4,-25,-87,-48,-133v7,-3,6,-11,0,-13xm42,-243v1,29,-5,84,6,99v-6,4,-7,11,0,16v-11,17,-4,70,-6,100v0,11,3,13,10,13v6,0,10,-2,10,-13v-1,-28,4,-89,-7,-101v6,-3,7,-11,1,-15v12,-20,4,-68,6,-99v0,-8,-2,-13,-10,-13v-8,0,-10,4,-10,13","k":{"y":2,"\u00fd":2,"\u00ff":2,"Y":2,"\u00dd":2,"\u0178":2}},"R":{"d":"14,-273v11,9,27,0,43,0v15,0,38,11,38,38v0,36,9,92,-18,101v31,11,11,79,20,115v5,0,-2,-15,5,-14r3,30v-9,7,-18,2,-30,7v-1,-4,-6,-10,-10,-10r0,-102v0,-13,-4,-16,-12,-16v-8,0,-10,2,-10,15v2,26,-4,72,4,89v4,-1,-3,-14,4,-13r4,30v-4,0,-11,4,-13,7v-6,-5,-22,-5,-29,0v-1,-3,-9,-7,-12,-7r4,-33v7,-1,-1,13,6,15v4,-28,6,-86,-5,-108v5,-4,6,-10,-1,-14v13,-15,9,-79,6,-107v-5,-1,2,17,-5,16r-3,-33v4,1,10,-3,11,-6xm43,-240r0,85v0,10,3,13,11,13v8,0,11,-3,11,-17r0,-80v0,-19,-23,-19,-22,-1","w":105,"k":{"c":2,"\u00e7":2,"g":2,"o":2,"\u00f8":2,"\u0153":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"q":2,"v":10,"w":7,"y":4,"\u00fd":4,"\u00ff":4,"C":2,"\u00c7":2,"G":2,"O":2,"\u00d8":2,"\u0152":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"Q":2,"V":10,"W":7,"Y":4,"\u00dd":4,"\u0178":4}},"S":{"d":"80,-43v0,34,-27,56,-61,43v-3,0,-5,2,-7,4v-2,-4,-5,-7,-10,-8v5,-14,5,-60,0,-77v12,0,10,-13,15,-28v0,21,5,25,13,28v-5,10,-8,67,8,67v10,0,13,-8,13,-20v-1,-35,-11,-75,-29,-90v4,-8,0,-14,-7,-15v1,-37,-45,-154,43,-130v3,0,7,-3,8,-4v2,5,6,7,10,7v-5,15,-5,58,1,72v-9,4,-11,8,-11,29r-3,0v0,-22,-3,-25,-12,-29v4,-10,10,-63,-10,-61v-7,0,-10,6,-10,16v1,37,13,83,31,96v-6,6,-2,13,5,13v-6,22,13,57,13,87","w":78},"T":{"d":"31,-273v13,5,38,5,51,0v2,3,7,7,11,7v1,22,-3,59,4,73v-10,4,-12,11,-12,30r-3,0v0,-22,-2,-26,-12,-30v5,-8,2,-38,3,-53v0,-6,-2,-8,-6,-8v-3,0,-5,2,-5,8v2,32,-5,86,6,106v-5,2,-6,11,0,13v-11,18,-4,74,-6,104v0,5,7,7,6,1v1,-4,-2,-11,3,-10r2,29v-10,11,-28,-2,-40,7v-1,-3,-8,-7,-12,-7v3,-9,1,-23,7,-28v-2,5,4,20,4,9v0,-32,5,-82,-5,-104v4,-3,4,-11,-1,-14v11,-19,4,-75,6,-106v0,-6,-2,-8,-5,-8v-11,6,-5,48,-2,61v-12,1,-10,14,-15,30v0,-19,-3,-26,-13,-30v8,-12,4,-51,5,-73v4,0,8,-4,10,-7v4,4,15,6,19,0","w":95,"k":{"\u00e3":12,"\u00e5":12,"\u00e0":12,"\u00e4":12,"\u00e2":12,"a":12,"\u00e6":12,"\u00e1":12,":":9,",":21,".":21,";":9,"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"s":-4,"\u0161":-4,"-":17,"S":-4,"\u0160":-4}},"U":{"d":"46,-248v-6,25,-7,87,4,108v-8,3,-6,12,0,15v-10,8,-6,72,-7,97v0,9,2,14,11,14v9,0,13,-5,13,-14v-2,-32,6,-75,-6,-97v5,-3,6,-13,0,-16v11,-19,4,-72,6,-102v0,-7,-5,-7,-6,-1v-1,4,2,11,-3,10r-1,-32v8,-9,20,1,31,-7v2,4,6,7,10,7r-3,33v-7,2,0,-13,-5,-15v-3,29,-6,83,4,108v-6,4,-5,12,1,15v-19,25,10,127,-33,129v-2,-5,-24,-6,-25,0v-4,0,-24,-9,-24,-32v0,-30,5,-79,-5,-99v4,-4,4,-11,-1,-14v12,-19,4,-73,6,-104v0,-5,-4,-7,-4,-2v-1,4,3,13,-3,12r-5,-31v12,-9,29,2,43,-7v1,4,6,7,10,7r-3,32v-7,1,0,-12,-5,-14","w":100},"V":{"d":"68,-273v4,4,17,6,22,0v2,4,7,7,10,7r-4,31v-7,1,1,-12,-5,-14v-3,30,-12,79,-6,107v-6,4,-5,11,1,15v-15,27,-12,86,-18,123v-6,11,-22,0,-31,8v-1,-3,-5,-8,-8,-8v-3,-33,-2,-108,-15,-123v5,-3,6,-11,-1,-13v10,-25,2,-81,-3,-110v-4,1,-1,11,-2,16r-3,0r-5,-31v5,0,9,-5,10,-8v5,5,25,6,30,0v1,4,5,7,10,7v-2,10,3,26,-2,32v-1,-4,-5,-23,-5,-10v0,31,0,82,11,101v-6,4,-5,12,0,16v-4,10,-4,40,1,50v-1,-25,6,-52,0,-66v11,-27,10,-75,11,-107v-7,0,1,18,-8,16r0,-32v3,0,9,-3,10,-7","w":100,"k":{"\u00f6":7,"\u00f4":7,"\u00e3":12,"\u00e5":12,"\u00e0":12,"\u00e4":12,"\u00e2":12,"c":7,"\u00e7":7,"g":7,"o":7,"\u00f8":7,"\u0153":7,"\u00f3":7,"\u00f2":7,"\u00f5":7,"q":7,"C":7,"\u00c7":7,"G":7,"O":7,"\u00d8":7,"\u0152":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"Q":7,"a":12,"\u00e6":12,"\u00e1":12,":":9,",":14,".":14,";":9,"A":12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,"-":10}},"W":{"d":"12,-273v6,5,21,5,29,0v3,4,7,6,12,6r-2,32v-8,1,0,-14,-7,-16v-4,29,1,79,5,108v-6,10,-1,29,2,44v0,-52,14,-100,11,-152v-5,1,2,18,-7,16r2,-33v12,-8,25,4,36,-5v2,3,6,5,11,5r-1,34v-8,1,1,-15,-7,-17v-7,32,8,88,2,116v6,8,-2,27,5,36v-1,-52,14,-101,11,-152v-7,0,1,16,-7,16r0,-33v12,-7,23,3,32,-5v2,4,6,7,10,7r-6,32v-7,1,2,-12,-4,-14v-5,26,-17,86,-5,105v-7,2,-10,13,-2,16v-16,23,-11,87,-16,124v-7,9,-18,-1,-27,7v-1,-3,-3,-6,-7,-8v-2,-39,-3,-83,-8,-117r-3,0v-6,38,-7,79,-8,118v-8,10,-17,-1,-28,7v-2,-4,-4,-6,-8,-7v-4,-37,0,-100,-14,-124v7,-5,6,-13,-1,-16v11,-22,2,-81,-2,-109v-4,1,-1,12,-2,17r-3,0r-5,-31v5,0,11,-4,12,-7","w":149,"k":{"\u00f6":8,"\u00e4":15,"c":8,"\u00e7":8,"g":8,"o":8,"\u00f8":8,"\u0153":8,"\u00f3":8,"\u00f4":8,"\u00f2":8,"\u00f5":8,"q":8,"C":8,"\u00c7":8,"G":8,"O":8,"\u00d8":8,"\u0152":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"Q":8,"a":15,"\u00e6":15,"\u00e1":15,"\u00e2":15,"\u00e0":15,"\u00e5":15,"\u00e3":15,":":9,",":14,".":14,";":9,"A":15,"\u00c6":15,"\u00c1":15,"\u00c2":15,"\u00c4":15,"\u00c0":15,"\u00c5":15,"\u00c3":15,"-":10}},"X":{"d":"80,-273v5,5,16,5,22,0v1,3,4,6,8,6r-8,31v-7,3,2,-23,-7,-10r-22,87v-4,14,7,14,1,24v9,10,-1,8,3,28v6,30,6,67,18,91v4,-2,0,-12,0,-17r3,0r9,30v-12,10,-28,-1,-41,7v-3,-3,-7,-5,-11,-5r-4,-32v8,0,1,15,9,16v0,-22,-4,-53,-11,-72v-4,24,-14,49,-13,72v5,-1,2,-15,8,-16r-2,32v-12,7,-22,-3,-33,5v-1,-3,-5,-7,-9,-8r8,-29r3,0v0,4,-4,12,0,14v13,-24,15,-61,24,-89v5,-15,-6,-17,1,-26v0,-4,-3,-7,-6,-8v7,-31,-9,-71,-12,-104v-1,-4,-5,-8,-5,-2r2,12r-3,0r-8,-31v4,-1,7,-3,8,-6v6,5,25,5,32,0v2,4,7,7,12,7r3,30v-8,1,-1,-13,-8,-15v-1,20,4,47,8,66v3,-22,16,-48,13,-67v-5,1,1,17,-7,16r1,-30v5,0,11,-3,14,-7","w":109,"k":{"c":7,"\u00e7":7,"g":7,"o":7,"\u00f8":7,"\u0153":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"q":7,"C":7,"\u00c7":7,"G":7,"O":7,"\u00d8":7,"\u0152":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"Q":7}},"Y":{"d":"60,-267v12,-7,23,1,33,-6v1,3,4,7,7,7v-3,10,-1,25,-7,31v0,-5,1,-22,-4,-11v-3,31,-19,77,-13,105v-6,-1,-9,11,-3,14v-12,11,-12,87,-6,112v4,-1,1,-11,2,-16r3,0r4,29v-14,9,-29,-3,-43,6v-2,-3,-6,-6,-10,-6r3,-31v7,-1,-1,15,6,16v4,-24,6,-100,-8,-110v6,-5,5,-14,-2,-16v5,-28,-5,-81,-13,-108v-5,1,3,15,-4,14r-5,-30v11,-10,27,2,39,-6v1,3,5,6,10,6r2,29v-7,3,-2,-20,-9,-10r12,89v3,-30,15,-65,13,-93v-7,1,0,17,-8,17","w":99,"k":{"\u00f6":2,"c":2,"\u00e7":2,"g":2,"o":2,"\u00f8":2,"\u0153":2,"\u00f3":2,"\u00f4":2,"\u00f2":2,"\u00f5":2,"q":2,"C":2,"\u00c7":2,"G":2,"O":2,"\u00d8":2,"\u0152":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"Q":2,"a":19,"\u00e6":19,"\u00e1":19,"\u00e2":19,"\u00e4":19,"\u00e0":19,"\u00e5":19,"\u00e3":19,":":12,",":23,".":23,";":12,"A":19,"\u00c6":19,"\u00c1":19,"\u00c2":19,"\u00c4":19,"\u00c0":19,"\u00c5":19,"\u00c3":19,"-":12}},"Z":{"d":"15,-273v9,9,30,-5,46,4v4,0,6,-2,8,-4v1,3,3,6,6,6v-4,40,-24,87,-15,125v-7,2,-8,10,-2,14v-14,20,-14,69,-21,98v-2,12,0,15,8,15v20,0,9,-44,6,-60v9,-5,12,-7,12,-29r3,0v0,22,1,25,11,29v-6,12,-5,59,0,72v-14,15,-51,-2,-65,7v-1,-3,-4,-6,-8,-6v4,-40,19,-88,14,-126v7,-2,8,-11,3,-16v12,-19,14,-66,20,-94v3,-14,-1,-17,-9,-17v-16,0,-9,48,-5,61v-12,2,-9,14,-14,30v0,-22,-3,-25,-12,-30v6,-10,4,-60,0,-72v5,1,13,-4,14,-7","w":78},"[":{"d":"18,-274v11,4,26,1,41,0v1,4,6,8,9,10v-3,1,-8,5,-9,9v-4,-6,-18,-6,-17,8v2,32,-5,85,6,105v-6,4,-5,11,0,14v-9,14,-4,75,-6,104v-1,16,13,13,17,8v1,4,6,9,9,10v-10,17,-35,3,-50,10v-11,-12,7,-109,-8,-132v6,-3,5,-10,0,-14v10,-22,9,-97,2,-125v2,0,6,-4,6,-7","w":69},"\\":{"d":"69,16r-16,0r-52,-296r16,0","w":72},"]":{"d":"10,-274v13,2,29,4,41,0v12,13,-8,106,8,132v-6,4,-5,11,0,14v-8,18,-9,100,-2,125v-11,12,-35,0,-47,7v-1,-4,-5,-8,-8,-10v3,-1,7,-6,8,-10v4,5,19,8,18,-8v-2,-29,3,-89,-6,-104v6,-3,5,-10,0,-14v11,-19,4,-74,6,-105v1,-15,-13,-14,-18,-8v-1,-4,-5,-8,-8,-9v3,-2,7,-6,8,-10","w":69},"^":{"d":"111,-166r-21,0r-31,-78r-29,78r-20,0r40,-99r19,0","w":120},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"\u2018":{"d":"14,-194v-13,-17,-5,-92,18,-77v-1,10,-19,27,-5,35v7,-4,7,0,13,3r0,32v-3,0,-7,3,-7,7v-4,-5,-15,-5,-19,0","w":47,"k":{"\u2018":8,"t":2,"v":4,"w":4,"y":9,"\u00fd":9,"\u00ff":9,"T":2,"V":4,"W":4,"Y":9,"\u00dd":9,"\u0178":9,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,"x":9,"X":9,"j":30,"J":30}},"a":{"d":"35,-273v5,5,23,5,28,0v1,4,3,6,6,7v5,34,3,104,17,123v-6,4,-5,12,0,15v-8,24,-2,84,5,111v6,-1,0,-14,5,-16r4,30v-8,11,-27,-2,-38,7v-1,-4,-6,-7,-10,-7r-1,-29v7,-3,2,24,8,10v-5,-17,7,-49,-21,-44v-12,6,-7,35,-6,49v6,-1,0,-15,6,-16r0,31v-8,9,-21,-3,-30,6v-1,-4,-5,-7,-8,-7r2,-30v8,-1,-2,14,6,15v5,-29,10,-83,4,-110v4,-3,4,-12,0,-15v14,-21,12,-88,17,-123v3,-1,5,-4,6,-7xm44,-201v-8,17,2,52,-3,66v8,8,-17,37,3,42v20,-4,-5,-34,4,-42v-5,-17,3,-48,-4,-66","w":99},"b":{"d":"93,-33v0,55,-45,28,-79,36v-1,-4,-8,-7,-12,-7r3,-32v6,-3,1,30,8,10v-2,-31,5,-86,-7,-102v6,-4,7,-10,0,-14v12,-13,8,-82,5,-109v-3,1,-2,11,-2,16r-3,0r-4,-32v4,0,11,-3,12,-7v7,10,26,1,39,1v56,2,37,65,40,115v0,8,-7,20,-17,24v27,11,17,65,17,101xm42,-111r0,85v0,8,3,13,11,13v8,0,10,-5,10,-13r0,-85v0,-6,-1,-12,-10,-12v-9,0,-11,6,-11,12xm42,-240r0,86v0,9,5,13,11,13v5,0,10,-3,10,-13r0,-86v0,-8,-2,-14,-10,-14v-9,0,-11,6,-11,14","w":99},"c":{"d":"11,-223v1,-53,23,-54,54,-45v9,-3,8,3,16,4v-5,13,-5,59,1,71v-9,3,-12,8,-12,27r-3,0v0,-21,-4,-25,-12,-28v5,-11,3,-29,3,-45v0,-8,-1,-15,-9,-15v-6,0,-9,6,-9,15v1,27,-4,82,5,96v-6,4,-5,11,0,16v-9,18,-3,70,-5,99v0,9,3,14,9,14v16,0,9,-48,6,-64v11,-1,9,-12,14,-29v0,22,4,25,13,29v-9,27,8,87,-36,82v-54,8,-24,-92,-41,-131v7,-5,6,-11,0,-16v10,-12,5,-56,6,-80","w":83,"k":{"c":4,"\u00e7":4,"g":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"q":4}},"d":{"d":"94,-39v-4,54,-34,43,-70,39v-4,0,-7,1,-11,4v-2,-4,-6,-7,-10,-7r2,-31v6,-4,1,31,8,10v-2,-32,5,-86,-7,-105v6,-5,5,-9,0,-16v12,-19,8,-78,5,-107v-2,5,2,15,-5,15r-3,-29v5,0,10,-4,11,-7v13,9,26,0,43,0v60,0,25,88,43,128v-7,7,-7,9,0,16v-9,11,-5,65,-6,90xm42,-237v2,29,-6,77,7,93v-9,4,-10,10,-1,16v-12,18,-6,68,-6,97v0,14,5,17,11,17v7,0,11,-3,11,-17v-2,-30,5,-80,-7,-97v8,-4,6,-10,1,-16v11,-17,4,-65,6,-93v0,-14,-2,-19,-11,-19v-8,0,-11,5,-11,19","w":105},"e":{"d":"59,-93v-18,1,2,-27,-10,-31v-6,0,-6,5,-6,25r0,74v0,9,3,11,11,11v15,0,9,-48,6,-64v12,-1,10,-14,15,-30v0,24,3,26,13,31v-7,11,-6,61,-1,73v-18,15,-54,-2,-74,8v-1,-3,-7,-7,-11,-8r3,-32v7,-3,0,28,8,12v-1,-30,4,-91,-7,-105v7,-3,6,-11,0,-15v11,-17,9,-79,5,-107v-5,0,-2,11,-3,16r-3,0r-3,-31v5,0,8,-3,11,-7v16,10,39,-5,56,4v3,0,6,-2,9,-4v1,3,5,7,9,7v-5,13,-4,54,-1,71v-10,4,-11,9,-11,30r-3,0v0,-20,-3,-26,-13,-30v5,-8,10,-60,-6,-60v-6,0,-10,5,-10,19r0,71v-1,21,8,22,11,12v-4,-8,-3,-23,6,-23v-6,12,18,21,3,33r8,7r-9,6v18,13,-11,25,-3,37","w":89},"f":{"d":"60,-93v-20,-1,4,-29,-11,-31v-4,0,-6,3,-6,12v2,30,-5,69,3,94v7,1,-1,-14,5,-15r4,30v-11,11,-29,-2,-41,7v-1,-3,-7,-7,-11,-7r3,-31v7,-1,0,13,5,16v4,-28,6,-88,-4,-111v5,-2,5,-12,0,-14v10,-21,7,-78,4,-107v-6,0,3,17,-6,15r-2,-30v21,-13,56,0,77,-5v1,3,4,6,8,6v-5,9,-7,56,-1,70v-10,4,-12,9,-12,28r-3,0v0,-19,-3,-24,-13,-27v7,-8,4,-30,4,-44v0,-13,-3,-16,-10,-16v-7,0,-10,3,-10,16r0,75v-1,18,7,18,12,11v-2,-7,-9,-23,4,-24v-5,12,20,21,3,34r9,6r-9,8v19,10,-13,22,-2,34","w":86,"k":{"a":12,"\u00e6":12,"\u00e1":12,"\u00e2":12,"\u00e4":12,"\u00e0":12,"\u00e5":12,"\u00e3":12,":":9,",":30,".":30,";":9}},"g":{"d":"11,-241v0,-34,37,-35,63,-28v3,0,5,-1,7,-4v2,5,5,7,9,7v-4,7,-7,62,2,69v-9,5,-12,9,-12,30r-3,0v0,-21,-1,-25,-11,-30v6,-9,4,-70,-11,-58v-24,0,-15,94,-8,113v-6,4,-7,9,-1,13v-9,16,-4,66,-5,94v0,18,3,22,9,22v14,-6,8,-63,6,-83v-5,0,-2,13,-3,18r-3,0r-2,-33v4,0,9,-2,10,-7v6,6,25,5,31,0v1,5,6,7,10,7v-3,10,0,26,-6,33v2,-7,-2,-29,-6,-12r0,87v-6,6,-6,7,-16,3v-25,7,-58,6,-60,-30v-1,-28,4,-86,-6,-99v6,-4,5,-8,0,-13v10,-12,6,-72,6,-99","w":94},"h":{"d":"70,-273v4,6,25,5,29,0v1,3,6,7,9,7r-3,30v-7,1,1,-13,-5,-16v-1,27,-6,95,6,109v-6,4,-5,13,0,16v-11,16,-8,81,-5,109v5,1,-2,-17,5,-16r3,31v-9,9,-30,-1,-40,7v-1,-3,-8,-7,-12,-7v3,-10,1,-25,7,-32v-1,6,2,27,5,12r0,-84v0,-18,-7,-21,-14,-21v-8,0,-13,4,-13,21v0,29,-4,65,3,88v6,0,0,-15,5,-16r4,32v-3,0,-9,4,-9,7v-5,-5,-26,-5,-30,0v-1,-3,-9,-8,-13,-8r3,-32v8,-1,-2,16,6,17v4,-27,6,-87,-4,-109v7,-4,6,-12,0,-16v9,-15,8,-82,4,-108v-4,1,-1,10,-2,15r-3,0r-3,-31v11,-8,30,4,41,-5v1,2,8,6,12,6r-5,30v-7,1,1,-13,-5,-16v-3,0,-4,2,-4,9r0,80v0,16,4,21,13,21v10,0,14,-7,14,-21v-1,-29,3,-63,-2,-88v-4,1,-1,12,-2,17r-3,0r-2,-32v4,0,9,-4,10,-6","w":111},"i":{"d":"14,-273v5,5,23,5,28,0v1,4,7,7,11,7v-3,10,0,26,-6,33v1,-6,-1,-27,-4,-13v2,31,-5,86,6,104v-6,2,-5,12,0,14v-10,20,-7,79,-4,109v6,0,-3,-14,5,-13r2,29v-9,9,-29,-1,-39,7v-3,-4,-7,-7,-11,-8r4,-30v7,-1,-1,14,5,16v3,-27,6,-88,-3,-110v5,-2,6,-12,0,-14v9,-21,6,-80,3,-109v-4,1,-1,11,-2,16r-3,0r-3,-31v3,0,10,-4,11,-7","w":55},"j":{"d":"41,-273v5,5,23,5,28,0v2,3,7,7,11,7v-2,9,1,24,-5,29v2,-9,-6,-27,-6,-8v0,30,-5,84,6,101v-6,2,-5,13,0,15v-18,30,15,137,-39,133v-40,5,-33,-47,-36,-82v9,-5,11,-9,11,-30r3,0v0,24,2,25,11,29v-6,8,-2,34,-3,49v0,12,2,16,9,16v7,0,9,-4,9,-16v-1,-30,4,-79,-5,-99v6,-3,5,-12,0,-15v9,-20,6,-80,3,-109v-5,0,2,16,-5,15r-4,-29v4,0,11,-3,12,-6","w":82},"k":{"d":"102,4v-6,-5,-23,-6,-30,0v-2,-3,-7,-7,-12,-7v1,-9,-6,-24,-1,-30v0,6,11,25,8,9r-16,-99v-10,25,-11,72,-6,105v6,1,0,-14,5,-15r4,30v-11,10,-29,-1,-41,7v-1,-3,-7,-8,-10,-8v3,-10,-1,-26,5,-32v-2,7,3,27,5,11v-2,-31,5,-89,-7,-105v6,-3,7,-11,0,-15v12,-18,8,-79,5,-108v-4,-1,-3,11,-3,16r-3,0r-2,-30v4,0,10,-3,12,-6v6,5,23,5,30,0v1,3,6,6,10,6v-2,10,1,25,-5,31v1,-8,-7,-24,-7,-7r1,93v9,-34,26,-68,30,-101v-6,-2,-5,18,-10,15r7,-31v5,0,11,-3,12,-6v4,6,14,4,19,0v2,2,6,6,10,6r-10,32r-3,0v1,-5,6,-13,1,-15v-12,30,-39,76,-14,107v-7,4,-4,15,2,16v-8,29,6,81,13,111v4,-2,-2,-15,3,-16r6,29v-3,0,-7,4,-8,7","w":110,"k":{"c":5,"\u00e7":5,"g":5,"q":5}},"l":{"d":"13,-104v1,-24,-10,-22,-3,-34v-7,-10,4,-16,3,-36v-2,-25,4,-58,-3,-78v-4,0,1,15,-4,15r-2,-30v4,0,9,-3,10,-6v5,5,24,4,29,0v2,3,8,6,12,6v-3,9,0,24,-6,30v3,-8,-7,-23,-7,-7v0,29,-5,83,6,99v-6,2,-5,12,0,14v-12,18,-4,70,-6,100v0,10,2,16,12,16v22,0,10,-49,8,-60v10,-4,11,-8,11,-29r3,0v0,20,2,25,12,29v-7,8,-5,64,0,72v-20,14,-54,-2,-74,7v-1,-3,-6,-8,-11,-8r2,-29v7,-3,0,24,8,9r0,-80","w":87,"k":{"t":14,"v":12,"w":9,"y":14,"\u00fd":14,"\u00ff":14,"\u201d":26,"\u2019":26,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4}},"m":{"d":"95,-273v6,5,23,5,30,0v1,3,7,7,11,7r-3,31v-7,1,1,-13,-5,-15v-4,25,-5,89,4,107v-4,3,-4,11,1,14v-11,13,-6,79,-7,108v0,3,1,3,3,3v5,-1,1,-11,2,-16r3,0r4,31v-10,10,-29,-2,-41,7v-1,-3,-8,-8,-12,-8r3,-29v6,-3,2,28,8,8v-1,-29,3,-88,-5,-104v3,-3,5,-10,0,-14v4,-6,9,-51,3,-64v-4,21,-2,54,-9,70v5,34,-11,92,-13,134v-3,0,-6,3,-7,7v-2,-4,-6,-7,-8,-7r-11,-97v-10,-41,0,-49,-13,-107v-3,25,7,61,2,71v2,22,-5,77,-2,114v0,4,1,4,3,4v6,1,-3,-16,5,-15r5,30v-9,8,-22,0,-32,7v-2,-3,-7,-7,-11,-7r3,-32v8,-1,-1,14,5,17v4,-27,5,-90,-4,-111v6,-3,5,-11,0,-14v10,-17,7,-81,4,-108v-7,-1,2,16,-6,15r-3,-30v4,0,11,-5,12,-7v6,5,24,4,30,0v2,3,9,6,14,6r10,105r3,0r11,-105v5,0,11,-4,13,-6","w":138},"n":{"d":"62,-267v13,-8,22,1,33,-6v1,3,5,6,9,6r-2,31v-6,4,-2,-28,-8,-8v1,31,-5,84,6,102v-7,5,-5,11,1,15v-11,22,-6,88,-8,124v-4,0,-11,3,-14,7v-3,-4,-9,-6,-13,-6v-8,-39,-11,-95,-25,-125v4,-5,5,-11,-1,-16v2,-15,-1,-40,-7,-52v0,16,-2,45,4,53v-5,4,-6,11,0,15v-8,22,-2,74,-4,105v1,8,5,6,6,0v1,-3,-2,-11,2,-11r3,30v-11,7,-20,0,-31,7v-2,-4,-7,-7,-11,-7r3,-30v6,-3,1,29,8,9v-2,-31,5,-85,-6,-103v6,-4,5,-10,0,-15v11,-17,4,-74,6,-104v1,-8,-6,-9,-5,-1v-1,4,3,12,-3,11r-4,-31v5,0,10,-3,13,-6v5,5,17,4,22,0v2,3,8,7,12,6v10,40,13,88,26,125r0,-105v0,-4,-2,-4,-3,-4v-5,-1,0,15,-5,16","w":105},"o":{"d":"11,-169v-2,-48,-5,-120,42,-100v18,-8,37,-4,40,28v3,27,-5,84,6,96v-5,4,-7,11,0,15v-10,10,-4,64,-6,89v-3,39,-21,51,-41,41v-62,23,-28,-86,-48,-128v6,-3,7,-11,0,-14v4,-4,7,-7,7,-27xm42,-243v1,29,-5,84,6,99v-7,5,-6,12,0,17v-11,17,-4,70,-6,99v0,10,3,14,10,14v6,0,10,-3,10,-14v-1,-28,4,-88,-6,-101v6,-3,5,-11,0,-14v12,-19,4,-69,6,-100v0,-8,-2,-12,-10,-12v-8,0,-10,3,-10,12","k":{"v":7,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"x":7}},"p":{"d":"14,-273v10,8,29,0,42,0v59,0,39,62,39,112v0,27,-20,36,-38,36v-13,0,-15,9,-15,32v0,24,-4,56,3,75v7,0,-1,-14,5,-16r3,31v-9,10,-28,-1,-39,7v-2,-4,-9,-8,-13,-8r4,-31v6,-3,1,28,8,10v-2,-31,5,-82,-5,-102v5,-2,7,-12,1,-14v8,-26,5,-79,2,-109v-6,-1,0,15,-5,16r-3,-31v5,0,10,-4,11,-8xm42,-240r0,82v0,10,3,14,11,14v8,0,12,-5,12,-14r0,-82v0,-10,-4,-15,-12,-15v-7,0,-11,5,-11,15","w":99,"k":{"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e4":9,"\u00e0":9,"\u00e5":9,"\u00e3":9,",":44,".":44}},"q":{"d":"4,-142v18,-37,-12,-153,48,-127v19,-7,37,-5,41,28v3,27,-5,84,6,96v-6,4,-8,11,0,15v-15,18,4,105,-15,123v18,1,13,22,26,26v0,2,-9,5,-15,5v-15,-1,-17,-27,-43,-20v-69,4,-25,-87,-48,-133v7,-3,6,-11,0,-13xm42,-243v1,29,-5,84,6,99v-6,4,-7,11,0,16v-11,17,-4,70,-6,100v0,11,3,13,10,13v6,0,10,-2,10,-13v-1,-28,4,-89,-7,-101v6,-3,7,-11,1,-15v12,-20,4,-68,6,-99v0,-8,-2,-13,-10,-13v-8,0,-10,4,-10,13","k":{"y":2,"\u00fd":2,"\u00ff":2}},"r":{"d":"14,-273v11,9,27,0,43,0v15,0,38,11,38,38v0,36,9,92,-18,101v31,11,11,79,20,115v5,0,-2,-15,5,-14r3,30v-9,7,-18,2,-30,7v-1,-4,-6,-10,-10,-10r0,-102v0,-13,-4,-16,-12,-16v-8,0,-10,2,-10,15v2,26,-4,72,4,89v4,-1,-3,-14,4,-13r4,30v-4,0,-11,4,-13,7v-6,-5,-22,-5,-29,0v-1,-3,-9,-7,-12,-7r4,-33v7,-1,-1,13,6,15v4,-28,6,-86,-5,-108v5,-4,6,-10,-1,-14v13,-15,9,-79,6,-107v-5,-1,2,17,-5,16r-3,-33v4,1,10,-3,11,-6xm43,-240r0,85v0,10,3,13,11,13v8,0,11,-3,11,-17r0,-80v0,-19,-23,-19,-22,-1","w":105,"k":{"c":2,"\u00e7":2,"g":2,"o":2,"\u00f8":2,"\u0153":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"q":2,"v":10,"w":7,"y":4,"\u00fd":4,"\u00ff":4}},"s":{"d":"80,-43v0,34,-27,56,-61,43v-3,0,-5,2,-7,4v-2,-4,-5,-7,-10,-8v5,-14,5,-60,0,-77v12,0,10,-13,15,-28v0,21,5,25,13,28v-5,10,-8,67,8,67v10,0,13,-8,13,-20v-1,-35,-11,-75,-29,-90v4,-8,0,-14,-7,-15v1,-37,-45,-154,43,-130v3,0,7,-3,8,-4v2,5,6,7,10,7v-5,15,-5,58,1,72v-9,4,-11,8,-11,29r-3,0v0,-22,-3,-25,-12,-29v4,-10,10,-63,-10,-61v-7,0,-10,6,-10,16v1,37,13,83,31,96v-6,6,-2,13,5,13v-6,22,13,57,13,87","w":78},"t":{"d":"31,-273v13,5,38,5,51,0v2,3,7,7,11,7v1,22,-3,59,4,73v-10,4,-12,11,-12,30r-3,0v0,-22,-2,-26,-12,-30v5,-8,2,-38,3,-53v0,-6,-2,-8,-6,-8v-3,0,-5,2,-5,8v2,32,-5,86,6,106v-5,2,-6,11,0,13v-11,18,-4,74,-6,104v0,5,7,7,6,1v1,-4,-2,-11,3,-10r2,29v-10,11,-28,-2,-40,7v-1,-3,-8,-7,-12,-7v3,-9,1,-23,7,-28v-2,5,4,20,4,9v0,-32,5,-82,-5,-104v4,-3,4,-11,-1,-14v11,-19,4,-75,6,-106v0,-6,-2,-8,-5,-8v-11,6,-5,48,-2,61v-12,1,-10,14,-15,30v0,-19,-3,-26,-13,-30v8,-12,4,-51,5,-73v4,0,8,-4,10,-7v4,4,15,6,19,0","w":95,"k":{"a":12,"\u00e6":12,"\u00e1":12,"\u00e2":12,"\u00e4":12,"\u00e0":12,"\u00e5":12,"\u00e3":12,":":9,",":21,".":21,";":9,"s":-4,"\u0161":-4,"-":17}},"u":{"d":"46,-248v-6,25,-7,87,4,108v-8,3,-6,12,0,15v-10,8,-6,72,-7,97v0,9,2,14,11,14v9,0,13,-5,13,-14v-2,-32,6,-75,-6,-97v5,-3,6,-13,0,-16v11,-19,4,-72,6,-102v0,-7,-5,-7,-6,-1v-1,4,2,11,-3,10r-1,-32v8,-9,20,1,31,-7v2,4,6,7,10,7r-3,33v-7,2,0,-13,-5,-15v-3,29,-6,83,4,108v-6,4,-5,12,1,15v-19,25,10,127,-33,129v-2,-5,-24,-6,-25,0v-4,0,-24,-9,-24,-32v0,-30,5,-79,-5,-99v4,-4,4,-11,-1,-14v12,-19,4,-73,6,-104v0,-5,-4,-7,-4,-2v-1,4,3,13,-3,12r-5,-31v12,-9,29,2,43,-7v1,4,6,7,10,7r-3,32v-7,1,0,-12,-5,-14","w":100},"v":{"d":"68,-273v4,4,17,6,22,0v2,4,7,7,10,7r-4,31v-7,1,1,-12,-5,-14v-3,30,-12,79,-6,107v-6,4,-5,11,1,15v-15,27,-12,86,-18,123v-6,11,-22,0,-31,8v-1,-3,-5,-8,-8,-8v-3,-33,-2,-108,-15,-123v5,-3,6,-11,-1,-13v10,-25,2,-81,-3,-110v-4,1,-1,11,-2,16r-3,0r-5,-31v5,0,9,-5,10,-8v5,5,25,6,30,0v1,4,5,7,10,7v-2,10,3,26,-2,32v-1,-4,-5,-23,-5,-10v0,31,0,82,11,101v-6,4,-5,12,0,16v-4,10,-4,40,1,50v-1,-25,6,-52,0,-66v11,-27,10,-75,11,-107v-7,0,1,18,-8,16r0,-32v3,0,9,-3,10,-7","w":100,"k":{"c":7,"\u00e7":7,"g":7,"o":7,"\u00f8":7,"\u0153":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"q":7,"a":12,"\u00e6":12,"\u00e1":12,"\u00e2":12,"\u00e4":12,"\u00e0":12,"\u00e5":12,"\u00e3":12,":":9,",":14,".":14,";":9,"-":10}},"w":{"d":"12,-273v6,5,21,5,29,0v3,4,7,6,12,6r-2,32v-8,1,0,-14,-7,-16v-4,29,1,79,5,108v-6,10,-1,29,2,44v0,-52,14,-100,11,-152v-5,1,2,18,-7,16r2,-33v12,-8,25,4,36,-5v2,3,6,5,11,5r-1,34v-8,1,1,-15,-7,-17v-7,32,8,88,2,116v6,8,-2,27,5,36v-1,-52,14,-101,11,-152v-7,0,1,16,-7,16r0,-33v12,-7,23,3,32,-5v2,4,6,7,10,7r-6,32v-7,1,2,-12,-4,-14v-5,26,-17,86,-5,105v-7,2,-10,13,-2,16v-16,23,-11,87,-16,124v-7,9,-18,-1,-27,7v-1,-3,-3,-6,-7,-8v-2,-39,-3,-83,-8,-117r-3,0v-6,38,-7,79,-8,118v-8,10,-17,-1,-28,7v-2,-4,-4,-6,-8,-7v-4,-37,0,-100,-14,-124v7,-5,6,-13,-1,-16v11,-22,2,-81,-2,-109v-4,1,-1,12,-2,17r-3,0r-5,-31v5,0,11,-4,12,-7","w":149,"k":{"c":8,"\u00e7":8,"g":8,"o":8,"\u00f8":8,"\u0153":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,"q":8,"a":15,"\u00e6":15,"\u00e1":15,"\u00e2":15,"\u00e4":15,"\u00e0":15,"\u00e5":15,"\u00e3":15,":":9,",":14,".":14,";":9,"-":10}},"x":{"d":"80,-273v5,5,16,5,22,0v1,3,4,6,8,6r-8,31v-7,3,2,-23,-7,-10r-22,87v-4,14,7,14,1,24v9,10,-1,8,3,28v6,30,6,67,18,91v4,-2,0,-12,0,-17r3,0r9,30v-12,10,-28,-1,-41,7v-3,-3,-7,-5,-11,-5r-4,-32v8,0,1,15,9,16v0,-22,-4,-53,-11,-72v-4,24,-14,49,-13,72v5,-1,2,-15,8,-16r-2,32v-12,7,-22,-3,-33,5v-1,-3,-5,-7,-9,-8r8,-29r3,0v0,4,-4,12,0,14v13,-24,15,-61,24,-89v5,-15,-6,-17,1,-26v0,-4,-3,-7,-6,-8v7,-31,-9,-71,-12,-104v-1,-4,-5,-8,-5,-2r2,12r-3,0r-8,-31v4,-1,7,-3,8,-6v6,5,25,5,32,0v2,4,7,7,12,7r3,30v-8,1,-1,-13,-8,-15v-1,20,4,47,8,66v3,-22,16,-48,13,-67v-5,1,1,17,-7,16r1,-30v5,0,11,-3,14,-7","w":109,"k":{"c":7,"\u00e7":7,"g":7,"o":7,"\u00f8":7,"\u0153":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"q":7}},"y":{"d":"60,-267v12,-7,23,1,33,-6v1,3,4,7,7,7v-3,10,-1,25,-7,31v0,-5,1,-22,-4,-11v-3,31,-19,77,-13,105v-6,-1,-9,11,-3,14v-12,11,-12,87,-6,112v4,-1,1,-11,2,-16r3,0r4,29v-14,9,-29,-3,-43,6v-2,-3,-6,-6,-10,-6r3,-31v7,-1,-1,15,6,16v4,-24,6,-100,-8,-110v6,-5,5,-14,-2,-16v5,-28,-5,-81,-13,-108v-5,1,3,15,-4,14r-5,-30v11,-10,27,2,39,-6v1,3,5,6,10,6r2,29v-7,3,-2,-20,-9,-10r12,89v3,-30,15,-65,13,-93v-7,1,0,17,-8,17","w":99,"k":{"c":2,"\u00e7":2,"g":2,"o":2,"\u00f8":2,"\u0153":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"q":2,"a":19,"\u00e6":19,"\u00e1":19,"\u00e2":19,"\u00e4":19,"\u00e0":19,"\u00e5":19,"\u00e3":19,":":12,",":23,".":23,";":12,"-":12}},"z":{"d":"15,-273v9,9,30,-5,46,4v4,0,6,-2,8,-4v1,3,3,6,6,6v-4,40,-24,87,-15,125v-7,2,-8,10,-2,14v-14,20,-14,69,-21,98v-2,12,0,15,8,15v20,0,9,-44,6,-60v9,-5,12,-7,12,-29r3,0v0,22,1,25,11,29v-6,12,-5,59,0,72v-14,15,-51,-2,-65,7v-1,-3,-4,-6,-8,-6v4,-40,19,-88,14,-126v7,-2,8,-11,3,-16v12,-19,14,-66,20,-94v3,-14,-1,-17,-9,-17v-16,0,-9,48,-5,61v-12,2,-9,14,-14,30v0,-22,-3,-25,-12,-30v6,-10,4,-60,0,-72v5,1,13,-4,14,-7","w":78},"{":{"d":"63,3v-33,-11,-41,-55,-41,-112v0,-20,-5,-20,-14,-16v0,-5,-5,-8,-9,-10v8,-2,7,-13,16,-8v11,0,7,-35,7,-49v0,-50,16,-69,41,-83v2,3,7,5,11,6v-3,3,-3,8,-2,11v-46,-2,0,108,-42,123v41,9,-3,121,42,120v-1,3,-1,7,2,11v-4,1,-10,4,-11,7","w":75},"|":{"d":"20,-308r24,0r0,410r-24,0r0,-410","w":63},"}":{"d":"12,-275v33,13,46,55,42,115v-1,19,4,19,13,15v0,4,5,9,9,10v-8,2,-7,13,-16,8v-9,-1,-6,35,-6,48v0,49,-16,70,-42,82v-1,-3,-7,-6,-11,-7v3,-4,3,-8,2,-11v45,3,1,-107,43,-120v-41,-10,3,-122,-42,-123v1,-3,0,-8,-3,-11v4,-1,9,-3,11,-6","w":75},"~":{"d":"37,-127v29,0,45,39,58,-2r10,8v-5,17,-17,29,-29,29v-20,0,-49,-40,-58,1r-10,-7v6,-17,15,-29,29,-29","w":112},"\u00a1":{"d":"25,-215v13,13,8,61,22,72v-5,6,-4,12,1,17v-12,20,-4,72,-6,104v0,6,6,7,5,0v1,-4,-3,-12,3,-11r3,30v-10,10,-30,-1,-41,7v-1,-4,-5,-8,-9,-8r2,-28v7,-4,1,27,8,9v-2,-32,6,-83,-7,-103v8,-3,8,-14,1,-17v13,-11,12,-55,18,-72xm17,-273v3,5,16,5,19,0v8,8,10,37,0,45v-4,-4,-15,-4,-19,0v-10,-6,-11,-37,0,-45","w":55},"\u00a2":{"d":"37,-50v-40,4,-20,-57,-34,-78v7,-4,6,-10,0,-14v14,-17,-6,-85,34,-80v0,-12,1,-35,-1,-44v4,-1,6,-3,8,-6v13,3,5,26,7,50v29,2,23,27,27,51v-11,1,-9,10,-14,18v0,-15,-3,-15,-12,-18v4,-6,8,-38,-6,-38v-17,4,-11,54,-3,67v-6,2,-7,12,0,14v-8,6,-6,39,-6,56v0,6,3,10,9,10v14,1,10,-30,6,-39v11,-1,9,-9,14,-19v0,14,3,16,12,19v-4,19,3,53,-28,51v1,15,-2,40,2,50v-4,1,-7,3,-8,6v-13,-3,-5,-33,-7,-56","w":82},"\u00a3":{"d":"13,-146v-4,-22,-25,-151,29,-123v31,-16,38,20,35,56v0,9,1,13,3,16v-11,2,-10,13,-15,29v0,-20,-4,-25,-14,-29v3,-11,10,-55,-5,-59v-9,0,-10,6,-10,21v0,39,5,76,5,89v13,0,22,-1,23,-2v-2,4,-3,15,0,19v-1,-1,-10,-1,-23,-1v0,55,-10,86,-10,99v0,5,2,6,12,6v17,5,12,-22,13,-39v0,-11,0,-16,-2,-19v10,0,9,-13,14,-28v0,21,3,25,13,28v-5,15,-5,61,0,77v-13,9,-40,12,-60,6v-9,6,-8,-4,-16,-5v5,-19,15,-95,10,-126v-9,0,-16,1,-17,2v3,-4,4,-14,0,-18v1,1,6,1,15,1","w":83},"\u2044":{"d":"-4,5r-17,0r70,-277r17,0","w":44},"\u00a5":{"d":"60,-267v12,-7,23,1,33,-6v1,3,4,7,7,7v-3,10,-1,25,-7,31v0,-5,1,-22,-4,-11r-25,140v13,0,23,0,24,-1v-3,5,-2,14,0,19v-1,-1,-11,-2,-24,-2v2,24,-4,56,3,75v4,-1,1,-11,2,-16r3,0r4,29v-14,9,-29,-3,-43,6v-2,-3,-6,-6,-10,-6r3,-31v7,-1,-1,15,6,16v5,-19,0,-50,2,-73v-13,0,-23,1,-25,2v3,-4,4,-15,0,-19v1,1,11,1,24,1v-9,-47,-11,-102,-24,-145v-4,1,3,15,-4,14r-5,-30v10,-10,27,2,39,-6v1,3,5,6,10,6r2,29v-7,1,-2,-11,-7,-13v1,27,4,67,11,92v3,-30,15,-65,12,-93v-7,1,0,17,-8,17","w":99},"\u0192":{"d":"60,-55v1,61,-19,61,-55,57v0,-4,-2,-10,-5,-13v4,0,10,-3,12,-7v11,8,19,9,19,-21r0,-100v-9,0,-15,1,-17,2v3,-4,4,-14,0,-18v1,1,8,1,17,1v0,-47,-8,-130,37,-119v6,1,10,5,17,4v0,4,3,10,6,13v-4,0,-10,3,-11,7v-10,-8,-20,-9,-20,22r0,73v13,0,21,-1,22,-2v-2,5,-3,15,0,20v-1,-1,-9,-2,-22,-2r0,83","w":91},"\u00a7":{"d":"73,-38v0,-43,-63,-49,-63,-104v0,-16,6,-33,20,-47v-24,-28,-3,-99,34,-91v11,0,21,4,27,10r-5,21v-17,-16,-43,-14,-43,24v0,21,15,32,27,39v35,20,44,80,16,111v21,29,6,94,-35,94v-14,0,-28,-5,-34,-13r5,-21v5,5,14,12,25,12v19,0,26,-19,26,-35xm43,-177v-18,20,-13,54,7,68v10,7,18,15,23,22v18,-18,9,-64,-10,-73","w":113},"\u00a4":{"d":"94,-73r-10,10r-15,-19v-14,15,-32,15,-46,0r-14,19r-9,-10r15,-20v-14,-22,-13,-57,0,-78r-15,-21r10,-9r13,19v14,-17,35,-13,47,0r14,-19r10,9r-17,21v14,22,15,56,0,78xm72,-132v0,-26,-10,-44,-26,-44v-15,0,-25,18,-25,44v0,25,11,43,26,43v15,0,25,-17,25,-43","w":93},"'":{"d":"10,-280r21,0r-4,97r-13,0","w":41},"\u201c":{"d":"54,-194v-13,-17,-5,-92,18,-77v-1,10,-19,27,-5,35v7,-4,7,0,13,3r0,32v-3,0,-7,3,-7,7v-4,-5,-15,-5,-19,0xm14,-194v-13,-17,-5,-92,18,-77v-1,10,-19,27,-5,35v7,-4,7,0,13,3r0,32v-3,0,-7,3,-7,7v-4,-5,-15,-5,-19,0","w":87,"k":{"t":2,"v":4,"w":4,"y":9,"\u00fd":9,"\u00ff":9,"T":2,"V":4,"W":4,"Y":9,"\u00dd":9,"\u0178":9,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,"x":9,"X":9,"j":30,"J":30}},"\u00ab":{"d":"58,-93v-7,-16,-26,-27,-25,-47v7,-11,20,-25,25,-36v1,1,6,2,8,2v9,15,-6,22,-17,39v5,8,15,24,20,28v-3,3,-4,9,-3,13v-2,-1,-7,0,-8,1xm30,-93v-10,-16,-25,-26,-26,-47r26,-36v1,1,5,2,7,2v9,15,-6,22,-17,39v5,8,15,24,21,28v-3,3,-5,9,-4,13v-2,-1,-6,0,-7,1","w":74},"\u2039":{"d":"30,-93v-10,-16,-25,-26,-26,-47r26,-36v1,1,5,2,7,2v9,15,-6,22,-17,39v5,8,15,24,21,28v-3,3,-5,9,-4,13v-2,-1,-6,0,-7,1","w":45},"\u203a":{"d":"41,-129v-8,11,-19,24,-25,36v-1,-1,-5,-2,-7,-1v1,-4,-1,-10,-4,-13v5,-5,15,-21,21,-28r-22,-27v3,-2,5,-8,4,-12v16,-5,21,25,33,34v-3,3,-3,9,0,11","w":45},"\ufb01":{"d":"60,-93v-20,-1,4,-29,-11,-31v-4,0,-6,3,-6,12v2,30,-5,69,3,94v7,1,-1,-14,5,-15r4,30v-11,11,-29,-2,-41,7v-1,-3,-7,-7,-11,-7r3,-31v7,-1,0,13,5,16v4,-28,6,-88,-4,-111v5,-2,5,-12,0,-14v10,-21,7,-78,4,-107v-6,0,3,17,-6,15r-2,-30v21,-13,56,0,77,-5v1,3,4,6,8,6v-5,9,-7,56,-1,70v-10,4,-12,9,-12,28r-3,0v0,-19,-3,-24,-13,-27v7,-8,4,-30,4,-44v0,-13,-3,-16,-10,-16v-7,0,-10,3,-10,16r0,75v-1,18,7,18,12,11v-2,-7,-9,-23,4,-24v-5,12,20,21,3,34r9,6r-9,8v19,10,-13,22,-2,34xm101,-273v5,5,23,5,28,0v1,4,7,7,11,7v-3,10,0,26,-6,33v1,-6,-2,-27,-4,-13v2,31,-5,85,5,104v-6,2,-5,12,0,14v-9,22,-6,80,-3,109v6,0,-3,-14,5,-13r2,29v-9,10,-29,-1,-39,7v-3,-4,-7,-7,-11,-8v3,-9,0,-24,6,-30v-2,8,5,27,5,8v0,-29,5,-84,-5,-102v5,-2,6,-12,0,-14v9,-21,6,-80,3,-109v-6,-1,0,15,-5,16r-3,-31v3,0,10,-4,11,-7","w":142},"\ufb02":{"d":"60,-93v-20,-1,4,-29,-11,-31v-4,0,-6,3,-6,12v2,30,-5,69,3,94v7,1,-1,-14,5,-15r4,30v-11,11,-29,-2,-41,7v-1,-3,-7,-7,-11,-7r3,-31v7,-1,0,13,5,16v4,-28,6,-88,-4,-111v5,-2,5,-12,0,-14v10,-21,7,-78,4,-107v-6,0,3,17,-6,15r-2,-30v21,-13,56,0,77,-5v1,3,4,6,8,6v-5,9,-7,56,-1,70v-10,4,-12,9,-12,28r-3,0v0,-19,-3,-24,-13,-27v7,-8,4,-30,4,-44v0,-13,-3,-16,-10,-16v-7,0,-10,3,-10,16r0,75v-1,18,7,18,12,11v-2,-7,-9,-23,4,-24v-5,12,20,21,3,34r9,6r-9,8v19,10,-13,22,-2,34xm100,-104v1,-24,-10,-22,-3,-34v-7,-10,4,-16,3,-36v-2,-25,4,-58,-3,-78v-4,0,1,15,-4,15r-3,-30v4,0,10,-3,11,-6v5,6,24,4,29,0v2,3,7,6,11,6r-3,30v-7,1,1,-13,-6,-14v-6,24,-6,86,3,106v-6,2,-7,12,0,14v-12,18,-4,70,-6,100v0,10,1,16,11,16v22,0,10,-48,9,-60v10,-4,11,-8,11,-29r3,0v0,20,2,25,12,29v-7,8,-5,64,0,72v-21,13,-54,-2,-74,7v-1,-3,-7,-8,-12,-8r3,-29v7,-3,0,24,8,9r0,-80","w":173,"k":{"t":14,"v":12,"w":9,"y":14,"\u00fd":14,"\u00ff":14,"\u201d":26,"\u2019":26,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4}},"\u2013":{"d":"0,-143r180,0r0,15r-180,0r0,-15","w":180},"\u2020":{"d":"40,-277r25,0r-2,83r31,-2r0,26r-31,-2r2,192r-25,0r2,-192r-31,2r0,-26r31,2","w":105},"\u2021":{"d":"40,-277r24,0r-1,83r31,-3r0,26r-31,-3r0,89r31,-2r0,25r-31,-3r1,85r-24,0r1,-85r-30,3r0,-25r30,2r0,-89r-30,3r0,-26r30,3","w":105},"\u00b7":{"d":"14,-112v-9,-7,-9,-37,0,-45v2,3,17,4,19,0v9,7,12,38,0,45v-2,-5,-17,-5,-19,0","w":47},"\u00b6":{"d":"62,21r-16,0r-1,-133v-53,-11,-46,-165,22,-165v9,0,17,1,25,3r0,295r-16,0r0,-279r-14,0r0,279","w":108},"\u2022":{"d":"13,-112r0,-47v5,-1,8,-5,9,-9v6,6,23,7,29,0v1,4,5,8,10,9r0,47v-5,1,-9,6,-10,10v-5,-7,-24,-6,-29,0v-1,-4,-5,-9,-9,-10","w":73},"\u201a":{"d":"33,-42v18,14,0,76,-7,79v-2,-2,-6,-3,-10,-2v-4,-7,20,-26,5,-35v-3,0,-6,2,-7,4v-8,-9,-9,-37,0,-46v4,5,15,5,19,0","w":47},"\u201e":{"d":"73,-42v18,14,0,76,-7,79v-2,-2,-6,-3,-10,-2v-4,-7,20,-26,5,-35v-3,0,-6,2,-7,4v-8,-9,-9,-37,0,-46v4,5,15,5,19,0xm33,-42v18,14,0,76,-7,79v-2,-2,-6,-3,-10,-2v-4,-7,20,-26,5,-35v-3,0,-6,2,-7,4v-8,-9,-9,-37,0,-46v4,5,15,5,19,0","w":87},"\u201d":{"d":"54,-273v3,5,16,5,20,0v13,17,5,92,-18,77v-3,-10,20,-26,5,-35v-3,0,-6,2,-7,4v-9,-8,-9,-37,0,-46xm14,-273v3,5,16,5,20,0v13,17,5,92,-18,77v-3,-10,20,-26,5,-35v-3,0,-6,2,-7,4v-9,-8,-9,-37,0,-46","w":87,"k":{"t":-4,"T":-4,"a":16,"\u00e6":16,"\u00e1":16,"\u00e2":16,"\u00e4":16,"\u00e0":16,"\u00e5":16,"\u00e3":16,"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16,"x":4,"X":4}},"\u00bb":{"d":"70,-129v-8,11,-19,24,-25,36v-1,-1,-6,-2,-8,-1v1,-4,-1,-10,-4,-13v6,-4,16,-20,21,-28r-21,-27v3,-2,5,-8,4,-12v16,-5,21,25,33,34v-3,3,-3,9,0,11xm41,-129v-8,11,-19,24,-25,36v-1,-1,-5,-2,-7,-1v1,-4,-1,-10,-4,-13v5,-5,15,-21,21,-28r-22,-27v3,-2,5,-8,4,-12v16,-5,21,25,33,34v-3,3,-3,9,0,11","w":74},"\u2026":{"d":"40,4v-3,-5,-16,-5,-20,0v-10,-9,-11,-55,10,-42v21,-9,15,19,16,35v-3,1,-5,4,-6,7xm99,4v-3,-5,-15,-5,-19,0v-8,-8,-10,-37,0,-45v4,4,15,4,19,0v10,6,11,37,0,45xm159,4v-3,-5,-15,-5,-19,0v-8,-8,-10,-37,0,-45v4,4,15,4,19,0v10,6,11,37,0,45","w":180},"\u2030":{"d":"36,-270v16,0,28,27,28,81v0,57,-11,81,-28,81v-17,0,-28,-26,-28,-81v0,-59,13,-81,28,-81xm36,-127v15,0,15,-124,-1,-124v-8,0,-10,29,-10,62v0,32,2,62,11,62xm178,-159v16,0,28,26,28,80v0,57,-12,81,-28,81v-17,0,-29,-26,-29,-80v0,-59,14,-81,29,-81xm177,-141v-8,0,-10,30,-10,63v0,32,1,62,10,62v9,0,11,-31,11,-62v0,-33,-3,-63,-11,-63xm113,-159v16,0,27,27,27,81v0,57,-11,81,-27,81v-17,0,-29,-27,-29,-81v0,-59,14,-81,29,-81xm112,-140v-8,0,-10,29,-10,62v0,32,1,62,10,62v9,0,10,-31,10,-62v0,-32,-2,-62,-10,-62xm43,5r-13,0r74,-277r14,0","w":213},"\u00bf":{"d":"48,-125v-7,16,-15,52,-14,84v0,22,5,26,12,26v15,0,12,-23,12,-38v0,-14,0,-18,-3,-22v11,-1,9,-14,14,-30v0,21,3,26,12,30v-7,12,-5,55,-1,71v-11,7,-25,3,-39,8v-62,-8,-26,-86,-24,-135v7,-1,11,-11,5,-16v8,-9,12,-36,9,-51v4,-3,9,-9,10,-13v1,4,6,10,10,13v-3,5,-1,55,-1,56v-8,1,-7,14,-2,17xm31,-273v4,5,15,5,19,0v9,7,12,38,0,45v-4,-4,-15,-4,-19,0v-9,-7,-9,-37,0,-45","w":81},"`":{"d":"21,-311v11,-10,25,15,39,15v-1,10,3,24,-13,11v-6,-4,-18,-12,-24,-13v2,-3,1,-9,-2,-13"},"\u00b4":{"d":"44,-296v12,1,30,-26,39,-15v-3,4,-4,10,-2,13v-12,0,-30,26,-39,15v3,-4,4,-10,2,-13"},"\u02c6":{"d":"52,-311v9,-9,20,14,29,16v-4,6,2,15,-6,16r-23,-21v-10,5,-19,26,-29,17v2,-4,2,-9,-1,-12v9,-2,21,-25,30,-16"},"\u02dc":{"d":"85,-301v-4,6,-7,22,-21,22v-13,0,-17,-14,-23,-14v-5,0,-6,6,-5,9v-3,0,-8,3,-9,6v-1,-3,-5,-7,-8,-7v3,-8,9,-23,21,-23v13,0,18,15,24,15v5,0,5,-6,4,-9v4,0,7,-3,8,-6v1,3,4,6,9,7"},"\u00af":{"d":"25,-295v6,2,47,2,54,0v1,4,4,7,7,8v0,15,-45,5,-61,9v-1,-4,-4,-8,-7,-9v3,-1,6,-4,7,-8"},"\u02d8":{"d":"84,-305v1,30,-58,33,-61,6v-6,-9,2,-5,5,-13v1,3,5,6,9,6v-1,5,6,13,16,13v11,0,15,-8,14,-13v3,0,8,-4,9,-6v1,3,5,7,8,7"},"\u02d9":{"d":"45,-280v-7,-5,-8,-28,0,-34v6,4,17,-3,19,5v-1,13,4,35,-12,26v-3,0,-6,2,-7,3"},"\u00a8":{"d":"24,-280v-7,-5,-8,-28,0,-34v6,4,17,-3,19,5v-1,13,4,35,-12,26v-3,0,-6,2,-7,3xm66,-280v-8,-5,-7,-29,0,-34v7,6,15,-3,19,5v0,13,3,35,-12,26v-3,0,-6,2,-7,3"},"\u02da":{"d":"26,-299v0,-22,17,-19,37,-19v9,0,15,9,15,19v1,19,-18,19,-37,18v-7,0,-15,-6,-15,-18xm38,-299v0,9,10,8,19,8v6,0,9,-3,9,-8v1,-9,-10,-8,-19,-8v-5,0,-9,2,-9,8"},"\u00b8":{"d":"57,0r-5,10v10,1,19,6,19,18v0,16,-24,20,-40,17v1,-4,0,-8,-2,-11v7,-6,24,4,26,-7v0,-5,-5,-8,-14,-7v-5,-8,-2,-12,2,-20r14,0"},"\u02dd":{"d":"19,-295v10,-8,21,-15,30,-25v1,1,3,4,6,4v-2,4,-2,9,0,12v-9,7,-24,17,-30,25v-1,-1,-3,-4,-6,-4v2,-4,2,-9,0,-12xm54,-295v10,-2,26,-32,35,-21v-2,4,-2,9,1,12v-11,1,-25,31,-36,22v2,-4,2,-10,0,-13"},"\u02db":{"d":"32,27v0,-10,7,-32,29,-27v-10,9,-23,27,-6,32v10,-3,8,2,16,4v-3,3,-5,7,-5,10v-18,3,-34,0,-34,-19"},"\u02c7":{"d":"52,-282v-8,10,-21,-15,-30,-16v4,-11,1,-21,15,-8r15,13v11,-4,19,-27,29,-17v-2,4,-3,9,0,12v-10,5,-17,23,-29,16"},"\u2014":{"d":"0,-143r360,0r0,15r-360,0r0,-15","w":360},"\u00c6":{"d":"125,3v-16,-6,-37,5,-56,-3v-9,4,-11,-1,-20,-4r4,-33v8,-1,-1,15,5,18v5,-8,1,-28,2,-40v1,-12,-9,-7,-18,-8v-12,7,-9,35,-10,49v6,-1,0,-17,8,-17r-1,32v-9,6,-22,0,-31,7v-1,-3,-5,-7,-8,-7v3,-9,1,-24,7,-30v-2,6,0,22,4,11v3,-33,16,-76,12,-108v6,-3,7,-10,1,-14v15,-27,17,-85,25,-122v5,0,10,-3,12,-7v14,10,39,-5,56,4v3,0,5,-2,8,-4v1,3,6,7,10,7v-7,12,-5,55,-1,71v-10,4,-12,9,-12,30r-3,0v0,-20,-2,-26,-12,-30v4,-8,9,-60,-7,-60v-6,0,-9,5,-9,19r0,71v-1,22,7,21,11,12v-5,-7,-3,-23,6,-23v-6,12,19,21,2,33v7,5,9,9,0,13v18,13,-11,25,-3,37v-18,1,3,-29,-11,-31v-6,0,-5,5,-5,25r0,74v0,9,2,11,10,11v16,0,9,-46,7,-64v10,-4,12,-8,12,-30r3,0v0,24,2,26,12,31v-7,11,-6,62,0,73v-3,1,-9,5,-10,7xm55,-129v6,-12,6,-48,4,-76v-6,38,-7,65,-14,96v-5,21,0,16,12,16v6,0,2,-38,-2,-36","w":137},"\u00aa":{"d":"59,-118v4,0,-1,-9,4,-9v3,14,2,27,-13,19v-7,2,-10,3,-16,-1v1,-5,-4,-16,1,-18v0,4,2,13,4,6v-3,-11,4,-30,-14,-26v-8,3,-6,22,-4,29v5,0,-1,-10,4,-10v1,13,0,28,-13,20v-13,7,-13,-8,-11,-19v4,-2,1,15,6,6v2,-60,6,-90,12,-146v5,-4,21,-5,26,0v3,21,2,63,11,74v-5,15,0,52,3,75xm28,-228v-1,25,2,40,-4,58v0,5,1,7,5,7v9,-12,1,-43,-1,-65","w":65},"\u0141":{"d":"77,4v-17,-1,-46,-6,-63,0v-1,-3,-6,-8,-11,-8r2,-29v7,-3,0,24,8,9r0,-93v-11,8,-6,8,-14,3v2,-14,1,-16,14,-24v-2,-37,5,-83,-3,-114v-4,0,1,15,-4,15r-2,-30v4,0,9,-3,10,-6v5,5,24,4,29,0v2,3,8,6,12,6v-3,9,0,24,-6,30v3,-8,-7,-23,-7,-7r0,82v9,-4,14,-19,22,-10v-2,4,-3,11,0,14r-22,17r0,110v0,10,2,16,12,16v22,0,10,-49,8,-60v10,-4,11,-8,11,-29r3,0v0,20,2,25,12,29v-7,8,-5,64,0,72v-5,0,-9,3,-11,7","w":87,"k":{"t":14,"v":12,"w":9,"y":14,"\u00fd":14,"\u00ff":14,"\u201d":26,"\u2019":26,"T":14,"V":12,"W":9,"Y":14,"\u00dd":14,"\u0178":14,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4}},"\u00d8":{"d":"11,-169v-2,-48,-5,-120,42,-100v30,-19,43,25,41,61v6,-6,7,-20,16,-14v9,17,-16,24,-17,47v-2,33,11,24,2,38v0,3,1,5,5,7v-11,10,-5,64,-7,89v-3,39,-21,51,-41,41v-30,17,-45,-25,-42,-61v-5,5,-6,19,-16,14v1,-4,0,-9,-3,-12v15,-11,29,-48,14,-69v6,-3,5,-11,0,-14v4,-4,6,-7,6,-27xm42,-107r0,79v0,10,3,14,10,14v6,0,10,-3,10,-14r0,-110xm62,-162r0,-81v0,-8,-1,-12,-9,-12v-8,0,-11,3,-11,12r1,112","w":106,"k":{"v":7,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"V":7,"W":4,"Y":4,"\u00dd":4,"\u0178":4,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"x":7,"X":7}},"\u0152":{"d":"127,3v-23,-6,-55,4,-76,-3v-62,22,-27,-86,-47,-128v6,-3,7,-10,0,-14v20,-27,-17,-151,49,-127v25,-7,53,4,74,-4v1,3,5,7,9,7v-5,14,-4,55,0,71v-10,4,-12,9,-12,30r-3,0v0,-20,-3,-26,-13,-30v5,-8,10,-60,-6,-60v-6,0,-9,5,-9,19r0,71v-1,21,7,22,10,12v-4,-9,-3,-23,7,-23v-9,12,20,21,2,33v7,5,9,9,0,13v18,13,-11,24,-3,37v-17,2,1,-27,-11,-31v-6,0,-5,5,-5,25r0,74v0,9,2,11,10,11v15,0,9,-48,6,-64v10,-4,13,-8,13,-30r3,0v0,24,2,26,12,31v-7,11,-6,61,-1,73v-3,1,-8,5,-9,7xm42,-243v1,29,-5,84,6,99v-7,4,-6,13,0,17v-10,17,-4,70,-6,99v0,10,3,14,10,14v6,0,10,-4,10,-14v-1,-29,4,-89,-7,-101v6,-2,7,-11,1,-14v12,-19,4,-69,6,-100v0,-8,-2,-12,-10,-12v-8,0,-10,3,-10,12","w":138},"\u00ba":{"d":"6,-193v14,-15,-11,-90,32,-76v30,-14,26,30,26,56r0,81v0,23,-14,31,-27,24v-10,7,-24,-1,-26,-17v-2,-19,4,-50,-5,-60v5,-3,5,-5,0,-8xm38,-261v-18,7,0,60,-6,72v3,11,-3,42,-1,64v0,6,2,9,6,9v18,-7,0,-62,6,-73v-2,-12,3,-42,1,-64v0,-5,-1,-8,-6,-8","w":74},"\u00e6":{"d":"125,3v-16,-6,-37,5,-56,-3v-9,4,-11,-1,-20,-4r4,-33v8,-1,-1,15,5,18v5,-8,1,-28,2,-40v1,-12,-9,-7,-18,-8v-12,7,-9,35,-10,49v6,-1,0,-17,8,-17r-1,32v-9,6,-22,0,-31,7v-1,-3,-5,-7,-8,-7v3,-9,1,-24,7,-30v-2,6,0,22,4,11v3,-33,16,-76,12,-108v6,-3,7,-10,1,-14v15,-27,17,-85,25,-122v5,0,10,-3,12,-7v14,10,39,-5,56,4v3,0,5,-2,8,-4v1,3,6,7,10,7v-7,12,-5,55,-1,71v-10,4,-12,9,-12,30r-3,0v0,-20,-2,-26,-12,-30v4,-8,9,-60,-7,-60v-6,0,-9,5,-9,19r0,71v-1,22,7,21,11,12v-5,-7,-3,-23,6,-23v-6,12,19,21,2,33v7,5,9,9,0,13v18,13,-11,25,-3,37v-18,1,3,-29,-11,-31v-6,0,-5,5,-5,25r0,74v0,9,2,11,10,11v16,0,9,-46,7,-64v10,-4,12,-8,12,-30r3,0v0,24,2,26,12,31v-7,11,-6,62,0,73v-3,1,-9,5,-10,7xm55,-129v6,-12,6,-48,4,-76v-6,38,-7,65,-14,96v-5,21,0,16,12,16v6,0,2,-38,-2,-36","w":137},"\u0131":{"d":"14,-273v5,5,23,5,28,0v1,4,7,7,11,7v-3,10,0,26,-6,33v1,-6,-1,-27,-4,-13v2,31,-5,86,6,104v-6,2,-5,12,0,14v-10,20,-7,79,-4,109v6,0,-3,-14,5,-13r2,29v-9,9,-29,-1,-39,7v-3,-4,-7,-7,-11,-8r4,-30v7,-1,-1,14,5,16v3,-27,6,-88,-3,-110v5,-2,6,-12,0,-14v9,-21,6,-80,3,-109v-4,1,-1,11,-2,16r-3,0r-3,-31v3,0,10,-4,11,-7","w":55},"\u0142":{"d":"77,4v-17,-1,-46,-6,-63,0v-1,-3,-6,-8,-11,-8r2,-29v7,-3,0,24,8,9r0,-93v-11,8,-6,8,-14,3v2,-14,1,-16,14,-24v-2,-37,5,-83,-3,-114v-4,0,1,15,-4,15r-2,-30v4,0,9,-3,10,-6v5,5,24,4,29,0v2,3,8,6,12,6v-3,9,0,24,-6,30v3,-8,-7,-23,-7,-7r0,82v9,-4,14,-19,22,-10v-2,4,-3,11,0,14r-22,17r0,110v0,10,2,16,12,16v22,0,10,-49,8,-60v10,-4,11,-8,11,-29r3,0v0,20,2,25,12,29v-7,8,-5,64,0,72v-5,0,-9,3,-11,7","w":87,"k":{"y":14,"t":14,"v":12,"w":9,"\u00fd":14,"\u00ff":14,"\u201d":26,"\u2019":26,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4}},"\u00f8":{"d":"11,-169v-2,-48,-5,-120,42,-100v30,-19,43,25,41,61v6,-6,7,-20,16,-14v9,17,-16,24,-17,47v-2,33,11,24,2,38v0,3,1,5,5,7v-11,10,-5,64,-7,89v-3,39,-21,51,-41,41v-30,17,-45,-25,-42,-61v-5,5,-6,19,-16,14v1,-4,0,-9,-3,-12v15,-11,29,-48,14,-69v6,-3,5,-11,0,-14v4,-4,6,-7,6,-27xm42,-107r0,79v0,10,3,14,10,14v6,0,10,-3,10,-14r0,-110xm62,-162r0,-81v0,-8,-1,-12,-9,-12v-8,0,-11,3,-11,12r1,112","w":106,"k":{"v":7,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"x":7}},"\u0153":{"d":"127,3v-23,-6,-55,4,-76,-3v-62,22,-27,-86,-47,-128v6,-3,7,-10,0,-14v20,-27,-17,-151,49,-127v25,-7,53,4,74,-4v1,3,5,7,9,7v-5,14,-4,55,0,71v-10,4,-12,9,-12,30r-3,0v0,-20,-3,-26,-13,-30v5,-8,10,-60,-6,-60v-6,0,-9,5,-9,19r0,71v-1,21,7,22,10,12v-4,-9,-3,-23,7,-23v-9,12,20,21,2,33v7,5,9,9,0,13v18,13,-11,24,-3,37v-17,2,1,-27,-11,-31v-6,0,-5,5,-5,25r0,74v0,9,2,11,10,11v15,0,9,-48,6,-64v10,-4,13,-8,13,-30r3,0v0,24,2,26,12,31v-7,11,-6,61,-1,73v-3,1,-8,5,-9,7xm42,-243v1,29,-5,84,6,99v-7,4,-6,13,0,17v-10,17,-4,70,-6,99v0,10,3,14,10,14v6,0,10,-4,10,-14v-1,-29,4,-89,-7,-101v6,-2,7,-11,1,-14v12,-19,4,-69,6,-100v0,-8,-2,-12,-10,-12v-8,0,-10,3,-10,12","w":138},"\u00df":{"d":"80,-43v0,34,-27,56,-61,43v-3,0,-5,2,-7,4v-2,-4,-5,-7,-10,-8v5,-14,5,-60,0,-77v12,0,10,-13,15,-28v0,21,5,25,13,28v-5,10,-8,67,8,67v10,0,13,-8,13,-20v-1,-35,-11,-75,-29,-90v4,-8,0,-14,-7,-15v1,-37,-45,-154,43,-130v3,0,7,-3,8,-4v2,5,6,7,10,7v-5,15,-5,58,1,72v-9,4,-11,8,-11,29r-3,0v0,-22,-3,-25,-12,-29v4,-10,10,-63,-10,-61v-7,0,-10,6,-10,16v1,37,13,83,31,96v-6,6,-2,13,5,13v-6,22,13,57,13,87xm158,-43v0,33,-26,57,-60,43v-3,0,-5,2,-7,4v-2,-4,-6,-7,-11,-8v6,-13,6,-61,0,-77v10,-3,13,-7,13,-28r3,0v0,21,4,25,12,28v-5,11,-8,67,9,67v10,0,13,-8,13,-20v-2,-35,-11,-76,-30,-90v5,-7,2,-14,-6,-15v-2,-37,-44,-154,42,-130v3,0,7,-3,8,-4v2,5,6,7,10,7v-3,16,-4,58,2,72v-9,4,-12,8,-12,29r-3,0v0,-22,-3,-25,-12,-29v5,-9,11,-63,-10,-61v-7,0,-10,6,-10,16v1,38,14,83,32,96v-6,6,-2,13,5,13v-5,21,12,56,12,87","w":156},"\u00b9":{"d":"36,-270v-2,11,-6,67,2,77v-4,16,-7,54,-2,74v3,-1,-2,-9,3,-8v6,24,-10,19,-24,22v-1,-3,-4,-5,-7,-5v2,-5,-1,-16,4,-18v-1,5,3,17,3,5r-2,-134v-4,1,-1,11,-2,15r-3,0r-3,-25v9,-4,20,-1,31,-3","w":47},"\u00ac":{"d":"101,-71r-16,0r0,-53r-74,0r0,-18r90,0r0,71","w":112},"\u00b5":{"d":"54,-147v-4,15,-5,53,3,65v-5,3,-4,6,0,9v-7,4,-5,42,-5,58v0,5,1,9,10,9v21,-2,5,-37,10,-55v-6,-25,5,-57,-1,-86v-5,-1,-1,9,-5,9v-9,-27,19,-25,36,-19v-2,6,0,17,-5,20v1,-4,-1,-16,-3,-7v2,20,-5,50,5,62v-6,2,-5,8,0,9v-7,10,-9,56,0,68v3,-1,-2,-9,1,-10v3,9,10,18,1,24v-10,-7,-29,6,-29,-8v-4,3,-13,1,-20,2v5,33,-2,36,2,63v3,0,-2,-10,4,-8r1,17v-11,4,-26,5,-36,0v2,-5,-1,-16,4,-18v-1,5,2,15,4,5v-7,-44,6,-90,-5,-136v3,-2,5,-6,0,-8v6,-11,6,-50,2,-66v-3,1,1,10,-3,9r-4,-18v13,-4,26,-4,39,-1r-2,20v-6,2,-1,-7,-4,-9","w":138},"\u2122":{"d":"43,-119v4,0,-1,-8,4,-8v7,26,-17,22,-33,18v2,-5,0,-16,5,-18v-1,3,1,12,3,6v-1,-20,4,-51,-4,-63v3,-2,4,-6,0,-8v8,-12,3,-45,4,-64v0,-6,-8,-5,-8,0v1,10,-2,27,3,32v-8,1,-5,9,-10,18v0,-14,-2,-15,-8,-18v5,-9,3,-30,2,-43v18,-5,45,-6,60,0v1,13,-2,37,3,43v-9,1,-5,11,-10,18v2,-22,-11,-10,-6,-29v-1,-8,3,-23,-3,-25v-3,0,-4,0,-4,4v1,19,-3,53,4,64v-4,13,-7,52,-2,73xm146,-210v9,26,-7,56,2,92v2,-1,0,-7,1,-10v5,3,3,13,5,19v-12,3,-24,4,-35,0v2,-5,-1,-16,4,-18v-1,5,3,14,4,5v-1,-18,3,-54,-4,-63v3,-1,4,-7,0,-8v3,-2,8,-32,2,-39r-14,123v-4,3,-6,3,-10,0v-4,-22,-5,-59,-11,-76v4,-7,-1,-33,-4,-47v4,45,-2,71,1,114v5,1,-1,-10,4,-9v4,13,3,26,-11,19v-6,3,-8,1,-14,-1v2,-6,-1,-16,4,-19v-1,3,1,15,2,7v3,-38,-6,-64,0,-89v-1,-16,1,-34,-1,-48v-4,-1,1,10,-4,9r-1,-18v11,-5,24,-4,36,-1r6,63r3,0r6,-63v13,-3,25,-3,36,1v-2,6,-1,15,-4,19v1,-4,-3,-15,-3,-5r0,43","w":159},"\u00d0":{"d":"14,-273v13,8,26,0,43,0v60,0,25,88,43,128v-7,7,-7,9,0,16v-9,11,-5,65,-6,90v-4,54,-34,43,-70,39v-4,0,-7,1,-11,4v-2,-4,-6,-7,-10,-7r2,-31v6,-4,1,31,8,10r0,-105v-10,0,-12,1,-14,2v2,-4,3,-14,0,-18v1,1,4,1,14,1v-1,-35,3,-76,-2,-108v-2,5,2,15,-5,15r-3,-29v5,0,10,-4,11,-7xm42,-129r0,99v0,14,5,16,11,16v7,0,11,-2,11,-16r0,-207v0,-13,-2,-19,-11,-19v-9,0,-11,6,-11,19r0,93v9,0,14,0,15,-1v-3,5,-4,13,0,18v-2,-1,-6,-2,-15,-2","w":105},"\u00bd":{"d":"44,5r-17,0r70,-277r17,0xm46,-108r-21,0r-1,-138r-16,15r-4,-18v12,-8,18,-23,42,-19r0,160xm89,0v3,-41,38,-75,38,-114v0,-27,-19,-34,-30,-17r-6,-17v17,-25,58,-14,58,30v0,38,-23,68,-35,97r36,0r0,21r-61,0","w":160},"\u00b1":{"d":"99,-105r-35,0r0,63r-18,0r0,-63r-35,0r0,-18r35,0r0,-62r18,0r0,62r35,0r0,18xm101,-10r-88,0r0,-19r88,0r0,19","w":112},"\u00de":{"d":"98,-141v-6,13,-4,16,-4,43v0,26,-20,35,-38,35v-17,-5,-14,21,-14,40v0,7,6,6,6,1v1,-4,-2,-12,2,-12r3,31v-9,10,-28,-1,-39,7v-2,-4,-9,-8,-13,-8v3,-10,0,-25,6,-31v-2,7,3,26,6,10v-2,-31,5,-82,-5,-102v5,-2,5,-12,0,-14v9,-24,6,-79,3,-109v-6,-1,0,14,-5,15r-3,-31v9,-9,28,1,39,-7v1,4,7,8,11,8r-4,32v-8,1,1,-15,-5,-18v-4,9,-5,41,10,40v48,-4,36,40,44,70xm53,-193v-24,2,-2,50,-10,59v9,4,-14,49,10,52v11,1,12,-10,11,-21v1,-24,-8,-19,-1,-31v-9,-8,15,-55,-10,-59","w":98},"\u00bc":{"d":"131,0r-19,0r0,-42r-36,0v3,-49,27,-78,38,-119r17,0r0,101r12,0r0,18r-12,0r0,42xm112,-60r0,-71v-6,26,-16,47,-23,71r23,0xm44,5r-17,0r71,-277r16,0xm46,-108r-21,0r-1,-138r-16,15r-4,-18v12,-8,18,-23,42,-19r0,160","w":154},"\u00f7":{"d":"68,-149v0,8,-5,15,-13,15v-6,0,-12,-7,-12,-15v0,-19,26,-21,25,0xm101,-99r-90,0r0,-18r90,0r0,18xm43,-66v0,-8,5,-15,13,-15v6,0,12,7,12,15v0,19,-26,21,-25,0","w":112},"\u00a6":{"d":"20,-278r24,0r0,144r-24,0r0,-144xm20,-72r24,0r0,144r-24,0r0,-144","w":63},"\u00b0":{"d":"9,-232v0,-26,13,-41,31,-41v22,0,31,22,31,41v0,26,-15,42,-32,42v-17,0,-30,-16,-30,-42xm57,-231v0,-18,-6,-30,-18,-30v-10,0,-17,12,-17,29v0,18,8,29,18,29v11,0,17,-11,17,-28","w":79},"\u00fe":{"d":"98,-141v-6,13,-4,16,-4,43v0,26,-20,35,-38,35v-17,-5,-14,21,-14,40v0,7,6,6,6,1v1,-4,-2,-12,2,-12r3,31v-9,10,-28,-1,-39,7v-2,-4,-9,-8,-13,-8v3,-10,0,-25,6,-31v-2,7,3,26,6,10v-2,-31,5,-82,-5,-102v5,-2,5,-12,0,-14v9,-24,6,-79,3,-109v-6,-1,0,14,-5,15r-3,-31v9,-9,28,1,39,-7v1,4,7,8,11,8r-4,32v-8,1,1,-15,-5,-18v-4,9,-5,41,10,40v48,-4,36,40,44,70xm53,-193v-24,2,-2,50,-10,59v9,4,-14,49,10,52v11,1,12,-10,11,-21v1,-24,-8,-19,-1,-31v-9,-8,15,-55,-10,-59","w":98},"\u00be":{"d":"140,0r-20,0r0,-42r-35,0v3,-49,26,-78,37,-119r18,0r0,101r11,0r0,18r-11,0r0,42xm120,-60r1,-71v-5,26,-16,47,-23,71r22,0xm53,5r-17,0r70,-277r17,0xm15,-243r-5,-17v16,-19,52,-9,52,27v0,18,-9,29,-17,38v27,9,26,93,-16,89v-8,0,-18,-3,-23,-8r5,-18v13,15,33,4,32,-23v0,-20,-8,-31,-23,-31v1,-5,-2,-13,1,-16v10,0,20,-11,20,-26v0,-21,-16,-30,-26,-15","w":163},"\u00b2":{"d":"21,-196v8,-10,12,-25,12,-53v0,-9,-1,-12,-7,-12v-9,1,-5,27,-3,35v-8,2,-7,9,-10,18v-2,-22,-7,-11,-7,-41v0,-26,16,-19,30,-23v31,6,11,60,8,80v-4,1,-7,4,-4,9v-11,10,-19,41,-19,56v0,4,2,5,8,5v11,3,7,-13,8,-23v-5,-20,6,-8,6,-29r2,0v-1,21,11,10,6,29v0,10,-1,29,2,34v-13,7,-37,6,-47,1v-4,-22,9,-57,13,-76v5,0,7,-8,2,-10","w":57},"\u00ae":{"d":"134,-224r0,178v0,30,-27,50,-61,50v-34,0,-60,-20,-60,-50r0,-178v0,-24,21,-49,59,-49v40,0,62,24,62,49xm48,-220v16,7,52,-11,52,22v0,22,6,56,-11,61v19,7,7,47,12,69v4,0,0,-7,3,-8v4,11,4,26,-10,20v-7,3,-8,-2,-13,-4r0,-61v0,-8,-3,-10,-8,-10v-15,5,-5,46,-5,63v4,0,-1,-8,4,-8r2,18v-12,3,-24,5,-35,0v2,-6,0,-17,5,-20v-1,4,1,14,3,5v-1,-20,3,-49,-5,-61v4,-3,4,-5,0,-8v8,-10,5,-47,4,-65v-4,-1,1,11,-4,10r-2,-20v3,1,7,-1,8,-3xm28,-219r0,168v0,27,19,39,45,39v26,0,45,-13,45,-39r0,-168v0,-22,-15,-38,-45,-38v-29,0,-45,16,-45,38xm73,-208v-15,6,-7,41,-7,59v0,6,2,7,7,7v5,0,8,-1,8,-10v0,-18,8,-51,-8,-56","w":146},"\u2212":{"d":"101,-99r-90,0r0,-18r90,0r0,18","w":112},"\u00f0":{"d":"14,-273v13,8,26,0,43,0v60,0,25,88,43,128v-7,7,-7,9,0,16v-9,11,-5,65,-6,90v-4,54,-34,43,-70,39v-4,0,-7,1,-11,4v-2,-4,-6,-7,-10,-7r2,-31v6,-4,1,31,8,10r0,-105v-10,0,-12,1,-14,2v2,-4,3,-14,0,-18v1,1,4,1,14,1v-1,-35,3,-76,-2,-108v-2,5,2,15,-5,15r-3,-29v5,0,10,-4,11,-7xm42,-129r0,99v0,14,5,16,11,16v7,0,11,-2,11,-16r0,-207v0,-13,-2,-19,-11,-19v-9,0,-11,6,-11,19r0,93v9,0,14,0,15,-1v-3,5,-4,13,0,18v-2,-1,-6,-2,-15,-2","w":105},"\u00d7":{"d":"103,-47r-14,10r-34,-55r-34,54r-13,-9r38,-57r-37,-58r13,-10r35,54r34,-54r12,10r-38,57","w":112},"\u00b3":{"d":"32,-130v0,-19,11,-60,-16,-51v0,-3,-3,-7,-6,-8v4,-8,21,0,22,-14r0,-49v0,-7,0,-9,-6,-9v-9,1,-5,27,-3,35v-9,1,-6,11,-11,18v-4,-15,-18,-53,9,-64v2,4,13,4,15,0v23,3,13,43,15,68v0,5,-3,12,-10,15v16,7,9,38,10,59v1,18,-8,29,-23,22v-23,12,-23,-21,-24,-44v8,-1,5,-10,10,-18v1,22,7,13,7,43v0,8,1,10,6,10v5,0,5,-2,5,-13","w":57},"\u00a9":{"d":"134,-224r0,178v0,30,-27,50,-61,50v-34,0,-60,-20,-60,-50r0,-178v0,-24,21,-49,59,-49v40,0,62,24,62,49xm28,-219r0,168v0,27,19,39,45,39v25,0,45,-13,45,-39r0,-168v0,-22,-16,-38,-46,-38v-28,0,-44,16,-44,38xm73,-52v-37,0,-16,-56,-29,-79v6,-3,5,-7,0,-10v13,-19,-9,-100,43,-74v11,-2,13,1,9,15v0,9,-1,26,3,29v-8,0,-5,11,-10,17v0,-13,-4,-15,-9,-17v7,-12,-1,-53,-11,-27v1,17,-3,49,4,57v-5,2,-4,8,0,10v-7,10,-3,42,-4,60v0,5,3,8,7,8v11,-1,6,-29,4,-38v7,-2,7,-7,10,-18v-2,20,12,9,7,27v1,23,1,40,-24,40","w":146},"\u00c1":{"d":"35,-273v5,5,23,5,28,0v1,4,3,6,6,7v5,34,3,104,17,123v-6,4,-5,12,0,15v-8,24,-2,84,5,111v6,-1,0,-14,5,-16r4,30v-8,11,-27,-2,-38,7v-1,-4,-6,-7,-10,-7r-1,-29v7,-3,2,24,8,10v-5,-17,7,-49,-21,-44v-12,6,-7,35,-6,49v6,-1,0,-15,6,-16r0,31v-8,9,-21,-3,-30,6v-1,-4,-5,-7,-8,-7r2,-30v8,-1,-2,14,6,15v5,-29,10,-83,4,-110v4,-3,4,-12,0,-15v14,-21,12,-88,17,-123v3,-1,5,-4,6,-7xm44,-201v-8,17,2,52,-3,66v8,8,-17,37,3,42v20,-4,-5,-34,4,-42v-5,-17,3,-48,-4,-66xm42,-296v12,1,30,-26,39,-15v-3,4,-4,10,-2,13v-12,0,-30,26,-39,15v3,-4,4,-10,2,-13","w":99,"k":{"c":4,"\u00e7":4,"g":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"q":4,"t":14,"v":13,"w":12,"y":17,"\u00fd":17,"\u00ff":17,"\u201d":12,"\u2019":12,"C":4,"\u00c7":4,"G":4,"O":4,"\u00d8":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"Q":4,"T":14,"V":13,"W":12,"Y":17,"\u00dd":17,"\u0178":17}},"\u00c2":{"d":"35,-273v5,5,23,5,28,0v1,4,3,6,6,7v5,34,3,104,17,123v-6,4,-5,12,0,15v-8,24,-2,84,5,111v6,-1,0,-14,5,-16r4,30v-8,11,-27,-2,-38,7v-1,-4,-6,-7,-10,-7r-1,-29v7,-3,2,24,8,10v-5,-17,7,-49,-21,-44v-12,6,-7,35,-6,49v6,-1,0,-15,6,-16r0,31v-8,9,-21,-3,-30,6v-1,-4,-5,-7,-8,-7r2,-30v8,-1,-2,14,6,15v5,-29,10,-83,4,-110v4,-3,4,-12,0,-15v14,-21,12,-88,17,-123v3,-1,5,-4,6,-7xm44,-201v-8,17,2,52,-3,66v8,8,-17,37,3,42v20,-4,-5,-34,4,-42v-5,-17,3,-48,-4,-66xm50,-311v8,-10,21,15,30,16v-5,6,1,15,-7,16r-23,-21v-10,5,-17,26,-29,17v2,-4,3,-9,0,-12v9,-2,19,-25,29,-16","w":99,"k":{"c":4,"\u00e7":4,"g":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"q":4,"t":14,"v":13,"w":12,"y":17,"\u00fd":17,"\u00ff":17,"\u201d":12,"\u2019":12,"C":4,"\u00c7":4,"G":4,"O":4,"\u00d8":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"Q":4,"T":14,"V":13,"W":12,"Y":17,"\u00dd":17,"\u0178":17}},"\u00c4":{"d":"35,-273v5,5,23,5,28,0v1,4,3,6,6,7v5,34,3,104,17,123v-6,4,-5,12,0,15v-8,24,-2,84,5,111v6,-1,0,-14,5,-16r4,30v-8,11,-27,-2,-38,7v-1,-4,-6,-7,-10,-7r-1,-29v7,-3,2,24,8,10v-5,-17,7,-49,-21,-44v-12,6,-7,35,-6,49v6,-1,0,-15,6,-16r0,31v-8,9,-21,-3,-30,6v-1,-4,-5,-7,-8,-7r2,-30v8,-1,-2,14,6,15v5,-29,10,-83,4,-110v4,-3,4,-12,0,-15v14,-21,12,-88,17,-123v3,-1,5,-4,6,-7xm44,-201v-8,17,2,52,-3,66v8,8,-17,37,3,42v20,-4,-5,-34,4,-42v-5,-17,3,-48,-4,-66xm22,-280v-7,-5,-8,-28,0,-34v6,4,17,-3,19,5v-1,13,4,35,-12,26v-3,0,-6,2,-7,3xm64,-280v-8,-5,-7,-29,0,-34v8,6,15,-2,20,5v0,14,2,35,-13,26v-3,0,-6,2,-7,3","w":99,"k":{"c":4,"\u00e7":4,"g":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"q":4,"t":14,"v":13,"w":12,"y":17,"\u00fd":17,"\u00ff":17,"\u201d":12,"\u2019":12,"C":4,"\u00c7":4,"G":4,"O":4,"\u00d8":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"Q":4,"T":14,"V":13,"W":12,"Y":17,"\u00dd":17,"\u0178":17}},"\u00c0":{"d":"35,-273v5,5,23,5,28,0v1,4,3,6,6,7v5,34,3,104,17,123v-6,4,-5,12,0,15v-8,24,-2,84,5,111v6,-1,0,-14,5,-16r4,30v-8,11,-27,-2,-38,7v-1,-4,-6,-7,-10,-7r-1,-29v7,-3,2,24,8,10v-5,-17,7,-49,-21,-44v-12,6,-7,35,-6,49v6,-1,0,-15,6,-16r0,31v-8,9,-21,-3,-30,6v-1,-4,-5,-7,-8,-7r2,-30v8,-1,-2,14,6,15v5,-29,10,-83,4,-110v4,-3,4,-12,0,-15v14,-21,12,-88,17,-123v3,-1,5,-4,6,-7xm44,-201v-8,17,2,52,-3,66v8,8,-17,37,3,42v20,-4,-5,-34,4,-42v-5,-17,3,-48,-4,-66xm19,-311v11,-10,26,15,39,15v-1,10,3,24,-13,11v-6,-4,-18,-12,-24,-13v2,-3,1,-9,-2,-13","w":99,"k":{"c":4,"\u00e7":4,"g":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"q":4,"t":14,"v":13,"w":12,"y":17,"\u00fd":17,"\u00ff":17,"\u201d":12,"\u2019":12,"C":4,"\u00c7":4,"G":4,"O":4,"\u00d8":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"Q":4,"T":14,"V":13,"W":12,"Y":17,"\u00dd":17,"\u0178":17}},"\u00c5":{"d":"35,-273v5,5,23,5,28,0v1,4,3,6,6,7v5,34,3,104,17,123v-6,4,-5,12,0,15v-8,24,-2,84,5,111v6,-1,0,-14,5,-16r4,30v-8,11,-27,-2,-38,7v-1,-4,-6,-7,-10,-7r-1,-29v7,-3,2,24,8,10v-5,-17,7,-49,-21,-44v-12,6,-7,35,-6,49v6,-1,0,-15,6,-16r0,31v-8,9,-21,-3,-30,6v-1,-4,-5,-7,-8,-7r2,-30v8,-1,-2,14,6,15v5,-29,10,-83,4,-110v4,-3,4,-12,0,-15v14,-21,12,-88,17,-123v3,-1,5,-4,6,-7xm44,-201v-8,17,2,52,-3,66v8,8,-17,37,3,42v20,-4,-5,-34,4,-42v-5,-17,3,-48,-4,-66xm24,-299v1,-21,17,-20,37,-19v9,0,15,9,15,19v1,19,-17,19,-36,18v-7,0,-16,-6,-16,-18xm36,-299v0,9,10,8,19,8v6,0,9,-3,9,-8v1,-9,-10,-8,-19,-8v-5,0,-9,2,-9,8","w":99,"k":{"c":4,"\u00e7":4,"g":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"q":4,"t":14,"v":13,"w":12,"y":17,"\u00fd":17,"\u00ff":17,"\u201d":12,"\u2019":12,"C":4,"\u00c7":4,"G":4,"O":4,"\u00d8":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"Q":4,"T":14,"V":13,"W":12,"Y":17,"\u00dd":17,"\u0178":17}},"\u00c3":{"d":"35,-273v5,5,23,5,28,0v1,4,3,6,6,7v5,34,3,104,17,123v-6,4,-5,12,0,15v-8,24,-2,84,5,111v6,-1,0,-14,5,-16r4,30v-8,11,-27,-2,-38,7v-1,-4,-6,-7,-10,-7r-1,-29v7,-3,2,24,8,10v-5,-17,7,-49,-21,-44v-12,6,-7,35,-6,49v6,-1,0,-15,6,-16r0,31v-8,9,-21,-3,-30,6v-1,-4,-5,-7,-8,-7r2,-30v8,-1,-2,14,6,15v5,-29,10,-83,4,-110v4,-3,4,-12,0,-15v14,-21,12,-88,17,-123v3,-1,5,-4,6,-7xm44,-201v-8,17,2,52,-3,66v8,8,-17,37,3,42v20,-4,-5,-34,4,-42v-5,-17,3,-48,-4,-66xm83,-301v-4,6,-7,22,-21,22v-13,0,-17,-14,-23,-14v-5,0,-6,6,-5,9v-3,0,-8,3,-9,6v-1,-3,-5,-7,-8,-7v4,-6,8,-23,21,-23v13,0,18,15,24,15v5,0,5,-6,4,-9v4,0,7,-3,8,-6v1,3,4,6,9,7","w":99,"k":{"c":4,"\u00e7":4,"g":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"q":4,"t":14,"v":13,"w":12,"y":17,"\u00fd":17,"\u00ff":17,"\u201d":12,"\u2019":12,"C":4,"\u00c7":4,"G":4,"O":4,"\u00d8":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"Q":4,"T":14,"V":13,"W":12,"Y":17,"\u00dd":17,"\u0178":17}},"\u00c7":{"d":"11,-223v1,-53,23,-54,54,-45v9,-3,8,3,16,4v-5,13,-5,59,1,71v-9,3,-12,8,-12,27r-3,0v0,-21,-4,-25,-12,-28v5,-11,3,-29,3,-45v0,-8,-1,-15,-9,-15v-6,0,-9,6,-9,15v1,27,-4,82,5,96v-6,4,-5,11,0,16v-9,18,-3,70,-5,99v0,9,3,14,9,14v16,0,9,-48,6,-64v11,-1,9,-12,14,-29v0,22,4,25,13,29v-9,27,9,87,-37,82r-3,6v10,1,18,6,18,18v0,17,-23,20,-39,17v1,-4,0,-8,-2,-11v7,-6,24,4,26,-7v0,-5,-5,-8,-14,-7v-4,-7,-3,-11,1,-18v-38,-6,-10,-97,-27,-129v7,-5,6,-11,0,-16v10,-12,5,-56,6,-80","w":83,"k":{"c":4,"\u00e7":4,"g":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"q":4,"C":4,"\u00c7":4,"G":4,"O":4,"\u00d8":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"Q":4}},"\u00c9":{"d":"59,-93v-18,1,2,-27,-10,-31v-6,0,-6,5,-6,25r0,74v0,9,3,11,11,11v15,0,9,-48,6,-64v12,-1,10,-14,15,-30v0,24,3,26,13,31v-7,11,-6,61,-1,73v-18,15,-54,-2,-74,8v-1,-3,-7,-7,-11,-8r3,-32v7,-3,0,28,8,12v-1,-30,4,-91,-7,-105v7,-3,6,-11,0,-15v11,-17,9,-79,5,-107v-5,0,-2,11,-3,16r-3,0r-3,-31v5,0,8,-3,11,-7v16,10,39,-5,56,4v3,0,6,-2,9,-4v1,3,5,7,9,7v-5,13,-4,54,-1,71v-10,4,-11,9,-11,30r-3,0v0,-20,-3,-26,-13,-30v5,-8,10,-60,-6,-60v-6,0,-10,5,-10,19r0,71v-1,21,8,22,11,12v-4,-8,-3,-23,6,-23v-6,12,18,21,3,33r8,7r-9,6v18,13,-11,25,-3,37xm37,-296v12,1,30,-26,39,-15v-3,4,-4,10,-2,13v-12,0,-30,26,-39,15v3,-4,4,-10,2,-13","w":89},"\u00ca":{"d":"59,-93v-18,1,2,-27,-10,-31v-6,0,-6,5,-6,25r0,74v0,9,3,11,11,11v15,0,9,-48,6,-64v12,-1,10,-14,15,-30v0,24,3,26,13,31v-7,11,-6,61,-1,73v-18,15,-54,-2,-74,8v-1,-3,-7,-7,-11,-8r3,-32v7,-3,0,28,8,12v-1,-30,4,-91,-7,-105v7,-3,6,-11,0,-15v11,-17,9,-79,5,-107v-5,0,-2,11,-3,16r-3,0r-3,-31v5,0,8,-3,11,-7v16,10,39,-5,56,4v3,0,6,-2,9,-4v1,3,5,7,9,7v-5,13,-4,54,-1,71v-10,4,-11,9,-11,30r-3,0v0,-20,-3,-26,-13,-30v5,-8,10,-60,-6,-60v-6,0,-10,5,-10,19r0,71v-1,21,8,22,11,12v-4,-8,-3,-23,6,-23v-6,12,18,21,3,33r8,7r-9,6v18,13,-11,25,-3,37xm45,-311v8,-10,21,15,30,16v-5,6,1,15,-7,16r-23,-21v-10,5,-17,26,-29,17v2,-4,2,-9,-1,-12v9,-2,21,-25,30,-16","w":89},"\u00cb":{"d":"59,-93v-18,1,2,-27,-10,-31v-6,0,-6,5,-6,25r0,74v0,9,3,11,11,11v15,0,9,-48,6,-64v12,-1,10,-14,15,-30v0,24,3,26,13,31v-7,11,-6,61,-1,73v-18,15,-54,-2,-74,8v-1,-3,-7,-7,-11,-8r3,-32v7,-3,0,28,8,12v-1,-30,4,-91,-7,-105v7,-3,6,-11,0,-15v11,-17,9,-79,5,-107v-5,0,-2,11,-3,16r-3,0r-3,-31v5,0,8,-3,11,-7v16,10,39,-5,56,4v3,0,6,-2,9,-4v1,3,5,7,9,7v-5,13,-4,54,-1,71v-10,4,-11,9,-11,30r-3,0v0,-20,-3,-26,-13,-30v5,-8,10,-60,-6,-60v-6,0,-10,5,-10,19r0,71v-1,21,8,22,11,12v-4,-8,-3,-23,6,-23v-6,12,18,21,3,33r8,7r-9,6v18,13,-11,25,-3,37xm18,-280v-7,-5,-8,-28,0,-34v7,4,17,-2,19,5v-1,13,4,35,-11,26v-3,0,-7,2,-8,3xm60,-280v-8,-5,-7,-29,0,-34v7,6,16,-3,20,5v0,13,3,35,-12,26v-3,0,-7,2,-8,3","w":89},"\u00c8":{"d":"59,-93v-18,1,2,-27,-10,-31v-6,0,-6,5,-6,25r0,74v0,9,3,11,11,11v15,0,9,-48,6,-64v12,-1,10,-14,15,-30v0,24,3,26,13,31v-7,11,-6,61,-1,73v-18,15,-54,-2,-74,8v-1,-3,-7,-7,-11,-8r3,-32v7,-3,0,28,8,12v-1,-30,4,-91,-7,-105v7,-3,6,-11,0,-15v11,-17,9,-79,5,-107v-5,0,-2,11,-3,16r-3,0r-3,-31v5,0,8,-3,11,-7v16,10,39,-5,56,4v3,0,6,-2,9,-4v1,3,5,7,9,7v-5,13,-4,54,-1,71v-10,4,-11,9,-11,30r-3,0v0,-20,-3,-26,-13,-30v5,-8,10,-60,-6,-60v-6,0,-10,5,-10,19r0,71v-1,21,8,22,11,12v-4,-8,-3,-23,6,-23v-6,12,18,21,3,33r8,7r-9,6v18,13,-11,25,-3,37xm14,-311v11,-10,26,15,39,15v-1,10,3,24,-13,11v-6,-4,-18,-12,-24,-13v2,-3,1,-9,-2,-13","w":89},"\u00cd":{"d":"14,-273v5,5,23,5,28,0v1,4,7,7,11,7v-3,10,0,26,-6,33v1,-6,-1,-27,-4,-13v2,31,-5,86,6,104v-6,2,-5,12,0,14v-10,20,-7,79,-4,109v6,0,-3,-14,5,-13r2,29v-9,9,-29,-1,-39,7v-3,-4,-7,-7,-11,-8r4,-30v7,-1,-1,14,5,16v3,-27,6,-88,-3,-110v5,-2,6,-12,0,-14v9,-21,6,-80,3,-109v-4,1,-1,11,-2,16r-3,0r-3,-31v3,0,10,-4,11,-7xm18,-296v12,1,30,-26,39,-15v-3,4,-4,10,-2,13v-12,0,-30,26,-39,15v3,-4,4,-10,2,-13","w":55},"\u00ce":{"d":"14,-273v5,5,23,5,28,0v1,4,7,7,11,7v-3,10,0,26,-6,33v1,-6,-1,-27,-4,-13v2,31,-5,86,6,104v-6,2,-5,12,0,14v-10,20,-7,79,-4,109v6,0,-3,-14,5,-13r2,29v-9,9,-29,-1,-39,7v-3,-4,-7,-7,-11,-8r4,-30v7,-1,-1,14,5,16v3,-27,6,-88,-3,-110v5,-2,6,-12,0,-14v9,-21,6,-80,3,-109v-4,1,-1,11,-2,16r-3,0r-3,-31v3,0,10,-4,11,-7xm28,-311v8,-10,21,15,30,16v-5,6,1,15,-7,16r-23,-21v-10,5,-17,26,-29,17v2,-4,3,-9,0,-12v9,-2,19,-25,29,-16","w":55},"\u00cf":{"d":"14,-273v5,5,23,5,28,0v1,4,7,7,11,7v-3,10,0,26,-6,33v1,-6,-1,-27,-4,-13v2,31,-5,86,6,104v-6,2,-5,12,0,14v-10,20,-7,79,-4,109v6,0,-3,-14,5,-13r2,29v-9,9,-29,-1,-39,7v-3,-4,-7,-7,-11,-8r4,-30v7,-1,-1,14,5,16v3,-27,6,-88,-3,-110v5,-2,6,-12,0,-14v9,-21,6,-80,3,-109v-4,1,-1,11,-2,16r-3,0r-3,-31v3,0,10,-4,11,-7xm0,-280v-7,-5,-8,-28,0,-34v6,4,17,-3,19,5v-1,13,4,35,-12,26v-3,0,-6,2,-7,3xm42,-280v-8,-5,-7,-29,0,-34v7,6,16,-3,20,5v0,14,3,35,-13,26v-3,0,-6,2,-7,3","w":55},"\u00cc":{"d":"14,-273v5,5,23,5,28,0v1,4,7,7,11,7v-3,10,0,26,-6,33v1,-6,-1,-27,-4,-13v2,31,-5,86,6,104v-6,2,-5,12,0,14v-10,20,-7,79,-4,109v6,0,-3,-14,5,-13r2,29v-9,9,-29,-1,-39,7v-3,-4,-7,-7,-11,-8r4,-30v7,-1,-1,14,5,16v3,-27,6,-88,-3,-110v5,-2,6,-12,0,-14v9,-21,6,-80,3,-109v-4,1,-1,11,-2,16r-3,0r-3,-31v3,0,10,-4,11,-7xm-1,-311v11,-10,25,15,39,15v-1,10,3,23,-13,11v-6,-4,-18,-12,-24,-13v2,-3,1,-9,-2,-13","w":55},"\u00d1":{"d":"62,-267v13,-8,22,1,33,-6v1,3,5,6,9,6r-2,31v-6,4,-2,-28,-8,-8v1,31,-5,84,6,102v-7,5,-5,11,1,15v-11,22,-6,88,-8,124v-4,0,-11,3,-14,7v-3,-4,-9,-6,-13,-6v-8,-39,-11,-95,-25,-125v4,-5,5,-11,-1,-16v2,-15,-1,-40,-7,-52v0,16,-2,45,4,53v-5,4,-6,11,0,15v-8,22,-2,74,-4,105v1,8,5,6,6,0v1,-3,-2,-11,2,-11r3,30v-11,7,-20,0,-31,7v-2,-4,-7,-7,-11,-7r3,-30v6,-3,1,29,8,9v-2,-31,5,-85,-6,-103v6,-4,5,-10,0,-15v11,-17,4,-74,6,-104v1,-8,-6,-9,-5,-1v-1,4,3,12,-3,11r-4,-31v5,0,10,-3,13,-6v5,5,17,4,22,0v2,3,8,7,12,6v10,40,13,88,26,125r0,-105v0,-4,-2,-4,-3,-4v-5,-1,0,15,-5,16xm87,-301v-4,6,-6,22,-20,22v-13,0,-17,-14,-23,-14v-5,0,-7,6,-6,9v-3,0,-7,3,-8,6v-1,-3,-5,-7,-8,-7v3,-7,8,-23,20,-23v13,0,18,15,24,15v5,0,6,-6,5,-9v4,0,6,-3,7,-6v1,3,4,6,9,7","w":105},"\u00d3":{"d":"11,-169v-2,-48,-5,-120,42,-100v18,-8,37,-4,40,28v3,27,-5,84,6,96v-5,4,-7,11,0,15v-10,10,-4,64,-6,89v-3,39,-21,51,-41,41v-62,23,-28,-86,-48,-128v6,-3,7,-11,0,-14v4,-4,7,-7,7,-27xm42,-243v1,29,-5,84,6,99v-7,5,-6,12,0,17v-11,17,-4,70,-6,99v0,10,3,14,10,14v6,0,10,-3,10,-14v-1,-28,4,-88,-6,-101v6,-3,5,-11,0,-14v12,-19,4,-69,6,-100v0,-8,-2,-12,-10,-12v-8,0,-10,3,-10,12xm44,-296v12,1,30,-26,39,-15v-3,4,-4,10,-2,13v-12,0,-30,26,-39,15v3,-4,4,-10,2,-13","k":{"v":7,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"V":7,"W":4,"Y":4,"\u00dd":4,"\u0178":4,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"x":7,"X":7}},"\u00d4":{"d":"11,-169v-2,-48,-5,-120,42,-100v18,-8,37,-4,40,28v3,27,-5,84,6,96v-5,4,-7,11,0,15v-10,10,-4,64,-6,89v-3,39,-21,51,-41,41v-62,23,-28,-86,-48,-128v6,-3,7,-11,0,-14v4,-4,7,-7,7,-27xm42,-243v1,29,-5,84,6,99v-7,5,-6,12,0,17v-11,17,-4,70,-6,99v0,10,3,14,10,14v6,0,10,-3,10,-14v-1,-28,4,-88,-6,-101v6,-3,5,-11,0,-14v12,-19,4,-69,6,-100v0,-8,-2,-12,-10,-12v-8,0,-10,3,-10,12xm54,-311v9,-9,20,14,29,16v-2,11,-2,23,-15,8r-14,-13v-10,5,-18,26,-30,17v2,-4,3,-9,0,-12v9,-2,21,-25,30,-16","k":{"v":7,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"V":7,"W":4,"Y":4,"\u00dd":4,"\u0178":4,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"x":7,"X":7}},"\u00d6":{"d":"11,-169v-2,-48,-5,-120,42,-100v18,-8,37,-4,40,28v3,27,-5,84,6,96v-5,4,-7,11,0,15v-10,10,-4,64,-6,89v-3,39,-21,51,-41,41v-62,23,-28,-86,-48,-128v6,-3,7,-11,0,-14v4,-4,7,-7,7,-27xm42,-243v1,29,-5,84,6,99v-7,5,-6,12,0,17v-11,17,-4,70,-6,99v0,10,3,14,10,14v6,0,10,-3,10,-14v-1,-28,4,-88,-6,-101v6,-3,5,-11,0,-14v12,-19,4,-69,6,-100v0,-8,-2,-12,-10,-12v-8,0,-10,3,-10,12xm26,-280v-7,-5,-8,-28,0,-34v7,4,16,-2,19,5v0,13,3,35,-12,26v-3,0,-6,2,-7,3xm68,-280v-8,-5,-7,-29,0,-34v7,6,15,-3,19,5v0,13,3,35,-12,26v-3,0,-6,2,-7,3","k":{"v":7,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"V":7,"W":4,"Y":4,"\u00dd":4,"\u0178":4,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"x":7,"X":7}},"\u00d2":{"d":"11,-169v-2,-48,-5,-120,42,-100v18,-8,37,-4,40,28v3,27,-5,84,6,96v-5,4,-7,11,0,15v-10,10,-4,64,-6,89v-3,39,-21,51,-41,41v-62,23,-28,-86,-48,-128v6,-3,7,-11,0,-14v4,-4,7,-7,7,-27xm42,-243v1,29,-5,84,6,99v-7,5,-6,12,0,17v-11,17,-4,70,-6,99v0,10,3,14,10,14v6,0,10,-3,10,-14v-1,-28,4,-88,-6,-101v6,-3,5,-11,0,-14v12,-19,4,-69,6,-100v0,-8,-2,-12,-10,-12v-8,0,-10,3,-10,12xm21,-311v11,-10,25,15,39,15v-1,10,3,24,-13,11v-6,-4,-18,-12,-24,-13v2,-3,1,-9,-2,-13","k":{"v":7,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"V":7,"W":4,"Y":4,"\u00dd":4,"\u0178":4,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"x":7,"X":7}},"\u00d5":{"d":"11,-169v-2,-48,-5,-120,42,-100v18,-8,37,-4,40,28v3,27,-5,84,6,96v-5,4,-7,11,0,15v-10,10,-4,64,-6,89v-3,39,-21,51,-41,41v-62,23,-28,-86,-48,-128v6,-3,7,-11,0,-14v4,-4,7,-7,7,-27xm42,-243v1,29,-5,84,6,99v-7,5,-6,12,0,17v-11,17,-4,70,-6,99v0,10,3,14,10,14v6,0,10,-3,10,-14v-1,-28,4,-88,-6,-101v6,-3,5,-11,0,-14v12,-19,4,-69,6,-100v0,-8,-2,-12,-10,-12v-8,0,-10,3,-10,12xm87,-301v-5,5,-7,22,-21,22v-13,0,-17,-14,-23,-14v-5,0,-7,6,-6,9v-3,0,-7,3,-8,6v-1,-3,-5,-7,-8,-7v3,-7,8,-23,20,-23v13,0,19,15,25,15v5,0,5,-6,4,-9v4,0,7,-3,8,-6v1,3,4,6,9,7","k":{"v":7,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"V":7,"W":4,"Y":4,"\u00dd":4,"\u0178":4,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"x":7,"X":7}},"\u0160":{"d":"80,-43v0,34,-27,56,-61,43v-3,0,-5,2,-7,4v-2,-4,-5,-7,-10,-8v5,-14,5,-60,0,-77v12,0,10,-13,15,-28v0,21,5,25,13,28v-5,10,-8,67,8,67v10,0,13,-8,13,-20v-1,-35,-11,-75,-29,-90v4,-8,0,-14,-7,-15v1,-37,-45,-154,43,-130v3,0,7,-3,8,-4v2,5,6,7,10,7v-5,15,-5,58,1,72v-9,4,-11,8,-11,29r-3,0v0,-22,-3,-25,-12,-29v4,-10,10,-63,-10,-61v-7,0,-10,6,-10,16v1,37,13,83,31,96v-6,6,-2,13,5,13v-6,22,13,57,13,87xm39,-282v-9,9,-20,-14,-29,-16v4,-6,-1,-14,6,-16r23,21v8,-7,17,-13,24,-21v6,2,2,11,6,16v-10,5,-18,23,-30,16","w":78},"\u00da":{"d":"46,-248v-6,25,-7,87,4,108v-8,3,-6,12,0,15v-10,8,-6,72,-7,97v0,9,2,14,11,14v9,0,13,-5,13,-14v-2,-32,6,-75,-6,-97v5,-3,6,-13,0,-16v11,-19,4,-72,6,-102v0,-7,-5,-7,-6,-1v-1,4,2,11,-3,10r-1,-32v8,-9,20,1,31,-7v2,4,6,7,10,7r-3,33v-7,2,0,-13,-5,-15v-3,29,-6,83,4,108v-6,4,-5,12,1,15v-19,25,10,127,-33,129v-2,-5,-24,-6,-25,0v-4,0,-24,-9,-24,-32v0,-30,5,-79,-5,-99v4,-4,4,-11,-1,-14v12,-19,4,-73,6,-104v0,-5,-4,-7,-4,-2v-1,4,3,13,-3,12r-5,-31v12,-9,29,2,43,-7v1,4,6,7,10,7r-3,32v-7,1,0,-12,-5,-14xm42,-296v12,1,30,-25,39,-15v-3,4,-3,10,-1,13v-11,0,-30,25,-39,15v3,-4,3,-10,1,-13","w":100},"\u00db":{"d":"46,-248v-6,25,-7,87,4,108v-8,3,-6,12,0,15v-10,8,-6,72,-7,97v0,9,2,14,11,14v9,0,13,-5,13,-14v-2,-32,6,-75,-6,-97v5,-3,6,-13,0,-16v11,-19,4,-72,6,-102v0,-7,-5,-7,-6,-1v-1,4,2,11,-3,10r-1,-32v8,-9,20,1,31,-7v2,4,6,7,10,7r-3,33v-7,2,0,-13,-5,-15v-3,29,-6,83,4,108v-6,4,-5,12,1,15v-19,25,10,127,-33,129v-2,-5,-24,-6,-25,0v-4,0,-24,-9,-24,-32v0,-30,5,-79,-5,-99v4,-4,4,-11,-1,-14v12,-19,4,-73,6,-104v0,-5,-4,-7,-4,-2v-1,4,3,13,-3,12r-5,-31v12,-9,29,2,43,-7v1,4,6,7,10,7r-3,32v-7,1,0,-12,-5,-14xm54,-311v8,-10,21,15,30,16v-5,6,1,15,-7,16r-23,-21v-10,5,-17,26,-29,17v2,-4,2,-9,-1,-12v9,-2,21,-25,30,-16","w":100},"\u00dc":{"d":"46,-248v-6,25,-7,87,4,108v-8,3,-6,12,0,15v-10,8,-6,72,-7,97v0,9,2,14,11,14v9,0,13,-5,13,-14v-2,-32,6,-75,-6,-97v5,-3,6,-13,0,-16v11,-19,4,-72,6,-102v0,-7,-5,-7,-6,-1v-1,4,2,11,-3,10r-1,-32v8,-9,20,1,31,-7v2,4,6,7,10,7r-3,33v-7,2,0,-13,-5,-15v-3,29,-6,83,4,108v-6,4,-5,12,1,15v-19,25,10,127,-33,129v-2,-5,-24,-6,-25,0v-4,0,-24,-9,-24,-32v0,-30,5,-79,-5,-99v4,-4,4,-11,-1,-14v12,-19,4,-73,6,-104v0,-5,-4,-7,-4,-2v-1,4,3,13,-3,12r-5,-31v12,-9,29,2,43,-7v1,4,6,7,10,7r-3,32v-7,1,0,-12,-5,-14xm26,-280v-7,-5,-8,-28,0,-34v6,4,17,-3,19,5v-1,13,4,35,-12,26v-3,0,-6,2,-7,3xm68,-280v-8,-5,-7,-29,0,-34v7,6,15,-3,19,5v0,13,3,35,-12,26v-3,0,-6,2,-7,3","w":100},"\u00d9":{"d":"46,-248v-6,25,-7,87,4,108v-8,3,-6,12,0,15v-10,8,-6,72,-7,97v0,9,2,14,11,14v9,0,13,-5,13,-14v-2,-32,6,-75,-6,-97v5,-3,6,-13,0,-16v11,-19,4,-72,6,-102v0,-7,-5,-7,-6,-1v-1,4,2,11,-3,10r-1,-32v8,-9,20,1,31,-7v2,4,6,7,10,7r-3,33v-7,2,0,-13,-5,-15v-3,29,-6,83,4,108v-6,4,-5,12,1,15v-19,25,10,127,-33,129v-2,-5,-24,-6,-25,0v-4,0,-24,-9,-24,-32v0,-30,5,-79,-5,-99v4,-4,4,-11,-1,-14v12,-19,4,-73,6,-104v0,-5,-4,-7,-4,-2v-1,4,3,13,-3,12r-5,-31v12,-9,29,2,43,-7v1,4,6,7,10,7r-3,32v-7,1,0,-12,-5,-14xm20,-311v11,-10,25,15,39,15v-2,10,2,23,-13,11v-6,-5,-18,-12,-24,-13v2,-3,1,-9,-2,-13","w":100},"\u00dd":{"d":"60,-267v12,-7,23,1,33,-6v1,3,4,7,7,7v-3,10,-1,25,-7,31v0,-5,1,-22,-4,-11v-3,31,-19,77,-13,105v-6,-1,-9,11,-3,14v-12,11,-12,87,-6,112v4,-1,1,-11,2,-16r3,0r4,29v-14,9,-29,-3,-43,6v-2,-3,-6,-6,-10,-6r3,-31v7,-1,-1,15,6,16v4,-24,6,-100,-8,-110v6,-5,5,-14,-2,-16v5,-28,-5,-81,-13,-108v-5,1,3,15,-4,14r-5,-30v11,-10,27,2,39,-6v1,3,5,6,10,6r2,29v-7,3,-2,-20,-9,-10r12,89v3,-30,15,-65,13,-93v-7,1,0,17,-8,17xm42,-296v12,0,30,-25,39,-15v-3,4,-4,10,-2,13v-12,0,-30,26,-39,15v3,-4,4,-10,2,-13","w":99,"k":{"c":2,"\u00e7":2,"g":2,"o":2,"\u00f8":2,"\u0153":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"q":2,"C":2,"\u00c7":2,"G":2,"O":2,"\u00d8":2,"\u0152":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"Q":2,"a":19,"\u00e6":19,"\u00e1":19,"\u00e2":19,"\u00e4":19,"\u00e0":19,"\u00e5":19,"\u00e3":19,":":12,",":23,".":23,";":12,"A":19,"\u00c6":19,"\u00c1":19,"\u00c2":19,"\u00c4":19,"\u00c0":19,"\u00c5":19,"\u00c3":19,"-":12}},"\u0178":{"d":"60,-267v12,-7,23,1,33,-6v1,3,4,7,7,7v-3,10,-1,25,-7,31v0,-5,1,-22,-4,-11v-3,31,-19,77,-13,105v-6,-1,-9,11,-3,14v-12,11,-12,87,-6,112v4,-1,1,-11,2,-16r3,0r4,29v-14,9,-29,-3,-43,6v-2,-3,-6,-6,-10,-6r3,-31v7,-1,-1,15,6,16v4,-24,6,-100,-8,-110v6,-5,5,-14,-2,-16v5,-28,-5,-81,-13,-108v-5,1,3,15,-4,14r-5,-30v11,-10,27,2,39,-6v1,3,5,6,10,6r2,29v-7,3,-2,-20,-9,-10r12,89v3,-30,15,-65,13,-93v-7,1,0,17,-8,17xm25,-280v-7,-5,-8,-28,0,-34v6,4,17,-3,19,5v-1,13,4,35,-12,26v-3,0,-6,2,-7,3xm67,-280v-8,-5,-7,-29,0,-34v7,6,16,-3,20,5v0,13,3,35,-12,26v-3,0,-7,2,-8,3","w":99,"k":{"c":2,"\u00e7":2,"g":2,"o":2,"\u00f8":2,"\u0153":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"q":2,"C":2,"\u00c7":2,"G":2,"O":2,"\u00d8":2,"\u0152":2,"\u00d3":2,"\u00d4":2,"\u00d6":2,"\u00d2":2,"\u00d5":2,"Q":2,"a":19,"\u00e6":19,"\u00e1":19,"\u00e2":19,"\u00e4":19,"\u00e0":19,"\u00e5":19,"\u00e3":19,":":12,",":23,".":23,";":12,"A":19,"\u00c6":19,"\u00c1":19,"\u00c2":19,"\u00c4":19,"\u00c0":19,"\u00c5":19,"\u00c3":19,"-":12}},"\u017d":{"d":"15,-273v9,9,30,-5,46,4v4,0,6,-2,8,-4v1,3,3,6,6,6v-4,40,-24,87,-15,125v-7,2,-8,10,-2,14v-14,20,-14,69,-21,98v-2,12,0,15,8,15v20,0,9,-44,6,-60v9,-5,12,-7,12,-29r3,0v0,22,1,25,11,29v-6,12,-5,59,0,72v-14,15,-51,-2,-65,7v-1,-3,-4,-6,-8,-6v4,-40,19,-88,14,-126v7,-2,8,-11,3,-16v12,-19,14,-66,20,-94v3,-14,-1,-17,-9,-17v-16,0,-9,48,-5,61v-12,2,-9,14,-14,30v0,-22,-3,-25,-12,-30v6,-10,4,-60,0,-72v5,1,13,-4,14,-7xm39,-282v-9,9,-20,-14,-29,-16v4,-6,-1,-14,6,-16r23,21v8,-7,17,-13,24,-21v6,2,2,11,6,16v-10,5,-18,23,-30,16","w":78},"\u00e1":{"d":"35,-273v5,5,23,5,28,0v1,4,3,6,6,7v5,34,3,104,17,123v-6,4,-5,12,0,15v-8,24,-2,84,5,111v6,-1,0,-14,5,-16r4,30v-8,11,-27,-2,-38,7v-1,-4,-6,-7,-10,-7r-1,-29v7,-3,2,24,8,10v-5,-17,7,-49,-21,-44v-12,6,-7,35,-6,49v6,-1,0,-15,6,-16r0,31v-8,9,-21,-3,-30,6v-1,-4,-5,-7,-8,-7r2,-30v8,-1,-2,14,6,15v5,-29,10,-83,4,-110v4,-3,4,-12,0,-15v14,-21,12,-88,17,-123v3,-1,5,-4,6,-7xm44,-201v-8,17,2,52,-3,66v8,8,-17,37,3,42v20,-4,-5,-34,4,-42v-5,-17,3,-48,-4,-66xm42,-296v12,1,30,-26,39,-15v-3,4,-4,10,-2,13v-12,0,-30,26,-39,15v3,-4,4,-10,2,-13","w":99},"\u00e2":{"d":"35,-273v5,5,23,5,28,0v1,4,3,6,6,7v5,34,3,104,17,123v-6,4,-5,12,0,15v-8,24,-2,84,5,111v6,-1,0,-14,5,-16r4,30v-8,11,-27,-2,-38,7v-1,-4,-6,-7,-10,-7r-1,-29v7,-3,2,24,8,10v-5,-17,7,-49,-21,-44v-12,6,-7,35,-6,49v6,-1,0,-15,6,-16r0,31v-8,9,-21,-3,-30,6v-1,-4,-5,-7,-8,-7r2,-30v8,-1,-2,14,6,15v5,-29,10,-83,4,-110v4,-3,4,-12,0,-15v14,-21,12,-88,17,-123v3,-1,5,-4,6,-7xm44,-201v-8,17,2,52,-3,66v8,8,-17,37,3,42v20,-4,-5,-34,4,-42v-5,-17,3,-48,-4,-66xm50,-311v8,-10,21,15,30,16v-5,6,1,15,-7,16r-23,-21v-10,5,-17,26,-29,17v2,-4,3,-9,0,-12v9,-2,19,-25,29,-16","w":99},"\u00e4":{"d":"35,-273v5,5,23,5,28,0v1,4,3,6,6,7v5,34,3,104,17,123v-6,4,-5,12,0,15v-8,24,-2,84,5,111v6,-1,0,-14,5,-16r4,30v-8,11,-27,-2,-38,7v-1,-4,-6,-7,-10,-7r-1,-29v7,-3,2,24,8,10v-5,-17,7,-49,-21,-44v-12,6,-7,35,-6,49v6,-1,0,-15,6,-16r0,31v-8,9,-21,-3,-30,6v-1,-4,-5,-7,-8,-7r2,-30v8,-1,-2,14,6,15v5,-29,10,-83,4,-110v4,-3,4,-12,0,-15v14,-21,12,-88,17,-123v3,-1,5,-4,6,-7xm44,-201v-8,17,2,52,-3,66v8,8,-17,37,3,42v20,-4,-5,-34,4,-42v-5,-17,3,-48,-4,-66xm22,-280v-7,-5,-8,-28,0,-34v6,4,17,-3,19,5v-1,13,4,35,-12,26v-3,0,-6,2,-7,3xm64,-280v-8,-5,-7,-29,0,-34v8,6,15,-2,20,5v0,14,2,35,-13,26v-3,0,-6,2,-7,3","w":99},"\u00e0":{"d":"35,-273v5,5,23,5,28,0v1,4,3,6,6,7v5,34,3,104,17,123v-6,4,-5,12,0,15v-8,24,-2,84,5,111v6,-1,0,-14,5,-16r4,30v-8,11,-27,-2,-38,7v-1,-4,-6,-7,-10,-7r-1,-29v7,-3,2,24,8,10v-5,-17,7,-49,-21,-44v-12,6,-7,35,-6,49v6,-1,0,-15,6,-16r0,31v-8,9,-21,-3,-30,6v-1,-4,-5,-7,-8,-7r2,-30v8,-1,-2,14,6,15v5,-29,10,-83,4,-110v4,-3,4,-12,0,-15v14,-21,12,-88,17,-123v3,-1,5,-4,6,-7xm44,-201v-8,17,2,52,-3,66v8,8,-17,37,3,42v20,-4,-5,-34,4,-42v-5,-17,3,-48,-4,-66xm19,-311v11,-10,26,15,39,15v-1,10,3,24,-13,11v-6,-4,-18,-12,-24,-13v2,-3,1,-9,-2,-13","w":99},"\u00e5":{"d":"35,-273v5,5,23,5,28,0v1,4,3,6,6,7v5,34,3,104,17,123v-6,4,-5,12,0,15v-8,24,-2,84,5,111v6,-1,0,-14,5,-16r4,30v-8,11,-27,-2,-38,7v-1,-4,-6,-7,-10,-7r-1,-29v7,-3,2,24,8,10v-5,-17,7,-49,-21,-44v-12,6,-7,35,-6,49v6,-1,0,-15,6,-16r0,31v-8,9,-21,-3,-30,6v-1,-4,-5,-7,-8,-7r2,-30v8,-1,-2,14,6,15v5,-29,10,-83,4,-110v4,-3,4,-12,0,-15v14,-21,12,-88,17,-123v3,-1,5,-4,6,-7xm44,-201v-8,17,2,52,-3,66v8,8,-17,37,3,42v20,-4,-5,-34,4,-42v-5,-17,3,-48,-4,-66xm24,-299v1,-21,17,-20,37,-19v9,0,15,9,15,19v1,19,-17,19,-36,18v-7,0,-16,-6,-16,-18xm36,-299v0,9,10,8,19,8v6,0,9,-3,9,-8v1,-9,-10,-8,-19,-8v-5,0,-9,2,-9,8","w":99},"\u00e3":{"d":"35,-273v5,5,23,5,28,0v1,4,3,6,6,7v5,34,3,104,17,123v-6,4,-5,12,0,15v-8,24,-2,84,5,111v6,-1,0,-14,5,-16r4,30v-8,11,-27,-2,-38,7v-1,-4,-6,-7,-10,-7r-1,-29v7,-3,2,24,8,10v-5,-17,7,-49,-21,-44v-12,6,-7,35,-6,49v6,-1,0,-15,6,-16r0,31v-8,9,-21,-3,-30,6v-1,-4,-5,-7,-8,-7r2,-30v8,-1,-2,14,6,15v5,-29,10,-83,4,-110v4,-3,4,-12,0,-15v14,-21,12,-88,17,-123v3,-1,5,-4,6,-7xm44,-201v-8,17,2,52,-3,66v8,8,-17,37,3,42v20,-4,-5,-34,4,-42v-5,-17,3,-48,-4,-66xm83,-301v-4,6,-7,22,-21,22v-13,0,-17,-14,-23,-14v-5,0,-6,6,-5,9v-3,0,-8,3,-9,6v-1,-3,-5,-7,-8,-7v4,-6,8,-23,21,-23v13,0,18,15,24,15v5,0,5,-6,4,-9v4,0,7,-3,8,-6v1,3,4,6,9,7","w":99},"\u00e7":{"d":"11,-223v1,-53,23,-54,54,-45v9,-3,8,3,16,4v-5,13,-5,59,1,71v-9,3,-12,8,-12,27r-3,0v0,-21,-4,-25,-12,-28v5,-11,3,-29,3,-45v0,-8,-1,-15,-9,-15v-6,0,-9,6,-9,15v1,27,-4,82,5,96v-6,4,-5,11,0,16v-9,18,-3,70,-5,99v0,9,3,14,9,14v16,0,9,-48,6,-64v11,-1,9,-12,14,-29v0,22,4,25,13,29v-9,27,9,87,-37,82r-3,6v10,1,18,6,18,18v0,17,-23,20,-39,17v1,-4,0,-8,-2,-11v7,-6,24,4,26,-7v0,-5,-5,-8,-14,-7v-4,-7,-3,-11,1,-18v-38,-6,-10,-97,-27,-129v7,-5,6,-11,0,-16v10,-12,5,-56,6,-80","w":83,"k":{"c":4,"\u00e7":4,"g":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"q":4}},"\u00e9":{"d":"59,-93v-18,1,2,-27,-10,-31v-6,0,-6,5,-6,25r0,74v0,9,3,11,11,11v15,0,9,-48,6,-64v12,-1,10,-14,15,-30v0,24,3,26,13,31v-7,11,-6,61,-1,73v-18,15,-54,-2,-74,8v-1,-3,-7,-7,-11,-8r3,-32v7,-3,0,28,8,12v-1,-30,4,-91,-7,-105v7,-3,6,-11,0,-15v11,-17,9,-79,5,-107v-5,0,-2,11,-3,16r-3,0r-3,-31v5,0,8,-3,11,-7v16,10,39,-5,56,4v3,0,6,-2,9,-4v1,3,5,7,9,7v-5,13,-4,54,-1,71v-10,4,-11,9,-11,30r-3,0v0,-20,-3,-26,-13,-30v5,-8,10,-60,-6,-60v-6,0,-10,5,-10,19r0,71v-1,21,8,22,11,12v-4,-8,-3,-23,6,-23v-6,12,18,21,3,33r8,7r-9,6v18,13,-11,25,-3,37xm37,-296v12,1,30,-26,39,-15v-3,4,-4,10,-2,13v-12,0,-30,26,-39,15v3,-4,4,-10,2,-13","w":89},"\u00ea":{"d":"59,-93v-18,1,2,-27,-10,-31v-6,0,-6,5,-6,25r0,74v0,9,3,11,11,11v15,0,9,-48,6,-64v12,-1,10,-14,15,-30v0,24,3,26,13,31v-7,11,-6,61,-1,73v-18,15,-54,-2,-74,8v-1,-3,-7,-7,-11,-8r3,-32v7,-3,0,28,8,12v-1,-30,4,-91,-7,-105v7,-3,6,-11,0,-15v11,-17,9,-79,5,-107v-5,0,-2,11,-3,16r-3,0r-3,-31v5,0,8,-3,11,-7v16,10,39,-5,56,4v3,0,6,-2,9,-4v1,3,5,7,9,7v-5,13,-4,54,-1,71v-10,4,-11,9,-11,30r-3,0v0,-20,-3,-26,-13,-30v5,-8,10,-60,-6,-60v-6,0,-10,5,-10,19r0,71v-1,21,8,22,11,12v-4,-8,-3,-23,6,-23v-6,12,18,21,3,33r8,7r-9,6v18,13,-11,25,-3,37xm45,-311v8,-10,21,15,30,16v-5,6,1,15,-7,16r-23,-21v-10,5,-17,26,-29,17v2,-4,2,-9,-1,-12v9,-2,21,-25,30,-16","w":89},"\u00eb":{"d":"59,-93v-18,1,2,-27,-10,-31v-6,0,-6,5,-6,25r0,74v0,9,3,11,11,11v15,0,9,-48,6,-64v12,-1,10,-14,15,-30v0,24,3,26,13,31v-7,11,-6,61,-1,73v-18,15,-54,-2,-74,8v-1,-3,-7,-7,-11,-8r3,-32v7,-3,0,28,8,12v-1,-30,4,-91,-7,-105v7,-3,6,-11,0,-15v11,-17,9,-79,5,-107v-5,0,-2,11,-3,16r-3,0r-3,-31v5,0,8,-3,11,-7v16,10,39,-5,56,4v3,0,6,-2,9,-4v1,3,5,7,9,7v-5,13,-4,54,-1,71v-10,4,-11,9,-11,30r-3,0v0,-20,-3,-26,-13,-30v5,-8,10,-60,-6,-60v-6,0,-10,5,-10,19r0,71v-1,21,8,22,11,12v-4,-8,-3,-23,6,-23v-6,12,18,21,3,33r8,7r-9,6v18,13,-11,25,-3,37xm18,-280v-7,-5,-8,-28,0,-34v7,4,17,-2,19,5v-1,13,4,35,-11,26v-3,0,-7,2,-8,3xm60,-280v-8,-5,-7,-29,0,-34v7,6,16,-3,20,5v0,13,3,35,-12,26v-3,0,-7,2,-8,3","w":89},"\u00e8":{"d":"59,-93v-18,1,2,-27,-10,-31v-6,0,-6,5,-6,25r0,74v0,9,3,11,11,11v15,0,9,-48,6,-64v12,-1,10,-14,15,-30v0,24,3,26,13,31v-7,11,-6,61,-1,73v-18,15,-54,-2,-74,8v-1,-3,-7,-7,-11,-8r3,-32v7,-3,0,28,8,12v-1,-30,4,-91,-7,-105v7,-3,6,-11,0,-15v11,-17,9,-79,5,-107v-5,0,-2,11,-3,16r-3,0r-3,-31v5,0,8,-3,11,-7v16,10,39,-5,56,4v3,0,6,-2,9,-4v1,3,5,7,9,7v-5,13,-4,54,-1,71v-10,4,-11,9,-11,30r-3,0v0,-20,-3,-26,-13,-30v5,-8,10,-60,-6,-60v-6,0,-10,5,-10,19r0,71v-1,21,8,22,11,12v-4,-8,-3,-23,6,-23v-6,12,18,21,3,33r8,7r-9,6v18,13,-11,25,-3,37xm14,-311v11,-10,26,15,39,15v-1,10,3,24,-13,11v-6,-4,-18,-12,-24,-13v2,-3,1,-9,-2,-13","w":89},"\u00ed":{"d":"14,-273v5,5,23,5,28,0v1,4,7,7,11,7v-3,10,0,26,-6,33v1,-6,-1,-27,-4,-13v2,31,-5,86,6,104v-6,2,-5,12,0,14v-10,20,-7,79,-4,109v6,0,-3,-14,5,-13r2,29v-9,9,-29,-1,-39,7v-3,-4,-7,-7,-11,-8r4,-30v7,-1,-1,14,5,16v3,-27,6,-88,-3,-110v5,-2,6,-12,0,-14v9,-21,6,-80,3,-109v-4,1,-1,11,-2,16r-3,0r-3,-31v3,0,10,-4,11,-7xm18,-296v12,1,30,-26,39,-15v-3,4,-4,10,-2,13v-12,0,-30,26,-39,15v3,-4,4,-10,2,-13","w":55},"\u00ee":{"d":"14,-273v5,5,23,5,28,0v1,4,7,7,11,7v-3,10,0,26,-6,33v1,-6,-1,-27,-4,-13v2,31,-5,86,6,104v-6,2,-5,12,0,14v-10,20,-7,79,-4,109v6,0,-3,-14,5,-13r2,29v-9,9,-29,-1,-39,7v-3,-4,-7,-7,-11,-8r4,-30v7,-1,-1,14,5,16v3,-27,6,-88,-3,-110v5,-2,6,-12,0,-14v9,-21,6,-80,3,-109v-4,1,-1,11,-2,16r-3,0r-3,-31v3,0,10,-4,11,-7xm28,-311v8,-10,21,15,30,16v-5,6,1,15,-7,16r-23,-21v-10,5,-17,26,-29,17v2,-4,3,-9,0,-12v9,-2,19,-25,29,-16","w":55},"\u00ef":{"d":"14,-273v5,5,23,5,28,0v1,4,7,7,11,7v-3,10,0,26,-6,33v1,-6,-1,-27,-4,-13v2,31,-5,86,6,104v-6,2,-5,12,0,14v-10,20,-7,79,-4,109v6,0,-3,-14,5,-13r2,29v-9,9,-29,-1,-39,7v-3,-4,-7,-7,-11,-8r4,-30v7,-1,-1,14,5,16v3,-27,6,-88,-3,-110v5,-2,6,-12,0,-14v9,-21,6,-80,3,-109v-4,1,-1,11,-2,16r-3,0r-3,-31v3,0,10,-4,11,-7xm0,-280v-7,-5,-8,-28,0,-34v6,4,17,-3,19,5v-1,13,4,35,-12,26v-3,0,-6,2,-7,3xm42,-280v-8,-5,-7,-29,0,-34v7,6,16,-3,20,5v0,14,3,35,-13,26v-3,0,-6,2,-7,3","w":55},"\u00ec":{"d":"14,-273v5,5,23,5,28,0v1,4,7,7,11,7v-3,10,0,26,-6,33v1,-6,-1,-27,-4,-13v2,31,-5,86,6,104v-6,2,-5,12,0,14v-10,20,-7,79,-4,109v6,0,-3,-14,5,-13r2,29v-9,9,-29,-1,-39,7v-3,-4,-7,-7,-11,-8r4,-30v7,-1,-1,14,5,16v3,-27,6,-88,-3,-110v5,-2,6,-12,0,-14v9,-21,6,-80,3,-109v-4,1,-1,11,-2,16r-3,0r-3,-31v3,0,10,-4,11,-7xm-1,-311v11,-10,25,15,39,15v-1,10,3,23,-13,11v-6,-4,-18,-12,-24,-13v2,-3,1,-9,-2,-13","w":55},"\u00f1":{"d":"62,-267v13,-8,22,1,33,-6v1,3,5,6,9,6r-2,31v-6,4,-2,-28,-8,-8v1,31,-5,84,6,102v-7,5,-5,11,1,15v-11,22,-6,88,-8,124v-4,0,-11,3,-14,7v-3,-4,-9,-6,-13,-6v-8,-39,-11,-95,-25,-125v4,-5,5,-11,-1,-16v2,-15,-1,-40,-7,-52v0,16,-2,45,4,53v-5,4,-6,11,0,15v-8,22,-2,74,-4,105v1,8,5,6,6,0v1,-3,-2,-11,2,-11r3,30v-11,7,-20,0,-31,7v-2,-4,-7,-7,-11,-7r3,-30v6,-3,1,29,8,9v-2,-31,5,-85,-6,-103v6,-4,5,-10,0,-15v11,-17,4,-74,6,-104v1,-8,-6,-9,-5,-1v-1,4,3,12,-3,11r-4,-31v5,0,10,-3,13,-6v5,5,17,4,22,0v2,3,8,7,12,6v10,40,13,88,26,125r0,-105v0,-4,-2,-4,-3,-4v-5,-1,0,15,-5,16xm87,-301v-4,6,-6,22,-20,22v-13,0,-17,-14,-23,-14v-5,0,-7,6,-6,9v-3,0,-7,3,-8,6v-1,-3,-5,-7,-8,-7v3,-7,8,-23,20,-23v13,0,18,15,24,15v5,0,6,-6,5,-9v4,0,6,-3,7,-6v1,3,4,6,9,7","w":105},"\u00f3":{"d":"11,-169v-2,-48,-5,-120,42,-100v18,-8,37,-4,40,28v3,27,-5,84,6,96v-5,4,-7,11,0,15v-10,10,-4,64,-6,89v-3,39,-21,51,-41,41v-62,23,-28,-86,-48,-128v6,-3,7,-11,0,-14v4,-4,7,-7,7,-27xm42,-243v1,29,-5,84,6,99v-7,5,-6,12,0,17v-11,17,-4,70,-6,99v0,10,3,14,10,14v6,0,10,-3,10,-14v-1,-28,4,-88,-6,-101v6,-3,5,-11,0,-14v12,-19,4,-69,6,-100v0,-8,-2,-12,-10,-12v-8,0,-10,3,-10,12xm44,-296v12,1,30,-26,39,-15v-3,4,-4,10,-2,13v-12,0,-30,26,-39,15v3,-4,4,-10,2,-13","k":{"v":7,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"x":7}},"\u00f4":{"d":"11,-169v-2,-48,-5,-120,42,-100v18,-8,37,-4,40,28v3,27,-5,84,6,96v-5,4,-7,11,0,15v-10,10,-4,64,-6,89v-3,39,-21,51,-41,41v-62,23,-28,-86,-48,-128v6,-3,7,-11,0,-14v4,-4,7,-7,7,-27xm42,-243v1,29,-5,84,6,99v-7,5,-6,12,0,17v-11,17,-4,70,-6,99v0,10,3,14,10,14v6,0,10,-3,10,-14v-1,-28,4,-88,-6,-101v6,-3,5,-11,0,-14v12,-19,4,-69,6,-100v0,-8,-2,-12,-10,-12v-8,0,-10,3,-10,12xm54,-311v9,-9,20,14,29,16v-2,11,-2,23,-15,8r-14,-13v-10,5,-18,26,-30,17v2,-4,3,-9,0,-12v9,-2,21,-25,30,-16","k":{"v":7,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"x":7}},"\u00f6":{"d":"11,-169v-2,-48,-5,-120,42,-100v18,-8,37,-4,40,28v3,27,-5,84,6,96v-5,4,-7,11,0,15v-10,10,-4,64,-6,89v-3,39,-21,51,-41,41v-62,23,-28,-86,-48,-128v6,-3,7,-11,0,-14v4,-4,7,-7,7,-27xm42,-243v1,29,-5,84,6,99v-7,5,-6,12,0,17v-11,17,-4,70,-6,99v0,10,3,14,10,14v6,0,10,-3,10,-14v-1,-28,4,-88,-6,-101v6,-3,5,-11,0,-14v12,-19,4,-69,6,-100v0,-8,-2,-12,-10,-12v-8,0,-10,3,-10,12xm26,-280v-7,-5,-8,-28,0,-34v7,4,16,-2,19,5v0,13,3,35,-12,26v-3,0,-6,2,-7,3xm68,-280v-8,-5,-7,-29,0,-34v7,6,15,-3,19,5v0,13,3,35,-12,26v-3,0,-6,2,-7,3","k":{"v":7,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"x":7}},"\u00f2":{"d":"11,-169v-2,-48,-5,-120,42,-100v18,-8,37,-4,40,28v3,27,-5,84,6,96v-5,4,-7,11,0,15v-10,10,-4,64,-6,89v-3,39,-21,51,-41,41v-62,23,-28,-86,-48,-128v6,-3,7,-11,0,-14v4,-4,7,-7,7,-27xm42,-243v1,29,-5,84,6,99v-7,5,-6,12,0,17v-11,17,-4,70,-6,99v0,10,3,14,10,14v6,0,10,-3,10,-14v-1,-28,4,-88,-6,-101v6,-3,5,-11,0,-14v12,-19,4,-69,6,-100v0,-8,-2,-12,-10,-12v-8,0,-10,3,-10,12xm21,-311v11,-10,25,15,39,15v-1,10,3,24,-13,11v-6,-4,-18,-12,-24,-13v2,-3,1,-9,-2,-13","k":{"v":7,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"x":7}},"\u00f5":{"d":"11,-169v-2,-48,-5,-120,42,-100v18,-8,37,-4,40,28v3,27,-5,84,6,96v-5,4,-7,11,0,15v-10,10,-4,64,-6,89v-3,39,-21,51,-41,41v-62,23,-28,-86,-48,-128v6,-3,7,-11,0,-14v4,-4,7,-7,7,-27xm42,-243v1,29,-5,84,6,99v-7,5,-6,12,0,17v-11,17,-4,70,-6,99v0,10,3,14,10,14v6,0,10,-3,10,-14v-1,-28,4,-88,-6,-101v6,-3,5,-11,0,-14v12,-19,4,-69,6,-100v0,-8,-2,-12,-10,-12v-8,0,-10,3,-10,12xm87,-301v-5,5,-7,22,-21,22v-13,0,-17,-14,-23,-14v-5,0,-7,6,-6,9v-3,0,-7,3,-8,6v-1,-3,-5,-7,-8,-7v3,-7,8,-23,20,-23v13,0,19,15,25,15v5,0,5,-6,4,-9v4,0,7,-3,8,-6v1,3,4,6,9,7","k":{"v":7,"w":4,"y":4,"\u00fd":4,"\u00ff":4,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"x":7}},"\u0161":{"d":"80,-43v0,34,-27,56,-61,43v-3,0,-5,2,-7,4v-2,-4,-5,-7,-10,-8v5,-14,5,-60,0,-77v12,0,10,-13,15,-28v0,21,5,25,13,28v-5,10,-8,67,8,67v10,0,13,-8,13,-20v-1,-35,-11,-75,-29,-90v4,-8,0,-14,-7,-15v1,-37,-45,-154,43,-130v3,0,7,-3,8,-4v2,5,6,7,10,7v-5,15,-5,58,1,72v-9,4,-11,8,-11,29r-3,0v0,-22,-3,-25,-12,-29v4,-10,10,-63,-10,-61v-7,0,-10,6,-10,16v1,37,13,83,31,96v-6,6,-2,13,5,13v-6,22,13,57,13,87xm39,-282v-9,9,-20,-14,-29,-16v4,-6,-1,-14,6,-16r23,21v8,-7,17,-13,24,-21v6,2,2,11,6,16v-10,5,-18,23,-30,16","w":78},"\u00fa":{"d":"46,-248v-6,25,-7,87,4,108v-8,3,-6,12,0,15v-10,8,-6,72,-7,97v0,9,2,14,11,14v9,0,13,-5,13,-14v-2,-32,6,-75,-6,-97v5,-3,6,-13,0,-16v11,-19,4,-72,6,-102v0,-7,-5,-7,-6,-1v-1,4,2,11,-3,10r-1,-32v8,-9,20,1,31,-7v2,4,6,7,10,7r-3,33v-7,2,0,-13,-5,-15v-3,29,-6,83,4,108v-6,4,-5,12,1,15v-19,25,10,127,-33,129v-2,-5,-24,-6,-25,0v-4,0,-24,-9,-24,-32v0,-30,5,-79,-5,-99v4,-4,4,-11,-1,-14v12,-19,4,-73,6,-104v0,-5,-4,-7,-4,-2v-1,4,3,13,-3,12r-5,-31v12,-9,29,2,43,-7v1,4,6,7,10,7r-3,32v-7,1,0,-12,-5,-14xm42,-296v12,1,30,-25,39,-15v-3,4,-3,10,-1,13v-11,0,-30,25,-39,15v3,-4,3,-10,1,-13","w":100},"\u00fb":{"d":"46,-248v-6,25,-7,87,4,108v-8,3,-6,12,0,15v-10,8,-6,72,-7,97v0,9,2,14,11,14v9,0,13,-5,13,-14v-2,-32,6,-75,-6,-97v5,-3,6,-13,0,-16v11,-19,4,-72,6,-102v0,-7,-5,-7,-6,-1v-1,4,2,11,-3,10r-1,-32v8,-9,20,1,31,-7v2,4,6,7,10,7r-3,33v-7,2,0,-13,-5,-15v-3,29,-6,83,4,108v-6,4,-5,12,1,15v-19,25,10,127,-33,129v-2,-5,-24,-6,-25,0v-4,0,-24,-9,-24,-32v0,-30,5,-79,-5,-99v4,-4,4,-11,-1,-14v12,-19,4,-73,6,-104v0,-5,-4,-7,-4,-2v-1,4,3,13,-3,12r-5,-31v12,-9,29,2,43,-7v1,4,6,7,10,7r-3,32v-7,1,0,-12,-5,-14xm54,-311v8,-10,21,15,30,16v-5,6,1,15,-7,16r-23,-21v-10,5,-17,26,-29,17v2,-4,2,-9,-1,-12v9,-2,21,-25,30,-16","w":100},"\u00fc":{"d":"46,-248v-6,25,-7,87,4,108v-8,3,-6,12,0,15v-10,8,-6,72,-7,97v0,9,2,14,11,14v9,0,13,-5,13,-14v-2,-32,6,-75,-6,-97v5,-3,6,-13,0,-16v11,-19,4,-72,6,-102v0,-7,-5,-7,-6,-1v-1,4,2,11,-3,10r-1,-32v8,-9,20,1,31,-7v2,4,6,7,10,7r-3,33v-7,2,0,-13,-5,-15v-3,29,-6,83,4,108v-6,4,-5,12,1,15v-19,25,10,127,-33,129v-2,-5,-24,-6,-25,0v-4,0,-24,-9,-24,-32v0,-30,5,-79,-5,-99v4,-4,4,-11,-1,-14v12,-19,4,-73,6,-104v0,-5,-4,-7,-4,-2v-1,4,3,13,-3,12r-5,-31v12,-9,29,2,43,-7v1,4,6,7,10,7r-3,32v-7,1,0,-12,-5,-14xm26,-280v-7,-5,-8,-28,0,-34v6,4,17,-3,19,5v-1,13,4,35,-12,26v-3,0,-6,2,-7,3xm68,-280v-8,-5,-7,-29,0,-34v7,6,15,-3,19,5v0,13,3,35,-12,26v-3,0,-6,2,-7,3","w":100},"\u00f9":{"d":"46,-248v-6,25,-7,87,4,108v-8,3,-6,12,0,15v-10,8,-6,72,-7,97v0,9,2,14,11,14v9,0,13,-5,13,-14v-2,-32,6,-75,-6,-97v5,-3,6,-13,0,-16v11,-19,4,-72,6,-102v0,-7,-5,-7,-6,-1v-1,4,2,11,-3,10r-1,-32v8,-9,20,1,31,-7v2,4,6,7,10,7r-3,33v-7,2,0,-13,-5,-15v-3,29,-6,83,4,108v-6,4,-5,12,1,15v-19,25,10,127,-33,129v-2,-5,-24,-6,-25,0v-4,0,-24,-9,-24,-32v0,-30,5,-79,-5,-99v4,-4,4,-11,-1,-14v12,-19,4,-73,6,-104v0,-5,-4,-7,-4,-2v-1,4,3,13,-3,12r-5,-31v12,-9,29,2,43,-7v1,4,6,7,10,7r-3,32v-7,1,0,-12,-5,-14xm20,-311v11,-10,25,15,39,15v-2,10,2,23,-13,11v-6,-5,-18,-12,-24,-13v2,-3,1,-9,-2,-13","w":100},"\u00fd":{"d":"60,-267v12,-7,23,1,33,-6v1,3,4,7,7,7v-3,10,-1,25,-7,31v0,-5,1,-22,-4,-11v-3,31,-19,77,-13,105v-6,-1,-9,11,-3,14v-12,11,-12,87,-6,112v4,-1,1,-11,2,-16r3,0r4,29v-14,9,-29,-3,-43,6v-2,-3,-6,-6,-10,-6r3,-31v7,-1,-1,15,6,16v4,-24,6,-100,-8,-110v6,-5,5,-14,-2,-16v5,-28,-5,-81,-13,-108v-5,1,3,15,-4,14r-5,-30v11,-10,27,2,39,-6v1,3,5,6,10,6r2,29v-7,3,-2,-20,-9,-10r12,89v3,-30,15,-65,13,-93v-7,1,0,17,-8,17xm42,-296v12,0,30,-25,39,-15v-3,4,-4,10,-2,13v-12,0,-30,26,-39,15v3,-4,4,-10,2,-13","w":99,"k":{"c":2,"\u00e7":2,"g":2,"o":2,"\u00f8":2,"\u0153":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"q":2,"a":19,"\u00e6":19,"\u00e1":19,"\u00e2":19,"\u00e4":19,"\u00e0":19,"\u00e5":19,"\u00e3":19,":":12,",":23,".":23,";":12,"-":12}},"\u00ff":{"d":"60,-267v12,-7,23,1,33,-6v1,3,4,7,7,7v-3,10,-1,25,-7,31v0,-5,1,-22,-4,-11v-3,31,-19,77,-13,105v-6,-1,-9,11,-3,14v-12,11,-12,87,-6,112v4,-1,1,-11,2,-16r3,0r4,29v-14,9,-29,-3,-43,6v-2,-3,-6,-6,-10,-6r3,-31v7,-1,-1,15,6,16v4,-24,6,-100,-8,-110v6,-5,5,-14,-2,-16v5,-28,-5,-81,-13,-108v-5,1,3,15,-4,14r-5,-30v11,-10,27,2,39,-6v1,3,5,6,10,6r2,29v-7,3,-2,-20,-9,-10r12,89v3,-30,15,-65,13,-93v-7,1,0,17,-8,17xm25,-280v-7,-5,-8,-28,0,-34v6,4,17,-3,19,5v-1,13,4,35,-12,26v-3,0,-6,2,-7,3xm67,-280v-8,-5,-7,-29,0,-34v7,6,16,-3,20,5v0,13,3,35,-12,26v-3,0,-7,2,-8,3","w":99,"k":{"c":2,"\u00e7":2,"g":2,"o":2,"\u00f8":2,"\u0153":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,"q":2,"a":19,"\u00e6":19,"\u00e1":19,"\u00e2":19,"\u00e4":19,"\u00e0":19,"\u00e5":19,"\u00e3":19,":":12,",":23,".":23,";":12,"-":12}},"\u017e":{"d":"15,-273v9,9,30,-5,46,4v4,0,6,-2,8,-4v1,3,3,6,6,6v-4,40,-24,87,-15,125v-7,2,-8,10,-2,14v-14,20,-14,69,-21,98v-2,12,0,15,8,15v20,0,9,-44,6,-60v9,-5,12,-7,12,-29r3,0v0,22,1,25,11,29v-6,12,-5,59,0,72v-14,15,-51,-2,-65,7v-1,-3,-4,-6,-8,-6v4,-40,19,-88,14,-126v7,-2,8,-11,3,-16v12,-19,14,-66,20,-94v3,-14,-1,-17,-9,-17v-16,0,-9,48,-5,61v-12,2,-9,14,-14,30v0,-22,-3,-25,-12,-30v6,-10,4,-60,0,-72v5,1,13,-4,14,-7xm39,-282v-9,9,-20,-14,-29,-16v4,-6,-1,-14,6,-16r23,21v8,-7,17,-13,24,-21v6,2,2,11,6,16v-10,5,-18,23,-30,16","w":78},"\u2206":{"d":"8,0v7,-96,27,-180,38,-272r26,0r37,255r0,17r-101,0xm31,-23r55,0r-28,-202","w":116},"\u2126":{"d":"7,-24v7,-1,20,3,24,-2v-30,-48,-34,-244,28,-244v61,0,49,201,24,246r23,0r0,24r-43,0v3,-43,16,-79,16,-143v0,-47,-3,-101,-22,-101v-35,0,-24,198,-6,226r0,18r-44,0r0,-24","w":114},"\u03c0":{"d":"103,-174r-11,0r2,174r-22,0v-8,-41,-3,-122,-4,-174r-22,0v-1,49,-5,131,-13,174r-23,0v8,-45,12,-123,12,-174v-8,0,-11,1,-14,2r-4,-18v16,-15,69,-7,101,-9","w":110},"\u20ac":{"d":"15,-223v1,-53,24,-54,55,-45v9,-3,8,3,16,4v-5,7,-6,49,0,56v-9,3,-11,8,-11,27r-3,0v0,-21,-5,-24,-13,-27v4,-11,11,-44,-6,-46v-10,0,-8,18,-9,28v2,20,-4,49,2,65v13,0,23,0,24,-1v-3,4,-2,15,0,19v0,-1,-15,-2,-26,-2v1,5,-3,15,2,17v13,0,23,-1,24,-2v-2,4,-3,15,0,19r-26,-1r0,84v0,9,4,14,10,14v14,1,10,-39,6,-49v11,-1,9,-13,14,-30v0,22,3,26,12,30v-4,26,2,71,-36,67v-47,6,-33,-72,-35,-117v-6,0,-10,1,-11,2v7,-9,-9,-23,11,-17r0,-17v-6,0,-10,0,-11,1v7,-9,-9,-23,11,-17r0,-62","w":94},"\u212e":{"d":"69,-54v37,68,153,63,196,4r22,0v-27,32,-71,53,-121,53v-85,0,-153,-61,-153,-137v0,-76,68,-139,153,-139v86,1,155,63,154,142r-251,2r0,75xm262,-138v1,-26,4,-64,-2,-87v-47,-51,-141,-52,-187,1v-8,20,-5,63,-2,86r191,0","w":333},"\u2202":{"d":"22,-261r-7,-23v8,-9,18,-18,33,-18v24,0,52,31,52,140v0,118,-22,163,-53,163v-22,0,-37,-29,-37,-84v0,-63,23,-102,45,-102v11,-1,15,7,22,16v2,-67,-17,-141,-55,-92xm50,-24v14,0,25,-49,26,-112v-4,-16,-8,-25,-17,-25v-14,0,-25,37,-25,79v0,40,6,58,16,58","w":109},"\u220f":{"d":"126,-240r-15,0r0,277r-24,0r0,-277r-41,0r0,277r-24,0r0,-277r-14,0r0,-27r118,0r0,27","w":133},"\u2211":{"d":"102,37r-95,0r0,-21r48,-131r-46,-132r0,-20r87,0r0,23v-19,1,-41,-2,-58,1r43,122r-49,131r70,0r0,27","w":106},"\u2219":{"d":"14,-112v-9,-7,-9,-37,0,-45v2,3,17,4,19,0v9,7,12,38,0,45v-2,-5,-17,-5,-19,0","w":47},"\u221a":{"d":"121,-320r-43,377r-20,0r-31,-178r-15,6r-4,-17r36,-13r24,155r36,-330r17,0","w":126},"\u221e":{"d":"183,-112v-3,53,-59,59,-86,15v-20,37,-85,41,-86,-14v0,-52,67,-53,87,-14v15,-34,88,-41,85,13xm28,-110v2,38,48,28,60,1v-12,-30,-58,-43,-60,-1xm142,-138v-15,0,-28,18,-36,27v15,18,23,27,37,27v15,0,23,-14,23,-27v0,-17,-9,-27,-24,-27","w":193},"\u222b":{"d":"33,-230v0,-59,1,-88,40,-97v4,0,9,2,12,3r-3,21v-2,-1,-3,-2,-6,-2v-21,12,-17,26,-17,77v0,60,2,129,2,192v0,58,1,98,-38,98v-6,0,-11,-2,-14,-4r4,-22v29,3,22,-23,22,-71v0,-64,-2,-134,-2,-195","w":95},"\u2248":{"d":"37,-148v30,0,45,39,58,-2r10,7v-4,16,-15,30,-29,30v-19,0,-49,-40,-58,1r-12,-8v6,-17,17,-28,31,-28xm37,-104v30,0,46,39,58,-2r10,8v-4,16,-15,29,-29,29v-11,3,-30,-20,-40,-20v-10,0,-14,11,-18,21r-12,-7v6,-17,17,-29,31,-29","w":112},"\u2260":{"d":"83,-162r-8,20r26,0r0,18r-31,0r-12,33r43,0r0,17r-49,0r-9,24r-12,-4r7,-20r-27,0r0,-17r32,0r12,-33r-44,0r0,-18r49,0r10,-25","w":112},"\u2264":{"d":"101,-53r-89,-62r0,-18r89,-62r0,21r-73,50r73,49r0,22xm102,-22r-90,0r0,-19r90,0r0,19","w":112},"\u2265":{"d":"13,-195r88,62r0,18r-88,62r0,-22r72,-49r-72,-50r0,-21xm102,-22r-90,0r0,-19r90,0r0,19","w":112},"\u25ca":{"d":"114,-134r-41,142r-22,0r-39,-142r42,-141r21,0xm91,-133r-28,-115v-5,40,-19,77,-28,114r28,115v7,-41,19,-76,28,-114","w":126},"\u02c9":{"d":"25,-295v6,2,47,2,54,0v1,4,4,7,7,8v0,15,-45,5,-61,9v-1,-4,-4,-8,-7,-9v3,-1,6,-4,7,-8"},"\u00ad":{"d":"66,-123v-7,-3,-54,-3,-62,0v2,-6,3,-17,0,-22r62,0v-3,5,-2,16,0,22","w":69},"\u03a9":{"d":"7,-24v7,-1,20,3,24,-2v-30,-48,-34,-244,28,-244v61,0,49,201,24,246r23,0r0,24r-43,0v3,-43,16,-79,16,-143v0,-47,-3,-101,-22,-101v-35,0,-24,198,-6,226r0,18r-44,0r0,-24","w":114},"\u00a0":{"w":46},"\u2113":{"d":"85,-42r10,10v-7,21,-18,34,-35,34v-33,1,-37,-36,-36,-82v-3,5,-7,9,-11,14r-7,-15v6,-8,13,-17,18,-26v0,-59,-8,-186,35,-186v14,0,24,18,24,55v0,45,-13,91,-35,131v0,37,-1,98,16,88v10,0,15,-12,21,-23xm59,-271v-15,1,-10,99,-11,134v13,-30,21,-67,21,-103v0,-23,-4,-31,-10,-31","w":99},"\u03bc":{"d":"54,-147v-4,15,-5,53,3,65v-5,3,-4,6,0,9v-7,4,-5,42,-5,58v0,5,1,9,10,9v21,-2,5,-37,10,-55v-6,-25,5,-57,-1,-86v-5,-1,-1,9,-5,9v-9,-27,19,-25,36,-19v-2,6,0,17,-5,20v1,-4,-1,-16,-3,-7v2,20,-5,50,5,62v-6,2,-5,8,0,9v-7,10,-9,56,0,68v3,-1,-2,-9,1,-10v3,9,10,18,1,24v-10,-7,-29,6,-29,-8v-4,3,-13,1,-20,2v5,33,-2,36,2,63v3,0,-2,-10,4,-8r1,17v-11,4,-26,5,-36,0v2,-5,-1,-16,4,-18v-1,5,2,15,4,5v-7,-44,6,-90,-5,-136v3,-2,5,-6,0,-8v6,-11,6,-50,2,-66v-3,1,1,10,-3,9r-4,-18v13,-4,26,-4,39,-1r-2,20v-6,2,-1,-7,-4,-9","w":138},"\u2215":{"d":"-4,5r-17,0r70,-277r17,0","w":44},"\u2010":{"d":"66,-123v-7,-3,-54,-3,-62,0v2,-6,3,-17,0,-22r62,0v-3,5,-2,16,0,22","w":69}}});
