/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)},x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1},B=[],D=function(){if(C)return;C=true;for(var F;F=B.shift();F());};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)};if(!window.opera&&document.readyState)(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})();if(document.readyState&&document.createStyleSheet)(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})();q(window,"load",D);return function(F){if(!arguments.length){D()}else C?F():B.push(F)}})(),root:function(){return document.documentElement||document.body}},n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number")return B;if(/%$/.test(B))return parseFloat(B)/100;return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle)return new a(B.getComputedStyle(C,null));if(C.currentStyle)return new a(C.currentStyle);return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])};return G}),hasClass:function(C,B){return RegExp("(?:^|\\s)"+B+"(?=\\s|$)").test(C.className)},quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E))D.push(B[3]||B[1]);return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){};C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined)return false;B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0)E=" "+E}else if(B<C-1)E+=" ";return E},textDecoration:function(G,F){if(!F)F=this.getStyle(G);var C={underline:null,overline:null,"line-through":null};for(var B=G;B.parentNode&&B.parentNode.nodeType==1;){var E=true;for(var D in C){if(!k(C,D)||C[D])continue;if(F.get("textDecoration").indexOf(D)!=-1)C[D]=F.get("color");E=false};if(E)break;F=this.getStyle(B=B.parentNode)};return C},textShadow:j(function(F){if(F=="none")return null;var E=[],G={},B,C=0,D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F))if(B[0]==","){E.push(G);G={};C=0}else if(B[1]){G.color=B[1]}else G[["offX","offY","blur"][C++]]=B[2];E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var B={inline:1,"inline-block":1,"run-in":1};return function(E,C,D){if(B[C.get("display")])return E;if(!D.previousSibling)E=E.replace(/^\s+/,"");if(!D.nextSibling)E=E.replace(/\s+$/,"");return E}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false,D=[],H=function(){B=true;for(var K;K=D.shift();K());},I=g("link"),J=g("style")
function C(K){return K.disabled||G(K.sheet,K.media||"screen")}
function G(M,P){if(!n.recognizesMedia(P||"all"))return true;if(!M||M.disabled)return false;try{var Q=M.cssRules,O;if(Q)search:for(var L=0,K=Q.length;O=Q[L],L<K;++L)switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText))return false;break;default:break search}}catch(N){};return true}
function F(){if(document.createStyleSheet)return true;var L,K;for(K=0;L=I[K];++K)if(L.rel.toLowerCase()=="stylesheet"&&!C(L))return false;for(K=0;L=J[K];++K)if(!C(L))return false;return true};x.ready(function(){if(!E)E=n.getStyle(document.body).isUsable();if(B||(E&&F())){H()}else setTimeout(arguments.callee,10)});return function(K){if(B){K()}else D.push(K)}})()
function s(C){var B=this.face=C.face;this.glyphs=C.glyphs;this.w=C.w;this.baseSize=parseInt(B["units-per-em"],10);this.family=B["font-family"].toLowerCase();this.weight=B["font-weight"];this.style=B["font-style"]||"normal";this.viewBox=(function(){var E=B.bbox.split(/\s+/),D={minX:parseInt(E[0],10),minY:parseInt(E[1],10),maxX:parseInt(E[2],10),maxY:parseInt(E[3],10)};D.width=D.maxX-D.minX;D.height=D.maxY-D.minY;D.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return D})();this.ascent=-parseInt(B.ascent,10);this.descent=-parseInt(B.descent,10);this.height=-this.ascent+this.descent}
function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G)return null;I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I])return G[I];var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined)E=I>400;if(I==500)I=400;for(var J in G){if(!k(G,J))continue;J=parseInt(J,10);if(!F||J<F)F=J;if(!D||J>D)D=J;K.push(J)};if(I<F)I=F;if(I>D)I=D;K.sort(function(M,L){return(E?(M>I&&L>I)?M<L:M>L:(M<I&&L<I)?M>L:M<L)?-1:1});return G[K[0]]}}
function r(){function D(F,G){if(F.contains)return F.contains(G);return F.compareDocumentPosition(G)&16}
function B(G){var F=G.relatedTarget;if(!F||D(this,F))return;C(this)}
function E(F){C(this)}
function C(F){setTimeout(function(){m.replace(F,d.get(F).options,true)},10)};this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}
function u(){var C=[],D={}
function B(H){var E=[],G;for(var F=0;G=H[F];++F)E[F]=C[D[G]];return E};this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];)m.replace(F[0],F[1],true)}}
function A(){var D={},B=0
function C(E){return E.cufid||(E.cufid=++B)};this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}
function a(B){var D={},C={};this.extend=function(E){for(var F in E)if(k(E,F))D[F]=E[F];return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}
function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else if(C.attachEvent)C.attachEvent("on"+B,function(){return D.call(C,window.event)})}
function v(C,B){var D=d.get(C);if(D.options)return C;if(B.hover&&B.hoverables[C.nodeName.toLowerCase()])b.attach(C);D.options=B;return C}
function j(B){var C={};return function(D){if(!k(C,D))C[D]=B.apply(null,arguments);return C[D]}}
function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C)if(i[D])return i[D].get(E.get("fontStyle"),E.get("fontWeight"));return null}
function g(B){return document.getElementsByTagName(B)}
function k(C,B){return C.hasOwnProperty(B)}
function h(){var B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E)for(F in D)if(k(D,F))B[F]=D[F];return B}
function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M==="")return K;var L=N.separate,I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M))I.unshift("");if(/\s$/.test(M))I.push("")};for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H)K.appendChild(H)};return K}
function l(C,J){var B=n.getStyle(v(C,J)).extend(J),D=c(C,B),E,H,G,F,I;for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E)}else F=E;if(G)continue};if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,F),B,J,E,C),F);F=null};if(H==1&&E.firstChild)if(n.hasClass(E,"cufon")){z[J.engine](D,null,B,J,E,C)}else arguments.callee(E,J)}};var t=" ".split(/\s+/).length==0,d=new A(),b=new r(),y=new u(),e=false,z={},i={},w={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textShadow:"none"},p={words:/[^\S\u00a0]+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B)return m;z[C]=B;return m.set("engine",C)};m.registerFont=function(D){var B=new s(D),C=B.family;if(!i[C])i[C]=new f();i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine)return m;if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true};if(C.hover)C.forceHitArea=true;if(typeof C.textShadow=="string")C.textShadow=n.textShadow(C.textShadow);if(typeof C.color=="string"&&/^-/.test(C.color))C.textGradient=n.gradient(C.color);if(!B)y.add(D,arguments);if(D.nodeType||typeof D=="string")D=[D];n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else l(G,C)}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply)return;b=null;var a=Cufon.CSS.supports("display","inline-block"),e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId)),f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode((".cufon-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f)
function d(p,h){var n=0,m=0,g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate};h[g[j].m].apply(h,g[j].a)};return g}
function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}};return function(ah,H,Z,D,L,ai){var n=(H===null);if(n)H=L.alt;var J=ah.viewBox,p=Z.getSize("fontSize",ah.baseSize),X=Z.get("letterSpacing");X=(X=="normal")?0:p.convertFrom(parseInt(X,10));var K=0,Y=0,W=0,F=0,I=D.textShadow,U=[];if(I)for(var ag=I.length;ag--;){var O=I[ag],T=p.convertFrom(parseFloat(O.offX)),R=p.convertFrom(parseFloat(O.offY));U[ag]=[T,R];if(R<K)K=R;if(T>Y)Y=T;if(R>W)W=R;if(T<F)F=T};var al=Cufon.CSS.textTransform(H,Z).split(""),B,o=ah.glyphs,E,r,ac,h=0,v,N=[];for(var ag=0,ae=0,ab=al.length;ag<ab;++ag){E=o[B=al[ag]]||ah.missingGlyph;if(!E)continue;if(r){h-=ac=r[B]||0;N[ae-1]-=ac};h+=v=N[ae++]=~~(E.w||ah.w)+X;r=E.k};if(v===undefined)return null;Y+=J.width-v;F+=J.minX;var C,q;if(n){C=L;q=L.firstChild}else{C=document.createElement("span");C.className="cufon cufon-canvas";C.alt=H;q=document.createElement("canvas");C.appendChild(q);if(D.printable){var ad=document.createElement("span");ad.className="cufon-alt";ad.appendChild(document.createTextNode(H));C.appendChild(ad)}};var am=C.style,Q=q.style,m=p.convert(J.height),ak=Math.ceil(m),V=ak/m,P=V*Cufon.CSS.fontStretch(Z.get("fontStretch")),S=h*P,aa=Math.ceil(p.convert(S+Y-F)),t=Math.ceil(p.convert(J.height-K+W));q.width=aa;q.height=t;Q.width=aa+"px";Q.height=t+"px";K+=J.minY;Q.top=Math.round(p.convert(K-ah.ascent))+"px";Q.left=Math.round(p.convert(F))+"px";var A=Math.ceil(p.convert(S))+"px";if(a){am.width=A;am.height=p.convert(ah.height)+"px"}else{am.paddingLeft=A;am.paddingBottom=(p.convert(ah.height)-1)+"px"};var aj=q.getContext("2d"),M=m/J.height;aj.scale(M,M*V);aj.translate(-F,-K);aj.lineWidth=ah.face["underline-thickness"];aj.save()
function s(i,g){aj.strokeStyle=g;aj.beginPath();aj.moveTo(0,i);aj.lineTo(h,i);aj.stroke()};var u=D.enableTextDecoration?Cufon.CSS.textDecoration(ai,Z):{};if(u.underline)s(-ah.face["underline-position"],u.underline);if(u.overline)s(ah.ascent,u.overline)
function af(){aj.scale(P,1);for(var x=0,k=0,g=al.length;x<g;++x){var y=o[al[x]]||ah.missingGlyph;if(!y)continue;if(y.d){aj.beginPath();if(y.code){c(y.code,aj)}else y.code=d("m"+y.d,aj);aj.fill()};aj.translate(N[k++],0)};aj.restore()};if(I)for(var ag=I.length;ag--;){var O=I[ag];aj.save();aj.fillStyle=O.color;aj.translate.apply(aj,U[ag]);af()};var z=D.textGradient;if(z){var G=z.stops,w=aj.createLinearGradient(0,J.minY,0,J.maxY);for(var ag=0,ab=G.length;ag<ab;++ag)w.addColorStop.apply(w,G[ag]);aj.fillStyle=w}else aj.fillStyle=Z.get("color");af();if(u["line-through"])s(-ah.descent,u["line-through"]);return C}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e)return;e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize)return;b=null;var g=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(g?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"))
function c(h,i){return a(h,/(?:em|ex|%)$|^[a-z-]+$/i.test(i)?"1em":i)}
function a(k,l){if(/px$/i.test(l))return parseFloat(l);var j=k.style.left,i=k.runtimeStyle.left;k.runtimeStyle.left=k.currentStyle.left;k.style.left=l.replace("%","em");var h=k.style.pixelLeft;k.style.left=j;k.runtimeStyle.left=i;return h};var f={}
function d(o){var p=o.id;if(!f[p]){var m=o.stops,n=document.createElement("cvml:fill"),h=[];n.type="gradient";n.angle=180;n.focus="0";n.method="sigma";n.color=m[0][1];for(var l=1,i=m.length-1;l<i;++l)h.push(m[l][0]*100+"% "+m[l][1]);n.colors=h.join(",");n.color2=m[i][1];f[p]=n};return f[p]};return function(aj,K,ad,G,O,ak,ab){var o=(K===null);if(o)K=O.alt;var M=aj.viewBox,q=ad.computedFontSize||(ad.computedFontSize=new Cufon.CSS.Size(c(ak,ad.get("fontSize"))+"px",aj.baseSize)),aa=ad.computedLSpacing;if(aa==undefined){aa=ad.get("letterSpacing");ad.computedLSpacing=aa=(aa=="normal")?0:~~q.convertFrom(a(ak,aa))};var C,r;if(o){C=O;r=O.firstChild}else{C=document.createElement("span");C.className="cufon cufon-vml";C.alt=K;r=document.createElement("span");r.className="cufon-vml-canvas";C.appendChild(r);if(G.printable){var ag=document.createElement("span");ag.className="cufon-alt";ag.appendChild(document.createTextNode(K));C.appendChild(ag)};if(!ab)C.appendChild(document.createElement("cvml:shape"))};var ap=C.style,V=r.style,m=q.convert(M.height),am=Math.ceil(m),Z=am/m,T=Z*Cufon.CSS.fontStretch(ad.get("fontStretch")),Y=M.minX,X=M.minY;V.height=am;V.top=Math.round(q.convert(X-aj.ascent));V.left=Math.round(q.convert(Y));ap.height=q.convert(aj.height)+"px";var v=G.enableTextDecoration?Cufon.CSS.textDecoration(ak,ad):{},J=ad.get("color"),ao=Cufon.CSS.textTransform(K,ad).split(""),B,p=aj.glyphs,H,s,af,h=0,P=[],W=0,x,z,L=G.textShadow;for(var ai=0,ah=0,ae=ao.length;ai<ae;++ai){H=p[B=ao[ai]]||aj.missingGlyph;if(!H)continue;if(s){h-=af=s[B]||0;P[ah-1]-=af};h+=x=P[ah++]=~~(H.w||aj.w)+aa;s=H.k};if(x===undefined)return null;var A=-Y+h+(M.width-x),an=q.convert(A*T),ac=Math.round(an),S=A+","+M.height,n,N="r"+S+"ns",y=G.textGradient&&d(G.textGradient);for(ai=0,ah=0;ai<ae;++ai){H=p[ao[ai]]||aj.missingGlyph;if(!H)continue;if(o){z=r.childNodes[ah];while(z.firstChild)z.removeChild(z.firstChild)}else{z=document.createElement("cvml:shape");r.appendChild(z)};z.stroked="f";z.coordsize=S;z.coordorigin=n=(Y-W)+","+X;z.path=(H.d?"m"+H.d+"xe":"")+"m"+n+N;z.fillcolor=J;if(y)z.appendChild(y.cloneNode(false));var al=z.style;al.width=ac;al.height=am;if(L){var u=L[0],t=L[1],F=Cufon.CSS.color(u.color),D,R=document.createElement("cvml:shadow");R.on="t";R.color=F.color;R.offset=u.offX+","+u.offY;if(t){D=Cufon.CSS.color(t.color);R.type="double";R.color2=D.color;R.offset2=t.offX+","+t.offY};R.opacity=F.opacity||(D&&D.opacity)||1;z.appendChild(R)};W+=P[ah++]};var Q=z.nextSibling,w,E;if(G.forceHitArea){if(!Q){Q=document.createElement("cvml:rect");Q.stroked="f";Q.className="cufon-vml-cover";w=document.createElement("cvml:fill");w.opacity=0;Q.appendChild(w);r.appendChild(Q)};E=Q.style;E.width=ac;E.height=am}else if(Q)r.removeChild(Q);ap.width=Math.max(Math.ceil(q.convert(h*T)),0);if(g){var U=ad.computedYAdjust;if(U===undefined){var I=ad.get("lineHeight");if(I=="normal"){I="1em"}else if(!isNaN(I))I+="em";ad.computedYAdjust=U=0.5*(a(ak,I)-parseFloat(ap.height))};if(U){ap.marginTop=Math.ceil(U)+"px";ap.marginBottom=U+"px"}};return C}})())
Cufon.registerFont({w:188,face:{"font-family":"trebuchet","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 3 2 2 2 2 2 4",ascent:"288",descent:"-72","x-height":"4",bbox:"-14 -338 304 80","underline-thickness":"22.3242","underline-position":"-34.8047","unicode-range":"U+0020-U+00FF"},glyphs:{" ":{w:108,k:{Y:7,T:7,A:20}},"!":{d:"73,-67r-13,0v-15,-96,-13,-114,-13,-195r39,0v0,81,2,98,-13,195xm41,-23v0,-14,12,-26,27,-26v14,0,26,12,26,26v0,14,-12,27,-26,27v-14,0,-27,-13,-27,-27",w:132},"\"":{d:"40,-191r-23,0r-4,-67r32,0xm98,-191r-23,0r-4,-67r32,0",w:116},"#":{d:"155,-166r-18,69r28,0r0,22r-34,0r-21,79r-23,0r22,-79r-52,0r-22,79r-23,0r22,-79r-27,0r0,-22r33,0r17,-69r-30,0r0,-23r36,0r18,-72r23,0r-18,72r52,0r18,-72r22,0r-18,72r31,0r0,23r-36,0xm80,-166r-17,69r52,0r17,-69r-52,0"},"$":{d:"156,-110v27,46,4,111,-51,113r0,40r-24,0r0,-39v-14,1,-47,-11,-56,-16r12,-32v32,31,120,15,93,-42v-21,-43,-106,-36,-106,-109v0,-35,25,-61,57,-66r0,-28r24,0r0,27v25,1,42,6,51,14r-10,31v-24,-18,-89,-25,-87,21v3,53,76,51,97,86"},"%":{d:"38,4r-22,0r155,-266r22,0xm109,-201v0,33,-18,60,-49,60v-33,0,-49,-21,-49,-63v0,-32,19,-59,50,-58v31,0,48,26,48,61xm61,-244v-20,0,-28,20,-28,42v0,22,7,43,25,43v19,0,28,-14,28,-43v0,-28,-8,-42,-25,-42xm204,-56v0,33,-19,59,-49,60v-33,0,-49,-21,-49,-63v0,-32,19,-59,50,-58v31,0,48,26,48,61xm156,-99v-20,0,-29,19,-28,41v0,23,7,44,25,44v19,0,28,-14,28,-43v0,-28,-8,-42,-25,-42",w:216},"&":{d:"181,-126v0,48,-9,125,51,93r5,31v-24,7,-56,11,-74,-7v-59,30,-145,8,-138,-71v3,-33,9,-46,28,-66v-52,-42,-16,-116,50,-116v24,0,43,5,56,16r-15,27v-27,-30,-85,-19,-82,25v0,15,6,28,20,39r66,0r0,-32r33,-13r0,46r44,0r0,28r-44,0xm150,-35v-4,-26,-1,-62,-2,-91r-71,0v-31,35,-20,100,37,100v16,0,28,-3,36,-9",w:254},"'":{d:"40,-191r-23,0r-4,-67r32,0",w:57},"(":{d:"109,75v-68,-45,-99,-176,-53,-270v16,-33,33,-54,53,-64r0,14v-48,55,-45,256,0,302r0,18",w:132},")":{d:"34,-259v65,36,97,176,55,263v-15,30,-31,54,-55,71r0,-18v45,-46,48,-247,0,-302r0,-14",w:132},"*":{d:"120,-203v-11,6,-28,5,-45,5v13,9,27,17,36,30r-22,18v-10,-12,-16,-26,-24,-40r-23,40r-23,-18v6,-15,23,-19,36,-27v-16,-3,-33,-5,-47,-10r13,-27v16,5,27,15,39,24v-4,-17,-12,-29,-11,-50r31,0v1,21,-7,33,-11,50v13,-8,24,-19,41,-24",w:132},"+":{d:"107,-124r62,0r0,25r-62,0r0,60r-24,0r0,-60r-62,0r0,-25r62,0r0,-60r24,0r0,60"},",":{d:"66,-49v30,2,30,49,15,71v-7,12,-21,26,-42,42r-9,-13v20,-17,31,-30,31,-42v0,-16,-23,-22,-21,-36v-1,-13,12,-23,26,-22",w:132},"-":{d:"28,-89r0,-31r75,0r0,31r-75,0",w:132},"\u2010":{d:"28,-89r0,-31r75,0r0,31r-75,0",w:132},".":{d:"36,-23v0,-14,12,-26,26,-26v15,0,27,12,27,26v0,14,-13,27,-27,27v-14,0,-26,-13,-26,-27",w:132},"\/":{d:"62,0r-29,0r94,-259r28,0"},"0":{d:"95,4v-72,0,-83,-49,-84,-141v0,-66,27,-125,86,-125v67,0,81,48,81,131v0,72,-20,135,-83,135xm143,-133v0,-56,-1,-99,-47,-99v-33,0,-50,33,-50,99v0,71,16,107,46,107v47,0,51,-44,51,-107"},"1":{d:"35,-198v25,-12,62,-40,77,-61r11,0r0,259r-35,0r0,-197r-53,32r0,-33"},"2":{d:"76,-262v85,0,93,73,51,139r-58,91r101,0r0,32r-158,0r0,-7v32,-58,96,-118,106,-190v7,-48,-75,-41,-85,-9r-23,-18v8,-22,34,-38,66,-38"},"3":{d:"165,-71v0,76,-98,95,-146,53r17,-27v25,32,97,24,92,-29v-3,-31,-21,-50,-54,-49v1,-9,-2,-22,1,-29v30,0,45,-13,45,-39v0,-45,-56,-52,-79,-26r-15,-24v34,-41,131,-19,131,43v0,28,-19,53,-40,60v27,8,48,33,48,67"},"4":{d:"155,-70r0,70r-33,0r0,-70r-118,0r0,-20r139,-169r12,0r0,162r26,0r0,27r-26,0xm122,-188r-76,91r76,0r0,-91"},"5":{d:"62,-166v51,-29,114,10,107,73v10,93,-88,120,-146,76r13,-29v39,36,96,24,96,-42v0,-61,-59,-74,-91,-38r-12,-8r0,-125r128,0r0,30r-95,0r0,63"},"6":{d:"174,-79v0,47,-31,81,-75,83v-94,5,-104,-141,-51,-208v24,-31,45,-52,70,-58r17,19v-17,4,-78,75,-77,96v48,-37,116,4,116,68xm138,-78v1,-28,-16,-54,-42,-53v-30,0,-44,16,-44,50v0,37,15,56,45,56v27,0,41,-24,41,-53"},"7":{d:"75,0r-39,0v18,-59,72,-171,100,-225r-121,0r0,-34r167,0v1,28,-14,39,-23,59r-69,157v-6,16,-11,30,-15,43"},"8":{d:"94,4v-96,0,-97,-124,-32,-147v-19,-10,-37,-31,-37,-57v-1,-39,30,-62,70,-62v78,0,87,97,33,122v75,32,54,144,-34,144xm129,-201v0,-19,-14,-32,-34,-31v-23,0,-35,11,-35,32v0,16,15,31,45,46v16,-15,24,-31,24,-47xm94,-26v36,0,58,-43,36,-72v-6,-8,-20,-19,-41,-30v-26,14,-38,33,-38,57v0,25,18,45,43,45"},"9":{d:"13,-178v0,-47,30,-82,74,-84v94,-5,105,140,52,208v-25,31,-45,52,-70,58r-17,-18v16,-5,77,-76,77,-96v-49,35,-116,-4,-116,-68xm49,-180v-1,29,16,54,42,54v30,0,44,-17,44,-51v0,-37,-15,-55,-45,-55v-28,-1,-41,24,-41,52"},":":{d:"36,-165v0,-14,12,-27,26,-27v14,0,27,13,27,27v0,14,-13,26,-27,26v-13,0,-26,-13,-26,-26xm36,-23v0,-14,12,-26,26,-26v15,0,27,12,27,26v0,14,-13,27,-27,27v-14,0,-26,-13,-26,-27",w:132},";":{d:"36,-165v0,-14,12,-27,26,-27v14,0,27,13,27,27v0,14,-13,26,-27,26v-13,0,-26,-13,-26,-26xm66,-49v30,2,30,49,15,71v-7,12,-21,26,-42,42r-9,-13v20,-17,31,-30,31,-42v0,-16,-23,-22,-21,-36v-1,-13,12,-23,26,-22",w:132},"<":{d:"156,-38r-130,-63r0,-22r130,-62r0,28r-100,45r100,45r0,29"},"=":{d:"169,-154r0,25r-148,0r0,-25r148,0xm169,-94r0,25r-148,0r0,-25r148,0"},">":{d:"156,-101r-130,63r0,-29r101,-45r-101,-45r0,-28r130,62r0,22"},"?":{d:"7,-248v44,-34,139,-5,110,65v-15,36,-67,53,-53,108r-23,0v-27,-59,42,-84,48,-129v4,-34,-50,-40,-69,-18xm31,-23v0,-14,11,-26,26,-26v14,0,26,11,26,26v0,15,-12,27,-26,27v-14,0,-26,-12,-26,-27",w:132},"@":{d:"43,-102v0,88,102,134,164,82v5,2,13,5,23,10v-22,22,-51,34,-88,34v-74,1,-124,-51,-124,-126v0,-75,51,-131,124,-131v70,0,119,48,118,117v0,37,-21,72,-58,71v-19,0,-32,-4,-40,-12v-23,25,-79,16,-77,-24v1,-33,33,-46,70,-46v0,-31,-34,-29,-50,-16r-8,-17v35,-24,90,-8,84,45r0,42v29,23,54,4,54,-44v0,-52,-41,-94,-93,-94v-61,0,-99,48,-99,109xm155,-110v-43,-11,-60,47,-20,50v7,0,14,-3,20,-9r0,-41",w:277},A:{d:"173,0r-18,-54r-96,0r-19,54r-39,0r104,-261r10,0r97,261r-39,0xm108,-194r-40,114r77,0",w:212,k:{y:15,w:17,v:20,Y:38,W:32,V:32,T:35," ":20}},B:{d:"190,-74v0,75,-83,78,-164,74r0,-258v81,-6,143,-7,148,62v2,24,-23,47,-43,51v38,10,58,27,59,71xm62,-229r0,74v37,5,82,-3,77,-40v5,-35,-43,-40,-77,-34xm153,-80v0,-47,-42,-52,-91,-48r0,98v50,6,91,-1,91,-50",w:203},C:{d:"14,-128v0,-71,43,-135,111,-134v28,0,50,5,66,14r-12,30v-11,-8,-29,-12,-53,-12v-50,1,-75,48,-75,104v0,53,28,98,75,99v24,0,43,-9,56,-26r19,27v-20,20,-46,30,-78,30v-71,0,-109,-57,-109,-132",w:215},D:{d:"26,-258v117,-14,177,23,181,119v4,114,-65,149,-181,139r0,-258xm62,-33v73,11,108,-32,108,-103v0,-71,-38,-101,-108,-90r0,193",w:220},E:{d:"62,-226r0,72r85,0r0,30r-85,0r0,92r116,0r0,32r-152,0r0,-258r154,0r0,32r-118,0",w:192},F:{d:"62,-226r0,72r90,0r0,30r-90,0r0,124r-36,0r0,-258r159,0r0,32r-123,0",k:{A:38,".":65,",":65}},G:{d:"14,-128v0,-104,109,-172,191,-112r-15,29v-65,-50,-139,4,-139,85v0,76,74,127,131,82r0,-60r-36,0r0,-30r71,0r0,112v-16,15,-57,26,-88,26v-73,1,-115,-56,-115,-132",w:243},H:{d:"174,0r0,-124r-112,0r0,124r-36,0r0,-258r36,0r0,104r112,0r0,-104r35,0r0,258r-35,0",w:235},I:{d:"33,0r0,-258r35,0r0,258r-35,0",w:100},J:{d:"145,-258v-10,103,38,262,-77,262v-34,0,-58,-22,-59,-56r30,0v3,16,12,24,28,24v43,-2,43,-15,43,-67r0,-163r35,0",w:171},K:{d:"168,0r-72,-118r-34,48r0,70r-36,0r0,-258r36,0r0,141r95,-141r39,0r-77,112r88,146r-39,0",w:207,k:{w:11,u:11,o:11,n:11,i:11,e:11}},L:{d:"26,0r0,-258r36,0r0,226r116,0r0,32r-152,0",w:182,k:{y:30,Y:47,W:45,V:50,T:37," ":13}},M:{d:"220,0r-30,-165r-57,169r-8,0r-58,-169r-30,165r-33,0r48,-258r16,0r61,188r57,-188r15,0r53,258r-34,0",w:255},N:{d:"193,4r-133,-189r0,185r-34,0r0,-258r14,0r130,179r0,-179r33,0r0,262r-10,0",w:229},O:{d:"118,4v-68,0,-104,-62,-104,-135v0,-69,38,-132,104,-131v75,0,111,54,111,131v0,78,-36,135,-111,135xm118,-230v-50,0,-66,45,-67,99v-1,53,20,104,67,104v53,0,75,-45,74,-104v0,-66,-25,-99,-74,-99",w:242},P:{d:"62,-99r0,99r-36,0r0,-258v92,-7,161,8,161,74v0,67,-50,95,-125,85xm62,-226r0,95v54,8,88,-8,88,-50v0,-37,-41,-53,-88,-45",w:200,k:{r:17,o:17,i:17,h:17,e:17,a:17,A:40,".":70,",":70," ":7}},Q:{d:"118,-262v75,0,111,54,111,131v0,59,-19,100,-54,122v16,25,50,30,92,28r-5,34v-61,0,-102,-17,-121,-51v-82,15,-127,-53,-127,-133v0,-69,38,-132,104,-131xm118,-27v52,0,75,-46,74,-104v0,-66,-25,-99,-74,-99v-50,0,-66,45,-67,99v-1,53,20,104,67,104",w:243},R:{d:"185,-186v0,31,-24,62,-50,68r75,118r-41,0r-68,-111v-8,0,-21,0,-38,-1r0,112r-35,0r0,-258v76,-7,157,-1,157,72xm148,-187v0,-40,-42,-44,-85,-39r0,84v43,5,85,1,85,-45",w:209,k:{u:10,o:15,e:15,Y:23,W:23,V:17,T:15}},S:{d:"111,-139v78,32,52,143,-38,143v-23,0,-42,-5,-58,-16r13,-32v27,24,96,25,96,-23v0,-53,-79,-52,-99,-88v-27,-49,5,-107,62,-107v28,0,48,5,59,14r-10,31v-24,-19,-89,-24,-87,21v1,38,32,45,62,57",w:173},T:{d:"120,-226r0,226r-35,0r0,-226r-82,0r0,-32r203,0r0,32r-86,0",w:209,k:{y:41,w:50,u:47,s:43,r:40,o:45,i:15,e:45,c:45,a:45,O:20,A:35,";":40,":":40,".":60,"-":35,",":60," ":7}},U:{d:"116,4v-56,0,-90,-28,-90,-83r0,-179r36,0r0,177v-1,32,22,54,54,54v34,0,56,-21,56,-55r0,-176r35,0r0,180v1,53,-36,82,-91,82",w:233},V:{d:"116,4r-18,0r-96,-262r39,0r67,190r63,-190r38,0",w:211,k:{y:13,u:23,r:22,o:23,i:7,e:23,a:28,A:37,";":22,":":22,".":53,"-":27,",":53}},W:{d:"224,4r-11,0r-61,-178r-57,178r-12,0r-81,-262r37,0r52,180r56,-180r12,0r56,180r53,-180r36,0",w:306,k:{y:7,u:15,r:18,o:17,i:5,e:17,a:20,A:32,";":7,":":7,".":33,"-":25,",":33}},X:{d:"161,0r-64,-103r-59,103r-36,0r76,-134r-70,-124r35,0r55,98r61,-98r35,0r-80,125r84,133r-37,0",w:200},Y:{d:"120,-115r0,115r-35,0r0,-115r-83,-143r36,0r65,113r64,-113r36,0",w:205,k:{v:21,u:27,q:43,p:33,o:41,i:20,e:38,a:33,A:38,";":31,":":31,".":58,"-":44,",":58," ":7}},Z:{d:"18,0r0,-9r110,-217r-109,0r0,-32r158,0r0,9r-111,217r115,0r0,32r-163,0",w:198},"[":{d:"36,74r0,-339r81,0r0,29r-46,0r0,280r46,0r0,30r-81,0",w:132},"\\":{d:"90,0r-91,-259r25,0r91,259r-25,0",w:127},"]":{d:"97,74r-82,0r0,-30r47,0r0,-280r-47,0r0,-29r82,0r0,339",w:132},"^":{d:"134,-159r-43,-79r-43,79r-22,0r56,-100r19,0r55,100r-22,0"},_:{d:"-1,45r0,-23r190,0r0,23r-190,0"},"`":{d:"98,-226r-39,-58r34,0r30,58r-25,0"},a:{d:"175,3v-27,1,-38,-6,-45,-25v-28,43,-116,31,-116,-31v0,-48,62,-81,113,-63v6,-54,-64,-55,-89,-29r-14,-28v11,-9,38,-19,58,-19v83,0,81,66,78,146v0,17,5,27,15,33r0,16xm127,-92v-39,-13,-80,6,-80,40v0,42,63,35,80,5r0,-45",w:189},b:{d:"187,-98v9,79,-78,131,-135,84v-6,9,-9,22,-28,18r0,-269r33,0r0,91v49,-46,138,5,130,76xm152,-96v3,-55,-58,-88,-95,-53r0,109v0,4,27,16,32,15v48,0,60,-22,63,-71",w:200},c:{d:"11,-92v0,-83,90,-127,155,-81r-17,24v-40,-33,-111,-5,-102,57v-6,62,63,86,107,50r13,28v-63,43,-156,6,-156,-78",w:178},d:{d:"13,-89v-6,-69,71,-132,130,-89r0,-87r33,0r0,265r-33,0r0,-14v-52,43,-140,-1,-130,-75xm48,-93v-7,60,58,86,95,53r0,-105v-32,-45,-102,-2,-95,52",w:200},e:{d:"100,-192v58,0,96,43,82,101r-135,0v-7,61,66,84,107,50r14,24v-13,12,-43,21,-69,21v-51,-1,-88,-43,-88,-96v0,-54,37,-100,89,-100xm152,-115v3,-45,-58,-65,-88,-34v-9,10,-16,20,-17,34r105,0",w:196},f:{d:"39,-188v-3,-56,41,-91,96,-72r-9,24v-33,-12,-61,12,-54,48r39,0r0,28r-39,0r0,160r-33,0r0,-160r-28,0r0,-28r28,0",w:133},g:{d:"170,16v0,66,-110,71,-153,36r18,-27v19,13,38,19,54,19v24,0,49,-7,49,-27v0,-52,-120,14,-117,-47v0,-15,18,-25,33,-28v-66,-24,-43,-134,31,-134v19,0,34,4,44,12r17,-20r21,20r-20,15v33,44,-1,116,-51,114v-18,3,-45,0,-49,15v6,16,48,2,64,2v36,0,59,16,59,50xm126,-123v0,-23,-16,-42,-38,-42v-24,-1,-40,19,-40,42v0,25,15,47,40,46v24,-1,38,-20,38,-46",w:180},h:{d:"109,-192v84,-1,61,111,64,192r-33,0v-7,-61,24,-161,-40,-164v-17,-1,-36,14,-43,24r0,140r-33,0r0,-265r33,0r0,97v8,-12,31,-24,52,-24",w:196},i:{d:"38,-239v0,-11,9,-20,20,-20v11,0,21,9,21,20v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21xm40,0r0,-160r-26,0r0,-28r59,0r0,188r-33,0",w:102},j:{d:"55,-239v0,-11,9,-20,20,-20v11,0,21,9,21,20v0,12,-9,21,-21,21v-11,0,-20,-10,-20,-21xm3,44v42,-1,60,-8,60,-45r0,-159r-37,0r0,-28r71,0r0,186v-1,56,-33,76,-94,76r0,-30",w:132},k:{d:"145,0r-59,-94r-29,30r0,64r-33,0r0,-265r33,0r0,164r72,-87r39,0r-60,71r74,117r-37,0",w:181},l:{d:"60,-59v-1,20,13,33,31,33r0,30v-43,0,-65,-19,-65,-57r0,-212r34,0r0,206",w:106},m:{d:"162,-167v27,-44,113,-27,113,41r0,126r-33,0v-7,-59,25,-163,-39,-164v-16,0,-32,14,-37,25r0,139r-33,0r0,-134v-1,-41,-67,-34,-76,-5r0,139r-33,0r0,-188r22,0r11,22v22,-36,85,-33,105,-1",w:298},n:{d:"140,-110v11,-64,-62,-65,-83,-30r0,140r-33,0r0,-188r23,0r10,24v31,-50,116,-33,116,47r0,117r-33,0r0,-110",w:196},o:{d:"97,4v-56,0,-86,-42,-86,-99v0,-54,33,-97,86,-97v55,0,85,40,85,97v1,56,-31,99,-85,99xm97,-165v-34,0,-50,30,-50,70v0,47,17,71,50,71v35,0,50,-33,50,-71v0,-47,-17,-70,-50,-70",w:193},p:{d:"188,-94v7,74,-72,123,-131,84r0,84r-33,0r0,-262r33,0r0,15v55,-48,140,0,131,79xm153,-95v9,-62,-59,-87,-96,-53r0,110v37,30,104,5,96,-57",w:200},q:{d:"13,-94v0,-75,78,-127,136,-80r9,-14r20,0r0,262r-34,0r0,-85v-10,10,-26,15,-49,15v-54,0,-82,-41,-82,-98xm48,-94v-7,57,56,87,96,57r0,-112v-38,-37,-102,0,-96,55",w:200},r:{d:"126,-156v-32,-24,-66,12,-66,48r0,108r-34,0r0,-188r34,0r0,30v17,-30,40,-40,80,-31",w:139,k:{".":48,",":51}},s:{d:"92,-105v65,21,48,109,-25,109v-20,0,-39,-5,-56,-15r12,-32v19,12,34,18,45,18v21,0,31,-9,31,-26v0,-42,-90,-37,-86,-92v4,-52,67,-61,113,-36r-10,31v-20,-19,-63,-25,-68,4v-4,22,26,33,44,39",w:145},t:{d:"134,-2v-47,17,-98,-1,-98,-53r0,-107r-22,0r0,-26r22,0r0,-40r33,-12r0,52r52,0r0,26r-52,0v3,59,-21,164,60,131",w:142},u:{d:"86,4v-88,4,-60,-111,-64,-192r33,0r0,120v-5,61,77,48,87,12r0,-132r33,0r0,188r-33,0r0,-26v-7,13,-35,30,-56,30",w:196},v:{d:"92,4r-9,0r-81,-193r37,0r49,132r51,-132r35,0",w:176,k:{".":48,",":48}},w:{d:"198,4r-9,0r-55,-129r-55,129r-9,0r-67,-193r35,0r41,124r50,-124r8,0r52,124r43,-124r33,0",w:267,k:{".":38,",":38}},x:{d:"138,0r-51,-69r-46,69r-39,0r68,-96r-62,-92r37,0r43,64r47,-64r37,0r-69,92r75,96r-40,0",w:180},y:{d:"22,44v37,2,60,-26,45,-64r-65,-168r34,0r56,145r49,-145r34,0r-79,220v-8,23,-42,43,-74,42r0,-30",w:177,k:{".":44,",":44}},z:{d:"59,-30r105,0r0,30r-157,0r0,-9r107,-149r-105,0r0,-30r154,0r0,9",w:170},"{":{d:"76,-56v-9,43,-30,117,48,105r0,25v-49,4,-94,-11,-94,-53v0,-36,37,-113,-23,-113r0,-15v54,-1,30,-72,23,-107v2,-40,46,-54,94,-50r0,23v-32,-1,-59,-2,-59,33v0,15,12,45,11,58v0,19,-14,35,-40,50v19,8,38,23,40,44",w:132},"|":{d:"81,49r0,-296r26,0r0,296r-26,0"},"}":{d:"101,21v0,41,-45,58,-94,53r0,-25v36,2,59,-8,59,-40v0,-17,-12,-50,-11,-65v2,-21,21,-36,40,-44v-53,-24,-35,-60,-29,-108v5,-35,-26,-34,-59,-33r0,-23v48,-4,92,9,94,50v-6,34,-32,106,23,107r0,15v-59,1,-23,76,-23,113",w:132},"~":{d:"60,-126v26,-3,71,33,83,0r16,0v-7,57,-62,31,-96,23v-8,0,-15,5,-19,14r-16,0v3,-18,14,-35,32,-37"},"\u00c4":{d:"173,0r-18,-54r-96,0r-19,54r-39,0r104,-261r10,0r97,261r-39,0xm108,-194r-40,114r77,0xm48,-299v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm131,-299v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:212},"\u00c5":{d:"110,-319v42,0,49,66,10,73r92,246r-39,0r-18,-54r-97,0r-18,54r-39,0r98,-247v-38,-7,-31,-72,11,-72xm110,-300v-21,0,-23,35,0,35v10,0,18,-7,18,-17v0,-10,-8,-18,-18,-18xm108,-194r-40,114r77,0",w:212},"\u00c7":{d:"14,-128v0,-71,43,-135,111,-134v28,0,50,5,66,14r-12,30v-11,-8,-29,-12,-53,-12v-50,1,-75,48,-75,104v0,53,28,98,75,99v24,0,43,-9,56,-26r19,27v-20,20,-46,30,-78,30v-71,0,-109,-57,-109,-132xm94,11v34,-3,50,42,24,60v-9,6,-21,9,-36,9r-4,-17v15,0,31,-4,32,-18v0,-9,-5,-13,-16,-13r0,-21",w:215},"\u00c9":{d:"62,-226r0,72r85,0r0,30r-85,0r0,92r116,0r0,32r-152,0r0,-258r154,0r0,32r-118,0xm141,-337r-40,58r-25,0r30,-58r35,0",w:192},"\u00d1":{d:"84,-315v25,-2,51,31,64,0r15,0v-8,49,-48,36,-76,23v-8,0,-15,4,-19,13r-16,0v3,-17,14,-35,32,-36xm193,4r-133,-189r0,185r-34,0r0,-258r14,0r130,179r0,-179r33,0r0,262r-10,0",w:229},"\u00d6":{d:"118,4v-68,0,-104,-62,-104,-135v0,-69,38,-132,104,-131v75,0,111,54,111,131v0,78,-36,135,-111,135xm118,-230v-50,0,-66,45,-67,99v-1,53,20,104,67,104v53,0,75,-45,74,-104v0,-66,-25,-99,-74,-99xm59,-299v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm142,-299v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:242},"\u00dc":{d:"116,4v-56,0,-90,-28,-90,-83r0,-179r36,0r0,177v-1,32,22,54,54,54v34,0,56,-21,56,-55r0,-176r35,0r0,180v1,53,-36,82,-91,82xm51,-299v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm134,-299v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:233},"\u00e1":{d:"175,3v-27,1,-38,-6,-45,-25v-28,43,-116,31,-116,-31v0,-48,62,-81,113,-63v6,-54,-64,-55,-89,-29r-14,-28v11,-9,38,-19,58,-19v83,0,81,66,78,146v0,17,5,27,15,33r0,16xm127,-92v-39,-13,-80,6,-80,40v0,42,63,35,80,5r0,-45xm135,-284r-40,58r-25,0r30,-58r35,0",w:189},"\u00e0":{d:"175,3v-27,1,-38,-6,-45,-25v-28,43,-116,31,-116,-31v0,-48,62,-81,113,-63v6,-54,-64,-55,-89,-29r-14,-28v11,-9,38,-19,58,-19v83,0,81,66,78,146v0,17,5,27,15,33r0,16xm127,-92v-39,-13,-80,6,-80,40v0,42,63,35,80,5r0,-45xm89,-226r-39,-58r34,0r30,58r-25,0",w:189},"\u00e2":{d:"120,-226r-29,-33r-31,33r-31,0r53,-59r19,0r53,59r-34,0xm175,3v-27,1,-38,-6,-45,-25v-28,43,-116,31,-116,-31v0,-48,62,-81,113,-63v6,-54,-64,-55,-89,-29r-14,-28v11,-9,38,-19,58,-19v83,0,81,66,78,146v0,17,5,27,15,33r0,16xm127,-92v-39,-13,-80,6,-80,40v0,42,63,35,80,5r0,-45",w:189},"\u00e4":{d:"175,3v-27,1,-38,-6,-45,-25v-28,43,-116,31,-116,-31v0,-48,62,-81,113,-63v6,-54,-64,-55,-89,-29r-14,-28v11,-9,38,-19,58,-19v83,0,81,66,78,146v0,17,5,27,15,33r0,16xm127,-92v-39,-13,-80,6,-80,40v0,42,63,35,80,5r0,-45xm28,-246v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm111,-246v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:189},"\u00e3":{d:"67,-262v24,-2,51,30,64,0r15,0v-8,50,-47,35,-76,23v-8,0,-15,4,-19,13r-16,0v3,-17,14,-35,32,-36xm175,3v-27,1,-38,-6,-45,-25v-28,43,-116,31,-116,-31v0,-48,62,-81,113,-63v6,-54,-64,-55,-89,-29r-14,-28v11,-9,38,-19,58,-19v83,0,81,66,78,146v0,17,5,27,15,33r0,16xm127,-92v-39,-13,-80,6,-80,40v0,42,63,35,80,5r0,-45",w:189},"\u00e5":{d:"53,-263v0,-20,17,-37,37,-37v20,0,37,16,37,37v0,21,-17,37,-37,37v-20,0,-37,-17,-37,-37xm72,-263v0,10,9,18,18,18v11,0,18,-7,18,-18v0,-10,-8,-17,-18,-17v-9,0,-18,8,-18,17xm175,3v-27,1,-38,-6,-45,-25v-28,43,-116,31,-116,-31v0,-48,62,-81,113,-63v6,-54,-64,-55,-89,-29r-14,-28v11,-9,38,-19,58,-19v83,0,81,66,78,146v0,17,5,27,15,33r0,16xm127,-92v-39,-13,-80,6,-80,40v0,42,63,35,80,5r0,-45",w:189},"\u00e7":{d:"11,-92v0,-83,90,-127,155,-81r-17,24v-40,-33,-111,-5,-102,57v-6,62,63,86,107,50r13,28v-63,43,-156,6,-156,-78xm83,11v34,-3,50,42,24,60v-9,6,-21,9,-36,9r-4,-17v15,0,31,-4,32,-18v0,-9,-5,-13,-16,-13r0,-21",w:178},"\u00e9":{d:"100,-192v58,0,96,43,82,101r-135,0v-7,61,66,84,107,50r14,24v-13,12,-43,21,-69,21v-51,-1,-88,-43,-88,-96v0,-54,37,-100,89,-100xm152,-115v3,-45,-58,-65,-88,-34v-9,10,-16,20,-17,34r105,0xm145,-284r-40,58r-25,0r30,-58r35,0",w:196},"\u00e8":{d:"100,-192v58,0,96,43,82,101r-135,0v-7,61,66,84,107,50r14,24v-13,12,-43,21,-69,21v-51,-1,-88,-43,-88,-96v0,-54,37,-100,89,-100xm152,-115v3,-45,-58,-65,-88,-34v-9,10,-16,20,-17,34r105,0xm103,-226r-39,-58r34,0r30,58r-25,0",w:196},"\u00ea":{d:"128,-226r-29,-33r-31,33r-30,0r52,-59r19,0r54,59r-35,0xm100,-192v58,0,96,43,82,101r-135,0v-7,61,66,84,107,50r14,24v-13,12,-43,21,-69,21v-51,-1,-88,-43,-88,-96v0,-54,37,-100,89,-100xm152,-115v3,-45,-58,-65,-88,-34v-9,10,-16,20,-17,34r105,0",w:196},"\u00eb":{d:"100,-192v58,0,96,43,82,101r-135,0v-7,61,66,84,107,50r14,24v-13,12,-43,21,-69,21v-51,-1,-88,-43,-88,-96v0,-54,37,-100,89,-100xm152,-115v3,-45,-58,-65,-88,-34v-9,10,-16,20,-17,34r105,0xm37,-246v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm120,-246v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:196},"\u00ed":{d:"40,0r0,-160r-26,0r0,-28r60,0r0,188r-34,0xm95,-284r-40,58r-25,0r30,-58r35,0",w:102},"\u00ec":{d:"40,0r0,-160r-26,0r0,-28r60,0r0,188r-34,0xm50,-226r-39,-58r34,0r30,58r-25,0",w:102},"\u00ee":{d:"78,-226r-29,-33r-31,33r-30,0r52,-59r19,0r53,59r-34,0xm40,0r0,-160r-26,0r0,-28r60,0r0,188r-34,0",w:102},"\u00ef":{d:"40,0r0,-160r-26,0r0,-28r60,0r0,188r-34,0xm-11,-246v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm72,-246v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:102},"\u00f1":{d:"70,-262v24,-2,51,30,64,0r15,0v-8,50,-47,35,-76,23v-8,0,-15,4,-19,13r-16,0v3,-17,14,-35,32,-36xm140,-110v11,-64,-62,-65,-83,-30r0,140r-33,0r0,-188r23,0r10,24v31,-50,116,-33,116,47r0,117r-33,0r0,-110",w:196},"\u00f3":{d:"97,4v-56,0,-86,-42,-86,-99v0,-54,33,-97,86,-97v55,0,85,40,85,97v1,56,-31,99,-85,99xm97,-165v-34,0,-50,30,-50,70v0,47,17,71,50,71v35,0,50,-33,50,-71v0,-47,-17,-70,-50,-70xm136,-284r-40,58r-25,0r30,-58r35,0",w:193},"\u00f2":{d:"97,4v-56,0,-86,-42,-86,-99v0,-54,33,-97,86,-97v55,0,85,40,85,97v1,56,-31,99,-85,99xm97,-165v-34,0,-50,30,-50,70v0,47,17,71,50,71v35,0,50,-33,50,-71v0,-47,-17,-70,-50,-70xm99,-226r-39,-58r34,0r30,58r-25,0",w:193},"\u00f4":{d:"125,-226r-29,-33r-31,33r-31,0r53,-59r19,0r53,59r-34,0xm97,4v-56,0,-86,-42,-86,-99v0,-54,33,-97,86,-97v55,0,85,40,85,97v1,56,-31,99,-85,99xm97,-165v-34,0,-50,30,-50,70v0,47,17,71,50,71v35,0,50,-33,50,-71v0,-47,-17,-70,-50,-70",w:193},"\u00f6":{d:"97,4v-56,0,-86,-42,-86,-99v0,-54,33,-97,86,-97v55,0,85,40,85,97v1,56,-31,99,-85,99xm97,-165v-34,0,-50,30,-50,70v0,47,17,71,50,71v35,0,50,-33,50,-71v0,-47,-17,-70,-50,-70xm38,-246v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm121,-246v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:193},"\u00f5":{d:"75,-262v24,-2,51,30,64,0r16,0v-9,50,-48,34,-77,23v-8,0,-15,4,-19,13r-16,0v3,-17,14,-35,32,-36xm97,4v-56,0,-86,-42,-86,-99v0,-54,33,-97,86,-97v55,0,85,40,85,97v1,56,-31,99,-85,99xm97,-165v-34,0,-50,30,-50,70v0,47,17,71,50,71v35,0,50,-33,50,-71v0,-47,-17,-70,-50,-70",w:193},"\u00fa":{d:"86,4v-88,4,-60,-111,-64,-192r33,0r0,120v-5,61,77,48,87,12r0,-132r33,0r0,188r-33,0r0,-26v-7,13,-35,30,-56,30xm130,-284r-40,58r-25,0r30,-58r35,0",w:196},"\u00f9":{d:"86,4v-88,4,-60,-111,-64,-192r33,0r0,120v-5,61,77,48,87,12r0,-132r33,0r0,188r-33,0r0,-26v-7,13,-35,30,-56,30xm96,-226r-39,-58r34,0r30,58r-25,0",w:196},"\u00fb":{d:"119,-226r-28,-33r-32,33r-30,0r53,-59r18,0r54,59r-35,0xm86,4v-88,4,-60,-111,-64,-192r33,0r0,120v-5,61,77,48,87,12r0,-132r33,0r0,188r-33,0r0,-26v-7,13,-35,30,-56,30",w:196},"\u00fc":{d:"86,4v-88,4,-60,-111,-64,-192r33,0r0,120v-5,61,77,48,87,12r0,-132r33,0r0,188r-33,0r0,-26v-7,13,-35,30,-56,30xm32,-246v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm115,-246v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:196},"\u00b0":{d:"126,-225v0,20,-17,37,-37,37v-20,0,-37,-17,-37,-37v0,-20,17,-37,37,-37v20,0,37,16,37,37xm114,-225v0,-14,-11,-25,-25,-25v-13,0,-24,12,-24,25v0,13,11,24,24,24v13,0,25,-11,25,-24"},"\u00a2":{d:"66,-26v-57,-32,-35,-156,44,-146r12,-42r18,0r-13,44v13,3,23,7,30,13r-13,20v-4,-4,-12,-8,-23,-10r-30,104v22,7,39,2,57,-11r10,24v-18,12,-48,18,-74,11r-13,46r-20,0xm102,-148v-38,2,-53,66,-27,94"},"\u00a3":{d:"39,-150v-5,-63,16,-112,72,-112v24,0,41,7,51,21r-16,24v-24,-27,-80,-22,-72,39r0,28r35,0r0,26r-35,0r0,92v35,0,66,3,81,-20r24,20v-17,39,-96,32,-156,32r0,-24v30,-11,11,-65,16,-100r-14,0r0,-26r14,0"},"\u00a7":{d:"128,-95v46,33,11,99,-49,99v-26,0,-46,-5,-61,-16r12,-33v17,22,83,28,82,-8v0,-39,-94,-29,-93,-77v0,-16,6,-28,17,-35v-14,-8,-21,-21,-21,-42v-1,-53,82,-70,120,-38r-11,33v-21,-31,-91,-19,-67,19v24,17,85,17,85,66v0,11,-5,22,-14,32xm105,-108v12,-30,-14,-45,-43,-47v-21,11,-7,35,9,39v6,2,18,4,34,8",w:163},"\u00b6":{d:"21,-189v0,-38,17,-73,54,-73r89,0r0,306r-27,0r0,-284r-28,0r0,284r-27,0r0,-157v-41,0,-61,-25,-61,-76"},"\u00df":{d:"142,-153v73,30,43,192,-50,152r6,-26v50,17,63,-60,34,-90v-13,-13,-41,-25,-41,-47v5,-14,27,-22,27,-43v0,-19,-10,-29,-30,-29v-27,0,-31,24,-31,57r0,179r-33,0r0,-196v-1,-41,21,-66,59,-69v68,-5,80,65,43,99v0,9,11,9,16,13",w:196},"\u00ae":{d:"137,2v-65,0,-119,-54,-119,-118v0,-64,55,-119,119,-119v64,0,119,55,119,119v0,64,-54,118,-119,118xm137,-17v53,0,99,-46,99,-99v0,-53,-46,-99,-99,-99v-53,0,-99,46,-99,99v0,53,46,99,99,99xm174,-45r-37,-62r-21,0r0,62r-21,0r0,-146v44,-2,90,0,90,41v0,19,-9,31,-28,39r40,66r-23,0xm116,-124v27,-1,48,3,48,-25v0,-21,-22,-26,-48,-24r0,49",w:256},"\u00a9":{d:"137,2v-65,0,-119,-54,-119,-118v0,-64,55,-119,119,-119v64,0,119,55,119,119v0,64,-54,118,-119,118xm137,-17v53,0,99,-46,99,-99v0,-53,-46,-99,-99,-99v-53,0,-99,46,-99,99v0,53,46,99,99,99xm97,-115v-6,45,47,73,74,41r11,15v-41,42,-106,5,-106,-58v0,-55,50,-92,100,-68r-6,17v-35,-22,-79,9,-73,53",w:256},"\u00b4":{d:"131,-284r-40,58r-25,0r30,-58r35,0"},"\u00a8":{d:"33,-246v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm116,-246v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20"},"\u00c6":{d:"146,-54r-79,0r-25,54r-39,0r124,-258r172,0r0,32r-118,0r0,72r85,0r0,30r-85,0r0,92r116,0r0,32r-151,0r0,-54xm146,-226r-68,146r68,0r0,-146",w:312},"\u00d8":{d:"226,-131v0,101,-80,167,-164,119r-12,16r-38,0r28,-37v-55,-72,-28,-229,75,-229v25,0,47,5,64,17r12,-17r35,0r-25,39v17,23,25,53,25,92xm115,-230v-72,-2,-78,108,-53,165r98,-151v-12,-10,-27,-14,-45,-14xm80,-40v57,38,109,-17,109,-91v0,-24,-3,-43,-10,-59",w:236},"\u00b1":{d:"107,-124r62,0r0,25r-62,0r0,60r-24,0r0,-60r-62,0r0,-25r62,0r0,-60r24,0r0,60xm169,-21r0,25r-148,0r0,-25r148,0"},"\u00a5":{d:"164,-83r-45,0r0,83r-35,0r0,-83r-43,0r0,-24r43,0r0,-8r-77,-143r36,0r58,113r65,-113r35,0r-82,143r0,8r45,0r0,24",w:205},"\u00aa":{d:"15,-176v1,-32,34,-47,72,-44v2,-29,-42,-25,-55,-11r-10,-19v31,-23,96,-13,89,35v1,21,-5,51,10,58r0,12v-16,0,-27,-5,-31,-14v-18,22,-75,18,-75,-17xm39,-179v0,21,39,18,49,3r0,-27v-24,-2,-49,4,-49,24",w:132},"\u00ba":{d:"67,-145v-34,0,-55,-24,-55,-59v0,-33,21,-59,55,-58v33,0,54,23,54,58v0,35,-20,59,-54,59xm36,-204v0,26,11,39,31,39v20,0,30,-13,30,-39v0,-26,-10,-38,-30,-38v-20,0,-31,12,-31,38",w:132},"\u00e6":{d:"151,-161v48,-65,173,-19,147,70r-134,0v-7,61,70,87,106,47r14,27v-27,25,-90,30,-121,4v1,6,1,12,2,17r-29,0v-2,-8,-2,-9,-6,-26v-27,42,-116,31,-116,-27v0,-52,58,-82,113,-67v6,-54,-64,-55,-89,-29r-14,-28v30,-26,112,-26,127,12xm269,-115v3,-44,-62,-66,-90,-33v-10,11,-15,22,-15,33r105,0xm127,-92v-35,-14,-80,9,-80,40v0,42,63,35,80,5r0,-45",w:314},"\u00f8":{d:"160,-164v44,55,18,168,-64,168v-19,0,-36,-5,-49,-14r-10,14r-26,0r21,-29v-44,-55,-17,-167,64,-167v19,0,36,5,49,14r10,-14r26,0xm126,-153v-40,-28,-82,6,-82,58v0,17,3,32,8,43xm66,-35v39,31,82,-8,82,-60v0,-17,-3,-30,-8,-41",w:196},"\u00bf":{d:"98,-165v0,14,-13,26,-27,26v-13,0,-26,-13,-26,-26v0,-14,12,-27,26,-27v14,0,27,13,27,27xm121,59v-43,36,-139,5,-109,-64v15,-36,66,-53,52,-108r23,0v28,61,-42,83,-47,129v-4,34,49,40,68,18",w:132},"\u00a1":{d:"94,-165v0,13,-13,26,-26,26v-14,0,-27,-12,-27,-26v0,-14,13,-27,27,-27v14,0,26,13,26,27xm73,-121v15,97,13,113,13,195r-39,0v0,-81,-2,-100,13,-195r13,0",w:132},"\u00ac":{d:"169,-156r0,86r-25,0r0,-61r-123,0r0,-25r148,0"},"\u00ab":{d:"93,-94r0,-11r62,-43r0,22r-37,27r37,25r0,22xm23,-94r0,-11r62,-43r0,22r-37,27r37,25r0,22"},"\u00bb":{d:"162,-94r-62,42r0,-22r37,-25r-37,-27r0,-22r62,43r0,11xm92,-94r-62,42r0,-22r37,-25r-37,-27r0,-22r62,43r0,11"},"\u00a0":{w:108},"\u00c0":{d:"173,0r-18,-54r-96,0r-19,54r-39,0r104,-261r10,0r97,261r-39,0xm108,-194r-40,114r77,0xm101,-279r-39,-58r34,0r30,58r-25,0",w:212},"\u00c3":{d:"84,-315v25,-2,51,31,64,0r16,0v-8,49,-49,35,-77,23v-8,0,-15,4,-19,13r-16,0v3,-17,14,-35,32,-36xm173,0r-18,-54r-96,0r-19,54r-39,0r104,-261r10,0r97,261r-39,0xm108,-194r-40,114r77,0",w:212},"\u00d5":{d:"96,-315v25,-2,51,31,64,0r16,0v-8,49,-49,35,-77,23v-8,0,-15,4,-19,13r-16,0v3,-17,14,-35,32,-36xm118,4v-68,0,-104,-62,-104,-135v0,-69,38,-132,104,-131v75,0,111,54,111,131v0,78,-36,135,-111,135xm118,-230v-50,0,-66,45,-67,99v-1,53,20,104,67,104v53,0,75,-45,74,-104v0,-66,-25,-99,-74,-99",w:242},"\u00f7":{d:"96,-202v13,0,26,13,26,26v0,14,-12,27,-26,27v-14,0,-27,-13,-27,-27v0,-14,13,-26,27,-26xm169,-124r0,25r-148,0r0,-25r148,0xm96,-70v14,0,26,12,26,26v0,14,-12,27,-26,27v-14,0,-27,-13,-27,-27v0,-14,12,-26,27,-26"},"\u00ff":{d:"22,44v37,2,60,-26,45,-64r-65,-168r34,0r56,145r49,-145r34,0r-79,220v-8,23,-42,43,-74,42r0,-30xm26,-246v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm109,-246v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:177},"\u00c2":{d:"137,-279r-29,-33r-31,33r-30,0r52,-59r19,0r53,59r-34,0xm173,0r-18,-54r-96,0r-19,54r-39,0r104,-261r10,0r97,261r-39,0xm108,-194r-40,114r77,0",w:212},"\u00ca":{d:"126,-279r-28,-33r-32,33r-30,0r52,-59r19,0r54,59r-35,0xm62,-226r0,72r85,0r0,30r-85,0r0,92r116,0r0,32r-152,0r0,-258r154,0r0,32r-118,0",w:192},"\u00c1":{d:"173,0r-18,-54r-96,0r-19,54r-39,0r104,-261r10,0r97,261r-39,0xm108,-194r-40,114r77,0xm151,-337r-40,58r-25,0r30,-58r35,0",w:212},"\u00cb":{d:"62,-226r0,72r85,0r0,30r-85,0r0,92r116,0r0,32r-152,0r0,-258r154,0r0,32r-118,0xm40,-299v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm123,-299v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:192},"\u00c8":{d:"62,-226r0,72r85,0r0,30r-85,0r0,92r116,0r0,32r-152,0r0,-258r154,0r0,32r-118,0xm104,-279r-39,-58r34,0r30,58r-25,0",w:192},"\u00cd":{d:"33,0r0,-258r35,0r0,258r-35,0xm102,-337r-40,58r-25,0r30,-58r35,0",w:100},"\u00ce":{d:"76,-279r-29,-33r-31,33r-30,0r52,-59r19,0r54,59r-35,0xm33,0r0,-258r35,0r0,258r-35,0",w:100},"\u00cf":{d:"33,0r0,-258r35,0r0,258r-35,0xm-6,-299v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm77,-299v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:100},"\u00cc":{d:"33,0r0,-258r35,0r0,258r-35,0xm58,-279r-39,-58r34,0r30,58r-25,0",w:100},"\u00d3":{d:"118,4v-68,0,-104,-62,-104,-135v0,-69,38,-132,104,-131v75,0,111,54,111,131v0,78,-36,135,-111,135xm118,-230v-50,0,-66,45,-67,99v-1,53,20,104,67,104v53,0,75,-45,74,-104v0,-66,-25,-99,-74,-99xm156,-337r-40,58r-25,0r30,-58r35,0",w:242},"\u00d4":{d:"146,-279r-29,-33r-31,33r-31,0r53,-59r19,0r53,59r-34,0xm118,4v-68,0,-104,-62,-104,-135v0,-69,38,-132,104,-131v75,0,111,54,111,131v0,78,-36,135,-111,135xm118,-230v-50,0,-66,45,-67,99v-1,53,20,104,67,104v53,0,75,-45,74,-104v0,-66,-25,-99,-74,-99",w:242},"\u00d2":{d:"118,4v-68,0,-104,-62,-104,-135v0,-69,38,-132,104,-131v75,0,111,54,111,131v0,78,-36,135,-111,135xm118,-230v-50,0,-66,45,-67,99v-1,53,20,104,67,104v53,0,75,-45,74,-104v0,-66,-25,-99,-74,-99xm126,-279r-39,-58r34,0r30,58r-25,0",w:242},"\u00da":{d:"116,4v-56,0,-90,-28,-90,-83r0,-179r36,0r0,177v-1,32,22,54,54,54v34,0,56,-21,56,-55r0,-176r35,0r0,180v1,53,-36,82,-91,82xm150,-337r-40,58r-25,0r30,-58r35,0",w:233},"\u00db":{d:"139,-279r-28,-33r-32,33r-30,0r52,-59r19,0r54,59r-35,0xm116,4v-56,0,-90,-28,-90,-83r0,-179r36,0r0,177v-1,32,22,54,54,54v34,0,56,-21,56,-55r0,-176r35,0r0,180v1,53,-36,82,-91,82",w:233},"\u00d9":{d:"116,4v-56,0,-90,-28,-90,-83r0,-179r36,0r0,177v-1,32,22,54,54,54v34,0,56,-21,56,-55r0,-176r35,0r0,180v1,53,-36,82,-91,82xm116,-279r-39,-58r34,0r30,58r-25,0",w:233},"\u00b8":{d:"74,11v34,-3,50,42,24,60v-9,6,-21,9,-36,9r-4,-17v15,0,31,-4,32,-18v0,-9,-5,-13,-16,-13r0,-21"},"\u00a6":{d:"83,-122r0,-127r26,0r0,127r-26,0xm83,49r0,-128r26,0r0,128r-26,0"},"\u00d0":{d:"26,-258v117,-14,177,23,181,119v4,114,-65,149,-181,139r0,-121r-23,0r0,-29r23,0r0,-108xm62,-33v73,11,108,-32,108,-103v0,-71,-38,-101,-108,-90r0,76r26,0r0,29r-26,0r0,88",w:220},"\u00f0":{d:"11,-95v0,-63,44,-110,111,-94v-8,-13,-15,-24,-21,-32r-30,17r-8,-16r28,-15v-11,-13,-21,-22,-31,-30r44,0v3,4,8,9,14,16r30,-16r8,15r-28,15v34,54,51,76,53,140v2,57,-30,99,-85,99v-55,0,-85,-42,-85,-99xm96,-162v-35,1,-52,30,-52,67v0,45,17,69,52,69v36,-1,52,-31,52,-69v0,-45,-18,-67,-52,-67",w:197},"\u00dd":{d:"120,-115r0,115r-35,0r0,-115r-83,-143r36,0r65,113r64,-113r36,0xm144,-337r-40,58r-25,0r30,-58r35,0",w:205},"\u00de":{d:"187,-146v-1,68,-50,97,-125,91r0,55r-36,0r0,-258r36,0r0,34v77,-3,126,22,125,78xm151,-142v0,-46,-38,-51,-89,-50r0,105v52,3,89,-10,89,-55",w:200},"\u00fe":{d:"188,-94v8,73,-73,124,-131,84r0,84r-33,0r0,-339r33,0r0,92v55,-48,140,0,131,79xm153,-95v9,-61,-60,-85,-96,-51r0,106v40,32,104,6,96,-55",w:199},"\u00b9":{d:"77,-105r0,-118r-33,20r0,-20v23,-12,40,-24,50,-37r6,0r0,155r-23,0",w:162},"\u00b2":{d:"28,-232v5,-15,24,-30,43,-30v91,0,20,106,-2,137r58,0r0,20r-95,0v14,-40,62,-72,62,-116v0,-31,-45,-25,-52,1",w:162},"\u00b3":{d:"69,-262v48,0,61,62,22,75v19,6,29,20,29,40v0,45,-60,55,-87,32r10,-18v14,15,58,12,55,-16v-2,-18,-12,-29,-33,-29v1,-5,-2,-14,1,-17v17,0,26,-9,26,-25v0,-24,-35,-26,-46,-13r-9,-16v7,-9,17,-13,32,-13",w:163},"\u00bd":{d:"59,6r-22,0r171,-268r22,0xm51,-105r0,-118r-33,20r0,-20v23,-12,39,-24,49,-37r7,0r0,155r-23,0xm176,-127v4,-16,22,-31,42,-30v92,7,20,106,-2,136r59,0r0,21r-95,0v14,-40,62,-72,62,-116v0,-31,-45,-28,-52,0",w:293},"\u00bc":{d:"61,6r-22,0r171,-268r22,0xm46,-105r0,-116r-32,18r0,-20v23,-12,40,-24,50,-37r6,0r0,155r-24,0xm246,-37r0,37r-23,0r0,-37r-71,0r0,-12r87,-106r7,0r0,100r16,0r0,18r-16,0xm223,-110r-44,55r44,0r0,-55",w:293},"\u00be":{d:"75,6r-22,0r171,-268r22,0xm59,-262v48,0,61,62,22,75v46,13,37,84,-23,84v-15,0,-27,-4,-36,-12r10,-18v14,15,58,12,55,-16v-2,-19,-12,-29,-32,-29v1,-5,-2,-14,1,-17v17,0,26,-9,26,-25v0,-23,-35,-27,-46,-13r-10,-16v7,-9,18,-13,33,-13xm251,-37r0,37r-22,0r0,-37r-71,0r0,-12r86,-106r7,0r0,100r16,0r0,18r-16,0xm229,-110r-45,55r45,0r0,-55",w:293},"\u00b5":{d:"140,-26v-10,26,-54,38,-83,23r0,77r-33,0r0,-262r33,0v5,60,-21,162,41,162v20,0,37,-12,42,-26r0,-136r33,0r0,188r-33,0r0,-26",w:196},"\u00fd":{d:"22,44v37,2,60,-26,45,-64r-65,-168r34,0r56,145r49,-145r34,0r-79,220v-8,23,-42,43,-74,42r0,-30xm133,-284r-40,58r-25,0r30,-58r35,0",w:177},"\u00d7":{d:"96,-128r55,-56r18,18r-56,55r55,56r-17,17r-55,-55r-56,56r-18,-18r56,-55r-56,-57r17,-17"},"\u00ad":{d:"28,-89r0,-31r75,0r0,31r-75,0",w:132},"\u00af":{d:"-1,-271r0,-23r190,0r0,23r-190,0"},"\u00b7":{d:"36,-114v0,-14,12,-27,26,-27v14,0,27,13,27,27v0,14,-13,26,-27,26v-13,0,-26,-13,-26,-26",w:132},"\u00a4":{d:"164,-43r-25,-26v-28,20,-61,20,-89,0r-25,26r-15,-16r25,-24v-19,-30,-19,-59,0,-89r-25,-24r15,-16r25,25v28,-19,61,-19,89,0r25,-25r15,16r-25,24v19,30,19,59,0,89r25,24xm94,-180v-29,0,-53,24,-53,52v0,29,23,53,53,53v30,0,53,-24,53,-53v0,-29,-24,-52,-53,-52"}}});Cufon.registerFont({w:210,face:{"font-family":"trebuchet","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 3 2 2 2 2 2 4",ascent:"288",descent:"-72","x-height":"4",bbox:"-28 -334 326 80","underline-thickness":"35.1562","underline-position":"-28.3008","unicode-range":"U+0020-U+00FF"},glyphs:{" ":{w:108,k:{Y:7,T:7,A:20}},"!":{d:"75,-67r-18,0v-15,-95,-15,-113,-14,-195r46,0v1,81,1,100,-14,195xm38,-25v0,-15,13,-29,29,-29v16,0,29,14,29,29v0,15,-14,29,-29,29v-15,0,-29,-14,-29,-29",w:132},"\"":{d:"117,-182r-33,0r-5,-76r44,0xm50,-182r-33,0r-5,-76r44,0",w:132},"#":{d:"206,-160r-37,0r-15,56r27,0r0,32r-36,0r-21,76r-34,0r21,-76r-41,0r-20,76r-35,0r21,-76r-25,0r0,-32r34,0r14,-56r-27,0r0,-32r36,0r19,-69r34,0r-19,69r40,0r19,-69r34,0r-18,69r29,0r0,32xm135,-160r-41,0r-15,56r41,0"},"$":{d:"160,-124v42,39,20,120,-37,125r0,40r-40,0r0,-37v-20,-1,-39,-7,-56,-18r17,-41v18,13,36,19,53,19v27,0,41,-9,41,-28v0,-64,-115,-50,-110,-129v2,-34,25,-59,55,-66r0,-32r40,0r0,30v22,2,37,8,48,16r-13,39v-26,-21,-83,-29,-85,13v-7,24,69,53,87,69"},"%":{d:"114,-198v0,36,-21,62,-54,62v-36,0,-55,-21,-55,-65v0,-34,23,-61,56,-61v34,0,53,26,53,64xm38,-200v0,20,6,37,20,37v15,0,23,-13,23,-37v0,-23,-6,-35,-20,-35v-15,0,-23,12,-23,35xm59,4r-35,0r162,-266r34,0xm237,-59v0,36,-21,63,-54,63v-36,0,-55,-22,-55,-66v0,-34,23,-61,56,-61v34,0,53,26,53,64xm161,-60v0,19,5,36,20,36v15,0,23,-12,23,-36v0,-23,-6,-35,-20,-35v-15,0,-23,12,-23,35",w:246},"&":{d:"186,-121v3,34,-11,86,24,86v8,0,16,-2,24,-6r0,39v-24,7,-52,11,-71,-6v-64,30,-143,5,-143,-74v0,-25,9,-45,26,-63v-50,-44,-10,-117,57,-117v25,0,47,6,63,19r-19,32v-29,-26,-78,-21,-80,20v0,13,6,23,17,32r58,0r0,-29r44,-17r0,47r44,0r0,37r-44,0xm144,-41v-4,-22,-1,-54,-2,-80r-63,0v-27,30,-15,86,35,86v13,0,23,-2,30,-6",w:254},"'":{d:"59,-182r-33,0r-5,-76r44,0",w:82},"(":{d:"114,80v-75,-46,-112,-177,-61,-276v17,-33,37,-55,61,-67r0,25v-48,52,-45,244,0,288r0,30",w:132},")":{d:"29,-263v72,36,111,177,63,268v-16,30,-35,56,-63,75r0,-30v44,-44,47,-236,0,-288r0,-25",w:132},"*":{d:"144,-205v-14,7,-29,13,-50,13v16,8,30,19,40,33r-34,26v-10,-13,-18,-27,-24,-44v-6,18,-18,31,-29,44r-30,-27v12,-12,23,-24,40,-31v-21,0,-36,-7,-51,-13r17,-36v16,6,32,13,41,26v-6,-15,-12,-29,-10,-52r42,1v2,21,-3,36,-8,51v11,-12,25,-21,42,-26",w:155},"+":{d:"125,-94r0,62r-35,0r0,-62r-61,0r0,-35r61,0r0,-61r35,0r0,61r62,0r0,35r-62,0"},",":{d:"66,-49v34,1,36,47,19,72v-8,11,-23,26,-47,43r-15,-19v21,-16,32,-29,32,-38v0,-16,-23,-18,-20,-33v0,-15,15,-26,31,-25",w:132},"-":{d:"19,-84r0,-41r93,0r0,41r-93,0",w:132},"\u2010":{d:"19,-84r0,-41r93,0r0,41r-93,0",w:132},".":{d:"62,9v-17,0,-31,-15,-31,-32v0,-17,14,-32,31,-32v17,0,32,14,32,32v0,18,-15,32,-32,32",w:132},"\/":{d:"42,0r-39,0r97,-259r39,0",w:140},"0":{d:"105,4v-73,0,-91,-57,-92,-141v-1,-64,34,-126,95,-125v60,0,90,44,90,131v0,73,-28,135,-93,135xm150,-133v0,-56,-2,-92,-43,-92v-31,0,-46,31,-46,92v1,54,4,94,43,100v45,-4,46,-41,46,-100"},"1":{d:"100,0r0,-186r-52,32r0,-44v34,-16,59,-37,79,-61r19,0r0,259r-46,0"},"2":{d:"97,-262v86,0,100,74,55,141r-53,80r97,0r0,41r-169,0r0,-13v32,-56,93,-113,106,-181v-1,-41,-66,-36,-78,-1r-31,-24v11,-23,39,-43,73,-43"},"3":{d:"183,-74v0,80,-110,101,-158,52r23,-35v25,33,90,30,88,-19v-1,-28,-22,-46,-55,-42r0,-38v29,1,46,-9,46,-33v0,-41,-52,-43,-73,-16r-22,-32v36,-43,143,-30,143,42v0,25,-11,44,-33,57v27,13,41,34,41,64"},"4":{d:"173,-67r0,67r-44,0r0,-67r-117,0r0,-27r141,-165r20,0r0,155r26,0r0,37r-26,0xm129,-181r-66,77r66,0r0,-77"},"5":{d:"80,-174v58,-19,107,18,107,79v0,97,-97,124,-158,75r18,-37v39,36,92,30,92,-33v0,-56,-57,-64,-85,-29r-18,-12r0,-128r139,0r0,39r-95,0r0,46"},"6":{d:"193,-81v0,47,-34,85,-80,85v-99,0,-112,-140,-55,-208v25,-30,49,-52,76,-59r24,26v-31,15,-66,48,-77,80v57,-26,112,15,112,76xm146,-80v0,-26,-12,-46,-36,-46v-26,0,-39,15,-39,44v0,31,13,47,40,47v24,0,35,-19,35,-45"},"7":{d:"94,0r-50,0v19,-59,52,-131,99,-216r-118,0r0,-43r177,0v3,32,-13,44,-23,64r-49,102v-14,31,-26,62,-36,93"},"8":{d:"104,4v-93,0,-106,-116,-42,-145v-16,-10,-32,-32,-32,-56v-1,-41,33,-65,75,-65v45,0,74,23,75,65v0,21,-20,51,-36,57v20,8,45,40,45,66v0,49,-35,78,-85,78xm109,-159v25,-9,39,-64,-4,-64v-31,0,-37,30,-19,48v7,8,15,13,23,16xm104,-35v23,0,40,-13,40,-35v0,-18,-15,-36,-44,-53v-22,13,-34,29,-34,49v0,22,16,39,38,39"},"9":{d:"20,-176v0,-49,33,-86,80,-86v99,0,112,140,55,208v-25,30,-48,52,-75,59r-25,-26v36,-20,61,-45,76,-77v-58,19,-111,-18,-111,-78xm103,-223v-24,0,-36,20,-36,45v-1,26,13,46,36,47v26,0,40,-15,40,-44v0,-32,-13,-48,-40,-48"},":":{d:"62,-134v-17,0,-31,-14,-31,-31v0,-18,13,-32,31,-32v18,-1,33,14,32,32v0,18,-14,31,-32,31xm62,9v-17,0,-31,-15,-31,-32v0,-17,14,-32,31,-32v17,0,32,14,32,32v0,18,-15,32,-32,32",w:132},";":{d:"62,-134v-17,0,-31,-14,-31,-31v0,-18,13,-32,31,-32v18,-1,33,14,32,32v0,18,-14,31,-32,31xm66,-49v34,1,36,47,19,72v-8,11,-23,26,-47,43r-15,-19v21,-16,32,-29,32,-38v0,-16,-23,-18,-20,-33v0,-15,15,-26,31,-25",w:132},"<":{d:"34,-98r0,-28r140,-68r0,41r-93,41r93,42r0,40"},"=":{d:"31,-131r0,-35r158,0r0,35r-158,0xm31,-57r0,-35r158,0r0,35r-158,0"},">":{d:"47,-30r0,-40r92,-42r-92,-41r0,-41r140,68r0,28"},"?":{d:"144,-204v0,58,-72,63,-57,126r-33,0v-26,-52,37,-85,47,-123v0,-31,-47,-32,-65,-9r-18,-34v38,-33,126,-20,126,40xm44,-25v0,-15,13,-29,28,-29v16,0,29,13,29,29v0,16,-14,29,-29,29v-15,0,-28,-14,-28,-29",w:157},"@":{d:"265,-116v0,56,-55,94,-103,64v-28,23,-83,10,-83,-30v0,-30,24,-45,70,-47v-5,-26,-30,-15,-49,-6r-10,-24v38,-28,102,-14,96,45r0,38v26,16,44,-1,44,-40v0,-53,-34,-86,-88,-86v-56,0,-94,44,-94,100v0,86,104,123,158,72r0,36v-85,49,-194,-8,-194,-108v0,-76,55,-132,130,-131v76,0,123,41,123,117xm150,-105v-33,-7,-45,35,-15,38v6,0,11,-2,15,-6r0,-32",w:277},A:{d:"177,0r-19,-52r-88,0r-18,52r-51,0r103,-261r20,0r103,261r-50,0xm114,-182r-31,95r61,0",w:227,k:{y:7,w:7,v:7,Y:32,W:20,V:27,T:34," ":20}},B:{d:"200,-76v0,77,-90,81,-174,76r0,-257v87,-7,159,-10,159,63v0,20,-11,37,-33,49v32,11,48,34,48,69xm72,-221r0,62v33,4,67,-3,67,-33v0,-29,-34,-33,-67,-29xm153,-82v0,-42,-36,-44,-81,-41r0,85v45,4,81,-1,81,-44",w:214},C:{d:"14,-128v0,-72,48,-136,118,-134v30,0,53,6,71,18r-19,38v-53,-41,-122,7,-122,80v0,50,24,89,69,90v24,0,43,-9,57,-26r22,37v-19,20,-46,29,-82,29v-75,1,-114,-55,-114,-132",w:220},D:{d:"26,-257v123,-15,186,18,191,118v5,115,-71,149,-191,139r0,-257xm72,-42v65,10,98,-31,98,-94v0,-63,-37,-91,-98,-81r0,175",w:231},E:{d:"72,-217r0,60r85,0r0,39r-85,0r0,77r117,0r0,41r-163,0r0,-258r165,0r0,41r-119,0",w:204},F:{d:"72,-217r0,60r91,0r0,39r-91,0r0,118r-46,0r0,-258r170,0r0,41r-124,0",k:{u:17,o:17,e:17,a:17,A:20,".":40,",":40}},G:{d:"14,-128v0,-108,119,-173,203,-109r-20,37v-52,-45,-147,-9,-135,73v-7,69,66,115,120,77r0,-50r-36,0r0,-39r82,0r0,115v-20,17,-58,28,-94,28v-75,1,-120,-55,-120,-132",w:241},H:{d:"175,0r0,-116r-103,0r0,116r-46,0r0,-258r46,0r0,101r103,0r0,-101r45,0r0,258r-45,0",w:246},I:{d:"27,0r0,-258r46,0r0,258r-46,0",w:100},J:{d:"168,-258v-6,112,34,268,-92,262v-42,-2,-71,-24,-73,-64r41,0v4,15,16,23,37,23v33,-1,41,-23,41,-59r0,-162r46,0",w:191},K:{d:"172,0r-71,-110r-29,40r0,70r-46,0r0,-258r46,0r0,124r88,-124r52,0r-81,113r96,145r-55,0",w:222},L:{d:"26,0r0,-258r46,0r0,217r116,0r0,41r-162,0",w:198,k:{y:13,Y:27,W:27,V:27,T:27," ":13}},M:{d:"266,0r-44,0r-27,-139r-51,143r-17,0r-52,-143r-27,139r-44,0r51,-258r25,0r55,174r55,-174r24,0",w:268},N:{d:"195,4r-125,-163r0,159r-44,0r0,-258r22,0r122,156r0,-156r44,0r0,262r-19,0",w:240},O:{d:"121,4v-74,0,-107,-58,-107,-135v-1,-70,42,-131,111,-131v76,0,115,52,114,131v-1,79,-39,136,-118,135xm125,-221v-45,1,-63,40,-63,90v0,51,14,95,59,95v51,0,71,-39,71,-95v0,-60,-22,-90,-67,-90",w:253},P:{d:"26,-257v95,-5,167,-6,171,75v3,66,-48,94,-125,87r0,95r-46,0r0,-257xm72,-135v43,4,78,-3,78,-44v0,-31,-36,-44,-78,-39r0,83",w:211,k:{o:17,e:17,a:17,A:27,".":46,",":46," ":7}},Q:{d:"123,-262v77,0,117,53,116,132v0,62,-20,102,-60,123v14,19,59,25,92,18r0,42v-57,9,-106,-14,-127,-49v-84,14,-130,-53,-130,-134v0,-71,41,-132,109,-132xm123,-221v-46,1,-61,41,-61,91v0,47,19,94,61,95v49,0,70,-42,69,-95v0,-61,-23,-91,-69,-91",w:255},R:{d:"196,-184v-2,31,-23,60,-48,68r76,116r-52,0r-69,-106v-7,0,-17,-1,-29,-2r0,108r-48,0r0,-258v81,-7,176,-4,170,74xm148,-185v0,-35,-38,-35,-74,-33r0,72v41,2,74,3,74,-39",w:219,k:{Y:23,W:16,V:13,T:15}},S:{d:"147,-124v51,50,10,128,-68,128v-24,0,-46,-6,-65,-18r17,-41v18,13,36,19,53,19v27,0,40,-9,40,-28v0,-65,-117,-50,-109,-129v-7,-68,99,-86,143,-52r-14,39v-26,-21,-82,-28,-84,13v-7,24,70,53,87,69",w:184},T:{d:"131,-217r0,217r-46,0r0,-217r-81,0r0,-41r213,0r0,41r-86,0",w:220,k:{y:27,w:29,u:33,s:40,r:37,o:46,i:13,e:40,c:40,a:40,O:21,A:34,";":40,":":40,".":40,"-":28,",":40," ":7}},U:{d:"120,4v-58,0,-93,-30,-94,-85r0,-177r46,0r0,175v1,28,18,48,48,47v32,0,51,-17,52,-48r0,-174r46,0r0,178v0,54,-42,84,-98,84",w:243},V:{d:"122,4r-25,0r-96,-262r50,0r60,175r63,-175r49,0",w:223,k:{y:13,u:19,r:18,o:24,i:7,e:20,a:27,A:27,";":13,":":13,".":33,"-":20,",":40}},W:{d:"234,4r-19,0r-56,-163r-55,163r-19,0r-84,-262r48,0r48,156r52,-156r20,0r52,156r49,-156r47,0",w:318,k:{y:3,u:7,r:7,o:7,e:7,a:13,A:20,";":7,":":7,".":30,"-":7,",":31}},X:{d:"166,0r-61,-93r-56,93r-48,0r77,-133r-71,-125r47,0r52,87r57,-87r48,0r-81,125r85,133r-49,0",w:216},Y:{d:"133,-106r0,106r-45,0r0,-106r-87,-152r48,0r61,110r62,-110r48,0",w:220,k:{v:20,u:20,q:33,p:27,o:33,i:13,e:33,a:27,A:32,";":23,":":20,".":46,"-":33,",":46," ":7}},Z:{d:"14,0r0,-15r107,-202r-105,0r0,-41r168,0r0,15r-108,202r112,0r0,41r-174,0",w:201},"[":{d:"26,74r0,-339r92,0r0,39r-46,0r0,261r46,0r0,39r-92,0",w:144},"\\":{d:"93,0r-94,-259r36,0r94,259r-36,0",w:127},"]":{d:"118,74r-92,0r0,-39r47,0r0,-261r-47,0r0,-39r92,0r0,339",w:144},"^":{d:"143,-159r-38,-63r-38,63r-34,0r63,-100r19,0r62,100r-34,0"},_:{d:"-1,59r0,-37r213,0r0,37r-213,0"},"`":{d:"105,-214r-40,-51r47,0r30,51r-37,0"},a:{d:"183,-10v-12,24,-49,13,-55,-9v-28,40,-121,26,-117,-36v3,-54,54,-75,113,-67v5,-38,-58,-39,-84,-25r-9,-34v15,-7,33,-11,54,-11v79,0,86,53,83,134v0,25,5,42,15,48xm124,-89v-35,-7,-69,4,-69,32v0,17,10,26,30,26v33,1,42,-23,39,-58",w:191},b:{d:"194,-99v0,79,-75,128,-139,89r-10,14r-25,0r0,-262r44,-11r0,88v61,-33,130,14,130,82xm64,-45v35,28,94,1,85,-52v7,-51,-52,-73,-85,-46r0,98",w:209},c:{d:"11,-92v0,-83,96,-128,160,-81r-18,33v-35,-33,-103,-8,-96,48v-6,59,64,75,100,43r16,34v-64,43,-162,10,-162,-77",w:184},d:{d:"15,-91v0,-70,63,-123,130,-92r0,-75r44,-11r0,269r-44,0r0,-11v-56,39,-130,-4,-130,-80xm61,-92v-7,51,52,73,84,47r0,-98v-37,-30,-89,1,-84,51",w:209},e:{d:"105,-192v59,0,103,47,87,111r-135,0v-2,50,71,61,100,32r17,34v-15,13,-38,19,-69,19v-57,0,-94,-37,-94,-96v0,-56,41,-99,94,-100xm59,-114r92,0v-3,-28,-18,-41,-45,-41v-25,0,-41,13,-47,41",w:206},f:{d:"34,-188v0,-58,48,-92,108,-71r-13,34v-31,-14,-54,4,-52,37r39,0r0,36r-38,0r0,152r-44,0r0,-152r-28,0r0,-36r28,0",w:133},g:{d:"175,13v-6,70,-118,77,-165,35r27,-34v15,14,33,21,52,21v38,8,65,-38,16,-38v-35,0,-89,10,-89,-29v0,-14,13,-27,25,-31v-60,-34,-28,-129,44,-129v17,0,32,3,43,9r17,-20r30,28r-20,15v30,54,-9,126,-79,108v-8,0,-30,19,-5,19v44,-12,108,-5,104,46xm88,-156v-20,0,-34,13,-34,34v0,21,13,37,34,37v20,0,33,-16,32,-37v0,-17,-13,-34,-32,-34",w:180},h:{d:"68,-176v44,-36,122,-8,122,60r0,116r-44,0v-6,-58,24,-154,-40,-155v-15,0,-33,11,-38,20r0,135r-44,0r0,-258r44,-11r0,93",w:213},i:{d:"33,-236v0,-14,11,-25,25,-25v14,0,26,12,26,25v0,13,-13,26,-26,26v-13,0,-25,-12,-25,-26xm36,0r0,-152r-25,0r0,-36r69,0r0,188r-44,0",w:107},j:{d:"53,-236v0,-14,11,-25,25,-25v14,0,26,12,26,25v0,13,-13,26,-26,26v-13,0,-25,-12,-25,-26xm-2,35v40,-1,60,-5,60,-39r0,-148r-34,0r0,-36r78,0r0,184v-1,59,-40,78,-104,78r0,-39",w:132},k:{d:"144,0r-55,-85r-21,22r0,63r-44,0r0,-258r44,-11r0,153r62,-72r53,0r-63,71r76,117r-52,0",w:197,k:{a:11}},l:{d:"31,-258r44,-11r0,212v0,23,7,37,21,41v-16,30,-65,29,-65,-22r0,-220",w:106},m:{d:"167,-171v36,-39,119,-21,119,47r0,124r-44,0r0,-118v5,-44,-53,-46,-65,-18r0,136r-44,0r0,-125v2,-37,-55,-36,-65,-10r0,135r-44,0r0,-188r30,0r9,16v23,-29,82,-25,104,1",w:309},n:{d:"63,-171v41,-44,126,-16,126,56r0,115r-44,0v-7,-57,25,-155,-40,-155v-14,0,-31,11,-37,19r0,136r-44,0r0,-188r31,0",w:212},o:{d:"102,4v-58,0,-91,-41,-91,-99v0,-56,37,-98,91,-97v58,0,90,38,90,97v0,58,-33,99,-90,99xm102,-156v-31,0,-45,27,-45,61v0,41,15,63,45,63v31,0,45,-28,45,-63v0,-41,-15,-61,-45,-61",w:203},p:{d:"195,-93v0,74,-65,117,-131,88r0,79r-44,0r0,-262r44,0r0,12v57,-42,131,0,131,83xm149,-94v8,-56,-51,-77,-85,-48r0,99v38,23,93,2,85,-51",w:209},q:{d:"15,-92v0,-74,77,-127,139,-85r8,-11r28,0r0,262r-44,0r0,-79v-64,28,-131,-12,-131,-87xm146,-144v-36,-28,-92,2,-85,52v-6,53,47,71,85,49r0,-101"},r:{d:"133,-147v-30,-22,-65,5,-65,40r0,107r-44,0r0,-188r44,0r0,17v16,-22,58,-27,83,-14",w:153,k:{a:11,".":43,",":41}},s:{d:"144,-53v0,59,-87,71,-132,41r16,-35v16,17,67,27,70,-3v-3,-21,-16,-23,-38,-33v-32,-13,-49,-33,-49,-57v0,-55,79,-64,122,-39r-13,35v-12,-13,-62,-23,-63,5v14,35,87,30,87,86",w:155},t:{d:"132,-2v-45,16,-102,1,-102,-56r0,-95r-21,0r0,-35r21,0r0,-39r44,-16r0,55r52,0r0,35r-52,0v6,43,-19,119,29,119v11,0,20,-2,29,-8r0,40",w:142},u:{d:"68,-69v-5,52,67,39,77,10r0,-129r44,0r0,188r-44,0r0,-16v-40,34,-121,26,-121,-50r0,-122r44,0r0,119",w:212},v:{d:"102,4r-16,0r-85,-192r48,0r45,115r48,-115r47,0",w:189,k:{i:-11,".":47,",":47}},w:{d:"209,4r-16,0r-52,-116r-52,116r-16,0r-71,-192r47,0r37,112r46,-112r16,0r48,113r41,-113r43,0",w:282,k:{".":35,",":35}},x:{d:"145,0r-49,-61r-43,61r-52,0r72,-96r-66,-92r50,0r40,57r44,-57r50,0r-72,92r79,96r-53,0",w:198},y:{d:"107,30v-11,27,-45,44,-84,44r0,-39v66,-1,56,-29,37,-77r-59,-146r45,0r52,130r46,-130r45,0",w:192,k:{".":40,",":40}},z:{d:"11,0r0,-15r103,-135r-101,0r0,-38r165,0r0,15r-99,135r100,0r0,38r-168,0",w:190},"{":{d:"83,6v3,32,18,34,59,34r0,34v-54,4,-104,-10,-104,-56v0,-37,39,-106,-24,-106r0,-24v59,-1,24,-63,24,-100v0,-44,51,-58,104,-53r0,32v-29,0,-63,-5,-59,27v6,43,25,82,-23,105v51,20,28,63,23,107",w:156},"|":{d:"89,74r0,-339r36,0r0,339r-36,0"},"}":{d:"119,-212v0,34,-35,100,23,100r0,24v-61,0,-23,70,-23,106v0,46,-51,61,-105,56r0,-34v41,0,57,-1,60,-34v1,-12,-11,-51,-11,-64v0,-17,12,-31,34,-43v-46,-23,-30,-63,-23,-105v5,-32,-31,-27,-60,-27r0,-32v53,-5,105,8,105,53",w:156},"~":{d:"135,-84v-28,3,-65,-32,-78,0r-25,0v3,-23,15,-45,38,-47v24,-3,66,30,80,0r26,0v-8,28,-14,44,-41,47"},"\u00c4":{d:"177,0r-19,-52r-88,0r-18,52r-51,0r103,-261r20,0r103,261r-50,0xm114,-182r-31,95r61,0xm33,-304v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25xm142,-304v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25",w:227},"\u00c5":{d:"114,-315v44,-5,63,60,16,71r97,244r-50,0r-19,-52r-88,0r-18,52r-51,0r96,-244v-46,-11,-27,-76,17,-71xm114,-295v-9,0,-19,7,-19,17v0,11,7,17,19,17v12,0,18,-6,18,-17v0,-11,-6,-17,-18,-17xm144,-87r-30,-95r-31,95r61,0",w:227},"\u00c7":{d:"14,-128v0,-72,48,-136,118,-134v30,0,53,6,71,18r-19,38v-53,-41,-122,7,-122,80v0,50,24,89,69,90v24,0,43,-9,57,-26r22,37v-19,20,-46,29,-82,29v-75,1,-114,-55,-114,-132xm153,41v0,29,-32,41,-62,34r-7,-23v15,5,37,1,35,-14v-1,-7,-6,-17,-13,-18r15,-16v21,4,32,17,32,37",w:220},"\u00c9":{d:"72,-217r0,60r85,0r0,39r-85,0r0,77r117,0r0,41r-163,0r0,-258r165,0r0,41r-119,0xm155,-330r-40,51r-34,0r30,-51r44,0",w:204},"\u00d1":{d:"141,-273v-21,2,-48,-32,-59,0r-26,0v3,-23,16,-44,39,-46v23,-2,50,32,60,0r26,0v-8,28,-13,43,-40,46xm195,4r-125,-163r0,159r-44,0r0,-258r22,0r122,156r0,-156r44,0r0,262r-19,0",w:240},"\u00d6":{d:"121,4v-74,0,-107,-58,-107,-135v-1,-70,42,-131,111,-131v76,0,115,52,114,131v-1,79,-39,136,-118,135xm125,-221v-45,1,-63,40,-63,90v0,51,14,95,59,95v51,0,71,-39,71,-95v0,-60,-22,-90,-67,-90xm48,-304v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25xm157,-304v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25",w:253},"\u00dc":{d:"120,4v-58,0,-93,-30,-94,-85r0,-177r46,0r0,175v1,28,18,48,48,47v32,0,51,-17,52,-48r0,-174r46,0r0,178v0,54,-42,84,-98,84xm41,-304v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25xm150,-304v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25",w:243},"\u00e1":{d:"183,-10v-12,24,-49,13,-55,-9v-28,40,-121,26,-117,-36v3,-54,54,-75,113,-67v5,-38,-58,-39,-84,-25r-9,-34v15,-7,33,-11,54,-11v79,0,86,53,83,134v0,25,5,42,15,48xm124,-89v-35,-7,-69,4,-69,32v0,17,10,26,30,26v33,1,42,-23,39,-58xm139,-265r-40,51r-34,0r30,-51r44,0",w:191},"\u00e0":{d:"183,-10v-12,24,-49,13,-55,-9v-28,40,-121,26,-117,-36v3,-54,54,-75,113,-67v5,-38,-58,-39,-84,-25r-9,-34v15,-7,33,-11,54,-11v79,0,86,53,83,134v0,25,5,42,15,48xm124,-89v-35,-7,-69,4,-69,32v0,17,10,26,30,26v33,1,42,-23,39,-58xm82,-214r-40,-51r47,0r30,51r-37,0",w:191},"\u00e2":{d:"127,-214r-27,-26r-25,26r-47,0r63,-55r19,0r64,55r-47,0xm183,-10v-12,24,-49,13,-55,-9v-28,40,-121,26,-117,-36v3,-54,54,-75,113,-67v5,-38,-58,-39,-84,-25r-9,-34v15,-7,33,-11,54,-11v79,0,86,53,83,134v0,25,5,42,15,48xm124,-89v-35,-7,-69,4,-69,32v0,17,10,26,30,26v33,1,42,-23,39,-58",w:191},"\u00e4":{d:"183,-10v-12,24,-49,13,-55,-9v-28,40,-121,26,-117,-36v3,-54,54,-75,113,-67v5,-38,-58,-39,-84,-25r-9,-34v15,-7,33,-11,54,-11v79,0,86,53,83,134v0,25,5,42,15,48xm124,-89v-35,-7,-69,4,-69,32v0,17,10,26,30,26v33,1,42,-23,39,-58xm16,-239v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25xm125,-239v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25",w:191},"\u00e3":{d:"112,-208v-20,2,-48,-32,-58,0r-26,0v3,-22,16,-43,39,-45v23,-2,50,31,60,0r26,0v-8,28,-14,42,-41,45xm183,-10v-12,24,-49,13,-55,-9v-28,40,-121,26,-117,-36v3,-54,54,-75,113,-67v5,-38,-58,-39,-84,-25r-9,-34v15,-7,33,-11,54,-11v79,0,86,53,83,134v0,25,5,42,15,48xm124,-89v-35,-7,-69,4,-69,32v0,17,10,26,30,26v33,1,42,-23,39,-58",w:191},"\u00e5":{d:"133,-251v0,22,-22,37,-44,37v-23,0,-46,-14,-45,-37v1,-47,89,-49,89,0xm89,-268v-9,0,-19,6,-19,17v0,11,7,17,19,17v12,0,18,-6,18,-17v0,-11,-6,-17,-18,-17xm183,-10v-12,24,-49,13,-55,-9v-28,40,-121,26,-117,-36v3,-54,54,-75,113,-67v5,-38,-58,-39,-84,-25r-9,-34v15,-7,33,-11,54,-11v79,0,86,53,83,134v0,25,5,42,15,48xm124,-89v-35,-7,-69,4,-69,32v0,17,10,26,30,26v33,1,42,-23,39,-58",w:191},"\u00e7":{d:"11,-92v0,-83,96,-128,160,-81r-18,33v-35,-33,-103,-8,-96,48v-6,59,64,75,100,43r16,34v-64,43,-162,10,-162,-77xm125,41v0,29,-32,41,-62,34r-7,-23v15,5,37,1,35,-14v-1,-7,-6,-17,-13,-18r15,-16v21,4,32,17,32,37",w:184},"\u00e9":{d:"105,-192v59,0,103,47,87,111r-135,0v-2,50,71,61,100,32r17,34v-15,13,-38,19,-69,19v-57,0,-94,-37,-94,-96v0,-56,41,-99,94,-100xm59,-114r92,0v-3,-28,-18,-41,-45,-41v-25,0,-41,13,-47,41xm158,-265r-40,51r-34,0r30,-51r44,0",w:206},"\u00e8":{d:"105,-192v59,0,103,47,87,111r-135,0v-2,50,71,61,100,32r17,34v-15,13,-38,19,-69,19v-57,0,-94,-37,-94,-96v0,-56,41,-99,94,-100xm59,-114r92,0v-3,-28,-18,-41,-45,-41v-25,0,-41,13,-47,41xm101,-214r-40,-51r47,0r30,51r-37,0",w:206},"\u00ea":{d:"136,-214r-28,-26r-25,26r-46,0r62,-55r19,0r64,55r-46,0xm105,-192v59,0,103,47,87,111r-135,0v-2,50,71,61,100,32r17,34v-15,13,-38,19,-69,19v-57,0,-94,-37,-94,-96v0,-56,41,-99,94,-100xm59,-114r92,0v-3,-28,-18,-41,-45,-41v-25,0,-41,13,-47,41",w:206},"\u00eb":{d:"105,-192v59,0,103,47,87,111r-135,0v-2,50,71,61,100,32r17,34v-15,13,-38,19,-69,19v-57,0,-94,-37,-94,-96v0,-56,41,-99,94,-100xm59,-114r92,0v-3,-28,-18,-41,-45,-41v-25,0,-41,13,-47,41xm23,-239v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25xm132,-239v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25",w:206},"\u00ed":{d:"36,0r0,-152r-24,0r0,-36r69,0r0,188r-45,0xm97,-265r-40,51r-34,0r30,-51r44,0",w:107},"\u00ec":{d:"36,0r0,-152r-25,0r0,-36r69,0r0,188r-44,0xm51,-214r-40,-51r47,0r30,51r-37,0",w:107},"\u00ee":{d:"83,-214r-27,-26r-25,26r-47,0r63,-55r19,0r64,55r-47,0xm36,0r0,-152r-25,0r0,-36r69,0r0,188r-44,0",w:107},"\u00ef":{d:"36,0r0,-152r-25,0r0,-36r69,0r0,188r-44,0xm-28,-239v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25xm81,-239v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25",w:107},"\u00f1":{d:"128,-208v-21,2,-48,-32,-58,0r-26,0v3,-22,16,-43,39,-45v23,-2,50,31,60,0r26,0v-8,28,-14,42,-41,45xm63,-171v41,-44,126,-16,126,56r0,115r-44,0v-7,-57,25,-155,-40,-155v-14,0,-31,11,-37,19r0,136r-44,0r0,-188r31,0",w:212},"\u00f3":{d:"102,4v-58,0,-91,-41,-91,-99v0,-56,37,-98,91,-97v58,0,90,38,90,97v0,58,-33,99,-90,99xm102,-156v-31,0,-45,27,-45,61v0,41,15,63,45,63v31,0,45,-28,45,-63v0,-41,-15,-61,-45,-61xm144,-265r-40,51r-34,0r30,-51r44,0",w:203},"\u00f2":{d:"102,4v-58,0,-91,-41,-91,-99v0,-56,37,-98,91,-97v58,0,90,38,90,97v0,58,-33,99,-90,99xm102,-156v-31,0,-45,27,-45,61v0,41,15,63,45,63v31,0,45,-28,45,-63v0,-41,-15,-61,-45,-61xm94,-214r-40,-51r47,0r30,51r-37,0",w:203},"\u00f4":{d:"127,-214r-27,-26r-25,26r-47,0r63,-55r19,0r64,55r-47,0xm102,4v-58,0,-91,-41,-91,-99v0,-56,37,-98,91,-97v58,0,90,38,90,97v0,58,-33,99,-90,99xm102,-156v-31,0,-45,27,-45,61v0,41,15,63,45,63v31,0,45,-28,45,-63v0,-41,-15,-61,-45,-61",w:203},"\u00f6":{d:"102,4v-58,0,-91,-41,-91,-99v0,-56,37,-98,91,-97v58,0,90,38,90,97v0,58,-33,99,-90,99xm102,-156v-31,0,-45,27,-45,61v0,41,15,63,45,63v31,0,45,-28,45,-63v0,-41,-15,-61,-45,-61xm25,-239v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25xm134,-239v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25",w:203},"\u00f5":{d:"127,-208v-21,2,-49,-32,-59,0r-26,0v3,-22,16,-43,39,-45v23,-2,50,31,60,0r26,0v-8,28,-13,42,-40,45xm102,4v-58,0,-91,-41,-91,-99v0,-56,37,-98,91,-97v58,0,90,38,90,97v0,58,-33,99,-90,99xm102,-156v-31,0,-45,27,-45,61v0,41,15,63,45,63v31,0,45,-28,45,-63v0,-41,-15,-61,-45,-61",w:203},"\u00fa":{d:"68,-69v-5,52,67,39,77,10r0,-129r44,0r0,188r-44,0r0,-16v-40,34,-121,26,-121,-50r0,-122r44,0r0,119xm153,-265r-40,51r-34,0r30,-51r44,0",w:212},"\u00f9":{d:"68,-69v-5,52,67,39,77,10r0,-129r44,0r0,188r-44,0r0,-16v-40,34,-121,26,-121,-50r0,-122r44,0r0,119xm98,-214r-40,-51r47,0r30,51r-37,0",w:212},"\u00fb":{d:"133,-214r-28,-26r-24,26r-47,0r62,-55r19,0r64,55r-46,0xm68,-69v-5,52,67,39,77,10r0,-129r44,0r0,188r-44,0r0,-16v-40,34,-121,26,-121,-50r0,-122r44,0r0,119",w:212},"\u00fc":{d:"68,-69v-5,52,67,39,77,10r0,-129r44,0r0,188r-44,0r0,-16v-40,34,-121,26,-121,-50r0,-122r44,0r0,119xm27,-239v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25xm136,-239v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25",w:212},"\u00b0":{d:"111,-183v-23,0,-43,-19,-43,-42v0,-23,19,-42,43,-42v23,-1,43,19,42,42v0,23,-19,42,-42,42xm111,-245v-10,-1,-21,10,-20,20v0,10,10,19,20,19v9,0,19,-10,19,-19v0,-10,-9,-20,-19,-20"},"\u00a2":{d:"69,-31v-57,-37,-28,-151,55,-138r9,-21r21,0r-10,25v7,2,13,6,19,11r-16,28v-4,-4,-9,-7,-15,-9r-33,82v19,6,38,3,52,-10r13,29v-21,14,-47,18,-77,12r-8,19r-22,0xm83,-67r29,-71v-32,-2,-43,44,-29,71"},"\u00a3":{d:"79,-41v34,0,63,3,74,-21r33,25v-21,45,-100,37,-168,37r0,-32v31,-8,10,-57,16,-88r-15,0r0,-35r15,0v-5,-64,21,-106,77,-107v26,0,45,8,58,25r-23,32v-22,-28,-72,-29,-67,29r0,21r35,0r0,35r-35,0r0,79",w:188},"\u00a7":{d:"136,-98v45,37,5,102,-57,102v-27,0,-50,-6,-68,-19r16,-42v16,14,33,21,50,21v20,0,30,-7,30,-20v0,-37,-93,-22,-93,-74v0,-14,4,-25,13,-33v-49,-47,17,-125,86,-93v11,4,21,8,28,14r-18,39v-13,-28,-93,-18,-56,14v34,10,80,16,80,62v0,11,-3,21,-11,29xm95,-139v-3,-5,-39,-20,-39,1v4,21,15,17,46,27v1,-7,2,-23,-7,-28",w:163},"\u00b6":{d:"21,-189v0,-38,17,-73,54,-73r89,0r0,306r-27,0r0,-284r-28,0r0,284r-27,0r0,-157v-41,0,-61,-25,-61,-76",w:188},"\u00df":{d:"188,-80v0,60,-44,100,-102,78r8,-35v33,7,45,-6,48,-41v3,-43,-53,-50,-57,-85v0,-9,31,-26,27,-41v0,-15,-8,-23,-24,-23v-24,0,-25,19,-26,50r0,177r-44,0r0,-194v-1,-41,25,-71,65,-71v40,0,71,16,71,52v1,20,-13,39,-23,48v27,16,57,42,57,85",w:196},"\u00ae":{d:"137,8v-66,0,-124,-57,-124,-124v0,-67,57,-124,124,-124v67,0,124,57,124,124v0,67,-58,124,-124,124xm137,-210v-51,0,-94,43,-94,94v0,50,44,94,94,94v50,0,94,-44,94,-94v0,-51,-43,-94,-94,-94xm165,-47r-33,-57r-12,0r0,57r-28,0r0,-141v45,-2,91,-1,91,41v0,17,-8,30,-24,38r38,62r-32,0xm120,-128v39,10,47,-36,10,-35r-10,0r0,35",w:256},"\u00a9":{d:"137,8v-66,0,-124,-57,-124,-124v0,-67,57,-124,124,-124v67,0,124,57,124,124v0,67,-58,124,-124,124xm137,-210v-51,0,-94,43,-94,94v0,50,44,94,94,94v50,0,94,-44,94,-94v0,-51,-43,-94,-94,-94xm77,-117v0,-56,53,-92,101,-63r-10,25v-29,-22,-68,-1,-63,39v-4,40,41,63,63,30r16,22v-40,43,-107,12,-107,-53",w:256},"\u00b4":{d:"144,-265r-40,51r-34,0r30,-51r44,0"},"\u00a8":{d:"25,-239v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25xm134,-239v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25"},"\u00c6":{d:"207,-217r0,60r85,0r0,39r-85,0r0,77r117,0r0,41r-162,0r0,-52r-79,0r-32,52r-51,0r156,-258r170,0r0,41r-119,0xm162,-87r0,-102r-62,102r62,0",w:336},"\u00d8":{d:"38,-33v-55,-73,-24,-229,83,-229v28,0,52,6,70,20r15,-20r30,0r-28,37v18,23,28,54,28,94v0,79,-39,136,-118,135v-25,0,-47,-6,-64,-19r-14,19r-29,0xm121,-221v-65,0,-73,93,-54,148r98,-133v-11,-10,-25,-15,-44,-15xm81,-51v51,41,107,-8,107,-80v0,-22,-3,-40,-9,-54",w:246},"\u00b1":{d:"125,-94r0,59r62,0r0,35r-158,0r0,-35r61,0r0,-59r-61,0r0,-35r61,0r0,-61r35,0r0,61r62,0r0,35r-62,0"},"\u00a5":{d:"44,-91r36,0r0,-15r-87,-152r48,0r62,110r61,-110r48,0r-86,152r0,15r37,0r0,34r-37,0r0,57r-46,0r0,-57r-36,0r0,-34",w:205},"\u00aa":{d:"71,-262v50,0,53,27,53,88v0,13,3,21,10,26v-11,11,-32,13,-36,-7v-15,25,-75,18,-72,-20v2,-31,32,-45,67,-40v2,-26,-31,-27,-50,-17r-7,-22v11,-5,22,-8,35,-8xm94,-195v-20,-4,-39,3,-38,17v0,11,5,16,15,16v19,0,25,-13,23,-33",w:154},"\u00ba":{d:"75,-140v-37,0,-56,-25,-57,-61v0,-35,22,-61,57,-61v37,-1,57,24,57,61v0,37,-20,61,-57,61xm51,-201v0,23,8,35,24,35v16,0,24,-12,24,-35v0,-23,-8,-34,-24,-34v-16,0,-24,11,-24,34",w:154},"\u00e6":{d:"122,-89v-34,-7,-69,4,-69,32v0,17,9,26,29,26v33,1,43,-23,40,-58xm151,-166v57,-60,178,-9,150,85r-136,0v-3,49,72,62,101,32r17,34v-19,21,-92,27,-117,7r1,8r-35,0v-2,-4,-3,-10,-6,-18v-29,37,-117,26,-117,-37v0,-53,54,-76,112,-67v5,-37,-57,-39,-83,-25r-10,-34v35,-18,107,-14,123,15xm260,-114v1,-41,-50,-52,-77,-30v-8,7,-14,17,-17,30r94,0",w:310},"\u00f8":{d:"33,-25v-48,-58,-15,-167,69,-167v19,0,35,4,49,12r9,-12r32,0r-21,29v45,57,16,167,-69,167v-19,0,-35,-5,-49,-13r-9,13r-33,0xm127,-149v-49,-29,-85,31,-66,87xm76,-39v49,28,86,-31,67,-87",w:203},"\u00bf":{d:"119,-163v0,16,-14,29,-29,29v-15,0,-28,-14,-28,-29v0,-15,14,-29,28,-29v15,0,29,13,29,29xm109,-110v26,53,-38,85,-48,123v0,30,48,32,65,9r18,34v-38,33,-126,20,-126,-40v0,-55,75,-67,57,-126r34,0",w:157},"\u00a1":{d:"96,-163v0,15,-14,29,-29,29v-15,0,-29,-14,-29,-29v0,-15,14,-29,29,-29v15,0,29,14,29,29xm89,74r-46,0v-1,-81,-1,-100,14,-195r18,0v15,95,15,113,14,195",w:132},"\u00ac":{d:"187,-170r0,98r-36,0r0,-62r-122,0r0,-36r158,0"},"\u00ab":{d:"103,-91r0,-17r73,-50r0,34r-33,25r33,22r0,34xm17,-91r0,-17r73,-50r0,34r-33,25r33,22r0,34"},"\u00bb":{d:"110,-43r0,-34r34,-22r-34,-25r0,-34r73,50r0,17xm24,-43r0,-34r34,-22r-34,-25r0,-34r73,50r0,17"},"\u00a0":{w:108},"\u00c0":{d:"177,0r-19,-52r-88,0r-18,52r-51,0r103,-261r20,0r103,261r-50,0xm114,-182r-31,95r61,0xm101,-279r-40,-51r47,0r30,51r-37,0",w:227},"\u00c3":{d:"139,-273v-21,2,-48,-32,-59,0r-25,0v3,-23,15,-44,38,-46v23,-2,50,32,60,0r26,0v-8,28,-13,43,-40,46xm177,0r-19,-52r-88,0r-18,52r-51,0r103,-261r20,0r103,261r-50,0xm114,-182r-31,95r61,0",w:227},"\u00d5":{d:"148,-273v-21,2,-48,-32,-59,0r-26,0v3,-23,16,-44,39,-46v23,-2,50,32,60,0r26,0v-8,28,-13,43,-40,46xm121,4v-74,0,-107,-58,-107,-135v-1,-70,42,-131,111,-131v76,0,115,52,114,131v-1,79,-39,136,-118,135xm125,-221v-45,1,-63,40,-63,90v0,51,14,95,59,95v51,0,71,-39,71,-95v0,-60,-22,-90,-67,-90",w:253},"\u00f7":{d:"108,-206v14,0,26,13,26,27v0,13,-13,26,-26,26v-14,0,-27,-12,-27,-26v0,-14,13,-27,27,-27xm187,-129r0,35r-158,0r0,-35r158,0xm108,-67v14,0,26,13,26,27v0,13,-13,26,-26,26v-14,0,-27,-12,-27,-26v0,-14,13,-27,27,-27"},"\u00ff":{d:"107,30v-11,27,-45,44,-84,44r0,-39v66,-1,56,-29,37,-77r-59,-146r45,0r52,130r46,-130r45,0xm15,-239v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25xm124,-239v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25",w:192},"\u00c2":{d:"145,-279r-28,-26r-24,26r-47,0r62,-55r19,0r65,55r-47,0xm177,0r-19,-52r-88,0r-18,52r-51,0r103,-261r20,0r103,261r-50,0xm114,-182r-31,95r61,0",w:227},"\u00ca":{d:"134,-279r-27,-26r-25,26r-47,0r63,-55r19,0r64,55r-47,0xm72,-217r0,60r85,0r0,39r-85,0r0,77r117,0r0,41r-163,0r0,-258r165,0r0,41r-119,0",w:204},"\u00c1":{d:"177,0r-19,-52r-88,0r-18,52r-51,0r103,-261r20,0r103,261r-50,0xm114,-182r-31,95r61,0xm165,-330r-40,51r-34,0r30,-51r44,0",w:227},"\u00cb":{d:"72,-217r0,60r85,0r0,39r-85,0r0,77r117,0r0,41r-163,0r0,-258r165,0r0,41r-119,0xm27,-304v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25xm136,-304v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25",w:204},"\u00c8":{d:"72,-217r0,60r85,0r0,39r-85,0r0,77r117,0r0,41r-163,0r0,-258r165,0r0,41r-119,0xm100,-279r-40,-51r47,0r30,51r-37,0",w:204},"\u00cd":{d:"27,0r0,-258r46,0r0,258r-46,0xm101,-330r-40,51r-34,0r30,-51r44,0",w:100},"\u00ce":{d:"76,-279r-27,-26r-25,26r-47,0r63,-55r19,0r64,55r-47,0xm27,0r0,-258r46,0r0,258r-46,0",w:100},"\u00cf":{d:"27,0r0,-258r46,0r0,258r-46,0xm-26,-304v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25xm83,-304v0,-31,51,-32,51,0v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25",w:100},"\u00cc":{d:"27,0r0,-258r46,0r0,258r-46,0xm43,-279r-40,-51r47,0r30,51r-37,0",w:100},"\u00d3":{d:"121,4v-74,0,-107,-58,-107,-135v-1,-70,42,-131,111,-131v76,0,115,52,114,131v-1,79,-39,136,-118,135xm125,-221v-45,1,-63,40,-63,90v0,51,14,95,59,95v51,0,71,-39,71,-95v0,-60,-22,-90,-67,-90xm176,-330r-40,51r-34,0r30,-51r44,0",w:253},"\u00d4":{d:"155,-279r-27,-26r-25,26r-47,0r63,-55r19,0r64,55r-47,0xm121,4v-74,0,-107,-58,-107,-135v-1,-70,42,-131,111,-131v76,0,115,52,114,131v-1,79,-39,136,-118,135xm125,-221v-45,1,-63,40,-63,90v0,51,14,95,59,95v51,0,71,-39,71,-95v0,-60,-22,-90,-67,-90",w:253},"\u00d2":{d:"121,4v-74,0,-107,-58,-107,-135v-1,-70,42,-131,111,-131v76,0,115,52,114,131v-1,79,-39,136,-118,135xm125,-221v-45,1,-63,40,-63,90v0,51,14,95,59,95v51,0,71,-39,71,-95v0,-60,-22,-90,-67,-90xm117,-279r-40,-51r47,0r30,51r-37,0",w:253},"\u00da":{d:"120,4v-58,0,-93,-30,-94,-85r0,-177r46,0r0,175v1,28,18,48,48,47v32,0,51,-17,52,-48r0,-174r46,0r0,178v0,54,-42,84,-98,84xm172,-330r-40,51r-34,0r30,-51r44,0",w:243},"\u00db":{d:"147,-279r-27,-26r-25,26r-47,0r63,-55r18,0r65,55r-47,0xm120,4v-58,0,-93,-30,-94,-85r0,-177r46,0r0,175v1,28,18,48,48,47v32,0,51,-17,52,-48r0,-174r46,0r0,178v0,54,-42,84,-98,84",w:243},"\u00d9":{d:"120,4v-58,0,-93,-30,-94,-85r0,-177r46,0r0,175v1,28,18,48,48,47v32,0,51,-17,52,-48r0,-174r46,0r0,178v0,54,-42,84,-98,84xm114,-279r-40,-51r47,0r30,51r-37,0",w:243},"\u00b8":{d:"144,41v0,29,-32,41,-62,34r-7,-23v15,5,37,1,35,-14v-1,-7,-6,-17,-13,-18r15,-16v21,4,32,17,32,37"},"\u00a6":{d:"89,-118r0,-147r36,0r0,147r-36,0xm89,74r0,-147r36,0r0,147r-36,0"},"\u00d0":{d:"26,-257v123,-15,186,18,191,118v5,115,-71,149,-191,139r0,-122r-21,0r0,-36r21,0r0,-99xm72,-42v65,10,98,-31,98,-94v0,-63,-37,-91,-98,-81r0,59r24,0r0,36r-24,0r0,80",w:231},"\u00f0":{d:"11,-96v0,-60,41,-105,106,-96v-5,-8,-10,-15,-16,-24r-26,13r-10,-18r23,-11v-11,-12,-23,-23,-38,-33r62,0v4,4,8,9,13,14r29,-16r10,17r-27,15v32,51,53,77,55,139v2,58,-34,100,-90,100v-57,0,-92,-42,-91,-100xm102,-156v-31,0,-46,28,-47,60v0,40,16,61,47,61v32,-1,46,-27,46,-61v0,-40,-15,-60,-46,-60",w:203},"\u00dd":{d:"133,-106r0,106r-45,0r0,-106r-87,-152r48,0r61,110r62,-110r48,0xm162,-330r-40,51r-34,0r30,-51r44,0",w:220},"\u00de":{d:"67,-222v74,-1,123,12,125,77v2,66,-48,94,-125,87r0,58r-46,0r0,-257r46,-1r0,36xm67,-98v43,4,78,-3,78,-44v0,-31,-36,-44,-78,-39r0,83",w:200},"\u00fe":{d:"195,-93v0,74,-65,117,-131,88r0,79r-44,0r0,-332r44,-11r0,93v57,-42,131,0,131,83xm149,-94v8,-56,-51,-77,-85,-48r0,99v38,23,93,2,85,-51",w:209},"\u00b9":{d:"72,-99r0,-115r-33,20r0,-32v24,-12,42,-26,52,-39r14,0r0,166r-33,0",w:162},"\u00b2":{d:"122,-223v-4,41,-17,52,-44,92r55,0r0,32r-106,0r0,-11v19,-34,54,-70,62,-111v-5,-23,-42,-19,-50,2r-19,-18v14,-44,106,-40,102,14",w:162},"\u00b3":{d:"103,-188v42,24,23,90,-34,90v-17,0,-31,-5,-43,-16r16,-28v12,18,50,19,50,-7v0,-19,-12,-24,-32,-23r0,-29v17,1,28,-4,27,-19v0,-21,-32,-20,-42,-4r-15,-25v23,-33,90,-18,90,26v0,15,-5,26,-17,35",w:163},"\u00bd":{d:"48,-99r0,-115r-33,20r0,-32v24,-12,41,-26,52,-39r14,0r0,166r-33,0xm67,6r-30,0r156,-268r29,0xm272,-123v-4,40,-18,52,-44,92r55,0r0,31r-106,0r0,-11v19,-34,54,-70,62,-110v-4,-24,-41,-21,-50,1r-19,-18v14,-44,107,-39,102,15",w:293},"\u00bc":{d:"83,-99r-34,0r0,-115r-33,20r0,-32v24,-12,41,-25,52,-39r15,0r0,166xm234,-262r-155,268r-30,0r155,-268r30,0xm261,-40r0,40r-34,0r0,-40r-70,0r0,-20r86,-106r18,0r0,98r15,0r0,28r-15,0xm227,-113r-35,45r35,0r0,-45",w:293},"\u00be":{d:"88,-188v42,24,23,90,-34,90v-17,0,-31,-5,-43,-16r16,-28v12,18,51,18,51,-7v0,-18,-13,-24,-33,-23r0,-29v17,1,28,-3,27,-19v0,-21,-32,-20,-42,-4r-15,-25v23,-33,94,-18,91,26v0,15,-6,26,-18,35xm240,-262r-155,268r-30,0r155,-268r30,0xm267,-40r0,40r-34,0r0,-40r-70,0r0,-20r86,-106r18,0r0,98r15,0r0,28r-15,0xm233,-113r-35,45r35,0r0,-45",w:293},"\u00b5":{d:"60,-69v-5,52,67,39,77,10r0,-129r44,0r0,188r-44,0r0,-16v-20,18,-53,28,-77,12r0,78r-44,0r0,-262r44,0r0,119",w:196},"\u00fd":{d:"107,30v-11,27,-45,44,-84,44r0,-39v66,-1,56,-29,37,-77r-59,-146r45,0r52,130r46,-130r45,0xm144,-265r-40,51r-34,0r30,-51r44,0",w:192},"\u00d7":{d:"133,-111r56,56r-26,25r-55,-56r-55,56r-25,-25r55,-55r-56,-57r25,-25r56,57r56,-56r25,25"},"\u00ad":{d:"19,-84r0,-41r93,0r0,41r-93,0",w:132},"\u00af":{d:"-1,-257r0,-37r213,0r0,37r-213,0"},"\u00b7":{d:"68,-98v-17,0,-32,-14,-32,-32v-1,-18,14,-33,32,-32v18,0,31,14,31,32v0,17,-14,32,-31,32",w:132},"\u00a4":{d:"173,-36r-25,-26v-28,18,-60,17,-88,0r-26,26r-22,-23r26,-25v-17,-28,-18,-59,0,-87r-26,-25r22,-23r26,26v28,-18,60,-19,88,-1r25,-25r23,23r-26,25v18,28,17,59,0,87r26,25xm104,-175v-26,0,-48,21,-48,47v-1,26,22,49,48,48v26,0,47,-22,47,-48v0,-25,-22,-47,-47,-47"}}});Cufon.registerFont({w:188,face:{"font-family":"trebuchet","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 3 2 2 2 9 2 4",ascent:"288",descent:"-72","x-height":"4",bbox:"-24 -338 335 80","underline-thickness":"22.3242","underline-position":"-34.8047",slope:"-10","unicode-range":"U+0020-U+00FF"},glyphs:{" ":{w:108,k:{Y:7,A:13}},"!":{d:"62,-67r-13,0v0,-95,8,-123,21,-195r40,0v-14,80,-16,98,-48,195xm23,-21v0,-14,11,-25,25,-25v14,0,25,11,25,25v0,14,-12,25,-25,25v-13,0,-25,-11,-25,-25",w:132},"\"":{d:"57,-191r-23,0r7,-67r33,0xm115,-191r-23,0r7,-67r33,0",w:116},"#":{d:"165,-166r-18,69r29,0r0,22r-34,0r-22,79r-23,0r22,-79r-52,0r-22,79r-23,0r22,-79r-27,0r0,-22r33,0r17,-69r-30,0r0,-23r36,0r18,-72r23,0r-18,72r52,0r18,-72r22,0r-18,72r31,0r0,23r-36,0xm90,-166r-17,69r52,0r17,-69r-52,0"},"$":{d:"77,-192v8,53,87,55,87,124v0,45,-30,68,-73,72r-5,28r-27,0r4,-29v-18,-2,-32,-6,-43,-11r11,-34v26,20,102,23,98,-24v-5,-55,-89,-58,-87,-122v0,-41,26,-68,64,-73r6,-35r28,0r-6,34v21,1,34,4,40,7r-10,34v-26,-20,-93,-14,-87,29",w:173},"%":{d:"25,4r-22,0r202,-266r22,0xm123,-219v0,40,-23,79,-62,78v-26,0,-39,-15,-39,-43v0,-41,18,-78,62,-78v26,0,39,14,39,43xm81,-244v-24,0,-38,30,-37,57v0,19,6,28,19,28v27,2,38,-35,38,-60v0,-17,-7,-25,-20,-25xm216,-75v1,39,-22,78,-62,78v-26,0,-40,-15,-40,-43v0,-41,20,-79,63,-78v26,0,39,14,39,43xm173,-100v-23,0,-37,32,-36,57v0,19,6,28,19,28v27,2,38,-35,38,-60v0,-17,-8,-25,-21,-25",w:216},"&":{d:"172,-221v-30,-32,-92,-10,-89,36v0,12,5,22,15,30r65,0r6,-32r34,-5r-7,38r44,0r-5,28r-44,0v-4,25,-12,48,-12,77v0,29,30,27,46,13r0,32v-18,10,-57,13,-72,-5v-50,25,-128,15,-128,-49v0,-35,14,-64,42,-88v-44,-51,3,-116,70,-116v20,0,35,2,44,8xm88,-126v-35,31,-41,100,19,100v24,0,40,-3,39,-29r12,-71r-70,0",w:254},"'":{d:"57,-191r-23,0r7,-67r33,0",w:57},"(":{d:"81,75v-60,-49,-63,-166,-19,-247v23,-42,45,-72,74,-87r0,14v-55,58,-90,200,-55,302r0,18",w:132},")":{d:"61,-259v33,13,52,77,52,125v0,84,-52,177,-109,209r0,-18v53,-45,96,-213,57,-302r0,-14",w:132},"*":{d:"141,-203v-11,6,-29,5,-46,5v13,9,28,16,36,30r-21,18v-11,-11,-17,-26,-24,-40r-24,40r-23,-18v7,-14,23,-19,37,-27v-16,-3,-33,-5,-47,-10r13,-27v16,5,27,15,39,24v-4,-17,-13,-28,-12,-50r31,0v1,21,-7,33,-10,50v13,-8,24,-19,41,-24",w:132},"+":{d:"107,-124r62,0r0,25r-62,0r0,60r-24,0r0,-60r-62,0r0,-25r62,0r0,-60r24,0r0,60"},",":{d:"65,-51v33,2,30,48,13,70v-10,12,-24,26,-46,40r-8,-13v23,-15,34,-29,34,-42v0,-14,-20,-21,-17,-34v0,-12,12,-21,24,-21",w:132},"-":{d:"25,-89r6,-31r75,0r-5,31r-76,0",w:132},"\u2010":{d:"25,-89r6,-31r75,0r-5,31r-76,0",w:132},".":{d:"29,-23v0,-14,12,-26,26,-26v15,0,27,12,27,26v0,14,-13,27,-27,27v-14,0,-26,-13,-26,-27",w:132},"\/":{d:"62,0r-29,0r94,-259r28,0"},"0":{d:"78,4v-44,0,-66,-31,-66,-77v0,-96,30,-189,115,-189v43,0,65,25,65,74v0,101,-28,192,-114,192xm121,-232v-51,1,-74,93,-74,152v0,36,12,54,34,54v58,0,76,-88,75,-159v0,-32,-11,-47,-35,-47"},"1":{d:"78,0r34,-194r-52,27r5,-34v41,-19,68,-38,83,-58r11,0r-46,259r-35,0"},"2":{d:"103,-262v58,0,89,45,62,94v-22,39,-71,97,-100,136r95,0r-5,32r-144,0r0,-16r85,-108v24,-35,38,-41,42,-79v-4,-37,-64,-38,-79,-5r-25,-16v11,-25,34,-38,69,-38"},"3":{d:"164,-85v-1,63,-34,89,-101,89v-23,0,-42,-8,-55,-23r16,-29v28,39,103,21,103,-36v0,-26,-16,-39,-47,-39r5,-29v36,0,54,-15,54,-47v0,-38,-48,-41,-70,-21r-16,-21v32,-37,124,-25,124,37v0,33,-25,57,-51,66v25,9,38,27,38,53"},"4":{d:"155,-70r-12,70r-35,0r12,-70r-116,0r4,-20r168,-169r12,0r-28,162r26,0r-5,27r-26,0xm140,-187r-89,90r74,0"},"5":{d:"71,-26v65,0,92,-115,22,-120v-24,-2,-30,16,-56,13r22,-126r128,0r-6,30r-94,0r-11,63v39,-26,96,2,96,51v0,79,-36,119,-106,119v-22,0,-40,-7,-52,-19r14,-31v14,13,28,20,43,20"},"6":{d:"180,-99v0,52,-39,103,-91,103v-78,0,-79,-90,-54,-147v18,-41,71,-109,119,-119r14,19v-20,6,-90,75,-94,96v39,-31,106,-9,106,48xm110,-131v-36,0,-57,29,-56,67v0,26,12,39,37,39v31,0,53,-34,52,-67v0,-22,-11,-39,-33,-39"},"7":{d:"60,0r-42,0v21,-44,67,-119,138,-225r-124,0r6,-34r168,0r0,14v-61,85,-109,167,-146,245"},"8":{d:"15,-58v0,-44,28,-71,61,-85v-15,-8,-28,-30,-28,-52v0,-42,34,-67,78,-67v34,0,63,21,63,52v0,31,-23,63,-49,70v20,10,36,33,36,59v0,60,-29,85,-91,85v-38,0,-70,-25,-70,-62xm120,-232v-30,-1,-50,38,-27,59v6,7,13,12,22,16v34,-4,59,-74,5,-75xm104,-127v-45,3,-81,95,-16,101v65,6,65,-86,16,-101"},"9":{d:"122,-262v101,0,73,141,22,199v-33,37,-60,61,-88,67r-13,-18v20,-6,89,-75,94,-96v-41,31,-106,3,-106,-52v0,-59,34,-100,91,-100xm101,-126v35,0,55,-29,55,-68v0,-23,-13,-38,-37,-38v-53,0,-75,106,-18,106"},":":{d:"51,-162v0,-14,12,-26,27,-26v14,0,26,12,26,26v0,14,-12,27,-26,27v-14,0,-27,-13,-27,-27xm36,-23v0,-14,12,-26,26,-26v15,0,27,12,27,26v0,14,-13,27,-27,27v-14,0,-26,-13,-26,-27",w:132},";":{d:"51,-162v0,-14,12,-26,27,-26v14,0,26,12,26,26v0,14,-12,27,-26,27v-14,0,-27,-13,-27,-27xm65,-51v33,2,30,48,13,70v-10,12,-24,26,-46,40r-8,-13v23,-15,34,-29,34,-42v0,-14,-20,-21,-17,-34v0,-12,12,-21,24,-21",w:132},"<":{d:"156,-38r-130,-63r0,-22r130,-62r0,28r-100,45r100,45r0,29"},"=":{d:"169,-154r0,25r-148,0r0,-25r148,0xm169,-94r0,25r-148,0r0,-25r148,0"},">":{d:"175,-101r-130,63r0,-29r100,-45r-100,-45r0,-28r130,62r0,22"},"?":{d:"39,-248v30,-24,108,-20,108,36v0,68,-81,73,-87,137r-17,0v-15,-68,63,-77,71,-136v4,-30,-48,-28,-64,-14xm26,-21v0,-14,11,-25,25,-25v14,0,25,12,25,25v0,13,-12,25,-25,25v-13,0,-25,-11,-25,-25",w:132},"@":{d:"199,-45v-14,0,-33,-7,-36,-17v-18,28,-81,26,-81,-21v0,-56,63,-106,120,-71v-10,42,-15,67,-15,73v0,12,5,18,15,18v30,-1,44,-39,44,-72v0,-46,-33,-76,-79,-76v-68,0,-120,64,-120,132v0,81,99,102,152,59r17,12v-62,59,-195,35,-195,-67v0,-83,68,-158,150,-158v59,0,100,33,100,92v0,45,-28,96,-72,96xm175,-141v-31,-28,-65,24,-65,56v0,27,27,28,42,14v17,-16,16,-45,23,-70",w:277},A:{d:"165,0r-9,-54r-92,0r-30,54r-40,0r151,-261r9,0r51,261r-40,0xm137,-190r-59,110r75,0",w:219,k:{y:14,w:26,v:29,Y:43,W:36,V:44,T:40," ":13}},B:{d:"195,-85v-1,84,-86,93,-180,85r46,-258v65,-11,139,2,139,57v0,27,-24,54,-48,57v29,5,43,25,43,59xm92,-229r-11,71v46,5,83,-6,83,-44v0,-27,-38,-33,-72,-27xm57,-30v46,7,101,-7,101,-51v0,-39,-36,-54,-83,-48",w:203},C:{d:"25,-93v0,-104,77,-199,187,-161r-10,35v-73,-46,-140,46,-140,119v0,81,76,91,121,47r-3,38v-14,13,-37,19,-67,19v-57,0,-88,-39,-88,-97",w:215},D:{d:"219,-158v0,95,-61,159,-151,158r-56,0r45,-258v85,-16,162,14,162,100xm181,-160v0,-48,-44,-81,-95,-67r-32,194v82,11,127,-51,127,-127",w:220},E:{d:"85,-226r-13,72r86,0r-6,30r-85,0r-16,92r117,0r-6,32r-154,0r46,-258r155,0r-5,32r-119,0",w:192},F:{d:"86,-226r-12,72r90,0r-5,30r-90,0r-22,124r-37,0r46,-258r160,0r-6,32r-124,0",k:{A:40,".":70,",":70," ":7}},G:{d:"20,-95v0,-94,61,-168,152,-167v25,0,42,5,52,15r-10,33v-77,-50,-157,24,-157,112v0,73,72,94,119,58r11,-60r-36,0r5,-30r71,0r-20,112v-24,18,-55,26,-93,26v-63,0,-94,-33,-94,-99",w:243},H:{d:"160,0r22,-124r-112,0r-22,124r-36,0r45,-258r37,0r-19,104r113,0r18,-104r36,0r-46,258r-36,0",w:235},I:{d:"13,0r46,-258r36,0r-46,258r-36,0",w:100},J:{d:"113,-19v-25,34,-130,34,-115,-33r30,0v-3,32,45,26,59,14v28,-45,33,-155,48,-220r36,0v-18,76,-21,187,-58,239",w:171},K:{d:"153,0r-50,-118r-43,48r-12,70r-36,0r45,-258r36,0r-23,134r117,-134r41,0r-97,112r62,146r-40,0",w:207},L:{d:"15,0r45,-258r36,0r-40,226r117,0r-6,32r-152,0",w:182,k:{y:16,Y:44,W:30,V:31,T:37," ":7}},M:{d:"219,0r-3,-159r-86,163r-9,0r-27,-165r-60,161r-33,0r91,-258r18,0r28,181r91,-181r18,0r8,258r-36,0",w:274},N:{d:"176,4r-100,-183r-30,179r-36,0r46,-258r14,0r98,176r30,-176r35,0r-46,262r-11,0",w:229},O:{d:"103,4v-54,0,-83,-44,-83,-99v0,-83,50,-167,130,-167v60,0,91,34,91,94v0,94,-47,172,-138,172xm147,-231v-53,0,-91,79,-90,132v0,39,16,71,52,72v62,0,96,-71,95,-137v0,-44,-19,-67,-57,-67",w:242},P:{d:"205,-186v0,70,-69,103,-141,87r-18,99r-37,0r47,-258v79,-11,149,4,149,72xm69,-131v42,15,99,-5,99,-52v0,-44,-41,-54,-82,-43",w:195,k:{A:43,".":70,",":70," ":13}},Q:{d:"148,-262v142,0,95,229,13,254v9,36,72,51,105,25r15,27v-8,11,-39,21,-62,21v-48,0,-82,-26,-90,-65v-68,18,-111,-26,-111,-95v0,-83,50,-167,130,-167xm145,-231v-54,0,-90,77,-90,132v0,40,15,71,51,72v62,0,97,-71,96,-137v0,-44,-19,-67,-57,-67",w:242},R:{d:"206,-204v0,43,-31,81,-67,87r48,117r-40,0r-41,-111v-9,0,-21,0,-37,-1r-20,112r-37,0r46,-258v65,-4,148,-9,148,54xm168,-189v1,-40,-38,-42,-79,-37r-15,84v46,8,94,-6,94,-47",w:209,k:{Y:24,W:16,V:20,T:17}},S:{d:"148,-107v43,77,-49,142,-133,99r11,-34v26,20,102,23,98,-24v-5,-55,-87,-58,-87,-122v0,-67,79,-87,132,-67r-10,34v-31,-25,-108,-7,-83,44v13,24,58,44,72,70",w:173},T:{d:"146,-226r-40,226r-36,0r40,-226r-82,0r5,-32r203,0r-6,32r-84,0",w:209,k:{y:34,w:39,u:39,s:39,r:37,o:42,i:9,e:44,c:44,a:44,O:17,A:40,";":26,":":26,".":53,"-":40,",":53}},U:{d:"171,-17v-51,41,-162,26,-146,-62r32,-179r37,0r-33,188v-3,46,61,55,88,28v11,-10,18,-23,21,-40r31,-176r37,0r-32,180v-5,26,-16,46,-35,61",w:233},V:{d:"99,4r-18,0r-50,-262r39,0r33,188r95,-188r40,0",w:211,k:{y:8,u:14,r:22,o:29,i:9,e:24,a:24,A:44,";":7,":":7,".":48,"-":20,",":48}},W:{d:"209,4r-11,0r-30,-174r-89,174r-11,0r-35,-262r36,0r21,175r88,-175r12,0r26,174r81,-174r38,0",w:306,k:{i:6,e:23,a:17,A:31,".":35,"-":17,",":45}},X:{d:"144,0r-43,-99r-73,99r-41,0r99,-135r-47,-123r36,0r35,95r74,-95r40,0r-100,127r59,131r-39,0",w:200},Y:{d:"126,-115r-21,115r-35,0r20,-115r-58,-143r37,0r43,110r82,-110r39,0",w:205,k:{v:20,u:29,q:40,p:29,o:37,i:11,e:38,a:37,A:46,";":13,":":13,".":53,"-":40,",":53," ":7}},Z:{d:"14,0r0,-9r144,-217r-109,0r5,-32r154,0r0,9r-139,217r108,0r-5,32r-158,0",w:198},"[":{d:"4,74r60,-339r83,0r-5,29r-47,0r-49,280r46,0r-5,30r-83,0",w:132},"\\":{d:"86,0r-53,-259r24,0r54,259r-25,0",w:127},"]":{d:"82,74r-83,0r5,-30r46,0r49,-280r-46,0r6,-29r83,0",w:132},"^":{d:"159,-159r-43,-79r-43,79r-22,0r56,-100r19,0r56,100r-23,0"},_:{d:"-1,45r0,-23r190,0r0,23r-190,0"},"`":{d:"116,-215r-27,-59r34,0r11,59r-18,0"},a:{d:"11,-60v0,-64,44,-132,109,-132v30,0,52,6,65,16v-7,58,-38,117,-16,176r-34,0v-2,-4,-4,-10,-6,-19v-33,37,-118,30,-118,-41xm148,-157v-53,-31,-102,34,-102,96v0,43,45,46,66,19v22,-28,26,-75,36,-115",w:189},b:{d:"191,-109v0,58,-50,115,-107,113v-19,0,-32,-8,-40,-22r-17,22r-22,0v25,-79,35,-181,53,-269r32,0r-15,97v36,-54,116,-9,116,59xm52,-46v34,57,103,-9,103,-60v0,-57,-62,-80,-85,-32",w:200},c:{d:"16,-69v0,-83,71,-149,147,-113r-6,28v-52,-33,-106,20,-106,79v0,51,55,63,91,34r-4,34v-54,27,-122,5,-122,-62",w:165},d:{d:"14,-66v0,-69,42,-125,106,-125v18,0,31,7,40,22r18,-96r32,0r-46,265r-33,0r4,-22v-35,47,-121,25,-121,-44xm123,-163v-44,0,-73,43,-73,90v0,52,48,62,76,31v20,-22,22,-59,28,-94v-3,-12,-15,-27,-31,-27",w:200},e:{d:"187,-146v0,58,-82,82,-132,57v-17,57,48,83,89,49r-3,34v-64,24,-123,4,-123,-72v0,-62,46,-115,108,-114v34,0,61,14,61,46xm60,-113v32,13,94,7,94,-29v0,-14,-10,-22,-30,-22v-30,0,-52,17,-64,51",w:193},f:{d:"158,-234v-36,-14,-52,3,-61,46r43,0r-3,23r-44,0r-29,177v-6,34,-33,55,-68,60r-3,-21v15,-2,32,-25,35,-39r31,-177r-27,0r4,-23r26,0v11,-60,48,-89,102,-72",w:144},g:{d:"154,5v1,67,-111,90,-156,48r16,-25v39,24,97,25,107,-16v0,-35,-71,-10,-73,-45v0,-8,10,-15,30,-23v-33,3,-55,-23,-57,-52v-4,-65,74,-106,126,-71r16,-18r18,19r-17,18v17,45,-14,94,-50,105v-16,5,-25,11,-25,16v1,10,14,5,21,5v29,0,44,13,44,39xm134,-134v0,-17,-13,-32,-31,-31v-46,-7,-70,88,-19,91v26,2,50,-34,50,-60",w:180},h:{d:"77,-168v33,-42,122,-28,108,50r-21,118r-35,0r23,-131v2,-49,-64,-34,-79,-9r-25,140r-34,0r46,-265r33,0",w:200},i:{d:"55,-239v0,-12,12,-23,23,-23v12,0,24,10,24,23v0,12,-12,25,-24,23v-12,2,-23,-12,-23,-23xm24,0r29,-160r-25,0r6,-28r57,0r-33,188r-34,0",w:110},j:{d:"79,-239v0,-11,12,-23,23,-23v12,0,24,11,24,23v0,12,-12,25,-24,23v-12,2,-23,-12,-23,-23xm-24,73r1,-30v40,0,63,-14,69,-44r30,-159r-24,0r5,-28r58,0r-34,185v-10,54,-41,75,-105,76",w:132},k:{d:"78,-83r-14,11r-12,72r-33,0r44,-265r33,0r-24,154v44,-41,71,-69,81,-83r22,20v-19,21,-42,45,-71,73r71,101r-40,0",w:181},l:{d:"86,-21r-4,25v-66,-4,-62,-35,-48,-99r34,-170r35,0r-42,222v0,14,8,22,25,22",w:115},m:{d:"178,-167v27,-40,120,-35,107,41r-22,126r-35,0r23,-133v3,-45,-67,-35,-72,-6r-25,139r-34,0r24,-139v0,-38,-64,-25,-74,0r-25,139r-34,0r26,-154v0,-13,-2,-23,-4,-31r33,-7v2,9,3,18,3,25v17,-30,96,-36,109,0",w:298},n:{d:"128,0r22,-134v2,-46,-64,-29,-78,-6r-25,140r-33,0r26,-154v0,-12,-2,-22,-4,-31r33,-7v3,17,4,26,4,28v24,-39,119,-43,113,24v-4,49,-16,93,-23,140r-35,0",w:196},o:{d:"83,4v-45,0,-69,-28,-70,-73v-1,-64,43,-124,104,-123v45,1,72,25,71,71v-1,66,-37,124,-105,125xm113,-165v-44,2,-64,49,-65,94v0,32,13,47,40,47v42,0,66,-51,65,-95v0,-30,-13,-46,-40,-46",w:193},p:{d:"194,-121v6,81,-75,155,-148,112r-15,84r-34,0r40,-234v0,-9,-1,-18,-3,-26r34,-6v1,2,1,9,3,24v35,-42,133,-26,123,46xm158,-117v5,-52,-66,-57,-89,-24r-19,104v49,37,117,-14,108,-80",w:200},q:{d:"14,-67v0,-81,83,-161,152,-107r9,-14r27,0v-24,87,-33,172,-51,262r-33,0r15,-85v-43,36,-119,4,-119,-56xm50,-75v-6,49,55,63,87,38r20,-112v-45,-43,-115,15,-107,74",w:200},r:{d:"147,-155v-34,-27,-73,15,-79,47r-19,108r-34,0r34,-188r33,0r-5,30v21,-27,43,-40,79,-31",w:149,k:{".":47,"-":26,",":47}},s:{d:"110,-99v53,33,3,103,-55,103v-20,0,-37,-5,-53,-15r17,-32v19,31,102,14,72,-26v-17,-22,-66,-25,-66,-65v0,-53,71,-74,120,-45r-15,31v-22,-31,-86,-13,-64,23v9,9,31,18,44,26",w:145},t:{d:"121,-2v-38,16,-99,3,-87,-53r22,-107r-21,0r5,-26r22,0r8,-40r38,-14r-13,54r52,0r-5,26r-52,0r-22,110v-2,30,32,31,55,21",w:151},u:{d:"132,-27v-24,48,-128,44,-113,-38r22,-123r35,0r-24,134v-1,37,46,34,67,15v36,-32,26,-99,42,-149r36,0r-35,188r-35,0",w:200},v:{d:"81,4r-9,0r-55,-193r35,0r34,130r72,-130r38,0",w:176,k:{".":44,",":44}},w:{d:"183,4r-9,0r-35,-123r-75,123r-9,0r-35,-193r34,0r21,120r70,-120r9,0r33,121r59,-121r35,0",w:267,k:{".":41,",":41}},x:{d:"123,0r-33,-66r-52,66r-40,0r77,-98r-47,-90r39,0r31,65r48,-65r44,0r-75,93r52,95r-44,0",w:180},y:{d:"5,74r0,-34v42,0,57,-11,67,-39v-17,0,-28,-16,-33,-49r-24,-140r37,0r20,136v2,13,7,21,15,21r68,-157r37,0r-94,210v-17,37,-38,52,-93,52",w:177,k:{".":42,",":42}},z:{d:"59,-30r94,0r-6,30r-146,0r0,-9r116,-149r-97,0r6,-30r147,0r0,9",w:170},"{":{d:"45,19v0,27,20,31,54,30r-4,25v-43,3,-84,-7,-86,-44v-2,-34,66,-115,-3,-122r3,-15v44,-1,50,-51,41,-95v1,-48,49,-67,104,-62r-4,23v-40,-4,-70,5,-66,45v6,52,-7,79,-47,96v61,20,8,79,8,119",w:132},"|":{d:"81,49r0,-296r26,0r0,296r-26,0"},"}":{d:"79,-37v0,76,-22,120,-102,111r4,-25v66,6,66,-34,66,-91v0,-26,17,-46,49,-58v-21,-13,-32,-28,-32,-43v0,-15,26,-59,23,-75v2,-27,-29,-23,-55,-23r4,-23v44,-3,86,5,86,43v0,30,-60,107,4,114r-2,15v-30,2,-45,21,-45,55",w:132},"~":{d:"124,-87v-30,0,-70,-40,-94,-7r-8,-4v3,-19,22,-39,44,-39v34,0,70,48,92,5r8,3v-5,20,-20,42,-42,42"},"\u00c4":{d:"165,0r-9,-54r-92,0r-30,54r-40,0r151,-261r9,0r51,261r-40,0xm137,-190r-59,110r75,0xm89,-299v0,-11,9,-19,20,-19v11,0,20,8,20,19v1,11,-10,20,-20,20v-11,0,-20,-9,-20,-20xm172,-299v0,-11,9,-19,20,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:219},"\u00c5":{d:"189,-307v0,19,-17,31,-39,31v-22,0,-39,-11,-39,-31v0,-39,78,-42,78,0xm174,-307v-2,-22,-48,-20,-48,0v0,11,8,16,24,16v12,1,24,-5,24,-16xm165,0r-9,-54r-92,0r-30,54r-40,0r151,-261r9,0r51,261r-40,0xm137,-190r-59,110r75,0",w:219},"\u00c7":{d:"25,-93v0,-104,77,-199,187,-161r-10,35v-73,-46,-140,46,-140,119v0,81,76,91,121,47r-3,38v-14,13,-37,19,-67,19v-57,0,-88,-39,-88,-97xm115,10v35,-3,40,45,15,59v-11,7,-24,11,-40,11r-1,-17v17,0,35,-7,36,-22v0,-7,-5,-10,-14,-10",w:215},"\u00c9":{d:"85,-226r-13,72r86,0r-6,30r-85,0r-16,92r117,0r-6,32r-154,0r46,-258r155,0r-5,32r-119,0xm171,-337r-40,59r-24,0r30,-59r34,0",w:192},"\u00d1":{d:"118,-315v24,0,49,30,64,0r15,0v-16,46,-51,37,-81,23v-8,0,-15,4,-21,13r-16,0v6,-16,20,-36,39,-36xm176,4r-100,-183r-30,179r-36,0r46,-258r14,0r98,176r30,-176r35,0r-46,262r-11,0",w:229},"\u00d6":{d:"105,4v-54,0,-83,-44,-83,-99v0,-83,50,-167,130,-167v60,0,91,34,91,94v0,94,-47,172,-138,172xm149,-231v-53,0,-91,79,-90,132v0,39,16,71,52,72v62,0,96,-71,95,-137v0,-44,-19,-67,-57,-67xm94,-299v0,-11,9,-19,20,-19v11,0,20,8,20,19v1,11,-10,20,-20,20v-11,0,-20,-9,-20,-20xm177,-299v0,-11,9,-19,20,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:242},"\u00dc":{d:"171,-17v-51,41,-162,26,-146,-62r32,-179r37,0r-33,188v-3,46,61,55,88,28v11,-10,18,-23,21,-40r31,-176r37,0r-32,180v-5,26,-16,46,-35,61xm84,-299v0,-11,9,-19,20,-19v11,0,20,8,20,19v1,11,-10,20,-20,20v-11,0,-20,-9,-20,-20xm167,-299v0,-11,9,-19,20,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:233},"\u00e1":{d:"11,-60v0,-64,44,-132,109,-132v30,0,52,6,65,16v-7,58,-38,117,-16,176r-34,0v-2,-4,-4,-10,-6,-19v-33,37,-118,30,-118,-41xm148,-157v-53,-31,-102,34,-102,96v0,43,45,46,66,19v22,-28,26,-75,36,-115xm177,-274r-40,59r-24,0r30,-59r34,0",w:189},"\u00e0":{d:"11,-60v0,-64,44,-132,109,-132v30,0,52,6,65,16v-7,58,-38,117,-16,176r-34,0v-2,-4,-4,-10,-6,-19v-33,37,-118,30,-118,-41xm148,-157v-53,-31,-102,34,-102,96v0,43,45,46,66,19v22,-28,26,-75,36,-115xm115,-215r-27,-59r34,0r11,59r-18,0",w:189},"\u00e2":{d:"153,-215r-23,-34r-37,34r-31,0r64,-60r19,0r42,60r-34,0xm11,-60v0,-64,44,-132,109,-132v30,0,52,6,65,16v-7,58,-38,117,-16,176r-34,0v-2,-4,-4,-10,-6,-19v-33,37,-118,30,-118,-41xm148,-157v-53,-31,-102,34,-102,96v0,43,45,46,66,19v22,-28,26,-75,36,-115",w:189},"\u00e4":{d:"11,-60v0,-64,44,-132,109,-132v30,0,52,6,65,16v-7,58,-38,117,-16,176r-34,0v-2,-4,-4,-10,-6,-19v-33,37,-118,30,-118,-41xm148,-157v-53,-31,-102,34,-102,96v0,43,45,46,66,19v22,-28,26,-75,36,-115xm67,-236v0,-11,9,-19,20,-19v11,0,20,8,20,19v1,11,-10,20,-20,20v-11,0,-20,-9,-20,-20xm150,-236v0,-11,9,-19,20,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:189},"\u00e3":{d:"111,-252v24,-1,50,30,64,0r16,0v-17,46,-50,39,-81,23v-8,0,-16,5,-22,14r-16,0v7,-16,20,-36,39,-37xm11,-60v0,-64,44,-132,109,-132v30,0,52,6,65,16v-7,58,-38,117,-16,176r-34,0v-2,-4,-4,-10,-6,-19v-33,37,-118,30,-118,-41xm148,-157v-53,-31,-102,34,-102,96v0,43,45,46,66,19v22,-28,26,-75,36,-115",w:189},"\u00e5":{d:"174,-246v0,19,-17,31,-39,31v-22,0,-39,-11,-39,-31v0,-39,80,-42,78,0xm159,-246v-2,-21,-46,-21,-47,0v0,11,7,16,23,16v12,1,24,-5,24,-16xm11,-60v0,-64,44,-132,109,-132v30,0,52,6,65,16v-7,58,-38,117,-16,176r-34,0v-2,-4,-4,-10,-6,-19v-33,37,-118,30,-118,-41xm148,-157v-53,-31,-102,34,-102,96v0,43,45,46,66,19v22,-28,26,-75,36,-115",w:189},"\u00e7":{d:"16,-69v0,-83,71,-149,147,-113r-6,28v-52,-33,-106,20,-106,79v0,51,55,63,91,34r-4,34v-54,27,-122,5,-122,-62xm88,10v35,-3,40,45,15,59v-11,7,-24,11,-40,11r-1,-17v17,0,35,-7,36,-22v0,-7,-5,-10,-14,-10",w:165},"\u00e9":{d:"187,-146v0,58,-82,82,-132,57v-17,57,48,83,89,49r-3,34v-64,24,-123,4,-123,-72v0,-62,46,-115,108,-114v34,0,61,14,61,46xm60,-113v32,13,94,7,94,-29v0,-14,-10,-22,-30,-22v-30,0,-52,17,-64,51xm173,-274r-40,59r-24,0r30,-59r34,0",w:193},"\u00e8":{d:"187,-146v0,58,-82,82,-132,57v-17,57,48,83,89,49r-3,34v-64,24,-123,4,-123,-72v0,-62,46,-115,108,-114v34,0,61,14,61,46xm60,-113v32,13,94,7,94,-29v0,-14,-10,-22,-30,-22v-30,0,-52,17,-64,51xm123,-215r-27,-59r34,0r11,59r-18,0",w:193},"\u00ea":{d:"151,-215r-23,-34r-37,34r-30,0r63,-60r19,0r43,60r-35,0xm187,-146v0,58,-82,82,-132,57v-17,57,48,83,89,49r-3,34v-64,24,-123,4,-123,-72v0,-62,46,-115,108,-114v34,0,61,14,61,46xm60,-113v32,13,94,7,94,-29v0,-14,-10,-22,-30,-22v-30,0,-52,17,-64,51",w:193},"\u00eb":{d:"187,-146v0,58,-82,82,-132,57v-17,57,48,83,89,49r-3,34v-64,24,-123,4,-123,-72v0,-62,46,-115,108,-114v34,0,61,14,61,46xm60,-113v32,13,94,7,94,-29v0,-14,-10,-22,-30,-22v-30,0,-52,17,-64,51xm66,-236v0,-11,9,-19,20,-19v11,0,20,8,20,19v1,11,-10,20,-20,20v-11,0,-20,-9,-20,-20xm149,-236v0,-11,9,-19,20,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:193},"\u00ed":{d:"24,0r29,-160r-25,0r6,-28r57,0r-33,188r-34,0xm108,-274r-40,59r-24,0r30,-59r34,0",w:110},"\u00ec":{d:"24,0r29,-160r-25,0r6,-28r57,0r-33,188r-34,0xm63,-215r-27,-59r34,0r11,59r-18,0",w:110},"\u00ee":{d:"114,-215r-22,-34r-38,34r-30,0r64,-60r19,0r42,60r-35,0xm42,0r28,-160r-25,0r7,-28r57,0r-33,188r-34,0",w:110},"\u00ef":{d:"24,0r29,-160r-25,0r6,-28r57,0r-33,188r-34,0xm24,-236v0,-11,9,-19,20,-19v11,0,20,8,20,19v1,11,-10,20,-20,20v-11,0,-20,-9,-20,-20xm107,-236v0,-11,9,-19,20,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:110},"\u00f1":{d:"104,-252v24,0,49,30,64,0r15,0v-11,24,-24,37,-40,37v-22,-1,-47,-30,-62,0r-16,0v6,-17,20,-36,39,-37xm128,0r22,-134v2,-46,-64,-29,-78,-6r-25,140r-33,0r26,-154v0,-12,-2,-22,-4,-31r33,-7v3,17,4,26,4,28v24,-39,119,-43,113,24v-4,49,-16,93,-23,140r-35,0",w:196},"\u00f3":{d:"83,4v-45,0,-69,-28,-70,-73v-1,-64,43,-124,104,-123v45,1,72,25,71,71v-1,66,-37,124,-105,125xm113,-165v-44,2,-64,49,-65,94v0,32,13,47,40,47v42,0,66,-51,65,-95v0,-30,-13,-46,-40,-46xm161,-274r-40,59r-24,0r30,-59r34,0",w:193},"\u00f2":{d:"83,4v-45,0,-69,-28,-70,-73v-1,-64,43,-124,104,-123v45,1,72,25,71,71v-1,66,-37,124,-105,125xm113,-165v-44,2,-64,49,-65,94v0,32,13,47,40,47v42,0,66,-51,65,-95v0,-30,-13,-46,-40,-46xm116,-215r-27,-59r34,0r11,59r-18,0",w:193},"\u00f4":{d:"142,-215r-22,-34r-38,34r-30,0r64,-60r18,0r43,60r-35,0xm83,4v-45,0,-69,-28,-70,-73v-1,-64,43,-124,104,-123v45,1,72,25,71,71v-1,66,-37,124,-105,125xm113,-165v-44,2,-64,49,-65,94v0,32,13,47,40,47v42,0,66,-51,65,-95v0,-30,-13,-46,-40,-46",w:193},"\u00f6":{d:"83,4v-45,0,-69,-28,-70,-73v-1,-64,43,-124,104,-123v45,1,72,25,71,71v-1,66,-37,124,-105,125xm113,-165v-44,2,-64,49,-65,94v0,32,13,47,40,47v42,0,66,-51,65,-95v0,-30,-13,-46,-40,-46xm62,-236v0,-11,9,-19,20,-19v11,0,20,8,20,19v1,11,-10,20,-20,20v-11,0,-20,-9,-20,-20xm145,-236v0,-11,9,-19,20,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:193},"\u00f5":{d:"100,-252v24,0,50,30,64,0r16,0v-17,46,-50,39,-81,23v-8,0,-16,5,-22,14r-16,0v6,-17,20,-36,39,-37xm83,4v-45,0,-69,-28,-70,-73v-1,-64,43,-124,104,-123v45,1,72,25,71,71v-1,66,-37,124,-105,125xm113,-165v-44,2,-64,49,-65,94v0,32,13,47,40,47v42,0,66,-51,65,-95v0,-30,-13,-46,-40,-46",w:193},"\u00fa":{d:"132,-27v-24,48,-128,44,-113,-38r22,-123r35,0r-24,134v-1,37,46,34,67,15v36,-32,26,-99,42,-149r36,0r-35,188r-35,0xm165,-274r-40,59r-24,0r30,-59r34,0",w:200},"\u00f9":{d:"132,-27v-24,48,-128,44,-113,-38r22,-123r35,0r-24,134v-1,37,46,34,67,15v36,-32,26,-99,42,-149r36,0r-35,188r-35,0xm120,-215r-27,-59r34,0r11,59r-18,0",w:200},"\u00fb":{d:"151,-215r-23,-34r-37,34r-30,0r63,-60r19,0r43,60r-35,0xm132,-27v-24,48,-128,44,-113,-38r22,-123r35,0r-24,134v-1,37,46,34,67,15v36,-32,26,-99,42,-149r36,0r-35,188r-35,0",w:200},"\u00fc":{d:"132,-27v-24,48,-128,44,-113,-38r22,-123r35,0r-24,134v-1,37,46,34,67,15v36,-32,26,-99,42,-149r36,0r-35,188r-35,0xm66,-236v0,-11,9,-19,20,-19v11,0,20,8,20,19v1,11,-10,20,-20,20v-11,0,-20,-9,-20,-20xm149,-236v0,-11,9,-19,20,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:200},"\u00b0":{d:"152,-225v0,20,-17,37,-37,37v-20,0,-37,-16,-37,-37v0,-21,17,-37,37,-37v20,0,37,17,37,37xm139,-225v0,-13,-11,-25,-24,-25v-14,0,-25,11,-25,25v0,13,12,24,25,24v13,0,24,-11,24,-24"},"\u00a2":{d:"31,-75v0,-53,34,-94,85,-94r14,-45r17,0r-13,47v11,3,20,8,28,14r-7,25v-8,-7,-18,-13,-28,-16r-29,103v16,3,33,-4,48,-12r-4,27v-15,6,-30,8,-50,8r-13,45r-21,0r15,-49v-18,-2,-42,-32,-42,-53xm109,-144v-39,0,-64,73,-29,98"},"\u00a3":{d:"14,-21v25,-11,48,-59,45,-101r-31,0r4,-26r27,0v-6,-85,39,-125,115,-108v8,2,13,6,16,10r-16,26v-45,-30,-87,2,-80,72r37,0r-4,26r-33,0v1,26,-9,84,-25,93v26,19,81,15,94,-12r21,23v-7,15,-44,33,-67,33v-36,0,-59,-20,-98,-9",w:190},"\u00a7":{d:"29,-126v0,-15,12,-36,23,-39v-10,-6,-14,-16,-14,-31v0,-63,83,-84,127,-49r-15,27v-17,-26,-106,-4,-65,29v19,15,68,14,68,51v0,16,-7,31,-21,43v45,40,-12,99,-66,99v-26,0,-46,-5,-59,-16r16,-31v20,19,89,27,87,-16v-1,-32,-81,-24,-81,-67xm77,-155v-31,24,-4,44,34,47v12,-14,8,-38,-10,-40v-5,-1,-13,-4,-24,-7",w:163},"\u00b6":{d:"121,-29v-47,2,-92,-38,-92,-88v0,-72,63,-116,133,-122r2,-19r31,0r-2,16v11,-1,18,-1,24,-1r0,23r-27,0r-31,167v7,0,16,-3,28,-7r4,24v-13,5,-26,8,-37,8v-14,54,-22,94,-69,94v-26,0,-43,-4,-51,-12r10,-27v41,21,68,6,77,-56xm158,-214v-57,11,-97,128,-30,157",w:215},"\u00df":{d:"111,-159v6,-22,36,-27,36,-57v0,-23,-37,-25,-50,-9v-6,8,-12,23,-16,46r-35,199v-6,28,-35,49,-66,52r-2,-21v21,-6,33,-22,38,-50r36,-205v9,-35,29,-60,70,-61v32,0,55,11,57,39v2,27,-24,47,-32,62v16,14,43,33,43,67v0,60,-46,118,-107,96r11,-26v37,10,59,-26,60,-61v1,-37,-35,-39,-43,-71",w:196},"\u00ae":{d:"137,2v-65,0,-119,-54,-119,-118v0,-64,55,-119,119,-119v64,0,119,55,119,119v0,64,-54,118,-119,118xm137,-17v53,0,99,-46,99,-99v0,-53,-46,-99,-99,-99v-53,0,-99,46,-99,99v0,53,46,99,99,99xm174,-45r-37,-62r-21,0r0,62r-21,0r0,-146v44,-2,90,0,90,41v0,19,-9,31,-28,39r40,66r-23,0xm116,-124v27,-1,48,3,48,-25v0,-21,-22,-26,-48,-24r0,49",w:256},"\u00a9":{d:"137,2v-65,0,-119,-54,-119,-118v0,-64,55,-119,119,-119v64,0,119,55,119,119v0,64,-54,118,-119,118xm137,-17v53,0,99,-46,99,-99v0,-53,-46,-99,-99,-99v-53,0,-99,46,-99,99v0,53,46,99,99,99xm97,-115v-6,45,47,73,74,41r11,15v-41,42,-106,5,-106,-58v0,-55,50,-92,100,-68r-6,17v-35,-22,-79,9,-73,53",w:256},"\u00b4":{d:"161,-274r-40,59r-24,0r30,-59r34,0"},"\u00a8":{d:"66,-236v0,-11,9,-19,20,-19v11,0,20,8,20,19v1,11,-10,20,-20,20v-11,0,-20,-9,-20,-20xm149,-236v0,-11,9,-19,20,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20"},"\u00c6":{d:"137,-54r-77,0r-33,54r-42,0r170,-258r172,0r-6,32r-117,0r-12,72r83,0r-5,30r-83,0r-17,92r115,0r-5,32r-152,0xm167,-220r-91,140r66,0",w:312},"\u00d8":{d:"35,-37v-55,-116,63,-285,182,-204r18,-21r35,0r-37,42v36,102,-21,224,-128,224v-21,0,-38,-5,-52,-18r-16,18r-37,0xm63,-69r129,-145v-76,-61,-152,61,-129,145xm77,-42v75,52,145,-54,127,-145",w:242},"\u00b1":{d:"112,-124r62,0r0,25r-62,0r0,60r-24,0r0,-60r-61,0r0,-25r61,0r0,-60r24,0r0,60xm174,-21r0,25r-147,0r0,-25r147,0"},"\u00a5":{d:"126,-115r-4,19r44,0r-4,23r-44,0r-13,73r-35,0r13,-73r-43,0r4,-23r43,0r3,-19r-58,-143r37,0r43,110r82,-110r39,0",w:200},"\u00aa":{d:"39,-170v-6,-63,67,-117,124,-81v-5,39,-31,89,-6,124r-23,0v-5,-5,-9,-9,-10,-14v-23,29,-91,18,-85,-29xm138,-236v-36,-20,-71,24,-71,64v0,17,7,26,23,26v32,0,41,-58,48,-90",w:162},"\u00ba":{d:"97,-126v-32,0,-52,-19,-53,-50v0,-49,27,-86,76,-86v32,0,51,19,51,50v0,49,-26,86,-74,86xm116,-243v-31,0,-45,31,-45,65v0,18,12,34,30,33v29,0,44,-34,43,-66v0,-21,-9,-32,-28,-32",w:165},"\u00e6":{d:"301,-146v1,58,-82,82,-132,57v-17,57,48,83,89,49r-3,34v-40,14,-73,16,-97,-12v0,7,0,13,-1,18r-33,0v0,-5,1,-14,3,-27v-8,17,-33,31,-57,31v-39,-1,-59,-24,-59,-64v0,-64,44,-132,109,-132v24,0,45,2,60,7r-2,13v35,-29,122,-31,123,26xm146,-159v-62,-26,-101,37,-100,98v0,25,11,37,32,37v45,0,61,-84,68,-135xm174,-113v33,13,93,5,94,-31v1,-24,-57,-27,-70,-5v-10,10,-19,22,-24,36",w:304},"\u00f8":{d:"22,-29v-41,-89,53,-206,144,-148r14,-15r29,0r-30,32v39,89,-52,206,-143,149r-14,15r-32,0xm142,-153v-51,-39,-105,32,-93,96xm59,-35v54,38,104,-33,93,-97",w:193},"\u00bf":{d:"116,-167v0,13,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,12,-25,25,-25v13,0,25,12,25,25xm98,-113v19,68,-66,78,-70,136v-2,31,47,28,63,13r11,23v-28,25,-108,22,-108,-35v0,-69,84,-76,87,-137r17,0",w:132},"\u00a1":{d:"110,-167v0,13,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25v14,0,25,12,25,25xm84,-121v0,94,-8,124,-21,195r-40,0v14,-80,16,-98,48,-195r13,0",w:132},"\u00ac":{d:"169,-156r0,86r-25,0r0,-61r-123,0r0,-25r148,0"},"\u00ab":{d:"94,-94r2,-11r70,-43r-4,22r-42,27r33,25r-4,22xm22,-94r2,-11r70,-43r-4,22r-43,27r34,25r-4,22"},"\u00bb":{d:"171,-94r-70,42r4,-22r41,-25r-32,-27r4,-22r54,43xm100,-94r-70,42r4,-22r41,-25r-32,-27r4,-22r55,43"},"\u00a0":{w:108},"\u00c0":{d:"165,0r-9,-54r-92,0r-30,54r-40,0r151,-261r9,0r51,261r-40,0xm137,-190r-59,110r75,0xm142,-278r-27,-59r34,0r11,59r-18,0",w:219},"\u00c3":{d:"130,-315v24,0,50,30,64,0r16,0v-17,45,-51,39,-81,23v-8,0,-16,4,-22,13r-16,0v6,-16,20,-35,39,-36xm165,0r-9,-54r-92,0r-30,54r-40,0r151,-261r9,0r51,261r-40,0xm137,-190r-59,110r75,0",w:219},"\u00d5":{d:"144,-315v24,0,50,30,64,0r16,0v-17,45,-51,39,-81,23v-8,0,-16,4,-22,13r-16,0v6,-16,20,-35,39,-36xm103,4v-54,0,-83,-44,-83,-99v0,-83,50,-167,130,-167v60,0,91,34,91,94v0,94,-47,172,-138,172xm147,-231v-53,0,-91,79,-90,132v0,39,16,71,52,72v62,0,96,-71,95,-137v0,-44,-19,-67,-57,-67",w:242},"\u00f7":{d:"102,-202v14,0,27,12,27,26v0,14,-13,27,-27,27v-14,0,-26,-13,-26,-27v0,-13,13,-26,26,-26xm175,-124r0,25r-147,0r0,-25r147,0xm102,-70v15,0,27,12,27,26v0,14,-13,27,-27,27v-14,0,-26,-13,-26,-27v0,-14,12,-26,26,-26"},"\u00ff":{d:"5,74r0,-34v42,0,57,-11,67,-39v-17,0,-28,-16,-33,-49r-24,-140r37,0r20,136v2,13,7,21,15,21r68,-157r37,0r-94,210v-17,37,-38,52,-93,52xm59,-236v0,-11,9,-19,20,-19v11,0,20,8,20,19v1,11,-10,20,-20,20v-11,0,-20,-9,-20,-20xm142,-236v0,-11,9,-19,20,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:177},"\u00c2":{d:"176,-278r-23,-34r-37,34r-30,0r63,-60r19,0r42,60r-34,0xm165,0r-9,-54r-92,0r-30,54r-40,0r151,-261r9,0r51,261r-40,0xm137,-190r-59,110r75,0",w:219},"\u00ca":{d:"161,-278r-23,-34r-37,34r-30,0r63,-60r19,0r43,60r-35,0xm85,-226r-13,72r86,0r-6,30r-85,0r-16,92r117,0r-6,32r-154,0r46,-258r155,0r-5,32r-119,0",w:192},"\u00c1":{d:"165,0r-9,-54r-92,0r-30,54r-40,0r151,-261r9,0r51,261r-40,0xm137,-190r-59,110r75,0xm186,-337r-40,59r-24,0r30,-59r34,0",w:219},"\u00cb":{d:"85,-226r-13,72r86,0r-6,30r-85,0r-16,92r117,0r-6,32r-154,0r46,-258r155,0r-5,32r-119,0xm78,-299v0,-11,9,-19,20,-19v11,0,20,8,20,19v1,11,-10,20,-20,20v-11,0,-20,-9,-20,-20xm161,-299v0,-11,9,-19,20,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:192},"\u00c8":{d:"85,-226r-13,72r86,0r-6,30r-85,0r-16,92r117,0r-6,32r-154,0r46,-258r155,0r-5,32r-119,0xm136,-278r-27,-59r34,0r11,59r-18,0",w:192},"\u00cd":{d:"13,0r46,-258r36,0r-46,258r-36,0xm132,-337r-40,59r-24,0r30,-59r34,0",w:100},"\u00ce":{d:"108,-278r-23,-34r-37,34r-30,0r64,-60r18,0r43,60r-35,0xm13,0r46,-258r36,0r-46,258r-36,0",w:100},"\u00cf":{d:"13,0r46,-258r36,0r-46,258r-36,0xm20,-299v0,-11,9,-19,20,-19v11,0,20,8,20,19v1,11,-10,20,-20,20v-11,0,-20,-9,-20,-20xm103,-299v0,-11,9,-19,20,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20",w:100},"\u00cc":{d:"13,0r46,-258r36,0r-46,258r-36,0xm76,-278r-27,-59r34,0r11,59r-18,0",w:100},"\u00d3":{d:"103,4v-54,0,-83,-44,-83,-99v0,-83,50,-167,130,-167v60,0,91,34,91,94v0,94,-47,172,-138,172xm147,-231v-53,0,-91,79,-90,132v0,39,16,71,52,72v62,0,96,-71,95,-137v0,-44,-19,-67,-57,-67xm201,-337r-40,59r-24,0r30,-59r34,0",w:242},"\u00d4":{d:"187,-278r-22,-34r-38,34r-30,0r64,-60r18,0r43,60r-35,0xm103,4v-54,0,-83,-44,-83,-99v0,-83,50,-167,130,-167v60,0,91,34,91,94v0,94,-47,172,-138,172xm147,-231v-53,0,-91,79,-90,132v0,39,16,71,52,72v62,0,96,-71,95,-137v0,-44,-19,-67,-57,-67",w:242},"\u00d2":{d:"103,4v-54,0,-83,-44,-83,-99v0,-83,50,-167,130,-167v60,0,91,34,91,94v0,94,-47,172,-138,172xm147,-231v-53,0,-91,79,-90,132v0,39,16,71,52,72v62,0,96,-71,95,-137v0,-44,-19,-67,-57,-67xm162,-278r-27,-59r34,0r11,59r-18,0",w:242},"\u00da":{d:"171,-17v-51,41,-162,26,-146,-62r32,-179r37,0r-33,188v-3,46,61,55,88,28v11,-10,18,-23,21,-40r31,-176r37,0r-32,180v-5,26,-16,46,-35,61xm196,-337r-40,59r-24,0r30,-59r34,0",w:233},"\u00db":{d:"179,-278r-23,-34r-37,34r-30,0r64,-60r18,0r43,60r-35,0xm171,-17v-51,41,-162,26,-146,-62r32,-179r37,0r-33,188v-3,46,61,55,88,28v11,-10,18,-23,21,-40r31,-176r37,0r-32,180v-5,26,-16,46,-35,61",w:233},"\u00d9":{d:"171,-17v-51,41,-162,26,-146,-62r32,-179r37,0r-33,188v-3,46,61,55,88,28v11,-10,18,-23,21,-40r31,-176r37,0r-32,180v-5,26,-16,46,-35,61xm149,-278r-27,-59r34,0r11,59r-18,0",w:233},"\u00b8":{d:"78,10v35,-3,40,45,15,59v-11,7,-24,11,-40,11r-1,-17v17,0,35,-7,36,-22v0,-7,-5,-10,-14,-10"},"\u00a6":{d:"88,-122r0,-127r26,0r0,127r-26,0xm88,49r0,-128r26,0r0,128r-26,0"},"\u00d0":{d:"219,-158v0,95,-61,159,-151,158r-56,0r22,-124r-28,0r5,-28r27,0r19,-106v85,-16,162,14,162,100xm181,-160v0,-48,-44,-81,-95,-67r-12,75r40,0r-4,28r-41,0r-15,91v82,11,127,-51,127,-127",w:220},"\u00f0":{d:"11,-69v-2,-76,54,-141,131,-118v-4,-10,-9,-21,-16,-34r-31,16r-8,-15r31,-15v-3,-5,-11,-15,-24,-31r36,-6r18,23r30,-16r9,13r-31,17v53,76,40,243,-75,239v-45,-2,-69,-28,-70,-73xm112,-162v-43,-1,-68,47,-68,91v0,30,14,45,42,45v42,0,66,-47,65,-91v0,-30,-13,-45,-39,-45",w:197},"\u00dd":{d:"126,-115r-21,115r-35,0r20,-115r-58,-143r37,0r43,110r82,-110r39,0xm178,-327r-40,59r-24,0r30,-59r34,0",w:205},"\u00de":{d:"84,-224v59,-13,113,14,113,70v0,82,-60,115,-143,99r-10,55r-35,0r45,-258r35,0xm59,-87v51,19,100,-7,100,-62v0,-43,-40,-54,-81,-43",w:195},"\u00fe":{d:"194,-121v6,81,-75,155,-148,112r-15,84r-34,0r58,-340r35,0r-18,98v34,-42,133,-27,122,46xm50,-37v49,37,117,-14,108,-80v6,-53,-66,-57,-89,-24",w:200},"\u00b9":{d:"73,-105r22,-118r-37,20r4,-20v25,-12,44,-24,56,-37r6,0r-27,155r-24,0",w:162},"\u00b2":{d:"60,-232v8,-32,89,-45,88,1v-2,37,-47,78,-67,106r59,0r-4,20r-95,0v21,-40,74,-75,83,-121v-5,-28,-41,-17,-52,6",w:162},"\u00b3":{d:"130,-156v0,46,-62,70,-94,41r14,-18v16,18,57,9,57,-22v0,-15,-9,-23,-27,-23v2,-5,1,-13,4,-17v28,5,48,-47,9,-46v-10,0,-18,3,-23,8r-6,-16v19,-22,74,-16,74,19v0,19,-16,38,-30,43v15,5,22,15,22,31",w:162},"\u00bd":{d:"69,6r-22,0r171,-268r22,0xm52,-105r22,-118r-37,20r4,-20v25,-12,44,-24,56,-37r6,0r-27,155r-24,0xm184,-127v8,-32,89,-45,88,1v-2,37,-47,78,-67,106r59,0r-4,20r-95,0v21,-40,74,-75,83,-121v-5,-28,-41,-17,-52,6",w:293},"\u00bc":{d:"248,-37r-6,37r-23,0r6,-37r-71,0r2,-12r106,-106r7,0r-18,100r16,0r-3,18r-16,0xm239,-109r-55,54r45,0xm66,6r-22,0r171,-268r22,0xm49,-105r22,-118r-37,20r4,-20v25,-12,44,-24,56,-37r6,0r-27,155r-24,0",w:293},"\u00be":{d:"259,-37r-6,37r-23,0r7,-37r-71,0r2,-12r105,-106r7,0r-17,100r15,0r-3,18r-16,0xm250,-109r-55,54r45,0xm91,6r-23,0r171,-268r22,0xm118,-156v0,46,-62,70,-94,41r14,-18v16,18,57,9,57,-22v0,-15,-9,-23,-27,-23v2,-5,1,-13,4,-17v28,5,48,-47,9,-46v-10,0,-18,3,-23,8r-6,-16v19,-22,74,-16,74,19v0,19,-16,38,-30,43v15,5,22,15,22,31",w:293},"\u00b5":{d:"127,-26v-12,25,-57,39,-87,23r-13,77r-34,0r47,-262r33,0r-21,128v-4,38,46,42,66,23v8,-8,13,-13,14,-15r24,-136r33,0r-33,188r-33,0",w:200},"\u00fd":{d:"5,74r0,-34v42,0,57,-11,67,-39v-17,0,-28,-16,-33,-49r-24,-140r37,0r20,136v2,13,7,21,15,21r68,-157r37,0r-94,210v-17,37,-38,52,-93,52xm157,-274r-40,59r-24,0r30,-59r34,0",w:177},"\u00d7":{d:"96,-128r55,-56r18,18r-56,55r55,56r-17,17r-55,-55r-56,56r-18,-18r56,-55r-56,-57r17,-17"},"\u00ad":{d:"25,-89r6,-31r75,0r-5,31r-76,0",w:132},"\u00af":{d:"-1,-271r0,-23r190,0r0,23r-190,0"},"\u00b7":{d:"36,-114v0,-14,12,-27,26,-27v14,0,27,13,27,27v0,14,-13,26,-27,26v-13,0,-26,-13,-26,-26",w:132},"\u00a4":{d:"173,-43r-25,-26v-28,20,-61,20,-89,0r-25,26r-15,-16r25,-24v-19,-30,-19,-59,0,-89r-25,-24r15,-16r25,25v28,-19,61,-19,89,0r25,-25r15,16r-25,24v19,30,19,59,0,89r25,24xm103,-180v-29,0,-53,24,-53,52v0,29,23,53,53,53v30,0,53,-24,53,-53v0,-29,-24,-52,-53,-52"}}});Cufon.registerFont({w:210,face:{"font-family":"trebuchet","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 3 2 2 2 9 2 4",ascent:"288",descent:"-72","x-height":"4",bbox:"-27 -338 355 80.3603","underline-thickness":"35.1562","underline-position":"-28.3008",slope:"-10","unicode-range":"U+0020-U+00FF"},glyphs:{" ":{w:108,k:{Y:7,A:13}},"!":{d:"78,-75r-24,0r9,-113r13,-74r52,0v-7,64,-30,125,-50,187xm58,4v-15,0,-29,-12,-29,-29v0,-16,14,-28,29,-28v15,0,29,12,29,28v0,17,-14,29,-29,29",w:132},"\"":{d:"136,-191r-35,0r9,-67r46,0xm64,-191r-35,0r9,-67r45,0",w:140},"#":{d:"206,-160r-37,0r-15,56r27,0r0,32r-36,0r-21,76r-34,0r21,-76r-41,0r-20,76r-35,0r21,-76r-25,0r0,-32r34,0r14,-56r-27,0r0,-32r36,0r19,-69r34,0r-19,69r40,0r19,-69r34,0r-18,69r29,0r0,32xm135,-160r-41,0r-15,56r41,0"},"$":{d:"96,-190v17,47,90,54,87,120v-2,44,-31,70,-74,74r-5,28r-40,0r5,-28v-16,-2,-30,-8,-43,-14r15,-45v29,31,121,20,89,-31v-21,-33,-81,-49,-81,-100v0,-43,27,-68,65,-75r6,-35r40,0r-6,34v18,1,31,4,40,8r-14,47v-23,-25,-86,-21,-84,17"},"%":{d:"148,-215v1,41,-27,80,-68,80v-30,0,-45,-16,-45,-46v-1,-43,27,-82,69,-81v29,0,44,15,44,47xm99,-233v-20,-1,-29,27,-29,47v0,15,5,22,14,22v22,0,30,-27,30,-50v0,-13,-5,-19,-15,-19xm54,4r-36,0r209,-266r36,0xm249,-76v1,41,-28,81,-68,80v-30,0,-46,-16,-46,-46v0,-43,28,-83,70,-82v29,0,44,16,44,48xm199,-95v-27,0,-42,64,-15,70v22,0,30,-27,30,-50v0,-13,-5,-20,-15,-20",w:263},"&":{d:"176,-212v-28,-28,-91,-16,-87,29v0,9,3,17,11,24r59,0r6,-30r45,-7r-7,38r44,0r-7,37r-44,0v-8,33,-11,41,-11,69v0,28,27,17,46,3r0,44v-20,11,-63,14,-78,-3v-52,24,-132,14,-132,-52v0,-34,13,-63,40,-86v-55,-72,48,-147,127,-105xm90,-121v-29,26,-39,87,17,86v13,0,24,-2,32,-6v2,-28,10,-54,14,-80r-63,0",w:254},"'":{d:"83,-191r-35,0r9,-67r46,0",w:108},"(":{d:"87,80v-122,-83,-42,-306,55,-345r0,27v-46,49,-69,121,-69,219v0,40,18,58,14,99",w:132},")":{d:"55,-262v77,35,79,173,31,251v-24,38,-52,69,-88,91r0,-31v54,-44,96,-200,57,-287r0,-24",w:132},"*":{d:"164,-205v-15,6,-29,13,-50,13v16,8,30,18,39,33r-34,26v-9,-14,-17,-28,-24,-44v-6,18,-17,31,-28,44r-30,-27v12,-12,23,-24,40,-31v-21,0,-36,-6,-51,-13r17,-36v16,6,32,12,40,26v-5,-15,-11,-29,-9,-51r41,0v2,21,-3,36,-8,51v11,-12,25,-21,43,-26",w:155},"+":{d:"125,-94r0,62r-35,0r0,-62r-61,0r0,-35r61,0r0,-61r35,0r0,61r62,0r0,35r-62,0"},",":{d:"66,-52v16,0,31,17,31,33v0,35,-19,66,-57,92r-13,-18v19,-14,27,-29,27,-46v0,-14,-20,-22,-20,-35v0,-16,15,-26,32,-26",w:132},"-":{d:"15,-84r8,-41r93,0r-8,41r-93,0",w:132},"\u2010":{d:"15,-84r8,-41r93,0r-8,41r-93,0",w:132},".":{d:"64,4v-15,0,-28,-12,-28,-28v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-13,28,-28,28",w:132},"\/":{d:"40,0r-42,0r98,-259r41,0",w:142},"0":{d:"88,4v-47,0,-72,-32,-72,-80v0,-94,36,-186,121,-186v47,0,71,25,71,76v0,102,-30,188,-120,190xm131,-222v-47,1,-68,88,-68,140v0,30,10,45,28,45v53,-3,70,-79,69,-145v0,-26,-10,-40,-29,-40"},"1":{d:"123,0r-47,0r33,-180r-52,25r8,-46v42,-19,70,-38,85,-58r21,0"},"2":{d:"42,-218v19,-62,158,-60,154,16v-2,42,-21,56,-49,91r-56,69r92,0r-8,42r-167,0r0,-15r130,-155v16,-19,18,-53,-24,-53v-14,0,-28,8,-40,26"},"3":{d:"192,-200v-1,29,-21,52,-42,63v19,10,29,27,29,50v0,60,-36,91,-107,91v-25,0,-47,-9,-63,-27r23,-39v27,42,100,28,99,-24v0,-21,-17,-32,-50,-32r7,-39v37,0,55,-13,55,-39v1,-33,-47,-31,-67,-12r-23,-28v37,-43,142,-33,139,36"},"4":{d:"173,-105r26,0r-7,38r-26,0r-12,67r-48,0r13,-67r-116,0r5,-28r171,-164r23,0xm72,-105r54,0r11,-62"},"5":{d:"82,-37v56,6,91,-104,21,-106v-15,0,-29,7,-41,20r-20,-9r22,-127r141,0r-8,41r-95,0r-8,43v46,-16,94,14,94,58v0,107,-100,152,-171,98r20,-40v9,11,27,20,45,22"},"6":{d:"192,-101v0,56,-41,105,-97,105v-50,0,-75,-25,-75,-76v0,-80,79,-178,143,-191r21,27v-29,12,-68,47,-87,74v48,-14,95,11,95,61xm116,-125v-31,0,-50,25,-49,58v0,21,10,31,31,31v28,0,48,-30,47,-58v0,-18,-10,-32,-29,-31"},"7":{d:"82,0r-56,0v24,-47,70,-119,137,-215r-120,0r9,-44r179,0r0,21v-61,82,-111,162,-149,238"},"8":{d:"200,-206v-1,30,-20,55,-42,67v60,49,24,143,-70,143v-41,0,-74,-23,-74,-63v0,-42,24,-71,54,-85v-53,-45,-1,-118,64,-118v36,0,69,20,68,56xm153,-201v0,-33,-59,-26,-59,9v0,13,10,23,30,32v19,-16,29,-29,29,-41xm60,-65v10,47,79,30,79,-17v0,-16,-9,-28,-29,-38v-26,6,-50,26,-50,55"},"9":{d:"124,-262v102,2,83,134,32,195v-30,36,-62,61,-101,72r-21,-27v28,-10,73,-50,88,-74v-49,16,-96,-16,-96,-64v0,-60,39,-103,98,-102xm121,-222v-31,0,-47,26,-47,58v0,21,10,32,29,32v33,0,48,-26,49,-59v0,-21,-10,-31,-31,-31"},":":{d:"57,4v-15,0,-28,-12,-28,-28v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-13,28,-28,28xm79,-132v-15,0,-28,-12,-28,-28v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-13,28,-28,28",w:132},";":{d:"66,-52v16,0,32,16,31,33v0,35,-19,66,-57,92r-13,-18v19,-14,27,-29,27,-46v0,-14,-20,-22,-20,-35v0,-15,16,-26,32,-26xm79,-132v-15,0,-28,-12,-28,-28v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-13,28,-28,28",w:132},"<":{d:"34,-98r0,-28r140,-68r0,41r-93,41r93,42r0,40"},"=":{d:"31,-131r0,-35r158,0r0,35r-158,0xm31,-57r0,-35r158,0r0,35r-158,0"},">":{d:"47,-30r0,-40r92,-42r-92,-41r0,-41r140,68r0,28"},"?":{d:"22,-245v31,-28,118,-25,118,35v0,73,-84,71,-87,137r-25,0v-20,-68,70,-78,70,-135v0,-28,-46,-21,-61,-7xm39,4v-15,0,-29,-12,-29,-29v0,-16,14,-28,29,-28v15,0,31,12,30,28v0,16,-15,29,-30,29",w:142},"@":{d:"274,-141v0,63,-61,131,-115,87v-27,30,-88,16,-86,-29v2,-64,67,-112,131,-73v-11,41,-15,45,-15,74v0,8,3,13,9,13v27,0,40,-37,40,-66v1,-42,-32,-70,-75,-70v-68,0,-117,57,-117,126v0,76,99,103,145,57r21,26v-17,17,-57,28,-89,29v-64,1,-112,-44,-112,-108v0,-89,67,-161,156,-161v61,0,107,34,107,95xm165,-138v-27,-19,-54,26,-54,53v0,22,26,20,36,8v13,-17,12,-33,18,-61",w:277},A:{d:"161,0r-8,-52r-92,0r-30,52r-48,0r157,-261r16,0r53,261r-48,0xm134,-183r-53,96r67,0",w:220,k:{Y:42,W:27,V:36,T:33," ":13}},B:{d:"109,-261v102,0,122,84,60,117v17,7,31,33,31,57v1,90,-94,94,-191,87r48,-257v20,-3,37,-4,52,-4xm85,-159v38,5,72,-6,74,-40v1,-21,-35,-28,-63,-22xm63,-37v44,2,88,-7,90,-46v2,-35,-31,-46,-74,-43",w:212},C:{d:"20,-95v0,-109,86,-199,198,-157r-13,44v-70,-48,-138,34,-138,107v0,37,19,66,55,65v27,0,49,-7,64,-22r-1,41v-17,15,-41,21,-72,21v-56,1,-93,-43,-93,-99",w:220},D:{d:"226,-157v0,94,-63,157,-156,157r-62,0r46,-257v90,-18,172,11,172,100xm178,-159v0,-44,-40,-70,-85,-61r-32,179v74,9,117,-47,117,-118",w:227},E:{d:"213,-217r-119,0r-10,59r85,0r-7,38r-86,0r-14,80r117,0r-8,40r-164,0r48,-258r166,0",w:213},F:{d:"218,-217r-124,0r-11,59r91,0r-7,38r-91,0r-22,120r-47,0r48,-258r170,0",k:{A:52,".":53,",":53}},G:{d:"62,-103v0,60,65,85,109,53r10,-51r-36,0r7,-38r81,0r-21,116v-26,19,-60,27,-98,27v-59,0,-99,-43,-99,-100v0,-99,60,-167,157,-166v26,0,45,6,58,18r-14,38v-75,-48,-154,18,-154,103",w:243},H:{d:"204,0r-46,0r22,-120r-102,0r-22,120r-47,0r48,-258r46,0r-18,100r102,0r18,-100r47,0",w:244},I:{d:"58,0r-46,0r47,-258r46,0",w:100},J:{d:"119,-16v-33,34,-137,28,-120,-43r41,0v-1,34,51,25,58,3v16,-57,26,-139,39,-202r46,0v-19,76,-21,197,-64,242",w:179},K:{d:"143,-144r64,144r-51,0r-48,-110r-37,40r-13,70r-46,0r48,-258r45,0r-21,118r107,-118r54,0",w:233},L:{d:"171,0r-162,0r47,-258r46,0r-40,218r117,0",w:190,k:{Y:64,W:47,V:55,T:53," ":7}},M:{d:"218,0r-3,-139r-78,143r-16,0r-26,-145r-54,141r-44,0r96,-258r25,0r26,164r86,-164r26,0r7,258r-45,0",w:283},N:{d:"196,4r-18,0r-95,-167r-29,163r-45,0r47,-258r22,0r93,160r27,-160r46,0",w:237},O:{d:"105,4v-56,0,-88,-43,-88,-100v0,-85,54,-166,136,-166v61,0,96,33,96,95v0,95,-52,171,-144,171xm149,-222v-50,0,-84,69,-84,121v0,35,13,65,46,65v60,1,91,-64,90,-127v0,-39,-17,-59,-52,-59",w:252},P:{d:"215,-184v0,70,-68,103,-142,89r-18,95r-46,0r48,-257v82,-13,158,3,158,73xm80,-134v41,10,88,-6,88,-47v0,-37,-37,-46,-73,-37",k:{A:37,".":60,",":60," ":13}},Q:{d:"293,37v-40,52,-142,23,-156,-34v-72,16,-117,-27,-117,-98v0,-85,53,-167,136,-167v61,0,97,35,96,96v0,72,-29,135,-80,157v14,30,72,42,104,19xm153,-222v-51,0,-85,70,-85,123v0,35,14,64,46,65v59,0,91,-65,90,-128v0,-40,-16,-60,-51,-60",w:277},R:{d:"213,-198v4,44,-27,75,-64,84r57,114r-51,0r-50,-107v-8,0,-17,0,-29,-1r-20,108r-47,0r47,-258v86,-6,151,-8,157,60xm168,-187v-2,-33,-36,-35,-72,-31r-13,72v45,5,87,-8,85,-41",w:224,k:{Y:38,W:22,T:28}},S:{d:"70,-123v-64,-41,-32,-139,49,-139v14,0,51,5,60,10r-14,45v-25,-23,-85,-20,-84,17v11,45,87,59,87,119v0,75,-99,92,-160,60r14,-45v26,23,99,30,99,-13v0,-20,-34,-43,-51,-54",w:180},T:{d:"245,-217r-82,0r-39,217r-47,0r40,-217r-82,0r8,-41r209,0",w:246,k:{y:45,w:45,u:43,s:50,r:40,o:40,i:19,e:45,c:45,a:45,O:24,A:33,";":40,":":40,".":64,"-":44,",":64}},U:{d:"70,-82v-13,46,50,59,78,33v10,-9,17,-21,20,-36r32,-173r47,0r-33,179v-9,50,-52,83,-110,83v-52,0,-90,-30,-80,-85r32,-177r47,0",w:238},V:{d:"118,4r-24,0r-52,-262r49,0r30,171r91,-171r51,0",w:245,k:{y:21,u:21,r:23,o:30,i:17,e:30,a:30,A:36,";":26,":":26,".":54,"-":22,",":54}},W:{d:"224,4r-19,0r-28,-158r-83,158r-19,0r-36,-262r46,0r20,157r81,-157r20,0r24,156r75,-156r50,0",w:333,k:{y:17,u:15,r:14,o:19,i:12,e:19,a:25,A:39,";":29,":":29,".":62,"-":24,",":62}},X:{d:"149,-130r61,130r-51,0r-41,-91r-69,91r-53,0r103,-136r-49,-122r47,0r34,86r69,-86r53,0",w:236},Y:{d:"149,-114r-21,114r-45,0r21,-115r-61,-143r48,0r42,101r77,-101r52,0",w:246,k:{v:30,u:40,q:35,p:27,o:35,i:20,e:35,a:31,A:42,";":35,":":35,".":57,"-":40,",":57," ":7}},Z:{d:"85,-40r105,0r-8,40r-167,0r0,-15r140,-202r-106,0r7,-41r163,0r0,15",w:220},"[":{d:"162,-225r-46,0r-47,258r46,0r-7,41r-96,0r62,-339r96,0",w:174},"\\":{d:"125,0r-95,-259r38,0r95,259r-38,0",w:171},"]":{d:"97,74r-96,0r8,-41r46,0r47,-258r-46,0r7,-40r96,0",w:174},"^":{d:"156,-159r-38,-63r-38,63r-34,0r63,-100r19,0r63,100r-35,0"},_:{d:"-1,59r0,-37r213,0r0,37r-213,0"},"`":{d:"112,-226r-27,-58r49,0r6,58r-28,0"},a:{d:"12,-62v0,-68,49,-131,115,-130v32,0,54,3,68,9v-7,55,-33,128,-17,183v-24,-1,-40,5,-45,-19v-38,42,-121,25,-121,-43xm146,-152v-56,-21,-88,38,-88,89v0,40,49,39,63,7v7,-17,18,-47,25,-96",w:213},b:{d:"203,-110v0,61,-52,115,-112,114v-19,0,-32,-6,-41,-18r-14,14r-32,0v33,-83,37,-172,56,-265r43,0r-15,84v52,-31,115,7,115,71xm90,-33v67,0,98,-122,21,-122v-12,0,-21,5,-30,15r-18,93v4,9,14,14,27,14",w:213},c:{d:"13,-71v0,-85,79,-149,159,-109r-9,38v-48,-36,-108,7,-104,66v3,51,55,50,92,22r-5,46v-58,28,-133,6,-133,-63",w:177},d:{d:"11,-69v-6,-82,74,-150,149,-111r16,-85r42,0r-48,265r-43,0r3,-18v-35,46,-128,15,-119,-51xm152,-139v-35,-44,-94,10,-94,63v0,29,11,43,35,43v40,0,52,-63,59,-106",w:213},e:{d:"194,-143v1,58,-77,81,-134,61v-9,56,64,59,92,29r-5,46v-59,28,-132,1,-132,-72v0,-63,47,-116,112,-113v36,1,67,14,67,49xm69,-115v30,7,79,3,81,-25v0,-17,-47,-21,-60,-4v-9,8,-16,18,-21,29",w:198},f:{d:"163,-223v-31,-16,-50,-4,-59,35r43,0r-4,35r-44,0r-29,165v-5,34,-35,62,-72,62r-9,-29v15,-4,33,-18,35,-35r29,-163r-26,0r6,-35r26,0v13,-62,57,-91,113,-70",w:147,k:{f:16}},g:{d:"63,-53v-84,-32,-32,-139,47,-139v16,0,30,4,41,11r16,-18r26,25r-18,18v13,47,-10,88,-47,102v-18,8,-28,13,-30,16v36,-9,65,10,66,41v5,78,-114,86,-164,48r19,-34v25,28,120,23,96,-17v-17,-13,-69,-4,-67,-34v0,-6,5,-13,15,-19xm107,-156v-25,0,-43,19,-42,46v0,17,7,32,23,32v27,0,45,-25,45,-53v0,-17,-9,-25,-26,-25",w:192},h:{d:"85,-177v48,-35,118,-8,105,62r-22,115r-45,0r23,-128v0,-40,-51,-29,-69,-7r-25,135r-45,0r48,-265r44,0",w:202},i:{d:"85,-221v-15,0,-28,-12,-28,-28v0,-16,14,-27,28,-27v15,0,29,11,29,27v0,16,-14,28,-29,28xm70,0r-45,0r29,-153r-24,0r7,-35r68,0",w:117},j:{d:"107,-221v-15,0,-29,-11,-29,-27v0,-16,14,-28,29,-28v15,0,28,12,28,28v0,16,-14,27,-28,27xm90,-3v-12,56,-45,76,-115,77r1,-39v41,1,64,-5,70,-39r27,-149r-25,0r8,-35r68,0",w:139},k:{d:"134,0r-59,-78r-8,7r-12,71r-44,0r46,-265r43,0r-23,139v23,-20,67,-58,78,-74r31,27v-5,6,-31,30,-78,71r78,102r-52,0",w:194},l:{d:"69,-90v-6,40,-19,69,15,75v-16,29,-70,18,-66,-21v7,-73,31,-158,44,-229r44,0",w:115},m:{d:"292,-140v-6,48,-17,93,-25,140r-45,0r23,-131v2,-37,-51,-24,-61,-4r-25,135r-45,0r25,-137v-3,-30,-54,-16,-64,2r-25,135r-45,0v6,-62,34,-122,21,-185r43,-7v2,6,3,12,4,17v25,-23,88,-23,106,3v32,-32,120,-27,113,32",w:298},n:{d:"166,0r-45,0r23,-132v-3,-35,-54,-25,-70,-3r-25,135r-44,0v6,-62,35,-121,22,-185r43,-8r4,21v34,-33,122,-28,116,35v-5,48,-17,92,-24,137",w:202},o:{d:"88,4v-47,0,-75,-27,-75,-74v-2,-66,46,-122,110,-122v47,0,75,26,75,73v0,67,-46,124,-110,123xm118,-156v-38,-1,-60,44,-60,83v0,27,12,41,35,41v38,0,60,-45,59,-86v0,-25,-11,-38,-34,-38",w:205},p:{d:"203,-119v0,81,-70,147,-149,114r-14,79r-44,0r38,-204v3,-18,3,-36,-1,-54r42,-8v2,4,3,10,4,18v48,-38,124,-15,124,55xm157,-114v0,-44,-57,-50,-79,-22r-18,93v47,27,97,-12,97,-71",w:215},q:{d:"168,-175v7,-13,22,-14,41,-13v-25,76,-35,177,-53,262r-44,0r15,-83v-48,31,-118,5,-118,-59v0,-84,87,-158,159,-107xm55,-76v-5,41,49,52,78,33r19,-101v-43,-33,-103,16,-97,68",w:215},r:{d:"153,-144v-34,-30,-71,8,-77,38r-20,106r-44,0r35,-188r44,0r-3,16v25,-19,43,-25,78,-16",w:160,k:{".":41,",":41}},s:{d:"53,-92v-56,-32,-10,-100,50,-100v15,0,33,5,56,15r-20,40v-14,-12,-27,-18,-39,-18v-13,0,-27,5,-27,18v11,31,72,28,72,74v0,67,-92,85,-143,49r23,-40v15,14,29,21,43,21v28,1,45,-31,14,-43",w:165},t:{d:"128,-3v-42,17,-111,5,-97,-56r21,-94r-22,0r8,-35r21,0r8,-39r50,-18r-13,57r51,0r-7,35r-52,0r-21,100v3,27,28,22,53,10r0,40",w:157},u:{d:"122,-14v-40,34,-123,20,-109,-53r23,-121r44,0r-24,132v-1,31,46,26,61,9v29,-32,24,-94,37,-141r44,0r-35,188r-44,0",w:200},v:{d:"90,4r-16,0r-58,-192r46,0r32,114r66,-114r51,0",w:198,k:{".":53,",":53}},w:{d:"187,4r-16,0r-33,-109r-70,109r-16,0r-37,-192r44,0r19,103r65,-103r15,0r31,105r55,-105r46,0",w:278,k:{".":34,",":34}},x:{d:"133,-95r54,95r-53,0r-31,-59r-50,59r-54,0r82,-98r-50,-90r51,0r30,57r45,-57r55,0",w:207},y:{d:"109,19v-17,36,-52,55,-102,55r0,-43v45,1,63,-21,73,-53v-43,-20,-39,-114,-55,-166r47,0v14,82,22,125,26,129r60,-129r50,0",w:203,k:{".":33,",":33}},z:{d:"79,-38r89,0r-7,38r-156,0r0,-15r110,-135r-92,0r7,-38r157,0r0,15",w:191},"{":{d:"71,-158v-17,-78,31,-115,114,-106r-6,34v-38,-1,-71,-1,-66,38v6,46,1,70,-39,92v52,23,5,80,1,115v-2,19,26,25,55,23r-7,36v-48,3,-93,-6,-96,-48v-2,-32,66,-110,-5,-113r5,-25v29,-2,44,-17,44,-46",w:174},"|":{d:"89,74r0,-339r36,0r0,339r-36,0"},"}":{d:"153,-217v1,29,-64,101,5,105r-5,26v-46,-1,-41,45,-41,88v0,57,-52,79,-118,72r6,-36v43,0,70,-6,67,-48v-4,-46,0,-73,40,-91v-17,-13,-25,-26,-25,-40v0,-14,26,-58,23,-72v1,-25,-34,-15,-56,-17r7,-34v48,-3,95,5,97,47",w:174},"~":{d:"135,-84v-28,3,-65,-32,-78,0r-25,0v3,-23,15,-45,38,-47v24,-3,66,30,80,0r26,0v-8,28,-14,44,-41,47"},"\u00c4":{d:"161,0r-8,-52r-92,0r-30,52r-48,0r157,-261r16,0r53,261r-48,0xm134,-183r-53,96r67,0xm218,-311v-1,26,-51,26,-52,0v0,-12,12,-20,26,-20v13,0,26,8,26,20xm135,-311v-1,26,-51,26,-52,0v1,-26,52,-27,52,0",w:220},"\u00c5":{d:"192,-301v0,22,-22,37,-43,37v-22,0,-44,-15,-44,-37v0,-22,22,-37,44,-37v22,0,43,15,43,37xm172,-301v-2,-21,-43,-21,-45,0v0,21,45,21,45,0xm161,0r-8,-52r-92,0r-30,52r-48,0r157,-261r16,0r53,261r-48,0xm134,-183r-53,96r67,0",w:220},"\u00c7":{d:"20,-95v0,-109,86,-199,198,-157r-13,44v-70,-48,-138,34,-138,107v0,37,19,66,55,65v27,0,49,-7,64,-22r-1,41v-17,15,-41,21,-72,21v-56,1,-93,-43,-93,-99xm131,40v-1,31,-35,45,-72,39r0,-22v28,10,53,-27,21,-34r11,-15v27,2,40,12,40,32",w:220},"\u00c9":{d:"213,-217r-119,0r-10,59r85,0r-7,38r-86,0r-14,80r117,0r-8,40r-164,0r48,-258r166,0xm148,-279r-38,0r36,-58r50,0",w:213},"\u00d1":{d:"179,-291v-6,0,-46,-16,-52,-16v-7,0,-11,5,-14,16r-28,0v4,-21,19,-44,42,-44v19,0,60,33,65,0r29,0v-3,16,-23,44,-42,44xm196,4r-18,0r-95,-167r-29,163r-45,0r47,-258r22,0r93,160r27,-160r46,0",w:237},"\u00d6":{d:"105,4v-56,0,-88,-43,-88,-100v0,-85,54,-166,136,-166v61,0,96,33,96,95v0,95,-52,171,-144,171xm149,-222v-50,0,-84,69,-84,121v0,35,13,65,46,65v60,1,91,-64,90,-127v0,-39,-17,-59,-52,-59xm225,-311v-1,26,-51,26,-52,0v0,-12,12,-20,26,-20v13,0,26,8,26,20xm142,-311v-1,26,-51,26,-52,0v1,-26,52,-27,52,0",w:252},"\u00dc":{d:"70,-82v-13,46,50,59,78,33v10,-9,17,-21,20,-36r32,-173r47,0r-33,179v-9,50,-52,83,-110,83v-52,0,-90,-30,-80,-85r32,-177r47,0xm226,-311v-1,26,-51,26,-52,0v0,-12,12,-20,26,-20v13,0,26,8,26,20xm143,-311v-1,26,-51,26,-52,0v1,-26,52,-27,52,0",w:238},"\u00e1":{d:"12,-62v0,-68,49,-131,115,-130v32,0,54,3,68,9v-7,55,-33,128,-17,183v-24,-1,-40,5,-45,-19v-38,42,-121,25,-121,-43xm146,-152v-56,-21,-88,38,-88,89v0,40,49,39,63,7v7,-17,18,-47,25,-96xm136,-226r-38,0r36,-58r50,0",w:213},"\u00e0":{d:"12,-62v0,-68,49,-131,115,-130v32,0,54,3,68,9v-7,55,-33,128,-17,183v-24,-1,-40,5,-45,-19v-38,42,-121,25,-121,-43xm146,-152v-56,-21,-88,38,-88,89v0,40,49,39,63,7v7,-17,18,-47,25,-96xm116,-226r-27,-58r49,0r6,58r-28,0",w:213},"\u00e2":{d:"154,-226r-20,-25r-34,26r-48,0r76,-63r25,0r51,62r-50,0xm12,-62v0,-68,49,-131,115,-130v32,0,54,3,68,9v-7,55,-33,128,-17,183v-24,-1,-40,5,-45,-19v-38,42,-121,25,-121,-43xm146,-152v-56,-21,-88,38,-88,89v0,40,49,39,63,7v7,-17,18,-47,25,-96",w:213},"\u00e4":{d:"12,-62v0,-68,49,-131,115,-130v32,0,54,3,68,9v-7,55,-33,128,-17,183v-24,-1,-40,5,-45,-19v-38,42,-121,25,-121,-43xm146,-152v-56,-21,-88,38,-88,89v0,40,49,39,63,7v7,-17,18,-47,25,-96xm198,-246v-1,26,-51,26,-52,0v0,-12,12,-20,26,-20v13,0,26,8,26,20xm115,-246v-1,26,-51,26,-52,0v1,-26,52,-27,52,0",w:213},"\u00e3":{d:"100,-270v19,-1,58,32,65,0r28,0v-3,17,-22,46,-42,44v-6,1,-45,-17,-51,-16v-7,0,-12,5,-15,16r-28,0v4,-20,20,-44,43,-44xm12,-62v0,-68,49,-131,115,-130v32,0,54,3,68,9v-7,55,-33,128,-17,183v-24,-1,-40,5,-45,-19v-38,42,-121,25,-121,-43xm146,-152v-56,-21,-88,38,-88,89v0,40,49,39,63,7v7,-17,18,-47,25,-96",w:213},"\u00e5":{d:"179,-263v0,22,-21,37,-43,37v-22,0,-44,-15,-44,-37v0,-22,22,-37,44,-37v21,0,43,16,43,37xm158,-262v0,-11,-10,-16,-22,-16v-11,0,-22,5,-22,16v0,21,44,21,44,0xm12,-62v0,-68,49,-131,115,-130v32,0,54,3,68,9v-7,55,-33,128,-17,183v-24,-1,-40,5,-45,-19v-38,42,-121,25,-121,-43xm146,-152v-56,-21,-88,38,-88,89v0,40,49,39,63,7v7,-17,18,-47,25,-96",w:213},"\u00e7":{d:"13,-71v0,-85,79,-149,159,-109r-9,38v-48,-36,-108,7,-104,66v3,51,55,50,92,22r-5,46v-58,28,-133,6,-133,-63xm114,40v-1,31,-35,45,-72,39r0,-22v28,10,53,-27,21,-34r11,-15v27,2,40,12,40,32",w:177},"\u00e9":{d:"194,-143v1,58,-77,81,-134,61v-9,56,64,59,92,29r-5,46v-59,28,-132,1,-132,-72v0,-63,47,-116,112,-113v36,1,67,14,67,49xm69,-115v30,7,79,3,81,-25v0,-17,-47,-21,-60,-4v-9,8,-16,18,-21,29xm133,-226r-38,0r36,-58r50,0",w:198},"\u00e8":{d:"194,-143v1,58,-77,81,-134,61v-9,56,64,59,92,29r-5,46v-59,28,-132,1,-132,-72v0,-63,47,-116,112,-113v36,1,67,14,67,49xm69,-115v30,7,79,3,81,-25v0,-17,-47,-21,-60,-4v-9,8,-16,18,-21,29xm119,-226r-27,-58r49,0r6,58r-28,0",w:198},"\u00ea":{d:"157,-226r-21,-25r-33,26r-48,0r76,-63r24,0r51,62r-49,0xm194,-143v1,58,-77,81,-134,61v-9,56,64,59,92,29r-5,46v-59,28,-132,1,-132,-72v0,-63,47,-116,112,-113v36,1,67,14,67,49xm69,-115v30,7,79,3,81,-25v0,-17,-47,-21,-60,-4v-9,8,-16,18,-21,29",w:198},"\u00eb":{d:"194,-143v1,58,-77,81,-134,61v-9,56,64,59,92,29r-5,46v-59,28,-132,1,-132,-72v0,-63,47,-116,112,-113v36,1,67,14,67,49xm69,-115v30,7,79,3,81,-25v0,-17,-47,-21,-60,-4v-9,8,-16,18,-21,29xm191,-246v-1,26,-51,26,-52,0v0,-12,12,-20,26,-20v13,0,26,8,26,20xm108,-246v-1,26,-51,26,-52,0v1,-26,52,-27,52,0",w:198},"\u00ed":{d:"70,0r-45,0r29,-153r-24,0r7,-35r68,0xm92,-226r-38,0r36,-58r50,0",w:117},"\u00ec":{d:"70,0r-45,0r29,-153r-24,0r7,-35r68,0xm63,-226r-27,-58r49,0r6,58r-28,0",w:117},"\u00ee":{d:"106,-226r-21,-25r-33,26r-48,0r76,-63r24,0r51,62r-49,0xm70,0r-45,0r29,-153r-24,0r7,-35r68,0",w:117},"\u00ef":{d:"70,0r-45,0r29,-153r-24,0r7,-35r68,0xm148,-246v-1,26,-51,26,-52,0v0,-12,12,-20,26,-20v13,0,26,8,26,20xm65,-246v-1,26,-51,26,-52,0v1,-26,52,-27,52,0",w:117},"\u00f1":{d:"144,-226v-6,0,-46,-17,-52,-16v-7,0,-11,5,-14,16r-28,0v5,-20,20,-43,42,-44v20,-1,59,32,66,0r28,0v-3,17,-22,44,-42,44xm166,0r-45,0r23,-132v-3,-35,-54,-25,-70,-3r-25,135r-44,0v6,-62,35,-121,22,-185r43,-8r4,21v34,-33,122,-28,116,35v-5,48,-17,92,-24,137",w:202},"\u00f3":{d:"88,4v-47,0,-75,-27,-75,-74v-2,-66,46,-122,110,-122v47,0,75,26,75,73v0,67,-46,124,-110,123xm118,-156v-38,-1,-60,44,-60,83v0,27,12,41,35,41v38,0,60,-45,59,-86v0,-25,-11,-38,-34,-38xm128,-226r-38,0r36,-58r50,0",w:205},"\u00f2":{d:"88,4v-47,0,-75,-27,-75,-74v-2,-66,46,-122,110,-122v47,0,75,26,75,73v0,67,-46,124,-110,123xm118,-156v-38,-1,-60,44,-60,83v0,27,12,41,35,41v38,0,60,-45,59,-86v0,-25,-11,-38,-34,-38xm112,-226r-27,-58r49,0r6,58r-28,0",w:205},"\u00f4":{d:"148,-226r-21,-25r-33,26r-48,0r76,-63r25,0r51,62r-50,0xm88,4v-47,0,-75,-27,-75,-74v-2,-66,46,-122,110,-122v47,0,75,26,75,73v0,67,-46,124,-110,123xm118,-156v-38,-1,-60,44,-60,83v0,27,12,41,35,41v38,0,60,-45,59,-86v0,-25,-11,-38,-34,-38",w:205},"\u00f6":{d:"88,4v-47,0,-75,-27,-75,-74v-2,-66,46,-122,110,-122v47,0,75,26,75,73v0,67,-46,124,-110,123xm118,-156v-38,-1,-60,44,-60,83v0,27,12,41,35,41v38,0,60,-45,59,-86v0,-25,-11,-38,-34,-38xm191,-246v-1,26,-51,26,-52,0v0,-12,12,-20,26,-20v13,0,26,8,26,20xm108,-246v-1,26,-51,26,-52,0v1,-26,52,-27,52,0",w:205},"\u00f5":{d:"97,-270v19,-1,58,32,65,0r29,0v-3,17,-22,45,-42,44v-6,1,-46,-16,-52,-16v-7,0,-12,5,-15,16r-28,0v4,-20,20,-44,43,-44xm88,4v-47,0,-75,-27,-75,-74v-2,-66,46,-122,110,-122v47,0,75,26,75,73v0,67,-46,124,-110,123xm118,-156v-38,-1,-60,44,-60,83v0,27,12,41,35,41v38,0,60,-45,59,-86v0,-25,-11,-38,-34,-38",w:205},"\u00fa":{d:"122,-14v-40,34,-123,20,-109,-53r23,-121r44,0r-24,132v-1,31,46,26,61,9v29,-32,24,-94,37,-141r44,0r-35,188r-44,0xm129,-226r-38,0r36,-58r50,0",w:200},"\u00f9":{d:"122,-14v-40,34,-123,20,-109,-53r23,-121r44,0r-24,132v-1,31,46,26,61,9v29,-32,24,-94,37,-141r44,0r-35,188r-44,0xm108,-226r-27,-58r49,0r6,58r-28,0",w:200},"\u00fb":{d:"148,-226r-21,-25r-33,26r-48,0r76,-63r25,0r51,62r-50,0xm122,-14v-40,34,-123,20,-109,-53r23,-121r44,0r-24,132v-1,31,46,26,61,9v29,-32,24,-94,37,-141r44,0r-35,188r-44,0",w:200},"\u00fc":{d:"122,-14v-40,34,-123,20,-109,-53r23,-121r44,0r-24,132v-1,31,46,26,61,9v29,-32,24,-94,37,-141r44,0r-35,188r-44,0xm184,-246v-1,26,-51,26,-52,0v0,-12,12,-20,26,-20v13,0,26,8,26,20xm101,-246v-1,26,-51,26,-52,0v1,-26,52,-27,52,0",w:200},"\u00b0":{d:"99,-188v-22,0,-43,-15,-43,-37v0,-22,21,-37,43,-37v22,0,43,14,43,37v0,22,-22,37,-43,37xm99,-241v-9,0,-19,7,-18,16v-1,9,9,15,18,15v9,0,19,-5,18,-15v1,-10,-9,-16,-18,-16"},"\u00a2":{d:"178,-171r-8,36v-9,-7,-18,-11,-27,-12r-32,106v14,0,30,-6,49,-18r-5,42v-16,7,-35,11,-55,11r-9,33r-28,0r11,-38v-55,-16,-46,-102,-14,-138v18,-20,39,-31,67,-33r10,-32r26,0r-10,34v9,2,17,5,25,9xm116,-144v-31,8,-55,65,-29,94"},"\u00a3":{d:"123,15v-35,-1,-75,-17,-114,-7r-11,-35v40,-9,60,-40,61,-89r-32,0r6,-37r26,0v-9,-89,78,-132,145,-92r-24,36v-40,-26,-76,-6,-74,56r39,0r-7,37r-32,0v0,26,-10,68,-22,82v31,12,68,11,84,-20r29,30v-10,21,-43,40,-74,39"},"\u00a7":{d:"59,-163v-34,-47,17,-99,74,-99v21,0,39,7,54,20r-21,38v-12,-12,-26,-18,-39,-18v-32,0,-42,25,-18,34v39,14,65,11,65,49v0,15,-6,29,-18,41v40,47,-18,102,-74,102v-27,0,-48,-6,-64,-18r21,-39v15,21,82,27,82,-6v0,-29,-81,-23,-81,-65v0,-15,6,-28,19,-39xm125,-112v14,-25,-10,-36,-32,-38v-21,21,2,34,32,38"},"\u00b6":{d:"30,-162v0,-50,28,-101,75,-100r102,0r-56,306r-36,0r50,-273r-24,0r-50,273r-40,0r28,-151v-33,-2,-49,-21,-49,-55"},"\u00df":{d:"153,-162v91,44,25,199,-75,161r14,-36v36,10,57,-17,57,-52v0,-37,-67,-48,-33,-85v10,-11,25,-18,26,-38v0,-18,-34,-19,-41,-4v-27,59,-33,154,-48,225v-8,36,-35,65,-76,65r-4,-30v20,-4,32,-20,37,-48r34,-188v7,-39,35,-73,79,-73v35,0,62,13,62,44v0,30,-10,34,-32,59",w:207},"\u00ae":{d:"137,8v-66,0,-124,-57,-124,-124v0,-67,57,-124,124,-124v67,0,124,57,124,124v0,67,-58,124,-124,124xm137,-210v-51,0,-94,43,-94,94v0,50,44,94,94,94v50,0,94,-44,94,-94v0,-51,-43,-94,-94,-94xm165,-47r-33,-57r-12,0r0,57r-28,0r0,-141v45,-2,91,-1,91,41v0,17,-8,30,-24,38r38,62r-32,0xm120,-128v39,10,47,-36,10,-35r-10,0r0,35",w:256},"\u00a9":{d:"137,8v-66,0,-124,-57,-124,-124v0,-67,57,-124,124,-124v67,0,124,57,124,124v0,67,-58,124,-124,124xm137,-210v-51,0,-94,43,-94,94v0,50,44,94,94,94v50,0,94,-44,94,-94v0,-51,-43,-94,-94,-94xm77,-117v0,-56,53,-92,101,-63r-10,25v-29,-22,-68,-1,-63,39v-4,40,41,63,63,30r16,22v-40,43,-107,12,-107,-53",w:256},"\u00b4":{d:"125,-226r-38,0r36,-58r50,0"},"\u00a8":{d:"195,-246v-1,26,-51,26,-52,0v0,-12,12,-20,26,-20v13,0,26,8,26,20xm112,-246v-1,26,-51,26,-52,0v1,-26,52,-27,52,0"},"\u00c6":{d:"345,-217r-119,0r-10,59r85,0r-8,38r-85,0r-14,80r117,0r-8,40r-164,0r10,-52r-69,0r-32,52r-54,0r170,-258r188,0xm97,-87r58,0r25,-131",w:345},"\u00d8":{d:"36,-30v-62,-108,36,-280,169,-221r8,-11r45,0r-26,34v57,110,-36,277,-170,222r-10,12r-44,0xm178,-216v-76,-30,-126,66,-110,144xm89,-41v77,25,122,-63,110,-144",w:252},"\u00b1":{d:"125,-94r0,59r62,0r0,35r-158,0r0,-35r61,0r0,-59r-61,0r0,-35r61,0r0,-61r35,0r0,61r62,0r0,35r-62,0"},"\u00a5":{d:"131,-114r-3,14r45,0r-7,32r-44,0r-12,68r-45,0r12,-68r-46,0r7,-32r45,0r3,-15r-61,-143r48,0r41,101r77,-101r53,0"},"\u00aa":{d:"32,-171v0,-61,53,-111,115,-85v-3,46,-25,85,-5,128v-16,1,-29,0,-34,-12v-25,28,-76,12,-76,-31xm116,-234v-37,-12,-56,28,-55,62v0,28,37,24,42,1v9,-19,9,-41,13,-63",w:153},"\u00ba":{d:"88,-126v-31,0,-47,-20,-47,-51v0,-42,28,-85,70,-85v31,0,46,20,46,51v0,44,-28,85,-69,85xm108,-236v-24,-1,-39,32,-39,57v0,18,7,27,22,27v24,0,38,-32,37,-58v0,-17,-7,-26,-20,-26",w:156},"\u00e6":{d:"12,-62v0,-85,80,-160,167,-119r-4,19v31,-42,141,-44,143,19v2,56,-76,80,-134,62v-10,60,66,54,93,26r-6,48v-36,16,-104,18,-118,-19v0,3,1,11,3,26v-24,2,-27,-1,-34,-27v-29,56,-110,31,-110,-35xm273,-138v-1,-22,-42,-18,-57,-5v-9,8,-18,17,-23,28v29,8,86,0,80,-23xm145,-147v-42,-29,-86,32,-86,79v0,23,7,34,21,34v30,0,62,-69,65,-113",w:321},"\u00f8":{d:"26,-24v-47,-84,38,-204,138,-159v5,-13,27,-8,44,-9r-23,27v48,85,-40,207,-139,159r-10,12r-36,0xm137,-152v-50,-19,-85,38,-78,90xm74,-37v49,21,83,-36,78,-90",w:205},"\u00bf":{d:"118,-163v0,16,-15,28,-30,28v-15,0,-29,-12,-29,-28v0,-16,13,-29,29,-29v16,0,30,13,30,29xm100,-115v19,68,-60,79,-71,135v0,28,46,21,61,7r15,29v-31,30,-118,25,-118,-35v0,-68,84,-71,87,-136r26,0",w:132},"\u00a1":{d:"109,-163v0,16,-15,28,-30,28v-15,0,-29,-12,-29,-28v0,-16,13,-29,29,-29v16,0,30,13,30,29xm83,-114v-1,69,-9,131,-22,188r-52,0v7,-64,30,-126,51,-188r23,0",w:132},"\u00ac":{d:"187,-170r0,98r-36,0r0,-62r-122,0r0,-36r158,0"},"\u00ab":{d:"97,-91r0,-17r73,-50r0,34r-33,25r33,22r0,34xm17,-91r0,-17r73,-50r0,34r-33,25r33,22r0,34",w:188},"\u00bb":{d:"104,-43r0,-34r33,-22r-33,-25r0,-34r73,50r0,17xm33,-43r0,-34r33,-22r-33,-25r0,-34r73,50r0,17",w:188},"\u00a0":{w:108},"\u00c0":{d:"161,0r-8,-52r-92,0r-30,52r-48,0r157,-261r16,0r53,261r-48,0xm134,-183r-53,96r67,0xm129,-279r-27,-58r49,0r6,58r-28,0",w:220},"\u00c3":{d:"118,-335v19,-1,58,32,65,0r29,0v-3,17,-24,44,-43,44v-6,0,-45,-17,-51,-16v-7,0,-12,5,-15,16r-28,0v4,-20,20,-44,43,-44xm161,0r-8,-52r-92,0r-30,52r-48,0r157,-261r16,0r53,261r-48,0xm134,-183r-53,96r67,0",w:220},"\u00d5":{d:"174,-291v-6,0,-46,-16,-52,-16v-7,0,-11,5,-14,16r-29,0v4,-20,20,-44,43,-44v19,0,59,33,65,0r29,0v-3,16,-23,44,-42,44xm105,4v-56,0,-88,-43,-88,-100v0,-85,54,-166,136,-166v61,0,96,33,96,95v0,95,-52,171,-144,171xm149,-222v-50,0,-84,69,-84,121v0,35,13,65,46,65v60,1,91,-64,90,-127v0,-39,-17,-59,-52,-59",w:252},"\u00f7":{d:"108,-206v14,0,26,13,26,27v0,13,-13,26,-26,26v-14,0,-27,-12,-27,-26v0,-14,13,-27,27,-27xm187,-129r0,35r-158,0r0,-35r158,0xm108,-67v14,0,26,13,26,27v0,13,-13,26,-26,26v-14,0,-27,-12,-27,-26v0,-14,13,-27,27,-27"},"\u00ff":{d:"109,19v-17,36,-52,55,-102,55r0,-43v45,1,63,-21,73,-53v-43,-20,-39,-114,-55,-166r47,0v14,82,22,125,26,129r60,-129r50,0xm195,-246v-1,26,-51,26,-52,0v0,-12,12,-20,26,-20v13,0,26,8,26,20xm112,-246v-1,26,-51,26,-52,0v1,-26,52,-27,52,0",w:203},"\u00c2":{d:"166,-276r-21,-25r-34,26r-47,0r76,-63r24,0r51,62r-49,0xm161,0r-8,-52r-92,0r-30,52r-48,0r157,-261r16,0r53,261r-48,0xm134,-183r-53,96r67,0",w:220},"\u00ca":{d:"168,-276r-21,-25r-33,26r-48,0r76,-63r24,0r51,62r-49,0xm213,-217r-119,0r-10,59r85,0r-7,38r-86,0r-14,80r117,0r-8,40r-164,0r48,-258r166,0",w:213},"\u00c1":{d:"161,0r-8,-52r-92,0r-30,52r-48,0r157,-261r16,0r53,261r-48,0xm134,-183r-53,96r67,0xm151,-279r-38,0r36,-58r50,0",w:220},"\u00cb":{d:"213,-217r-119,0r-10,59r85,0r-7,38r-86,0r-14,80r117,0r-8,40r-164,0r48,-258r166,0xm208,-311v-1,26,-51,26,-52,0v0,-12,12,-20,26,-20v13,0,26,8,26,20xm125,-311v-1,26,-51,26,-52,0v1,-26,52,-27,52,0",w:213},"\u00c8":{d:"213,-217r-119,0r-10,59r85,0r-7,38r-86,0r-14,80r117,0r-8,40r-164,0r48,-258r166,0xm123,-279r-27,-58r49,0r6,58r-28,0",w:213},"\u00cd":{d:"58,0r-46,0r47,-258r46,0xm92,-279r-38,0r36,-58r50,0",w:100},"\u00ce":{d:"110,-276r-21,-25r-34,26r-47,0r75,-63r25,0r51,62r-49,0xm58,0r-46,0r47,-258r46,0",w:100},"\u00cf":{d:"58,0r-46,0r47,-258r46,0xm156,-311v-1,26,-51,26,-52,0v0,-12,12,-20,26,-20v13,0,26,8,26,20xm73,-311v-1,26,-51,26,-52,0v1,-26,52,-27,52,0",w:100},"\u00cc":{d:"58,0r-46,0r47,-258r46,0xm70,-279r-27,-58r49,0r6,58r-28,0",w:100},"\u00d3":{d:"105,4v-56,0,-88,-43,-88,-100v0,-85,54,-166,136,-166v61,0,96,33,96,95v0,95,-52,171,-144,171xm149,-222v-50,0,-84,69,-84,121v0,35,13,65,46,65v60,1,91,-64,90,-127v0,-39,-17,-59,-52,-59xm165,-279r-38,0r36,-58r50,0",w:252},"\u00d4":{d:"180,-276r-20,-25r-34,26r-48,0r76,-63r25,0r51,62r-50,0xm105,4v-56,0,-88,-43,-88,-100v0,-85,54,-166,136,-166v61,0,96,33,96,95v0,95,-52,171,-144,171xm149,-222v-50,0,-84,69,-84,121v0,35,13,65,46,65v60,1,91,-64,90,-127v0,-39,-17,-59,-52,-59",w:252},"\u00d2":{d:"105,4v-56,0,-88,-43,-88,-100v0,-85,54,-166,136,-166v61,0,96,33,96,95v0,95,-52,171,-144,171xm149,-222v-50,0,-84,69,-84,121v0,35,13,65,46,65v60,1,91,-64,90,-127v0,-39,-17,-59,-52,-59xm142,-279r-27,-58r49,0r6,58r-28,0",w:252},"\u00da":{d:"70,-82v-13,46,50,59,78,33v10,-9,17,-21,20,-36r32,-173r47,0r-33,179v-9,50,-52,83,-110,83v-52,0,-90,-30,-80,-85r32,-177r47,0xm168,-279r-38,0r36,-58r50,0",w:238},"\u00db":{d:"182,-276r-20,-25r-34,26r-48,0r76,-63r25,0r51,62r-50,0xm70,-82v-13,46,50,59,78,33v10,-9,17,-21,20,-36r32,-173r47,0r-33,179v-9,50,-52,83,-110,83v-52,0,-90,-30,-80,-85r32,-177r47,0",w:238},"\u00d9":{d:"70,-82v-13,46,50,59,78,33v10,-9,17,-21,20,-36r32,-173r47,0r-33,179v-9,50,-52,83,-110,83v-52,0,-90,-30,-80,-85r32,-177r47,0xm141,-279r-27,-58r49,0r6,58r-28,0",w:238},"\u00b8":{d:"131,40v-1,31,-35,45,-72,39r0,-22v28,10,53,-27,21,-34r11,-15v27,2,40,12,40,32"},"\u00a6":{d:"89,-118r0,-147r36,0r0,147r-36,0xm89,74r0,-147r36,0r0,147r-36,0"},"\u00d0":{d:"226,-157v0,94,-63,157,-156,157r-62,0r21,-118r-23,0r7,-39r23,0r18,-100v90,-18,172,11,172,100xm178,-159v0,-44,-40,-70,-85,-61r-11,63r48,0r-7,39r-48,0r-14,77v74,9,117,-47,117,-118",w:235},"\u00f0":{d:"13,-70v0,-71,51,-131,129,-120v-6,-14,-11,-22,-15,-26r-31,15r-9,-18r30,-14v-5,-7,-14,-17,-26,-31r48,-9v8,9,7,9,17,21r31,-14r10,19r-30,14v17,27,31,77,31,121v0,64,-48,117,-110,116v-47,0,-75,-27,-75,-74xm118,-156v-38,-1,-60,45,-60,84v0,27,12,40,35,40v38,0,60,-45,59,-86v0,-25,-11,-38,-34,-38",w:205},"\u00dd":{d:"149,-114r-21,114r-45,0r21,-115r-61,-143r48,0r42,101r77,-101r52,0xm162,-279r-38,0r36,-58r50,0",w:246},"\u00de":{d:"207,-153v0,79,-61,116,-143,101r-10,52r-45,0r47,-258r45,0r-5,32v60,-9,111,16,111,73xm160,-148v0,-39,-35,-46,-72,-38r-17,94v47,14,89,-8,89,-56",w:202},"\u00fe":{d:"203,-119v0,81,-70,147,-149,114r-14,79r-44,0r57,-340r46,0r-17,91v48,-37,121,-13,121,56xm157,-114v0,-45,-57,-49,-80,-22r-17,93v47,27,97,-12,97,-71",w:215},"\u00b9":{d:"121,-99r-29,0r17,-108r-27,15r4,-33v22,-11,38,-23,46,-35r15,0",w:172},"\u00b2":{d:"154,-218v-5,40,-20,47,-54,90r47,0r-5,29r-92,0r0,-12v21,-30,65,-72,74,-106v-4,-22,-33,-23,-42,-1r-20,-15v12,-42,99,-37,92,15",w:167},"\u00b3":{d:"66,-245v23,-31,85,-17,85,22v0,17,-7,31,-21,40v31,32,6,86,-48,86v-16,0,-29,-6,-39,-18r14,-27v13,26,58,22,57,-10v0,-12,-10,-18,-32,-18r4,-25v18,-1,34,-7,34,-25v0,-18,-28,-17,-39,-4",w:166},"\u00bd":{d:"89,6r-33,0r155,-268r33,0xm77,-99r-29,0r17,-108r-27,15r4,-33v22,-11,38,-23,46,-35r15,0xm287,-119v-5,40,-20,47,-54,90r47,0r-5,29r-92,0r0,-12v21,-30,65,-72,74,-106v-4,-22,-33,-23,-42,-1r-20,-15v12,-42,99,-37,92,15",w:315},"\u00bc":{d:"285,-41r-17,0r-6,41r-29,0r6,-41r-67,0r3,-19r98,-100r15,0r-16,93r18,0xm211,-67r33,0r6,-38xm93,6r-33,0r156,-268r32,0xm80,-99r-29,0r17,-108r-27,15r4,-33v22,-11,38,-23,46,-35r15,0",w:315},"\u00be":{d:"286,-41r-17,0r-7,41r-29,0r6,-41r-67,0r3,-19r98,-100r15,0r-15,93r17,0xm211,-67r33,0r6,-38xm104,6r-33,0r156,-268r32,0xm46,-245v23,-31,85,-17,85,22v0,17,-7,31,-21,40v31,32,6,86,-48,86v-16,0,-29,-6,-39,-18r14,-27v13,26,58,22,57,-10v0,-12,-10,-18,-32,-18r4,-25v18,-1,34,-7,34,-25v0,-18,-28,-17,-39,-4",w:315},"\u00b5":{d:"163,0r-44,0r3,-14v-19,13,-47,21,-77,15r-14,73r-44,0r49,-262r44,0r-24,132v-1,31,46,26,61,9v29,-32,24,-94,37,-141r44,0",w:200},"\u00fd":{d:"109,19v-17,36,-52,55,-102,55r0,-43v45,1,63,-21,73,-53v-43,-20,-39,-114,-55,-166r47,0v14,82,22,125,26,129r60,-129r50,0xm125,-226r-38,0r36,-58r50,0",w:203},"\u00d7":{d:"133,-111r56,56r-26,25r-55,-56r-55,56r-25,-25r55,-55r-56,-57r25,-25r56,57r56,-56r25,25"},"\u00ad":{d:"15,-84r8,-41r93,0r-8,41r-93,0",w:132},"\u00af":{d:"-1,-257r0,-37r213,0r0,37r-213,0"},"\u00b7":{d:"67,-93v-15,0,-28,-12,-28,-28v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-13,28,-28,28",w:132},"\u00a4":{d:"173,-36r-25,-26v-28,18,-60,17,-88,0r-26,26r-22,-23r26,-25v-17,-28,-18,-59,0,-87r-26,-25r22,-23r26,26v28,-18,60,-19,88,-1r25,-25r23,23r-26,25v18,28,17,59,0,87r26,25xm104,-175v-26,0,-48,21,-48,47v-1,26,22,49,48,48v26,0,47,-22,47,-48v0,-25,-22,-47,-47,-47"}}})
$(function(){Cufon.replace('#top-banner h1',{textShadow:'#000 1px 1px 2px'});Cufon.replace('#top-banner p',{textShadow:'#000 1px 1px 2px'});Cufon.replace('#address',{textShadow:'#000 1px 1px 2px'});Cufon.replace('#topmenu',{hover:true})})
var browserName=navigator.appName,browserVer=parseInt(navigator.appVersion),version="",msie4=(browserName=="Microsoft Internet Explorer"&&browserVer>=4);if((browserName=="Netscape"&&browserVer>=3)||msie4||browserName=="Konqueror"||browserName=="Opera"){version="n3"}else version="n2"
function blurLink(theObject){if(msie4)theObject.blur()}
function decryptCharcode(n,start,end,offset){n=n+offset;if(offset>0&&n>end){n=start+(n-end-1)}else if(offset<0&&n<start)n=end-(start-n-1);return String.fromCharCode(n)}
function decryptString(enc,offset){var dec="",len=enc.length;for(var i=0;i<len;i++){var n=enc.charCodeAt(i);if(n>=0x2B&&n<=0x3A){dec+=decryptCharcode(n,0x2B,0x3A,offset)}else if(n>=0x40&&n<=0x5A){dec+=decryptCharcode(n,0x40,0x5A,offset)}else if(n>=0x61&&n<=0x7A){dec+=decryptCharcode(n,0x61,0x7A,offset)}else dec+=enc.charAt(i)};return dec}
function linkTo_UnCryptMailto(s){location.href=decryptString(s,3)}
