var MooTools={'version':'1.2.3','build':'4980aa0fb74d2f6eb80bcd9f5b8e1fd6fbb8f607'};var Native=function(options){options=options||{};var name=options.name;var legacy=options.legacy;var protect=options.protect;var methods=options.implement;var generics=options.generics;var initialize=options.initialize;var afterImplement=options.afterImplement||function(){};var object=initialize||legacy;generics=generics!==false;object.constructor=Native;object.$family={name:'native'};if(legacy&&initialize)object.prototype=legacy.prototype;object.prototype.constructor=object;if(name){var family=name.toLowerCase();object.prototype.$family={name:family};Native.typize(object,family);}
var add=function(obj,name,method,force){if(!protect||force||!obj.prototype[name])obj.prototype[name]=method;if(generics)Native.genericize(obj,name,protect);afterImplement.call(obj,name,method);return obj;};object.alias=function(a1,a2,a3){if(typeof a1=='string'){var pa1=this.prototype[a1];if((a1=pa1))return add(this,a2,a1,a3);}
for(var a in a1)this.alias(a,a1[a],a2);return this;};object.implement=function(a1,a2,a3){if(typeof a1=='string')return add(this,a1,a2,a3);for(var p in a1)add(this,p,a1[p],a2);return this;};if(methods)object.implement(methods);return object;};Native.genericize=function(object,property,check){if((!check||!object[property])&&typeof object.prototype[property]=='function')object[property]=function(){var args=Array.prototype.slice.call(arguments);return object.prototype[property].apply(args.shift(),args);};};Native.implement=function(objects,properties){for(var i=0,l=objects.length;i<l;i++)objects[i].implement(properties);};Native.typize=function(object,family){if(!object.type)object.type=function(item){return($type(item)===family);};};(function(){var natives={'Array':Array,'Date':Date,'Function':Function,'Number':Number,'RegExp':RegExp,'String':String};for(var n in natives)new Native({name:n,initialize:natives[n],protect:true});var types={'boolean':Boolean,'native':Native,'object':Object};for(var t in types)Native.typize(types[t],t);var generics={'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 g in generics){for(var i=generics[g].length;i--;)Native.genericize(natives[g],generics[g][i],true);}})();var Hash=new Native({name:'Hash',initialize:function(object){if($type(object)=='hash')object=$unlink(object.getClean());for(var key in object)this[key]=object[key];return this;}});Hash.implement({forEach:function(fn,bind){for(var key in this){if(this.hasOwnProperty(key))fn.call(bind,this[key],key,this);}},getClean:function(){var clean={};for(var key in this){if(this.hasOwnProperty(key))clean[key]=this[key];}
return clean;},getLength:function(){var length=0;for(var key in this){if(this.hasOwnProperty(key))length++;}
return length;}});Hash.alias('forEach','each');Array.implement({forEach:function(fn,bind){for(var i=0,l=this.length;i<l;i++)fn.call(bind,this[i],i,this);}});Array.alias('forEach','each');function $A(iterable){if(iterable.item){var l=iterable.length,array=new Array(l);while(l--)array[l]=iterable[l];return array;}
return Array.prototype.slice.call(iterable);};function $arguments(i){return function(){return arguments[i];};};function $chk(obj){return!!(obj||obj===0);};function $clear(timer){clearTimeout(timer);clearInterval(timer);return null;};function $defined(obj){return(obj!=undefined);};function $each(iterable,fn,bind){var type=$type(iterable);((type=='arguments'||type=='collection'||type=='array')?Array:Hash).each(iterable,fn,bind);};function $empty(){};function $extend(original,extended){for(var key in(extended||{}))original[key]=extended[key];return original;};function $H(object){return new Hash(object);};function $lambda(value){return($type(value)=='function')?value:function(){return value;};};function $merge(){var args=Array.slice(arguments);args.unshift({});return $mixin.apply(null,args);};function $mixin(mix){for(var i=1,l=arguments.length;i<l;i++){var object=arguments[i];if($type(object)!='object')continue;for(var key in object){var op=object[key],mp=mix[key];mix[key]=(mp&&$type(op)=='object'&&$type(mp)=='object')?$mixin(mp,op):$unlink(op);}}
return mix;};function $pick(){for(var i=0,l=arguments.length;i<l;i++){if(arguments[i]!=undefined)return arguments[i];}
return null;};function $random(min,max){return Math.floor(Math.random()*(max-min+1)+min);};function $splat(obj){var type=$type(obj);return(type)?((type!='array'&&type!='arguments')?[obj]:obj):[];};var $time=Date.now||function(){return+new Date;};function $try(){for(var i=0,l=arguments.length;i<l;i++){try{return arguments[i]();}catch(e){}}
return null;};function $type(obj){if(obj==undefined)return false;if(obj.$family)return(obj.$family.name=='number'&&!isFinite(obj))?false:obj.$family.name;if(obj.nodeName){switch(obj.nodeType){case 1:return'element';case 3:return(/\S/).test(obj.nodeValue)?'textnode':'whitespace';}}else if(typeof obj.length=='number'){if(obj.callee)return'arguments';else if(obj.item)return'collection';}
return typeof obj;};function $unlink(object){var unlinked;switch($type(object)){case'object':unlinked={};for(var p in object)unlinked[p]=$unlink(object[p]);break;case'hash':unlinked=new Hash(object);break;case'array':unlinked=[];for(var i=0,l=object.length;i<l;i++)unlinked[i]=$unlink(object[i]);break;default:return object;}
return unlinked;};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)?((Browser.Features.query)?6:5):4);},webkit:function(){return(navigator.taintEnabled)?false:((Browser.Features.xpath)?((Browser.Features.query)?525:420):419);},gecko:function(){return(document.getBoxObjectFor==undefined)?false:((document.getElementsByClassName)?19:18);}}},Browser||{});Browser.Platform[Browser.Platform.name]=true;Browser.detect=function(){for(var engine in this.Engines){var version=this.Engines[engine]();if(version){this.Engine={name:engine,version:version};this.Engine[engine]=this.Engine[engine+version]=true;break;}}
return{name:engine,version:version};};Browser.detect();Browser.Request=function(){return $try(function(){return new XMLHttpRequest();},function(){return new ActiveXObject('MSXML2.XMLHTTP');});};Browser.Features.xhr=!!(Browser.Request());Browser.Plugins.Flash=(function(){var version=($try(function(){return navigator.plugins['Shockwave Flash'].description;},function(){return new ActiveXObject('ShockwaveFlash.ShockwaveFlash').GetVariable('$version');})||'0 r0').match(/\d+/g);return{version:parseInt(version[0]||0+'.'+version[1],10)||0,build:parseInt(version[2],10)||0};})();function $exec(text){if(!text)return text;if(window.execScript){window.execScript(text);}else{var script=document.createElement('script');script.setAttribute('type','text/javascript');script[(Browser.Engine.webkit&&Browser.Engine.version<420)?'innerText':'text']=text;document.head.appendChild(script);document.head.removeChild(script);}
return text;};Native.UID=1;var $uid=(Browser.Engine.trident)?function(item){return(item.uid||(item.uid=[Native.UID++]))[0];}:function(item){return item.uid||(item.uid=Native.UID++);};var Window=new Native({name:'Window',legacy:(Browser.Engine.trident)?null:window.Window,initialize:function(win){$uid(win);if(!win.Element){win.Element=$empty;if(Browser.Engine.webkit)win.document.createElement("iframe");win.Element.prototype=(Browser.Engine.webkit)?window["[[DOMElement.prototype]]"]:{};}
win.document.window=win;return $extend(win,Window.Prototype);},afterImplement:function(property,value){window[property]=Window.Prototype[property]=value;}});Window.Prototype={$family:{name:'window'}};new Window(window);var Document=new Native({name:'Document',legacy:(Browser.Engine.trident)?null:window.Document,initialize:function(doc){$uid(doc);doc.head=doc.getElementsByTagName('head')[0];doc.html=doc.getElementsByTagName('html')[0];if(Browser.Engine.trident&&Browser.Engine.version<=4)$try(function(){doc.execCommand("BackgroundImageCache",false,true);});if(Browser.Engine.trident)doc.window.attachEvent('onunload',function(){doc.window.detachEvent('onunload',arguments.callee);doc.head=doc.html=doc.window=null;});return $extend(doc,Document.Prototype);},afterImplement:function(property,value){document[property]=Document.Prototype[property]=value;}});Document.Prototype={$family:{name:'document'}};new Document(document);Array.implement({every:function(fn,bind){for(var i=0,l=this.length;i<l;i++){if(!fn.call(bind,this[i],i,this))return false;}
return true;},filter:function(fn,bind){var results=[];for(var i=0,l=this.length;i<l;i++){if(fn.call(bind,this[i],i,this))results.push(this[i]);}
return results;},clean:function(){return this.filter($defined);},indexOf:function(item,from){var len=this.length;for(var i=(from<0)?Math.max(0,len+from):from||0;i<len;i++){if(this[i]===item)return i;}
return-1;},map:function(fn,bind){var results=[];for(var i=0,l=this.length;i<l;i++)results[i]=fn.call(bind,this[i],i,this);return results;},some:function(fn,bind){for(var i=0,l=this.length;i<l;i++){if(fn.call(bind,this[i],i,this))return true;}
return false;},associate:function(keys){var obj={},length=Math.min(this.length,keys.length);for(var i=0;i<length;i++)obj[keys[i]]=this[i];return obj;},link:function(object){var result={};for(var i=0,l=this.length;i<l;i++){for(var key in object){if(object[key](this[i])){result[key]=this[i];delete object[key];break;}}}
return result;},contains:function(item,from){return this.indexOf(item,from)!=-1;},extend:function(array){for(var i=0,j=array.length;i<j;i++)this.push(array[i]);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(item){if(!this.contains(item))this.push(item);return this;},combine:function(array){for(var i=0,l=array.length;i<l;i++)this.include(array[i]);return this;},erase:function(item){for(var i=this.length;i--;i){if(this[i]===item)this.splice(i,1);}
return this;},empty:function(){this.length=0;return this;},flatten:function(){var array=[];for(var i=0,l=this.length;i<l;i++){var type=$type(this[i]);if(!type)continue;array=array.concat((type=='array'||type=='collection'||type=='arguments')?Array.flatten(this[i]):this[i]);}
return array;},hexToRgb:function(array){if(this.length!=3)return null;var rgb=this.map(function(value){if(value.length==1)value+=value;return value.toInt(16);});return(array)?rgb:'rgb('+rgb+')';},rgbToHex:function(array){if(this.length<3)return null;if(this.length==4&&this[3]==0&&!array)return'transparent';var hex=[];for(var i=0;i<3;i++){var bit=(this[i]-0).toString(16);hex.push((bit.length==1)?'0'+bit:bit);}
return(array)?hex:'#'+hex.join('');}});Function.implement({extend:function(properties){for(var property in properties)this[property]=properties[property];return this;},create:function(options){var self=this;options=options||{};return function(event){var args=options.arguments;args=(args!=undefined)?$splat(args):Array.slice(arguments,(options.event)?1:0);if(options.event)args=[event||window.event].extend(args);var returns=function(){return self.apply(options.bind||null,args);};if(options.delay)return setTimeout(returns,options.delay);if(options.periodical)return setInterval(returns,options.periodical);if(options.attempt)return $try(returns);return returns();};},run:function(args,bind){return this.apply(bind,$splat(args));},pass:function(args,bind){return this.create({bind:bind,arguments:args});},bind:function(bind,args){return this.create({bind:bind,arguments:args});},bindWithEvent:function(bind,args){return this.create({bind:bind,arguments:args,event:true});},attempt:function(args,bind){return this.create({bind:bind,arguments:args,attempt:true})();},delay:function(delay,bind,args){return this.create({bind:bind,arguments:args,delay:delay})();},periodical:function(periodical,bind,args){return this.create({bind:bind,arguments:args,periodical:periodical})();}});Number.implement({limit:function(min,max){return Math.min(max,Math.max(min,this));},round:function(precision){precision=Math.pow(10,precision||0);return Math.round(this*precision)/precision;},times:function(fn,bind){for(var i=0;i<this;i++)fn.call(bind,i,this);},toFloat:function(){return parseFloat(this);},toInt:function(base){return parseInt(this,base||10);}});Number.alias('times','each');(function(math){var methods={};math.each(function(name){if(!Number[name])methods[name]=function(){return Math[name].apply(null,[this].concat($A(arguments)));};});Number.implement(methods);})(['abs','acos','asin','atan','atan2','ceil','cos','exp','floor','log','max','min','pow','sin','sqrt','tan']);String.implement({test:function(regex,params){return((typeof regex=='string')?new RegExp(regex,params):regex).test(this);},contains:function(string,separator){return(separator)?(separator+this+separator).indexOf(separator+string+separator)>-1:this.indexOf(string)>-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(match){return match.charAt(1).toUpperCase();});},hyphenate:function(){return this.replace(/[A-Z]/g,function(match){return('-'+match.charAt(0).toLowerCase());});},capitalize:function(){return this.replace(/\b[a-z]/g,function(match){return match.toUpperCase();});},escapeRegExp:function(){return this.replace(/([-.*+?^${}()|[\]\/\\])/g,'\\$1');},toInt:function(base){return parseInt(this,base||10);},toFloat:function(){return parseFloat(this);},hexToRgb:function(array){var hex=this.match(/^#?(\w{1,2})(\w{1,2})(\w{1,2})$/);return(hex)?hex.slice(1).hexToRgb(array):null;},rgbToHex:function(array){var rgb=this.match(/\d{1,3}/g);return(rgb)?rgb.rgbToHex(array):null;},stripScripts:function(option){var scripts='';var text=this.replace(/<script[^>]*>([\s\S]*?)<\/script>/gi,function(){scripts+=arguments[1]+'\n';return'';});if(option===true)$exec(scripts);else if($type(option)=='function')option(scripts,text);return text;},substitute:function(object,regexp){return this.replace(regexp||(/\\?\{([^{}]+)\}/g),function(match,name){if(match.charAt(0)=='\\')return match.slice(1);return(object[name]!=undefined)?object[name]:'';});}});Hash.implement({has:Object.prototype.hasOwnProperty,keyOf:function(value){for(var key in this){if(this.hasOwnProperty(key)&&this[key]===value)return key;}
return null;},hasValue:function(value){return(Hash.keyOf(this,value)!==null);},extend:function(properties){Hash.each(properties||{},function(value,key){Hash.set(this,key,value);},this);return this;},combine:function(properties){Hash.each(properties||{},function(value,key){Hash.include(this,key,value);},this);return this;},erase:function(key){if(this.hasOwnProperty(key))delete this[key];return this;},get:function(key){return(this.hasOwnProperty(key))?this[key]:null;},set:function(key,value){if(!this[key]||this.hasOwnProperty(key))this[key]=value;return this;},empty:function(){Hash.each(this,function(value,key){delete this[key];},this);return this;},include:function(key,value){if(this[key]==undefined)this[key]=value;return this;},map:function(fn,bind){var results=new Hash;Hash.each(this,function(value,key){results.set(key,fn.call(bind,value,key,this));},this);return results;},filter:function(fn,bind){var results=new Hash;Hash.each(this,function(value,key){if(fn.call(bind,value,key,this))results.set(key,value);},this);return results;},every:function(fn,bind){for(var key in this){if(this.hasOwnProperty(key)&&!fn.call(bind,this[key],key))return false;}
return true;},some:function(fn,bind){for(var key in this){if(this.hasOwnProperty(key)&&fn.call(bind,this[key],key))return true;}
return false;},getKeys:function(){var keys=[];Hash.each(this,function(value,key){keys.push(key);});return keys;},getValues:function(){var values=[];Hash.each(this,function(value){values.push(value);});return values;},toQueryString:function(base){var queryString=[];Hash.each(this,function(value,key){if(base)key=base+'['+key+']';var result;switch($type(value)){case'object':result=Hash.toQueryString(value,key);break;case'array':var qs={};value.each(function(val,i){qs[i]=val;});result=Hash.toQueryString(qs,key);break;default:result=key+'='+encodeURIComponent(value);}
if(value!=undefined)queryString.push(result);});return queryString.join('&');}});Hash.alias({keyOf:'indexOf',hasValue:'contains'});var Event=new Native({name:'Event',initialize:function(event,win){win=win||window;var doc=win.document;event=event||win.event;if(event.$extended)return event;this.$extended=true;var type=event.type;var target=event.target||event.srcElement;while(target&&target.nodeType==3)target=target.parentNode;if(type.test(/key/)){var code=event.which||event.keyCode;var key=Event.Keys.keyOf(code);if(type=='keydown'){var fKey=code-111;if(fKey>0&&fKey<13)key='f'+fKey;}
key=key||String.fromCharCode(code).toLowerCase();}else if(type.match(/(click|mouse|menu)/i)){doc=(!doc.compatMode||doc.compatMode=='CSS1Compat')?doc.html:doc.body;var page={x:event.pageX||event.clientX+doc.scrollLeft,y:event.pageY||event.clientY+doc.scrollTop};var client={x:(event.pageX)?event.pageX-win.pageXOffset:event.clientX,y:(event.pageY)?event.pageY-win.pageYOffset:event.clientY};if(type.match(/DOMMouseScroll|mousewheel/)){var wheel=(event.wheelDelta)?event.wheelDelta/120:-(event.detail||0)/3;}
var rightClick=(event.which==3)||(event.button==2);var related=null;if(type.match(/over|out/)){switch(type){case'mouseover':related=event.relatedTarget||event.fromElement;break;case'mouseout':related=event.relatedTarget||event.toElement;}
if(!(function(){while(related&&related.nodeType==3)related=related.parentNode;return true;}).create({attempt:Browser.Engine.gecko})())related=false;}}
return $extend(this,{event:event,type:type,page:page,client:client,rightClick:rightClick,wheel:wheel,relatedTarget:related,target:target,code:code,key:key,shift:event.shiftKey,control:event.ctrlKey,alt:event.altKey,meta:event.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;}});function Class(params){if(params instanceof Function)params={initialize:params};var newClass=function(){Object.reset(this);if(newClass._prototyping)return this;this._current=$empty;var value=(this.initialize)?this.initialize.apply(this,arguments):this;delete this._current;delete this.caller;return value;}.extend(this);newClass.implement(params);newClass.constructor=Class;newClass.prototype.constructor=newClass;return newClass;};Function.prototype.protect=function(){this._protected=true;return this;};Object.reset=function(object,key){if(key==null){for(var p in object)Object.reset(object,p);return object;}
delete object[key];switch($type(object[key])){case'object':var F=function(){};F.prototype=object[key];var i=new F;object[key]=Object.reset(i);break;case'array':object[key]=$unlink(object[key]);break;}
return object;};new Native({name:'Class',initialize:Class}).extend({instantiate:function(F){F._prototyping=true;var proto=new F;delete F._prototyping;return proto;},wrap:function(self,key,method){if(method._origin)method=method._origin;return function(){if(method._protected&&this._current==null)throw new Error('The method "'+key+'" cannot be called.');var caller=this.caller,current=this._current;this.caller=current;this._current=arguments.callee;var result=method.apply(this,arguments);this._current=current;this.caller=caller;return result;}.extend({_owner:self,_origin:method,_name:key});}});Class.implement({implement:function(key,value){if($type(key)=='object'){for(var p in key)this.implement(p,key[p]);return this;}
var mutator=Class.Mutators[key];if(mutator){value=mutator.call(this,value);if(value==null)return this;}
var proto=this.prototype;switch($type(value)){case'function':if(value._hidden)return this;proto[key]=Class.wrap(this,key,value);break;case'object':var previous=proto[key];if($type(previous)=='object')$mixin(previous,value);else proto[key]=$unlink(value);break;case'array':proto[key]=$unlink(value);break;default:proto[key]=value;}
return this;}});Class.Mutators={Extends:function(parent){this.parent=parent;this.prototype=Class.instantiate(parent);this.implement('parent',function(){var name=this.caller._name,previous=this.caller._owner.parent.prototype[name];if(!previous)throw new Error('The method "'+name+'" has no parent.');return previous.apply(this,arguments);}.protect());},Implements:function(items){$splat(items).each(function(item){if(item instanceof Function)item=Class.instantiate(item);this.implement(item);},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(type,fn,internal){type=Events.removeOn(type);if(fn!=$empty){this.$events[type]=this.$events[type]||[];this.$events[type].include(fn);if(internal)fn.internal=true;}
return this;},addEvents:function(events){for(var type in events)this.addEvent(type,events[type]);return this;},fireEvent:function(type,args,delay){type=Events.removeOn(type);if(!this.$events||!this.$events[type])return this;this.$events[type].each(function(fn){fn.create({'bind':this,'delay':delay,'arguments':args})();},this);return this;},removeEvent:function(type,fn){type=Events.removeOn(type);if(!this.$events[type])return this;if(!fn.internal)this.$events[type].erase(fn);return this;},removeEvents:function(events){var type;if($type(events)=='object'){for(type in events)this.removeEvent(type,events[type]);return this;}
if(events)events=Events.removeOn(events);for(type in this.$events){if(events&&events!=type)continue;var fns=this.$events[type];for(var i=fns.length;i--;i)this.removeEvent(type,fns[i]);}
return this;}});Events.removeOn=function(string){return string.replace(/^on([A-Z])/,function(full,first){return first.toLowerCase();});};var Options=new Class({setOptions:function(){this.options=$merge.run([this.options].extend(arguments));if(!this.addEvent)return this;for(var option in this.options){if($type(this.options[option])!='function'||!(/^on[A-Z]/).test(option))continue;this.addEvent(option,this.options[option]);delete this.options[option];}
return this;}});var Element=new Native({name:'Element',legacy:window.Element,initialize:function(tag,props){var konstructor=Element.Constructors.get(tag);if(konstructor)return konstructor(props);if(typeof tag=='string')return document.newElement(tag,props);return document.id(tag).set(props);},afterImplement:function(key,value){Element.Prototype[key]=value;if(Array[key])return;Elements.implement(key,function(){var items=[],elements=true;for(var i=0,j=this.length;i<j;i++){var returns=this[i][key].apply(this[i],arguments);items.push(returns);if(elements)elements=($type(returns)=='element');}
return(elements)?new Elements(items):items;});}});Element.Prototype={$family:{name:'element'}};Element.Constructors=new Hash;var IFrame=new Native({name:'IFrame',generics:false,initialize:function(){var params=Array.link(arguments,{properties:Object.type,iframe:$defined});var props=params.properties||{};var iframe=document.id(params.iframe);var onload=props.onload||$empty;delete props.onload;props.id=props.name=$pick(props.id,props.name,iframe?(iframe.id||iframe.name):'IFrame_'+$time());iframe=new Element(iframe||'iframe',props);var onFrameLoad=function(){var host=$try(function(){return iframe.contentWindow.location.host;});if(!host||host==window.location.host){var win=new Window(iframe.contentWindow);new Document(iframe.contentWindow.document);$extend(win.Element.prototype,Element.Prototype);}
onload.call(iframe.contentWindow,iframe.contentWindow.document);};var contentWindow=$try(function(){return iframe.contentWindow;});((contentWindow&&contentWindow.document.body)||window.frames[props.id])?onFrameLoad():iframe.addListener('load',onFrameLoad);return iframe;}});var Elements=new Native({initialize:function(elements,options){options=$extend({ddup:true,cash:true},options);elements=elements||[];if(options.ddup||options.cash){var uniques={},returned=[];for(var i=0,l=elements.length;i<l;i++){var el=document.id(elements[i],!options.cash);if(options.ddup){if(uniques[el.uid])continue;uniques[el.uid]=true;}
returned.push(el);}
elements=returned;}
return(options.cash)?$extend(elements,this):elements;}});Elements.implement({filter:function(filter,bind){if(!filter)return this;return new Elements(Array.filter(this,(typeof filter=='string')?function(item){return item.match(filter);}:filter,bind));}});Document.implement({newElement:function(tag,props){if(Browser.Engine.trident&&props){['name','type','checked'].each(function(attribute){if(!props[attribute])return;tag+=' '+attribute+'="'+props[attribute]+'"';if(attribute!='checked')delete props[attribute];});tag='<'+tag+'>';}
return document.id(this.createElement(tag)).set(props);},newTextNode:function(text){return this.createTextNode(text);},getDocument:function(){return this;},getWindow:function(){return this.window;},id:(function(){var types={string:function(id,nocash,doc){id=doc.getElementById(id);return(id)?types.element(id,nocash):null;},element:function(el,nocash){$uid(el);if(!nocash&&!el.$family&&!(/^object|embed$/i).test(el.tagName)){var proto=Element.Prototype;for(var p in proto)el[p]=proto[p];};return el;},object:function(obj,nocash,doc){if(obj.toElement)return types.element(obj.toElement(doc),nocash);return null;}};types.textnode=types.whitespace=types.window=types.document=$arguments(0);return function(el,nocash,doc){if(el&&el.$family&&el.uid)return el;var type=$type(el);return(types[type])?types[type](el,nocash,doc||document):null;};})()});if(window.$==null)Window.implement({$:function(el,nc){return document.id(el,nc,this.document);}});Window.implement({$$:function(selector){if(arguments.length==1&&typeof selector=='string')return this.document.getElements(selector);var elements=[];var args=Array.flatten(arguments);for(var i=0,l=args.length;i<l;i++){var item=args[i];switch($type(item)){case'element':elements.push(item);break;case'string':elements.extend(this.document.getElements(item,true));}}
return new Elements(elements);},getDocument:function(){return this.document;},getWindow:function(){return this;}});Native.implement([Element,Document],{getElement:function(selector,nocash){return document.id(this.getElements(selector,true)[0]||null,nocash);},getElements:function(tags,nocash){tags=tags.split(',');var elements=[];var ddup=(tags.length>1);tags.each(function(tag){var partial=this.getElementsByTagName(tag.trim());(ddup)?elements.extend(partial):elements=partial;},this);return new Elements(elements,{ddup:ddup,cash:!nocash});}});(function(){var collected={},storage={};var props={input:'checked',option:'selected',textarea:(Browser.Engine.webkit&&Browser.Engine.version<420)?'innerHTML':'value'};var get=function(uid){return(storage[uid]||(storage[uid]={}));};var clean=function(item,retain){if(!item)return;var uid=item.uid;if(Browser.Engine.trident){if(item.clearAttributes){var clone=retain&&item.cloneNode(false);item.clearAttributes();if(clone)item.mergeAttributes(clone);}else if(item.removeEvents){item.removeEvents();}
if((/object/i).test(item.tagName)){for(var p in item){if(typeof item[p]=='function')item[p]=$empty;}
Element.dispose(item);}}
if(!uid)return;collected[uid]=storage[uid]=null;};var purge=function(){Hash.each(collected,clean);if(Browser.Engine.trident)$A(document.getElementsByTagName('object')).each(clean);if(window.CollectGarbage)CollectGarbage();collected=storage=null;};var walk=function(element,walk,start,match,all,nocash){var el=element[start||walk];var elements=[];while(el){if(el.nodeType==1&&(!match||Element.match(el,match))){if(!all)return document.id(el,nocash);elements.push(el);}
el=el[walk];}
return(all)?new Elements(elements,{ddup:false,cash:!nocash}):null;};var attributes={'html':'innerHTML','class':'className','for':'htmlFor','defaultValue':'defaultValue','text':(Browser.Engine.trident||(Browser.Engine.webkit&&Browser.Engine.version<420))?'innerText':'textContent'};var bools=['compact','nowrap','ismap','declare','noshade','checked','disabled','readonly','multiple','selected','noresize','defer'];var camels=['value','type','defaultValue','accessKey','cellPadding','cellSpacing','colSpan','frameBorder','maxLength','readOnly','rowSpan','tabIndex','useMap'];bools=bools.associate(bools);Hash.extend(attributes,bools);Hash.extend(attributes,camels.associate(camels.map(String.toLowerCase)));var inserters={before:function(context,element){if(element.parentNode)element.parentNode.insertBefore(context,element);},after:function(context,element){if(!element.parentNode)return;var next=element.nextSibling;(next)?element.parentNode.insertBefore(context,next):element.parentNode.appendChild(context);},bottom:function(context,element){element.appendChild(context);},top:function(context,element){var first=element.firstChild;(first)?element.insertBefore(context,first):element.appendChild(context);}};inserters.inside=inserters.bottom;Hash.each(inserters,function(inserter,where){where=where.capitalize();Element.implement('inject'+where,function(el){inserter(this,document.id(el,true));return this;});Element.implement('grab'+where,function(el){inserter(document.id(el,true),this);return this;});});Element.implement({set:function(prop,value){switch($type(prop)){case'object':for(var p in prop)this.set(p,prop[p]);break;case'string':var property=Element.Properties.get(prop);(property&&property.set)?property.set.apply(this,Array.slice(arguments,1)):this.setProperty(prop,value);}
return this;},get:function(prop){var property=Element.Properties.get(prop);return(property&&property.get)?property.get.apply(this,Array.slice(arguments,1)):this.getProperty(prop);},erase:function(prop){var property=Element.Properties.get(prop);(property&&property.erase)?property.erase.apply(this):this.removeProperty(prop);return this;},setProperty:function(attribute,value){var key=attributes[attribute];if(value==undefined)return this.removeProperty(attribute);if(key&&bools[attribute])value=!!value;(key)?this[key]=value:this.setAttribute(attribute,''+value);return this;},setProperties:function(attributes){for(var attribute in attributes)this.setProperty(attribute,attributes[attribute]);return this;},getProperty:function(attribute){var key=attributes[attribute];var value=(key)?this[key]:this.getAttribute(attribute,2);return(bools[attribute])?!!value:(key)?value:value||null;},getProperties:function(){var args=$A(arguments);return args.map(this.getProperty,this).associate(args);},removeProperty:function(attribute){var key=attributes[attribute];(key)?this[key]=(key&&bools[attribute])?false:'':this.removeAttribute(attribute);return this;},removeProperties:function(){Array.each(arguments,this.removeProperty,this);return this;},hasClass:function(className){return this.className.contains(className,' ');},addClass:function(className){if(!this.hasClass(className))this.className=(this.className+' '+className).clean();return this;},removeClass:function(className){this.className=this.className.replace(new RegExp('(^|\\s)'+className+'(?:\\s|$)'),'$1');return this;},toggleClass:function(className){return this.hasClass(className)?this.removeClass(className):this.addClass(className);},adopt:function(){Array.flatten(arguments).each(function(element){element=document.id(element,true);if(element)this.appendChild(element);},this);return this;},appendText:function(text,where){return this.grab(this.getDocument().newTextNode(text),where);},grab:function(el,where){inserters[where||'bottom'](document.id(el,true),this);return this;},inject:function(el,where){inserters[where||'bottom'](this,document.id(el,true));return this;},replaces:function(el){el=document.id(el,true);el.parentNode.replaceChild(this,el);return this;},wraps:function(el,where){el=document.id(el,true);return this.replaces(el).grab(el,where);},getPrevious:function(match,nocash){return walk(this,'previousSibling',null,match,false,nocash);},getAllPrevious:function(match,nocash){return walk(this,'previousSibling',null,match,true,nocash);},getNext:function(match,nocash){return walk(this,'nextSibling',null,match,false,nocash);},getAllNext:function(match,nocash){return walk(this,'nextSibling',null,match,true,nocash);},getFirst:function(match,nocash){return walk(this,'nextSibling','firstChild',match,false,nocash);},getLast:function(match,nocash){return walk(this,'previousSibling','lastChild',match,false,nocash);},getParent:function(match,nocash){return walk(this,'parentNode',null,match,false,nocash);},getParents:function(match,nocash){return walk(this,'parentNode',null,match,true,nocash);},getSiblings:function(match,nocash){return this.getParent().getChildren(match,nocash).erase(this);},getChildren:function(match,nocash){return walk(this,'nextSibling','firstChild',match,true,nocash);},getWindow:function(){return this.ownerDocument.window;},getDocument:function(){return this.ownerDocument;},getElementById:function(id,nocash){var el=this.ownerDocument.getElementById(id);if(!el)return null;for(var parent=el.parentNode;parent!=this;parent=parent.parentNode){if(!parent)return null;}
return document.id(el,nocash);},getSelected:function(){return new Elements($A(this.options).filter(function(option){return option.selected;}));},getComputedStyle:function(property){if(this.currentStyle)return this.currentStyle[property.camelCase()];var computed=this.getDocument().defaultView.getComputedStyle(this,null);return(computed)?computed.getPropertyValue([property.hyphenate()]):null;},toQueryString:function(){var queryString=[];this.getElements('input, select, textarea',true).each(function(el){if(!el.name||el.disabled||el.type=='submit'||el.type=='reset'||el.type=='file')return;var value=(el.tagName.toLowerCase()=='select')?Element.getSelected(el).map(function(opt){return opt.value;}):((el.type=='radio'||el.type=='checkbox')&&!el.checked)?null:el.value;$splat(value).each(function(val){if(typeof val!='undefined')queryString.push(el.name+'='+encodeURIComponent(val));});});return queryString.join('&');},clone:function(contents,keepid){contents=contents!==false;var clone=this.cloneNode(contents);var clean=function(node,element){if(!keepid)node.removeAttribute('id');if(Browser.Engine.trident){node.clearAttributes();node.mergeAttributes(element);node.removeAttribute('uid');if(node.options){var no=node.options,eo=element.options;for(var j=no.length;j--;)no[j].selected=eo[j].selected;}}
var prop=props[element.tagName.toLowerCase()];if(prop&&element[prop])node[prop]=element[prop];};if(contents){var ce=clone.getElementsByTagName('*'),te=this.getElementsByTagName('*');for(var i=ce.length;i--;)clean(ce[i],te[i]);}
clean(clone,this);return document.id(clone);},destroy:function(){Element.empty(this);Element.dispose(this);clean(this,true);return null;},empty:function(){$A(this.childNodes).each(function(node){Element.destroy(node);});return this;},dispose:function(){return(this.parentNode)?this.parentNode.removeChild(this):this;},hasChild:function(el){el=document.id(el,true);if(!el)return false;if(Browser.Engine.webkit&&Browser.Engine.version<420)return $A(this.getElementsByTagName(el.tagName)).contains(el);return(this.contains)?(this!=el&&this.contains(el)):!!(this.compareDocumentPosition(el)&16);},match:function(tag){return(!tag||(tag==this)||(Element.get(this,'tag')==tag));}});Native.implement([Element,Window,Document],{addListener:function(type,fn){if(type=='unload'){var old=fn,self=this;fn=function(){self.removeListener('unload',fn);old();};}else{collected[this.uid]=this;}
if(this.addEventListener)this.addEventListener(type,fn,false);else this.attachEvent('on'+type,fn);return this;},removeListener:function(type,fn){if(this.removeEventListener)this.removeEventListener(type,fn,false);else this.detachEvent('on'+type,fn);return this;},retrieve:function(property,dflt){var storage=get(this.uid),prop=storage[property];if(dflt!=undefined&&prop==undefined)prop=storage[property]=dflt;return $pick(prop);},store:function(property,value){var storage=get(this.uid);storage[property]=value;return this;},eliminate:function(property){var storage=get(this.uid);delete storage[property];return this;}});window.addListener('unload',purge);})();Element.Properties=new Hash;Element.Properties.style={set:function(style){this.style.cssText=style;},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 wrapper=document.createElement('div');var translations={table:[1,'<table>','</table>'],select:[1,'<select>','</select>'],tbody:[2,'<table><tbody>','</tbody></table>'],tr:[3,'<table><tbody><tr>','</tr></tbody></table>']};translations.thead=translations.tfoot=translations.tbody;var html={set:function(){var html=Array.flatten(arguments).join('');var wrap=Browser.Engine.trident&&translations[this.get('tag')];if(wrap){var first=wrapper;first.innerHTML=wrap[1]+html+wrap[2];for(var i=wrap[0];i--;)first=first.firstChild;this.empty().adopt(first.childNodes);}else{this.innerHTML=html;}}};html.erase=html.set;return html;})();if(Browser.Engine.webkit&&Browser.Engine.version<420)Element.Properties.text={get:function(){if(this.innerText)return this.innerText;var temp=this.ownerDocument.newElement('div',{html:this.innerHTML}).inject(this.ownerDocument.body);var text=temp.innerText;temp.destroy();return text;}};Element.Properties.events={set:function(events){this.addEvents(events);}};Native.implement([Element,Window,Document],{addEvent:function(type,fn){var events=this.retrieve('events',{});events[type]=events[type]||{'keys':[],'values':[]};if(events[type].keys.contains(fn))return this;events[type].keys.push(fn);var realType=type,custom=Element.Events.get(type),condition=fn,self=this;if(custom){if(custom.onAdd)custom.onAdd.call(this,fn);if(custom.condition){condition=function(event){if(custom.condition.call(this,event))return fn.call(this,event);return true;};}
realType=custom.base||realType;}
var defn=function(){return fn.call(self);};var nativeEvent=Element.NativeEvents[realType];if(nativeEvent){if(nativeEvent==2){defn=function(event){event=new Event(event,self.getWindow());if(condition.call(self,event)===false)event.stop();};}
this.addListener(realType,defn);}
events[type].values.push(defn);return this;},removeEvent:function(type,fn){var events=this.retrieve('events');if(!events||!events[type])return this;var pos=events[type].keys.indexOf(fn);if(pos==-1)return this;events[type].keys.splice(pos,1);var value=events[type].values.splice(pos,1)[0];var custom=Element.Events.get(type);if(custom){if(custom.onRemove)custom.onRemove.call(this,fn);type=custom.base||type;}
return(Element.NativeEvents[type])?this.removeListener(type,value):this;},addEvents:function(events){for(var event in events)this.addEvent(event,events[event]);return this;},removeEvents:function(events){var type;if($type(events)=='object'){for(type in events)this.removeEvent(type,events[type]);return this;}
var attached=this.retrieve('events');if(!attached)return this;if(!events){for(type in attached)this.removeEvents(type);this.eliminate('events');}else if(attached[events]){while(attached[events].keys[0])this.removeEvent(events,attached[events].keys[0]);attached[events]=null;}
return this;},fireEvent:function(type,args,delay){var events=this.retrieve('events');if(!events||!events[type])return this;events[type].keys.each(function(fn){fn.create({'bind':this,'delay':delay,'arguments':args})();},this);return this;},cloneEvents:function(from,type){from=document.id(from);var fevents=from.retrieve('events');if(!fevents)return this;if(!type){for(var evType in fevents)this.cloneEvents(from,evType);}else if(fevents[type]){fevents[type].keys.each(function(fn){this.addEvent(type,fn);},this);}
return this;}});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 $check=function(event){var related=event.relatedTarget;if(related==undefined)return true;if(related===false)return false;return($type(this)!='document'&&related!=this&&related.prefix!='xul'&&!this.hasChild(related));};Element.Events=new Hash({mouseenter:{base:'mouseover',condition:$check},mouseleave:{base:'mouseout',condition:$check},mousewheel:{base:(Browser.Engine.gecko)?'DOMMouseScroll':'mousewheel'}});})();Element.Properties.styles={set:function(styles){this.setStyles(styles);}};Element.Properties.opacity={set:function(opacity,novisibility){if(!novisibility){if(opacity==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=(opacity==1)?'':'alpha(opacity='+opacity*100+')';this.style.opacity=opacity;this.store('opacity',opacity);},get:function(){return this.retrieve('opacity',1);}};Element.implement({setOpacity:function(value){return this.set('opacity',value,true);},getOpacity:function(){return this.get('opacity');},setStyle:function(property,value){switch(property){case'opacity':return this.set('opacity',parseFloat(value));case'float':property=(Browser.Engine.trident)?'styleFloat':'cssFloat';}
property=property.camelCase();if($type(value)!='string'){var map=(Element.Styles.get(property)||'@').split(' ');value=$splat(value).map(function(val,i){if(!map[i])return'';return($type(val)=='number')?map[i].replace('@',Math.round(val)):val;}).join(' ');}else if(value==String(Number(value))){value=Math.round(value);}
this.style[property]=value;return this;},getStyle:function(property){switch(property){case'opacity':return this.get('opacity');case'float':property=(Browser.Engine.trident)?'styleFloat':'cssFloat';}
property=property.camelCase();var result=this.style[property];if(!$chk(result)){result=[];for(var style in Element.ShortStyles){if(property!=style)continue;for(var s in Element.ShortStyles[style])result.push(this.getStyle(s));return result.join(' ');}
result=this.getComputedStyle(property);}
if(result){result=String(result);var color=result.match(/rgba?\([\d\s,]+\)/);if(color)result=result.replace(color[0],color[0].rgbToHex());}
if(Browser.Engine.presto||(Browser.Engine.trident&&!$chk(parseInt(result,10)))){if(property.test(/^(height|width)$/)){var values=(property=='width')?['left','right']:['top','bottom'],size=0;values.each(function(value){size+=this.getStyle('border-'+value+'-width').toInt()+this.getStyle('padding-'+value).toInt();},this);return this['offset'+property.capitalize()]-size+'px';}
if((Browser.Engine.presto)&&String(result).test('px'))return result;if(property.test(/(border(.+)Width|margin|padding)/))return'0px';}
return result;},setStyles:function(styles){for(var style in styles)this.setStyle(style,styles[style]);return this;},getStyles:function(){var result={};Array.flatten(arguments).each(function(key){result[key]=this.getStyle(key);},this);return result;}});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(direction){var Short=Element.ShortStyles;var All=Element.Styles;['margin','padding'].each(function(style){var sd=style+direction;Short[style][sd]=All[sd]='@px';});var bd='border'+direction;Short.border[bd]=All[bd]='@px @ rgb(@, @, @)';var bdw=bd+'Width',bds=bd+'Style',bdc=bd+'Color';Short[bd]={};Short.borderWidth[bdw]=Short[bd][bdw]=All[bdw]='@px';Short.borderStyle[bds]=Short[bd][bds]=All[bds]='@';Short.borderColor[bdc]=Short[bd][bdc]=All[bdc]='rgb(@, @, @)';});(function(){Element.implement({scrollTo:function(x,y){if(isBody(this)){this.getWindow().scrollTo(x,y);}else{this.scrollLeft=x;this.scrollTop=y;}
return this;},getSize:function(){if(isBody(this))return this.getWindow().getSize();return{x:this.offsetWidth,y:this.offsetHeight};},getScrollSize:function(){if(isBody(this))return this.getWindow().getScrollSize();return{x:this.scrollWidth,y:this.scrollHeight};},getScroll:function(){if(isBody(this))return this.getWindow().getScroll();return{x:this.scrollLeft,y:this.scrollTop};},getScrolls:function(){var element=this,position={x:0,y:0};while(element&&!isBody(element)){position.x+=element.scrollLeft;position.y+=element.scrollTop;element=element.parentNode;}
return position;},getOffsetParent:function(){var element=this;if(isBody(element))return null;if(!Browser.Engine.trident)return element.offsetParent;while((element=element.parentNode)&&!isBody(element)){if(styleString(element,'position')!='static')return element;}
return null;},getOffsets:function(){if(this.getBoundingClientRect){var bound=this.getBoundingClientRect(),html=document.id(this.getDocument().documentElement),scroll=html.getScroll(),isFixed=(styleString(this,'position')=='fixed');return{x:parseInt(bound.left,10)+((isFixed)?0:scroll.x)-html.clientLeft,y:parseInt(bound.top,10)+((isFixed)?0:scroll.y)-html.clientTop};}
var element=this,position={x:0,y:0};if(isBody(this))return position;while(element&&!isBody(element)){position.x+=element.offsetLeft;position.y+=element.offsetTop;if(Browser.Engine.gecko){if(!borderBox(element)){position.x+=leftBorder(element);position.y+=topBorder(element);}
var parent=element.parentNode;if(parent&&styleString(parent,'overflow')!='visible'){position.x+=leftBorder(parent);position.y+=topBorder(parent);}}else if(element!=this&&Browser.Engine.webkit){position.x+=leftBorder(element);position.y+=topBorder(element);}
element=element.offsetParent;}
if(Browser.Engine.gecko&&!borderBox(this)){position.x-=leftBorder(this);position.y-=topBorder(this);}
return position;},getPosition:function(relative){if(isBody(this))return{x:0,y:0};var offset=this.getOffsets(),scroll=this.getScrolls();var position={x:offset.x-scroll.x,y:offset.y-scroll.y};var relativePosition=(relative&&(relative=document.id(relative)))?relative.getPosition():{x:0,y:0};return{x:position.x-relativePosition.x,y:position.y-relativePosition.y};},getCoordinates:function(element){if(isBody(this))return this.getWindow().getCoordinates();var position=this.getPosition(element),size=this.getSize();var obj={left:position.x,top:position.y,width:size.x,height:size.y};obj.right=obj.left+obj.width;obj.bottom=obj.top+obj.height;return obj;},computePosition:function(obj){return{left:obj.x-styleNumber(this,'margin-left'),top:obj.y-styleNumber(this,'margin-top')};},setPosition:function(obj){return this.setStyles(this.computePosition(obj));}});Native.implement([Document,Window],{getSize:function(){if(Browser.Engine.presto||Browser.Engine.webkit){var win=this.getWindow();return{x:win.innerWidth,y:win.innerHeight};}
var doc=getCompatElement(this);return{x:doc.clientWidth,y:doc.clientHeight};},getScroll:function(){var win=this.getWindow(),doc=getCompatElement(this);return{x:win.pageXOffset||doc.scrollLeft,y:win.pageYOffset||doc.scrollTop};},getScrollSize:function(){var doc=getCompatElement(this),min=this.getSize();return{x:Math.max(doc.scrollWidth,min.x),y:Math.max(doc.scrollHeight,min.y)};},getPosition:function(){return{x:0,y:0};},getCoordinates:function(){var size=this.getSize();return{top:0,left:0,bottom:size.y,right:size.x,height:size.y,width:size.x};}});var styleString=Element.getComputedStyle;function styleNumber(element,style){return styleString(element,style).toInt()||0;};function borderBox(element){return styleString(element,'-moz-box-sizing')=='border-box';};function topBorder(element){return styleNumber(element,'border-top-width');};function leftBorder(element){return styleNumber(element,'border-left-width');};function isBody(element){return(/^(?:body|html)$/i).test(element.tagName);};function getCompatElement(element){var doc=element.getDocument();return(!doc.compatMode||doc.compatMode=='CSS1Compat')?doc.html:doc.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;}});Native.implement([Document,Element],{getElements:function(expression,nocash){expression=expression.split(',');var items,local={};for(var i=0,l=expression.length;i<l;i++){var selector=expression[i],elements=Selectors.Utils.search(this,selector,local);if(i!=0&&elements.item)elements=$A(elements);items=(i==0)?elements:(items.item)?$A(items).concat(elements):items.concat(elements);}
return new Elements(items,{ddup:(expression.length>1),cash:!nocash});}});Element.implement({match:function(selector){if(!selector||(selector==this))return true;var tagid=Selectors.Utils.parseTagAndID(selector);var tag=tagid[0],id=tagid[1];if(!Selectors.Filters.byID(this,id)||!Selectors.Filters.byTag(this,tag))return false;var parsed=Selectors.Utils.parseSelector(selector);return(parsed)?Selectors.Utils.filter(this,parsed,{}):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(item,uniques){if(!uniques)return true;var uid=$uid(item);if(!uniques[uid])return uniques[uid]=true;return false;},parseNthArgument:function(argument){if(Selectors.Cache.nth[argument])return Selectors.Cache.nth[argument];var parsed=argument.match(/^([+-]?\d*)?([a-z]+)?([+-]?\d*)?$/);if(!parsed)return false;var inta=parseInt(parsed[1],10);var a=(inta||inta===0)?inta:1;var special=parsed[2]||false;var b=parseInt(parsed[3],10)||0;if(a!=0){b--;while(b<1)b+=a;while(b>=a)b-=a;}else{a=b;special='index';}
switch(special){case'n':parsed={a:a,b:b,special:'n'};break;case'odd':parsed={a:2,b:0,special:'n'};break;case'even':parsed={a:2,b:1,special:'n'};break;case'first':parsed={a:0,special:'index'};break;case'last':parsed={special:'last-child'};break;case'only':parsed={special:'only-child'};break;default:parsed={a:(a-1),special:'index'};}
return Selectors.Cache.nth[argument]=parsed;},parseSelector:function(selector){if(Selectors.Cache.parsed[selector])return Selectors.Cache.parsed[selector];var m,parsed={classes:[],pseudos:[],attributes:[]};while((m=Selectors.RegExps.combined.exec(selector))){var cn=m[1],an=m[2],ao=m[3],av=m[5],pn=m[6],pa=m[7];if(cn){parsed.classes.push(cn);}else if(pn){var parser=Selectors.Pseudo.get(pn);if(parser)parsed.pseudos.push({parser:parser,argument:pa});else parsed.attributes.push({name:pn,operator:'=',value:pa});}else if(an){parsed.attributes.push({name:an,operator:ao,value:av});}}
if(!parsed.classes.length)delete parsed.classes;if(!parsed.attributes.length)delete parsed.attributes;if(!parsed.pseudos.length)delete parsed.pseudos;if(!parsed.classes&&!parsed.attributes&&!parsed.pseudos)parsed=null;return Selectors.Cache.parsed[selector]=parsed;},parseTagAndID:function(selector){var tag=selector.match(Selectors.RegExps.tag);var id=selector.match(Selectors.RegExps.id);return[(tag)?tag[1]:'*',(id)?id[1]:false];},filter:function(item,parsed,local){var i;if(parsed.classes){for(i=parsed.classes.length;i--;i){var cn=parsed.classes[i];if(!Selectors.Filters.byClass(item,cn))return false;}}
if(parsed.attributes){for(i=parsed.attributes.length;i--;i){var att=parsed.attributes[i];if(!Selectors.Filters.byAttribute(item,att.name,att.operator,att.value))return false;}}
if(parsed.pseudos){for(i=parsed.pseudos.length;i--;i){var psd=parsed.pseudos[i];if(!Selectors.Filters.byPseudo(item,psd.parser,psd.argument,local))return false;}}
return true;},getByTagAndID:function(ctx,tag,id){if(id){var item=(ctx.getElementById)?ctx.getElementById(id,true):Element.getElementById(ctx,id,true);return(item&&Selectors.Filters.byTag(item,tag))?[item]:[];}else{return ctx.getElementsByTagName(tag);}},search:function(self,expression,local){var splitters=[];var selectors=expression.trim().replace(Selectors.RegExps.splitter,function(m0,m1,m2){splitters.push(m1);return':)'+m2;}).split(':)');var items,filtered,item;for(var i=0,l=selectors.length;i<l;i++){var selector=selectors[i];if(i==0&&Selectors.RegExps.quick.test(selector)){items=self.getElementsByTagName(selector);continue;}
var splitter=splitters[i-1];var tagid=Selectors.Utils.parseTagAndID(selector);var tag=tagid[0],id=tagid[1];if(i==0){items=Selectors.Utils.getByTagAndID(self,tag,id);}else{var uniques={},found=[];for(var j=0,k=items.length;j<k;j++)found=Selectors.Getters[splitter](found,items[j],tag,id,uniques);items=found;}
var parsed=Selectors.Utils.parseSelector(selector);if(parsed){filtered=[];for(var m=0,n=items.length;m<n;m++){item=items[m];if(Selectors.Utils.filter(item,parsed,local))filtered.push(item);}
items=filtered;}}
return items;}};Selectors.Getters={' ':function(found,self,tag,id,uniques){var items=Selectors.Utils.getByTagAndID(self,tag,id);for(var i=0,l=items.length;i<l;i++){var item=items[i];if(Selectors.Utils.chk(item,uniques))found.push(item);}
return found;},'>':function(found,self,tag,id,uniques){var children=Selectors.Utils.getByTagAndID(self,tag,id);for(var i=0,l=children.length;i<l;i++){var child=children[i];if(child.parentNode==self&&Selectors.Utils.chk(child,uniques))found.push(child);}
return found;},'+':function(found,self,tag,id,uniques){while((self=self.nextSibling)){if(self.nodeType==1){if(Selectors.Utils.chk(self,uniques)&&Selectors.Filters.byTag(self,tag)&&Selectors.Filters.byID(self,id))found.push(self);break;}}
return found;},'~':function(found,self,tag,id,uniques){while((self=self.nextSibling)){if(self.nodeType==1){if(!Selectors.Utils.chk(self,uniques))break;if(Selectors.Filters.byTag(self,tag)&&Selectors.Filters.byID(self,id))found.push(self);}}
return found;}};Selectors.Filters={byTag:function(self,tag){return(tag=='*'||(self.tagName&&self.tagName.toLowerCase()==tag));},byID:function(self,id){return(!id||(self.id&&self.id==id));},byClass:function(self,klass){return(self.className&&self.className.contains(klass,' '));},byPseudo:function(self,parser,argument,local){return parser.call(self,argument,local);},byAttribute:function(self,name,operator,value){var result=Element.prototype.getProperty.call(self,name);if(!result)return(operator=='!=');if(!operator||value==undefined)return true;switch(operator){case'=':return(result==value);case'*=':return(result.contains(value));case'^=':return(result.substr(0,value.length)==value);case'$=':return(result.substr(result.length-value.length)==value);case'!=':return(result!=value);case'~=':return result.contains(value,' ');case'|=':return result.contains(value,'-');}
return false;}};Selectors.Pseudo=new Hash({checked:function(){return this.checked;},empty:function(){return!(this.innerText||this.textContent||'').length;},not:function(selector){return!Element.match(this,selector);},contains:function(text){return(this.innerText||this.textContent||'').contains(text);},'first-child':function(){return Selectors.Pseudo.index.call(this,0);},'last-child':function(){var element=this;while((element=element.nextSibling)){if(element.nodeType==1)return false;}
return true;},'only-child':function(){var prev=this;while((prev=prev.previousSibling)){if(prev.nodeType==1)return false;}
var next=this;while((next=next.nextSibling)){if(next.nodeType==1)return false;}
return true;},'nth-child':function(argument,local){argument=(argument==undefined)?'n':argument;var parsed=Selectors.Utils.parseNthArgument(argument);if(parsed.special!='n')return Selectors.Pseudo[parsed.special].call(this,parsed.a,local);var count=0;local.positions=local.positions||{};var uid=$uid(this);if(!local.positions[uid]){var self=this;while((self=self.previousSibling)){if(self.nodeType!=1)continue;count++;var position=local.positions[$uid(self)];if(position!=undefined){count=position+count;break;}}
local.positions[uid]=count;}
return(local.positions[uid]%parsed.a==parsed.b);},index:function(index){var element=this,count=0;while((element=element.previousSibling)){if(element.nodeType==1&&++count>index)return false;}
return(count==index);},even:function(argument,local){return Selectors.Pseudo['nth-child'].call(this,'2n+1',local);},odd:function(argument,local){return Selectors.Pseudo['nth-child'].call(this,'2n',local);},selected:function(){return this.selected;},enabled:function(){return(this.disabled===false);}});Element.Events.domready={onAdd:function(fn){if(Browser.loaded)fn.call(this);}};(function(){var domready=function(){if(Browser.loaded)return;Browser.loaded=true;window.fireEvent('domready');document.fireEvent('domready');};if(Browser.Engine.trident){var temp=document.createElement('div');(function(){($try(function(){temp.doScroll();return document.id(temp).inject(document.body).set('html','temp').dispose();}))?domready():arguments.callee.delay(50);})();}else if(Browser.Engine.webkit&&Browser.Engine.version<525){(function(){(['loaded','complete'].contains(document.readyState))?domready():arguments.callee.delay(50);})();}else{window.addEvent('load',domready);document.addEvent('DOMContentLoaded',domready);}})();var JSON=new Hash({$specialChars:{'\b':'\\b','\t':'\\t','\n':'\\n','\f':'\\f','\r':'\\r','"':'\\"','\\':'\\\\'},$replaceChars:function(chr){return JSON.$specialChars[chr]||'\\u00'+Math.floor(chr.charCodeAt()/16).toString(16)+(chr.charCodeAt()%16).toString(16);},encode:function(obj){switch($type(obj)){case'string':return'"'+obj.replace(/[\x00-\x1f\\"]/g,JSON.$replaceChars)+'"';case'array':return'['+String(obj.map(JSON.encode).clean())+']';case'object':case'hash':var string=[];Hash.each(obj,function(value,key){var json=JSON.encode(value);if(json)string.push(JSON.encode(key)+':'+json);});return'{'+string+'}';case'number':case'boolean':return String(obj);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+')');}});Native.implement([Hash,Array,String,Number],{toJSON:function(){return JSON.encode(this);}});var Cookie=new Class({Implements:Options,options:{path:false,domain:false,duration:false,secure:false,document:document},initialize:function(key,options){this.key=key;this.setOptions(options);},write:function(value){value=encodeURIComponent(value);if(this.options.domain)value+='; domain='+this.options.domain;if(this.options.path)value+='; path='+this.options.path;if(this.options.duration){var date=new Date();date.setTime(date.getTime()+this.options.duration*24*60*60*1000);value+='; expires='+date.toGMTString();}
if(this.options.secure)value+='; secure';this.options.document.cookie=this.key+'='+value;return this;},read:function(){var value=this.options.document.cookie.match('(?:^|;)\\s*'+this.key.escapeRegExp()+'=([^;]*)');return(value)?decodeURIComponent(value[1]):null;},dispose:function(){new Cookie(this.key,$merge(this.options,{duration:-1})).write('');return this;}});Cookie.write=function(key,value,options){return new Cookie(key,options).write(value);};Cookie.read=function(key){return new Cookie(key).read();};Cookie.dispose=function(key,options){return new Cookie(key,options).dispose();};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(path,options){this.instance='Swiff_'+$time();this.setOptions(options);options=this.options;var id=this.id=options.id||this.instance;var container=document.id(options.container);Swiff.CallBacks[this.instance]={};var params=options.params,vars=options.vars,callBacks=options.callBacks;var properties=$extend({height:options.height,width:options.width},options.properties);var self=this;for(var callBack in callBacks){Swiff.CallBacks[this.instance][callBack]=(function(option){return function(){return option.apply(self.object,arguments);};})(callBacks[callBack]);vars[callBack]='Swiff.CallBacks.'+this.instance+'.'+callBack;}
params.flashVars=Hash.toQueryString(vars);if(Browser.Engine.trident){properties.classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000';params.movie=path;}else{properties.type='application/x-shockwave-flash';properties.data=path;}
var build='<object id="'+id+'"';for(var property in properties)build+=' '+property+'="'+properties[property]+'"';build+='>';for(var param in params){if(params[param])build+='<param name="'+param+'" value="'+params[param]+'" />';}
build+='</object>';this.object=((container)?container.empty():new Element('div')).set('html',build).firstChild;},replaces:function(element){element=document.id(element,true);element.parentNode.replaceChild(this.toElement(),element);return this;},inject:function(element){document.id(element,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 Fx=new Class({Implements:[Chain,Events,Options],options:{fps:50,unit:false,duration:500,link:'ignore'},initialize:function(options){this.subject=this.subject||this;this.setOptions(options);this.options.duration=Fx.Durations[this.options.duration]||this.options.duration.toInt();var wait=this.options.wait;if(wait===false)this.options.link='cancel';},getTransition:function(){return function(p){return-(Math.cos(Math.PI*p)-1)/2;};},step:function(){var time=$time();if(time<this.time+this.options.duration){var delta=this.transition((time-this.time)/this.options.duration);this.set(this.compute(this.from,this.to,delta));}else{this.set(this.compute(this.from,this.to,1));this.complete();}},set:function(now){return now;},compute:function(from,to,delta){return Fx.compute(from,to,delta);},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(from,to){if(!this.check(from,to))return this;this.from=from;this.to=to;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(from,to,delta){return(to-from)*delta+from;};Fx.Durations={'short':250,'normal':500,'long':1000};Fx.CSS=new Class({Extends:Fx,prepare:function(element,property,values){values=$splat(values);var values1=values[1];if(!$chk(values1)){values[1]=values[0];values[0]=element.getStyle(property);}
var parsed=values.map(this.parse);return{from:parsed[0],to:parsed[1]};},parse:function(value){value=$lambda(value)();value=(typeof value=='string')?value.split(' '):$splat(value);return value.map(function(val){val=String(val);var found=false;Fx.CSS.Parsers.each(function(parser,key){if(found)return;var parsed=parser.parse(val);if($chk(parsed))found={value:parsed,parser:parser};});found=found||{value:val,parser:Fx.CSS.Parsers.String};return found;});},compute:function(from,to,delta){var computed=[];(Math.min(from.length,to.length)).times(function(i){computed.push({value:from[i].parser.compute(from[i].value,to[i].value,delta),parser:from[i].parser});});computed.$family={name:'fx:css:value'};return computed;},serve:function(value,unit){if($type(value)!='fx:css:value')value=this.parse(value);var returned=[];value.each(function(bit){returned=returned.concat(bit.parser.serve(bit.value,unit));});return returned;},render:function(element,property,value,unit){element.setStyle(property,this.serve(value,unit));},search:function(selector){if(Fx.CSS.Cache[selector])return Fx.CSS.Cache[selector];var to={};Array.each(document.styleSheets,function(sheet,j){var href=sheet.href;if(href&&href.contains('://')&&!href.contains(document.domain))return;var rules=sheet.rules||sheet.cssRules;Array.each(rules,function(rule,i){if(!rule.style)return;var selectorText=(rule.selectorText)?rule.selectorText.replace(/^\w+/,function(m){return m.toLowerCase();}):null;if(!selectorText||!selectorText.test('^'+selector+'$'))return;Element.Styles.each(function(value,style){if(!rule.style[style]||Element.ShortStyles[style])return;value=String(rule.style[style]);to[style]=(value.test(/^rgb/))?value.rgbToHex():value;});});});return Fx.CSS.Cache[selector]=to;}});Fx.CSS.Cache={};Fx.CSS.Parsers=new Hash({Color:{parse:function(value){if(value.match(/^#[0-9a-f]{3,6}$/i))return value.hexToRgb(true);return((value=value.match(/(\d+),\s*(\d+),\s*(\d+)/)))?[value[1],value[2],value[3]]:false;},compute:function(from,to,delta){return from.map(function(value,i){return Math.round(Fx.compute(from[i],to[i],delta));});},serve:function(value){return value.map(Number);}},Number:{parse:parseFloat,compute:Fx.compute,serve:function(value,unit){return(unit)?value+unit:value;}},String:{parse:$lambda(false),compute:$arguments(1),serve:$arguments(0)}});Fx.Tween=new Class({Extends:Fx.CSS,initialize:function(element,options){this.element=this.subject=document.id(element);this.parent(options);},set:function(property,now){if(arguments.length==1){now=property;property=this.property||this.options.property;}
this.render(this.element,property,now,this.options.unit);return this;},start:function(property,from,to){if(!this.check(property,from,to))return this;var args=Array.flatten(arguments);this.property=this.options.property||args.shift();var parsed=this.prepare(this.element,this.property,args);return this.parent(parsed.from,parsed.to);}});Element.Properties.tween={set:function(options){var tween=this.retrieve('tween');if(tween)tween.cancel();return this.eliminate('tween').store('tween:options',$extend({link:'cancel'},options));},get:function(options){if(options||!this.retrieve('tween')){if(options||!this.retrieve('tween:options'))this.set('tween',options);this.store('tween',new Fx.Tween(this,this.retrieve('tween:options')));}
return this.retrieve('tween');}};Element.implement({tween:function(property,from,to){this.get('tween').start(arguments);return this;},fade:function(how){var fade=this.get('tween'),o='opacity',toggle;how=$pick(how,'toggle');switch(how){case'in':fade.start(o,1);break;case'out':fade.start(o,0);break;case'show':fade.set(o,1);break;case'hide':fade.set(o,0);break;case'toggle':var flag=this.retrieve('fade:flag',this.get('opacity')==1);fade.start(o,(flag)?0:1);this.store('fade:flag',!flag);toggle=true;break;default:fade.start(o,arguments);}
if(!toggle)this.eliminate('fade:flag');return this;},highlight:function(start,end){if(!end){end=this.retrieve('highlight:original',this.getStyle('background-color'));end=(end=='transparent')?'#fff':end;}
var tween=this.get('tween');tween.start('background-color',start||'#ffff88',end).chain(function(){this.setStyle('background-color',this.retrieve('highlight:original'));tween.callChain();}.bind(this));return this;}});Fx.Morph=new Class({Extends:Fx.CSS,initialize:function(element,options){this.element=this.subject=document.id(element);this.parent(options);},set:function(now){if(typeof now=='string')now=this.search(now);for(var p in now)this.render(this.element,p,now[p],this.options.unit);return this;},compute:function(from,to,delta){var now={};for(var p in from)now[p]=this.parent(from[p],to[p],delta);return now;},start:function(properties){if(!this.check(properties))return this;if(typeof properties=='string')properties=this.search(properties);var from={},to={};for(var p in properties){var parsed=this.prepare(this.element,p,properties[p]);from[p]=parsed.from;to[p]=parsed.to;}
return this.parent(from,to);}});Element.Properties.morph={set:function(options){var morph=this.retrieve('morph');if(morph)morph.cancel();return this.eliminate('morph').store('morph:options',$extend({link:'cancel'},options));},get:function(options){if(options||!this.retrieve('morph')){if(options||!this.retrieve('morph:options'))this.set('morph',options);this.store('morph',new Fx.Morph(this,this.retrieve('morph:options')));}
return this.retrieve('morph');}};Element.implement({morph:function(props){this.get('morph').start(props);return this;}});Fx.implement({getTransition:function(){var trans=this.options.transition||Fx.Transitions.Sine.easeInOut;if(typeof trans=='string'){var data=trans.split(':');trans=Fx.Transitions;trans=trans[data[0]]||trans[data[0].capitalize()];if(data[1])trans=trans['ease'+data[1].capitalize()+(data[2]?data[2].capitalize():'')];}
return trans;}});Fx.Transition=function(transition,params){params=$splat(params);return $extend(transition,{easeIn:function(pos){return transition(pos,params);},easeOut:function(pos){return 1-transition(1-pos,params);},easeInOut:function(pos){return(pos<=0.5)?transition(2*pos,params)/2:(2-transition(2*(1-pos),params))/2;}});};Fx.Transitions=new Hash({linear:$arguments(0)});Fx.Transitions.extend=function(transitions){for(var transition in transitions)Fx.Transitions[transition]=new Fx.Transition(transitions[transition]);};Fx.Transitions.extend({Pow:function(p,x){return Math.pow(p,x[0]||6);},Expo:function(p){return Math.pow(2,8*(p-1));},Circ:function(p){return 1-Math.sin(Math.acos(p));},Sine:function(p){return 1-Math.sin((1-p)*Math.PI/2);},Back:function(p,x){x=x[0]||1.618;return Math.pow(p,2)*((x+1)*p-x);},Bounce:function(p){var value;for(var a=0,b=1;1;a+=b,b/=2){if(p>=(7-4*a)/11){value=b*b-Math.pow((11-6*a-11*p)/4,2);break;}}
return value;},Elastic:function(p,x){return Math.pow(2,10*--p)*Math.cos(20*p*Math.PI*(x[0]||1)/3);}});['Quad','Cubic','Quart','Quint'].each(function(transition,i){Fx.Transitions[transition]=new Fx.Transition(function(p){return Math.pow(p,[i+2]);});});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(options){this.xhr=new Browser.Request();this.setOptions(options);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(text){if(this.options.evalResponse||(/(ecma|java)script/).test(this.getHeader('Content-type')))return $exec(text);return text.stripScripts(this.options.evalScripts);},success:function(text,xml){this.onSuccess(this.processScripts(text),xml);},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(name,value){this.headers.set(name,value);return this;},getHeader:function(name){return $try(function(){return this.xhr.getResponseHeader(name);}.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(options){if(!this.check(options))return this;this.running=true;var type=$type(options);if(type=='string'||type=='element')options={data:options};var old=this.options;options=$extend({data:old.data,url:old.url,method:old.method},options);var data=options.data,url=options.url,method=options.method.toLowerCase();switch($type(data)){case'element':data=document.id(data).toQueryString();break;case'object':case'hash':data=Hash.toQueryString(data);}
if(this.options.format){var format='format='+this.options.format;data=(data)?format+'&'+data:format;}
if(this.options.emulation&&!['get','post'].contains(method)){var _method='_method='+method;data=(data)?_method+'&'+data:_method;method='post';}
if(this.options.urlEncoded&&method=='post'){var encoding=(this.options.encoding)?'; charset='+this.options.encoding:'';this.headers.set('Content-type','application/x-www-form-urlencoded'+encoding);}
if(this.options.noCache){var noCache='noCache='+new Date().getTime();data=(data)?noCache+'&'+data:noCache;}
var trimPosition=url.lastIndexOf('/');if(trimPosition>-1&&(trimPosition=url.indexOf('#'))>-1)url=url.substr(0,trimPosition);if(data&&method=='get'){url=url+(url.contains('?')?'&':'?')+data;data=null;}
this.xhr.open(method.toUpperCase(),url,this.options.async);this.xhr.onreadystatechange=this.onStateChange.bind(this);this.headers.each(function(value,key){try{this.xhr.setRequestHeader(key,value);}catch(e){this.fireEvent('exception',[key,value]);}},this);this.fireEvent('request');this.xhr.send(data);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 methods={};['get','post','put','delete','GET','POST','PUT','DELETE'].each(function(method){methods[method]=function(){var params=Array.link(arguments,{url:String.type,data:$defined});return this.send($extend(params,{method:method}));};});Request.implement(methods);})();Element.Properties.send={set:function(options){var send=this.retrieve('send');if(send)send.cancel();return this.eliminate('send').store('send:options',$extend({data:this,link:'cancel',method:this.get('method')||'post',url:this.get('action')},options));},get:function(options){if(options||!this.retrieve('send')){if(options||!this.retrieve('send:options'))this.set('send',options);this.store('send',new Request(this.retrieve('send:options')));}
return this.retrieve('send');}};Element.implement({send:function(url){var sender=this.get('send');sender.send({data:this,url:url||sender.options.url});return this;}});Request.HTML=new Class({Extends:Request,options:{update:false,append:false,evalScripts:true,filter:false},processHTML:function(text){var match=text.match(/<body[^>]*>([\s\S]*?)<\/body>/i);text=(match)?match[1]:text;var container=new Element('div');return $try(function(){var root='<root>'+text+'</root>',doc;if(Browser.Engine.trident){doc=new ActiveXObject('Microsoft.XMLDOM');doc.async=false;doc.loadXML(root);}else{doc=new DOMParser().parseFromString(root,'text/xml');}
root=doc.getElementsByTagName('root')[0];if(!root)return null;for(var i=0,k=root.childNodes.length;i<k;i++){var child=Element.clone(root.childNodes[i],true,true);if(child)container.grab(child);}
return container;})||container.set('html',text);},success:function(text){var options=this.options,response=this.response;response.html=text.stripScripts(function(script){response.javascript=script;});var temp=this.processHTML(response.html);response.tree=temp.childNodes;response.elements=temp.getElements('*');if(options.filter)response.tree=response.elements.filter(options.filter);if(options.update)document.id(options.update).empty().set('html',response.html);else if(options.append)document.id(options.append).adopt(temp.getChildren());if(options.evalScripts)$exec(response.javascript);this.onSuccess(response.tree,response.elements,response.html,response.javascript);}});Element.Properties.load={set:function(options){var load=this.retrieve('load');if(load)load.cancel();return this.eliminate('load').store('load:options',$extend({data:this,link:'cancel',update:this,method:'get'},options));},get:function(options){if(options||!this.retrieve('load')){if(options||!this.retrieve('load:options'))this.set('load',options);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;}});Request.JSON=new Class({Extends:Request,options:{secure:true},initialize:function(options){this.parent(options);this.headers.extend({'Accept':'application/json','X-Request':'JSON'});},success:function(text){this.response.json=JSON.decode(text,this.options.secure);this.onSuccess(this.response.json,text);}});;MooTools.More={'version':'1.2.3.1'};Class.refactor=function(original,refactors){$each(refactors,function(item,name){var origin=original.prototype[name];if(origin&&(origin=origin._origin)&&typeof item=='function')original.implement(name,function(){var old=this.previous;this.previous=origin;var value=item.apply(this,arguments);this.previous=old;return value;});else original.implement(name,item);});return original;};Array.implement({min:function(){return Math.min.apply(null,this);},max:function(){return Math.max.apply(null,this);},average:function(){return this.length?this.sum()/this.length:0;},sum:function(){var result=0,l=this.length;if(l){do{result+=this[--l];}while(l);}
return result;},unique:function(){return[].combine(this);}});Hash.implement({getFromPath:function(notation){var source=this.getClean();notation.replace(/\[([^\]]+)\]|\.([^.[]+)|[^[.]+/g,function(match){if(!source)return null;var prop=arguments[2]||arguments[1]||arguments[0];source=(prop in source)?source[prop]:null;return match;});return source;},cleanValues:function(method){method=method||$defined;this.each(function(v,k){if(!method(v))this.erase(k);},this);return this;},run:function(){var args=arguments;this.each(function(v,k){if($type(v)=='function')v.run(args);});}});(function(){var special=['À','à','Á','á','Â','â','Ã','ã','Ä','ä','Å','å','Ă','ă','Ą','ą','Ć','ć','Č','č','Ç','ç','Ď','ď','Đ','đ','È','è','É','é','Ê','ê','Ë','ë','Ě','ě','Ę','ę','Ğ','ğ','Ì','ì','Í','í','Î','î','Ï','ï','Ĺ','ĺ','Ľ','ľ','Ł','ł','Ñ','ñ','Ň','ň','Ń','ń','Ò','ò','Ó','ó','Ô','ô','Õ','õ','Ö','ö','Ø','ø','ő','Ř','ř','Ŕ','ŕ','Š','š','Ş','ş','Ś','ś','Ť','ť','Ť','ť','Ţ','ţ','Ù','ù','Ú','ú','Û','û','Ü','ü','Ů','ů','Ÿ','ÿ','ý','Ý','Ž','ž','Ź','ź','Ż','ż','Þ','þ','Ð','ð','ß','Œ','œ','Æ','æ','µ'];var standard=['A','a','A','a','A','a','A','a','Ae','ae','A','a','A','a','A','a','C','c','C','c','C','c','D','d','D','d','E','e','E','e','E','e','E','e','E','e','E','e','G','g','I','i','I','i','I','i','I','i','L','l','L','l','L','l','N','n','N','n','N','n','O','o','O','o','O','o','O','o','Oe','oe','O','o','o','R','r','R','r','S','s','S','s','S','s','T','t','T','t','T','t','U','u','U','u','U','u','Ue','ue','U','u','Y','y','Y','y','Z','z','Z','z','Z','z','TH','th','DH','dh','ss','OE','oe','AE','ae','u'];var tidymap={"[\xa0\u2002\u2003\u2009]":" ","\xb7":"*","[\u2018\u2019]":"'","[\u201c\u201d]":'"',"\u2026":"...","\u2013":"-","\u2014":"--","\uFFFD":"&raquo;"};String.implement({standardize:function(){var text=this;special.each(function(ch,i){text=text.replace(new RegExp(ch,'g'),standard[i]);});return text;},repeat:function(times){return new Array(times+1).join(this);},pad:function(length,str,dir){if(this.length>=length)return this;str=str||' ';var pad=str.repeat(length-this.length).substr(0,length-this.length);if(!dir||dir=='right')return this+pad;if(dir=='left')return pad+this;return pad.substr(0,(pad.length/2).floor())+this+pad.substr(0,(pad.length/2).ceil());},stripTags:function(){return this.replace(/<\/?[^>]+>/gi,'');},tidy:function(){var txt=this.toString();$each(tidymap,function(value,key){txt=txt.replace(new RegExp(key,'g'),value);});return txt;}});})();String.implement({parseQueryString:function(){var vars=this.split(/[&;]/),res={};if(vars.length)vars.each(function(val){var index=val.indexOf('='),keys=index<0?['']:val.substr(0,index).match(/[^\]\[]+/g),value=decodeURIComponent(val.substr(index+1)),obj=res;keys.each(function(key,i){var current=obj[key];if(i<keys.length-1)
obj=obj[key]=current||{};else if($type(current)=='array')
current.push(value);else
obj[key]=$defined(current)?[current,value]:value;});});return res;},cleanQueryString:function(method){return this.split('&').filter(function(val){var index=val.indexOf('='),key=index<0?'':val.substr(0,index),value=val.substr(index+1);return method?method.run([key,value]):$chk(value);}).join('&');}});var URI=new Class({Implements:Options,regex:/^(?:(\w+):)?(?:\/\/(?:(?:([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?)?(\.\.?$|(?:[^?#\/]*\/)*)([^?#]*)(?:\?([^#]*))?(?:#(.*))?/,parts:['scheme','user','password','host','port','directory','file','query','fragment'],schemes:{http:80,https:443,ftp:21,rtsp:554,mms:1755,file:0},initialize:function(uri,options){this.setOptions(options);var base=this.options.base||URI.base;uri=uri||base;if(uri&&uri.parsed)
this.parsed=$unlink(uri.parsed);else
this.set('value',uri.href||uri.toString(),base?new URI(base):false);},parse:function(value,base){var bits=value.match(this.regex);if(!bits)return false;bits.shift();return this.merge(bits.associate(this.parts),base);},merge:function(bits,base){if((!bits||!bits.scheme)&&(!base||!base.scheme))return false;if(base){this.parts.every(function(part){if(bits[part])return false;bits[part]=base[part]||'';return true;});}
bits.port=bits.port||this.schemes[bits.scheme.toLowerCase()];bits.directory=bits.directory?this.parseDirectory(bits.directory,base?base.directory:''):'/';return bits;},parseDirectory:function(directory,baseDirectory){directory=(directory.substr(0,1)=='/'?'':(baseDirectory||'/'))+directory;if(!directory.test(URI.regs.directoryDot))return directory;var result=[];directory.replace(URI.regs.endSlash,'').split('/').each(function(dir){if(dir=='..'&&result.length>0)result.pop();else if(dir!='.')result.push(dir);});return result.join('/')+'/';},combine:function(bits){return bits.value||bits.scheme+'://'+
(bits.user?bits.user+(bits.password?':'+bits.password:'')+'@':'')+
(bits.host||'')+(bits.port&&bits.port!=this.schemes[bits.scheme]?':'+bits.port:'')+
(bits.directory||'/')+(bits.file||'')+
(bits.query?'?'+bits.query:'')+
(bits.fragment?'#'+bits.fragment:'');},set:function(part,value,base){if(part=='value'){var scheme=value.match(URI.regs.scheme);if(scheme)scheme=scheme[1];if(scheme&&!$defined(this.schemes[scheme.toLowerCase()]))this.parsed={scheme:scheme,value:value};else this.parsed=this.parse(value,(base||this).parsed)||(scheme?{scheme:scheme,value:value}:{value:value});}else if(part=='data'){this.setData(value);}else{this.parsed[part]=value;}
return this;},get:function(part,base){switch(part){case'value':return this.combine(this.parsed,base?base.parsed:false);case'data':return this.getData();}
return this.parsed[part]||undefined;},go:function(){document.location.href=this.toString();},toURI:function(){return this;},getData:function(key,part){var qs=this.get(part||'query');if(!$chk(qs))return key?null:{};var obj=qs.parseQueryString();return key?obj[key]:obj;},setData:function(values,merge,part){if($type(arguments[0])=='string'){values=this.getData();values[arguments[0]]=arguments[1];}else if(merge){values=$merge(this.getData(),values);}
return this.set(part||'query',Hash.toQueryString(values));},clearData:function(part){return this.set(part||'query','');}});['toString','valueOf'].each(function(method){URI.prototype[method]=function(){return this.get('value');};});URI.regs={endSlash:/\/$/,scheme:/^(\w+):/,directoryDot:/\.\/|\.$/};URI.base=new URI($$('base[href]').getLast(),{base:document.location});String.implement({toURI:function(options){return new URI(this,options);}});URI=Class.refactor(URI,{combine:function(bits,base){if(!base||bits.scheme!=base.scheme||bits.host!=base.host||bits.port!=base.port)
return this.previous.apply(this,arguments);var end=bits.file+(bits.query?'?'+bits.query:'')+(bits.fragment?'#'+bits.fragment:'');if(!base.directory)return(bits.directory||(bits.file?'':'./'))+end;var baseDir=base.directory.split('/'),relDir=bits.directory.split('/'),path='',offset;var i=0;for(offset=0;offset<baseDir.length&&offset<relDir.length&&baseDir[offset]==relDir[offset];offset++);for(i=0;i<baseDir.length-offset-1;i++)path+='../';for(i=offset;i<relDir.length-1;i++)path+=relDir[i]+'/';return(path||(bits.file?'':'./'))+end;},toAbsolute:function(base){base=new URI(base);if(base)base.set('directory','').set('file','');return this.toRelative(base);},toRelative:function(base){return this.get('value',new URI(base));}});Element.implement({measure:function(fn){var vis=function(el){return!!(!el||el.offsetHeight||el.offsetWidth);};if(vis(this))return fn.apply(this);var parent=this.getParent(),toMeasure=[],restorers=[];while(!vis(parent)&&parent!=document.body){toMeasure.push(parent.expose());parent=parent.getParent();}
var restore=this.expose();var result=fn.apply(this);restore();toMeasure.each(function(restore){restore();});return result;},expose:function(){if(this.getStyle('display')!='none')return $empty;var before=this.style.cssText;this.setStyles({display:'block',position:'absolute',visibility:'hidden'});return function(){this.style.cssText=before;}.bind(this);},getDimensions:function(options){options=$merge({computeSize:false},options);var dim={};var getSize=function(el,options){return(options.computeSize)?el.getComputedSize(options):el.getSize();};if(this.getStyle('display')=='none'){dim=this.measure(function(){return getSize(this,options);});}else{try{dim=getSize(this,options);}catch(e){}}
return $chk(dim.x)?$extend(dim,{width:dim.x,height:dim.y}):$extend(dim,{x:dim.width,y:dim.height});},getComputedSize:function(options){options=$merge({styles:['padding','border'],plains:{height:['top','bottom'],width:['left','right']},mode:'both'},options);var size={width:0,height:0};switch(options.mode){case'vertical':delete size.width;delete options.plains.width;break;case'horizontal':delete size.height;delete options.plains.height;break;}
var getStyles=[];$each(options.plains,function(plain,key){plain.each(function(edge){options.styles.each(function(style){getStyles.push((style=='border')?style+'-'+edge+'-'+'width':style+'-'+edge);});});});var styles={};getStyles.each(function(style){styles[style]=this.getComputedStyle(style);},this);var subtracted=[];$each(options.plains,function(plain,key){var capitalized=key.capitalize();size['total'+capitalized]=0;size['computed'+capitalized]=0;plain.each(function(edge){size['computed'+edge.capitalize()]=0;getStyles.each(function(style,i){if(style.test(edge)){styles[style]=styles[style].toInt()||0;size['total'+capitalized]=size['total'+capitalized]+styles[style];size['computed'+edge.capitalize()]=size['computed'+edge.capitalize()]+styles[style];}
if(style.test(edge)&&key!=style&&(style.test('border')||style.test('padding'))&&!subtracted.contains(style)){subtracted.push(style);size['computed'+capitalized]=size['computed'+capitalized]-styles[style];}});});});['Width','Height'].each(function(value){var lower=value.toLowerCase();if(!$chk(size[lower]))return;size[lower]=size[lower]+this['offset'+value]+size['computed'+value];size['total'+value]=size[lower]+size['total'+value];delete size['computed'+value];},this);return $extend(styles,size);}});Element.implement({isDisplayed:function(){return this.getStyle('display')!='none';},toggle:function(){return this[this.isDisplayed()?'hide':'show']();},hide:function(){var d;try{if('none'!=this.getStyle('display'))d=this.getStyle('display');}catch(e){}
return this.store('originalDisplay',d||'block').setStyle('display','none');},show:function(display){return this.setStyle('display',display||this.retrieve('originalDisplay')||'block');},swapClass:function(remove,add){return this.removeClass(remove).addClass(add);}});Fx.Elements=new Class({Extends:Fx.CSS,initialize:function(elements,options){this.elements=this.subject=$$(elements);this.parent(options);},compute:function(from,to,delta){var now={};for(var i in from){var iFrom=from[i],iTo=to[i],iNow=now[i]={};for(var p in iFrom)iNow[p]=this.parent(iFrom[p],iTo[p],delta);}
return now;},set:function(now){for(var i in now){var iNow=now[i];for(var p in iNow)this.render(this.elements[i],p,iNow[p],this.options.unit);}
return this;},start:function(obj){if(!this.check(obj))return this;var from={},to={};for(var i in obj){var iProps=obj[i],iFrom=from[i]={},iTo=to[i]={};for(var p in iProps){var parsed=this.prepare(this.elements[i],p,iProps[p]);iFrom[p]=parsed.from;iTo[p]=parsed.to;}}
return this.parent(from,to);}});var Accordion=Fx.Accordion=new Class({Extends:Fx.Elements,options:{display:0,show:false,height:true,width:false,opacity:true,fixedHeight:false,fixedWidth:false,wait:false,alwaysHide:false,trigger:'click',initialDisplayFx:true},initialize:function(){var params=Array.link(arguments,{'container':Element.type,'options':Object.type,'togglers':$defined,'elements':$defined});this.parent(params.elements,params.options);this.togglers=$$(params.togglers);this.container=document.id(params.container);this.previous=-1;if(this.options.alwaysHide)this.options.wait=true;if($chk(this.options.show)){this.options.display=false;this.previous=this.options.show;}
if(this.options.start){this.options.display=false;this.options.show=false;}
this.effects={};if(this.options.opacity)this.effects.opacity='fullOpacity';if(this.options.width)this.effects.width=this.options.fixedWidth?'fullWidth':'offsetWidth';if(this.options.height)this.effects.height=this.options.fixedHeight?'fullHeight':'scrollHeight';for(var i=0,l=this.togglers.length;i<l;i++)this.addSection(this.togglers[i],this.elements[i]);this.elements.each(function(el,i){if(this.options.show===i){this.fireEvent('active',[this.togglers[i],el]);}else{for(var fx in this.effects)el.setStyle(fx,0);}},this);if($chk(this.options.display))this.display(this.options.display,this.options.initialDisplayFx);},addSection:function(toggler,element){toggler=document.id(toggler);element=document.id(element);var test=this.togglers.contains(toggler);this.togglers.include(toggler);this.elements.include(element);var idx=this.togglers.indexOf(toggler);toggler.addEvent(this.options.trigger,this.display.bind(this,idx));if(this.options.height)element.setStyles({'padding-top':0,'border-top':'none','padding-bottom':0,'border-bottom':'none'});if(this.options.width)element.setStyles({'padding-left':0,'border-left':'none','padding-right':0,'border-right':'none'});element.fullOpacity=1;if(this.options.fixedWidth)element.fullWidth=this.options.fixedWidth;if(this.options.fixedHeight)element.fullHeight=this.options.fixedHeight;element.setStyle('overflow','hidden');if(!test){for(var fx in this.effects)element.setStyle(fx,0);}
return this;},display:function(index,useFx){useFx=$pick(useFx,true);index=($type(index)=='element')?this.elements.indexOf(index):index;if((this.timer&&this.options.wait)||(index===this.previous&&!this.options.alwaysHide))return this;this.previous=index;var obj={};this.elements.each(function(el,i){obj[i]={};var hide=(i!=index)||(this.options.alwaysHide&&(el.offsetHeight>0));this.fireEvent(hide?'background':'active',[this.togglers[i],el]);for(var fx in this.effects)obj[i][fx]=hide?0:el[this.effects[fx]];},this);return useFx?this.start(obj):this.set(obj);}});Fx.Scroll=new Class({Extends:Fx,options:{offset:{x:0,y:0},wheelStops:true},initialize:function(element,options){this.element=this.subject=document.id(element);this.parent(options);var cancel=this.cancel.bind(this,false);if($type(this.element)!='element')this.element=document.id(this.element.getDocument().body);var stopper=this.element;if(this.options.wheelStops){this.addEvent('start',function(){stopper.addEvent('mousewheel',cancel);},true);this.addEvent('complete',function(){stopper.removeEvent('mousewheel',cancel);},true);}},set:function(){var now=Array.flatten(arguments);this.element.scrollTo(now[0],now[1]);},compute:function(from,to,delta){return[0,1].map(function(i){return Fx.compute(from[i],to[i],delta);});},start:function(x,y){if(!this.check(x,y))return this;var offsetSize=this.element.getSize(),scrollSize=this.element.getScrollSize();var scroll=this.element.getScroll(),values={x:x,y:y};for(var z in values){var max=scrollSize[z]-offsetSize[z];if($chk(values[z]))values[z]=($type(values[z])=='number')?values[z].limit(0,max):max;else values[z]=scroll[z];values[z]+=this.options.offset[z];}
return this.parent([scroll.x,scroll.y],[values.x,values.y]);},toTop:function(){return this.start(false,0);},toLeft:function(){return this.start(0,false);},toRight:function(){return this.start('right',false);},toBottom:function(){return this.start(false,'bottom');},toElement:function(el){var position=document.id(el).getPosition(this.element);return this.start(position.x,position.y);},scrollIntoView:function(el,axes,offset){axes=axes?$splat(axes):['x','y'];var to={};el=document.id(el);var pos=el.getPosition(this.element);var size=el.getSize();var scroll=this.element.getScroll();var containerSize=this.element.getSize();var edge={x:pos.x+size.x,y:pos.y+size.y};['x','y'].each(function(axis){if(axes.contains(axis)){if(edge[axis]>scroll[axis]+containerSize[axis])to[axis]=edge[axis]-containerSize[axis];if(pos[axis]<scroll[axis])to[axis]=pos[axis];}
if(to[axis]==null)to[axis]=scroll[axis];if(offset&&offset[axis])to[axis]=to[axis]+offset[axis];},this);if(to.x!=scroll.x||to.y!=scroll.y)this.start(to.x,to.y);return this;}});var SmoothScroll=Fx.SmoothScroll=new Class({Extends:Fx.Scroll,initialize:function(options,context){context=context||document;this.doc=context.getDocument();var win=context.getWindow();this.parent(this.doc,options);this.links=this.options.links?$$(this.options.links):$$(this.doc.links);var location=win.location.href.match(/^[^#]*/)[0]+'#';this.links.each(function(link){if(link.href.indexOf(location)!=0){return;}
var anchor=link.href.substr(location.length);if(anchor)this.useLink(link,anchor);},this);if(!Browser.Engine.webkit419){this.addEvent('complete',function(){win.location.hash=this.anchor;},true);}},useLink:function(link,anchor){var el;link.addEvent('click',function(event){if(el!==false&&!el)el=document.id(anchor)||this.doc.getElement('a[name='+anchor+']');if(el){event.preventDefault();this.anchor=anchor;this.toElement(el);link.blur();}}.bind(this));}});var Drag=new Class({Implements:[Events,Options],options:{snap:6,unit:'px',grid:false,style:true,limit:false,handle:false,invert:false,preventDefault:false,modifiers:{x:'left',y:'top'}},initialize:function(){var params=Array.link(arguments,{'options':Object.type,'element':$defined});this.element=document.id(params.element);this.document=this.element.getDocument();this.setOptions(params.options||{});var htype=$type(this.options.handle);this.handles=((htype=='array'||htype=='collection')?$$(this.options.handle):document.id(this.options.handle))||this.element;this.mouse={'now':{},'pos':{}};this.value={'start':{},'now':{}};this.selection=(Browser.Engine.trident)?'selectstart':'mousedown';this.bound={start:this.start.bind(this),check:this.check.bind(this),drag:this.drag.bind(this),stop:this.stop.bind(this),cancel:this.cancel.bind(this),eventStop:$lambda(false)};this.attach();},attach:function(){this.handles.addEvent('mousedown',this.bound.start);return this;},detach:function(){this.handles.removeEvent('mousedown',this.bound.start);return this;},start:function(event){if(this.options.preventDefault)event.preventDefault();this.mouse.start=event.page;this.fireEvent('beforeStart',this.element);var limit=this.options.limit;this.limit={x:[],y:[]};for(var z in this.options.modifiers){if(!this.options.modifiers[z])continue;if(this.options.style)this.value.now[z]=this.element.getStyle(this.options.modifiers[z]).toInt();else this.value.now[z]=this.element[this.options.modifiers[z]];if(this.options.invert)this.value.now[z]*=-1;this.mouse.pos[z]=event.page[z]-this.value.now[z];if(limit&&limit[z]){for(var i=2;i--;i){if($chk(limit[z][i]))this.limit[z][i]=$lambda(limit[z][i])();}}}
if($type(this.options.grid)=='number')this.options.grid={x:this.options.grid,y:this.options.grid};this.document.addEvents({mousemove:this.bound.check,mouseup:this.bound.cancel});this.document.addEvent(this.selection,this.bound.eventStop);},check:function(event){if(this.options.preventDefault)event.preventDefault();var distance=Math.round(Math.sqrt(Math.pow(event.page.x-this.mouse.start.x,2)+Math.pow(event.page.y-this.mouse.start.y,2)));if(distance>this.options.snap){this.cancel();this.document.addEvents({mousemove:this.bound.drag,mouseup:this.bound.stop});this.fireEvent('start',[this.element,event]).fireEvent('snap',this.element);}},drag:function(event){if(this.options.preventDefault)event.preventDefault();this.mouse.now=event.page;for(var z in this.options.modifiers){if(!this.options.modifiers[z])continue;this.value.now[z]=this.mouse.now[z]-this.mouse.pos[z];if(this.options.invert)this.value.now[z]*=-1;if(this.options.limit&&this.limit[z]){if($chk(this.limit[z][1])&&(this.value.now[z]>this.limit[z][1])){this.value.now[z]=this.limit[z][1];}else if($chk(this.limit[z][0])&&(this.value.now[z]<this.limit[z][0])){this.value.now[z]=this.limit[z][0];}}
if(this.options.grid[z])this.value.now[z]-=((this.value.now[z]-(this.limit[z][0]||0))%this.options.grid[z]);if(this.options.style)this.element.setStyle(this.options.modifiers[z],this.value.now[z]+this.options.unit);else this.element[this.options.modifiers[z]]=this.value.now[z];}
this.fireEvent('drag',[this.element,event]);},cancel:function(event){this.document.removeEvent('mousemove',this.bound.check);this.document.removeEvent('mouseup',this.bound.cancel);if(event){this.document.removeEvent(this.selection,this.bound.eventStop);this.fireEvent('cancel',this.element);}},stop:function(event){this.document.removeEvent(this.selection,this.bound.eventStop);this.document.removeEvent('mousemove',this.bound.drag);this.document.removeEvent('mouseup',this.bound.stop);if(event)this.fireEvent('complete',[this.element,event]);}});Element.implement({makeResizable:function(options){var drag=new Drag(this,$merge({modifiers:{x:'width',y:'height'}},options));this.store('resizer',drag);return drag.addEvent('drag',function(){this.fireEvent('resize',drag);}.bind(this));}});Drag.Move=new Class({Extends:Drag,options:{droppables:[],container:false,precalculate:false,includeMargins:true,checkDroppables:true},initialize:function(element,options){this.parent(element,options);this.droppables=$$(this.options.droppables);this.container=document.id(this.options.container);if(this.container&&$type(this.container)!='element')this.container=document.id(this.container.getDocument().body);var position=this.element.getStyle('position');if(position=='static')position='absolute';if([this.element.getStyle('left'),this.element.getStyle('top')].contains('auto'))this.element.position(this.element.getPosition(this.element.offsetParent));this.element.setStyle('position',position);this.addEvent('start',this.checkDroppables,true);this.overed=null;},start:function(event){if(this.container){var ccoo=this.container.getCoordinates(this.element.getOffsetParent()),cbs={},ems={};['top','right','bottom','left'].each(function(pad){cbs[pad]=this.container.getStyle('border-'+pad).toInt();ems[pad]=this.element.getStyle('margin-'+pad).toInt();},this);var width=this.element.offsetWidth+ems.left+ems.right;var height=this.element.offsetHeight+ems.top+ems.bottom;if(this.options.includeMargins){$each(ems,function(value,key){ems[key]=0;});}
if(this.container==this.element.getOffsetParent()){this.options.limit={x:[0-ems.left,ccoo.right-cbs.left-cbs.right-width+ems.right],y:[0-ems.top,ccoo.bottom-cbs.top-cbs.bottom-height+ems.bottom]};}else{this.options.limit={x:[ccoo.left+cbs.left-ems.left,ccoo.right-cbs.right-width+ems.right],y:[ccoo.top+cbs.top-ems.top,ccoo.bottom-cbs.bottom-height+ems.bottom]};}}
if(this.options.precalculate){this.positions=this.droppables.map(function(el){return el.getCoordinates();});}
this.parent(event);},checkAgainst:function(el,i){el=(this.positions)?this.positions[i]:el.getCoordinates();var now=this.mouse.now;return(now.x>el.left&&now.x<el.right&&now.y<el.bottom&&now.y>el.top);},checkDroppables:function(){var overed=this.droppables.filter(this.checkAgainst,this).getLast();if(this.overed!=overed){if(this.overed)this.fireEvent('leave',[this.element,this.overed]);if(overed)this.fireEvent('enter',[this.element,overed]);this.overed=overed;}},drag:function(event){this.parent(event);if(this.options.checkDroppables&&this.droppables.length)this.checkDroppables();},stop:function(event){this.checkDroppables();this.fireEvent('drop',[this.element,this.overed,event]);this.overed=null;return this.parent(event);}});Element.implement({makeDraggable:function(options){var drag=new Drag.Move(this,options);this.store('dragger',drag);return drag;}});;var Clientcide={version:'2.1.0',setAssetLocation:function(baseHref){var clean=function(str){return str.replace(/\/\//g,'/');};if(window.StickyWin&&StickyWin.UI){StickyWin.UI.implement({options:{baseHref:clean(baseHref+'/stickyWinHTML/')}});if(StickyWin.Alert){StickyWin.Alert.implement({options:{baseHref:baseHref+"/simple.error.popup"}});}
if(StickyWin.UI.Pointy){StickyWin.UI.Pointy.implement({options:{baseHref:clean(baseHref+'/PointyTip/')}});}}
if(window.TagMaker){TagMaker.implement({options:{baseHref:clean(baseHref+'/tips/')}});}
if(window.ProductPicker){ProductPicker.implement({options:{baseHref:clean(baseHref+'/Picker')}});}
if(window.Autocompleter){Autocompleter.Base.implement({options:{baseHref:clean(baseHref+'/autocompleter/')}});}
if(window.Lightbox){Lightbox.implement({options:{assetBaseUrl:clean(baseHref+'/slimbox/')}});}
if(window.Waiter){Waiter.implement({options:{baseHref:clean(baseHref+'/waiter/')}});}},preLoadCss:function(){if(window.StickyWin&&StickyWin.ui)StickyWin.ui();if(window.StickyWin&&StickyWin.pointy)StickyWin.pointy();Clientcide.preloaded=true;return true;},preloaded:false};(function(){if(!window.addEvent)return;var preload=function(){if(window.dbug)dbug.log('preloading clientcide css');if(!Clientcide.preloaded)Clientcide.preLoadCss();};window.addEvent('domready',preload);window.addEvent('load',preload);})();setCNETAssetBaseHref=Clientcide.setAssetLocation;Class.ToElement=new Class({toElement:function(){return this.element;}});var ToElement=Class.ToElement;var SimpleSlideShow=new Class({Implements:[Events,Options,Chain],options:{startIndex:0,slides:[],currentSlideClass:'currentSlide',currentIndexContainer:false,maxContainer:false,nextLink:false,prevLink:false,wrap:true,disabledLinkClass:'disabled',crossFadeOptions:{}},initialize:function(options){this.setOptions(options);var slides=this.options.slides;this.makeSlides(slides);this.setCounters();this.setUpNav();this.now=this.options.startIndex;if(this.slides.length>0)this.show(this.now);},slides:[],setCounters:function(){if(document.id(this.options.currentIndexContainer))document.id(this.options.currentIndexContainer).set('html',this.now+1);if(document.id(this.options.maxContainer))document.id(this.options.maxContainer).set('html',this.slides.length);},makeSlides:function(slides){slides.each(function(slide,index){if(index!=this.now)slide.setStyle('display','none');else slide.setStyle('display','block');this.makeSlide(slide);},this);},makeSlide:function(slide){slide.addEvent('click',function(){this.fireEvent('onSlideClick');}.bind(this));this.slides.include(slide);},setUpNav:function(){if(document.id(this.options.nextLink)){document.id(this.options.nextLink).addEvent('click',function(){this.forward();}.bind(this));}
if(document.id(this.options.prevLink)){document.id(this.options.prevLink).addEvent('click',function(){this.back();}.bind(this));}},disableLinks:function(now){if(this.options.wrap)return;now=$pick(now,this.now);var prev=document.id(this.options.prevLink);var next=document.id(this.options.nextLink);var dlc=this.options.disabledLinkClass;if(now>0){if(prev)prev.removeClass(dlc);if(now===this.slides.length-1&&next)next.addClass(dlc);else if(next)next.removeClass(dlc)}else{if(this.slides.length>0&&next)next.removeClass(dlc);if(prev)prev.addClass(dlc);}},forward:function(){if($type(this.now)&&this.now<this.slides.length-1)this.show(this.now+1);else if($type(this.now)&&this.options.wrap)this.show(0);else if(!$type(this.now))this.show(this.options.startIndex);this.fireEvent('next');return this;},back:function(){if(this.now>0){this.show(this.now-1);this.fireEvent('onPrev');}else if(this.options.wrap&&this.slides.length>1){this.show(this.slides.length-1);this.fireEvent('prev');}
return this;},show:function(index){if(this.showing)return this.chain(this.show.bind(this,index));var now=this.now;var s=this.slides[index];function fadeIn(s,resetOpacity){s.setStyle('display','block');if(!Browser.Engine.trident4){if(resetOpacity)s.setStyle('opacity',0);s.set('tween',this.options.crossFadeOptions).get('tween').start('opacity',1).chain(function(){this.showing=false;this.disableLinks();this.callChain();this.fireEvent('onSlideDisplay',index);}.bind(this));}};if(s){if($type(this.now)&&this.now!=index){if(!Browser.Engine.trident4){var fx=this.slides[this.now].get('tween');fx.setOptions(this.options.crossFadeOptions);this.showing=true;fx.start('opacity',0).chain(function(){this.slides[now].setStyle('display','none');s.addClass(this.options.currentSlideClass);fadeIn.run([s,true],this);this.fireEvent('onSlideDisplay',index);}.bind(this));}else{this.slides[this.now].setStyle('display','none');fadeIn.run(s,this);}}else fadeIn.run(s,this);this.now=index;this.setCounters();}},slideClick:function(){this.fireEvent('onSlideClick',[this.slides[this.now],this.now]);}});SimpleSlideShow.Carousel=new Class({Extends:SimpleSlideShow,Implements:[Class.ToElement],Binds:['makeSlide'],options:{sliderWidth:999999},initialize:function(container,options){this.setOptions(options);this.container=document.id(container);this.element=new Element('div').wraps(this.container).setStyles({width:this.container.getSize().x,overflow:'hidden',position:'relative'});this.container.setStyles({width:this.options.sliderWidth,position:'relative'});this.parent(options);},makeSlides:function(slides){this.slides=[];slides.each(this.makeSlide);},makeSlide:function(slide){if(slide.retrieve('slideSetup'))return;slide.store('slideSetup',true);slide.show();var s=new Element('div',{styles:{'float':'left',width:document.id(this).getSize().x}}).wraps(slide);this.parent(s);this.slides.erase(slide);this.setCounters();s.show();s.inject(this.container);},show:function(index){if(!this.container)return;this.fx=this.fx||new Fx.Tween(this.container,{property:'left'});if(this.showing)return this.chain(this.show.bind(this,index));var now=this.now;var s=this.slides[index];if(s){if(this.now!=index){this.fx.start(-s.getPosition(this.container).x).chain(function(){s.addClass(this.options.currentSlideClass);this.showing=false;this.disableLinks();this.callChain();this.fireEvent('onSlideDisplay',index);}.bind(this));}
this.now=index;this.setCounters();}}});var SimpleImageSlideShow;(function(){var extender=function(extend,passContainer){return{Extends:extend,Implements:Class.ToElement,options:{imgUrls:[],imgClass:'screenshot',container:false},initialize:function(){var args=Array.link(arguments,{options:Object.type,container:$defined});this.container=document.id(args.container)||(args.options?document.id(args.options.container):false);if(passContainer)this.parent(this.container,args.options);else this.parent(args.options);this.options.imgUrls.each(function(url){this.addImg(url);},this);this.show(this.options.startIndex);},addImg:function(url){if(this.container){var img=new Element('img',{'src':url,'id':this.options.imgClass+this.slides.length}).addClass(this.options.imgClass).setStyle('display','none').inject(this.container).addEvent('click',this.slideClick.bind(this));this.slides.push(img);this.makeSlide(img);this.setCounters();}
return this;}};};SimpleImageSlideShow=new Class(extender(SimpleSlideShow));SimpleImageSlideShow.Carousel=new Class(extender(SimpleSlideShow.Carousel,true));})();;var ReMooz=new Class({Implements:[Events,Options,Chain],options:{link:null,type:'image',container:null,className:null,centered:false,dragging:true,closeOnClick:true,shadow:(Browser.Engine.trident)?'onOpenEnd':'onOpen',resize:true,margin:20,resizeFactor:0.95,resizeLimit:false,fixedSize:false,cutOut:true,addClick:true,opacityLoad:0.6,opacityResize:1,opacityTitle:0.9,resizeOptions:{},fxOptions:{},closer:true,parse:false,parseSecure:false,temporary:false,onBuild:$empty,onLoad:$empty,onOpen:$empty,onOpenEnd:$empty,onClose:$empty,onCloseEnd:$empty,generateTitle:function(el){var text=el.get('title');if(!text)return false;var title=text.split(' :: ');var head=new Element('h6',{'html':title[0]});return(title[1])?[head,new Element('p',{'html':title[1]})]:head;}},initialize:function(element,options){this.element=$(element);this.setOptions(options);if(this.options.parse){var obj=this.element.getProperty(this.options.parse);if(obj&&(obj=JSON.decode(obj,this.options.parseSecure)))this.setOptions(obj);}
var origin=this.options.origin;this.origin=((origin)?$(origin)||this.element.getElement(origin):null)||this.element;this.link=this.options.link||this.element.get('href')||this.element.get('src');this.container=$(this.options.container)||this.element.getDocument();this.bound={'click':function(e){this.open.delay(1,this);return false;}.bind(this),'close':this.close.bind(this),'dragClose':function(e){if(e.rightClick)return;this.close();}.bind(this)};if(this.options.addClick)this.bindToElement();},destroy:function(){if(this.box)this.box.destroy();this.box=this.tweens=this.body=this.content=null;},bindToElement:function(element){($(element)||this.element).addClass('remooz-element').addEvent('click',this.bound.click);return this;},getOriginCoordinates:function(){var coords=this.origin.getCoordinates();delete coords.right;delete coords.bottom;return coords;},open:function(e){if(this.opened)return(e)?this.close():this;this.opened=this.loading=true;if(!this.box)this.build();this.coords=this.getOriginCoordinates();this.coords.opacity=this.options.opacityLoad;this.coords.display='';this.tweens.box.set(this.coords);this.box.addClass('remooz-loading');ReMooz.open(this.fireEvent('onLoad'));this['open'+this.options.type.capitalize()]();return this;},finishOpen:function(){this.tweens.fade.start(0,1);this.drag.attach();this.fireEvent('onOpenEnd').callChain();},close:function(){if(!this.opened)return this;this.opened=false;ReMooz.close(this.fireEvent('onClose'));if(this.loading){this.box.setStyle('display','none');return this;}
this.drag.detach();this.tweens.fade.cancel().set(0).fireEvent('onComplete');if(this.tweens.box.timer)this.tweens.box.clearChain();var vars=this.getOriginCoordinates();if(this.options.opacityResize!=1)vars.opacity=this.options.opacityResize;this.tweens.box.start(vars).chain(this.closeEnd.bind(this));return this;},closeEnd:function(){if(this.body)this.body.empty();if(this.content)this.content=null;if(this.options.cutOut)this.element.setStyle('visibility','visible');this.box.setStyle('display','none');this.fireEvent('onCloseEnd').callChain();if(this.options.temporary)this.destroy();},openImage:function(){var tmp=new Image();tmp.onload=tmp.onabort=tmp.onerror=function(fast){this.loading=tmp.onload=tmp.onabort=tmp.onerror=null;if(!tmp.width||!this.opened){this.fireEvent('onError').close();return;}
var to={x:tmp.width,y:tmp.height};if(!this.content)this.content=$(tmp).inject(this.body);else tmp=null;this[(this.options.resize)?'zoomRelativeTo':'zoomTo'].create({'delay':(tmp&&fast!==true)?1:null,'arguments':[to],'bind':this})();}.bind(this);tmp.src=this.link;if(tmp&&tmp.complete&&tmp.onload)tmp.onload(true);},openElement:function(){this.content=this.content||$(this.link)||$E(this.link);if(!this.content){this.fireEvent('onError').close();return;}
this.content.inject(this.body);this.zoomTo({x:this.content.scrollWidth,y:this.content.scrollHeight});},zoomRelativeTo:function(to){var scale=this.options.resizeLimit;if(!scale){scale=this.container.getSize();scale.x*=this.options.resizeFactor;scale.y*=this.options.resizeFactor;}
for(var i=2;i--;){if(to.x>scale.x){to.y*=scale.x/to.x;to.x=scale.x;}else if(to.y>scale.y){to.x*=scale.y/to.y;to.y=scale.y;}}
return this.zoomTo({x:to.x.toInt(),y:to.y.toInt()});},zoomTo:function(to){to=this.options.fixedSize||to;var box=this.container.getSize(),scroll=this.container.getScroll();var pos=(!this.options.centered)?{x:(this.coords.left+(this.coords.width/2)-to.x/2).toInt().limit(scroll.x+this.options.margin,scroll.x+box.x-this.options.margin-to.x),y:(this.coords.top+(this.coords.height/2)-to.y/2).toInt().limit(scroll.y+this.options.margin,scroll.y+box.y-this.options.margin-to.y)}:{x:scroll.x+((box.x-to.x)/2).toInt(),y:scroll.y+((box.y-to.y)/2).toInt()};if(this.options.cutOut)this.element.setStyle('visibility','hidden');this.box.removeClass('remooz-loading');var vars={left:pos.x,top:pos.y,width:to.x,height:to.y};if(this.options.opacityResize!=1)vars.opacity=[this.options.opacityResize,1];else this.box.set('opacity',1);this.tweens.box.start(vars).chain(this.finishOpen.bind(this));this.fireEvent('onOpen');},build:function(){this.addEvent('onBlur',function(){this.focused=false;this.box.removeClass('remooz-box-focus').setStyle('z-index',ReMooz.options.zIndex);},true);this.addEvent('onFocus',function(){this.focused=true;this.box.addClass('remooz-box-focus').setStyle('z-index',ReMooz.options.zIndexFocus);},true);var classes=['remooz-box','remooz-type-'+this.options.type,'remooz-engine-'+Browser.Engine.name+Browser.Engine.version];if(this.options.className)classes.push(this.options.className);this.box=new Element('div',{'class':classes.join(' '),'styles':{'display':'none','top':0,'left':0,'zIndex':ReMooz.options.zIndex}});this.tweens={'box':new Fx.Morph(this.box,$merge({'duration':400,'unit':'px','transition':Fx.Transitions.Quart.easeOut,'chain':'cancel'},this.options.resizeOptions)),'fade':new Fx.Tween(null,$merge({'property':'opacity','duration':(Browser.Engine.trident)?0:300,'chain':'cancel'},this.options.fxOptions)).addEvents({'onComplete':function(){if(!this.element.get('opacity'))this.element.setStyle('display','none');},'onStart':function(){if(!this.element.get('opacity'))this.element.setStyle('display','');}})};this.tweens.fade.element=$$();if(this.options.shadow){if(Browser.Engine.webkit420){this.box.setStyle('-webkit-box-shadow','0 0 10px rgba(0, 0, 0, 0.7)');}else if(!Browser.Engine.trident4){var shadow=new Element('div',{'class':'remooz-bg-wrap'}).inject(this.box);['n','ne','e','se','s','sw','w','nw'].each(function(dir){new Element('div',{'class':'remooz-bg remooz-bg-'+dir}).inject(shadow);});this.tweens.bg=new Fx.Tween(shadow,{'property':'opacity','chain':'cancel'}).set(0);this.addEvent(this.options.shadow,this.tweens.bg.set.bind(this.tweens.bg,1),true);this.addEvent('onClose',this.tweens.bg.set.bind(this.tweens.bg,0),true);}}
if(this.options.closer){var closer=new Element('a',{'class':'remooz-btn-close','events':{'click':this.bound.close}}).inject(this.box);this.tweens.fade.element.push(closer);}
this.body=new Element('div',{'class':'remooz-body'}).inject(this.box);var title=this.options.title||this.options.generateTitle.call(this,this.element);if(title){var title=new Element('div',{'class':'remooz-title'}).adopt(new Element('div',{'class':'remooz-title-bg','opacity':this.options.opacityTitle}),new Element('div',{'class':'remooz-title-content'}).adopt(title)).inject(this.box);this.tweens.fade.element.push(title);}
this.tweens.fade.set(0).fireEvent('onComplete');this.drag=new Drag.Move(this.box,{'snap':15,'preventDefault':true,'onBeforeStart':function(){if(!this.focused&&!this.loading)ReMooz.focus(this);else if(this.loading||this.options.closeOnClick)this.box.addEvent('mouseup',this.bound.dragClose);}.bind(this),'onSnap':function(){this.box.removeEvent('mouseup',this.bound.dragClose);if(!this.options.dragging)this.drag.stop();else this.box.addClass('remooz-box-dragging');}.bind(this),'onComplete':function(){this.box.removeClass('remooz-box-dragging');}.bind(this)});this.drag.detach();this.fireEvent('onBuild',this.box,this.element);this.box.inject(this.element.getDocument().body);}});ReMooz.factory=function(extended){return $extend(this,extended);};ReMooz.factory(new Options).factory({options:{zIndex:41,zIndexFocus:42,query:'a.remooz',modal:false},assign:function(elements,options){return $$(elements).map(function(element){return new ReMooz(element,options);},this);},stack:[],open:function(obj){var last=this.stack.getLast();this.focus(obj);if(last&&this.options.modal)last.close();},close:function(obj){var length=this.stack.length-1;if(length>1&&this.stack[length]==obj)this.focus(this.stack[length-1]);this.stack.erase(obj);},focus:function(obj){var last=this.stack.getLast();obj.fireEvent('onFocus',[obj]);if(last==obj)return;if(last)last.fireEvent('onBlur',[last]);this.stack.erase(obj).push(obj);}});ReMooz.implement({openSwf:function(){if(!this.options.fixedSize){this.fireEvent('onError').close();return;}
this.options=$extend(this.options,{closeOnClick:false});var swf=new Swiff(this.link,{width:'100%',height:'100%',params:{wmode:'transparent',scale:'noscale',salign:'TL',allowfullscreen:'true'}});if(!this.content)this.content=swf.inject(this.body);this.loading=null;this.zoomTo(this.options.fixedSize);},openFlv:function(){if(!this.options.fixedSize){this.fireEvent('onError').close();return;}
this.options=$extend(this.options,{closeOnClick:false});var swf=new Swiff('/swf/player.swf',{width:'100%',height:'100%',params:{wmode:'transparent',scale:'noscale',salign:'TL',allowfullscreen:'true'},vars:{file:this.link,controlbar:'over',fullscreen:'true',autostart:'true'}});if(!this.content)this.content=swf.inject(this.body);this.loading=null;this.zoomTo(this.options.fixedSize);},openMap:function(){if(!this.options.fixedSize){this.fireEvent('onError').close();return;}
this.options=$extend(this.options,{closeOnClick:false});var emap=new Element('div',{styles:{width:this.options.fixedSize.x,height:this.options.fixedSize.y}}).injectInside(this.body);var queryString=this.link.parseQuery(false,false);if(GBrowserIsCompatible()){var map=new GMap2(emap);var geocoder=new GClientGeocoder();map.addControl(new GLargeMapControl());map.setCenter(new GLatLng(0,0),1);if(queryString.q){geocoder.getLocations(queryString.q,function(response){if(!response||response.Status.code!=200){}else{var latitude=response.Placemark[0].Point.coordinates[1];var longitude=response.Placemark[0].Point.coordinates[0];var geocode=response.Placemark[0].address;var latlng=new GLatLng(latitude,longitude);map.setCenter(latlng);}});}
if(queryString.z)map.setZoom(queryString.z);if(queryString.sll){var center=queryString.sll.split(',');map.setCenter(new GLatLng(center[0].toFloat(),center[1].toFloat()));}
if(queryString.ll){var center=queryString.ll.split(',');map.setCenter(new GLatLng(center[0].toFloat(),center[1].toFloat()));}}
this.loading=null;this.zoomTo(this.options.fixedSize);},openIFrame:function(){if(!this.options.fixedSize){this.fireEvent('onError').close();return;}
this.options=$extend(this.options,{closeOnClick:false});var iFrame=new IFrame({src:this.link,styles:{width:'100%',height:'100%',border:'0'}});if(!this.content)this.content=iFrame.inject(this.body);this.loading=null;this.zoomTo(this.options.fixedSize);}});;var Cufon=(function(){var M=function(){return M.replace.apply(null,arguments)};var X=M.DOM={ready:(function(){var c=false,e={loaded:1,complete:1};var b=[],d=function(){if(c){return}c=true;for(var f;f=b.shift();f()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",d,false);window.addEventListener("pageshow",d,false)}if(!window.opera&&document.readyState){(function(){e[document.readyState]?d():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");d()}catch(f){setTimeout(arguments.callee,1)}})()}Q(window,"load",d);return function(f){if(!arguments.length){d()}else{c?f():b.push(f)}}})(),root:function(){return document.documentElement||document.body}};var N=M.CSS={Size:function(c,b){this.value=parseFloat(c);this.unit=String(c).match(/[a-z%]*$/)[0]||"px";this.convert=function(d){return d/b*this.value};this.convertFrom=function(d){return d/this.value*b};this.toString=function(){return this.value+this.unit}},addClass:function(c,b){c.className=(c.className&&" ")+b;return c},color:J(function(c){var b={};b.color=c.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(e,d,f){b.opacity=parseFloat(f);return"rgb("+d+")"});return b}),fontStretch:J(function(b){if(typeof b=="number"){return b}if(/%$/.test(b)){return parseFloat(b)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[b]||1}),getStyle:function(c){var b=document.defaultView;if(b&&b.getComputedStyle){return new A(b.getComputedStyle(c,null))}if(c.currentStyle){return new A(c.currentStyle)}return new A(c.style)},gradient:J(function(f){var g={id:f,type:f.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},c=f.substr(f.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var e=0,b=c.length,d;e<b;++e){d=c[e].split("=",2).reverse();g.stops.push([d[1]||e/(b-1),d[0]])}return g}),quotedList:J(function(e){var d=[],c=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,b;while(b=c.exec(e)){d.push(b[3]||b[1])}return d}),recognizesMedia:J(function(h){var f=document.createElement("style"),d,c,b;f.type="text/css";f.media=h;try{f.appendChild(document.createTextNode("/**/"))}catch(g){}c=G("head")[0];c.insertBefore(f,c.firstChild);d=(f.sheet||f.styleSheet);b=d&&!d.disabled;c.removeChild(f);return b}),removeClass:function(d,c){var b=RegExp("(?:^|\\s+)"+c+"(?=\\s|$)","g");d.className=d.className.replace(b,"");return d},supports:function(d,c){var b=document.createElement("span").style;if(b[d]===undefined){return false}b[d]=c;return b[d]===c},textAlign:function(e,d,b,c){if(d.get("textAlign")=="right"){if(b>0){e=" "+e}}else{if(b<c-1){e+=" "}}return e},textDecoration:function(g,f){if(!f){f=this.getStyle(g)}var c={underline:null,overline:null,"line-through":null};for(var b=g;b.parentNode&&b.parentNode.nodeType==1;){var e=true;for(var d in c){if(!K(c,d)||c[d]){continue}if(f.get("textDecoration").indexOf(d)!=-1){c[d]=f.get("color")}e=false}if(e){break}f=this.getStyle(b=b.parentNode)}return c},textShadow:J(function(f){if(f=="none"){return null}var e=[],g={},b,c=0;var d=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(b=d.exec(f)){if(b[0]==","){e.push(g);g={};c=0}else{if(b[1]){g.color=b[1]}else{g[["offX","offY","blur"][c++]]=b[2]}}}e.push(g);return e}),textTransform:(function(){var b={uppercase:function(c){return c.toUpperCase()},lowercase:function(c){return c.toLowerCase()},capitalize:function(c){return c.replace(/\b./g,function(d){return d.toUpperCase()})}};return function(e,d){var c=b[d.get("textTransform")];return c?c(e):e}})(),whiteSpace:(function(){var b={inline:1,"inline-block":1,"run-in":1};return function(e,c,d){if(b[c.get("display")]){return e}if(!d.previousSibling){e=e.replace(/^\s+/,"")}if(!d.nextSibling){e=e.replace(/\s+$/,"")}return e}})()};N.ready=(function(){var b=!N.recognizesMedia("all"),e=false;var d=[],h=function(){b=true;for(var k;k=d.shift();k()){}};var i=G("link"),j=G("style");function c(k){return k.disabled||g(k.sheet,k.media||"screen")}function g(n,q){if(!N.recognizesMedia(q||"all")){return true}if(!n||n.disabled){return false}try{var r=n.cssRules,p;if(r){search:for(var m=0,k=r.length;p=r[m],m<k;++m){switch(p.type){case 2:break;case 3:if(!g(p.styleSheet,p.media.mediaText)){return false}break;default:break search}}}}catch(o){}return true}function f(){if(document.createStyleSheet){return true}var l,k;for(k=0;l=i[k];++k){if(l.rel.toLowerCase()=="stylesheet"&&!c(l)){return false}}for(k=0;l=j[k];++k){if(!c(l)){return false}}return true}X.ready(function(){if(!e){e=N.getStyle(document.body).isUsable()}if(b||(e&&f())){h()}else{setTimeout(arguments.callee,10)}});return function(k){if(b){k()}else{d.push(k)}}})();function S(c){var b=this.face=c.face;this.glyphs=c.glyphs;this.w=c.w;this.baseSize=parseInt(b["units-per-em"],10);this.family=b["font-family"].toLowerCase();this.weight=b["font-weight"];this.style=b["font-style"]||"normal";this.viewBox=(function(){var e=b.bbox.split(/\s+/);var d={minX:parseInt(e[0],10),minY:parseInt(e[1],10),maxX:parseInt(e[2],10),maxY:parseInt(e[3],10)};d.width=d.maxX-d.minX;d.height=d.maxY-d.minY;d.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return d})();this.ascent=-parseInt(b.ascent,10);this.descent=-parseInt(b.descent,10);this.height=-this.ascent+this.descent}function F(){var c={},b={oblique:"italic",italic:"oblique"};this.add=function(d){(c[d.style]||(c[d.style]={}))[d.weight]=d};this.get=function(h,i){var g=c[h]||c[b[h]]||c.normal||c.italic||c.oblique;if(!g){return null}i={normal:400,bold:700}[i]||parseInt(i,10);if(g[i]){return g[i]}var e={1:1,99:0}[i%100],k=[],f,d;if(e===undefined){e=i>400}if(i==500){i=400}for(var j in g){if(!K(g,j)){continue}j=parseInt(j,10);if(!f||j<f){f=j}if(!d||j>d){d=j}k.push(j)}if(i<f){i=f}if(i>d){i=d}k.sort(function(m,l){return(e?(m>i&&l>i)?m<l:m>l:(m<i&&l<i)?m>l:m<l)?-1:1});return g[k[0]]}}function R(){function d(f,g){if(f.contains){return f.contains(g)}return f.compareDocumentPosition(g)&16}function b(g){var f=g.relatedTarget;if(!f||d(this,f)){return}c(this)}function e(f){c(this)}function c(f){setTimeout(function(){M.replace(f,D.get(f).options,true)},10)}this.attach=function(f){if(f.onmouseenter===undefined){Q(f,"mouseover",b);Q(f,"mouseout",b)}else{Q(f,"mouseenter",e);Q(f,"mouseleave",e)}}}function U(){var c=[],d={};function b(h){var e=[],g;for(var f=0;g=h[f];++f){e[f]=c[d[g]]}return e}this.add=function(f,e){d[f]=c.push(e)-1};this.repeat=function(){var e=arguments.length?b(arguments):c,f;for(var g=0;f=e[g++];){M.replace(f[0],f[1],true)}}}function a(){var d={},b=0;function c(e){return e.cufid||(e.cufid=++b)}this.get=function(e){var f=c(e);return d[f]||(d[f]={})}}function A(b){var d={},c={};this.extend=function(e){for(var f in e){if(K(e,f)){d[f]=e[f]}}return this};this.get=function(e){return d[e]!=undefined?d[e]:b[e]};this.getSize=function(f,e){return c[f]||(c[f]=new N.Size(this.get(f),e))};this.isUsable=function(){return!!b}}function Q(c,b,d){if(c.addEventListener){c.addEventListener(b,d,false)}else{if(c.attachEvent){c.attachEvent("on"+b,function(){return d.call(c,window.event)})}}}function V(c,b){var d=D.get(c);if(d.options){return c}if(b.hover&&b.hoverables[c.nodeName.toLowerCase()]){B.attach(c)}d.options=b;return c}function J(b){var c={};return function(d){if(!K(c,d)){c[d]=b.apply(null,arguments)}return c[d]}}function C(g,f){if(!f){f=N.getStyle(g)}var c=N.quotedList(f.get("fontFamily").toLowerCase()),e;for(var d=0,b=c.length;d<b;++d){e=c[d];if(I[e]){return I[e].get(f.get("fontStyle"),f.get("fontWeight"))}}return null}function G(b){return document.getElementsByTagName(b)}function K(c,b){return c.hasOwnProperty(b)}function H(){var b={},d,f;for(var e=0,c=arguments.length;d=arguments[e],e<c;++e){for(f in d){if(K(d,f)){b[f]=d[f]}}}return b}function O(e,o,c,p,f,d){var n=p.separate;if(n=="none"){return Z[p.engine].apply(null,arguments)}var m=document.createDocumentFragment(),h;var j=o.split(P[n]),b=(n=="words");if(b&&T){if(/^\s/.test(o)){j.unshift("")}if(/\s$/.test(o)){j.push("")}}for(var k=0,g=j.length;k<g;++k){h=Z[p.engine](e,b?N.textAlign(j[k],c,k,g):j[k],c,p,f,d,k<g-1);if(h){m.appendChild(h)}}return m}function L(c,k){var d,b,e,h,g,j;for(e=V(c,k).firstChild;e;e=g){h=e.nodeType;g=e.nextSibling;j=false;if(h==1){if(!e.firstChild){continue}if(!/cufon/.test(e.className)){arguments.callee(e,k);continue}else{j=true}}else{if(h!=3){continue}}if(!b){b=N.getStyle(c).extend(k)}if(!d){d=C(c,b)}if(!d){continue}if(j){Z[k.engine](d,null,b,k,e,c);continue}var i=N.whiteSpace(e.data,b,e);if(i===""){continue}var f=O(d,i,b,k,e,c);if(f){e.parentNode.replaceChild(f,e)}else{e.parentNode.removeChild(e)}}}var T=" ".split(/\s+/).length==0;var D=new a();var B=new R();var Y=new U();var E=false;var Z={},I={},W={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(b){return jQuery(b)})||(window.dojo&&dojo.query)||(window.$$&&function(b){return $$(b)})||(window.$&&function(b){return $(b)})||(document.querySelectorAll&&function(b){return document.querySelectorAll(b)})||(window.Ext&&Ext.query)||G),separate:"words",textShadow:"none"};var P={words:/[^\S\u00a0]+/,characters:""};M.now=function(){X.ready();return M};M.refresh=function(){Y.repeat.apply(Y,arguments);return M};M.registerEngine=function(c,b){if(!b){return M}Z[c]=b;return M.set("engine",c)};M.registerFont=function(d){var b=new S(d),c=b.family;if(!I[c]){I[c]=new F()}I[c].add(b);return M.set("fontFamily",'"'+c+'"')};M.replace=function(d,c,b){c=H(W,c);if(!c.engine){return M}if(!E){N.addClass(X.root(),"cufon-active cufon-loading");N.ready(function(){N.removeClass(X.root(),"cufon-loading")});E=true}if(c.hover){c.forceHitArea=true}if(typeof c.textShadow=="string"){c.textShadow=N.textShadow(c.textShadow)}if(typeof c.color=="string"&&/^-/.test(c.color)){c.textGradient=N.gradient(c.color)}if(!b){Y.add(d,arguments)}if(d.nodeType||typeof d=="string"){d=[d]}N.ready(function(){for(var f=0,e=d.length;f<e;++f){var g=d[f];if(typeof g=="string"){M.replace(c.selector(g),c,true)}else{L(g,c)}}});return M};M.set=function(b,c){W[b]=c;return M};return M})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode((".cufon-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(E?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(A?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(AH,a,z,W,e,AI){var I=(a===null);if(I){a=e.alt}var c=AH.viewBox;var K=z.getSize("fontSize",AH.baseSize);var v=z.get("letterSpacing");v=(v=="normal")?0:K.convertFrom(parseInt(v,10));var d=0,w=0,u=0,Y=0;var b=W.textShadow,s=[];if(b){for(var AG=b.length;AG--;){var m=b[AG];var r=K.convertFrom(parseFloat(m.offX));var p=K.convertFrom(parseFloat(m.offY));s[AG]=[r,p];if(p<d){d=p}if(r>w){w=r}if(p>u){u=p}if(r<Y){Y=r}}}var AL=Cufon.CSS.textTransform(a,z).split(""),U;var J=AH.glyphs,X,M,AC;var G=0,Q,h=[];for(var AG=0,AE=0,AB=AL.length;AG<AB;++AG){X=J[U=AL[AG]]||AH.missingGlyph;if(!X){continue}if(M){G-=AC=M[U]||0;h[AE-1]-=AC}G+=Q=h[AE++]=~~(X.w||AH.w)+v;M=X.k}if(Q===undefined){return null}w+=c.width-Q;Y+=c.minX;var V,L;if(I){V=e;L=e.firstChild}else{V=document.createElement("span");V.className="cufon cufon-canvas";V.alt=a;L=document.createElement("canvas");V.appendChild(L);if(W.printable){var AD=document.createElement("span");AD.className="cufon-alt";AD.appendChild(document.createTextNode(a));V.appendChild(AD)}}var AM=V.style;var o=L.style;var H=K.convert(c.height);var AK=Math.ceil(H);var t=AK/H;var n=t*Cufon.CSS.fontStretch(z.get("fontStretch"));var q=G*n;var AA=Math.ceil(K.convert(q+w-Y));var O=Math.ceil(K.convert(c.height-d+u));L.width=AA;L.height=O;o.width=AA+"px";o.height=O+"px";d+=c.minY;o.top=Math.round(K.convert(d-AH.ascent))+"px";o.left=Math.round(K.convert(Y))+"px";var T=Math.ceil(K.convert(q))+"px";if(A){AM.width=T;AM.height=K.convert(AH.height)+"px"}else{AM.paddingLeft=T;AM.paddingBottom=(K.convert(AH.height)-1)+"px"}var AJ=L.getContext("2d"),f=H/c.height;AJ.scale(f,f*t);AJ.translate(-Y,-d);AJ.lineWidth=AH.face["underline-thickness"];AJ.save();function N(i,g){AJ.strokeStyle=g;AJ.beginPath();AJ.moveTo(0,i);AJ.lineTo(G,i);AJ.stroke()}var P=W.enableTextDecoration?Cufon.CSS.textDecoration(AI,z):{};if(P.underline){N(-AH.face["underline-position"],P.underline)}if(P.overline){N(AH.ascent,P.overline)}function AF(){AJ.scale(n,1);for(var x=0,k=0,g=AL.length;x<g;++x){var y=J[AL[x]]||AH.missingGlyph;if(!y){continue}if(y.d){AJ.beginPath();if(y.code){C(y.code,AJ)}else{y.code=D("m"+y.d,AJ)}AJ.fill()}AJ.translate(h[k++],0)}AJ.restore()}if(b){for(var AG=b.length;AG--;){var m=b[AG];AJ.save();AJ.fillStyle=m.color;AJ.translate.apply(AJ,s[AG]);AF()}}var S=W.textGradient;if(S){var Z=S.stops,R=AJ.createLinearGradient(0,c.minY,0,c.maxY);for(var AG=0,AB=Z.length;AG<AB;++AG){R.addColorStop.apply(R,Z[AG])}AJ.fillStyle=R}else{AJ.fillStyle=z.get("color")}AF();if(P["line-through"]){N(-AH.descent,P["line-through"])}return V}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;var F=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(F?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function C(G,H){return A(G,/(?:em|ex|%)$|^[a-z-]+$/i.test(H)?"1em":H)}function A(J,K){if(/px$/i.test(K)){return parseFloat(K)}var I=J.style.left,H=J.runtimeStyle.left;J.runtimeStyle.left=J.currentStyle.left;J.style.left=K.replace("%","em");var G=J.style.pixelLeft;J.style.left=I;J.runtimeStyle.left=H;return G}var E={};function D(L){var M=L.id;if(!E[M]){var J=L.stops,K=document.createElement("cvml:fill"),G=[];K.type="gradient";K.angle=180;K.focus="0";K.method="sigma";K.color=J[0][1];for(var I=1,H=J.length-1;I<H;++I){G.push(J[I][0]*100+"% "+J[I][1])}K.colors=G.join(",");K.color2=J[H][1];E[M]=K}return E[M]}return function(AI,f,AC,b,n,AJ,AA){var J=(f===null);if(J){f=n.alt}var h=AI.viewBox;var L=AC.computedFontSize||(AC.computedFontSize=new Cufon.CSS.Size(C(AJ,AC.get("fontSize"))+"px",AI.baseSize));var z=AC.computedLSpacing;if(z==undefined){z=AC.get("letterSpacing");AC.computedLSpacing=z=(z=="normal")?0:~~L.convertFrom(A(AJ,z))}var X,M;if(J){X=n;M=n.firstChild}else{X=document.createElement("span");X.className="cufon cufon-vml";X.alt=f;M=document.createElement("span");M.className="cufon-vml-canvas";X.appendChild(M);if(b.printable){var AF=document.createElement("span");AF.className="cufon-alt";AF.appendChild(document.createTextNode(f));X.appendChild(AF)}if(!AA){X.appendChild(document.createElement("cvml:shape"))}}var AO=X.style;var u=M.style;var H=L.convert(h.height),AL=Math.ceil(H);var y=AL/H;var s=y*Cufon.CSS.fontStretch(AC.get("fontStretch"));var x=h.minX,w=h.minY;u.height=AL;u.top=Math.round(L.convert(w-AI.ascent));u.left=Math.round(L.convert(x));AO.height=L.convert(AI.height)+"px";var Q=b.enableTextDecoration?Cufon.CSS.textDecoration(AJ,AC):{};var e=AC.get("color");var AN=Cufon.CSS.textTransform(f,AC).split(""),W;var K=AI.glyphs,c,N,AE;var G=0,o=[],v=0,S;var U,g=b.textShadow;for(var AH=0,AG=0,AD=AN.length;AH<AD;++AH){c=K[W=AN[AH]]||AI.missingGlyph;if(!c){continue}if(N){G-=AE=N[W]||0;o[AG-1]-=AE}G+=S=o[AG++]=~~(c.w||AI.w)+z;N=c.k}if(S===undefined){return null}var V=-x+G+(h.width-S);var AM=L.convert(V*s),AB=Math.round(AM);var r=V+","+h.height,I;var m="r"+r+"ns";var T=b.textGradient&&D(b.textGradient);for(AH=0,AG=0;AH<AD;++AH){c=K[AN[AH]]||AI.missingGlyph;if(!c){continue}if(J){U=M.childNodes[AG];while(U.firstChild){U.removeChild(U.firstChild)}}else{U=document.createElement("cvml:shape");M.appendChild(U)}U.stroked="f";U.coordsize=r;U.coordorigin=I=(x-v)+","+w;U.path=(c.d?"m"+c.d+"xe":"")+"m"+I+m;U.fillcolor=e;if(T){U.appendChild(T.cloneNode(false))}var AK=U.style;AK.width=AB;AK.height=AL;if(g){var P=g[0],O=g[1];var a=Cufon.CSS.color(P.color),Y;var q=document.createElement("cvml:shadow");q.on="t";q.color=a.color;q.offset=P.offX+","+P.offY;if(O){Y=Cufon.CSS.color(O.color);q.type="double";q.color2=Y.color;q.offset2=O.offX+","+O.offY}q.opacity=a.opacity||(Y&&Y.opacity)||1;U.appendChild(q)}v+=o[AG++]}var p=U.nextSibling,R,Z;if(b.forceHitArea){if(!p){p=document.createElement("cvml:rect");p.stroked="f";p.className="cufon-vml-cover";R=document.createElement("cvml:fill");R.opacity=0;p.appendChild(R);M.appendChild(p)}Z=p.style;Z.width=AB;Z.height=AL}else{if(p){M.removeChild(p)}}AO.width=Math.max(Math.ceil(L.convert(G*s)),0);if(F){var t=AC.computedYAdjust;if(t===undefined){var d=AC.get("lineHeight");if(d=="normal"){d="1em"}else{if(!isNaN(d)){d+="em"}}AC.computedYAdjust=t=0.5*(A(AJ,d)-parseFloat(AO.height))}if(t){AO.marginTop=Math.ceil(t)+"px";AO.marginBottom=t+"px"}}return X}})());;Cufon.registerFont({"w":187,"face":{"font-family":"Barmeno","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-39.5571 -333 328.75 90","underline-thickness":"18","underline-position":"-36","stemh":"23","stemv":"32","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":90},"!":{"d":"83,-19v-1,13,-11,21,-23,21v-31,-1,-29,-44,0,-45v13,0,24,11,23,24xm79,-247r-10,160v0,6,-2,6,-7,6v-10,0,-12,0,-12,-6r-9,-160v-1,-14,19,-4,30,-7v6,0,8,-1,8,7","w":105},"\"":{"d":"121,-252r-13,92r-7,0r-12,-93v0,-13,9,-17,16,-17v15,0,17,13,16,18xm53,-252r-12,92r-7,0r-12,-93v0,-13,9,-17,16,-17v15,0,16,13,15,18","w":142},"#":{"d":"203,-113r0,20r-63,0r-13,93r-22,0r13,-93r-36,0r-14,93r-20,0r12,-93r-60,0r0,-20r63,0r5,-35r-60,0r0,-20r63,0r11,-86r22,0r-12,86r36,0r12,-86r21,0r-11,86r60,0r0,20r-63,0r-5,35r61,0xm85,-113r36,0r5,-35r-37,0","w":209},"$":{"d":"145,-203v-19,-2,-19,-37,-49,-37r0,95v34,18,69,22,74,79v4,43,-44,71,-74,71r0,25v0,4,1,4,-3,4v-20,3,-6,-18,-10,-29v-19,5,-73,-24,-73,-53v0,-9,7,-15,14,-15v28,9,15,44,59,47r0,-102v-39,-19,-70,-34,-70,-76v0,-45,45,-66,70,-66v3,-11,-8,-31,9,-29v10,1,1,20,4,29v40,3,62,28,62,43v0,9,-6,14,-13,14xm96,-111r0,95v39,-3,44,-29,44,-42v0,-33,-30,-47,-44,-53xm83,-241v-19,2,-41,15,-41,42v0,27,21,38,41,48r0,-90","w":180},"%":{"d":"108,-176v0,45,-15,84,-48,84v-27,0,-48,-28,-48,-82v0,-50,17,-84,48,-84v29,0,48,33,48,82xm86,-176v0,-29,-4,-68,-26,-68v-22,0,-26,44,-26,67v0,26,4,70,26,70v24,0,26,-50,26,-69xm273,-81v0,45,-15,84,-48,84v-27,0,-48,-28,-48,-82v0,-50,17,-83,48,-83v29,0,48,32,48,81xm251,-81v0,-29,-4,-68,-26,-68v-22,0,-26,44,-26,67v0,27,4,71,26,71v24,0,26,-51,26,-70xm216,-251r-129,245v-2,10,-26,8,-16,-3r127,-239v1,-9,17,-9,18,-3","w":285},"&":{"d":"8,-57v0,-45,28,-60,69,-83v-23,-31,-29,-46,-29,-64v0,-32,23,-56,66,-56v40,0,58,24,58,50v0,36,-35,56,-58,69r38,47v13,-20,33,-42,56,-42v12,0,16,7,16,13v-5,26,-36,6,-51,30v-1,2,-9,11,-10,13v19,26,41,48,57,76v-6,7,-31,8,-40,-4r-34,-44v-14,24,-34,57,-75,57v-38,0,-63,-30,-63,-62xm135,-66r-47,-60v-23,14,-49,30,-49,59v0,21,15,45,42,45v27,0,42,-24,54,-44xm104,-155v14,-9,41,-25,41,-52v0,-19,-14,-34,-33,-34v-14,0,-34,10,-34,34v0,18,8,29,26,52","w":225},"\u2019":{"d":"30,-186v-18,-8,14,-22,11,-36v0,-14,-15,-16,-15,-29v0,-9,8,-16,17,-16v10,0,23,8,23,29v0,33,-29,52,-36,52","w":90},"(":{"d":"98,48v-104,-68,-106,-281,-2,-350v6,-1,8,10,3,13v-21,19,-47,106,-47,162v0,61,17,122,51,169v0,3,-2,6,-5,6","w":105},")":{"d":"3,42v63,-87,70,-247,-1,-338v0,-4,3,-6,6,-6v103,70,105,280,1,350v-3,0,-6,-2,-6,-6","w":105},"*":{"d":"56,-178v-21,0,5,-42,-10,-52v-8,-5,-38,47,-38,11v0,-23,30,-7,34,-25v-4,-17,-36,-5,-35,-27v0,-9,5,-12,9,-12v4,-2,28,33,31,25v15,-13,-14,-48,9,-53v3,0,9,1,9,13v0,11,-10,34,2,40v13,-1,23,-26,30,-25v6,0,8,6,8,11v3,20,-31,12,-35,28v-2,11,40,8,35,27v0,9,-4,11,-7,11v-7,4,-37,-47,-37,-14v0,11,11,42,-5,42","w":112},"+":{"d":"169,-116r0,22r-68,0r0,68r-22,0r0,-68r-68,0r0,-22r68,0r0,-67r22,0r0,67r68,0","w":180},",":{"d":"41,4v2,-9,-19,-16,-19,-29v0,-11,10,-17,20,-17v15,0,26,12,26,32v0,32,-33,66,-46,48v0,-7,20,-22,19,-34","w":90},"-":{"d":"21,-109v13,-10,44,-1,64,-4v12,-2,5,14,7,22v-13,10,-45,1,-65,4v-10,1,-5,-14,-6,-22","w":112},".":{"d":"67,-19v0,13,-10,21,-22,21v-12,0,-23,-8,-23,-22v1,-31,46,-27,45,1","w":90},"\/":{"d":"135,-303v2,1,24,4,18,12r-127,336v-4,9,-28,0,-21,-9","w":157},"0":{"d":"174,-129v1,72,-25,134,-77,134v-43,0,-76,-45,-76,-131v0,-80,28,-134,77,-134v47,0,75,55,76,131xm55,-131v1,50,2,115,42,115v40,0,43,-81,43,-113v0,-37,-5,-111,-43,-111v-37,0,-42,73,-42,109","w":195},"1":{"d":"94,-6r0,-201v-38,18,-65,21,-67,21v-19,-7,-13,-16,7,-21v55,-14,59,-36,84,-50v7,0,7,7,7,10r0,242v0,10,-16,3,-24,5v-5,0,-7,-1,-7,-6","w":195},"2":{"d":"130,-116r-68,86r99,0v6,0,8,1,8,7v0,12,4,23,-7,23r-135,0v-6,2,-12,-7,-4,-13v33,-52,104,-107,110,-173v5,-55,-74,-63,-84,-6v-2,9,-4,16,-12,16v-1,0,-10,0,-10,-13v0,-31,24,-71,72,-71v40,0,67,30,67,66v0,32,-20,57,-36,78","w":195},"3":{"d":"33,-62v27,8,19,47,60,46v28,0,45,-25,45,-49v0,-6,0,-48,-58,-61v-19,-4,-17,-13,-5,-17v15,-6,50,-19,50,-53v0,-17,-13,-38,-38,-38v-28,0,-36,23,-40,33v-1,15,-21,18,-21,2v0,-27,26,-61,69,-61v35,0,62,24,62,56v0,26,-16,44,-40,58v48,22,53,57,53,74v0,28,-17,77,-80,77v-49,0,-73,-33,-73,-50v0,-10,8,-17,16,-17","w":195},"4":{"d":"168,-65v-1,12,-19,4,-29,6r0,55v0,11,-16,4,-25,6v-5,0,-6,-1,-6,-6r0,-55r-87,0v-7,0,-12,-9,-3,-17r99,-173v4,-15,26,-6,22,6r0,164v14,3,32,-10,29,14xm42,-79r66,0r0,-124","w":195},"5":{"d":"142,-68v0,-55,-61,-73,-105,-46v-6,0,-5,-6,-5,-12r9,-120v1,-7,2,-9,9,-9r102,0v12,-2,7,15,8,25v0,4,-2,6,-8,6r-90,0r-7,81v51,-25,119,0,119,68v0,48,-33,80,-80,80v-43,0,-71,-27,-71,-49v0,-12,8,-16,14,-16v25,7,19,43,58,44v26,0,47,-20,47,-52","w":195},"6":{"d":"56,-121v34,-34,119,-27,119,50v0,41,-26,76,-73,76v-100,0,-96,-160,-36,-217v40,-38,81,-48,88,-48v16,0,9,16,0,17v-17,6,-26,10,-41,21v-46,35,-53,79,-57,101xm54,-102v-2,70,27,87,49,87v27,0,41,-23,41,-49v0,-20,-11,-55,-48,-55v-21,0,-34,11,-42,17","w":195},"7":{"d":"51,-4r94,-221r-112,0v-11,1,-4,-17,-6,-25v0,-3,2,-4,6,-4r134,0v8,-1,11,6,7,15v-32,72,-73,182,-81,225v-4,22,-17,11,-35,14v-3,0,-7,0,-7,-4","w":195},"8":{"d":"100,-260v54,8,54,15,63,55v0,34,-26,52,-46,65v29,19,57,36,57,76v0,39,-33,69,-79,69v-48,0,-74,-29,-74,-65v0,-36,26,-54,54,-73v-16,-11,-44,-30,-44,-67v0,-36,44,-64,69,-60xm91,-122v-26,20,-40,30,-40,56v0,24,14,50,47,50v54,0,61,-63,15,-91v-3,-2,-18,-12,-22,-15xm102,-151v8,-5,34,-20,34,-50v0,-21,-15,-39,-39,-39v-20,0,-37,13,-37,35v0,26,21,42,42,54","w":195},"9":{"d":"138,-135v-39,37,-118,29,-117,-50v0,-42,27,-75,73,-75v50,0,78,38,78,100v0,124,-104,165,-132,165v-3,0,-9,-1,-9,-7v0,-6,4,-7,16,-11v56,-19,87,-73,91,-122xm139,-153v1,-31,-6,-87,-46,-87v-24,0,-41,21,-41,50v0,26,14,54,45,54v22,0,37,-13,42,-17","w":195},":":{"d":"83,-19v0,13,-11,21,-23,21v-12,0,-23,-8,-23,-22v1,-31,46,-27,46,1xm83,-113v0,13,-11,21,-23,21v-11,0,-23,-8,-23,-22v1,-31,46,-27,46,1","w":105},";":{"d":"56,4v2,-9,-19,-16,-19,-29v0,-11,10,-17,20,-17v14,0,25,12,25,32v0,32,-31,65,-45,49v0,-8,20,-22,19,-35xm83,-113v-1,28,-46,28,-46,-1v1,-31,47,-27,46,1","w":105},"<":{"d":"180,-48r0,24r-180,-91r0,-25r180,-90r0,23r-156,80","w":180},"=":{"d":"180,-84r0,22r-180,0r0,-22r180,0xm180,-147r0,21r-180,0r0,-21r180,0","w":180},">":{"d":"180,-115r-180,91r0,-24r156,-79r-156,-80r0,-23r180,90r0,25","w":180},"?":{"d":"137,-210v0,53,-63,54,-53,117v3,16,-17,16,-18,5r-4,-53v4,-28,42,-30,42,-64v0,-14,-8,-34,-31,-34v-38,1,-19,39,-45,44v-6,0,-16,-4,-16,-17v0,-22,20,-48,64,-48v40,0,61,25,61,50xm97,-19v-1,13,-11,21,-23,21v-30,-1,-27,-45,1,-45v13,0,23,11,22,24","w":150},"@":{"d":"163,29v41,0,101,-27,121,-53r10,12v-30,28,-65,57,-131,57v-64,0,-139,-37,-139,-129v0,-88,70,-172,166,-172v65,0,108,39,108,103v0,65,-40,127,-83,127v-27,0,-27,-14,-28,-33v-21,35,-96,61,-100,-25v-4,-76,86,-143,118,-67r6,-26r21,0v-7,33,-21,83,-22,115v0,17,10,19,13,19v21,0,58,-48,58,-110v0,-52,-33,-87,-92,-87v-81,0,-148,72,-148,157v0,69,51,112,122,112xm197,-125v1,-32,-18,-41,-31,-41v-35,0,-55,48,-55,81v0,35,23,39,32,39v28,0,53,-37,54,-79","w":322},"A":{"d":"179,-5r-36,-95r-77,0r-35,94v-2,11,-23,7,-31,3r95,-246v2,-8,23,-9,27,0r95,246v-5,5,-32,6,-38,-2xm73,-121r62,0r-31,-86","w":217},"B":{"d":"83,2v-32,0,-59,7,-59,-16r0,-228v1,-21,37,-11,60,-14v41,-5,96,19,93,61v-3,34,-26,49,-47,59v39,7,64,34,64,69v0,69,-84,69,-111,69xm59,-234r0,91v11,0,20,1,30,0v46,-4,52,-33,52,-46v0,-57,-47,-45,-82,-45xm157,-68v-3,-54,-52,-59,-98,-55r0,102v44,6,100,-1,98,-47","w":209},"C":{"d":"195,-193v-27,0,-23,-45,-70,-45v-41,0,-75,39,-75,101v0,67,36,116,87,116v23,0,45,-14,63,-22v4,0,8,4,8,9v0,13,-31,39,-78,39v-78,0,-117,-63,-117,-134v0,-61,32,-131,115,-131v53,0,84,32,84,51v0,10,-8,16,-17,16","w":217},"D":{"d":"78,3v-17,0,-54,4,-54,-12r0,-231v2,-24,34,-17,62,-17v105,0,141,71,141,130v0,103,-67,130,-149,130xm189,-128v0,-68,-54,-121,-130,-105r0,212v84,9,130,-37,130,-107","w":240},"E":{"d":"148,-125v-23,8,-61,1,-89,3r0,99r97,0v10,-2,6,10,7,17v0,5,-3,6,-7,6r-125,0v-5,0,-7,0,-7,-6r0,-240v0,-6,1,-8,7,-8r125,0v10,-2,6,11,7,19v0,3,-2,4,-7,4r-97,0r0,87r82,0v10,-2,6,11,7,19","w":172},"F":{"d":"139,-122r-80,0r0,115v0,14,-18,4,-28,7v-6,0,-7,0,-7,-6r0,-240v0,-6,1,-9,6,-9r124,0v10,-1,6,11,7,19v0,3,-1,5,-7,5r-95,0r0,87r80,0v10,-2,6,10,7,18v0,4,-3,4,-7,4","w":164},"G":{"d":"141,-18v23,0,47,-7,47,-34r0,-53r-49,0v-10,2,-6,-10,-7,-18v21,-8,57,-1,84,-3v6,0,6,2,6,7v-2,30,6,75,-5,96v-12,15,-40,28,-79,28v-87,0,-125,-62,-125,-132v0,-78,47,-133,119,-133v60,0,91,36,91,54v0,11,-9,17,-17,17v-27,-8,-25,-49,-75,-48v-40,0,-80,33,-80,104v0,64,33,115,90,115","w":240},"H":{"d":"166,-7r0,-115r-107,0r0,115v1,13,-18,5,-28,7v-5,0,-7,-1,-7,-7r0,-241v0,-11,19,-4,29,-6v5,0,6,0,6,6r0,104r107,0r0,-103v-1,-13,19,-5,28,-7v5,0,7,0,7,6r0,242v0,12,-19,4,-29,6v-6,0,-6,-1,-6,-7","w":225},"I":{"d":"59,-248r0,241v0,13,-19,5,-29,7v-4,0,-7,-1,-7,-7r0,-240v0,-13,19,-5,29,-7v5,0,7,0,7,6","w":82},"J":{"d":"59,-247r0,208v0,21,-1,54,-26,87v-24,32,-56,38,-61,38v-13,2,-16,-16,-4,-18v38,-8,55,-69,55,-97r0,-219v0,-12,20,-4,29,-6v5,0,7,1,7,7","w":82},"K":{"d":"178,-250v-25,38,-57,72,-84,108r100,138v-6,7,-35,7,-44,-1r-92,-129r0,129v-1,10,-18,3,-27,5v-5,0,-7,-1,-7,-7r0,-240v0,-13,17,-5,27,-7v6,0,7,1,7,7r0,107r86,-107v4,-10,26,-10,34,-3","w":195},"L":{"d":"59,-248r0,224r95,0v10,-1,5,13,6,21v-1,3,-3,3,-6,3r-124,0v-5,0,-6,-2,-6,-6r0,-242v0,-14,19,-4,29,-7v5,0,6,2,6,7","w":164},"M":{"d":"227,-7r0,-194r-79,194v-4,13,-12,10,-16,0r-81,-194r0,195v0,12,-15,4,-24,6v-3,-1,-3,-2,-3,-7r0,-240v0,-13,21,-5,31,-7v5,0,6,1,8,7r80,187r77,-187v3,-13,21,-5,34,-7v5,0,7,0,7,6r0,242v1,11,-18,4,-27,6v-6,0,-7,-1,-7,-7","w":285},"N":{"d":"60,-249r136,188r0,-186v-2,-12,14,-5,22,-7v5,0,6,1,6,6r0,242v0,10,-22,9,-28,1r-144,-199r0,197v2,12,-14,5,-22,7v-5,0,-6,-2,-6,-7r0,-240v0,-12,30,-10,36,-2","w":247},"O":{"d":"242,-135v4,78,-45,140,-114,140v-66,0,-115,-54,-115,-132v0,-64,36,-133,116,-133v73,0,110,62,113,125xm127,-238v-114,3,-91,219,1,219v21,0,44,-10,59,-34v17,-27,18,-61,18,-81v-2,-85,-51,-104,-78,-104","w":254},"P":{"d":"87,-257v38,0,98,14,95,73v0,10,-2,32,-21,50v-22,21,-60,29,-102,25r0,103v0,12,-19,3,-28,6v-5,0,-7,-1,-7,-6r0,-236v-1,-18,34,-15,63,-15xm59,-234r0,104v37,3,81,4,86,-54v-7,-61,-53,-55,-86,-50"},"Q":{"d":"249,-127v1,69,-39,113,-88,129v9,31,39,58,88,67v14,3,19,12,3,15v-54,-6,-109,-26,-134,-80v-68,-7,-105,-62,-105,-130v0,-81,48,-134,118,-134v74,0,118,59,118,133xm131,-17v79,1,106,-127,59,-190v-52,-70,-140,-19,-140,78v0,77,41,112,81,112","w":262},"R":{"d":"86,-257v43,3,91,4,91,68v0,34,-23,59,-63,69r75,116v-6,7,-35,8,-42,-2r-60,-96v-3,-5,-9,-13,-19,-13v-10,0,-9,9,-9,13r0,94v1,14,-17,6,-28,8v-5,0,-7,0,-7,-6r0,-234v0,-25,36,-12,62,-17xm59,-235r0,104v47,4,82,-12,82,-53v0,-63,-47,-54,-82,-51","w":195},"S":{"d":"148,-199v-26,-6,-21,-40,-58,-39v-24,0,-40,18,-40,39v-1,34,41,44,68,59v18,10,56,27,56,73v0,42,-33,72,-80,72v-58,0,-80,-39,-80,-54v0,-12,9,-18,17,-18v30,8,17,49,65,50v27,0,44,-19,44,-42v0,-75,-123,-41,-123,-133v0,-39,29,-68,75,-68v43,0,71,26,71,44v0,9,-6,17,-15,17"},"T":{"d":"171,-231r-63,0r0,224v1,12,-18,7,-28,7v-6,0,-8,0,-8,-7r0,-224r-63,0v-5,0,-6,-2,-6,-7v0,-14,0,-16,6,-16r162,0v6,0,6,1,6,16v0,5,-1,7,-6,7","w":180},"U":{"d":"109,-21v31,0,53,-24,53,-59r0,-168v0,-5,0,-7,5,-7v11,2,23,-4,23,7r0,172v2,48,-35,81,-84,81v-53,0,-72,-26,-76,-37v-22,-60,-4,-142,-9,-216v-1,-14,19,-4,29,-7v6,0,7,1,7,7r0,161v0,17,0,66,52,66","w":209},"V":{"d":"39,-248r67,189r66,-189v2,-11,17,-4,27,-6v5,2,3,4,2,9r-87,240v-2,9,-23,6,-22,0r-92,-245v4,-9,20,-2,30,-4v6,0,7,0,9,6","w":202},"W":{"d":"215,-5r-63,-179r-58,178v-1,10,-24,8,-23,0r-71,-243v2,-10,19,-5,29,-5v6,0,7,1,8,7r49,183r60,-182v2,-12,15,-13,19,-2r61,184r51,-183v0,-11,24,-10,30,-3r-71,244v0,9,-19,10,-21,1","w":307},"X":{"d":"156,-6r-61,-102r-63,101v-5,12,-14,5,-27,7v-5,1,-6,-6,-2,-9r77,-125r-68,-116v4,-7,33,-8,38,1r50,83r55,-87v1,-1,3,-1,21,-1v1,0,5,-1,5,3v-20,39,-45,73,-67,111r81,136v-5,7,-33,8,-39,-2","w":195},"Y":{"d":"195,-251v-22,49,-55,90,-80,137r0,108v-1,13,-21,3,-31,6v-5,0,-6,-2,-6,-6r0,-110r-78,-135v6,-5,35,-7,40,2r62,106r61,-105v4,-11,23,-7,32,-3","w":195},"Z":{"d":"22,-231v-7,-3,-6,1,-6,-17v0,-5,1,-6,7,-6r142,0v9,0,12,2,7,10r-118,221r112,0v11,-2,4,13,6,20v0,2,-1,3,-5,3r-153,0v-8,0,-10,-1,-5,-10r117,-221r-104,0","w":180},"[":{"d":"52,-283r0,312v13,2,39,-6,42,6v0,9,-1,10,-7,10r-56,0v-6,0,-7,-1,-7,-6r0,-332v0,-5,1,-7,7,-7r56,0v5,0,7,1,7,6v1,23,-27,6,-42,11","w":97},"\\":{"d":"4,-294v2,-5,22,-16,22,-3r128,337v0,4,-15,13,-23,5","w":157},"]":{"d":"45,29r0,-313r-36,0v-6,-1,-8,-19,1,-16r57,0v6,0,6,2,6,7r0,332v0,5,-1,6,-7,6r-56,0v-5,0,-6,0,-6,-5v-4,-23,26,-6,41,-11","w":97},"^":{"d":"144,-254r62,128r-27,0r-47,-98r-48,98r-28,0r65,-128r23,0","w":262},"_":{"d":"184,27r0,18r-188,0r0,-18r188,0","w":180},"\u2018":{"d":"59,-267v20,8,-11,22,-10,36v1,14,15,16,15,29v0,9,-8,16,-17,16v-53,0,-2,-87,12,-81","w":90},"a":{"d":"81,-172v-36,0,-22,33,-47,39v-5,0,-14,-3,-14,-15v0,-22,26,-43,65,-43v53,0,54,39,54,58r0,95v5,36,-37,42,-66,42v-10,0,-63,0,-63,-49v0,-41,40,-53,98,-70v-1,-26,7,-57,-27,-57xm79,-15v51,0,21,-46,29,-83v-39,13,-66,21,-66,49v0,3,0,34,37,34","w":157},"b":{"d":"83,4v-32,0,-63,-9,-63,-53r0,-219v-1,-12,15,-7,24,-7v7,0,8,1,8,7r0,101v8,-7,26,-24,56,-24v38,0,68,31,68,89v0,76,-45,106,-93,106xm52,-147r0,94v0,9,1,36,35,36v30,0,57,-24,57,-76v0,-37,-14,-74,-50,-74v-13,0,-27,6,-42,20"},"c":{"d":"139,-130v-25,-4,-21,-40,-52,-40v-25,0,-46,24,-46,67v0,53,27,79,54,79v34,-1,37,-30,53,-39v1,0,8,0,8,8v0,15,-19,59,-69,59v-48,0,-75,-41,-75,-95v0,-58,29,-100,80,-100v41,0,61,32,61,46v0,12,-9,15,-14,15","w":164},"d":{"d":"168,-38v3,35,-47,42,-72,42v-51,0,-84,-32,-84,-91v0,-64,62,-132,123,-92r0,-88v-2,-13,16,-6,26,-8v5,0,7,1,7,7r0,230xm135,-46r0,-113v-37,-32,-91,2,-91,63v0,50,24,78,59,78v31,0,32,-18,32,-28"},"e":{"d":"149,-115r-110,16v3,81,74,95,105,42v5,-9,7,-10,11,-10v2,0,7,0,7,8v0,9,-16,63,-72,63v-22,0,-51,-8,-67,-41v-17,-34,-13,-87,1,-114v4,-8,22,-40,66,-40v57,0,69,49,69,64v0,10,-6,11,-10,12xm39,-117r86,-13v-2,-23,-18,-40,-39,-40v-29,0,-43,22,-47,53","w":172},"f":{"d":"30,-186v0,-38,17,-92,56,-92v18,0,23,25,6,26v-37,-12,-40,43,-30,66v14,4,41,-10,37,11v-2,11,-25,2,-36,5r0,162v0,13,-16,7,-26,8v-6,0,-7,-2,-7,-8r0,-162v-9,-2,-26,5,-27,-5v-2,-19,15,-8,27,-11","w":97},"g":{"d":"82,-191v31,0,54,15,85,5v5,2,8,13,1,15r-31,7v5,7,12,17,12,39v0,52,-45,68,-86,58v-24,19,-19,39,22,36v42,7,96,-9,96,46v0,24,-26,70,-105,70v-39,0,-69,-15,-70,-42v0,-19,17,-36,38,-49v-10,-3,-27,-7,-27,-24v0,-15,22,-34,32,-43v-13,-3,-32,-32,-32,-56v0,-36,27,-62,65,-62xm60,-3v-12,10,-22,19,-22,34v0,51,118,35,114,-8v-3,-38,-57,-19,-92,-26xm119,-123v0,-34,-11,-49,-37,-51v-16,0,-36,10,-36,40v0,32,21,50,40,50v16,0,33,-10,33,-39","w":172},"h":{"d":"134,-7v-7,-61,23,-158,-37,-161v-17,0,-31,9,-43,20r0,139v2,14,-15,8,-26,9v-5,0,-7,-3,-7,-8r0,-261v0,-10,17,-5,26,-6v5,0,7,1,7,6r0,101v6,-6,23,-23,55,-23v56,0,57,48,57,63r0,119v2,13,-15,8,-25,9v-6,0,-7,0,-7,-7"},"i":{"d":"53,-180r0,174v0,12,-17,4,-26,6v-5,0,-6,-1,-6,-6r0,-174v-1,-11,17,-4,25,-6v6,0,7,0,7,6xm57,-238v0,10,-8,19,-20,19v-12,0,-19,-8,-19,-18v0,-11,8,-19,20,-19v10,0,19,7,19,18","w":74},"j":{"d":"55,-179v-3,72,10,151,-13,206v-19,45,-52,59,-59,59v-9,0,-10,-13,-3,-15v66,-44,42,-153,42,-250v0,-12,17,-5,27,-7v5,0,6,2,6,7xm58,-238v0,10,-6,19,-19,19v-13,0,-20,-8,-20,-18v0,-11,9,-19,20,-19v12,0,19,8,19,18","w":74},"k":{"d":"158,-183v-20,29,-48,53,-70,80r79,99v-6,8,-32,8,-40,-1r-74,-92r0,92v0,10,-18,3,-26,5v-5,0,-6,-1,-6,-6r0,-264v1,-10,17,-3,25,-5v4,0,7,0,7,5r0,167r71,-77v3,-11,40,-7,34,-3","w":164},"l":{"d":"22,-6r0,-264v0,-10,17,-3,25,-5v5,0,7,0,7,5r0,264v0,12,-17,4,-26,6v-6,0,-6,0,-6,-6","w":74},"m":{"d":"190,-171v-26,0,-36,18,-35,38r0,126v1,12,-16,5,-25,7v-5,0,-7,0,-7,-6r0,-121v0,-13,-1,-45,-35,-45v-35,0,-35,27,-35,39r0,126v1,12,-17,5,-26,7v-5,0,-6,-1,-6,-7r0,-145v-7,-54,113,-43,120,-17v8,-8,20,-22,57,-22v59,0,59,39,59,58r0,126v1,12,-16,6,-26,7v-5,0,-6,-1,-6,-7r0,-117v0,-19,-1,-47,-35,-47","w":277},"n":{"d":"21,-152v-9,-35,70,-40,77,-39v68,0,68,39,68,60r0,124v2,11,-15,6,-24,7v-6,0,-8,-1,-8,-7r0,-121v0,-17,0,-44,-42,-44v-39,0,-39,23,-39,32r0,133v1,12,-16,5,-25,7v-5,0,-7,-1,-7,-7r0,-145"},"o":{"d":"94,-191v112,6,107,193,0,195v-110,0,-107,-196,0,-195xm142,-97v-2,-50,-26,-74,-50,-74v-28,0,-47,30,-47,73v0,50,25,80,51,80v27,0,48,-29,46,-79"},"p":{"d":"21,-140v-2,-46,26,-51,71,-51v67,0,84,50,84,89v0,45,-25,106,-84,106v-21,0,-32,-8,-39,-13r0,87v1,11,-15,6,-24,7v-5,0,-8,-1,-8,-7r0,-218xm53,-139r0,109v45,29,90,3,90,-66v0,-43,-21,-75,-58,-75v-31,0,-32,19,-32,32"},"q":{"d":"103,-191v43,0,63,12,63,48r0,221v1,11,-16,6,-25,7v-5,0,-7,-1,-7,-7r0,-96v-10,9,-25,22,-51,22v-46,0,-71,-42,-71,-88v0,-47,27,-107,91,-107xm134,-133v7,-25,-21,-41,-32,-38v-37,0,-58,39,-58,80v0,56,45,96,90,52r0,-94"},"r":{"d":"111,-154v-13,1,-18,-19,-35,-19v-21,0,-22,16,-22,25r0,142v-1,12,-16,4,-25,6v-5,0,-7,0,-7,-6r0,-151v0,-33,33,-34,66,-34v18,0,37,4,37,21v0,8,-5,16,-14,16","w":119},"s":{"d":"117,-141v-23,-3,-14,-31,-44,-31v-19,0,-27,16,-27,26v11,53,86,30,90,96v2,31,-36,54,-60,54v-48,0,-63,-30,-63,-40v0,-10,8,-16,15,-16v24,7,16,36,50,36v19,0,28,-15,28,-28v0,-51,-89,-40,-89,-97v0,-26,18,-50,57,-50v41,0,56,25,56,37v0,9,-6,13,-13,13","w":150},"t":{"d":"73,4v-73,0,-40,-106,-47,-175v-8,-2,-25,5,-24,-5v-3,-18,13,-7,24,-10v-5,-30,10,-42,28,-53v10,9,1,37,4,53r32,0v4,0,5,0,5,5v2,21,-24,5,-37,10r0,117v0,29,8,40,36,39v6,0,7,5,7,7v0,9,-20,12,-28,12","w":97},"u":{"d":"87,4v-100,8,-60,-103,-68,-184v0,-11,16,-4,25,-6v5,0,7,0,7,6r0,120v0,17,1,43,41,43v37,0,37,-22,37,-39r0,-123v-2,-11,15,-6,24,-7v6,0,8,1,8,6r0,135v-2,44,-17,45,-74,49","w":180},"v":{"d":"35,-181r49,137r46,-137v1,-9,23,-7,27,-2v-19,61,-44,118,-64,178v-2,8,-23,9,-26,-1r-67,-176v4,-7,29,-7,35,1","w":157},"w":{"d":"152,-5r-36,-116r-35,116v-2,8,-22,9,-25,0r-56,-177v3,-7,31,-9,34,2r39,133r41,-138v2,-1,14,-4,13,4r41,136r38,-135v0,-9,32,-7,27,-3r-56,178v0,8,-22,8,-25,0","w":232},"x":{"d":"113,-5r-39,-66r-44,66v-3,8,-23,7,-30,2v18,-31,40,-60,59,-90r-53,-90v6,-5,30,-6,36,2r37,60v14,-21,26,-45,42,-64v4,-1,31,-6,22,8r-50,78r57,96v-6,5,-31,7,-37,-2","w":150},"y":{"d":"165,-183r-75,209v-10,27,-26,60,-65,60v-4,0,-25,0,-25,-17v0,-17,21,-16,35,-12v15,0,26,-12,40,-57r-72,-182v3,-9,18,-2,28,-4v6,0,6,0,8,6r51,139r46,-139v2,-10,22,-8,29,-3","w":164},"z":{"d":"20,-166v-9,1,-6,-7,-7,-15v0,-5,2,-5,7,-5r107,0v5,0,11,3,4,10r-82,156r80,0v6,-2,5,9,5,15v0,5,-2,5,-6,5r-115,0v-5,-1,-7,-3,-3,-10r83,-156r-73,0","w":142},"{":{"d":"51,-190v-2,-61,-2,-112,57,-111v7,0,8,1,8,4v0,8,-1,9,-7,10v-63,3,2,154,-59,161v61,-1,-5,151,59,159v5,1,7,0,7,4v0,8,0,9,-8,9v-7,0,-30,-1,-44,-16v-18,-18,-12,-58,-13,-94v0,-31,-1,-54,-25,-56v-5,-1,-6,-17,0,-14v26,-2,25,-30,25,-56","w":127},"|":{"d":"52,-270r0,360r-21,0r0,-360r21,0","w":82},"}":{"d":"20,-301v59,0,56,52,56,111v0,26,0,54,26,56v5,2,4,17,0,14v-61,9,18,174,-82,166v-8,0,-8,-1,-8,-9v0,-4,1,-3,6,-4v63,-3,0,-154,59,-161v-35,-3,-28,-55,-29,-105v0,-32,-1,-50,-30,-54v-6,-1,-6,-2,-6,-10v0,-3,1,-4,8,-4","w":127},"~":{"d":"93,-131v21,0,62,26,75,26v18,0,30,-17,35,-23r11,20v-12,15,-26,27,-46,27v-19,0,-59,-29,-75,-25v-14,0,-19,7,-33,24r-12,-20v6,-9,20,-29,45,-29","w":262},"\u00a1":{"d":"22,-235v1,-13,11,-21,23,-21v30,1,30,44,0,44v-13,0,-24,-10,-23,-23xm26,-8r10,-159v0,-6,2,-7,7,-7v10,0,12,1,12,7r9,159v1,15,-19,5,-30,8v-5,0,-8,0,-8,-8","w":105},"\u00a2":{"d":"142,-132v-22,-4,-16,-41,-48,-40r0,150v25,-1,36,-14,43,-28v6,-13,7,-14,11,-14v3,0,7,1,7,8v4,26,-43,67,-61,60v-3,10,7,32,-8,29v-9,-2,-2,-20,-4,-29v-46,-5,-70,-45,-70,-95v0,-52,27,-95,70,-100v2,-9,-5,-27,4,-29v17,-3,4,19,8,29v40,1,62,32,62,45v0,9,-8,14,-14,14xm82,-172v-40,8,-54,70,-34,114v12,27,28,32,34,34r0,-148","w":164},"\u00a3":{"d":"98,-40v-4,23,-23,46,-49,45v-26,0,-41,-21,-41,-43v0,-39,45,-65,77,-45v-1,-17,-7,-34,-13,-49r-42,0v-6,0,-6,-1,-6,-10v0,-5,1,-5,6,-5r35,0v-4,-8,-15,-28,-15,-51v0,-37,29,-62,70,-62v61,0,70,49,70,57v0,29,-32,17,-33,-5v-5,-20,-18,-33,-38,-33v-44,9,-40,42,-24,94r55,0v5,0,7,0,7,5v0,9,0,10,-7,10r-52,0v6,19,8,39,6,60v19,12,46,47,67,47v17,0,16,-15,28,-17v1,0,7,-1,7,7v0,15,-13,40,-41,40v-36,0,-48,-27,-67,-45xm85,-54v-14,-20,-58,-21,-56,10v9,45,52,24,56,-10","w":209},"\u00a5":{"d":"115,-84r0,78v-1,13,-21,3,-31,6v-5,0,-6,-1,-6,-6r0,-78r-56,0v-5,0,-6,-1,-6,-6v0,-11,0,-13,6,-13r56,0v1,-13,-3,-20,-7,-27r-49,0v-5,0,-6,-1,-6,-6v-3,-26,27,-8,43,-13r-59,-101v5,-7,35,-8,40,1r62,106r61,-105v3,-10,25,-8,32,-2v-17,36,-41,67,-60,101r34,0v5,0,6,0,6,5v4,29,-33,8,-51,14v-4,8,-11,13,-9,27r54,0v5,0,6,1,6,6v0,12,1,13,-5,13r-55,0","w":195},"\u0192":{"d":"55,-166v-1,-31,24,-97,62,-92v8,0,15,4,15,13v0,11,-10,16,-23,14v-33,6,-26,46,-22,65v12,2,33,-6,37,5v2,22,-22,6,-37,11v-7,81,-14,212,-81,219v-24,2,-29,-29,-7,-31v15,3,25,14,32,-8v11,-34,18,-130,24,-180v-8,-2,-25,4,-27,-4v-2,-21,14,-9,27,-12","w":142},"\u00a7":{"d":"56,-212v2,55,96,37,98,101v0,22,-14,40,-33,55v37,18,36,106,-33,106v-46,0,-67,-33,-67,-51v0,-12,7,-17,15,-17v11,0,14,7,21,24v9,23,29,23,32,23v13,0,28,-8,28,-29v0,-63,-106,-38,-106,-111v0,-30,25,-47,36,-54v-32,-24,-24,-95,37,-95v41,0,59,28,59,44v0,13,-9,16,-14,16v-24,-6,-14,-40,-46,-40v-18,0,-27,14,-27,28xm105,-65v57,-47,-8,-74,-45,-91v-35,25,-21,65,11,76v5,2,29,12,34,15","w":164},"\u00a4":{"d":"220,-205r-27,26v8,10,19,26,19,57v0,30,-12,47,-19,56r26,27r-16,17r-27,-27v-20,24,-91,24,-112,0r-27,26r-16,-16r27,-27v-10,-15,-20,-28,-20,-56v0,-30,13,-48,20,-57r-27,-26r16,-16r27,26v18,-24,96,-24,113,0r26,-26xm190,-122v0,-44,-33,-71,-69,-71v-38,0,-71,27,-71,71v0,39,30,71,71,71v39,0,69,-29,69,-71","w":240},"'":{"d":"53,-252r-12,92r-7,0r-12,-93v0,-13,9,-17,16,-17v15,0,16,13,15,18","w":74},"\u201c":{"d":"112,-267v20,8,-12,21,-10,36v2,13,14,15,14,29v0,9,-7,16,-16,16v-53,0,-2,-87,12,-81xm59,-267v18,9,-13,22,-11,36v2,13,15,15,15,29v0,9,-7,16,-17,16v-52,0,-1,-88,13,-81","w":142},"\u00ab":{"d":"100,-118v-13,27,17,45,22,69v-1,9,-11,6,-14,0v-13,-23,-31,-39,-44,-56v8,-16,20,-19,39,-48v10,-16,12,-17,18,-6v-4,16,-15,27,-21,41xm46,-118v-13,27,17,45,22,69v-1,9,-11,6,-14,0v-13,-23,-31,-39,-44,-56v7,-17,20,-18,39,-48v10,-16,12,-17,18,-6v-4,16,-15,27,-21,41","w":135},"\u2013":{"d":"28,-113r139,0v10,-2,6,10,7,17v-1,4,-2,4,-7,4r-139,0v-10,1,-6,-8,-7,-15v0,-5,2,-6,7,-6","w":195},"\u00b7":{"d":"67,-98v0,13,-10,22,-22,22v-12,0,-23,-9,-23,-23v1,-31,46,-27,45,1","w":90},"\u00b6":{"d":"90,-119v-43,-1,-81,-65,-44,-109v37,-44,83,-21,145,-26r0,16r-12,0r0,298r-16,0r0,-298r-57,0r0,298r-16,0r0,-179","w":240},"\u201d":{"d":"30,-186v-18,-9,13,-21,11,-36v-2,-13,-15,-15,-15,-29v0,-9,8,-16,17,-16v52,0,1,87,-13,81xm84,-186v-20,-8,13,-22,10,-36v-6,-14,-27,-40,2,-45v51,8,2,87,-12,81","w":142},"\u00bb":{"d":"35,-90v13,-27,-17,-45,-22,-69v1,-10,10,-7,14,0v12,24,32,38,44,56v-9,15,-21,18,-39,47v-10,16,-12,17,-18,7v4,-17,15,-27,21,-41xm89,-90v13,-27,-17,-45,-22,-69v1,-10,10,-7,14,0v12,24,32,38,44,56v-10,15,-20,17,-39,47v-10,16,-12,17,-18,7v4,-17,15,-27,21,-41","w":135},"\u2026":{"d":"82,-19v0,13,-10,21,-22,21v-12,0,-23,-8,-23,-22v1,-31,46,-27,45,1xm202,-19v0,13,-10,21,-22,21v-12,0,-23,-8,-23,-22v1,-31,46,-27,45,1xm322,-19v0,13,-10,21,-22,21v-12,0,-23,-8,-23,-22v1,-31,46,-27,45,1","w":360},"\u00bf":{"d":"13,-45v0,-53,64,-53,54,-116v-3,-17,16,-16,17,-5r5,53v-4,29,-44,30,-44,64v0,14,9,34,32,34v38,-1,19,-39,45,-44v6,0,16,4,16,17v0,22,-20,47,-64,47v-41,0,-61,-25,-61,-50xm53,-235v1,-13,11,-21,23,-21v30,1,28,44,-1,44v-13,0,-23,-10,-22,-23","w":150},"`":{"d":"28,-260v18,12,33,28,44,46v0,10,-8,9,-13,6v-13,-14,-41,-15,-41,-39v0,-7,4,-13,10,-13","w":90},"\u00b4":{"d":"72,-247v0,25,-28,24,-41,39v-5,3,-13,4,-13,-6v9,-20,28,-33,44,-46v6,0,10,6,10,13","w":90},"\u00af":{"d":"3,-249r84,0v11,-2,6,10,7,18v0,3,-1,4,-6,4r-84,0v-11,3,-7,-8,-8,-17v0,-5,3,-5,7,-5","w":90},"\u00a8":{"d":"33,-239v0,12,-7,20,-19,20v-11,0,-20,-8,-20,-20v0,-12,10,-19,20,-19v11,0,19,7,19,19xm97,-239v0,12,-8,20,-20,20v-11,0,-20,-8,-20,-20v0,-12,10,-19,20,-19v11,0,20,7,20,19","w":90},"\u00b8":{"d":"9,67v9,-12,51,9,50,-18v-1,-20,-28,-5,-26,-20r4,-29r17,0r-6,25v22,-1,32,12,32,24v0,28,-56,43,-71,18","w":90},"\u2014":{"d":"27,-113r194,0v4,0,6,0,6,5v0,10,0,11,-6,11r-194,0v-5,0,-6,0,-6,-6v0,-9,0,-10,6,-10","w":247},"\u00c6":{"d":"169,-122r20,99r86,0v10,1,6,29,-1,23r-109,0v-5,0,-8,0,-9,-5r-18,-92r-69,0r-38,91v-3,9,-25,10,-31,1r104,-242v3,-6,4,-7,11,-7r132,0v11,-1,4,12,6,19v0,5,-1,5,-6,5r-100,0r18,85r82,0v11,0,4,10,6,18v0,4,-2,5,-6,5r-78,0xm77,-118r57,0r-18,-95","w":292},"\u00aa":{"d":"50,-244v-23,1,-11,21,-29,24v-4,0,-9,-2,-9,-10v0,-14,17,-27,41,-27v57,0,26,51,34,95v3,22,-22,27,-42,27v-6,0,-40,0,-40,-31v0,-26,25,-34,61,-44v0,-29,1,-30,-16,-34xm49,-148v30,0,12,-28,17,-50v-24,8,-39,12,-39,29v0,5,2,21,22,21","w":97},"\u0141":{"d":"3,-94v-5,-1,-6,-22,1,-26r20,-13r0,-115v0,-14,19,-4,29,-7v5,0,6,2,6,7r0,92r49,-31v4,4,4,22,-2,26r-47,31r0,106r95,0v10,-1,5,13,6,21v-1,3,-3,3,-6,3r-124,0v-5,0,-6,-2,-6,-6r0,-101","w":164},"\u00d8":{"d":"235,-271v-9,15,-20,28,-30,43v76,72,26,233,-78,233v-35,0,-56,-16,-65,-22v-10,13,-18,32,-30,41v-3,-1,-16,-7,-9,-11r27,-40v-73,-72,-33,-236,78,-233v37,0,56,14,66,22v10,-13,18,-30,30,-41v1,0,11,5,11,8xm188,-203r-110,163v53,49,129,4,129,-91v0,-39,-13,-62,-19,-72xm68,-53r111,-163v-50,-49,-131,-6,-131,90v0,39,12,61,20,73","w":254},"\u0152":{"d":"322,-24v8,0,6,9,6,19v0,4,-4,5,-6,5r-127,0v-11,2,-6,-13,-7,-21v-6,7,-24,26,-65,26v-69,0,-110,-58,-110,-133v0,-76,42,-132,111,-132v36,0,53,15,64,26v1,-8,-4,-20,7,-20r127,0v9,0,9,25,0,23r-101,0r0,86r88,0v5,0,7,1,7,6v-1,8,2,19,-6,17r-89,0r0,98r101,0xm129,-18v74,-1,58,-79,59,-152v0,-56,-40,-69,-61,-69v-40,0,-78,37,-78,109v0,76,39,112,80,112","w":337},"\u00ba":{"d":"60,-257v72,0,67,120,0,122v-34,0,-51,-31,-51,-61v0,-32,19,-61,51,-61xm89,-198v-1,-31,-16,-46,-30,-46v-17,0,-28,19,-28,45v0,31,15,49,30,49v17,0,29,-17,28,-48","w":119},"\u00e6":{"d":"80,-172v-35,0,-22,42,-47,42v-7,0,-15,-5,-15,-16v0,-13,17,-45,67,-45v36,0,45,23,49,33v5,-9,20,-33,54,-33v58,0,64,66,64,67v0,11,-8,12,-14,13r-97,15v0,52,44,95,81,57v8,-5,13,-25,22,-29v3,0,8,1,8,9v0,19,-19,63,-65,63v-29,0,-48,-16,-58,-39v-4,10,-16,39,-60,39v-40,0,-60,-27,-60,-51v0,-42,50,-54,104,-62v0,-37,-10,-63,-33,-63xm141,-113r77,-12v-3,-33,-20,-45,-35,-45v-22,0,-42,20,-42,57xm76,-16v35,1,43,-41,38,-76v-37,5,-72,12,-72,42v0,17,13,34,34,34","w":262},"\u0131":{"d":"53,-180r0,173v1,12,-16,5,-26,7v-5,0,-6,-2,-6,-7r0,-173v-1,-11,17,-4,25,-6v6,0,7,0,7,6","w":74},"\u0142":{"d":"75,-196v3,28,-12,24,-21,39r0,151v0,12,-17,4,-26,6v-6,0,-6,0,-6,-6r0,-117v-6,5,-11,12,-18,16v-14,-19,10,-33,18,-43r0,-120v0,-10,17,-3,25,-5v5,0,7,0,7,5r0,86v5,-4,17,-24,21,-12","w":74},"\u00f8":{"d":"167,-205v16,10,-11,29,-16,41v50,55,22,168,-58,168v-28,0,-43,-14,-49,-19r-24,32v-18,-8,9,-29,15,-41v-7,-8,-23,-29,-23,-69v0,-51,31,-98,83,-98v27,0,40,11,47,17v8,-10,15,-23,25,-31xm134,-141r-74,104v42,49,84,3,85,-54v0,-24,-6,-41,-11,-50xm53,-49r74,-105v-8,-10,-17,-19,-34,-19v-51,0,-61,89,-40,124"},"\u0153":{"d":"163,-96v-2,26,21,71,51,71v27,0,38,-23,43,-32v3,-15,17,-13,17,-2v0,20,-19,63,-64,63v-6,0,-42,1,-60,-41v-6,14,-19,41,-59,41v-56,0,-79,-49,-79,-98v0,-50,26,-97,78,-97v40,0,54,27,62,42v14,-36,41,-42,58,-42v53,0,64,54,64,68v0,9,-5,11,-11,12xm163,-113r78,-12v-11,-61,-44,-52,-67,-27v-7,12,-10,26,-11,39xm93,-18v40,0,46,-51,42,-84v-2,-22,-14,-70,-47,-70v-32,0,-44,42,-44,75v0,50,23,79,49,79","w":285},"\u00df":{"d":"80,-139v0,-31,40,-59,40,-86v0,-18,-12,-35,-33,-35v-32,0,-33,36,-33,54r0,199v1,13,-16,5,-25,7v-6,0,-7,0,-7,-6r0,-177v-4,-32,17,-97,70,-97v32,0,55,21,55,49v0,29,-42,64,-39,82v5,32,67,52,67,99v0,34,-24,54,-60,54v-29,0,-42,-13,-42,-24v9,-30,29,4,49,4v13,0,26,-9,26,-28v0,-46,-68,-49,-68,-95","w":180},"\u00a6":{"d":"31,63r0,-126r21,0r0,126r-21,0xm52,-117r-21,0r0,-126r21,0r0,126","w":82},"\u00d2":{"d":"242,-135v4,78,-45,140,-114,140v-66,0,-115,-54,-115,-132v0,-64,36,-133,116,-133v73,0,110,62,113,125xm127,-238v-114,3,-91,219,1,219v21,0,44,-10,59,-34v17,-27,18,-61,18,-81v-2,-85,-51,-104,-78,-104xm86,-333v20,8,28,28,44,40v10,7,0,26,-9,16v-15,-15,-40,-17,-46,-42v0,-9,6,-14,11,-14","w":254},"\u00c7":{"d":"85,67v9,-12,51,9,50,-18v0,-20,-28,-5,-26,-20r3,-25v-77,-11,-99,-81,-99,-133v0,-61,32,-131,116,-131v53,0,83,32,83,51v0,10,-8,16,-17,16v-29,-8,-21,-45,-70,-45v-42,0,-75,39,-75,101v0,67,36,116,87,116v23,0,45,-14,63,-22v4,0,8,4,8,9v0,11,-27,39,-80,39r-4,19v22,-1,32,13,32,25v0,29,-56,43,-71,18","w":217},"\u00d7":{"d":"105,-105r53,54r-15,15r-53,-54r-53,54r-15,-15r53,-54r-53,-53r15,-15r53,53r53,-53r15,15","w":180},"\u00d1":{"d":"60,-249r136,188r0,-186v-2,-12,14,-5,22,-7v5,0,6,1,6,6r0,242v0,10,-22,9,-28,1r-144,-199r0,197v2,12,-14,5,-22,7v-5,0,-6,-2,-6,-7r0,-240v0,-12,30,-10,36,-2xm151,-275v-18,0,-35,-22,-49,-21v-15,-3,-21,20,-27,18v-3,0,-6,-2,-6,-7v0,-8,9,-33,35,-33v20,0,32,20,49,20v17,3,23,-33,32,-11v0,10,-8,34,-34,34","w":247},"\u00d5":{"d":"242,-135v4,78,-45,140,-114,140v-66,0,-115,-54,-115,-132v0,-64,36,-133,116,-133v73,0,110,62,113,125xm127,-238v-114,3,-91,219,1,219v21,0,44,-10,59,-34v17,-27,18,-61,18,-81v-2,-85,-51,-104,-78,-104xm151,-275v-18,0,-35,-22,-49,-21v-15,-3,-21,20,-27,18v-3,0,-6,-2,-6,-7v0,-8,9,-33,35,-33v20,0,32,20,49,20v17,3,23,-33,32,-11v0,10,-8,34,-34,34","w":254},"\u00d3":{"d":"242,-135v4,78,-45,140,-114,140v-66,0,-115,-54,-115,-132v0,-64,36,-133,116,-133v73,0,110,62,113,125xm127,-238v-114,3,-91,219,1,219v21,0,44,-10,59,-34v17,-27,18,-61,18,-81v-2,-85,-51,-104,-78,-104xm179,-319v-7,26,-33,31,-52,45v-8,-1,-8,-15,-2,-19v15,-13,25,-31,43,-40v5,0,11,5,11,14","w":254},"\u00fe":{"d":"53,78v1,11,-15,6,-24,7v-5,0,-8,-1,-8,-7r0,-346v-2,-13,14,-7,24,-8v7,0,8,2,8,8r0,87v14,-6,30,-11,45,-11v55,0,78,46,78,91v0,43,-25,105,-84,105v-21,0,-32,-8,-39,-13r0,87xm90,-171v-20,0,-37,9,-37,33r0,108v45,29,91,3,90,-65v0,-36,-12,-76,-53,-76"},"\u00f0":{"d":"96,-243v-11,-18,-45,-29,-2,-37v5,0,21,16,31,28r27,-9v5,3,14,15,5,18r-20,6v19,23,39,66,39,127v0,69,-31,114,-82,114v-55,0,-82,-50,-82,-97v0,-82,83,-132,126,-71v-6,-28,-19,-50,-30,-64r-51,17v-4,-3,-14,-17,-3,-18xm142,-93v-1,-43,-20,-78,-51,-78v-27,0,-46,29,-46,73v0,48,22,80,51,80v30,0,47,-33,46,-75"},"\u00cc":{"d":"59,-248r0,241v0,13,-19,5,-29,7v-4,0,-7,-1,-7,-7r0,-240v0,-13,19,-5,29,-7v5,0,7,0,7,6xm0,-333v20,8,28,28,44,40v10,7,0,26,-9,16v-15,-15,-40,-17,-46,-42v0,-9,6,-14,11,-14","w":82},"\u00d4":{"d":"242,-135v4,78,-45,140,-114,140v-66,0,-115,-54,-115,-132v0,-64,36,-133,116,-133v73,0,110,62,113,125xm127,-238v-114,3,-91,219,1,219v21,0,44,-10,59,-34v17,-27,18,-61,18,-81v-2,-85,-51,-104,-78,-104xm136,-296v-22,-14,-37,18,-57,23v-6,-3,-5,-11,2,-16v25,-19,24,-29,44,-41v16,8,16,19,42,37v9,6,14,15,5,19v-14,-5,-24,-14,-36,-22","w":254},"\u00c9":{"d":"148,-125v-23,8,-61,1,-89,3r0,99r97,0v10,-2,6,10,7,17v0,5,-3,6,-7,6r-125,0v-5,0,-7,0,-7,-6r0,-240v0,-6,1,-8,7,-8r125,0v10,-2,6,11,7,19v0,3,-2,4,-7,4r-97,0r0,87r82,0v10,-2,6,11,7,19xm142,-319v-7,27,-34,30,-52,45v-8,0,-9,-14,-3,-19v15,-13,24,-32,44,-40v5,0,11,5,11,14","w":172},"\u00cb":{"d":"148,-125v-23,8,-61,1,-89,3r0,99r97,0v10,-2,6,10,7,17v0,5,-3,6,-7,6r-125,0v-5,0,-7,0,-7,-6r0,-240v0,-6,1,-8,7,-8r125,0v10,-2,6,11,7,19v0,3,-2,4,-7,4r-97,0r0,87r82,0v10,-2,6,11,7,19xm77,-303v0,10,-6,21,-20,21v-10,0,-21,-7,-21,-20v0,-26,41,-29,41,-1xm143,-303v0,10,-6,21,-20,21v-10,0,-21,-7,-21,-20v0,-26,41,-29,41,-1","w":172},"\u00c1":{"d":"179,-5r-36,-95r-77,0r-35,94v-2,11,-23,7,-31,3r95,-246v2,-8,23,-9,27,0r95,246v-5,5,-32,6,-38,-2xm73,-121r62,0r-31,-86xm161,-319v-8,26,-34,30,-52,45v-8,0,-9,-14,-3,-19v15,-13,25,-31,43,-40v5,0,12,5,12,14","w":217},"\u017d":{"d":"22,-231v-7,-3,-6,1,-6,-17v0,-5,1,-6,7,-6r142,0v9,0,12,2,7,10r-118,221r112,0v11,-2,4,13,6,20v0,2,-1,3,-5,3r-153,0v-8,0,-10,-1,-5,-10r117,-221r-104,0xm78,-307v22,14,37,-18,57,-23v8,2,5,12,-1,16v-25,19,-25,29,-45,40v-15,-7,-17,-19,-42,-36v-9,-6,-14,-15,-5,-19v14,5,24,14,36,22","w":180},"\u00e7":{"d":"48,67v8,-12,50,9,49,-18v0,-18,-27,-6,-25,-20r3,-25v-38,-6,-63,-43,-63,-95v0,-58,29,-100,80,-100v41,0,61,32,61,46v0,12,-10,15,-15,15v-25,-6,-19,-40,-51,-40v-25,0,-46,24,-46,67v0,53,26,79,53,79v34,-1,39,-29,54,-39v1,0,7,0,7,8v0,12,-13,56,-64,59r-5,21v22,-1,32,12,32,24v0,28,-55,43,-70,18","w":164},"\u00ac":{"d":"219,0r0,-94r-219,0r0,-22r240,0r0,116r-21,0","w":240},"\u00c3":{"d":"179,-5r-36,-95r-77,0r-35,94v-2,11,-23,7,-31,3r95,-246v2,-8,23,-9,27,0r95,246v-5,5,-32,6,-38,-2xm73,-121r62,0r-31,-86xm132,-275v-18,0,-35,-22,-49,-21v-15,-3,-21,20,-27,18v-3,0,-6,-2,-6,-7v0,-8,9,-33,35,-33v20,0,33,21,50,20v17,3,22,-33,31,-11v0,10,-8,34,-34,34","w":217},"\u00de":{"d":"59,-6v0,12,-19,3,-28,6v-5,0,-7,0,-7,-6r0,-242v0,-11,19,-4,29,-6v5,0,6,0,6,6r0,48v83,-28,167,45,102,117v-21,23,-60,29,-102,25r0,52xm145,-134v2,-48,-48,-62,-86,-49r0,104v41,6,84,-1,86,-55"},"\u00bc":{"d":"57,-100r0,-123v-28,10,-41,18,-48,6v0,-5,3,-6,11,-8v28,-7,36,-20,52,-31v4,0,6,3,6,7r0,149v-1,8,-25,6,-21,0xm266,-50v9,12,-1,16,-15,13v-3,15,10,44,-16,38v-10,-5,-1,-26,-4,-38r-53,0v-5,1,-9,-4,-3,-11r61,-108v5,-10,18,-3,15,5r0,101r15,0xm192,-50r39,0r0,-74xm213,-251r-129,245v-2,10,-26,8,-16,-3r127,-239v0,-9,18,-7,18,-3","w":285},"\u00c2":{"d":"179,-5r-36,-95r-77,0r-35,94v-2,11,-23,7,-31,3r95,-246v2,-8,23,-9,27,0r95,246v-5,5,-32,6,-38,-2xm73,-121r62,0r-31,-86xm118,-296v-23,-15,-37,19,-58,23v-6,-3,-5,-11,2,-16v25,-19,24,-30,45,-41v14,8,17,19,42,37v9,6,14,15,5,19v-14,-5,-24,-14,-36,-22","w":217},"\u00d6":{"d":"242,-135v4,78,-45,140,-114,140v-66,0,-115,-54,-115,-132v0,-64,36,-133,116,-133v73,0,110,62,113,125xm127,-238v-114,3,-91,219,1,219v21,0,44,-10,59,-34v17,-27,18,-61,18,-81v-2,-85,-51,-104,-78,-104xm116,-303v0,10,-6,21,-20,21v-10,0,-21,-7,-21,-20v0,-26,41,-29,41,-1xm182,-303v0,10,-6,21,-20,21v-10,0,-21,-7,-21,-20v0,-26,41,-29,41,-1","w":254},"\u00be":{"d":"54,-240v-25,0,-20,22,-33,28v-1,0,-6,0,-6,-8v0,-16,15,-38,43,-38v43,0,53,57,15,71v21,10,32,27,32,46v0,19,-11,49,-50,49v-30,0,-45,-21,-45,-32v0,-6,5,-11,10,-11v16,6,13,31,37,28v45,-6,27,-64,-11,-67v-4,-1,-6,-2,-6,-6v10,-13,37,-11,36,-37v0,-10,-7,-23,-22,-23xm266,-50v9,12,-1,16,-15,13v-3,15,10,44,-16,38v-10,-5,-1,-26,-4,-38r-53,0v-5,1,-9,-4,-3,-11r61,-108v5,-10,18,-3,15,5r0,101r15,0xm192,-50r39,0r0,-74xm221,-251r-130,245v-4,10,-26,8,-15,-3r127,-239v1,-9,17,-7,18,-3","w":285},"\u00db":{"d":"109,-21v31,0,53,-24,53,-59r0,-168v0,-5,0,-7,5,-7v11,2,23,-4,23,7r0,172v2,48,-35,81,-84,81v-53,0,-72,-26,-76,-37v-22,-60,-4,-142,-9,-216v-1,-14,19,-4,29,-7v6,0,7,1,7,7r0,161v0,17,0,66,52,66xm114,-296v-22,-14,-37,18,-57,23v-6,-3,-6,-11,1,-16v25,-19,26,-29,45,-41v16,8,16,19,42,37v9,6,14,15,5,19v-14,-5,-24,-14,-36,-22","w":209},"\u00d9":{"d":"109,-21v31,0,53,-24,53,-59r0,-168v0,-5,0,-7,5,-7v11,2,23,-4,23,7r0,172v2,48,-35,81,-84,81v-53,0,-72,-26,-76,-37v-22,-60,-4,-142,-9,-216v-1,-14,19,-4,29,-7v6,0,7,1,7,7r0,161v0,17,0,66,52,66xm64,-333v20,12,36,30,48,50v0,9,-9,11,-14,6v-15,-15,-40,-17,-45,-42v0,-9,6,-14,11,-14","w":209},"\u00dc":{"d":"109,-21v31,0,53,-24,53,-59r0,-168v0,-5,0,-7,5,-7v11,2,23,-4,23,7r0,172v2,48,-35,81,-84,81v-53,0,-72,-26,-76,-37v-22,-60,-4,-142,-9,-216v-1,-14,19,-4,29,-7v6,0,7,1,7,7r0,161v0,17,0,66,52,66xm93,-303v0,10,-7,21,-21,21v-10,0,-21,-7,-21,-20v1,-26,42,-29,42,-1xm159,-303v0,10,-7,21,-21,21v-10,0,-21,-7,-21,-20v1,-26,42,-29,42,-1","w":209},"\u00cd":{"d":"59,-248r0,241v0,13,-19,5,-29,7v-4,0,-7,-1,-7,-7r0,-240v0,-13,19,-5,29,-7v5,0,7,0,7,6xm93,-319v-7,26,-33,31,-52,45v-8,-1,-8,-15,-2,-19v15,-13,25,-31,43,-40v5,0,11,5,11,14","w":82},"\u00c0":{"d":"179,-5r-36,-95r-77,0r-35,94v-2,11,-23,7,-31,3r95,-246v2,-8,23,-9,27,0r95,246v-5,5,-32,6,-38,-2xm73,-121r62,0r-31,-86xm68,-333v19,9,28,27,43,40v10,7,0,26,-9,16v-14,-15,-40,-17,-45,-42v0,-9,6,-14,11,-14","w":217},"\u00b0":{"d":"64,-269v30,0,53,24,53,53v0,29,-23,53,-53,53v-29,0,-53,-24,-53,-53v0,-30,24,-53,53,-53xm64,-248v-18,0,-32,15,-32,32v0,17,14,31,32,31v17,0,31,-14,31,-31v0,-17,-14,-32,-31,-32","w":127},"\u00bd":{"d":"57,-100r0,-123v-28,10,-41,19,-48,6v0,-5,3,-6,11,-8v28,-7,36,-20,52,-31v4,0,6,3,6,7r0,149v-1,9,-25,5,-21,0xm265,-20v8,-1,4,7,5,15v0,5,-1,5,-5,5r-84,0v-6,0,-5,-6,-2,-9v21,-34,60,-63,68,-107v-3,-29,-37,-46,-51,-4v0,11,-15,19,-15,2v0,-20,15,-44,45,-44v53,0,43,61,20,90r-42,52r61,0xm213,-251r-129,245v-2,10,-26,8,-16,-3r127,-239v1,-8,18,-8,18,-3","w":285},"\u00dd":{"d":"195,-251v-22,49,-55,90,-80,137r0,108v-1,13,-21,3,-31,6v-5,0,-6,-2,-6,-6r0,-110r-78,-135v6,-5,35,-7,40,2r62,106r61,-105v4,-11,23,-7,32,-3xm149,-319v-7,26,-33,30,-51,45v-8,0,-9,-14,-3,-19v15,-13,25,-31,43,-40v5,0,11,5,11,14","w":195},"\u00b2":{"d":"100,-115v8,-1,4,6,5,14v0,5,-1,6,-5,6r-83,0v-7,0,-7,-6,-3,-10v21,-33,60,-62,68,-106v-3,-29,-37,-46,-51,-4v0,11,-15,19,-15,2v0,-20,15,-45,45,-45v53,0,48,66,20,90r-41,53r60,0","w":119},"\u00da":{"d":"109,-21v31,0,53,-24,53,-59r0,-168v0,-5,0,-7,5,-7v11,2,23,-4,23,7r0,172v2,48,-35,81,-84,81v-53,0,-72,-26,-76,-37v-22,-60,-4,-142,-9,-216v-1,-14,19,-4,29,-7v6,0,7,1,7,7r0,161v0,17,0,66,52,66xm157,-319v-7,26,-33,31,-52,45v-9,-1,-8,-14,-2,-19v15,-12,23,-32,43,-40v5,0,11,5,11,14","w":209},"\u00ae":{"d":"99,-208v52,-1,113,-6,111,40v0,22,-17,36,-36,39v33,6,22,59,37,81r-27,0v-3,-7,-5,-12,-8,-34v-5,-37,-12,-40,-54,-40r0,74r-23,0r0,-160xm186,-166v3,-28,-32,-24,-64,-24r0,49v29,-3,60,11,64,-25xm278,-126v0,71,-56,127,-128,127v-67,0,-128,-52,-128,-128v0,-74,59,-128,128,-128v74,0,128,59,128,129xm267,-127v0,-64,-50,-117,-117,-117v-66,0,-117,53,-117,117v0,66,53,117,117,117v66,0,117,-52,117,-117","w":299},"\u00a9":{"d":"219,-78v-35,59,-150,33,-150,-49v0,-50,38,-84,83,-84v39,0,58,23,67,33r-15,14v-9,-10,-24,-27,-51,-27v-34,0,-63,26,-63,64v0,34,27,62,63,62v28,0,42,-16,51,-26xm278,-126v0,71,-56,127,-128,127v-68,0,-128,-53,-128,-128v0,-72,57,-128,128,-128v74,0,128,58,128,129xm266,-127v0,-65,-50,-117,-116,-117v-66,0,-117,54,-117,117v0,67,54,117,117,117v67,0,116,-54,116,-117","w":299},"\u00ca":{"d":"148,-125v-23,8,-61,1,-89,3r0,99r97,0v10,-2,6,10,7,17v0,5,-3,6,-7,6r-125,0v-5,0,-7,0,-7,-6r0,-240v0,-6,1,-8,7,-8r125,0v10,-2,6,11,7,19v0,3,-2,4,-7,4r-97,0r0,87r82,0v10,-2,6,11,7,19xm99,-296v-23,-14,-37,18,-57,23v-6,-3,-6,-11,1,-16v25,-19,26,-29,45,-41v16,8,16,19,42,37v9,6,14,15,5,19v-14,-5,-24,-14,-36,-22","w":172},"\u2122":{"d":"223,-255r0,120r-16,0r0,-103r-32,103r-15,0r-32,-102r1,102r-16,0r0,-120r24,0r31,99r31,-99r24,0xm65,-239r0,104r-17,0r0,-104r-39,0r0,-16r94,0r0,16r-38,0","w":247},"\u00b1":{"d":"101,-123r0,68r-21,0r0,-68r-69,0r0,-21r69,0r0,-69r21,0r0,69r68,0r0,21r-68,0xm169,-21r0,21r-158,0r0,-21r158,0","w":180},"\u00d0":{"d":"78,3v-17,0,-54,4,-54,-12r0,-120v-7,-1,-22,3,-24,-2v2,-8,-5,-21,6,-21r18,0r0,-88v2,-24,34,-17,62,-17v105,0,141,71,141,130v0,103,-67,130,-149,130xm189,-128v0,-68,-54,-121,-130,-105r0,81r70,0v9,-2,5,9,6,17v0,5,-1,5,-6,5r-70,0r0,109v84,9,130,-37,130,-107","w":240},"\u00c4":{"d":"179,-5r-36,-95r-77,0r-35,94v-2,11,-23,7,-31,3r95,-246v2,-8,23,-9,27,0r95,246v-5,5,-32,6,-38,-2xm73,-121r62,0r-31,-86xm96,-303v0,10,-7,21,-21,21v-10,0,-21,-7,-21,-20v1,-26,42,-29,42,-1xm162,-303v0,10,-7,21,-21,21v-10,0,-21,-7,-21,-20v0,-27,41,-28,42,-1","w":217},"\u00c5":{"d":"179,-5r-36,-95r-77,0r-35,94v-2,11,-23,7,-31,3r95,-246v2,-8,23,-9,27,0r95,246v-5,5,-32,6,-38,-2xm73,-121r62,0r-31,-86xm139,-303v1,17,-12,32,-30,32v-18,0,-31,-13,-31,-30v0,-16,13,-31,31,-31v17,0,29,14,30,29xm108,-286v17,0,22,-29,1,-30v-9,0,-15,6,-15,15v0,9,5,15,14,15","w":217},"\u0178":{"d":"195,-251v-22,49,-55,90,-80,137r0,108v-1,13,-21,3,-31,6v-5,0,-6,-2,-6,-6r0,-110r-78,-135v6,-5,35,-7,40,2r62,106r61,-105v4,-11,23,-7,32,-3xm85,-303v0,10,-7,21,-21,21v-10,0,-20,-7,-20,-20v0,-26,41,-29,41,-1xm151,-303v0,10,-7,21,-21,21v-10,0,-21,-7,-21,-20v1,-26,42,-29,42,-1","w":195},"\u00f7":{"d":"107,-58v-1,23,-33,21,-33,0v0,-9,7,-16,16,-16v7,0,17,4,17,16xm107,-151v0,9,-7,16,-16,16v-9,0,-17,-6,-17,-16v1,-22,31,-23,33,0xm180,-115r0,21r-180,0r0,-21r180,0","w":180},"\u00b9":{"d":"57,-100r0,-123v-28,10,-41,19,-48,6v0,-5,3,-6,11,-8v29,-6,36,-20,52,-31v4,0,6,3,6,7r0,149v-1,8,-25,6,-21,0","w":119},"\u00b3":{"d":"54,-240v-25,0,-20,22,-33,28v-1,0,-6,0,-6,-8v0,-16,15,-38,43,-38v43,0,53,57,15,71v21,10,32,27,32,46v0,19,-11,49,-50,49v-30,0,-45,-21,-45,-32v0,-6,5,-11,10,-11v16,6,13,31,37,28v45,-6,27,-64,-11,-67v-4,-1,-6,-2,-6,-6v10,-13,37,-11,36,-37v0,-10,-7,-23,-22,-23","w":119},"\u00c8":{"d":"148,-125v-23,8,-61,1,-89,3r0,99r97,0v10,-2,6,10,7,17v0,5,-3,6,-7,6r-125,0v-5,0,-7,0,-7,-6r0,-240v0,-6,1,-8,7,-8r125,0v10,-2,6,11,7,19v0,3,-2,4,-7,4r-97,0r0,87r82,0v10,-2,6,11,7,19xm49,-333v19,9,28,27,43,40v10,8,0,26,-9,16v-15,-15,-40,-17,-45,-42v0,-9,6,-14,11,-14","w":172},"\u00cf":{"d":"59,-248r0,241v0,13,-19,5,-29,7v-4,0,-7,-1,-7,-7r0,-240v0,-13,19,-5,29,-7v5,0,7,0,7,6xm29,-303v0,10,-7,21,-21,21v-10,0,-21,-7,-21,-20v1,-26,42,-29,42,-1xm95,-303v0,10,-7,21,-21,21v-10,0,-21,-7,-21,-20v1,-26,42,-29,42,-1","w":82},"\u0160":{"d":"148,-199v-26,-6,-21,-40,-58,-39v-24,0,-40,18,-40,39v-1,34,41,44,68,59v18,10,56,27,56,73v0,42,-33,72,-80,72v-58,0,-80,-39,-80,-54v0,-12,9,-18,17,-18v30,8,17,49,65,50v27,0,44,-19,44,-42v0,-75,-123,-41,-123,-133v0,-39,29,-68,75,-68v43,0,71,26,71,44v0,9,-6,17,-15,17xm82,-307v22,14,37,-18,57,-23v8,2,5,12,-1,16v-25,19,-26,28,-45,40v-16,-7,-16,-19,-42,-36v-9,-6,-14,-15,-5,-19v14,5,24,14,36,22"},"\u00ce":{"d":"59,-248r0,241v0,13,-19,5,-29,7v-4,0,-7,-1,-7,-7r0,-240v0,-13,19,-5,29,-7v5,0,7,0,7,6xm-12,-280v18,-21,34,-38,51,-50v16,8,16,19,42,37v9,6,14,15,5,19v-21,-3,-34,-37,-57,-22v-12,8,-23,17,-36,23v-2,0,-5,-4,-5,-7","w":82},"\u00e1":{"d":"81,-172v-36,0,-22,33,-47,39v-5,0,-14,-3,-14,-15v0,-22,26,-43,65,-43v53,0,54,39,54,58r0,95v5,36,-37,42,-66,42v-10,0,-63,0,-63,-49v0,-41,40,-53,98,-70v-1,-26,7,-57,-27,-57xm79,-15v51,0,21,-46,29,-83v-39,13,-66,21,-66,49v0,3,0,34,37,34xm130,-247v0,25,-28,24,-41,39v-5,3,-13,4,-13,-6v9,-20,28,-33,44,-46v6,0,10,6,10,13","w":157},"\u00e2":{"d":"89,-226v-21,-11,-33,17,-51,22v-8,-2,-5,-10,1,-15v17,-13,26,-28,41,-38v17,8,18,19,40,35v12,9,11,11,4,18v-13,-6,-23,-16,-35,-22xm81,-172v-36,0,-22,33,-47,39v-5,0,-14,-3,-14,-15v0,-22,26,-43,65,-43v53,0,54,39,54,58r0,95v5,36,-37,42,-66,42v-10,0,-63,0,-63,-49v0,-41,40,-53,98,-70v-1,-26,7,-57,-27,-57xm79,-15v51,0,21,-46,29,-83v-39,13,-66,21,-66,49v0,3,0,34,37,34","w":157},"\u00e4":{"d":"81,-172v-36,0,-22,33,-47,39v-5,0,-14,-3,-14,-15v0,-22,26,-43,65,-43v53,0,54,39,54,58r0,95v5,36,-37,42,-66,42v-10,0,-63,0,-63,-49v0,-41,40,-53,98,-70v-1,-26,7,-57,-27,-57xm79,-15v51,0,21,-46,29,-83v-39,13,-66,21,-66,49v0,3,0,34,37,34xm69,-239v0,12,-7,20,-19,20v-11,0,-20,-8,-20,-20v0,-12,10,-19,20,-19v11,0,19,7,19,19xm133,-239v0,12,-8,20,-20,20v-11,0,-20,-8,-20,-20v0,-12,10,-19,20,-19v11,0,20,7,20,19","w":157},"\u00e0":{"d":"81,-172v-36,0,-22,33,-47,39v-5,0,-14,-3,-14,-15v0,-22,26,-43,65,-43v53,0,54,39,54,58r0,95v5,36,-37,42,-66,42v-10,0,-63,0,-63,-49v0,-41,40,-53,98,-70v-1,-26,7,-57,-27,-57xm79,-15v51,0,21,-46,29,-83v-39,13,-66,21,-66,49v0,3,0,34,37,34xm45,-260v18,12,33,28,44,46v0,10,-8,9,-13,6v-13,-14,-41,-15,-41,-39v0,-7,4,-13,10,-13","w":157},"\u00e5":{"d":"110,-233v0,16,-13,28,-28,28v-14,0,-27,-11,-27,-28v0,-16,12,-27,27,-27v14,0,28,10,28,27xm97,-233v0,-8,-5,-14,-14,-14v-20,0,-19,29,0,28v7,0,14,-5,14,-14xm81,-172v-36,0,-22,33,-47,39v-5,0,-14,-3,-14,-15v0,-22,26,-43,65,-43v53,0,54,39,54,58r0,95v5,36,-37,42,-66,42v-10,0,-63,0,-63,-49v0,-41,40,-53,98,-70v-1,-26,7,-57,-27,-57xm79,-15v51,0,21,-46,29,-83v-39,13,-66,21,-66,49v0,3,0,34,37,34","w":157},"\u00e3":{"d":"106,-212v-20,0,-33,-21,-46,-19v-18,0,-15,14,-26,17v-3,0,-6,-2,-6,-7v0,-8,10,-32,33,-32v16,0,34,22,47,19v14,2,15,-14,24,-17v13,9,-2,38,-26,39xm81,-172v-36,0,-22,33,-47,39v-5,0,-14,-3,-14,-15v0,-22,26,-43,65,-43v53,0,54,39,54,58r0,95v5,36,-37,42,-66,42v-10,0,-63,0,-63,-49v0,-41,40,-53,98,-70v-1,-26,7,-57,-27,-57xm79,-15v51,0,21,-46,29,-83v-39,13,-66,21,-66,49v0,3,0,34,37,34","w":157},"\u00e9":{"d":"149,-115r-110,16v3,81,74,95,105,42v5,-9,7,-10,11,-10v2,0,7,0,7,8v0,9,-16,63,-72,63v-22,0,-51,-8,-67,-41v-17,-34,-13,-87,1,-114v4,-8,22,-40,66,-40v57,0,69,49,69,64v0,10,-6,11,-10,12xm39,-117r86,-13v-2,-23,-18,-40,-39,-40v-29,0,-43,22,-47,53xm137,-247v0,25,-28,24,-41,39v-5,3,-13,4,-13,-6v9,-20,28,-33,44,-46v6,0,10,6,10,13","w":172},"\u00ea":{"d":"97,-226v-22,-11,-33,17,-52,22v-8,-2,-5,-10,1,-15v17,-13,26,-28,41,-38v18,7,18,19,40,35v13,9,13,11,5,18v-13,-6,-23,-16,-35,-22xm149,-115r-110,16v3,81,74,95,105,42v5,-9,7,-10,11,-10v2,0,7,0,7,8v0,9,-16,63,-72,63v-22,0,-51,-8,-67,-41v-17,-34,-13,-87,1,-114v4,-8,22,-40,66,-40v57,0,69,49,69,64v0,10,-6,11,-10,12xm39,-117r86,-13v-2,-23,-18,-40,-39,-40v-29,0,-43,22,-47,53","w":172},"\u00eb":{"d":"149,-115r-110,16v3,81,74,95,105,42v5,-9,7,-10,11,-10v2,0,7,0,7,8v0,9,-16,63,-72,63v-22,0,-51,-8,-67,-41v-17,-34,-13,-87,1,-114v4,-8,22,-40,66,-40v57,0,69,49,69,64v0,10,-6,11,-10,12xm39,-117r86,-13v-2,-23,-18,-40,-39,-40v-29,0,-43,22,-47,53xm77,-239v0,12,-7,20,-19,20v-11,0,-20,-8,-20,-20v0,-12,10,-19,20,-19v11,0,19,7,19,19xm141,-239v0,12,-8,20,-20,20v-11,0,-20,-8,-20,-20v0,-12,10,-19,20,-19v11,0,20,7,20,19","w":172},"\u00e8":{"d":"149,-115r-110,16v3,81,74,95,105,42v5,-9,7,-10,11,-10v2,0,7,0,7,8v0,9,-16,63,-72,63v-22,0,-51,-8,-67,-41v-17,-34,-13,-87,1,-114v4,-8,22,-40,66,-40v57,0,69,49,69,64v0,10,-6,11,-10,12xm39,-117r86,-13v-2,-23,-18,-40,-39,-40v-29,0,-43,22,-47,53xm53,-260v18,12,33,28,44,46v0,10,-8,9,-13,6v-13,-14,-41,-15,-41,-39v0,-7,4,-13,10,-13","w":172},"\u00ed":{"d":"53,-180r0,173v1,12,-16,5,-26,7v-5,0,-6,-2,-6,-7r0,-173v-1,-11,17,-4,25,-6v6,0,7,0,7,6xm84,-247v0,25,-28,24,-41,39v-5,3,-13,4,-13,-6v9,-20,28,-33,44,-46v6,0,10,6,10,13","w":74},"\u00ee":{"d":"44,-226v-22,-11,-33,18,-52,22v-8,-2,-4,-10,2,-15v17,-12,26,-27,40,-38v18,7,18,19,40,35v13,9,13,11,5,18v-13,-6,-23,-16,-35,-22xm53,-180r0,173v1,12,-16,5,-26,7v-5,0,-6,-2,-6,-7r0,-173v-1,-11,17,-4,25,-6v6,0,7,0,7,6","w":74},"\u00ef":{"d":"53,-180r0,173v1,12,-16,5,-26,7v-5,0,-6,-2,-6,-7r0,-173v-1,-11,17,-4,25,-6v6,0,7,0,7,6xm24,-239v0,12,-7,20,-19,20v-11,0,-20,-8,-20,-20v0,-12,10,-19,20,-19v11,0,19,7,19,19xm88,-239v0,12,-8,20,-20,20v-11,0,-20,-8,-20,-20v0,-12,10,-19,20,-19v11,0,20,7,20,19","w":74},"\u00ec":{"d":"53,-180r0,173v1,12,-16,5,-26,7v-5,0,-6,-2,-6,-7r0,-173v-1,-11,17,-4,25,-6v6,0,7,0,7,6xm0,-260v18,12,33,28,44,46v0,10,-8,9,-13,6v-13,-14,-41,-15,-41,-39v0,-7,4,-13,10,-13","w":74},"\u00f1":{"d":"117,-212v-20,0,-33,-21,-46,-19v-18,0,-15,14,-26,17v-12,-9,1,-38,27,-39v16,-1,34,22,47,19v14,2,15,-14,24,-17v13,9,-2,38,-26,39xm21,-152v-9,-35,70,-40,77,-39v68,0,68,39,68,60r0,124v2,11,-15,6,-24,7v-6,0,-8,-1,-8,-7r0,-121v0,-17,0,-44,-42,-44v-39,0,-39,23,-39,32r0,133v1,12,-16,5,-25,7v-5,0,-7,-1,-7,-7r0,-145"},"\u00f3":{"d":"94,-191v112,6,107,193,0,195v-110,0,-107,-196,0,-195xm142,-97v-2,-50,-26,-74,-50,-74v-28,0,-47,30,-47,73v0,50,25,80,51,80v27,0,48,-29,46,-79xm141,-247v0,25,-28,24,-41,39v-5,3,-13,4,-13,-6v9,-20,28,-33,44,-46v6,0,10,6,10,13"},"\u00f4":{"d":"100,-226v-22,-10,-33,17,-51,22v-8,-2,-5,-10,1,-15v17,-13,26,-28,41,-38v17,8,18,19,40,35v12,9,11,11,4,18xm94,-191v112,6,107,193,0,195v-110,0,-107,-196,0,-195xm142,-97v-2,-50,-26,-74,-50,-74v-28,0,-47,30,-47,73v0,50,25,80,51,80v27,0,48,-29,46,-79"},"\u00f6":{"d":"94,-191v112,6,107,193,0,195v-110,0,-107,-196,0,-195xm142,-97v-2,-50,-26,-74,-50,-74v-28,0,-47,30,-47,73v0,50,25,80,51,80v27,0,48,-29,46,-79xm81,-239v0,12,-7,20,-19,20v-11,0,-20,-8,-20,-20v0,-12,10,-19,20,-19v11,0,19,7,19,19xm145,-239v0,12,-8,20,-20,20v-11,0,-20,-8,-20,-20v0,-12,10,-19,20,-19v11,0,20,7,20,19"},"\u00f2":{"d":"94,-191v112,6,107,193,0,195v-110,0,-107,-196,0,-195xm142,-97v-2,-50,-26,-74,-50,-74v-28,0,-47,30,-47,73v0,50,25,80,51,80v27,0,48,-29,46,-79xm56,-260v18,12,33,28,44,46v0,10,-8,9,-13,6v-13,-14,-41,-15,-41,-39v0,-7,4,-13,10,-13"},"\u00f5":{"d":"117,-212v-20,0,-33,-21,-46,-19v-18,0,-15,14,-26,17v-12,-9,1,-38,27,-39v16,-1,34,22,47,19v14,2,15,-14,24,-17v13,9,-2,38,-26,39xm94,-191v112,6,107,193,0,195v-110,0,-107,-196,0,-195xm142,-97v-2,-50,-26,-74,-50,-74v-28,0,-47,30,-47,73v0,50,25,80,51,80v27,0,48,-29,46,-79"},"\u0161":{"d":"65,-235v21,10,34,-17,52,-22v8,1,5,11,-1,15v-17,13,-26,28,-41,38v-18,-7,-18,-19,-40,-35v-12,-9,-13,-12,-5,-18v13,6,23,16,35,22xm117,-141v-23,-3,-14,-31,-44,-31v-19,0,-27,16,-27,26v11,53,86,30,90,96v2,31,-36,54,-60,54v-48,0,-63,-30,-63,-40v0,-10,8,-16,15,-16v24,7,16,36,50,36v19,0,28,-15,28,-28v0,-51,-89,-40,-89,-97v0,-26,18,-50,57,-50v41,0,56,25,56,37v0,9,-6,13,-13,13","w":150},"\u00fa":{"d":"87,4v-100,8,-60,-103,-68,-184v0,-11,16,-4,25,-6v5,0,7,0,7,6r0,120v0,17,1,43,41,43v37,0,37,-22,37,-39r0,-123v-2,-11,15,-6,24,-7v6,0,8,1,8,6r0,135v-2,44,-17,45,-74,49xm137,-247v0,25,-28,24,-41,39v-5,3,-13,4,-13,-6v9,-20,28,-33,44,-46v6,0,10,6,10,13","w":180},"\u00fb":{"d":"96,-226v-22,-10,-33,17,-51,22v-8,-2,-5,-10,1,-15v17,-13,26,-28,41,-38v17,8,18,19,40,35v12,9,11,11,4,18xm87,4v-100,8,-60,-103,-68,-184v0,-11,16,-4,25,-6v5,0,7,0,7,6r0,120v0,17,1,43,41,43v37,0,37,-22,37,-39r0,-123v-2,-11,15,-6,24,-7v6,0,8,1,8,6r0,135v-2,44,-17,45,-74,49","w":180},"\u00fc":{"d":"87,4v-100,8,-60,-103,-68,-184v0,-11,16,-4,25,-6v5,0,7,0,7,6r0,120v0,17,1,43,41,43v37,0,37,-22,37,-39r0,-123v-2,-11,15,-6,24,-7v6,0,8,1,8,6r0,135v-2,44,-17,45,-74,49xm76,-239v0,12,-7,20,-19,20v-11,0,-20,-8,-20,-20v0,-12,10,-19,20,-19v11,0,19,7,19,19xm140,-239v0,12,-8,20,-20,20v-11,0,-20,-8,-20,-20v0,-12,10,-19,20,-19v11,0,20,7,20,19","w":180},"\u00f9":{"d":"87,4v-100,8,-60,-103,-68,-184v0,-11,16,-4,25,-6v5,0,7,0,7,6r0,120v0,17,1,43,41,43v37,0,37,-22,37,-39r0,-123v-2,-11,15,-6,24,-7v6,0,8,1,8,6r0,135v-2,44,-17,45,-74,49xm52,-260v18,12,33,28,44,46v0,10,-8,9,-13,6v-13,-14,-41,-15,-41,-39v0,-7,4,-13,10,-13","w":180},"\u00fd":{"d":"165,-183r-75,209v-10,27,-26,60,-65,60v-4,0,-25,0,-25,-17v0,-17,21,-16,35,-12v15,0,26,-12,40,-57r-72,-182v3,-9,18,-2,28,-4v6,0,6,0,8,6r51,139r46,-139v2,-10,22,-8,29,-3xm133,-247v0,25,-28,24,-41,39v-5,3,-13,4,-13,-6v9,-20,28,-33,44,-46v6,0,10,6,10,13","w":164},"\u00ff":{"d":"165,-183r-75,209v-10,27,-26,60,-65,60v-4,0,-25,0,-25,-17v0,-17,21,-16,35,-12v15,0,26,-12,40,-57r-72,-182v3,-9,18,-2,28,-4v6,0,6,0,8,6r51,139r46,-139v2,-10,22,-8,29,-3xm73,-239v0,12,-7,20,-19,20v-11,0,-20,-8,-20,-20v0,-12,10,-19,20,-19v11,0,19,7,19,19xm137,-239v0,12,-8,20,-20,20v-11,0,-20,-8,-20,-20v0,-12,10,-19,20,-19v11,0,20,7,20,19","w":164},"\u017e":{"d":"121,-252v-11,20,-33,34,-46,48v-18,-7,-18,-20,-40,-35v-13,-9,-15,-12,-5,-18v18,5,32,33,54,21v11,-7,20,-16,32,-21v3,0,5,1,5,5xm20,-166v-9,1,-6,-7,-7,-15v0,-5,2,-5,7,-5r107,0v5,0,11,3,4,10r-82,156r80,0v6,-2,5,9,5,15v0,5,-2,5,-6,5r-115,0v-5,-1,-7,-3,-3,-10r83,-156r-73,0","w":142},"\u00a0":{"w":90}}});Cufon.registerFont({"w":195,"face":{"font-family":"Barmeno","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-41.0866 -337 326.014 90","underline-thickness":"18","underline-position":"-36","stemh":"32","stemv":"44","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":97},"!":{"d":"86,-246r-14,153v1,12,-14,7,-20,7v-3,0,-3,-2,-4,-7r-14,-154v0,-15,31,-4,44,-7v6,0,8,0,8,8xm87,-24v-1,14,-13,26,-28,26v-17,0,-27,-14,-27,-27v0,-15,12,-27,27,-27v15,0,29,12,28,28","w":105},"\"":{"d":"122,-261v3,36,-10,70,-13,105r-8,0r-15,-95v-1,-22,30,-24,36,-10xm54,-261v5,36,-10,70,-13,105r-8,0r-14,-95v-1,-22,30,-24,35,-10","w":142},"#":{"d":"201,-111r0,28r-54,0r-12,83r-28,0r11,-83r-40,0r-11,83r-29,0r12,-83r-50,0r0,-28r54,0r5,-38r-50,0r0,-28r54,0r11,-77r29,0r-11,77r40,0r11,-77r28,0r-10,77r49,0r0,28r-53,0r-6,38r50,0xm82,-111r40,0r6,-38r-40,0","w":209},"$":{"d":"153,-193v-20,0,-25,-41,-48,-40r0,84v48,21,71,28,76,81v4,46,-43,73,-76,74v-2,9,5,27,-4,29v-22,4,-8,-16,-12,-29v-67,-6,-75,-44,-75,-57v0,-12,9,-20,19,-20v31,7,19,44,56,48r0,-88v-36,-15,-72,-31,-72,-79v0,-32,20,-66,72,-69v2,-9,-5,-27,5,-29v21,-3,7,17,11,29v42,3,66,28,66,47v0,13,-9,19,-18,19xm105,-104r0,81v28,-1,38,-20,38,-36v0,-29,-27,-40,-38,-45xm89,-156r0,-78v-31,3,-35,27,-35,37v0,26,21,35,35,41"},"%":{"d":"109,-175v0,49,-17,83,-49,83v-30,0,-50,-30,-50,-83v0,-54,21,-83,50,-83v31,0,49,34,49,83xm81,-177v0,-20,-2,-63,-21,-63v-19,0,-21,43,-21,61v0,18,2,67,21,67v19,0,21,-47,21,-65xm275,-80v0,49,-18,84,-50,84v-29,0,-50,-29,-50,-84v0,-55,21,-83,50,-83v32,0,50,34,50,83xm246,-82v0,-19,-2,-63,-21,-63v-19,0,-21,43,-21,61v0,18,2,68,21,68v20,0,21,-48,21,-66xm218,-251r-128,244v-3,12,-32,9,-21,-3r126,-237v0,-11,26,-9,23,-4","w":285},"&":{"d":"225,0v-48,9,-57,-24,-76,-46v-12,19,-32,51,-73,51v-41,0,-64,-32,-64,-62v0,-36,26,-56,34,-62v6,-5,9,-6,32,-20v-45,-50,-39,-121,42,-121v41,0,62,23,62,51v0,30,-23,49,-54,67r31,41v7,-10,29,-41,57,-41v18,0,21,13,21,18v0,5,-3,17,-21,18v-20,1,-24,1,-42,23v19,26,42,49,59,78v0,4,-4,5,-8,5xm135,-65r-42,-55v-17,10,-39,24,-39,49v0,18,14,39,37,39v23,0,37,-21,44,-33xm114,-161v11,-7,33,-20,33,-43v0,-37,-56,-43,-57,-3v0,16,10,28,24,46","w":240},"\u2019":{"d":"29,-172v-23,-7,14,-30,9,-41v0,-14,-16,-22,-16,-34v0,-12,10,-20,22,-20v59,0,4,100,-15,95","w":90},"(":{"d":"110,-299v-67,93,-63,255,1,343v0,4,-4,8,-8,8v-112,-61,-117,-296,-1,-358v5,0,8,3,8,7","w":112},")":{"d":"3,44v65,-94,63,-257,-2,-343v0,-4,4,-7,8,-7v114,58,117,297,1,358v-5,0,-7,-4,-7,-8","w":112},"*":{"d":"60,-177v-25,-3,5,-41,-11,-52v-11,3,-39,47,-39,10v0,-24,31,-7,35,-24v0,-15,-42,-4,-35,-28v9,-34,22,11,40,13v15,-8,-13,-53,10,-53v23,0,-4,43,11,53v11,2,20,-26,29,-25v5,0,9,5,9,13v2,23,-29,9,-34,26v5,17,36,3,34,27v0,7,-3,13,-9,13v-9,1,-17,-25,-29,-25v-16,11,15,46,-11,52","w":119},"+":{"d":"168,-119r0,29r-64,0r0,64r-29,0r0,-64r-64,0r0,-29r64,0r0,-65r29,0r0,65r64,0","w":180},",":{"d":"37,5v2,-10,-18,-18,-18,-34v0,-14,13,-22,25,-22v15,0,29,12,29,36v0,36,-34,65,-47,65v-26,-7,15,-29,11,-45","w":90},"-":{"d":"92,-117v12,-1,5,17,7,26v0,5,-1,7,-6,7r-65,0v-12,1,-5,-17,-7,-26v0,-5,2,-7,7,-7r64,0","w":112},".":{"d":"71,-24v0,14,-11,26,-26,26v-15,0,-27,-12,-27,-27v1,-36,54,-33,53,1","w":90},"\/":{"d":"138,-306v2,2,29,4,22,15r-128,338v-5,10,-27,1,-28,-10r129,-338v2,-4,3,-5,5,-5","w":164},"0":{"d":"177,-128v0,76,-27,134,-79,134v-46,0,-80,-47,-80,-133v0,-87,34,-133,80,-133v52,0,79,56,79,132xm63,-133v0,37,-4,98,35,108v3,0,13,-1,20,-15v10,-18,34,-193,-21,-193v-31,0,-34,70,-34,100"},"1":{"d":"90,-8r0,-190v-17,3,-69,31,-75,4v0,-8,8,-10,11,-11v34,-10,53,-18,79,-41v10,-14,31,-14,30,2r0,236v-1,15,-23,8,-36,8v-6,0,-9,-1,-9,-8"},"2":{"d":"170,-193v0,69,-64,103,-94,152r88,0v15,-1,6,22,8,33v0,6,-1,8,-7,8r-139,0v-10,2,-15,-13,-6,-19r75,-99v18,-24,30,-41,30,-63v0,-22,-13,-41,-36,-41v-21,0,-33,14,-39,34v-2,8,-5,17,-15,17v-8,0,-14,-6,-14,-18v0,-32,26,-71,77,-71v46,0,72,33,72,67"},"3":{"d":"84,-225v-36,-1,-29,34,-51,41v-6,0,-12,-5,-12,-16v0,-24,22,-60,72,-60v41,0,68,25,68,58v0,33,-26,49,-37,56v21,4,56,49,50,73v0,35,-22,79,-84,79v-46,0,-76,-29,-76,-53v0,-13,9,-21,19,-21v32,0,24,45,60,44v23,0,37,-18,37,-39v0,-31,-25,-48,-58,-58v-6,-2,-12,-3,-12,-10v12,-24,58,-19,57,-60v0,-18,-12,-34,-33,-34"},"4":{"d":"171,-59v-3,7,-17,3,-26,4r0,50v1,14,-25,4,-36,7v-5,0,-7,-1,-7,-7r0,-50r-78,0v-13,2,-18,-12,-9,-27r101,-165v4,-19,34,-8,29,6r0,159v10,2,26,-5,26,7r0,16xm46,-82r58,0r0,-104"},"5":{"d":"134,-67v0,-47,-58,-66,-96,-45v-8,0,-11,-6,-10,-19r9,-115v1,-7,3,-8,9,-8r109,0v15,-1,6,21,8,32v0,5,0,9,-8,9r-91,0r-6,66v52,-23,119,0,119,72v0,44,-28,81,-84,81v-48,0,-75,-28,-75,-52v0,-15,11,-22,19,-22v30,0,24,44,58,44v23,0,39,-18,39,-43"},"6":{"d":"101,6v-58,0,-84,-51,-84,-102v0,-114,94,-164,135,-164v20,1,16,20,0,24v-18,4,-75,28,-88,108v37,-33,115,-18,115,56v0,45,-29,78,-78,78xm95,-116v-14,0,-34,2,-34,23v0,26,8,69,41,69v20,0,34,-17,34,-43v0,-20,-10,-49,-41,-49"},"7":{"d":"44,-6r91,-208r-105,0v-13,0,-5,-22,-7,-33v0,-5,1,-8,8,-8r137,0v12,0,15,9,7,25v-33,68,-58,140,-76,214v-1,27,-25,12,-46,16v-3,0,-9,0,-9,-6"},"8":{"d":"125,-141v26,18,53,36,53,75v0,38,-29,72,-83,72v-55,0,-78,-34,-78,-66v0,-35,26,-54,50,-71v-18,-13,-40,-32,-40,-67v0,-33,23,-62,73,-62v46,0,68,24,68,56v0,32,-22,49,-43,63xm89,-116v-19,15,-32,26,-32,48v0,18,11,44,41,44v23,0,37,-15,37,-35v0,-26,-20,-40,-46,-57xm104,-156v6,-4,27,-16,27,-42v0,-20,-14,-36,-34,-36v-17,0,-32,12,-32,31v0,19,15,34,39,47"},"9":{"d":"130,-129v-38,36,-114,17,-114,-55v0,-42,27,-76,78,-76v56,0,83,41,83,100v0,125,-103,166,-136,166v-25,-9,-15,-18,9,-27v48,-18,75,-59,80,-108xm133,-153v1,-37,-9,-80,-41,-80v-21,0,-34,19,-34,43v0,23,11,50,41,50v17,0,29,-9,34,-13"},":":{"d":"87,-24v0,15,-12,26,-27,26v-15,0,-27,-12,-27,-27v1,-37,54,-32,54,1xm87,-122v0,15,-13,26,-27,26v-15,0,-27,-12,-27,-27v1,-37,54,-32,54,1","w":105},";":{"d":"51,4v3,-9,-17,-18,-17,-33v0,-14,12,-23,24,-23v15,0,29,13,29,37v0,36,-33,65,-46,65v-26,-7,15,-29,10,-46xm88,-122v0,15,-13,26,-27,26v-15,0,-27,-11,-27,-27v1,-37,54,-32,54,1","w":105},"<":{"d":"180,-56r0,32r-180,-88r0,-31r180,-87r0,32r-144,71","w":180},"=":{"d":"180,-86r0,28r-180,0r0,-28r180,0xm180,-151r0,28r-180,0r0,-28r180,0","w":180},">":{"d":"180,-112r-180,88r0,-32r144,-71r-144,-71r0,-32r180,87r0,31","w":180},"?":{"d":"73,-233v-34,2,-15,43,-45,43v-11,0,-20,-9,-20,-22v0,-23,22,-48,70,-48v82,0,76,69,33,101v-22,16,-23,31,-23,59v0,19,-6,13,-19,14v-11,-12,-7,-40,-11,-60v7,-26,42,-25,42,-58v0,-15,-10,-29,-27,-29xm102,-24v0,14,-12,26,-27,26v-16,0,-26,-13,-26,-27v0,-15,12,-27,26,-27v15,0,28,12,27,28","w":150},"@":{"d":"283,-27r12,14v-36,35,-82,58,-132,58v-51,0,-138,-27,-138,-130v0,-86,68,-171,166,-171v63,0,107,38,107,104v0,64,-41,127,-83,127v-28,0,-30,-23,-30,-31v-17,23,-37,30,-52,30v-17,0,-47,-9,-47,-59v0,-71,82,-142,117,-71r6,-22r24,0v-7,36,-20,77,-22,116v0,11,7,16,11,16v20,0,55,-48,55,-105v0,-58,-39,-86,-89,-86v-73,0,-143,67,-143,153v0,129,162,139,238,57xm195,-125v0,-28,-17,-38,-30,-38v-33,0,-51,46,-51,78v0,33,22,36,29,36v28,0,52,-36,52,-76","w":322},"A":{"d":"165,-6r-26,-74r-73,0r-26,73v-2,13,-21,5,-33,7v-7,2,-8,-7,-5,-12r88,-235v2,-11,31,-11,38,-2r89,244v-5,11,-29,2,-42,5v-6,0,-7,0,-10,-6xm75,-107r55,0r-28,-83","w":217},"B":{"d":"86,3v-38,0,-65,7,-65,-18r0,-225v1,-24,37,-14,65,-17v49,-5,101,19,99,62v-1,37,-26,51,-47,59v39,7,62,38,60,68v-4,57,-45,71,-112,71xm69,-228r0,83v9,0,16,1,25,0v40,-4,42,-34,42,-43v0,-50,-38,-41,-67,-40xm69,-120r0,92v38,5,82,-4,79,-43v-5,-56,-50,-50,-79,-49","w":209},"C":{"d":"192,-186v-32,0,-28,-44,-67,-44v-33,0,-61,31,-61,89v0,70,36,110,78,110v33,-1,39,-17,57,-22v6,0,11,5,11,12v0,15,-28,47,-80,47v-81,0,-117,-66,-117,-135v0,-72,42,-131,116,-131v53,0,84,31,84,53v0,12,-9,21,-21,21","w":217},"D":{"d":"80,3v-21,0,-59,6,-59,-16r0,-226v3,-24,37,-13,67,-18v59,2,140,29,140,130v0,52,-25,81,-35,91v-29,30,-72,39,-113,39xm176,-129v0,-81,-41,-96,-106,-97r0,196v64,4,106,-26,106,-99","w":240},"E":{"d":"141,-116r-72,0r0,83r86,0v13,-2,7,18,8,28v-1,4,-2,5,-8,5r-125,0v-6,0,-9,0,-9,-8r0,-236v0,-8,3,-11,9,-11r125,0v12,-2,7,16,8,25v0,7,-2,8,-8,8r-86,0r0,74r72,0v12,-2,7,15,8,25v0,6,-2,7,-8,7","w":172},"F":{"d":"146,-121v-15,12,-53,2,-77,5r0,108v-1,17,-27,4,-40,8v-6,0,-8,-2,-8,-8r0,-238v0,-6,2,-9,8,-9r123,0v12,-2,7,15,8,25v0,5,0,8,-7,8r-84,0r0,74r69,0v13,-2,6,17,8,27","w":164},"G":{"d":"137,-27v41,0,36,-38,35,-77v-21,-3,-47,14,-47,-23v0,-6,4,-6,9,-6r76,0v7,0,8,3,8,9r0,81v-4,39,-32,49,-85,49v-92,0,-120,-70,-120,-133v0,-77,45,-133,117,-133v60,0,88,35,88,54v0,13,-9,22,-21,22v-34,0,-24,-47,-68,-46v-36,0,-64,32,-64,97v0,60,24,106,72,106","w":232},"H":{"d":"155,-8r0,-108r-86,0r0,108v-1,17,-27,4,-41,8v-5,0,-7,-1,-7,-8r0,-239v0,-16,28,-5,41,-8v6,0,7,2,7,8r0,99r86,0r0,-99v0,-15,28,-5,41,-8v6,0,8,2,8,8r0,240v-2,16,-28,3,-41,7v-6,0,-8,-2,-8,-8","w":225},"I":{"d":"70,-247r0,239v-2,16,-28,5,-42,8v-5,0,-7,-2,-7,-8r0,-239v1,-14,28,-4,41,-7v5,0,8,1,8,7","w":90},"J":{"d":"69,-247r-1,225v-4,75,-58,107,-91,107v-24,0,-19,-21,-8,-23v36,-6,50,-62,50,-91r0,-218v2,-14,28,-7,41,-7v6,0,9,1,9,7","w":90},"K":{"d":"188,-249v-23,36,-52,70,-77,105v29,47,65,89,91,139v-5,11,-31,5,-45,5v-8,0,-8,-1,-13,-8r-76,-117r0,117v-1,17,-27,4,-40,8v-4,0,-7,0,-7,-7r0,-240v2,-14,27,-4,40,-7v7,0,7,2,7,7r0,101r75,-101v6,-12,23,-5,38,-7v3,0,7,1,7,5","w":202},"L":{"d":"69,-247r0,214r83,0v12,-1,5,17,7,26v0,6,-2,7,-8,7r-123,0v-5,0,-7,-1,-7,-7r0,-240v2,-15,28,-4,41,-7v6,0,7,1,7,7","w":164},"M":{"d":"219,-8r0,-172r-71,174v-4,11,-15,9,-19,-1r-71,-173r0,172v0,14,-19,6,-30,8v-6,0,-7,-2,-7,-8r0,-239v1,-15,29,-4,42,-7v7,0,7,0,10,7r70,165r68,-164v5,-16,29,-8,46,-8v6,0,7,1,7,7r0,239v1,16,-25,5,-37,8v-7,0,-8,-1,-8,-8","w":285},"N":{"d":"67,-248r115,161r0,-160v-1,-12,20,-7,30,-7v6,0,7,1,7,7r0,240v-1,12,-29,10,-37,-1r-124,-174r0,174v1,14,-19,8,-30,8v-6,0,-7,-1,-7,-7r0,-240v1,-15,23,-4,35,-7v6,0,7,0,11,6","w":240},"O":{"d":"242,-134v3,81,-45,140,-114,140v-62,0,-115,-46,-115,-133v0,-75,43,-133,116,-133v72,0,110,58,113,126xm128,-28v61,-3,85,-112,47,-173v-18,-27,-41,-28,-48,-28v-51,-3,-63,74,-63,98v0,14,1,27,3,37v10,59,47,66,61,66","w":254},"P":{"d":"21,-240v1,-24,37,-17,68,-17v22,0,102,0,102,76v0,63,-58,83,-122,77r0,96v-1,17,-27,4,-41,8v-7,0,-7,-2,-7,-8r0,-232xm69,-228r0,96v35,3,72,1,72,-49v0,-54,-41,-49,-72,-47"},"Q":{"d":"162,1v12,41,56,56,78,62v17,1,23,20,2,22v-7,0,-101,-11,-131,-80v-71,-12,-98,-72,-98,-130v0,-89,52,-135,115,-135v128,-1,163,211,34,261xm127,-24v41,6,64,-62,64,-106v0,-17,-1,-50,-17,-72v-53,-74,-111,5,-111,74v0,22,3,52,16,74v18,30,43,30,48,30","w":254},"R":{"d":"21,-240v1,-25,34,-17,65,-17v21,0,53,1,75,18v16,13,23,33,23,53v0,40,-31,60,-56,68r70,113v-6,12,-29,2,-43,5v-8,0,-8,-1,-12,-7r-54,-92v-1,-9,-21,-14,-21,0r0,90v1,16,-26,6,-39,9v-5,0,-8,-1,-8,-8r0,-232xm68,-131v42,3,63,-7,68,-49v-5,-57,-38,-49,-68,-48r0,97","w":202},"S":{"d":"150,-191v-29,0,-21,-41,-56,-40v-18,0,-32,14,-32,32v-1,28,36,39,60,52v23,12,58,31,58,79v0,47,-36,74,-83,74v-58,0,-82,-38,-82,-59v0,-16,12,-22,21,-22v35,0,21,48,64,50v19,0,34,-14,34,-34v0,-67,-116,-40,-116,-131v0,-44,32,-70,77,-70v48,0,76,27,76,48v0,12,-9,21,-21,21"},"T":{"d":"169,-222r-55,0r0,213v1,17,-27,6,-40,9v-6,0,-8,-2,-8,-9r0,-213r-55,0v-12,1,-7,-15,-8,-25v0,-6,3,-8,8,-8r158,0v12,-2,7,15,8,25v0,6,-2,8,-8,8","w":180},"U":{"d":"106,6v-48,0,-88,-28,-88,-83r0,-170v2,-15,29,-4,42,-7v6,0,8,1,8,7r0,164v0,15,1,51,43,51v42,0,42,-36,42,-47r0,-168v0,-13,21,-5,32,-7v5,0,7,1,7,7v-3,71,9,151,-7,212v-2,7,-20,41,-79,41","w":209},"V":{"d":"52,-247r55,167r55,-167v3,-13,20,-5,33,-7v7,0,11,3,6,10r-82,237v-2,10,-28,12,-33,1r-86,-243v5,-12,29,-2,42,-5v6,0,8,1,10,7","w":202},"W":{"d":"201,-7r-52,-154r-48,154v-1,12,-30,11,-33,0r-68,-242v5,-11,28,-5,41,-5v6,0,7,0,9,8r41,164r51,-165v1,-10,21,-12,25,1r51,164r42,-165v2,-13,21,-5,33,-7v7,0,8,3,6,11r-66,236v-1,11,-28,12,-32,0","w":299},"X":{"d":"141,-7r-48,-85r-50,85v-5,12,-21,5,-35,7v-8,0,-11,-4,-4,-11r69,-119r-63,-119v7,-9,44,-11,51,2r40,70r40,-70v6,-12,21,-5,36,-7v5,-2,9,6,5,11r-61,104r73,134v-7,10,-43,9,-53,-2"},"Y":{"d":"195,-250r-73,137r0,106v-3,15,-29,3,-43,7v-6,0,-7,-2,-7,-7r0,-108r-72,-134v5,-11,31,-5,45,-5v6,0,7,1,10,6r48,93r50,-92v4,-12,22,-5,35,-7v3,0,7,0,7,4"},"Z":{"d":"172,-249v-30,76,-69,143,-101,216r92,0v13,-2,6,17,8,27v0,6,-3,6,-8,6r-147,0v-9,0,-11,-2,-7,-11r101,-211r-87,0v-12,1,-5,-16,-7,-25v0,-5,1,-7,7,-7r142,0v4,0,7,1,7,5","w":180},"[":{"d":"59,-281r0,308v13,2,36,-6,39,6v0,13,0,14,-7,14r-62,0v-5,0,-7,0,-7,-6r0,-336v0,-6,2,-6,7,-6r62,0v6,0,7,1,7,13v-1,14,-27,4,-39,7","w":105},"\\":{"d":"5,-291v-7,-11,20,-13,22,-15v2,0,3,1,5,5r129,341v-4,7,-25,18,-29,7","w":164},"]":{"d":"46,27r0,-308v-13,-2,-39,7,-39,-7v0,-13,0,-14,7,-14r62,0v5,0,7,0,7,6r0,337v0,6,-2,6,-7,6r-62,0v-6,0,-7,-1,-7,-13v1,-14,27,-4,39,-7","w":105},"^":{"d":"147,-254r64,133r-35,0r-44,-94r-46,94r-35,0r68,-133r28,0","w":262},"_":{"d":"184,27r0,18r-188,0r0,-18r188,0","w":180},"\u2018":{"d":"60,-267v24,7,-13,31,-8,42v1,14,16,20,16,33v0,12,-10,20,-22,20v-13,0,-26,-11,-26,-33v0,-33,29,-62,40,-62","w":90},"a":{"d":"83,-166v-33,0,-16,35,-45,37v-11,0,-20,-7,-20,-19v0,-22,28,-43,72,-43v58,0,58,36,58,63r0,90v11,35,-54,44,-69,43v-12,0,-70,0,-70,-51v0,-43,40,-57,96,-69v-1,-24,7,-51,-22,-51xm83,-20v40,0,15,-43,22,-74v-28,9,-52,16,-52,43v0,18,11,31,30,31","w":164},"b":{"d":"85,5v-39,0,-66,-9,-66,-55r0,-218v0,-14,25,-4,36,-7v6,0,8,0,8,7r0,99v7,-7,23,-22,50,-22v40,0,63,36,63,87v0,65,-34,109,-91,109xm63,-146v3,44,-13,124,26,123v21,0,42,-24,42,-71v0,-18,-3,-65,-38,-65v-14,0,-24,8,-30,13","w":187},"c":{"d":"134,-124v-21,0,-21,-41,-47,-39v-57,5,-43,130,10,127v30,-2,32,-26,48,-34v5,0,9,5,9,13v0,21,-19,62,-67,62v-51,0,-75,-46,-75,-97v0,-48,23,-99,81,-99v41,0,60,30,60,47v0,13,-9,20,-19,20","w":164},"d":{"d":"169,-37v2,32,-38,42,-73,42v-54,0,-84,-34,-84,-93v0,-62,53,-129,112,-94r0,-85v-1,-15,24,-7,36,-9v7,0,9,2,9,8r0,231xm124,-51r0,-107v-34,-26,-67,12,-67,62v0,45,18,72,45,72v22,0,22,-16,22,-27","w":187},"e":{"d":"99,-35v27,0,40,-26,55,-34v5,0,9,4,9,11v0,10,-14,63,-71,63v-48,0,-80,-35,-80,-99v0,-72,41,-97,80,-97v56,0,70,51,70,68v0,13,-9,13,-13,14r-100,15v6,50,33,59,50,59xm48,-117r69,-11v-1,-23,-16,-36,-32,-36v-25,0,-35,22,-37,47","w":172},"f":{"d":"28,-186v1,-38,16,-93,62,-93v26,0,27,37,6,35v-34,-13,-39,31,-24,58v15,1,42,-7,34,16v-3,9,-23,2,-34,4r0,158v0,17,-24,4,-36,8v-6,0,-8,-1,-8,-8r0,-158v-10,-2,-26,5,-27,-6v-3,-23,13,-11,27,-14","w":105},"g":{"d":"85,-191v35,0,57,15,88,5v6,0,12,19,1,19r-28,8v5,8,10,16,10,34v-2,52,-47,69,-89,59v-19,19,-12,31,25,31v42,0,95,-7,95,48v0,25,-25,73,-109,73v-33,0,-70,-10,-70,-42v0,-21,19,-36,33,-45v-9,-3,-25,-8,-25,-26v0,-17,20,-34,33,-45v-14,-4,-32,-32,-32,-56v0,-36,24,-63,68,-63xm62,4v-31,22,-13,54,31,54v26,0,54,-12,54,-31v0,-33,-57,-15,-85,-23xm116,-123v-1,-23,-14,-46,-32,-45v-14,0,-28,10,-28,33v0,50,61,62,60,12","w":180},"h":{"d":"123,-122v2,-21,-9,-38,-28,-38v-15,0,-27,10,-31,14r0,137v1,16,-24,6,-37,9v-6,0,-8,-1,-8,-8r0,-260v1,-13,26,-7,38,-7v6,0,7,0,7,6r0,98v15,-14,72,-39,94,1v24,43,4,104,10,161v1,17,-23,6,-36,9v-8,0,-9,-1,-9,-8r0,-114","w":187},"i":{"d":"64,-179r0,171v1,16,-27,5,-39,8v-6,0,-6,-2,-6,-8r0,-171v1,-14,26,-4,38,-7v7,0,7,1,7,7xm65,-235v0,13,-9,23,-23,23v-15,0,-25,-9,-25,-22v0,-13,9,-23,25,-23v15,0,23,10,23,22","w":82},"j":{"d":"64,-178v-3,74,11,152,-12,210v-15,40,-46,54,-63,54v-15,0,-16,-15,-6,-20v54,-28,29,-161,35,-244v1,-16,26,-5,39,-8v7,0,7,3,7,8xm42,-257v33,0,30,46,0,45v-14,0,-24,-9,-24,-22v0,-13,9,-23,24,-23","w":82},"k":{"d":"175,-182v-19,28,-46,49,-67,75r77,102v-5,11,-31,5,-45,5v-7,0,-7,0,-11,-5r-65,-87r0,85v-1,14,-25,4,-37,7v-6,0,-8,-1,-8,-7r0,-262v2,-13,25,-3,37,-6v5,0,8,0,8,6r0,162r65,-72v6,-12,23,-5,38,-7v2,0,8,-1,8,4","w":180},"l":{"d":"19,-8r0,-261v1,-13,25,-3,36,-6v6,0,8,0,8,6r0,261v0,15,-23,8,-36,8v-6,0,-8,-1,-8,-8","w":82},"m":{"d":"92,-165v-12,-3,-35,18,-29,34r0,123v0,15,-23,8,-36,8v-7,0,-8,-3,-8,-8r0,-142v-6,-58,111,-44,126,-21v16,-18,76,-31,103,-8v17,14,18,36,18,48r0,123v0,14,-24,6,-37,8v-6,0,-8,-2,-8,-8r0,-118v0,-15,0,-38,-28,-38v-22,0,-28,12,-28,33r0,123v0,15,-23,8,-36,8v-6,0,-9,-1,-9,-8r0,-120v0,-11,0,-37,-28,-37","w":285},"n":{"d":"97,-191v111,0,71,99,71,183v0,15,-24,5,-37,8v-7,0,-8,-3,-8,-8r0,-122v0,-14,1,-37,-30,-37v-29,0,-29,23,-29,31r0,127v1,16,-24,9,-37,9v-6,0,-8,-2,-8,-8r0,-142v-5,-35,48,-41,78,-41","w":187},"o":{"d":"98,-191v118,0,110,198,-1,196v-53,0,-85,-43,-85,-98v0,-56,33,-98,86,-98xm136,-98v-2,-43,-19,-67,-40,-67v-24,0,-38,30,-38,66v0,40,17,74,41,74v23,0,39,-32,37,-73"},"p":{"d":"19,-144v-2,-44,27,-47,73,-47v10,0,39,0,60,21v57,55,6,214,-88,165r0,82v0,15,-24,5,-36,8v-6,0,-9,-1,-9,-8r0,-221xm64,-140r0,107v43,27,66,-10,66,-61v0,-50,-21,-71,-44,-71v-22,0,-22,15,-22,25","w":187},"q":{"d":"103,-191v37,0,65,13,65,50r0,218v-1,15,-24,4,-36,7v-6,0,-8,0,-8,-7r0,-93v-8,7,-23,21,-47,21v-43,0,-65,-41,-65,-88v0,-45,22,-108,91,-108xm124,-43r0,-90v0,-12,0,-32,-23,-32v-54,-1,-62,133,-6,135v11,0,21,-5,29,-13","w":187},"r":{"d":"120,-145v-20,1,-15,-23,-37,-23v-19,0,-19,12,-19,21r0,139v0,16,-25,5,-37,8v-6,0,-8,-2,-8,-8r0,-150v2,-33,37,-33,76,-33v22,0,44,6,44,27v0,11,-7,19,-19,19","w":135},"s":{"d":"121,-135v-24,-2,-15,-32,-44,-32v-40,0,-18,48,7,51v26,15,60,18,60,64v0,20,-10,57,-64,57v-50,0,-67,-30,-67,-44v0,-11,8,-19,18,-19v23,2,26,35,50,35v13,0,22,-9,22,-22v-11,-54,-87,-24,-87,-93v0,-26,17,-53,63,-53v44,0,60,24,60,38v0,10,-8,18,-18,18","w":157},"t":{"d":"74,4v-77,0,-43,-102,-50,-171v-13,-2,-24,8,-24,-14v0,-9,16,-3,24,-5v1,-13,-3,-28,7,-33v11,-6,21,-15,32,-20v11,8,2,36,5,53v11,2,32,-6,34,5v5,26,-19,9,-34,14r0,112v0,10,1,34,25,34v9,0,15,0,15,9v0,10,-20,16,-34,16","w":105},"u":{"d":"169,-45v2,42,-28,50,-76,50v-69,0,-74,-36,-74,-59r0,-126v2,-13,25,-3,37,-6v5,0,8,1,8,7r0,120v0,12,0,34,31,34v29,0,29,-17,29,-29r0,-125v1,-14,24,-4,36,-7v6,0,9,0,9,7r0,134","w":187},"v":{"d":"49,-180r39,124r39,-125v4,-9,30,-8,38,-1r-61,176v-3,12,-21,6,-33,6v-6,0,-6,-1,-8,-6r-63,-176v5,-10,27,-1,40,-4v5,0,7,0,9,6","w":164},"w":{"d":"154,-7r-30,-96r-31,97v-3,10,-32,10,-39,0r-54,-175v4,-11,25,-2,37,-5v6,0,9,0,11,7r33,120v14,-42,22,-90,41,-127v8,1,15,-3,18,6r38,121r33,-120v1,-11,29,-9,36,-3r-53,175v-3,12,-34,11,-40,0","w":247},"x":{"d":"107,-6r-32,-55r-36,55v-5,11,-20,4,-33,6v-6,0,-7,-3,-3,-10r54,-81r-52,-91v6,-8,41,-9,48,2r30,50r32,-50v5,-9,28,-9,37,-2v-14,29,-35,55,-51,82r56,96v-6,10,-27,1,-39,4v-7,0,-8,0,-11,-6","w":157},"y":{"d":"172,-181r-73,206v-8,22,-24,62,-68,62v-38,0,-40,-38,-12,-42v32,8,41,4,54,-39r-71,-187v5,-11,27,-2,40,-5v7,0,6,0,9,7r43,125r40,-125v2,-12,19,-5,31,-7v3,0,7,0,7,5","w":172},"z":{"d":"140,-181r-74,155r66,0v12,-3,7,18,7,23v-1,3,-3,3,-7,3r-117,0v-8,0,-7,-4,-3,-12r73,-149r-63,0v-11,2,-5,-15,-6,-21v0,-4,2,-4,6,-4r110,0v3,0,8,0,8,5","w":150},"{":{"d":"26,-193v0,-62,-1,-109,60,-109v8,0,17,1,14,12v0,4,-2,5,-9,5v-63,3,5,154,-60,158v38,6,31,54,32,104v0,32,0,50,28,53v13,-3,10,14,7,17v-82,2,-72,-45,-72,-109v0,-30,-1,-52,-23,-56v-8,-1,-8,-3,-8,-13v0,-5,1,-5,8,-6v23,-5,23,-30,23,-56","w":105},"|":{"d":"55,-270r0,360r-28,0r0,-360r28,0","w":82},"}":{"d":"19,-302v61,-3,60,46,60,109v0,26,0,51,23,56v7,1,8,1,8,6v0,10,1,12,-7,13v-31,4,-24,53,-24,90v0,44,-5,77,-72,75v-3,-3,-6,-20,7,-17v63,-4,-5,-151,60,-158v-38,-4,-31,-52,-32,-103v0,-30,0,-54,-28,-54v-11,0,-9,-5,-9,-13v0,-5,10,-4,14,-4","w":105},"~":{"d":"93,-134v24,0,60,25,77,25v17,0,30,-18,34,-23r14,26v-12,15,-30,29,-50,29v-21,0,-58,-26,-75,-26v-14,0,-19,7,-34,25r-14,-26v8,-11,22,-30,48,-30","w":262},"\u00a1":{"d":"19,-8r14,-153v1,-12,10,-7,20,-8v3,0,4,2,4,7r14,154v-1,17,-30,4,-44,8v-5,0,-9,0,-8,-8xm18,-231v0,-14,13,-25,28,-25v17,0,27,14,27,27v0,15,-12,27,-27,27v-15,0,-29,-13,-28,-29","w":105},"\u00a2":{"d":"138,-128v-23,-3,-16,-38,-44,-39r0,134v32,3,34,-28,50,-34v4,0,9,3,9,11v3,26,-40,67,-59,61v-2,9,5,26,-5,28v-19,3,-7,-16,-10,-28v-41,-6,-67,-43,-67,-97v0,-53,25,-94,67,-100v2,-9,-5,-28,5,-29v19,-2,6,17,10,29v41,2,60,30,60,47v0,13,-9,17,-16,17xm79,-37r0,-129v-49,17,-42,108,0,129","w":164},"\u00a3":{"d":"176,-36v16,0,34,-33,40,-5v0,13,-11,47,-46,47v-28,0,-47,-22,-65,-42v-10,25,-25,42,-50,42v-28,0,-43,-23,-43,-47v-1,-38,36,-64,73,-50v-1,-10,-3,-19,-11,-37r-39,0v-5,0,-6,-1,-6,-6v-4,-27,21,-9,36,-14v-28,-48,-5,-112,61,-112v52,0,74,37,74,57v0,14,-10,20,-19,20v-33,0,-14,-52,-55,-51v-38,2,-30,53,-20,86r48,0v4,0,8,0,8,5v3,31,-33,9,-52,15v3,10,5,33,4,51v16,11,43,41,62,41xm86,-56v-12,-15,-47,-18,-47,9v8,40,44,21,47,-9","w":225},"\u00a5":{"d":"129,-126v-5,7,-8,15,-7,28v20,6,60,-16,55,16v0,6,-1,6,-7,6r-48,0r0,69v-3,15,-29,3,-43,7v-6,0,-7,-2,-7,-7r0,-69r-46,0v-6,0,-9,-1,-9,-7v-3,-32,36,-8,55,-15v1,-12,-1,-22,-6,-28v-16,-3,-46,8,-49,-7v-5,-28,20,-12,37,-16r-54,-100v4,-13,31,-3,45,-6v6,0,7,2,10,7r48,93r50,-92v3,-14,21,-6,35,-8v7,0,8,5,4,12r-51,94v17,4,42,-11,36,16v0,6,-1,7,-7,7r-41,0"},"\u0192":{"d":"35,-166v4,-33,24,-93,72,-92v11,0,19,5,19,16v0,38,-57,-4,-53,50v0,5,0,18,5,26v16,2,43,-8,33,17v-5,7,-24,1,-34,3v-8,85,-10,202,-94,216v-27,4,-34,-36,-7,-37v13,9,37,7,37,-9v10,-51,13,-115,20,-170v-9,-2,-25,4,-27,-4v-1,-26,13,-13,29,-16","w":112},"\u00a7":{"d":"40,-23v32,0,15,44,53,46v44,-12,15,-60,-17,-67v-27,-13,-65,-21,-65,-65v0,-30,23,-45,35,-54v-34,-25,-22,-97,42,-97v42,0,63,25,63,44v0,14,-10,21,-18,21v-27,0,-17,-40,-47,-40v-15,0,-22,12,-22,24v2,49,99,39,98,99v0,15,-9,35,-33,53v9,7,27,21,27,50v0,31,-23,59,-65,59v-48,0,-71,-32,-71,-51v0,-11,7,-22,20,-22xm109,-71v5,-4,17,-16,17,-32v1,-27,-43,-34,-62,-47v-5,4,-18,16,-18,31v0,32,41,34,63,48","w":172},"\u00a4":{"d":"225,-205r-27,27v24,24,22,90,-1,112r28,28r-22,21r-27,-27v-25,23,-89,23,-112,-1r-27,28r-22,-22r27,-27v-24,-19,-20,-97,0,-112r-27,-27r22,-22r27,27v16,-19,93,-25,112,0r27,-27xm187,-122v0,-42,-33,-68,-66,-68v-37,0,-68,28,-68,67v0,42,32,69,67,69v36,0,67,-27,67,-68","w":240},"'":{"d":"54,-261v5,36,-10,70,-13,105r-8,0r-14,-95v-1,-22,30,-24,35,-10","w":74},"\u201c":{"d":"121,-267v22,8,-14,29,-9,42v1,14,16,20,16,33v0,12,-9,20,-21,20v-13,0,-27,-10,-27,-33v0,-34,30,-62,41,-62xm60,-267v24,8,-13,29,-9,42v1,15,18,20,17,33v0,11,-10,20,-22,20v-14,0,-26,-10,-26,-33v0,-34,29,-62,40,-62","w":150},"\u00ab":{"d":"119,-118v-14,25,18,45,22,69v2,11,-16,11,-18,2v-12,-17,-24,-34,-40,-47v-9,-5,-11,-16,-2,-20v9,-4,37,-45,52,-54v8,-1,10,11,5,15xm56,-118v-14,25,16,46,22,69v0,11,-14,10,-18,2v-16,-29,-36,-37,-48,-58v11,-20,26,-25,43,-49v9,-13,10,-14,14,-14v7,0,10,9,6,15","w":157},"\u2013":{"d":"25,-117r145,0v11,-3,6,14,8,21v0,6,-2,6,-8,6r-144,0v-11,3,-8,-12,-9,-20v0,-5,2,-7,8,-7","w":202},"\u00b7":{"d":"71,-99v0,15,-12,26,-26,26v-15,0,-27,-12,-27,-27v1,-36,55,-33,53,1","w":90},"\u00b6":{"d":"88,-115v-43,-5,-78,-61,-46,-107v37,-53,85,-26,152,-32r0,19r-12,0r0,295r-21,0r0,-295r-52,0r0,295r-21,0r0,-175","w":240},"\u201d":{"d":"29,-172v-22,-8,13,-29,9,-41v0,-15,-16,-21,-16,-34v0,-12,9,-20,21,-20v13,0,27,10,27,33v0,34,-30,62,-41,62xm90,-172v-24,-7,12,-28,8,-41v0,-16,-17,-22,-16,-34v0,-12,10,-20,22,-20v13,0,26,10,26,33v0,34,-29,62,-40,62","w":150},"\u00bb":{"d":"38,-90v15,-26,-18,-45,-21,-70v-2,-12,15,-8,17,-1v8,11,23,33,41,47v9,7,9,15,1,20v-6,0,-38,47,-51,54v-7,1,-9,-9,-6,-15xm102,-90v13,-27,-22,-45,-22,-70v0,-11,15,-9,17,-1v16,25,34,39,49,57v-10,21,-21,18,-43,50v-9,12,-11,14,-15,14v-7,1,-9,-9,-6,-15","w":157},"\u2026":{"d":"86,-24v0,14,-11,26,-26,26v-15,0,-27,-12,-27,-27v1,-36,54,-33,53,1xm206,-24v0,14,-11,26,-26,26v-15,0,-27,-12,-27,-27v1,-36,54,-33,53,1xm326,-24v0,14,-11,26,-26,26v-15,0,-27,-12,-27,-27v1,-36,54,-33,53,1","w":360},"\u00bf":{"d":"77,-21v34,-2,15,-43,45,-43v11,0,19,8,19,22v0,22,-21,48,-69,48v-81,0,-77,-69,-33,-101v22,-16,22,-31,23,-59v1,-18,6,-13,19,-14v4,0,4,1,5,7r6,53v-7,26,-42,25,-42,58v0,14,10,29,27,29xm48,-231v0,-14,13,-25,27,-25v17,0,26,13,26,27v0,15,-12,27,-26,27v-15,0,-28,-13,-27,-29","w":150},"`":{"d":"32,-262v20,10,33,29,45,48v0,11,-14,12,-18,5v-13,-13,-34,-17,-39,-38v0,-8,5,-15,12,-15","w":97},"\u00b4":{"d":"77,-247v-7,24,-31,29,-48,43v-9,0,-12,-14,-4,-20v14,-11,22,-30,40,-38v7,0,12,7,12,15","w":97},"\u00af":{"d":"1,-248r95,0v10,-3,8,12,8,20v0,6,-3,7,-9,7r-93,0v-12,2,-7,-12,-8,-21v0,-5,1,-6,7,-6","w":97},"\u00a8":{"d":"39,-236v0,11,-7,23,-24,23v-14,0,-24,-9,-24,-22v0,-14,11,-23,24,-23v12,0,24,9,24,22xm106,-236v0,12,-7,23,-23,23v-15,0,-24,-10,-24,-22v0,-14,11,-23,24,-23v12,0,23,9,23,22","w":97},"\u00b8":{"d":"11,69v7,-16,49,10,50,-17v-1,-20,-27,-4,-25,-20r4,-33r19,0r-5,27v32,0,33,23,33,26v5,31,-61,45,-76,17","w":97},"\u2014":{"d":"28,-117r199,0v4,0,7,0,7,6v0,13,0,15,-7,15r-199,0v-7,0,-7,-2,-7,-15v0,-5,2,-6,7,-6","w":254},"\u00c6":{"d":"170,-116r17,83r78,0v13,-1,6,16,8,26v0,6,-3,7,-8,7r-112,0v-6,0,-8,0,-9,-7r-14,-71r-67,0r-28,71v-4,13,-21,5,-34,7v-5,0,-9,-3,-5,-12r101,-234v3,-7,4,-8,11,-8r130,0v13,-2,6,16,8,26v0,6,-2,7,-8,7r-89,0r15,73r74,0v12,-2,7,16,8,26v0,5,-3,6,-8,6r-68,0xm73,-105r52,0r-17,-87","w":285},"\u00aa":{"d":"53,-241v-21,1,-9,22,-28,23v-7,0,-13,-5,-13,-12v0,-14,18,-27,45,-27v59,0,27,51,36,95v5,23,-31,28,-43,27v-6,0,-44,0,-44,-32v0,-28,26,-34,60,-43v0,-22,0,-31,-13,-31xm53,-151v24,-1,9,-26,13,-45v-17,5,-31,9,-31,26v0,10,6,19,18,19","w":105},"\u0141":{"d":"116,-192v16,38,-29,46,-47,61r0,98r83,0v12,-1,5,17,7,26v0,6,-2,7,-8,7r-123,0v-5,0,-7,-1,-7,-7r0,-92v-7,2,-19,17,-21,4v-4,-21,6,-30,21,-37r0,-115v2,-15,28,-4,41,-7v6,0,7,1,7,7r0,84v16,-9,30,-21,47,-29","w":164},"\u00d8":{"d":"239,-268v-8,15,-20,28,-29,43v71,75,20,231,-83,231v-37,0,-57,-15,-67,-23v-10,13,-18,29,-30,40v-3,-1,-19,-8,-11,-14r27,-39v-9,-10,-33,-37,-33,-92v0,-82,47,-138,116,-138v37,0,57,13,67,21v10,-13,17,-28,29,-39v1,0,14,7,14,10xm184,-189r-100,140v5,6,18,22,43,22v40,0,68,-41,68,-99v0,-32,-7,-53,-11,-63xm74,-69r100,-139v-36,-45,-114,-23,-114,77v0,34,10,53,14,62","w":254},"\u0152":{"d":"177,-236v1,-21,-2,-16,8,-18r129,0v12,-1,5,15,7,24v0,5,0,8,-7,8r-90,0r0,74r77,0v13,-2,8,15,8,24v0,6,-2,7,-8,7r-77,0r0,84r90,0v13,-1,5,16,7,26v0,6,-3,7,-7,7r-129,0v-10,2,-7,-11,-8,-19v-8,8,-23,25,-60,25v-63,0,-104,-55,-104,-133v0,-87,46,-133,106,-133v35,0,50,16,58,24xm127,-27v64,-5,50,-70,50,-131v0,-72,-48,-73,-52,-73v-32,0,-62,32,-62,99v1,48,17,109,64,105","w":330},"\u00ba":{"d":"64,-257v74,1,69,123,0,122v-34,0,-54,-27,-54,-61v0,-35,21,-61,54,-61xm88,-199v-1,-26,-11,-41,-25,-41v-15,0,-23,19,-23,41v0,26,11,45,25,45v14,0,24,-19,23,-45","w":127},"\u00e6":{"d":"82,-167v-32,0,-17,39,-46,41v-9,0,-19,-6,-19,-19v0,-15,18,-46,69,-46v38,0,47,21,51,30v6,-9,19,-30,52,-30v54,0,64,54,64,70v0,12,-6,14,-15,15r-90,13v-2,22,21,60,45,58v35,-2,35,-30,51,-35v4,0,9,4,9,12v0,19,-19,63,-65,63v-15,4,-50,-19,-54,-34v-5,8,-18,34,-62,34v-41,0,-63,-25,-63,-51v0,-46,54,-57,99,-63v-1,-27,-2,-30,-3,-36v-3,-11,-9,-22,-23,-22xm147,-115r65,-9v-2,-33,-18,-40,-29,-40v-18,0,-36,15,-36,49xm109,-88v-23,3,-56,9,-56,38v0,15,9,30,27,30v38,0,30,-40,29,-68","w":262},"\u0131":{"d":"64,-179r0,171v1,15,-27,5,-39,8v-6,0,-6,-2,-6,-8r0,-171v1,-14,26,-4,38,-7v7,0,7,1,7,7","w":82},"\u0142":{"d":"82,-195v3,30,-8,24,-19,37r0,150v0,15,-23,8,-36,8v-6,0,-8,-1,-8,-8r0,-110v-4,4,-18,18,-19,4v-4,-21,8,-27,19,-36r0,-119v2,-13,24,-3,36,-6v6,0,8,0,8,6r0,79v7,-9,20,-17,19,-5","w":82},"\u00f8":{"d":"184,-198v-7,12,-16,22,-24,34v49,59,17,169,-63,169v-30,0,-46,-13,-52,-18v-10,10,-20,43,-35,23v7,-12,17,-23,24,-34v-6,-8,-22,-29,-22,-69v0,-53,31,-98,87,-98v28,0,43,11,50,16v10,-10,21,-45,35,-23xm134,-128r-67,86v34,48,74,5,74,-46v0,-14,-2,-21,-7,-40xm61,-62r67,-85v-24,-39,-76,-16,-73,45v0,18,3,30,6,40"},"\u0153":{"d":"211,5v-26,0,-53,-21,-60,-38v-6,12,-20,38,-59,38v-49,0,-80,-39,-80,-99v0,-53,27,-98,80,-98v39,0,53,25,60,38v8,-17,24,-37,57,-37v51,0,67,46,67,69v0,12,-8,14,-14,15r-94,13v2,13,2,30,13,42v26,31,55,19,73,-7v5,-7,6,-11,12,-11v9,0,9,11,9,13v0,16,-15,62,-64,62xm167,-116r67,-9v-11,-56,-37,-46,-58,-24v-6,10,-8,21,-9,33xm129,-88v0,-36,-3,-70,-38,-78v-54,9,-45,141,4,141v28,0,34,-34,34,-63","w":285},"\u00df":{"d":"86,-138v-1,-30,40,-59,40,-83v0,-15,-11,-32,-31,-32v-23,0,-31,21,-31,46r0,200v-1,14,-25,4,-37,7v-6,0,-8,-1,-8,-7v5,-86,-17,-164,15,-233v19,-41,60,-40,69,-40v38,0,61,23,61,50v0,28,-39,60,-37,77v4,31,65,51,65,98v0,32,-22,60,-66,60v-36,0,-45,-18,-45,-28v0,-10,8,-17,17,-17v16,2,18,19,36,19v30,0,21,-47,0,-56v-17,-18,-47,-28,-48,-61"},"\u00a6":{"d":"27,63r0,-126r29,0r0,126r-29,0xm56,-117r-29,0r0,-126r29,0r0,126","w":82},"\u00d2":{"d":"242,-134v3,81,-45,140,-114,140v-62,0,-115,-46,-115,-133v0,-75,43,-133,116,-133v72,0,110,58,113,126xm128,-28v61,-3,85,-112,47,-173v-18,-27,-41,-28,-48,-28v-51,-3,-63,74,-63,98v0,14,1,27,3,37v10,59,47,66,61,66xm91,-336v21,11,36,31,47,52v0,10,-11,12,-17,7v-14,-15,-38,-19,-43,-43v0,-9,5,-16,13,-16","w":254},"\u00c7":{"d":"84,69v2,-18,50,12,50,-18v0,-19,-27,-3,-25,-19r3,-28v-84,-12,-99,-91,-99,-133v0,-72,42,-131,116,-131v53,0,84,31,84,53v0,12,-10,21,-22,21v-32,0,-20,-44,-66,-44v-33,0,-61,31,-61,89v0,70,35,110,77,110v33,-1,40,-17,58,-22v6,0,11,5,11,12v0,12,-22,46,-80,47r-4,20v32,0,33,23,33,26v5,31,-60,44,-75,17","w":217},"\u00d7":{"d":"111,-105r54,54r-21,20r-54,-54r-54,54r-21,-20r55,-54r-55,-54r21,-20r54,54r54,-54r21,20","w":180},"\u00d1":{"d":"67,-248r115,161r0,-160v-1,-12,20,-7,30,-7v6,0,7,1,7,7r0,240v-1,12,-29,10,-37,-1r-124,-174r0,174v1,14,-19,8,-30,8v-6,0,-7,-1,-7,-7r0,-240v1,-15,23,-4,35,-7v6,0,7,0,11,6xm143,-276v-19,0,-33,-16,-47,-18v-14,-2,-20,19,-26,17v-3,0,-8,-3,-8,-10v0,-9,8,-34,35,-34v16,0,32,18,47,18v15,0,18,-17,26,-17v2,0,7,0,7,9v0,12,-8,35,-34,35","w":240},"\u00d5":{"d":"242,-134v3,81,-45,140,-114,140v-62,0,-115,-46,-115,-133v0,-75,43,-133,116,-133v72,0,110,58,113,126xm128,-28v61,-3,85,-112,47,-173v-18,-27,-41,-28,-48,-28v-51,-3,-63,74,-63,98v0,14,1,27,3,37v10,59,47,66,61,66xm150,-276v-19,0,-32,-17,-47,-18v-14,-1,-19,19,-26,17v-15,-9,-5,-42,27,-44v17,-1,33,17,48,18v15,1,18,-17,26,-17v2,0,7,0,7,9v0,12,-9,35,-35,35","w":254},"\u00d3":{"d":"242,-134v3,81,-45,140,-114,140v-62,0,-115,-46,-115,-133v0,-75,43,-133,116,-133v72,0,110,58,113,126xm128,-28v61,-3,85,-112,47,-173v-18,-27,-41,-28,-48,-28v-51,-3,-63,74,-63,98v0,14,1,27,3,37v10,59,47,66,61,66xm180,-320v-7,26,-32,32,-51,46v-9,1,-12,-14,-6,-20v15,-14,24,-34,44,-42v8,0,13,7,13,16","w":254},"\u00fe":{"d":"64,77v0,15,-24,5,-36,8v-6,0,-9,-2,-9,-8r0,-345v0,-15,23,-8,36,-8v6,0,9,1,9,8r0,85v54,-29,120,17,112,81v4,61,-49,131,-112,97r0,82xm64,-140r0,107v43,28,65,-11,66,-62v0,-29,-9,-71,-42,-71v-24,0,-24,16,-24,26","w":187},"\u00f0":{"d":"12,-92v1,-78,61,-118,114,-87v-3,-13,-15,-37,-21,-42r-46,14v-4,-3,-17,-18,-5,-19r39,-13v-2,-10,-36,-24,-16,-31v24,-15,39,-8,57,18r25,-9v4,3,17,20,5,20r-18,6v42,58,74,240,-49,240v-52,0,-85,-41,-85,-97xm99,-24v51,-2,49,-141,-4,-139v-24,0,-37,28,-37,65v0,39,16,74,41,74"},"\u00cc":{"d":"70,-247r0,239v-2,16,-28,5,-42,8v-5,0,-7,-2,-7,-8r0,-239v1,-14,28,-4,41,-7v5,0,8,1,8,7xm9,-336v21,11,36,31,47,52v0,10,-11,12,-17,7v-15,-15,-39,-19,-44,-43v0,-9,6,-16,14,-16","w":90},"\u00d4":{"d":"242,-134v3,81,-45,140,-114,140v-62,0,-115,-46,-115,-133v0,-75,43,-133,116,-133v72,0,110,58,113,126xm128,-28v61,-3,85,-112,47,-173v-18,-27,-41,-28,-48,-28v-51,-3,-63,74,-63,98v0,14,1,27,3,37v10,59,47,66,61,66xm138,-293v-22,-12,-37,16,-57,21v-9,-2,-8,-14,1,-21v26,-18,24,-27,44,-38v17,8,23,23,42,35v13,7,14,18,4,23v-12,-5,-23,-14,-34,-20","w":254},"\u00c9":{"d":"141,-116r-72,0r0,83r86,0v13,-2,7,18,8,28v-1,4,-2,5,-8,5r-125,0v-6,0,-9,0,-9,-8r0,-236v0,-8,3,-11,9,-11r125,0v12,-2,7,16,8,25v0,7,-2,8,-8,8r-86,0r0,74r72,0v12,-2,7,15,8,25v0,6,-2,7,-8,7xm143,-320v-7,26,-32,33,-52,46v-10,0,-11,-14,-5,-20v15,-13,23,-34,43,-42v8,0,14,7,14,16","w":172},"\u00cb":{"d":"141,-116r-72,0r0,83r86,0v13,-2,7,18,8,28v-1,4,-2,5,-8,5r-125,0v-6,0,-9,0,-9,-8r0,-236v0,-8,3,-11,9,-11r125,0v12,-2,7,16,8,25v0,7,-2,8,-8,8r-86,0r0,74r72,0v12,-2,7,15,8,25v0,6,-2,7,-8,7xm79,-300v0,10,-7,24,-25,24v-13,0,-25,-8,-25,-23v0,-15,11,-23,25,-23v13,0,24,8,25,22xm150,-300v0,10,-7,24,-25,24v-13,0,-25,-8,-25,-23v0,-30,48,-31,50,-1","w":172},"\u00c1":{"d":"165,-6r-26,-74r-73,0r-26,73v-2,13,-21,5,-33,7v-7,2,-8,-7,-5,-12r88,-235v2,-11,31,-11,38,-2r89,244v-5,11,-29,2,-42,5v-6,0,-7,0,-10,-6xm75,-107r55,0r-28,-83xm161,-320v-7,26,-31,33,-51,46v-10,0,-11,-14,-5,-20v15,-13,23,-34,43,-42v8,0,13,7,13,16","w":217},"\u017d":{"d":"172,-249v-30,76,-69,143,-101,216r92,0v13,-2,6,17,8,27v0,6,-3,6,-8,6r-147,0v-9,0,-11,-2,-7,-11r101,-211r-87,0v-12,1,-5,-16,-7,-25v0,-5,1,-7,7,-7r142,0v4,0,7,1,7,5xm81,-311v22,14,38,-15,57,-21v10,4,9,14,-1,21v-24,18,-24,29,-44,38v-19,-6,-22,-22,-42,-34v-13,-7,-14,-19,-4,-24v13,5,23,14,34,20","w":180},"\u00e7":{"d":"43,69v3,-18,50,12,50,-18v0,-20,-26,-3,-25,-19r4,-29v-87,-20,-82,-194,21,-194v41,0,60,30,60,47v0,13,-10,20,-19,20v-28,-3,-14,-39,-47,-39v-57,0,-43,130,10,127v32,-2,31,-26,48,-34v5,0,9,5,9,13v0,21,-19,60,-64,62r-4,21v32,0,33,23,33,26v5,31,-61,44,-76,17","w":164},"\u00ac":{"d":"211,0r0,-91r-211,0r0,-29r240,0r0,120r-29,0","w":240},"\u00c3":{"d":"165,-6r-26,-74r-73,0r-26,73v-2,13,-21,5,-33,7v-7,2,-8,-7,-5,-12r88,-235v2,-11,31,-11,38,-2r89,244v-5,11,-29,2,-42,5v-6,0,-7,0,-10,-6xm75,-107r55,0r-28,-83xm135,-276v-19,0,-32,-17,-47,-18v-14,-1,-19,19,-26,17v-15,-9,-5,-42,27,-44v17,-1,33,17,48,18v15,1,18,-17,26,-17v2,0,7,0,7,9v0,12,-9,35,-35,35","w":217},"\u00de":{"d":"191,-132v-2,65,-61,82,-122,77r0,47v-1,17,-27,4,-41,8v-6,0,-7,-2,-7,-8r0,-239v0,-16,28,-5,41,-8v6,0,7,2,7,8r0,43v12,-3,25,-5,38,-5v84,0,84,69,84,77xm69,-179r0,95v36,7,72,-4,72,-49v0,-7,0,-22,-9,-33v-17,-20,-40,-15,-63,-13"},"\u00bc":{"d":"55,-101r0,-117v-16,5,-43,17,-47,2v0,-5,5,-8,10,-9v35,-8,39,-21,58,-31v7,0,8,6,8,9r0,147v0,8,-29,9,-29,-1xm255,-150r0,98v5,0,14,0,15,1v2,1,1,15,0,16v-1,1,-10,0,-15,0r0,31v1,10,-16,3,-23,5v-12,-3,-2,-25,-5,-36r-48,0v-8,2,-12,-10,-5,-17r62,-102v2,-3,4,-7,10,-7v9,0,9,7,9,11xm194,-52r34,0r0,-62xm219,-251r-128,244v-3,12,-35,9,-21,-3r125,-237v1,-10,25,-9,24,-4","w":285},"\u00c2":{"d":"165,-6r-26,-74r-73,0r-26,73v-2,13,-21,5,-33,7v-7,2,-8,-7,-5,-12r88,-235v2,-11,31,-11,38,-2r89,244v-5,11,-29,2,-42,5v-6,0,-7,0,-10,-6xm75,-107r55,0r-28,-83xm119,-293v-22,-12,-37,16,-57,21v-10,-2,-7,-14,2,-21v26,-18,23,-27,43,-38v18,7,24,23,43,35v13,7,13,19,3,23v-12,-5,-23,-14,-34,-20","w":217},"\u00d6":{"d":"242,-134v3,81,-45,140,-114,140v-62,0,-115,-46,-115,-133v0,-75,43,-133,116,-133v72,0,110,58,113,126xm128,-28v61,-3,85,-112,47,-173v-18,-27,-41,-28,-48,-28v-51,-3,-63,74,-63,98v0,14,1,27,3,37v10,59,47,66,61,66xm117,-300v0,10,-6,24,-24,24v-13,0,-26,-8,-26,-23v0,-30,50,-31,50,-1xm188,-300v0,10,-7,24,-25,24v-13,0,-25,-8,-25,-23v-1,-29,49,-32,50,-1","w":254},"\u00be":{"d":"52,-235v-21,-1,-17,21,-31,25v-4,0,-9,-3,-9,-10v0,-15,15,-38,46,-38v50,0,49,64,20,72v42,17,44,94,-23,94v-29,0,-47,-18,-47,-33v0,-8,6,-14,12,-14v20,3,13,30,37,28v36,-3,26,-52,-7,-58v-10,-4,-13,-4,-13,-8v7,-16,36,-12,35,-37v0,-12,-7,-21,-20,-21xm255,-150r0,98v5,0,14,0,15,1v2,1,1,15,0,16v-1,1,-10,0,-15,0r0,31v1,10,-16,3,-23,5v-12,-3,-2,-25,-5,-36r-48,0v-8,2,-12,-10,-5,-17r62,-102v2,-3,4,-7,10,-7v9,0,9,7,9,11xm194,-52r34,0r0,-62xm228,-251r-128,244v0,11,-25,8,-23,4r127,-244v0,-11,25,-10,24,-4","w":285},"\u00db":{"d":"106,6v-48,0,-88,-28,-88,-83r0,-170v2,-15,29,-4,42,-7v6,0,8,1,8,7r0,164v0,15,1,51,43,51v42,0,42,-36,42,-47r0,-168v0,-13,21,-5,32,-7v5,0,7,1,7,7v-3,71,9,151,-7,212v-2,7,-20,41,-79,41xm119,-293v-22,-12,-37,16,-57,21v-10,-2,-7,-14,2,-21v26,-18,23,-27,43,-38v18,7,24,23,43,35v13,7,13,19,3,23v-12,-5,-23,-14,-34,-20","w":209},"\u00d9":{"d":"106,6v-48,0,-88,-28,-88,-83r0,-170v2,-15,29,-4,42,-7v6,0,8,1,8,7r0,164v0,15,1,51,43,51v42,0,42,-36,42,-47r0,-168v0,-13,21,-5,32,-7v5,0,7,1,7,7v-3,71,9,151,-7,212v-2,7,-20,41,-79,41xm72,-336v22,10,36,31,48,52v0,10,-11,12,-17,7v-15,-15,-39,-19,-44,-43v0,-9,5,-16,13,-16","w":209},"\u00dc":{"d":"106,6v-48,0,-88,-28,-88,-83r0,-170v2,-15,29,-4,42,-7v6,0,8,1,8,7r0,164v0,15,1,51,43,51v42,0,42,-36,42,-47r0,-168v0,-13,21,-5,32,-7v5,0,7,1,7,7v-3,71,9,151,-7,212v-2,7,-20,41,-79,41xm99,-300v0,10,-7,24,-25,24v-13,0,-25,-8,-25,-23v0,-15,11,-23,25,-23v13,0,24,8,25,22xm170,-300v0,10,-7,24,-25,24v-13,0,-25,-8,-25,-23v0,-30,48,-31,50,-1","w":209},"\u00cd":{"d":"70,-247r0,239v-2,16,-28,5,-42,8v-5,0,-7,-2,-7,-8r0,-239v1,-14,28,-4,41,-7v5,0,8,1,8,7xm98,-320v-7,26,-32,33,-52,46v-10,0,-11,-14,-5,-20v15,-13,23,-34,43,-42v8,0,14,7,14,16","w":90},"\u00c0":{"d":"165,-6r-26,-74r-73,0r-26,73v-2,13,-21,5,-33,7v-7,2,-8,-7,-5,-12r88,-235v2,-11,31,-11,38,-2r89,244v-5,11,-29,2,-42,5v-6,0,-7,0,-10,-6xm75,-107r55,0r-28,-83xm72,-336v22,10,36,31,48,52v0,10,-11,12,-17,7v-15,-15,-39,-19,-44,-43v0,-9,5,-16,13,-16","w":217},"\u00b0":{"d":"64,-272v32,0,58,26,58,58v0,32,-26,58,-58,58v-32,0,-59,-26,-59,-58v0,-32,27,-58,59,-58xm64,-243v-16,0,-29,12,-29,28v0,16,13,29,29,29v16,0,28,-13,28,-29v0,-16,-12,-28,-28,-28","w":127},"\u00bd":{"d":"55,-101r0,-117v-16,5,-42,16,-47,2v0,-6,5,-8,10,-9v35,-10,39,-21,58,-31v7,0,8,6,8,8r0,148v0,8,-29,9,-29,-1xm271,-121v0,42,-40,64,-59,94r54,0v10,-1,5,14,6,22v0,4,-2,5,-6,5r-85,0v-9,1,-8,-8,-4,-13v20,-31,60,-60,65,-100v4,-28,-41,-35,-46,-4v-1,5,-3,10,-10,10v-5,0,-9,-3,-9,-11v0,-21,17,-45,49,-45v28,0,45,20,45,42xm213,-251r-128,244v0,10,-24,8,-23,4v39,-84,86,-162,127,-244v0,-11,25,-10,24,-4","w":285},"\u00dd":{"d":"195,-250r-73,137r0,106v-3,15,-29,3,-43,7v-6,0,-7,-2,-7,-7r0,-108r-72,-134v5,-11,31,-5,45,-5v6,0,7,1,10,6r48,93r50,-92v4,-12,22,-5,35,-7v3,0,7,0,7,4xm154,-320v-7,26,-32,33,-52,46v-10,0,-11,-14,-5,-20v15,-13,23,-34,43,-42v8,0,14,7,14,16"},"\u00b2":{"d":"54,-234v-19,-4,-19,26,-33,32v-5,0,-9,-3,-9,-11v0,-21,16,-45,48,-45v54,0,48,58,24,89r-37,47r54,0v10,-2,5,14,6,22v0,4,-2,5,-6,5r-86,0v-8,0,-9,-9,-3,-13v20,-31,56,-62,65,-101v0,-13,-9,-25,-23,-25","w":119},"\u00da":{"d":"106,6v-48,0,-88,-28,-88,-83r0,-170v2,-15,29,-4,42,-7v6,0,8,1,8,7r0,164v0,15,1,51,43,51v42,0,42,-36,42,-47r0,-168v0,-13,21,-5,32,-7v5,0,7,1,7,7v-3,71,9,151,-7,212v-2,7,-20,41,-79,41xm161,-320v-7,26,-31,33,-51,46v-10,0,-11,-14,-5,-20v15,-13,23,-34,43,-42v8,0,13,7,13,16","w":209},"\u00ae":{"d":"96,-209v54,-2,118,-6,116,42v0,20,-12,33,-33,38v27,5,22,62,35,82r-33,0v-4,-9,-5,-18,-8,-35v-5,-35,-9,-38,-48,-38r0,73r-29,0r0,-162xm183,-165v2,-23,-28,-22,-58,-21r0,43v26,-2,54,9,58,-22xm278,-127v0,71,-56,128,-128,128v-67,0,-128,-52,-128,-128v0,-74,59,-128,128,-128v75,0,128,58,128,128xm267,-127v0,-64,-50,-117,-117,-117v-66,0,-117,53,-117,117v0,66,53,117,117,117v66,0,117,-53,117,-117","w":299},"\u00a9":{"d":"201,-93r20,18v-8,9,-29,33,-68,33v-52,0,-86,-37,-86,-85v0,-48,36,-86,85,-86v39,0,59,21,69,32r-20,19v-26,-39,-106,-29,-106,35v0,61,85,72,106,34xm278,-126v0,71,-56,127,-128,127v-68,0,-128,-52,-128,-128v0,-72,57,-128,128,-128v75,0,128,59,128,129xm266,-127v0,-65,-49,-117,-116,-117v-66,0,-117,53,-117,117v0,67,54,117,117,117v67,0,116,-54,116,-117","w":299},"\u00ca":{"d":"141,-116r-72,0r0,83r86,0v13,-2,7,18,8,28v-1,4,-2,5,-8,5r-125,0v-6,0,-9,0,-9,-8r0,-236v0,-8,3,-11,9,-11r125,0v12,-2,7,16,8,25v0,7,-2,8,-8,8r-86,0r0,74r72,0v12,-2,7,15,8,25v0,6,-2,7,-8,7xm100,-293v-22,-12,-36,17,-57,21v-9,-3,-7,-15,2,-21v26,-18,23,-29,44,-38v17,8,23,23,42,35v12,7,13,18,4,23v-13,-4,-24,-14,-35,-20","w":172},"\u2122":{"d":"229,-254r0,119r-21,0r2,-98r-30,98r-19,0r-30,-98r2,98r-20,0r0,-119r28,0r30,94r30,-94r28,0xm65,-237r0,102r-21,0r0,-102r-38,0r0,-17r97,0r0,17r-38,0","w":247},"\u00b1":{"d":"105,-123r0,65r-29,0r0,-65r-65,0r0,-29r65,0r0,-64r29,0r0,64r64,0r0,29r-64,0xm169,-28r0,28r-158,0r0,-28r158,0","w":180},"\u00d0":{"d":"80,3v-21,0,-59,6,-59,-16r0,-110v-8,-1,-22,4,-21,-6v1,-8,-3,-21,4,-23r17,0r0,-87v2,-24,38,-13,67,-18v59,2,140,29,140,130v0,53,-25,81,-35,91v-29,30,-72,39,-113,39xm176,-129v0,-81,-41,-96,-106,-97r0,74r57,0v11,0,4,11,7,22v0,5,-2,7,-7,7r-57,0r0,93v64,4,106,-26,106,-99","w":240},"\u00c4":{"d":"165,-6r-26,-74r-73,0r-26,73v-2,13,-21,5,-33,7v-7,2,-8,-7,-5,-12r88,-235v2,-11,31,-11,38,-2r89,244v-5,11,-29,2,-42,5v-6,0,-7,0,-10,-6xm75,-107r55,0r-28,-83xm98,-300v0,10,-7,24,-25,24v-13,0,-25,-8,-25,-23v0,-15,11,-23,25,-23v13,0,24,8,25,22xm169,-300v0,10,-7,24,-25,24v-13,0,-25,-8,-25,-23v0,-30,48,-31,50,-1","w":217},"\u00c5":{"d":"165,-6r-26,-74r-73,0r-26,73v-2,13,-21,5,-33,7v-7,2,-8,-7,-5,-12r88,-235v2,-11,31,-11,38,-2r89,244v-5,11,-29,2,-42,5v-6,0,-7,0,-10,-6xm75,-107r55,0r-28,-83xm142,-305v1,19,-13,35,-33,35v-21,0,-33,-17,-33,-34v0,-19,14,-33,33,-33v18,0,32,14,33,32xm124,-305v0,-8,-6,-14,-15,-14v-9,0,-15,6,-15,15v0,9,7,15,15,15v9,0,15,-7,15,-16","w":217},"\u0178":{"d":"195,-250r-73,137r0,106v-3,15,-29,3,-43,7v-6,0,-7,-2,-7,-7r0,-108r-72,-134v5,-11,31,-5,45,-5v6,0,7,1,10,6r48,93r50,-92v4,-12,22,-5,35,-7v3,0,7,0,7,4xm90,-300v0,10,-7,24,-25,24v-13,0,-25,-8,-25,-23v0,-30,50,-31,50,-1xm161,-300v0,10,-7,24,-25,24v-13,0,-25,-8,-25,-23v0,-30,48,-31,50,-1"},"\u00f7":{"d":"111,-52v0,12,-10,20,-21,20v-10,0,-20,-8,-20,-20v0,-12,10,-21,20,-21v12,0,21,9,21,21xm91,-177v26,1,27,39,0,41v-12,0,-21,-9,-21,-20v0,-12,9,-21,21,-21xm180,-119r0,29r-180,0r0,-29r180,0","w":180},"\u00b9":{"d":"55,-101r0,-117v-16,5,-43,17,-47,2v0,-5,5,-8,10,-9v35,-8,39,-21,58,-31v7,0,8,6,8,9r0,147v0,8,-29,9,-29,-1","w":119},"\u00b3":{"d":"52,-235v-21,-1,-17,21,-31,25v-4,0,-9,-3,-9,-10v0,-15,15,-38,46,-38v50,0,49,64,20,72v42,17,44,94,-23,94v-29,0,-47,-18,-47,-33v0,-8,6,-14,12,-14v20,3,13,30,37,28v36,-3,26,-51,-7,-58v-12,-3,-13,-4,-13,-8v7,-16,36,-12,35,-37v0,-12,-7,-21,-20,-21","w":119},"\u00c8":{"d":"141,-116r-72,0r0,83r86,0v13,-2,7,18,8,28v-1,4,-2,5,-8,5r-125,0v-6,0,-9,0,-9,-8r0,-236v0,-8,3,-11,9,-11r125,0v12,-2,7,16,8,25v0,7,-2,8,-8,8r-86,0r0,74r72,0v12,-2,7,15,8,25v0,6,-2,7,-8,7xm54,-336v21,11,36,31,47,52v0,10,-11,12,-17,7v-15,-15,-39,-19,-44,-43v0,-9,6,-16,14,-16","w":172},"\u00cf":{"d":"70,-247r0,239v-2,16,-28,5,-42,8v-5,0,-7,-2,-7,-8r0,-239v1,-14,28,-4,41,-7v5,0,8,1,8,7xm34,-300v0,10,-7,24,-25,24v-13,0,-25,-8,-25,-23v0,-15,11,-23,25,-23v13,0,24,8,25,22xm105,-300v0,10,-7,24,-25,24v-13,0,-25,-8,-25,-23v0,-30,48,-31,50,-1","w":90},"\u0160":{"d":"150,-191v-29,0,-21,-41,-56,-40v-18,0,-32,14,-32,32v-1,28,36,39,60,52v23,12,58,31,58,79v0,47,-36,74,-83,74v-58,0,-82,-38,-82,-59v0,-16,12,-22,21,-22v35,0,21,48,64,50v19,0,34,-14,34,-34v0,-67,-116,-40,-116,-131v0,-44,32,-70,77,-70v48,0,76,27,76,48v0,12,-9,21,-21,21xm85,-311v21,13,38,-15,57,-21v10,4,9,14,-1,21v-24,18,-24,29,-44,38v-19,-6,-22,-22,-42,-34v-13,-7,-14,-19,-4,-24v13,5,23,13,34,20"},"\u00ce":{"d":"70,-247r0,239v-2,16,-28,5,-42,8v-5,0,-7,-2,-7,-8r0,-239v1,-14,28,-4,41,-7v5,0,8,1,8,7xm55,-293v-22,-12,-36,17,-57,21v-9,-3,-7,-15,2,-21v26,-18,23,-29,44,-38v17,8,23,23,42,35v12,7,13,18,4,23v-13,-4,-24,-14,-35,-20","w":90},"\u00e1":{"d":"83,-166v-33,0,-16,35,-45,37v-11,0,-20,-7,-20,-19v0,-22,28,-43,72,-43v58,0,58,36,58,63r0,90v11,35,-54,44,-69,43v-12,0,-70,0,-70,-51v0,-43,40,-57,96,-69v-1,-24,7,-51,-22,-51xm83,-20v40,0,15,-43,22,-74v-28,9,-52,16,-52,43v0,18,11,31,30,31xm132,-247v-7,24,-31,29,-48,43v-9,0,-12,-14,-4,-20v14,-11,22,-30,40,-38v7,0,12,7,12,15","w":164},"\u00e2":{"d":"95,-222v-22,-12,-35,13,-54,19v-10,-3,-9,-13,1,-19v27,-17,24,-43,51,-31v14,18,33,26,41,41v-8,19,-28,-7,-39,-10xm83,-166v-33,0,-16,35,-45,37v-11,0,-20,-7,-20,-19v0,-22,28,-43,72,-43v58,0,58,36,58,63r0,90v11,35,-54,44,-69,43v-12,0,-70,0,-70,-51v0,-43,40,-57,96,-69v-1,-24,7,-51,-22,-51xm83,-20v40,0,15,-43,22,-74v-28,9,-52,16,-52,43v0,18,11,31,30,31","w":164},"\u00e4":{"d":"83,-166v-33,0,-16,35,-45,37v-11,0,-20,-7,-20,-19v0,-22,28,-43,72,-43v58,0,58,36,58,63r0,90v11,35,-54,44,-69,43v-12,0,-70,0,-70,-51v0,-43,40,-57,96,-69v-1,-24,7,-51,-22,-51xm83,-20v40,0,15,-43,22,-74v-28,9,-52,16,-52,43v0,18,11,31,30,31xm74,-236v0,11,-7,23,-24,23v-14,0,-24,-9,-24,-22v0,-14,11,-23,24,-23v12,0,24,9,24,22xm141,-236v0,12,-7,23,-23,23v-15,0,-24,-10,-24,-22v0,-14,11,-23,24,-23v12,0,23,9,23,22","w":164},"\u00e0":{"d":"83,-166v-33,0,-16,35,-45,37v-11,0,-20,-7,-20,-19v0,-22,28,-43,72,-43v58,0,58,36,58,63r0,90v11,35,-54,44,-69,43v-12,0,-70,0,-70,-51v0,-43,40,-57,96,-69v-1,-24,7,-51,-22,-51xm83,-20v40,0,15,-43,22,-74v-28,9,-52,16,-52,43v0,18,11,31,30,31xm49,-262v20,10,33,29,45,48v0,11,-14,12,-18,5v-13,-13,-34,-17,-39,-38v0,-8,5,-15,12,-15","w":164},"\u00e5":{"d":"114,-234v0,18,-13,30,-30,30v-17,0,-30,-13,-30,-30v0,-17,12,-30,30,-30v15,0,30,11,30,30xm98,-235v0,-8,-6,-13,-14,-13v-9,0,-14,7,-14,14v0,8,7,14,14,14v7,0,14,-6,14,-15xm83,-166v-33,0,-16,35,-45,37v-11,0,-20,-7,-20,-19v0,-22,28,-43,72,-43v58,0,58,36,58,63r0,90v11,35,-54,44,-69,43v-12,0,-70,0,-70,-51v0,-43,40,-57,96,-69v-1,-24,7,-51,-22,-51xm83,-20v40,0,15,-43,22,-74v-28,9,-52,16,-52,43v0,18,11,31,30,31","w":164},"\u00e3":{"d":"107,-211v-22,0,-34,-19,-45,-18v-14,0,-15,16,-25,17v-7,0,-7,-6,-7,-9v0,-13,12,-34,33,-34v16,-1,30,19,45,18v14,2,18,-17,25,-16v14,9,-1,42,-26,42xm83,-166v-33,0,-16,35,-45,37v-11,0,-20,-7,-20,-19v0,-22,28,-43,72,-43v58,0,58,36,58,63r0,90v11,35,-54,44,-69,43v-12,0,-70,0,-70,-51v0,-43,40,-57,96,-69v-1,-24,7,-51,-22,-51xm83,-20v40,0,15,-43,22,-74v-28,9,-52,16,-52,43v0,18,11,31,30,31","w":164},"\u00e9":{"d":"99,-35v27,0,40,-26,55,-34v5,0,9,4,9,11v0,10,-14,63,-71,63v-48,0,-80,-35,-80,-99v0,-72,41,-97,80,-97v56,0,70,51,70,68v0,13,-9,13,-13,14r-100,15v6,50,33,59,50,59xm48,-117r69,-11v-1,-23,-16,-36,-32,-36v-25,0,-35,22,-37,47xm137,-247v-7,24,-31,29,-48,43v-9,0,-12,-14,-4,-20v14,-11,22,-30,40,-38v7,0,12,7,12,15","w":172},"\u00ea":{"d":"100,-222v-22,-12,-35,14,-54,19v-9,-3,-7,-13,2,-19v25,-17,22,-28,40,-36v20,8,26,24,40,33v15,9,14,15,4,21v-12,-4,-21,-12,-32,-18xm99,-35v27,0,40,-26,55,-34v5,0,9,4,9,11v0,10,-14,63,-71,63v-48,0,-80,-35,-80,-99v0,-72,41,-97,80,-97v56,0,70,51,70,68v0,13,-9,13,-13,14r-100,15v6,50,33,59,50,59xm48,-117r69,-11v-1,-23,-16,-36,-32,-36v-25,0,-35,22,-37,47","w":172},"\u00eb":{"d":"99,-35v27,0,40,-26,55,-34v5,0,9,4,9,11v0,10,-14,63,-71,63v-48,0,-80,-35,-80,-99v0,-72,41,-97,80,-97v56,0,70,51,70,68v0,13,-9,13,-13,14r-100,15v6,50,33,59,50,59xm48,-117r69,-11v-1,-23,-16,-36,-32,-36v-25,0,-35,22,-37,47xm80,-236v0,11,-7,23,-24,23v-14,0,-24,-9,-24,-22v0,-14,11,-23,24,-23v12,0,24,9,24,22xm147,-236v0,12,-7,23,-23,23v-15,0,-24,-10,-24,-22v0,-14,11,-23,24,-23v12,0,23,9,23,22","w":172},"\u00e8":{"d":"99,-35v27,0,40,-26,55,-34v5,0,9,4,9,11v0,10,-14,63,-71,63v-48,0,-80,-35,-80,-99v0,-72,41,-97,80,-97v56,0,70,51,70,68v0,13,-9,13,-13,14r-100,15v6,50,33,59,50,59xm48,-117r69,-11v-1,-23,-16,-36,-32,-36v-25,0,-35,22,-37,47xm54,-262v20,10,33,29,45,48v0,11,-14,12,-18,5v-13,-13,-34,-17,-39,-38v0,-8,5,-15,12,-15","w":172},"\u00ed":{"d":"64,-179r0,171v1,15,-27,5,-39,8v-6,0,-6,-2,-6,-8r0,-171v1,-14,26,-4,38,-7v7,0,7,1,7,7xm89,-247v-7,24,-31,29,-48,43v-9,0,-12,-14,-4,-20v14,-11,22,-30,40,-38v7,0,12,7,12,15","w":82},"\u00ee":{"d":"52,-222v-22,-12,-35,13,-54,19v-10,-3,-9,-12,1,-19v25,-17,22,-28,40,-36v20,8,27,24,41,33v15,9,14,16,3,21v-12,-4,-20,-12,-31,-18xm64,-179r0,171v1,15,-27,5,-39,8v-6,0,-6,-2,-6,-8r0,-171v1,-14,26,-4,38,-7v7,0,7,1,7,7","w":82},"\u00ef":{"d":"64,-179r0,171v1,15,-27,5,-39,8v-6,0,-6,-2,-6,-8r0,-171v1,-14,26,-4,38,-7v7,0,7,1,7,7xm31,-236v0,11,-7,23,-24,23v-14,0,-24,-9,-24,-22v0,-14,11,-23,24,-23v12,0,24,9,24,22xm98,-236v0,12,-7,23,-23,23v-15,0,-24,-10,-24,-22v0,-14,11,-23,24,-23v12,0,23,9,23,22","w":82},"\u00ec":{"d":"64,-179r0,171v1,15,-27,5,-39,8v-6,0,-6,-2,-6,-8r0,-171v1,-14,26,-4,38,-7v7,0,7,1,7,7xm5,-262v20,10,33,29,45,48v0,11,-14,12,-18,5v-13,-13,-34,-17,-39,-38v0,-8,5,-15,12,-15","w":82},"\u00f1":{"d":"116,-211v-22,0,-34,-19,-45,-18v-14,0,-15,16,-25,17v-7,0,-7,-6,-7,-9v0,-13,12,-34,33,-34v16,-1,30,19,45,18v14,2,18,-17,25,-16v14,9,-1,42,-26,42xm97,-191v111,0,71,99,71,183v0,15,-24,5,-37,8v-7,0,-8,-3,-8,-8r0,-122v0,-14,1,-37,-30,-37v-29,0,-29,23,-29,31r0,127v1,16,-24,9,-37,9v-6,0,-8,-2,-8,-8r0,-142v-5,-35,48,-41,78,-41","w":187},"\u00f3":{"d":"98,-191v118,0,110,198,-1,196v-53,0,-85,-43,-85,-98v0,-56,33,-98,86,-98xm136,-98v-2,-43,-19,-67,-40,-67v-24,0,-38,30,-38,66v0,40,17,74,41,74v23,0,39,-32,37,-73xm145,-247v-7,24,-31,29,-48,43v-9,0,-12,-14,-4,-20v14,-11,22,-30,40,-38v7,0,12,7,12,15"},"\u00f4":{"d":"108,-222v-22,-12,-35,14,-54,19v-20,-17,35,-42,31,-48v23,-20,37,22,51,26v15,10,14,15,4,21v-12,-4,-21,-12,-32,-18xm98,-191v118,0,110,198,-1,196v-53,0,-85,-43,-85,-98v0,-56,33,-98,86,-98xm136,-98v-2,-43,-19,-67,-40,-67v-24,0,-38,30,-38,66v0,40,17,74,41,74v23,0,39,-32,37,-73"},"\u00f6":{"d":"98,-191v118,0,110,198,-1,196v-53,0,-85,-43,-85,-98v0,-56,33,-98,86,-98xm136,-98v-2,-43,-19,-67,-40,-67v-24,0,-38,30,-38,66v0,40,17,74,41,74v23,0,39,-32,37,-73xm76,-236v0,11,-7,23,-24,23v-14,0,-24,-9,-24,-22v0,-14,11,-23,24,-23v12,0,24,9,24,22xm143,-236v0,12,-7,23,-23,23v-15,0,-24,-10,-24,-22v0,-14,11,-23,24,-23v12,0,23,9,23,22"},"\u00f2":{"d":"98,-191v118,0,110,198,-1,196v-53,0,-85,-43,-85,-98v0,-56,33,-98,86,-98xm136,-98v-2,-43,-19,-67,-40,-67v-24,0,-38,30,-38,66v0,40,17,74,41,74v23,0,39,-32,37,-73xm62,-262v20,10,33,29,45,48v0,11,-14,12,-18,5v-13,-13,-34,-17,-39,-38v0,-8,5,-15,12,-15"},"\u00f5":{"d":"120,-211v-22,1,-33,-19,-44,-18v-15,0,-16,17,-26,17v-7,0,-7,-6,-7,-9v0,-13,12,-34,33,-34v16,-1,30,19,45,18v14,2,18,-17,25,-16v1,0,7,0,7,9v0,12,-11,33,-33,33xm98,-191v118,0,110,198,-1,196v-53,0,-85,-43,-85,-98v0,-56,33,-98,86,-98xm136,-98v-2,-43,-19,-67,-40,-67v-24,0,-38,30,-38,66v0,40,17,74,41,74v23,0,39,-32,37,-73"},"\u0161":{"d":"66,-240v22,13,35,-14,54,-18v10,2,8,11,-1,18v-25,18,-22,29,-41,37v-18,-10,-25,-26,-39,-34v-16,-10,-15,-15,-4,-21v12,4,20,12,31,18xm121,-135v-24,-2,-15,-32,-44,-32v-40,0,-18,48,7,51v26,15,60,18,60,64v0,20,-10,57,-64,57v-50,0,-67,-30,-67,-44v0,-11,8,-19,18,-19v23,2,26,35,50,35v13,0,22,-9,22,-22v-11,-54,-87,-24,-87,-93v0,-26,17,-53,63,-53v44,0,60,24,60,38v0,10,-8,18,-18,18","w":157},"\u00fa":{"d":"169,-45v2,42,-28,50,-76,50v-69,0,-74,-36,-74,-59r0,-126v2,-13,25,-3,37,-6v5,0,8,1,8,7r0,120v0,12,0,34,31,34v29,0,29,-17,29,-29r0,-125v1,-14,24,-4,36,-7v6,0,9,0,9,7r0,134xm141,-247v-7,24,-31,29,-48,43v-9,0,-12,-14,-4,-20v14,-11,22,-30,40,-38v7,0,12,7,12,15","w":187},"\u00fb":{"d":"104,-222v-22,-12,-35,13,-54,19v-10,-3,-9,-13,1,-19v27,-17,24,-43,51,-31v14,18,33,26,41,41v-8,19,-28,-7,-39,-10xm169,-45v2,42,-28,50,-76,50v-69,0,-74,-36,-74,-59r0,-126v2,-13,25,-3,37,-6v5,0,8,1,8,7r0,120v0,12,0,34,31,34v29,0,29,-17,29,-29r0,-125v1,-14,24,-4,36,-7v6,0,9,0,9,7r0,134","w":187},"\u00fc":{"d":"169,-45v2,42,-28,50,-76,50v-69,0,-74,-36,-74,-59r0,-126v2,-13,25,-3,37,-6v5,0,8,1,8,7r0,120v0,12,0,34,31,34v29,0,29,-17,29,-29r0,-125v1,-14,24,-4,36,-7v6,0,9,0,9,7r0,134xm82,-236v0,11,-7,23,-24,23v-14,0,-24,-9,-24,-22v0,-14,11,-23,24,-23v12,0,24,9,24,22xm149,-236v0,12,-7,23,-23,23v-15,0,-24,-10,-24,-22v0,-14,11,-23,24,-23v12,0,23,9,23,22","w":187},"\u00f9":{"d":"169,-45v2,42,-28,50,-76,50v-69,0,-74,-36,-74,-59r0,-126v2,-13,25,-3,37,-6v5,0,8,1,8,7r0,120v0,12,0,34,31,34v29,0,29,-17,29,-29r0,-125v1,-14,24,-4,36,-7v6,0,9,0,9,7r0,134xm58,-262v20,10,33,29,45,48v0,11,-14,12,-18,5v-13,-13,-34,-17,-39,-38v0,-8,5,-15,12,-15","w":187},"\u00fd":{"d":"172,-181r-73,206v-8,22,-24,62,-68,62v-38,0,-40,-38,-12,-42v32,8,41,4,54,-39r-71,-187v5,-11,27,-2,40,-5v7,0,6,0,9,7r43,125r40,-125v2,-12,19,-5,31,-7v3,0,7,0,7,5xm134,-247v-7,24,-31,29,-48,43v-9,0,-12,-14,-4,-20v14,-11,22,-30,40,-38v7,0,12,7,12,15","w":172},"\u00ff":{"d":"172,-181r-73,206v-8,22,-24,62,-68,62v-38,0,-40,-38,-12,-42v32,8,41,4,54,-39r-71,-187v5,-11,27,-2,40,-5v7,0,6,0,9,7r43,125r40,-125v2,-12,19,-5,31,-7v3,0,7,0,7,5xm80,-236v0,11,-7,23,-24,23v-14,0,-24,-9,-24,-22v0,-14,11,-23,24,-23v12,0,24,9,24,22xm147,-236v0,12,-7,23,-23,23v-15,0,-24,-10,-24,-22v0,-14,11,-23,24,-23v12,0,23,9,23,22","w":172},"\u017e":{"d":"66,-240v22,13,35,-14,54,-18v10,2,8,11,-1,18v-25,18,-22,29,-41,37v-18,-10,-25,-26,-39,-34v-16,-10,-15,-15,-4,-21v12,4,20,12,31,18xm140,-181r-74,155r66,0v12,-3,7,18,7,23v-1,3,-3,3,-7,3r-117,0v-8,0,-7,-4,-3,-12r73,-149r-63,0v-11,2,-5,-15,-6,-21v0,-4,2,-4,6,-4r110,0v3,0,8,0,8,5","w":150},"\u00a0":{"w":97}}});;window.addEvents({'domready':function(){$$('body').removeClass('no-js').addClass('js').addClass(Browser.Engine.name).addClass(Browser.Engine.name+Browser.Engine.version);if(!Browser.Engine.trident4)$$('#header>ul>li>a','#sidebar ul li a','#recipes ul li a').addEvents({'mouseenter':function(event){this.get('tween',{property:'opacity',duration:'short'}).start(0.0001);},'mouseleave':function(event){this.get('tween',{property:'opacity',duration:'normal'}).start(1);}});Cufon.replace('h3, h4, dt, table thead th');Cufon.replace('#welcome h2',{textShadow:'#333 -1px 1px'});new Swiff('/swf/header.swf',{'width':940,'height':270,'container':'flash'});if($('video'))new Swiff('/swf/video.swf',{'width':310,'height':280,'container':'video'});if($('recipes'))new SimpleSlideShow.Auto('recipes',{'timer':6000});$$('.slideshow').each(function(item,i){if(item.getChildren().length>1)new SimpleSlideShow.Auto(item,{'timer':4000});});$$('a.remooz','a[target=_top]').each(function(element){new ReMooz(element,{centered:false,origin:element.getFirst(),cutOut:false,opacityLoad:0.5,opacityResize:0,margin:35,parse:'rel'});});new Fx.SmoothScroll();$$('dl').each(function(dl){var dts=dl.getElements('dt');var dds=dl.getElements('dd');if((dts.length>1&&dds.length>1&&dts.length==dds.length)||dl.hasClass('force-accordion')){dl.addClass('accordion');new Fx.Accordion(dts,dds,{alwaysHide:true,onActive:function(toggler,element){toggler.removeClass('hidden');},onBackground:function(toggler,element){toggler.addClass.delay(500,toggler,'hidden');}});}});$$('a.target-blank').addEvent('click',function(event){event.stop();window.open(this.get('href'));});$$('select[name=contact_type]').addEvent('change',function(){this.getParent('form').getElement('input[name=contact_entreprise]').getParent('p').setStyle('display',this.getSelected()[0].get('value')=='entreprise'?'block':'none');}).fireEvent('change');}});SimpleSlideShow.Auto=new Class({Implements:Options,options:{timer:6000},initialize:function(element,options){this.element=$(element);this.setOptions(options);this.simpleSlideShow=new SimpleSlideShow($extend({startIndex:0,slides:this.element.getChildren()},this.options));this.periodical=this.simpleSlideShow.forward.periodical(this.options.timer,this.simpleSlideShow);this.element.addEvents({mouseenter:function(){$clear(this.periodical);}.bind(this),mouseleave:function(){this.periodical=this.simpleSlideShow.forward.periodical(this.options.timer,this.simpleSlideShow);}.bind(this)});}});