var Prototype={Version:"1.6.0.3",Browser:{IE:!!(window.attachEvent&&navigator.userAgent.indexOf("Opera")===-1),Opera:navigator.userAgent.indexOf("Opera")>-1,WebKit:navigator.userAgent.indexOf("AppleWebKit/")>-1,Gecko:navigator.userAgent.indexOf("Gecko")>-1&&navigator.userAgent.indexOf("KHTML")===-1,MobileSafari:!!navigator.userAgent.match(/Apple.*Mobile.*Safari/)},BrowserFeatures:{XPath:!!document.evaluate,SelectorsAPI:!!document.querySelector,ElementExtensions:!!window.HTMLElement,SpecificElementExtensions:document.createElement("div")["__proto__"]&&document.createElement("div")["__proto__"]!==document.createElement("form")["__proto__"]},ScriptFragment:"<script[^>]*>([\\S\\s]*?)<\/script>",JSONFilter:/^\/\*-secure-([\s\S]*)\*\/\s*$/,emptyFunction:function(){},K:function(a){return a}};if(Prototype.Browser.MobileSafari){Prototype.BrowserFeatures.SpecificElementExtensions=false}var Class={create:function(){var e=null,d=$A(arguments);if(Object.isFunction(d[0])){e=d.shift()}function a(){this.initialize.apply(this,arguments)}Object.extend(a,Class.Methods);a.superclass=e;a.subclasses=[];if(e){var b=function(){};b.prototype=e.prototype;a.prototype=new b;e.subclasses.push(a)}for(var c=0;c<d.length;c++){a.addMethods(d[c])}if(!a.prototype.initialize){a.prototype.initialize=Prototype.emptyFunction}a.prototype.constructor=a;return a}};Class.Methods={addMethods:function(g){var c=this.superclass&&this.superclass.prototype;var b=Object.keys(g);if(!Object.keys({toString:true}).length){b.push("toString","valueOf")}for(var a=0,d=b.length;a<d;a++){var f=b[a],e=g[f];if(c&&Object.isFunction(e)&&e.argumentNames().first()=="$super"){var h=e;e=(function(i){return function(){return c[i].apply(this,arguments)}})(f).wrap(h);e.valueOf=h.valueOf.bind(h);e.toString=h.toString.bind(h)}this.prototype[f]=e}return this}};var Abstract={};Object.extend=function(a,c){for(var b in c){a[b]=c[b]}return a};Object.extend(Object,{inspect:function(a){try{if(Object.isUndefined(a)){return"undefined"}if(a===null){return"null"}return a.inspect?a.inspect():String(a)}catch(b){if(b instanceof RangeError){return"..."}throw b}},toJSON:function(a){var c=typeof a;switch(c){case"undefined":case"function":case"unknown":return;case"boolean":return a.toString()}if(a===null){return"null"}if(a.toJSON){return a.toJSON()}if(Object.isElement(a)){return}var b=[];for(var e in a){var d=Object.toJSON(a[e]);if(!Object.isUndefined(d)){b.push(e.toJSON()+": "+d)}}return"{"+b.join(", ")+"}"},toQueryString:function(a){return $H(a).toQueryString()},toHTML:function(a){return a&&a.toHTML?a.toHTML():String.interpret(a)},keys:function(a){var b=[];for(var c in a){b.push(c)}return b},values:function(b){var a=[];for(var c in b){a.push(b[c])}return a},clone:function(a){return Object.extend({},a)},isElement:function(a){return !!(a&&a.nodeType==1)},isArray:function(a){return a!=null&&typeof a=="object"&&"splice" in a&&"join" in a},isHash:function(a){return a instanceof Hash},isFunction:function(a){return typeof a=="function"},isString:function(a){return typeof a=="string"},isNumber:function(a){return typeof a=="number"},isUndefined:function(a){return typeof a=="undefined"}});Object.extend(Function.prototype,{argumentNames:function(){var a=this.toString().match(/^[\s\(]*function[^(]*\(([^\)]*)\)/)[1].replace(/\s+/g,"").split(",");return a.length==1&&!a[0]?[]:a},bind:function(){if(arguments.length<2&&Object.isUndefined(arguments[0])){return this}var a=this,c=$A(arguments),b=c.shift();return function(){return a.apply(b,c.concat($A(arguments)))}},bindAsEventListener:function(){var a=this,c=$A(arguments),b=c.shift();return function(d){return a.apply(b,[d||window.event].concat(c))}},curry:function(){if(!arguments.length){return this}var a=this,b=$A(arguments);return function(){return a.apply(this,b.concat($A(arguments)))}},delay:function(){var a=this,b=$A(arguments),c=b.shift()*1000;return window.setTimeout(function(){return a.apply(a,b)},c)},defer:function(){var a=[0.01].concat($A(arguments));return this.delay.apply(this,a)},wrap:function(b){var a=this;return function(){return b.apply(this,[a.bind(this)].concat($A(arguments)))}},methodize:function(){if(this._methodized){return this._methodized}var a=this;return this._methodized=function(){return a.apply(null,[this].concat($A(arguments)))}}});Date.prototype.toJSON=function(){return'"'+this.getUTCFullYear()+"-"+(this.getUTCMonth()+1).toPaddedString(2)+"-"+this.getUTCDate().toPaddedString(2)+"T"+this.getUTCHours().toPaddedString(2)+":"+this.getUTCMinutes().toPaddedString(2)+":"+this.getUTCSeconds().toPaddedString(2)+'Z"'};var Try={these:function(){var c;for(var b=0,d=arguments.length;b<d;b++){var a=arguments[b];try{c=a();break}catch(f){}}return c}};RegExp.prototype.match=RegExp.prototype.test;RegExp.escape=function(a){return String(a).replace(/([.*+?^=!:${}()|[\]\/\\])/g,"\\$1")};var PeriodicalExecuter=Class.create({initialize:function(b,a){this.callback=b;this.frequency=a;this.currentlyExecuting=false;this.registerCallback()},registerCallback:function(){this.timer=setInterval(this.onTimerEvent.bind(this),this.frequency*1000)},execute:function(){this.callback(this)},stop:function(){if(!this.timer){return}clearInterval(this.timer);this.timer=null},onTimerEvent:function(){if(!this.currentlyExecuting){try{this.currentlyExecuting=true;this.execute()}finally{this.currentlyExecuting=false}}}});Object.extend(String,{interpret:function(a){return a==null?"":String(a)},specialChar:{"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r","\\":"\\\\"}});Object.extend(String.prototype,{gsub:function(e,c){var a="",d=this,b;c=arguments.callee.prepareReplacement(c);while(d.length>0){if(b=d.match(e)){a+=d.slice(0,b.index);a+=String.interpret(c(b));d=d.slice(b.index+b[0].length)}else{a+=d,d=""}}return a},sub:function(c,a,b){a=this.gsub.prepareReplacement(a);b=Object.isUndefined(b)?1:b;return this.gsub(c,function(d){if(--b<0){return d[0]}return a(d)})},scan:function(b,a){this.gsub(b,a);return String(this)},truncate:function(b,a){b=b||30;a=Object.isUndefined(a)?"...":a;return this.length>b?this.slice(0,b-a.length)+a:String(this)},strip:function(){return this.replace(/^\s+/,"").replace(/\s+$/,"")},stripTags:function(){return this.replace(/<\/?[^>]+>/gi,"")},stripScripts:function(){return this.replace(new RegExp(Prototype.ScriptFragment,"img"),"")},extractScripts:function(){var b=new RegExp(Prototype.ScriptFragment,"img");var a=new RegExp(Prototype.ScriptFragment,"im");return(this.match(b)||[]).map(function(c){return(c.match(a)||["",""])[1]})},evalScripts:function(){return this.extractScripts().map(function(script){return eval(script)})},escapeHTML:function(){var a=arguments.callee;a.text.data=this;return a.div.innerHTML},unescapeHTML:function(){var a=new Element("div");a.innerHTML=this.stripTags();return a.childNodes[0]?(a.childNodes.length>1?$A(a.childNodes).inject("",function(b,c){return b+c.nodeValue}):a.childNodes[0].nodeValue):""},toQueryParams:function(b){var a=this.strip().match(/([^?#]*)(#.*)?$/);if(!a){return{}}return a[1].split(b||"&").inject({},function(e,f){if((f=f.split("="))[0]){var c=decodeURIComponent(f.shift());var d=f.length>1?f.join("="):f[0];if(d!=undefined){d=decodeURIComponent(d)}if(c in e){if(!Object.isArray(e[c])){e[c]=[e[c]]}e[c].push(d)}else{e[c]=d}}return e})},toArray:function(){return this.split("")},succ:function(){return this.slice(0,this.length-1)+String.fromCharCode(this.charCodeAt(this.length-1)+1)},times:function(a){return a<1?"":new Array(a+1).join(this)},camelize:function(){var d=this.split("-"),a=d.length;if(a==1){return d[0]}var c=this.charAt(0)=="-"?d[0].charAt(0).toUpperCase()+d[0].substring(1):d[0];for(var b=1;b<a;b++){c+=d[b].charAt(0).toUpperCase()+d[b].substring(1)}return c},capitalize:function(){return this.charAt(0).toUpperCase()+this.substring(1).toLowerCase()},underscore:function(){return this.gsub(/::/,"/").gsub(/([A-Z]+)([A-Z][a-z])/,"#{1}_#{2}").gsub(/([a-z\d])([A-Z])/,"#{1}_#{2}").gsub(/-/,"_").toLowerCase()},dasherize:function(){return this.gsub(/_/,"-")},inspect:function(b){var a=this.gsub(/[\x00-\x1f\\]/,function(c){var d=String.specialChar[c[0]];return d?d:"\\u00"+c[0].charCodeAt().toPaddedString(2,16)});if(b){return'"'+a.replace(/"/g,'\\"')+'"'}return"'"+a.replace(/'/g,"\\'")+"'"},toJSON:function(){return this.inspect(true)},unfilterJSON:function(a){return this.sub(a||Prototype.JSONFilter,"#{1}")},isJSON:function(){var a=this;if(a.blank()){return false}a=this.replace(/\\./g,"@").replace(/"[^"\\\n\r]*"/g,"");return(/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(a)},evalJSON:function(sanitize){var json=this.unfilterJSON();try{if(!sanitize||json.isJSON()){return eval("("+json+")")}}catch(e){}throw new SyntaxError("Badly formed JSON string: "+this.inspect())},include:function(a){return this.indexOf(a)>-1},startsWith:function(a){return this.indexOf(a)===0},endsWith:function(a){var b=this.length-a.length;return b>=0&&this.lastIndexOf(a)===b},empty:function(){return this==""},blank:function(){return/^\s*$/.test(this)},interpolate:function(a,b){return new Template(this,b).evaluate(a)}});if(Prototype.Browser.WebKit||Prototype.Browser.IE){Object.extend(String.prototype,{escapeHTML:function(){return this.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;")},unescapeHTML:function(){return this.stripTags().replace(/&amp;/g,"&").replace(/&lt;/g,"<").replace(/&gt;/g,">")}})}String.prototype.gsub.prepareReplacement=function(b){if(Object.isFunction(b)){return b}var a=new Template(b);return function(c){return a.evaluate(c)}};String.prototype.parseQuery=String.prototype.toQueryParams;Object.extend(String.prototype.escapeHTML,{div:document.createElement("div"),text:document.createTextNode("")});String.prototype.escapeHTML.div.appendChild(String.prototype.escapeHTML.text);var Template=Class.create({initialize:function(a,b){this.template=a.toString();this.pattern=b||Template.Pattern},evaluate:function(a){if(Object.isFunction(a.toTemplateReplacements)){a=a.toTemplateReplacements()}return this.template.gsub(this.pattern,function(d){if(a==null){return""}var f=d[1]||"";if(f=="\\"){return d[2]}var b=a,g=d[3];var e=/^([^.[]+|\[((?:.*?[^\\])?)\])(\.|\[|$)/;d=e.exec(g);if(d==null){return f}while(d!=null){var c=d[1].startsWith("[")?d[2].gsub("\\\\]","]"):d[1];b=b[c];if(null==b||""==d[3]){break}g=g.substring("["==d[3]?d[1].length:d[0].length);d=e.exec(g)}return f+String.interpret(b)})}});Template.Pattern=/(^|.|\r|\n)(#\{(.*?)\})/;var $break={};var Enumerable={each:function(c,b){var a=0;try{this._each(function(e){c.call(b,e,a++)})}catch(d){if(d!=$break){throw d}}return this},eachSlice:function(d,c,b){var a=-d,e=[],f=this.toArray();if(d<1){return f}while((a+=d)<f.length){e.push(f.slice(a,a+d))}return e.collect(c,b)},all:function(c,b){c=c||Prototype.K;var a=true;this.each(function(e,d){a=a&&!!c.call(b,e,d);if(!a){throw $break}});return a},any:function(c,b){c=c||Prototype.K;var a=false;this.each(function(e,d){if(a=!!c.call(b,e,d)){throw $break}});return a},collect:function(c,b){c=c||Prototype.K;var a=[];this.each(function(e,d){a.push(c.call(b,e,d))});return a},detect:function(c,b){var a;this.each(function(e,d){if(c.call(b,e,d)){a=e;throw $break}});return a},findAll:function(c,b){var a=[];this.each(function(e,d){if(c.call(b,e,d)){a.push(e)}});return a},grep:function(d,c,b){c=c||Prototype.K;var a=[];if(Object.isString(d)){d=new RegExp(d)}this.each(function(f,e){if(d.match(f)){a.push(c.call(b,f,e))}});return a},include:function(a){if(Object.isFunction(this.indexOf)){if(this.indexOf(a)!=-1){return true}}var b=false;this.each(function(c){if(c==a){b=true;throw $break}});return b},inGroupsOf:function(b,a){a=Object.isUndefined(a)?null:a;return this.eachSlice(b,function(c){while(c.length<b){c.push(a)}return c})},inject:function(a,c,b){this.each(function(e,d){a=c.call(b,a,e,d)});return a},invoke:function(b){var a=$A(arguments).slice(1);return this.map(function(c){return c[b].apply(c,a)})},max:function(c,b){c=c||Prototype.K;var a;this.each(function(e,d){e=c.call(b,e,d);if(a==null||e>=a){a=e}});return a},min:function(c,b){c=c||Prototype.K;var a;this.each(function(e,d){e=c.call(b,e,d);if(a==null||e<a){a=e}});return a},partition:function(d,b){d=d||Prototype.K;var c=[],a=[];this.each(function(f,e){(d.call(b,f,e)?c:a).push(f)});return[c,a]},pluck:function(b){var a=[];this.each(function(c){a.push(c[b])});return a},reject:function(c,b){var a=[];this.each(function(e,d){if(!c.call(b,e,d)){a.push(e)}});return a},sortBy:function(b,a){return this.map(function(d,c){return{value:d,criteria:b.call(a,d,c)}}).sort(function(f,e){var d=f.criteria,c=e.criteria;return d<c?-1:d>c?1:0}).pluck("value")},toArray:function(){return this.map()},zip:function(){var b=Prototype.K,a=$A(arguments);if(Object.isFunction(a.last())){b=a.pop()}var c=[this].concat(a).map($A);return this.map(function(e,d){return b(c.pluck(d))})},size:function(){return this.toArray().length},inspect:function(){return"#<Enumerable:"+this.toArray().inspect()+">"}};Object.extend(Enumerable,{map:Enumerable.collect,find:Enumerable.detect,select:Enumerable.findAll,filter:Enumerable.findAll,member:Enumerable.include,entries:Enumerable.toArray,every:Enumerable.all,some:Enumerable.any});function $A(c){if(!c){return[]}if(c.toArray){return c.toArray()}var b=c.length||0,a=new Array(b);while(b--){a[b]=c[b]}return a}if(Prototype.Browser.WebKit){$A=function(c){if(!c){return[]}if(!(typeof c==="function"&&typeof c.length==="number"&&typeof c.item==="function")&&c.toArray){return c.toArray()}var b=c.length||0,a=new Array(b);while(b--){a[b]=c[b]}return a}}Array.from=$A;Object.extend(Array.prototype,Enumerable);if(!Array.prototype._reverse){Array.prototype._reverse=Array.prototype.reverse}Object.extend(Array.prototype,{_each:function(b){for(var a=0,c=this.length;a<c;a++){b(this[a])}},clear:function(){this.length=0;return this},first:function(){return this[0]},last:function(){return this[this.length-1]},compact:function(){return this.select(function(a){return a!=null})},flatten:function(){return this.inject([],function(b,a){return b.concat(Object.isArray(a)?a.flatten():[a])})},without:function(){var a=$A(arguments);return this.select(function(b){return !a.include(b)})},reverse:function(a){return(a!==false?this:this.toArray())._reverse()},reduce:function(){return this.length>1?this:this[0]},uniq:function(a){return this.inject([],function(d,c,b){if(0==b||(a?d.last()!=c:!d.include(c))){d.push(c)}return d})},intersect:function(a){return this.uniq().findAll(function(b){return a.detect(function(c){return b===c})})},clone:function(){return[].concat(this)},size:function(){return this.length},inspect:function(){return"["+this.map(Object.inspect).join(", ")+"]"},toJSON:function(){var a=[];this.each(function(b){var c=Object.toJSON(b);if(!Object.isUndefined(c)){a.push(c)}});return"["+a.join(", ")+"]"}});if(Object.isFunction(Array.prototype.forEach)){Array.prototype._each=Array.prototype.forEach}if(!Array.prototype.indexOf){Array.prototype.indexOf=function(c,a){a||(a=0);var b=this.length;if(a<0){a=b+a}for(;a<b;a++){if(this[a]===c){return a}}return -1}}if(!Array.prototype.lastIndexOf){Array.prototype.lastIndexOf=function(b,a){a=isNaN(a)?this.length:(a<0?this.length+a:a)+1;var c=this.slice(0,a).reverse().indexOf(b);return(c<0)?c:a-c-1}}Array.prototype.toArray=Array.prototype.clone;function $w(a){if(!Object.isString(a)){return[]}a=a.strip();return a?a.split(/\s+/):[]}if(Prototype.Browser.Opera){Array.prototype.concat=function(){var e=[];for(var b=0,c=this.length;b<c;b++){e.push(this[b])}for(var b=0,c=arguments.length;b<c;b++){if(Object.isArray(arguments[b])){for(var a=0,d=arguments[b].length;a<d;a++){e.push(arguments[b][a])}}else{e.push(arguments[b])}}return e}}Object.extend(Number.prototype,{toColorPart:function(){return this.toPaddedString(2,16)},succ:function(){return this+1},times:function(b,a){$R(0,this,true).each(b,a);return this},toPaddedString:function(c,b){var a=this.toString(b||10);return"0".times(c-a.length)+a},toJSON:function(){return isFinite(this)?this.toString():"null"}});$w("abs round ceil floor").each(function(a){Number.prototype[a]=Math[a].methodize()});function $H(a){return new Hash(a)}var Hash=Class.create(Enumerable,(function(){function a(b,c){if(Object.isUndefined(c)){return b}return b+"="+encodeURIComponent(String.interpret(c))}return{initialize:function(b){this._object=Object.isHash(b)?b.toObject():Object.clone(b)},_each:function(c){for(var b in this._object){var d=this._object[b],e=[b,d];e.key=b;e.value=d;c(e)}},set:function(b,c){return this._object[b]=c},get:function(b){if(this._object[b]!==Object.prototype[b]){return this._object[b]}},unset:function(b){var c=this._object[b];delete this._object[b];return c},toObject:function(){return Object.clone(this._object)},keys:function(){return this.pluck("key")},values:function(){return this.pluck("value")},index:function(c){var b=this.detect(function(d){return d.value===c});return b&&b.key},merge:function(b){return this.clone().update(b)},update:function(b){return new Hash(b).inject(this,function(c,d){c.set(d.key,d.value);return c})},toQueryString:function(){return this.inject([],function(d,e){var c=encodeURIComponent(e.key),b=e.value;if(b&&typeof b=="object"){if(Object.isArray(b)){return d.concat(b.map(a.curry(c)))}}else{d.push(a(c,b))}return d}).join("&")},inspect:function(){return"#<Hash:{"+this.map(function(b){return b.map(Object.inspect).join(": ")}).join(", ")+"}>"},toJSON:function(){return Object.toJSON(this.toObject())},clone:function(){return new Hash(this)}}})());Hash.prototype.toTemplateReplacements=Hash.prototype.toObject;Hash.from=$H;var ObjectRange=Class.create(Enumerable,{initialize:function(c,a,b){this.start=c;this.end=a;this.exclusive=b},_each:function(a){var b=this.start;while(this.include(b)){a(b);b=b.succ()}},include:function(a){if(a<this.start){return false}if(this.exclusive){return a<this.end}return a<=this.end}});var $R=function(c,a,b){return new ObjectRange(c,a,b)};var Ajax={getTransport:function(){return Try.these(function(){return new XMLHttpRequest()},function(){return new ActiveXObject("Msxml2.XMLHTTP")},function(){return new ActiveXObject("Microsoft.XMLHTTP")})||false},activeRequestCount:0};Ajax.Responders={responders:[],_each:function(a){this.responders._each(a)},register:function(a){if(!this.include(a)){this.responders.push(a)}},unregister:function(a){this.responders=this.responders.without(a)},dispatch:function(d,b,c,a){this.each(function(f){if(Object.isFunction(f[d])){try{f[d].apply(f,[b,c,a])}catch(g){}}})}};Object.extend(Ajax.Responders,Enumerable);Ajax.Responders.register({onCreate:function(){Ajax.activeRequestCount++},onComplete:function(){Ajax.activeRequestCount--}});Ajax.Base=Class.create({initialize:function(a){this.options={method:"post",asynchronous:true,contentType:"application/x-www-form-urlencoded",encoding:"UTF-8",parameters:"",evalJSON:true,evalJS:true};Object.extend(this.options,a||{});this.options.method=this.options.method.toLowerCase();if(Object.isString(this.options.parameters)){this.options.parameters=this.options.parameters.toQueryParams()}else{if(Object.isHash(this.options.parameters)){this.options.parameters=this.options.parameters.toObject()}}}});Ajax.Request=Class.create(Ajax.Base,{_complete:false,initialize:function($super,b,a){$super(a);this.transport=Ajax.getTransport();this.request(b)},request:function(b){this.url=b;this.method=this.options.method;var d=Object.clone(this.options.parameters);if(!["get","post"].include(this.method)){d._method=this.method;this.method="post"}this.parameters=d;if(d=Object.toQueryString(d)){if(this.method=="get"){this.url+=(this.url.include("?")?"&":"?")+d}else{if(/Konqueror|Safari|KHTML/.test(navigator.userAgent)){d+="&_="}}}try{var a=new Ajax.Response(this);if(this.options.onCreate){this.options.onCreate(a)}Ajax.Responders.dispatch("onCreate",this,a);this.transport.open(this.method.toUpperCase(),this.url,this.options.asynchronous);if(this.options.asynchronous){this.respondToReadyState.bind(this).defer(1)}this.transport.onreadystatechange=this.onStateChange.bind(this);this.setRequestHeaders();this.body=this.method=="post"?(this.options.postBody||d):null;this.transport.send(this.body);if(!this.options.asynchronous&&this.transport.overrideMimeType){this.onStateChange()}}catch(c){this.dispatchException(c)}},onStateChange:function(){var a=this.transport.readyState;if(a>1&&!((a==4)&&this._complete)){this.respondToReadyState(this.transport.readyState)}},setRequestHeaders:function(){var e={"X-Requested-With":"XMLHttpRequest","X-Prototype-Version":Prototype.Version,Accept:"text/javascript, text/html, application/xml, text/xml, */*"};if(this.method=="post"){e["Content-type"]=this.options.contentType+(this.options.encoding?"; charset="+this.options.encoding:"");if(this.transport.overrideMimeType&&(navigator.userAgent.match(/Gecko\/(\d{4})/)||[0,2005])[1]<2005){e.Connection="close"}}if(typeof this.options.requestHeaders=="object"){var c=this.options.requestHeaders;if(Object.isFunction(c.push)){for(var b=0,d=c.length;b<d;b+=2){e[c[b]]=c[b+1]}}else{$H(c).each(function(f){e[f.key]=f.value})}}for(var a in e){this.transport.setRequestHeader(a,e[a])}},success:function(){var a=this.getStatus();return !a||(a>=200&&a<300)},getStatus:function(){try{return this.transport.status||0}catch(a){return 0}},respondToReadyState:function(a){var c=Ajax.Request.Events[a],b=new Ajax.Response(this);if(c=="Complete"){try{this._complete=true;(this.options["on"+b.status]||this.options["on"+(this.success()?"Success":"Failure")]||Prototype.emptyFunction)(b,b.headerJSON)}catch(d){this.dispatchException(d)}var f=b.getHeader("Content-type");if(this.options.evalJS=="force"||(this.options.evalJS&&this.isSameOrigin()&&f&&f.match(/^\s*(text|application)\/(x-)?(java|ecma)script(;.*)?\s*$/i))){this.evalResponse()}}try{(this.options["on"+c]||Prototype.emptyFunction)(b,b.headerJSON);Ajax.Responders.dispatch("on"+c,this,b,b.headerJSON)}catch(d){this.dispatchException(d)}if(c=="Complete"){this.transport.onreadystatechange=Prototype.emptyFunction}},isSameOrigin:function(){var a=this.url.match(/^\s*https?:\/\/[^\/]*/);return !a||(a[0]=="#{protocol}//#{domain}#{port}".interpolate({protocol:location.protocol,domain:document.domain,port:location.port?":"+location.port:""}))},getHeader:function(a){try{return this.transport.getResponseHeader(a)||null}catch(b){return null}},evalResponse:function(){try{return eval((this.transport.responseText||"").unfilterJSON())}catch(e){this.dispatchException(e)}},dispatchException:function(a){(this.options.onException||Prototype.emptyFunction)(this,a);Ajax.Responders.dispatch("onException",this,a)}});Ajax.Request.Events=["Uninitialized","Loading","Loaded","Interactive","Complete"];Ajax.Response=Class.create({initialize:function(c){this.request=c;var d=this.transport=c.transport,a=this.readyState=d.readyState;if((a>2&&!Prototype.Browser.IE)||a==4){this.status=this.getStatus();this.statusText=this.getStatusText();this.responseText=String.interpret(d.responseText);this.headerJSON=this._getHeaderJSON()}if(a==4){var b=d.responseXML;this.responseXML=Object.isUndefined(b)?null:b;this.responseJSON=this._getResponseJSON()}},status:0,statusText:"",getStatus:Ajax.Request.prototype.getStatus,getStatusText:function(){try{return this.transport.statusText||""}catch(a){return""}},getHeader:Ajax.Request.prototype.getHeader,getAllHeaders:function(){try{return this.getAllResponseHeaders()}catch(a){return null}},getResponseHeader:function(a){return this.transport.getResponseHeader(a)},getAllResponseHeaders:function(){return this.transport.getAllResponseHeaders()},_getHeaderJSON:function(){var a=this.getHeader("X-JSON");if(!a){return null}a=decodeURIComponent(escape(a));try{return a.evalJSON(this.request.options.sanitizeJSON||!this.request.isSameOrigin())}catch(b){this.request.dispatchException(b)}},_getResponseJSON:function(){var a=this.request.options;if(!a.evalJSON||(a.evalJSON!="force"&&!(this.getHeader("Content-type")||"").include("application/json"))||this.responseText.blank()){return null}try{return this.responseText.evalJSON(a.sanitizeJSON||!this.request.isSameOrigin())}catch(b){this.request.dispatchException(b)}}});Ajax.Updater=Class.create(Ajax.Request,{initialize:function($super,a,c,b){this.container={success:(a.success||a),failure:(a.failure||(a.success?null:a))};b=Object.clone(b);var d=b.onComplete;b.onComplete=(function(e,f){this.updateContent(e.responseText);if(Object.isFunction(d)){d(e,f)}}).bind(this);$super(c,b)},updateContent:function(d){var c=this.container[this.success()?"success":"failure"],a=this.options;if(!a.evalScripts){d=d.stripScripts()}if(c=$(c)){if(a.insertion){if(Object.isString(a.insertion)){var b={};b[a.insertion]=d;c.insert(b)}else{a.insertion(c,d)}}else{c.update(d)}}}});Ajax.PeriodicalUpdater=Class.create(Ajax.Base,{initialize:function($super,a,c,b){$super(b);this.onComplete=this.options.onComplete;this.frequency=(this.options.frequency||2);this.decay=(this.options.decay||1);this.updater={};this.container=a;this.url=c;this.start()},start:function(){this.options.onComplete=this.updateComplete.bind(this);this.onTimerEvent()},stop:function(){this.updater.options.onComplete=undefined;clearTimeout(this.timer);(this.onComplete||Prototype.emptyFunction).apply(this,arguments)},updateComplete:function(a){if(this.options.decay){this.decay=(a.responseText==this.lastText?this.decay*this.options.decay:1);this.lastText=a.responseText}this.timer=this.onTimerEvent.bind(this).delay(this.decay*this.frequency)},onTimerEvent:function(){this.updater=new Ajax.Updater(this.container,this.url,this.options)}});function $(b){if(arguments.length>1){for(var a=0,d=[],c=arguments.length;a<c;a++){d.push($(arguments[a]))}return d}if(Object.isString(b)){b=document.getElementById(b)}return Element.extend(b)}if(Prototype.BrowserFeatures.XPath){document._getElementsByXPath=function(f,a){var c=[];var e=document.evaluate(f,$(a)||document,null,XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,null);for(var b=0,d=e.snapshotLength;b<d;b++){c.push(Element.extend(e.snapshotItem(b)))}return c}}if(!window.Node){var Node={}}if(!Node.ELEMENT_NODE){Object.extend(Node,{ELEMENT_NODE:1,ATTRIBUTE_NODE:2,TEXT_NODE:3,CDATA_SECTION_NODE:4,ENTITY_REFERENCE_NODE:5,ENTITY_NODE:6,PROCESSING_INSTRUCTION_NODE:7,COMMENT_NODE:8,DOCUMENT_NODE:9,DOCUMENT_TYPE_NODE:10,DOCUMENT_FRAGMENT_NODE:11,NOTATION_NODE:12})}(function(){var a=this.Element;this.Element=function(d,c){c=c||{};d=d.toLowerCase();var b=Element.cache;if(Prototype.Browser.IE&&c.name){d="<"+d+' name="'+c.name+'">';delete c.name;return Element.writeAttribute(document.createElement(d),c)}if(!b[d]){b[d]=Element.extend(document.createElement(d))}return Element.writeAttribute(b[d].cloneNode(false),c)};Object.extend(this.Element,a||{});if(a){this.Element.prototype=a.prototype}}).call(window);Element.cache={};Element.Methods={visible:function(a){return $(a).style.display!="none"},toggle:function(a){a=$(a);Element[Element.visible(a)?"hide":"show"](a);return a},hide:function(a){a=$(a);a.style.display="none";return a},show:function(a){a=$(a);a.style.display="";return a},remove:function(a){a=$(a);a.parentNode.removeChild(a);return a},update:function(a,b){a=$(a);if(b&&b.toElement){b=b.toElement()}if(Object.isElement(b)){return a.update().insert(b)}b=Object.toHTML(b);a.innerHTML=b.stripScripts();b.evalScripts.bind(b).defer();return a},replace:function(b,c){b=$(b);if(c&&c.toElement){c=c.toElement()}else{if(!Object.isElement(c)){c=Object.toHTML(c);var a=b.ownerDocument.createRange();a.selectNode(b);c.evalScripts.bind(c).defer();c=a.createContextualFragment(c.stripScripts())}}b.parentNode.replaceChild(c,b);return b},insert:function(c,e){c=$(c);if(Object.isString(e)||Object.isNumber(e)||Object.isElement(e)||(e&&(e.toElement||e.toHTML))){e={bottom:e}}var d,f,b,g;for(var a in e){d=e[a];a=a.toLowerCase();f=Element._insertionTranslations[a];if(d&&d.toElement){d=d.toElement()}if(Object.isElement(d)){f(c,d);continue}d=Object.toHTML(d);b=((a=="before"||a=="after")?c.parentNode:c).tagName.toUpperCase();g=Element._getContentFromAnonymousElement(b,d.stripScripts());if(a=="top"||a=="after"){g.reverse()}g.each(f.curry(c));d.evalScripts.bind(d).defer()}return c},wrap:function(b,c,a){b=$(b);if(Object.isElement(c)){$(c).writeAttribute(a||{})}else{if(Object.isString(c)){c=new Element(c,a)}else{c=new Element("div",c)}}if(b.parentNode){b.parentNode.replaceChild(c,b)}c.appendChild(b);return c},inspect:function(b){b=$(b);var a="<"+b.tagName.toLowerCase();$H({id:"id",className:"class"}).each(function(f){var e=f.first(),c=f.last();var d=(b[e]||"").toString();if(d){a+=" "+c+"="+d.inspect(true)}});return a+">"},recursivelyCollect:function(a,c){a=$(a);var b=[];while(a=a[c]){if(a.nodeType==1){b.push(Element.extend(a))}}return b},ancestors:function(a){return $(a).recursivelyCollect("parentNode")},descendants:function(a){return $(a).select("*")},firstDescendant:function(a){a=$(a).firstChild;while(a&&a.nodeType!=1){a=a.nextSibling}return $(a)},immediateDescendants:function(a){if(!(a=$(a).firstChild)){return[]}while(a&&a.nodeType!=1){a=a.nextSibling}if(a){return[a].concat($(a).nextSiblings())}return[]},previousSiblings:function(a){return $(a).recursivelyCollect("previousSibling")},nextSiblings:function(a){return $(a).recursivelyCollect("nextSibling")},siblings:function(a){a=$(a);return a.previousSiblings().reverse().concat(a.nextSiblings())},match:function(b,a){if(Object.isString(a)){a=new Selector(a)}return a.match($(b))},up:function(b,d,a){b=$(b);if(arguments.length==1){return $(b.parentNode)}var c=b.ancestors();return Object.isNumber(d)?c[d]:Selector.findElement(c,d,a)},down:function(b,c,a){b=$(b);if(arguments.length==1){return b.firstDescendant()}return Object.isNumber(c)?b.descendants()[c]:Element.select(b,c)[a||0]},previous:function(b,d,a){b=$(b);if(arguments.length==1){return $(Selector.handlers.previousElementSibling(b))}var c=b.previousSiblings();return Object.isNumber(d)?c[d]:Selector.findElement(c,d,a)},next:function(c,d,b){c=$(c);if(arguments.length==1){return $(Selector.handlers.nextElementSibling(c))}var a=c.nextSiblings();return Object.isNumber(d)?a[d]:Selector.findElement(a,d,b)},select:function(){var a=$A(arguments),b=$(a.shift());return Selector.findChildElements(b,a)},adjacent:function(){var a=$A(arguments),b=$(a.shift());return Selector.findChildElements(b.parentNode,a).without(b)},identify:function(b){b=$(b);var c=b.readAttribute("id"),a=arguments.callee;if(c){return c}do{c="anonymous_element_"+a.counter++}while($(c));b.writeAttribute("id",c);return c},readAttribute:function(c,a){c=$(c);if(Prototype.Browser.IE){var b=Element._attributeTranslations.read;if(b.values[a]){return b.values[a](c,a)}if(b.names[a]){a=b.names[a]}if(a.include(":")){return(!c.attributes||!c.attributes[a])?null:c.attributes[a].value}}return c.getAttribute(a)},writeAttribute:function(e,c,f){e=$(e);var b={},d=Element._attributeTranslations.write;if(typeof c=="object"){b=c}else{b[c]=Object.isUndefined(f)?true:f}for(var a in b){c=d.names[a]||a;f=b[a];if(d.values[a]){c=d.values[a](e,f)}if(f===false||f===null){e.removeAttribute(c)}else{if(f===true){e.setAttribute(c,c)}else{e.setAttribute(c,f)}}}return e},getHeight:function(a){return $(a).getDimensions().height},getWidth:function(a){return $(a).getDimensions().width},classNames:function(a){return new Element.ClassNames(a)},hasClassName:function(a,b){if(!(a=$(a))){return}var c=a.className;return(c.length>0&&(c==b||new RegExp("(^|\\s)"+b+"(\\s|$)").test(c)))},addClassName:function(a,b){if(!(a=$(a))){return}if(!a.hasClassName(b)){a.className+=(a.className?" ":"")+b}return a},removeClassName:function(a,b){if(!(a=$(a))){return}a.className=a.className.replace(new RegExp("(^|\\s+)"+b+"(\\s+|$)")," ").strip();return a},toggleClassName:function(a,b){if(!(a=$(a))){return}return a[a.hasClassName(b)?"removeClassName":"addClassName"](b)},cleanWhitespace:function(b){b=$(b);var c=b.firstChild;while(c){var a=c.nextSibling;if(c.nodeType==3&&!/\S/.test(c.nodeValue)){b.removeChild(c)}c=a}return b},empty:function(a){return $(a).innerHTML.blank()},descendantOf:function(b,a){b=$(b),a=$(a);if(b.compareDocumentPosition){return(b.compareDocumentPosition(a)&8)===8}if(a.contains){return a.contains(b)&&a!==b}while(b=b.parentNode){if(b==a){return true}}return false},scrollTo:function(a){a=$(a);var b=a.cumulativeOffset();window.scrollTo(b[0],b[1]);return a},getStyle:function(b,c){b=$(b);c=c=="float"?"cssFloat":c.camelize();var d=b.style[c];if(!d||d=="auto"){var a=document.defaultView.getComputedStyle(b,null);d=a?a[c]:null}if(c=="opacity"){return d?parseFloat(d):1}return d=="auto"?null:d},getOpacity:function(a){return $(a).getStyle("opacity")},setStyle:function(b,c){b=$(b);var e=b.style,a;if(Object.isString(c)){b.style.cssText+=";"+c;return c.include("opacity")?b.setOpacity(c.match(/opacity:\s*(\d?\.?\d*)/)[1]):b}for(var d in c){if(d=="opacity"){b.setOpacity(c[d])}else{e[(d=="float"||d=="cssFloat")?(Object.isUndefined(e.styleFloat)?"cssFloat":"styleFloat"):d]=c[d]}}return b},setOpacity:function(a,b){a=$(a);a.style.opacity=(b==1||b==="")?"":(b<0.00001)?0:b;return a},getDimensions:function(c){c=$(c);var g=c.getStyle("display");if(g!="none"&&g!=null){return{width:c.offsetWidth,height:c.offsetHeight}}var b=c.style;var f=b.visibility;var d=b.position;var a=b.display;b.visibility="hidden";b.position="absolute";b.display="block";var h=c.clientWidth;var e=c.clientHeight;b.display=a;b.position=d;b.visibility=f;return{width:h,height:e}},makePositioned:function(a){a=$(a);var b=Element.getStyle(a,"position");if(b=="static"||!b){a._madePositioned=true;a.style.position="relative";if(Prototype.Browser.Opera){a.style.top=0;a.style.left=0}}return a},undoPositioned:function(a){a=$(a);if(a._madePositioned){a._madePositioned=undefined;a.style.position=a.style.top=a.style.left=a.style.bottom=a.style.right=""}return a},makeClipping:function(a){a=$(a);if(a._overflow){return a}a._overflow=Element.getStyle(a,"overflow")||"auto";if(a._overflow!=="hidden"){a.style.overflow="hidden"}return a},undoClipping:function(a){a=$(a);if(!a._overflow){return a}a.style.overflow=a._overflow=="auto"?"":a._overflow;a._overflow=null;return a},cumulativeOffset:function(b){var a=0,c=0;do{a+=b.offsetTop||0;c+=b.offsetLeft||0;b=b.offsetParent}while(b);return Element._returnOffset(c,a)},positionedOffset:function(b){var a=0,d=0;do{a+=b.offsetTop||0;d+=b.offsetLeft||0;b=b.offsetParent;if(b){if(b.tagName.toUpperCase()=="BODY"){break}var c=Element.getStyle(b,"position");if(c!=="static"){break}}}while(b);return Element._returnOffset(d,a)},absolutize:function(b){b=$(b);if(b.getStyle("position")=="absolute"){return b}var d=b.positionedOffset();var f=d[1];var e=d[0];var c=b.clientWidth;var a=b.clientHeight;b._originalLeft=e-parseFloat(b.style.left||0);b._originalTop=f-parseFloat(b.style.top||0);b._originalWidth=b.style.width;b._originalHeight=b.style.height;b.style.position="absolute";b.style.top=f+"px";b.style.left=e+"px";b.style.width=c+"px";b.style.height=a+"px";return b},relativize:function(a){a=$(a);if(a.getStyle("position")=="relative"){return a}a.style.position="relative";var c=parseFloat(a.style.top||0)-(a._originalTop||0);var b=parseFloat(a.style.left||0)-(a._originalLeft||0);a.style.top=c+"px";a.style.left=b+"px";a.style.height=a._originalHeight;a.style.width=a._originalWidth;return a},cumulativeScrollOffset:function(b){var a=0,c=0;do{a+=b.scrollTop||0;c+=b.scrollLeft||0;b=b.parentNode}while(b);return Element._returnOffset(c,a)},getOffsetParent:function(a){if(a.offsetParent){return $(a.offsetParent)}if(a==document.body){return $(a)}while((a=a.parentNode)&&a!=document.body){if(Element.getStyle(a,"position")!="static"){return $(a)}}return $(document.body)},viewportOffset:function(d){var a=0,c=0;var b=d;do{a+=b.offsetTop||0;c+=b.offsetLeft||0;if(b.offsetParent==document.body&&Element.getStyle(b,"position")=="absolute"){break}}while(b=b.offsetParent);b=d;do{if(!Prototype.Browser.Opera||(b.tagName&&(b.tagName.toUpperCase()=="BODY"))){a-=b.scrollTop||0;c-=b.scrollLeft||0}}while(b=b.parentNode);return Element._returnOffset(c,a)},clonePosition:function(b,d){var a=Object.extend({setLeft:true,setTop:true,setWidth:true,setHeight:true,offsetTop:0,offsetLeft:0},arguments[2]||{});d=$(d);var e=d.viewportOffset();b=$(b);var f=[0,0];var c=null;if(Element.getStyle(b,"position")=="absolute"){c=b.getOffsetParent();f=c.viewportOffset()}if(c==document.body){f[0]-=document.body.offsetLeft;f[1]-=document.body.offsetTop}if(a.setLeft){b.style.left=(e[0]-f[0]+a.offsetLeft)+"px"}if(a.setTop){b.style.top=(e[1]-f[1]+a.offsetTop)+"px"}if(a.setWidth){b.style.width=d.offsetWidth+"px"}if(a.setHeight){b.style.height=d.offsetHeight+"px"}return b}};Element.Methods.identify.counter=1;Object.extend(Element.Methods,{getElementsBySelector:Element.Methods.select,childElements:Element.Methods.immediateDescendants});Element._attributeTranslations={write:{names:{className:"class",htmlFor:"for"},values:{}}};if(Prototype.Browser.Opera){Element.Methods.getStyle=Element.Methods.getStyle.wrap(function(d,b,c){switch(c){case"left":case"top":case"right":case"bottom":if(d(b,"position")==="static"){return null}case"height":case"width":if(!Element.visible(b)){return null}var e=parseInt(d(b,c),10);if(e!==b["offset"+c.capitalize()]){return e+"px"}var a;if(c==="height"){a=["border-top-width","padding-top","padding-bottom","border-bottom-width"]}else{a=["border-left-width","padding-left","padding-right","border-right-width"]}return a.inject(e,function(f,g){var h=d(b,g);return h===null?f:f-parseInt(h,10)})+"px";default:return d(b,c)}});Element.Methods.readAttribute=Element.Methods.readAttribute.wrap(function(c,a,b){if(b==="title"){return a.title}return c(a,b)})}else{if(Prototype.Browser.IE){Element.Methods.getOffsetParent=Element.Methods.getOffsetParent.wrap(function(c,b){b=$(b);try{b.offsetParent}catch(f){return $(document.body)}var a=b.getStyle("position");if(a!=="static"){return c(b)}b.setStyle({position:"relative"});var d=c(b);b.setStyle({position:a});return d});$w("positionedOffset viewportOffset").each(function(a){Element.Methods[a]=Element.Methods[a].wrap(function(f,c){c=$(c);try{c.offsetParent}catch(h){return Element._returnOffset(0,0)}var b=c.getStyle("position");if(b!=="static"){return f(c)}var d=c.getOffsetParent();if(d&&d.getStyle("position")==="fixed"){d.setStyle({zoom:1})}c.setStyle({position:"relative"});var g=f(c);c.setStyle({position:b});return g})});Element.Methods.cumulativeOffset=Element.Methods.cumulativeOffset.wrap(function(b,a){try{a.offsetParent}catch(c){return Element._returnOffset(0,0)}return b(a)});Element.Methods.getStyle=function(a,b){a=$(a);b=(b=="float"||b=="cssFloat")?"styleFloat":b.camelize();var c=a.style[b];if(!c&&a.currentStyle){c=a.currentStyle[b]}if(b=="opacity"){if(c=(a.getStyle("filter")||"").match(/alpha\(opacity=(.*)\)/)){if(c[1]){return parseFloat(c[1])/100}}return 1}if(c=="auto"){if((b=="width"||b=="height")&&(a.getStyle("display")!="none")){return a["offset"+b.capitalize()]+"px"}return null}return c};Element.Methods.setOpacity=function(b,e){function f(g){return g.replace(/alpha\([^\)]*\)/gi,"")}b=$(b);var a=b.currentStyle;if((a&&!a.hasLayout)||(!a&&b.style.zoom=="normal")){b.style.zoom=1}var d=b.getStyle("filter"),c=b.style;if(e==1||e===""){(d=f(d))?c.filter=d:c.removeAttribute("filter");return b}else{if(e<0.00001){e=0}}c.filter=f(d)+"alpha(opacity="+(e*100)+")";return b};Element._attributeTranslations={read:{names:{"class":"className","for":"htmlFor"},values:{_getAttr:function(a,b){return a.getAttribute(b,2)},_getAttrNode:function(a,c){var b=a.getAttributeNode(c);return b?b.value:""},_getEv:function(a,b){b=a.getAttribute(b);return b?b.toString().slice(23,-2):null},_flag:function(a,b){return $(a).hasAttribute(b)?b:null},style:function(a){return a.style.cssText.toLowerCase()},title:function(a){return a.title}}}};Element._attributeTranslations.write={names:Object.extend({cellpadding:"cellPadding",cellspacing:"cellSpacing"},Element._attributeTranslations.read.names),values:{checked:function(a,b){a.checked=!!b},style:function(a,b){a.style.cssText=b?b:""}}};Element._attributeTranslations.has={};$w("colSpan rowSpan vAlign dateTime accessKey tabIndex encType maxLength readOnly longDesc frameBorder").each(function(a){Element._attributeTranslations.write.names[a.toLowerCase()]=a;Element._attributeTranslations.has[a.toLowerCase()]=a});(function(a){Object.extend(a,{href:a._getAttr,src:a._getAttr,type:a._getAttr,action:a._getAttrNode,disabled:a._flag,checked:a._flag,readonly:a._flag,multiple:a._flag,onload:a._getEv,onunload:a._getEv,onclick:a._getEv,ondblclick:a._getEv,onmousedown:a._getEv,onmouseup:a._getEv,onmouseover:a._getEv,onmousemove:a._getEv,onmouseout:a._getEv,onfocus:a._getEv,onblur:a._getEv,onkeypress:a._getEv,onkeydown:a._getEv,onkeyup:a._getEv,onsubmit:a._getEv,onreset:a._getEv,onselect:a._getEv,onchange:a._getEv})})(Element._attributeTranslations.read.values)}else{if(Prototype.Browser.Gecko&&/rv:1\.8\.0/.test(navigator.userAgent)){Element.Methods.setOpacity=function(a,b){a=$(a);a.style.opacity=(b==1)?0.999999:(b==="")?"":(b<0.00001)?0:b;return a}}else{if(Prototype.Browser.WebKit){Element.Methods.setOpacity=function(a,b){a=$(a);a.style.opacity=(b==1||b==="")?"":(b<0.00001)?0:b;if(b==1){if(a.tagName.toUpperCase()=="IMG"&&a.width){a.width++;a.width--}else{try{var d=document.createTextNode(" ");a.appendChild(d);a.removeChild(d)}catch(c){}}}return a};Element.Methods.cumulativeOffset=function(b){var a=0,c=0;do{a+=b.offsetTop||0;c+=b.offsetLeft||0;if(b.offsetParent==document.body){if(Element.getStyle(b,"position")=="absolute"){break}}b=b.offsetParent}while(b);return Element._returnOffset(c,a)}}}}}if(Prototype.Browser.IE||Prototype.Browser.Opera){Element.Methods.update=function(b,c){b=$(b);if(c&&c.toElement){c=c.toElement()}if(Object.isElement(c)){return b.update().insert(c)}c=Object.toHTML(c);var a=b.tagName.toUpperCase();if(a in Element._insertionTranslations.tags){$A(b.childNodes).each(function(d){b.removeChild(d)});Element._getContentFromAnonymousElement(a,c.stripScripts()).each(function(d){b.appendChild(d)})}else{b.innerHTML=c.stripScripts()}c.evalScripts.bind(c).defer();return b}}if("outerHTML" in document.createElement("div")){Element.Methods.replace=function(c,e){c=$(c);if(e&&e.toElement){e=e.toElement()}if(Object.isElement(e)){c.parentNode.replaceChild(e,c);return c}e=Object.toHTML(e);var d=c.parentNode,b=d.tagName.toUpperCase();if(Element._insertionTranslations.tags[b]){var f=c.next();var a=Element._getContentFromAnonymousElement(b,e.stripScripts());d.removeChild(c);if(f){a.each(function(g){d.insertBefore(g,f)})}else{a.each(function(g){d.appendChild(g)})}}else{c.outerHTML=e.stripScripts()}e.evalScripts.bind(e).defer();return c}}Element._returnOffset=function(b,c){var a=[b,c];a.left=b;a.top=c;return a};Element._getContentFromAnonymousElement=function(c,b){var d=new Element("div"),a=Element._insertionTranslations.tags[c];if(a){d.innerHTML=a[0]+b+a[1];a[2].times(function(){d=d.firstChild})}else{d.innerHTML=b}return $A(d.childNodes)};Element._insertionTranslations={before:function(a,b){a.parentNode.insertBefore(b,a)},top:function(a,b){a.insertBefore(b,a.firstChild)},bottom:function(a,b){a.appendChild(b)},after:function(a,b){a.parentNode.insertBefore(b,a.nextSibling)},tags:{TABLE:["<table>","</table>",1],TBODY:["<table><tbody>","</tbody></table>",2],TR:["<table><tbody><tr>","</tr></tbody></table>",3],TD:["<table><tbody><tr><td>","</td></tr></tbody></table>",4],SELECT:["<select>","</select>",1]}};(function(){Object.extend(this.tags,{THEAD:this.tags.TBODY,TFOOT:this.tags.TBODY,TH:this.tags.TD})}).call(Element._insertionTranslations);Element.Methods.Simulated={hasAttribute:function(a,c){c=Element._attributeTranslations.has[c]||c;var b=$(a).getAttributeNode(c);return !!(b&&b.specified)}};Element.Methods.ByTag={};Object.extend(Element,Element.Methods);if(!Prototype.BrowserFeatures.ElementExtensions&&document.createElement("div")["__proto__"]){window.HTMLElement={};window.HTMLElement.prototype=document.createElement("div")["__proto__"];Prototype.BrowserFeatures.ElementExtensions=true}Element.extend=(function(){if(Prototype.BrowserFeatures.SpecificElementExtensions){return Prototype.K}var a={},b=Element.Methods.ByTag;var c=Object.extend(function(f){if(!f||f._extendedByPrototype||f.nodeType!=1||f==window){return f}var d=Object.clone(a),e=f.tagName.toUpperCase(),h,g;if(b[e]){Object.extend(d,b[e])}for(h in d){g=d[h];if(Object.isFunction(g)&&!(h in f)){f[h]=g.methodize()}}f._extendedByPrototype=Prototype.emptyFunction;return f},{refresh:function(){if(!Prototype.BrowserFeatures.ElementExtensions){Object.extend(a,Element.Methods);Object.extend(a,Element.Methods.Simulated)}}});c.refresh();return c})();Element.hasAttribute=function(a,b){if(a.hasAttribute){return a.hasAttribute(b)}return Element.Methods.Simulated.hasAttribute(a,b)};Element.addMethods=function(c){var h=Prototype.BrowserFeatures,d=Element.Methods.ByTag;if(!c){Object.extend(Form,Form.Methods);Object.extend(Form.Element,Form.Element.Methods);Object.extend(Element.Methods.ByTag,{FORM:Object.clone(Form.Methods),INPUT:Object.clone(Form.Element.Methods),SELECT:Object.clone(Form.Element.Methods),TEXTAREA:Object.clone(Form.Element.Methods)})}if(arguments.length==2){var b=c;c=arguments[1]}if(!b){Object.extend(Element.Methods,c||{})}else{if(Object.isArray(b)){b.each(g)}else{g(b)}}function g(j){j=j.toUpperCase();if(!Element.Methods.ByTag[j]){Element.Methods.ByTag[j]={}}Object.extend(Element.Methods.ByTag[j],c)}function a(l,k,j){j=j||false;for(var n in l){var m=l[n];if(!Object.isFunction(m)){continue}if(!j||!(n in k)){k[n]=m.methodize()}}}function e(l){var j;var k={OPTGROUP:"OptGroup",TEXTAREA:"TextArea",P:"Paragraph",FIELDSET:"FieldSet",UL:"UList",OL:"OList",DL:"DList",DIR:"Directory",H1:"Heading",H2:"Heading",H3:"Heading",H4:"Heading",H5:"Heading",H6:"Heading",Q:"Quote",INS:"Mod",DEL:"Mod",A:"Anchor",IMG:"Image",CAPTION:"TableCaption",COL:"TableCol",COLGROUP:"TableCol",THEAD:"TableSection",TFOOT:"TableSection",TBODY:"TableSection",TR:"TableRow",TH:"TableCell",TD:"TableCell",FRAMESET:"FrameSet",IFRAME:"IFrame"};if(k[l]){j="HTML"+k[l]+"Element"}if(window[j]){return window[j]}j="HTML"+l+"Element";if(window[j]){return window[j]}j="HTML"+l.capitalize()+"Element";if(window[j]){return window[j]}window[j]={};window[j].prototype=document.createElement(l)["__proto__"];return window[j]}if(h.ElementExtensions){a(Element.Methods,HTMLElement.prototype);a(Element.Methods.Simulated,HTMLElement.prototype,true)}if(h.SpecificElementExtensions){for(var i in Element.Methods.ByTag){var f=e(i);if(Object.isUndefined(f)){continue}a(d[i],f.prototype)}}Object.extend(Element,Element.Methods);delete Element.ByTag;if(Element.extend.refresh){Element.extend.refresh()}Element.cache={}};document.viewport={getDimensions:function(){var a={},b=Prototype.Browser;$w("width height").each(function(e){var c=e.capitalize();if(b.WebKit&&!document.evaluate){a[e]=self["inner"+c]}else{if(b.Opera&&parseFloat(window.opera.version())<9.5){a[e]=document.body["client"+c]}else{a[e]=document.documentElement["client"+c]}}});return a},getWidth:function(){return this.getDimensions().width},getHeight:function(){return this.getDimensions().height},getScrollOffsets:function(){return Element._returnOffset(window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft,window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop)}};var Selector=Class.create({initialize:function(a){this.expression=a.strip();if(this.shouldUseSelectorsAPI()){this.mode="selectorsAPI"}else{if(this.shouldUseXPath()){this.mode="xpath";this.compileXPathMatcher()}else{this.mode="normal";this.compileMatcher()}}},shouldUseXPath:function(){if(!Prototype.BrowserFeatures.XPath){return false}var a=this.expression;if(Prototype.Browser.WebKit&&(a.include("-of-type")||a.include(":empty"))){return false}if((/(\[[\w-]*?:|:checked)/).test(a)){return false}return true},shouldUseSelectorsAPI:function(){if(!Prototype.BrowserFeatures.SelectorsAPI){return false}if(!Selector._div){Selector._div=new Element("div")}try{Selector._div.querySelector(this.expression)}catch(a){return false}return true},compileMatcher:function(){var e=this.expression,ps=Selector.patterns,h=Selector.handlers,c=Selector.criteria,le,p,m;if(Selector._cache[e]){this.matcher=Selector._cache[e];return}this.matcher=["this.matcher = function(root) {","var r = root, h = Selector.handlers, c = false, n;"];while(e&&le!=e&&(/\S/).test(e)){le=e;for(var i in ps){p=ps[i];if(m=e.match(p)){this.matcher.push(Object.isFunction(c[i])?c[i](m):new Template(c[i]).evaluate(m));e=e.replace(m[0],"");break}}}this.matcher.push("return h.unique(n);\n}");eval(this.matcher.join("\n"));Selector._cache[this.expression]=this.matcher},compileXPathMatcher:function(){var f=this.expression,g=Selector.patterns,b=Selector.xpath,d,a;if(Selector._cache[f]){this.xpath=Selector._cache[f];return}this.matcher=[".//*"];while(f&&d!=f&&(/\S/).test(f)){d=f;for(var c in g){if(a=f.match(g[c])){this.matcher.push(Object.isFunction(b[c])?b[c](a):new Template(b[c]).evaluate(a));f=f.replace(a[0],"");break}}}this.xpath=this.matcher.join("");Selector._cache[this.expression]=this.xpath},findElements:function(a){a=a||document;var c=this.expression,b;switch(this.mode){case"selectorsAPI":if(a!==document){var d=a.id,f=$(a).identify();c="#"+f+" "+c}b=$A(a.querySelectorAll(c)).map(Element.extend);a.id=d;return b;case"xpath":return document._getElementsByXPath(this.xpath,a);default:return this.matcher(a)}},match:function(j){this.tokens=[];var o=this.expression,a=Selector.patterns,f=Selector.assertions;var b,d,g;while(o&&b!==o&&(/\S/).test(o)){b=o;for(var k in a){d=a[k];if(g=o.match(d)){if(f[k]){this.tokens.push([k,Object.clone(g)]);o=o.replace(g[0],"")}else{return this.findElements(document).include(j)}}}}var n=true,c,l;for(var k=0,h;h=this.tokens[k];k++){c=h[0],l=h[1];if(!Selector.assertions[c](j,l)){n=false;break}}return n},toString:function(){return this.expression},inspect:function(){return"#<Selector:"+this.expression.inspect()+">"}});Object.extend(Selector,{_cache:{},xpath:{descendant:"//*",child:"/*",adjacent:"/following-sibling::*[1]",laterSibling:"/following-sibling::*",tagName:function(a){if(a[1]=="*"){return""}return"[local-name()='"+a[1].toLowerCase()+"' or local-name()='"+a[1].toUpperCase()+"']"},className:"[contains(concat(' ', @class, ' '), ' #{1} ')]",id:"[@id='#{1}']",attrPresence:function(a){a[1]=a[1].toLowerCase();return new Template("[@#{1}]").evaluate(a)},attr:function(a){a[1]=a[1].toLowerCase();a[3]=a[5]||a[6];return new Template(Selector.xpath.operators[a[2]]).evaluate(a)},pseudo:function(a){var b=Selector.xpath.pseudos[a[1]];if(!b){return""}if(Object.isFunction(b)){return b(a)}return new Template(Selector.xpath.pseudos[a[1]]).evaluate(a)},operators:{"=":"[@#{1}='#{3}']","!=":"[@#{1}!='#{3}']","^=":"[starts-with(@#{1}, '#{3}')]","$=":"[substring(@#{1}, (string-length(@#{1}) - string-length('#{3}') + 1))='#{3}']","*=":"[contains(@#{1}, '#{3}')]","~=":"[contains(concat(' ', @#{1}, ' '), ' #{3} ')]","|=":"[contains(concat('-', @#{1}, '-'), '-#{3}-')]"},pseudos:{"first-child":"[not(preceding-sibling::*)]","last-child":"[not(following-sibling::*)]","only-child":"[not(preceding-sibling::* or following-sibling::*)]",empty:"[count(*) = 0 and (count(text()) = 0)]",checked:"[@checked]",disabled:"[(@disabled) and (@type!='hidden')]",enabled:"[not(@disabled) and (@type!='hidden')]",not:function(b){var j=b[6],h=Selector.patterns,a=Selector.xpath,f,c;var g=[];while(j&&f!=j&&(/\S/).test(j)){f=j;for(var d in h){if(b=j.match(h[d])){c=Object.isFunction(a[d])?a[d](b):new Template(a[d]).evaluate(b);g.push("("+c.substring(1,c.length-1)+")");j=j.replace(b[0],"");break}}}return"[not("+g.join(" and ")+")]"},"nth-child":function(a){return Selector.xpath.pseudos.nth("(count(./preceding-sibling::*) + 1) ",a)},"nth-last-child":function(a){return Selector.xpath.pseudos.nth("(count(./following-sibling::*) + 1) ",a)},"nth-of-type":function(a){return Selector.xpath.pseudos.nth("position() ",a)},"nth-last-of-type":function(a){return Selector.xpath.pseudos.nth("(last() + 1 - position()) ",a)},"first-of-type":function(a){a[6]="1";return Selector.xpath.pseudos["nth-of-type"](a)},"last-of-type":function(a){a[6]="1";return Selector.xpath.pseudos["nth-last-of-type"](a)},"only-of-type":function(a){var b=Selector.xpath.pseudos;return b["first-of-type"](a)+b["last-of-type"](a)},nth:function(g,e){var h,i=e[6],d;if(i=="even"){i="2n+0"}if(i=="odd"){i="2n+1"}if(h=i.match(/^(\d+)$/)){return"["+g+"= "+h[1]+"]"}if(h=i.match(/^(-?\d*)?n(([+-])(\d+))?/)){if(h[1]=="-"){h[1]=-1}var f=h[1]?Number(h[1]):1;var c=h[2]?Number(h[2]):0;d="[((#{fragment} - #{b}) mod #{a} = 0) and ((#{fragment} - #{b}) div #{a} >= 0)]";return new Template(d).evaluate({fragment:g,a:f,b:c})}}}},criteria:{tagName:'n = h.tagName(n, r, "#{1}", c);      c = false;',className:'n = h.className(n, r, "#{1}", c);    c = false;',id:'n = h.id(n, r, "#{1}", c);           c = false;',attrPresence:'n = h.attrPresence(n, r, "#{1}", c); c = false;',attr:function(a){a[3]=(a[5]||a[6]);return new Template('n = h.attr(n, r, "#{1}", "#{3}", "#{2}", c); c = false;').evaluate(a)},pseudo:function(a){if(a[6]){a[6]=a[6].replace(/"/g,'\\"')}return new Template('n = h.pseudo(n, "#{1}", "#{6}", r, c); c = false;').evaluate(a)},descendant:'c = "descendant";',child:'c = "child";',adjacent:'c = "adjacent";',laterSibling:'c = "laterSibling";'},patterns:{laterSibling:/^\s*~\s*/,child:/^\s*>\s*/,adjacent:/^\s*\+\s*/,descendant:/^\s/,tagName:/^\s*(\*|[\w\-]+)(\b|$)?/,id:/^#([\w\-\*]+)(\b|$)/,className:/^\.([\w\-\*]+)(\b|$)/,pseudo:/^:((first|last|nth|nth-last|only)(-child|-of-type)|empty|checked|(en|dis)abled|not)(\((.*?)\))?(\b|$|(?=\s|[:+~>]))/,attrPresence:/^\[((?:[\w]+:)?[\w]+)\]/,attr:/\[((?:[\w-]*:)?[\w-]+)\s*(?:([!^$*~|]?=)\s*((['"])([^\4]*?)\4|([^'"][^\]]*?)))?\]/},assertions:{tagName:function(a,b){return b[1].toUpperCase()==a.tagName.toUpperCase()},className:function(a,b){return Element.hasClassName(a,b[1])},id:function(a,b){return a.id===b[1]},attrPresence:function(a,b){return Element.hasAttribute(a,b[1])},attr:function(b,c){var a=Element.readAttribute(b,c[1]);return a&&Selector.operators[c[2]](a,c[5]||c[6])}},handlers:{concat:function(d,c){for(var e=0,f;f=c[e];e++){d.push(f)}return d},mark:function(a){var d=Prototype.emptyFunction;for(var b=0,c;c=a[b];b++){c._countedByPrototype=d}return a},unmark:function(a){for(var b=0,c;c=a[b];b++){c._countedByPrototype=undefined}return a},index:function(a,d,g){a._countedByPrototype=Prototype.emptyFunction;if(d){for(var b=a.childNodes,e=b.length-1,c=1;e>=0;e--){var f=b[e];if(f.nodeType==1&&(!g||f._countedByPrototype)){f.nodeIndex=c++}}}else{for(var e=0,c=1,b=a.childNodes;f=b[e];e++){if(f.nodeType==1&&(!g||f._countedByPrototype)){f.nodeIndex=c++}}}},unique:function(b){if(b.length==0){return b}var d=[],e;for(var c=0,a=b.length;c<a;c++){if(!(e=b[c])._countedByPrototype){e._countedByPrototype=Prototype.emptyFunction;d.push(Element.extend(e))}}return Selector.handlers.unmark(d)},descendant:function(a){var d=Selector.handlers;for(var c=0,b=[],e;e=a[c];c++){d.concat(b,e.getElementsByTagName("*"))}return b},child:function(a){var e=Selector.handlers;for(var d=0,c=[],f;f=a[d];d++){for(var b=0,g;g=f.childNodes[b];b++){if(g.nodeType==1&&g.tagName!="!"){c.push(g)}}}return c},adjacent:function(a){for(var c=0,b=[],e;e=a[c];c++){var d=this.nextElementSibling(e);if(d){b.push(d)}}return b},laterSibling:function(a){var d=Selector.handlers;for(var c=0,b=[],e;e=a[c];c++){d.concat(b,Element.nextSiblings(e))}return b},nextElementSibling:function(a){while(a=a.nextSibling){if(a.nodeType==1){return a}}return null},previousElementSibling:function(a){while(a=a.previousSibling){if(a.nodeType==1){return a}}return null},tagName:function(a,j,c,b){var k=c.toUpperCase();var e=[],g=Selector.handlers;if(a){if(b){if(b=="descendant"){for(var f=0,d;d=a[f];f++){g.concat(e,d.getElementsByTagName(c))}return e}else{a=this[b](a)}if(c=="*"){return a}}for(var f=0,d;d=a[f];f++){if(d.tagName.toUpperCase()===k){e.push(d)}}return e}else{return j.getElementsByTagName(c)}},id:function(b,a,j,f){var g=$(j),d=Selector.handlers;if(!g){return[]}if(!b&&a==document){return[g]}if(b){if(f){if(f=="child"){for(var c=0,e;e=b[c];c++){if(g.parentNode==e){return[g]}}}else{if(f=="descendant"){for(var c=0,e;e=b[c];c++){if(Element.descendantOf(g,e)){return[g]}}}else{if(f=="adjacent"){for(var c=0,e;e=b[c];c++){if(Selector.handlers.previousElementSibling(g)==e){return[g]}}}else{b=d[f](b)}}}}for(var c=0,e;e=b[c];c++){if(e==g){return[g]}}return[]}return(g&&Element.descendantOf(g,a))?[g]:[]},className:function(b,a,c,d){if(b&&d){b=this[d](b)}return Selector.handlers.byClassName(b,a,c)},byClassName:function(c,b,f){if(!c){c=Selector.handlers.descendant([b])}var h=" "+f+" ";for(var e=0,d=[],g,a;g=c[e];e++){a=g.className;if(a.length==0){continue}if(a==f||(" "+a+" ").include(h)){d.push(g)}}return d},attrPresence:function(c,b,a,g){if(!c){c=b.getElementsByTagName("*")}if(c&&g){c=this[g](c)}var e=[];for(var d=0,f;f=c[d];d++){if(Element.hasAttribute(f,a)){e.push(f)}}return e},attr:function(a,j,h,k,c,b){if(!a){a=j.getElementsByTagName("*")}if(a&&b){a=this[b](a)}var l=Selector.operators[c],f=[];for(var e=0,d;d=a[e];e++){var g=Element.readAttribute(d,h);if(g===null){continue}if(l(g,k)){f.push(d)}}return f},pseudo:function(b,c,e,a,d){if(b&&d){b=this[d](b)}if(!b){b=a.getElementsByTagName("*")}return Selector.pseudos[c](b,e,a)}},pseudos:{"first-child":function(b,f,a){for(var d=0,c=[],e;e=b[d];d++){if(Selector.handlers.previousElementSibling(e)){continue}c.push(e)}return c},"last-child":function(b,f,a){for(var d=0,c=[],e;e=b[d];d++){if(Selector.handlers.nextElementSibling(e)){continue}c.push(e)}return c},"only-child":function(b,g,a){var e=Selector.handlers;for(var d=0,c=[],f;f=b[d];d++){if(!e.previousElementSibling(f)&&!e.nextElementSibling(f)){c.push(f)}}return c},"nth-child":function(b,c,a){return Selector.pseudos.nth(b,c,a)},"nth-last-child":function(b,c,a){return Selector.pseudos.nth(b,c,a,true)},"nth-of-type":function(b,c,a){return Selector.pseudos.nth(b,c,a,false,true)},"nth-last-of-type":function(b,c,a){return Selector.pseudos.nth(b,c,a,true,true)},"first-of-type":function(b,c,a){return Selector.pseudos.nth(b,"1",a,false,true)},"last-of-type":function(b,c,a){return Selector.pseudos.nth(b,"1",a,true,true)},"only-of-type":function(b,d,a){var c=Selector.pseudos;return c["last-of-type"](c["first-of-type"](b,d,a),d,a)},getIndices:function(d,c,e){if(d==0){return c>0?[c]:[]}return $R(1,e).inject([],function(a,b){if(0==(b-c)%d&&(b-c)/d>=0){a.push(b)}return a})},nth:function(c,s,u,r,e){if(c.length==0){return[]}if(s=="even"){s="2n+0"}if(s=="odd"){s="2n+1"}var q=Selector.handlers,p=[],d=[],g;q.mark(c);for(var o=0,f;f=c[o];o++){if(!f.parentNode._countedByPrototype){q.index(f.parentNode,r,e);d.push(f.parentNode)}}if(s.match(/^\d+$/)){s=Number(s);for(var o=0,f;f=c[o];o++){if(f.nodeIndex==s){p.push(f)}}}else{if(g=s.match(/^(-?\d*)?n(([+-])(\d+))?/)){if(g[1]=="-"){g[1]=-1}var v=g[1]?Number(g[1]):1;var t=g[2]?Number(g[2]):0;var w=Selector.pseudos.getIndices(v,t,c.length);for(var o=0,f,k=w.length;f=c[o];o++){for(var n=0;n<k;n++){if(f.nodeIndex==w[n]){p.push(f)}}}}}q.unmark(c);q.unmark(d);return p},empty:function(b,f,a){for(var d=0,c=[],e;e=b[d];d++){if(e.tagName=="!"||e.firstChild){continue}c.push(e)}return c},not:function(a,d,k){var g=Selector.handlers,l,c;var j=new Selector(d).findElements(k);g.mark(j);for(var f=0,e=[],b;b=a[f];f++){if(!b._countedByPrototype){e.push(b)}}g.unmark(j);return e},enabled:function(b,f,a){for(var d=0,c=[],e;e=b[d];d++){if(!e.disabled&&(!e.type||e.type!=="hidden")){c.push(e)}}return c},disabled:function(b,f,a){for(var d=0,c=[],e;e=b[d];d++){if(e.disabled){c.push(e)}}return c},checked:function(b,f,a){for(var d=0,c=[],e;e=b[d];d++){if(e.checked){c.push(e)}}return c}},operators:{"=":function(b,a){return b==a},"!=":function(b,a){return b!=a},"^=":function(b,a){return b==a||b&&b.startsWith(a)},"$=":function(b,a){return b==a||b&&b.endsWith(a)},"*=":function(b,a){return b==a||b&&b.include(a)},"$=":function(b,a){return b.endsWith(a)},"*=":function(b,a){return b.include(a)},"~=":function(b,a){return(" "+b+" ").include(" "+a+" ")},"|=":function(b,a){return("-"+(b||"").toUpperCase()+"-").include("-"+(a||"").toUpperCase()+"-")}},split:function(b){var a=[];b.scan(/(([\w#:.~>+()\s-]+|\*|\[.*?\])+)\s*(,|$)/,function(c){a.push(c[1].strip())});return a},matchElements:function(f,g){var e=$$(g),d=Selector.handlers;d.mark(e);for(var c=0,b=[],a;a=f[c];c++){if(a._countedByPrototype){b.push(a)}}d.unmark(e);return b},findElement:function(b,c,a){if(Object.isNumber(c)){a=c;c=false}return Selector.matchElements(b,c||"*")[a||0]},findChildElements:function(e,g){g=Selector.split(g.join(","));var d=[],f=Selector.handlers;for(var c=0,b=g.length,a;c<b;c++){a=new Selector(g[c].strip());f.concat(d,a.findElements(e))}return(b>1)?f.unique(d):d}});if(Prototype.Browser.IE){Object.extend(Selector.handlers,{concat:function(d,c){for(var e=0,f;f=c[e];e++){if(f.tagName!=="!"){d.push(f)}}return d},unmark:function(a){for(var b=0,c;c=a[b];b++){c.removeAttribute("_countedByPrototype")}return a}})}function $$(){return Selector.findChildElements(document,$A(arguments))}var Form={reset:function(a){$(a).reset();return a},serializeElements:function(g,b){if(typeof b!="object"){b={hash:!!b}}else{if(Object.isUndefined(b.hash)){b.hash=true}}var c,f,a=false,e=b.submit;var d=g.inject({},function(h,i){if(!i.disabled&&i.name){c=i.name;f=$(i).getValue();if(f!=null&&i.type!="file"&&(i.type!="submit"||(!a&&e!==false&&(!e||c==e)&&(a=true)))){if(c in h){if(!Object.isArray(h[c])){h[c]=[h[c]]}h[c].push(f)}else{h[c]=f}}}return h});return b.hash?d:Object.toQueryString(d)}};Form.Methods={serialize:function(b,a){return Form.serializeElements(Form.getElements(b),a)},getElements:function(a){return $A($(a).getElementsByTagName("*")).inject([],function(b,c){if(Form.Element.Serializers[c.tagName.toLowerCase()]){b.push(Element.extend(c))}return b})},getInputs:function(g,c,d){g=$(g);var a=g.getElementsByTagName("input");if(!c&&!d){return $A(a).map(Element.extend)}for(var e=0,h=[],f=a.length;e<f;e++){var b=a[e];if((c&&b.type!=c)||(d&&b.name!=d)){continue}h.push(Element.extend(b))}return h},disable:function(a){a=$(a);Form.getElements(a).invoke("disable");return a},enable:function(a){a=$(a);Form.getElements(a).invoke("enable");return a},findFirstElement:function(b){var c=$(b).getElements().findAll(function(d){return"hidden"!=d.type&&!d.disabled});var a=c.findAll(function(d){return d.hasAttribute("tabIndex")&&d.tabIndex>=0}).sortBy(function(d){return d.tabIndex}).first();return a?a:c.find(function(d){return["input","select","textarea"].include(d.tagName.toLowerCase())})},focusFirstElement:function(a){a=$(a);a.findFirstElement().activate();return a},request:function(b,a){b=$(b),a=Object.clone(a||{});var d=a.parameters,c=b.readAttribute("action")||"";if(c.blank()){c=window.location.href}a.parameters=b.serialize(true);if(d){if(Object.isString(d)){d=d.toQueryParams()}Object.extend(a.parameters,d)}if(b.hasAttribute("method")&&!a.method){a.method=b.method}return new Ajax.Request(c,a)}};Form.Element={focus:function(a){$(a).focus();return a},select:function(a){$(a).select();return a}};Form.Element.Methods={serialize:function(a){a=$(a);if(!a.disabled&&a.name){var b=a.getValue();if(b!=undefined){var c={};c[a.name]=b;return Object.toQueryString(c)}}return""},getValue:function(a){a=$(a);var b=a.tagName.toLowerCase();return Form.Element.Serializers[b](a)},setValue:function(a,b){a=$(a);var c=a.tagName.toLowerCase();Form.Element.Serializers[c](a,b);return a},clear:function(a){$(a).value="";return a},present:function(a){return $(a).value!=""},activate:function(a){a=$(a);try{a.focus();if(a.select&&(a.tagName.toLowerCase()!="input"||!["button","reset","submit"].include(a.type))){a.select()}}catch(b){}return a},disable:function(a){a=$(a);a.disabled=true;return a},enable:function(a){a=$(a);a.disabled=false;return a}};var Field=Form.Element;var $F=Form.Element.Methods.getValue;Form.Element.Serializers={input:function(a,b){switch(a.type.toLowerCase()){case"checkbox":case"radio":return Form.Element.Serializers.inputSelector(a,b);default:return Form.Element.Serializers.textarea(a,b)}},inputSelector:function(a,b){if(Object.isUndefined(b)){return a.checked?a.value:null}else{a.checked=!!b}},textarea:function(a,b){if(Object.isUndefined(b)){return a.value}else{a.value=b}},select:function(c,f){if(Object.isUndefined(f)){return this[c.type=="select-one"?"selectOne":"selectMany"](c)}else{var b,d,g=!Object.isArray(f);for(var a=0,e=c.length;a<e;a++){b=c.options[a];d=this.optionValue(b);if(g){if(d==f){b.selected=true;return}}else{b.selected=f.include(d)}}}},selectOne:function(b){var a=b.selectedIndex;return a>=0?this.optionValue(b.options[a]):null},selectMany:function(d){var a,e=d.length;if(!e){return null}for(var c=0,a=[];c<e;c++){var b=d.options[c];if(b.selected){a.push(this.optionValue(b))}}return a},optionValue:function(a){return Element.extend(a).hasAttribute("value")?a.value:a.text}};Abstract.TimedObserver=Class.create(PeriodicalExecuter,{initialize:function($super,a,b,c){$super(c,b);this.element=$(a);this.lastValue=this.getValue()},execute:function(){var a=this.getValue();if(Object.isString(this.lastValue)&&Object.isString(a)?this.lastValue!=a:String(this.lastValue)!=String(a)){this.callback(this.element,a);this.lastValue=a}}});Form.Element.Observer=Class.create(Abstract.TimedObserver,{getValue:function(){return Form.Element.getValue(this.element)}});Form.Observer=Class.create(Abstract.TimedObserver,{getValue:function(){return Form.serialize(this.element)}});Abstract.EventObserver=Class.create({initialize:function(a,b){this.element=$(a);this.callback=b;this.lastValue=this.getValue();if(this.element.tagName.toLowerCase()=="form"){this.registerFormCallbacks()}else{this.registerCallback(this.element)}},onElementEvent:function(){var a=this.getValue();if(this.lastValue!=a){this.callback(this.element,a);this.lastValue=a}},registerFormCallbacks:function(){Form.getElements(this.element).each(this.registerCallback,this)},registerCallback:function(a){if(a.type){switch(a.type.toLowerCase()){case"checkbox":case"radio":Event.observe(a,"click",this.onElementEvent.bind(this));break;default:Event.observe(a,"change",this.onElementEvent.bind(this));break}}}});Form.Element.EventObserver=Class.create(Abstract.EventObserver,{getValue:function(){return Form.Element.getValue(this.element)}});Form.EventObserver=Class.create(Abstract.EventObserver,{getValue:function(){return Form.serialize(this.element)}});if(!window.Event){var Event={}}Object.extend(Event,{KEY_BACKSPACE:8,KEY_TAB:9,KEY_RETURN:13,KEY_ESC:27,KEY_LEFT:37,KEY_UP:38,KEY_RIGHT:39,KEY_DOWN:40,KEY_DELETE:46,KEY_HOME:36,KEY_END:35,KEY_PAGEUP:33,KEY_PAGEDOWN:34,KEY_INSERT:45,cache:{},relatedTarget:function(b){var a;switch(b.type){case"mouseover":a=b.fromElement;break;case"mouseout":a=b.toElement;break;default:return null}return Element.extend(a)}});Event.Methods=(function(){var a;if(Prototype.Browser.IE){var b={0:1,1:4,2:2};a=function(d,c){return d.button==b[c]}}else{if(Prototype.Browser.WebKit){a=function(d,c){switch(c){case 0:return d.which==1&&!d.metaKey;case 1:return d.which==1&&d.metaKey;default:return false}}}else{a=function(d,c){return d.which?(d.which===c+1):(d.button===c)}}}return{isLeftClick:function(c){return a(c,0)},isMiddleClick:function(c){return a(c,1)},isRightClick:function(c){return a(c,2)},element:function(e){e=Event.extend(e);var d=e.target,c=e.type,f=e.currentTarget;if(f&&f.tagName){if(c==="load"||c==="error"||(c==="click"&&f.tagName.toLowerCase()==="input"&&f.type==="radio")){d=f}}if(d.nodeType==Node.TEXT_NODE){d=d.parentNode}return Element.extend(d)},findElement:function(d,f){var c=Event.element(d);if(!f){return c}var e=[c].concat(c.ancestors());return Selector.findElement(e,f,0)},pointer:function(e){var d=document.documentElement,c=document.body||{scrollLeft:0,scrollTop:0};return{x:e.pageX||(e.clientX+(d.scrollLeft||c.scrollLeft)-(d.clientLeft||0)),y:e.pageY||(e.clientY+(d.scrollTop||c.scrollTop)-(d.clientTop||0))}},pointerX:function(c){return Event.pointer(c).x},pointerY:function(c){return Event.pointer(c).y},stop:function(c){Event.extend(c);c.preventDefault();c.stopPropagation();c.stopped=true}}})();Event.extend=(function(){var a=Object.keys(Event.Methods).inject({},function(b,c){b[c]=Event.Methods[c].methodize();return b});if(Prototype.Browser.IE){Object.extend(a,{stopPropagation:function(){this.cancelBubble=true},preventDefault:function(){this.returnValue=false},inspect:function(){return"[object Event]"}});return function(b){if(!b){return false}if(b._extendedByPrototype){return b}b._extendedByPrototype=Prototype.emptyFunction;var c=Event.pointer(b);Object.extend(b,{target:b.srcElement,relatedTarget:Event.relatedTarget(b),pageX:c.x,pageY:c.y});return Object.extend(b,a)}}else{Event.prototype=Event.prototype||document.createEvent("HTMLEvents")["__proto__"];Object.extend(Event.prototype,a);return Prototype.K}})();Object.extend(Event,(function(){var b=Event.cache;function c(j){if(j._prototypeEventID){return j._prototypeEventID[0]}arguments.callee.id=arguments.callee.id||1;return j._prototypeEventID=[++arguments.callee.id]}function g(j){if(j&&j.include(":")){return"dataavailable"}return j}function a(j){return b[j]=b[j]||{}}function f(l,j){var k=a(l);return k[j]=k[j]||[]}function h(k,j,l){var o=c(k);var n=f(o,j);if(n.pluck("handler").include(l)){return false}var m=function(p){if(!Event||!Event.extend||(p.eventName&&p.eventName!=j)){return false}Event.extend(p);l.call(k,p)};m.handler=l;n.push(m);return m}function i(m,j,k){var l=f(m,j);return l.find(function(n){return n.handler==k})}function d(m,j,k){var l=a(m);if(!l[j]){return false}l[j]=l[j].without(i(m,j,k))}function e(){for(var k in b){for(var j in b[k]){b[k][j]=null}}}if(window.attachEvent){window.attachEvent("onunload",e)}if(Prototype.Browser.WebKit){window.addEventListener("unload",Prototype.emptyFunction,false)}return{observe:function(l,j,m){l=$(l);var k=g(j);var n=h(l,j,m);if(!n){return l}if(l.addEventListener){l.addEventListener(k,n,false)}else{l.attachEvent("on"+k,n)}return l},stopObserving:function(l,j,m){l=$(l);var o=c(l),k=g(j);if(!m&&j){f(o,j).each(function(p){l.stopObserving(j,p.handler)});return l}else{if(!j){Object.keys(a(o)).each(function(p){l.stopObserving(p)});return l}}var n=i(o,j,m);if(!n){return l}if(l.removeEventListener){l.removeEventListener(k,n,false)}else{l.detachEvent("on"+k,n)}d(o,j,m);return l},fire:function(l,k,j){l=$(l);if(l==document&&document.createEvent&&!l.dispatchEvent){l=document.documentElement}var m;if(document.createEvent){m=document.createEvent("HTMLEvents");m.initEvent("dataavailable",true,true)}else{m=document.createEventObject();m.eventType="ondataavailable"}m.eventName=k;m.memo=j||{};if(document.createEvent){l.dispatchEvent(m)}else{l.fireEvent(m.eventType,m)}return Event.extend(m)}}})());Object.extend(Event,Event.Methods);Element.addMethods({fire:Event.fire,observe:Event.observe,stopObserving:Event.stopObserving});Object.extend(document,{fire:Element.Methods.fire.methodize(),observe:Element.Methods.observe.methodize(),stopObserving:Element.Methods.stopObserving.methodize(),loaded:false});(function(){var b;function a(){if(document.loaded){return}if(b){window.clearInterval(b)}document.fire("dom:loaded");document.loaded=true}if(document.addEventListener){if(Prototype.Browser.WebKit){b=window.setInterval(function(){if(/loaded|complete/.test(document.readyState)){a()}},0);Event.observe(window,"load",a)}else{document.addEventListener("DOMContentLoaded",a,false)}}else{document.write("<script id=__onDOMContentLoaded defer src=//:><\/script>");$("__onDOMContentLoaded").onreadystatechange=function(){if(this.readyState=="complete"){this.onreadystatechange=null;a()}}}})();Hash.toQueryString=Object.toQueryString;var Toggle={display:Element.toggle};Element.Methods.childOf=Element.Methods.descendantOf;var Insertion={Before:function(a,b){return Element.insert(a,{before:b})},Top:function(a,b){return Element.insert(a,{top:b})},Bottom:function(a,b){return Element.insert(a,{bottom:b})},After:function(a,b){return Element.insert(a,{after:b})}};var $continue=new Error('"throw $continue" is deprecated, use "return" instead');var Position={includeScrollOffsets:false,prepare:function(){this.deltaX=window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft||0;this.deltaY=window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0},within:function(b,a,c){if(this.includeScrollOffsets){return this.withinIncludingScrolloffsets(b,a,c)}this.xcomp=a;this.ycomp=c;this.offset=Element.cumulativeOffset(b);return(c>=this.offset[1]&&c<this.offset[1]+b.offsetHeight&&a>=this.offset[0]&&a<this.offset[0]+b.offsetWidth)},withinIncludingScrolloffsets:function(b,a,d){var c=Element.cumulativeScrollOffset(b);this.xcomp=a+c[0]-this.deltaX;this.ycomp=d+c[1]-this.deltaY;this.offset=Element.cumulativeOffset(b);return(this.ycomp>=this.offset[1]&&this.ycomp<this.offset[1]+b.offsetHeight&&this.xcomp>=this.offset[0]&&this.xcomp<this.offset[0]+b.offsetWidth)},overlap:function(b,a){if(!b){return 0}if(b=="vertical"){return((this.offset[1]+a.offsetHeight)-this.ycomp)/a.offsetHeight}if(b=="horizontal"){return((this.offset[0]+a.offsetWidth)-this.xcomp)/a.offsetWidth}},cumulativeOffset:Element.Methods.cumulativeOffset,positionedOffset:Element.Methods.positionedOffset,absolutize:function(a){Position.prepare();return Element.absolutize(a)},relativize:function(a){Position.prepare();return Element.relativize(a)},realOffset:Element.Methods.cumulativeScrollOffset,offsetParent:Element.Methods.getOffsetParent,page:Element.Methods.viewportOffset,clone:function(b,c,a){a=a||{};return Element.clonePosition(c,b,a)}};if(!document.getElementsByClassName){document.getElementsByClassName=function(b){function a(c){return c.blank()?null:"[contains(concat(' ', @class, ' '), ' "+c+" ')]"}b.getElementsByClassName=Prototype.BrowserFeatures.XPath?function(c,e){e=e.toString().strip();var d=/\s/.test(e)?$w(e).map(a).join(""):a(e);return d?document._getElementsByXPath(".//*"+d,c):[]}:function(e,f){f=f.toString().strip();var g=[],h=(/\s/.test(f)?$w(f):null);if(!h&&!f){return g}var c=$(e).getElementsByTagName("*");f=" "+f+" ";for(var d=0,k,j;k=c[d];d++){if(k.className&&(j=" "+k.className+" ")&&(j.include(f)||(h&&h.all(function(i){return !i.toString().blank()&&j.include(" "+i+" ")})))){g.push(Element.extend(k))}}return g};return function(d,c){return $(c||document.body).getElementsByClassName(d)}}(Element.Methods)}Element.ClassNames=Class.create();Element.ClassNames.prototype={initialize:function(a){this.element=$(a)},_each:function(a){this.element.className.split(/\s+/).select(function(b){return b.length>0})._each(a)},set:function(a){this.element.className=a},add:function(a){if(this.include(a)){return}this.set($A(this).concat(a).join(" "))},remove:function(a){if(!this.include(a)){return}this.set($A(this).without(a).join(" "))},toString:function(){return $A(this).join(" ")}};Object.extend(Element.ClassNames.prototype,Enumerable);Element.addMethods();/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var K=function(){return K.replace.apply(null,arguments)};var U=K.DOM={ready:(function(){var Z=false,b={loaded:1,complete:1};var Y=[],a=function(){if(Z){return}Z=true;for(var c;c=Y.shift();c()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",a,false);window.addEventListener("pageshow",a,false)}if(!window.opera&&document.readyState){(function(){b[document.readyState]?a():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");a()}catch(c){setTimeout(arguments.callee,1)}})()}O(window,"load",a);return function(c){if(!arguments.length){a()}else{Z?c():Y.push(c)}}})()};var L=K.CSS={Size:function(Z,Y){this.value=parseFloat(Z);this.unit=String(Z).match(/[a-z%]*$/)[0]||"px";this.convert=function(a){return a/Y*this.value};this.convertFrom=function(a){return a/this.value*Y};this.toString=function(){return this.value+this.unit}},getStyle:function(Z){var Y=document.defaultView;if(Y&&Y.getComputedStyle){return new A(Y.getComputedStyle(Z,null))}if(Z.currentStyle){return new A(Z.currentStyle)}return new A(Z.style)},quotedList:I(function(b){var a=[],Z=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,Y;while(Y=Z.exec(b)){a.push(Y[3]||Y[1])}return a}),ready:(function(){var a=false;var Z=[],b=function(){a=true;for(var d;d=Z.shift();d()){}};var Y=Object.prototype.propertyIsEnumerable?F("style"):{length:0};var c=F("link");U.ready(function(){var g=0,f;for(var e=0,d=c.length;f=c[e],e<d;++e){if(!f.disabled&&f.rel.toLowerCase()=="stylesheet"){++g}}if(document.styleSheets.length>=Y.length+g){b()}else{setTimeout(arguments.callee,10)}});return function(d){if(a){d()}else{Z.push(d)}}})(),supports:function(a,Z){var Y=document.createElement("span").style;if(Y[a]===undefined){return false}Y[a]=Z;return Y[a]===Z},textAlign:function(b,a,Y,Z){if(a.get("textAlign")=="right"){if(Y>0){b=" "+b}}else{if(Y<Z-1){b+=" "}}return b},textDecoration:function(d,c){if(!c){c=this.getStyle(d)}var Z={underline:null,overline:null,"line-through":null};for(var Y=d;Y.parentNode&&Y.parentNode.nodeType==1;){var b=true;for(var a in Z){if(Z[a]){continue}if(c.get("textDecoration").indexOf(a)!=-1){Z[a]=c.get("color")}b=false}if(b){break}c=this.getStyle(Y=Y.parentNode)}return Z},textShadow:I(function(c){if(c=="none"){return null}var b=[],d={},Y,Z=0;var a=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Y=a.exec(c)){if(Y[0]==","){b.push(d);d={},Z=0}else{if(Y[1]){d.color=Y[1]}else{d[["offX","offY","blur"][Z++]]=Y[2]}}}b.push(d);return b}),color:I(function(Z){var Y={};Y.color=Z.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(b,a,c){Y.opacity=parseFloat(c);return"rgb("+a+")"});return Y}),textTransform:function(Z,Y){return Z[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Y.get("textTransform")]||"toString"]()}};function Q(Z){var Y=this.face=Z.face;this.glyphs=Z.glyphs;this.w=Z.w;this.baseSize=parseInt(Y["units-per-em"],10);this.family=Y["font-family"].toLowerCase();this.weight=Y["font-weight"];this.style=Y["font-style"]||"normal";this.viewBox=(function(){var b=Y.bbox.split(/\s+/);var a={minX:parseInt(b[0],10),minY:parseInt(b[1],10),maxX:parseInt(b[2],10),maxY:parseInt(b[3],10)};a.width=a.maxX-a.minX,a.height=a.maxY-a.minY;a.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return a})();this.ascent=-parseInt(Y.ascent,10);this.descent=-parseInt(Y.descent,10);this.height=-this.ascent+this.descent}function E(){var Z={},Y={oblique:"italic",italic:"oblique"};this.add=function(a){(Z[a.style]||(Z[a.style]={}))[a.weight]=a};this.get=function(e,f){var d=Z[e]||Z[Y[e]]||Z.normal||Z.italic||Z.oblique;if(!d){return null}f={normal:400,bold:700}[f]||parseInt(f,10);if(d[f]){return d[f]}var b={1:1,99:0}[f%100],h=[],c,a;if(b===undefined){b=f>400}if(f==500){f=400}for(var g in d){g=parseInt(g,10);if(!c||g<c){c=g}if(!a||g>a){a=g}h.push(g)}if(f<c){f=c}if(f>a){f=a}h.sort(function(j,i){return(b?(j>f&&i>f)?j<i:j>i:(j<f&&i<f)?j>i:j<i)?-1:1});return d[h[0]]}}function P(){function a(c,d){if(c.contains){return c.contains(d)}return c.compareDocumentPosition(d)&16}function Y(d){var c=d.relatedTarget;if(!c||a(this,c)){return}Z(this)}function b(c){Z(this)}function Z(c){setTimeout(function(){K.replace(c,D.get(c).options,true)},10)}this.attach=function(c){if(c.onmouseenter===undefined){O(c,"mouseover",Y);O(c,"mouseout",Y)}else{O(c,"mouseenter",b);O(c,"mouseleave",b)}}}function X(){var a={},Y=0;function Z(b){return b.cufid||(b.cufid=++Y)}this.get=function(b){var c=Z(b);return a[c]||(a[c]={})}}function A(Y){var a={},Z={};this.get=function(b){return a[b]!=undefined?a[b]:Y[b]};this.getSize=function(c,b){return Z[c]||(Z[c]=new L.Size(this.get(c),b))};this.extend=function(b){for(var c in b){a[c]=b[c]}return this}}function O(Z,Y,a){if(Z.addEventListener){Z.addEventListener(Y,a,false)}else{if(Z.attachEvent){Z.attachEvent("on"+Y,function(){return a.call(Z,window.event)})}}}function R(Z,Y){var a=D.get(Z);if(a.options){return Z}if(Y.hover&&Y.hoverables[Z.nodeName.toLowerCase()]){B.attach(Z)}a.options=Y;return Z}function I(Y){var Z={};return function(a){if(!Z.hasOwnProperty(a)){Z[a]=Y.apply(null,arguments)}return Z[a]}}function C(d,c){if(!c){c=L.getStyle(d)}var Z=L.quotedList(c.get("fontFamily").toLowerCase()),b;for(var a=0,Y=Z.length;a<Y;++a){b=Z[a];if(H[b]){return H[b].get(c.get("fontStyle"),c.get("fontWeight"))}}return null}function F(Y){return document.getElementsByTagName(Y)}function G(){var Y={},b;for(var a=0,Z=arguments.length;a<Z;++a){for(b in arguments[a]){Y[b]=arguments[a][b]}}return Y}function M(b,k,Z,m,c,a){var j=m.separate;if(j=="none"){return W[m.engine].apply(null,arguments)}var h=document.createDocumentFragment(),e;var f=k.split(N[j]),Y=(j=="words");if(Y&&S){if(/^\s/.test(k)){f.unshift("")}if(/\s$/.test(k)){f.push("")}}for(var g=0,d=f.length;g<d;++g){e=W[m.engine](b,Y?L.textAlign(f[g],Z,g,d):f[g],Z,m,c,a,g<d-1);if(e){h.appendChild(e)}}return h}function J(Z,g){var a,Y,d,f;for(var b=R(Z,g).firstChild;b;b=d){d=b.nextSibling;f=false;if(b.nodeType==1){if(!b.firstChild){continue}if(!/cufon/.test(b.className)){arguments.callee(b,g);continue}else{f=true}}if(!Y){Y=L.getStyle(Z).extend(g)}if(!a){a=C(Z,Y)}if(!a){continue}if(f){W[g.engine](a,null,Y,g,b,Z);continue}var e=b.data;if(e===""){continue}var c=M(a,e,Y,g,b,Z);if(c){b.parentNode.replaceChild(c,b)}else{b.parentNode.removeChild(b)}}}var S=" ".split(/\s+/).length==0;var D=new X();var B=new P();var V=[];var W={},H={},T={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(Y){return jQuery(Y)})||(window.dojo&&dojo.query)||(window.$$&&function(Y){return $$(Y)})||(window.$&&function(Y){return $(Y)})||(document.querySelectorAll&&function(Y){return document.querySelectorAll(Y)})||F),separate:"words",textShadow:"none"};var N={words:/\s+/,characters:""};K.now=function(){U.ready();return K};K.refresh=function(){var a=V.splice(0,V.length);for(var Z=0,Y=a.length;Z<Y;++Z){K.replace.apply(null,a[Z])}return K};K.registerEngine=function(Z,Y){if(!Y){return K}W[Z]=Y;return K.set("engine",Z)};K.registerFont=function(a){var Y=new Q(a),Z=Y.family;if(!H[Z]){H[Z]=new E()}H[Z].add(Y);return K.set("fontFamily",'"'+Z+'"')};K.replace=function(a,Z,Y){Z=G(T,Z);if(!Z.engine){return K}if(typeof Z.textShadow=="string"){Z.textShadow=L.textShadow(Z.textShadow)}if(!Y){V.push(arguments)}if(a.nodeType||typeof a=="string"){a=[a]}L.ready(function(){for(var c=0,b=a.length;c<b;++c){var d=a[c];if(typeof d=="string"){K.replace(Z.selector(d),Z,true)}else{J(d,Z)}}});return K};K.set=function(Y,Z){T[Y]=Z;return K};return K})();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}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));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(q,T,k,P,X,r){var I=(T===null);var V=q.viewBox;var J=k.getSize("fontSize",q.baseSize);var h=k.get("letterSpacing");h=(h=="normal")?0:J.convertFrom(parseInt(h,10));var W=0,j=0,f=0,R=0;var U=P.textShadow,d=[];if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];var c=J.convertFrom(parseFloat(Z.offX));var b=J.convertFrom(parseFloat(Z.offY));d[p]=[c,b];if(b<W){W=b}if(c>j){j=c}if(b>f){f=b}if(c<R){R=c}}}var u=Cufon.CSS.textTransform(I?X.alt:T,k).split("");var G=0,S=null;for(var p=0,m=u.length;p<m;++p){var Q=q.glyphs[u[p]]||q.missingGlyph;if(!Q){continue}G+=S=Number(Q.w||q.w)+h}if(S===null){return null}j+=(V.width-S);R+=V.minX;var O,K;if(I){O=X;K=X.firstChild}else{O=document.createElement("span");O.className="cufon cufon-canvas";O.alt=T;K=document.createElement("canvas");O.appendChild(K);if(P.printable){var n=document.createElement("span");n.className="cufon-alt";n.appendChild(document.createTextNode(T));O.appendChild(n)}}var v=O.style;var a=K.style;var H=J.convert(V.height-W+f);var t=Math.ceil(H);var e=t/H;K.width=Math.ceil(J.convert(G+j-R)*e);K.height=t;W+=V.minY;a.top=Math.round(J.convert(W-q.ascent))+"px";a.left=Math.round(J.convert(R))+"px";var N=Math.ceil(J.convert(G*e))+"px";if(A){v.width=N;v.height=J.convert(q.height)+"px"}else{v.paddingLeft=N;v.paddingBottom=(J.convert(q.height)-1)+"px"}var s=K.getContext("2d"),Y=t/V.height;s.scale(Y,Y);s.translate(-R,-W);s.lineWidth=q.face["underline-thickness"];s.save();function L(i,g){s.strokeStyle=g;s.beginPath();s.moveTo(0,i);s.lineTo(G,i);s.stroke()}var M=P.enableTextDecoration?Cufon.CSS.textDecoration(r,k):{};if(M.underline){L(-q.face["underline-position"],M.underline)}if(M.overline){L(q.ascent,M.overline)}s.fillStyle=k.get("color");function o(){for(var w=0,g=u.length;w<g;++w){var x=q.glyphs[u[w]]||q.missingGlyph;if(!x){continue}s.beginPath();if(x.d){if(x.code){C(x.code,s)}else{x.code=D("m"+x.d,s)}}s.fill();s.translate(Number(x.w||q.w)+h,0)}}if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];s.save();s.fillStyle=Z.color;s.translate.apply(s,d[p]);o();s.restore()}}o();s.restore();if(M["line-through"]){L(-q.descent,M["line-through"])}return O}})());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;document.write('<style type="text/css">.cufon-vml-canvas{text-indent:0}@media screen{cvml\\:shape,cvml\\:group,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:middle}.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>');function C(D,E){return A(D,/(?:em|ex|%)$/i.test(E)?"1em":E)}function A(G,H){if(/px$/i.test(H)){return parseFloat(H)}var F=G.style.left,E=G.runtimeStyle.left;G.runtimeStyle.left=G.currentStyle.left;G.style.left=H;var D=G.style.pixelLeft;G.style.left=F;G.runtimeStyle.left=E;return D}return function(s,V,n,S,Z,t,j){var G=(V===null);if(G){V=Z.alt}var X=s.viewBox;var H=n.computedFontSize||(n.computedFontSize=new Cufon.CSS.Size(C(t,n.get("fontSize"))+"px",s.baseSize));var h=n.computedLSpacing;if(h==undefined){h=n.get("letterSpacing");n.computedLSpacing=h=(h=="normal")?0:~~H.convertFrom(A(t,h))}var P,I;if(G){P=Z;I=Z.firstChild}else{P=document.createElement("span");P.className="cufon cufon-vml";P.alt=V;I=document.createElement("span");I.className="cufon-vml-canvas";P.appendChild(I);if(S.printable){var q=document.createElement("span");q.className="cufon-alt";q.appendChild(document.createTextNode(V));P.appendChild(q)}if(!j){P.appendChild(document.createElement("cvml:group"))}}var y=P.style;var c=I.style;var E=H.convert(X.height),v=Math.ceil(E);var g=v/E;var f=X.minX,e=X.minY;c.height=v;c.top=Math.round(H.convert(e-s.ascent));c.left=Math.round(H.convert(f));y.height=H.convert(s.height)+"px";var L=S.enableTextDecoration?Cufon.CSS.textDecoration(t,n):{};var U=n.get("color");var w=Cufon.CSS.textTransform(V,n).split("");var D=0,d=0,M=null;var T,N,W=S.textShadow;for(var r=0,p=0,o=w.length;r<o;++r){T=s.glyphs[w[r]]||s.missingGlyph;if(T){D+=M=~~(T.w||s.w)+h}}if(M===null){return null}var O=-f+D+(X.width-M);var x=H.convert(O*g),m=Math.round(x);var b=O+","+X.height,F;var Y="r"+b+"nsnf";for(r=0;r<o;++r){T=s.glyphs[w[r]]||s.missingGlyph;if(!T){continue}if(G){N=I.childNodes[p];if(N.firstChild){N.removeChild(N.firstChild)}}else{N=document.createElement("cvml:shape");I.appendChild(N)}N.stroked="f";N.coordsize=b;N.coordorigin=F=(f-d)+","+e;N.path=(T.d?"m"+T.d+"xe":"")+"m"+F+Y;N.fillcolor=U;var u=N.style;u.width=m;u.height=v;if(W){var K=W[0],J=W[1];var R=Cufon.CSS.color(K.color),Q;var a=document.createElement("cvml:shadow");a.on="t";a.color=R.color;a.offset=K.offX+","+K.offY;if(J){Q=Cufon.CSS.color(J.color);a.type="double";a.color2=Q.color;a.offset2=J.offX+","+J.offY}a.opacity=R.opacity||(Q&&Q.opacity)||1;N.appendChild(a)}d+=~~(T.w||s.w)+h;++p}y.width=Math.max(Math.ceil(H.convert(D*g)),0);return P}})());
if(!{"www.imesmes.com":1,"imesmes.com":1,"localhost:3000":1,"www.localhost:3000":1,"192.168.1.213:3000":1}[location.host]){throw Error("This font cannot be used with this domain")}Cufon.registerFont({w:556,face:{"font-family":"Caecilia LT Std","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 5 0 0 0 0 0 0 0",ascent:"769",descent:"-231","x-height":"12",bbox:"-56 -926 1072 270","underline-thickness":"50","underline-position":"-100",stemh:"63",stemv:"82","unicode-range":"U+0020-U+00FA"},glyphs:{" ":{w:278},"!":{d:"125,-236r-10,-533r92,0r-10,533r-72,0xm95,-50v0,-34,28,-62,62,-62v34,0,62,28,62,62v0,34,-28,62,-62,62v-34,0,-62,-28,-62,-62",w:314},'"':{d:"284,-527r-12,-122v-2,-22,-4,-44,-4,-76v0,-30,10,-52,46,-52v36,0,46,22,46,52v0,32,-2,54,-4,76r-12,122v-1,24,-5,44,-30,44v-25,0,-28,-20,-30,-44xm100,-527r-12,-122v-2,-22,-4,-44,-4,-76v0,-30,10,-52,46,-52v36,0,46,22,46,52v0,32,-2,54,-4,76r-12,122v-1,24,-5,44,-30,44v-25,0,-28,-20,-30,-44",w:444},"#":{d:"237,-421r-31,142r113,0r31,-142r-113,0xm143,-279r31,-142r-110,0r0,-57r122,0r49,-222r63,0r-49,222r113,0r49,-222r63,0r-49,222r111,0r0,57r-123,0r-31,142r110,0r0,57r-122,0r-49,222r-63,0r49,-222r-113,0r-49,222r-63,0r49,-222r-111,0r0,-57r123,0"},"$":{d:"251,-712r0,-128r63,0r0,128v44,0,135,13,175,30r0,141r-74,0r0,-85v-32,-11,-69,-18,-103,-18r-2,249v112,29,218,52,218,194v0,133,-103,201,-222,213r0,128r-63,0r0,-128v-41,0,-182,-15,-214,-33r0,-155r82,0r0,97v40,15,77,22,132,23r2,-265v-141,-26,-217,-77,-217,-191v0,-123,104,-200,223,-200xm247,-406r2,-238v-30,0,-135,16,-135,124v0,84,100,108,133,114xm308,-310r-2,251v49,-4,136,-33,136,-132v0,-82,-70,-107,-134,-119"},"%":{d:"205,-382v-96,0,-164,-69,-164,-165v0,-96,68,-165,164,-165v90,0,158,69,158,165v0,96,-68,165,-158,165xm202,-445v59,0,87,-48,87,-102v0,-54,-28,-102,-87,-102v-59,0,-87,48,-87,102v0,54,28,102,87,102xm631,12v-96,0,-164,-69,-164,-165v0,-96,68,-165,164,-165v90,0,158,69,158,165v0,96,-68,165,-158,165xm628,-51v59,0,87,-48,87,-102v0,-54,-28,-102,-87,-102v-59,0,-87,48,-87,102v0,54,28,102,87,102xm163,22r450,-778r51,34r-450,778",w:833},"&":{d:"282,-432v66,-44,111,-75,111,-135v0,-54,-42,-82,-92,-82v-57,0,-100,32,-100,90v0,54,47,93,81,127xm484,-127r-219,-219v-67,43,-111,78,-111,151v0,84,70,139,169,139v89,0,138,-46,161,-71xm326,-388r203,205v25,-41,50,-93,50,-175r-77,0r0,-63r224,0r0,63r-79,0v0,87,-39,176,-71,221r48,43v28,25,52,34,72,34v11,0,21,-2,30,-3r0,63v-10,1,-24,3,-38,3v-77,0,-103,-35,-156,-84v-63,66,-133,93,-224,93v-174,0,-236,-117,-236,-193v0,-108,68,-155,149,-209v-75,-75,-94,-115,-94,-169v0,-21,5,-153,177,-153v92,0,163,47,163,145v0,82,-79,139,-141,179",w:778},"(":{d:"253,-788r57,38v-97,119,-149,337,-149,491v0,156,58,374,149,491r-57,38v-119,-167,-178,-321,-178,-529v0,-206,59,-360,178,-529",w:314},")":{d:"61,270r-57,-38v97,-119,149,-337,149,-491v0,-156,-58,-374,-149,-491r57,-38v119,167,178,321,178,529v0,206,-59,360,-178,529",w:314},"*":{d:"158,-643r-14,-126r63,0r-12,126r102,-69r28,51r-115,48r115,49r-28,51r-102,-67r12,125r-63,0r14,-125r-104,67r-28,-51r116,-49r-116,-48r28,-51",w:351},"+":{d:"266,0r0,-219r-219,0r0,-68r219,0r0,-219r68,0r0,219r219,0r0,68r-219,0r0,219r-68,0",w:600},",":{d:"106,182r-38,-38r34,-41v15,-18,22,-35,22,-65v0,-21,-7,-30,-21,-46v-16,-18,-25,-28,-25,-50v0,-32,24,-54,57,-54v50,0,75,47,75,99v0,69,-25,119,-74,166",w:278},"-":{d:"74,-237r0,-74r259,0r0,74r-259,0",w:407},".":{d:"77,-50v0,-34,28,-62,62,-62v34,0,62,28,62,62v0,34,-28,62,-62,62v-34,0,-62,-28,-62,-62",w:278},"/":{d:"-28,53r327,-830r63,24r-327,830",w:370},"0":{d:"278,-644v-136,0,-158,192,-158,294v0,102,22,294,158,294v136,0,158,-192,158,-294v0,-102,-22,-294,-158,-294xm278,-712v195,0,244,202,244,350v0,166,-55,374,-244,374v-195,0,-244,-202,-244,-350v0,-166,55,-374,244,-374"},"1":{d:"60,-557r232,-143r64,0r-4,637r144,0r0,63r-366,0r0,-63r140,0r4,-554r-2,0v-2,3,-9,10,-17,15r-158,102"},"2":{d:"131,-504r-82,0v0,-50,47,-208,222,-208v140,0,212,85,212,196v0,154,-164,309,-231,368r-92,81r0,2v13,-1,25,-3,38,-3r310,0r0,68r-460,0r0,-58r50,-45v8,-6,181,-162,240,-250v37,-56,63,-99,63,-169v0,-67,-44,-122,-127,-122v-116,0,-133,90,-143,140"},"3":{d:"185,-324r0,-68r28,0v116,0,174,-79,174,-145v0,-63,-48,-107,-118,-107v-69,0,-136,43,-136,118r-78,0v0,-84,63,-186,224,-186v134,0,194,78,194,168v0,126,-97,166,-146,173r0,2v102,11,174,64,174,173v0,95,-69,208,-264,208v-92,0,-159,-20,-180,-37r0,-81v41,30,116,50,177,50v122,0,181,-60,181,-143v0,-117,-123,-125,-201,-125r-29,0"},"4":{d:"330,-278r2,-329r-2,0r-232,332v13,-2,27,-3,40,-3r192,0xm247,0r0,-63r81,0r2,-147r-316,0r0,-63r304,-427r92,0r-2,422r134,0r0,68r-134,0r-2,147r83,0r0,63r-242,0"},"5":{d:"460,-700r0,68r-292,0r-4,198v145,6,326,34,326,217v0,109,-74,229,-267,229v-68,0,-121,-10,-157,-26r0,-74v25,12,100,32,150,32v155,0,188,-97,188,-154v0,-156,-221,-156,-318,-156r4,-334r370,0"},"6":{d:"497,-700r-7,68v-23,-6,-63,-12,-103,-12v-174,0,-258,133,-258,296v37,-41,86,-82,176,-82v139,0,206,93,206,214v0,85,-53,228,-226,228v-144,0,-240,-112,-240,-321v0,-233,107,-403,342,-403v30,0,77,3,110,12xm131,-277v0,99,39,221,157,221v71,0,141,-52,141,-160v0,-71,-39,-146,-143,-146v-79,0,-135,53,-155,85"},"7":{d:"58,-626r0,-74r440,0r0,57r-239,487v-36,73,-71,130,-88,156r-98,0v23,-32,59,-81,97,-156r215,-426v8,-15,16,-29,25,-44r-352,0"},"8":{d:"42,-165v0,-106,76,-154,169,-193v-87,-39,-145,-89,-145,-178v0,-98,73,-176,212,-176v110,0,215,47,215,163v0,90,-57,140,-146,184v86,46,167,79,167,191v0,119,-88,186,-236,186v-161,0,-236,-72,-236,-177xm229,-426r52,28r63,-36v45,-26,67,-60,67,-107v0,-77,-69,-103,-133,-103v-65,0,-130,33,-130,108v0,58,43,90,81,110xm346,-286r-71,-38v-63,31,-147,71,-147,154v0,79,63,114,150,114v118,0,154,-68,154,-121v0,-27,-10,-68,-86,-109"},"9":{d:"59,0r7,-68v23,6,63,12,103,12v174,0,258,-133,258,-296v-37,41,-86,82,-176,82v-139,0,-206,-93,-206,-214v0,-85,53,-228,226,-228v144,0,240,112,240,321v0,233,-107,403,-342,403v-30,0,-77,-3,-110,-12xm425,-423v0,-99,-39,-221,-157,-221v-71,0,-141,52,-141,160v0,71,39,146,143,146v79,0,135,-53,155,-85"},":":{d:"77,-454v0,-34,28,-62,62,-62v34,0,62,28,62,62v0,34,-28,62,-62,62v-34,0,-62,-28,-62,-62xm77,-50v0,-34,28,-62,62,-62v34,0,62,28,62,62v0,34,-28,62,-62,62v-34,0,-62,-28,-62,-62",w:278},";":{d:"106,182r-38,-38r34,-41v15,-18,22,-35,22,-65v0,-21,-7,-30,-21,-46v-16,-18,-25,-28,-25,-50v0,-32,24,-54,57,-54v50,0,75,47,75,99v0,69,-25,119,-74,166xm77,-454v0,-34,28,-62,62,-62v34,0,62,28,62,62v0,34,-28,62,-62,62v-34,0,-62,-28,-62,-62",w:278},"<":{d:"47,-222r0,-63r506,-229r0,68r-424,193r424,193r0,68",w:600},"=":{d:"47,-319r0,-68r506,0r0,68r-506,0xm47,-119r0,-68r506,0r0,68r-506,0",w:600},">":{d:"553,-284r0,63r-506,229r0,-68r424,-193r-424,-193r0,-68",w:600},"?":{d:"101,-690r-6,-67v50,-17,103,-20,121,-20v172,0,210,112,210,178v0,88,-60,142,-110,178r-36,26v-53,37,-79,55,-79,89v0,8,6,29,16,40r12,14r-67,36v-25,-25,-43,-52,-43,-92v0,-58,29,-79,83,-118r33,-22v64,-39,105,-85,105,-143v0,-58,-37,-118,-143,-118v-33,0,-65,8,-96,19xm123,-50v0,-34,28,-62,62,-62v34,0,62,28,62,62v0,34,-28,62,-62,62v-34,0,-62,-28,-62,-62",w:500},"@":{d:"488,-389v0,-66,-30,-93,-79,-93v-85,0,-142,98,-142,180v0,59,29,93,75,93v88,0,146,-109,146,-180xm607,-537r-68,244v-11,39,-16,58,-16,67v0,13,7,23,33,23v53,0,120,-90,120,-199v0,-145,-121,-236,-260,-236v-173,0,-292,132,-292,291v0,178,132,285,284,285v108,0,190,-30,241,-90r82,0v-51,95,-164,164,-323,164v-206,0,-370,-135,-370,-363v0,-203,153,-361,378,-361v196,0,346,121,346,298v0,195,-154,279,-247,279v-49,0,-69,-25,-70,-58r-2,0v-26,30,-68,58,-120,58v-75,0,-134,-62,-134,-158v0,-139,103,-263,216,-263v48,0,87,25,113,76r18,-57r71,0",w:800},A:{d:"265,-339r206,0r-84,-233v-8,-23,-11,-35,-14,-48r-2,0v-3,13,-6,25,-14,48xm11,0r0,-63r64,0r260,-637r92,0r236,637r67,0r0,63r-236,0r0,-63r74,0r-75,-213r-253,0r-83,213r84,0r0,63r-230,0",w:741},B:{d:"212,-637r-2,246r50,0v88,0,178,-20,178,-126v0,-120,-95,-120,-141,-120r-85,0xm210,-328r-2,265r65,0v85,0,205,-1,205,-132v0,-116,-101,-133,-184,-133r-84,0xm122,-63r4,-574r-80,0r0,-63r244,0v68,0,106,3,146,22v53,25,88,75,88,148v0,93,-59,148,-136,161r0,2v91,-1,182,59,182,172v0,150,-123,195,-248,195r-276,0r0,-63r76,0",w:630},C:{d:"635,-677r0,160r-78,0r0,-110v-24,-7,-73,-17,-131,-17v-170,0,-284,100,-284,289v0,191,98,299,288,299v43,0,83,-7,117,-15r4,-116r78,0r-4,170v-41,18,-135,29,-201,29v-230,0,-374,-116,-374,-357v0,-196,119,-367,381,-367v74,0,156,17,204,35",w:685},D:{d:"209,-637r-4,574r108,0v103,0,176,-24,226,-74v47,-47,78,-126,78,-223v0,-93,-31,-170,-81,-214v-58,-51,-124,-63,-218,-63r-109,0xm119,-63r4,-574r-80,0r0,-63r315,0v209,0,351,108,351,340v0,246,-149,360,-385,360r-281,0r0,-63r76,0",w:759},E:{d:"119,-63r4,-574r-80,0r0,-63r473,0r0,162r-74,0r0,-99r-233,0r-2,246r220,0r0,63r-220,0r-2,265r243,0r6,-109r74,0r-6,172r-479,0r0,-63r76,0",w:574},F:{d:"119,-63r4,-574r-80,0r0,-63r467,0r3,165r-74,0r-3,-102r-227,0r-2,257r241,0r0,63r-241,0r-2,254r89,0r0,63r-251,0r0,-63r76,0"},G:{d:"625,-242r0,225v-41,18,-135,29,-201,29v-230,0,-374,-116,-374,-357v0,-196,113,-367,373,-367v93,0,182,23,212,37r0,158r-74,0r0,-104v-24,-12,-79,-23,-144,-23v-169,0,-275,100,-275,289v0,191,98,299,288,299v26,0,80,-4,117,-15r0,-171r-86,0r0,-63r242,0r0,63r-78,0",w:722},H:{d:"119,-63r4,-574r-80,0r0,-63r242,0r0,63r-76,0r-2,257r364,0r2,-257r-80,0r0,-63r242,0r0,63r-76,0r-4,574r80,0r0,63r-242,0r0,-63r76,0r2,-254r-364,0r-2,254r80,0r0,63r-242,0r0,-63r76,0",w:778},I:{d:"122,-63r4,-574r-80,0r0,-63r242,0r0,63r-76,0r-4,574r80,0r0,63r-242,0r0,-63r76,0",w:334},J:{d:"43,-637r0,-63r241,0r0,63r-74,0r-4,445v-2,202,-66,292,-236,374r-26,-63v128,-61,175,-171,176,-309r4,-447r-81,0",w:315},K:{d:"43,-637r0,-63r242,0r0,63r-76,0r-2,267r304,-267r-85,0r0,-63r242,0r0,63r-62,0r-311,272r317,302r62,0r0,63r-254,0r0,-63r82,0r-295,-280r-2,280r80,0r0,63r-242,0r0,-63r76,0r4,-574r-80,0",w:704},L:{d:"119,-63r4,-574r-80,0r0,-63r238,0r0,63r-72,0r-4,574r239,0r6,-109r74,0r-6,172r-475,0r0,-63r76,0"},M:{d:"35,-637r0,-63r189,0r225,559v5,13,6,23,11,43r2,0v5,-20,6,-30,11,-43r225,-559r193,0r0,63r-91,0r6,574r85,0r0,63r-242,0r0,-63r75,0r2,-513r-2,0v-8,29,-11,39,-17,54r-212,522r-76,0r-215,-527v-5,-11,-7,-20,-14,-43r-2,0r-2,507r85,0r0,63r-236,0r0,-63r81,0r6,-574r-87,0",w:926},N:{d:"119,-63r4,-574r-93,0r0,-63r167,0r381,512v12,16,23,35,33,52r2,0r4,-501r-87,0r0,-63r236,0r0,63r-75,0r-4,637r-71,0r-396,-526v-10,-14,-19,-29,-27,-44r-2,0r-4,507r88,0r0,63r-232,0r0,-63r76,0",w:796},O:{d:"50,-338v0,-215,116,-374,330,-374v220,0,330,159,330,350v0,215,-116,374,-330,374v-220,0,-330,-159,-330,-350xm142,-350v0,153,69,294,238,294v169,0,238,-141,238,-294v0,-153,-69,-294,-238,-294v-169,0,-238,141,-238,294",w:760},P:{d:"119,-63r4,-574r-80,0r0,-63r241,0v71,0,120,9,161,32v55,30,91,87,91,166v0,142,-100,218,-212,218r-117,0r-2,221r89,0r0,63r-251,0r0,-63r76,0xm209,-637r-2,290r94,0v95,0,149,-57,149,-146v0,-61,-23,-103,-63,-125v-34,-19,-65,-19,-115,-19r-63,0",w:574},Q:{d:"835,104r-3,63v-10,5,-26,9,-60,9v-66,0,-109,-22,-313,-115v-36,-16,-97,-49,-108,-49v-126,0,-301,-104,-301,-350v0,-215,116,-374,330,-374v220,0,330,159,330,350v0,166,-70,314,-224,358r0,2v23,4,56,19,155,69v37,16,92,41,146,41v20,0,34,-3,48,-4xm380,-644v-169,0,-238,141,-238,294v0,153,69,294,238,294v169,0,238,-141,238,-294v0,-153,-69,-294,-238,-294",w:760},R:{d:"212,-637r-2,264r83,0v89,0,158,-39,158,-139v0,-102,-73,-125,-165,-125r-74,0xm46,-637r0,-63r234,0v126,0,257,19,257,180v0,116,-81,180,-164,189r0,2v25,1,57,22,90,79r59,102v44,73,50,85,91,85r31,0r0,63r-41,0v-72,0,-93,-8,-131,-67r-67,-115v-62,-106,-78,-128,-140,-128r-55,0r-2,247r81,0r0,63r-243,0r0,-63r76,0r4,-574r-80,0",w:648},S:{d:"66,-23r0,-154r82,0r0,95v32,19,93,26,137,26v100,0,166,-46,166,-130v0,-187,-384,-76,-384,-327v0,-85,50,-199,259,-199v51,0,144,13,188,33r0,141r-78,0r0,-87v-26,-11,-84,-19,-117,-19v-75,0,-160,29,-160,121v0,178,384,67,384,325v0,154,-132,210,-267,210v-115,0,-171,-27,-210,-35",w:593},T:{d:"287,-63r4,-574r-191,0r-6,108r-74,0r6,-171r616,0r6,171r-74,0r-6,-108r-191,0r-4,574r87,0r0,63r-249,0r0,-63r76,0",w:668},U:{d:"274,-700r0,63r-75,0v-1,98,-2,195,-2,359v0,87,6,136,35,172v28,35,79,50,151,50v70,0,124,-17,156,-59v29,-38,30,-98,31,-193r2,-329r-87,0r0,-63r242,0r0,63r-77,0r-2,379v0,80,-9,138,-55,194v-40,49,-114,76,-213,76v-122,0,-189,-31,-230,-87v-33,-45,-39,-94,-39,-211v0,-114,1,-244,2,-351r-81,0r0,-63r242,0",w:759},V:{d:"315,0r-247,-637r-66,0r0,-63r242,0r0,63r-78,0r190,523v5,13,7,25,11,38r2,0v4,-13,6,-25,11,-38r188,-523r-84,0r0,-63r236,0r0,63r-66,0r-247,637r-92,0",w:722},W:{d:"291,0r-218,-637r-71,0r0,-63r242,0r0,63r-79,0r171,531v5,13,7,25,11,38r2,0v4,-13,6,-25,11,-38r154,-405r-40,-126r-75,0r0,-63r236,0r0,63r-75,0r159,531v5,13,7,25,11,38r2,0v4,-13,6,-25,11,-38r182,-531r-89,0r0,-63r236,0r0,63r-65,0r-234,637r-98,0r-125,-412r-2,0r-159,412r-98,0",w:1074},X:{d:"89,-63r218,-290r-199,-284r-72,0r0,-63r254,0r0,63r-82,0v10,11,18,20,26,32r128,188r139,-192v7,-10,15,-19,24,-28r-83,0r0,-63r230,0r0,63r-66,0r-204,276r208,298r68,0r0,63r-248,0r0,-63r79,0v-8,-9,-16,-19,-22,-28r-140,-205r-150,207v-7,9,-14,17,-22,26r81,0r0,63r-230,0r0,-63r63,0",w:704},Y:{d:"8,-637r0,-63r242,0r0,63r-73,0v9,9,17,18,24,28r173,240r169,-236v8,-12,17,-21,27,-32r-86,0r0,-63r230,0r0,63r-64,0r-239,335r-3,239r79,0r0,63r-238,0r0,-63r73,0r3,-238r-245,-336r-72,0",w:722},Z:{d:"52,0r0,-59r412,-544v9,-12,20,-23,30,-34r-341,0r-6,105r-74,0r6,-168r515,0r0,63r-406,538v-9,12,-20,24,-31,36r359,0r6,-106r74,0r-6,169r-538,0",w:648},"[":{d:"102,251r4,-1020r176,0r0,63r-94,0r-4,894r94,0r0,63r-176,0",w:314},"\\":{d:"71,-777r327,830r-63,24r-327,-830",w:370},"]":{d:"212,-769r-4,1020r-176,0r0,-63r94,0r4,-894r-94,0r0,-63r176,0",w:314},"^":{d:"443,-335r-143,-287r-143,287r-68,0r181,-365r60,0r181,365r-68,0",w:600},_:{d:"500,125r-500,0r0,-50r500,0r0,50",w:500},a:{d:"242,-51v56,0,148,-31,148,-186v-122,0,-245,0,-245,97v0,58,44,89,97,89xm157,-444r0,80r-74,0r0,-124v57,-23,118,-40,181,-40v133,0,204,49,204,186v0,45,-6,186,-6,279r74,0r0,63r-148,0r0,-21v0,-30,6,-71,10,-91r-2,0v-31,83,-82,124,-173,124v-59,0,-160,-22,-160,-148v0,-144,154,-158,327,-158r0,-37v0,-97,-37,-134,-118,-134v-29,0,-78,5,-115,21",w:574},b:{d:"169,-276r-4,196v46,16,71,24,110,24v136,0,190,-109,190,-221v0,-127,-64,-183,-144,-183v-73,0,-149,44,-152,184xm83,-29r4,-677r-87,0r0,-63r170,0r-2,271v0,23,-6,74,-10,96r2,0v21,-72,92,-126,183,-126v143,0,208,112,208,249v0,123,-63,291,-278,291v-86,0,-116,-16,-190,-41",w:593},c:{d:"469,-85r-4,72v-40,12,-92,25,-149,25v-204,0,-269,-135,-269,-270v0,-197,143,-270,258,-270v57,0,114,7,167,26r0,135r-74,0r0,-81v-22,-8,-63,-12,-86,-12v-149,0,-179,118,-179,202v0,28,4,202,196,202v51,0,92,-14,140,-29",w:519},d:{d:"435,-273r0,-164v-19,-7,-38,-23,-101,-23v-122,0,-194,79,-194,224v0,96,45,180,145,180v125,0,150,-116,150,-217xm519,-769r-4,706r77,0r0,63r-159,0v0,-42,5,-79,10,-104r-2,-2v-18,52,-70,118,-173,118v-118,0,-214,-83,-214,-249v0,-170,95,-291,274,-291v30,0,82,6,107,23r2,-201r-103,0r0,-63r185,0",w:630},e:{d:"133,-314r290,0v0,-81,-51,-151,-137,-151v-88,0,-148,66,-153,151xm509,-251r-376,0v3,106,49,195,196,195v56,0,112,-17,155,-39r-3,71v-38,19,-118,36,-170,36v-163,0,-264,-89,-264,-269v0,-152,82,-271,239,-271v204,0,223,185,223,277"},f:{d:"436,-765r-3,68v-16,-7,-55,-12,-84,-12v-122,0,-135,65,-135,151r0,42r133,0r-1,63r-132,0r-2,390r84,0r0,63r-236,0r0,-63r70,0r2,-390r-85,0r0,-63r85,0r0,-50v0,-151,78,-211,206,-211v18,0,80,5,98,12",w:370},g:{d:"564,-516r0,63r-46,0v-14,0,-55,-4,-69,-5v41,40,49,84,49,124v0,115,-97,184,-218,184v-21,0,-93,12,-93,49v0,26,24,33,89,43r138,23v80,13,139,42,139,125v0,119,-124,173,-253,173v-124,0,-246,-40,-246,-141v0,-78,63,-112,130,-127r0,-2v-41,-9,-79,-32,-79,-80v0,-53,52,-67,94,-78r0,-2v-35,-8,-130,-43,-130,-174v0,-107,88,-187,214,-187v28,0,66,6,89,12r192,0xm383,32r-138,-20v-10,0,-113,29,-113,97v0,80,121,91,172,91v64,0,167,-19,167,-102v0,-46,-42,-59,-88,-66xm287,-465v-81,0,-140,49,-140,125v0,72,61,127,133,127v88,0,144,-58,144,-130v0,-50,-38,-122,-137,-122"},h:{d:"120,-63r4,-643r-100,0r0,-63r182,0r-1,271v0,23,-6,74,-10,96r2,0v22,-78,105,-126,183,-126v142,0,177,96,177,194v0,88,-4,191,-4,271r76,0r0,63r-224,0r0,-63r66,0v0,-80,4,-164,4,-247v0,-50,-2,-150,-117,-150v-73,0,-153,44,-153,184r-3,213r76,0r0,63r-232,0r0,-63r74,0",w:667},i:{d:"120,-63r4,-390r-94,0r0,-63r176,0r-4,453r82,0r0,63r-246,0r0,-63r82,0xm93,-715v0,-34,28,-62,62,-62v34,0,62,28,62,62v0,34,-28,62,-62,62v-34,0,-62,-28,-62,-62",w:314},j:{d:"219,-516r-4,387v-2,172,-31,243,-78,297v-47,55,-111,81,-180,95r-12,-66v59,-16,101,-41,135,-82v36,-43,51,-112,53,-243r4,-325r-95,0r0,-63r177,0xm106,-715v0,-34,28,-62,62,-62v34,0,62,28,62,62v0,34,-28,62,-62,62v-34,0,-62,-28,-62,-62",w:314},k:{d:"120,-63r4,-643r-100,0r0,-63r182,0r-2,480r197,-162r0,-2r-72,0r0,-63r224,0r0,63r-53,0r-214,174r233,216r56,0r0,63r-224,0r0,-63r62,0r0,-2r-209,-199r-2,201r68,0r0,63r-224,0r0,-63r74,0",w:593},l:{d:"120,-63r4,-643r-100,0r0,-63r182,0r-4,706r82,0r0,63r-238,0r0,-63r74,0",w:314},m:{d:"54,0r0,-63r66,0r4,-390r-83,0r0,-63r165,0v0,20,-1,48,-3,62r-8,52r2,0v22,-78,105,-126,183,-126v94,0,143,54,156,121r2,0v10,-22,42,-121,175,-121v142,0,177,96,177,194v0,88,-4,191,-4,271r76,0r0,63r-224,0r0,-63r66,0v1,-84,4,-167,4,-250v0,-75,-16,-147,-112,-147v-67,0,-147,44,-148,184r-2,213r74,0r0,63r-225,0r0,-63r66,0v1,-84,4,-167,4,-250v0,-75,-16,-147,-112,-147v-67,0,-147,44,-148,184r-2,213r75,0r0,63r-224,0",w:1000},n:{d:"405,0r0,-63r66,0v0,-80,4,-164,4,-247v0,-50,-2,-150,-117,-150v-73,0,-153,44,-153,184r-2,213r75,0r0,63r-224,0r0,-63r66,0r4,-390r-83,0r0,-63r165,0v0,20,-1,48,-3,62r-8,52r2,0v22,-78,105,-126,183,-126v142,0,177,96,177,194v0,88,-4,191,-4,271r76,0r0,63r-224,0",w:667},o:{d:"47,-244v0,-164,93,-284,250,-284v157,0,250,108,250,256v0,164,-93,284,-250,284v-157,0,-250,-108,-250,-256xm133,-258v0,112,54,202,164,202v110,0,164,-90,164,-202v0,-112,-54,-202,-164,-202v-110,0,-164,90,-164,202",w:594},p:{d:"115,188r4,-641r-89,0r0,-63r170,0r0,18v0,23,-6,74,-10,96r2,0v21,-72,92,-126,183,-126v143,0,208,112,208,249v0,123,-63,291,-278,291v-36,0,-77,-8,-106,-18r-2,194r86,0r0,63r-242,0r0,-63r74,0xm201,-276r-4,196v46,16,71,24,110,24v136,0,190,-109,190,-221v0,-127,-64,-183,-144,-183v-73,0,-149,44,-152,184",w:630},q:{d:"435,-285r0,-152v-19,-7,-38,-23,-101,-23v-122,0,-194,79,-194,224v0,96,45,180,145,180v128,0,150,-128,150,-229xm356,251r0,-63r75,0r2,-188v0,-44,5,-79,10,-104r-2,-2v-21,76,-98,118,-173,118v-92,0,-214,-54,-214,-249v0,-176,98,-291,277,-291v62,0,108,13,155,28r31,0r-4,688r79,0r0,63r-236,0",w:630},r:{d:"120,-63r4,-390r-88,0r0,-63r170,0r0,28v0,30,-6,91,-11,133r3,0v20,-76,47,-170,175,-170v7,0,48,4,52,8r-8,74v-14,-5,-36,-8,-56,-8v-106,0,-153,104,-155,195r-4,193r87,0r0,63r-242,0r0,-63r73,0",w:426},s:{d:"419,-497r4,124r-74,0r-4,-73v-19,-16,-67,-19,-91,-19v-52,0,-119,17,-119,79v0,56,50,73,126,86v131,22,186,62,186,147v0,92,-62,165,-211,165v-56,0,-145,-14,-177,-31r-4,-132r74,0r4,77v31,15,83,23,117,23v54,0,119,-23,119,-86v0,-51,-53,-69,-109,-81v-138,-30,-207,-54,-207,-155v0,-83,55,-155,203,-155v43,0,123,14,163,31",w:500},t:{d:"38,-453r0,-63r83,0r4,-126r82,-5r-4,131r162,0r0,63r-163,0v-2,86,-4,173,-4,259v0,74,0,138,79,138v42,0,80,-12,102,-21r-3,65v-26,13,-74,24,-116,24v-144,0,-144,-103,-144,-169v0,-63,3,-221,4,-296r-82,0",w:389},u:{d:"31,-453r0,-63r165,0v0,94,-4,187,-4,305v0,75,14,155,114,155v150,0,152,-163,152,-237r0,-160r-81,0r0,-63r165,0r-4,453r72,0r0,63r-153,0v0,-20,1,-48,3,-62r8,-52r-2,0v-22,61,-86,126,-174,126v-148,0,-182,-94,-182,-211v0,-94,3,-174,4,-254r-83,0",w:648},v:{d:"10,-453r0,-63r212,0r0,63r-62,0r119,331v5,14,8,29,11,44r2,0v3,-15,6,-30,11,-44r122,-331r-67,0r0,-63r206,0r0,63r-57,0r-178,453r-82,0r-179,-453r-58,0",w:574},w:{d:"17,-453r0,-63r212,0r0,63r-62,0r111,321v6,18,12,42,14,54r2,0v2,-12,9,-36,16,-54r95,-244r-29,-77r-57,0r0,-63r212,0r0,63r-69,0r109,321v6,18,12,42,14,54r2,0v2,-12,8,-36,14,-54r115,-321r-69,0r0,-63r206,0r0,63r-59,0r-173,453r-86,0r-81,-237v-6,-18,-12,-42,-14,-54r-2,0v-2,12,-9,36,-16,54r-94,237r-82,0r-171,-453r-58,0",w:870},x:{d:"31,-453r0,-63r224,0r0,63r-66,0r0,2v6,3,11,9,16,15r100,126r101,-126v5,-6,10,-12,16,-15r0,-2r-72,0r0,-63r206,0r0,63r-59,0r-154,184r164,206r62,0r0,63r-224,0r0,-63r69,0r0,-2v-6,-3,-11,-9,-16,-15r-110,-138r-109,138v-5,6,-10,12,-16,15r0,2r67,0r0,63r-206,0r0,-63r59,0r167,-200r-154,-190r-65,0",w:593},y:{d:"10,-453r0,-63r218,0r0,63r-65,0r123,321v6,18,12,42,14,54r2,0v2,-12,8,-36,14,-54r115,-321r-73,0r0,-63r206,0r0,63r-57,0r-158,435v-73,203,-132,281,-262,281v-25,0,-46,-4,-61,-9r0,-68v12,4,38,9,58,9v59,0,120,-36,159,-130r17,-42r-189,-476r-61,0",w:574},z:{d:"486,-150r-8,150r-427,0r0,-60r287,-344v14,-17,32,-33,48,-49r-244,0r-4,83r-74,0r4,-146r416,0r0,57r-297,357v-12,14,-26,26,-39,39r256,0r8,-87r74,0",w:537},"{":{d:"279,-769r0,63v-74,0,-90,17,-90,116v0,47,-2,144,-2,191v0,76,-12,119,-70,139r0,2v58,20,70,63,70,139v0,47,-2,144,-2,191v0,99,20,116,94,116r0,63r-56,0v-63,0,-120,-22,-120,-151v0,-62,2,-151,2,-213v0,-69,-7,-112,-50,-112r-20,0r0,-68r20,0v43,0,50,-43,50,-112v0,-62,2,-151,2,-213v0,-129,53,-151,116,-151r56,0",w:314},"|":{d:"77,250r0,-1000r68,0r0,1000r-68,0",w:222},"}":{d:"35,251r0,-63v74,0,90,-17,90,-116v0,-47,2,-144,2,-191v0,-76,12,-119,70,-139r0,-2v-58,-20,-70,-63,-70,-139v0,-47,2,-144,2,-191v0,-99,-20,-116,-94,-116r0,-63r56,0v63,0,120,22,120,151v0,62,-2,151,-2,213v0,69,7,112,50,112r20,0r0,68r-20,0v-43,0,-50,43,-50,112v0,62,-2,151,-2,213v0,129,-53,151,-116,151r-56,0",w:314},"~":{d:"105,-183r-36,-50v22,-42,58,-88,124,-88v39,0,78,17,115,34v37,17,71,34,100,34v39,0,64,-35,87,-70r36,50v-30,42,-63,88,-126,88v-34,0,-74,-17,-113,-34v-38,-17,-74,-34,-102,-34v-41,0,-69,35,-85,70",w:600},"\u00a1":{d:"189,-290r10,533r-92,0r10,-533r72,0xm219,-476v0,34,-28,62,-62,62v-34,0,-62,-28,-62,-62v0,-34,28,-62,62,-62v34,0,62,28,62,62",w:314},"'":{d:"109,-527r-12,-122v-2,-22,-4,-44,-4,-76v0,-30,10,-52,46,-52v36,0,46,22,46,52v0,32,-2,54,-4,76r-12,122v-1,24,-5,44,-30,44v-25,0,-28,-20,-30,-44",w:278},"\u00b7":{d:"77,-287v0,-34,28,-62,62,-62v34,0,62,28,62,62v0,34,-28,62,-62,62v-34,0,-62,-28,-62,-62",w:278},"\u00bf":{d:"399,164r6,67v-50,17,-103,20,-121,20v-172,0,-210,-112,-210,-178v0,-88,60,-142,110,-178r36,-26v53,-37,79,-55,79,-89v0,-8,-6,-29,-16,-40r-12,-14r67,-36v25,25,43,52,43,92v0,58,-29,79,-83,118r-33,22v-64,39,-105,85,-105,143v0,58,37,118,143,118v33,0,65,-8,96,-19xm377,-476v0,34,-28,62,-62,62v-34,0,-62,-28,-62,-62v0,-34,28,-62,62,-62v34,0,62,28,62,62",w:500},"`":{d:"56,-802r184,158r-49,42r-187,-156",w:314},"\u00c1":{d:"265,-339r206,0r-84,-233v-8,-23,-11,-35,-14,-48r-2,0v-3,13,-6,25,-14,48xm11,0r0,-63r64,0r260,-637r92,0r236,637r67,0r0,63r-236,0r0,-63r74,0r-75,-213r-253,0r-83,213r84,0r0,63r-230,0xm288,-768r184,-158r52,44r-187,156",w:741},"\u00c0":{d:"265,-339r206,0r-84,-233v-8,-23,-11,-35,-14,-48r-2,0v-3,13,-6,25,-14,48xm11,0r0,-63r64,0r260,-637r92,0r236,637r67,0r0,63r-236,0r0,-63r74,0r-75,-213r-253,0r-83,213r84,0r0,63r-230,0xm270,-926r184,158r-49,42r-187,-156",w:741},"\u00c7":{d:"557,-517r0,-110v-24,-7,-73,-17,-131,-17v-170,0,-284,100,-284,289v0,191,98,299,288,299v43,0,83,-7,117,-15r4,-116r78,0r-4,170v-38,16,-120,28,-183,29r0,56v26,0,49,5,66,17v17,13,27,32,27,60v0,76,-79,88,-128,88v-31,0,-74,-8,-90,-15r6,-52v23,10,51,16,76,16v27,0,62,-3,62,-37v0,-30,-19,-41,-49,-41v-9,0,-18,3,-27,5r0,-99v-208,-13,-335,-129,-335,-355v0,-196,119,-367,381,-367v74,0,156,17,204,35r0,160r-78,0",w:685},"\u00c9":{d:"119,-63r4,-574r-80,0r0,-63r473,0r0,162r-74,0r0,-99r-233,0r-2,246r220,0r0,63r-220,0r-2,265r243,0r6,-109r74,0r-6,172r-479,0r0,-63r76,0xm204,-768r184,-158r52,44r-187,156",w:574},"\u00c8":{d:"119,-63r4,-574r-80,0r0,-63r473,0r0,162r-74,0r0,-99r-233,0r-2,246r220,0r0,63r-220,0r-2,265r243,0r6,-109r74,0r-6,172r-479,0r0,-63r76,0xm186,-926r184,158r-49,42r-187,-156",w:574},"\u00cd":{d:"122,-63r4,-574r-80,0r0,-63r242,0r0,63r-76,0r-4,574r80,0r0,63r-242,0r0,-63r76,0xm84,-768r184,-158r52,44r-187,156",w:334},"\u00d1":{d:"119,-63r4,-574r-93,0r0,-63r167,0r381,512v12,16,23,35,33,52r2,0r4,-501r-87,0r0,-63r236,0r0,63r-75,0r-4,637r-71,0r-396,-526v-10,-14,-19,-29,-27,-44r-2,0r-4,507r88,0r0,63r-232,0r0,-63r76,0xm287,-771r-56,-30v27,-53,54,-80,111,-80v36,0,55,10,83,26v16,9,43,23,55,23v27,0,46,-24,61,-44r48,34v-31,39,-54,73,-107,73v-39,0,-58,-11,-89,-30v-15,-9,-32,-19,-47,-19v-28,0,-45,19,-59,47",w:796},"\u00d3":{d:"50,-338v0,-215,116,-374,330,-374v220,0,330,159,330,350v0,215,-116,374,-330,374v-220,0,-330,-159,-330,-350xm142,-350v0,153,69,294,238,294v169,0,238,-141,238,-294v0,-153,-69,-294,-238,-294v-169,0,-238,141,-238,294xm297,-768r184,-158r52,44r-187,156",w:760},"\u00d2":{d:"50,-338v0,-215,116,-374,330,-374v220,0,330,159,330,350v0,215,-116,374,-330,374v-220,0,-330,-159,-330,-350xm142,-350v0,153,69,294,238,294v169,0,238,-141,238,-294v0,-153,-69,-294,-238,-294v-169,0,-238,141,-238,294xm279,-926r184,158r-49,42r-187,-156",w:760},"\u00da":{d:"274,-700r0,63r-75,0v-1,98,-2,195,-2,359v0,87,6,136,35,172v28,35,79,50,151,50v70,0,124,-17,156,-59v29,-38,30,-98,31,-193r2,-329r-87,0r0,-63r242,0r0,63r-77,0r-2,379v0,80,-9,138,-55,194v-40,49,-114,76,-213,76v-122,0,-189,-31,-230,-87v-33,-45,-39,-94,-39,-211v0,-114,1,-244,2,-351r-81,0r0,-63r242,0xm297,-768r184,-158r52,44r-187,156",w:759},"\u00e1":{d:"242,-51v56,0,148,-31,148,-186v-122,0,-245,0,-245,97v0,58,44,89,97,89xm157,-444r0,80r-74,0r0,-124v57,-23,118,-40,181,-40v133,0,204,49,204,186v0,45,-6,186,-6,279r74,0r0,63r-148,0r0,-21v0,-30,6,-71,10,-91r-2,0v-31,83,-82,124,-173,124v-59,0,-160,-22,-160,-148v0,-144,154,-158,327,-158r0,-37v0,-97,-37,-134,-118,-134v-29,0,-78,5,-115,21xm204,-644r184,-158r52,44r-187,156",w:574},"\u00e0":{d:"242,-51v56,0,148,-31,148,-186v-122,0,-245,0,-245,97v0,58,44,89,97,89xm157,-444r0,80r-74,0r0,-124v57,-23,118,-40,181,-40v133,0,204,49,204,186v0,45,-6,186,-6,279r74,0r0,63r-148,0r0,-21v0,-30,6,-71,10,-91r-2,0v-31,83,-82,124,-173,124v-59,0,-160,-22,-160,-148v0,-144,154,-158,327,-158r0,-37v0,-97,-37,-134,-118,-134v-29,0,-78,5,-115,21xm186,-802r184,158r-49,42r-187,-156",w:574},"\u00e7":{d:"472,-367r-74,0r0,-81v-22,-8,-63,-12,-86,-12v-149,0,-179,118,-179,202v0,28,4,202,196,202v51,0,92,-14,140,-29r-4,72v-21,14,-117,25,-148,25r0,56v26,0,49,5,66,17v17,13,27,32,27,60v0,76,-79,88,-128,88v-31,0,-74,-8,-90,-15r6,-52v23,10,51,16,76,16v27,0,62,-3,62,-37v0,-30,-19,-41,-49,-41v-9,0,-18,3,-27,5r0,-101v-160,-23,-213,-144,-213,-266v0,-197,143,-270,258,-270v57,0,114,7,167,26r0,135",w:519},"\u00e9":{d:"133,-314r290,0v0,-81,-51,-151,-137,-151v-88,0,-148,66,-153,151xm509,-251r-376,0v3,106,49,195,196,195v56,0,112,-17,155,-39r-3,71v-38,19,-118,36,-170,36v-163,0,-264,-89,-264,-269v0,-152,82,-271,239,-271v204,0,223,185,223,277xm195,-644r184,-158r52,44r-187,156"},"\u00e8":{d:"133,-314r290,0v0,-81,-51,-151,-137,-151v-88,0,-148,66,-153,151xm509,-251r-376,0v3,106,49,195,196,195v56,0,112,-17,155,-39r-3,71v-38,19,-118,36,-170,36v-163,0,-264,-89,-264,-269v0,-152,82,-271,239,-271v204,0,223,185,223,277xm177,-802r184,158r-49,42r-187,-156"},"\u00ed":{d:"120,-63r4,-390r-94,0r0,-63r176,0r-4,453r82,0r0,63r-246,0r0,-63r82,0xm74,-644r184,-158r52,44r-187,156",w:314},"\u00f1":{d:"405,0r0,-63r66,0v0,-80,4,-164,4,-247v0,-50,-2,-150,-117,-150v-73,0,-153,44,-153,184r-2,213r75,0r0,63r-224,0r0,-63r66,0r4,-390r-83,0r0,-63r165,0v0,20,-1,48,-3,62r-8,52r2,0v22,-78,105,-126,183,-126v142,0,177,96,177,194v0,88,-4,191,-4,271r76,0r0,63r-224,0xm211,-647r-56,-30v27,-53,54,-80,111,-80v36,0,55,10,83,26v16,9,43,23,55,23v27,0,46,-24,61,-44r48,34v-31,39,-54,73,-107,73v-39,0,-58,-11,-89,-30v-15,-9,-32,-19,-47,-19v-28,0,-45,19,-59,47",w:667},"\u00f3":{d:"47,-244v0,-164,93,-284,250,-284v157,0,250,108,250,256v0,164,-93,284,-250,284v-157,0,-250,-108,-250,-256xm133,-258v0,112,54,202,164,202v110,0,164,-90,164,-202v0,-112,-54,-202,-164,-202v-110,0,-164,90,-164,202xm214,-644r184,-158r52,44r-187,156",w:594},"\u00f2":{d:"47,-244v0,-164,93,-284,250,-284v157,0,250,108,250,256v0,164,-93,284,-250,284v-157,0,-250,-108,-250,-256xm133,-258v0,112,54,202,164,202v110,0,164,-90,164,-202v0,-112,-54,-202,-164,-202v-110,0,-164,90,-164,202xm196,-802r184,158r-49,42r-187,-156",w:594},"\u00fa":{d:"31,-453r0,-63r165,0v0,94,-4,187,-4,305v0,75,14,155,114,155v150,0,152,-163,152,-237r0,-160r-81,0r0,-63r165,0r-4,453r72,0r0,63r-153,0v0,-20,1,-48,3,-62r8,-52r-2,0v-22,61,-86,126,-174,126v-148,0,-182,-94,-182,-211v0,-94,3,-174,4,-254r-83,0xm241,-644r184,-158r52,44r-187,156",w:648},"\u00a0":{w:278}}});Cufon.registerFont({w:296,face:{"font-family":"Caecilia LT Std","font-weight":700,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 8 0 0 0 0 0 0 0",ascent:"769",descent:"-231","x-height":"12",bbox:"-73 -938 1103 273","underline-thickness":"50","underline-position":"-100",stemh:"82",stemv:"100","unicode-range":"U+0020-U+00FA"},glyphs:{" ":{},"!":{d:"201,-231r-106,0r-12,-538r130,0xm71,-62v0,-43,34,-77,77,-77v43,0,77,34,77,77v0,43,-34,77,-77,77v-43,0,-77,-34,-77,-77"},'"':{d:"299,-477r-10,-125v-6,-69,-10,-98,-10,-123v0,-31,25,-56,56,-56v31,0,56,25,56,56v0,25,-4,54,-10,123r-10,125v-2,28,-21,36,-36,36v-15,0,-34,-8,-36,-36xm110,-477r-10,-125v-6,-69,-10,-98,-10,-123v0,-31,25,-56,56,-56v31,0,56,25,56,56v0,25,-4,54,-10,123r-10,125v-2,28,-21,36,-36,36v-15,0,-34,-8,-36,-36",w:481},"#":{d:"352,-280r19,-140r-131,0r-19,140r131,0xm312,0r30,-210r-131,0r-30,210r-70,0r30,-210r-91,0r0,-70r101,0r19,-140r-91,0r0,-70r101,0r30,-210r70,0r-30,210r131,0r30,-210r70,0r-30,210r91,0r0,70r-101,0r-19,140r91,0r0,70r-101,0r-30,210r-70,0",w:592},"$":{d:"223,-428r33,9r2,-208v-75,9,-114,54,-117,107v0,36,18,75,82,92xm361,-281r-28,-8r-4,216v81,-9,122,-49,122,-112v0,-61,-40,-82,-90,-96xm31,-187r100,0r0,99v26,7,72,15,123,15r2,-236r-72,-23v-93,-25,-155,-80,-155,-171v0,-140,116,-207,229,-212r2,-129r76,0r-2,129v75,2,143,20,185,33r0,155r-94,0r0,-84v-20,-7,-55,-17,-91,-16r-2,229r60,17v106,29,171,68,171,188v0,124,-94,196,-234,208r-2,122r-76,0r2,-122v-88,0,-180,-13,-222,-30r0,-172",w:592},"%":{d:"626,-241v-53,0,-82,37,-81,93v1,56,27,93,81,93v56,0,81,-38,81,-93v0,-56,-22,-93,-81,-93xm631,-311v90,0,158,53,158,162v0,98,-64,164,-163,164v-97,0,-163,-62,-163,-162v0,-90,64,-164,168,-164xm207,-645v-53,0,-82,37,-81,93v1,56,27,93,81,93v56,0,81,-38,81,-93v0,-56,-22,-93,-81,-93xm212,-715v90,0,158,53,158,162v0,98,-64,164,-163,164v-97,0,-163,-62,-163,-162v0,-90,64,-164,168,-164xm148,18r461,-775r65,39r-461,775",w:833},"&":{d:"716,-428r0,76r-64,0v0,74,-33,165,-72,210v27,31,62,60,103,60v12,0,24,-1,33,-3r0,82v-13,2,-28,3,-46,3v-47,0,-86,-7,-124,-46r-25,-26v-48,49,-105,84,-223,84v-154,0,-239,-103,-239,-199v0,-84,50,-140,109,-181r36,-25r-29,-32v-38,-42,-60,-77,-60,-130v0,-70,55,-157,195,-157v115,0,165,72,165,142v0,76,-48,118,-99,155r-37,28r181,185v27,-35,45,-109,44,-150r-68,0r0,-76r220,0xm281,-444r21,-14v39,-25,79,-55,79,-103v0,-42,-27,-75,-81,-75v-55,0,-91,36,-91,75v0,38,24,68,55,99xm459,-132r-197,-202r-24,16v-41,27,-73,60,-73,114v0,72,59,128,152,128v75,0,106,-23,142,-56",w:759},"(":{d:"307,228r-78,45r-14,-18v-95,-126,-167,-329,-167,-514v0,-202,80,-386,172,-511r16,-21r76,45r-14,21v-78,116,-132,294,-132,466v0,177,41,330,127,465"},")":{d:"-11,-746r78,-45r14,18v95,126,167,329,167,514v0,202,-80,386,-172,511r-16,21r-76,-45r14,-21v78,-116,132,-294,132,-466v0,-177,-41,-330,-127,-465"},"*":{d:"140,-458r16,-122r-97,73r-37,-62r115,-46r-115,-42r37,-67r97,74r-16,-119r78,0r-19,119r94,-74r37,67r-111,42r111,46r-37,62r-94,-73r19,122r-78,0",w:352},"+":{d:"259,0r0,-212r-212,0r0,-82r212,0r0,-212r82,0r0,212r212,0r0,82r-212,0r0,212r-82,0",w:600},",":{d:"96,201r-51,-50r17,-17v29,-29,51,-57,51,-91v0,-55,-52,-75,-52,-119v0,-26,24,-63,72,-63v60,0,92,60,92,115v0,56,-26,135,-91,192"},"-":{d:"66,-234r0,-100r275,0r0,100r-275,0",w:407},".":{d:"71,-62v0,-43,34,-77,77,-77v43,0,77,34,77,77v0,43,-34,77,-77,77v-43,0,-77,-34,-77,-77"},"/":{d:"-2,53r300,-834r74,28r-300,834",w:370},"0":{d:"160,-338v0,147,33,265,133,265v104,0,139,-128,139,-278v0,-183,-40,-276,-132,-276v-100,0,-140,126,-140,289xm42,-336v0,-184,66,-379,260,-379v201,0,248,202,248,350v0,204,-67,380,-263,380v-172,0,-245,-129,-245,-351",w:592},"1":{d:"134,0r0,-82r136,0r4,-513v-14,13,-27,24,-41,33r-127,84r-46,-76r238,-146r88,0r-4,618r146,0r0,82r-394,0",w:592},"2":{d:"47,0r0,-82r27,-21v98,-78,331,-261,331,-410v0,-63,-33,-108,-116,-108v-100,0,-127,90,-127,126r-112,0v0,-73,52,-220,243,-220v125,0,224,69,224,200v0,165,-193,327,-311,423r0,2v19,-2,38,-4,76,-4r260,0r0,94r-495,0",w:592},"3":{d:"201,-316r0,-82r13,0v77,0,178,-32,178,-135v0,-58,-41,-94,-105,-94v-98,0,-121,74,-121,111r-112,0v0,-60,50,-199,241,-199v146,0,215,77,215,174v0,100,-70,153,-147,170r0,2v98,7,175,66,175,170v0,121,-84,214,-282,214v-108,0,-166,-25,-198,-39r0,-107v43,23,104,52,192,52v89,0,170,-29,170,-121v0,-100,-105,-116,-179,-116r-40,0",w:592},"4":{d:"25,-196r0,-88r292,-416r136,0r-4,416r132,0r0,88r-132,0r-2,114r83,0r0,82r-262,0r0,-82r74,0r2,-114r-319,0xm344,-284r2,-307r-2,-2r-210,311v17,-1,34,-2,51,-2r159,0",w:592},"5":{d:"87,-700r405,0r0,88r-293,0r-4,167r17,0v117,0,311,36,311,224v0,137,-109,236,-273,236v-73,0,-134,-12,-181,-30r0,-94v22,7,74,30,164,30v112,0,172,-49,172,-136v0,-126,-148,-142,-304,-142r-18,0",w:592},"6":{d:"526,-696r-8,88v-18,-6,-58,-19,-113,-19v-159,0,-222,96,-243,260r2,2v28,-32,77,-76,163,-76v128,0,215,81,215,211v0,153,-96,245,-240,245v-192,0,-252,-173,-252,-325v0,-207,88,-405,355,-405v39,0,81,7,106,14xm173,-298r-11,13v0,121,48,206,143,206v82,0,125,-68,125,-143v0,-64,-37,-131,-130,-131v-72,0,-102,34,-127,55",w:592},"7":{d:"63,-606r0,-94r466,0r0,72r-219,438v-39,76,-75,140,-106,190r-124,0v29,-39,69,-107,105,-177r142,-276v27,-53,66,-123,87,-153r-351,0",w:592},"8":{d:"261,-429r41,19r37,-18v49,-24,81,-58,81,-108v0,-64,-53,-91,-120,-91v-79,0,-121,41,-121,95v0,56,40,82,82,103xm357,-281r-65,-33r-44,23v-48,25,-89,60,-89,114v0,58,42,104,140,104v98,0,140,-48,140,-109v0,-55,-40,-78,-82,-99xm166,-338r43,-19r0,-2v-67,-21,-142,-69,-142,-172v0,-101,78,-184,236,-184v143,0,229,60,229,171v0,91,-67,147,-145,178r0,2v70,21,164,74,164,183v0,142,-106,196,-264,196v-121,0,-246,-42,-246,-182v0,-98,73,-148,125,-171",w:592},"9":{d:"66,-4r8,-88v18,6,58,19,113,19v159,0,222,-96,243,-260r-2,-2v-28,32,-77,76,-163,76v-128,0,-215,-81,-215,-211v0,-153,96,-245,240,-245v192,0,252,173,252,325v0,207,-88,405,-355,405v-39,0,-81,-7,-106,-14xm419,-402r11,-13v0,-121,-48,-206,-143,-206v-82,0,-125,68,-125,143v0,64,37,131,130,131v72,0,102,-34,127,-55",w:592},":":{d:"71,-455v0,-43,34,-77,77,-77v43,0,77,34,77,77v0,43,-34,77,-77,77v-43,0,-77,-34,-77,-77xm71,-62v0,-43,34,-77,77,-77v43,0,77,34,77,77v0,43,-34,77,-77,77v-43,0,-77,-34,-77,-77"},";":{d:"96,201r-51,-50r17,-17v29,-29,51,-57,51,-91v0,-55,-52,-75,-52,-119v0,-26,24,-63,72,-63v60,0,92,60,92,115v0,56,-26,135,-91,192xm69,-455v0,-43,34,-77,77,-77v43,0,77,34,77,77v0,43,-34,77,-77,77v-43,0,-77,-34,-77,-77"},"<":{d:"47,-215r0,-76r506,-226r0,82r-406,182r406,182r0,82",w:600},"=":{d:"47,-308r0,-82r506,0r0,82r-506,0xm47,-116r0,-82r506,0r0,82r-506,0",w:600},">":{d:"553,-291r0,76r-506,226r0,-82r406,-182r-406,-182r0,-82",w:600},"?":{d:"66,-672r-6,-88v12,-4,65,-21,140,-21v153,0,233,77,233,183v0,68,-35,130,-106,176r-92,59v-32,21,-43,33,-43,61v0,18,11,36,20,46r6,6r-99,37r-8,-10v-13,-18,-31,-48,-31,-85v0,-69,66,-109,125,-143v76,-43,104,-80,104,-139v0,-64,-61,-103,-133,-103v-52,0,-95,14,-110,21xm81,-62v0,-43,34,-77,77,-77v43,0,77,34,77,77v0,43,-34,77,-77,77v-43,0,-77,-34,-77,-77",w:481},"@":{d:"488,-389v0,-66,-30,-91,-79,-91v-81,0,-138,96,-138,178v0,59,29,91,75,91v84,0,142,-107,142,-178xm607,-537r-68,244v-11,39,-16,58,-16,67v0,13,7,21,33,21v51,0,118,-88,118,-197v0,-137,-121,-228,-258,-228v-171,0,-290,132,-290,283v0,170,132,277,282,277v106,0,188,-30,241,-82r82,0v-51,95,-164,164,-323,164v-206,0,-370,-135,-370,-363v0,-203,153,-361,378,-361v196,0,346,121,346,298v0,195,-154,279,-247,279v-49,0,-69,-25,-70,-58r-2,0v-26,30,-68,58,-120,58v-75,0,-134,-62,-134,-158v0,-139,103,-263,216,-263v48,0,87,25,113,76r18,-57r71,0",w:800},A:{d:"466,-344r-69,-198v-11,-31,-15,-49,-18,-64r-2,0v-3,14,-7,33,-19,64r-77,198r185,0xm12,0r0,-82r60,0r254,-618r124,0r235,618r62,0r0,82r-256,0r0,-82r64,0r-60,-174r-246,0r-65,174r72,0r0,82r-244,0",w:759},B:{d:"222,-82r92,0v81,0,147,-34,147,-118v0,-78,-68,-114,-141,-114r-96,0xm39,0r0,-82r70,0r4,-536r-74,0r0,-82r279,0v73,0,119,8,162,40v33,24,63,73,63,132v0,81,-50,153,-139,160r0,2v94,-1,181,63,181,170v0,119,-84,196,-253,196r-293,0xm224,-402r76,0v76,0,125,-40,125,-112v0,-48,-19,-75,-47,-91v-20,-11,-41,-13,-79,-13r-73,0",w:630},C:{d:"638,-495r-100,0r0,-112v-26,-7,-66,-17,-119,-17v-167,0,-254,102,-254,277v0,159,96,271,239,271v48,0,99,-5,125,-10r4,-126r100,0r-4,191v-45,15,-135,33,-218,33v-251,0,-370,-156,-370,-355v0,-218,146,-369,379,-369v88,0,171,19,218,38r0,179",w:685},D:{d:"39,0r0,-82r71,0r4,-536r-75,0r0,-82r332,0v225,0,354,131,354,334v0,207,-131,366,-355,366r-331,0xm222,-82r112,0v171,0,267,-104,267,-279v0,-157,-90,-257,-262,-257r-113,0",w:778},E:{d:"46,0r0,-82r70,0r4,-536r-81,0r0,-82r492,0r4,184r-93,0r-6,-102r-203,0r-2,216r200,0r0,88r-200,0r-2,232r213,0r8,-114r94,0r-8,196r-490,0",w:593},F:{d:"46,0r0,-82r70,0r4,-536r-81,0r0,-82r492,0r4,184r-93,0r-6,-102r-203,0r-2,216r218,0r0,88r-218,0r-2,232r86,0r0,82r-269,0",w:574},G:{d:"638,-495r-100,0r0,-112v-26,-7,-66,-17,-119,-17v-167,0,-254,102,-254,277v0,159,96,271,239,271v34,0,80,-4,119,-14r2,-154r-80,0r0,-82r258,0r0,82r-72,0r-2,223v-47,17,-139,33,-214,33v-255,0,-374,-156,-374,-355v0,-218,146,-369,379,-369v82,0,171,19,218,38r0,179",w:722},H:{d:"479,0r0,-82r70,0r2,-225r-325,0r-2,225r75,0r0,82r-258,0r0,-82r70,0r4,-536r-74,0r0,-82r258,0r0,82r-71,0r-2,223r325,0r2,-223r-74,0r0,-82r258,0r0,82r-71,0r-4,536r75,0r0,82r-258,0",w:778},I:{d:"47,0r0,-82r71,0r4,-536r-75,0r0,-82r258,0r0,82r-71,0r-4,536r75,0r0,82r-258,0",w:352},J:{d:"-10,190r-36,-81r35,-20v121,-69,130,-177,131,-279r4,-428r-77,0r0,-82r258,0r0,82r-69,0r-4,421v-2,207,-51,289,-209,370",w:333},K:{d:"39,0r0,-82r69,0r4,-536r-73,0r0,-82r257,0r0,82r-71,0r-2,245r277,-245r-77,0r0,-82r262,0r0,82r-56,0r-288,252r296,284r58,0r0,82r-280,0r0,-82r73,0r-265,-254r-2,254r75,0r0,82r-257,0",w:704},L:{d:"39,0r0,-82r71,0r4,-536r-75,0r0,-82r258,0r0,82r-71,0r-4,536r208,0r10,-118r94,0r-10,200r-485,0",w:593},M:{d:"34,0r0,-82r71,0r4,-536r-79,0r0,-82r230,0r202,521v7,18,11,38,16,57r2,0v5,-19,9,-39,16,-57r200,-521r218,0r0,82r-80,0r4,536r76,0r0,82r-255,0r0,-82r69,0r4,-473r-3,-2v-9,31,-15,63,-27,93r-179,464r-112,0r-175,-446v-14,-35,-21,-71,-31,-107r-2,0r-4,471r79,0r0,82r-244,0",w:944},N:{d:"43,0r0,-82r68,0r4,-536r-88,0r0,-82r184,0r324,423v21,28,51,74,70,105r2,0r-4,-446r-78,0r0,-82r244,0r0,82r-68,0r-4,618r-91,0r-350,-454v-20,-26,-39,-54,-49,-74r-2,2r4,444r77,0r0,82r-243,0",w:796},O:{d:"41,-338v0,-219,137,-374,353,-374v202,0,324,134,324,350v0,185,-108,374,-344,374v-204,0,-333,-135,-333,-350xm165,-343v0,136,66,261,213,261v185,0,216,-179,216,-274v0,-125,-42,-262,-207,-262v-117,0,-222,80,-222,275",w:759},P:{d:"39,0r0,-82r71,0r4,-536r-75,0r0,-82r264,0v94,0,131,9,167,31v55,33,90,96,90,172v0,78,-40,152,-98,186v-43,25,-77,33,-136,33r-103,0r-2,196r86,0r0,82r-268,0xm223,-360r79,0v101,0,140,-56,140,-133v0,-41,-17,-75,-39,-95v-29,-25,-64,-30,-116,-30r-62,0",w:593},Q:{d:"41,-338v0,-219,137,-374,353,-374v202,0,324,134,324,350v0,155,-74,309,-234,359r0,2v34,3,54,9,93,29r93,47v47,24,86,27,110,27v19,0,37,-2,48,-6r0,88v-21,3,-40,6,-65,6v-56,0,-95,-8,-182,-52r-140,-71v-37,-19,-81,-47,-113,-55v-177,-21,-287,-152,-287,-350xm165,-343v0,136,66,261,213,261v185,0,216,-179,216,-274v0,-125,-42,-262,-207,-262v-117,0,-222,80,-222,275",w:759},R:{d:"39,0r0,-82r69,0r4,-536r-73,0r0,-82r311,0v144,0,212,83,212,185v0,121,-78,176,-167,185r0,2v39,3,65,36,89,76r76,128v20,33,39,42,62,42r26,0r0,82r-65,0v-59,0,-86,-6,-127,-74r-96,-163v-29,-50,-44,-61,-77,-61r-60,0r-2,216r81,0r0,82r-263,0xm223,-386r87,0v79,0,134,-42,134,-117v0,-73,-45,-115,-126,-115r-93,0",w:648},S:{d:"53,-194r112,0r0,93v21,11,71,25,127,25v89,0,148,-40,148,-115v0,-56,-34,-78,-109,-99r-124,-35v-80,-23,-152,-70,-152,-182v0,-138,117,-205,264,-205v91,0,159,19,212,34r0,155r-106,0r0,-84v-15,-6,-51,-17,-105,-17v-104,0,-147,47,-147,101v0,61,45,82,108,98r108,28v80,21,169,65,169,188v0,139,-103,221,-269,221v-51,0,-175,-13,-236,-37r0,-169",w:611},T:{d:"212,0r0,-82r72,0r4,-536r-163,0r-4,102r-100,0r4,-184r635,0r4,184r-100,0r-4,-102r-160,0r-4,536r81,0r0,82r-265,0",w:685},U:{d:"30,-618r0,-82r256,0r0,82r-71,0r-1,351v0,54,2,111,39,146v32,30,66,39,125,39v68,0,103,-8,135,-40v32,-32,39,-75,40,-142r2,-354r-82,0r0,-82r256,0r0,82r-67,0r-2,376v0,93,-30,156,-78,197v-45,38,-123,57,-205,57v-105,0,-165,-20,-210,-58v-51,-43,-65,-103,-65,-195v0,-134,1,-256,2,-377r-74,0",w:759},V:{d:"5,-618r0,-82r262,0r0,82r-71,0r167,463v7,19,11,41,16,61r2,0v5,-20,9,-42,16,-61r164,-463r-81,0r0,-82r256,0r0,82r-63,0r-240,618r-124,0r-243,-618r-61,0",w:741},W:{d:"8,-618r0,-82r262,0r0,82r-70,0r151,451v8,24,13,49,20,73r2,0v7,-24,11,-50,20,-73r124,-338r-38,-113r-68,0r0,-82r256,0r0,82r-70,0r137,442v8,26,13,55,19,82r2,0v8,-27,14,-55,23,-82r152,-442r-77,0r0,-82r250,0r0,82r-61,0r-233,618r-124,0r-120,-371r-2,0r-140,371r-124,0r-229,-618r-62,0",w:1111},X:{d:"414,0r0,-82r72,0v-8,-8,-14,-15,-20,-24r-124,-174r-132,174v-6,8,-13,16,-21,24r71,0r0,82r-244,0r0,-82r58,0r215,-269r-196,-267r-66,0r0,-82r274,0r0,82r-75,0v7,7,12,13,19,22r120,164r129,-162v8,-10,14,-16,22,-24r-76,0r0,-82r232,0r0,82r-53,0r-201,257r207,279r63,0r0,82r-274,0",w:704},Y:{d:"234,0r0,-82r70,0r4,-207r-243,-329r-61,0r0,-82r256,0r0,82r-68,0v8,8,14,15,20,24r161,219r159,-219v6,-9,13,-16,21,-24r-79,0r0,-82r244,0r0,82r-62,0r-236,329r-4,207r74,0r0,82r-256,0",w:722},Z:{d:"44,0r0,-78r396,-516v6,-8,13,-16,22,-24r-288,0r-8,101r-100,0r8,-183r524,0r0,84r-391,510v-6,8,-13,16,-21,24r310,0r8,-101r100,0r-8,183r-552,0",w:648},"[":{d:"280,169r0,82r-200,0r4,-1020r200,0r0,82r-94,0r-4,856r94,0"},"\\":{d:"298,81r-300,-834r74,-28r300,834",w:370},"]":{d:"16,-687r0,-82r200,0r-4,1020r-200,0r0,-82r94,0r4,-856r-94,0"},"^":{d:"432,-335r-132,-265r-132,265r-82,0r182,-365r64,0r182,365r-82,0",w:600},_:{d:"0,125r0,-50r500,0r0,50r-500,0",w:500},a:{d:"80,-356r0,-129v28,-13,95,-47,206,-47v154,0,203,76,203,199v0,84,-3,167,-4,251r70,0r0,82r-165,0v0,-33,3,-73,9,-108r-2,0v-22,59,-64,120,-173,120v-125,0,-166,-83,-166,-149v0,-137,139,-155,224,-159r107,-6r0,-39v0,-64,-23,-109,-115,-109v-39,0,-77,11,-94,18r0,76r-100,0xm170,-146v0,39,30,70,83,70v87,0,134,-66,134,-132r0,-21v-116,1,-217,6,-217,83",w:593},b:{d:"460,-288v0,-91,-42,-150,-127,-150v-88,0,-133,66,-135,149r-4,185v21,10,52,22,103,22v118,0,163,-98,163,-206xm4,-687r0,-82r196,0r-4,247v-1,37,-5,73,-9,110r2,0v19,-51,73,-120,178,-120v136,0,211,97,211,236v0,155,-70,308,-294,308v-91,0,-149,-20,-200,-40r4,-659r-84,0",w:611},c:{d:"370,-358r0,-77v-16,-5,-41,-9,-66,-9v-103,0,-156,77,-156,176v0,90,44,186,182,186v50,0,107,-15,133,-30r-6,97v-21,9,-77,27,-142,27v-208,0,-279,-139,-279,-269v0,-159,98,-275,280,-275v79,0,126,17,148,27r0,147r-94,0",w:500},d:{d:"594,-82r0,82r-176,0v0,-37,5,-76,10,-106r-2,0v-27,70,-84,118,-173,118v-125,0,-217,-92,-217,-247v0,-172,102,-297,279,-297v37,0,72,5,103,12r2,-167r-95,0r0,-82r203,0r-4,687r70,0xm414,-277r0,-145v-23,-14,-58,-22,-99,-22v-103,0,-161,90,-161,192v0,97,42,170,126,170v90,0,134,-74,134,-195",w:630},e:{d:"499,-116r-6,92v-36,15,-105,36,-183,36v-172,-1,-274,-107,-274,-270v0,-154,87,-274,255,-274v156,0,235,114,235,275r0,15r-372,0v1,101,75,166,178,166v65,0,122,-17,167,-40xm154,-318r254,0r0,-10v0,-43,-28,-122,-123,-122v-95,0,-127,69,-131,132",w:556},f:{d:"44,0r0,-82r63,0r2,-356r-79,0r0,-82r79,0r2,-71v4,-136,97,-190,219,-190v44,0,80,8,101,12r-4,88v-14,-6,-41,-12,-84,-12v-86,0,-118,52,-120,114r-2,59r122,0r0,82r-122,0r-2,356r80,0r0,82r-255,0",w:352},g:{d:"561,-520r-4,82r-100,-6v17,19,43,51,43,113v0,111,-99,185,-211,185r-42,0v-28,0,-57,19,-57,39v0,24,26,28,88,37r136,19v73,10,137,38,137,125v0,141,-138,189,-274,189v-141,0,-244,-53,-244,-138v0,-70,56,-114,121,-123r0,-2v-39,-8,-76,-30,-76,-77v0,-54,55,-78,99,-85r0,-2v-58,-16,-132,-59,-132,-170v0,-113,84,-198,232,-198v35,0,71,7,92,12r192,0xm151,-337v0,75,49,109,132,109v79,0,123,-44,123,-113v0,-70,-48,-109,-129,-109v-78,0,-126,46,-126,113xm352,35r-130,-20v-51,22,-83,47,-83,87v0,60,64,79,149,79v75,0,157,-21,157,-87v0,-37,-31,-50,-93,-59",w:574},h:{d:"48,0r0,-82r59,0r4,-605r-75,0r0,-82r191,0r-3,249v0,35,-6,71,-13,115r2,0v21,-67,79,-127,183,-127v122,0,181,77,181,201v0,83,-3,166,-4,249r68,0r0,82r-239,0r0,-82r59,0v1,-76,4,-153,4,-229v0,-73,-34,-127,-105,-127v-77,0,-135,61,-137,158r-4,198r70,0r0,82r-241,0",w:667},i:{d:"39,0r0,-82r68,0r2,-356r-79,0r0,-82r191,0r-2,438r70,0r0,82r-250,0xm88,-704v0,-43,34,-77,77,-77v43,0,77,34,77,77v0,43,-34,77,-77,77v-43,0,-77,-34,-77,-77",w:315},j:{d:"30,-438r0,-82r191,0r-2,423v-1,210,-93,336,-278,360r-14,-89v139,-33,179,-101,180,-315r2,-297r-79,0xm88,-704v0,-43,34,-77,77,-77v43,0,77,34,77,77v0,43,-34,77,-77,77v-43,0,-77,-34,-77,-77",w:333},k:{d:"44,0r0,-82r63,0r4,-605r-91,0r0,-82r203,0r-4,475r184,-142r0,-2r-74,0r0,-82r244,0r0,82r-52,0r-186,154r201,202r59,0r0,82r-250,0r0,-82r61,0r-187,-182r0,182r63,0r0,82r-238,0",w:611},l:{d:"44,0r0,-82r63,0r4,-605r-91,0r0,-82r203,0r-4,687r70,0r0,82r-245,0",w:315},m:{d:"48,0r0,-82r59,0r2,-356r-73,0r0,-82r185,0v0,35,-3,71,-10,115r2,0v21,-77,91,-127,178,-127v103,0,150,53,160,118r2,0v24,-76,90,-118,178,-118v120,0,179,77,179,201v0,83,-1,166,-4,249r68,0r0,82r-239,0r0,-82r59,0v3,-76,4,-153,4,-229v0,-73,-34,-127,-105,-127v-76,0,-125,61,-127,158r-2,198r66,0r0,82r-235,0r0,-82r57,0r2,-209v1,-80,-20,-147,-104,-147v-67,0,-128,61,-129,158r-2,198r70,0r0,82r-241,0",w:1000},n:{d:"48,0r0,-82r59,0r2,-356r-73,0r0,-82r185,0v0,35,-3,71,-10,115r2,0v21,-67,79,-127,183,-127v122,0,181,77,181,201v0,83,-3,166,-4,249r68,0r0,82r-239,0r0,-82r59,0v1,-76,4,-153,4,-229v0,-73,-34,-127,-105,-127v-77,0,-135,61,-137,158r-4,198r70,0r0,82r-241,0",w:667},o:{d:"151,-253v0,87,43,171,144,171v102,0,147,-85,147,-187v0,-117,-61,-169,-139,-169v-111,0,-152,93,-152,185xm33,-249v0,-170,113,-283,272,-283v192,0,255,147,255,275v0,148,-90,269,-268,269v-186,0,-259,-129,-259,-261",w:593},p:{d:"26,-438r0,-82r179,0v0,37,-5,76,-10,106r2,0v27,-70,84,-118,173,-118v126,0,218,92,218,247v0,172,-102,297,-280,297v-37,0,-72,-5,-103,-17r-2,174r83,0r0,82r-249,0r0,-82r58,0r4,-607r-73,0xm209,-243r0,145v23,14,58,22,100,22v103,0,161,-90,161,-192v0,-97,-42,-170,-126,-170v-91,0,-135,74,-135,195",w:630},q:{d:"416,-231r4,-185v-21,-10,-52,-22,-103,-22v-118,0,-163,98,-163,206v0,91,42,150,127,150v87,0,133,-66,135,-149xm351,251r0,-82r64,0r2,-167v0,-37,7,-73,10,-110r-2,0v-19,51,-73,120,-178,120v-136,0,-211,-97,-211,-236v0,-155,70,-308,294,-308v91,0,149,20,201,40r-4,661r74,0r0,82r-250,0",w:630},r:{d:"44,0r0,-82r63,0r2,-356r-79,0r0,-82r185,0v0,39,0,92,-6,144r2,2v20,-98,77,-156,152,-156v27,0,53,5,63,9r-12,99v-14,-5,-28,-8,-51,-8v-99,0,-141,94,-142,186r-2,162r76,0r0,82r-251,0",w:426},s:{d:"448,-371r-100,0r-2,-62v-16,-9,-40,-17,-85,-17v-52,0,-105,12,-105,63v0,40,34,51,66,58r127,25v59,12,126,37,126,143v0,137,-118,173,-233,173v-88,0,-156,-19,-189,-31r-2,-141r100,0r2,69v20,6,55,21,111,21v53,0,105,-20,105,-73v0,-44,-33,-58,-75,-66r-83,-15v-80,-15,-167,-45,-167,-144v0,-122,107,-164,221,-164v85,0,150,24,181,34",w:519},t:{d:"30,-438r0,-82r79,0r2,-117r113,-8r-4,125r149,0r0,82r-149,0v-1,83,-2,165,-2,243v0,95,21,119,73,119v30,0,62,-10,87,-20r-4,82v-28,14,-71,26,-115,26v-110,0,-153,-43,-153,-160v0,-67,2,-200,3,-290r-79,0",w:370},u:{d:"36,-438r0,-82r181,0v-2,103,-4,207,-4,311v0,73,34,127,102,127v74,0,133,-61,134,-158r2,-198r-68,0r0,-82r180,0r-2,438r70,0r0,82r-180,0v0,-35,3,-71,10,-115r-2,0v-21,77,-100,127,-182,127v-111,0,-176,-77,-176,-199v0,-85,1,-168,4,-251r-69,0",w:667},v:{d:"228,0r-179,-438r-52,0r0,-82r232,0r0,82r-56,0r103,281v7,21,11,42,17,63r2,0v5,-21,8,-43,15,-63r101,-281r-66,0r0,-82r232,0r0,82r-54,0r-177,438r-118,0",w:574},w:{d:"538,0r-73,-204v-7,-18,-11,-37,-16,-56r-2,0v-5,19,-9,38,-16,56r-85,204r-112,0r-174,-438r-55,0r0,-82r232,0r0,82r-59,0r96,264v9,24,15,49,22,74r2,0v8,-25,15,-50,25,-74r82,-195r-25,-69r-58,0r0,-82r232,0r0,82r-62,0r95,268v8,22,13,47,19,70r2,0v6,-23,11,-48,19,-70r98,-268r-73,0r0,-82r232,0r0,82r-53,0r-175,438r-118,0",w:889},x:{d:"350,0r0,-82r65,0v-7,-6,-13,-11,-19,-18r-93,-108r-99,108v-6,7,-12,12,-20,16r0,2r72,0r0,82r-226,0r0,-82r57,0r165,-180r-153,-176r-60,0r0,-82r250,0r0,82r-63,0v7,6,13,12,19,18r83,97r86,-97v6,-7,12,-12,20,-16r0,-2r-68,0r0,-82r220,0r0,82r-55,0r-155,164r166,192r58,0r0,82r-250,0",w:630},y:{d:"-3,-438r0,-82r238,0r0,82r-58,0r100,267v10,26,16,55,23,78r2,0v5,-23,14,-52,23,-78r92,-267r-68,0r0,-82r220,0r0,82r-52,0r-158,435v-17,47,-52,144,-82,183v-47,61,-112,83,-179,83v-28,0,-55,-5,-71,-11r0,-88v16,7,50,11,73,11v50,0,98,-21,141,-136r4,-11r-192,-466r-56,0",w:593},z:{d:"40,0r0,-82r288,-329v9,-10,21,-20,29,-27r-202,0r-8,77r-94,0r8,-159r432,0r0,84r-282,319v-11,13,-23,23,-36,35r220,0r8,-80r94,0r-8,162r-449,0",w:537},"{":{d:"304,-769r0,76r-27,0v-44,0,-57,29,-57,76r0,204v0,84,-49,136,-106,153r0,2v57,17,106,69,106,153r0,204v0,47,13,76,57,76r27,0r0,76r-63,0v-65,0,-127,-52,-127,-149r0,-207v0,-62,-43,-114,-94,-116r0,-76v51,-2,94,-54,94,-116r0,-207v0,-97,62,-149,127,-149r63,0"},"|":{d:"70,250r0,-1000r82,0r0,1000r-82,0",w:222},"}":{d:"-8,251r0,-76r27,0v44,0,57,-29,57,-76r0,-204v0,-84,49,-136,106,-153r0,-2v-57,-17,-106,-69,-106,-153r0,-204v0,-47,-13,-76,-57,-76r-27,0r0,-76r63,0v65,0,127,52,127,149r0,207v0,62,43,114,94,116r0,76v-51,2,-94,54,-94,116r0,207v0,97,-62,149,-127,149r-63,0"},"~":{d:"495,-334r36,72v-22,42,-58,85,-125,85v-37,0,-77,-18,-114,-35v-36,-18,-71,-35,-99,-35v-40,0,-65,40,-88,75r-36,-72v22,-42,58,-85,125,-85v38,0,77,17,114,35v37,17,71,35,99,35v40,0,65,-40,88,-75",w:600},"\u00a1":{d:"83,251r12,-538r106,0r12,538r-130,0xm225,-455v0,43,-34,77,-77,77v-43,0,-77,-34,-77,-77v0,-43,34,-77,77,-77v43,0,77,34,77,77"},"'":{d:"112,-477r-10,-125v-6,-69,-10,-98,-10,-123v0,-31,25,-56,56,-56v31,0,56,25,56,56v0,25,-4,54,-10,123r-10,125v-2,28,-21,36,-36,36v-15,0,-34,-8,-36,-36"},"\u00b7":{d:"77,-280v0,-39,32,-71,71,-71v39,0,71,32,71,71v0,39,-32,71,-71,71v-39,0,-71,-32,-71,-71"},"\u00bf":{d:"415,154r6,88v-12,4,-65,21,-140,21v-153,0,-233,-77,-233,-183v0,-68,35,-130,106,-176r92,-59v32,-21,43,-33,43,-61v0,-18,-11,-36,-20,-46r-6,-6r99,-37r8,10v13,18,31,48,31,85v0,69,-66,109,-125,143v-76,43,-104,80,-104,139v0,64,61,103,133,103v52,0,95,-14,110,-21xm400,-455v0,43,-34,77,-77,77v-43,0,-77,-34,-77,-77v0,-43,34,-77,77,-77v43,0,77,34,77,77",w:481},"`":{d:"169,-580r-199,-160r60,-56r202,168",w:278},"\u00c1":{d:"466,-344r-69,-198v-11,-31,-15,-49,-18,-64r-2,0v-3,14,-7,33,-19,64r-77,198r185,0xm12,0r0,-82r60,0r254,-618r124,0r235,618r62,0r0,82r-256,0r0,-82r64,0r-60,-174r-246,0r-65,174r72,0r0,82r-244,0xm350,-722r-63,-48r202,-168r60,56",w:759},"\u00c0":{d:"466,-344r-69,-198v-11,-31,-15,-49,-18,-64r-2,0v-3,14,-7,33,-19,64r-77,198r185,0xm12,0r0,-82r60,0r254,-618r124,0r235,618r62,0r0,82r-256,0r0,-82r64,0r-60,-174r-246,0r-65,174r72,0r0,82r-244,0xm410,-722r-199,-160r60,-56r202,168",w:759},"\u00c7":{d:"538,-495r0,-112v-26,-7,-66,-17,-119,-17v-167,0,-254,102,-254,277v0,159,96,271,239,271v48,0,99,-5,125,-10r4,-126r100,0r-4,191v-40,13,-115,29,-189,33r0,41r14,0v53,0,88,27,88,80v0,69,-67,99,-131,99v-44,0,-91,-9,-110,-15r6,-62v24,7,52,13,83,13v29,0,58,-10,58,-37v0,-27,-26,-36,-67,-36r-11,0r0,-83v-223,-17,-329,-167,-329,-355v0,-218,146,-369,379,-369v88,0,171,19,218,38r0,179r-100,0",w:685},"\u00c9":{d:"46,0r0,-82r70,0r4,-536r-81,0r0,-82r492,0r4,184r-93,0r-6,-102r-203,0r-2,216r200,0r0,88r-200,0r-2,232r213,0r8,-114r94,0r-8,196r-490,0xm267,-722r-63,-48r202,-168r60,56",w:593},"\u00c8":{d:"46,0r0,-82r70,0r4,-536r-81,0r0,-82r492,0r4,184r-93,0r-6,-102r-203,0r-2,216r200,0r0,88r-200,0r-2,232r213,0r8,-114r94,0r-8,196r-490,0xm327,-722r-199,-160r60,-56r202,168",w:593},"\u00cd":{d:"47,0r0,-82r71,0r4,-536r-75,0r0,-82r258,0r0,82r-71,0r-4,536r75,0r0,82r-258,0xm146,-722r-63,-48r202,-168r60,56",w:352},"\u00d1":{d:"43,0r0,-82r68,0r4,-536r-88,0r0,-82r184,0r324,423v21,28,51,74,70,105r2,0r-4,-446r-78,0r0,-82r244,0r0,82r-68,0r-4,618r-91,0r-350,-454v-20,-26,-39,-54,-49,-74r-2,2r4,444r77,0r0,82r-243,0xm276,-766r-70,-36r8,-15v13,-24,51,-80,119,-80v32,0,57,13,78,27v22,13,41,27,62,27v22,0,35,-19,47,-33r11,-13r59,42r-11,15v-28,38,-55,71,-105,71v-51,0,-110,-54,-141,-54v-25,0,-38,17,-50,37",w:796},"\u00d3":{d:"41,-338v0,-219,137,-374,353,-374v202,0,324,134,324,350v0,185,-108,374,-344,374v-204,0,-333,-135,-333,-350xm165,-343v0,136,66,261,213,261v185,0,216,-179,216,-274v0,-125,-42,-262,-207,-262v-117,0,-222,80,-222,275xm350,-722r-63,-48r202,-168r60,56",w:759},"\u00d2":{d:"41,-338v0,-219,137,-374,353,-374v202,0,324,134,324,350v0,185,-108,374,-344,374v-204,0,-333,-135,-333,-350xm165,-343v0,136,66,261,213,261v185,0,216,-179,216,-274v0,-125,-42,-262,-207,-262v-117,0,-222,80,-222,275xm410,-722r-199,-160r60,-56r202,168",w:759},"\u00da":{d:"30,-618r0,-82r256,0r0,82r-71,0r-1,351v0,54,2,111,39,146v32,30,66,39,125,39v68,0,103,-8,135,-40v32,-32,39,-75,40,-142r2,-354r-82,0r0,-82r256,0r0,82r-67,0r-2,376v0,93,-30,156,-78,197v-45,38,-123,57,-205,57v-105,0,-165,-20,-210,-58v-51,-43,-65,-103,-65,-195v0,-134,1,-256,2,-377r-74,0xm350,-722r-63,-48r202,-168r60,56",w:759},"\u00e1":{d:"80,-356r0,-129v28,-13,95,-47,206,-47v154,0,203,76,203,199v0,84,-3,167,-4,251r70,0r0,82r-165,0v0,-33,3,-73,9,-108r-2,0v-22,59,-64,120,-173,120v-125,0,-166,-83,-166,-149v0,-137,139,-155,224,-159r107,-6r0,-39v0,-64,-23,-109,-115,-109v-39,0,-77,11,-94,18r0,76r-100,0xm170,-146v0,39,30,70,83,70v87,0,134,-66,134,-132r0,-21v-116,1,-217,6,-217,83xm267,-580r-63,-48r202,-168r60,56",w:593},"\u00e0":{d:"80,-356r0,-129v28,-13,95,-47,206,-47v154,0,203,76,203,199v0,84,-3,167,-4,251r70,0r0,82r-165,0v0,-33,3,-73,9,-108r-2,0v-22,59,-64,120,-173,120v-125,0,-166,-83,-166,-149v0,-137,139,-155,224,-159r107,-6r0,-39v0,-64,-23,-109,-115,-109v-39,0,-77,11,-94,18r0,76r-100,0xm170,-146v0,39,30,70,83,70v87,0,134,-66,134,-132r0,-21v-116,1,-217,6,-217,83xm327,-580r-199,-160r60,-56r202,168",w:593},"\u00e7":{d:"370,-358r0,-77v-16,-5,-41,-9,-66,-9v-103,0,-156,77,-156,176v0,90,44,186,182,186v50,0,107,-15,133,-30r-6,97v-19,8,-67,24,-124,27r0,41r14,0v53,0,88,27,88,80v0,69,-67,99,-131,99v-44,0,-91,-9,-110,-15r6,-62v24,7,52,13,83,13v29,0,58,-10,58,-37v0,-27,-26,-36,-67,-36r-11,0r0,-86v-168,-21,-227,-147,-227,-266v0,-159,98,-275,280,-275v79,0,126,17,148,27r0,147r-94,0",w:500},"\u00e9":{d:"499,-116r-6,92v-36,15,-105,36,-183,36v-172,-1,-274,-107,-274,-270v0,-154,87,-274,255,-274v156,0,235,114,235,275r0,15r-372,0v1,101,75,166,178,166v65,0,122,-17,167,-40xm154,-318r254,0r0,-10v0,-43,-28,-122,-123,-122v-95,0,-127,69,-131,132xm248,-580r-63,-48r202,-168r60,56",w:556},"\u00e8":{d:"499,-116r-6,92v-36,15,-105,36,-183,36v-172,-1,-274,-107,-274,-270v0,-154,87,-274,255,-274v156,0,235,114,235,275r0,15r-372,0v1,101,75,166,178,166v65,0,122,-17,167,-40xm154,-318r254,0r0,-10v0,-43,-28,-122,-123,-122v-95,0,-127,69,-131,132xm308,-580r-199,-160r60,-56r202,168",w:556},"\u00ed":{d:"39,0r0,-82r68,0r2,-356r-79,0r0,-82r191,0r-2,438r70,0r0,82r-250,0xm128,-580r-63,-48r202,-168r60,56",w:315},"\u00f1":{d:"48,0r0,-82r59,0r2,-356r-73,0r0,-82r185,0v0,35,-3,71,-10,115r2,0v21,-67,79,-127,183,-127v122,0,181,77,181,201v0,83,-3,166,-4,249r68,0r0,82r-239,0r0,-82r59,0v1,-76,4,-153,4,-229v0,-73,-34,-127,-105,-127v-77,0,-135,61,-137,158r-4,198r70,0r0,82r-241,0xm212,-624r-70,-36r8,-15v13,-24,51,-80,119,-80v32,0,57,13,78,27v22,13,41,27,62,27v22,0,35,-19,47,-33r11,-13r59,42r-11,15v-28,38,-55,71,-105,71v-51,0,-110,-54,-141,-54v-25,0,-38,17,-50,37",w:667},"\u00f3":{d:"151,-253v0,87,43,171,144,171v102,0,147,-85,147,-187v0,-117,-61,-169,-139,-169v-111,0,-152,93,-152,185xm33,-249v0,-170,113,-283,272,-283v192,0,255,147,255,275v0,148,-90,269,-268,269v-186,0,-259,-129,-259,-261xm267,-580r-63,-48r202,-168r60,56",w:593},"\u00f2":{d:"151,-253v0,87,43,171,144,171v102,0,147,-85,147,-187v0,-117,-61,-169,-139,-169v-111,0,-152,93,-152,185xm33,-249v0,-170,113,-283,272,-283v192,0,255,147,255,275v0,148,-90,269,-268,269v-186,0,-259,-129,-259,-261xm327,-580r-199,-160r60,-56r202,168",w:593},"\u00fa":{d:"36,-438r0,-82r181,0v-2,103,-4,207,-4,311v0,73,34,127,102,127v74,0,133,-61,134,-158r2,-198r-68,0r0,-82r180,0r-2,438r70,0r0,82r-180,0v0,-35,3,-71,10,-115r-2,0v-21,77,-100,127,-182,127v-111,0,-176,-77,-176,-199v0,-85,1,-168,4,-251r-69,0xm304,-580r-63,-48r202,-168r60,56",w:667},"\u00a0":{}}});
