var MooTools={'version':'1.2.3','build':'4980aa0fb74d2f6eb80bcd9f5b8e1fd6fbb8f607'};var Native=function(options){options=options||{};var name=options.name;var legacy=options.legacy;var protect=options.protect;var methods=options.implement;var generics=options.generics;var initialize=options.initialize;var afterImplement=options.afterImplement||function(){};var object=initialize||legacy;generics=generics!==false;object.constructor=Native;object.$family={name:'native'};if(legacy&&initialize)object.prototype=legacy.prototype;object.prototype.constructor=object;if(name){var family=name.toLowerCase();object.prototype.$family={name:family};Native.typize(object,family);}
var add=function(obj,name,method,force){if(!protect||force||!obj.prototype[name])obj.prototype[name]=method;if(generics)Native.genericize(obj,name,protect);afterImplement.call(obj,name,method);return obj;};object.alias=function(a1,a2,a3){if(typeof a1=='string'){var pa1=this.prototype[a1];if((a1=pa1))return add(this,a2,a1,a3);}
for(var a in a1)this.alias(a,a1[a],a2);return this;};object.implement=function(a1,a2,a3){if(typeof a1=='string')return add(this,a1,a2,a3);for(var p in a1)add(this,p,a1[p],a2);return this;};if(methods)object.implement(methods);return object;};Native.genericize=function(object,property,check){if((!check||!object[property])&&typeof object.prototype[property]=='function')object[property]=function(){var args=Array.prototype.slice.call(arguments);return object.prototype[property].apply(args.shift(),args);};};Native.implement=function(objects,properties){for(var i=0,l=objects.length;i<l;i++)objects[i].implement(properties);};Native.typize=function(object,family){if(!object.type)object.type=function(item){return($type(item)===family);};};(function(){var natives={'Array':Array,'Date':Date,'Function':Function,'Number':Number,'RegExp':RegExp,'String':String};for(var n in natives)new Native({name:n,initialize:natives[n],protect:true});var types={'boolean':Boolean,'native':Native,'object':Object};for(var t in types)Native.typize(types[t],t);var generics={'Array':["concat","indexOf","join","lastIndexOf","pop","push","reverse","shift","slice","sort","splice","toString","unshift","valueOf"],'String':["charAt","charCodeAt","concat","indexOf","lastIndexOf","match","replace","search","slice","split","substr","substring","toLowerCase","toUpperCase","valueOf"]};for(var g in generics){for(var i=generics[g].length;i--;)Native.genericize(natives[g],generics[g][i],true);}})();var Hash=new Native({name:'Hash',initialize:function(object){if($type(object)=='hash')object=$unlink(object.getClean());for(var key in object)this[key]=object[key];return this;}});Hash.implement({forEach:function(fn,bind){for(var key in this){if(this.hasOwnProperty(key))fn.call(bind,this[key],key,this);}},getClean:function(){var clean={};for(var key in this){if(this.hasOwnProperty(key))clean[key]=this[key];}
return clean;},getLength:function(){var length=0;for(var key in this){if(this.hasOwnProperty(key))length++;}
return length;}});Hash.alias('forEach','each');Array.implement({forEach:function(fn,bind){for(var i=0,l=this.length;i<l;i++)fn.call(bind,this[i],i,this);}});Array.alias('forEach','each');function $A(iterable){if(iterable.item){var l=iterable.length,array=new Array(l);while(l--)array[l]=iterable[l];return array;}
return Array.prototype.slice.call(iterable);};function $arguments(i){return function(){return arguments[i];};};function $chk(obj){return!!(obj||obj===0);};function $clear(timer){clearTimeout(timer);clearInterval(timer);return null;};function $defined(obj){return(obj!=undefined);};function $each(iterable,fn,bind){var type=$type(iterable);((type=='arguments'||type=='collection'||type=='array')?Array:Hash).each(iterable,fn,bind);};function $empty(){};function $extend(original,extended){for(var key in(extended||{}))original[key]=extended[key];return original;};function $H(object){return new Hash(object);};function $lambda(value){return($type(value)=='function')?value:function(){return value;};};function $merge(){var args=Array.slice(arguments);args.unshift({});return $mixin.apply(null,args);};function $mixin(mix){for(var i=1,l=arguments.length;i<l;i++){var object=arguments[i];if($type(object)!='object')continue;for(var key in object){var op=object[key],mp=mix[key];mix[key]=(mp&&$type(op)=='object'&&$type(mp)=='object')?$mixin(mp,op):$unlink(op);}}
return mix;};function $pick(){for(var i=0,l=arguments.length;i<l;i++){if(arguments[i]!=undefined)return arguments[i];}
return null;};function $random(min,max){return Math.floor(Math.random()*(max-min+1)+min);};function $splat(obj){var type=$type(obj);return(type)?((type!='array'&&type!='arguments')?[obj]:obj):[];};var $time=Date.now||function(){return+new Date;};function $try(){for(var i=0,l=arguments.length;i<l;i++){try{return arguments[i]();}catch(e){}}
return null;};function $type(obj){if(obj==undefined)return false;if(obj.$family)return(obj.$family.name=='number'&&!isFinite(obj))?false:obj.$family.name;if(obj.nodeName){switch(obj.nodeType){case 1:return'element';case 3:return(/\S/).test(obj.nodeValue)?'textnode':'whitespace';}}else if(typeof obj.length=='number'){if(obj.callee)return'arguments';else if(obj.item)return'collection';}
return typeof obj;};function $unlink(object){var unlinked;switch($type(object)){case'object':unlinked={};for(var p in object)unlinked[p]=$unlink(object[p]);break;case'hash':unlinked=new Hash(object);break;case'array':unlinked=[];for(var i=0,l=object.length;i<l;i++)unlinked[i]=$unlink(object[i]);break;default:return object;}
return unlinked;};var Browser=$merge({Engine:{name:'unknown',version:0},Platform:{name:(window.orientation!=undefined)?'ipod':(navigator.platform.match(/mac|win|linux/i)||['other'])[0].toLowerCase()},Features:{xpath:!!(document.evaluate),air:!!(window.runtime),query:!!(document.querySelector)},Plugins:{},Engines:{presto:function(){return(!window.opera)?false:((arguments.callee.caller)?960:((document.getElementsByClassName)?950:925));},trident:function(){return(!window.ActiveXObject)?false:((window.XMLHttpRequest)?5:4);},webkit:function(){return(navigator.taintEnabled)?false:((Browser.Features.xpath)?((Browser.Features.query)?525:420):419);},gecko:function(){return(document.getBoxObjectFor==undefined)?false:((document.getElementsByClassName)?19:18);}}},Browser||{});Browser.Platform[Browser.Platform.name]=true;Browser.detect=function(){for(var engine in this.Engines){var version=this.Engines[engine]();if(version){this.Engine={name:engine,version:version};this.Engine[engine]=this.Engine[engine+version]=true;break;}}
return{name:engine,version:version};};Browser.detect();Browser.Request=function(){return $try(function(){return new XMLHttpRequest();},function(){return new ActiveXObject('MSXML2.XMLHTTP');});};Browser.Features.xhr=!!(Browser.Request());Browser.Plugins.Flash=(function(){var version=($try(function(){return navigator.plugins['Shockwave Flash'].description;},function(){return new ActiveXObject('ShockwaveFlash.ShockwaveFlash').GetVariable('$version');})||'0 r0').match(/\d+/g);return{version:parseInt(version[0]||0+'.'+version[1],10)||0,build:parseInt(version[2],10)||0};})();function $exec(text){if(!text)return text;if(window.execScript){window.execScript(text);}else{var script=document.createElement('script');script.setAttribute('type','text/javascript');script[(Browser.Engine.webkit&&Browser.Engine.version<420)?'innerText':'text']=text;document.head.appendChild(script);document.head.removeChild(script);}
return text;};Native.UID=1;var $uid=(Browser.Engine.trident)?function(item){return(item.uid||(item.uid=[Native.UID++]))[0];}:function(item){return item.uid||(item.uid=Native.UID++);};var Window=new Native({name:'Window',legacy:(Browser.Engine.trident)?null:window.Window,initialize:function(win){$uid(win);if(!win.Element){win.Element=$empty;if(Browser.Engine.webkit)win.document.createElement("iframe");win.Element.prototype=(Browser.Engine.webkit)?window["[[DOMElement.prototype]]"]:{};}
win.document.window=win;return $extend(win,Window.Prototype);},afterImplement:function(property,value){window[property]=Window.Prototype[property]=value;}});Window.Prototype={$family:{name:'window'}};new Window(window);var Document=new Native({name:'Document',legacy:(Browser.Engine.trident)?null:window.Document,initialize:function(doc){$uid(doc);doc.head=doc.getElementsByTagName('head')[0];doc.html=doc.getElementsByTagName('html')[0];if(Browser.Engine.trident&&Browser.Engine.version<=4)$try(function(){doc.execCommand("BackgroundImageCache",false,true);});if(Browser.Engine.trident)doc.window.attachEvent('onunload',function(){doc.window.detachEvent('onunload',arguments.callee);doc.head=doc.html=doc.window=null;});return $extend(doc,Document.Prototype);},afterImplement:function(property,value){document[property]=Document.Prototype[property]=value;}});Document.Prototype={$family:{name:'document'}};new Document(document);Array.implement({every:function(fn,bind){for(var i=0,l=this.length;i<l;i++){if(!fn.call(bind,this[i],i,this))return false;}
return true;},filter:function(fn,bind){var results=[];for(var i=0,l=this.length;i<l;i++){if(fn.call(bind,this[i],i,this))results.push(this[i]);}
return results;},clean:function(){return this.filter($defined);},indexOf:function(item,from){var len=this.length;for(var i=(from<0)?Math.max(0,len+from):from||0;i<len;i++){if(this[i]===item)return i;}
return-1;},map:function(fn,bind){var results=[];for(var i=0,l=this.length;i<l;i++)results[i]=fn.call(bind,this[i],i,this);return results;},some:function(fn,bind){for(var i=0,l=this.length;i<l;i++){if(fn.call(bind,this[i],i,this))return true;}
return false;},associate:function(keys){var obj={},length=Math.min(this.length,keys.length);for(var i=0;i<length;i++)obj[keys[i]]=this[i];return obj;},link:function(object){var result={};for(var i=0,l=this.length;i<l;i++){for(var key in object){if(object[key](this[i])){result[key]=this[i];delete object[key];break;}}}
return result;},contains:function(item,from){return this.indexOf(item,from)!=-1;},extend:function(array){for(var i=0,j=array.length;i<j;i++)this.push(array[i]);return this;},getLast:function(){return(this.length)?this[this.length-1]:null;},getRandom:function(){return(this.length)?this[$random(0,this.length-1)]:null;},include:function(item){if(!this.contains(item))this.push(item);return this;},combine:function(array){for(var i=0,l=array.length;i<l;i++)this.include(array[i]);return this;},erase:function(item){for(var i=this.length;i--;i){if(this[i]===item)this.splice(i,1);}
return this;},empty:function(){this.length=0;return this;},flatten:function(){var array=[];for(var i=0,l=this.length;i<l;i++){var type=$type(this[i]);if(!type)continue;array=array.concat((type=='array'||type=='collection'||type=='arguments')?Array.flatten(this[i]):this[i]);}
return array;},hexToRgb:function(array){if(this.length!=3)return null;var rgb=this.map(function(value){if(value.length==1)value+=value;return value.toInt(16);});return(array)?rgb:'rgb('+rgb+')';},rgbToHex:function(array){if(this.length<3)return null;if(this.length==4&&this[3]==0&&!array)return'transparent';var hex=[];for(var i=0;i<3;i++){var bit=(this[i]-0).toString(16);hex.push((bit.length==1)?'0'+bit:bit);}
return(array)?hex:'#'+hex.join('');}});Function.implement({extend:function(properties){for(var property in properties)this[property]=properties[property];return this;},create:function(options){var self=this;options=options||{};return function(event){var args=options.arguments;args=(args!=undefined)?$splat(args):Array.slice(arguments,(options.event)?1:0);if(options.event)args=[event||window.event].extend(args);var returns=function(){return self.apply(options.bind||null,args);};if(options.delay)return setTimeout(returns,options.delay);if(options.periodical)return setInterval(returns,options.periodical);if(options.attempt)return $try(returns);return returns();};},run:function(args,bind){return this.apply(bind,$splat(args));},pass:function(args,bind){return this.create({bind:bind,arguments:args});},bind:function(bind,args){return this.create({bind:bind,arguments:args});},bindWithEvent:function(bind,args){return this.create({bind:bind,arguments:args,event:true});},attempt:function(args,bind){return this.create({bind:bind,arguments:args,attempt:true})();},delay:function(delay,bind,args){return this.create({bind:bind,arguments:args,delay:delay})();},periodical:function(periodical,bind,args){return this.create({bind:bind,arguments:args,periodical:periodical})();}});Number.implement({limit:function(min,max){return Math.min(max,Math.max(min,this));},round:function(precision){precision=Math.pow(10,precision||0);return Math.round(this*precision)/precision;},times:function(fn,bind){for(var i=0;i<this;i++)fn.call(bind,i,this);},toFloat:function(){return parseFloat(this);},toInt:function(base){return parseInt(this,base||10);}});Number.alias('times','each');(function(math){var methods={};math.each(function(name){if(!Number[name])methods[name]=function(){return Math[name].apply(null,[this].concat($A(arguments)));};});Number.implement(methods);})(['abs','acos','asin','atan','atan2','ceil','cos','exp','floor','log','max','min','pow','sin','sqrt','tan']);String.implement({test:function(regex,params){return((typeof regex=='string')?new RegExp(regex,params):regex).test(this);},contains:function(string,separator){return(separator)?(separator+this+separator).indexOf(separator+string+separator)>-1:this.indexOf(string)>-1;},trim:function(){return this.replace(/^\s+|\s+$/g,'');},clean:function(){return this.replace(/\s+/g,' ').trim();},camelCase:function(){return this.replace(/-\D/g,function(match){return match.charAt(1).toUpperCase();});},hyphenate:function(){return this.replace(/[A-Z]/g,function(match){return('-'+match.charAt(0).toLowerCase());});},capitalize:function(){return this.replace(/\b[a-z]/g,function(match){return match.toUpperCase();});},escapeRegExp:function(){return this.replace(/([-.*+?^${}()|[\]\/\\])/g,'\\$1');},toInt:function(base){return parseInt(this,base||10);},toFloat:function(){return parseFloat(this);},hexToRgb:function(array){var hex=this.match(/^#?(\w{1,2})(\w{1,2})(\w{1,2})$/);return(hex)?hex.slice(1).hexToRgb(array):null;},rgbToHex:function(array){var rgb=this.match(/\d{1,3}/g);return(rgb)?rgb.rgbToHex(array):null;},stripScripts:function(option){var scripts='';var text=this.replace(/<script[^>]*>([\s\S]*?)<\/script>/gi,function(){scripts+=arguments[1]+'\n';return'';});if(option===true)$exec(scripts);else if($type(option)=='function')option(scripts,text);return text;},substitute:function(object,regexp){return this.replace(regexp||(/\\?\{([^{}]+)\}/g),function(match,name){if(match.charAt(0)=='\\')return match.slice(1);return(object[name]!=undefined)?object[name]:'';});}});Hash.implement({has:Object.prototype.hasOwnProperty,keyOf:function(value){for(var key in this){if(this.hasOwnProperty(key)&&this[key]===value)return key;}
return null;},hasValue:function(value){return(Hash.keyOf(this,value)!==null);},extend:function(properties){Hash.each(properties||{},function(value,key){Hash.set(this,key,value);},this);return this;},combine:function(properties){Hash.each(properties||{},function(value,key){Hash.include(this,key,value);},this);return this;},erase:function(key){if(this.hasOwnProperty(key))delete this[key];return this;},get:function(key){return(this.hasOwnProperty(key))?this[key]:null;},set:function(key,value){if(!this[key]||this.hasOwnProperty(key))this[key]=value;return this;},empty:function(){Hash.each(this,function(value,key){delete this[key];},this);return this;},include:function(key,value){if(this[key]==undefined)this[key]=value;return this;},map:function(fn,bind){var results=new Hash;Hash.each(this,function(value,key){results.set(key,fn.call(bind,value,key,this));},this);return results;},filter:function(fn,bind){var results=new Hash;Hash.each(this,function(value,key){if(fn.call(bind,value,key,this))results.set(key,value);},this);return results;},every:function(fn,bind){for(var key in this){if(this.hasOwnProperty(key)&&!fn.call(bind,this[key],key))return false;}
return true;},some:function(fn,bind){for(var key in this){if(this.hasOwnProperty(key)&&fn.call(bind,this[key],key))return true;}
return false;},getKeys:function(){var keys=[];Hash.each(this,function(value,key){keys.push(key);});return keys;},getValues:function(){var values=[];Hash.each(this,function(value){values.push(value);});return values;},toQueryString:function(base){var queryString=[];Hash.each(this,function(value,key){if(base)key=base+'['+key+']';var result;switch($type(value)){case'object':result=Hash.toQueryString(value,key);break;case'array':var qs={};value.each(function(val,i){qs[i]=val;});result=Hash.toQueryString(qs,key);break;default:result=key+'='+encodeURIComponent(value);}
if(value!=undefined)queryString.push(result);});return queryString.join('&');}});Hash.alias({keyOf:'indexOf',hasValue:'contains'});var Event=new Native({name:'Event',initialize:function(event,win){win=win||window;var doc=win.document;event=event||win.event;if(event.$extended)return event;this.$extended=true;var type=event.type;var target=event.target||event.srcElement;while(target&&target.nodeType==3)target=target.parentNode;if(type.test(/key/)){var code=event.which||event.keyCode;var key=Event.Keys.keyOf(code);if(type=='keydown'){var fKey=code-111;if(fKey>0&&fKey<13)key='f'+fKey;}
key=key||String.fromCharCode(code).toLowerCase();}else if(type.match(/(click|mouse|menu)/i)){doc=(!doc.compatMode||doc.compatMode=='CSS1Compat')?doc.html:doc.body;var page={x:event.pageX||event.clientX+doc.scrollLeft,y:event.pageY||event.clientY+doc.scrollTop};var client={x:(event.pageX)?event.pageX-win.pageXOffset:event.clientX,y:(event.pageY)?event.pageY-win.pageYOffset:event.clientY};if(type.match(/DOMMouseScroll|mousewheel/)){var wheel=(event.wheelDelta)?event.wheelDelta/120:-(event.detail||0)/3;}
var rightClick=(event.which==3)||(event.button==2);var related=null;if(type.match(/over|out/)){switch(type){case'mouseover':related=event.relatedTarget||event.fromElement;break;case'mouseout':related=event.relatedTarget||event.toElement;}
if(!(function(){while(related&&related.nodeType==3)related=related.parentNode;return true;}).create({attempt:Browser.Engine.gecko})())related=false;}}
return $extend(this,{event:event,type:type,page:page,client:client,rightClick:rightClick,wheel:wheel,relatedTarget:related,target:target,code:code,key:key,shift:event.shiftKey,control:event.ctrlKey,alt:event.altKey,meta:event.metaKey});}});Event.Keys=new Hash({'enter':13,'up':38,'down':40,'left':37,'right':39,'esc':27,'space':32,'backspace':8,'tab':9,'delete':46});Event.implement({stop:function(){return this.stopPropagation().preventDefault();},stopPropagation:function(){if(this.event.stopPropagation)this.event.stopPropagation();else this.event.cancelBubble=true;return this;},preventDefault:function(){if(this.event.preventDefault)this.event.preventDefault();else this.event.returnValue=false;return this;}});function Class(params){if(params instanceof Function)params={initialize:params};var newClass=function(){Object.reset(this);if(newClass._prototyping)return this;this._current=$empty;var value=(this.initialize)?this.initialize.apply(this,arguments):this;delete this._current;delete this.caller;return value;}.extend(this);newClass.implement(params);newClass.constructor=Class;newClass.prototype.constructor=newClass;return newClass;};Function.prototype.protect=function(){this._protected=true;return this;};Object.reset=function(object,key){if(key==null){for(var p in object)Object.reset(object,p);return object;}
delete object[key];switch($type(object[key])){case'object':var F=function(){};F.prototype=object[key];var i=new F;object[key]=Object.reset(i);break;case'array':object[key]=$unlink(object[key]);break;}
return object;};new Native({name:'Class',initialize:Class}).extend({instantiate:function(F){F._prototyping=true;var proto=new F;delete F._prototyping;return proto;},wrap:function(self,key,method){if(method._origin)method=method._origin;return function(){if(method._protected&&this._current==null)throw new Error('The method "'+key+'" cannot be called.');var caller=this.caller,current=this._current;this.caller=current;this._current=arguments.callee;var result=method.apply(this,arguments);this._current=current;this.caller=caller;return result;}.extend({_owner:self,_origin:method,_name:key});}});Class.implement({implement:function(key,value){if($type(key)=='object'){for(var p in key)this.implement(p,key[p]);return this;}
var mutator=Class.Mutators[key];if(mutator){value=mutator.call(this,value);if(value==null)return this;}
var proto=this.prototype;switch($type(value)){case'function':if(value._hidden)return this;proto[key]=Class.wrap(this,key,value);break;case'object':var previous=proto[key];if($type(previous)=='object')$mixin(previous,value);else proto[key]=$unlink(value);break;case'array':proto[key]=$unlink(value);break;default:proto[key]=value;}
return this;}});Class.Mutators={Extends:function(parent){this.parent=parent;this.prototype=Class.instantiate(parent);this.implement('parent',function(){var name=this.caller._name,previous=this.caller._owner.parent.prototype[name];if(!previous)throw new Error('The method "'+name+'" has no parent.');return previous.apply(this,arguments);}.protect());},Implements:function(items){$splat(items).each(function(item){if(item instanceof Function)item=Class.instantiate(item);this.implement(item);},this);}};var Chain=new Class({$chain:[],chain:function(){this.$chain.extend(Array.flatten(arguments));return this;},callChain:function(){return(this.$chain.length)?this.$chain.shift().apply(this,arguments):false;},clearChain:function(){this.$chain.empty();return this;}});var Events=new Class({$events:{},addEvent:function(type,fn,internal){type=Events.removeOn(type);if(fn!=$empty){this.$events[type]=this.$events[type]||[];this.$events[type].include(fn);if(internal)fn.internal=true;}
return this;},addEvents:function(events){for(var type in events)this.addEvent(type,events[type]);return this;},fireEvent:function(type,args,delay){type=Events.removeOn(type);if(!this.$events||!this.$events[type])return this;this.$events[type].each(function(fn){fn.create({'bind':this,'delay':delay,'arguments':args})();},this);return this;},removeEvent:function(type,fn){type=Events.removeOn(type);if(!this.$events[type])return this;if(!fn.internal)this.$events[type].erase(fn);return this;},removeEvents:function(events){var type;if($type(events)=='object'){for(type in events)this.removeEvent(type,events[type]);return this;}
if(events)events=Events.removeOn(events);for(type in this.$events){if(events&&events!=type)continue;var fns=this.$events[type];for(var i=fns.length;i--;i)this.removeEvent(type,fns[i]);}
return this;}});Events.removeOn=function(string){return string.replace(/^on([A-Z])/,function(full,first){return first.toLowerCase();});};var Options=new Class({setOptions:function(){this.options=$merge.run([this.options].extend(arguments));if(!this.addEvent)return this;for(var option in this.options){if($type(this.options[option])!='function'||!(/^on[A-Z]/).test(option))continue;this.addEvent(option,this.options[option]);delete this.options[option];}
return this;}});var Element=new Native({name:'Element',legacy:window.Element,initialize:function(tag,props){var konstructor=Element.Constructors.get(tag);if(konstructor)return konstructor(props);if(typeof tag=='string')return document.newElement(tag,props);return document.id(tag).set(props);},afterImplement:function(key,value){Element.Prototype[key]=value;if(Array[key])return;Elements.implement(key,function(){var items=[],elements=true;for(var i=0,j=this.length;i<j;i++){var returns=this[i][key].apply(this[i],arguments);items.push(returns);if(elements)elements=($type(returns)=='element');}
return(elements)?new Elements(items):items;});}});Element.Prototype={$family:{name:'element'}};Element.Constructors=new Hash;var IFrame=new Native({name:'IFrame',generics:false,initialize:function(){var params=Array.link(arguments,{properties:Object.type,iframe:$defined});var props=params.properties||{};var iframe=document.id(params.iframe);var onload=props.onload||$empty;delete props.onload;props.id=props.name=$pick(props.id,props.name,iframe?(iframe.id||iframe.name):'IFrame_'+$time());iframe=new Element(iframe||'iframe',props);var onFrameLoad=function(){var host=$try(function(){return iframe.contentWindow.location.host;});if(!host||host==window.location.host){var win=new Window(iframe.contentWindow);new Document(iframe.contentWindow.document);$extend(win.Element.prototype,Element.Prototype);}
onload.call(iframe.contentWindow,iframe.contentWindow.document);};var contentWindow=$try(function(){return iframe.contentWindow;});((contentWindow&&contentWindow.document.body)||window.frames[props.id])?onFrameLoad():iframe.addListener('load',onFrameLoad);return iframe;}});var Elements=new Native({initialize:function(elements,options){options=$extend({ddup:true,cash:true},options);elements=elements||[];if(options.ddup||options.cash){var uniques={},returned=[];for(var i=0,l=elements.length;i<l;i++){var el=document.id(elements[i],!options.cash);if(options.ddup){if(uniques[el.uid])continue;uniques[el.uid]=true;}
returned.push(el);}
elements=returned;}
return(options.cash)?$extend(elements,this):elements;}});Elements.implement({filter:function(filter,bind){if(!filter)return this;return new Elements(Array.filter(this,(typeof filter=='string')?function(item){return item.match(filter);}:filter,bind));}});Document.implement({newElement:function(tag,props){if(Browser.Engine.trident&&props){['name','type','checked'].each(function(attribute){if(!props[attribute])return;tag+=' '+attribute+'="'+props[attribute]+'"';if(attribute!='checked')delete props[attribute];});tag='<'+tag+'>';}
return document.id(this.createElement(tag)).set(props);},newTextNode:function(text){return this.createTextNode(text);},getDocument:function(){return this;},getWindow:function(){return this.window;},id:(function(){var types={string:function(id,nocash,doc){id=doc.getElementById(id);return(id)?types.element(id,nocash):null;},element:function(el,nocash){$uid(el);if(!nocash&&!el.$family&&!(/^object|embed$/i).test(el.tagName)){var proto=Element.Prototype;for(var p in proto)el[p]=proto[p];};return el;},object:function(obj,nocash,doc){if(obj.toElement)return types.element(obj.toElement(doc),nocash);return null;}};types.textnode=types.whitespace=types.window=types.document=$arguments(0);return function(el,nocash,doc){if(el&&el.$family&&el.uid)return el;var type=$type(el);return(types[type])?types[type](el,nocash,doc||document):null;};})()});if(window.$==null)Window.implement({$:function(el,nc){return document.id(el,nc,this.document);}});Window.implement({$$:function(selector){if(arguments.length==1&&typeof selector=='string')return this.document.getElements(selector);var elements=[];var args=Array.flatten(arguments);for(var i=0,l=args.length;i<l;i++){var item=args[i];switch($type(item)){case'element':elements.push(item);break;case'string':elements.extend(this.document.getElements(item,true));}}
return new Elements(elements);},getDocument:function(){return this.document;},getWindow:function(){return this;}});Native.implement([Element,Document],{getElement:function(selector,nocash){return document.id(this.getElements(selector,true)[0]||null,nocash);},getElements:function(tags,nocash){tags=tags.split(',');var elements=[];var ddup=(tags.length>1);tags.each(function(tag){var partial=this.getElementsByTagName(tag.trim());(ddup)?elements.extend(partial):elements=partial;},this);return new Elements(elements,{ddup:ddup,cash:!nocash});}});(function(){var collected={},storage={};var props={input:'checked',option:'selected',textarea:(Browser.Engine.webkit&&Browser.Engine.version<420)?'innerHTML':'value'};var get=function(uid){return(storage[uid]||(storage[uid]={}));};var clean=function(item,retain){if(!item)return;var uid=item.uid;if(Browser.Engine.trident){if(item.clearAttributes){var clone=retain&&item.cloneNode(false);item.clearAttributes();if(clone)item.mergeAttributes(clone);}else if(item.removeEvents){item.removeEvents();}
if((/object/i).test(item.tagName)){for(var p in item){if(typeof item[p]=='function')item[p]=$empty;}
Element.dispose(item);}}
if(!uid)return;collected[uid]=storage[uid]=null;};var purge=function(){Hash.each(collected,clean);if(Browser.Engine.trident)$A(document.getElementsByTagName('object')).each(clean);if(window.CollectGarbage)CollectGarbage();collected=storage=null;};var walk=function(element,walk,start,match,all,nocash){var el=element[start||walk];var elements=[];while(el){if(el.nodeType==1&&(!match||Element.match(el,match))){if(!all)return document.id(el,nocash);elements.push(el);}
el=el[walk];}
return(all)?new Elements(elements,{ddup:false,cash:!nocash}):null;};var attributes={'html':'innerHTML','class':'className','for':'htmlFor','defaultValue':'defaultValue','text':(Browser.Engine.trident||(Browser.Engine.webkit&&Browser.Engine.version<420))?'innerText':'textContent'};var bools=['compact','nowrap','ismap','declare','noshade','checked','disabled','readonly','multiple','selected','noresize','defer'];var camels=['value','type','defaultValue','accessKey','cellPadding','cellSpacing','colSpan','frameBorder','maxLength','readOnly','rowSpan','tabIndex','useMap'];bools=bools.associate(bools);Hash.extend(attributes,bools);Hash.extend(attributes,camels.associate(camels.map(String.toLowerCase)));var inserters={before:function(context,element){if(element.parentNode)element.parentNode.insertBefore(context,element);},after:function(context,element){if(!element.parentNode)return;var next=element.nextSibling;(next)?element.parentNode.insertBefore(context,next):element.parentNode.appendChild(context);},bottom:function(context,element){element.appendChild(context);},top:function(context,element){var first=element.firstChild;(first)?element.insertBefore(context,first):element.appendChild(context);}};inserters.inside=inserters.bottom;Hash.each(inserters,function(inserter,where){where=where.capitalize();Element.implement('inject'+where,function(el){inserter(this,document.id(el,true));return this;});Element.implement('grab'+where,function(el){inserter(document.id(el,true),this);return this;});});Element.implement({set:function(prop,value){switch($type(prop)){case'object':for(var p in prop)this.set(p,prop[p]);break;case'string':var property=Element.Properties.get(prop);(property&&property.set)?property.set.apply(this,Array.slice(arguments,1)):this.setProperty(prop,value);}
return this;},get:function(prop){var property=Element.Properties.get(prop);return(property&&property.get)?property.get.apply(this,Array.slice(arguments,1)):this.getProperty(prop);},erase:function(prop){var property=Element.Properties.get(prop);(property&&property.erase)?property.erase.apply(this):this.removeProperty(prop);return this;},setProperty:function(attribute,value){var key=attributes[attribute];if(value==undefined)return this.removeProperty(attribute);if(key&&bools[attribute])value=!!value;(key)?this[key]=value:this.setAttribute(attribute,''+value);return this;},setProperties:function(attributes){for(var attribute in attributes)this.setProperty(attribute,attributes[attribute]);return this;},getProperty:function(attribute){var key=attributes[attribute];var value=(key)?this[key]:this.getAttribute(attribute,2);return(bools[attribute])?!!value:(key)?value:value||null;},getProperties:function(){var args=$A(arguments);return args.map(this.getProperty,this).associate(args);},removeProperty:function(attribute){var key=attributes[attribute];(key)?this[key]=(key&&bools[attribute])?false:'':this.removeAttribute(attribute);return this;},removeProperties:function(){Array.each(arguments,this.removeProperty,this);return this;},hasClass:function(className){return this.className.contains(className,' ');},addClass:function(className){if(!this.hasClass(className))this.className=(this.className+' '+className).clean();return this;},removeClass:function(className){this.className=this.className.replace(new RegExp('(^|\\s)'+className+'(?:\\s|$)'),'$1');return this;},toggleClass:function(className){return this.hasClass(className)?this.removeClass(className):this.addClass(className);},adopt:function(){Array.flatten(arguments).each(function(element){element=document.id(element,true);if(element)this.appendChild(element);},this);return this;},appendText:function(text,where){return this.grab(this.getDocument().newTextNode(text),where);},grab:function(el,where){inserters[where||'bottom'](document.id(el,true),this);return this;},inject:function(el,where){inserters[where||'bottom'](this,document.id(el,true));return this;},replaces:function(el){el=document.id(el,true);el.parentNode.replaceChild(this,el);return this;},wraps:function(el,where){el=document.id(el,true);return this.replaces(el).grab(el,where);},getPrevious:function(match,nocash){return walk(this,'previousSibling',null,match,false,nocash);},getAllPrevious:function(match,nocash){return walk(this,'previousSibling',null,match,true,nocash);},getNext:function(match,nocash){return walk(this,'nextSibling',null,match,false,nocash);},getAllNext:function(match,nocash){return walk(this,'nextSibling',null,match,true,nocash);},getFirst:function(match,nocash){return walk(this,'nextSibling','firstChild',match,false,nocash);},getLast:function(match,nocash){return walk(this,'previousSibling','lastChild',match,false,nocash);},getParent:function(match,nocash){return walk(this,'parentNode',null,match,false,nocash);},getParents:function(match,nocash){return walk(this,'parentNode',null,match,true,nocash);},getSiblings:function(match,nocash){return this.getParent().getChildren(match,nocash).erase(this);},getChildren:function(match,nocash){return walk(this,'nextSibling','firstChild',match,true,nocash);},getWindow:function(){return this.ownerDocument.window;},getDocument:function(){return this.ownerDocument;},getElementById:function(id,nocash){var el=this.ownerDocument.getElementById(id);if(!el)return null;for(var parent=el.parentNode;parent!=this;parent=parent.parentNode){if(!parent)return null;}
return document.id(el,nocash);},getSelected:function(){return new Elements($A(this.options).filter(function(option){return option.selected;}));},getComputedStyle:function(property){if(this.currentStyle)return this.currentStyle[property.camelCase()];var computed=this.getDocument().defaultView.getComputedStyle(this,null);return(computed)?computed.getPropertyValue([property.hyphenate()]):null;},toQueryString:function(){var queryString=[];this.getElements('input, select, textarea',true).each(function(el){if(!el.name||el.disabled||el.type=='submit'||el.type=='reset'||el.type=='file')return;var value=(el.tagName.toLowerCase()=='select')?Element.getSelected(el).map(function(opt){return opt.value;}):((el.type=='radio'||el.type=='checkbox')&&!el.checked)?null:el.value;$splat(value).each(function(val){if(typeof val!='undefined')queryString.push(el.name+'='+encodeURIComponent(val));});});return queryString.join('&');},clone:function(contents,keepid){contents=contents!==false;var clone=this.cloneNode(contents);var clean=function(node,element){if(!keepid)node.removeAttribute('id');if(Browser.Engine.trident){node.clearAttributes();node.mergeAttributes(element);node.removeAttribute('uid');if(node.options){var no=node.options,eo=element.options;for(var j=no.length;j--;)no[j].selected=eo[j].selected;}}
var prop=props[element.tagName.toLowerCase()];if(prop&&element[prop])node[prop]=element[prop];};if(contents){var ce=clone.getElementsByTagName('*'),te=this.getElementsByTagName('*');for(var i=ce.length;i--;)clean(ce[i],te[i]);}
clean(clone,this);return document.id(clone);},destroy:function(){Element.empty(this);Element.dispose(this);clean(this,true);return null;},empty:function(){$A(this.childNodes).each(function(node){Element.destroy(node);});return this;},dispose:function(){return(this.parentNode)?this.parentNode.removeChild(this):this;},hasChild:function(el){el=document.id(el,true);if(!el)return false;if(Browser.Engine.webkit&&Browser.Engine.version<420)return $A(this.getElementsByTagName(el.tagName)).contains(el);return(this.contains)?(this!=el&&this.contains(el)):!!(this.compareDocumentPosition(el)&16);},match:function(tag){return(!tag||(tag==this)||(Element.get(this,'tag')==tag));}});Native.implement([Element,Window,Document],{addListener:function(type,fn){if(type=='unload'){var old=fn,self=this;fn=function(){self.removeListener('unload',fn);old();};}else{collected[this.uid]=this;}
if(this.addEventListener)this.addEventListener(type,fn,false);else this.attachEvent('on'+type,fn);return this;},removeListener:function(type,fn){if(this.removeEventListener)this.removeEventListener(type,fn,false);else this.detachEvent('on'+type,fn);return this;},retrieve:function(property,dflt){var storage=get(this.uid),prop=storage[property];if(dflt!=undefined&&prop==undefined)prop=storage[property]=dflt;return $pick(prop);},store:function(property,value){var storage=get(this.uid);storage[property]=value;return this;},eliminate:function(property){var storage=get(this.uid);delete storage[property];return this;}});window.addListener('unload',purge);})();Element.Properties=new Hash;Element.Properties.style={set:function(style){this.style.cssText=style;},get:function(){return this.style.cssText;},erase:function(){this.style.cssText='';}};Element.Properties.tag={get:function(){return this.tagName.toLowerCase();}};Element.Properties.html=(function(){var wrapper=document.createElement('div');var translations={table:[1,'<table>','</table>'],select:[1,'<select>','</select>'],tbody:[2,'<table><tbody>','</tbody></table>'],tr:[3,'<table><tbody><tr>','</tr></tbody></table>']};translations.thead=translations.tfoot=translations.tbody;var html={set:function(){var html=Array.flatten(arguments).join('');var wrap=Browser.Engine.trident&&translations[this.get('tag')];if(wrap){var first=wrapper;first.innerHTML=wrap[1]+html+wrap[2];for(var i=wrap[0];i--;)first=first.firstChild;this.empty().adopt(first.childNodes);}else{this.innerHTML=html;}}};html.erase=html.set;return html;})();if(Browser.Engine.webkit&&Browser.Engine.version<420)Element.Properties.text={get:function(){if(this.innerText)return this.innerText;var temp=this.ownerDocument.newElement('div',{html:this.innerHTML}).inject(this.ownerDocument.body);var text=temp.innerText;temp.destroy();return text;}};Element.Properties.events={set:function(events){this.addEvents(events);}};Native.implement([Element,Window,Document],{addEvent:function(type,fn){var events=this.retrieve('events',{});events[type]=events[type]||{'keys':[],'values':[]};if(events[type].keys.contains(fn))return this;events[type].keys.push(fn);var realType=type,custom=Element.Events.get(type),condition=fn,self=this;if(custom){if(custom.onAdd)custom.onAdd.call(this,fn);if(custom.condition){condition=function(event){if(custom.condition.call(this,event))return fn.call(this,event);return true;};}
realType=custom.base||realType;}
var defn=function(){return fn.call(self);};var nativeEvent=Element.NativeEvents[realType];if(nativeEvent){if(nativeEvent==2){defn=function(event){event=new Event(event,self.getWindow());if(condition.call(self,event)===false)event.stop();};}
this.addListener(realType,defn);}
events[type].values.push(defn);return this;},removeEvent:function(type,fn){var events=this.retrieve('events');if(!events||!events[type])return this;var pos=events[type].keys.indexOf(fn);if(pos==-1)return this;events[type].keys.splice(pos,1);var value=events[type].values.splice(pos,1)[0];var custom=Element.Events.get(type);if(custom){if(custom.onRemove)custom.onRemove.call(this,fn);type=custom.base||type;}
return(Element.NativeEvents[type])?this.removeListener(type,value):this;},addEvents:function(events){for(var event in events)this.addEvent(event,events[event]);return this;},removeEvents:function(events){var type;if($type(events)=='object'){for(type in events)this.removeEvent(type,events[type]);return this;}
var attached=this.retrieve('events');if(!attached)return this;if(!events){for(type in attached)this.removeEvents(type);this.eliminate('events');}else if(attached[events]){while(attached[events].keys[0])this.removeEvent(events,attached[events].keys[0]);attached[events]=null;}
return this;},fireEvent:function(type,args,delay){var events=this.retrieve('events');if(!events||!events[type])return this;events[type].keys.each(function(fn){fn.create({'bind':this,'delay':delay,'arguments':args})();},this);return this;},cloneEvents:function(from,type){from=document.id(from);var fevents=from.retrieve('events');if(!fevents)return this;if(!type){for(var evType in fevents)this.cloneEvents(from,evType);}else if(fevents[type]){fevents[type].keys.each(function(fn){this.addEvent(type,fn);},this);}
return this;}});Element.NativeEvents={click:2,dblclick:2,mouseup:2,mousedown:2,contextmenu:2,mousewheel:2,DOMMouseScroll:2,mouseover:2,mouseout:2,mousemove:2,selectstart:2,selectend:2,keydown:2,keypress:2,keyup:2,focus:2,blur:2,change:2,reset:2,select:2,submit:2,load:1,unload:1,beforeunload:2,resize:1,move:1,DOMContentLoaded:1,readystatechange:1,error:1,abort:1,scroll:1};(function(){var $check=function(event){var related=event.relatedTarget;if(related==undefined)return true;if(related===false)return false;return($type(this)!='document'&&related!=this&&related.prefix!='xul'&&!this.hasChild(related));};Element.Events=new Hash({mouseenter:{base:'mouseover',condition:$check},mouseleave:{base:'mouseout',condition:$check},mousewheel:{base:(Browser.Engine.gecko)?'DOMMouseScroll':'mousewheel'}});})();Element.Properties.styles={set:function(styles){this.setStyles(styles);}};Element.Properties.opacity={set:function(opacity,novisibility){if(!novisibility){if(opacity==0){if(this.style.visibility!='hidden')this.style.visibility='hidden';}else{if(this.style.visibility!='visible')this.style.visibility='visible';}}
if(!this.currentStyle||!this.currentStyle.hasLayout)this.style.zoom=1;if(Browser.Engine.trident)this.style.filter=(opacity==1)?'':'alpha(opacity='+opacity*100+')';this.style.opacity=opacity;this.store('opacity',opacity);},get:function(){return this.retrieve('opacity',1);}};Element.implement({setOpacity:function(value){return this.set('opacity',value,true);},getOpacity:function(){return this.get('opacity');},setStyle:function(property,value){switch(property){case'opacity':return this.set('opacity',parseFloat(value));case'float':property=(Browser.Engine.trident)?'styleFloat':'cssFloat';}
property=property.camelCase();if($type(value)!='string'){var map=(Element.Styles.get(property)||'@').split(' ');value=$splat(value).map(function(val,i){if(!map[i])return'';return($type(val)=='number')?map[i].replace('@',Math.round(val)):val;}).join(' ');}else if(value==String(Number(value))){value=Math.round(value);}
this.style[property]=value;return this;},getStyle:function(property){switch(property){case'opacity':return this.get('opacity');case'float':property=(Browser.Engine.trident)?'styleFloat':'cssFloat';}
property=property.camelCase();var result=this.style[property];if(!$chk(result)){result=[];for(var style in Element.ShortStyles){if(property!=style)continue;for(var s in Element.ShortStyles[style])result.push(this.getStyle(s));return result.join(' ');}
result=this.getComputedStyle(property);}
if(result){result=String(result);var color=result.match(/rgba?\([\d\s,]+\)/);if(color)result=result.replace(color[0],color[0].rgbToHex());}
if(Browser.Engine.presto||(Browser.Engine.trident&&!$chk(parseInt(result,10)))){if(property.test(/^(height|width)$/)){var values=(property=='width')?['left','right']:['top','bottom'],size=0;values.each(function(value){size+=this.getStyle('border-'+value+'-width').toInt()+this.getStyle('padding-'+value).toInt();},this);return this['offset'+property.capitalize()]-size+'px';}
if((Browser.Engine.presto)&&String(result).test('px'))return result;if(property.test(/(border(.+)Width|margin|padding)/))return'0px';}
return result;},setStyles:function(styles){for(var style in styles)this.setStyle(style,styles[style]);return this;},getStyles:function(){var result={};Array.flatten(arguments).each(function(key){result[key]=this.getStyle(key);},this);return result;}});Element.Styles=new Hash({left:'@px',top:'@px',bottom:'@px',right:'@px',width:'@px',height:'@px',maxWidth:'@px',maxHeight:'@px',minWidth:'@px',minHeight:'@px',backgroundColor:'rgb(@, @, @)',backgroundPosition:'@px @px',color:'rgb(@, @, @)',fontSize:'@px',letterSpacing:'@px',lineHeight:'@px',clip:'rect(@px @px @px @px)',margin:'@px @px @px @px',padding:'@px @px @px @px',border:'@px @ rgb(@, @, @) @px @ rgb(@, @, @) @px @ rgb(@, @, @)',borderWidth:'@px @px @px @px',borderStyle:'@ @ @ @',borderColor:'rgb(@, @, @) rgb(@, @, @) rgb(@, @, @) rgb(@, @, @)',zIndex:'@','zoom':'@',fontWeight:'@',textIndent:'@px',opacity:'@'});Element.ShortStyles={margin:{},padding:{},border:{},borderWidth:{},borderStyle:{},borderColor:{}};['Top','Right','Bottom','Left'].each(function(direction){var Short=Element.ShortStyles;var All=Element.Styles;['margin','padding'].each(function(style){var sd=style+direction;Short[style][sd]=All[sd]='@px';});var bd='border'+direction;Short.border[bd]=All[bd]='@px @ rgb(@, @, @)';var bdw=bd+'Width',bds=bd+'Style',bdc=bd+'Color';Short[bd]={};Short.borderWidth[bdw]=Short[bd][bdw]=All[bdw]='@px';Short.borderStyle[bds]=Short[bd][bds]=All[bds]='@';Short.borderColor[bdc]=Short[bd][bdc]=All[bdc]='rgb(@, @, @)';});(function(){Element.implement({scrollTo:function(x,y){if(isBody(this)){this.getWindow().scrollTo(x,y);}else{this.scrollLeft=x;this.scrollTop=y;}
return this;},getSize:function(){if(isBody(this))return this.getWindow().getSize();return{x:this.offsetWidth,y:this.offsetHeight};},getScrollSize:function(){if(isBody(this))return this.getWindow().getScrollSize();return{x:this.scrollWidth,y:this.scrollHeight};},getScroll:function(){if(isBody(this))return this.getWindow().getScroll();return{x:this.scrollLeft,y:this.scrollTop};},getScrolls:function(){var element=this,position={x:0,y:0};while(element&&!isBody(element)){position.x+=element.scrollLeft;position.y+=element.scrollTop;element=element.parentNode;}
return position;},getOffsetParent:function(){var element=this;if(isBody(element))return null;if(!Browser.Engine.trident)return element.offsetParent;while((element=element.parentNode)&&!isBody(element)){if(styleString(element,'position')!='static')return element;}
return null;},getOffsets:function(){if(this.getBoundingClientRect){var bound=this.getBoundingClientRect(),html=document.id(this.getDocument().documentElement),scroll=html.getScroll(),isFixed=(styleString(this,'position')=='fixed');return{x:parseInt(bound.left,10)+((isFixed)?0:scroll.x)-html.clientLeft,y:parseInt(bound.top,10)+((isFixed)?0:scroll.y)-html.clientTop};}
var element=this,position={x:0,y:0};if(isBody(this))return position;while(element&&!isBody(element)){position.x+=element.offsetLeft;position.y+=element.offsetTop;if(Browser.Engine.gecko){if(!borderBox(element)){position.x+=leftBorder(element);position.y+=topBorder(element);}
var parent=element.parentNode;if(parent&&styleString(parent,'overflow')!='visible'){position.x+=leftBorder(parent);position.y+=topBorder(parent);}}else if(element!=this&&Browser.Engine.webkit){position.x+=leftBorder(element);position.y+=topBorder(element);}
element=element.offsetParent;}
if(Browser.Engine.gecko&&!borderBox(this)){position.x-=leftBorder(this);position.y-=topBorder(this);}
return position;},getPosition:function(relative){if(isBody(this))return{x:0,y:0};var offset=this.getOffsets(),scroll=this.getScrolls();var position={x:offset.x-scroll.x,y:offset.y-scroll.y};var relativePosition=(relative&&(relative=document.id(relative)))?relative.getPosition():{x:0,y:0};return{x:position.x-relativePosition.x,y:position.y-relativePosition.y};},getCoordinates:function(element){if(isBody(this))return this.getWindow().getCoordinates();var position=this.getPosition(element),size=this.getSize();var obj={left:position.x,top:position.y,width:size.x,height:size.y};obj.right=obj.left+obj.width;obj.bottom=obj.top+obj.height;return obj;},computePosition:function(obj){return{left:obj.x-styleNumber(this,'margin-left'),top:obj.y-styleNumber(this,'margin-top')};},setPosition:function(obj){return this.setStyles(this.computePosition(obj));}});Native.implement([Document,Window],{getSize:function(){if(Browser.Engine.presto||Browser.Engine.webkit){var win=this.getWindow();return{x:win.innerWidth,y:win.innerHeight};}
var doc=getCompatElement(this);return{x:doc.clientWidth,y:doc.clientHeight};},getScroll:function(){var win=this.getWindow(),doc=getCompatElement(this);return{x:win.pageXOffset||doc.scrollLeft,y:win.pageYOffset||doc.scrollTop};},getScrollSize:function(){var doc=getCompatElement(this),min=this.getSize();return{x:Math.max(doc.scrollWidth,min.x),y:Math.max(doc.scrollHeight,min.y)};},getPosition:function(){return{x:0,y:0};},getCoordinates:function(){var size=this.getSize();return{top:0,left:0,bottom:size.y,right:size.x,height:size.y,width:size.x};}});var styleString=Element.getComputedStyle;function styleNumber(element,style){return styleString(element,style).toInt()||0;};function borderBox(element){return styleString(element,'-moz-box-sizing')=='border-box';};function topBorder(element){return styleNumber(element,'border-top-width');};function leftBorder(element){return styleNumber(element,'border-left-width');};function isBody(element){return(/^(?:body|html)$/i).test(element.tagName);};function getCompatElement(element){var doc=element.getDocument();return(!doc.compatMode||doc.compatMode=='CSS1Compat')?doc.html:doc.body;};})();Element.alias('setPosition','position');Native.implement([Window,Document,Element],{getHeight:function(){return this.getSize().y;},getWidth:function(){return this.getSize().x;},getScrollTop:function(){return this.getScroll().y;},getScrollLeft:function(){return this.getScroll().x;},getScrollHeight:function(){return this.getScrollSize().y;},getScrollWidth:function(){return this.getScrollSize().x;},getTop:function(){return this.getPosition().y;},getLeft:function(){return this.getPosition().x;}});Native.implement([Document,Element],{getElements:function(expression,nocash){expression=expression.split(',');var items,local={};for(var i=0,l=expression.length;i<l;i++){var selector=expression[i],elements=Selectors.Utils.search(this,selector,local);if(i!=0&&elements.item)elements=$A(elements);items=(i==0)?elements:(items.item)?$A(items).concat(elements):items.concat(elements);}
return new Elements(items,{ddup:(expression.length>1),cash:!nocash});}});Element.implement({match:function(selector){if(!selector||(selector==this))return true;var tagid=Selectors.Utils.parseTagAndID(selector);var tag=tagid[0],id=tagid[1];if(!Selectors.Filters.byID(this,id)||!Selectors.Filters.byTag(this,tag))return false;var parsed=Selectors.Utils.parseSelector(selector);return(parsed)?Selectors.Utils.filter(this,parsed,{}):true;}});var Selectors={Cache:{nth:{},parsed:{}}};Selectors.RegExps={id:(/#([\w-]+)/),tag:(/^(\w+|\*)/),quick:(/^(\w+|\*)$/),splitter:(/\s*([+>~\s])\s*([a-zA-Z#.*:\[])/g),combined:(/\.([\w-]+)|\[(\w+)(?:([!*^$~|]?=)(["']?)([^\4]*?)\4)?\]|:([\w-]+)(?:\(["']?(.*?)?["']?\)|$)/g)};Selectors.Utils={chk:function(item,uniques){if(!uniques)return true;var uid=$uid(item);if(!uniques[uid])return uniques[uid]=true;return false;},parseNthArgument:function(argument){if(Selectors.Cache.nth[argument])return Selectors.Cache.nth[argument];var parsed=argument.match(/^([+-]?\d*)?([a-z]+)?([+-]?\d*)?$/);if(!parsed)return false;var inta=parseInt(parsed[1],10);var a=(inta||inta===0)?inta:1;var special=parsed[2]||false;var b=parseInt(parsed[3],10)||0;if(a!=0){b--;while(b<1)b+=a;while(b>=a)b-=a;}else{a=b;special='index';}
switch(special){case'n':parsed={a:a,b:b,special:'n'};break;case'odd':parsed={a:2,b:0,special:'n'};break;case'even':parsed={a:2,b:1,special:'n'};break;case'first':parsed={a:0,special:'index'};break;case'last':parsed={special:'last-child'};break;case'only':parsed={special:'only-child'};break;default:parsed={a:(a-1),special:'index'};}
return Selectors.Cache.nth[argument]=parsed;},parseSelector:function(selector){if(Selectors.Cache.parsed[selector])return Selectors.Cache.parsed[selector];var m,parsed={classes:[],pseudos:[],attributes:[]};while((m=Selectors.RegExps.combined.exec(selector))){var cn=m[1],an=m[2],ao=m[3],av=m[5],pn=m[6],pa=m[7];if(cn){parsed.classes.push(cn);}else if(pn){var parser=Selectors.Pseudo.get(pn);if(parser)parsed.pseudos.push({parser:parser,argument:pa});else parsed.attributes.push({name:pn,operator:'=',value:pa});}else if(an){parsed.attributes.push({name:an,operator:ao,value:av});}}
if(!parsed.classes.length)delete parsed.classes;if(!parsed.attributes.length)delete parsed.attributes;if(!parsed.pseudos.length)delete parsed.pseudos;if(!parsed.classes&&!parsed.attributes&&!parsed.pseudos)parsed=null;return Selectors.Cache.parsed[selector]=parsed;},parseTagAndID:function(selector){var tag=selector.match(Selectors.RegExps.tag);var id=selector.match(Selectors.RegExps.id);return[(tag)?tag[1]:'*',(id)?id[1]:false];},filter:function(item,parsed,local){var i;if(parsed.classes){for(i=parsed.classes.length;i--;i){var cn=parsed.classes[i];if(!Selectors.Filters.byClass(item,cn))return false;}}
if(parsed.attributes){for(i=parsed.attributes.length;i--;i){var att=parsed.attributes[i];if(!Selectors.Filters.byAttribute(item,att.name,att.operator,att.value))return false;}}
if(parsed.pseudos){for(i=parsed.pseudos.length;i--;i){var psd=parsed.pseudos[i];if(!Selectors.Filters.byPseudo(item,psd.parser,psd.argument,local))return false;}}
return true;},getByTagAndID:function(ctx,tag,id){if(id){var item=(ctx.getElementById)?ctx.getElementById(id,true):Element.getElementById(ctx,id,true);return(item&&Selectors.Filters.byTag(item,tag))?[item]:[];}else{return ctx.getElementsByTagName(tag);}},search:function(self,expression,local){var splitters=[];var selectors=expression.trim().replace(Selectors.RegExps.splitter,function(m0,m1,m2){splitters.push(m1);return':)'+m2;}).split(':)');var items,filtered,item;for(var i=0,l=selectors.length;i<l;i++){var selector=selectors[i];if(i==0&&Selectors.RegExps.quick.test(selector)){items=self.getElementsByTagName(selector);continue;}
var splitter=splitters[i-1];var tagid=Selectors.Utils.parseTagAndID(selector);var tag=tagid[0],id=tagid[1];if(i==0){items=Selectors.Utils.getByTagAndID(self,tag,id);}else{var uniques={},found=[];for(var j=0,k=items.length;j<k;j++)found=Selectors.Getters[splitter](found,items[j],tag,id,uniques);items=found;}
var parsed=Selectors.Utils.parseSelector(selector);if(parsed){filtered=[];for(var m=0,n=items.length;m<n;m++){item=items[m];if(Selectors.Utils.filter(item,parsed,local))filtered.push(item);}
items=filtered;}}
return items;}};Selectors.Getters={' ':function(found,self,tag,id,uniques){var items=Selectors.Utils.getByTagAndID(self,tag,id);for(var i=0,l=items.length;i<l;i++){var item=items[i];if(Selectors.Utils.chk(item,uniques))found.push(item);}
return found;},'>':function(found,self,tag,id,uniques){var children=Selectors.Utils.getByTagAndID(self,tag,id);for(var i=0,l=children.length;i<l;i++){var child=children[i];if(child.parentNode==self&&Selectors.Utils.chk(child,uniques))found.push(child);}
return found;},'+':function(found,self,tag,id,uniques){while((self=self.nextSibling)){if(self.nodeType==1){if(Selectors.Utils.chk(self,uniques)&&Selectors.Filters.byTag(self,tag)&&Selectors.Filters.byID(self,id))found.push(self);break;}}
return found;},'~':function(found,self,tag,id,uniques){while((self=self.nextSibling)){if(self.nodeType==1){if(!Selectors.Utils.chk(self,uniques))break;if(Selectors.Filters.byTag(self,tag)&&Selectors.Filters.byID(self,id))found.push(self);}}
return found;}};Selectors.Filters={byTag:function(self,tag){return(tag=='*'||(self.tagName&&self.tagName.toLowerCase()==tag));},byID:function(self,id){return(!id||(self.id&&self.id==id));},byClass:function(self,klass){return(self.className&&self.className.contains(klass,' '));},byPseudo:function(self,parser,argument,local){return parser.call(self,argument,local);},byAttribute:function(self,name,operator,value){var result=Element.prototype.getProperty.call(self,name);if(!result)return(operator=='!=');if(!operator||value==undefined)return true;switch(operator){case'=':return(result==value);case'*=':return(result.contains(value));case'^=':return(result.substr(0,value.length)==value);case'$=':return(result.substr(result.length-value.length)==value);case'!=':return(result!=value);case'~=':return result.contains(value,' ');case'|=':return result.contains(value,'-');}
return false;}};Selectors.Pseudo=new Hash({checked:function(){return this.checked;},empty:function(){return!(this.innerText||this.textContent||'').length;},not:function(selector){return!Element.match(this,selector);},contains:function(text){return(this.innerText||this.textContent||'').contains(text);},'first-child':function(){return Selectors.Pseudo.index.call(this,0);},'last-child':function(){var element=this;while((element=element.nextSibling)){if(element.nodeType==1)return false;}
return true;},'only-child':function(){var prev=this;while((prev=prev.previousSibling)){if(prev.nodeType==1)return false;}
var next=this;while((next=next.nextSibling)){if(next.nodeType==1)return false;}
return true;},'nth-child':function(argument,local){argument=(argument==undefined)?'n':argument;var parsed=Selectors.Utils.parseNthArgument(argument);if(parsed.special!='n')return Selectors.Pseudo[parsed.special].call(this,parsed.a,local);var count=0;local.positions=local.positions||{};var uid=$uid(this);if(!local.positions[uid]){var self=this;while((self=self.previousSibling)){if(self.nodeType!=1)continue;count++;var position=local.positions[$uid(self)];if(position!=undefined){count=position+count;break;}}
local.positions[uid]=count;}
return(local.positions[uid]%parsed.a==parsed.b);},index:function(index){var element=this,count=0;while((element=element.previousSibling)){if(element.nodeType==1&&++count>index)return false;}
return(count==index);},even:function(argument,local){return Selectors.Pseudo['nth-child'].call(this,'2n+1',local);},odd:function(argument,local){return Selectors.Pseudo['nth-child'].call(this,'2n',local);},selected:function(){return this.selected;},enabled:function(){return(this.disabled===false);}});Element.Events.domready={onAdd:function(fn){if(Browser.loaded)fn.call(this);}};(function(){var domready=function(){if(Browser.loaded)return;Browser.loaded=true;window.fireEvent('domready');document.fireEvent('domready');};if(Browser.Engine.trident){var temp=document.createElement('div');(function(){($try(function(){temp.doScroll();return document.id(temp).inject(document.body).set('html','temp').dispose();}))?domready():arguments.callee.delay(50);})();}else if(Browser.Engine.webkit&&Browser.Engine.version<525){(function(){(['loaded','complete'].contains(document.readyState))?domready():arguments.callee.delay(50);})();}else{window.addEvent('load',domready);document.addEvent('DOMContentLoaded',domready);}})();var JSON=new Hash({$specialChars:{'\b':'\\b','\t':'\\t','\n':'\\n','\f':'\\f','\r':'\\r','"':'\\"','\\':'\\\\'},$replaceChars:function(chr){return JSON.$specialChars[chr]||'\\u00'+Math.floor(chr.charCodeAt()/16).toString(16)+(chr.charCodeAt()%16).toString(16);},encode:function(obj){switch($type(obj)){case'string':return'"'+obj.replace(/[\x00-\x1f\\"]/g,JSON.$replaceChars)+'"';case'array':return'['+String(obj.map(JSON.encode).clean())+']';case'object':case'hash':var string=[];Hash.each(obj,function(value,key){var json=JSON.encode(value);if(json)string.push(JSON.encode(key)+':'+json);});return'{'+string+'}';case'number':case'boolean':return String(obj);case false:return'null';}
return null;},decode:function(string,secure){if($type(string)!='string'||!string.length)return null;if(secure&&!(/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(string.replace(/\\./g,'@').replace(/"[^"\\\n\r]*"/g,'')))return null;return eval('('+string+')');}});Native.implement([Hash,Array,String,Number],{toJSON:function(){return JSON.encode(this);}});var Cookie=new Class({Implements:Options,options:{path:false,domain:false,duration:false,secure:false,document:document},initialize:function(key,options){this.key=key;this.setOptions(options);},write:function(value){value=encodeURIComponent(value);if(this.options.domain)value+='; domain='+this.options.domain;if(this.options.path)value+='; path='+this.options.path;if(this.options.duration){var date=new Date();date.setTime(date.getTime()+this.options.duration*24*60*60*1000);value+='; expires='+date.toGMTString();}
if(this.options.secure)value+='; secure';this.options.document.cookie=this.key+'='+value;return this;},read:function(){var value=this.options.document.cookie.match('(?:^|;)\\s*'+this.key.escapeRegExp()+'=([^;]*)');return(value)?decodeURIComponent(value[1]):null;},dispose:function(){new Cookie(this.key,$merge(this.options,{duration:-1})).write('');return this;}});Cookie.write=function(key,value,options){return new Cookie(key,options).write(value);};Cookie.read=function(key){return new Cookie(key).read();};Cookie.dispose=function(key,options){return new Cookie(key,options).dispose();};var Swiff=new Class({Implements:[Options],options:{id:null,height:1,width:1,container:null,properties:{},params:{quality:'high',allowScriptAccess:'always',wMode:'transparent',swLiveConnect:true},callBacks:{},vars:{}},toElement:function(){return this.object;},initialize:function(path,options){this.instance='Swiff_'+$time();this.setOptions(options);options=this.options;var id=this.id=options.id||this.instance;var container=document.id(options.container);Swiff.CallBacks[this.instance]={};var params=options.params,vars=options.vars,callBacks=options.callBacks;var properties=$extend({height:options.height,width:options.width},options.properties);var self=this;for(var callBack in callBacks){Swiff.CallBacks[this.instance][callBack]=(function(option){return function(){return option.apply(self.object,arguments);};})(callBacks[callBack]);vars[callBack]='Swiff.CallBacks.'+this.instance+'.'+callBack;}
params.flashVars=Hash.toQueryString(vars);if(Browser.Engine.trident){properties.classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000';params.movie=path;}else{properties.type='application/x-shockwave-flash';properties.data=path;}
var build='<object id="'+id+'"';for(var property in properties)build+=' '+property+'="'+properties[property]+'"';build+='>';for(var param in params){if(params[param])build+='<param name="'+param+'" value="'+params[param]+'" />';}
build+='</object>';this.object=((container)?container.empty():new Element('div')).set('html',build).firstChild;},replaces:function(element){element=document.id(element,true);element.parentNode.replaceChild(this.toElement(),element);return this;},inject:function(element){document.id(element,true).appendChild(this.toElement());return this;},remote:function(){return Swiff.remote.apply(Swiff,[this.toElement()].extend(arguments));}});Swiff.CallBacks={};Swiff.remote=function(obj,fn){var rs=obj.CallFunction('<invoke name="'+fn+'" returntype="javascript">'+__flash__argumentsToXML(arguments,2)+'</invoke>');return eval(rs);};var Fx=new Class({Implements:[Chain,Events,Options],options:{fps:50,unit:false,duration:500,link:'ignore'},initialize:function(options){this.subject=this.subject||this;this.setOptions(options);this.options.duration=Fx.Durations[this.options.duration]||this.options.duration.toInt();var wait=this.options.wait;if(wait===false)this.options.link='cancel';},getTransition:function(){return function(p){return-(Math.cos(Math.PI*p)-1)/2;};},step:function(){var time=$time();if(time<this.time+this.options.duration){var delta=this.transition((time-this.time)/this.options.duration);this.set(this.compute(this.from,this.to,delta));}else{this.set(this.compute(this.from,this.to,1));this.complete();}},set:function(now){return now;},compute:function(from,to,delta){return Fx.compute(from,to,delta);},check:function(){if(!this.timer)return true;switch(this.options.link){case'cancel':this.cancel();return true;case'chain':this.chain(this.caller.bind(this,arguments));return false;}
return false;},start:function(from,to){if(!this.check(from,to))return this;this.from=from;this.to=to;this.time=0;this.transition=this.getTransition();this.startTimer();this.onStart();return this;},complete:function(){if(this.stopTimer())this.onComplete();return this;},cancel:function(){if(this.stopTimer())this.onCancel();return this;},onStart:function(){this.fireEvent('start',this.subject);},onComplete:function(){this.fireEvent('complete',this.subject);if(!this.callChain())this.fireEvent('chainComplete',this.subject);},onCancel:function(){this.fireEvent('cancel',this.subject).clearChain();},pause:function(){this.stopTimer();return this;},resume:function(){this.startTimer();return this;},stopTimer:function(){if(!this.timer)return false;this.time=$time()-this.time;this.timer=$clear(this.timer);return true;},startTimer:function(){if(this.timer)return false;this.time=$time()-this.time;this.timer=this.step.periodical(Math.round(1000/this.options.fps),this);return true;}});Fx.compute=function(from,to,delta){return(to-from)*delta+from;};Fx.Durations={'short':250,'normal':500,'long':1000};Fx.CSS=new Class({Extends:Fx,prepare:function(element,property,values){values=$splat(values);var values1=values[1];if(!$chk(values1)){values[1]=values[0];values[0]=element.getStyle(property);}
var parsed=values.map(this.parse);return{from:parsed[0],to:parsed[1]};},parse:function(value){value=$lambda(value)();value=(typeof value=='string')?value.split(' '):$splat(value);return value.map(function(val){val=String(val);var found=false;Fx.CSS.Parsers.each(function(parser,key){if(found)return;var parsed=parser.parse(val);if($chk(parsed))found={value:parsed,parser:parser};});found=found||{value:val,parser:Fx.CSS.Parsers.String};return found;});},compute:function(from,to,delta){var computed=[];(Math.min(from.length,to.length)).times(function(i){computed.push({value:from[i].parser.compute(from[i].value,to[i].value,delta),parser:from[i].parser});});computed.$family={name:'fx:css:value'};return computed;},serve:function(value,unit){if($type(value)!='fx:css:value')value=this.parse(value);var returned=[];value.each(function(bit){returned=returned.concat(bit.parser.serve(bit.value,unit));});return returned;},render:function(element,property,value,unit){element.setStyle(property,this.serve(value,unit));},search:function(selector){if(Fx.CSS.Cache[selector])return Fx.CSS.Cache[selector];var to={};Array.each(document.styleSheets,function(sheet,j){var href=sheet.href;if(href&&href.contains('://')&&!href.contains(document.domain))return;var rules=sheet.rules||sheet.cssRules;Array.each(rules,function(rule,i){if(!rule.style)return;var selectorText=(rule.selectorText)?rule.selectorText.replace(/^\w+/,function(m){return m.toLowerCase();}):null;if(!selectorText||!selectorText.test('^'+selector+'$'))return;Element.Styles.each(function(value,style){if(!rule.style[style]||Element.ShortStyles[style])return;value=String(rule.style[style]);to[style]=(value.test(/^rgb/))?value.rgbToHex():value;});});});return Fx.CSS.Cache[selector]=to;}});Fx.CSS.Cache={};Fx.CSS.Parsers=new Hash({Color:{parse:function(value){if(value.match(/^#[0-9a-f]{3,6}$/i))return value.hexToRgb(true);return((value=value.match(/(\d+),\s*(\d+),\s*(\d+)/)))?[value[1],value[2],value[3]]:false;},compute:function(from,to,delta){return from.map(function(value,i){return Math.round(Fx.compute(from[i],to[i],delta));});},serve:function(value){return value.map(Number);}},Number:{parse:parseFloat,compute:Fx.compute,serve:function(value,unit){return(unit)?value+unit:value;}},String:{parse:$lambda(false),compute:$arguments(1),serve:$arguments(0)}});Fx.Tween=new Class({Extends:Fx.CSS,initialize:function(element,options){this.element=this.subject=document.id(element);this.parent(options);},set:function(property,now){if(arguments.length==1){now=property;property=this.property||this.options.property;}
this.render(this.element,property,now,this.options.unit);return this;},start:function(property,from,to){if(!this.check(property,from,to))return this;var args=Array.flatten(arguments);this.property=this.options.property||args.shift();var parsed=this.prepare(this.element,this.property,args);return this.parent(parsed.from,parsed.to);}});Element.Properties.tween={set:function(options){var tween=this.retrieve('tween');if(tween)tween.cancel();return this.eliminate('tween').store('tween:options',$extend({link:'cancel'},options));},get:function(options){if(options||!this.retrieve('tween')){if(options||!this.retrieve('tween:options'))this.set('tween',options);this.store('tween',new Fx.Tween(this,this.retrieve('tween:options')));}
return this.retrieve('tween');}};Element.implement({tween:function(property,from,to){this.get('tween').start(arguments);return this;},fade:function(how){var fade=this.get('tween'),o='opacity',toggle;how=$pick(how,'toggle');switch(how){case'in':fade.start(o,1);break;case'out':fade.start(o,0);break;case'show':fade.set(o,1);break;case'hide':fade.set(o,0);break;case'toggle':var flag=this.retrieve('fade:flag',this.get('opacity')==1);fade.start(o,(flag)?0:1);this.store('fade:flag',!flag);toggle=true;break;default:fade.start(o,arguments);}
if(!toggle)this.eliminate('fade:flag');return this;},highlight:function(start,end){if(!end){end=this.retrieve('highlight:original',this.getStyle('background-color'));end=(end=='transparent')?'#fff':end;}
var tween=this.get('tween');tween.start('background-color',start||'#ffff88',end).chain(function(){this.setStyle('background-color',this.retrieve('highlight:original'));tween.callChain();}.bind(this));return this;}});Fx.Morph=new Class({Extends:Fx.CSS,initialize:function(element,options){this.element=this.subject=document.id(element);this.parent(options);},set:function(now){if(typeof now=='string')now=this.search(now);for(var p in now)this.render(this.element,p,now[p],this.options.unit);return this;},compute:function(from,to,delta){var now={};for(var p in from)now[p]=this.parent(from[p],to[p],delta);return now;},start:function(properties){if(!this.check(properties))return this;if(typeof properties=='string')properties=this.search(properties);var from={},to={};for(var p in properties){var parsed=this.prepare(this.element,p,properties[p]);from[p]=parsed.from;to[p]=parsed.to;}
return this.parent(from,to);}});Element.Properties.morph={set:function(options){var morph=this.retrieve('morph');if(morph)morph.cancel();return this.eliminate('morph').store('morph:options',$extend({link:'cancel'},options));},get:function(options){if(options||!this.retrieve('morph')){if(options||!this.retrieve('morph:options'))this.set('morph',options);this.store('morph',new Fx.Morph(this,this.retrieve('morph:options')));}
return this.retrieve('morph');}};Element.implement({morph:function(props){this.get('morph').start(props);return this;}});Fx.implement({getTransition:function(){var trans=this.options.transition||Fx.Transitions.Sine.easeInOut;if(typeof trans=='string'){var data=trans.split(':');trans=Fx.Transitions;trans=trans[data[0]]||trans[data[0].capitalize()];if(data[1])trans=trans['ease'+data[1].capitalize()+(data[2]?data[2].capitalize():'')];}
return trans;}});Fx.Transition=function(transition,params){params=$splat(params);return $extend(transition,{easeIn:function(pos){return transition(pos,params);},easeOut:function(pos){return 1-transition(1-pos,params);},easeInOut:function(pos){return(pos<=0.5)?transition(2*pos,params)/2:(2-transition(2*(1-pos),params))/2;}});};Fx.Transitions=new Hash({linear:$arguments(0)});Fx.Transitions.extend=function(transitions){for(var transition in transitions)Fx.Transitions[transition]=new Fx.Transition(transitions[transition]);};Fx.Transitions.extend({Pow:function(p,x){return Math.pow(p,x[0]||6);},Expo:function(p){return Math.pow(2,8*(p-1));},Circ:function(p){return 1-Math.sin(Math.acos(p));},Sine:function(p){return 1-Math.sin((1-p)*Math.PI/2);},Back:function(p,x){x=x[0]||1.618;return Math.pow(p,2)*((x+1)*p-x);},Bounce:function(p){var value;for(var a=0,b=1;1;a+=b,b/=2){if(p>=(7-4*a)/11){value=b*b-Math.pow((11-6*a-11*p)/4,2);break;}}
return value;},Elastic:function(p,x){return Math.pow(2,10*--p)*Math.cos(20*p*Math.PI*(x[0]||1)/3);}});['Quad','Cubic','Quart','Quint'].each(function(transition,i){Fx.Transitions[transition]=new Fx.Transition(function(p){return Math.pow(p,[i+2]);});});var Request=new Class({Implements:[Chain,Events,Options],options:{url:'',data:'',headers:{'X-Requested-With':'XMLHttpRequest','Accept':'text/javascript, text/html, application/xml, text/xml, */*'},async:true,format:false,method:'post',link:'ignore',isSuccess:null,emulation:true,urlEncoded:true,encoding:'utf-8',evalScripts:false,evalResponse:false,noCache:false},initialize:function(options){this.xhr=new Browser.Request();this.setOptions(options);this.options.isSuccess=this.options.isSuccess||this.isSuccess;this.headers=new Hash(this.options.headers);},onStateChange:function(){if(this.xhr.readyState!=4||!this.running)return;this.running=false;this.status=0;$try(function(){this.status=this.xhr.status;}.bind(this));this.xhr.onreadystatechange=$empty;if(this.options.isSuccess.call(this,this.status)){this.response={text:this.xhr.responseText,xml:this.xhr.responseXML};this.success(this.response.text,this.response.xml);}else{this.response={text:null,xml:null};this.failure();}},isSuccess:function(){return((this.status>=200)&&(this.status<300));},processScripts:function(text){if(this.options.evalResponse||(/(ecma|java)script/).test(this.getHeader('Content-type')))return $exec(text);return text.stripScripts(this.options.evalScripts);},success:function(text,xml){this.onSuccess(this.processScripts(text),xml);},onSuccess:function(){this.fireEvent('complete',arguments).fireEvent('success',arguments).callChain();},failure:function(){this.onFailure();},onFailure:function(){this.fireEvent('complete').fireEvent('failure',this.xhr);},setHeader:function(name,value){this.headers.set(name,value);return this;},getHeader:function(name){return $try(function(){return this.xhr.getResponseHeader(name);}.bind(this));},check:function(){if(!this.running)return true;switch(this.options.link){case'cancel':this.cancel();return true;case'chain':this.chain(this.caller.bind(this,arguments));return false;}
return false;},send:function(options){if(!this.check(options))return this;this.running=true;var type=$type(options);if(type=='string'||type=='element')options={data:options};var old=this.options;options=$extend({data:old.data,url:old.url,method:old.method},options);var data=options.data,url=options.url,method=options.method.toLowerCase();switch($type(data)){case'element':data=document.id(data).toQueryString();break;case'object':case'hash':data=Hash.toQueryString(data);}
if(this.options.format){var format='format='+this.options.format;data=(data)?format+'&'+data:format;}
if(this.options.emulation&&!['get','post'].contains(method)){var _method='_method='+method;data=(data)?_method+'&'+data:_method;method='post';}
if(this.options.urlEncoded&&method=='post'){var encoding=(this.options.encoding)?'; charset='+this.options.encoding:'';this.headers.set('Content-type','application/x-www-form-urlencoded'+encoding);}
if(this.options.noCache){var noCache='noCache='+new Date().getTime();data=(data)?noCache+'&'+data:noCache;}
var trimPosition=url.lastIndexOf('/');if(trimPosition>-1&&(trimPosition=url.indexOf('#'))>-1)url=url.substr(0,trimPosition);if(data&&method=='get'){url=url+(url.contains('?')?'&':'?')+data;data=null;}
this.xhr.open(method.toUpperCase(),url,this.options.async);this.xhr.onreadystatechange=this.onStateChange.bind(this);this.headers.each(function(value,key){try{this.xhr.setRequestHeader(key,value);}catch(e){this.fireEvent('exception',[key,value]);}},this);this.fireEvent('request');this.xhr.send(data);if(!this.options.async)this.onStateChange();return this;},cancel:function(){if(!this.running)return this;this.running=false;this.xhr.abort();this.xhr.onreadystatechange=$empty;this.xhr=new Browser.Request();this.fireEvent('cancel');return this;}});(function(){var methods={};['get','post','put','delete','GET','POST','PUT','DELETE'].each(function(method){methods[method]=function(){var params=Array.link(arguments,{url:String.type,data:$defined});return this.send($extend(params,{method:method}));};});Request.implement(methods);})();Element.Properties.send={set:function(options){var send=this.retrieve('send');if(send)send.cancel();return this.eliminate('send').store('send:options',$extend({data:this,link:'cancel',method:this.get('method')||'post',url:this.get('action')},options));},get:function(options){if(options||!this.retrieve('send')){if(options||!this.retrieve('send:options'))this.set('send',options);this.store('send',new Request(this.retrieve('send:options')));}
return this.retrieve('send');}};Element.implement({send:function(url){var sender=this.get('send');sender.send({data:this,url:url||sender.options.url});return this;}});Request.HTML=new Class({Extends:Request,options:{update:false,append:false,evalScripts:true,filter:false},processHTML:function(text){var match=text.match(/<body[^>]*>([\s\S]*?)<\/body>/i);text=(match)?match[1]:text;var container=new Element('div');return $try(function(){var root='<root>'+text+'</root>',doc;if(Browser.Engine.trident){doc=new ActiveXObject('Microsoft.XMLDOM');doc.async=false;doc.loadXML(root);}else{doc=new DOMParser().parseFromString(root,'text/xml');}
root=doc.getElementsByTagName('root')[0];if(!root)return null;for(var i=0,k=root.childNodes.length;i<k;i++){var child=Element.clone(root.childNodes[i],true,true);if(child)container.grab(child);}
return container;})||container.set('html',text);},success:function(text){var options=this.options,response=this.response;response.html=text.stripScripts(function(script){response.javascript=script;});var temp=this.processHTML(response.html);response.tree=temp.childNodes;response.elements=temp.getElements('*');if(options.filter)response.tree=response.elements.filter(options.filter);if(options.update)document.id(options.update).empty().set('html',response.html);else if(options.append)document.id(options.append).adopt(temp.getChildren());if(options.evalScripts)$exec(response.javascript);this.onSuccess(response.tree,response.elements,response.html,response.javascript);}});Element.Properties.load={set:function(options){var load=this.retrieve('load');if(load)load.cancel();return this.eliminate('load').store('load:options',$extend({data:this,link:'cancel',update:this,method:'get'},options));},get:function(options){if(options||!this.retrieve('load')){if(options||!this.retrieve('load:options'))this.set('load',options);this.store('load',new Request.HTML(this.retrieve('load:options')));}
return this.retrieve('load');}};Element.implement({load:function(){this.get('load').send(Array.link(arguments,{data:Object.type,url:String.type}));return this;}});Request.JSON=new Class({Extends:Request,options:{secure:true},initialize:function(options){this.parent(options);this.headers.extend({'Accept':'application/json','X-Request':'JSON'});},success:function(text){this.response.json=JSON.decode(text,this.options.secure);this.onSuccess(this.response.json,text);}});(function(){var domload=function(){if(Browser.domLoaded)return;Browser.domLoaded=true;window.fireEvent('domload');};window.addEvent('domready',domload);window.addEvent('siteload',domload);Browser.setDomLoaded=domload;})();Element.Events.domload={onAdd:function(fn){if(Browser.domLoaded){fn.call(this);}}};(function(){var styleload=function(){if(Browser.stylesLoaded)return;Browser.stylesLoaded=true;window.fireEvent('styleload');};window.addEvent('siteload',styleload);var checkStyleload=function(){(function(){(document.styleSheets.length>0)?styleload():arguments.callee.delay(30);})();};window.addEvent('domload',checkStyleload);})();Element.Events.styleload={onAdd:function(fn){if(Browser.stylesLoaded){fn.call(this);}}};window.addEvent('load',function(){window.fireEvent('siteload');});var FontResize={options:{interval_delay:50,font_size:32},scale:1,scale_step:'m',loaded:false,started:false,has_listener:false,start:function(){if(Browser.Engine.presto)return;this.element=new Element('div',{styles:{position:'absolute',top:0,left:-19999,visibility:'hidden','font-size':'xx-large','line-height':'1','font-family':'Arial'}}).set('html','<div style="font-size:500%">X</div>').inject(document.body);this.orig_height=this.options.font_size*5;this.old_height=this.orig_height;this.interval=this.check.periodical(this.options.interval_delay,this);this.check();window.addEvent('keydown',(function(){this.check.delay(1,this);}).bind(this));window.addEvent('mousewheel',(function(){this.check.delay(1,this);}).bind(this));},check:function(){this.new_height=this.element.getSize().y;if(this.old_height==this.new_height)return;this.old_height=this.new_height;this.scale=(this.new_height/this.orig_height);if(this.scale<0.80)
this.scale_step='xs';else if(this.scale<1)
this.scale_step='s';else if(this.scale==1)
this.scale_step='m';else if(this.scale>1.25)
this.scale_step='xl';else
this.scale_step='l';window.fireEvent('fontresize',{scale:this.scale,scale_step:this.scale_step});}};if(Browser.Engine.trident&&navigator.appVersion.indexOf('MSIE 5')>-1){FontResize.options.font_size=48;}
window.addEvent('domload',function(){FontResize.loaded=true;if(FontResize.has_listener){FontResize.start.bind(FontResize)();}});Element.Events.fontresize={onAdd:function(fn){FontResize.has_listener=true;if(FontResize.loaded&&!FontResize.started){FontResize.start.bind(FontResize)();}}};var MiceLanguageManager=new Class({Implements:Options,options:{language:'en'},sections:{'en':{}},requested:{'en':{}},initialize:function(options,sections){if($defined(options)){this.setOptions(options);}
if($defined(sections)){$each(sections,function(el,i){$each(el,function(eli,ii){this.addSection(ii,eli,i);},this);},this);}},addSection:function(key,section,language){if(!$defined(key)||!$defined(section)){return false;}
if(!$defined(language)){language=this.options.language;}
if(!$defined(this.sections[language])){this.sections[language]={};}
if(!key){$extend(this.sections[language],section);}
this.sections[language][key]=section;return true;},getSection:function(key,callback,language){if(!$defined(key)){return false;}
if(!$defined(language)){language=this.options.language;}
if($type(callback)=='function'&&(!$defined(this.sections[language])||!$defined(this.sections[language][key]))){if(!$defined(this.requested[language])||!$defined(this.requested[language][key])||!this.requested[language][key]){new Request.JSON({url:'/-javascript-messages-'+language+'?sections='+key,onSuccess:function(response){this.loaded.bind(this)(response,language,key);}.bind(this)}).send();}
if(!$defined(this.requested[language])){this.requested[language]={};}
if(!$defined(this.requested[language][key])){this.requested[language][key]=[];}
this.requested[language][key].push(callback);if($defined(this.sections[this.options.language][key])){return this.sections[this.options.language][key];}
else{return false;}}
if($defined(this.sections[language])&&$defined(this.sections[language][key])){return this.sections[language][key];}
return false;},loaded:function(response,language,key){if(!$defined(this.sections[language])){this.sections[language]={};}
$extend(this.sections[language],response);this.requested[language][key].each(function(callbackfunction){callbackfunction();});}});var LanguageManager=new MiceLanguageManager({language:'en'});LanguageManager.addSection(false,{"calendar":{"wdays":["Su","Mo","Tu","We","Th","Fr","Sa"],"months":["January","February","March","April","May","June","July","August","September","October","November","December"]},"printpage":{"printpage":"Print page"}},'en');var ValidationRule=new Class({obscureValue:false,_value:null,_errors:[],getErrors:function(){return this._errors;},hasErrors:function(){return this._errors.length>0?true:false;},_addError:function(_messageKey){if($empty(_messageKey)){return;}
this._errors.push(_messageKey);},_setValue:function(_value){this._value=_value;this._errors=[];}});var ValidationRuleAlpha=new Class({Extends:ValidationRule,_allowWhiteSpace:false,initialize:function(_allowWhiteSpace){this._allowWhiteSpace=$defined(_allowWhiteSpace)&&_allowWhiteSpace;},isValid:function(_value){var valueString=String(_value);this._setValue(valueString);if($empty(valueString)){this._addError('stringEmpty');return false;}
if(valueString.test('[^A-ZÄÖÜäöüß'+(this._allowWhiteSpace?' ':'')+']','i')){this._addError('notAlpha');return false;}
return true;}});var ValidationRuleAlphaNumeric=new Class({Extends:ValidationRule,_allowWhiteSpace:false,initialize:function(_allowWhiteSpace){this._allowWhiteSpace=$defined(_allowWhiteSpace)&&_allowWhiteSpace;},isValid:function(_value){var valueString=String(_value);this._setValue(valueString);if($empty(valueString)){this._addError('stringEmpty');return false;}
if(valueString.test('[^0-9A-ZÄÖÜäöüß'+(this._allowWhiteSpace?' ':'')+']','i')){this._addError('notAlphaNumeric');return false;}
return true;}});var ValidationRuleBetween=new Class({Extends:ValidationRule,allowWhiteSpace:false,min:false,max:false,inclusive:false,initialize:function(_min,_max,_inclusive){this.min=$defined(_min)?_min:false;this.max=$defined(_max)?_max:false;this.inclusive=$defined(_inclusive)?_inclusive:true;},setCompare:function(_firstValue,_secondValue){this.min=_firstValue;this.max=_secondValue;},isValid:function(_value){this._setValue(_value*1);if(this.inclusive){if(this.min>_value||_value>this.max){this._addError('notBetween');return false;}}else{if(this.min>=_value||_value>=this.max){this._addError('notBetweenStrict');return false;}}
return true;}});var ValidationRuleCcnum=new Class({Extends:ValidationRule,isValid:function(_value){this._setValue(_value);_value=_value.split(' ').join('');if(_value!=(_value*1).toString()){this._addError('notDigit');return false;}
var length=_value.length;if(length<13||length>19){this._addError('ccnumLength');return false;}
var sum=0;var weight=2;for(var i=length-2;i>=0;i--){var digit=weight*_value[i];sum+=(digit/10).toInt()+(digit%10);weight=(weight%2)+1;}
if((10-(sum%10))%10!=_value[length-1]){}
return true;}});var ValidationRuleDigits=new Class({Extends:ValidationRule,isValid:function(_value){var valueString=String(_value).trim();this._setValue(valueString);if($empty(valueString)){this._addError('stringEmpty');return false;}
if(valueString.test(/[^\d]/)){this._addError('notDigits');return false;}
return true;}});var ValidationRuleEmailAddress=new Class({Extends:ValidationRule,isValid:function(_value){this._setValue(_value);if($empty(_value)){this._addError('stringEmpty');return false;}
if(!_value.test('^[a-z0-9'+('.!#$%&\'*+-/=?^_`{|}~'.escapeRegExp())+']+@[^@]{2,}\\.[^@\\. /]{2,}$','i')){this._addError('emailAddressInvalid');return false;}
return true;}});var ValidationRuleGreaterThan=new Class({Extends:ValidationRule,min:null,initialize:function(_min){this.min=_min;},setCompare:function(_firstValue){this.min=$defined(_firstValue)?_firstValue:null;},isValid:function(_value){this._setValue(_value);if(this.min>=_value*1){this._addError('notGreater');return false;}
return true;}});var ValidationRuleHostname=new Class({Extends:ValidationRule,isValid:function(_value){this._setValue(_value);if($empty(_value)){this._addError('stringEmpty');return false;}
if(!_value.test('^[^@]{2,}\\.[^@\\. /]{2,}$','i')){this._addError('hostnameInvalidHostname');return false;}
return true;}});var ValidationRuleIdentical=new Class({Extends:ValidationRule,token:null,initialize:function(_token){this.token=$defined(_token)?_token:null;},setCompare:function(_firstValue){if($defined(_firstValue)){this.token=_firstValue;}},isValid:function(_value){this._setValue(_value);return true;}});var ValidationRuleInArray=new Class({Extends:ValidationRule,haystack:[],initialize:function(_haystack){this.haystack=!$defined(_haystack)?[]:(($type(_haystack)!='array')?_haystack.split(','):_haystack);},setCompare:function(_haystack){this.haystack=!$defined(_haystack)?[]:(($type(_haystack)!='array')?_haystack.split(','):_haystack);},isValid:function(_value){this._setValue(_value);if(!this.haystack.contains(_value)){this._addError('notInArray');return false;}
return true;}});var ValidationRuleInt=new Class({Extends:ValidationRule,isValid:function(_value){_value=String(_value).trim();this._setValue(_value);if(_value!=_value.toInt().toString()){this._addError('notInt');return false;}
return true;}});var ValidationRuleIp=new Class({Extends:ValidationRule,isValid:function(_value){_value=String(_value).trim();this._setValue(_value);if(_value.test('[^0-9\\.]','i')){this._addError('notIpAddress');return false;}
var ipSections=_value.split('.');if(ipSections.length!=4){this._addError('notIpAddress');return false;}
if(ipSections[0]==''||ipSections[0].toInt()<0||ipSections[0].toInt()>255||ipSections[1]==''||ipSections[1].toInt()<0||ipSections[1].toInt()>255||ipSections[2]==''||ipSections[2].toInt()<0||ipSections[2].toInt()>255||ipSections[3]==''||ipSections[3].toInt()<0||ipSections[3].toInt()>255){this._addError('notIpAddress');return false;}
return true;}});var ValidationRuleLessThan=new Class({Extends:ValidationRule,max:null,initialize:function(_max){this.max=_max;},setCompare:function(_firstValue){this.max=$defined(_firstValue)?_firstValue:null;},isValid:function(_value){this._setValue(_value);if(this.max<=_value*1){this._addError('notLessThan');return false;}
return true;}});var ValidationRuleNotEmpty=new Class({Extends:ValidationRule,isValid:function(_value){_value=String(_value).trim();this._setValue(_value);if(_value==''){this._addError('isEmpty');return false;}
return true;}});var ValidationRuleRegex=new Class({Extends:ValidationRule,pattern:null,initialize:function(_pattern){this.pattern=_pattern;},setCompare:function(_firstValue){this.pattern=$defined(_firstValue)?_firstValue:null;},isValid:function(_value){this._setValue(_value);if($type(this.pattern)!='string'||!this.pattern.test('^/.*/i{0,1}g{0,1}$','i')){this._addError('invalidPattern');return false;}
var pattern=this.pattern.split('/');pattern.shift();var params=pattern.pop();pattern=pattern.join('/');if(!_value.test(pattern,params)){this._addError('regexNotMatch');return false;}
return true;}});var ValidationRuleStringLength=new Class({Extends:ValidationRule,min:false,max:false,initialize:function(_min,_max){this.min=$defined(_min)?_min:false;this.max=$defined(_max)?_max:false;},setCompare:function(_firstValue,_secondValue){this.min=_firstValue;this.max=_secondValue;},isValid:function(_value){_value=String(_value);this._setValue(_value);if(this.max<this.min||_value.length<this.min){this._addError('stringLengthTooShort');return false;}
if(_value.length>this.max){this._addError('stringLengthTooLong');return false;}
return true;}});Element.implement({getValue:function(){if(this.tagName.toLowerCase()=='select'){return Element.getSelected(this).map(function(_opt){return _opt.value;})[0];}
if(this.type=='radio'){var formElement=this.getParent();(100).times(function(){var FormParentNode=formElement.getParent();if(formElement.tagName.toLowerCase()=='form'||!FormParentNode){return;}
formElement=FormParentNode;});if(formElement.tagName.toLowerCase()!='form'){return null;}
else{var activeRadio=formElement.getElement('input[name="'+this.name+'"][checked]');return activeRadio?activeRadio.value:null;}}
return((this.type=='checkbox')&&!this.checked)?null:this.value;}});(function(){var checkChanged=function(_element){var elementValue=_element.getValue()+'';if(_element._lastValueForValuechangeEvent!=elementValue){_element._lastValueForValuechangeEvent=elementValue;_element.fireEvent('valuechange',elementValue);}};Element.Events.valuechange={onAdd:function(fn){if(this.tagName.toLowerCase()!='input'&&this.tagName.toLowerCase()!='select'&&this.tagName.toLowerCase()!='textarea'){return;}
if(!$defined(this._lastValueForValuechangeEvent)){this._lastValueForValuechangeEvent=this.getValue();this.addEvents({'click':(function(){checkChanged(this)}).bind(this),'change':(function(){checkChanged(this)}).bind(this),'blur':(function(){checkChanged(this)}).bind(this),'focus':(function(){checkChanged(this)}).bind(this),'keyup':(function(){checkChanged(this)}).bind(this)});this._listenerForValuechangeEvent=checkChanged.periodical(3000,this,this);}}};})();var Validator=new Class({Implements:Options,PASSWORD_PATTERN:'/^(([A-Za-zöäüÖÄÜß0-9\\.,!\\$%&\\@#\\+\\*]){5,60})$/i',STREET_PATTERN:'/^(([A-Za-zöäüÖÄÜß0-9\\.\\- ]){3,80})$/i',TELEPHONE_NUMER_PATTERN:'/^(([0-9\\+\\.\\/\\-\\(\\) ]){6,40})$/i',_validationRules:[],_validationChain:[],_errorMessages:{},_controllerName:false,_errors:{},_form:null,_formElements:[],_triedToSubmit:false,options:{language:'en'},initialize:function(_options,_validationRules){if($defined(_options)){this.setOptions(_options);}
if($defined(_validationRules)){this.parseValidationRules(_validationRules);}},hasErrors:function(){return this._errors.length>0?true:false;},getErrors:function(){return this._errors;},parseValidationRules:function(_validationRules){if(!$defined(_validationRules)||$type(_validationRules)!='array'){return;}
this._validationRules=_validationRules;_validationRules.each(function(validationRule){var validationRuleParts=[];var validationRulePartsOptional=[];if(validationRule.contains(';')){validationRulePartsOptional=validationRule.substr(validationRule.indexOf(';')+1).split(';');validationRule=validationRule.substr(0,validationRule.indexOf(';'));}
validationRuleParts=validationRule.split(',');var satisfiesIfConditions=true;while(validationRuleParts[0].substr(0,3)=='if:'){var condition=validationRuleParts[0].substr(3);var comparison="equal";var parts=[];if(condition.contains('!=')){parts=condition.split('!=');comparison="not_equal";}
else{parts=condition.split('=');}
var fieldToCheck=$parts[0];var valueToCheck=$parts[1];if(comparison=="equal"&&fields[fieldToCheck]!=valueToCheck){satisfiesIfConditions=false;break;}
else if(comparison=="not_equal"&&fields[fieldToCheck]==valueToCheck){satisfiesIfConditions=false;break;}
else{validationRuleParts.shift();}}
if(!satisfiesIfConditions){return;}
var requirement=validationRuleParts[0];var fieldName=validationRuleParts[1];var firstCompareFieldName=null;var secondCompareFieldName=null;if(validationRuleParts.length==5){firstCompareFieldName=validationRuleParts[2];secondCompareFieldName=validationRuleParts[3];var dateFlag=validationRuleParts[4];}
else if(validationRuleParts.length==4){firstCompareFieldName=validationRuleParts[2];secondCompareFieldName=validationRuleParts[3];}
else if(validationRuleParts.length==3){firstCompareFieldName=validationRuleParts[2];}
var errorMessageKey=($defined(validationRulePartsOptional[0]))?validationRulePartsOptional[0]:'';var breakChainOnFailure=($defined(validationRulePartsOptional[1]))?(validationRulePartsOptional[1]=='true'):false;switch(requirement){case"required":this.addValidationRule(new ValidationRuleNotEmpty(),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"digits":this.addValidationRule(new ValidationRuleDigits(),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"alpha":var allowWhitespace=$defined(validationRulePartsOptional[2])?(validationRulePartsOptional[2]=='true'):false;this.addValidationRule(new ValidationRuleAlpha(allowWhitespace),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"alphaNumeric":var allowWhitespace=$defined(validationRulePartsOptional[2])?(validationRulePartsOptional[2]=='true'):false;this.addValidationRule(new ValidationRuleAlphaNumeric(allowWhitespace),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"stringLength":var min=$defined(validationRulePartsOptional[2])?validationRulePartsOptional[2].toInt():0;var max=$defined(validationRulePartsOptional[3])?validationRulePartsOptional[3].toInt():null;this.addValidationRule(new ValidationRuleStringLength(min,max),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"between":var min=$defined(validationRulePartsOptional[2])?validationRulePartsOptional[2].toInt():0;var max=$defined(validationRulePartsOptional[3])?validationRulePartsOptional[3].toInt():1;var inclusive=$defined(validationRulePartsOptional[4])?(validationRulePartsOptional[4]=='true'):true;this.addValidationRule(new ValidationRuleBetween(min,max,inclusive),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"identical":var token=$defined(validationRulePartsOptional[2])?validationRulePartsOptional[2]:null;this.addValidationRule(new ValidationRuleIdentical(token),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"int":this.addValidationRule(new ValidationRuleInt(),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"lessThan":var max=$defined(validationRulePartsOptional[2])?validationRulePartsOptional[2].toInt():0;this.addValidationRule(new ValidationRuleLessThan(max),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"greaterThan":var min=$defined(validationRulePartsOptional[2])?validationRulePartsOptional[2].toInt():0;this.addValidationRule(new ValidationRuleGreaterThan(min),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"inArray":var tokens=$defined(validationRulePartsOptional[2])?validationRulePartsOptional[2]:'array()';if(tokens.indexOf('array(')==0){tokens=eval('['+tokens.substr(6,tokens.length-7)+']');}
var strict=$defined(validationRulePartsOptional[3])?validationRulePartsOptional[3]=='true':false;this.addValidationRule(new ValidationRuleInArray(tokens,strict),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"regex":var pattern=$defined(validationRulePartsOptional[2])?String(validationRulePartsOptional[2]):'';this.addValidationRule(new ValidationRuleRegex(pattern),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"ccnum":this.addValidationRule(new ValidationRuleCcnum(),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"email":this.addValidationRule(new ValidationRuleEmailAddress(),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"hostname":this.addValidationRule(new ValidationRuleHostname(),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"ip":this.addValidationRule(new ValidationRuleIp(),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"password":this.addValidationRule(new ValidationRuleRegex(this.PASSWORD_PATTERN),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"street":this.addValidationRule(new ValidationRuleRegex(this.STREET_PATTERN),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;case"telephoneNumber":this.addValidationRule(new ValidationRuleRegex(this.TELEPHONE_NUMER_PATTERN),fieldName,firstCompareFieldName,secondCompareFieldName,errorMessageKey,breakChainOnFailure);break;}},this);},addValidationRule:function(_ValidationRule,_fieldName,_errorMessageKey,_breakChainOnFailure){this._validationChain.push({'ValidationRule':_ValidationRule,'fieldName':_fieldName,'errorMessageKey':_errorMessageKey,'breakChainOnFailure':_breakChainOnFailure==true});},isValid:function(_values){if(!$defined(_values)){return false;}
if(_values.length<1){return false;}
if(this._validationChain.length<1){return true;}
this._errors={};var result=true;this._validationChain.each(function(chainElement){var ValidationRule=chainElement.ValidationRule;if($defined(_values[chainElement.fieldName])){if(!ValidationRule.isValid(_values[chainElement.fieldName])){result=false;var errors=ValidationRule.getErrors();if(chainElement.errorMessageKey){this._addError(chainElement.fieldName,chainElement.errorMessageKey);}
else{errors.each(function(error){this._addError(chainElement.fieldName,error);},this);}
if(chainElement.breakChainOnFailure){return;}}}
else{this._addError(chainElement.fieldName,'fieldNotSet');result=false;}},this);return result;},isValidSingle:function(_name,_value){if(!$defined(_name)||!$defined(_value)){return false;}
if(this._validationChain.length<1){return true;}
this._errors={};var result=true;this._validationChain.each(function(chainElement){var ValidationRule=chainElement.ValidationRule;if(chainElement.fieldName==_name){if(!ValidationRule.isValid(_value)){result=false;var errors=ValidationRule.getErrors();if(chainElement.errorMessageKey){this._addError(chainElement.fieldName,chainElement.errorMessageKey);}
else{errors.each(function(error){this._addError(chainElement.fieldName,error);},this);}}}},this);return result;},_addError:function(_fieldName,_messageKey){if($empty(_fieldName)||$empty(_messageKey)){return;}
if($defined(this._errors[_fieldName])){this._errors[_fieldName].push(_messageKey);}
else{this._errors[_fieldName]=[_messageKey];}},watchForm:function(_form,_rules,_errorMessages,_controllerName){var self=this;this._errorMessages=_errorMessages;this._controllerName=_controllerName;if(!$defined(_form)){return;}
_form=document.id(_form);if(!_form){return;}
this.parseValidationRules(_rules);this._form=_form;var formElements=_form.getElements('input, select, textarea');this._formElements=formElements;formElements.each(function(element){element.addEvent('valuechange',(function(){self.checkSingle(this);}).bindWithEvent(element));this.checkSingle(element);},this);_form.addEvent('submit',this.checkAll.bind(this));},checkAll:function(_event){var values={};this._formElements.each(function(el){if(!el.name||el.disabled)return;var value=el.getValue();$splat(value).each(function(val){if(typeof val!='undefined')values[el.name]=val;});});if(this.isValid(values)){}
else{new Event(_event).stop();this._triedToSubmit=true;$each(this.getErrors(),function(value,name){this.setElementStatus(name,'invalid',value);},this);}},checkSingle:function(_element){var requiredField=false;this._validationChain.each(function(chainElement){if(chainElement.fieldName==_element.name){requiredField=true;}});if(!requiredField){return;}
var value=_element.getValue();if((!value||$empty(value))&&!this._triedToSubmit){this.setElementStatus(_element,null);return;}
var valid=this.isValidSingle(_element.name,value);if(valid){this.setElementStatus(_element,'valid');}
else{this.setElementStatus(_element,'invalid',this.getErrors()[_element.name]);}},setElementStatus:function(_element,_status,_message){if($type(_element)=='string'){_element=this._form.getElement('input[name="'+_element+'"],select[name="'+_element+'"],textarea[name="'+_element+'"]');}
if($defined(_status)&&(_status=='invalid'||_status=='valid')){_element.addClass(_status=='invalid'?'invalid':'valid');_element.removeClass(_status=='invalid'?'valid':'invalid');if(_element.getParent().tagName.toLowerCase()=='p'){_element.getParent().addClass(_status=='invalid'?'invalid':'valid');_element.getParent().removeClass(_status=='invalid'?'valid':'invalid');}}
else{_element.removeClass('invalid');_element.removeClass('valid');if(_element.getParent().tagName.toLowerCase()=='p'){_element.getParent().removeClass('invalid');_element.getParent().removeClass('valid');}}
if($defined(_message)&&!$empty(_message)&&_element.getParent().tagName.toLowerCase()=='p'){_message=this.getErrorMessage(_message,_element.get('name'),this._controllerName,'both');if(!_element.getParent().getElement('span.errorMsg')){new Element('span').addClass('errorMsg').inject(_element.getParent());}
var errorMsgElement=_element.getParent().getElement('span.errorMsg');errorMsgElement.set('html',_message)}
else if(_element.getParent().getElement('span.errorMsg')){_element.getParent().getElement('span.errorMsg').dispose();}},getErrorMessage:function(_messageKey,_fieldName,_section,_type){if(!$defined(this._errorMessages)){return _messageKey;}
var self=this;if(typeof _section=='undefined'){_section='nosection';}
if(typeof _type=='undefined'){_type='both';}
var message='';if(typeof _messageKey=='undefined'){return message;}
_messageKey=String(_messageKey);var fallbackStackSkeleton=[];if(typeof _fieldName=='string'){fallbackStackSkeleton.push(_fieldName.capitalize()+_messageKey.capitalize());fallbackStackSkeleton.push(_fieldName.capitalize());}
fallbackStackSkeleton.push(_messageKey.capitalize());var fallbackStack=[];if(['validationError','error'].contains(_type)){var possibePrefixes=[_type];}
else{var possibePrefixes=['validationError','error'];}
possibePrefixes.each(function(prefix){fallbackStackSkeleton.each(function(suffix){fallbackStack.push(prefix+suffix);});fallbackStack.push(prefix+'Default');});if(['validationError','error'].contains(_type)){var possibleMainSection=[_type+'s'];}
else{var possibleMainSection=['validationErrors','errors'];}
fallbackStack.each(function(key){if(message!=''){return;}
possibleMainSection.each(function(mainSection){if(message!=''){return;}
if($defined(self._errorMessages[_section])&&$defined(self._errorMessages[_section][mainSection])&&$defined(self._errorMessages[_section][mainSection][key])){message=self._errorMessages[_section][mainSection][key];return;}
if($defined(self._errorMessages[mainSection])&&$defined(self._errorMessages[mainSection][key])){message=self._errorMessages[mainSection][key];return;}});});return message;}});MooTools.More={'version':'1.2.3.1'};Fx.Elements=new Class({Extends:Fx.CSS,initialize:function(elements,options){this.elements=this.subject=$$(elements);this.parent(options);},compute:function(from,to,delta){var now={};for(var i in from){var iFrom=from[i],iTo=to[i],iNow=now[i]={};for(var p in iFrom)iNow[p]=this.parent(iFrom[p],iTo[p],delta);}
return now;},set:function(now){for(var i in now){var iNow=now[i];for(var p in iNow)this.render(this.elements[i],p,iNow[p],this.options.unit);}
return this;},start:function(obj){if(!this.check(obj))return this;var from={},to={};for(var i in obj){var iProps=obj[i],iFrom=from[i]={},iTo=to[i]={};for(var p in iProps){var parsed=this.prepare(this.elements[i],p,iProps[p]);iFrom[p]=parsed.from;iTo[p]=parsed.to;}}
return this.parent(from,to);}});var Accordion=Fx.Accordion=new Class({Extends:Fx.Elements,options:{display:0,show:false,height:true,width:false,opacity:true,fixedHeight:false,fixedWidth:false,wait:false,alwaysHide:false,trigger:'click',initialDisplayFx:true},initialize:function(){var params=Array.link(arguments,{'container':Element.type,'options':Object.type,'togglers':$defined,'elements':$defined});this.parent(params.elements,params.options);this.togglers=$$(params.togglers);this.container=document.id(params.container);this.previous=-1;if(this.options.alwaysHide)this.options.wait=true;if($chk(this.options.show)){this.options.display=false;this.previous=this.options.show;}
if(this.options.start){this.options.display=false;this.options.show=false;}
this.effects={};if(this.options.opacity)this.effects.opacity='fullOpacity';if(this.options.width)this.effects.width=this.options.fixedWidth?'fullWidth':'offsetWidth';if(this.options.height)this.effects.height=this.options.fixedHeight?'fullHeight':'scrollHeight';for(var i=0,l=this.togglers.length;i<l;i++)this.addSection(this.togglers[i],this.elements[i]);this.elements.each(function(el,i){if(this.options.show===i){this.fireEvent('active',[this.togglers[i],el]);}else{for(var fx in this.effects)el.setStyle(fx,0);}},this);if($chk(this.options.display))this.display(this.options.display,this.options.initialDisplayFx);},addSection:function(toggler,element){toggler=document.id(toggler);element=document.id(element);var test=this.togglers.contains(toggler);this.togglers.include(toggler);this.elements.include(element);var idx=this.togglers.indexOf(toggler);toggler.addEvent(this.options.trigger,this.display.bind(this,idx));if(this.options.height)element.setStyles({'padding-top':0,'border-top':'none','padding-bottom':0,'border-bottom':'none'});if(this.options.width)element.setStyles({'padding-left':0,'border-left':'none','padding-right':0,'border-right':'none'});element.fullOpacity=1;if(this.options.fixedWidth)element.fullWidth=this.options.fixedWidth;if(this.options.fixedHeight)element.fullHeight=this.options.fixedHeight;element.setStyle('overflow','hidden');if(!test){for(var fx in this.effects)element.setStyle(fx,0);}
return this;},display:function(index,useFx){useFx=$pick(useFx,true);index=($type(index)=='element')?this.elements.indexOf(index):index;if((this.timer&&this.options.wait)||(index===this.previous&&!this.options.alwaysHide))return this;this.previous=index;var obj={};this.elements.each(function(el,i){obj[i]={};var hide=(i!=index)||(this.options.alwaysHide&&(el.offsetHeight>0));this.fireEvent(hide?'background':'active',[this.togglers[i],el]);for(var fx in this.effects)obj[i][fx]=hide?0:el[this.effects[fx]];},this);return useFx?this.start(obj):this.set(obj);}});var Txt=new Class({setTxt:function(section,language){if(!$defined(LanguageManager)||$type(section)!="string"){return false;}
if(!$defined(this.txt)){this.txt={}}
this.optionTxtSection=section;this.optionTxtLanguage=language;$extend(this.txt,LanguageManager.getSection(section,this.reloadTxt.bind(this),language));return true;},changeTxtLanguage:function(language){this.optionTxtLanguage=language;$extend(this.txt,LanguageManager.getSection(this.optionTxtSection,this.reloadTxt.bind(this),language));this.reloadTxt();},reloadTxt:function(){$extend(this.txt,LanguageManager.getSection(this.optionTxtSection,false,this.optionTxtLanguage));if($type(this.fireEvent)=='function'){this.fireEvent('reloadTxt',this.optionTxtLanguage);}}});var Calendar=new Class({Implements:[Options,Events],options:{time:new Date(),count:2,stepSize:1,language:'en',wheelEnabled:true,validTimeFrames:[],invalidTimeFrames:[],selectableTimeFrames:[],markedTimeFrames:{},selectionMode:'single',selection:{}},calendarViews:[],selectionTimeOuts:[],multipleStarted:false,initialize:function(options){this.setOptions(options);if($type(this.options.time)!='date'){this.options.time=new Date(this.options.time);}
this.object=new Element('span',{'class':'mtc_wrap','html':'<span class="mtc_bg"></span><span class="mtc_body"><a href="" class="mtc_prev">«</a><a href="" class="mtc_next">»</a><a href="" class="mtc_close">x</a><span class="mtc_calwrap"></span></span>'});this.close();this.objectCalwrap=this.object.getElement('.mtc_calwrap');this.objectPrev=this.object.getElement('.mtc_prev');this.objectNext=this.object.getElement('.mtc_next');this.objectClose=this.object.getElement('.mtc_close');if(this.options.wheelEnabled){this.objectCalwrap.addEvent('mousewheel',(function(e){var step=e.wheel<0?this.options.stepSize:(this.options.stepSize*(-1));this.setDate(new Date(this.options.time.getFullYear(),this.options.time.getMonth()+step,1));new Event(e).stop();}).bindWithEvent(this));}
this.objectPrev.addEvent('click',(function(e){this.setDate(new Date(this.options.time.getFullYear(),this.options.time.getMonth()-this.options.stepSize,1));new Event(e).stop();}).bindWithEvent(this));this.objectNext.addEvent('click',(function(e){this.setDate(new Date(this.options.time.getFullYear(),this.options.time.getMonth()+this.options.stepSize,1));new Event(e).stop();}).bindWithEvent(this));if(Browser.Engine.trident){this.objectPrev.addEvent('dblclick',(function(){this.objectPrev.fireEvent('click');}).bind(this));this.objectNext.addEvent('dblclick',(function(){this.objectNext.fireEvent('click');}).bind(this));}
this.objectClose.addEvent('click',(function(e){this.close();new Event(e).stop();}).bindWithEvent(this));this.options.count.times(function(i){this.calendarViews.push(new CalendarView());this.calendarViews[this.calendarViews.length-1].getObject().inject(this.objectCalwrap);this.calendarViews[this.calendarViews.length-1].addEvent('click',(this.itemClick).bind(this));this.calendarViews[this.calendarViews.length-1].addEvent('mouseover',(this.itemMouseover).bind(this));this.calendarViews[this.calendarViews.length-1].addEvent('mouseout',(this.itemMouseout).bind(this));},this);this.render();},render:function(){if(this.isRendering){return this;}
this.isRendering=true;if(this.calendarViews[0].options.time.getTime()!=new Date(this.options.time.getFullYear(),this.options.time.getMonth(),1).getTime()){this.fireEvent('changeview');}
this.options.count.times(function(i){var month=new Date(this.options.time.getFullYear(),this.options.time.getMonth()+i,1);$extend(this.calendarViews[i].options,{time:month,language:this.options.language,validTimeFrames:this.options.validTimeFrames,invalidTimeFrames:this.options.invalidTimeFrames,markedTimeFrames:this.options.markedTimeFrames});this.calendarViews[i].render();},this);this.isRendering=false;return this;},renderTimeFrames:function(){this.options.count.times(function(i){$extend(this.calendarViews[i].options,{markedTimeFrames:this.options.markedTimeFrames});this.calendarViews[i].renderTimeFrames();},this);},open:function(){this.object.setStyle('display','');this.fireEvent('open');return this;},close:function(){this.object.setStyle('display','none');this.fireEvent('close');return this;},getObject:function(){return this.object;},setLanguage:function(language){this.options.language=language;this.render();return this;},setDate:function(date){this.options.time=date;this.render();return this;},setMarkedTimeFrame:function(className,timeFrame){this.options.markedTimeFrames[className]=[timeFrame];return this;},addMarkedTimeFrame:function(className,timeFrame){if($type(this.options.markedTimeFrames[className])!='array'){this.options.markedTimeFrames[className]=[];}
this.options.markedTimeFrames[className].push(timeFrame);return this;},removeMarkedTimeFrame:function(className){if($type(className)!='string'){this.options.markedTimeFrames={};}
else{this.options.markedTimeFrames[className]=[];}
return this;},addValidTimeFrame:function(timeFrame){this.options.validTimeFrames.push(timeFrame);return this;},addInvalidTimeFrame:function(timeFrame){this.options.invalidTimeFrames.push(timeFrame);return this;},clearValidTimeFrames:function(){this.options.validTimeFrames=[];return this;},clearInValidTimeFrames:function(){this.options.invalidTimeFrames=[];return this;},itemClick:function(e){var fired=false;if(this.options.selectionMode=='single'){this.fireEvent('select',e);this.setMarkedTimeFrame('mtc_selected',new CalendarTimeFrame(e.date,e.date));fired=true;}
else if(this.options.selectionMode=='timeframe'){this.options.selectableTimeFrames.each((function(timeFrame){if(timeFrame.isBetween(e.date)){$extend(e,{timeFrame:timeFrame});this.fireEvent('select',e);this.setMarkedTimeFrame('mtc_selected',timeFrame);fired=true;}}).bind(this));if(!fired){this.fireEvent('select',e);this.setMarkedTimeFrame('mtc_selected',new CalendarTimeFrame(e.date,e.date));}}
else if(this.options.selectionMode=='multiple'){if(this.multipleStarted==false){this.multipleStarted=e.date;}
else{var timeFrame=new CalendarTimeFrame(this.multipleStarted,e.date);this.multipleStarted=false;$extend(e,{timeFrame:timeFrame});this.fireEvent('select',e);}}
this.renderTimeFrames();},itemMouseover:function(e){this.fireEvent('mouseover',e);if(this.options.selectionMode=='single'){}
else if(this.options.selectionMode=='timeframe'){this.options.selectableTimeFrames.each((function(timeFrame){if(timeFrame.isBetween(e.date)){if(!$defined(this.options.markedTimeFrames['mtc_future_selected'])||!$defined(this.options.markedTimeFrames['mtc_future_selected'][0])||this.options.markedTimeFrames['mtc_future_selected'][0].start.getTime()!=timeFrame.start.getTime()||this.options.markedTimeFrames['mtc_future_selected'][0].end.getTime()!=timeFrame.end.getTime()){this.setMarkedTimeFrame('mtc_future_selected',timeFrame);this.renderTimeFrames();}
this.selectionTimeOuts.each(function(timeOut){$clear(timeOut);});}}).bind(this));}
else if(this.options.selectionMode=='multiple'){}},itemMouseout:function(e){this.fireEvent('mouseout',e);this.selectionTimeOuts.push((function(){if(this.options.selectionMode=='timeframe'&&$defined(this.options.markedTimeFrames['mtc_future_selected'])&&this.options.markedTimeFrames['mtc_future_selected'].length>0){this.removeMarkedTimeFrame('mtc_future_selected');this.renderTimeFrames();}}).delay(20,this));}});var CalendarView=new Class({Implements:[Options,Events,Txt],options:{time:new Date(),wdayOffset:1,language:'en',validTimeFrames:[],invalidTimeFrames:[],markedTimeFrames:{}},initialize:function(options){this.setOptions(options);this.setTxt('calendar',this.options.language);this.addEvent('reloadTxt',this.render.bind(this));this.object=new Element('span',{'class':'mtc_cal'});var objHtml='<span class="mtc_month"></span><span class="mtc_wdays">';(7).times(function(){objHtml+='<b></b>'});objHtml+='</span>';(6).times(function(){objHtml+='<span class="mtc_dayrow">';(7).times(function(){objHtml+='<span></span>'});objHtml+='</span>';});this.object.set('html',objHtml);this.objectMonth=this.object.getElement('.mtc_month');this.objectWdays=this.object.getElement('.mtc_wdays').getElements('b');this.objectDayrows=this.object.getElements('.mtc_dayrow');this.objectDays=this.object.getElements('.mtc_dayrow span');$each(this.objectDays,function(el){el.addEvent('click',(function(){if(!el.clickable){return;}
this.fireEvent('click',{date:new Date(el.timestamp),item:el});}).bind(this));el.addEvent('mouseover',(function(){if(!el.clickable){return;}
this.fireEvent('mouseover',{date:new Date(el.timestamp),item:el});}).bind(this));el.addEvent('mouseout',(function(){if(!el.clickable){return;}
this.fireEvent('mouseout',{date:new Date(el.timestamp),item:el});}).bind(this));},this);this.render();},render:function(){this.objectMonth.set('html',this.txt.months[this.options.time.getMonth()]+' '+this.options.time.getFullYear());this.objectWdays.each(function(el,i){i+=this.options.wdayOffset;if(i>6){i-=7;}
el.set('html',this.txt.wdays[i]);},this);var firstDay=new Date(this.options.time.getFullYear(),this.options.time.getMonth(),1);var firstDayOffset=firstDay.getDay();firstDayOffset-=this.options.wdayOffset;if(firstDayOffset<0){firstDayOffset+=7;}
this.objectDays.each(function(el,i){var day=new Date(this.options.time.getFullYear(),this.options.time.getMonth(),i-firstDayOffset+1);el.set('html',day.getDate());el.timestamp=day.getTime();},this);this.renderTimeFrames();},renderTimeFrames:function(){this.objectDays.each(function(el,i){var day=new Date(el.timestamp);var cssClass='';$each(this.options.markedTimeFrames,function(timeFrames,timeFrameclass){timeFrames.each((function(timeFrame){if(timeFrame.isBetween(day)){cssClass+=' '+timeFrameclass;}}).bind(this));},this);var invalid=false;if(this.options.validTimeFrames.length>0){invalid=true;this.options.validTimeFrames.each((function(timeFrame){if(timeFrame.isBetween(day)){invalid=false;}}).bind(this));}
if(this.options.invalidTimeFrames.length>0){this.options.invalidTimeFrames.each((function(timeFrame){if(timeFrame.isBetween(day)){invalid=true;}}).bind(this));}
var clickable=true;if(invalid){cssClass+=' mtc_invalid';clickable=false;}
if(this.options.time.getMonth()!=day.getMonth()){cssClass+=' mtc_outofrange';clickable=false;}
if(clickable){cssClass+=' mtc_valid';}
el.set('class',cssClass);el.clickable=clickable;},this);},getObject:function(){return this.object;}});CalendarTimeFrame=new Class({initialize:function(start,end){this.start=this.convertToDate(start);this.end=this.convertToDate(end);},isBetween:function(date){date=this.convertToDate(date);if(date.getTime()>=this.start.getTime()&&date.getTime()<=this.end.getTime()){return true;}
return false;},getDays:function(asTimestamp){var days=[];var startDay=new Date(this.start.getFullYear(),this.start.getMonth(),this.start.getDate());var endDay=new Date(this.end.getFullYear(),this.end.getMonth(),this.end.getDate());for(var i=new Date(startDay.getTime());i.getTime()<=endDay.getTime();i=new Date(i.getFullYear(),i.getMonth(),i.getDate()+1)){days.push(($defined(asTimestamp)&&asTimestamp)?i.getTime():i);}
return days;},convertToDate:function(date){if($type(date)=='date'){return date;}
else if($type(date)=='number'){return new Date(date);}
else if($type(date)=='string'){date=date.split('-');return new Date(date[0]*1,(date[1]*1)-1,date[2]*1);}
return new Date(0,0,0);}});var ImgPopup=new Class({options:{hide_ie6_selects:true,hide_embeds:true,startSize:{x:75,y:75},shadowSize:{x:57,y:57},ie6_shadowSize:{x:25,y:25},in_duration:300,out_duration:300,overlayOpacity:.7},sections:[],initialize:function(){if(Browser.Engine.trident4){this.options.shadowSize=this.options.ie6_shadowSize;}
this.overlay=new Element('div',{id:'imgp_overlay'}).setStyles({display:'none',position:'absolute',top:0,left:0}).setStyle('opacity',0);this.overlay.inject(document.body);this.shadow=new Element('div',{id:'imgp_shadow_wrap'}).set('html','<div id="imgp_shadow_nw"></div><div id="imgp_shadow_n"></div><div id="imgp_shadow_ne"></div><div id="imgp_shadow_w"></div><div id="imgp_shadow"></div><div id="imgp_shadow_e"></div><div id="imgp_shadow_sw"></div><div id="imgp_shadow_s"></div><div id="imgp_shadow_se"></div>');this.shadow.inject(document.body);this.imgwrap=new Element('div',{id:'imgp_imgwrap'}).set('html','<img id="imgp_img"><iframe id="imgp_iframe" frameBorder="0"></iframe><div id="imgp_element"></div><a id="imgp_close" href=""></a><a id="imgp_prev" href=""></a><a id="imgp_next" href=""></a><div id="imgp_caption"></div>');this.imgwrap.inject(document.body);this.caption=this.imgwrap.getElement('#imgp_caption');this.img=this.imgwrap.getElement('#imgp_img');this.iframe=this.imgwrap.getElement('#imgp_iframe');this.element=this.imgwrap.getElement('#imgp_element');this.prev=this.imgwrap.getElement('#imgp_prev');this.prev.addEvent('click',function(e){this.goTo.bind(this)(-1);if(e){e.stop();}}.bindWithEvent(this));this.next=this.imgwrap.getElement('#imgp_next');this.next.addEvent('click',function(e){this.goTo.bind(this)(1);if(e){e.stop();}}.bindWithEvent(this));this.preimg=new Element('img');this.preimg.addEvent('load',this.imgLoaded.bind(this));this.effects_in={overlay:new Fx.Morph(this.overlay,{duration:this.options.in_duration,transition:Fx.Transitions.Linear}),shadow:new Fx.Morph(this.shadow,{duration:this.options.in_duration,transition:Fx.Transitions.Quad.easeOut}),imgwrap:new Fx.Morph(this.imgwrap,{duration:this.options.in_duration,transition:Fx.Transitions.Quad.easeOut}),img:new Fx.Morph(this.img,{duration:this.options.in_duration,transition:Fx.Transitions.Quad.easeOut})};this.effects_out={overlay:new Fx.Morph(this.overlay,{duration:this.options.out_duration,transition:Fx.Transitions.Linear}),shadow:new Fx.Morph(this.shadow,{duration:this.options.out_duration,transition:Fx.Transitions.Quad.easeIn}),imgwrap:new Fx.Morph(this.imgwrap,{duration:this.options.out_duration,transition:Fx.Transitions.Quad.easeIn}),img:new Fx.Morph(this.img,{duration:this.options.out_duration,transition:Fx.Transitions.Quad.easeIn})};this.imgwrap.getElement('#imgp_close').addEvent('click',function(e){this.close();if(e){e.stop();}}.bindWithEvent(this));this.overlay.addEvent('click',function(){this.close();}.bind(this));this.imgwrap.setStyle('display','none');},'addSection':function(section){this.sections.push(section);},start:function(url,caption){this.active_section=-1;for(i in this.sections){for(j in this.sections[i]){if(this.sections[i][j].url==url){this.active_section=i;this.active_item=j;break;}}}
if(this.active_section<0){this.addSection([{url:url,caption:caption}]);this.active_section=this.sections.length-1;this.active_item=0;}
this.preLoad(this.sections[this.active_section][this.active_item].url);},preLoad:function(url){if(this.sections[this.active_section][this.active_item].element=='iframe'){this.imgLoaded();}
else{this.preimg.set('src',url);if(!this.sections[this.active_section][this.active_item].caption&&url.test(/\/files-.+$/)){var activeItem=this.sections[this.active_section][this.active_item];metaDataUrl=url.replace(/^.*\/files-(.+)[A-Z]\w*(\..{3})/,'/-images-metadata-'+locale+'/unid-$1$2');var metaDataRequest=new Request.JSON({url:metaDataUrl,onSuccess:(function(data){if(data.label){activeItem.caption=data.label;}
if(this.sections[this.active_section][this.active_item].caption){this.caption.set('html',this.sections[this.active_section][this.active_item].caption);if(this.openCompleted){this.caption.setStyle('display','');}}}).bind(this)}).send();}}},imgLoaded:function(){if(this.sections[this.active_section][this.active_item].element=='iframe'){this.target_width=this.sections[this.active_section][this.active_item].width*1;this.target_height=this.sections[this.active_section][this.active_item].height*1;}
else{this.preimg.inject(document.body);this.target_width=this.preimg.getSize().x.toInt();this.target_height=this.preimg.getSize().y.toInt();this.preimg.dispose();this.preimg.set('src','');}
if(this.target_width>window.getSize().x.toInt()-this.options.shadowSize.x){var ow=this.target_width;this.target_width=window.getSize().x.toInt()-this.options.shadowSize.x;if(this.sections[this.active_section][this.active_item].element=='img'||!this.sections[this.active_section][this.active_item].element){this.target_height*=this.target_width/ow;}}
if(this.target_height>window.getSize().y.toInt()-this.options.shadowSize.y){var oh=this.target_height;this.target_height=window.getSize().y.toInt()-this.options.shadowSize.y;if(this.sections[this.active_section][this.active_item].element=='img'||!this.sections[this.active_section][this.active_item].element){this.target_width*=this.target_height/oh;}}
if(!this.is_opened){this.open();}
else{this.resize();}},goTo:function(offset){this.openCompleted=false;this.active_item=(this.active_item*1)+(offset*1);if(this.active_item<0){this.active_item=0;}
if(this.active_item>this.sections[this.active_section].length-1){this.active_item=this.sections[this.active_section].length-1;}
this.preLoad(this.sections[this.active_section][this.active_item].url);},open:function(){this.openCompleted=false;this.is_opened=true;if(Browser.Engine.trident4&&this.options.hide_ie6_selects){this.hided_selects=$$('select');this.hided_selects.each(function(el){el.imgp_restore_style=el.getStyle('visibility');el.setStyle('visibility','hidden');});}
this.overlay.setStyles({display:'',opacity:0,width:document.id(document.body).getScrollSize().x,height:document.id(document.body).getScrollSize().y});this.imgwrap.getElements('*').each(function(el){el.setStyle('display','none');});this.img.setStyles({display:'',width:this.options.startSize.x,height:this.options.startSize.y});this.iframe.setStyles({display:'none'});this.element.setStyles({display:'none'});this.shadow.setStyles({display:'block',left:(window.getScroll().x+(document.id(document.body).getSize().x/2))-(this.options.startSize.x/2)-this.options.shadowSize.x,top:(window.getScroll().y+(window.getSize().y/2))-(this.options.startSize.y/2)-this.options.shadowSize.y,width:this.options.startSize.x+(this.options.shadowSize.x*2),height:this.options.startSize.y+(this.options.shadowSize.y*2)});this.imgwrap.setStyles({display:'block',opacity:0,left:(window.getScroll().x+(document.id(document.body).getSize().x/2))-(this.options.startSize.x/2)-this.imgwrap.getStyle('border-left-width').toInt(),top:(window.getScroll().y+(window.getSize().y/2))-(this.options.startSize.y/2)-this.imgwrap.getStyle('border-top-width').toInt(),width:this.options.startSize.x,height:this.options.startSize.y});this.resize();},resize:function(){this.openCompleted=false;this.img.setStyles({opacity:0});this.prev.setStyle('display','none');this.next.setStyle('display','none');this.caption.setStyle('display','none');this.overlay.setStyle('display','none');this.iframe.setStyle('display','none');this.element.setStyle('display','none');this.effects_in.overlay.start({opacity:this.options.overlayOpacity,width:document.id(document.body).getScrollSize().x,height:document.id(document.body).getScrollSize().y});this.overlay.setStyle('display','');this.effects_in.shadow.start({left:(window.getScroll().x+(document.id(document.body).getSize().x/2))-(this.target_width/2)-this.options.shadowSize.x,top:(window.getScroll().y+(window.getSize().y/2))-(this.target_height/2)-this.options.shadowSize.y,width:this.target_width+(this.options.shadowSize.x*2),height:this.target_height+(this.options.shadowSize.x*2)});this.effects_in.imgwrap.start({opacity:1,left:(window.getScroll().x+(document.id(document.body).getSize().x/2))-(this.target_width/2)-this.imgwrap.getStyle('border-left-width').toInt(),top:(window.getScroll().y+(window.getSize().y/2))-(this.target_height/2)-this.imgwrap.getStyle('border-top-width').toInt(),width:this.target_width,height:this.target_height});if(this.sections[this.active_section][this.active_item].element=='img'||!this.sections[this.active_section][this.active_item].element){this.effects_in.img.start({opacity:1,width:this.target_width,height:this.target_height});}
if(this.sections[this.active_section][this.active_item].element=='iframe'){this.iframe.setStyles({width:this.target_width,height:this.target_height});this.element.setStyles({width:this.target_width,height:this.target_height});this.img.set('src','');}
else{this.img.set('src',this.sections[this.active_section][this.active_item].url);}
this.caption.set('html',this.sections[this.active_section][this.active_item].caption);this.opened.delay(this.options.in_duration,this);},opened:function(){this.openCompleted=true;this.imgwrap.getElements('*').each(function(el){el.setStyle('display','');});if(this.sections[this.active_section][this.active_item].element=='iframe'){this.img.setStyle('display','none');if(this.sections[this.active_section][this.active_item].url.substr(0,1)=='#'){this.iframe.setStyle('display','none');this.element.set('html',document.id(document.body).getElement(this.sections[this.active_section][this.active_item].url).get('html'));}
else{this.element.setStyle('display','none');this.iframe.set('src',this.sections[this.active_section][this.active_item].url);}}
else{this.element.set('html','');this.iframe.set('src','');this.iframe.setStyle('display','none');this.element.setStyle('display','none');}
if(this.active_item<=0){this.prev.setStyle('display','none');}
if(this.active_item>=this.sections[this.active_section].length-1){this.next.setStyle('display','none');}
if(!this.caption.innerHTML||this.caption.innerHTML==""){this.caption.setStyle('display','none');}},close:function(){this.openCompleted=false;this.is_opened=false;this.element.set('html','');this.iframe.set('src','');if(Browser.Engine.trident4&&this.options.hide_ie6_selects){this.hided_selects.each(function(el){el.setStyle('visibility',el.imgp_restore_style);});}
this.imgwrap.getElements('*').each(function(el){el.setStyle('display','none');});this.img.setStyle('display','');this.effects_out.overlay.start({opacity:0});this.effects_out.shadow.start({left:(window.getScroll().x+(document.id(document.body).getSize().x/2))-(this.options.startSize.x/2)-this.options.shadowSize.x,top:(window.getScroll().y+(window.getSize().y/2))-(this.options.startSize.y/2)-this.options.shadowSize.y,width:this.options.startSize.x+(this.options.shadowSize.x*2),height:this.options.startSize.y+(this.options.shadowSize.y*2)});this.effects_out.imgwrap.start({opacity:0,left:(window.getScroll().x+(document.id(document.body).getSize().x/2))-(this.options.startSize.x/2)-this.imgwrap.getStyle('border-left-width').toInt(),top:(window.getScroll().y+(window.getSize().y/2))-(this.options.startSize.y/2)-this.imgwrap.getStyle('border-top-width').toInt(),width:this.options.startSize.x,height:this.options.startSize.y});this.effects_out.img.start({opacity:0,width:this.options.startSize.x,height:this.options.startSize.y});(function(){this.overlay.setStyle('display','none');this.shadow.setStyle('display','none');this.imgwrap.setStyle('display','none');}).delay(this.options.out_duration,this);}});ImgPopup.implement(Options);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(h){var f=document.createElement("style"),d,c,b;f.type="text/css";f.media=h;try{f.appendChild(document.createTextNode("/**/"))}catch(g){}c=G("head")[0];c.insertBefore(f,c.firstChild);d=(f.sheet||f.styleSheet);b=d&&!d.disabled;c.removeChild(f);return b}),removeClass:function(d,c){var b=RegExp("(?:^|\\s+)"+c+"(?=\\s|$)","g");d.className=d.className.replace(b,"");return d},supports:function(d,c){var b=document.createElement("span").style;if(b[d]===undefined){return false}b[d]=c;return b[d]===c},textAlign:function(e,d,b,c){if(d.get("textAlign")=="right"){if(b>0){e=" "+e}}else{if(b<c-1){e+=" "}}return e},textDecoration:function(g,f){if(!f){f=this.getStyle(g)}var c={underline:null,overline:null,"line-through":null};for(var b=g;b.parentNode&&b.parentNode.nodeType==1;){var e=true;for(var d in c){if(!K(c,d)||c[d]){continue}if(f.get("textDecoration").indexOf(d)!=-1){c[d]=f.get("color")}e=false}if(e){break}f=this.getStyle(b=b.parentNode)}return c},textShadow:J(function(f){if(f=="none"){return null}var e=[],g={},b,c=0;var d=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(b=d.exec(f)){if(b[0]==","){e.push(g);g={};c=0}else{if(b[1]){g.color=b[1]}else{g[["offX","offY","blur"][c++]]=b[2]}}}e.push(g);return e}),textTransform:(function(){var b={uppercase:function(c){return c.toUpperCase()},lowercase:function(c){return c.toLowerCase()},capitalize:function(c){return c.replace(/\b./g,function(d){return d.toUpperCase()})}};return function(e,d){var c=b[d.get("textTransform")];return c?c(e):e}})(),whiteSpace:(function(){var b={inline:1,"inline-block":1,"run-in":1};return function(e,c,d){if(b[c.get("display")]){return e}if(!d.previousSibling){e=e.replace(/^\s+/,"")}if(!d.nextSibling){e=e.replace(/\s+$/,"")}return e}})()};N.ready=(function(){var b=!N.recognizesMedia("all"),e=false;var d=[],h=function(){b=true;for(var k;k=d.shift();k()){}};var i=G("link"),j=G("style");function c(k){return k.disabled||g(k.sheet,k.media||"screen")}function g(n,q){if(!N.recognizesMedia(q||"all")){return true}if(!n||n.disabled){return false}try{var r=n.cssRules,p;if(r){search:for(var m=0,k=r.length;p=r[m],m<k;++m){switch(p.type){case 2:break;case 3:if(!g(p.styleSheet,p.media.mediaText)){return false}break;default:break search}}}}catch(o){}return true}function f(){if(document.createStyleSheet){return true}var l,k;for(k=0;l=i[k];++k){if(l.rel.toLowerCase()=="stylesheet"&&!c(l)){return false}}for(k=0;l=j[k];++k){if(!c(l)){return false}}return true}X.ready(function(){if(!e){e=N.getStyle(document.body).isUsable()}if(b||(e&&f())){h()}else{setTimeout(arguments.callee,10)}});return function(k){if(b){k()}else{d.push(k)}}})();function S(c){var b=this.face=c.face;this.glyphs=c.glyphs;this.w=c.w;this.baseSize=parseInt(b["units-per-em"],10);this.family=b["font-family"].toLowerCase();this.weight=b["font-weight"];this.style=b["font-style"]||"normal";this.viewBox=(function(){var e=b.bbox.split(/\s+/);var d={minX:parseInt(e[0],10),minY:parseInt(e[1],10),maxX:parseInt(e[2],10),maxY:parseInt(e[3],10)};d.width=d.maxX-d.minX;d.height=d.maxY-d.minY;d.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return d})();this.ascent=-parseInt(b.ascent,10);this.descent=-parseInt(b.descent,10);this.height=-this.ascent+this.descent}function F(){var c={},b={oblique:"italic",italic:"oblique"};this.add=function(d){(c[d.style]||(c[d.style]={}))[d.weight]=d};this.get=function(h,i){var g=c[h]||c[b[h]]||c.normal||c.italic||c.oblique;if(!g){return null}i={normal:400,bold:700}[i]||parseInt(i,10);if(g[i]){return g[i]}var e={1:1,99:0}[i%100],k=[],f,d;if(e===undefined){e=i>400}if(i==500){i=400}for(var j in g){if(!K(g,j)){continue}j=parseInt(j,10);if(!f||j<f){f=j}if(!d||j>d){d=j}k.push(j)}if(i<f){i=f}if(i>d){i=d}k.sort(function(m,l){return(e?(m>i&&l>i)?m<l:m>l:(m<i&&l<i)?m>l:m<l)?-1:1});return g[k[0]]}}function R(){function d(f,g){if(f.contains){return f.contains(g)}return f.compareDocumentPosition(g)&16}function b(g){var f=g.relatedTarget;if(!f||d(this,f)){return}c(this)}function e(f){c(this)}function c(f){setTimeout(function(){M.replace(f,D.get(f).options,true)},10)}this.attach=function(f){if(f.onmouseenter===undefined){Q(f,"mouseover",b);Q(f,"mouseout",b)}else{Q(f,"mouseenter",e);Q(f,"mouseleave",e)}}}function U(){var c=[],d={};function b(h){var e=[],g;for(var f=0;g=h[f];++f){e[f]=c[d[g]]}return e}this.add=function(f,e){d[f]=c.push(e)-1};this.repeat=function(){var e=arguments.length?b(arguments):c,f;for(var g=0;f=e[g++];){M.replace(f[0],f[1],true)}}}function a(){var d={},b=0;function c(e){return e.cufid||(e.cufid=++b)}this.get=function(e){var f=c(e);return d[f]||(d[f]={})}}function A(b){var d={},c={};this.extend=function(e){for(var f in e){if(K(e,f)){d[f]=e[f]}}return this};this.get=function(e){return d[e]!=undefined?d[e]:b[e]};this.getSize=function(f,e){return c[f]||(c[f]=new N.Size(this.get(f),e))};this.isUsable=function(){return!!b}}function Q(c,b,d){if(c.addEventListener){c.addEventListener(b,d,false)}else{if(c.attachEvent){c.attachEvent("on"+b,function(){return d.call(c,window.event)})}}}function V(c,b){var d=D.get(c);if(d.options){return c}if(b.hover&&b.hoverables[c.nodeName.toLowerCase()]){B.attach(c)}d.options=b;return c}function J(b){var c={};return function(d){if(!K(c,d)){c[d]=b.apply(null,arguments)}return c[d]}}function C(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,o,c,p,f,d){var m=document.createDocumentFragment(),h;if(o===""){return m}var n=p.separate;var j=o.split(P[n]),b=(n=="words");if(b&&T){if(/^\s/.test(o)){j.unshift("")}if(/\s$/.test(o)){j.push("")}}for(var k=0,g=j.length;k<g;++k){h=Z[p.engine](e,b?N.textAlign(j[k],c,k,g):j[k],c,p,f,d,k<g-1);if(h){m.appendChild(h)}}return m}function L(c,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(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(AH,a,z,W,e,AI){var I=(a===null);if(I){a=e.alt}var c=AH.viewBox;var K=z.getSize("fontSize",AH.baseSize);var v=z.get("letterSpacing");v=(v=="normal")?0:K.convertFrom(parseInt(v,10));var d=0,w=0,u=0,Y=0;var b=W.textShadow,s=[];if(b){for(var AG=b.length;AG--;){var m=b[AG];var r=K.convertFrom(parseFloat(m.offX));var p=K.convertFrom(parseFloat(m.offY));s[AG]=[r,p];if(p<d){d=p}if(r>w){w=r}if(p>u){u=p}if(r<Y){Y=r}}}var AL=Cufon.CSS.textTransform(a,z).split(""),U;var J=AH.glyphs,X,M,AC;var G=0,Q,h=[];for(var AG=0,AE=0,AB=AL.length;AG<AB;++AG){X=J[U=AL[AG]]||AH.missingGlyph;if(!X){continue}if(M){G-=AC=M[U]||0;h[AE-1]-=AC}G+=Q=h[AE++]=~~(X.w||AH.w)+v;M=X.k}if(Q===undefined){return null}w+=c.width-Q;Y+=c.minX;var V,L;if(I){V=e;L=e.firstChild}else{V=document.createElement("span");V.className="cufon cufon-canvas";V.alt=a;L=document.createElement("canvas");V.appendChild(L);if(W.printable){var AD=document.createElement("span");AD.className="cufon-alt";AD.appendChild(document.createTextNode(a));V.appendChild(AD)}}var AM=V.style;var o=L.style;var H=K.convert(c.height);var AK=Math.ceil(H);var t=AK/H;var n=t*Cufon.CSS.fontStretch(z.get("fontStretch"));var q=G*n;var AA=Math.ceil(K.convert(q+w-Y));var O=Math.ceil(K.convert(c.height-d+u));L.width=AA;L.height=O;o.width=AA+"px";o.height=O+"px";d+=c.minY;o.top=Math.round(K.convert(d-AH.ascent))+"px";o.left=Math.round(K.convert(Y))+"px";var T=Math.ceil(K.convert(q))+"px";if(A){AM.width=T;AM.height=K.convert(AH.height)+"px"}else{AM.paddingLeft=T;AM.paddingBottom=(K.convert(AH.height)-1)+"px"}var AJ=L.getContext("2d"),f=H/c.height;AJ.scale(f,f*t);AJ.translate(-Y,-d);AJ.lineWidth=AH.face["underline-thickness"];AJ.save();function N(i,g){AJ.strokeStyle=g;AJ.beginPath();AJ.moveTo(0,i);AJ.lineTo(G,i);AJ.stroke()}var P=W.enableTextDecoration?Cufon.CSS.textDecoration(AI,z):{};if(P.underline){N(-AH.face["underline-position"],P.underline)}if(P.overline){N(AH.ascent,P.overline)}function AF(){AJ.scale(n,1);for(var x=0,k=0,g=AL.length;x<g;++x){var y=J[AL[x]]||AH.missingGlyph;if(!y){continue}if(y.d){AJ.beginPath();if(y.code){C(y.code,AJ)}else{y.code=D("m"+y.d,AJ)}AJ.fill()}AJ.translate(h[k++],0)}AJ.restore()}if(b){for(var AG=b.length;AG--;){var m=b[AG];AJ.save();AJ.fillStyle=m.color;AJ.translate.apply(AJ,s[AG]);AF()}}var S=W.textGradient;if(S){var Z=S.stops,R=AJ.createLinearGradient(0,c.minY,0,c.maxY);for(var AG=0,AB=Z.length;AG<AB;++AG){R.addColorStop.apply(R,Z[AG])}AJ.fillStyle=R}else{AJ.fillStyle=z.get("color")}AF();if(P["line-through"]){N(-AH.descent,P["line-through"])}return V}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;var F=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(F?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function C(G,H){return A(G,/(?:em|ex|%)$|^[a-z-]+$/i.test(H)?"1em":H)}function A(J,K){if(/px$/i.test(K)){return parseFloat(K)}var I=J.style.left,H=J.runtimeStyle.left;J.runtimeStyle.left=J.currentStyle.left;J.style.left=K.replace("%","em");var G=J.style.pixelLeft;J.style.left=I;J.runtimeStyle.left=H;return G}var E={};function D(L){var M=L.id;if(!E[M]){var J=L.stops,K=document.createElement("cvml:fill"),G=[];K.type="gradient";K.angle=180;K.focus="0";K.method="sigma";K.color=J[0][1];for(var I=1,H=J.length-1;I<H;++I){G.push(J[I][0]*100+"% "+J[I][1])}K.colors=G.join(",");K.color2=J[H][1];E[M]=K}return E[M]}return function(AI,f,AC,b,n,AJ,AA){var J=(f===null);if(J){f=n.alt}var h=AI.viewBox;var L=AC.computedFontSize||(AC.computedFontSize=new Cufon.CSS.Size(C(AJ,AC.get("fontSize"))+"px",AI.baseSize));var z=AC.computedLSpacing;if(z==undefined){z=AC.get("letterSpacing");AC.computedLSpacing=z=(z=="normal")?0:~~L.convertFrom(A(AJ,z))}var X,M;if(J){X=n;M=n.firstChild}else{X=document.createElement("span");X.className="cufon cufon-vml";X.alt=f;M=document.createElement("span");M.className="cufon-vml-canvas";X.appendChild(M);if(b.printable){var AF=document.createElement("span");AF.className="cufon-alt";AF.appendChild(document.createTextNode(f));X.appendChild(AF)}if(!AA){X.appendChild(document.createElement("cvml:shape"))}}var AO=X.style;var u=M.style;var H=L.convert(h.height),AL=Math.ceil(H);var y=AL/H;var s=y*Cufon.CSS.fontStretch(AC.get("fontStretch"));var x=h.minX,w=h.minY;u.height=AL;u.top=Math.round(L.convert(w-AI.ascent));u.left=Math.round(L.convert(x));AO.height=L.convert(AI.height)+"px";var Q=b.enableTextDecoration?Cufon.CSS.textDecoration(AJ,AC):{};var e=AC.get("color");var AN=Cufon.CSS.textTransform(f,AC).split(""),W;var K=AI.glyphs,c,N,AE;var G=0,o=[],v=0,S;var U,g=b.textShadow;for(var AH=0,AG=0,AD=AN.length;AH<AD;++AH){c=K[W=AN[AH]]||AI.missingGlyph;if(!c){continue}if(N){G-=AE=N[W]||0;o[AG-1]-=AE}G+=S=o[AG++]=~~(c.w||AI.w)+z;N=c.k}if(S===undefined){return null}var V=-x+G+(h.width-S);var AM=L.convert(V*s),AB=Math.round(AM);var r=V+","+h.height,I;var m="r"+r+"ns";var T=b.textGradient&&D(b.textGradient);for(AH=0,AG=0;AH<AD;++AH){c=K[AN[AH]]||AI.missingGlyph;if(!c){continue}if(J){U=M.childNodes[AG];while(U.firstChild){U.removeChild(U.firstChild)}}else{U=document.createElement("cvml:shape");M.appendChild(U)}U.stroked="f";U.coordsize=r;U.coordorigin=I=(x-v)+","+w;U.path=(c.d?"m"+c.d+"xe":"")+"m"+I+m;U.fillcolor=e;if(T){U.appendChild(T.cloneNode(false))}var AK=U.style;AK.width=AB;AK.height=AL;if(g){var P=g[0],O=g[1];var a=Cufon.CSS.color(P.color),Y;var q=document.createElement("cvml:shadow");q.on="t";q.color=a.color;q.offset=P.offX+","+P.offY;if(O){Y=Cufon.CSS.color(O.color);q.type="double";q.color2=Y.color;q.offset2=O.offX+","+O.offY}q.opacity=a.opacity||(Y&&Y.opacity)||1;U.appendChild(q)}v+=o[AG++]}var p=U.nextSibling,R,Z;if(b.forceHitArea){if(!p){p=document.createElement("cvml:rect");p.stroked="f";p.className="cufon-vml-cover";R=document.createElement("cvml:fill");R.opacity=0;p.appendChild(R);M.appendChild(p)}Z=p.style;Z.width=AB;Z.height=AL}else{if(p){M.removeChild(p)}}AO.width=Math.max(Math.ceil(L.convert(G*s)),0);if(F){var t=AC.computedYAdjust;if(t===undefined){var d=AC.get("lineHeight");if(d=="normal"){d="1em"}else{if(!isNaN(d)){d+="em"}}AC.computedYAdjust=t=0.5*(A(AJ,d)-parseFloat(AO.height))}if(t){AO.marginTop=Math.ceil(t)+"px";AO.marginBottom=t+"px"}}return X}})());Cufon.registerFont({"w":144,"face":{"font-family":"savoje","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 8 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"3","cap-height":"6","bbox":"-58.9266 -256 368 70.4834","underline-thickness":"0","underline-position":"0","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":62},"$":{"d":"35,1v41,-2,48,-60,16,-78r12,-58v7,3,13,9,19,17r8,-9v-6,-8,-14,-14,-25,-16r4,-19v-12,-1,1,20,-14,18r3,-18v-9,0,-4,13,-7,18v-37,3,-43,54,-15,72r-13,64v-11,-5,-19,-11,-23,-20r-10,11v5,10,19,16,31,18r-4,19v12,1,-1,-20,14,-18r-4,18v9,0,5,-13,8,-19xm54,-137r5,1r-11,56r-5,-5xm39,-69v2,1,3,4,6,5r-13,59r-5,-1xm39,-88v-17,-13,-18,-48,10,-50xm48,-60v23,17,19,53,-11,55","w":102},"%":{"d":"36,-62v31,-2,47,-43,34,-73v15,6,32,8,43,-2r-99,141r4,2r111,-157r-5,-4v-11,30,-52,20,-75,9v-25,4,-40,25,-41,53v-1,18,11,32,28,31xm93,3v39,1,58,-81,12,-84v-25,4,-40,24,-40,53v0,18,11,32,28,31xm35,-66v-28,-7,-9,-75,14,-75v9,0,13,6,13,19v0,26,-7,51,-27,56xm92,-1v-28,-7,-9,-75,14,-75v9,0,13,6,13,19v0,26,-7,51,-27,56","w":155},"&":{"d":"18,-58v-1,62,78,77,127,49v36,21,76,17,98,-19r-2,-3v-14,28,-56,30,-82,12v21,-18,43,-37,45,-73v2,-30,-36,-43,-56,-22v-10,11,-23,30,-8,42v8,-29,20,-43,37,-43v47,16,2,83,-22,93v-35,-26,-60,-61,-68,-114v26,-14,72,-36,72,-65v0,-12,-11,-23,-24,-22v-40,4,-58,44,-59,89v-29,19,-57,37,-58,76xm76,-129v4,55,29,92,64,116v-48,21,-105,-1,-104,-54v0,-24,14,-45,40,-62xm130,-216v32,3,10,44,-4,52v-11,7,-25,16,-39,23v1,-37,10,-71,43,-75","w":269},"'":{"d":"17,-145v-11,1,-6,22,-8,35v7,-5,18,-29,8,-35","w":27},"(":{"d":"73,26v-65,-55,-7,-214,32,-263v6,-8,15,-12,25,-15r1,-4v-70,24,-93,111,-99,198v-3,43,11,76,40,88","w":119},")":{"d":"44,-252v63,42,11,178,-11,232v-10,24,-22,38,-46,46r-1,4v69,-25,93,-110,99,-198v3,-44,-11,-76,-40,-88","w":119},"*":{"d":"68,-235v-11,0,-6,17,-10,24v-5,-7,-7,-23,-15,-12r12,16v-8,1,-22,-5,-22,5r22,-1v-5,8,-24,12,-17,23r17,-17r-6,23r6,0r5,-25v5,6,9,24,16,13r-13,-17v8,-1,24,6,23,-5r-21,1v5,-7,25,-12,16,-21r-18,17","w":83},"+":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},",":{"d":"26,-3v-4,11,-17,20,-27,28r2,4v16,-9,32,-21,35,-42v-1,-7,-4,-15,-13,-15v-13,0,-25,28,-6,29v5,0,5,-3,9,-4","w":83},"-":{"d":"53,-58r-43,0r-2,8r43,0","w":85},".":{"d":"21,2v16,0,21,-30,2,-30v-16,-1,-23,31,-2,30","w":83},"\/":{"d":"149,-252r-4,-2r-149,279r5,2","w":136},"0":{"d":"37,3v39,-2,68,-53,68,-100v1,-26,-13,-51,-38,-48v-45,5,-65,52,-67,99v-1,27,12,50,37,49xm67,-141v16,1,23,15,23,34v-3,44,-14,98,-52,106v-17,0,-23,-16,-23,-35v-1,-42,22,-104,52,-105","w":122},"1":{"d":"42,-5v-17,3,-19,-5,-16,-20r26,-117v-20,7,-33,23,-50,33v4,11,23,-18,28,-2v-8,34,-12,74,-24,104v-2,5,-19,-2,-18,7r53,0","w":69},"2":{"d":"-19,1v28,-7,61,2,91,-1r11,-32v-12,23,-46,17,-79,17v31,-28,79,-44,85,-94v2,-22,-15,-38,-38,-36v-25,1,-43,14,-46,37v-1,12,15,20,22,9v-21,-12,-3,-43,20,-41v39,3,26,62,5,77v-20,22,-46,42,-71,59r0,5","w":106},"3":{"d":"29,3v55,0,77,-82,24,-95r41,-45r-1,-5v-23,-1,-50,2,-69,-3r-13,33v10,-17,36,-18,68,-16r-41,46v20,2,36,20,36,41v-1,23,-16,39,-39,39v-22,0,-37,-18,-33,-41v-9,1,-12,8,-13,17v0,17,21,29,40,29","w":110},"4":{"d":"-7,-41v13,-9,35,-5,53,-3r-11,44r16,0r6,-41v12,2,19,3,29,0r7,-16v-9,7,-20,4,-34,3r7,-49v-12,9,-10,32,-16,47v-20,-3,-34,2,-51,8v22,-28,48,-54,50,-100v-7,6,-23,7,-17,21v-3,34,-24,64,-42,83","w":110},"5":{"d":"95,-151v-13,14,-40,7,-65,9r-21,61v26,-10,61,0,60,35v-1,26,-16,42,-41,44v-18,1,-35,-16,-27,-35v-9,0,-12,7,-13,16v0,15,15,25,33,25v62,0,82,-102,14,-104v-5,0,-11,0,-16,2r11,-29v18,0,39,2,56,0","w":102},"6":{"d":"90,-60v0,-46,-58,-44,-72,-5v6,-33,21,-70,52,-75v15,-2,19,17,11,27v10,1,16,-6,17,-14v0,-11,-11,-20,-23,-18v-47,6,-73,50,-75,102v-1,28,10,46,36,46v34,0,54,-30,54,-63xm74,-62v-1,30,-12,59,-39,61v-31,3,-22,-57,-7,-71v11,-22,48,-23,46,10","w":111},"7":{"d":"3,-112v12,-9,13,-16,38,-16r36,0v-29,38,-57,89,-78,133r25,-13v13,-51,37,-95,67,-130r0,-4v-25,-1,-54,1,-76,-3","w":84},"8":{"d":"63,-144v-38,0,-54,45,-27,66v-20,6,-40,21,-40,43v0,23,20,38,46,38v47,0,65,-56,26,-76v17,-7,33,-21,34,-40v1,-19,-18,-31,-39,-31xm46,-2v-45,0,-46,-67,-6,-74v14,10,37,25,38,44v0,16,-15,30,-32,30xm32,-115v2,-36,57,-31,57,3v0,16,-12,32,-25,36v-16,-12,-29,-20,-32,-39","w":117},"9":{"d":"69,-69v-9,30,-36,55,-63,73r3,3v39,-22,85,-55,85,-110v0,-25,-12,-40,-36,-42v-49,-3,-76,91,-19,91v12,0,22,-5,30,-15xm42,-59v-13,0,-21,-12,-20,-27v2,-27,10,-52,36,-54v15,-1,23,12,22,28v-2,26,-12,50,-38,53","w":110},":":{"d":"35,-70v8,0,16,-7,15,-17v0,-8,-4,-12,-12,-13v-9,0,-16,8,-15,18v0,8,4,12,12,12xm21,2v16,0,21,-30,2,-30v-16,-1,-23,31,-2,30","w":83},";":{"d":"39,-100v-16,-1,-24,30,-3,30v16,0,21,-29,3,-30xm26,-3v-4,11,-17,20,-27,28r2,4v16,-9,32,-21,35,-42v-1,-7,-4,-15,-13,-15v-13,0,-25,28,-6,29v5,0,5,-3,9,-4","w":83},"<":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"=":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},">":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"?":{"d":"50,-110v-20,17,-36,71,7,71r4,-12v-17,10,-32,-5,-20,-23v25,-38,64,-67,74,-118v-4,-53,-77,-22,-88,5r5,18v14,-20,29,-43,58,-47v50,25,-29,81,-40,106xm51,-12v0,-7,-7,-14,-14,-14v-7,0,-14,7,-14,14v0,7,7,14,14,14v7,0,14,-7,14,-14","w":120},"@":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"A":{"d":"123,-72v23,16,45,43,54,72r11,0r17,-78v7,0,14,1,14,-6r-13,0r29,-140v-2,-21,-27,-11,-32,2v-59,76,-80,223,-212,216r-5,14v68,4,108,-38,137,-80xm188,-78r-11,55v-15,-24,-29,-37,-50,-55r61,0xm132,-84r76,-134v7,-6,11,2,8,9r-27,125r-57,0","w":234,"k":{"r":5}},"B":{"d":"81,-190r5,-37v-25,2,-20,34,-24,59v-29,39,-58,86,-62,151v-1,25,19,25,28,9v24,-44,42,-111,51,-172v13,-17,47,-48,68,-47v30,2,18,43,6,60v-14,20,-35,41,-56,53r-1,8v25,-7,45,8,45,35v0,49,-51,90,-91,56r-9,11v50,28,118,-15,118,-71v0,-26,-22,-44,-49,-39v29,-23,67,-54,70,-98v1,-14,-8,-27,-22,-26v-33,3,-53,25,-77,48xm60,-157v-8,51,-24,105,-43,145v-4,7,-13,8,-12,-6v5,-56,28,-105,55,-139","w":179,"k":{"r":5}},"C":{"d":"159,-212v-3,34,-33,51,-63,60r6,13v32,-11,60,-32,64,-70v-9,-53,-80,-10,-98,10v-30,33,-62,73,-63,130v0,46,24,74,66,74v29,0,56,-14,84,-42v-1,-3,-2,-5,-5,-2v-22,19,-37,34,-69,34v-84,0,-60,-139,-18,-178v21,-20,38,-47,75,-47v11,0,22,6,21,18","w":173,"k":{"r":5}},"D":{"d":"233,-80v-1,-48,-33,-84,-66,-110v3,-15,7,-28,9,-45r-19,8r-5,26v-31,-19,-58,-28,-82,-28v-58,0,-60,69,-15,86r11,-11v-35,-6,-58,-65,-6,-65v36,0,66,18,89,35v-20,55,-27,124,-65,161v-26,-8,-82,-22,-89,11v8,31,60,16,80,3v70,32,160,8,158,-71xm225,-74v1,70,-76,79,-134,54v40,-33,55,-95,72,-154v41,34,62,67,62,100xm26,1v-23,3,-32,-23,-7,-22v16,1,34,6,49,10v-12,7,-25,10,-42,12","w":255,"k":{"r":5}},"E":{"d":"0,-42v0,64,104,49,146,25r4,-22v-34,18,-60,35,-100,35v-62,0,-44,-65,4,-94v19,-13,33,-22,54,-31v-1,-4,5,-12,-1,-11v-17,0,-26,-4,-28,-18v6,-38,48,-70,87,-70v10,0,15,4,15,12v-2,20,-15,33,-28,48r9,10v16,-15,31,-36,33,-59v0,-12,-8,-18,-20,-18v-46,1,-108,50,-111,83v0,11,6,18,18,20v-40,20,-82,45,-82,90","w":180,"k":{"z":7,"y":10,"x":10,"w":10,"v":10,"u":7,"t":7,"s":5,"r":10,"q":7,"p":7,"o":7,"n":7,"m":7,"i":7,"g":7,"e":7,"d":7,"c":7,"a":7}},"F":{"d":"-14,2v71,19,124,-25,145,-80r44,0r1,-6r-42,0v15,-39,28,-85,37,-130r41,7v1,-5,11,-14,5,-17v-69,-4,-181,-31,-199,36v1,26,27,38,56,39r12,-12v-42,-3,-62,-12,-62,-28v12,-49,97,-27,147,-25r-19,8v-7,42,-19,86,-33,122v-8,1,-21,-4,-20,6v6,1,14,-2,18,1v-15,50,-66,97,-126,66","w":196,"k":{"y":17,"u":17,"r":14,"o":17,"i":12,"e":17,"a":19,";":14,":":14,".":31,",":31}},"G":{"d":"17,-121v-23,50,-15,124,43,124v27,0,49,-15,65,-32v-8,46,-19,91,-72,92v-14,0,-27,-3,-40,-10r-6,12v72,22,125,-25,134,-91r11,-53r-19,11v-3,10,-3,22,-7,31v-16,15,-29,29,-54,29v-31,0,-50,-30,-48,-64v5,-81,49,-143,118,-159v12,0,21,7,21,19v-3,36,-34,49,-62,60r6,14v31,-12,60,-32,64,-71v-7,-52,-77,-12,-95,6v-23,23,-46,53,-59,82","w":170},"H":{"d":"127,-78v27,11,52,47,65,78r10,0r50,-237r-18,9r-30,144v-24,-1,-52,2,-74,-1v17,-40,31,-95,40,-143v-7,5,-19,5,-21,13v-28,92,-29,239,-158,208r-5,13v76,12,119,-32,141,-84xm202,-78r-11,54v-14,-20,-31,-39,-49,-54r60,0","w":248},"I":{"d":"128,-237v-51,16,-74,136,-24,168v-15,44,-54,81,-110,60v-8,10,-5,16,12,15v58,-3,87,-28,111,-70v9,-1,25,6,25,-5v-6,3,-16,3,-22,0v16,-32,29,-73,30,-119v0,-25,-4,-46,-22,-49xm107,-75v-33,-29,-17,-138,18,-156v28,33,-6,120,-18,156","w":153,"k":{".":14,",":14}},"J":{"d":"130,-237v-41,11,-62,91,-39,134r13,-11v-21,-30,-13,-104,21,-114v29,37,-4,107,-14,149v-59,15,-114,45,-123,105v-3,17,11,27,26,28v63,-14,89,-77,115,-131r19,-1v2,-10,-9,-4,-17,-4v10,-30,21,-66,21,-104v0,-33,-8,-51,-22,-51xm17,49v-24,-2,-19,-35,-8,-53v19,-33,56,-58,99,-69v-15,45,-50,116,-91,122","w":155,"k":{".":7,",":7}},"K":{"d":"212,-9v-25,-21,-45,-49,-59,-80r128,-140r-19,0r-123,147v15,34,36,62,61,85xm154,-228v-25,106,-35,252,-160,221v-8,10,-5,16,12,15v131,-6,141,-134,167,-245","w":252,"k":{"y":22,"w":26,"r":29,"o":19,"i":22,"e":19,"a":19,";":14,":":14,".":14,",":14}},"L":{"d":"-5,-18v7,38,78,22,94,1v30,8,57,22,97,21r7,-17v-38,3,-65,-6,-93,-17v38,-48,24,-149,66,-195v30,-20,40,13,29,43v-4,11,-7,21,-12,30v26,0,28,-28,28,-51v0,-51,-58,-30,-72,0v-22,45,-27,123,-49,171v-27,-10,-89,-19,-95,14xm1,-16v10,-25,57,-11,79,-3v-13,20,-68,31,-79,3","w":208},"M":{"d":"57,-233v30,50,-16,140,-22,201r-8,32r15,0v22,-67,47,-148,84,-197v8,-11,14,-16,20,-16v8,0,6,14,4,22r-40,191r14,0v15,-69,46,-146,85,-194v9,-13,20,-6,17,10r-38,184r16,0r40,-193v-5,-34,-36,-13,-47,5v-18,28,-37,66,-52,102r23,-121v0,-11,-5,-18,-15,-18v-31,0,-73,97,-88,139r15,-107v2,-29,-17,-58,-40,-39v-18,15,-27,44,-30,75r13,8v3,-28,15,-83,34,-84","w":249},"N":{"d":"57,-232v22,8,11,43,6,66r-37,166v5,-1,14,3,16,-3v18,-63,42,-124,73,-174v15,-23,27,-35,37,-35v13,-1,12,17,9,29r-40,183r17,0r42,-202v-8,-36,-40,-22,-60,8v-19,29,-39,70,-56,109v5,-36,14,-66,16,-107v1,-30,-14,-59,-38,-40v-19,15,-27,43,-32,74r13,10v4,-26,13,-84,34,-84","w":184},"O":{"d":"80,3v80,0,122,-72,128,-154v5,-69,-66,-105,-123,-71v-44,26,-80,74,-80,143v0,50,26,82,75,82xm129,-229v39,0,61,30,59,71v-5,78,-29,155,-105,155v-37,0,-60,-32,-58,-72v4,-78,33,-154,104,-154","w":215,"k":{"z":5,"s":5,"q":5,"o":5,"g":5,"e":5,"d":5,"c":5,"a":7,".":12,",":12}},"P":{"d":"180,-196v3,-32,-27,-51,-54,-33v-29,20,-51,51,-67,85r7,-81v-7,5,-20,1,-20,18v0,76,-21,141,-34,207r17,0v23,-87,30,-200,113,-226v15,1,19,14,19,31v0,62,-32,129,-99,117v-3,6,-15,16,1,14v68,-8,111,-63,117,-132","w":171,"k":{"y":29,"u":26,"s":29,"r":7,"o":34,"n":29,"i":7,"e":34,"a":36,";":24,":":24,".":36,",":36}},"Q":{"d":"5,-79v-1,62,48,96,108,76v22,15,41,33,67,36r13,-13v-29,-2,-47,-15,-67,-29v46,-25,78,-74,82,-141v5,-71,-66,-106,-123,-72v-44,26,-79,74,-80,143xm58,-9v11,-17,31,-12,49,1v-15,7,-35,7,-49,-1xm119,-13v-23,-17,-49,-24,-64,3v-18,-12,-30,-35,-30,-65v0,-78,33,-149,104,-154v75,-6,64,109,39,159v-12,24,-28,44,-49,57","w":215,"k":{"u":5}},"R":{"d":"177,-199v2,-38,-36,-46,-62,-24v-22,19,-46,51,-58,82r7,-84v-10,6,-24,4,-19,23v-1,74,-21,138,-33,202r16,0v24,-86,28,-199,110,-225v13,1,22,13,21,28v-6,63,-42,108,-103,114v15,34,41,66,69,88r13,-12v-23,-20,-47,-44,-62,-72v51,-19,96,-56,101,-120","w":167,"k":{"y":14,"u":12,"o":12,"i":7,"e":12,"a":10}},"S":{"d":"130,-57v0,55,-85,62,-125,35r-10,17v58,23,147,1,147,-63v0,-55,-74,-52,-84,-99v1,-34,52,-60,90,-63v12,0,22,5,22,15v0,21,-21,38,-40,50r13,8v21,-13,42,-29,42,-55v0,-17,-16,-23,-35,-23v-50,-1,-105,40,-107,78v8,53,87,43,87,100","w":170,"k":{"y":10,"w":5,"v":5,"u":5,"t":5,"q":5,"p":7,"o":5,"n":7,"m":7,"i":7,"e":5,"c":5,"a":7}},"T":{"d":"150,-206v-20,100,-46,234,-155,197r-7,16v139,9,151,-110,182,-221v12,4,28,2,40,7v1,-5,11,-14,5,-17v-69,-3,-182,-32,-199,36v1,26,27,38,55,39r13,-12v-42,-3,-63,-12,-63,-28v12,-46,96,-29,146,-25","w":189,"k":{"z":34,"y":34,"w":24,"u":34,"s":36,"r":26,"o":36,"i":29,"e":36,"c":36,"a":36,";":24,":":24,".":24,",":24}},"U":{"d":"33,-42v-6,20,-6,46,16,46v43,0,87,-110,107,-160r-34,156r17,0v11,-82,33,-154,49,-231r-16,6v-16,69,-54,150,-86,196v-11,14,-21,21,-29,21v-17,-1,-10,-21,-7,-35r31,-151v6,-41,-35,-52,-51,-19v-7,16,-15,36,-19,57r13,9v8,-30,9,-72,35,-83v19,6,6,48,3,65","w":183},"V":{"d":"58,-30v-8,38,25,41,44,19v47,-54,96,-145,106,-218r-20,8v-5,78,-35,136,-72,184v-14,18,-26,27,-34,27v-8,1,-7,-12,-7,-22r9,-163v3,-43,-39,-56,-56,-16v-7,16,-15,34,-18,55r13,9v7,-30,8,-77,35,-83v12,-3,11,23,10,39","w":191,"k":{"y":17,"u":17,"o":19,"i":5,"e":19,"a":22,".":19,",":19}},"W":{"d":"167,-153v3,52,-21,140,10,157v36,-12,49,-54,67,-88v27,-53,39,-102,39,-146v-25,2,-14,40,-20,66v-13,59,-36,110,-68,149v-15,11,-17,0,-16,-20r5,-131r6,-59v-6,4,-17,3,-18,12v-11,78,-39,147,-79,196v-10,12,-19,5,-17,-12v5,-51,3,-107,7,-159v3,-52,-36,-61,-55,-27v-8,14,-14,34,-18,60r13,8v7,-29,7,-76,33,-83v11,-3,12,22,11,38r-7,170v-4,28,19,33,33,15v30,-37,58,-93,74,-146","w":272,"k":{"y":7,"u":7,"o":10,"i":5,"e":10,"a":12,".":12,",":19}},"X":{"d":"56,-217v22,23,33,60,41,106v-28,37,-44,89,-105,92r-4,23v53,-8,87,-70,111,-107v10,44,24,81,50,108r13,-12v-28,-27,-41,-69,-52,-116v27,-32,39,-90,92,-92r4,-20v-54,9,-71,67,-98,104v-8,-42,-22,-83,-39,-100","w":188,"k":{"y":10,"o":7,"e":7,"a":5}},"Y":{"d":"159,-156v-20,82,-47,174,-146,146v-3,6,-10,15,3,15v136,0,149,-124,177,-235r-20,9v-11,57,-33,114,-79,136v-38,-18,20,-141,-37,-152v-28,3,-43,49,-47,81v5,1,13,14,14,5v5,-36,10,-73,33,-80v8,-2,12,13,11,27r-4,97v-4,49,41,37,58,9v12,-20,29,-36,37,-58","w":182,"k":{"v":5,"u":7,"o":10,"i":5,"e":10,"a":12,".":19,",":19}},"Z":{"d":"-7,-17v10,37,58,11,77,-7v32,9,71,31,109,27r9,-17v-43,4,-71,-12,-104,-21v55,-52,99,-112,129,-187v-55,-14,-167,-36,-179,29v2,26,25,35,53,40r13,-13v-31,-5,-57,-6,-61,-30v4,-24,25,-28,55,-29v34,0,71,10,105,15v-27,70,-72,126,-123,173v-32,-8,-79,-10,-83,20xm1,-16v4,-23,38,-17,61,-10v-16,11,-27,20,-47,21v-7,0,-14,-4,-14,-11","w":205},"[":{"d":"57,22v-14,2,-19,-2,-16,-17r50,-242v1,-12,8,-10,21,-11r1,-6r-31,0r-58,282v11,-2,32,6,33,-6","w":119},"\\":{"d":"42,-253r54,281r6,-1r-55,-281","w":136},"]":{"d":"62,-248v14,-2,18,3,15,17r-54,251v-2,4,-20,-2,-18,8r31,0r58,-282r-31,0","w":119},"^":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"_":{"d":"0,48r0,8r180,0r0,-8r-180,0","w":180},"`":{"d":"35,-147r-11,4r17,27r4,-1","w":68},"a":{"d":"100,-23v-8,17,-30,16,-24,-7r18,-74v-7,4,-17,4,-18,14v-38,-31,-81,25,-81,66v0,37,40,31,57,3v7,-10,13,-16,17,-29v-5,19,-9,63,17,48v1,-4,20,-16,14,-21xm10,-27v0,-32,21,-76,57,-65v16,30,-14,77,-44,84v-9,0,-13,-6,-13,-19","w":117,"k":{"x":5,"w":5,"v":5}},"b":{"d":"93,-75v0,-14,-8,-26,-21,-27v-20,0,-41,24,-62,71r50,-217r-18,9r-47,240r12,-7v42,30,86,-24,86,-69xm77,-77v2,42,-38,104,-67,59v14,-29,24,-66,56,-75v8,0,11,5,11,16","w":111},"c":{"d":"49,-97v15,2,8,27,-3,29v10,7,22,-7,22,-17v-1,-10,-7,-17,-18,-17v-32,6,-52,35,-55,71v-1,28,31,43,53,27v5,-4,21,-15,19,-24v-13,25,-57,32,-56,-8v1,-28,13,-57,38,-61","w":86},"d":{"d":"97,-23v-6,8,-27,22,-24,0v10,-77,34,-150,50,-225r-19,9r-29,144v-43,-20,-80,29,-80,70v0,37,38,32,56,4v5,-8,12,-16,15,-24v-12,26,4,66,26,34v2,-4,11,-8,5,-12xm10,-25v0,-33,22,-79,57,-69v6,3,7,9,5,17v-8,30,-21,63,-48,71v-9,-1,-14,-8,-14,-19","w":114},"e":{"d":"-5,-32v-2,47,61,41,75,7r-3,-2v-12,26,-59,30,-56,-9v26,-9,55,-25,55,-50v0,-9,-8,-16,-17,-16v-32,6,-52,35,-54,70xm11,-41v5,-25,14,-50,37,-56v20,19,-15,49,-37,56","w":87,"k":{"x":3,"w":3,"v":5}},"f":{"d":"-6,13v-3,25,-20,62,-45,41v-3,5,-15,15,-2,15v72,-2,61,-106,84,-163r28,0r1,-6r-28,0v12,-43,19,-96,36,-133v8,-10,24,-7,31,4r7,-16v-71,-17,-72,86,-88,145v-7,1,-19,-3,-18,6r17,0","w":57,"k":{"\u2019":-17,"\u201d":-17,".":10,",":10}},"g":{"d":"64,-41v-10,45,-18,129,-71,92r-8,11v87,33,86,-99,109,-166v-6,4,-18,3,-18,13v-40,-28,-79,26,-81,67v-1,28,29,34,46,15v7,-8,15,-18,23,-32xm10,-26v1,-35,35,-93,64,-56v-8,32,-20,68,-50,76v-9,-1,-14,-9,-14,-20","w":109},"h":{"d":"77,-9v-24,-24,32,-83,-8,-92v-28,4,-47,43,-58,68r49,-215r-19,9r-46,241r11,-4v10,-36,24,-77,57,-89v24,15,-30,88,13,92v9,-4,14,-14,22,-21v-7,-6,-17,15,-21,11","w":112},"i":{"d":"46,-162v0,-5,-5,-10,-10,-10v-6,0,-11,4,-11,10v0,6,5,11,11,11v6,0,10,-5,10,-11xm36,-23v-15,22,-30,14,-24,-10r19,-70r-18,7v-4,27,-11,50,-13,79v-1,18,19,25,28,9v2,-4,13,-9,8,-15","w":51},"j":{"d":"30,-103r-17,7r-27,141v-5,13,-24,21,-37,10v-4,6,-13,15,3,14v33,-2,45,-26,51,-54xm46,-162v0,-6,-5,-10,-11,-10v-5,0,-10,5,-10,10v0,6,4,11,10,11v6,0,11,-5,11,-11","w":47},"k":{"d":"36,-69v12,-14,24,-23,47,-20r3,-14v-40,2,-58,35,-73,63r48,-208r-19,9r-47,241r11,-4v3,-18,10,-37,21,-55v12,20,21,71,50,54v2,-3,17,-11,13,-19v-19,30,-40,-8,-46,-29v-4,-10,-5,-11,-8,-18","w":104},"l":{"d":"36,-23v-12,14,-23,21,-25,1r50,-226r-19,9r-42,222v-1,18,19,25,28,9v2,-4,13,-9,8,-15","w":51},"m":{"d":"129,-22v0,-29,31,-71,-1,-80v-28,7,-35,29,-52,60v2,-15,8,-27,8,-44v0,-27,-31,-11,-40,2v-9,13,-20,29,-27,45r15,-64r-17,7r-18,98r11,-4v11,-37,25,-75,56,-90v11,0,6,14,4,22r-14,72r12,-4v11,-36,24,-75,55,-90v11,-1,7,13,5,21v-7,27,-16,94,19,63v3,-5,15,-10,8,-15v-8,9,-13,14,-17,14v-5,-1,-7,-5,-7,-13","w":170,"k":{"w":5,"v":5}},"n":{"d":"82,-9v-26,-21,33,-83,-8,-92v-28,5,-42,34,-57,62r15,-64r-17,7r-18,98v26,-9,21,-49,40,-67v12,-18,22,-26,30,-26v11,0,7,11,6,20v-2,23,-21,63,4,73v12,-2,15,-11,25,-22r-2,-3v-8,9,-14,14,-18,14","w":116,"k":{"\u2019":24,"w":5,"v":5}},"o":{"d":"53,-101v-34,0,-56,31,-58,67v-1,21,12,39,33,37v36,-3,56,-32,58,-69v1,-21,-13,-35,-33,-35xm52,-97v41,11,8,96,-21,96v-14,0,-21,-11,-20,-27v2,-31,13,-64,41,-69","w":105,"k":{"z":7}},"p":{"d":"94,-73v0,-30,-31,-37,-48,-17v-7,9,-15,20,-24,37r11,-50r-17,7r-33,166r10,0r18,-74v40,27,83,-24,83,-69xm66,-95v37,16,-7,94,-32,94v-27,0,-18,-34,-9,-49v10,-18,19,-40,41,-45","w":113},"q":{"d":"-5,-25v0,33,35,36,53,10v6,-9,13,-16,18,-27r-25,112r9,0r44,-174v-6,4,-17,4,-18,13v-37,-30,-81,25,-81,66xm11,-24v3,-32,16,-66,46,-71v38,14,-4,84,-32,89v-11,0,-14,-7,-14,-18","w":108},"r":{"d":"28,-17v3,-32,18,-57,30,-81v-14,0,-20,10,-35,5v3,-12,3,-30,-10,-30v-17,4,-14,33,2,39v-5,12,-11,24,-20,34r3,3v9,-10,17,-23,21,-36v12,2,22,0,29,-6v-14,22,-34,42,-34,74v0,34,38,7,47,-4r-3,-3v-15,13,-25,24,-30,5xm13,-115v7,0,8,13,6,20v-9,-4,-14,-16,-6,-20","w":77},"s":{"d":"41,-23v0,24,-39,24,-46,0r-9,12v21,32,79,4,61,-33v-5,-11,-31,-20,-32,-34v-1,-8,10,-16,18,-16v13,0,18,7,20,18v16,-8,3,-26,-12,-25v-20,1,-35,12,-35,31v0,22,35,25,35,47","w":76},"t":{"d":"47,-24v-11,22,-39,20,-32,-11r14,-59v10,-2,29,5,30,-6r-29,0r12,-54r-16,7r-10,47v-8,1,-19,-3,-19,6r17,0r-14,76v-1,18,20,26,33,15v3,-3,20,-14,14,-21","w":64},"u":{"d":"26,-6v-14,1,-16,-15,-12,-29r17,-68r-17,7r-14,79v6,32,41,19,56,-5v-1,31,23,27,37,4v2,-2,-1,-3,-2,-5v-11,15,-22,21,-24,1v3,-29,13,-54,19,-81r-17,7r-12,66v-11,16,-21,24,-31,24","w":108},"v":{"d":"28,-10v-15,-18,-9,-60,-12,-93r-16,7r13,95v34,2,76,-66,58,-106r-13,12v26,25,-17,80,-30,85","w":91,"k":{"u":5,".":7,",":7}},"w":{"d":"78,-12v-11,-19,-8,-58,-10,-91r-16,7r5,42v-9,16,-16,35,-30,43v-12,-19,-8,-62,-11,-92r-16,7v5,31,5,68,14,95v16,11,36,-30,44,-44v3,19,4,66,26,39v21,-26,55,-61,36,-101r-13,12v25,22,-17,78,-29,83","w":140,"k":{".":7,",":7}},"x":{"d":"37,-59r-20,-44r-13,5r23,50r-44,48v29,2,28,-30,47,-41r19,41r16,0v-5,-20,-34,-46,-18,-61r37,-39v-27,-1,-29,29,-47,41","w":85},"y":{"d":"2,-32v-8,44,32,41,53,11v-7,39,-22,109,-67,72r-9,11v85,34,89,-96,109,-165r-16,7r-15,68v-11,11,-17,20,-32,22v-14,1,-14,-13,-11,-26r17,-71r-17,7","w":105},"z":{"d":"12,-100r-2,13r45,0v-20,29,-45,56,-67,83r2,4r70,0r2,-14v-19,0,-39,2,-57,0r66,-82r-1,-4r-58,0","w":83,"k":{"o":5}},"{":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"|":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"}":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"~":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00c4":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00c5":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00c7":{"d":"44,39v14,12,40,-5,28,-21v-3,-3,-7,-3,-12,-2v6,-19,33,-9,53,-22v13,-9,28,-17,42,-31v-1,-3,-2,-5,-5,-2v-22,19,-37,34,-69,34v-82,0,-65,-130,-18,-178v21,-20,38,-47,75,-47v11,0,22,6,21,18v-3,34,-33,51,-63,60r6,13v32,-11,60,-32,64,-70v-9,-53,-80,-10,-98,10v-30,33,-62,73,-63,130v0,41,21,69,57,73v-1,6,-14,16,-5,18v5,-2,9,-2,9,4v0,9,-13,18,-21,10","w":173},"\u00c9":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00d1":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00d6":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00dc":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00e1":{"d":"100,-23v-8,17,-30,16,-24,-7r18,-74v-7,4,-17,4,-18,14v-38,-31,-81,25,-81,66v0,37,40,31,57,3v7,-10,13,-16,17,-29v-5,19,-9,63,17,48v1,-4,20,-16,14,-21xm10,-27v0,-32,21,-76,57,-65v16,30,-14,77,-44,84v-9,0,-13,-6,-13,-19xm95,-143r-11,-4r-29,30v16,-1,26,-19,40,-26","w":117},"\u00e0":{"d":"100,-23v-8,17,-30,16,-24,-7r18,-74v-7,4,-17,4,-18,14v-38,-31,-81,25,-81,66v0,37,40,31,57,3v7,-10,13,-16,17,-29v-5,19,-9,63,17,48v1,-4,20,-16,14,-21xm10,-27v0,-32,21,-76,57,-65v16,30,-14,77,-44,84v-9,0,-13,-6,-13,-19xm59,-147r-11,4r17,27r4,-1","w":117},"\u00e2":{"d":"100,-23v-8,17,-30,16,-24,-7r18,-74v-7,4,-17,4,-18,14v-38,-31,-81,25,-81,66v0,37,40,31,57,3v7,-10,13,-16,17,-29v-5,19,-9,63,17,48v1,-4,20,-16,14,-21xm10,-27v0,-32,21,-76,57,-65v16,30,-14,77,-44,84v-9,0,-13,-6,-13,-19xm68,-130v8,2,17,12,23,6r-21,-17v-8,7,-25,10,-26,20","w":117},"\u00e4":{"d":"100,-23v-8,17,-30,16,-24,-7r18,-74v-7,4,-17,4,-18,14v-38,-31,-81,25,-81,66v0,37,40,31,57,3v7,-10,13,-16,17,-29v-5,19,-9,63,17,48v1,-4,20,-16,14,-21xm10,-27v0,-32,21,-76,57,-65v16,30,-14,77,-44,84v-9,0,-13,-6,-13,-19xm64,-131v1,-4,-4,-9,-8,-8v-4,-1,-9,4,-8,8v-1,4,4,9,8,8v4,1,9,-4,8,-8xm92,-131v1,-4,-4,-9,-8,-8v-4,-1,-9,4,-9,8v0,4,5,9,9,8v4,1,9,-4,8,-8","w":117},"\u00e3":{"d":"100,-23v-8,17,-30,16,-24,-7r18,-74v-7,4,-17,4,-18,14v-38,-31,-81,25,-81,66v0,37,40,31,57,3v7,-10,13,-16,17,-29v-5,19,-9,63,17,48v1,-4,20,-16,14,-21xm10,-27v0,-32,21,-76,57,-65v16,30,-14,77,-44,84v-9,0,-13,-6,-13,-19xm91,-138v-13,20,-35,-16,-50,11v0,0,20,-11,29,3v8,3,27,-8,21,-14","w":117},"\u00e5":{"d":"100,-23v-8,17,-30,16,-24,-7r18,-74v-7,4,-17,4,-18,14v-38,-31,-81,25,-81,66v0,37,40,31,57,3v7,-10,13,-16,17,-29v-5,19,-9,63,17,48v1,-4,20,-16,14,-21xm10,-27v0,-32,21,-76,57,-65v16,30,-14,77,-44,84v-9,0,-13,-6,-13,-19xm81,-131v0,-7,-7,-14,-14,-14v-7,0,-14,7,-14,14v0,7,7,14,14,14v7,0,14,-7,14,-14xm59,-131v0,-5,3,-9,8,-9v4,0,9,4,8,9v1,4,-3,9,-8,8v-4,1,-9,-4,-8,-8","w":117},"\u00e7":{"d":"49,-97v15,2,8,27,-3,29v10,7,22,-7,22,-17v-1,-10,-7,-17,-18,-17v-44,2,-81,89,-28,105v-2,6,-13,14,-5,17v3,-2,10,-2,9,4v0,9,-13,18,-21,10v-3,5,6,6,11,7v19,3,28,-29,5,-27r6,-11v21,-3,30,-13,42,-29r-2,-2v-13,25,-57,32,-56,-8v1,-28,13,-57,38,-61","w":86},"\u00e9":{"d":"-5,-32v-2,47,61,41,75,7r-3,-2v-12,26,-59,30,-56,-9v26,-9,55,-25,55,-50v0,-9,-8,-16,-17,-16v-32,6,-52,35,-54,70xm11,-41v5,-25,14,-50,37,-56v20,19,-15,49,-37,56xm76,-143r-11,-4r-29,30v16,-1,26,-19,40,-26","w":87},"\u00e8":{"d":"-5,-32v-2,47,61,41,75,7r-3,-2v-12,26,-59,30,-56,-9v26,-9,55,-25,55,-50v0,-9,-8,-16,-17,-16v-32,6,-52,35,-54,70xm11,-41v5,-25,14,-50,37,-56v20,19,-15,49,-37,56xm42,-147r-11,4r17,27r4,-1","w":87},"\u00ea":{"d":"-5,-32v-2,47,61,41,75,7r-3,-2v-12,26,-59,30,-56,-9v26,-9,55,-25,55,-50v0,-9,-8,-16,-17,-16v-32,6,-52,35,-54,70xm11,-41v5,-25,14,-50,37,-56v20,19,-15,49,-37,56xm54,-130v8,2,17,12,23,6r-21,-17v-8,7,-25,10,-26,20","w":87},"\u00eb":{"d":"-5,-32v-2,47,61,41,75,7r-3,-2v-12,26,-59,30,-56,-9v26,-9,55,-25,55,-50v0,-9,-8,-16,-17,-16v-32,6,-52,35,-54,70xm11,-41v5,-25,14,-50,37,-56v20,19,-15,49,-37,56xm47,-131v1,-4,-4,-9,-8,-8v-4,-1,-9,4,-8,8v-1,4,4,9,8,8v4,1,9,-4,8,-8xm75,-131v1,-4,-4,-9,-8,-8v-4,-1,-9,4,-9,8v0,4,5,9,9,8v4,1,9,-4,8,-8","w":87},"\u00ed":{"d":"36,-23v-15,22,-30,14,-24,-10r19,-70r-18,7v-4,27,-11,50,-13,79v-1,18,19,25,28,9v2,-4,13,-9,8,-15xm52,-143r-11,-4r-29,30v16,-1,26,-19,40,-26","w":51},"\u00ec":{"d":"36,-23v-15,22,-30,14,-24,-10r19,-70r-18,7v-4,27,-11,50,-13,79v-1,18,19,25,28,9v2,-4,13,-9,8,-15xm23,-147r-11,4r17,27r4,-1","w":51},"\u00ee":{"d":"36,-23v-15,22,-30,14,-24,-10r19,-70r-18,7v-4,27,-11,50,-13,79v-1,18,19,25,28,9v2,-4,13,-9,8,-15xm30,-130v8,2,17,12,23,6r-21,-17v-8,7,-25,10,-26,20","w":51},"\u00ef":{"d":"36,-23v-15,22,-30,14,-24,-10r19,-70r-18,7v-4,27,-11,50,-13,79v-1,18,19,25,28,9v2,-4,13,-9,8,-15xm23,-131v1,-4,-4,-9,-8,-8v-4,-1,-9,4,-8,8v-1,4,4,9,8,8v4,1,9,-4,8,-8xm51,-131v1,-4,-4,-9,-8,-8v-4,-1,-9,4,-9,8v0,4,5,9,9,8v4,1,9,-4,8,-8","w":51},"\u00f1":{"d":"82,-9v-26,-21,33,-83,-8,-92v-28,5,-42,34,-57,62r15,-64r-17,7r-18,98v26,-9,21,-49,40,-67v12,-18,22,-26,30,-26v11,0,7,11,6,20v-2,23,-21,63,4,73v12,-2,15,-11,25,-22r-2,-3v-8,9,-14,14,-18,14xm84,-138v-13,20,-35,-16,-50,11v0,0,20,-11,29,3v8,3,27,-8,21,-14","w":116},"\u00f3":{"d":"53,-101v-34,0,-56,31,-58,67v-1,21,12,39,33,37v36,-3,56,-32,58,-69v1,-21,-13,-35,-33,-35xm52,-97v41,11,8,96,-21,96v-14,0,-21,-11,-20,-27v2,-31,13,-64,41,-69xm86,-143r-11,-4r-29,30v16,-1,26,-19,40,-26","w":105},"\u00f2":{"d":"53,-101v-34,0,-56,31,-58,67v-1,21,12,39,33,37v36,-3,56,-32,58,-69v1,-21,-13,-35,-33,-35xm52,-97v41,11,8,96,-21,96v-14,0,-21,-11,-20,-27v2,-31,13,-64,41,-69xm52,-147r-11,4r17,27r4,-1","w":105},"\u00f4":{"d":"53,-101v-34,0,-56,31,-58,67v-1,21,12,39,33,37v36,-3,56,-32,58,-69v1,-21,-13,-35,-33,-35xm52,-97v41,11,8,96,-21,96v-14,0,-21,-11,-20,-27v2,-31,13,-64,41,-69xm61,-130v8,2,17,12,23,6r-21,-17v-8,7,-25,10,-26,20","w":105},"\u00f6":{"d":"53,-101v-34,0,-56,31,-58,67v-1,21,12,39,33,37v36,-3,56,-32,58,-69v1,-21,-13,-35,-33,-35xm52,-97v41,11,8,96,-21,96v-14,0,-21,-11,-20,-27v2,-31,13,-64,41,-69xm54,-131v1,-4,-4,-9,-8,-8v-4,-1,-9,4,-8,8v-1,4,4,9,8,8v4,1,9,-4,8,-8xm82,-131v1,-4,-4,-9,-8,-8v-4,-1,-9,4,-9,8v0,4,5,9,9,8v4,1,9,-4,8,-8","w":105},"\u00f5":{"d":"53,-101v-34,0,-56,31,-58,67v-1,21,12,39,33,37v36,-3,56,-32,58,-69v1,-21,-13,-35,-33,-35xm52,-97v41,11,8,96,-21,96v-14,0,-21,-11,-20,-27v2,-31,13,-64,41,-69xm86,-138v-13,20,-35,-16,-50,11v0,0,20,-11,29,3v8,3,27,-8,21,-14","w":105},"\u00fa":{"d":"26,-6v-14,1,-16,-15,-12,-29r17,-68r-17,7r-14,79v6,32,41,19,56,-5v-1,31,23,27,37,4v2,-2,-1,-3,-2,-5v-11,15,-22,21,-24,1v3,-29,13,-54,19,-81r-17,7r-12,66v-11,16,-21,24,-31,24xm83,-143r-11,-4r-29,30v16,-1,26,-19,40,-26","w":108},"\u00f9":{"d":"26,-6v-14,1,-16,-15,-12,-29r17,-68r-17,7r-14,79v6,32,41,19,56,-5v-1,31,23,27,37,4v2,-2,-1,-3,-2,-5v-11,15,-22,21,-24,1v3,-29,13,-54,19,-81r-17,7r-12,66v-11,16,-21,24,-31,24xm47,-147r-11,4r17,27r4,-1","w":108},"\u00fb":{"d":"26,-6v-14,1,-16,-15,-12,-29r17,-68r-17,7r-14,79v6,32,41,19,56,-5v-1,31,23,27,37,4v2,-2,-1,-3,-2,-5v-11,15,-22,21,-24,1v3,-29,13,-54,19,-81r-17,7r-12,66v-11,16,-21,24,-31,24xm54,-130v8,2,17,12,23,6r-21,-17v-8,7,-25,10,-26,20","w":108},"\u00fc":{"d":"26,-6v-14,1,-16,-15,-12,-29r17,-68r-17,7r-14,79v6,32,41,19,56,-5v-1,31,23,27,37,4v2,-2,-1,-3,-2,-5v-11,15,-22,21,-24,1v3,-29,13,-54,19,-81r-17,7r-12,66v-11,16,-21,24,-31,24xm49,-131v1,-4,-4,-9,-8,-8v-4,-1,-9,4,-8,8v-1,4,4,9,8,8v4,1,9,-4,8,-8xm77,-131v1,-4,-4,-9,-8,-8v-4,-1,-9,4,-9,8v0,4,5,9,9,8v4,1,9,-4,8,-8","w":108},"\u2020":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00b0":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00a2":{"d":"75,-109v0,-9,-7,-16,-16,-16r4,-17v-13,-2,0,19,-14,18r3,-18v-9,0,-5,13,-8,19v-32,11,-60,79,-21,101r-4,22v12,1,0,-26,14,-19r-4,19v9,0,5,-13,8,-19v15,-1,27,-11,33,-22r-3,-3v-5,9,-15,17,-28,16r19,-92v11,1,13,16,5,24v7,0,13,-5,12,-13xm54,-120r-19,91r-5,-2r18,-88v2,-1,4,-1,6,-1xm43,-116r-17,82v-18,-23,-3,-71,17,-82","w":91},"\u00a3":{"d":"5,-15v13,-12,21,-24,26,-41r36,0r1,-4v-11,-1,-27,2,-36,-1r1,-5r36,0r0,-4r-36,0v-3,-30,-5,-69,26,-69v17,0,23,19,15,31v10,2,15,-6,15,-15v1,-13,-12,-21,-25,-21v-31,2,-56,38,-45,74v-6,1,-17,-3,-17,4v6,2,19,-5,17,6v-6,1,-19,-4,-19,4r19,0v-3,26,-16,40,-36,54v16,2,62,3,89,2r11,-32r-4,0v-9,28,-43,12,-74,17","w":106},"\u00a7":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u2022":{"d":"68,-120v0,-13,-11,-24,-24,-24v-13,0,-25,11,-25,24v0,13,12,24,25,24v13,0,24,-11,24,-24","w":89},"\u00b6":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00df":{"d":"103,-222v0,-40,-50,-25,-59,1v-23,67,-31,150,-49,223r11,-3r47,-208v5,-19,5,-32,22,-32v21,0,16,35,10,54v-9,26,-62,53,-33,88v10,14,25,26,25,50v0,35,-36,62,-54,31r-8,10v30,30,72,-9,72,-49v0,-32,-28,-47,-35,-70v12,-34,51,-55,51,-95","w":107},"\u00ae":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00a9":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u2122":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00b4":{"d":"64,-143r-11,-4r-29,30v16,-1,26,-19,40,-26","w":88},"\u00a8":{"d":"40,-131v1,-4,-4,-9,-8,-8v-4,-1,-9,4,-8,8v-1,4,4,9,8,8v4,1,9,-4,8,-8xm68,-131v1,-4,-4,-9,-8,-8v-4,-1,-9,4,-9,8v0,4,5,9,9,8v4,1,9,-4,8,-8","w":91},"\u2260":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00c6":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00d8":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u221e":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00b1":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u2264":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u2265":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00a5":{"d":"55,-69r57,-72v-29,0,-26,34,-46,50r-16,20r-22,-73r-17,5v13,18,17,47,26,70v-9,2,-25,-4,-28,3r29,0r-1,6r-29,0r-1,5r29,0r-11,55r14,0r11,-55r28,0r1,-5r-28,0r1,-6r29,0r0,-3r-26,0","w":114},"\u00b5":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u03bc":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u2202":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u2211":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u220f":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u03c0":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u222b":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00aa":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00ba":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00e6":{"d":"59,-31v-3,29,31,44,54,27v7,-5,14,-12,20,-21r-3,-2v-17,31,-56,28,-57,-9v25,-9,51,-23,56,-51v-4,-27,-43,-11,-51,5v-3,-30,-60,-21,-60,6v0,7,6,9,12,7v-7,-24,36,-40,38,-12v1,6,-1,10,-3,16v-35,7,-66,17,-70,48v11,39,57,11,64,-14xm23,-5v-25,-6,-7,-40,9,-44v8,-5,21,-10,31,-11v-6,26,-17,52,-40,55xm73,-41v5,-22,12,-51,36,-55v20,5,5,24,-7,37v-9,9,-16,12,-29,18","w":149},"\u00f8":{"d":"3,-10v38,39,100,-23,79,-75v4,-6,19,-13,13,-19r-17,15v-38,-37,-100,25,-78,75v-4,6,-22,12,-13,19xm71,-75v0,35,-20,88,-53,69v-3,-3,-5,-6,-6,-12xm11,-25v1,-35,17,-82,52,-68v3,3,5,7,6,12","w":105},"\u00bf":{"d":"85,-123v17,-19,15,-61,-16,-58r-5,12v17,-10,33,5,21,23v-25,38,-64,67,-74,118v4,53,76,22,88,-5r-5,-18v-11,18,-39,48,-58,47v-51,-30,36,-87,49,-119xm75,-208v-1,8,6,14,14,14v7,0,14,-7,14,-14v0,-7,-7,-14,-14,-14v-7,0,-16,6,-14,14","w":128},"\u00a1":{"d":"11,2r23,-11r26,-171r-5,3xm48,-208v0,8,7,14,15,14v7,0,14,-7,14,-14v0,-7,-6,-16,-14,-14v-9,-1,-15,6,-15,14","w":95},"\u00ac":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u221a":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u0192":{"d":"45,-93v10,-2,28,5,29,-6r-27,0v13,-29,10,-77,42,-85v6,0,11,3,15,8r6,-16v-49,-8,-67,49,-77,93v-8,1,-19,-3,-19,6r17,0v-15,40,-19,91,-42,123v-9,7,-17,6,-26,-2r-6,16v67,3,69,-83,88,-137","w":89},"\u2248":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00ab":{"d":"4,-54v8,10,15,23,19,36r3,0r-6,-36r22,-35v-16,8,-24,26,-38,35xm29,-54v9,10,14,23,19,36r3,0r-6,-36r22,-35v-16,8,-24,26,-38,35","w":94},"\u00bb":{"d":"67,-54v-10,-9,-15,-21,-19,-35r-3,0r6,35r-22,36v16,-9,24,-28,38,-36xm42,-54v-10,-9,-15,-21,-19,-35r-3,0r5,35r-21,36v16,-9,23,-27,38,-36","w":94},"\u2026":{"d":"39,2v16,0,21,-30,2,-30v-16,-1,-23,31,-2,30xm159,2v16,0,21,-30,2,-30v-8,0,-15,8,-14,18v0,8,4,12,12,12xm282,-28v-16,-2,-24,31,-3,30v16,0,21,-29,3,-30","w":360},"\u00a0":{"w":62},"\u00c0":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00c3":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00d5":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u0152":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u0153":{"d":"-5,-33v-2,44,60,44,72,12v10,38,58,27,73,-4r-3,-2v-17,30,-58,30,-57,-9v24,-9,52,-21,55,-50v-8,-31,-46,-9,-53,10v-4,-16,-13,-25,-29,-25v-36,0,-55,31,-58,68xm51,-97v13,0,19,11,19,25v0,32,-13,64,-40,71v-14,0,-19,-13,-19,-27v0,-31,11,-69,40,-69xm117,-96v21,18,-15,49,-37,55v6,-23,13,-51,37,-55","w":156},"\u2013":{"d":"114,-58r-104,0r-2,8r105,0","w":146},"\u2014":{"d":"368,-58r-358,0r-2,8r359,0","w":400},"\u201c":{"d":"87,-185v13,3,19,-22,5,-23v-3,0,-5,1,-8,4v1,-9,9,-19,24,-31r-2,-4v-14,9,-28,24,-30,41v0,8,5,12,11,13xm53,-204v3,-13,13,-22,25,-31r-2,-4v-14,9,-28,24,-30,41v0,8,5,12,11,13v12,2,20,-22,5,-23v-3,0,-6,1,-9,4","w":113},"\u201d":{"d":"62,-235v-6,-1,-14,7,-12,14v-1,10,11,10,16,5v-1,8,-8,19,-24,31r2,4v14,-9,27,-25,29,-41v0,-8,-4,-13,-11,-13xm93,-235v-6,0,-14,7,-13,14v-1,9,12,10,16,5v-1,8,-8,19,-24,31r3,4v13,-9,28,-25,29,-41v0,-8,-4,-13,-11,-13","w":113},"\u2018":{"d":"53,-204v3,-13,13,-22,25,-31r-2,-4v-15,9,-46,42,-19,54v12,2,20,-22,5,-23v-3,0,-6,1,-9,4","w":83},"\u2019":{"d":"62,-235v-6,0,-14,7,-13,14v-1,10,12,10,17,5v-1,8,-8,19,-24,31r2,4v14,-9,27,-25,29,-41v0,-8,-4,-13,-11,-13","w":83,"k":{"t":17,"s":17}},"\u00f7":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u25ca":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00ff":{"d":"2,-32v-8,44,32,41,53,11v-7,39,-22,109,-67,72r-9,11v85,34,89,-96,109,-165r-16,7r-15,68v-11,11,-17,20,-32,22v-14,1,-14,-13,-11,-26r17,-71r-17,7xm53,-131v1,-4,-4,-9,-8,-8v-4,-1,-9,4,-8,8v-1,4,4,9,8,8v4,1,9,-4,8,-8xm81,-131v1,-4,-4,-9,-8,-8v-4,-1,-9,4,-9,8v0,4,5,9,9,8v4,1,9,-4,8,-8","w":105},"\u0178":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00a4":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u2039":{"d":"4,-54v8,10,15,23,19,36r3,0r-6,-36r22,-35v-16,8,-24,26,-38,35","w":69},"\u203a":{"d":"42,-54v-10,-9,-15,-21,-19,-35r-3,0r5,35r-21,36v16,-9,23,-27,38,-36","w":69},"\ufb01":{"d":"-6,13v-3,25,-20,62,-45,41v-3,5,-14,15,-2,15v72,-2,61,-106,84,-163r36,0r-13,77v-1,18,20,25,28,9v3,-5,15,-10,8,-15v-6,10,-24,21,-24,1v0,-29,12,-52,18,-78r-52,0v12,-43,19,-96,36,-133v8,-10,24,-7,31,4r7,-16v-71,-17,-72,86,-88,145v-7,1,-19,-3,-18,6r17,0xm100,-162v0,-5,-5,-10,-10,-10v-5,0,-10,5,-10,10v0,6,4,11,10,11v6,0,10,-5,10,-11","w":106},"\ufb02":{"d":"-5,12v-6,24,-20,64,-46,42v-3,5,-15,15,-2,15v72,-2,62,-105,84,-163r28,0r1,-6r-28,0v13,-43,19,-93,36,-132v5,-11,23,-10,34,-3r-43,218v-1,18,20,26,28,9v3,-5,15,-10,8,-15v-6,11,-23,21,-24,1r48,-220v-44,-21,-73,19,-83,63r-18,79v-7,1,-19,-3,-18,6r17,0","w":110},"\u2021":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00b7":{"d":"19,-59v17,1,23,-29,3,-30v-15,-1,-23,31,-3,30","w":58},"\u201a":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u201e":{"d":"22,-28v-6,0,-14,7,-13,14v-1,10,12,11,17,5v-1,8,-9,19,-25,31r3,4v14,-9,27,-25,29,-41v0,-8,-5,-12,-11,-13xm52,-28v-6,-1,-14,7,-12,14v-1,11,11,11,17,5v-1,8,-9,19,-25,31r2,4v16,-9,46,-43,18,-54","w":113},"\u2030":{"d":"36,-62v31,-2,47,-43,34,-73v15,6,32,8,43,-2r-99,141r4,2r111,-157r-5,-4v-11,30,-52,20,-75,9v-25,4,-40,24,-40,53v-1,18,10,32,27,31xm93,3v39,1,58,-81,12,-84v-25,4,-40,24,-40,53v0,18,11,32,28,31xm164,3v39,0,57,-79,13,-84v-25,4,-40,24,-40,53v-1,18,10,31,27,31xm35,-66v-28,-7,-9,-75,14,-75v9,0,13,6,13,19v0,26,-7,51,-27,56xm92,-1v-28,-7,-9,-75,14,-75v9,0,13,6,13,19v0,26,-7,51,-27,56xm163,-1v-28,-7,-9,-75,14,-75v9,0,13,6,13,19v0,26,-7,51,-27,56","w":227},"\u00c2":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00ca":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00c1":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00cb":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00c8":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00cd":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00ce":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00cf":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00cc":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00d3":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00d4":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\uf8ff":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00d2":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00da":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00db":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u00d9":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u0131":{"d":"36,-23v-15,22,-30,14,-24,-10r19,-70r-18,7v-4,27,-11,50,-13,79v-1,18,19,25,28,9v2,-4,13,-9,8,-15","w":51},"\u02c6":{"d":"49,-130v8,2,17,12,23,6r-21,-17v-8,7,-25,10,-26,20","w":95},"\u02dc":{"d":"74,-138v-13,20,-35,-16,-50,11v0,0,20,-11,29,3v8,3,27,-8,21,-14","w":100},"\u00af":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u02c9":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u02d8":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u02d9":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u02da":{"d":"52,-131v0,-7,-7,-14,-14,-14v-7,0,-14,7,-14,14v0,7,7,14,14,14v7,0,14,-7,14,-14xm30,-131v0,-5,3,-9,8,-9v4,0,9,4,8,9v1,4,-3,9,-8,8v-4,1,-9,-4,-8,-8","w":75},"\u00b8":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u02dd":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u02db":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u02c7":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"#":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"!":{"d":"77,-222r-23,10r-27,171r5,-2xm39,-12v0,-7,-7,-14,-14,-14v-7,0,-14,7,-14,14v0,7,7,14,14,14v7,0,14,-7,14,-14","w":95},"\"":{"d":"17,-145v-11,1,-6,22,-8,35v7,-5,18,-29,8,-35xm33,-145v-9,5,-4,24,-7,35v7,-5,20,-31,7,-35","w":43},"\u03a9":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u0394":{"d":"12,0r120,0r0,-240r-120,0r0,240xm14,-3r0,-235r116,0r0,235r-116,0"},"\u2215":{"d":"59,-151r-4,-3r-110,158r4,2","w":49}}});var locale="en";window.addEvent('domload',function(){if(typeof isCms=="undefined"||!isCms){Cufon.replace('h1',{fontFamily:'Savoje'});Cufon.replace('h2.h1',{fontFamily:'Savoje'});Cufon.replace('#left h4.caption',{fontFamily:'Savoje'});Cufon.now();$$('a[rel^=external]').each(function(element){if(!element.get('target')){element.set('target','_blank');}});$$('#content a.img, #content span.img').each(function(element){new Element('span').addClass('enlarge').inject(element);if(element.tagName.toLowerCase()=='a'){element.set('rel','lightbox');}});$$('a[rel^=popup]').each(function(element){element.addEvent('click',function(e){if(element.get('rel')=='popup'){var width=800;var height=400;}
else{var width=element.get('rel').split('[')[1].split(']')[0].split(',')[0];var height=element.get('rel').split('[')[1].split(']')[0].split(',')[1];}
var url=element.get('href');var args='width='+width+',height='+height+',resizable=yes,scrollbars=yes';var popup=window.open(url,'popwin_'+new Date().getTime(),args);if(popup){new Event(e).stop();}});});if($$('a[rel^=lightbox]').length>0){var myImgPopup=new ImgPopup();var myImgSection=[];$$('a[rel^=lightbox]').each(function(element){myImgSection.push({url:element.get('href'),caption:element.getElement('.caption')?element.getElement('.caption').get('html'):element.get('title')});element.addEvent('click',function(e){myImgPopup.start(element.get('href'));new Event(e).stop();});});myImgPopup.addSection(myImgSection);}
if($$('a.img').length>0){$$('a.img').each(function(element){new Element('span').addClass('enlarge').inject(element);});}
if($('accordion')){var myAccordion=new Accordion($('accordion'),'#accordion h2','#accordion div.element',{opacity:false,onActive:function(toggler,element){toggler.addClass('active');},onBackground:function(toggler,element){toggler.removeClass('active');},start:true});}
var calendarInputs=$$('input.calendarField');if(calendarInputs.length>0){calendarInputs.each(function(field){var myCalendar=new Calendar({count:1});myCalendar.addEvent('select',function(e){field.set('value',e.date.getDate()+'.'+(e.date.getMonth()+1)+'.'+e.date.getFullYear());myCalendar.close();});myCalendar.getObject().inject(field,'after');myCalendar.addValidTimeFrame(new CalendarTimeFrame(new Date().getTime()-(24*60*60*1000),new Date(new Date().getTime()+(3*365*24*60*60*1000))));myCalendar.render();field.addEvent('click',myCalendar.open.bind(myCalendar));});}}});