/* mootools.js */

var MooTools={version:'1.12'};function $defined(obj){return(obj!=undefined);};function $type(obj){if(!$defined(obj))return false;if(obj.htmlElement)return'element';var type=typeof obj;if(type=='object'&&obj.nodeName){switch(obj.nodeType){case 1:return'element';case 3:return(/\S/).test(obj.nodeValue)?'textnode':'whitespace';}}
if(type=='object'||type=='function'){switch(obj.constructor){case Array:return'array';case RegExp:return'regexp';case Class:return'class';}
if(typeof obj.length=='number'){if(obj.item)return'collection';if(obj.callee)return'arguments';}}
return type;};function $merge(){var mix={};for(var i=0;i<arguments.length;i++){for(var property in arguments[i]){var ap=arguments[i][property];var mp=mix[property];if(mp&&$type(ap)=='object'&&$type(mp)=='object')mix[property]=$merge(mp,ap);else mix[property]=ap;}}
return mix;};var $extend=function(){var args=arguments;if(!args[1])args=[this,args[0]];for(var property in args[1])args[0][property]=args[1][property];return args[0];};var $native=function(){for(var i=0,l=arguments.length;i<l;i++){arguments[i].extend=function(props){for(var prop in props){if(!this.prototype[prop])this.prototype[prop]=props[prop];if(!this[prop])this[prop]=$native.generic(prop);}};}};$native.generic=function(prop){return function(bind){return this.prototype[prop].apply(bind,Array.prototype.slice.call(arguments,1));};};$native(Function,Array,String,Number);function $chk(obj){return!!(obj||obj===0);};function $pick(obj,picked){return $defined(obj)?obj:picked;};function $random(min,max){return Math.floor(Math.random()*(max-min+1)+min);};function $time(){return new Date().getTime();};function $clear(timer){clearTimeout(timer);clearInterval(timer);return null;};var Abstract=function(obj){obj=obj||{};obj.extend=$extend;return obj;};var Window=new Abstract(window);var Document=new Abstract(document);document.head=document.getElementsByTagName('head')[0];window.xpath=!!(document.evaluate);if(window.ActiveXObject)window.ie=window[window.XMLHttpRequest?'ie7':'ie6']=true;else if(document.childNodes&&!document.all&&!navigator.taintEnabled)window.webkit=window[window.xpath?'webkit420':'webkit419']=true;else if(document.getBoxObjectFor!=null||window.mozInnerScreenX!=null)window.gecko=true;window.khtml=window.webkit;Object.extend=$extend;if(typeof HTMLElement=='undefined'){var HTMLElement=function(){};if(window.webkit)document.createElement("iframe");HTMLElement.prototype=(window.webkit)?window["[[DOMElement.prototype]]"]:{};}
HTMLElement.prototype.htmlElement=function(){};if(window.ie6)try{document.execCommand("BackgroundImageCache",false,true);}catch(e){};var Class=function(properties){var klass=function(){return(arguments[0]!==null&&this.initialize&&$type(this.initialize)=='function')?this.initialize.apply(this,arguments):this;};$extend(klass,this);klass.prototype=properties;klass.constructor=Class;return klass;};Class.empty=function(){};Class.prototype={extend:function(properties){var proto=new this(null);for(var property in properties){var pp=proto[property];proto[property]=Class.Merge(pp,properties[property]);}
return new Class(proto);},implement:function(){for(var i=0,l=arguments.length;i<l;i++)$extend(this.prototype,arguments[i]);}};Class.Merge=function(previous,current){if(previous&&previous!=current){var type=$type(current);if(type!=$type(previous))return current;switch(type){case'function':var merged=function(){this.parent=arguments.callee.parent;return current.apply(this,arguments);};merged.parent=previous;return merged;case'object':return $merge(previous,current);}}
return current;};var Chain=new Class({chain:function(fn){this.chains=this.chains||[];this.chains.push(fn);return this;},callChain:function(){if(this.chains&&this.chains.length)this.chains.shift().delay(10,this);},clearChain:function(){this.chains=[];}});var Events=new Class({addEvent:function(type,fn){if(fn!=Class.empty){this.$events=this.$events||{};this.$events[type]=this.$events[type]||[];this.$events[type].include(fn);}
return this;},fireEvent:function(type,args,delay){if(this.$events&&this.$events[type]){this.$events[type].each(function(fn){fn.create({'bind':this,'delay':delay,'arguments':args})();},this);}
return this;},removeEvent:function(type,fn){if(this.$events&&this.$events[type])this.$events[type].remove(fn);return this;}});var Options=new Class({setOptions:function(){this.options=$merge.apply(null,[this.options].extend(arguments));if(this.addEvent){for(var option in this.options){if($type(this.options[option]=='function')&&(/^on[A-Z]/).test(option))this.addEvent(option,this.options[option]);}}
return this;}});Array.extend({forEach:function(fn,bind){for(var i=0,j=this.length;i<j;i++)fn.call(bind,this[i],i,this);},filter:function(fn,bind){var results=[];for(var i=0,j=this.length;i<j;i++){if(fn.call(bind,this[i],i,this))results.push(this[i]);}
return results;},map:function(fn,bind){var results=[];for(var i=0,j=this.length;i<j;i++)results[i]=fn.call(bind,this[i],i,this);return results;},every:function(fn,bind){for(var i=0,j=this.length;i<j;i++){if(!fn.call(bind,this[i],i,this))return false;}
return true;},some:function(fn,bind){for(var i=0,j=this.length;i<j;i++){if(fn.call(bind,this[i],i,this))return true;}
return false;},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;},copy:function(start,length){start=start||0;if(start<0)start=this.length+start;length=length||(this.length-start);var newArray=[];for(var i=0;i<length;i++)newArray[i]=this[start++];return newArray;},remove:function(item){var i=0;var len=this.length;while(i<len){if(this[i]===item){this.splice(i,1);len--;}else{i++;}}
return this;},contains:function(item,from){return this.indexOf(item,from)!=-1;},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;},extend:function(array){for(var i=0,j=array.length;i<j;i++)this.push(array[i]);return this;},merge:function(array){for(var i=0,l=array.length;i<l;i++)this.include(array[i]);return this;},include:function(item){if(!this.contains(item))this.push(item);return this;},getRandom:function(){return this[$random(0,this.length-1)]||null;},getLast:function(){return this[this.length-1]||null;}});Array.prototype.each=Array.prototype.forEach;Array.each=Array.forEach;function $A(array){return Array.copy(array);};function $each(iterable,fn,bind){if(iterable&&typeof iterable.length=='number'&&$type(iterable)!='object'){Array.forEach(iterable,fn,bind);}else{for(var name in iterable)fn.call(bind||iterable,iterable[name],name);}};Array.prototype.test=Array.prototype.contains;String.extend({test:function(regex,params){return(($type(regex)=='string')?new RegExp(regex,params):regex).test(this);},toInt:function(){return parseInt(this,10);},toFloat:function(){return parseFloat(this);},camelCase:function(){return this.replace(/-\D/g,function(match){return match.charAt(1).toUpperCase();});},hyphenate:function(){return this.replace(/\w[A-Z]/g,function(match){return(match.charAt(0)+'-'+match.charAt(1).toLowerCase());});},capitalize:function(){return this.replace(/\b[a-z]/g,function(match){return match.toUpperCase();});},trim:function(){return this.replace(/^\s+|\s+$/g,'');},clean:function(){return this.replace(/\s{2,}/g,' ').trim();},rgbToHex:function(array){var rgb=this.match(/\d{1,3}/g);return(rgb)?rgb.rgbToHex(array):false;},hexToRgb:function(array){var hex=this.match(/^#?(\w{1,2})(\w{1,2})(\w{1,2})$/);return(hex)?hex.slice(1).hexToRgb(array):false;},contains:function(string,s){return(s)?(s+this+s).indexOf(s+string+s)>-1:this.indexOf(string)>-1;},escapeRegExp:function(){return this.replace(/([.*+?^${}()|[\]\/\\])/g,'\\$1');}});Array.extend({rgbToHex:function(array){if(this.length<3)return false;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('');},hexToRgb:function(array){if(this.length!=3)return false;var rgb=[];for(var i=0;i<3;i++){rgb.push(parseInt((this[i].length==1)?this[i]+this[i]:this[i],16));}
return array?rgb:'rgb('+rgb.join(',')+')';}});Function.extend({create:function(options){var fn=this;options=$merge({'bind':fn,'event':false,'arguments':null,'delay':false,'periodical':false,'attempt':false},options);if($chk(options.arguments)&&$type(options.arguments)!='array')options.arguments=[options.arguments];return function(event){var args;if(options.event){event=event||window.event;args=[(options.event===true)?event:new options.event(event)];if(options.arguments)args.extend(options.arguments);}
else args=options.arguments||arguments;var returns=function(){return fn.apply($pick(options.bind,fn),args);};if(options.delay)return setTimeout(returns,options.delay);if(options.periodical)return setInterval(returns,options.periodical);if(options.attempt)try{return returns();}catch(err){return false;};return returns();};},pass:function(args,bind){return this.create({'arguments':args,'bind':bind});},attempt:function(args,bind){return this.create({'arguments':args,'bind':bind,'attempt':true})();},bind:function(bind,args){return this.create({'bind':bind,'arguments':args});},bindAsEventListener:function(bind,args){return this.create({'bind':bind,'event':true,'arguments':args});},delay:function(delay,bind,args){return this.create({'delay':delay,'bind':bind,'arguments':args})();},periodical:function(interval,bind,args){return this.create({'periodical':interval,'bind':bind,'arguments':args})();}});Number.extend({toInt:function(){return parseInt(this);},toFloat:function(){return parseFloat(this);},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){for(var i=0;i<this;i++)fn(i);}});var Element=new Class({initialize:function(el,props){if($type(el)=='string'){if(window.ie&&props&&(props.name||props.type)){var name=(props.name)?' name="'+props.name+'"':'';var type=(props.type)?' type="'+props.type+'"':'';delete props.name;delete props.type;el='<'+el+name+type+'>';}
el=document.createElement(el);}
el=$(el);return(!props||!el)?el:el.set(props);}});var Elements=new Class({initialize:function(elements){return(elements)?$extend(elements,this):this;}});Elements.extend=function(props){for(var prop in props){this.prototype[prop]=props[prop];this[prop]=$native.generic(prop);}};function $(el){if(!el)return null;if(el.htmlElement)return Garbage.collect(el);if([window,document].contains(el))return el;var type=$type(el);if(type=='string'){el=document.getElementById(el);type=(el)?'element':false;}
if(type!='element')return null;if(el.htmlElement)return Garbage.collect(el);if(['object','embed'].contains(el.tagName.toLowerCase()))return el;$extend(el,Element.prototype);el.htmlElement=function(){};return Garbage.collect(el);};document.getElementsBySelector=document.getElementsByTagName;function $$(){var elements=[];for(var i=0,j=arguments.length;i<j;i++){var selector=arguments[i];switch($type(selector)){case'element':elements.push(selector);case'boolean':break;case false:break;case'string':selector=document.getElementsBySelector(selector,true);default:elements.extend(selector);}}
return $$.unique(elements);};$$.unique=function(array){var elements=[];for(var i=0,l=array.length;i<l;i++){if(array[i].$included)continue;var element=$(array[i]);if(element&&!element.$included){element.$included=true;elements.push(element);}}
for(var n=0,d=elements.length;n<d;n++)elements[n].$included=null;return new Elements(elements);};Elements.Multi=function(property){return function(){var args=arguments;var items=[];var elements=true;for(var i=0,j=this.length,returns;i<j;i++){returns=this[i][property].apply(this[i],args);if($type(returns)!='element')elements=false;items.push(returns);};return(elements)?$$.unique(items):items;};};Element.extend=function(properties){for(var property in properties){HTMLElement.prototype[property]=properties[property];Element.prototype[property]=properties[property];Element[property]=$native.generic(property);var elementsProperty=(Array.prototype[property])?property+'Elements':property;Elements.prototype[elementsProperty]=Elements.Multi(property);}};Element.extend({set:function(props){for(var prop in props){var val=props[prop];switch(prop){case'styles':this.setStyles(val);break;case'events':if(this.addEvents)this.addEvents(val);break;case'properties':this.setProperties(val);break;default:this.setProperty(prop,val);}}
return this;},inject:function(el,where){el=$(el);switch(where){case'before':el.parentNode.insertBefore(this,el);break;case'after':var next=el.getNext();if(!next)el.parentNode.appendChild(this);else el.parentNode.insertBefore(this,next);break;case'top':var first=el.firstChild;if(first){el.insertBefore(this,first);break;}
default:el.appendChild(this);}
return this;},injectBefore:function(el){return this.inject(el,'before');},injectAfter:function(el){return this.inject(el,'after');},injectInside:function(el){return this.inject(el,'bottom');},injectTop:function(el){return this.inject(el,'top');},adopt:function(){var elements=[];$each(arguments,function(argument){elements=elements.concat(argument);});$$(elements).inject(this);return this;},remove:function(){return this.parentNode.removeChild(this);},clone:function(contents){var el=$(this.cloneNode(contents!==false));if(!el.$events)return el;el.$events={};for(var type in this.$events)el.$events[type]={'keys':$A(this.$events[type].keys),'values':$A(this.$events[type].values)};return el.removeEvents();},replaceWith:function(el){el=$(el);this.parentNode.replaceChild(el,this);return el;},appendText:function(text){this.appendChild(document.createTextNode(text));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').clean();return this;},toggleClass:function(className){return this.hasClass(className)?this.removeClass(className):this.addClass(className);},setStyle:function(property,value){switch(property){case'opacity':return this.setOpacity(parseFloat(value));case'float':property=(window.ie)?'styleFloat':'cssFloat';}
property=property.camelCase();switch($type(value)){case'number':if(!['zIndex','zoom'].contains(property))value+='px';break;case'array':value='rgb('+value.join(',')+')';}
this.style[property]=value;return this;},setStyles:function(source){switch($type(source)){case'object':Element.setMany(this,'setStyle',source);break;case'string':this.style.cssText=source;}
return this;},setOpacity:function(opacity){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(window.ie)this.style.filter=(opacity==1)?'':"alpha(opacity="+opacity*100+")";this.style.opacity=this.$tmp.opacity=opacity;return this;},getStyle:function(property){property=property.camelCase();var result=this.style[property];if(!$chk(result)){if(property=='opacity')return this.$tmp.opacity;result=[];for(var style in Element.Styles){if(property==style){Element.Styles[style].each(function(s){var style=this.getStyle(s);result.push(parseInt(style)?style:'0px');},this);if(property=='border'){var every=result.every(function(bit){return(bit==result[0]);});return(every)?result[0]:false;}
return result.join(' ');}}
if(property.contains('border')){if(Element.Styles.border.contains(property)){return['Width','Style','Color'].map(function(p){return this.getStyle(property+p);},this).join(' ');}else if(Element.borderShort.contains(property)){return['Top','Right','Bottom','Left'].map(function(p){return this.getStyle('border'+p+property.replace('border',''));},this).join(' ');}}
if(document.defaultView)result=document.defaultView.getComputedStyle(this,null).getPropertyValue(property.hyphenate());else if(this.currentStyle)result=this.currentStyle[property];}
if(window.ie)result=Element.fixStyle(property,result,this);if(result&&property.test(/color/i)&&result.contains('rgb')){return result.split('rgb').splice(1,4).map(function(color){return color.rgbToHex();}).join(' ');}
return result;},getStyles:function(){return Element.getMany(this,'getStyle',arguments);},walk:function(brother,start){brother+='Sibling';var el=(start)?this[start]:this[brother];while(el&&$type(el)!='element')el=el[brother];return $(el);},getPrevious:function(){return this.walk('previous');},getNext:function(){return this.walk('next');},getFirst:function(){return this.walk('next','firstChild');},getLast:function(){return this.walk('previous','lastChild');},getParent:function(){return $(this.parentNode);},getChildren:function(){return $$(this.childNodes);},hasChild:function(el){return!!$A(this.getElementsByTagName('*')).contains(el);},getProperty:function(property){var index=Element.Properties[property];if(index)return this[index];var flag=Element.PropertiesIFlag[property]||0;if(!window.ie||flag)return this.getAttribute(property,flag);var node=this.attributes[property];return(node)?node.nodeValue:null;},removeProperty:function(property){var index=Element.Properties[property];if(index)this[index]='';else this.removeAttribute(property);return this;},getProperties:function(){return Element.getMany(this,'getProperty',arguments);},setProperty:function(property,value){var index=Element.Properties[property];if(index)this[index]=value;else this.setAttribute(property,value);return this;},setProperties:function(source){return Element.setMany(this,'setProperty',source);},setHTML:function(){this.innerHTML=$A(arguments).join('');return this;},setText:function(text){var tag=this.getTag();if(['style','script'].contains(tag)){if(window.ie){if(tag=='style')this.styleSheet.cssText=text;else if(tag=='script')this.setProperty('text',text);return this;}else{this.removeChild(this.firstChild);return this.appendText(text);}}
this[$defined(this.innerText)?'innerText':'textContent']=text;return this;},getText:function(){var tag=this.getTag();if(['style','script'].contains(tag)){if(window.ie){if(tag=='style')return this.styleSheet.cssText;else if(tag=='script')return this.getProperty('text');}else{return this.innerHTML;}}
return($pick(this.innerText,this.textContent));},getTag:function(){return this.tagName.toLowerCase();},empty:function(){Garbage.trash(this.getElementsByTagName('*'));return this.setHTML('');}});Element.fixStyle=function(property,result,element){if($chk(parseInt(result)))return result;if(['height','width'].contains(property)){var values=(property=='width')?['left','right']:['top','bottom'];var size=0;values.each(function(value){size+=element.getStyle('border-'+value+'-width').toInt()+element.getStyle('padding-'+value).toInt();});return element['offset'+property.capitalize()]-size+'px';}else if(property.test(/border(.+)Width|margin|padding/)){return'0px';}
return result;};Element.Styles={'border':[],'padding':[],'margin':[]};['Top','Right','Bottom','Left'].each(function(direction){for(var style in Element.Styles)Element.Styles[style].push(style+direction);});Element.borderShort=['borderWidth','borderStyle','borderColor'];Element.getMany=function(el,method,keys){var result={};$each(keys,function(key){result[key]=el[method](key);});return result;};Element.setMany=function(el,method,pairs){for(var key in pairs)el[method](key,pairs[key]);return el;};Element.Properties=new Abstract({'class':'className','for':'htmlFor','colspan':'colSpan','rowspan':'rowSpan','accesskey':'accessKey','tabindex':'tabIndex','maxlength':'maxLength','readonly':'readOnly','frameborder':'frameBorder','value':'value','disabled':'disabled','checked':'checked','multiple':'multiple','selected':'selected'});Element.PropertiesIFlag={'href':2,'src':2};Element.Methods={Listeners:{addListener:function(type,fn){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;}}};window.extend(Element.Methods.Listeners);document.extend(Element.Methods.Listeners);Element.extend(Element.Methods.Listeners);var Garbage={elements:[],collect:function(el){if(!el.$tmp){Garbage.elements.push(el);el.$tmp={'opacity':1};}
return el;},trash:function(elements){for(var i=0,j=elements.length,el;i<j;i++){if(!(el=elements[i])||!el.$tmp)continue;if(el.$events)el.fireEvent('trash').removeEvents();for(var p in el.$tmp)el.$tmp[p]=null;for(var d in Element.prototype)el[d]=null;Garbage.elements[Garbage.elements.indexOf(el)]=null;el.htmlElement=el.$tmp=el=null;}
Garbage.elements.remove(null);},empty:function(){Garbage.collect(window);Garbage.collect(document);Garbage.trash(Garbage.elements);}};window.addListener('beforeunload',function(){window.addListener('unload',Garbage.empty);if(window.ie)window.addListener('unload',CollectGarbage);});var Event=new Class({initialize:function(event){if(event&&event.$extended)return event;this.$extended=true;event=event||window.event;this.event=event;this.type=event.type;this.target=event.target||event.srcElement;if(this.target.nodeType==3)this.target=this.target.parentNode;this.shift=event.shiftKey;this.control=event.ctrlKey;this.alt=event.altKey;this.meta=event.metaKey;if(['DOMMouseScroll','mousewheel'].contains(this.type)){this.wheel=(event.wheelDelta)?event.wheelDelta/120:-(event.detail||0)/3;}else if(this.type.contains('key')){this.code=event.which||event.keyCode;for(var name in Event.keys){if(Event.keys[name]==this.code){this.key=name;break;}}
if(this.type=='keydown'){var fKey=this.code-111;if(fKey>0&&fKey<13)this.key='f'+fKey;}
this.key=this.key||String.fromCharCode(this.code).toLowerCase();}else if(this.type.test(/(click|mouse|menu)/)){this.page={'x':event.pageX||event.clientX+document.documentElement.scrollLeft,'y':event.pageY||event.clientY+document.documentElement.scrollTop};this.client={'x':event.pageX?event.pageX-window.pageXOffset:event.clientX,'y':event.pageY?event.pageY-window.pageYOffset:event.clientY};this.rightClick=(event.which==3)||(event.button==2);switch(this.type){case'mouseover':this.relatedTarget=event.relatedTarget||event.fromElement;break;case'mouseout':this.relatedTarget=event.relatedTarget||event.toElement;}
this.fixRelatedTarget();}
return this;},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;}});Event.fix={relatedTarget:function(){if(this.relatedTarget&&this.relatedTarget.nodeType==3)this.relatedTarget=this.relatedTarget.parentNode;},relatedTargetGecko:function(){try{Event.fix.relatedTarget.call(this);}catch(e){this.relatedTarget=this.target;}}};Event.prototype.fixRelatedTarget=(window.gecko)?Event.fix.relatedTargetGecko:Event.fix.relatedTarget;Event.keys=new Abstract({'enter':13,'up':38,'down':40,'left':37,'right':39,'esc':27,'space':32,'backspace':8,'tab':9,'delete':46});Element.Methods.Events={addEvent:function(type,fn){this.$events=this.$events||{};this.$events[type]=this.$events[type]||{'keys':[],'values':[]};if(this.$events[type].keys.contains(fn))return this;this.$events[type].keys.push(fn);var realType=type;var custom=Element.Events[type];if(custom){if(custom.add)custom.add.call(this,fn);if(custom.map)fn=custom.map;if(custom.type)realType=custom.type;}
if(!this.addEventListener)fn=fn.create({'bind':this,'event':true});this.$events[type].values.push(fn);return(Element.NativeEvents.contains(realType))?this.addListener(realType,fn):this;},removeEvent:function(type,fn){if(!this.$events||!this.$events[type])return this;var pos=this.$events[type].keys.indexOf(fn);if(pos==-1)return this;var key=this.$events[type].keys.splice(pos,1)[0];var value=this.$events[type].values.splice(pos,1)[0];var custom=Element.Events[type];if(custom){if(custom.remove)custom.remove.call(this,fn);if(custom.type)type=custom.type;}
return(Element.NativeEvents.contains(type))?this.removeListener(type,value):this;},addEvents:function(source){return Element.setMany(this,'addEvent',source);},removeEvents:function(type){if(!this.$events)return this;if(!type){for(var evType in this.$events)this.removeEvents(evType);this.$events=null;}else if(this.$events[type]){this.$events[type].keys.each(function(fn){this.removeEvent(type,fn);},this);this.$events[type]=null;}
return this;},fireEvent:function(type,args,delay){if(this.$events&&this.$events[type]){this.$events[type].keys.each(function(fn){fn.create({'bind':this,'delay':delay,'arguments':args})();},this);}
return this;},cloneEvents:function(from,type){if(!from.$events)return this;if(!type){for(var evType in from.$events)this.cloneEvents(from,evType);}else if(from.$events[type]){from.$events[type].keys.each(function(fn){this.addEvent(type,fn);},this);}
return this;}};window.extend(Element.Methods.Events);document.extend(Element.Methods.Events);Element.extend(Element.Methods.Events);Element.Events=new Abstract({'mouseenter':{type:'mouseover',map:function(event){event=new Event(event);if(event.relatedTarget!=this&&!this.hasChild(event.relatedTarget))this.fireEvent('mouseenter',event);}},'mouseleave':{type:'mouseout',map:function(event){event=new Event(event);if(event.relatedTarget!=this&&!this.hasChild(event.relatedTarget))this.fireEvent('mouseleave',event);}},'mousewheel':{type:(window.gecko)?'DOMMouseScroll':'mousewheel'}});Element.NativeEvents=['click','dblclick','mouseup','mousedown','mousewheel','DOMMouseScroll','mouseover','mouseout','mousemove','keydown','keypress','keyup','load','unload','beforeunload','resize','move','focus','blur','change','submit','reset','select','error','abort','contextmenu','scroll'];Function.extend({bindWithEvent:function(bind,args){return this.create({'bind':bind,'arguments':args,'event':Event});}});Elements.extend({filterByTag:function(tag){return new Elements(this.filter(function(el){return(Element.getTag(el)==tag);}));},filterByClass:function(className,nocash){var elements=this.filter(function(el){return(el.className&&el.className.contains(className,' '));});return(nocash)?elements:new Elements(elements);},filterById:function(id,nocash){var elements=this.filter(function(el){return(el.id==id);});return(nocash)?elements:new Elements(elements);},filterByAttribute:function(name,operator,value,nocash){var elements=this.filter(function(el){var current=Element.getProperty(el,name);if(!current)return false;if(!operator)return true;switch(operator){case'=':return(current==value);case'*=':return(current.contains(value));case'^=':return(current.substr(0,value.length)==value);case'$=':return(current.substr(current.length-value.length)==value);case'!=':return(current!=value);case'~=':return current.contains(value,' ');}
return false;});return(nocash)?elements:new Elements(elements);}});function $E(selector,filter){return($(filter)||document).getElement(selector);};function $ES(selector,filter){return($(filter)||document).getElementsBySelector(selector);};$$.shared={'regexp':/^(\w*|\*)(?:#([\w-]+)|\.([\w-]+))?(?:\[(\w+)(?:([!*^$]?=)["']?([^"'\]]*)["']?)?])?$/,'xpath':{getParam:function(items,context,param,i){var temp=[context.namespaceURI?'xhtml:':'',param[1]];if(param[2])temp.push('[@id="',param[2],'"]');if(param[3])temp.push('[contains(concat(" ", @class, " "), " ',param[3],' ")]');if(param[4]){if(param[5]&&param[6]){switch(param[5]){case'*=':temp.push('[contains(@',param[4],', "',param[6],'")]');break;case'^=':temp.push('[starts-with(@',param[4],', "',param[6],'")]');break;case'$=':temp.push('[substring(@',param[4],', string-length(@',param[4],') - ',param[6].length,' + 1) = "',param[6],'"]');break;case'=':temp.push('[@',param[4],'="',param[6],'"]');break;case'!=':temp.push('[@',param[4],'!="',param[6],'"]');}}else{temp.push('[@',param[4],']');}}
items.push(temp.join(''));return items;},getItems:function(items,context,nocash){var elements=[];var xpath=document.evaluate('.//'+items.join('//'),context,$$.shared.resolver,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);for(var i=0,j=xpath.snapshotLength;i<j;i++)elements.push(xpath.snapshotItem(i));return(nocash)?elements:new Elements(elements.map($));}},'normal':{getParam:function(items,context,param,i){if(i==0){if(param[2]){var el=context.getElementById(param[2]);if(!el||((param[1]!='*')&&(Element.getTag(el)!=param[1])))return false;items=[el];}else{items=$A(context.getElementsByTagName(param[1]));}}else{items=$$.shared.getElementsByTagName(items,param[1]);if(param[2])items=Elements.filterById(items,param[2],true);}
if(param[3])items=Elements.filterByClass(items,param[3],true);if(param[4])items=Elements.filterByAttribute(items,param[4],param[5],param[6],true);return items;},getItems:function(items,context,nocash){return(nocash)?items:$$.unique(items);}},resolver:function(prefix){return(prefix=='xhtml')?'http://www.w3.org/1999/xhtml':false;},getElementsByTagName:function(context,tagName){var found=[];for(var i=0,j=context.length;i<j;i++)found.extend(context[i].getElementsByTagName(tagName));return found;}};$$.shared.method=(window.xpath)?'xpath':'normal';Element.Methods.Dom={getElements:function(selector,nocash){var items=[];selector=selector.trim().split(' ');for(var i=0,j=selector.length;i<j;i++){var sel=selector[i];var param=sel.match($$.shared.regexp);if(!param)break;param[1]=param[1]||'*';var temp=$$.shared[$$.shared.method].getParam(items,this,param,i);if(!temp)break;items=temp;}
return $$.shared[$$.shared.method].getItems(items,this,nocash);},getElement:function(selector){return $(this.getElements(selector,true)[0]||false);},getElementsBySelector:function(selector,nocash){var elements=[];selector=selector.split(',');for(var i=0,j=selector.length;i<j;i++)elements=elements.concat(this.getElements(selector[i],true));return(nocash)?elements:$$.unique(elements);}};Element.extend({getElementById:function(id){var el=document.getElementById(id);if(!el)return false;for(var parent=el.parentNode;parent!=this;parent=parent.parentNode){if(!parent)return false;}
return el;},getElementsByClassName:function(className){return this.getElements('.'+className);}});document.extend(Element.Methods.Dom);Element.extend(Element.Methods.Dom);Element.extend({getValue:function(){switch(this.getTag()){case'select':var values=[];$each(this.options,function(option){if(option.selected)values.push($pick(option.value,option.text));});return(this.multiple)?values:values[0];case'input':if(!(this.checked&&['checkbox','radio'].contains(this.type))&&!['hidden','text','password'].contains(this.type))break;case'textarea':return this.value;}
return false;},getFormElements:function(){return $$(this.getElementsByTagName('input'),this.getElementsByTagName('select'),this.getElementsByTagName('textarea'));},toQueryString:function(){var queryString=[];this.getFormElements().each(function(el){var name=el.name;var value=el.getValue();if(value===false||!name||el.disabled)return;var qs=function(val){queryString.push(name+'='+encodeURIComponent(val));};if($type(value)=='array')value.each(qs);else qs(value);});return queryString.join('&');}});Element.extend({scrollTo:function(x,y){this.scrollLeft=x;this.scrollTop=y;},getSize:function(){return{'scroll':{'x':this.scrollLeft,'y':this.scrollTop},'size':{'x':this.offsetWidth,'y':this.offsetHeight},'scrollSize':{'x':this.scrollWidth,'y':this.scrollHeight}};},getPosition:function(overflown){overflown=overflown||[];var el=this,left=0,top=0;do{left+=el.offsetLeft||0;top+=el.offsetTop||0;el=el.offsetParent;}while(el);overflown.each(function(element){left-=element.scrollLeft||0;top-=element.scrollTop||0;});return{'x':left,'y':top};},getTop:function(overflown){return this.getPosition(overflown).y;},getLeft:function(overflown){return this.getPosition(overflown).x;},getCoordinates:function(overflown){var position=this.getPosition(overflown);var obj={'width':this.offsetWidth,'height':this.offsetHeight,'left':position.x,'top':position.y};obj.right=obj.left+obj.width;obj.bottom=obj.top+obj.height;return obj;}});Element.Events.domready={add:function(fn){if(window.loaded){fn.call(this);return;}
var domReady=function(){if(window.loaded)return;window.loaded=true;window.timer=$clear(window.timer);this.fireEvent('domready');}.bind(this);if(document.readyState&&window.webkit){window.timer=function(){if(['loaded','complete'].contains(document.readyState))domReady();}.periodical(50);}else if(document.readyState&&window.ie){if(!$('ie_ready')){var src=(window.location.protocol=='https:')?'://0':'javascript:void(0)';document.write('<script id="ie_ready" defer src="'+src+'"><\/script>');$('ie_ready').onreadystatechange=function(){if(this.readyState=='complete')domReady();};}}else{window.addListener("load",domReady);document.addListener("DOMContentLoaded",domReady);}}};window.onDomReady=function(fn){return this.addEvent('domready',fn);};window.extend({getWidth:function(){if(this.webkit419)return this.innerWidth;if(this.opera)return document.body.clientWidth;return document.documentElement.clientWidth;},getHeight:function(){if(this.webkit419)return this.innerHeight;if(this.opera)return document.body.clientHeight;return document.documentElement.clientHeight;},getScrollWidth:function(){if(this.ie)return Math.max(document.documentElement.offsetWidth,document.documentElement.scrollWidth);if(this.webkit)return document.body.scrollWidth;return document.documentElement.scrollWidth;},getScrollHeight:function(){if(this.ie)return Math.max(document.documentElement.offsetHeight,document.documentElement.scrollHeight);if(this.webkit)return document.body.scrollHeight;return document.documentElement.scrollHeight;},getScrollLeft:function(){return this.pageXOffset||document.documentElement.scrollLeft;},getScrollTop:function(){return this.pageYOffset||document.documentElement.scrollTop;},getSize:function(){return{'size':{'x':this.getWidth(),'y':this.getHeight()},'scrollSize':{'x':this.getScrollWidth(),'y':this.getScrollHeight()},'scroll':{'x':this.getScrollLeft(),'y':this.getScrollTop()}};},getPosition:function(){return{'x':0,'y':0};}});var Fx={};Fx.Base=new Class({options:{onStart:Class.empty,onComplete:Class.empty,onCancel:Class.empty,transition:function(p){return-(Math.cos(Math.PI*p)-1)/2;},duration:500,unit:'px',wait:true,fps:50},initialize:function(options){this.element=this.element||null;this.setOptions(options);if(this.options.initialize)this.options.initialize.call(this);},step:function(){var time=$time();if(time<this.time+this.options.duration){this.delta=this.options.transition((time-this.time)/this.options.duration);this.setNow();this.increase();}else{this.stop(true);this.set(this.to);this.fireEvent('onComplete',this.element,10);this.callChain();}},set:function(to){this.now=to;this.increase();return this;},setNow:function(){this.now=this.compute(this.from,this.to);},compute:function(from,to){return(to-from)*this.delta+from;},start:function(from,to){if(!this.options.wait)this.stop();else if(this.timer)return this;this.from=from;this.to=to;this.change=this.to-this.from;this.time=$time();this.timer=this.step.periodical(Math.round(1000/this.options.fps),this);this.fireEvent('onStart',this.element);return this;},stop:function(end){if(!this.timer)return this;this.timer=$clear(this.timer);if(!end)this.fireEvent('onCancel',this.element);return this;},custom:function(from,to){return this.start(from,to);},clearTimer:function(end){return this.stop(end);}});Fx.Base.implement(new Chain,new Events,new Options);Fx.CSS={select:function(property,to){if(property.test(/color/i))return this.Color;var type=$type(to);if((type=='array')||(type=='string'&&to.contains(' ')))return this.Multi;return this.Single;},parse:function(el,property,fromTo){if(!fromTo.push)fromTo=[fromTo];var from=fromTo[0],to=fromTo[1];if(!$chk(to)){to=from;from=el.getStyle(property);}
var css=this.select(property,to);return{'from':css.parse(from),'to':css.parse(to),'css':css};}};Fx.CSS.Single={parse:function(value){return parseFloat(value);},getNow:function(from,to,fx){return fx.compute(from,to);},getValue:function(value,unit,property){if(unit=='px'&&property!='opacity')value=Math.round(value);return value+unit;}};Fx.CSS.Multi={parse:function(value){return value.push?value:value.split(' ').map(function(v){return parseFloat(v);});},getNow:function(from,to,fx){var now=[];for(var i=0;i<from.length;i++)now[i]=fx.compute(from[i],to[i]);return now;},getValue:function(value,unit,property){if(unit=='px'&&property!='opacity')value=value.map(Math.round);return value.join(unit+' ')+unit;}};Fx.CSS.Color={parse:function(value){return value.push?value:value.hexToRgb(true);},getNow:function(from,to,fx){var now=[];for(var i=0;i<from.length;i++)now[i]=Math.round(fx.compute(from[i],to[i]));return now;},getValue:function(value){return'rgb('+value.join(',')+')';}};Fx.Style=Fx.Base.extend({initialize:function(el,property,options){this.element=$(el);this.property=property;this.parent(options);},hide:function(){return this.set(0);},setNow:function(){this.now=this.css.getNow(this.from,this.to,this);},set:function(to){this.css=Fx.CSS.select(this.property,to);return this.parent(this.css.parse(to));},start:function(from,to){if(this.timer&&this.options.wait)return this;var parsed=Fx.CSS.parse(this.element,this.property,[from,to]);this.css=parsed.css;return this.parent(parsed.from,parsed.to);},increase:function(){this.element.setStyle(this.property,this.css.getValue(this.now,this.options.unit,this.property));}});Element.extend({effect:function(property,options){return new Fx.Style(this,property,options);}});Fx.Styles=Fx.Base.extend({initialize:function(el,options){this.element=$(el);this.parent(options);},setNow:function(){for(var p in this.from)this.now[p]=this.css[p].getNow(this.from[p],this.to[p],this);},set:function(to){var parsed={};this.css={};for(var p in to){this.css[p]=Fx.CSS.select(p,to[p]);parsed[p]=this.css[p].parse(to[p]);}
return this.parent(parsed);},start:function(obj){if(this.timer&&this.options.wait)return this;this.now={};this.css={};var from={},to={};for(var p in obj){var parsed=Fx.CSS.parse(this.element,p,obj[p]);from[p]=parsed.from;to[p]=parsed.to;this.css[p]=parsed.css;}
return this.parent(from,to);},increase:function(){for(var p in this.now)this.element.setStyle(p,this.css[p].getValue(this.now[p],this.options.unit,p));}});Element.extend({effects:function(options){return new Fx.Styles(this,options);}});Fx.Elements=Fx.Base.extend({initialize:function(elements,options){this.elements=$$(elements);this.parent(options);},setNow:function(){for(var i in this.from){var iFrom=this.from[i],iTo=this.to[i],iCss=this.css[i],iNow=this.now[i]={};for(var p in iFrom)iNow[p]=iCss[p].getNow(iFrom[p],iTo[p],this);}},set:function(to){var parsed={};this.css={};for(var i in to){var iTo=to[i],iCss=this.css[i]={},iParsed=parsed[i]={};for(var p in iTo){iCss[p]=Fx.CSS.select(p,iTo[p]);iParsed[p]=iCss[p].parse(iTo[p]);}}
return this.parent(parsed);},start:function(obj){if(this.timer&&this.options.wait)return this;this.now={};this.css={};var from={},to={};for(var i in obj){var iProps=obj[i],iFrom=from[i]={},iTo=to[i]={},iCss=this.css[i]={};for(var p in iProps){var parsed=Fx.CSS.parse(this.elements[i],p,iProps[p]);iFrom[p]=parsed.from;iTo[p]=parsed.to;iCss[p]=parsed.css;}}
return this.parent(from,to);},increase:function(){for(var i in this.now){var iNow=this.now[i],iCss=this.css[i];for(var p in iNow)this.elements[i].setStyle(p,iCss[p].getValue(iNow[p],this.options.unit,p));}}});Fx.Scroll=Fx.Base.extend({options:{overflown:[],offset:{'x':0,'y':0},wheelStops:true},initialize:function(element,options){this.now=[];this.element=$(element);this.bound={'stop':this.stop.bind(this,false)};this.parent(options);if(this.options.wheelStops){this.addEvent('onStart',function(){document.addEvent('mousewheel',this.bound.stop);}.bind(this));this.addEvent('onComplete',function(){document.removeEvent('mousewheel',this.bound.stop);}.bind(this));}},setNow:function(){for(var i=0;i<2;i++)this.now[i]=this.compute(this.from[i],this.to[i]);},scrollTo:function(x,y){if(this.timer&&this.options.wait)return this;var el=this.element.getSize();var values={'x':x,'y':y};for(var z in el.size){var max=el.scrollSize[z]-el.size[z];if($chk(values[z]))values[z]=($type(values[z])=='number')?values[z].limit(0,max):max;else values[z]=el.scroll[z];values[z]+=this.options.offset[z];}
return this.start([el.scroll.x,el.scroll.y],[values.x,values.y]);},toTop:function(){return this.scrollTo(false,0);},toBottom:function(){return this.scrollTo(false,'full');},toLeft:function(){return this.scrollTo(0,false);},toRight:function(){return this.scrollTo('full',false);},toElement:function(el){var parent=this.element.getPosition(this.options.overflown);var target=$(el).getPosition(this.options.overflown);return this.scrollTo(target.x-parent.x,target.y-parent.y);},increase:function(){this.element.scrollTo(this.now[0],this.now[1]);}});Fx.Slide=Fx.Base.extend({options:{mode:'vertical'},initialize:function(el,options){this.element=$(el);this.wrapper=new Element('div',{'styles':$extend(this.element.getStyles('margin'),{'overflow':'hidden'})}).injectAfter(this.element).adopt(this.element);this.element.setStyle('margin',0);this.setOptions(options);this.now=[];this.parent(this.options);this.open=true;this.addEvent('onComplete',function(){this.open=(this.now[0]===0);});if(window.webkit419)this.addEvent('onComplete',function(){if(this.open)this.element.remove().inject(this.wrapper);});},setNow:function(){for(var i=0;i<2;i++)this.now[i]=this.compute(this.from[i],this.to[i]);},vertical:function(){this.margin='margin-top';this.layout='height';this.offset=this.element.offsetHeight;},horizontal:function(){this.margin='margin-left';this.layout='width';this.offset=this.element.offsetWidth;},slideIn:function(mode){this[mode||this.options.mode]();return this.start([this.element.getStyle(this.margin).toInt(),this.wrapper.getStyle(this.layout).toInt()],[0,this.offset]);},slideOut:function(mode){this[mode||this.options.mode]();return this.start([this.element.getStyle(this.margin).toInt(),this.wrapper.getStyle(this.layout).toInt()],[-this.offset,0]);},hide:function(mode){this[mode||this.options.mode]();this.open=false;return this.set([-this.offset,0]);},show:function(mode){this[mode||this.options.mode]();this.open=true;return this.set([0,this.offset]);},toggle:function(mode){if(this.wrapper.offsetHeight==0||this.wrapper.offsetWidth==0)return this.slideIn(mode);return this.slideOut(mode);},increase:function(){this.element.setStyle(this.margin,this.now[0]+this.options.unit);this.wrapper.setStyle(this.layout,this.now[1]+this.options.unit);}});Fx.Transition=function(transition,params){params=params||[];if($type(params)!='array')params=[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 Abstract({linear:function(p){return p;}});Fx.Transitions.extend=function(transitions){for(var transition in transitions){Fx.Transitions[transition]=new Fx.Transition(transitions[transition]);Fx.Transitions.compat(transition);}};Fx.Transitions.compat=function(transition){['In','Out','InOut'].each(function(easeType){Fx.Transitions[transition.toLowerCase()+easeType]=Fx.Transitions[transition]['ease'+easeType];});};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=-Math.pow((11-6*a-11*p)/4,2)+b*b;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]);});Fx.Transitions.compat(transition);});var Drag={};Drag.Base=new Class({options:{handle:false,unit:'px',onStart:Class.empty,onBeforeStart:Class.empty,onComplete:Class.empty,onSnap:Class.empty,onDrag:Class.empty,limit:false,modifiers:{x:'left',y:'top'},grid:false,snap:6},initialize:function(el,options){this.setOptions(options);this.element=$(el);this.handle=$(this.options.handle)||this.element;this.mouse={'now':{},'pos':{}};this.value={'start':{},'now':{}};this.bound={'start':this.start.bindWithEvent(this),'check':this.check.bindWithEvent(this),'drag':this.drag.bindWithEvent(this),'stop':this.stop.bind(this)};this.attach();if(this.options.initialize)this.options.initialize.call(this);},attach:function(){this.handle.addEvent('mousedown',this.bound.start);return this;},detach:function(){this.handle.removeEvent('mousedown',this.bound.start);return this;},start:function(event){this.fireEvent('onBeforeStart',this.element);this.mouse.start=event.page;var limit=this.options.limit;this.limit={'x':[],'y':[]};for(var z in this.options.modifiers){if(!this.options.modifiers[z])continue;this.value.now[z]=this.element.getStyle(this.options.modifiers[z]).toInt();this.mouse.pos[z]=event.page[z]-this.value.now[z];if(limit&&limit[z]){for(var i=0;i<2;i++){if($chk(limit[z][i]))this.limit[z][i]=($type(limit[z][i])=='function')?limit[z][i]():limit[z][i];}}}
if($type(this.options.grid)=='number')this.options.grid={'x':this.options.grid,'y':this.options.grid};document.addListener('mousemove',this.bound.check);document.addListener('mouseup',this.bound.stop);this.fireEvent('onStart',this.element);event.stop();},check:function(event){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){document.removeListener('mousemove',this.bound.check);document.addListener('mousemove',this.bound.drag);this.drag(event);this.fireEvent('onSnap',this.element);}
event.stop();},drag:function(event){this.out=false;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.limit[z]){if($chk(this.limit[z][1])&&(this.value.now[z]>this.limit[z][1])){this.value.now[z]=this.limit[z][1];this.out=true;}else if($chk(this.limit[z][0])&&(this.value.now[z]<this.limit[z][0])){this.value.now[z]=this.limit[z][0];this.out=true;}}
if(this.options.grid[z])this.value.now[z]-=(this.value.now[z]%this.options.grid[z]);this.element.setStyle(this.options.modifiers[z],this.value.now[z]+this.options.unit);}
this.fireEvent('onDrag',this.element);event.stop();},stop:function(){document.removeListener('mousemove',this.bound.check);document.removeListener('mousemove',this.bound.drag);document.removeListener('mouseup',this.bound.stop);this.fireEvent('onComplete',this.element);}});Drag.Base.implement(new Events,new Options);Element.extend({makeResizable:function(options){return new Drag.Base(this,$merge({modifiers:{x:'width',y:'height'}},options));}});Drag.Move=Drag.Base.extend({options:{droppables:[],container:false,overflown:[]},initialize:function(el,options){this.setOptions(options);this.element=$(el);this.droppables=$$(this.options.droppables);this.container=$(this.options.container);this.position={'element':this.element.getStyle('position'),'container':false};if(this.container)this.position.container=this.container.getStyle('position');if(!['relative','absolute','fixed'].contains(this.position.element))this.position.element='absolute';var top=this.element.getStyle('top').toInt();var left=this.element.getStyle('left').toInt();if(this.position.element=='absolute'&&!['relative','absolute','fixed'].contains(this.position.container)){top=$chk(top)?top:this.element.getTop(this.options.overflown);left=$chk(left)?left:this.element.getLeft(this.options.overflown);}else{top=$chk(top)?top:0;left=$chk(left)?left:0;}
this.element.setStyles({'top':top,'left':left,'position':this.position.element});this.parent(this.element);},start:function(event){this.overed=null;if(this.container){var cont=this.container.getCoordinates();var el=this.element.getCoordinates();if(this.position.element=='absolute'&&!['relative','absolute','fixed'].contains(this.position.container)){this.options.limit={'x':[cont.left,cont.right-el.width],'y':[cont.top,cont.bottom-el.height]};}else{this.options.limit={'y':[0,cont.height-el.height],'x':[0,cont.width-el.width]};}}
this.parent(event);},drag:function(event){this.parent(event);var overed=this.out?false:this.droppables.filter(this.checkAgainst,this).getLast();if(this.overed!=overed){if(this.overed)this.overed.fireEvent('leave',[this.element,this]);this.overed=overed?overed.fireEvent('over',[this.element,this]):null;}
return this;},checkAgainst:function(el){el=el.getCoordinates(this.options.overflown);var now=this.mouse.now;return(now.x>el.left&&now.x<el.right&&now.y<el.bottom&&now.y>el.top);},stop:function(){if(this.overed&&!this.out)this.overed.fireEvent('drop',[this.element,this]);else this.element.fireEvent('emptydrop',this);this.parent();return this;}});Element.extend({makeDraggable:function(options){return new Drag.Move(this,options);}});var XHR=new Class({options:{method:'post',async:true,onRequest:Class.empty,onSuccess:Class.empty,onFailure:Class.empty,urlEncoded:true,encoding:'utf-8',autoCancel:false,headers:{}},setTransport:function(){this.transport=(window.XMLHttpRequest)?new XMLHttpRequest():(window.ie?new ActiveXObject('Microsoft.XMLHTTP'):false);return this;},initialize:function(options){this.setTransport().setOptions(options);this.options.isSuccess=this.options.isSuccess||this.isSuccess;this.headers={};if(this.options.urlEncoded&&this.options.method=='post'){var encoding=(this.options.encoding)?'; charset='+this.options.encoding:'';this.setHeader('Content-type','application/x-www-form-urlencoded'+encoding);}
if(this.options.initialize)this.options.initialize.call(this);},onStateChange:function(){if(this.transport.readyState!=4||!this.running)return;this.running=false;var status=0;try{status=this.transport.status;}catch(e){};if(this.options.isSuccess.call(this,status))this.onSuccess();else this.onFailure();this.transport.onreadystatechange=Class.empty;},isSuccess:function(status){return((status>=200)&&(status<300));},onSuccess:function(){this.response={'text':this.transport.responseText,'xml':this.transport.responseXML};this.fireEvent('onSuccess',[this.response.text,this.response.xml]);this.callChain();},onFailure:function(){this.fireEvent('onFailure',this.transport);},setHeader:function(name,value){this.headers[name]=value;return this;},send:function(url,data){if(this.options.autoCancel)this.cancel();else if(this.running)return this;this.running=true;if(data&&this.options.method=='get'){url=url+(url.contains('?')?'&':'?')+data;data=null;}
this.transport.open(this.options.method.toUpperCase(),url,this.options.async);this.transport.onreadystatechange=this.onStateChange.bind(this);if((this.options.method=='post')&&this.transport.overrideMimeType)this.setHeader('Connection','close');$extend(this.headers,this.options.headers);for(var type in this.headers)try{this.transport.setRequestHeader(type,this.headers[type]);}catch(e){};this.fireEvent('onRequest');this.transport.send($pick(data,null));return this;},cancel:function(){if(!this.running)return this;this.running=false;this.transport.abort();this.transport.onreadystatechange=Class.empty;this.setTransport();this.fireEvent('onCancel');return this;}});XHR.implement(new Chain,new Events,new Options);var Ajax=XHR.extend({options:{data:null,update:null,onComplete:Class.empty,evalScripts:false,evalResponse:false},initialize:function(url,options){this.addEvent('onSuccess',this.onComplete);this.setOptions(options);this.options.data=this.options.data||this.options.postBody;if(!['post','get'].contains(this.options.method)){this._method='_method='+this.options.method;this.options.method='post';}
this.parent();this.setHeader('X-Requested-With','XMLHttpRequest');this.setHeader('Accept','text/javascript, text/html, application/xml, text/xml, */*');this.url=url;},onComplete:function(){if(this.options.update)$(this.options.update).empty().setHTML(this.response.text);if(this.options.evalScripts||this.options.evalResponse)this.evalScripts();this.fireEvent('onComplete',[this.response.text,this.response.xml],20);},request:function(data){data=data||this.options.data;switch($type(data)){case'element':data=$(data).toQueryString();break;case'object':data=Object.toQueryString(data);}
if(this._method)data=(data)?[this._method,data].join('&'):this._method;return this.send(this.url,data);},evalScripts:function(){var script,scripts;if(this.options.evalResponse||(/(ecma|java)script/).test(this.getHeader('Content-type')))scripts=this.response.text;else{scripts=[];var regexp=/<script[^>]*>([\s\S]*?)<\/script>/gi;while((script=regexp.exec(this.response.text)))scripts.push(script[1]);scripts=scripts.join('\n');}
if(scripts)(window.execScript)?window.execScript(scripts):window.setTimeout(scripts,0);},getHeader:function(name){try{return this.transport.getResponseHeader(name);}catch(e){};return null;}});Object.toQueryString=function(source){var queryString=[];for(var property in source)queryString.push(encodeURIComponent(property)+'='+encodeURIComponent(source[property]));return queryString.join('&');};Element.extend({send:function(options){return new Ajax(this.getProperty('action'),$merge({data:this.toQueryString()},options,{method:'post'})).request();}});var Cookie=new Abstract({options:{domain:false,path:false,duration:false,secure:false},set:function(key,value,options){options=$merge(this.options,options);value=encodeURIComponent(value);if(options.domain)value+='; domain='+options.domain;if(options.path)value+='; path='+options.path;if(options.duration){var date=new Date();date.setTime(date.getTime()+options.duration*24*60*60*1000);value+='; expires='+date.toGMTString();}
if(options.secure)value+='; secure';document.cookie=key+'='+value;return $extend(options,{'key':key,'value':value});},get:function(key){var value=document.cookie.match('(?:^|;)\\s*'+key.escapeRegExp()+'=([^;]*)');return value?decodeURIComponent(value[1]):false;},remove:function(cookie,options){if($type(cookie)=='object')this.set(cookie.key,'',$merge(cookie,{duration:-1}));else this.set(cookie,'',$merge(options,{duration:-1}));}});var Json={toString:function(obj){switch($type(obj)){case'string':return'"'+obj.replace(/(["\\])/g,'\\$1')+'"';case'array':return'['+obj.map(Json.toString).join(',')+']';case'object':var string=[];for(var property in obj)string.push(Json.toString(property)+':'+Json.toString(obj[property]));return'{'+string.join(',')+'}';case'number':if(isFinite(obj))break;case false:return'null';}
return String(obj);},evaluate:function(str,secure){return(($type(str)!='string')||(secure&&!str.test(/^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/)))?null:eval('('+str+')');}};Json.Remote=XHR.extend({initialize:function(url,options){this.url=url;this.addEvent('onSuccess',this.onComplete);this.parent(options);this.setHeader('X-Request','JSON');},send:function(obj){return this.parent(this.url,'json='+Json.toString(obj));},onComplete:function(){this.fireEvent('onComplete',[Json.evaluate(this.response.text,this.options.secure)]);}});var Asset=new Abstract({javascript:function(source,properties){properties=$merge({'onload':Class.empty},properties);var script=new Element('script',{'src':source}).addEvents({'load':properties.onload,'readystatechange':function(){if(this.readyState=='complete')this.fireEvent('load');}});delete properties.onload;return script.setProperties(properties).inject(document.head);},css:function(source,properties){return new Element('link',$merge({'rel':'stylesheet','media':'screen','type':'text/css','href':source},properties)).inject(document.head);},image:function(source,properties){properties=$merge({'onload':Class.empty,'onabort':Class.empty,'onerror':Class.empty},properties);var image=new Image();image.src=source;var element=new Element('img',{'src':source});['load','abort','error'].each(function(type){var event=properties['on'+type];delete properties['on'+type];element.addEvent(type,function(){this.removeEvent(type,arguments.callee);event.call(this);});});if(image.width&&image.height)element.fireEvent('load',element,1);return element.setProperties(properties);},images:function(sources,options){options=$merge({onComplete:Class.empty,onProgress:Class.empty},options);if(!sources.push)sources=[sources];var images=[];var counter=0;sources.each(function(source){var img=new Asset.image(source,{'onload':function(){options.onProgress.call(this,counter);counter++;if(counter==sources.length)options.onComplete();}});images.push(img);});return new Elements(images);}});var Hash=new Class({length:0,initialize:function(object){this.obj=object||{};this.setLength();},get:function(key){return(this.hasKey(key))?this.obj[key]:null;},hasKey:function(key){return(key in this.obj);},set:function(key,value){if(!this.hasKey(key))this.length++;this.obj[key]=value;return this;},setLength:function(){this.length=0;for(var p in this.obj)this.length++;return this;},remove:function(key){if(this.hasKey(key)){delete this.obj[key];this.length--;}
return this;},each:function(fn,bind){$each(this.obj,fn,bind);},extend:function(obj){$extend(this.obj,obj);return this.setLength();},merge:function(){this.obj=$merge.apply(null,[this.obj].extend(arguments));return this.setLength();},empty:function(){this.obj={};this.length=0;return this;},keys:function(){var keys=[];for(var property in this.obj)keys.push(property);return keys;},values:function(){var values=[];for(var property in this.obj)values.push(this.obj[property]);return values;}});function $H(obj){return new Hash(obj);};Hash.Cookie=Hash.extend({initialize:function(name,options){this.name=name;this.options=$extend({'autoSave':true},options||{});this.load();},save:function(){if(this.length==0){Cookie.remove(this.name,this.options);return true;}
var str=Json.toString(this.obj);if(str.length>4096)return false;Cookie.set(this.name,str,this.options);return true;},load:function(){this.obj=Json.evaluate(Cookie.get(this.name),true)||{};this.setLength();}});Hash.Cookie.Methods={};['extend','set','merge','empty','remove'].each(function(method){Hash.Cookie.Methods[method]=function(){Hash.prototype[method].apply(this,arguments);if(this.options.autoSave)this.save();return this;};});Hash.Cookie.implement(Hash.Cookie.Methods);var Color=new Class({initialize:function(color,type){type=type||(color.push?'rgb':'hex');var rgb,hsb;switch(type){case'rgb':rgb=color;hsb=rgb.rgbToHsb();break;case'hsb':rgb=color.hsbToRgb();hsb=color;break;default:rgb=color.hexToRgb(true);hsb=rgb.rgbToHsb();}
rgb.hsb=hsb;rgb.hex=rgb.rgbToHex();return $extend(rgb,Color.prototype);},mix:function(){var colors=$A(arguments);var alpha=($type(colors[colors.length-1])=='number')?colors.pop():50;var rgb=this.copy();colors.each(function(color){color=new Color(color);for(var i=0;i<3;i++)rgb[i]=Math.round((rgb[i]/100*(100-alpha))+(color[i]/100*alpha));});return new Color(rgb,'rgb');},invert:function(){return new Color(this.map(function(value){return 255-value;}));},setHue:function(value){return new Color([value,this.hsb[1],this.hsb[2]],'hsb');},setSaturation:function(percent){return new Color([this.hsb[0],percent,this.hsb[2]],'hsb');},setBrightness:function(percent){return new Color([this.hsb[0],this.hsb[1],percent],'hsb');}});function $RGB(r,g,b){return new Color([r,g,b],'rgb');};function $HSB(h,s,b){return new Color([h,s,b],'hsb');};Array.extend({rgbToHsb:function(){var red=this[0],green=this[1],blue=this[2];var hue,saturation,brightness;var max=Math.max(red,green,blue),min=Math.min(red,green,blue);var delta=max-min;brightness=max/255;saturation=(max!=0)?delta/max:0;if(saturation==0){hue=0;}else{var rr=(max-red)/delta;var gr=(max-green)/delta;var br=(max-blue)/delta;if(red==max)hue=br-gr;else if(green==max)hue=2+rr-br;else hue=4+gr-rr;hue/=6;if(hue<0)hue++;}
return[Math.round(hue*360),Math.round(saturation*100),Math.round(brightness*100)];},hsbToRgb:function(){var br=Math.round(this[2]/100*255);if(this[1]==0){return[br,br,br];}else{var hue=this[0]%360;var f=hue%60;var p=Math.round((this[2]*(100-this[1]))/10000*255);var q=Math.round((this[2]*(6000-this[1]*f))/600000*255);var t=Math.round((this[2]*(6000-this[1]*(60-f)))/600000*255);switch(Math.floor(hue/60)){case 0:return[br,t,p];case 1:return[q,br,p];case 2:return[p,br,t];case 3:return[p,q,br];case 4:return[t,p,br];case 5:return[br,p,q];}}
return false;}});var Scroller=new Class({options:{area:20,velocity:1,onChange:function(x,y){this.element.scrollTo(x,y);}},initialize:function(element,options){this.setOptions(options);this.element=$(element);this.mousemover=([window,document].contains(element))?$(document.body):this.element;},start:function(){this.coord=this.getCoords.bindWithEvent(this);this.mousemover.addListener('mousemove',this.coord);},stop:function(){this.mousemover.removeListener('mousemove',this.coord);this.timer=$clear(this.timer);},getCoords:function(event){this.page=(this.element==window)?event.client:event.page;if(!this.timer)this.timer=this.scroll.periodical(50,this);},scroll:function(){var el=this.element.getSize();var pos=this.element.getPosition();var change={'x':0,'y':0};for(var z in this.page){if(this.page[z]<(this.options.area+pos[z])&&el.scroll[z]!=0)
change[z]=(this.page[z]-this.options.area-pos[z])*this.options.velocity;else if(this.page[z]+this.options.area>(el.size[z]+pos[z])&&el.scroll[z]+el.size[z]!=el.scrollSize[z])
change[z]=(this.page[z]-el.size[z]+this.options.area-pos[z])*this.options.velocity;}
if(change.y||change.x)this.fireEvent('onChange',[el.scroll.x+change.x,el.scroll.y+change.y]);}});Scroller.implement(new Events,new Options);var Slider=new Class({options:{onChange:Class.empty,onComplete:Class.empty,onTick:function(pos){this.knob.setStyle(this.p,pos);},mode:'horizontal',steps:100,offset:0},initialize:function(el,knob,options){this.element=$(el);this.knob=$(knob);this.setOptions(options);this.previousChange=-1;this.previousEnd=-1;this.step=-1;this.element.addEvent('mousedown',this.clickedElement.bindWithEvent(this));var mod,offset;switch(this.options.mode){case'horizontal':this.z='x';this.p='left';mod={'x':'left','y':false};offset='offsetWidth';break;case'vertical':this.z='y';this.p='top';mod={'x':false,'y':'top'};offset='offsetHeight';}
this.max=this.element[offset]-this.knob[offset]+(this.options.offset*2);this.half=this.knob[offset]/2;this.getPos=this.element['get'+this.p.capitalize()].bind(this.element);this.knob.setStyle('position','relative').setStyle(this.p,-this.options.offset);var lim={};lim[this.z]=[-this.options.offset,this.max-this.options.offset];this.drag=new Drag.Base(this.knob,{limit:lim,modifiers:mod,snap:0,onStart:function(){this.draggedKnob();}.bind(this),onDrag:function(){this.draggedKnob();}.bind(this),onComplete:function(){this.draggedKnob();this.end();}.bind(this)});if(this.options.initialize)this.options.initialize.call(this);},set:function(step){this.step=step.limit(0,this.options.steps);this.checkStep();this.end();this.fireEvent('onTick',this.toPosition(this.step));return this;},clickedElement:function(event){var position=event.page[this.z]-this.getPos()-this.half;position=position.limit(-this.options.offset,this.max-this.options.offset);this.step=this.toStep(position);this.checkStep();this.end();this.fireEvent('onTick',position);},draggedKnob:function(){this.step=this.toStep(this.drag.value.now[this.z]);this.checkStep();},checkStep:function(){if(this.previousChange!=this.step){this.previousChange=this.step;this.fireEvent('onChange',this.step);}},end:function(){if(this.previousEnd!==this.step){this.previousEnd=this.step;this.fireEvent('onComplete',this.step+'');}},toStep:function(position){return Math.round((position+this.options.offset)/this.max*this.options.steps);},toPosition:function(step){return this.max*step/this.options.steps;}});Slider.implement(new Events);Slider.implement(new Options);var SmoothScroll=Fx.Scroll.extend({initialize:function(options){this.parent(window,options);this.links=(this.options.links)?$$(this.options.links):$$(document.links);var location=window.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&&$(anchor))this.useLink(link,anchor);},this);if(!window.webkit419)this.addEvent('onComplete',function(){window.location.hash=this.anchor;});},useLink:function(link,anchor){link.addEvent('click',function(event){this.anchor=anchor;this.toElement(anchor);event.stop();}.bindWithEvent(this));}});var Sortables=new Class({options:{handles:false,onStart:Class.empty,onComplete:Class.empty,ghost:true,snap:3,onDragStart:function(element,ghost){ghost.setStyle('opacity',0.7);element.setStyle('opacity',0.7);},onDragComplete:function(element,ghost){element.setStyle('opacity',1);ghost.remove();this.trash.remove();}},initialize:function(list,options){this.setOptions(options);this.list=$(list);this.elements=this.list.getChildren();this.handles=(this.options.handles)?$$(this.options.handles):this.elements;this.bound={'start':[],'moveGhost':this.moveGhost.bindWithEvent(this)};for(var i=0,l=this.handles.length;i<l;i++){this.bound.start[i]=this.start.bindWithEvent(this,this.elements[i]);}
this.attach();if(this.options.initialize)this.options.initialize.call(this);this.bound.move=this.move.bindWithEvent(this);this.bound.end=this.end.bind(this);},attach:function(){this.handles.each(function(handle,i){handle.addEvent('mousedown',this.bound.start[i]);},this);},detach:function(){this.handles.each(function(handle,i){handle.removeEvent('mousedown',this.bound.start[i]);},this);},start:function(event,el){this.active=el;this.coordinates=this.list.getCoordinates();if(this.options.ghost){var position=el.getPosition();this.offset=event.page.y-position.y;this.trash=new Element('div').inject(document.body);this.ghost=el.clone().inject(this.trash).setStyles({'position':'absolute','left':position.x,'top':event.page.y-this.offset});document.addListener('mousemove',this.bound.moveGhost);this.fireEvent('onDragStart',[el,this.ghost]);}
document.addListener('mousemove',this.bound.move);document.addListener('mouseup',this.bound.end);this.fireEvent('onStart',el);event.stop();},moveGhost:function(event){var value=event.page.y-this.offset;value=value.limit(this.coordinates.top,this.coordinates.bottom-this.ghost.offsetHeight);this.ghost.setStyle('top',value);event.stop();},move:function(event){var now=event.page.y;this.previous=this.previous||now;var up=((this.previous-now)>0);var prev=this.active.getPrevious();var next=this.active.getNext();if(prev&&up&&now<prev.getCoordinates().bottom)this.active.injectBefore(prev);if(next&&!up&&now>next.getCoordinates().top)this.active.injectAfter(next);this.previous=now;},serialize:function(converter){return this.list.getChildren().map(converter||function(el){return this.elements.indexOf(el);},this);},end:function(){this.previous=null;document.removeListener('mousemove',this.bound.move);document.removeListener('mouseup',this.bound.end);if(this.options.ghost){document.removeListener('mousemove',this.bound.moveGhost);this.fireEvent('onDragComplete',[this.active,this.ghost]);}
this.fireEvent('onComplete',this.active);}});Sortables.implement(new Events,new Options);var Tips=new Class({options:{onShow:function(tip){tip.setStyle('visibility','visible');},onHide:function(tip){tip.setStyle('visibility','hidden');},maxTitleChars:30,showDelay:100,hideDelay:100,className:'tool',offsets:{'x':16,'y':16},fixed:false},initialize:function(elements,options){this.setOptions(options);this.toolTip=new Element('div',{'class':this.options.className+'-tip','styles':{'position':'absolute','top':'0','left':'0','visibility':'hidden'}}).inject(document.body);this.wrapper=new Element('div').inject(this.toolTip);$$(elements).each(this.build,this);if(this.options.initialize)this.options.initialize.call(this);},build:function(el){el.$tmp.myTitle=(el.href&&el.getTag()=='a')?el.href.replace('http://',''):(el.rel||false);if(el.title){var dual=el.title.split('::');if(dual.length>1){el.$tmp.myTitle=dual[0].trim();el.$tmp.myText=dual[1].trim();}else{el.$tmp.myText=el.title;}
el.removeAttribute('title');}else{el.$tmp.myText=false;}
if(el.$tmp.myTitle&&el.$tmp.myTitle.length>this.options.maxTitleChars)el.$tmp.myTitle=el.$tmp.myTitle.substr(0,this.options.maxTitleChars-1)+"&hellip;";el.addEvent('mouseenter',function(event){this.start(el);if(!this.options.fixed)this.locate(event);else this.position(el);}.bind(this));if(!this.options.fixed)el.addEvent('mousemove',this.locate.bindWithEvent(this));var end=this.end.bind(this);el.addEvent('mouseleave',end);el.addEvent('trash',end);},start:function(el){this.wrapper.empty();if(el.$tmp.myTitle){this.title=new Element('span').inject(new Element('div',{'class':this.options.className+'-title'}).inject(this.wrapper)).setHTML(el.$tmp.myTitle);}
if(el.$tmp.myText){this.text=new Element('span').inject(new Element('div',{'class':this.options.className+'-text'}).inject(this.wrapper)).setHTML(el.$tmp.myText);}
$clear(this.timer);this.timer=this.show.delay(this.options.showDelay,this);},end:function(event){$clear(this.timer);this.timer=this.hide.delay(this.options.hideDelay,this);},position:function(element){var pos=element.getPosition();this.toolTip.setStyles({'left':pos.x+this.options.offsets.x,'top':pos.y+this.options.offsets.y});},locate:function(event){var win={'x':window.getWidth(),'y':window.getHeight()};var scroll={'x':window.getScrollLeft(),'y':window.getScrollTop()};var tip={'x':this.toolTip.offsetWidth,'y':this.toolTip.offsetHeight};var prop={'x':'left','y':'top'};for(var z in prop){var pos=event.page[z]+this.options.offsets[z];if((pos+tip[z]-scroll[z])>win[z])pos=event.page[z]-this.options.offsets[z]-tip[z];this.toolTip.setStyle(prop[z],pos);};},show:function(){if(this.options.timeout)this.timer=this.hide.delay(this.options.timeout,this);this.fireEvent('onShow',[this.toolTip]);},hide:function(){this.fireEvent('onHide',[this.toolTip]);}});Tips.implement(new Events,new Options);var Group=new Class({initialize:function(){this.instances=$A(arguments);this.events={};this.checker={};},addEvent:function(type,fn){this.checker[type]=this.checker[type]||{};this.events[type]=this.events[type]||[];if(this.events[type].contains(fn))return false;else this.events[type].push(fn);this.instances.each(function(instance,i){instance.addEvent(type,this.check.bind(this,[type,instance,i]));},this);return this;},check:function(type,instance,i){this.checker[type][i]=true;var every=this.instances.every(function(current,j){return this.checker[type][j]||false;},this);if(!every)return;this.checker[type]={};this.events[type].each(function(event){event.call(this,this.instances,instance);},this);}});var Accordion=Fx.Elements.extend({options:{onActive:Class.empty,onBackground:Class.empty,display:0,show:false,height:true,width:false,opacity:true,fixedHeight:false,fixedWidth:false,wait:false,alwaysHide:false},initialize:function(){var options,togglers,elements,container;$each(arguments,function(argument,i){switch($type(argument)){case'object':options=argument;break;case'element':container=$(argument);break;default:var temp=$$(argument);if(!togglers)togglers=temp;else elements=temp;}});this.togglers=togglers||[];this.elements=elements||[];this.container=$(container);this.setOptions(options);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('onActive',[this.togglers[i],el]);}else{for(var fx in this.effects)el.setStyle(fx,0);}},this);this.parent(this.elements);if($chk(this.options.display))this.display(this.options.display);},addSection:function(toggler,element,pos){toggler=$(toggler);element=$(element);var test=this.togglers.contains(toggler);var len=this.togglers.length;this.togglers.include(toggler);this.elements.include(element);if(len&&(!test||pos)){pos=$pick(pos,len-1);toggler.injectBefore(this.togglers[pos]);element.injectAfter(toggler);}else if(this.container&&!test){toggler.inject(this.container);element.inject(this.container);}
var idx=this.togglers.indexOf(toggler);toggler.addEvent('click',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){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?'onBackground':'onActive',[this.togglers[i],el]);for(var fx in this.effects)obj[i][fx]=hide?0:el[this.effects[fx]];},this);return this.start(obj);},showThisHideOpen:function(index){return this.display(index);}});Fx.Accordion=Accordion;

/* core.js */

function switchFontSize(ckname,val){var bd=document.getElementsByTagName('body');if(!bd||!bd.length)return;bd=bd[0];var oldclass='fs'+CurrentFontSize;switch(val){case'inc':if(CurrentFontSize+1<7){CurrentFontSize++;}
break;case'dec':if(CurrentFontSize-1>0){CurrentFontSize--;}
break;case'reset':default:CurrentFontSize=DefaultFontSize;}
var newclass='fs'+CurrentFontSize;bd.className=bd.className.replace(new RegExp('fs.?','g'),'');bd.className=trim(bd.className);bd.className+=(bd.className?' ':'')+newclass;createCookie(ckname,CurrentFontSize,365);}
function switchTool(ckname,val){createCookie(ckname,val,365);window.location.reload();}
function cpanel_reset(){var matches=document.cookie.match('(?:^|;)\\s*'+tmpl_name.escapeRegExp()+'_([^=]*)=([^;]*)','g');if(!matches)return;for(i=0;i<matches.length;i++){var ck=matches[i].match('(?:^|;)\\s*'+tmpl_name.escapeRegExp()+'_([^=]*)=([^;]*)');if(ck){createCookie(tmpl_name+'_'+ck[1],'',-1);}}
if(window.location.href.indexOf('?')>-1)window.location.href=window.location.href.substr(0,window.location.href.indexOf('?'));else window.location.reload();}
function cpanel_apply(){var elems=document.getElementById('ja-cpanel-main').getElementsByTagName('*');var usersetting={};for(i=0;i<elems.length;i++){var el=elems[i];if(el.name&&(match=el.name.match(/^user_(.*)$/))){var name=match[1];var value='';if(el.tagName.toLowerCase()=='input'&&(el.type.toLowerCase()=='radio'||el.type.toLowerCase()=='checkbox')){if(el.checked)value=el.value;}else{value=el.value;}
if(usersetting[name]){if(value)usersetting[name]=value+','+usersetting[name];}else{usersetting[name]=value;}}}
for(var k in usersetting){name=tmpl_name+'_'+k;value=usersetting[k];createCookie(name,value,365);}
if(window.location.href.indexOf('?')>-1)window.location.href=window.location.href.substr(0,window.location.href.indexOf('?'));else window.location.reload();}
function createCookie(name,value,days){if(days){var date=new Date();date.setTime(date.getTime()+(days*24*60*60*1000));var expires="; expires="+date.toGMTString();}
else expires="";document.cookie=name+"="+value+expires+"; path=/";}
function trim(str,chars){return ltrim(rtrim(str,chars),chars);}
function ltrim(str,chars){chars=chars||"\\s";return str.replace(new RegExp("^["+chars+"]+","g"),"");}
function rtrim(str,chars){chars=chars||"\\s";return str.replace(new RegExp("["+chars+"]+$","g"),"");}
function getScreenWidth(){var x=0;if(self.innerHeight){x=self.innerWidth;}else if(document.documentElement&&document.documentElement.clientHeight){x=document.documentElement.clientWidth;}else if(document.body){x=document.body.clientWidth;}
return x;}
function equalHeight(els){els=$$_(els);if(!els||els.length<2)return;var maxh=0;var els_=[];els.each(function(el,i){if(!el)return;els_[i]=el;var ch=els_[i].getCoordinates().height;maxh=(maxh<ch)?ch:maxh;},this);els_.each(function(el,i){if(!el)return;if(maxh-el.getStyle('padding-top').toInt()-el.getStyle('padding-bottom').toInt()>0)el.setStyle('min-height',maxh-el.getStyle('padding-top').toInt()-el.getStyle('padding-bottom').toInt());},this);}
function getDeepestWrapper(el){while(el.getChildren().length==1)
{el=el.getChildren()[0];}
return el;}
function fixHeight(els,group1,group2){els=$$_(els);group1=$$_(group1);group2=$$_(group2);if(!els||!group1)return;var height=0;group1.each(function(el){if(!el)return;height+=el.getCoordinates().height;});if(group2){group2.each(function(el){if(!el)return;height-=el.getCoordinates().height;});}
els.each(function(el,i){if(!el)return;if(height-el.getStyle('padding-top').toInt()-el.getStyle('padding-bottom').toInt()>0)el.setStyle('min-height',height-el.getStyle('padding-top').toInt()-el.getStyle('padding-bottom').toInt());});}
function addFirstLastItem(el){el=$(el);if(!el||!el.getChildren()||!el.getChildren().length)return;el.getChildren()[0].addClass('first-item');el.getChildren()[el.getChildren().length-1].addClass('last-item');}
function $$_(els){if($type(els)=='string')return $$(els);var els_=[];els.each(function(el){el=$(el);if(el)els_.push(el);});return els_;}

/* mega.js */

var jaMegaMenuMoo=new Class({initialize:function(menu,options){this.options=$extend({slide:true,duration:300,fading:false,bgopacity:0.9,delayHide:500,direction:'down',action:'mouseenter',hidestyle:'normal'},options||{});if(!this.options.slide&&!this.options.fading)this.options.delayHide=10;this.menu=menu;this.childopen=new Array();this.imageloaded=false;this.loaded=false;this.start();},start:function(){if(this.loaded)return;this.menu=$(this.menu);var images=this.menu.getElements('img');if(images&&images.length&&!this.imageloaded){var imgs=[];images.each(function(image){imgs.push(image.src)});if(imgs.length){new Asset.images(imgs,{onComplete:function(){this.start();}.bind(this)});this.imageloaded=true;this.start.delay(3000,this);return;}}
this.loaded=true;p=this.menu;while(p=p.getParent()){if(p.hasClass('main')||p.hasClass('wrap')){this.wrapper=p;break;}}
this.items=this.menu.getElements('li.mega');this.items.each(function(li){if((a=li.getElement('a.mega'))&&this.isChild(a,li))li.a=a;else li.a=null;li._parent=this.getParent(li);if((childcontent=li.getElement('.childcontent'))&&this.isChild(childcontent,li)){li.childcontent=childcontent;li.childcontent_inner=li.childcontent.getElement('.childcontent-inner-wrap');var coor=li.childcontent_inner.getCoordinates();li._w=li.getElement('.childcontent-inner').offsetWidth;li._h=li.getElement('.childcontent-inner').offsetHeight;li.level0=li.getParent().hasClass('level0');li.childcontent.setStyles({'width':li._w+10,'height':li._h});li.childcontent_inner.setStyles({'width':li._w});li.childcontent_inner1=li.childcontent.getElement('.childcontent-inner');li.childcontent_inner1.ol=false;if(li.childcontent_inner1.getStyle('overflow')=='auto'||li.childcontent_inner1.getStyle('overflow')=='scroll'){li.childcontent_inner1.ol=true;if(window.ie6||window.ie7){li.childcontent_inner1.setStyle('position','relative');}
if(window.ie6){li.childcontent_inner1.setStyle('height',li.childcontent_inner1.getStyle('max-height')||400);}}
if(this.options.direction=='up'){if(li.level0){li.childcontent.setStyle('top',-li.childcontent.offsetHeight);}else{li.childcontent.setStyle('bottom',0);}}}
else li.childcontent=null;if(li.childcontent&&this.options.bgopacity){var bg=new Element('div',{'class':'childcontent-bg'});bg.injectTop(li.childcontent_inner);bg.setStyles({'width':'100%','height':li._h,'opacity':this.options.bgopacity,'position':'absolute','top':0,'left':0,'z-index':1});if(li.childcontent.getStyle('background'))bg.setStyle('background',li.childcontent.getStyle('background'));if(li.childcontent.getStyle('background-image'))bg.setStyle('background-image',li.childcontent.getStyle('background-image'));if(li.childcontent.getStyle('background-repeat'))bg.setStyle('background-repeat',li.childcontent.getStyle('background-repeat'));if(li.childcontent.getStyle('background-color'))bg.setStyle('background-color',li.childcontent.getStyle('background-color'));li.childcontent.setStyle('background','none');li.childcontent_inner.setStyles({'position':'relative','z-index':2});}
if(li.childcontent&&(this.options.slide||this.options.fading)){li.childcontent.setStyles({'left':'auto'});if(li.childcontent.hasClass('right'))li.childcontent.setStyle('right',0);if(this.options.slide){li.childcontent.setStyles({'left':'auto','overflow':'hidden'});if(li.level0){if(this.options.direction=='up'){li.childcontent_inner.setStyle('bottom',-li._h-20);}else{li.childcontent_inner.setStyle('margin-top',-li._h-20);}}else{li.childcontent_inner.setStyle('margin-left',-li._w-20);}}
if(this.options.fading){li.childcontent_inner.setStyle('opacity',0);}
li.fx=new Fx.Styles(li.childcontent_inner,{duration:this.options.duration,transition:Fx.Transitions.linear,onComplete:this.itemAnimDone.bind(this,li)});li.eff_on={};li.eff_off={};if(this.options.slide){if(li.level0){if(this.options.direction=='up'){li.eff_on['bottom']=0;li.eff_off['bottom']=-li._h;}else{li.eff_on['margin-top']=0;li.eff_off['margin-top']=-li._h;}}else{li.eff_on['margin-left']=0;li.eff_off['margin-left']=-li._w;}}
if(this.options.fading){li.eff_on['opacity']=1;li.eff_off['opacity']=0;}}
if(this.options.action=='click'&&li.childcontent){li.addEvent('click',function(e){var event=new Event(e);if(li.hasClass('group'))return;if(li.childcontent){if(li.status=='open'){if(this.cursorIn(li,event)){this.itemHide(li);}else{this.itemHideOthers(li);}}else{this.itemShow(li);}}else{if(li.a)location.href=li.a.href;}
event.stop();}.bind(this));this.windowClickFn=function(e){this.itemHideOthers(null);}.bind(this);}
if(this.options.action=='mouseover'||this.options.action=='mouseenter'){li.addEvent('mouseenter',function(e){if(li.hasClass('group'))return;$clear(li.timer);this.itemShow(li);e.stop();}.bind(this));li.addEvent('mouseleave',function(e){if(li.hasClass('group'))return;$clear(li.timer);if(li.childcontent)li.timer=this.itemHide.delay(this.options.delayHide,this,[li,e]);else this.itemHide(li,e);e.stop();}.bind(this));if(li.a&&li.childcontent){li.clickable=false;li.a.addEvent('click',function(e){if(!li.clickable){new Event(e).stop();}}.bind(this));}}
if(li.a&&!li.childcontent){li.a.addEvent('click',function(e){this.itemHideOthers(null);this.menu.getElements('.active').removeClass('active');var p=li;while(p){p.addClass('active');p.a.addClass('active');p=p._parent;}}.bind(this));}
if(li.childcontent)this.positionSubmenu(li);},this);if(this.options.slide||this.options.fading){this.menu.getElements('.childcontent').setStyle('display','none');}},getParent:function(li){var p=li;while((p=p.getParent())){if(this.items.contains(p)&&!p.hasClass('group'))return p;if(!p||p==this.menu)return null;}},cursorIn:function(el,event){if(!el||!event)return false;var pos=$merge(el.getPosition(),{'w':el.offsetWidth,'h':el.offsetHeight});;var cursor={'x':event.page.x,'y':event.page.y};if(cursor.x>pos.x&&cursor.x<pos.x+el.offsetWidth&&cursor.y>pos.y&&cursor.y<pos.y+el.offsetHeight)return true;return false;},isChild:function(child,parent){return!!parent.getChildren().contains(child);},itemOver:function(li){if(li.hasClass('haschild'))
li.removeClass('haschild').addClass('haschild-over');li.addClass('over');if(li.a){li.a.addClass('over');}},itemOut:function(li){if(li.hasClass('haschild-over'))
li.removeClass('haschild-over').addClass('haschild');li.removeClass('over');if(li.a){li.a.removeClass('over');}},itemShow:function(li){clearTimeout(li.timer);if(li.status=='open')return;this.itemOver(li);li.status='open';this.enableclick.delay(100,this,li);this.childopen.push(li);this.itemHideOthers(li);if(li.childcontent){if(this.options.action=='click'&&this.childopen.length&&!this.windowClickEventAdded){$(document.body).addEvent('click',this.windowClickFn);this.windowClickEventAdded=true;}
this.positionSubmenu(li);}
if(!$defined(li.fx)||!$defined(li.childcontent))return;li.childcontent.setStyle('display','block');li.childcontent.setStyles({'overflow':'hidden'});if(li.childcontent_inner1.ol)li.childcontent_inner1.setStyles({'overflow':'hidden'});li.fx.stop();li.fx.start(li.eff_on);},itemHide:function(li,e){if(e&&e.page){if(this.cursorIn(li,e)||this.cursorIn(li.childcontent,e)){return;}
var p=li._parent;if(p&&!this.cursorIn(p,e)&&!this.cursorIn(p.childcontent,e)){p.fireEvent('mouseleave',e);}}
clearTimeout(li.timer);this.itemOut(li);li.status='close';this.childopen.remove(li);if(li.childcontent){if(this.options.action=='click'&&!this.childopen.length&&this.windowClickEventAdded){$(document.body).removeEvent('click',this.windowClickFn);this.windowClickEventAdded=false;}}
if(!$defined(li.fx)||!$defined(li.childcontent))return;if(li.childcontent.getStyle('opacity')==0)return;li.childcontent.setStyles({'overflow':'hidden'});if(li.childcontent_inner1.ol)li.childcontent_inner1.setStyles({'overflow':'hidden'});li.fx.stop();switch(this.options.hidestyle){case'fast':li.fx.options.duration=100;li.fx.start($merge(li.eff_off,{'opacity':0}));break;case'fastwhenshow':if(!e){li.fx.start($merge(li.eff_off,{'opacity':0}));}else{li.fx.start(li.eff_off);}
break;case'normal':default:li.fx.start(li.eff_off);break;}},itemAnimDone:function(li){if(li.status=='close'){if(this.options.hidestyle.test(/fast/)){li.fx.options.duration=this.options.duration;if(!this.options.fading)li.childcontent_inner.setStyle('opacity',1);}
li.childcontent.setStyles({'display':'none'});this.disableclick.delay(100,this,li);}
if(li.status=='open'){li.childcontent.setStyles({'overflow':''});if(li.childcontent_inner1.ol)li.childcontent_inner1.setStyles({'overflow-y':'auto'});}},itemHideOthers:function(el){var fakeevent=null
if(el&&!el.childcontent)fakeevent={};var curopen=this.childopen.copy();curopen.each(function(li){if(li&&typeof(li.status)!='undefined'&&(!el||(li!=el&&!li.hasChild(el)))){this.itemHide(li,fakeevent);}},this);},enableclick:function(li){if(li.a&&li.childcontent)li.clickable=true;},disableclick:function(li){if(li.a&&li.childcontent)li.clickable=false;},positionSubmenu:function(li){if(li.level0){if(!window.isRTL){var lcor=li.getCoordinates();var ccor=li.childcontent.getCoordinates();var ml=0;var l=lcor.left;var r=l+ccor.width;if(this.wrapper){var wcor=this.wrapper.getCoordinates();l=l-wcor.left;r=wcor.right-r+10;}else{r=window.getWidth()-r+10;}
if(l<0||l+r<0){ml=-l;}else if(r<0){ml=r;}
if(ml!=0)li.childcontent.setStyle('margin-left',ml);}else{var lcor=li.getCoordinates();var ccor=li.childcontent.getCoordinates();var mr=0;var r=lcor.right;var l=r-ccor.width;if(this.wrapper){var wcor=this.wrapper.getCoordinates();l=l-wcor.left;r=wcor.right-r+10;}else{r=window.getWidth()-r+10;}
if(r<0||l+r<0){mr=-r;}else if(l<0){mr=l;}
if(mr!=0)li.childcontent.setStyle('margin-right',mr);}}else{var lcor=li.getCoordinates();var ccor=li.childcontent.getCoordinates();var ml=0;var l=ccor.left;var r=l+ccor.width;if(this.wrapper){var wcor=this.wrapper.getCoordinates();l=l-wcor.left;r=wcor.right-r+10;}else{r=window.getWidth()-r+10;}
if(r<0){li.childcontent.setStyle('margin-left',-ccor.width+20);li.eff_on['margin-left']=0;li.eff_off['margin-left']=li._w+20;li.childcontent_inner.setStyle('margin-left',li.eff_off['margin-left']);}}}});

/* modal.js */

var SqueezeBox={presets:{size:{x:600,y:450},sizeLoading:{x:200,y:150},marginInner:{x:20,y:20},marginImage:{x:150,y:200},handler:false,adopt:null,closeWithOverlay:true,zIndex:65555,overlayOpacity:0.7,classWindow:'',classOverlay:'',disableFx:false,onOpen:Class.empty,onClose:Class.empty,onUpdate:Class.empty,onResize:Class.empty,onMove:Class.empty,onShow:Class.empty,onHide:Class.empty,fxOverlayDuration:250,fxResizeDuration:750,fxContentDuration:250,ajaxOptions:{}},initialize:function(options){if(this.options)return this;this.presets=$merge(this.presets,options)
this.setOptions(this.presets);this.build();this.listeners={window:this.reposition.bind(this,[null]),close:this.close.bind(this),key:this.onkeypress.bind(this)};this.isOpen=this.isLoading=false;this.window.close=this.listeners.close;return this;},build:function(){this.overlay=new Element('div',{id:'sbox-overlay',styles:{display:'none',zIndex:this.options.zIndex}});this.content=new Element('div',{id:'sbox-content'});this.btnClose=new Element('a',{id:'sbox-btn-close',href:'#'});this.window=new Element('div',{id:'sbox-window',styles:{display:'none',zIndex:this.options.zIndex+2}}).adopt(this.btnClose,this.content);if(!window.ie6){this.overlay.setStyles({position:'fixed',top:0,left:0});this.window.setStyles({position:'fixed',top:'50%',left:'50%'});}else{this.overlay.style.setExpression('marginTop','document.documentElement.scrollTop + "px"');this.window.style.setExpression('marginTop','0 - parseInt(this.offsetHeight / 2) + document.documentElement.scrollTop + "px"');this.overlay.setStyles({position:'absolute',top:'0%',left:'0%'});this.window.setStyles({position:'absolute',top:'0%',left:'0%'});}
$(document.body).adopt(this.overlay,this.window);this.fx={overlay:this.overlay.effect('opacity',{duration:this.options.fxOverlayDuration,wait:false}).set(0),window:this.window.effects({duration:this.options.fxResizeDuration,wait:false}),content:this.content.effect('opacity',{duration:this.options.fxContentDuration,wait:false}).set(0)};},addClick:function(el){return el.addEvent('click',function(){if(this.fromElement(el))return false;}.bind(this));},fromElement:function(el,options){this.initialize();this.element=$(el);if(this.element&&this.element.rel)options=$merge(options||{},Json.evaluate(this.element.rel));this.setOptions(this.presets,options);this.assignOptions();this.url=(this.element?(this.options.url||this.element.href):el)||'';if(this.options.handler){var handler=this.options.handler;return this.setContent(handler,this.parsers[handler].call(this,true));}
var res=false;for(var key in this.parsers){if((res=this.parsers[key].call(this)))return this.setContent(key,res);}
return this;},assignOptions:function(){this.overlay.setProperty('class',this.options.classOverlay);this.window.setProperty('class',this.options.classWindow);},close:function(e){if(e)new Event(e).stop();if(!this.isOpen)return this;this.fx.overlay.start(0).chain(this.toggleOverlay.bind(this));this.window.setStyle('display','none');this.trashImage();this.toggleListeners();this.isOpen=null;this.fireEvent('onClose',[this.content]).removeEvents();this.options={};this.setOptions(this.presets).callChain();return this;},onError:function(){if(this.image)this.trashImage();this.setContent('Error during loading');},trashImage:function(){if(this.image)this.image=this.image.onload=this.image.onerror=this.image.onabort=null;},setContent:function(handler,content){this.content.setProperty('class','sbox-content-'+handler);this.applyTimer=this.applyContent.delay(this.fx.overlay.options.duration,this,[this.handlers[handler].call(this,content)]);if(this.overlay.opacity)return this;this.toggleOverlay(true);this.fx.overlay.start(this.options.overlayOpacity);this.reposition();return this;},applyContent:function(content,size){this.applyTimer=$clear(this.applyTimer);this.hideContent();if(!content)this.toggleLoading(true);else{if(this.isLoading)this.toggleLoading(false);this.fireEvent('onUpdate',[this.content],20);}
this.content.empty()[['string','array',false].contains($type(content))?'setHTML':'adopt'](content||'');this.callChain();if(!this.isOpen){this.toggleListeners(true);this.resize(size,true);this.isOpen=true;this.fireEvent('onOpen',[this.content]);}else this.resize(size);},resize:function(size,instantly){var sizes=window.getSize();this.size=$merge(this.isLoading?this.options.sizeLoading:this.options.size,size);var to={width:this.size.x,height:this.size.y,marginLeft:-this.size.x/2,marginTop:-this.size.y/2};$clear(this.showTimer||null);this.hideContent();if(!instantly)this.fx.window.start(to).chain(this.showContent.bind(this));else{this.window.setStyles(to).setStyle('display','');this.showTimer=this.showContent.delay(50,this);}
this.reposition(sizes);},toggleListeners:function(state){var task=state?'addEvent':'removeEvent';this.btnClose[task]('click',this.listeners.close);if(this.options.closeWithOverlay)this.overlay[task]('click',this.listeners.close);document[task]('keydown',this.listeners.key);window[task]('resize',this.listeners.window);window[task]('scroll',this.listeners.window);},toggleLoading:function(state){this.isLoading=state;this.window[state?'addClass':'removeClass']('sbox-loading');if(state)this.fireEvent('onLoading',[this.window]);},toggleOverlay:function(state){this.overlay.setStyle('display',state?'':'none');$(document.body)[state?'addClass':'removeClass']('body-overlayed');},showContent:function(){if(this.content.opacity)this.fireEvent('onShow',[this.window]);this.fx.content.start(1);},hideContent:function(){if(!this.content.opacity)this.fireEvent('onHide',[this.window]);this.fx.content.stop().set(0);},onkeypress:function(e){switch(e.key){case'esc':case'x':this.close();break;}},reposition:function(sizes){sizes=sizes||window.getSize();this.overlay.setStyles({width:sizes.size.x,height:sizes.size.y});this.fireEvent('onMove',[this.overlay,this.window,sizes]);},removeEvents:function(type){if(!this.$events)return this;if(!type)this.$events=null;else if(this.$events[type])this.$events[type]=null;return this;},parsers:{'image':function(preset){return(preset||this.url.test(/\.(jpg|jpeg|png|gif|bmp)$/i))?this.url:false;},'adopt':function(preset){if($(this.options.adopt))return $(this.options.adopt);if(preset||($(this.element)&&!this.element.parentNode))return $(this.element);var bits=this.url.match(/#([\w-]+)$/);return bits?$(bits[1]):false;},'url':function(preset){return(preset||(this.url&&!this.url.test(/^javascript:/i)))?this.url:false;},'iframe':function(preset){return(preset||this.url)?this.url:false;},'string':function(preset){return true;}},handlers:{'image':function(url){this.image=new Image();var events={loaded:function(){var win={x:window.getWidth()-this.options.marginImage.x,y:window.getHeight()-this.options.marginImage.y};var size={x:this.image.width,y:this.image.height};for(var i=0;i<2;i++)
if(size.x>win.x){size.y*=win.x/size.x;size.x=win.x;}else if(size.y>win.y){size.x*=win.y/size.y;size.y=win.y;}
size={x:parseInt(size.x),y:parseInt(size.y)};if(window.webkit419)this.image=new Element('img',{'src':this.image.src});else $(this.image);this.image.setProperties({'width':size.x,'height':size.y});this.applyContent(this.image,size);}.bind(this),failed:this.onError.bind(this)};(function(){this.src=url;}).delay(10,this.image);this.image.onload=events.loaded;this.image.onerror=this.image.onabort=events.failed;},'adopt':function(el){return el.clone();},'url':function(url){this.ajax=new Ajax(url,this.options.ajaxOptions);this.ajax.addEvent('onSuccess',function(resp){this.applyContent(resp);this.ajax=null;}.bind(this));this.ajax.addEvent('onFailure',this.onError.bind(this));this.ajax.request.delay(10,this.ajax);},'iframe':function(url){return new Element('iframe',{'src':url,'frameBorder':0,'width':this.options.size.x,'height':this.options.size.y});},'string':function(str){return str;}},extend:$extend};SqueezeBox.extend(SqueezeBox,Events.prototype);SqueezeBox.extend(SqueezeBox,Options.prototype);SqueezeBox.extend(SqueezeBox,Chain.prototype);

/* k2.js */

window.addEvent('domready',function(){if($('comment-form')){$('comment-form').addEvent('submit',function(e){new Event(e).stop();$('formLog').empty().addClass('formLogLoading');this.send({onComplete:function(res){$('formLog').removeClass('formLogLoading').setHTML(res);if(typeof(Recaptcha)!="undefined"){Recaptcha.reload();}
if(res.substr(13,7)=='success'){window.location.reload();}}});});}
if($('fontDecrease')){$('fontDecrease').addEvent('click',function(e){new Event(e).stop();$$('.itemFullText').removeClass('largerFontSize');$$('.itemFullText').addClass('smallerFontSize');});}
if($('fontIncrease')){$('fontIncrease').addEvent('click',function(e){new Event(e).stop();$$('.itemFullText').removeClass('smallerFontSize');$$('.itemFullText').addClass('largerFontSize');});}
new SmoothScroll({duration:500,links:'a.k2Anchor'});if($$('.itemRatingForm').length>0){$$('.itemRatingForm a').addEvent('click',function(e){e=new Event(e).stop();var itemID=this.getProperty('rel');var log=$('itemRatingLog'+itemID).empty().addClass('formLogLoading');var rating=this.getText();var url=K2RatingURL+"index.php?option=com_k2&view=item&task=vote&user_rating="+rating+"&itemID="+itemID;new Ajax(url,{method:"get",update:log,onComplete:function(){log.removeClass('formLogLoading');new Ajax(K2RatingURL+"index.php?option=com_k2&view=item&task=getVotesPercentage&itemID="+itemID,{method:"get",onComplete:function(percentage){$('itemCurrentRating'+itemID).setStyle('width',percentage+"%");setTimeout(function(){new Ajax(K2RatingURL+"index.php?option=com_k2&view=item&task=getVotesNum&itemID="+itemID,{method:"get",update:log}).request();},2000);}}).request();}}).request();});}
$$('.classicPopup').addEvent('click',function(e){e=new Event(e).stop();var options=Json.evaluate(this.getProperty('rel'));window.open(this.getProperty('href'),'K2PopUpWindow','width='+options.x+',height='+options.y+',menubar=yes,resizable=yes');});});window.addEvent('load',function(){if($$('.subCategory')){var blocks=$$('.subCategory');var maxHeight=0;blocks.each(function(item){maxHeight=Math.max(maxHeight,parseInt(item.getStyle('height')));});blocks.setStyle('height',maxHeight);}});

/* caption.js */

var JCaption=new Class({initialize:function(selector)
{this.selector=selector;var images=$$(selector);images.each(function(image){this.createCaption(image);},this);},createCaption:function(element)
{var caption=document.createTextNode(element.title);var container=document.createElement("div");var text=document.createElement("p");var width=element.getAttribute("width");var align=element.getAttribute("align");if(!width){width=element.width;}
if(!align)
align=element.getStyle("float");if(!align)
align=element.style.styleFloat;if(align==""){align="none";}
text.appendChild(caption);text.className=this.selector.replace('.','_');element.parentNode.insertBefore(container,element);container.appendChild(element);if(element.title!=""){container.appendChild(text);}
container.className=this.selector.replace('.','_');container.className=container.className+" "+align;container.setAttribute("style","float:"+align);container.style.width=width+"px";}});document.caption=null;window.addEvent('load',function(){var caption=new JCaption('img.caption')
document.caption=caption});

/* ja.tabs.js */

var wrap_W=0;var JATabs=new Class({initialize:function(element,options){this.options=$extend({position:'top',width:'100%',height:'auto',skipAnim:false,animType:'animMoveHor',mouseType:'mouseover',changeTransition:Fx.Transitions.Pow.easeIn,duration:1000,mouseOverClass:'hover',activateOnLoad:'first',useAjax:false,ajaxUrl:'',ajaxOptions:'get',ajaxLoadingText:'Loading...',fixheight:1,fixwidth:1,colors:''},options||{});this.el=$(element);this.elid=element;this._W=this.el.offsetWidth.toInt();wrap_W=this._W;if(this.options.height=='auto'){this.options.fixheight=0;}
if($type(this.options.colors)=='string'){regex=/(\d*):([^,]*)/gi;var colors=[];while((result=regex.exec(this.options.colors)))
colors[result[1]]=result[2];this.options.colors=colors;}
this._H=this.el.getParent().offsetHeight.toInt();this.panels=$$('#'+this.elid+' .ja-tab-content');this.panelwrap=this.el.getElement('.ja-tab-panels-'+this.options.position);this.divtitles=$$('#'+this.elid+' .ja-tabs-title-'+this.options.position);this.titles=$$('#'+this.elid+' div.ja-tabs-title-'+this.options.position+' ul li');this.boxTab_H=this.el.getElement('ul.ja-tabs-title').offsetHeight+this.el.getElement('ul.ja-tabs-title').offsetTop;if(this.panels.length<=1)
{this.panels.setStyle('position','relative');return;}
this.titles.each(function(item,i){var color=item.getElement('h3').className;if(!color)color=this.options.colors[i];item._color='';if(color){item.addClass(color);item._color=color;}
item.addEvent(this.options.mouseType,function(){if(item.className.indexOf('active')!=-1)return;item.removeClass(this.options.mouseOverClass);this.activate(item,this.options.skipAnim);}.bind(this));item.addEvent('mouseover',function(){if(item!=this.activeTitle)
{item.addClass(this.options.mouseOverClass);}}.bind(this));item.addEvent('mouseout',function(){if(item!=this.activeTitle)
{item.removeClass(this.options.mouseOverClass);}}.bind(this));}.bind(this));this.titles[0].addClass('first');this.titles[this.titles.length-1].addClass('last');this.titles[0].addClass('active');this.tabHeight=this.el.getElement('.ja-tabs-title-'+this.options.position);this.minHeight=0;if(!this.options.fixheight)
{this.panelwrap.setStyle('height',this.minHeight);}
else if((this.options.position!='left')&&(this.options.position!='right')){this.panelwrap.setStyle('height',this._H-this.titles[0].offsetHeight.toInt());}
if((this.options.position=='left')||(this.options.position=='right')){var maxw=eval(this._W-this.divtitles[0].offsetWidth.toInt()-10);this.panelwrap.setStyle('width',maxw);}
this.titles.each(function(el,i){el.panel=this.panels[i];el.panel._idx=i;},this);if(this.options.skipAnim)this.options.animType='animNone';if((eval('typeof '+this.options.animType)=='undefined')||(eval('$type ('+this.options.animType+')')!='class')){this.options.animType='animFade';}
this.anim=eval('new '+this.options.animType+'(this)');if(this.options.activateOnLoad!='none')
{if(this.options.activateOnLoad=='first')
{this.activate(this.titles[0],true);}
else
{this.activate(this.options.activateOnLoad,true);}}
if(window.ie)this.firstload=true;window.addEvent('resize',this.resize.bind(this));},resize:function(){this._W=this.el.offsetWidth;maxW=this._W;if((this.options.position=='left')||(this.options.position=='right')){this.minHeight=this.boxTab_H;if(!this.options.fixheight){}
maxW=this._W-this.divtitles[0].offsetWidth.toInt()-10;this.panelwrap.setStyle('width',maxW);}
else{this.panelwrap.setStyle('height',Math.max(this.minHeight,this.activeTitle.panel.offsetHeight));}
if(wrap_W!=this._W){this.anim.reposition();};},activate:function(tab,skipAnim){if($type(tab)=='string')
{myTab=$$('#'+this.elid+' ul li').filterByAttribute('title','=',tab)[0];tab=myTab;}else if($type(tab)=='number'){if(tab<0||tab>=this.titles.length)tab=0;tab=this.titles[parseInt(tab)];}
if(!tab)tab=this.titles[0];if(this.options.useAjax)this.cancelAjax();if(this.options.useAjax&&!tab.loaded){this._getContent(tab);this.activeTitle=tab;return;}
if(!$defined(skipAnim))
{skipAnim=false;}
if($type(tab)=='element')
{var newTab=tab.panel;var curTab=this.activePanel;this.activePanel=newTab;this.anim.move(curTab,newTab,skipAnim);this.titles.removeClass('active');tab.addClass('active');if(this.activeTitle&&this.activeTitle._color)this.panelwrap.removeClass(this.activeTitle._color);if(tab._color)this.panelwrap.addClass(tab._color);this.activeTitle=tab;if(!this.options.fixheight){if(skipAnim){this.panelwrap.setStyle('height',Math.max(this.minHeight,this.activePanel.offsetHeight));if((this.options.position=='left')||(this.options.position=='right')){this.tabHeight.setStyle('height',Math.max(this.minHeight,this.panelwrap.offsetHeight,this.boxTab_H));}}else{if(!this.mainfx)this.mainfx=new Fx.Style(this.panelwrap,'height',{duration:this.options.duration});this.mainfx.stop();this.mainfx.start(Math.max(this.minHeight,this.activePanel.offsetHeight));if((this.options.position=='left')||(this.options.position=='right')){if(!this.changeEffectTitle)this.changeEffectTitle=new Fx.Style(this.tabHeight,'height',{duration:this.options.duration});this.changeEffectTitle.start(Math.max(this.activePanel.offsetHeight,this.boxTab_H));}}}
else{this.panelwrap.setStyle('height',this.options.height);if((this.options.position=='left')||(this.options.position=='right')){this.tabHeight.setStyle('height',this.options.height);}}}},cancelAjax:function(){if(this.loadingTab){this.tabRequest.cancel();this.loadingTab.imgLoading.remove();this.tabRequest=null;this.loadingTab=null;}},_getContent:function(tab){this.loadingTab=tab;var ids=this.options.ids.split(',');if(!ids.length||ids[tab.panel._idx]==undefined)return'';var h3=$(this.loadingTab.getElementsByTagName('H3')[0]);var imgloading=new Element('img',{'src':'plugins/content/ja_tabs/loading.gif','width':13});if(this.options.position=='right')imgloading.inject(h3,'top');else imgloading.inject(h3);this.loadingTab.imgLoading=imgloading;this.tabRequest=new Ajax(this.options.ajaxUrl+'&tab='+ids[tab.panel._idx],{method:this.options.ajaxOptions,onComplete:this.update.bind(this)});this.tabRequest.request();},update:function(text){if(!this.loadingTab)return;this.loadingTab.panel.subpanel=this.loadingTab.panel.getElement('.ja-tab-subcontent');this.loadingTab.panel.subpanel.innerHTML=text;this.loadingTab.loaded=true;this.tabRequest=null;var tab=this.loadingTab;this.loadingTab=null;var images=tab.panel.subpanel.getElements('img');tab.switched=false;if(images&&images.length&&!tab.imgLoaded){var imgs=[];images.each(function(image){imgs.push(image.src)});if(imgs.length){new Asset.images(imgs,{onComplete:function(){this.switchTab(tab);}.bind(this)});tab.imgLoaded=true;return;}}
this.switchTab(tab);},switchTab:function(tab){if(tab.switched)return;tab.switched=true;tab.imgLoading.remove();this.anim.reposition();this.activate(tab);}});var animNone=new Class({initialize:function(tabwrap){this.options=tabwrap.options||{};this.tabwrap=tabwrap;this.tabwrap.panels.setStyle('position','absolute');this.tabwrap.panels.setStyle('left',0);},move:function(curTab,newTab,skipAnim){this.tabwrap.panels.setStyle('display','none');newTab.setStyle('display','block');},reposition:function(){}});var animFade=new Class({initialize:function(tabwrap){this.options=tabwrap.options||{};this.tabwrap=tabwrap;this.changeEffect=new Fx.Elements(this.tabwrap.panels,{duration:this.options.duration});this.tabwrap.panels.setStyles({'opacity':0,'width':'100%'});},move:function(curTab,newTab,skipAnim){if(this.options.changeTransition!='none'&&skipAnim==false)
{if(curTab)
{curOpac=curTab.getStyle('opacity');var changeEffect=new Fx.Style(curTab,'opacity',{duration:this.options.duration,transition:this.options.changeTransition});changeEffect.stop();changeEffect.start(curOpac,0);}
curOpac=newTab.getStyle('opacity');var changeEffect=new Fx.Style(newTab,'opacity',{duration:this.options.duration,transition:this.options.changeTransition});changeEffect.stop();changeEffect.start(curOpac,1);}else{if(curTab)curTab.setStyle('opacity',0);newTab.setStyle('opacity',1);}},reposition:function(){if(this.tabwrap.activePanel){this.changeEffect.stop();for(var i=this.tabwrap.activePanel._idx-1;i>=0;i--){this.tabwrap.panels[i].setStyle('opacity',0);}
for(i=this.tabwrap.activePanel._idx+1;i<this.tabwrap.panels.length;i++){this.tabwrap.panels[i].setStyle('opacity',0);}}}});var animMoveHor=new Class({initialize:function(tabwrap){this.options=tabwrap.options||{};this.tabwrap=tabwrap;this.changeEffect=new Fx.Elements(this.tabwrap.panels,{duration:this.options.duration});var left=0;this.tabwrap.panels.each(function(panel){panel.setStyle('left',left);left+=panel.offsetWidth;});this.tabwrap.panels.setStyle('top',0);},move:function(curTab,newTab,skipAnim){if(this.options.changeTransition!='none'&&!skipAnim)
{this.changeEffect.stop();var obj={};var offset=newTab.offsetLeft.toInt();i=0;this.tabwrap.panels.each(function(panel){obj[i++]={'left':[panel.offsetLeft.toInt(),panel.offsetLeft.toInt()-offset]};});this.changeEffect.start(obj);}},reposition:function(){if(this.tabwrap.activePanel){this.changeEffect.stop();var left=this.tabwrap.activePanel.offsetLeft;for(var i=this.tabwrap.activePanel._idx-1;i>=0;i--){left-=this.tabwrap.panels[i].offsetWidth;this.tabwrap.panels[i].setStyle('left',left);}
var left=this.tabwrap.activePanel.offsetLeft;for(i=this.tabwrap.activePanel._idx+1;i<this.tabwrap.panels.length;i++){left+=this.tabwrap.panels[i-1].offsetWidth;this.tabwrap.panels[i].setStyle('left',left);}}}});var animMoveVir=new Class({initialize:function(tabwrap){this.options=tabwrap.options||{};this.tabwrap=tabwrap;this.changeEffect=new Fx.Elements(this.tabwrap.panels,{duration:this.options.duration});var top=0;this.tabwrap.panels.each(function(panel){panel.setStyle('top',top);top+=Math.max(panel.offsetHeight,panel.getParent().getParent().offsetHeight);});this.tabwrap.panels.setStyle('left',0);},move:function(curTab,newTab,skipAnim){if(this.options.changeTransition!='none'&&skipAnim==false)
{this.changeEffect.stop();var obj={};var offset=newTab.offsetTop.toInt();i=0;this.tabwrap.panels.each(function(panel){obj[i++]={'top':[panel.offsetTop.toInt(),panel.offsetTop.toInt()-offset]};});this.changeEffect.start(obj);}},reposition:function(){if(this.tabwrap.activePanel){this.changeEffect.stop();var top=this.tabwrap.activePanel.offsetTop;for(var i=this.tabwrap.activePanel._idx-1;i>=0;i--){top-=this.tabwrap.panels[i].offsetHeight;this.tabwrap.panels[i].setStyle('top',top);}
var top=this.tabwrap.activePanel.offsetTop;for(i=this.tabwrap.activePanel._idx+1;i<this.tabwrap.panels.length;i++){top+=this.tabwrap.panels[i-1].offsetHeight;this.tabwrap.panels[i].setStyle('top',top);}}}});

/* script.js */

Element.Events.extend({'wheelup':{type:Element.Events.mousewheel.type,map:function(event){event=new Event(event);if(event.wheel>=0)this.fireEvent('wheelup',event)}},'wheeldown':{type:Element.Events.mousewheel.type,map:function(event){event=new Event(event);if(event.wheel<=0)this.fireEvent('wheeldown',event)}}});var JASlideshowThree=new Class({initialize:function(options){this.options=$extend({buttons:{},interval:5000,handle_event:'click',button_event:'click',box:{},size:240,mode:'horizontal',items:[],handles:[],onWalk:{},handlerBox:null,animation:'fade',animationRepeat:'true',autoPlay:false,languageDirection:null},options||{});this.items=this.options.items;if(this.options.languageDirection=='rtl'){this.modes={horizontal:['right','width'],vertical:['top','height']};}else{this.modes={horizontal:['left','width'],vertical:['top','height']};}
this.box=$(this.options.box);this.buttons={previous:[],next:[],play:[],playback:[],stop:[]};this.allbuttons=[];if(this.options.buttons){for(var action in this.options.buttons){this.addActionButtons(action,$type(this.options.buttons[action])=='array'?this.options.buttons[action]:[this.options.buttons[action]]);}}
this.handles=this.options.handles;if(this.handles){this.addHandleButtons(this.handles);}
if(this.options.handlerBox!=null){this.options.handlerBox.addEvents({'wheelup':function(e){e=new Event(e).stop();this.previous(true);}.bind(this),'wheeldown':function(e){e=new Event(e).stop();this.next(true);}.bind(this)});}
this.allbuttons.each(function(button){button.addEvent('mouseover',function(){this.addClass('hover');});button.addEvent('mouseout',function(){this.removeClass('hover');});});this.currentIndex=this.options.startItem||0;this.previousIndex=null;this.nextIndex=null;this._auto=null;this.initFx();if(this.options.autoPlay)this.play(this.options.interval,'next',true);this.walk(this.currentIndex);},previous:function(manual){this.lastIndex=this.currentIndex;this.currentIndex+=this.currentIndex>0?-1:this.items.length-1;this.walk(null,manual);},next:function(manual){this.lastIndex=this.currentIndex;this.currentIndex+=this.currentIndex<this.items.length-1?1:1-this.items.length;this.walk(null,manual);},play:function(delay,direction,wait){this.stop();if(!wait){this[direction](false);}
this._auto=this[direction].periodical(delay,this,false);},stop:function(){$clear(this._auto);},walk:function(item,manual){if($defined(item)){this.lastIndex=this.currentIndex;this.currentIndex=parseInt(item);}
this.previousIndex=this.currentIndex+(this.currentIndex>0?-1:this.items.length-1);this.nextIndex=this.currentIndex+(this.currentIndex<this.items.length-1?1:1-this.items.length);if(manual||(this.nextIndex==0&&this.options.animationRepeat=='false')){this.stop();}
if(this.options.onWalk){this.options.onWalk(this.currentIndex,(this.handles?this.handles[this.currentIndex]:null));}
this.animate();if(manual&&this.options.autoPlay){this.play(this.options.interval,'next',true);}},initFx:function(){if(this.options.animation.test(/move/)){this.box.setStyle(this.modes[this.options.mode][1],(this.options.size*this.options.items.length)+'px');this.box.setStyle(this.modes[this.options.mode][0],(-this.currentIndex*this.options.size)+this.options.offset+'px');this.fx=new Fx.Style(this.box,this.modes[this.options.mode][0],this.options.fxOptions||{duration:500,wait:false});return;}
this.items.setStyles({'position':'absolute','top':0,'display':'none'});this.items.setStyle(this.modes[this.options.mode][0],0);this.items[this.currentIndex].setStyle('display','block');if(this.options.animation.test(/fade/)){for(var i=0;i<this.items.length;i++){this.items[i].fx=new Fx.Style(this.items[i],'opacity',this.options.fxOptions||{duration:500,wait:false});}}},animate:function(){if(this.options.animation.test(/move/)){this.fx.start(-this.currentIndex*this.options.size+this.options.offset);return;}
var others=[];for(var i=0;i<this.items.length;i++){this.items[i].fx.stop();if(i!=this.currentIndex&&i!=this.lastIndex)others.push(this.items[i]);}
this.currentIndex=parseInt(this.currentIndex);$$(others).setStyle('display','none');if(this.lastIndex==this.currentIndex){this.items[this.currentIndex].setStyles({'display':'block','opacity':1});}else{this.items[this.currentIndex].setStyles({'display':'block','opacity':0,'z-index':10});this.items[this.lastIndex].setStyles({'z-index':9});}
if(this.options.animation.test(/fade/)){this.items[this.lastIndex].fx.start(0);this.items[this.currentIndex].fx.start(1);return;}},addHandleButtons:function(handles){for(var i=0;i<handles.length;i++){handles[i].addEvent(this.options.handle_event,this.walk.bind(this,[i,true]));this.allbuttons.push(handles[i]);}},addActionButtons:function(action,buttons){for(var i=0;i<buttons.length;i++){switch(action){case'previous':buttons[i].addEvent(this.options.button_event,this.previous.bind(this,true));break;case'next':buttons[i].addEvent(this.options.button_event,this.next.bind(this,true));break;case'play':buttons[i].addEvent(this.options.button_event,this.play.bind(this,[this.options.interval,'next',false]));break;case'playback':buttons[i].addEvent(this.options.button_event,this.play.bind(this,[this.options.interval,'previous',false]));break;case'stop':buttons[i].addEvent(this.options.button_event,this.stop.bind(this));break;}
this.buttons[action].push(buttons[i]);buttons[i].addEvent(this.options.button_event,function(){this.blur();});this.allbuttons.push(buttons[i]);}}});var JASlideshow2=new Class({initialize:function(element,options){this.options=$extend({startItem:0,showItem:4,mainWidth:360,mainHeight:240,itemWidth:160,itemHeight:160,duration:400,interval:5000,transition:Fx.Transitions.Back.easeOut,thumbOpacity:'0.8',maskDesc:'maskDesc',maskWidth:360,maskHeigth:50,but_prev:'ja-slide-prev',but_next:'ja-slide-next',maskOpacity:'0.8',buttonOpacity:'0.4',overlap:1,navigation:'',animation:'fade',animationRepeat:'true',thumbSpaces:[3,3],autoPlay:false,maskAlignment:'bottom',showbtncontrol:false,urls:'',maskerTransStyle:'opacity',maskerTrans:Fx.Transitions.linear,navePos:'horizontal',languageDirection:null},options||{});if(!this.options.animation.test(/move/))this.options.overlap=0;this.el=$(element);this.fxOptions={duration:this.options.duration,transition:this.options.transition,wait:false}
this.elmain=this.el.getElement('.ja-slide-main-wrap');var conWidth=this.options.overlap?'100%':this.options.mainWidth;this.elmain.setStyles({'width':conWidth,'height':this.options.mainHeight});this.els=this.el.getElements('.ja-slide-item');this.els.setStyles({'width':this.options.mainWidth,'height':this.options.mainHeight});this.options.rearWidth=0;this.options.mainSpace=0;if(this.options.overlap){this.options.mainSpace=10;this.options.rearWidth=Math.ceil((this.elmain.offsetWidth-this.options.mainWidth)/2)-this.options.mainSpace;this.but_prev=this.el.getElement('.'+this.options.but_prev);this.but_next=this.el.getElement('.'+this.options.but_next);this.but_prev.setStyles({'opacity':this.options.buttonOpacity,'width':this.options.rearWidth,'height':this.options.mainHeight});this.but_next.setStyles({'opacity':this.options.buttonOpacity,'width':this.options.rearWidth,'height':this.options.mainHeight});this.but_prev.addEvents({'mouseover':function(){this.but_prev.setStyle('opacity',this.options.buttonOpacity/2);}.bind(this),'mouseout':function(){this.but_prev.setStyle('opacity',this.options.buttonOpacity);}.bind(this)});this.but_next.addEvents({'mouseenter':function(){this.but_next.setStyle('opacity',this.options.buttonOpacity/2);}.bind(this),'mouseleave':function(){this.but_next.setStyle('opacity',this.options.buttonOpacity);}.bind(this)});this.els.setStyle('margin-right',this.options.mainSpace);}
var navWrap=this.el.getElement('.ja-slide-thumbs-wrap');if(this.options.navigation&&navWrap!=null){if(this.options.languageDirection=='rtl'){var modes={horizontal:['right','width'],vertical_left:['top','height'],vertical_right:['top','height']};}else{var modes={horizontal:['left','width'],vertical_left:['top','height'],vertical_right:['top','height']};}
if(this.options.navePos=='vertical_left'||this.options.navePos=='vertical_right'){navWrap.setStyles({'width':this.options.itemWidth,'height':this.options.itemHeight*this.options.showItem});}else{navWrap.setStyles({'width':this.options.itemWidth*this.options.showItem,'height':this.options.itemHeight});}
var thumbs_thumbs=this.el.getElement('.ja-slide-thumbs');thumbs_thumbs.setStyle('left',0);thumbs_thumbs.getChildren().setStyles({'width':this.options.itemWidth,'height':this.options.itemHeight});var thumbs_handles=this.el.getElement('.ja-slide-thumbs-handles');thumbs_handles.setStyle('left',0);thumbs_handles.getChildren().setStyles({'width':this.options.itemWidth,'height':this.options.itemHeight});var thumbsFx_thumbs=new Fx.Style(thumbs_thumbs,modes[this.options.navePos][0],this.fxOptions);var thumbsFx_handles=new Fx.Style(thumbs_handles,modes[this.options.navePos][0],this.fxOptions);this.el.getElement('.ja-slide-thumbs-mask-left').setStyles({'height':this.options.itemHeight,'width':2000,'opacity':this.options.thumbOpacity});this.el.getElement('.ja-slide-thumbs-mask-right').setStyles({'height':this.options.itemHeight,'width':2000,'opacity':this.options.thumbOpacity});this.el.getElement('.ja-slide-thumbs-mask-center').setStyles({'height':this.options.itemHeight,'width':this.options.itemWidth,'opacity':this.options.thumbOpacity});var tmp=this.el.getElement('.ja-slide-thumbs-mask');var thumbs_mask=tmp.setStyles({'width':5000});tmp.setStyle(modes[this.options.navePos][0],this.options.startItem*this.options.itemHeight-2000);var thumbsFx_mask=new Fx.Style(thumbs_mask,modes[this.options.navePos][0],this.fxOptions);}
var navItems=this.el.getElements('.ja-slide-thumb');this.onWalk=function(currentIndex,hander){if(this.options.navigation&&thumbsFx_mask!=null){if(currentIndex<=this.options.startItem||currentIndex-this.options.startItem>=this.options.showItem-1){this.options.startItem=currentIndex-this.options.showItem+2;if(this.options.startItem<0)this.options.startItem=0;if(this.options.startItem>this.els.length-this.options.showItem)this.options.startItem=this.els.length-this.options.showItem;}
thumbsFx_mask.start((currentIndex-this.options.startItem)*this.options.itemHeight-2000);thumbsFx_thumbs.start(-this.options.startItem*this.options.itemHeight);thumbsFx_handles.start(-this.options.startItem*this.options.itemHeight);if($defined(hander)){thumbs_handles.getElements('span').removeClass('active');hander.addClass('active');navItems.removeClass('active');navItems[currentIndex].addClass('active');}}
if(this.options.descMode.test(/load/)&&this.options.showDesc){this.hideDesc();}}
this.maskDesc=this.el.getElement('.'+this.options.maskDesc);this.maskDesc.setStyles({'display':'block','position':'absolute','width':this.options.maskWidth,'height':this.options.maskHeigth});if(this.options.showDesc){if(this.options.animation.test(/move/)&&this.options.overlap){this.options.maskAlignment='left';this.options.maskerTransStyle='opacity';}
this.maskDesc.setStyle(this.options.maskAlignment,this.options.rearWidth+this.options.mainSpace);this.maskDesc.setStyle('opacity',0);if(this.options.maskerTransStyle=='opacity'){this.descFx=new Fx.Style(this.maskDesc,'opacity',{duration:400,transition:this.options.maskerTrans});this.descs=this.el.getElements('.ja-slide-desc');this.showDesc=function(){this.descFx.stop();this.descFx.start(this.options.maskOpacity);};this.hideDesc=function(){this.descFx.stop();this.descFx.start(0.01);};}else{sizeOff=this.options.maskAlignment=='top'||this.options.maskAlignment=='bottom'?this.options.maskHeigth:this.options.maskWidth;this.maskDesc.setStyle('opacity',this.options.maskOpacity);this.maskDesc.setStyle(this.options.maskAlignment,-this.options.mainWidth);this.descFx=new Fx.Style(this.maskDesc,this.options.maskAlignment,{duration:400,transition:this.options.maskerTrans});this.descs=this.el.getElements('.ja-slide-desc');this.showDesc=function(){this.descFx.stop();this.descFx.start(0);};this.hideDesc=function(){this.descFx.stop();this.descFx.start(-sizeOff);};}
this.swapDesc=function(currentIndex){if(this.maskDesc.currentIndex==currentIndex)return;if(this.maskDesc.desc){this.maskDesc.desc.remove();this.maskDesc.desc=null;if(!$defined(this.maskDesc.getElement('.inner .readon'))){this.maskDesc.setHTML('');}}
if(this.descs[currentIndex]&&this.descs[currentIndex].innerHTML)this.maskDesc.desc=this.descs[currentIndex].inject(this.maskDesc);this.maskDesc.currentIndex=currentIndex;}
if(this.options.descMode.test(/mouseover/)){var childs=this.el.getElements('.ja-slide-item');childs.each(function(itm,index){itm.addEvent('mouseover',this.showDesc.bind(this));itm.addEvent('mouseout',this.hideDesc.bind(this));}.bind(this))
this.maskDesc.addEvent('mouseover',this.showDesc.bind(this));this.maskDesc.addEvent('mouseout',this.hideDesc.bind(this));}else{this.maskDesc.setStyle('opacity',this.options.maskOpacity);}}else{this.maskDesc.setStyle('opacity',0);}
this.fxOptions.onComplete=function(){if(this.options.showDesc){this.swapDesc(this.hs.currentIndex);if(this.options.descMode.test(/load/)){this.showDesc();}}}.bind(this);if(this.options.urls){this.maskDesc.addEvent('click',function(){var url=this.options.urls[this.hs.currentIndex];if(url){var target=this.options.targets[this.hs.currentIndex];switch(target){case"_blank":{window.open(url,"newWindow");break;}
default:{window.location.href=url;break;}}}}.bind(this));}
this.hs=new JASlideshowThree({box:this.el.getElement('.ja-slide-main'),languageDirection:this.options.languageDirection,items:this.els,handlerBox:thumbs_handles,handles:thumbs_handles?thumbs_handles.getChildren():[],fxOptions:this.fxOptions,interval:this.options.interval,onWalk:this.onWalk.bind(this),size:this.options.mainWidth+this.options.mainSpace,animation:this.options.animation,animationRepeat:this.options.animationRepeat,buttons:{previous:this.el.getElements('.ja-slide-prev'),play:this.el.getElements('.ja-slide-play'),stop:this.el.getElements('.ja-slide-stop'),playback:this.el.getElements('.ja-slide-playback'),next:this.el.getElements('.ja-slide-next')},startItem:this.options.startItem,offset:this.options.overlap?this.options.rearWidth-this.options.mainWidth:0,autoPlay:this.options.autoPlay});if(this.options.overlap){var childs=this.hs.box.getChildren();childs[0].clone().inject(this.hs.box);childs[this.hs.items.length-1].clone().injectTop(this.hs.box);this.hs.box.setStyle(this.hs.modes[this.hs.options.mode][1],(this.hs.options.size*(this.hs.items.length+2)+200)+'px');}
this.el.setStyle('visibility','visible');},getFxObjectByMode:function(mode,start,end){switch(mode){case'sideright':return{'left':[start,-end]};break;case'sideleft':return{'left':[start,end]};break;case'sidetop':return{'top':[start,end]};break;case'sidedown':return{'top':[start,-end]};break;case'botleft':return{'top':start,'left':end};break;default:return{'height':[start,end]};break;}},controlMark:function(){}});

/* cufon-yui.js */

var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},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(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(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(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var 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,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E)}else{F=E}if(G){continue}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,E),B,J,E,C),F);F=null}if(H==1&&E.firstChild){if(/cufon/.test(E.className)){z[J.engine](D,null,B,J,E,C)}else{arguments.callee(E,J)}}}}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:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){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(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(ah,H,Z,D,L,ai){var n=(H===null);if(n){H=L.alt}var J=ah.viewBox;var p=Z.getSize("fontSize",ah.baseSize);var X=Z.get("letterSpacing");X=(X=="normal")?0:p.convertFrom(parseInt(X,10));var K=0,Y=0,W=0,F=0;var I=D.textShadow,U=[];if(I){for(var ag=I.length;ag--;){var O=I[ag];var T=p.convertFrom(parseFloat(O.offX));var R=p.convertFrom(parseFloat(O.offY));U[ag]=[T,R];if(R<K){K=R}if(T>Y){Y=T}if(R>W){W=R}if(T<F){F=T}}}var al=Cufon.CSS.textTransform(H,Z).split(""),B;var o=ah.glyphs,E,r,ac;var h=0,v,N=[];for(var ag=0,ae=0,ab=al.length;ag<ab;++ag){E=o[B=al[ag]]||ah.missingGlyph;if(!E){continue}if(r){h-=ac=r[B]||0;N[ae-1]-=ac}h+=v=N[ae++]=~~(E.w||ah.w)+X;r=E.k}if(v===undefined){return null}Y+=J.width-v;F+=J.minX;var C,q;if(n){C=L;q=L.firstChild}else{C=document.createElement("span");C.className="cufon cufon-canvas";C.alt=H;q=document.createElement("canvas");C.appendChild(q);if(D.printable){var ad=document.createElement("span");ad.className="cufon-alt";ad.appendChild(document.createTextNode(H));C.appendChild(ad)}}var am=C.style;var Q=q.style;var m=p.convert(J.height);var ak=Math.ceil(m);var V=ak/m;var P=V*Cufon.CSS.fontStretch(Z.get("fontStretch"));var S=h*P;var aa=Math.ceil(p.convert(S+Y-F));var t=Math.ceil(p.convert(J.height-K+W));q.width=aa;q.height=t;Q.width=aa+"px";Q.height=t+"px";K+=J.minY;Q.top=Math.round(p.convert(K-ah.ascent))+"px";Q.left=Math.round(p.convert(F))+"px";var A=Math.ceil(p.convert(S))+"px";if(a){am.width=A;am.height=p.convert(ah.height)+"px"}else{am.paddingLeft=A;am.paddingBottom=(p.convert(ah.height)-1)+"px"}var aj=q.getContext("2d"),M=m/J.height;aj.scale(M,M*V);aj.translate(-F,-K);aj.lineWidth=ah.face["underline-thickness"];aj.save();function s(i,g){aj.strokeStyle=g;aj.beginPath();aj.moveTo(0,i);aj.lineTo(h,i);aj.stroke()}var u=D.enableTextDecoration?Cufon.CSS.textDecoration(ai,Z):{};if(u.underline){s(-ah.face["underline-position"],u.underline)}if(u.overline){s(ah.ascent,u.overline)}function af(){aj.scale(P,1);for(var x=0,k=0,g=al.length;x<g;++x){var y=o[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(N[k++],0)}aj.restore()}if(I){for(var ag=I.length;ag--;){var O=I[ag];aj.save();aj.fillStyle=O.color;aj.translate.apply(aj,U[ag]);af()}}var z=D.textGradient;if(z){var G=z.stops,w=aj.createLinearGradient(0,J.minY,0,J.maxY);for(var ag=0,ab=G.length;ag<ab;++ag){w.addColorStop.apply(w,G[ag])}aj.fillStyle=w}else{aj.fillStyle=Z.get("color")}af();if(u["line-through"]){s(-ah.descent,u["line-through"])}return C}})());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(n){var o=n.id;if(!e[o]){var l=n.stops,m=document.createElement("cvml:fill"),g=[];m.type="gradient";m.angle=180;m.focus="0";m.method="sigma";m.color=l[0][1];for(var i=1,h=l.length-1;i<h;++i){g.push(l[i][0]*100+"% "+l[i][1])}m.colors=g.join(",");m.color2=l[h][1];e[o]=m}return e[o]}return function(ai,J,ac,F,N,aj,aa){var n=(J===null);if(n){J=N.alt}var L=ai.viewBox;var p=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:~~p.convertFrom(a(aj,Z))}var B,q;if(n){B=N;q=N.firstChild}else{B=document.createElement("span");B.className="cufon cufon-vml";B.alt=J;q=document.createElement("span");q.className="cufon-vml-canvas";B.appendChild(q);if(F.printable){var af=document.createElement("span");af.className="cufon-alt";af.appendChild(document.createTextNode(J));B.appendChild(af)}if(!aa){B.appendChild(document.createElement("cvml:shape"))}}var ao=B.style;var U=q.style;var h=p.convert(L.height),al=Math.ceil(h);var Y=al/h;var S=Y*Cufon.CSS.fontStretch(ac.get("fontStretch"));var X=L.minX,W=L.minY;U.height=al;U.top=Math.round(p.convert(W-ai.ascent));U.left=Math.round(p.convert(X));ao.height=p.convert(ai.height)+"px";var u=F.enableTextDecoration?Cufon.CSS.textDecoration(aj,ac):{};var I=ac.get("color");var an=Cufon.CSS.textTransform(J,ac).split(""),A;var o=ai.glyphs,G,r,ae;var g=0,O=[],V=0,w;var y,K=F.textShadow;for(var ah=0,ag=0,ad=an.length;ah<ad;++ah){G=o[A=an[ah]]||ai.missingGlyph;if(!G){continue}if(r){g-=ae=r[A]||0;O[ag-1]-=ae}g+=w=O[ag++]=~~(G.w||ai.w)+Z;r=G.k}if(w===undefined){return null}var z=-X+g+(L.width-w);var am=p.convert(z*S),ab=Math.round(am);var R=z+","+L.height,m;var M="r"+R+"ns";var x=F.textGradient&&d(F.textGradient);for(ah=0,ag=0;ah<ad;++ah){G=o[an[ah]]||ai.missingGlyph;if(!G){continue}if(n){y=q.childNodes[ag];while(y.firstChild){y.removeChild(y.firstChild)}}else{y=document.createElement("cvml:shape");q.appendChild(y)}y.stroked="f";y.coordsize=R;y.coordorigin=m=(X-V)+","+W;y.path=(G.d?"m"+G.d+"xe":"")+"m"+m+M;y.fillcolor=I;if(x){y.appendChild(x.cloneNode(false))}var ak=y.style;ak.width=ab;ak.height=al;if(K){var t=K[0],s=K[1];var E=Cufon.CSS.color(t.color),C;var Q=document.createElement("cvml:shadow");Q.on="t";Q.color=E.color;Q.offset=t.offX+","+t.offY;if(s){C=Cufon.CSS.color(s.color);Q.type="double";Q.color2=C.color;Q.offset2=s.offX+","+s.offY}Q.opacity=E.opacity||(C&&C.opacity)||1;y.appendChild(Q)}V+=O[ag++]}var P=y.nextSibling,v,D;if(F.forceHitArea){if(!P){P=document.createElement("cvml:rect");P.stroked="f";P.className="cufon-vml-cover";v=document.createElement("cvml:fill");v.opacity=0;P.appendChild(v);q.appendChild(P)}D=P.style;D.width=ab;D.height=al}else{if(P){q.removeChild(P)}}ao.width=Math.max(Math.ceil(p.convert(g*S)),0);if(f){var T=ac.computedYAdjust;if(T===undefined){var H=ac.get("lineHeight");if(H=="normal"){H="1em"}else{if(!isNaN(H)){H+="em"}}ac.computedYAdjust=T=0.5*(a(aj,H)-parseFloat(ao.height))}if(T){ao.marginTop=Math.ceil(T)+"px";ao.marginBottom=T+"px"}}return B}})());

/* Hand_Of_Sean_400.font.js */

Cufon.registerFont({"w":1805,"face":{"font-family":"Hand Of Sean","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"1638","descent":"-410","x-height":"29","cap-height":"150","bbox":"-460 -2652.62 2942 1010.77","underline-thickness":"150","underline-position":"-142","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":625},"\u00a0":{"w":625},"!":{"d":"357,-1993r78,68v3,388,-17,501,-54,1228v-11,221,-20,332,-44,332v-41,38,-69,61,-129,57v-81,-6,-94,-115,-94,-230v0,-63,21,-264,54,-606v19,-194,25,-348,23,-460r-6,-301v60,-64,97,-71,172,-88xm232,-60v62,-2,112,40,112,104v0,64,-47,106,-142,126r-51,0v-40,-31,-51,-61,-51,-116v0,-62,23,-97,68,-104","w":569},"\"":{"d":"0,-1810v-12,-121,46,-175,174,-174v103,126,53,477,52,701v-44,79,-70,111,-144,106v-55,-15,-82,-61,-82,-137v21,-100,31,-162,31,-185v0,-42,-13,-137,-31,-311xm448,-1953v33,-30,133,-25,147,3v7,107,10,203,10,287r0,34v-4,237,-14,356,-31,356v-48,34,-79,51,-92,51v-55,0,-89,-146,-103,-437r0,-34v0,-148,23,-235,69,-260","w":615},"#":{"d":"420,-1734v95,-60,144,-26,216,72r-4,224r264,12r20,-308v87,-61,156,-23,212,76r-4,248r260,12v26,35,28,50,28,96v0,37,-35,77,-104,120r-196,-4r-12,268v195,9,292,17,292,24v41,84,19,140,-76,204r-212,0r8,192v-10,97,-20,128,-88,128v-47,0,-92,-40,-136,-120v-13,-63,-20,-133,-20,-212r-260,-12r12,200v-13,108,-18,144,-88,144v-50,0,-97,-41,-140,-124v-12,-65,-17,-138,-16,-216v-2,-2,-5,-3,-4,-8v-71,10,-153,12,-232,12v-96,0,-121,-21,-120,-84v0,-49,40,-95,120,-140v71,-13,151,-20,240,-20r8,-260r-228,12v-101,-9,-140,-21,-140,-84v0,-43,34,-86,100,-132v31,-22,171,-30,284,-28xm620,-1210r-12,264v80,12,178,6,264,12r12,-260v-2,-2,-3,-5,-8,-4","w":1395},"$":{"d":"824,-1820v30,-24,42,-20,84,-20v35,0,69,25,100,76r-32,408r-4,4v138,31,208,40,240,112v-69,91,-111,136,-128,136v-22,7,-45,-1,-68,-4v-19,6,-30,23,-28,52r16,208v107,40,283,91,524,160v139,39,258,111,360,208v-32,131,-91,229,-176,288v-120,83,-210,116,-260,116v-64,21,-189,40,-376,56v-13,74,12,133,44,288v-75,137,-187,145,-304,48v-19,-69,-39,-183,-60,-344v-240,21,-459,-22,-588,-160v-92,-99,-59,-191,20,-308v53,-1,57,10,84,-40v0,5,20,12,60,20r0,32v0,103,84,170,252,208v41,9,89,16,144,16v13,-143,-8,-287,-32,-432v-35,0,-168,-28,-388,-112v-204,-77,-305,-146,-308,-180v-5,-51,9,-89,8,-140v152,-132,397,-185,676,-196r56,-360v23,-67,51,-113,84,-140xm464,-1036v-3,-1,-5,1,-4,4v21,0,84,20,188,60r40,4r-12,-112v-141,13,-212,27,-212,44xm1032,-572v-9,105,12,211,16,316v186,1,350,-43,496,-132r0,-4v-65,-20,-191,-68,-380,-144","w":1865},"%":{"d":"436,-1742v32,-54,70,-76,132,-76v71,0,161,45,272,136v11,29,24,74,24,136v0,157,-71,287,-212,388v-81,-13,-141,-13,-228,-12v-56,0,-88,-13,-100,-36v-47,-92,-72,-193,-72,-304v0,-147,34,-220,76,-220v54,-20,66,-26,108,-12xm1952,-1750v15,0,27,57,36,172v5,0,8,9,8,28v-604,605,-1004,999,-1208,1172r-576,488v-97,47,-168,8,-212,-80r0,-32v0,-42,88,-109,252,-220v216,-147,827,-766,1104,-1048v176,-179,287,-308,360,-360v77,-54,155,-94,236,-120xm464,-1470v9,9,21,31,36,68v106,-22,130,-39,128,-124v0,-29,-12,-44,-36,-44v-36,0,-79,33,-128,100xm1156,-430v123,-111,194,-146,360,-136v125,133,188,224,188,272v0,135,-24,213,-100,324v-51,40,-114,60,-188,60v-139,0,-238,-56,-288,-172v-11,-26,-12,-53,-12,-76v0,-93,39,-169,40,-272xm1332,-286v-4,53,30,87,96,96v46,-13,21,-166,0,-156v-56,-4,-92,7,-96,60","w":2025},"&":{"d":"496,-180v-243,0,-373,-73,-496,-204v0,-165,108,-289,324,-372r0,-4v-47,-6,-133,-65,-256,-176v-4,-197,99,-311,312,-380r152,-36v25,-269,74,-404,148,-404v86,0,112,51,112,140v0,80,-16,157,-32,232v44,15,144,41,300,80v76,42,88,42,88,116v0,66,-64,92,-152,92v-35,0,-111,-12,-228,-36v-39,57,-19,115,-20,192v49,0,102,28,160,84v-3,44,-14,91,0,128v-27,0,-56,21,-92,60v-13,14,-32,13,-56,12v-20,71,-14,164,0,236v99,1,200,-36,376,-88v59,-17,92,-23,92,-44v7,0,14,-20,16,-60v1,-19,-4,-41,20,-36v27,4,53,21,80,12v30,35,40,71,40,124v0,145,-160,251,-480,320r-120,12v0,37,17,125,40,304v8,65,-18,112,-76,112v-10,0,-22,8,-36,24r-16,0r-44,-40v-3,19,-7,28,-12,28v-44,-55,-72,-134,-84,-236v-16,-128,-36,-192,-60,-192xm356,-1036v57,32,108,48,152,48v-3,-34,11,-102,-16,-108v-55,0,-100,20,-136,60xm504,-564v-105,21,-165,46,-196,84r0,4v72,10,132,31,212,32v1,-35,0,-123,-16,-120","w":1366},"'":{"d":"0,-1870v40,-72,92,-102,178,-102v55,0,83,20,83,61r4,242v0,222,-45,367,-140,424v-32,19,-64,23,-91,23v-13,-3,-15,-251,-15,-349v0,-124,-9,-224,-19,-299","w":305},"(":{"d":"672,-1696v58,0,75,6,76,76v0,110,-88,214,-252,328v-108,76,-156,160,-156,236v-68,195,-96,271,-96,372v0,245,159,491,476,740v3,105,-35,171,-116,200r-44,4v-97,0,-209,-127,-364,-364v-129,-197,-196,-357,-196,-580v0,-220,72,-461,236,-708v138,-207,290,-304,436,-304","w":765},")":{"d":"0,-1436v-7,-114,44,-200,160,-200v101,0,234,152,428,436v229,336,197,786,-20,1148v-155,259,-322,375,-516,372v-19,-10,-28,-37,-28,-80v0,-113,28,-168,52,-168v108,-65,219,-178,332,-340v0,-32,27,-132,80,-300v4,-40,12,-75,12,-120v0,-248,-163,-492,-488,-732","w":765},"*":{"d":"424,-1982v24,29,51,80,72,156v33,119,44,189,44,208r252,-36v12,-1,32,22,32,56v0,64,-11,96,-32,96v-31,21,-88,42,-172,64v18,41,78,95,180,164r60,60v-23,69,-42,104,-56,104v-114,4,-182,-38,-276,-132r-72,-60v-27,12,-87,57,-188,124v-41,27,-90,36,-140,36v-24,-25,-36,-51,-36,-80v0,-43,40,-96,120,-160v-28,-13,-87,-33,-176,-60v-24,-20,-36,-33,-36,-40v-3,-66,49,-122,120,-136v50,24,99,36,148,36v58,0,37,-49,48,-88v4,-129,-58,-321,108,-312","w":875},"+":{"d":"616,-1394v150,-25,92,205,92,328r0,132v135,-13,265,-20,392,-20v56,55,84,109,84,164v0,56,-20,82,-40,84r-420,36v11,121,16,223,16,304r0,68v-47,59,-101,88,-160,88v-59,0,-87,-19,-88,-36r-32,-412v-53,8,-120,4,-180,4v-133,0,-207,-24,-232,-68v-35,-61,-48,-77,-48,-132v0,-53,40,-80,120,-80v120,0,213,16,280,16r44,0r-4,-164v4,-163,21,-244,52,-244v39,-40,80,-61,124,-68","w":1196},",":{"d":"207,-368v56,-57,198,-69,258,-7r0,54v0,217,-96,413,-288,590v-20,48,-76,51,-145,51v-21,0,-22,-10,-22,-30v0,-72,59,-183,149,-349v59,-108,64,-189,48,-309","w":605},"-":{"d":"98,-704v45,-18,123,-20,196,-20v127,0,371,15,732,44v49,81,20,164,-56,220r-640,-32r-232,12v-64,-1,-88,-24,-88,-80v0,-53,29,-101,88,-144","w":1055},"\u00ad":{"d":"98,-704v45,-18,123,-20,196,-20v127,0,371,15,732,44v49,81,20,164,-56,220r-640,-32r-232,12v-64,-1,-88,-24,-88,-80v0,-53,29,-101,88,-144","w":1055},".":{"d":"186,-230v35,-5,65,-15,104,-16v80,21,116,49,116,108v0,76,-53,137,-160,184v-79,14,-131,-10,-152,-88v-24,-87,15,-145,92,-188","w":525},"\/":{"d":"1500,-1700v73,-92,171,-111,248,-20v0,85,-40,186,-120,304v-59,49,-121,115,-184,200v-12,26,-289,294,-812,824v-174,176,-290,333,-368,452v-99,42,-131,61,-160,60v-24,-9,-15,-46,-8,-68r-48,8v-19,-8,-35,-26,-24,-40v-12,0,-25,-7,-24,-24v45,-122,188,-345,472,-624r680,-668v181,-188,289,-329,348,-404","w":1745},"0":{"d":"260,-1824v84,-105,169,-148,300,-148v159,0,305,76,416,244r176,268v101,182,152,353,152,512v0,231,-64,482,-236,720v-127,176,-268,228,-480,228v-210,0,-377,-129,-492,-392v-74,-170,-96,-357,-96,-580v0,-133,30,-312,92,-536v24,-86,103,-191,188,-272v-13,-9,-20,-24,-20,-44xm580,-1720v0,24,-12,36,-36,36v-187,95,-288,343,-288,744v0,149,27,271,80,368v48,155,88,232,120,232v74,64,143,96,208,96v78,0,180,-78,276,-252v95,-172,116,-293,116,-456v0,-165,-107,-384,-324,-652v-61,-76,-100,-98,-152,-116","w":1315},"1":{"d":"364,-1996v66,-6,69,21,92,104v11,10,16,18,16,24v0,33,-41,287,-124,764v-13,79,-24,154,-20,224r28,528v0,207,-47,337,-140,392v0,-23,-32,-41,-96,-52v-67,-197,-24,-918,-24,-1164v0,-25,-31,-75,-92,-152v-2,-11,-5,-22,-4,-36v0,-22,42,-89,112,-208v37,-62,79,-187,140,-368v11,-13,49,-31,112,-56","w":515},"2":{"d":"348,-1548v186,-207,381,-288,636,-288v187,0,315,76,384,228v23,51,28,105,28,172v0,187,-102,381,-304,584v-137,138,-272,246,-392,340v-82,64,-129,120,-156,152r0,4v289,32,495,48,620,48v58,1,163,-28,304,-28v86,0,115,34,108,112v-9,85,-22,128,-40,128v-113,64,-293,96,-540,96v-528,0,-792,-33,-792,-48v-133,-29,-200,-62,-200,-100v0,-98,10,-113,72,-236v188,-125,418,-299,668,-544v168,-164,268,-307,324,-404v-8,-35,-4,-83,-4,-124v0,-33,-25,-50,-72,-60v-225,-49,-382,37,-516,240v-43,65,-54,105,-60,108v-39,20,-79,32,-120,32v-75,0,-112,-23,-112,-48v0,-105,46,-233,164,-364","w":1585},"3":{"d":"836,-1740v212,-80,407,-73,580,32v1,11,9,23,24,36v9,45,13,88,12,136v0,206,-108,383,-324,532v-10,12,-26,16,-32,32v101,39,231,116,360,260v216,242,144,488,-152,640v-116,60,-236,72,-384,72v-279,0,-543,-101,-788,-304v-73,-60,-108,-110,-108,-148v0,-14,-14,-56,-24,-108v0,-5,15,-15,44,-32v27,-43,50,-64,68,-64v51,0,153,64,304,192v228,123,401,172,628,172v81,0,150,-37,208,-112r4,-32v-13,-60,-91,-140,-240,-228v-39,-23,-140,-38,-292,-80v-103,-29,-152,-85,-152,-148v0,-87,114,-175,344,-260v51,-19,110,-69,176,-156r-4,-56r36,-128v-11,-8,-38,-20,-80,-20v-71,0,-209,57,-420,164v-107,54,-222,54,-224,-92v0,-13,15,-37,44,-72v3,-41,129,-129,392,-228","w":1585},"4":{"d":"1224,-1874v65,0,108,37,128,112v3,65,-13,56,-56,160v-18,43,-28,221,-36,532r-20,116v75,1,199,-36,440,-88v119,-26,247,-16,324,48v-15,0,-45,62,-96,184v-6,14,-20,20,-36,20v-111,0,-287,73,-536,132v-57,14,-88,14,-88,24v-16,34,-30,81,-24,140r44,408v4,89,-17,144,-76,200v-13,12,-29,16,-44,16v-59,0,-110,-69,-144,-208v-9,-39,-7,-191,-20,-452v-3,-54,-16,-80,-20,-80v-433,66,-584,90,-904,76v-44,-37,-60,-77,-60,-140v0,-75,94,-184,272,-340r664,-580v171,-187,267,-280,288,-280xm516,-890v243,-17,404,-31,484,-44v3,-131,37,-269,-8,-380r-4,0v-69,67,-184,155,-336,276v-73,58,-115,111,-136,148"},"5":{"d":"-114,-324v16,-20,180,-98,192,-88v29,0,65,35,110,106v121,51,196,84,262,74v258,-38,426,-162,544,-318v96,-126,150,-245,125,-384r-43,-132v-33,-41,-123,-62,-270,-62v-93,0,-242,47,-456,112v-138,42,-250,37,-344,-44v-42,-260,-5,-394,104,-652v93,-48,143,-72,152,-72v19,0,59,13,120,40v233,-51,413,-76,540,-76v28,0,145,-33,352,-84v0,13,23,27,68,44v16,11,27,25,32,44v0,197,-149,296,-448,296v-134,0,-610,-31,-604,10v-35,74,-53,123,-40,198v235,-45,427,-68,576,-68v231,0,382,60,452,180v57,47,86,127,86,242v0,153,-14,307,-100,466v-92,171,-211,307,-366,396v-201,115,-333,156,-516,156v-169,0,-342,-83,-520,-248v1,-36,8,-66,12,-100v-7,-12,-22,-16,-20,-36","w":1345},"6":{"d":"392,-1704v141,-186,254,-260,388,-260v48,0,72,9,72,28v11,48,13,76,12,124v0,154,-81,298,-244,432v-5,0,-8,-7,-8,-20v-9,-37,-27,-56,-52,-56v-36,19,-84,60,-124,136v-88,164,-127,338,-136,512v7,5,14,10,28,8v245,-251,377,-376,396,-376v183,-120,283,-168,440,-168v99,0,186,53,252,164v43,72,61,168,60,284v0,233,-57,469,-212,680v-264,360,-818,382,-1116,44v-122,-138,-148,-305,-148,-512v0,-314,121,-662,392,-1020xm480,-568v-41,62,-52,75,-52,108v0,80,79,149,240,200v33,10,67,12,100,12v160,0,299,-92,404,-284v44,-81,60,-170,60,-260v0,-131,-30,-195,-64,-196r-92,-4v-207,0,-409,139,-596,424","w":1485},"7":{"d":"1260,-1862v15,25,21,79,20,140v0,119,-53,285,-160,496v-17,33,-38,86,-64,160v75,7,160,1,240,4v138,6,160,-1,160,88v0,91,-67,143,-200,160v-46,6,-137,13,-276,16v-37,22,-88,139,-152,352v-69,228,-128,382,-192,448v-48,50,-105,68,-156,68v-73,0,-108,-23,-108,-40v1,-65,94,-307,272,-728v7,-17,13,-32,16,-52v-89,-51,-170,-20,-280,-20v-59,0,-111,-35,-156,-104v9,-31,30,-72,64,-124v0,-19,44,-28,132,-28v97,0,212,-15,344,-44v53,-97,80,-173,80,-228v25,-123,50,-212,76,-268v-310,26,-700,-1,-1020,44v-75,11,-116,-18,-116,-104v0,-19,-8,-33,-24,-44v56,-38,84,-67,84,-88v145,-31,1252,-116,1416,-104","w":1420},"8":{"d":"68,-1696v122,-100,300,-140,528,-140v275,0,485,65,632,196v37,51,56,107,56,168v0,125,-109,258,-324,404v-51,35,-86,69,-108,100v32,43,108,101,228,172v192,115,280,238,280,424v0,173,-93,317,-288,416v-100,50,-182,56,-300,56v-126,0,-203,-27,-232,-80v-26,-16,-81,-31,-164,-44v-153,-96,-220,-211,-220,-388v0,-169,76,-338,228,-508r0,-4v-256,-191,-384,-367,-384,-528v0,-104,18,-181,68,-244xm304,-1492v28,115,97,200,196,272r128,92v111,-67,201,-133,272,-200v10,-16,26,-25,32,-44v-23,0,-55,-39,-96,-116v-68,-62,-155,-80,-276,-80v-103,0,-189,25,-256,76xm604,-772v-109,125,-160,230,-160,356v0,59,23,96,60,124v108,81,202,124,372,124v91,0,154,-39,188,-116v3,-24,9,-45,8,-72v0,-106,-122,-218,-364,-340v-34,-17,-67,-44,-104,-76","w":1385},"9":{"d":"328,-1686v150,-137,317,-189,540,-180v129,5,211,39,236,112v0,9,-19,31,-56,64r-4,20v58,18,72,84,72,168v0,57,-36,208,-76,456v-44,269,-36,365,-36,584v0,232,24,395,72,488v-35,83,-87,124,-156,124v-83,0,-150,-51,-180,-160v-23,-83,-29,-172,-24,-260r36,-680v-2,-2,-5,-3,-4,-8v-135,79,-234,134,-300,160v-224,88,-448,-21,-448,-296v0,-180,102,-385,328,-592xm428,-1458v-110,124,-154,250,-136,424r40,0v131,0,256,-81,376,-244r96,-116v-2,-52,16,-79,56,-180r4,-32v-183,-39,-318,14,-436,148","w":1125},":":{"d":"0,-790v-11,-127,51,-182,192,-192v92,16,128,45,128,120v0,79,-54,136,-164,152v-78,11,-115,-17,-156,-80xm204,-366v90,27,120,44,120,116v0,73,-52,131,-156,176v-93,17,-160,-21,-160,-120v0,-71,33,-123,100,-156","w":325},";":{"d":"224,-1012v100,-23,184,20,184,120v0,83,-57,140,-172,156v-57,8,-106,-5,-116,-48v-21,-39,-32,-65,-32,-80v0,-68,43,-126,136,-148xm144,-344v67,-114,190,-128,300,-56v8,13,12,30,12,52v0,111,-83,292,-248,544v-30,22,-42,24,-80,24v-42,0,-85,-45,-128,-136v62,-229,111,-372,144,-428","w":465},"\u037e":{"d":"224,-1012v100,-23,184,20,184,120v0,83,-57,140,-172,156v-57,8,-106,-5,-116,-48v-21,-39,-32,-65,-32,-80v0,-68,43,-126,136,-148xm144,-344v67,-114,190,-128,300,-56v8,13,12,30,12,52v0,111,-83,292,-248,544v-30,22,-42,24,-80,24v-42,0,-85,-45,-128,-136v62,-229,111,-372,144,-428","w":465},"<":{"d":"312,-658v136,76,395,258,748,532v6,87,-36,118,-136,152r-32,4v-91,-57,-270,-189,-544,-384v-74,-53,-162,-95,-252,-144v-74,-40,-96,-88,-96,-176v0,-58,49,-104,132,-160v106,-71,453,-257,680,-372v56,29,84,79,84,148v0,49,-15,74,-40,88r-448,244r-96,64r0,4","w":1055},"=":{"d":"112,-988v71,-11,128,-13,200,-12v135,0,395,15,780,44v52,84,19,160,-60,216r-680,-32r-236,16v-81,-2,-116,-23,-116,-80v0,-63,37,-113,112,-152xm224,-556v255,0,406,7,824,44v44,89,12,153,-56,208r-12,4r-596,-32r-220,12v-71,-8,-95,-29,-84,-92v18,-97,71,-144,144,-144","w":1095},">":{"d":"252,-1176v215,107,437,223,660,356v100,59,148,118,148,168v0,118,-43,158,-160,216v-134,66,-329,211,-600,412v-80,59,-128,84,-136,84v-114,0,-167,-64,-164,-152v10,-13,147,-120,416,-316v204,-149,317,-220,332,-220r0,-4v-78,-53,-236,-139,-472,-264v-70,-37,-104,-66,-104,-80v-24,-86,6,-170,80,-200","w":1065},"?":{"d":"896,-1506v13,-62,-458,-216,-600,-216v-41,0,-97,23,-168,68v-80,19,-125,-31,-128,-132v0,-29,31,-70,92,-124v5,-21,17,-32,36,-32v407,0,721,13,972,244v48,44,68,75,68,84v0,253,-177,413,-532,480r-284,52v29,230,44,363,44,400v2,80,-9,165,-36,156v-40,38,-89,63,-148,76v-12,-3,-45,-30,-100,-80r8,-72v0,-73,-45,-230,-100,-480v-26,-117,7,-216,88,-264v489,-43,751,-96,788,-160xm156,118v0,-107,51,-176,156,-200v79,1,116,37,116,124v0,84,-36,144,-108,180r-52,8v-75,-9,-112,-46,-112,-112","w":1165},"@":{"d":"1379,-645v0,210,-77,346,-283,346v-103,0,-188,-98,-253,-294r-12,-11v-108,183,-205,275,-290,275r-23,4v-94,-13,-126,-54,-126,-145v0,-93,64,-206,193,-339v53,-36,135,-82,246,-138v0,-6,15,-10,45,-11r15,0v39,0,64,67,74,201v44,145,60,203,161,235v55,-4,71,-82,71,-157v0,-127,-25,-239,-90,-324v-53,-69,-134,-97,-227,-97v-173,0,-304,25,-391,75v-129,115,-194,274,-194,477v0,185,71,311,216,369v163,65,267,89,380,89v183,0,358,-64,510,-205v36,-34,58,-79,79,-123v60,-59,214,-19,201,60v-8,46,-35,123,-119,201v-335,311,-912,366,-1305,82v-153,-111,-197,-278,-197,-499v0,-229,71,-425,224,-578v88,-88,312,-123,611,-123v195,0,331,73,395,224v63,150,89,287,89,406xm768,-783v-145,99,-215,183,-212,298r11,0v39,0,99,-71,182,-212v7,-11,17,-37,26,-79","w":1755},"A":{"d":"850,-1724v27,-77,77,-104,148,-104v71,0,153,48,248,144v-4,231,55,440,180,824v65,8,136,-4,204,-4v51,0,76,15,76,44v11,1,16,5,16,12v0,67,-44,113,-132,136r-84,20v114,289,213,489,308,588v66,69,104,129,104,188v0,35,-16,59,-48,72v0,9,-20,17,-60,24r-24,0v-87,0,-185,-148,-320,-432v-61,-127,-136,-263,-200,-420r-124,-8v-360,23,-540,56,-540,100v-20,17,-71,114,-152,292v-59,79,-102,108,-188,108v-57,0,-94,-14,-100,-44v-20,-96,-3,-108,28,-256v0,-13,-67,-30,-200,-52v-40,-19,-60,-41,-60,-64v17,-38,52,-78,112,-96r284,-84v21,-7,53,-45,96,-116v220,-359,299,-506,428,-872xm1006,-1252v-101,160,-180,300,-236,420v-1,3,1,5,4,4v39,0,145,-20,320,-60r56,-4v-47,-181,-84,-290,-112,-328"},"B":{"d":"420,-1990v101,-7,162,18,180,104v0,19,5,27,16,28r500,40v139,27,237,67,292,124v37,39,53,58,52,80v-43,139,-146,270,-316,384v-79,53,-188,120,-320,212v1,8,6,13,16,12v217,0,371,-8,460,-8v258,0,402,37,432,84v31,31,40,64,40,116v0,119,-88,254,-272,392v-190,142,-422,263,-688,372v26,86,-10,119,-100,180v-38,3,-44,-23,-108,-80r-48,-12r-208,28v-90,4,-147,-27,-180,-108v-31,-75,4,-139,104,-148v133,-11,203,-14,200,-28r-96,-500r-136,-56v-7,-46,-22,-84,-24,-136v0,-19,36,-55,108,-108v-24,-221,-40,-405,-48,-552r-76,4v-123,0,-184,-25,-184,-76v-15,-45,-16,-58,-16,-100v0,-45,87,-72,260,-80v5,-3,16,0,16,-8v0,-77,48,-131,144,-160xm572,-1590v-1,118,6,225,20,396v54,-24,138,-94,268,-184v72,-50,146,-91,204,-148v6,-14,19,-21,20,-40v-162,-45,-321,-51,-512,-24xm288,-1574v-4,-6,-14,-13,-12,0r12,0xm588,-1190v-4,4,-11,8,-4,12v7,2,3,-8,4,-12xm1416,-750v4,4,6,10,16,8r-4,-20xm648,-722r72,364r24,52v204,-95,378,-194,520,-300v61,-46,107,-93,140,-136r0,-4v-84,-8,-157,-12,-220,-12v-168,-1,-334,11,-536,36xm636,-722r8,0r0,-8xm808,-58v-5,-1,-4,4,-4,8v5,1,4,-4,4,-8","w":1800},"C":{"d":"628,-1632v229,-151,367,-206,520,-196v129,8,188,49,188,132v0,87,-133,143,-384,216v-139,40,-298,152,-460,320v-154,160,-204,289,-204,468v0,195,136,331,412,388v388,80,712,-34,964,-260v42,-37,135,-122,280,-260v129,-122,248,-176,344,-176v3,6,8,9,8,20v0,103,-57,209,-172,320v0,16,-66,99,-208,236v-297,287,-645,424,-1032,424v-385,0,-640,-129,-780,-380v-69,-125,-104,-234,-104,-380v0,-285,200,-590,628,-872"},"D":{"d":"300,-1568v-2,-121,59,-190,184,-196v105,-5,155,122,112,232v75,51,236,110,476,196v80,28,181,113,340,176r292,116v204,115,296,206,296,356v0,231,-271,434,-816,592v-111,32,-208,53,-288,80v-1,19,4,35,4,52v0,15,-43,39,-132,60v-62,15,-72,-4,-148,-44v-36,-10,-139,-18,-308,-24v-70,-18,-110,-40,-128,-96v27,-101,64,-137,128,-176v110,26,144,38,200,36v-83,-326,-141,-582,-168,-768v-15,-104,-20,-204,-20,-300v-36,-29,-166,-45,-384,-84v-122,-22,-160,-59,-160,-156v0,-30,41,-69,124,-116r16,-16v201,53,327,80,380,80xm608,-1216v-4,1,-14,-3,-12,4v0,256,69,579,208,968v171,-32,321,-73,456,-124v237,-89,366,-157,396,-192v40,-48,56,-68,56,-116v0,-87,-145,-174,-416,-304v-300,-144,-523,-236,-688,-236","w":2005},"E":{"d":"956,-1792v83,-28,221,-39,280,8r0,32v0,147,-168,241,-504,276v-195,20,-292,35,-292,48v-34,93,-47,209,-44,340v316,-80,555,-120,716,-120v120,0,180,12,180,24v-1,35,-2,57,20,76v-33,58,-104,108,-216,140v-79,22,-252,38,-512,76v-54,8,-108,31,-164,52v60,255,116,458,208,648r20,4v85,0,239,-59,468,-164v237,-108,428,-156,568,-156v99,0,148,13,148,24r0,132v0,6,-55,9,-160,32v-294,65,-550,214,-796,392v-107,78,-175,88,-288,88v-102,0,-182,-97,-252,-288v-44,-121,-111,-321,-188,-604v-47,0,-96,-20,-148,-60v-2,-68,26,-116,96,-196v21,-25,11,-40,12,-72r12,-280r4,-4r-84,4v-100,-3,-120,-22,-120,-104v0,-105,95,-178,284,-220v5,0,29,-24,72,-72v7,0,35,-21,84,-64v77,-2,133,31,196,100v92,1,209,-27,400,-92","w":1515},"F":{"d":"936,-1832v83,-28,221,-39,280,8r0,32v0,147,-166,241,-500,276v-197,21,-296,34,-296,48v-34,93,-47,209,-44,340v316,-80,555,-120,716,-120v120,0,180,12,180,24v-1,35,-2,57,20,76v-33,58,-104,108,-216,140v-79,22,-252,38,-512,76v-54,8,-108,31,-164,52v-17,243,-18,447,-2,612v30,70,73,145,128,224v35,95,-9,143,-124,164r-32,0v-115,0,-208,-152,-224,-460r-22,-436v-53,0,-101,-19,-144,-56v-2,-68,26,-116,96,-196v21,-25,11,-40,12,-72r12,-280r4,-4r-84,4v-100,-3,-120,-22,-120,-104v0,-105,95,-178,284,-220v5,0,29,-24,72,-72v7,0,35,-21,84,-64v77,-2,133,31,196,100v92,1,209,-27,400,-92","w":1225},"G":{"d":"1118,-1432v-85,101,-73,119,-152,140v-39,0,-95,-69,-152,-212v-44,-111,-87,-169,-160,-204v-86,22,-149,62,-192,116v-112,140,-160,337,-160,592v0,355,96,659,300,900v59,70,127,100,192,100v149,0,287,-182,412,-548v28,-82,52,-195,76,-336v-76,11,-235,41,-476,92v3,-43,-20,-54,-76,-76v-25,-20,-37,-34,-36,-56v0,-102,128,-175,384,-212v140,-21,271,-28,392,-28v40,0,60,8,60,24v8,39,16,84,16,136v0,183,-77,464,-248,836v-85,185,-219,311,-384,384v-38,18,-76,24,-124,24v-143,0,-304,-47,-424,-192v-264,-318,-356,-653,-356,-1048v0,-337,77,-621,260,-824v109,-122,219,-160,368,-160v171,0,320,109,424,336v45,98,56,173,56,216","w":1565},"H":{"d":"1145,-2246v91,-13,159,18,172,84v18,92,28,261,28,372v0,86,1,380,18,880v3,72,17,108,28,108v269,0,410,93,430,172v2,74,-56,105,-148,100v-180,-11,-268,-9,-266,-32r-8,8v9,0,12,45,10,136v6,24,29,397,58,792v-33,37,-83,56,-152,56v-75,0,-112,-16,-112,-48v0,-122,-37,-368,-64,-744v-8,-112,-19,-167,-24,-168v-163,-9,-328,9,-492,12v12,199,18,326,18,380v0,147,-17,220,-66,220v-57,0,-117,-14,-168,0v-35,0,-41,-97,-41,-291v0,-191,-15,-290,-29,-299v-21,5,-44,10,-68,10v-123,0,-198,-22,-228,-64v-10,-14,-16,-27,-16,-40v1,-93,18,-140,50,-140r184,0v43,-2,64,-7,64,-16v0,-359,-70,-737,-70,-1140v0,-184,45,-297,96,-292r48,-4v83,3,124,17,124,44v51,54,20,168,20,256v0,151,17,491,50,1020r12,108v188,1,360,-11,492,-36v-23,-628,-42,-1039,-54,-1232v-7,-113,25,-201,104,-212","w":1774},"I":{"d":"20,-1934v96,-93,256,-54,292,84v-4,57,-28,97,-36,148v-15,96,-13,194,-12,300v0,192,52,579,156,1160r32,328v-32,43,-81,64,-148,64v-72,0,-108,-23,-108,-48v0,-768,-188,-1254,-188,-1488v-9,-3,-8,-336,-8,-436v0,-58,5,-97,20,-112","w":475},"J":{"d":"868,-1688v-20,-113,-22,-268,100,-268v38,0,82,17,132,52r120,836v50,459,41,830,-100,1144v-69,154,-158,204,-300,204v-129,0,-250,-85,-376,-244v-61,-77,-137,-178,-212,-316v-161,-296,-237,-457,-232,-628v4,-119,26,-152,120,-152v93,0,165,49,216,148v16,60,5,88,-36,144v99,266,232,486,400,660r128,104v107,-109,160,-354,160,-736v0,-223,-48,-537,-120,-948","w":1255},"K":{"d":"324,-1814v55,-36,212,-31,212,40v0,148,-10,154,-52,436r-4,88v260,-108,579,-289,816,-480v128,12,192,43,192,92r0,24v0,60,-112,140,-324,260v-117,66,-295,179,-544,316v-15,0,-61,20,-140,60v-26,118,28,149,140,228v274,194,472,346,612,428v147,86,251,136,320,136v131,0,196,15,196,36v24,17,36,49,36,96v-92,43,-160,56,-260,56v-187,0,-438,-129,-768,-364v-134,-95,-215,-132,-228,-132v-13,107,12,185,44,480r0,92v-34,41,-71,58,-132,52v-62,-6,-93,-24,-96,-48r-72,-528v-6,-169,-23,-261,-52,-276v-15,-20,-73,-65,-172,-136v-40,-43,-48,-76,-48,-140v0,-25,61,-61,184,-108r68,-48r-4,-80v-5,-212,16,-347,76,-580","w":1785},"L":{"d":"48,-1724v95,-64,264,-24,248,96r-32,240v-23,392,12,563,72,1240v33,0,177,-55,428,-172v353,-165,627,-252,824,-252v77,0,140,9,188,28r-4,148v0,7,-56,8,-164,28v-173,32,-318,82,-436,136v-161,74,-321,164,-488,252v-132,69,-256,100,-368,100v-139,0,-208,-26,-208,-52v0,-567,-121,-1114,-104,-1728v14,-9,29,-31,44,-64","w":1775},"M":{"d":"1400,-1986r68,0v51,56,102,156,140,304v46,177,136,432,252,772v167,491,311,835,452,1028v23,31,34,51,28,84v-16,87,-61,108,-140,108v-113,0,-204,-126,-304,-364v-79,-187,-230,-549,-424,-1100r-56,-144r-4,0v-42,164,-75,435,-144,804v-67,359,-124,589,-124,700v-29,9,-44,28,-44,56v0,9,-43,27,-132,40v-55,8,-82,-3,-100,-52v-21,-57,-37,-175,-68,-352r-116,-664v-50,-195,-96,-336,-164,-456r-4,0v-48,123,-98,374,-160,752v-28,170,-61,274,-96,308v-38,37,-75,44,-136,44v-51,0,-76,-16,-76,-48v-35,-116,-12,-244,-12,-376v0,-27,-19,-100,-36,-220v-13,-93,31,-140,128,-140r16,4v29,-59,69,-227,144,-496v55,-197,146,-292,248,-292v126,0,228,172,324,512v26,93,76,279,132,564r4,0v45,-116,93,-286,128,-512v67,-434,120,-720,176,-856","w":2165},"N":{"d":"1028,-1938v93,-91,260,-54,272,92v-21,61,-32,108,-32,140v-5,563,-45,1137,32,1656r0,52v0,120,-23,175,-68,180r-80,8v-137,0,-270,-117,-408,-344r-280,-488r-92,-132r-4,0v-37,116,-69,318,-84,608v-7,138,-11,208,-24,208v-35,24,-84,32,-144,32v-45,0,-67,-13,-76,-36v-29,-79,-40,-151,-40,-248v0,-90,33,-315,88,-676v11,-72,5,-216,20,-428v8,-112,36,-185,72,-228r4,4r92,0r60,-4v74,141,167,399,312,760v116,288,208,429,352,572r4,0","w":1335},"O":{"d":"368,-1850v102,-18,167,-29,240,-28v255,0,462,290,588,876v70,326,43,678,-120,884v-127,161,-255,208,-444,208v-170,0,-329,-95,-456,-300v-134,-216,-176,-453,-176,-748v0,-317,60,-577,180,-780v61,-65,124,-101,188,-112xm468,-1510v-30,-2,-51,-13,-84,-12v-17,4,-45,60,-76,172v-38,137,-52,269,-52,392v0,409,108,680,308,776v187,90,298,1,384,-204v40,-97,40,-195,40,-312v0,-237,-46,-488,-180,-728v-86,-154,-155,-212,-236,-212v-43,0,-77,43,-104,128","w":1255},"P":{"d":"200,-1874v36,-82,84,-112,176,-112v65,0,107,29,124,88v0,24,13,36,40,36v238,53,467,139,688,256v188,99,276,213,276,388v0,177,-82,340,-256,476v-184,144,-390,243,-624,328v57,243,80,367,80,512v0,106,-29,170,-88,192v-109,0,-165,-141,-200,-420v-17,-137,-51,-204,-72,-204v-7,-8,-35,-17,-84,-28v-18,-13,-33,-49,-44,-108v-4,-6,-14,-8,-12,-20v1,-9,31,-39,92,-92v-49,-135,-90,-641,-104,-988v-128,-50,-192,-86,-192,-108r0,-24v26,-85,45,-128,56,-128xm456,-1606v26,540,59,864,96,940v169,-59,309,-121,420,-188v124,-75,205,-180,248,-312v4,-13,8,-33,8,-56v0,-147,-253,-274,-760,-380","w":1505},"Q":{"d":"702,-1816r36,0v153,0,321,152,504,456v188,313,272,513,272,728v0,123,-33,249,-100,380v57,82,116,145,180,180v36,19,91,28,160,36v29,35,44,82,44,140v0,106,-23,136,-116,136v-111,0,-227,-63,-348,-188r-100,-68v-318,184,-760,143,-1012,-92v-146,-136,-192,-318,-192,-556v0,-285,93,-604,280,-956v177,-131,307,-196,392,-196xm306,-616v-11,289,209,504,528,504v86,0,162,-25,228,-76v-77,-106,-202,-222,-368,-360v-142,-118,-212,-192,-204,-264v10,-91,59,-132,140,-132v65,0,167,80,304,240v5,0,74,65,208,196r72,76v31,2,40,-59,44,-184v8,-217,-109,-468,-364,-804v-79,-104,-168,-144,-240,-144v16,120,36,203,-20,272v-29,2,-39,-23,-96,-76v-9,-9,-22,-12,-36,-12v-87,0,-153,228,-196,684r0,80"},"R":{"d":"256,-1674v33,-69,80,-96,160,-96v77,0,116,37,116,112v99,0,427,73,976,244v115,36,164,75,164,136v0,226,-157,397,-468,524v-122,50,-219,103,-296,148v181,87,482,221,912,380v257,95,429,151,508,192v12,117,-99,172,-248,172v-177,0,-529,-152,-1076,-412v-210,-100,-351,-128,-404,-128v-9,68,60,178,60,380v0,101,-57,152,-172,152v-46,-27,-95,-87,-116,-188r-80,-392r-164,0v-99,0,-148,-27,-148,-80v0,-93,84,-161,252,-204v-28,-116,-35,-468,-32,-712v-86,0,-159,14,-240,20v-61,-8,-80,-33,-80,-92v0,-87,140,-144,376,-156xm476,-1410v-27,215,-13,461,44,664v289,-69,499,-137,624,-212v109,-66,185,-144,232,-224r0,-4v-369,-128,-579,-192,-632,-192v-94,-21,-183,-32,-268,-32","w":2035},"S":{"d":"1232,-1646v56,84,-74,115,-184,112r-324,-8v-99,0,-212,50,-328,160v-34,32,-59,75,-88,120v41,60,104,103,188,132v137,47,359,115,664,208v377,115,564,255,564,412r0,28v0,205,-262,376,-788,504v-143,35,-273,48,-388,48v-253,0,-422,-50,-476,-164v-75,-159,5,-285,156,-376v42,-25,85,-32,124,-32v28,82,-8,184,-12,272v364,100,708,29,992,-148v43,-27,69,-61,92,-88v-67,-75,-139,-126,-212,-160v-107,-50,-351,-119,-728,-228v-325,-94,-484,-229,-484,-376r0,-28v0,-148,122,-294,372,-428v143,-77,270,-100,436,-100v214,0,360,44,424,140","w":1735},"T":{"d":"1508,-1694r152,-4v96,0,157,24,184,72v1,11,4,20,4,32v4,95,-204,208,-588,208v-67,0,-138,-8,-200,0v-21,157,-38,296,-32,416r36,736r0,220v0,47,-10,76,-32,84v-72,27,-135,40,-188,40v-61,-186,-92,-425,-92,-716v0,-110,-14,-214,-12,-312r8,-424v-39,-16,-97,-26,-172,-24r-480,12v-117,0,-176,-19,-176,-56v0,-82,27,-116,104,-172v199,-35,449,-52,752,-52v213,0,457,-20,732,-60","w":1465},"U":{"d":"982,-2038v26,33,63,119,104,260v80,277,116,548,116,812v0,413,-82,720,-268,896v-108,102,-233,140,-352,140v-179,0,-308,-109,-408,-316v-110,-229,-164,-517,-164,-868v0,-259,36,-489,108,-688v7,-5,48,-20,124,-20v69,0,117,35,104,100r-44,224v-15,115,-24,229,-24,344v0,507,101,830,304,968r48,12v67,0,145,-63,212,-200v67,-137,84,-332,84,-556v0,-408,-54,-728,-148,-964v-27,-68,-3,-144,84,-144r120,0","w":1235},"V":{"d":"1490,-2196v19,12,53,27,104,44r12,20v0,55,-91,241,-268,560v-67,120,-130,398,-248,816v-86,307,-156,499,-156,592v0,204,-92,304,-196,304v-47,0,-77,-12,-92,-36v-45,-71,-86,-159,-116,-268v-45,-163,-86,-299,-144,-400v-124,-213,-234,-396,-296,-564v-53,-143,-64,-228,-60,-352v18,-12,39,-33,64,-64v25,-3,51,-5,80,-4v72,0,106,24,120,68v107,327,272,602,424,888v13,-19,53,-121,112,-308v186,-586,338,-985,488,-1176v68,-87,133,-120,172,-120","w":1435},"W":{"d":"1586,-2240v51,55,90,117,116,184v27,301,40,575,40,820v1,455,-28,879,-116,1268v-20,87,-68,146,-124,172v-31,15,-66,16,-100,16v-150,-131,-246,-259,-304,-376v-66,-133,-174,-363,-308,-700r-40,-88r-4,0v-35,79,-84,269,-84,572v0,153,-19,325,-68,512v-12,46,-27,68,-36,68v-77,0,-222,15,-212,-56v-232,-630,-336,-1054,-336,-1492v0,-172,47,-280,140,-324v63,-12,100,7,156,48v1,345,-16,759,76,992r4,0v59,-179,88,-311,88,-396v0,-229,61,-383,96,-468v41,-100,53,-127,128,-128v29,0,81,20,156,60v168,593,339,1035,512,1324v-1,3,1,5,4,4v80,-314,100,-643,100,-1020v0,-237,-19,-543,-56,-916v17,-18,66,-37,148,-56","w":1785},"X":{"d":"712,-442v-229,197,-323,347,-436,584v0,11,-21,23,-64,36v-99,66,-212,39,-212,-104v0,-76,71,-196,208,-364v153,-187,244,-315,276,-380v-4,-25,-90,-116,-240,-288v-155,-178,-224,-317,-224,-400v0,-91,20,-137,100,-176v109,16,164,37,164,64v85,181,227,405,376,568r4,0r372,-448v155,-163,253,-258,296,-284v141,31,191,44,192,120v0,77,-73,143,-180,244v-241,228,-377,425,-448,544r-24,32v34,59,110,155,244,268v82,69,172,99,256,108r100,112v0,59,-33,102,-100,128r-44,40v-79,0,-193,-45,-336,-144v-51,-35,-142,-125,-280,-260","w":1475},"Y":{"d":"1150,-2040v21,1,32,11,49,15v74,-4,139,0,134,75v43,195,83,515,146,956v53,368,86,684,86,1023v0,258,-76,506,-250,728v-116,147,-258,209,-433,209v-276,0,-521,-173,-721,-527v-96,-169,-131,-313,-131,-485v0,-125,46,-214,138,-269v31,-5,41,-5,56,27r19,0v14,0,26,77,52,227v29,172,70,296,112,373v162,293,315,437,452,437v69,0,157,-49,247,-160v132,-164,190,-418,190,-747v0,-308,-31,-476,-60,-504v-20,-82,-45,-245,-74,-489v-4,0,-44,75,-127,220v-163,285,-364,426,-594,426v-151,0,-250,-59,-288,-179v-16,-50,-18,-112,-18,-183v0,-179,52,-420,194,-702v55,-109,108,-142,198,-142v54,0,96,24,127,71v20,86,-15,105,-71,220v-86,178,-120,350,-120,508v0,95,10,142,15,142v111,-33,233,-156,351,-377v108,-203,194,-486,232,-826v7,-7,17,-11,30,-11xm476,-1856v-4,3,-13,0,-12,8r12,4r0,-12","w":1565},"Z":{"d":"2154,-1738v146,-29,204,-52,268,-52v56,0,84,12,84,36v21,34,28,69,28,116v0,129,-143,267,-428,416v-256,242,-470,412,-632,524r-564,408r0,4v556,44,1333,20,1956,32v50,68,68,112,68,184v0,60,-31,103,-92,128r-48,4v-240,-24,-451,-36,-632,-36r-20,0v-135,0,-397,29,-784,20r-544,-12v-237,0,-436,38,-604,88v-85,25,-172,12,-192,-76v-6,-25,-8,-48,-8,-76v0,-99,99,-170,280,-252v278,-126,569,-329,896,-564v157,-113,377,-298,656,-560v-175,19,-517,64,-1028,136r-256,24v-53,-31,-80,-81,-80,-152v0,-87,36,-151,108,-192v42,8,128,8,192,8v124,0,374,-46,756,-96v295,-38,505,-37,620,-60","w":2925},"[":{"d":"36,-1604v10,-295,38,-395,284,-380r464,29v54,114,25,129,-36,278v-341,5,-512,18,-512,39v-27,124,-40,261,-40,410v0,93,20,397,52,912v3,51,2,104,-12,141v37,62,143,93,316,93v82,0,315,-9,320,24v33,51,40,70,40,126v0,49,-13,73,-40,73v-176,112,-522,78,-784,30v-65,-449,-92,-935,-88,-1453","w":935},"\\":{"d":"96,-1678v-7,-23,-19,-71,16,-68v25,2,78,26,160,64v47,91,175,266,408,500v515,517,784,776,784,800v64,79,120,138,168,176v77,119,116,219,116,300v-34,42,-60,56,-112,56v-66,0,-140,-79,-244,-220v-106,-144,-387,-397,-796,-800v-304,-300,-472,-519,-528,-632v-9,-8,-31,-44,-68,-108v-3,-22,8,-37,24,-36v-11,-40,38,-46,72,-32","w":1735},"]":{"d":"947,-1604r38,322v4,519,-24,1004,-94,1453v-173,30,-327,45,-483,44v-161,0,-279,-25,-355,-74v-37,5,-43,-51,-43,-102v0,-27,14,-59,43,-97v4,-33,258,-24,342,-24v185,0,297,-31,338,-93v-15,-37,-16,-89,-13,-141v34,-515,55,-819,55,-912v0,-149,-14,-286,-42,-410v0,-21,-183,-34,-548,-39v-65,-149,-95,-163,-38,-278r496,-29v254,-7,269,82,304,380","w":1010},"^":{"d":"376,-1920v44,-47,81,-56,156,-52v48,91,146,248,304,464v40,55,23,72,8,124v1,12,12,28,4,36v-9,-2,-8,-11,-32,-16r-64,20v-21,0,-76,-40,-148,-132v-53,-67,-93,-129,-136,-172v-158,127,-256,229,-256,308v0,24,-47,36,-140,36r-24,4v-22,-34,-28,-61,-28,-104v0,-68,72,-164,208,-296v42,-41,89,-117,148,-220","w":885},"_":{"d":"1820,402v-28,47,-121,128,-235,128v-29,0,-47,-7,-55,-12v-67,11,-164,13,-252,12v-58,0,-292,-19,-703,-40v-159,-8,-294,5,-435,36r-110,-76v-4,-30,18,-54,32,-52v-30,-34,-44,-45,-20,-80r-3,-20v0,-29,115,-60,347,-80v269,-23,514,48,1057,48v50,0,133,-20,252,-20v83,0,125,52,125,156","w":1900},"`":{"d":"226,-1920v59,103,107,178,148,220v142,144,208,216,208,312v0,31,-9,60,-28,88r-24,-4v-93,0,-140,-12,-140,-36v0,-79,-98,-181,-256,-308v-49,-23,-84,-91,-104,-204r88,-120v40,0,76,17,108,52","w":682},"a":{"d":"712,-1038v103,-77,256,-90,256,80v0,49,23,199,84,448v35,143,102,257,172,356v55,78,68,112,68,180v0,32,-20,48,-60,48v-39,24,-65,36,-76,36v-74,-26,-144,-83,-200,-176v-37,-63,-89,-190,-164,-376r-24,-32v-98,153,-180,271,-252,348v-87,93,-189,136,-300,136v-108,0,-179,-56,-212,-168r-4,-68v0,-151,86,-350,292,-560v109,-111,261,-183,420,-252xm284,-266v2,2,3,5,8,4v65,0,121,-62,196,-168v111,-156,180,-265,180,-348v-2,-3,-6,-6,-12,-4v-46,13,-137,80,-256,212v-83,91,-116,197,-116,304","w":1295},"b":{"d":"80,-1830v21,-116,86,-156,192,-156v49,0,80,35,84,100v0,15,-23,85,-48,212v-46,236,-58,398,-56,560v-7,21,0,43,0,68v0,81,11,167,32,260v114,-139,261,-208,440,-208v139,0,256,23,352,44v32,86,44,155,44,240v0,237,-122,464,-388,648v-150,104,-280,132,-432,132v-89,0,-175,-40,-256,-120v-52,-143,-13,-284,-20,-448r-24,-580v0,-131,12,-385,80,-752xm328,-206v332,-50,501,-191,500,-416r-4,-60v-249,-54,-384,26,-456,260v-16,51,-29,123,-40,216","w":1139},"c":{"d":"252,-884v109,-88,238,-89,356,-20v-5,11,-8,25,-8,44v7,25,23,41,20,76v-23,47,-72,84,-148,108v-78,25,-132,55,-152,96v-36,75,-44,112,-44,176v0,94,71,140,192,140v89,0,243,-51,464,-148v100,-44,148,-61,192,-60v45,46,69,81,72,104v-3,14,-43,58,-120,132v-20,37,-40,56,-60,56v-247,147,-457,220,-632,220v-188,0,-313,-89,-376,-268v-35,-290,36,-488,244,-656","w":1185},"d":{"d":"756,-1676v25,-16,49,-11,84,-12v0,21,17,39,52,52v26,17,50,123,48,316r-4,396v0,191,67,417,200,676v65,79,84,99,84,164v0,16,-23,56,-68,120v-152,11,-207,-37,-260,-184v-18,-48,-49,-95,-92,-140v-35,89,-107,176,-224,244v-129,75,-285,104,-456,104v-67,-49,-100,-76,-100,-80v-16,-88,-20,-110,-20,-164v0,-76,73,-207,244,-368v149,-140,282,-204,376,-216v32,-13,48,-36,48,-68v0,-322,-44,-530,-44,-628r0,-112xm272,-188r36,4v115,0,209,-92,284,-276v12,-30,20,-51,20,-64v-127,41,-219,111,-276,208v-42,72,-64,114,-64,128","w":1235},"e":{"d":"128,-988v270,-139,455,-83,584,196v25,54,24,101,24,132v0,134,-104,242,-312,324r0,4v55,93,127,140,216,140v120,0,241,-104,388,-292v81,-103,140,-142,200,-140v24,15,-13,80,20,80v17,0,29,-15,36,-44v4,0,10,-2,8,4v0,45,-43,118,-120,224v-15,21,-21,49,-28,80v-37,7,-56,22,-56,44v-73,122,-183,213,-332,260v-59,19,-96,16,-156,16v-195,0,-389,-141,-580,-424r-20,-356v0,-132,47,-206,128,-248xm248,-672v0,80,23,136,68,168v31,0,78,-24,140,-72v40,-111,5,-214,-92,-248v-38,-13,-98,-2,-92,36v-16,27,-24,66,-24,116","w":1025},"f":{"d":"274,-1724v357,-75,590,52,712,384v26,71,36,123,36,152v-20,69,-89,90,-184,84r-40,4v-26,-104,-51,-186,-84,-240v-79,-127,-127,-180,-212,-180v-76,0,-127,70,-136,212r-20,320v86,10,275,14,564,32v83,5,124,22,124,32v0,13,8,29,24,48r0,8v-19,0,-31,15,-36,44v-97,86,-343,72,-540,72v-57,0,-99,5,-128,16v35,476,71,793,108,952v-18,15,-31,6,-56,-12r-32,76v-47,3,-55,-11,-116,-48v-32,0,-48,-20,-48,-60v-26,-78,-46,-328,-76,-748v-6,-86,-19,-127,-24,-128r-244,-44v-31,-14,-49,-26,-56,-36r0,-116v0,-7,28,-15,84,-24v79,-35,139,-53,196,-52v-1,-361,61,-614,184,-748","w":955},"g":{"d":"344,-890v181,-91,457,-80,580,44v16,7,24,17,24,32v-24,17,-37,29,-40,36v16,353,24,615,24,788v0,334,-34,543,-84,636v-86,160,-190,244,-328,244v-131,0,-246,-52,-344,-156v-5,-9,-8,-17,-8,-32v0,-39,-39,-99,-104,-188v-34,-46,-44,-93,-44,-132v0,-37,11,-64,32,-80v37,-2,35,10,80,44v32,0,48,7,48,20v25,78,91,155,200,232v6,0,42,24,108,72v54,-15,105,-50,140,-112v119,-214,43,-643,60,-956v-28,26,-78,124,-184,268v-78,107,-145,136,-252,136v-48,0,-101,-31,-160,-92v-45,-29,-68,-64,-68,-104v-19,-50,-24,-113,-24,-184v0,-223,112,-400,344,-516xm364,-618v-107,103,-128,210,-104,372v72,-40,133,-110,188,-208v67,-121,121,-205,156,-256v-3,-11,-8,-16,-16,-16v-61,0,-142,29,-224,108","w":985},"h":{"d":"216,-1592r8,0v45,23,68,41,68,52v0,331,-73,699,-60,1076v44,-36,101,-170,188,-396v29,-77,68,-112,100,-112v62,-34,74,-44,120,-44v31,0,51,32,72,92v30,87,60,254,112,500v43,205,79,284,200,396r0,4v-35,49,-71,83,-108,100v-55,0,-127,-28,-200,-100v-48,-48,-87,-124,-108,-220r-64,-300v-39,49,-96,185,-188,400v-43,100,-99,172,-152,224v-64,4,-75,-14,-132,-68r-40,-20v10,-72,-3,-108,-32,-196v7,0,5,-295,20,-884v5,-222,33,-371,56,-448v35,-1,63,-16,72,-52v24,13,43,20,56,20v8,0,12,-8,12,-24","w":1015},"i":{"d":"30,-1428v23,-71,84,-99,180,-96v92,3,129,27,136,100v6,56,-77,108,-192,108v-80,0,-120,-31,-120,-72v-4,-11,-5,-25,-4,-40xm194,-1116v53,0,80,13,80,40v66,328,47,729,40,1108v-21,16,-53,28,-96,36v-13,10,-19,26,-36,32v-23,0,-45,-17,-64,-52v0,16,-3,24,-8,24v-40,-35,-69,-113,-60,-232r36,-492v-5,-70,-8,-169,-8,-296v0,-112,39,-168,116,-168","w":385},"j":{"d":"348,-1438v89,-7,153,17,160,96v5,64,-80,112,-200,112v-80,0,-120,-41,-120,-96v0,-63,53,-104,160,-112xm36,558v275,-94,210,-568,204,-924r16,-260r-8,-272v0,-133,39,-200,116,-200v56,0,84,19,84,56v0,194,56,516,44,816r8,28v0,397,-28,634,-84,712v-82,185,-196,276,-352,276v-136,0,-252,-53,-352,-156v-15,-15,-24,-45,-24,-92v-99,-133,-148,-223,-148,-268v0,-49,3,-75,32,-104v33,-2,37,13,88,48v12,4,28,4,44,4v15,62,52,126,116,184v49,44,123,93,216,152","w":535},"k":{"d":"212,-2008v49,-30,76,-43,124,-40v56,4,84,17,84,36v0,300,23,657,-12,972r460,-148r124,-16v61,0,108,15,140,44v-8,29,-12,63,-12,104r4,4v-61,51,-161,98,-300,136v-163,45,-302,70,-412,160r0,8v23,45,94,90,216,128v89,28,157,59,200,100v63,-4,54,15,140,56v238,114,371,170,388,220v-8,0,-15,29,-20,88v-12,24,-41,36,-88,36r-56,20v-299,-140,-500,-232,-604,-272v-72,-28,-129,-44,-168,-52v-46,106,-12,273,-12,408v0,56,-13,95,-40,116v-7,6,-14,18,-20,36v7,4,0,10,0,16v-3,-6,-15,-3,-24,-4r-40,48r-16,4v-55,-16,-83,-15,-76,-40r12,-44r-20,0r0,36r-12,12v-76,-167,-17,-486,-36,-716r-124,-84r4,-52r-16,-60v0,-37,51,-86,152,-148v19,0,26,-313,36,-940v2,-115,15,-172,24,-172","w":1315},"l":{"d":"44,-2164v54,-38,86,-52,140,-52v51,0,76,21,76,64v0,100,32,205,28,320r-28,732v-4,304,34,558,96,992v10,67,-2,160,-44,160v-22,0,-62,9,-120,28v-17,-17,-44,-37,-80,-60v-81,-532,-108,-854,-108,-1260v0,-197,17,-403,52,-616v-9,0,-17,-35,-24,-104r-32,-24v16,0,31,-60,44,-180","w":375},"m":{"d":"904,-912v87,5,164,35,164,56v102,168,211,597,316,816v0,10,-16,29,-48,56v0,13,-5,20,-16,20v-129,0,-218,-70,-260,-212v-44,-150,-79,-255,-112,-312r-4,0v-123,352,-212,528,-268,528r-36,0v-100,0,-158,-104,-176,-312v-14,-165,-29,-248,-40,-248v-34,37,-73,133,-116,288v-48,176,-109,264,-184,264v-32,0,-67,-13,-104,-40v3,-12,5,-25,4,-40r-24,-28v49,-143,4,-321,20,-488v36,4,47,-45,44,-96v0,-6,21,-17,64,-32v14,-46,44,-9,72,-4v15,-3,57,-55,140,-144v29,-31,53,-40,60,-40v129,0,218,85,268,256r16,40r8,0v26,-53,50,-126,84,-212v15,-38,39,-63,60,-80r36,4","w":1405},"n":{"d":"654,-1166v85,22,128,37,128,44v39,90,77,190,96,304v63,379,99,625,128,736v7,0,15,25,20,76v5,55,-31,76,-96,76v-85,0,-128,-16,-128,-48v-105,-209,-132,-555,-184,-828r-4,0v-93,115,-197,339,-332,664v-46,112,-82,163,-88,164v-12,-36,-146,14,-136,-52r-48,-84v37,-134,56,-369,56,-704v57,-33,86,-53,88,-60v0,-13,5,-20,16,-20v100,0,148,29,148,44v0,13,-17,30,-8,40r4,0v51,-48,94,-117,144,-196v68,-107,139,-156,196,-156","w":1035},"o":{"d":"462,-865v190,0,312,189,312,435v0,190,-64,355,-216,459v-224,153,-447,75,-527,-201v-48,-166,-16,-359,32,-509v7,-10,40,-28,99,-53v12,-9,37,-38,74,-89v43,-28,119,-42,226,-42xm339,-151v98,-39,180,-166,180,-304v0,-80,-29,-147,-88,-201v-44,0,-82,29,-121,84v-17,23,-31,34,-38,36v7,71,-4,148,-4,222v0,109,31,163,71,163","w":795},"p":{"d":"192,-1004v297,0,513,57,648,172v61,85,92,161,92,228v0,110,-72,234,-228,356v-122,96,-236,134,-364,132v0,481,13,784,40,908v-13,9,-44,2,-64,4v-9,5,-16,13,-20,24v-115,-29,-172,-63,-172,-100v-43,-165,-83,-417,-64,-756r28,-500v0,-66,-9,-129,-28,-188v-5,0,-9,9,-12,28v-21,5,-28,-18,-28,-48v0,-24,15,-52,44,-84v-18,-2,-25,5,-28,24v-4,0,-10,2,-8,-4v0,-49,39,-94,116,-136xm344,-344v65,0,143,-18,220,-76v72,-54,100,-147,100,-260v-97,-75,-177,-112,-240,-112v-40,0,-59,11,-60,32r-16,396","w":955},"q":{"d":"194,-772v156,-175,305,-259,508,-248v131,7,196,31,196,52v93,95,140,154,140,176v-85,221,-120,790,-104,1270v237,-204,403,-294,500,-270v9,-9,51,-23,128,-44v-5,29,75,35,120,32v1,15,-11,18,-16,28v0,13,13,20,40,20r0,8v-68,77,-128,123,-180,140v-141,45,-253,101,-320,184v-88,109,-145,197,-188,250v-56,42,-84,90,-84,144v-9,7,-11,21,-24,24v0,-11,-9,-16,-28,-16r0,-4v-19,0,-28,11,-28,32v-21,13,-39,-2,-48,-28r-40,20v-56,-6,-84,-17,-84,-32v0,-16,-12,-29,-36,-40v-9,-419,-4,-874,44,-1230v-186,187,-342,280,-468,280v-54,0,-98,-35,-132,-104v-35,-24,-52,-65,-52,-124v-4,0,-7,-29,-8,-88v-3,-105,12,-185,56,-256v27,0,40,-15,40,-44v0,-35,23,-82,68,-132xm278,-352v0,59,13,88,24,88v211,-117,362,-283,440,-520v-35,-16,-56,-20,-92,-20v-52,0,-125,47,-220,140v-22,8,-41,35,-56,80v-64,97,-96,174,-96,232","w":1175},"r":{"d":"540,-928v95,-98,181,-132,280,-132v83,0,124,19,124,56v9,41,24,70,44,88r0,8v-238,120,-414,313,-516,584v-54,143,-76,261,-76,348v-80,37,-133,56,-160,56v0,-31,-33,-62,-100,-92v0,-44,-36,-226,-112,-544v-20,-84,-26,-161,-24,-256v13,-45,59,-72,132,-76v94,-6,161,103,144,236v62,-53,143,-152,264,-276","w":995},"s":{"d":"253,-925v99,-45,168,-60,268,-60v97,0,146,25,160,71v15,50,28,78,28,89v-19,29,-60,56,-124,68v-192,34,-289,56,-289,78v29,46,100,88,217,118v200,51,348,88,435,135v86,46,125,117,125,200v0,139,-122,233,-367,278v-72,13,-139,18,-200,18v-248,0,-371,-45,-371,-86v-68,-82,-48,-191,43,-256v140,67,257,100,350,100v77,0,140,-23,189,-68r0,-4v-76,-42,-216,-79,-414,-132v-204,-54,-303,-134,-303,-221v0,-154,80,-249,253,-328","w":1085},"t":{"d":"416,-1784v69,-95,238,-98,284,24v-66,426,-86,618,-80,952v152,13,280,-11,448,-52r68,-4v61,0,92,29,92,88v0,87,-59,136,-176,156v-55,10,-189,27,-404,44v0,5,-9,8,-28,8r24,264v0,37,-8,71,-24,100v48,36,31,273,0,284v-59,1,-115,-29,-148,20v-72,-29,-108,-145,-108,-348v0,-181,-9,-272,-28,-272v-25,-27,-110,-40,-256,-40v-68,0,-115,-35,-140,-104r0,-12v33,-72,108,-108,224,-108v61,0,92,7,92,12v21,0,35,-17,44,-52v8,-10,29,-8,48,-8v-14,-277,21,-557,68,-952","w":1095},"u":{"d":"266,2v-7,-5,-75,27,-128,40v-57,0,-94,-62,-104,-188v-19,-235,12,-442,120,-588v67,-90,137,-63,208,28v0,39,-23,132,-68,280v-9,30,-13,76,-12,124v61,-30,114,-110,164,-240v64,-166,109,-248,132,-248v78,0,137,1,172,60v23,249,62,452,116,608v45,56,56,89,56,160v0,23,-8,40,-24,52r-52,0v-100,0,-183,-95,-248,-284r-28,-44v-119,130,-198,216,-264,248","w":955},"v":{"d":"784,-990v96,0,145,-5,188,80v-23,74,-41,90,-24,144v-57,47,-111,226,-192,528v-56,208,-147,308,-244,308v-87,0,-172,-118,-296,-332v-131,-225,-216,-352,-216,-404v0,-118,56,-151,212,-156r216,396r36,52v81,-54,143,-198,208,-424v38,-130,83,-192,112,-192","w":1005},"w":{"d":"1004,-1068v31,-25,49,-32,88,-32v65,0,110,43,136,128v-26,248,-7,264,48,632r8,112v0,131,-16,196,-48,196v-46,32,-94,48,-144,48v-98,0,-225,-91,-388,-264v-43,-46,-86,-75,-120,-96v-84,219,-151,349,-200,388v-63,51,-115,76,-156,76v-28,0,-79,-48,-124,-156v-85,-204,-104,-364,-104,-560v0,-148,36,-245,108,-292v25,-7,49,-12,84,-12v58,0,98,48,92,128r-20,280v0,51,9,87,28,108v34,-15,65,-49,84,-104v26,-74,39,-112,48,-112v74,-26,123,-47,148,-64v51,7,125,53,212,144v114,120,177,184,196,184v45,-200,-12,-406,-12,-612v0,-80,12,-120,36,-120","w":1285},"x":{"d":"757,-732v102,-94,267,-85,285,66v-170,188,-253,233,-424,348v77,65,180,146,310,243v-7,31,-7,62,0,94v-51,37,-96,55,-136,55v-69,0,-166,-54,-292,-163r-87,-52v-39,5,-105,48,-195,132v-67,62,-130,94,-191,94v-8,27,-8,37,-25,35v-22,3,-52,-41,-52,-98v0,-53,60,-132,174,-243v44,-44,63,-76,63,-90v-18,-29,-56,-74,-108,-140v-30,-38,-42,-78,-42,-114v0,-58,21,-87,56,-105r87,-45r17,0v45,0,99,65,164,195v22,28,40,42,55,42v31,0,151,-79,341,-254","w":1035},"y":{"d":"764,-1328v81,0,145,-9,180,48v27,503,40,858,40,1064r0,32r44,632v-3,264,-106,442,-312,528v-44,18,-90,24,-136,24v-169,0,-344,-99,-516,-304v-45,-54,-64,-108,-64,-156v31,-32,65,-48,100,-48v27,0,82,32,164,96v9,8,33,13,72,16r192,116v144,53,211,-24,240,-208v52,-333,14,-695,-56,-1056v-46,51,-115,153,-208,304v-85,91,-145,136,-180,136v-41,20,-108,29,-184,28v-43,0,-95,-53,-120,-168v-61,-278,-19,-481,76,-784v40,-126,140,-125,236,-44v1,86,-24,199,-80,424v-19,78,-29,180,-20,276v59,3,88,-39,168,-128v11,0,20,-33,48,-88v139,-275,220,-441,220,-508v11,-39,16,-84,16,-136v31,-27,58,-59,80,-96","w":1024},"z":{"d":"1056,-970v100,-10,160,49,160,120v0,125,-130,276,-400,432v-129,74,-237,131,-312,192r0,4v67,13,235,20,504,40v69,5,124,23,168,36v-10,86,-42,148,-64,144v-281,37,-603,54,-848,-4r-84,8v-105,0,-165,-31,-180,-92v0,-17,20,-64,60,-140v0,-15,56,-44,156,-104r400,-240v63,-46,108,-83,136,-112v-121,11,-309,21,-564,32v-40,-17,-60,-55,-60,-112v0,-79,43,-129,128,-152r108,16v59,0,290,-30,692,-68","w":1215},"{":{"d":"692,-1820v35,59,48,95,48,152v0,35,-85,68,-248,120v-72,23,-104,89,-104,176v0,79,47,185,140,320r16,40v0,37,-19,87,-68,140v-39,42,-89,65,-140,80r0,4v17,19,70,48,148,104v52,38,72,78,72,104v-10,42,-65,138,-140,300v-80,173,-26,296,180,336v88,17,132,33,132,48v0,44,8,130,-28,128v-12,6,-50,8,-96,8v-237,0,-379,-76,-428,-228r-8,-72v0,-75,35,-210,104,-404r8,-56v-94,-50,-170,-99,-228,-148v-39,-51,-52,-82,-52,-140v0,-81,68,-149,204,-204r40,-28v-40,-95,-60,-194,-60,-296v0,-235,76,-395,236,-460v78,-31,180,-1,272,-24","w":755},"|":{"d":"182,-1978v68,63,123,186,136,332r-8,64v49,357,24,782,24,1176v0,263,21,510,64,740v-33,86,-57,138,-72,156v-34,-2,-52,-31,-52,-44r-4,0v-17,45,-43,58,-76,28r-8,8v-24,0,-31,-35,-48,-100v-103,-392,-73,-1096,-72,-1624v0,-186,-16,-370,-36,-552v-11,-105,28,-164,120,-184r32,0","w":435},"}":{"d":"424,-792v-116,-34,-194,-109,-208,-220v8,-23,61,-95,128,-232v61,-125,40,-259,-72,-300v-158,-59,-245,-86,-252,-108v-3,-77,7,-107,52,-168v67,16,122,12,196,12v171,0,307,210,308,468v0,106,-21,207,-64,304v158,71,241,141,240,180v6,12,8,33,8,56v0,97,-84,183,-252,260r-32,24v0,15,36,135,108,360r8,100v9,189,-197,298,-440,296v-77,0,-116,-9,-116,-28v-19,-36,-13,-137,24,-128v184,-49,276,-86,276,-112v16,0,40,-37,40,-112v0,-68,-53,-192,-152,-376v-16,-30,-20,-55,-20,-72v0,-48,74,-106,196,-176v7,-10,20,-14,24,-28","w":765},"~":{"d":"520,-896v71,-78,125,-108,220,-108v47,0,127,39,240,116v71,28,92,38,148,36v11,0,19,20,24,60v-4,53,-11,80,-20,80v-33,-3,-52,29,-40,60v-3,6,-15,3,-24,4v-205,0,-308,-31,-308,-92v-94,-4,-136,74,-216,224v-34,65,-53,76,-116,76v-135,0,-257,-41,-368,-124v-17,-69,-21,-85,-20,-140v2,-79,17,-103,76,-104v30,0,101,25,212,76v28,3,52,9,84,8","w":1196},"\u00c4":{"d":"850,-1724v27,-77,77,-104,148,-104v71,0,153,48,248,144v-4,231,55,440,180,824v65,8,136,-4,204,-4v51,0,76,15,76,44v11,1,16,5,16,12v0,67,-44,113,-132,136r-84,20v114,289,213,489,308,588v66,69,104,129,104,188v0,35,-16,59,-48,72v0,9,-20,17,-60,24r-24,0v-87,0,-185,-148,-320,-432v-61,-127,-136,-263,-200,-420r-124,-8v-360,23,-540,56,-540,100v-20,17,-71,114,-152,292v-59,79,-102,108,-188,108v-57,0,-94,-14,-100,-44v-20,-96,-3,-108,28,-256v0,-13,-67,-30,-200,-52v-40,-19,-60,-41,-60,-64v17,-38,52,-78,112,-96r284,-84v21,-7,53,-45,96,-116v220,-359,299,-506,428,-872xm1006,-1252v-101,160,-180,300,-236,420v-1,3,1,5,4,4v39,0,145,-20,320,-60r56,-4v-47,-181,-84,-290,-112,-328xm849,-1983v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128xm1199,-1983v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128"},"\u00c5":{"d":"850,-1724v27,-77,77,-104,148,-104v71,0,153,48,248,144v-4,231,55,440,180,824v65,8,136,-4,204,-4v51,0,76,15,76,44v11,1,16,5,16,12v0,67,-44,113,-132,136r-84,20v114,289,213,489,308,588v66,69,104,129,104,188v0,35,-16,59,-48,72v0,9,-20,17,-60,24r-24,0v-87,0,-185,-148,-320,-432v-61,-127,-136,-263,-200,-420r-124,-8v-360,23,-540,56,-540,100v-20,17,-71,114,-152,292v-59,79,-102,108,-188,108v-57,0,-94,-14,-100,-44v-20,-96,-3,-108,28,-256v0,-13,-67,-30,-200,-52v-40,-19,-60,-41,-60,-64v17,-38,52,-78,112,-96r284,-84v21,-7,53,-45,96,-116v220,-359,299,-506,428,-872xm1006,-1252v-101,160,-180,300,-236,420v-1,3,1,5,4,4v39,0,145,-20,320,-60r56,-4v-47,-181,-84,-290,-112,-328xm786,-2232v96,-88,158,-120,286,-113v12,0,35,34,86,86v125,126,94,263,4,406v-49,38,-99,53,-170,53v-109,0,-193,-45,-229,-143v-32,-88,-3,-92,23,-252r0,-37xm922,-2071v11,84,49,121,122,117v21,-13,31,-33,31,-61v0,-91,-14,-137,-31,-137v-73,0,-131,12,-122,81"},"\u00c7":{"d":"628,-1632v229,-151,367,-206,520,-196v129,8,188,49,188,132v0,87,-133,143,-384,216v-139,40,-298,152,-460,320v-154,160,-204,289,-204,468v0,195,136,331,412,388v388,80,712,-34,964,-260v42,-37,135,-122,280,-260v129,-122,248,-176,344,-176v3,6,8,9,8,20v0,103,-57,209,-172,320v0,16,-66,99,-208,236v-297,287,-645,424,-1032,424v-385,0,-640,-129,-780,-380v-69,-125,-104,-234,-104,-380v0,-285,200,-590,628,-872xm1028,505v-63,-2,-130,6,-130,-38v0,-15,24,-51,73,-107v3,-14,9,-24,8,-42v-89,-36,-269,-64,-269,-166v0,-24,37,-64,112,-121v26,-35,36,-44,34,-74v0,-5,19,-12,57,-12v51,0,77,5,77,10v-5,21,38,21,61,22v2,103,-27,168,-88,165v-2,51,71,66,215,109v56,17,72,22,72,58v0,68,-39,130,-118,186v-48,7,-83,10,-104,10"},"\u00c9":{"d":"956,-1792v83,-28,221,-39,280,8r0,32v0,147,-168,241,-504,276v-195,20,-292,35,-292,48v-34,93,-47,209,-44,340v316,-80,555,-120,716,-120v120,0,180,12,180,24v-1,35,-2,57,20,76v-33,58,-104,108,-216,140v-79,22,-252,38,-512,76v-54,8,-108,31,-164,52v60,255,116,458,208,648r20,4v85,0,239,-59,468,-164v237,-108,428,-156,568,-156v99,0,148,13,148,24r0,132v0,6,-55,9,-160,32v-294,65,-550,214,-796,392v-107,78,-175,88,-288,88v-102,0,-182,-97,-252,-288v-44,-121,-111,-321,-188,-604v-47,0,-96,-20,-148,-60v-2,-68,26,-116,96,-196v21,-25,11,-40,12,-72r12,-280r4,-4r-84,4v-100,-3,-120,-22,-120,-104v0,-105,95,-178,284,-220v5,0,29,-24,72,-72v7,0,35,-21,84,-64v77,-2,133,31,196,100v92,1,209,-27,400,-92xm814,-2485r88,90v-20,85,-55,136,-104,153v-158,96,-243,173,-256,232v0,18,-47,27,-140,27r-24,3v-21,-26,-28,-45,-28,-78v0,-51,71,-124,208,-223v41,-30,89,-87,148,-165v32,-26,68,-39,108,-39","w":1515},"\u00d1":{"d":"1028,-1938v93,-91,260,-54,272,92v-21,61,-32,108,-32,140v-5,563,-45,1137,32,1656r0,52v0,120,-23,175,-68,180r-80,8v-137,0,-270,-117,-408,-344r-280,-488r-92,-132r-4,0v-37,116,-69,318,-84,608v-7,138,-11,208,-24,208v-35,24,-84,32,-144,32v-45,0,-67,-13,-76,-36v-29,-79,-40,-151,-40,-248v0,-90,33,-315,88,-676v11,-72,5,-216,20,-428v8,-112,36,-185,72,-228r4,4r92,0r60,-4v74,141,167,399,312,760v116,288,208,429,352,572r4,0xm632,-2247v53,-48,96,-66,165,-66v36,0,96,24,181,71v53,16,71,22,112,21v8,0,14,12,18,37v-3,33,-8,49,-15,49v-25,-2,-39,17,-30,36v-2,5,-11,3,-18,3v-155,0,-232,-19,-232,-56v-70,-2,-105,46,-163,136v-26,41,-43,46,-88,46v-101,0,-194,-25,-277,-75v-13,-43,-16,-51,-15,-86v0,-50,17,-62,57,-63v23,0,76,15,160,46v21,2,40,6,63,5","w":1335},"\u00d6":{"d":"368,-1850v102,-18,167,-29,240,-28v255,0,462,290,588,876v70,326,43,678,-120,884v-127,161,-255,208,-444,208v-170,0,-329,-95,-456,-300v-134,-216,-176,-453,-176,-748v0,-317,60,-577,180,-780v61,-65,124,-101,188,-112xm468,-1510v-30,-2,-51,-13,-84,-12v-17,4,-45,60,-76,172v-38,137,-52,269,-52,392v0,409,108,680,308,776v187,90,298,1,384,-204v40,-97,40,-195,40,-312v0,-237,-46,-488,-180,-728v-86,-154,-155,-212,-236,-212v-43,0,-77,43,-104,128xm339,-1993v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128xm689,-1993v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128","w":1255},"\u00dc":{"d":"982,-2038v26,33,63,119,104,260v80,277,116,548,116,812v0,413,-82,720,-268,896v-108,102,-233,140,-352,140v-179,0,-308,-109,-408,-316v-110,-229,-164,-517,-164,-868v0,-259,36,-489,108,-688v7,-5,48,-20,124,-20v69,0,117,35,104,100r-44,224v-15,115,-24,229,-24,344v0,507,101,830,304,968r48,12v67,0,145,-63,212,-200v67,-137,84,-332,84,-556v0,-408,-54,-728,-148,-964v-27,-68,-3,-144,84,-144r120,0xm209,-1993v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128xm559,-1993v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128","w":1235},"\u00e1":{"d":"712,-1038v103,-77,256,-90,256,80v0,49,23,199,84,448v35,143,102,257,172,356v55,78,68,112,68,180v0,32,-20,48,-60,48v-39,24,-65,36,-76,36v-74,-26,-144,-83,-200,-176v-37,-63,-89,-190,-164,-376r-24,-32v-98,153,-180,271,-252,348v-87,93,-189,136,-300,136v-108,0,-179,-56,-212,-168r-4,-68v0,-151,86,-350,292,-560v109,-111,261,-183,420,-252xm284,-266v2,2,3,5,8,4v65,0,121,-62,196,-168v111,-156,180,-265,180,-348v-2,-3,-6,-6,-12,-4v-46,13,-137,80,-256,212v-83,91,-116,197,-116,304xm794,-1672r88,120v-20,113,-55,181,-104,204v-158,127,-256,229,-256,308v0,24,-47,36,-140,36r-24,4v-22,-34,-28,-61,-28,-104v0,-68,72,-164,208,-296v42,-41,89,-117,148,-220v32,-35,68,-52,108,-52","w":1295},"\u00e0":{"d":"712,-1038v103,-77,256,-90,256,80v0,49,23,199,84,448v35,143,102,257,172,356v55,78,68,112,68,180v0,32,-20,48,-60,48v-39,24,-65,36,-76,36v-74,-26,-144,-83,-200,-176v-37,-63,-89,-190,-164,-376r-24,-32v-98,153,-180,271,-252,348v-87,93,-189,136,-300,136v-108,0,-179,-56,-212,-168r-4,-68v0,-151,86,-350,292,-560v109,-111,261,-183,420,-252xm284,-266v2,2,3,5,8,4v65,0,121,-62,196,-168v111,-156,180,-265,180,-348v-2,-3,-6,-6,-12,-4v-46,13,-137,80,-256,212v-83,91,-116,197,-116,304xm566,-1666v59,78,107,135,148,165v137,99,208,172,208,223v0,34,-7,52,-28,78r-24,-3v-93,0,-140,-9,-140,-27v-13,-59,-98,-136,-256,-232v-49,-17,-84,-68,-104,-153r88,-90v40,0,76,13,108,39","w":1295},"\u00e2":{"d":"712,-1038v103,-77,256,-90,256,80v0,49,23,199,84,448v35,143,102,257,172,356v55,78,68,112,68,180v0,32,-20,48,-60,48v-39,24,-65,36,-76,36v-74,-26,-144,-83,-200,-176v-37,-63,-89,-190,-164,-376r-24,-32v-98,153,-180,271,-252,348v-87,93,-189,136,-300,136v-108,0,-179,-56,-212,-168r-4,-68v0,-151,86,-350,292,-560v109,-111,261,-183,420,-252xm284,-266v2,2,3,5,8,4v65,0,121,-62,196,-168v111,-156,180,-265,180,-348v-2,-3,-6,-6,-12,-4v-46,13,-137,80,-256,212v-83,91,-116,197,-116,304xm524,-1640v36,-38,65,-45,125,-42v39,73,117,198,243,371v32,43,18,58,6,99v1,10,10,22,4,29v-9,-1,-7,-10,-26,-13r-51,16v-17,0,-60,-33,-118,-106v-42,-54,-75,-102,-109,-137v-126,102,-205,183,-205,246v0,19,-37,29,-111,29r-20,3v-17,-27,-22,-49,-22,-83v0,-55,57,-132,166,-237v34,-33,71,-93,118,-175","w":1295},"\u00e4":{"d":"712,-1038v103,-77,256,-90,256,80v0,49,23,199,84,448v35,143,102,257,172,356v55,78,68,112,68,180v0,32,-20,48,-60,48v-39,24,-65,36,-76,36v-74,-26,-144,-83,-200,-176v-37,-63,-89,-190,-164,-376r-24,-32v-98,153,-180,271,-252,348v-87,93,-189,136,-300,136v-108,0,-179,-56,-212,-168r-4,-68v0,-151,86,-350,292,-560v109,-111,261,-183,420,-252xm284,-266v2,2,3,5,8,4v65,0,121,-62,196,-168v111,-156,180,-265,180,-348v-2,-3,-6,-6,-12,-4v-46,13,-137,80,-256,212v-83,91,-116,197,-116,304xm439,-1203v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128xm789,-1203v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128","w":1295},"\u00e3":{"d":"742,-1038v103,-77,256,-90,256,80v0,49,23,199,84,448v35,143,102,257,172,356v55,78,68,112,68,180v0,32,-20,48,-60,48v-39,24,-65,36,-76,36v-74,-26,-144,-83,-200,-176v-37,-63,-89,-190,-164,-376r-24,-32v-98,153,-180,271,-252,348v-87,93,-189,136,-300,136v-108,0,-179,-56,-212,-168r-4,-68v0,-151,86,-350,292,-560v109,-111,261,-183,420,-252xm314,-266v2,2,3,5,8,4v65,0,121,-62,196,-168v111,-156,180,-265,180,-348v-2,-3,-6,-6,-12,-4v-46,13,-137,80,-256,212v-83,91,-116,197,-116,304xm622,-1417v53,-48,96,-66,165,-66v36,0,96,24,181,71v53,16,71,22,112,21v8,0,14,12,18,37v-3,33,-8,49,-15,49v-25,-2,-39,17,-30,36v-2,5,-11,3,-18,3v-155,0,-232,-19,-232,-56v-70,-2,-105,46,-163,136v-26,41,-43,46,-88,46v-101,0,-194,-25,-277,-75v-13,-43,-16,-51,-15,-86v0,-50,17,-62,57,-63v23,0,76,15,160,46v21,2,40,6,63,5","w":1295},"\u00e5":{"d":"712,-1038v103,-77,256,-90,256,80v0,49,23,199,84,448v35,143,102,257,172,356v55,78,68,112,68,180v0,32,-20,48,-60,48v-39,24,-65,36,-76,36v-74,-26,-144,-83,-200,-176v-37,-63,-89,-190,-164,-376r-24,-32v-98,153,-180,271,-252,348v-87,93,-189,136,-300,136v-108,0,-179,-56,-212,-168r-4,-68v0,-151,86,-350,292,-560v109,-111,261,-183,420,-252xm284,-266v2,2,3,5,8,4v65,0,121,-62,196,-168v111,-156,180,-265,180,-348v-2,-3,-6,-6,-12,-4v-46,13,-137,80,-256,212v-83,91,-116,197,-116,304xm416,-1612v96,-88,158,-120,286,-113v12,0,35,34,86,86v125,126,94,263,4,406v-49,38,-99,53,-170,53v-109,0,-193,-45,-229,-143v-32,-88,-3,-92,23,-252r0,-37xm552,-1451v11,84,49,121,122,117v21,-13,31,-33,31,-61v0,-91,-14,-137,-31,-137v-73,0,-131,12,-122,81","w":1295},"\u00e7":{"d":"252,-884v109,-88,238,-89,356,-20v-5,11,-8,25,-8,44v7,25,23,41,20,76v-23,47,-72,84,-148,108v-78,25,-132,55,-152,96v-36,75,-44,112,-44,176v0,94,71,140,192,140v89,0,243,-51,464,-148v100,-44,148,-61,192,-60v45,46,69,81,72,104v-3,14,-43,58,-120,132v-20,37,-40,56,-60,56v-247,147,-457,220,-632,220v-188,0,-313,-89,-376,-268v-35,-290,36,-488,244,-656xm568,505v-63,-2,-130,6,-130,-38v0,-15,24,-51,73,-107v3,-14,9,-24,8,-42v-89,-36,-269,-64,-269,-166v0,-24,37,-64,112,-121v26,-35,36,-44,34,-74v0,-5,19,-12,57,-12v51,0,77,5,77,10v-5,21,38,21,61,22v2,103,-27,168,-88,165v-2,51,71,66,215,109v56,17,72,22,72,58v0,68,-39,130,-118,186v-48,7,-83,10,-104,10","w":1185},"\u00e9":{"d":"128,-988v270,-139,455,-83,584,196v25,54,24,101,24,132v0,134,-104,242,-312,324r0,4v55,93,127,140,216,140v120,0,241,-104,388,-292v81,-103,140,-142,200,-140v24,15,-13,80,20,80v17,0,29,-15,36,-44v4,0,10,-2,8,4v0,45,-43,118,-120,224v-15,21,-21,49,-28,80v-37,7,-56,22,-56,44v-73,122,-183,213,-332,260v-59,19,-96,16,-156,16v-195,0,-389,-141,-580,-424r-20,-356v0,-132,47,-206,128,-248xm248,-672v0,80,23,136,68,168v31,0,78,-24,140,-72v40,-111,5,-214,-92,-248v-38,-13,-98,-2,-92,36v-16,27,-24,66,-24,116xm534,-1605r88,90v-20,85,-55,136,-104,153v-158,96,-243,173,-256,232v0,18,-47,27,-140,27r-24,3v-21,-26,-28,-45,-28,-78v0,-51,71,-124,208,-223v41,-30,89,-87,148,-165v32,-26,68,-39,108,-39","w":1025},"\u00e8":{"d":"128,-988v270,-139,455,-83,584,196v25,54,24,101,24,132v0,134,-104,242,-312,324r0,4v55,93,127,140,216,140v120,0,241,-104,388,-292v81,-103,140,-142,200,-140v24,15,-13,80,20,80v17,0,29,-15,36,-44v4,0,10,-2,8,4v0,45,-43,118,-120,224v-15,21,-21,49,-28,80v-37,7,-56,22,-56,44v-73,122,-183,213,-332,260v-59,19,-96,16,-156,16v-195,0,-389,-141,-580,-424r-20,-356v0,-132,47,-206,128,-248xm248,-672v0,80,23,136,68,168v31,0,78,-24,140,-72v40,-111,5,-214,-92,-248v-38,-13,-98,-2,-92,36v-16,27,-24,66,-24,116xm276,-1576v59,78,107,135,148,165v137,99,208,172,208,223v0,34,-7,52,-28,78r-24,-3v-93,0,-140,-9,-140,-27v-13,-59,-98,-136,-256,-232v-49,-17,-84,-68,-104,-153r88,-90v40,0,76,13,108,39","w":1025},"\u00ea":{"d":"98,-988v270,-139,455,-83,584,196v25,54,24,101,24,132v0,134,-104,242,-312,324r0,4v55,93,127,140,216,140v120,0,241,-104,388,-292v81,-103,140,-142,200,-140v24,15,-13,80,20,80v17,0,29,-15,36,-44v4,0,10,-2,8,4v0,45,-43,118,-120,224v-15,21,-21,49,-28,80v-37,7,-56,22,-56,44v-73,122,-183,213,-332,260v-59,19,-96,16,-156,16v-195,0,-389,-141,-580,-424r-20,-356v0,-132,47,-206,128,-248xm218,-672v0,80,23,136,68,168v31,0,78,-24,140,-72v40,-111,5,-214,-92,-248v-38,-13,-98,-2,-92,36v-16,27,-24,66,-24,116xm294,-1620v36,-38,65,-45,125,-42v39,73,117,198,243,371v32,43,18,58,6,99v1,10,10,22,4,29v-9,-1,-7,-10,-26,-13r-51,16v-17,0,-60,-33,-118,-106v-42,-54,-75,-102,-109,-137v-126,102,-205,183,-205,246v0,19,-37,29,-111,29r-20,3v-17,-27,-22,-49,-22,-83v0,-55,57,-132,166,-237v34,-33,71,-93,118,-175","w":1025},"\u00eb":{"d":"128,-988v270,-139,455,-83,584,196v25,54,24,101,24,132v0,134,-104,242,-312,324r0,4v55,93,127,140,216,140v120,0,241,-104,388,-292v81,-103,140,-142,200,-140v24,15,-13,80,20,80v17,0,29,-15,36,-44v4,0,10,-2,8,4v0,45,-43,118,-120,224v-15,21,-21,49,-28,80v-37,7,-56,22,-56,44v-73,122,-183,213,-332,260v-59,19,-96,16,-156,16v-195,0,-389,-141,-580,-424r-20,-356v0,-132,47,-206,128,-248xm248,-672v0,80,23,136,68,168v31,0,78,-24,140,-72v40,-111,5,-214,-92,-248v-38,-13,-98,-2,-92,36v-16,27,-24,66,-24,116xm159,-1163v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128xm509,-1163v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128","w":1025},"\u00ed":{"d":"174,-1116v53,0,80,13,80,40v66,328,47,729,40,1108v-21,16,-53,28,-96,36v-13,10,-19,26,-36,32v-23,0,-45,-17,-64,-52v0,16,-3,24,-8,24v-40,-35,-69,-113,-60,-232r36,-492v-5,-70,-8,-169,-8,-296v0,-112,39,-168,116,-168xm384,-1645r88,90v-20,85,-55,136,-104,153v-158,96,-243,173,-256,232v0,18,-47,27,-140,27r-24,3v-21,-26,-28,-45,-28,-78v0,-51,71,-124,208,-223v41,-30,89,-87,148,-165v32,-26,68,-39,108,-39","w":385},"\u00ec":{"d":"174,-1116v53,0,80,13,80,40v66,328,47,729,40,1108v-21,16,-53,28,-96,36v-13,10,-19,26,-36,32v-23,0,-45,-17,-64,-52v0,16,-3,24,-8,24v-40,-35,-69,-113,-60,-232r36,-492v-5,-70,-8,-169,-8,-296v0,-112,39,-168,116,-168xm116,-1606v59,78,107,135,148,165v137,99,208,172,208,223v0,34,-7,52,-28,78r-24,-3v-93,0,-140,-9,-140,-27v-13,-59,-98,-136,-256,-232v-49,-17,-84,-68,-104,-153r88,-90v40,0,76,13,108,39","w":385},"\u00ee":{"d":"224,-1116v53,0,80,13,80,40v66,328,47,729,40,1108v-21,16,-53,28,-96,36v-13,10,-19,26,-36,32v-23,0,-45,-17,-64,-52v0,16,-3,24,-8,24v-40,-35,-69,-113,-60,-232r36,-492v-5,-70,-8,-169,-8,-296v0,-112,39,-168,116,-168xm164,-1630v36,-38,65,-45,125,-42v39,73,117,198,243,371v32,43,18,58,6,99v1,10,10,22,4,29v-9,-1,-7,-10,-26,-13r-51,16v-17,0,-60,-33,-118,-106v-42,-54,-75,-102,-109,-137v-126,102,-205,183,-205,246v0,19,-37,29,-111,29r-19,3v-18,-27,-23,-49,-23,-83v0,-55,57,-132,166,-237v34,-33,71,-93,118,-175","w":480},"\u00ef":{"d":"174,-1116v53,0,80,13,80,40v66,328,47,729,40,1108v-21,16,-53,28,-96,36v-13,10,-19,26,-36,32v-23,0,-45,-17,-64,-52v0,16,-3,24,-8,24v-40,-35,-69,-113,-60,-232r36,-492v-5,-70,-8,-169,-8,-296v0,-112,39,-168,116,-168xm39,-1243v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,102,-111,128xm389,-1243v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128","w":385},"\u00f1":{"d":"694,-1166v85,22,128,37,128,44v39,90,77,190,96,304v63,379,99,625,128,736v7,0,15,25,20,76v5,55,-31,76,-96,76v-85,0,-128,-16,-128,-48v-105,-209,-132,-555,-184,-828r-4,0v-93,115,-197,339,-332,664v-46,112,-82,163,-88,164v-12,-36,-146,14,-136,-52r-48,-84v37,-134,56,-369,56,-704v57,-33,86,-53,88,-60v0,-13,5,-20,16,-20v100,0,148,29,148,44v0,13,-17,30,-8,40r4,0v51,-48,94,-117,144,-196v68,-107,139,-156,196,-156xm462,-1557v53,-48,96,-66,165,-66v36,0,96,24,181,71v53,16,71,22,112,21v8,0,14,12,18,37v-3,33,-8,49,-15,49v-25,-2,-39,17,-30,36v-2,5,-11,3,-18,3v-155,0,-232,-19,-232,-56v-70,-2,-105,46,-163,136v-26,41,-43,46,-88,46v-101,0,-194,-25,-277,-75v-13,-43,-16,-51,-15,-86v0,-50,17,-62,57,-63v23,0,76,15,160,46v21,2,40,6,63,5","w":1035},"\u00f3":{"d":"462,-865v190,0,312,189,312,435v0,190,-64,355,-216,459v-224,153,-447,75,-527,-201v-48,-166,-16,-359,32,-509v7,-10,40,-28,99,-53v12,-9,37,-38,74,-89v43,-28,119,-42,226,-42xm339,-151v98,-39,180,-166,180,-304v0,-80,-29,-147,-88,-201v-44,0,-82,29,-121,84v-17,23,-31,34,-38,36v7,71,-4,148,-4,222v0,109,31,163,71,163xm574,-1505r88,90v-20,85,-55,136,-104,153v-158,96,-243,173,-256,232v0,18,-47,27,-140,27r-24,3v-21,-26,-28,-45,-28,-78v0,-51,71,-124,208,-223v41,-30,89,-87,148,-165v32,-26,68,-39,108,-39","w":795},"\u00f2":{"d":"532,-865v190,0,312,189,312,435v0,190,-64,355,-216,459v-224,153,-447,75,-527,-201v-48,-166,-16,-359,32,-509v7,-10,40,-28,99,-53v12,-9,37,-38,74,-89v43,-28,119,-42,226,-42xm409,-151v98,-39,180,-166,180,-304v0,-80,-29,-147,-88,-201v-44,0,-82,29,-121,84v-17,23,-31,34,-38,36v7,71,-4,148,-4,222v0,109,31,163,71,163xm376,-1466v59,78,107,135,148,165v137,99,208,172,208,223v0,34,-7,52,-28,78r-24,-3v-93,0,-140,-9,-140,-27v-13,-59,-98,-136,-256,-232v-49,-17,-84,-68,-104,-153r88,-90v40,0,76,13,108,39","w":795},"\u00f4":{"d":"462,-865v190,0,312,189,312,435v0,190,-64,355,-216,459v-224,153,-447,75,-527,-201v-48,-166,-16,-359,32,-509v7,-10,40,-28,99,-53v12,-9,37,-38,74,-89v43,-28,119,-42,226,-42xm339,-151v98,-39,180,-166,180,-304v0,-80,-29,-147,-88,-201v-44,0,-82,29,-121,84v-17,23,-31,34,-38,36v7,71,-4,148,-4,222v0,109,31,163,71,163xm324,-1500v36,-38,65,-45,125,-42v39,73,117,198,243,371v32,43,18,58,6,99v1,10,10,22,4,29v-9,-1,-7,-10,-26,-13r-51,16v-17,0,-60,-33,-118,-106v-42,-54,-75,-102,-109,-137v-126,102,-205,183,-205,246v0,19,-37,29,-111,29r-20,3v-17,-27,-22,-49,-22,-83v0,-55,57,-132,166,-237v34,-33,71,-93,118,-175","w":795},"\u00f6":{"d":"462,-865v190,0,312,189,312,435v0,190,-64,355,-216,459v-224,153,-447,75,-527,-201v-48,-166,-16,-359,32,-509v7,-10,40,-28,99,-53v12,-9,37,-38,74,-89v43,-28,119,-42,226,-42xm339,-151v98,-39,180,-166,180,-304v0,-80,-29,-147,-88,-201v-44,0,-82,29,-121,84v-17,23,-31,34,-38,36v7,71,-4,148,-4,222v0,109,31,163,71,163xm199,-983v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128xm549,-983v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128","w":795},"\u00f5":{"d":"462,-865v190,0,312,189,312,435v0,190,-64,355,-216,459v-224,153,-447,75,-527,-201v-48,-166,-16,-359,32,-509v7,-10,40,-28,99,-53v12,-9,37,-38,74,-89v43,-28,119,-42,226,-42xm339,-151v98,-39,180,-166,180,-304v0,-80,-29,-147,-88,-201v-44,0,-82,29,-121,84v-17,23,-31,34,-38,36v7,71,-4,148,-4,222v0,109,31,163,71,163xm332,-1277v53,-48,96,-66,165,-66v36,0,96,24,181,71v53,16,71,22,112,21v8,0,14,12,18,37v-3,33,-8,49,-15,49v-25,-2,-39,17,-30,36v-2,5,-11,3,-18,3v-155,0,-232,-19,-232,-56v-70,-2,-105,46,-163,136v-26,41,-43,46,-88,46v-101,0,-193,-25,-276,-75v-14,-43,-17,-51,-16,-86v0,-50,17,-62,57,-63v23,0,76,15,160,46v21,2,40,6,63,5","w":795},"\u00fa":{"d":"266,2v-7,-5,-75,27,-128,40v-57,0,-94,-62,-104,-188v-19,-235,12,-442,120,-588v67,-90,137,-63,208,28v0,39,-23,132,-68,280v-9,30,-13,76,-12,124v61,-30,114,-110,164,-240v64,-166,109,-248,132,-248v78,0,137,1,172,60v23,249,62,452,116,608v45,56,56,89,56,160v0,23,-8,40,-24,52r-52,0v-100,0,-183,-95,-248,-284r-28,-44v-119,130,-198,216,-264,248xm346,-1426v59,78,107,135,148,165v137,99,208,172,208,223v0,34,-7,52,-28,78r-24,-3v-93,0,-140,-9,-140,-27v-13,-59,-98,-136,-256,-232v-49,-17,-84,-68,-104,-153r88,-90v40,0,76,13,108,39","w":955},"\u00f9":{"d":"266,2v-7,-5,-75,27,-128,40v-57,0,-94,-62,-104,-188v-19,-235,12,-442,120,-588v67,-90,137,-63,208,28v0,39,-23,132,-68,280v-9,30,-13,76,-12,124v61,-30,114,-110,164,-240v64,-166,109,-248,132,-248v78,0,137,1,172,60v23,249,62,452,116,608v45,56,56,89,56,160v0,23,-8,40,-24,52r-52,0v-100,0,-183,-95,-248,-284r-28,-44v-119,130,-198,216,-264,248xm624,-1465r88,90v-20,85,-55,136,-104,153v-158,96,-243,173,-256,232v0,18,-47,27,-140,27r-24,3v-21,-26,-28,-45,-28,-78v0,-51,71,-124,208,-223v41,-30,89,-87,148,-165v32,-26,68,-39,108,-39","w":955},"\u00fb":{"d":"276,2v-7,-5,-75,27,-128,40v-57,0,-94,-62,-104,-188v-19,-235,12,-442,120,-588v67,-90,137,-63,208,28v0,39,-23,132,-68,280v-9,30,-13,76,-12,124v61,-30,114,-110,164,-240v64,-166,109,-248,132,-248v78,0,137,1,172,60v23,249,62,452,116,608v45,56,56,89,56,160v0,23,-8,40,-24,52r-52,0v-100,0,-183,-95,-248,-284r-28,-44v-119,130,-198,216,-264,248xm386,-1560v44,-47,81,-56,156,-52v48,91,146,248,304,464v40,55,23,72,8,124v1,12,12,28,4,36v-9,-2,-8,-11,-32,-16r-64,20v-21,0,-76,-40,-148,-132v-53,-67,-93,-129,-136,-172v-158,127,-256,229,-256,308v0,24,-47,36,-140,36r-24,4v-22,-34,-28,-61,-28,-104v0,-68,72,-164,208,-296v42,-41,89,-117,148,-220","w":955},"\u00fc":{"d":"266,2v-7,-5,-75,27,-128,40v-57,0,-94,-62,-104,-188v-19,-235,12,-442,120,-588v67,-90,137,-63,208,28v0,39,-23,132,-68,280v-9,30,-13,76,-12,124v61,-30,114,-110,164,-240v64,-166,109,-248,132,-248v78,0,137,1,172,60v23,249,62,452,116,608v45,56,56,89,56,160v0,23,-8,40,-24,52r-52,0v-100,0,-183,-95,-248,-284r-28,-44v-119,130,-198,216,-264,248xm279,-973v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128xm629,-973v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128","w":955},"\u00a2":{"d":"740,-1232v91,-16,152,9,146,116r-11,207r82,-4v101,0,166,22,197,65v11,45,-22,77,-85,108v-42,21,-111,24,-200,24r-4,85r0,105v0,122,9,183,27,183v234,12,281,-54,642,-54v14,0,23,21,27,64v0,5,-16,21,-48,48r7,17v-171,92,-221,89,-370,112v-17,29,-19,33,-47,27r-38,7r-3,-17v-44,28,-92,24,-156,24v-23,101,34,224,-24,305v-104,-9,-156,-21,-156,-38v-54,-30,-81,-118,-81,-264v0,-39,-14,-37,-78,-51v-241,-53,-401,-105,-472,-163v-66,-54,-95,-95,-95,-112v0,-55,26,-129,95,-210v73,-86,214,-146,407,-193r126,-38v-2,-2,-5,-2,-4,-7v0,-63,19,-163,58,-302v38,3,52,-4,58,-44xm268,-516r0,7v188,91,219,95,346,115v9,-91,-2,-277,-3,-251v-157,0,-271,43,-343,129","w":1545},"\u00a3":{"d":"104,-384v-12,-41,-44,-64,-80,-84v1,-12,8,-18,12,-28r-12,-20v123,-99,241,-148,356,-148v123,0,177,-47,172,-128v-229,29,-366,44,-412,44r-60,0r-80,-100v0,-36,35,-81,108,-128v44,-29,177,-51,388,-100v90,-21,132,-56,132,-80r76,-240v26,-192,51,-288,76,-288v43,-53,89,-72,164,-72v63,0,105,58,104,152v0,49,-40,148,-108,300v-18,40,-20,71,-20,100r596,-108v78,-4,108,23,108,100v0,124,-126,201,-376,236v-180,25,-304,58,-376,84v-40,14,-47,63,-44,120v357,-67,567,-100,632,-100v19,27,28,61,28,100v0,109,-119,179,-356,216r-304,48v0,47,29,99,88,156v68,37,131,52,212,52v180,0,376,-42,556,-168v128,-89,176,-156,232,-152v26,2,34,2,32,20v-4,55,-21,100,24,128v-93,122,-196,209,-304,272v-225,130,-435,200,-636,200v-233,0,-397,-140,-492,-420v-83,0,-228,12,-436,36","w":1945},"\u00a7":{"w":1139},"\u2022":{"d":"43,-882v96,-88,158,-120,286,-113v12,0,35,34,86,86v125,126,94,263,4,406v-49,38,-99,53,-170,53v-109,0,-193,-45,-229,-143v-32,-88,-3,-92,23,-252r0,-37xm179,-731v11,84,49,121,122,117v21,-13,31,-33,31,-61v0,-91,-14,-137,-31,-137v-73,0,-131,12,-122,81","w":505},"\u00b6":{"w":1100},"\u00df":{"w":1251},"\u00ae":{"d":"376,-1456v127,-27,280,-50,456,-49v275,0,498,138,673,413v120,189,171,323,171,508v0,127,-42,250,-134,364v-100,124,-402,220,-667,220v-231,0,-437,-65,-606,-208v-189,-160,-269,-340,-269,-581v0,-216,58,-407,193,-557v68,-75,136,-100,183,-110xm382,-1205v-95,123,-143,262,-143,437v0,223,106,405,333,517v123,61,217,67,346,67v137,0,265,-39,388,-113v82,-49,162,-191,162,-345v0,-161,-74,-330,-226,-505v-106,-122,-240,-181,-398,-181v-247,0,-399,42,-462,123xm756,-567v-3,29,25,77,25,162v0,43,-24,64,-73,64v-55,-35,-63,-167,-83,-246v-49,-1,-133,9,-133,-34v0,-42,41,-66,107,-89v-12,-47,-14,-199,-13,-300v-50,-5,-136,35,-136,-31v0,-37,59,-61,159,-66v14,-53,120,-61,118,7v42,0,181,31,414,103v49,15,70,33,70,58v0,96,-67,169,-199,223v-52,21,-93,44,-125,63v77,37,205,93,387,161v109,40,182,65,216,82v6,50,-44,73,-105,73v-75,0,-225,-64,-458,-175v-89,-43,-149,-55,-171,-55xm722,-713v188,-49,290,-73,363,-187v-240,-78,-218,-82,-382,-95v-11,91,-5,196,19,282","w":1665},"\u00a9":{"d":"376,-1456v127,-27,280,-50,456,-49v275,0,498,138,673,413v120,189,171,323,171,508v0,127,-42,250,-134,364v-100,124,-402,220,-667,220v-231,0,-437,-65,-606,-208v-189,-160,-269,-340,-269,-581v0,-216,58,-407,193,-557v68,-75,136,-100,183,-110xm382,-1205v-95,123,-143,262,-143,437v0,223,106,405,333,517v123,61,217,67,346,67v137,0,265,-39,388,-113v82,-49,162,-191,162,-345v0,-161,-74,-330,-226,-505v-106,-122,-240,-181,-398,-181v-247,0,-399,42,-462,123xm691,-1013v63,-44,131,-43,196,-3v-11,22,2,42,9,62v0,24,-30,50,-91,73v-59,21,-89,42,-89,67v-42,69,-32,172,76,172v55,0,138,-24,248,-71r31,0v81,0,122,13,122,40v-22,55,-103,109,-242,165v-180,72,-351,62,-413,-110v-25,-171,23,-303,153,-395","w":1665},"\u2122":{"d":"891,-1645v17,-2,33,-4,52,-3v15,17,31,48,43,93v14,54,41,133,77,237v52,150,94,257,138,315v20,27,0,59,-34,59v-35,0,-61,-40,-93,-112v-23,-52,-90,-233,-148,-381v-13,50,-24,133,-45,246v-21,110,-38,181,-38,215v-9,3,-13,8,-13,17v0,3,-13,9,-41,13v-17,2,-25,-1,-30,-16v-35,-125,-43,-354,-108,-452v-22,27,-43,267,-79,325v-12,11,-22,14,-41,14v-35,0,-26,-35,-30,-58v4,-62,2,-79,-8,-148v-4,-24,20,-40,44,-33v9,-19,21,-70,44,-152v17,-61,45,-90,76,-90v39,0,69,53,99,157v8,28,22,89,42,173v37,-81,64,-375,93,-419xm437,-1543v41,-6,103,-9,104,31v1,29,-62,51,-180,63r-62,0v-21,146,2,269,2,421v0,40,-48,34,-68,38v-36,-111,-33,-298,-29,-445v-52,-17,-134,-1,-200,-4v-40,-2,-54,-2,-54,-24v0,-17,11,-32,32,-46v131,-24,301,-12,455,-34","w":1040},"\u00b4":{"d":"494,-1972r88,120v-20,113,-55,181,-104,204v-158,127,-256,229,-256,308v0,24,-47,36,-140,36r-24,4v-22,-34,-28,-61,-28,-104v0,-68,72,-164,208,-296v42,-41,89,-117,148,-220v32,-35,68,-52,108,-52","w":682},"\u00c6":{"d":"860,-1724v27,-77,77,-104,148,-104v71,0,153,48,248,144v-4,231,55,440,180,824r44,4r-4,644v-69,-123,-136,-263,-200,-420r-124,-8v-360,23,-540,56,-540,100v-20,17,-58,121,-152,292v-84,152,-174,218,-234,218v-61,0,-120,-9,-124,-44r-8,-64v47,-101,82,-201,106,-302v0,-13,-67,-30,-200,-52v-40,-19,-60,-41,-60,-64v17,-38,52,-78,112,-96r284,-84v21,-7,53,-45,96,-116v220,-359,299,-506,428,-872xm1016,-1252v-101,160,-180,300,-236,420v-1,3,1,5,4,4v39,0,145,-20,320,-60r56,-4v-47,-181,-84,-290,-112,-328xm2066,-1822v83,-28,221,-39,280,8r0,32v0,147,-168,241,-504,276v-195,20,-292,35,-292,48v-34,93,-47,209,-44,340v316,-80,555,-120,716,-120v120,0,180,12,180,24v-1,35,-2,57,20,76v-33,58,-104,108,-216,140v-79,22,-252,38,-512,76v-54,8,-108,31,-164,52v60,255,116,458,208,648r20,4v85,0,239,-59,468,-164v237,-108,428,-156,568,-156v99,0,148,13,148,24r0,132v0,6,-55,9,-160,32v-294,65,-550,214,-796,392v-107,78,-175,88,-288,88v-102,0,-182,-97,-252,-288v-44,-121,-111,-321,-188,-604v-47,0,-96,-20,-148,-60v-4,-59,26,-70,96,-26v12,-174,9,-165,12,-242r12,-280r4,-4r-84,4v-100,-3,-120,-22,-120,-104v0,-105,95,-178,284,-220v5,0,29,-24,72,-72v7,0,35,-21,84,-64v77,-2,133,31,196,100v92,1,209,-27,400,-92","w":2650},"\u00d8":{"d":"368,-1850v102,-18,167,-29,240,-28v255,0,462,290,588,876v70,326,43,678,-120,884v-127,161,-255,208,-444,208v-170,0,-329,-95,-456,-300v-134,-216,-176,-453,-176,-748v0,-317,60,-577,180,-780v61,-65,124,-101,188,-112xm468,-1510v-30,-2,-51,-13,-84,-12v-17,4,-45,60,-76,172v-38,137,-52,269,-52,392v0,409,108,680,308,776v187,90,298,1,384,-204v40,-97,40,-195,40,-312v0,-237,-46,-488,-180,-728v-86,-154,-155,-212,-236,-212v-43,0,-77,43,-104,128xm1124,-1700v53,-90,129,-111,186,-20v0,85,-30,186,-90,304v-45,49,-94,114,-138,200v-12,24,-218,296,-608,824v-132,178,-217,333,-276,452v-75,41,-98,61,-120,60v-19,-10,-11,-47,-6,-68r-36,8v-14,-8,-26,-26,-18,-40v-9,0,-19,-9,-18,-24v34,-122,138,-340,354,-624r509,-668v135,-188,215,-327,261,-404","w":1255},"\u00a5":{"d":"784,-1910v96,0,145,-5,188,80v-23,74,-41,90,-24,144v-57,47,-111,226,-192,528v-56,208,-147,308,-244,308v-87,0,-172,-118,-296,-332v-131,-225,-216,-352,-216,-404v0,-118,56,-151,212,-156r216,396r36,52v81,-54,143,-198,208,-424v38,-130,83,-192,112,-192xm78,-844v45,-18,123,-20,196,-20v127,0,371,15,732,44v49,81,20,164,-56,220r-640,-32r-232,12v-64,-1,-88,-24,-88,-80v0,-53,29,-101,88,-144xm78,-494v45,-18,123,-20,196,-20v127,0,371,15,732,44v49,81,20,164,-56,220r-640,-32r-232,12v-64,-1,-88,-24,-88,-80v0,-53,29,-101,88,-144xm378,10v-18,-45,-20,-123,-20,-196v0,-127,15,-371,44,-732v81,-49,164,-20,220,56r-32,640r12,232v-1,64,-24,88,-80,88v-53,0,-101,-29,-144,-88","w":1005},"\u00e6":{"d":"712,-963v98,-59,256,-78,256,65v0,39,23,161,84,362v35,116,101,207,172,288v54,62,68,89,68,145v0,26,-20,39,-60,39v-39,19,-65,29,-76,29v-74,-21,-144,-66,-200,-142v-37,-50,-89,-154,-164,-304r-24,-26v-98,123,-180,219,-252,281v-87,75,-189,110,-300,110v-108,0,-179,-45,-212,-136v-1,-18,-4,-35,-4,-55v0,-122,88,-284,292,-452v111,-92,261,-148,420,-204xm264,-328v70,13,128,-49,204,-135v113,-128,180,-218,180,-286v-2,-3,-7,-3,-12,-3v-46,11,-136,65,-256,174v-82,74,-116,162,-116,250xm918,-1018v270,-139,455,-83,584,196v25,54,24,101,24,132v0,134,-104,242,-312,324r0,4v55,93,127,140,216,140v120,0,241,-104,388,-292v81,-103,140,-142,200,-140v24,15,-13,80,20,80v17,0,29,-15,36,-44v4,0,10,-2,8,4v0,45,-43,118,-120,224v-15,21,-21,49,-28,80v-37,7,-56,22,-56,44v-73,122,-183,213,-332,260v-59,19,-96,16,-156,16v-195,0,-389,-141,-580,-424r-20,-356v0,-132,47,-206,128,-248xm1038,-702v0,80,23,136,68,168v31,0,78,-24,140,-72v40,-111,5,-214,-92,-248v-38,-13,-98,-2,-92,36v-16,27,-24,66,-24,116","w":1750},"\u00f8":{"d":"472,-865v190,0,312,189,312,435v0,190,-64,355,-216,459v-224,153,-447,75,-527,-201v-48,-166,-16,-359,32,-509v7,-10,40,-28,99,-53v12,-9,37,-38,74,-89v43,-28,119,-42,226,-42xm335,-95v128,-46,245,-189,245,-362v0,-95,-40,-175,-120,-239v-60,0,-113,35,-165,100v-23,28,-43,40,-52,43v11,82,-5,177,-5,264v0,130,42,194,97,194xm647,-872v30,-51,73,-63,106,-11v0,48,-17,105,-51,172v-25,28,-53,65,-78,114v-7,14,-124,168,-345,467v-75,101,-124,188,-157,255v-43,24,-55,36,-68,35v-11,-6,-6,-27,-3,-39v-16,8,-39,-1,-31,-18v-6,0,-12,-6,-10,-14v18,-69,79,-192,201,-353r288,-379v77,-107,122,-185,148,-229","w":795},"\u00bf":{"d":"272,-230v-13,62,458,216,600,216v41,0,97,-23,168,-68v80,-19,125,31,128,132v0,29,-31,70,-92,124v-5,21,-17,32,-36,32v-407,0,-721,-13,-972,-244v-48,-44,-68,-75,-68,-84v0,-253,177,-413,532,-480r284,-52v-29,-230,-44,-363,-44,-400v-2,-80,9,-165,36,-156v40,-38,89,-63,148,-76v12,3,45,30,100,80r-8,72v0,73,45,230,100,480v26,117,-7,216,-88,264v-489,43,-751,96,-788,160xm1012,-1854v0,107,-51,176,-156,200v-79,-1,-116,-37,-116,-124v0,-84,36,-144,108,-180r52,-8v75,9,112,46,112,112","w":1165},"\u00a1":{"d":"178,170r-78,-68v-3,-388,17,-501,54,-1228v11,-221,20,-332,44,-332v41,-38,69,-61,129,-57v81,6,94,115,94,230v0,63,-21,264,-54,606v-19,194,-25,348,-23,460r6,301v-60,64,-97,71,-172,88xm303,-1763v-62,2,-112,-40,-112,-104v0,-64,47,-106,142,-126r51,0v40,31,51,61,51,116v0,62,-23,97,-68,104","w":569},"\u00ab":{"w":1139},"\u00bb":{"w":1139},"\u00c0":{"d":"850,-1724v27,-77,77,-104,148,-104v71,0,153,48,248,144v-4,231,55,440,180,824v65,8,136,-4,204,-4v51,0,76,15,76,44v11,1,16,5,16,12v0,67,-44,113,-132,136r-84,20v114,289,213,489,308,588v66,69,104,129,104,188v0,35,-16,59,-48,72v0,9,-20,17,-60,24r-24,0v-87,0,-185,-148,-320,-432v-61,-127,-136,-263,-200,-420r-124,-8v-360,23,-540,56,-540,100v-20,17,-71,114,-152,292v-59,79,-102,108,-188,108v-57,0,-94,-14,-100,-44v-20,-96,-3,-108,28,-256v0,-13,-67,-30,-200,-52v-40,-19,-60,-41,-60,-64v17,-38,52,-78,112,-96r284,-84v21,-7,53,-45,96,-116v220,-359,299,-506,428,-872xm1006,-1252v-101,160,-180,300,-236,420v-1,3,1,5,4,4v39,0,145,-20,320,-60r56,-4v-47,-181,-84,-290,-112,-328xm866,-2446v59,78,107,135,148,165v137,99,208,172,208,223v0,34,-7,52,-28,78r-24,-3v-93,0,-140,-9,-140,-27v-13,-59,-98,-136,-256,-232v-49,-17,-84,-68,-104,-153r88,-90v40,0,76,13,108,39"},"\u00c3":{"d":"850,-1724v27,-77,77,-104,148,-104v71,0,153,48,248,144v-4,231,55,440,180,824v65,8,136,-4,204,-4v51,0,76,15,76,44v11,1,16,5,16,12v0,67,-44,113,-132,136r-84,20v114,289,213,489,308,588v66,69,104,129,104,188v0,35,-16,59,-48,72v0,9,-20,17,-60,24r-24,0v-87,0,-185,-148,-320,-432v-61,-127,-136,-263,-200,-420r-124,-8v-360,23,-540,56,-540,100v-20,17,-71,114,-152,292v-59,79,-102,108,-188,108v-57,0,-94,-14,-100,-44v-20,-96,-3,-108,28,-256v0,-13,-67,-30,-200,-52v-40,-19,-60,-41,-60,-64v17,-38,52,-78,112,-96r284,-84v21,-7,53,-45,96,-116v220,-359,299,-506,428,-872xm1006,-1252v-101,160,-180,300,-236,420v-1,3,1,5,4,4v39,0,145,-20,320,-60r56,-4v-47,-181,-84,-290,-112,-328xm852,-2167v53,-48,96,-66,165,-66v36,0,96,24,181,71v53,16,71,22,112,21v8,0,14,12,18,37v-3,33,-8,49,-15,49v-25,-2,-39,17,-30,36v-2,5,-11,3,-18,3v-155,0,-232,-19,-232,-56v-70,-2,-105,46,-163,136v-26,41,-43,46,-88,46v-101,0,-194,-25,-277,-75v-13,-43,-16,-51,-15,-86v0,-50,17,-62,57,-63v23,0,76,15,160,46v21,2,40,6,63,5"},"\u00d5":{"d":"368,-1850v102,-18,167,-29,240,-28v255,0,462,290,588,876v70,326,43,678,-120,884v-127,161,-255,208,-444,208v-170,0,-329,-95,-456,-300v-134,-216,-176,-453,-176,-748v0,-317,60,-577,180,-780v61,-65,124,-101,188,-112xm468,-1510v-30,-2,-51,-13,-84,-12v-17,4,-45,60,-76,172v-38,137,-52,269,-52,392v0,409,108,680,308,776v187,90,298,1,384,-204v40,-97,40,-195,40,-312v0,-237,-46,-488,-180,-728v-86,-154,-155,-212,-236,-212v-43,0,-77,43,-104,128xm392,-2247v53,-48,96,-66,165,-66v36,0,96,24,181,71v53,16,71,22,112,21v8,0,14,12,18,37v-3,33,-8,49,-15,49v-25,-2,-39,17,-30,36v-2,5,-11,3,-18,3v-155,0,-232,-19,-232,-56v-70,-2,-105,46,-163,136v-26,41,-43,46,-88,46v-101,0,-194,-25,-277,-75v-13,-43,-16,-51,-15,-86v0,-50,17,-62,57,-63v23,0,76,15,160,46v21,2,40,6,63,5","w":1255},"\u0152":{"d":"1626,-1822v83,-28,221,-39,280,8r0,32v0,147,-168,241,-504,276v-195,20,-292,35,-292,48v-34,93,-47,209,-44,340v316,-80,555,-120,716,-120v120,0,180,12,180,24v-1,35,-2,57,20,76v-33,58,-104,108,-216,140v-79,22,-252,38,-512,76v-54,8,-108,31,-164,52v60,255,116,458,208,648r20,4v85,0,239,-59,468,-164v237,-108,428,-156,568,-156v99,0,148,13,148,24r0,132v0,6,-55,9,-160,32v-294,65,-550,214,-796,392v-107,78,-175,88,-288,88v-102,0,-182,-97,-252,-288v-44,-121,-111,-321,-188,-604v60,0,64,-20,12,-60v2,-65,-19,-114,-64,-196v24,-22,11,-40,12,-72r12,-280r4,-4r-84,4v-100,-3,-120,-22,-120,-104v0,-105,95,-178,284,-220v5,0,29,-24,72,-72v7,0,35,-21,84,-64v77,-2,133,31,196,100v92,1,209,-27,400,-92xm198,-1750v102,-18,167,-29,240,-28v255,0,462,290,588,876v70,326,43,678,-120,884v-127,161,-255,208,-444,208v-170,0,-329,-95,-456,-300v-134,-216,-176,-453,-176,-748v0,-317,60,-577,180,-780v61,-65,124,-101,188,-112xm298,-1410v-30,-2,-51,-13,-84,-12v-17,4,-45,60,-76,172v-38,137,-52,269,-52,392v0,409,108,680,308,776v187,90,298,1,384,-204v40,-97,40,-195,40,-312v0,-237,-46,-488,-180,-728v-86,-154,-155,-212,-236,-212v-43,0,-77,43,-104,128","w":2200},"\u0153":{"d":"462,-865v190,0,312,189,312,435v0,190,-64,355,-216,459v-224,153,-447,75,-527,-201v-48,-166,-16,-359,32,-509v7,-10,40,-28,99,-53v12,-9,37,-38,74,-89v43,-28,119,-42,226,-42xm339,-151v98,-39,180,-166,180,-304v0,-80,-29,-147,-88,-201v-44,0,-82,29,-121,84v-17,23,-31,34,-38,36v7,71,-4,148,-4,222v0,109,31,163,71,163xm676,-791v229,-117,378,-67,495,166v13,49,20,86,20,112v0,113,-88,205,-264,275v41,83,108,121,183,122v101,0,203,-89,328,-248v68,-87,119,-120,170,-118v21,12,-12,67,17,67v14,0,24,-12,30,-37v0,0,9,-1,7,4v0,38,-37,99,-102,189v-13,18,-18,42,-23,68v-32,6,-48,18,-48,37v-62,103,-155,180,-281,220v-51,16,-81,15,-132,14v-165,0,-329,-120,-491,-359r-17,-302v0,-111,39,-175,108,-210xm778,-523v0,68,19,115,57,142v27,0,66,-20,119,-61v35,-93,4,-182,-78,-210v-33,-11,-83,-1,-78,31v-13,23,-20,55,-20,98","w":1410},"\u201c":{"w":682},"\u201d":{"w":682},"\u2018":{"w":455},"\u2019":{"w":455},"\u00f7":{"d":"1820,-808v-28,47,-121,128,-235,128v-29,0,-47,-7,-55,-12v-67,11,-164,13,-252,12v-58,0,-292,-19,-703,-40v-159,-8,-294,5,-435,36r-110,-76v-4,-30,18,-54,32,-52v-30,-34,-44,-45,-20,-80r-3,-20v0,-29,115,-60,347,-80v269,-23,514,48,1057,48v50,0,133,-20,252,-20v83,0,125,52,125,156xm896,-520v35,-5,65,-15,104,-16v80,21,116,49,116,108v0,76,-53,137,-160,184v-79,14,-131,-10,-152,-88v-24,-87,15,-145,92,-188xm916,-1390v35,-5,65,-15,104,-16v80,21,116,49,116,108v0,76,-53,137,-160,184v-79,14,-131,-10,-152,-88v-24,-87,15,-145,92,-188","w":1900},"\u20ac":{"d":"704,-1248v163,-79,298,-100,480,-100v119,0,201,43,244,128r0,32v0,51,-64,81,-192,92r-108,-12v-223,0,-417,92,-584,276r0,4v106,-13,277,-49,516,-88v125,-21,259,-42,316,36v-21,55,-61,111,-132,148v-103,55,-187,72,-240,72v-267,0,-391,52,-512,96v20,78,56,144,116,188v104,76,225,104,372,104v74,0,186,-42,340,-120v59,-30,88,-38,140,-36v11,0,16,19,16,56v0,139,-128,268,-396,344v-336,95,-624,-7,-804,-260v-60,-84,-77,-152,-80,-184r-68,4v-83,0,-124,-23,-124,-68v-3,-10,-5,-22,-4,-36v0,-56,69,-108,208,-156v101,-230,264,-407,496,-520","w":1505},"\u2030":{"d":"436,-1742v32,-54,70,-76,132,-76v71,0,161,45,272,136v11,29,24,74,24,136v0,157,-71,287,-212,388v-81,-13,-141,-13,-228,-12v-56,0,-88,-13,-100,-36v-47,-92,-72,-193,-72,-304v0,-147,34,-220,76,-220v54,-20,66,-26,108,-12xm1872,-1750v15,0,27,57,36,172v5,0,8,9,8,28v-604,605,-1004,999,-1208,1172r-576,488v-97,47,-168,8,-212,-80r0,-32v0,-42,88,-109,252,-220v216,-147,827,-766,1104,-1048v176,-179,287,-308,360,-360v77,-54,155,-94,236,-120xm464,-1470v9,9,21,31,36,68v106,-22,130,-39,128,-124v0,-29,-12,-44,-36,-44v-36,0,-79,33,-128,100xm1046,-430v123,-111,194,-146,360,-136v125,133,188,224,188,272v0,135,-24,213,-100,324v-51,40,-114,60,-188,60v-139,0,-238,-56,-288,-172v-11,-26,-12,-53,-12,-76v0,-93,39,-169,40,-272xm1192,-265v-8,73,53,118,158,130v34,-20,43,-35,40,-76v-6,-122,-3,-135,-92,-135v-61,0,-100,27,-106,81xm1696,-430v123,-111,194,-146,360,-136v125,133,188,224,188,272v0,135,-24,213,-100,324v-51,40,-114,60,-188,60v-139,0,-238,-56,-288,-172v-11,-26,-12,-53,-12,-76v0,-93,39,-169,40,-272xm1850,-271v-6,75,44,124,138,136v29,-21,36,-39,34,-79v-8,-124,6,-142,-80,-142v-53,0,-87,28,-92,85","w":2270},"\u00c2":{"d":"850,-1724v27,-77,77,-104,148,-104v71,0,153,48,248,144v-4,231,55,440,180,824v65,8,136,-4,204,-4v51,0,76,15,76,44v11,1,16,5,16,12v0,67,-44,113,-132,136r-84,20v114,289,213,489,308,588v66,69,104,129,104,188v0,35,-16,59,-48,72v0,9,-20,17,-60,24r-24,0v-87,0,-185,-148,-320,-432v-61,-127,-136,-263,-200,-420r-124,-8v-360,23,-540,56,-540,100v-20,17,-71,114,-152,292v-59,79,-102,108,-188,108v-57,0,-94,-14,-100,-44v-20,-96,-3,-108,28,-256v0,-13,-67,-30,-200,-52v-40,-19,-60,-41,-60,-64v17,-38,52,-78,112,-96r284,-84v21,-7,53,-45,96,-116v220,-359,299,-506,428,-872xm1006,-1252v-101,160,-180,300,-236,420v-1,3,1,5,4,4v39,0,145,-20,320,-60r56,-4v-47,-181,-84,-290,-112,-328xm904,-2470v36,-38,65,-45,125,-42v39,73,117,198,243,371v32,43,18,58,6,99v1,10,10,22,4,29v-9,-1,-7,-10,-26,-13r-51,16v-17,0,-60,-33,-118,-106v-42,-54,-75,-102,-109,-137v-126,102,-205,183,-205,246v0,19,-37,29,-111,29r-20,3v-17,-27,-22,-49,-22,-83v0,-55,57,-132,166,-237v34,-33,71,-93,118,-175"},"\u00ca":{"d":"956,-1792v83,-28,221,-39,280,8r0,32v0,147,-168,241,-504,276v-195,20,-292,35,-292,48v-34,93,-47,209,-44,340v316,-80,555,-120,716,-120v120,0,180,12,180,24v-1,35,-2,57,20,76v-33,58,-104,108,-216,140v-79,22,-252,38,-512,76v-54,8,-108,31,-164,52v60,255,116,458,208,648r20,4v85,0,239,-59,468,-164v237,-108,428,-156,568,-156v99,0,148,13,148,24r0,132v0,6,-55,9,-160,32v-294,65,-550,214,-796,392v-107,78,-175,88,-288,88v-102,0,-182,-97,-252,-288v-44,-121,-111,-321,-188,-604v-47,0,-96,-20,-148,-60v-2,-68,26,-116,96,-196v21,-25,11,-40,12,-72r12,-280r4,-4r-84,4v-100,-3,-120,-22,-120,-104v0,-105,95,-178,284,-220v5,0,29,-24,72,-72v7,0,35,-21,84,-64v77,-2,133,31,196,100v92,1,209,-27,400,-92xm524,-2470v36,-38,65,-45,125,-42v39,73,117,198,243,371v32,43,18,58,6,99v1,10,10,22,4,29v-9,-1,-7,-10,-26,-13r-51,16v-17,0,-60,-33,-118,-106v-42,-54,-75,-102,-109,-137v-126,102,-205,183,-205,246v0,19,-37,29,-111,29r-20,3v-17,-27,-22,-49,-22,-83v0,-55,57,-132,166,-237v34,-33,71,-93,118,-175","w":1515},"\u00c1":{"d":"850,-1724v27,-77,77,-104,148,-104v71,0,153,48,248,144v-4,231,55,440,180,824v65,8,136,-4,204,-4v51,0,76,15,76,44v11,1,16,5,16,12v0,67,-44,113,-132,136r-84,20v114,289,213,489,308,588v66,69,104,129,104,188v0,35,-16,59,-48,72v0,9,-20,17,-60,24r-24,0v-87,0,-185,-148,-320,-432v-61,-127,-136,-263,-200,-420r-124,-8v-360,23,-540,56,-540,100v-20,17,-71,114,-152,292v-59,79,-102,108,-188,108v-57,0,-94,-14,-100,-44v-20,-96,-3,-108,28,-256v0,-13,-67,-30,-200,-52v-40,-19,-60,-41,-60,-64v17,-38,52,-78,112,-96r284,-84v21,-7,53,-45,96,-116v220,-359,299,-506,428,-872xm1006,-1252v-101,160,-180,300,-236,420v-1,3,1,5,4,4v39,0,145,-20,320,-60r56,-4v-47,-181,-84,-290,-112,-328xm1104,-2465r88,90v-20,85,-55,136,-104,153v-158,96,-243,173,-256,232v0,18,-47,27,-140,27r-24,3v-21,-26,-28,-45,-28,-78v0,-51,71,-124,208,-223v41,-30,89,-87,148,-165v32,-26,68,-39,108,-39"},"\u00cb":{"d":"956,-1792v83,-28,221,-39,280,8r0,32v0,147,-168,241,-504,276v-195,20,-292,35,-292,48v-34,93,-47,209,-44,340v316,-80,555,-120,716,-120v120,0,180,12,180,24v-1,35,-2,57,20,76v-33,58,-104,108,-216,140v-79,22,-252,38,-512,76v-54,8,-108,31,-164,52v60,255,116,458,208,648r20,4v85,0,239,-59,468,-164v237,-108,428,-156,568,-156v99,0,148,13,148,24r0,132v0,6,-55,9,-160,32v-294,65,-550,214,-796,392v-107,78,-175,88,-288,88v-102,0,-182,-97,-252,-288v-44,-121,-111,-321,-188,-604v-47,0,-96,-20,-148,-60v-2,-68,26,-116,96,-196v21,-25,11,-40,12,-72r12,-280r4,-4r-84,4v-100,-3,-120,-22,-120,-104v0,-105,95,-178,284,-220v5,0,29,-24,72,-72v7,0,35,-21,84,-64v77,-2,133,31,196,100v92,1,209,-27,400,-92xm369,-1963v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128xm719,-1963v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128","w":1515},"\u00c8":{"d":"986,-1792v83,-28,221,-39,280,8r0,32v0,147,-168,241,-504,276v-195,20,-292,35,-292,48v-34,93,-47,209,-44,340v316,-80,555,-120,716,-120v120,0,180,12,180,24v-1,35,-2,57,20,76v-33,58,-104,108,-216,140v-79,22,-252,38,-512,76v-54,8,-108,31,-164,52v60,255,116,458,208,648r20,4v85,0,239,-59,468,-164v237,-108,428,-156,568,-156v99,0,148,13,148,24r0,132v0,6,-55,9,-160,32v-294,65,-550,214,-796,392v-107,78,-175,88,-288,88v-102,0,-182,-97,-252,-288v-44,-121,-111,-321,-188,-604v-47,0,-96,-20,-148,-60v-2,-68,26,-116,96,-196v21,-25,11,-40,12,-72r12,-280r4,-4r-84,4v-100,-3,-120,-22,-120,-104v0,-105,95,-178,284,-220v5,0,29,-24,72,-72v7,0,35,-21,84,-64v77,-2,133,31,196,100v92,1,209,-27,400,-92xm486,-2416v59,78,107,135,148,165v137,99,208,172,208,223v0,34,-7,52,-28,78r-24,-3v-93,0,-140,-9,-140,-27v-13,-59,-98,-136,-256,-232v-49,-17,-84,-68,-104,-153r88,-90v40,0,76,13,108,39","w":1515},"\u00cd":{"d":"20,-1934v96,-93,256,-54,292,84v-4,57,-28,97,-36,148v-15,96,-13,194,-12,300v0,192,52,579,156,1160r32,328v-32,43,-81,64,-148,64v-72,0,-108,-23,-108,-48v0,-768,-188,-1254,-188,-1488v-9,-3,-8,-336,-8,-436v0,-58,5,-97,20,-112xm364,-2605r88,90v-20,85,-55,136,-104,153v-158,96,-243,173,-256,232v0,18,-47,27,-140,27r-24,3v-21,-26,-28,-45,-28,-78v0,-51,71,-124,208,-223v41,-30,89,-87,148,-165v32,-26,68,-39,108,-39","w":475},"\u00ce":{"d":"20,-1934v96,-93,256,-54,292,84v-4,57,-28,97,-36,148v-15,96,-13,194,-12,300v0,192,52,579,156,1160r32,328v-32,43,-81,64,-148,64v-72,0,-108,-23,-108,-48v0,-768,-188,-1254,-188,-1488v-9,-3,-8,-336,-8,-436v0,-58,5,-97,20,-112xm114,-2570v36,-38,65,-45,125,-42v39,73,117,198,243,371v32,43,18,58,6,99v1,10,10,22,4,29v-9,-1,-7,-10,-26,-13r-51,16v-17,0,-60,-33,-118,-106v-42,-54,-75,-102,-109,-137v-126,102,-204,183,-204,246v0,19,-37,29,-112,29r-19,3v-18,-27,-23,-49,-23,-83v0,-55,58,-131,167,-237v34,-32,70,-93,117,-175","w":475},"\u00cf":{"d":"20,-1934v96,-93,256,-54,292,84v-4,57,-28,97,-36,148v-15,96,-13,194,-12,300v0,192,52,579,156,1160r32,328v-32,43,-81,64,-148,64v-72,0,-108,-23,-108,-48v0,-768,-188,-1254,-188,-1488v-9,-3,-8,-336,-8,-436v0,-58,5,-97,20,-112xm-11,-2143v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,102,-111,128xm339,-2143v-60,20,-109,-20,-109,-92v0,-43,22,-76,67,-100v24,-3,45,-11,72,-11v56,15,81,34,81,75v0,53,-35,103,-111,128","w":475},"\u00cc":{"d":"20,-1934v96,-93,256,-54,292,84v-4,57,-28,97,-36,148v-15,96,-13,194,-12,300v0,192,52,579,156,1160r32,328v-32,43,-81,64,-148,64v-72,0,-108,-23,-108,-48v0,-768,-188,-1254,-188,-1488v-9,-3,-8,-336,-8,-436v0,-58,5,-97,20,-112xm86,-2526v59,78,107,135,148,165v137,99,208,172,208,223v0,34,-7,52,-28,78r-24,-3v-93,0,-140,-9,-140,-27v-13,-59,-98,-136,-256,-232v-49,-17,-84,-68,-104,-153r88,-90v40,0,76,13,108,39","w":475},"\u00d3":{"d":"368,-1850v102,-18,167,-29,240,-28v255,0,462,290,588,876v70,326,43,678,-120,884v-127,161,-255,208,-444,208v-170,0,-329,-95,-456,-300v-134,-216,-176,-453,-176,-748v0,-317,60,-577,180,-780v61,-65,124,-101,188,-112xm468,-1510v-30,-2,-51,-13,-84,-12v-17,4,-45,60,-76,172v-38,137,-52,269,-52,392v0,409,108,680,308,776v187,90,298,1,384,-204v40,-97,40,-195,40,-312v0,-237,-46,-488,-180,-728v-86,-154,-155,-212,-236,-212v-43,0,-77,43,-104,128xm654,-2535r88,90v-20,85,-55,136,-104,153v-158,96,-243,173,-256,232v0,18,-47,27,-140,27r-24,3v-21,-26,-28,-45,-28,-78v0,-51,71,-124,208,-223v41,-30,89,-87,148,-165v32,-26,68,-39,108,-39","w":1255},"\u00d4":{"d":"368,-1850v102,-18,167,-29,240,-28v255,0,462,290,588,876v70,326,43,678,-120,884v-127,161,-255,208,-444,208v-170,0,-329,-95,-456,-300v-134,-216,-176,-453,-176,-748v0,-317,60,-577,180,-780v61,-65,124,-101,188,-112xm468,-1510v-30,-2,-51,-13,-84,-12v-17,4,-45,60,-76,172v-38,137,-52,269,-52,392v0,409,108,680,308,776v187,90,298,1,384,-204v40,-97,40,-195,40,-312v0,-237,-46,-488,-180,-728v-86,-154,-155,-212,-236,-212v-43,0,-77,43,-104,128xm444,-2500v36,-38,65,-45,125,-42v39,73,117,198,243,371v32,43,18,58,6,99v1,10,10,22,4,29v-9,-1,-7,-10,-26,-13r-51,16v-17,0,-60,-33,-118,-106v-42,-54,-75,-102,-109,-137v-126,102,-205,183,-205,246v0,19,-37,29,-111,29r-20,3v-17,-27,-22,-49,-22,-83v0,-55,57,-132,166,-237v34,-33,71,-93,118,-175","w":1255},"\u00d2":{"d":"368,-1850v102,-18,167,-29,240,-28v255,0,462,290,588,876v70,326,43,678,-120,884v-127,161,-255,208,-444,208v-170,0,-329,-95,-456,-300v-134,-216,-176,-453,-176,-748v0,-317,60,-577,180,-780v61,-65,124,-101,188,-112xm468,-1510v-30,-2,-51,-13,-84,-12v-17,4,-45,60,-76,172v-38,137,-52,269,-52,392v0,409,108,680,308,776v187,90,298,1,384,-204v40,-97,40,-195,40,-312v0,-237,-46,-488,-180,-728v-86,-154,-155,-212,-236,-212v-43,0,-77,43,-104,128xm456,-2446v59,78,107,135,148,165v137,99,208,172,208,223v0,34,-7,52,-28,78r-24,-3v-93,0,-140,-9,-140,-27v-13,-59,-98,-136,-256,-232v-49,-17,-84,-68,-104,-153r88,-90v40,0,76,13,108,39","w":1255},"\u00da":{"d":"1102,-2038v26,33,63,119,104,260v80,277,116,548,116,812v0,413,-82,720,-268,896v-108,102,-233,140,-352,140v-179,0,-308,-109,-408,-316v-110,-229,-164,-517,-164,-868v0,-259,36,-489,108,-688v7,-5,48,-20,124,-20v69,0,117,35,104,100r-44,224v-15,115,-24,229,-24,344v0,507,101,830,304,968r48,12v67,0,145,-63,212,-200v67,-137,84,-332,84,-556v0,-408,-54,-728,-148,-964v-27,-68,-3,-144,84,-144r120,0xm804,-2565r88,90v-20,85,-55,136,-104,153v-158,96,-243,173,-256,232v0,18,-47,27,-140,27r-24,3v-21,-26,-28,-45,-28,-78v0,-51,71,-124,208,-223v41,-30,89,-87,148,-165v32,-26,68,-39,108,-39","w":1235},"\u00db":{"d":"982,-2038v26,33,63,119,104,260v80,277,116,548,116,812v0,413,-82,720,-268,896v-108,102,-233,140,-352,140v-179,0,-308,-109,-408,-316v-110,-229,-164,-517,-164,-868v0,-259,36,-489,108,-688v7,-5,48,-20,124,-20v69,0,117,35,104,100r-44,224v-15,115,-24,229,-24,344v0,507,101,830,304,968r48,12v67,0,145,-63,212,-200v67,-137,84,-332,84,-556v0,-408,-54,-728,-148,-964v-27,-68,-3,-144,84,-144r120,0xm394,-2610v36,-38,65,-45,125,-42v39,73,117,198,243,371v32,43,18,58,6,99v1,10,10,22,4,29v-9,-1,-7,-10,-26,-13r-51,16v-17,0,-60,-33,-118,-106v-42,-54,-75,-102,-109,-137v-126,102,-205,183,-205,246v0,19,-37,29,-111,29r-20,3v-17,-27,-22,-49,-22,-83v0,-55,57,-132,166,-237v34,-33,71,-93,118,-175","w":1235},"\u00d9":{"d":"982,-2038v26,33,63,119,104,260v80,277,116,548,116,812v0,413,-82,720,-268,896v-108,102,-233,140,-352,140v-179,0,-308,-109,-408,-316v-110,-229,-164,-517,-164,-868v0,-259,36,-489,108,-688v7,-5,48,-20,124,-20v69,0,117,35,104,100r-44,224v-15,115,-24,229,-24,344v0,507,101,830,304,968r48,12v67,0,145,-63,212,-200v67,-137,84,-332,84,-556v0,-408,-54,-728,-148,-964v-27,-68,-3,-144,84,-144r120,0xm306,-2546v59,78,107,135,148,165v137,99,208,172,208,223v0,34,-7,52,-28,78r-24,-3v-93,0,-140,-9,-140,-27v-13,-59,-98,-136,-256,-232v-49,-17,-84,-68,-104,-153r88,-90v40,0,76,13,108,39","w":1235},"\u00bd":{"d":"272,-1876v34,-11,33,33,48,57v0,15,-15,129,-55,340v-30,160,56,431,-59,509v0,-11,-14,-18,-43,-23v-29,-88,-10,-409,-10,-518v0,-11,-14,-34,-41,-68v-8,-36,12,-40,48,-108v15,-29,35,-84,62,-164v5,-6,22,-15,50,-25xm1023,-634v-2,-29,-41,-33,-76,-33v-69,0,-135,34,-180,112v-30,53,-29,54,-78,61v-33,-3,-49,-10,-49,-21v0,-46,20,-102,71,-159v81,-90,166,-126,277,-125v105,1,176,59,180,174v5,147,-203,325,-303,402v-37,28,-58,50,-68,68v211,19,227,9,402,9v37,0,50,14,47,48v-4,37,-10,56,-17,56v-49,28,-128,42,-235,42v-230,0,-345,-14,-345,-21v-71,-21,-91,-18,-89,-66v0,-15,11,-41,33,-80v82,-55,182,-130,291,-237v73,-71,116,-133,141,-176v-4,-15,-1,-36,-2,-54xm732,-1647v27,-79,69,-101,98,-18v0,77,-16,170,-47,278v-23,44,-50,104,-73,182v-7,23,-116,273,-321,753v-70,165,-114,304,-145,412v-39,38,-51,56,-63,55v-10,-11,-5,-44,-3,-62r-19,7v-7,-7,-13,-22,-10,-36v-5,1,-10,-11,-9,-22v18,-111,69,-306,186,-570r269,-610v71,-171,112,-296,137,-369","w":1290},"\u00bc":{"d":"182,-1876v34,-11,33,33,48,57v0,15,-15,129,-55,340v-30,160,56,431,-59,509v0,-11,-14,-18,-43,-23v-29,-88,-10,-409,-10,-518v0,-11,-14,-34,-41,-68v-8,-36,12,-40,48,-108v15,-29,35,-84,62,-164v5,-6,22,-15,50,-25xm1091,104v2,50,-16,98,-62,111v-30,0,-55,-35,-73,-107v-5,-20,-4,-98,-11,-232v-1,-28,-8,-41,-10,-41v-222,34,-300,46,-464,39v-23,-19,-31,-40,-31,-72v0,-38,48,-94,140,-174r341,-298v88,-96,137,-144,147,-144v37,0,66,25,66,74v0,5,-11,27,-29,66v-10,22,-14,114,-18,273r-10,59v38,0,102,-18,226,-45v61,-13,126,-8,166,25v-8,0,-23,32,-49,94v-3,8,-10,11,-19,11v-57,0,-147,37,-275,67v-29,7,-45,8,-45,13v-30,80,7,191,10,281xm705,-309v125,-9,207,-16,248,-22v0,-66,24,-143,-6,-195v-36,42,-198,147,-242,217xm722,-1647v27,-79,69,-101,98,-18v0,77,-16,170,-47,278v-23,44,-50,104,-73,182v-7,23,-116,273,-321,753v-70,165,-114,304,-145,412v-39,38,-51,56,-63,55v-10,-11,-5,-44,-3,-62r-19,7v-7,-7,-13,-22,-10,-36v-5,1,-10,-11,-9,-22v18,-111,69,-306,186,-570r269,-610v71,-171,112,-296,137,-369","w":1480},"\u00be":{"d":"932,-1647v27,-79,69,-101,98,-18v0,77,-16,170,-47,278v-23,44,-50,104,-73,182v-7,23,-116,273,-321,753v-70,165,-114,304,-145,412v-39,38,-51,56,-63,55v-10,-11,-5,-44,-3,-62r-19,7v-7,-7,-13,-22,-10,-36v-5,1,-10,-11,-9,-22v18,-111,69,-306,186,-570r269,-610v71,-171,112,-296,137,-369xm1231,104v2,50,-16,98,-62,111v-30,0,-55,-35,-73,-107v-5,-20,-4,-98,-11,-232v-1,-28,-8,-41,-10,-41v-222,34,-300,46,-464,39v-23,-19,-31,-40,-31,-72v0,-38,48,-94,140,-174r341,-298v88,-96,137,-144,147,-144v37,0,66,25,66,74v0,5,-11,27,-29,66v-10,22,-14,114,-18,273r-10,59v38,0,102,-18,226,-45v61,-13,126,-8,166,25v-8,0,-23,32,-49,94v-3,8,-10,11,-19,11v-57,0,-147,37,-275,67v-29,7,-45,8,-45,13v-30,80,7,191,10,281xm845,-309v125,-9,207,-16,248,-22v0,-66,24,-143,-6,-195v-36,42,-198,147,-242,217xm362,-1085v-110,0,-215,-38,-310,-119v-50,-42,-38,-41,-52,-101v0,-2,6,-6,17,-12v11,-17,20,-26,27,-26v20,0,60,25,120,76v89,48,157,70,247,68v31,0,59,-15,82,-45r1,-12v-5,-24,-35,-56,-94,-90v-15,-9,-55,-14,-115,-31v-41,-11,-60,-34,-60,-59v0,-34,45,-69,135,-102v20,-7,44,-27,70,-61v-5,-28,7,-49,12,-73v-62,-20,-93,9,-197,57v-42,20,-87,21,-88,-36v0,-5,6,-15,18,-28v1,-17,50,-51,154,-90v83,-31,160,-29,228,12v49,121,-29,217,-126,290v40,15,90,47,142,102v132,139,-30,280,-211,280","w":1620},"\u00a4":{"w":1139}}});


