/*
 * 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 Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = document.getElementsByTagName && document.createElement && document.createTextNode && document.documentElement && document.getElementById;

/**
 * Attach all registered behaviors to a page element.
 *
 * Behaviors are event-triggered actions that attach to page elements, enhancing
 * default non-Javascript UIs. Behaviors are registered in the Drupal.behaviors
 * object as follows:
 * @code
 *    Drupal.behaviors.behaviorName = function () {
 *      ...
 *    };
 * @endcode
 *
 * Drupal.attachBehaviors is added below to the jQuery ready event and so
 * runs on initial page load. Developers implementing AHAH/AJAX in their
 * solutions should also call this function after new page content has been
 * loaded, feeding in an element to be processed, in order to attach all
 * behaviors to the new content.
 *
 * Behaviors should use a class in the form behaviorName-processed to ensure
 * the behavior is attached only once to a given element. (Doing so enables
 * the reprocessing of given elements, which may be needed on occasion despite
 * the ability to limit behavior attachment to a particular element.)
 *
 * @param context
 *   An element to attach behaviors to. If none is given, the document element
 *   is used.
 */
Drupal.attachBehaviors = function(context) {
  context = context || document;
  if (Drupal.jsEnabled) {
    // Execute all of them.
    jQuery.each(Drupal.behaviors, function() {
      this(context);
    });
  }
};

/**
 * Encode special characters in a plain-text string for display as HTML.
 */
Drupal.checkPlain = function(str) {
  str = String(str);
  var replace = { '&': '&amp;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
  for (var character in replace) {
    var regex = new RegExp(character, 'g');
    str = str.replace(regex, replace[character]);
  }
  return str;
};

/**
 * Translate strings to the page language or a given language.
 *
 * See the documentation of the server-side t() function for further details.
 *
 * @param str
 *   A string containing the English string to translate.
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 * @return
 *   The translated string.
 */
Drupal.t = function(str, args) {
  // Fetch the localized version of the string.
  if (Drupal.locale.strings && Drupal.locale.strings[str]) {
    str = Drupal.locale.strings[str];
  }

  if (args) {
    // Transform arguments before inserting them
    for (var key in args) {
      switch (key.charAt(0)) {
        // Escaped only
        case '@':
          args[key] = Drupal.checkPlain(args[key]);
        break;
        // Pass-through
        case '!':
          break;
        // Escaped and placeholder
        case '%':
        default:
          args[key] = Drupal.theme('placeholder', args[key]);
          break;
      }
      str = str.replace(key, args[key]);
    }
  }
  return str;
};

/**
 * Format a string containing a count of items.
 *
 * This function ensures that the string is pluralized correctly. Since Drupal.t() is
 * called by this function, make sure not to pass already-localized strings to it.
 *
 * See the documentation of the server-side format_plural() function for further details.
 *
 * @param count
 *   The item count to display.
 * @param singular
 *   The string for the singular case. Please make sure it is clear this is
 *   singular, to ease translation (e.g. use "1 new comment" instead of "1 new").
 *   Do not use @count in the singular string.
 * @param plural
 *   The string for the plural case. Please make sure it is clear this is plural,
 *   to ease translation. Use @count in place of the item count, as in "@count
 *   new comments".
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 *   Note that you do not need to include @count in this array.
 *   This replacement is done automatically for the plural case.
 * @return
 *   A translated string.
 */
Drupal.formatPlural = function(count, singular, plural, args) {
  var args = args || {};
  args['@count'] = count;
  // Determine the index of the plural form.
  var index = Drupal.locale.pluralFormula ? Drupal.locale.pluralFormula(args['@count']) : ((args['@count'] == 1) ? 0 : 1);

  if (index == 0) {
    return Drupal.t(singular, args);
  }
  else if (index == 1) {
    return Drupal.t(plural, args);
  }
  else {
    args['@count['+ index +']'] = args['@count'];
    delete args['@count'];
    return Drupal.t(plural.replace('@count', '@count['+ index +']'));
  }
};

/**
 * Generate the themed representation of a Drupal object.
 *
 * All requests for themed output must go through this function. It examines
 * the request and routes it to the appropriate theme function. If the current
 * theme does not provide an override function, the generic theme function is
 * called.
 *
 * For example, to retrieve the HTML that is output by theme_placeholder(text),
 * call Drupal.theme('placeholder', text).
 *
 * @param func
 *   The name of the theme function to call.
 * @param ...
 *   Additional arguments to pass along to the theme function.
 * @return
 *   Any data the theme function returns. This could be a plain HTML string,
 *   but also a complex object.
 */
Drupal.theme = function(func) {
  for (var i = 1, args = []; i < arguments.length; i++) {
    args.push(arguments[i]);
  }

  return (Drupal.theme[func] || Drupal.theme.prototype[func]).apply(this, args);
};

/**
 * Parse a JSON response.
 *
 * The result is either the JSON object, or an object with 'status' 0 and 'data' an error message.
 */
Drupal.parseJson = function (data) {
  if ((data.substring(0, 1) != '{') && (data.substring(0, 1) != '[')) {
    return { status: 0, data: data.length ? data : Drupal.t('Unspecified error') };
  }
  return eval('(' + data + ');');
};

/**
 * Freeze the current body height (as minimum height). Used to prevent
 * unnecessary upwards scrolling when doing DOM manipulations.
 */
Drupal.freezeHeight = function () {
  Drupal.unfreezeHeight();
  var div = document.createElement('div');
  $(div).css({
    position: 'absolute',
    top: '0px',
    left: '0px',
    width: '1px',
    height: $('body').css('height')
  }).attr('id', 'freeze-height');
  $('body').append(div);
};

/**
 * Unfreeze the body height
 */
Drupal.unfreezeHeight = function () {
  $('#freeze-height').remove();
};

/**
 * Wrapper around encodeURIComponent() which avoids Apache quirks (equivalent of
 * drupal_urlencode() in PHP). This function should only be used on paths, not
 * on query string arguments.
 */
Drupal.encodeURIComponent = function (item, uri) {
  uri = uri || location.href;
  item = encodeURIComponent(item).replace(/%2F/g, '/');
  return (uri.indexOf('?q=') != -1) ? item : item.replace(/%26/g, '%2526').replace(/%23/g, '%2523').replace(/\/\//g, '/%252F');
};

/**
 * Get the text selection in a textarea.
 */
Drupal.getSelection = function (element) {
  if (typeof(element.selectionStart) != 'number' && document.selection) {
    // The current selection
    var range1 = document.selection.createRange();
    var range2 = range1.duplicate();
    // Select all text.
    range2.moveToElementText(element);
    // Now move 'dummy' end point to end point of original range.
    range2.setEndPoint('EndToEnd', range1);
    // Now we can calculate start and end points.
    var start = range2.text.length - range1.text.length;
    var end = start + range1.text.length;
    return { 'start': start, 'end': end };
  }
  return { 'start': element.selectionStart, 'end': element.selectionEnd };
};

/**
 * Build an error message from ahah response.
 */
Drupal.ahahError = function(xmlhttp, uri) {
  if (xmlhttp.status == 200) {
    if (jQuery.trim($(xmlhttp.responseText).text())) {
      var message = Drupal.t("An error occurred. \n@uri\n@text", {'@uri': uri, '@text': xmlhttp.responseText });
    }
    else {
      var message = Drupal.t("An error occurred. \n@uri\n(no information available).", {'@uri': uri, '@text': xmlhttp.responseText });
    }
  }
  else {
    var message = Drupal.t("An HTTP error @status occurred. \n@uri", {'@uri': uri, '@status': xmlhttp.status });
  }
  return message;
}

// Global Killswitch on the <html> element
if (Drupal.jsEnabled) {
  // Global Killswitch on the <html> element
  $(document.documentElement).addClass('js');
  // 'js enabled' cookie
  document.cookie = 'has_js=1; path=/';
  // Attach all behaviors.
  $(document).ready(function() {
    Drupal.attachBehaviors(this);
  });
}

/**
 * The default themes.
 */
Drupal.theme.prototype = {

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number(($n!=1)); }, 'strings': { "Unspecified error": "Unbekannter Fehler", "Remove this item": "Dieses Element entfernen", "Visits": "Besuche", "An error occurred at @path.": "Ein Fehler ist auf @path aufgetreten.", "Select all rows in this table": "Alle Zeilen dieser Tabelle auswählen", "Deselect all rows in this table": "Alle Zeilen dieser Tabelle abwählen", "Join summary": "Anrisstext zusammenfügen", "Split summary at cursor": "Anrisstext an Cursorposition trennen", "Drag to re-order": "Ziehen um die Reihenfolge zu ändern", "Changes made in this table will not be saved until the form is submitted.": "Änderungen in dieser Tabelle werden nicht gespeichert, bis dieses Formular abgesendet wurde.", "Automatic alias": "Automatischer Alias", "Visitors": "Besucher", "Loading data...": "Daten werden geladen...", "No data available.": "Keine Daten vorhanden.", "The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.": "Die ausgewählte Datei %filename konnte nicht gespeichert werden. Nur Dateien mit den folgenden Erweiterungen sind zulässig: %extensions.", "Removed": "Entfernt", "Rename": "Umbenennen" } };;
/* $Id: dfont.module,v 1.18 2010/05/04 21:12:39 vph Exp $ */
if (Drupal.jsEnabled) {
  $(document).ready(function () {
        
    });
};
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}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,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,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 C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,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){if(!D){return m}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(C.autoDetect){delete C.fontFamily}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)}else{delete C.textGradient}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("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 h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Generated in 2009 by FontLab Studio. Copyright info pending.
 */
Cufon.registerFont({"w":190,"face":{"font-family":"TitilliumTitle12250","font-weight":250,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"2","bbox":"-1 -284 333.132 86.2213","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":84},"\u00a0":{"w":84},"\"":{"d":"18,-169r0,-83r13,0r0,83r-13,0xm71,-169r0,-83r13,0r0,83r-13,0","w":100},"$":{"d":"106,-229v-67,-17,-98,71,-38,92v7,2,15,4,25,6xm90,-10v55,6,85,-27,70,-79v-6,-21,-32,-21,-56,-27xm177,-68v0,56,-35,74,-89,70r-5,41r-12,-2r5,-40r-52,-4r1,-13r52,6r14,-108v-39,-7,-69,-17,-69,-64v0,-50,36,-61,85,-60r6,-42r13,0r-6,43r51,5r-1,12v-18,0,-35,-4,-52,-5r-13,100v39,7,72,13,72,61"},"%":{"d":"149,-86v-20,0,-26,14,-26,36v0,21,5,38,26,38v22,0,25,-16,25,-38v0,-22,-4,-36,-25,-36xm149,0v-27,0,-38,-18,-38,-50v0,-32,11,-48,38,-48v27,0,38,17,38,48v0,31,-11,50,-38,50xm48,-155v-27,0,-38,-18,-38,-50v0,-31,11,-48,38,-48v27,0,38,18,38,49v0,30,-11,49,-38,49xm118,-252r12,1r-52,251r-11,-2xm74,-204v0,-22,-4,-37,-26,-37v-20,0,-25,14,-25,36v0,22,4,39,25,39v21,0,26,-17,26,-38"},"&":{"d":"116,-238v-50,0,-57,60,-26,84r13,13v32,-11,56,-24,56,-57v0,-24,-14,-40,-43,-40xm33,-72v-5,79,123,81,141,19r-85,-85v-32,11,-54,31,-56,66xm80,-147v-36,-29,-25,-107,36,-103v34,2,55,19,55,52v0,37,-24,55,-59,66r67,66v5,-14,8,-31,11,-52r13,0v-4,23,-7,44,-14,62r50,49r-8,10r-47,-47v-14,29,-42,47,-84,47v-48,0,-79,-26,-79,-74v0,-40,26,-63,59,-76","w":225},"'":{"d":"11,-252r13,0r0,76r-12,0","w":36},"(":{"d":"20,-108v0,-63,17,-114,35,-162r13,0v-17,46,-35,102,-35,162v0,58,17,110,35,153r-13,0v-18,-43,-35,-94,-35,-153","w":93},")":{"d":"68,-118v0,62,-18,113,-35,161r-13,0v15,-47,34,-100,34,-161v0,-59,-19,-109,-34,-154r13,0v16,45,35,95,35,154","w":93},"+":{"d":"20,-115r68,0r0,-68r15,0r0,68r68,0r0,13r-68,0r0,69r-15,0r0,-69r-68,0r0,-13"},",":{"d":"15,23v21,-1,14,-35,15,-57r13,0v1,31,5,68,-28,69r0,-12","w":61},"-":{"d":"22,-100r115,0r0,12r-115,0r0,-12","w":158},".":{"d":"28,-29r14,0r0,29r-14,0r0,-29","w":50},"\/":{"d":"193,-253r12,5r-100,248r-12,-4","w":299},"0":{"d":"167,-82v0,-76,4,-147,-72,-147v-76,0,-71,72,-71,147v0,47,27,73,71,73v44,0,72,-27,72,-73xm11,-82v-3,-85,-1,-159,84,-159v83,0,89,74,85,159v-2,55,-29,85,-85,85v-55,0,-82,-30,-84,-85"},"2":{"d":"25,-233v65,-14,146,-15,140,64v-3,38,-19,57,-39,76r-87,80r133,0r0,13r-150,0r0,-13v39,-39,87,-72,119,-117v30,-43,2,-115,-65,-98r-50,7"},"3":{"d":"152,-177v6,-68,-76,-52,-129,-44r-1,-12v59,-10,152,-25,143,57v-3,31,-16,40,-40,49v34,6,49,27,47,71v-3,70,-92,63,-153,51r2,-12v56,10,138,24,138,-55v0,-53,-55,-48,-108,-48r0,-12v50,2,97,0,101,-45"},"4":{"d":"128,-46r-118,0r0,-23r66,-169r15,0r-68,170r0,9r105,0r0,-70r13,0r0,70r33,0r0,13r-33,0r0,53r-13,0r0,-53"},"5":{"d":"157,-87v-7,-58,-77,-46,-122,-34r-10,-1r6,-114r132,0r0,12r-119,0r-7,91v50,-17,133,-21,133,46v0,95,-72,100,-147,81r1,-12v62,10,144,22,133,-69"},"6":{"d":"96,-9v48,0,64,-26,64,-76v0,-62,-90,-54,-130,-33v-3,63,5,109,66,109xm17,-155v0,-85,74,-94,149,-80r-1,12v-76,-16,-150,-2,-135,92v56,-25,155,-27,143,65v-6,46,-29,67,-77,69v-84,4,-79,-76,-79,-158"},"7":{"d":"23,-236r145,0r0,24r-95,212r-12,-5r93,-208r0,-11r-131,0r0,-12"},"8":{"d":"164,-178v1,-42,-27,-51,-69,-51v-42,0,-67,10,-69,50v-2,52,44,53,94,49v30,-2,43,-15,44,-48xm23,-75v-4,51,23,66,72,66v47,0,76,-13,73,-64v-3,-49,-51,-46,-102,-45v-26,6,-40,13,-43,43xm13,-179v2,-45,28,-62,82,-62v49,0,82,13,82,62v0,32,-11,47,-34,54v27,8,38,28,38,65v0,50,-37,63,-86,63v-55,1,-91,-18,-86,-78v3,-27,16,-42,38,-50v-21,-8,-35,-23,-34,-54"},":":{"d":"28,-29r14,0r0,29r-14,0r0,-29xm28,-153r14,0r0,29r-14,0r0,-29","w":50},";":{"d":"29,-153r13,0r0,29r-13,0r0,-29xm15,24v-3,-17,15,-12,15,-25r0,-33r13,0v2,29,1,56,-28,58","w":61},"<":{"d":"44,-109r106,74r0,15r-117,-82r0,-13r117,-79r0,14"},"=":{"d":"23,-79r145,0r0,13r-145,0r0,-13xm23,-139r145,0r0,13r-145,0r0,-13"},">":{"d":"40,-180r0,-14r118,79r0,13r-118,82r0,-15r107,-74"},"?":{"d":"45,-29r14,0r0,29r-14,0r0,-29xm-1,-249v57,-10,127,-12,127,54v0,63,-73,55,-68,123r-12,0v-8,-69,62,-64,67,-123v5,-56,-66,-50,-113,-42","w":133},"A":{"d":"53,-90r111,0r-46,-150r-19,0xm89,-252r40,0r76,251r-13,0r-24,-76r-118,0r-24,77r-13,0","w":217,"k":{"V":11}},"[":{"d":"83,-258r-53,0r0,291r53,0r0,11r-66,0r0,-314r66,0r0,12","w":108},"\\":{"d":"143,0r-108,-247r12,-5r109,247"},"]":{"d":"18,-270r66,0r0,314r-66,0r0,-11r53,0r0,-291r-53,0r0,-12","w":108},"_":{"d":"181,30r0,12r-171,0r0,-12r171,0"},"a":{"d":"40,-77v-17,30,-3,73,43,68r56,-6r0,-80v-33,6,-81,-3,-99,18xm139,-107v13,-69,-44,-70,-108,-61r0,-12r73,-3v70,2,43,102,48,169r27,5r-2,11v-36,-10,-72,-1,-110,1v-45,2,-60,-58,-36,-88v20,-25,70,-15,108,-22","w":189},"b":{"d":"114,-172v-23,0,-46,9,-66,16r0,144r65,4v48,-4,46,-63,44,-117v-1,-27,-16,-47,-43,-47xm169,-125v0,70,-1,139,-76,128r-57,-4r0,-258r12,0r0,91v21,-5,41,-15,66,-15v34,0,55,22,55,58","w":191},"c":{"d":"135,0v-64,11,-112,-4,-112,-72v0,-75,17,-124,93,-109v6,0,12,1,19,1r0,12v-53,-11,-104,0,-100,57v-10,76,21,119,100,99r0,12","w":149},"d":{"d":"78,-8v24,-4,46,-13,66,-24r0,-133r-66,-7v-50,2,-44,64,-43,117v1,27,16,45,43,47xm78,-183r66,6r0,-82r12,0r0,259r-12,0r0,-20v-21,11,-39,22,-66,23v-58,2,-55,-59,-55,-119v0,-39,18,-70,55,-67","w":192},"e":{"d":"89,-172v-40,1,-57,31,-54,75r110,0v3,-46,-12,-76,-56,-75xm35,-85v-7,72,44,88,117,73r0,12r-64,3v-63,2,-67,-53,-65,-117v1,-43,23,-68,66,-69v56,-2,75,38,69,98r-123,0","w":178},"f":{"d":"116,-250v-55,-10,-73,13,-66,70r58,0r0,12r-58,0r0,168r-13,0r0,-168r-24,0r0,-12r24,0v-6,-61,13,-94,79,-81r0,11","w":118},"g":{"d":"35,-123v0,34,19,47,56,47v30,0,43,-17,43,-47v0,-37,-19,-49,-57,-49v-29,0,-42,21,-42,49xm159,30v3,-52,-54,-35,-99,-42v-13,10,-28,19,-28,40v0,36,24,49,64,47v35,-2,61,-11,63,-45xm171,30v0,47,-41,58,-93,56v-37,-1,-58,-20,-58,-57v0,-27,16,-34,31,-46v-16,-11,-5,-38,2,-52v-46,-17,-40,-119,24,-114v34,3,60,7,95,3r0,13r-41,0v31,30,17,103,-39,103v-11,0,-20,0,-29,-2v-14,19,-12,49,23,45v49,-5,85,3,85,51","w":181},"h":{"d":"115,-172v-25,0,-46,12,-67,19r0,153r-12,0r0,-259r12,0r0,94v21,-7,42,-18,67,-18v78,0,50,109,55,183r-13,0v-7,-65,24,-172,-42,-172","w":203},"i":{"d":"37,-248r13,0r0,19r-13,0r0,-19xm37,-180r13,0r0,180r-13,0r0,-180","w":86},"j":{"d":"40,-248r13,0r0,19r-13,0r0,-19xm40,-180r13,0v-5,74,14,167,-17,218r-22,37r-11,-7v14,-27,37,-47,37,-87r0,-161","w":89},"m":{"d":"115,-172v-22,1,-50,12,-67,19r0,153r-12,0r0,-180r12,0r0,15v28,-12,83,-33,104,0v22,-6,41,-17,67,-18v78,1,50,109,55,183r-13,0v-3,-74,25,-200,-74,-165v-10,4,-22,7,-30,10v13,41,3,104,6,155r-13,0r0,-125v0,-25,-10,-49,-35,-47","w":306},"n":{"d":"113,-172v-22,4,-45,13,-65,21r0,151r-12,0r0,-180r12,0r0,17v20,-8,40,-19,65,-20v79,-2,50,109,55,183r-12,0v-6,-65,24,-167,-43,-172","w":201},"o":{"d":"35,-117v-3,62,-1,114,69,108v50,-4,46,-56,46,-108v0,-40,-24,-58,-69,-54v-30,2,-45,24,-46,54xm163,-117v3,71,-3,119,-82,119v-58,0,-60,-58,-58,-119v1,-48,29,-70,81,-66v38,2,57,26,59,66","w":185},"p":{"d":"98,-9v71,11,63,-75,55,-135v-8,-16,-22,-26,-42,-28v-23,3,-45,13,-63,22r0,135xm114,3r-66,-7r0,76r-12,0r0,-252r12,0r0,18v18,-10,38,-20,63,-21v58,-1,62,57,58,119v-1,37,-18,71,-55,67","w":191},"q":{"d":"35,-112v-3,56,-2,117,61,102r48,-14r0,-144r-66,-4v-30,3,-40,30,-43,60xm78,-183r78,4r0,251r-12,0r0,-84v-20,6,-42,15,-66,16v-56,2,-58,-57,-55,-117v2,-36,16,-72,55,-70","w":191},"r":{"d":"123,-171v-27,8,-53,22,-75,35r0,136r-12,0r0,-180r12,0r0,31v22,-14,47,-27,75,-34r0,12","w":130},"s":{"d":"38,-102v-35,-30,-5,-83,45,-81r64,3r0,12v-48,-4,-126,-15,-108,47v21,38,115,2,115,70v0,62,-72,58,-126,49r1,-12v44,5,111,18,111,-36v0,-51,-73,-27,-102,-52","w":176},"t":{"d":"115,0v-49,4,-73,-12,-73,-59r0,-109r-29,0r0,-12r29,0r0,-45r13,0r0,45r60,0r0,12r-60,0v9,65,-33,170,60,156r0,12","w":127},"v":{"d":"75,-12r18,0r49,-168r14,0r-53,180r-37,0r-53,-180r13,0","w":168},"w":{"d":"26,-180r41,168r19,0r46,-164r13,0r46,164r20,0r40,-168r13,0r-44,180r-39,0r-43,-157r-42,157r-39,0r-43,-180r12,0","w":277},"x":{"d":"6,-180r15,0r54,80r54,-80r14,0r-61,90r61,90r-14,0r-54,-80r-54,80r-15,0r61,-90","w":156},"y":{"d":"13,-180r12,0r53,168r9,0r53,-168r13,0r-82,263r-13,0r26,-83r-16,0","w":165},"z":{"d":"147,-12r0,12r-127,0r0,-11r113,-157r-113,0r0,-12r127,0r0,12r-112,156r112,0","w":167},"{":{"d":"0,-118v62,-2,19,-97,49,-138v9,-12,27,-14,49,-14r1,12v-91,-16,-11,137,-85,146v72,5,-6,158,85,144r-1,13v-63,5,-61,-47,-61,-108v0,-28,-13,-34,-37,-42r0,-13","w":102},"l":{"d":"36,0r0,-259r13,0r0,259r-13,0","w":85},"u":{"d":"88,-8v23,0,44,-12,65,-19r0,-153r13,0r0,180r-13,0r0,-15v-21,7,-40,18,-65,18v-78,0,-50,-109,-55,-183r13,0v7,65,-25,172,42,172","w":201},"k":{"d":"36,0r0,-259r13,0r0,154r34,0r65,-75r15,0r-69,81r69,99r-15,0r-65,-93r-34,0r0,93r-13,0","w":170},"B":{"d":"184,-190v0,-63,-74,-49,-134,-50r0,104v62,-1,134,14,134,-54xm194,-71v0,-69,-80,-51,-144,-53r0,112v67,-1,144,14,144,-59xm208,-71v0,86,-91,71,-171,71r0,-252v73,1,165,-15,161,62v-1,32,-13,50,-36,59v27,8,46,24,46,60","w":229},"C":{"d":"112,-9v23,0,48,-4,69,-7r1,12v-22,3,-46,5,-70,7v-93,6,-83,-86,-83,-174v0,-82,75,-95,153,-77r-1,13v-22,-3,-44,-8,-69,-8v-80,0,-71,83,-70,160v0,48,22,74,70,74","w":198},"D":{"d":"50,-12v75,3,144,3,144,-72v0,-76,9,-161,-70,-156r-74,0r0,228xm207,-84v0,54,-30,84,-83,84r-87,0r0,-252v89,-2,178,-8,170,86r0,82","w":236},"E":{"d":"37,-252r147,0r0,13r-134,0r0,101r113,0r0,13r-113,0r0,112r134,0r0,13r-147,0r0,-252","w":205},"F":{"d":"37,-252r148,0r0,12r-135,0r0,115r113,0r0,13r-113,0r0,112r-13,0r0,-252","w":199},"G":{"d":"42,-83v-2,75,78,82,147,68r0,-98r-54,0r0,-12r67,0r0,120v-80,14,-177,14,-173,-78r0,-88v-2,-86,97,-94,173,-73r-2,12r-75,-11v-48,2,-83,24,-83,72r0,88","w":232},"H":{"d":"201,-120r-151,0r0,120r-13,0r0,-252r13,0r0,120r151,0r0,-120r12,0r0,252r-12,0r0,-120","w":250},"I":{"d":"38,-252r13,0r0,252r-13,0r0,-252","w":88},"K":{"d":"86,-118r-36,0r0,118r-13,0r0,-252r13,0r0,121r36,0r90,-121r15,0r-94,127r100,125r-17,0","w":214},"L":{"d":"38,0r0,-252r13,0r0,240r123,0r0,12r-136,0","w":178,"k":{"V":14,"T":14,"W":7,"Y":14}},"M":{"d":"37,-252r40,0r70,231r73,-231r40,0r0,252r-13,0r0,-240r-17,0r-74,233r-19,0r-70,-233r-17,0r0,240r-13,0r0,-252","w":297},"N":{"d":"37,-252v13,1,29,-2,40,1r109,239r18,0r0,-240r13,0r0,252v-13,-1,-29,2,-40,-1r-109,-239r-18,0r0,240r-13,0r0,-252","w":254},"O":{"d":"120,-243v-52,0,-79,21,-78,74r0,86v0,52,25,75,78,74v52,0,80,-22,79,-74r0,-86v1,-52,-28,-73,-79,-74xm120,4v-60,0,-91,-27,-91,-87r0,-86v0,-60,30,-87,91,-86v60,0,92,26,92,86r0,86v0,60,-33,87,-92,87","w":241},"P":{"d":"50,-104v63,-1,139,14,139,-54v0,-51,-7,-82,-56,-82r-83,0r0,136xm202,-193v0,62,-11,101,-69,101r-83,0r0,92r-13,0r0,-252v72,2,165,-17,165,59","w":229},"Q":{"d":"120,-243v-52,0,-79,21,-78,74r0,86v0,52,25,75,78,74v52,0,80,-22,79,-74r0,-86v1,-52,-28,-73,-79,-74xm157,-1v-67,16,-128,-8,-128,-82r0,-86v0,-60,30,-87,91,-86v60,0,92,26,92,86v-1,68,10,148,-42,164r31,49r-13,6","w":241},"R":{"d":"188,-166v0,-48,-12,-74,-57,-74r-81,0r0,124v61,-1,138,12,138,-50xm131,-252v90,-13,93,138,22,145r58,107r-14,0r-57,-104r-90,0r0,104r-13,0r0,-252r94,0","w":230},"S":{"d":"19,-193v0,-75,85,-66,148,-57r-1,12v-54,-5,-133,-21,-133,45v0,90,141,25,141,120v0,85,-81,81,-153,70r1,-13v61,5,141,22,138,-56v-4,-86,-141,-21,-141,-121","w":192},"T":{"d":"4,-252r176,0r0,12r-81,0r0,240r-13,0r0,-240r-82,0r0,-12","w":183,"k":{"r":11,"b":11,"h":11,"i":11,"j":11,"m":11,"n":11,"p":11,"l":11,"u":11,"k":11,"|":11,"A":14,"a":14,"@":14,"c":14,"d":14,"e":14,"o":14,"q":14,"s":11,"v":11,"w":11,"y":11,"z":11}},"U":{"d":"125,-9v115,0,66,-145,76,-243r12,0r0,170v1,59,-29,85,-88,86v-61,0,-89,-25,-89,-86r0,-170r13,0r0,170v-1,50,24,73,76,73","w":249},"V":{"d":"126,0r-42,0r-71,-252r13,0r69,240r21,0r67,-240r13,0","w":208,"k":{"@":11,"u":7,"s":7,"r":7,"q":11,"o":11,"n":7,"m":7,"g":7,"e":11,"d":11,"c":11,"a":11,"A":11}},"W":{"d":"140,-131r-53,131r-35,0r-34,-252r13,0r32,240r16,0r55,-134r0,-29r13,0r0,29r52,134r15,0r39,-240r13,0r-41,252r-34,0","w":284,"k":{"A":7,"c":4,"d":4,"e":4,"o":4,"q":4,"s":4}},"X":{"d":"105,-135r74,-117r16,0r-81,127r81,125r-16,0r-74,-116r-75,116r-16,0r82,-125r-82,-127r16,0","w":209},"Y":{"d":"104,0r-13,0r0,-116r-82,-136r15,0r74,125r72,-125r15,0r-81,136r0,116","w":194,"k":{"A":18,"a":18,"@":18,"c":18,"d":18,"e":18,"o":18,"q":18}},"Z":{"d":"22,-252r162,0r0,25r-149,207r0,8r149,0r0,12r-162,0r0,-24r149,-206r0,-10r-149,0r0,-12","w":205},"J":{"d":"10,14v43,4,49,-11,49,-55r0,-211r13,0r1,214v2,48,-14,68,-63,64r0,-12","w":109},"`":{"d":"129,-233r-6,10r-69,-33r6,-11","w":196},"*":{"d":"107,-187r16,50r-11,4r-17,-51r-43,31r-7,-9r44,-32r-43,-31r7,-10r43,32r16,-50r12,4r-16,50r52,0r0,12r-53,0"},"1":{"d":"106,-238r13,0r0,238r-13,0r0,-224r-67,46r-7,-11"},"9":{"d":"94,-229v-47,1,-64,25,-64,73v0,61,89,55,130,34v3,-62,-6,-108,-66,-107xm173,-83v0,85,-74,94,-149,80r1,-12v66,12,141,8,135,-68r0,-27v-54,25,-154,28,-143,-62v6,-46,29,-67,77,-69v83,-3,79,75,79,158"},"|":{"d":"145,-252r12,0r0,273r-12,0r0,-273","w":299},"#":{"d":"182,-161r-68,0r-2,81r68,0xm192,-68r-1,68r-13,0r1,-68r-67,0r-2,68r-13,0r2,-68r-44,0r1,-12r43,0r3,-81r-44,0r1,-12r43,0r2,-68r13,0r-2,68r68,0r1,-68r13,0r-1,68r43,0r-1,12r-43,0r-2,81r43,0r-1,12r-43,0","w":299},"@":{"d":"120,-110v-6,61,6,117,68,98v17,-5,31,-10,45,-18v-5,-40,-4,-87,-4,-132v-47,-20,-117,-11,-109,52xm181,-259v107,-2,155,50,152,159v-2,57,-6,104,-59,104v-23,0,-30,-9,-36,-24v-43,30,-131,37,-131,-42v0,-71,4,-125,75,-121v17,0,32,6,47,9v-2,-9,7,-6,13,-6r0,108v1,39,2,65,32,65v47,0,45,-53,46,-103v2,-95,-43,-138,-139,-137v-86,1,-145,29,-145,115r0,79v-4,106,93,121,197,110r1,11v-110,14,-215,-8,-211,-121r0,-78v1,-95,64,-127,158,-128","w":354},"^":{"d":"97,-225r-57,112r-15,0r65,-125r14,0r68,125r-15,0"},"}":{"d":"85,-112v-74,-10,6,-162,-85,-146r1,-12v65,-7,61,47,61,109v0,27,13,37,37,43r0,13v-62,3,-19,95,-49,135v-9,12,-27,14,-49,15r-1,-13v90,16,11,-134,85,-144","w":102},"~":{"d":"130,-114v14,-2,25,-11,34,-19r2,13v-10,8,-19,19,-36,19v-26,0,-44,-18,-69,-20v-15,2,-24,12,-34,19v-8,-21,18,-26,34,-32v25,2,45,17,69,20"}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Generated in 2009 by FontLab Studio. Copyright info pending.
 */
Cufon.registerFont({"w":190,"face":{"font-family":"TitilliumMaps26L900","font-weight":900,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-12 -284 340 90","underline-thickness":"10.8","underline-position":"-25.2","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":84},"\u00a0":{"w":84},"C":{"d":"67,-124v-7,76,36,91,109,77r1,44v-21,4,-45,7,-69,7v-76,1,-92,-51,-92,-128v0,-77,17,-131,92,-129v24,1,48,5,70,9r-2,43r-61,-4v-46,-1,-44,36,-48,81"},"c":{"d":"14,-92v1,-56,22,-91,75,-92v20,0,39,3,55,6r-1,41v-42,-5,-86,-7,-80,45v-4,50,31,58,80,50r1,41v-19,2,-37,5,-57,5v-54,-1,-73,-37,-73,-96","w":156},"d":{"d":"91,-142v-37,1,-41,103,0,103v11,0,24,-3,31,-7r0,-92xm14,-92v-2,-70,42,-105,108,-87r0,-73r49,0r0,252r-49,0r0,-7v-11,6,-24,11,-39,11v-54,0,-67,-41,-69,-96","w":196},"e":{"d":"121,-106v8,-35,-36,-50,-52,-27v-4,7,-6,16,-6,27r58,0xm63,-70v-1,45,58,29,99,29r1,35v-20,6,-42,11,-69,10v-59,-1,-80,-31,-80,-91v0,-57,22,-95,78,-97v64,-2,86,53,73,114r-102,0","w":182},"f":{"d":"117,-211v-27,-6,-49,-2,-43,31r42,0r0,42r-42,0r0,138r-48,0r0,-138r-18,0r0,-42r18,0v-7,-66,31,-86,91,-71r0,40","w":123},"g":{"d":"65,-120v0,17,9,24,25,25v16,0,27,-8,26,-25v0,-16,-8,-24,-26,-24v-17,0,-25,8,-25,24xm134,25v0,-25,-41,-12,-62,-19v-5,6,-12,10,-10,22v3,22,73,25,72,-3xm40,-11v-20,-11,-12,-43,1,-56v-15,-10,-24,-27,-24,-53v-1,-57,55,-72,108,-59r55,-1r0,38r-22,0v21,52,-19,96,-81,84v-6,10,-7,28,11,25v51,2,97,3,95,55v-2,47,-37,63,-84,64v-47,1,-85,-10,-85,-53v0,-22,11,-32,26,-44","w":193},"h":{"d":"130,-95v5,-39,-21,-55,-56,-40r0,135r-48,0r0,-252r48,0r0,77v14,-4,26,-9,43,-9v82,0,58,106,62,184r-49,0r0,-95","w":201},"i":{"d":"24,-249r48,0r0,49r-48,0r0,-49xm24,-180r48,0r0,180r-48,0r0,-180","w":96},"j":{"d":"25,-248r48,0r0,48r-48,0r0,-48xm25,-180r48,0r-2,210v-8,33,-32,45,-62,59r-21,-40v18,-12,37,-18,37,-51r0,-178","w":97},"k":{"d":"26,0r0,-252r48,0r0,141r15,-3r36,-66r54,0r-47,85r49,95r-54,0r-37,-68r-16,4r0,64r-48,0","w":186},"l":{"d":"24,-252r48,0r0,252r-48,0r0,-252","w":96},"m":{"d":"104,-140v-12,0,-20,5,-30,7r0,133r-48,0r0,-180r48,0r0,9v23,-14,65,-19,84,2v20,-5,39,-14,62,-15v82,-2,58,106,62,184r-49,0r0,-111v2,-32,-35,-33,-56,-21r1,132r-48,0r0,-93v-1,-25,-3,-47,-26,-47","w":304},"A":{"d":"78,-89r61,0r-24,-116r-12,0xm64,-248r91,0r54,248r-50,0r-11,-43r-80,0r-9,43r-50,0","w":217},"p":{"d":"133,-91v-2,-26,-6,-49,-29,-50v-12,0,-21,5,-30,8r0,93v40,8,62,-8,59,-51xm182,-91v3,72,-37,107,-108,92r0,75r-48,0r0,-256r48,0r0,9v12,-5,23,-12,39,-13v53,0,67,39,69,93","w":196},"q":{"d":"63,-89v-2,40,20,59,59,47r0,-98r-29,-2v-26,0,-28,25,-30,53xm93,-184r77,4r0,256r-48,0r0,-76v-66,17,-112,-18,-108,-89v4,-57,22,-98,79,-95","w":195},"r":{"d":"121,-132v-18,4,-36,7,-49,14r0,118r-48,0r0,-180r48,0r0,17v14,-9,30,-17,49,-21r0,52","w":129},"s":{"d":"19,-125v0,-68,81,-64,136,-50r-1,39r-64,-6v-24,-4,-32,24,-7,28v39,6,77,12,77,60v0,70,-86,63,-139,49r1,-39v28,-1,91,23,89,-14v-30,-21,-92,-10,-92,-67","w":178},"u":{"d":"72,-86v-6,46,21,56,56,41r0,-135r48,0r0,180r-48,0r0,-8v-12,6,-25,13,-43,12v-83,2,-58,-106,-62,-184r49,0r0,94","w":201},"w":{"d":"52,-180r22,136r8,0r28,-132r50,0r28,132r8,0r22,-136r48,0r-34,180r-77,0r-20,-110r-21,110r-76,0r-34,-180r48,0","w":270},"y":{"d":"52,-180r33,133r5,0r32,-133r48,0r-63,255r-48,0r19,-75r-29,0r-44,-180r47,0","w":174},"z":{"d":"21,-180r130,0r0,43r-74,94r74,0r0,43r-130,0r0,-43r74,-94r-74,0r0,-43","w":171},"Z":{"d":"23,-248r159,0r0,46r-97,150r0,6r97,0r0,46r-159,0r0,-46r97,-151r0,-5r-97,0r0,-46","w":205},"0":{"d":"133,-117v0,-40,0,-79,-37,-79v-38,0,-38,39,-38,79v0,40,0,76,38,76v37,0,37,-37,37,-76xm5,-117v0,-74,19,-125,90,-125v72,0,91,51,91,125v0,74,-19,121,-91,121v-71,0,-90,-48,-90,-121"},"1":{"d":"88,-238r46,0r0,238r-50,0r0,-180r-49,33r-23,-39"},"2":{"d":"19,-233v72,-21,171,-10,145,84v-13,47,-52,72,-82,103r89,0r0,46r-153,0r0,-44r71,-71v25,-18,47,-79,-11,-79v-20,0,-39,2,-56,5"},"3":{"d":"120,-168v0,-40,-63,-25,-94,-23r-5,-42v62,-14,150,-20,150,57v0,28,-11,40,-28,51v20,9,32,23,32,53v0,83,-84,84,-157,68r5,-42v38,0,101,19,101,-25v0,-34,-46,-25,-79,-26r0,-43v34,1,75,5,75,-28"},"5":{"d":"125,-75v0,-37,-43,-34,-67,-25r-38,-9r8,-129r141,0r0,46r-97,0r-5,48v53,-20,116,4,109,67v8,88,-91,92,-162,69r6,-42v37,3,105,29,105,-25"},"7":{"d":"19,-238r149,0r0,57r-84,187r-46,-12r79,-175r0,-10r-98,0r0,-47"},"8":{"d":"113,-141v25,-13,20,-61,-16,-56v-34,-5,-41,43,-16,56r32,0xm113,-99v-28,-2,-51,1,-51,27v0,21,11,32,34,32v39,0,48,-50,17,-59xm12,-177v3,-45,37,-65,85,-65v47,0,83,19,85,65v1,30,-10,42,-26,55v18,12,30,26,30,54v0,51,-38,73,-90,73v-50,-1,-87,-19,-88,-69v0,-28,14,-46,30,-58v-15,-13,-27,-26,-26,-55"},"E":{"d":"27,-248r154,0r0,45r-105,0r0,59r83,0r0,44r-83,0r0,54r105,0r0,46r-154,0r0,-248","w":199},"F":{"d":"27,-248r154,0r0,46r-105,0r0,74r83,0r0,45r-83,0r0,83r-49,0r0,-248","w":193},"G":{"d":"67,-125v0,60,19,94,80,81r0,-49r-22,0r0,-42r71,0r0,133r-82,6v-77,1,-99,-52,-98,-129v0,-77,22,-128,97,-128v28,0,57,5,83,9r-1,43r-74,-5v-47,-1,-54,32,-54,81","w":214},"H":{"d":"163,-104r-87,0r0,104r-49,0r0,-248r49,0r0,99r87,0r0,-99r49,0r0,248r-49,0r0,-104","w":238},"K":{"d":"105,-99r-29,4r0,95r-49,0r0,-248r49,0r0,108r29,-4r40,-104r57,0r-53,123r55,125r-57,0","w":212},"Q":{"d":"67,-122v0,50,6,81,49,81v43,0,49,-32,49,-81v0,-50,-6,-85,-49,-85v-44,0,-49,41,-49,85xm216,-122v0,51,-9,87,-38,109r26,48r-43,21r-29,-52v-87,6,-116,-42,-116,-126v0,-78,23,-130,100,-131v77,0,99,54,100,131","w":231},"R":{"d":"76,-126v40,2,77,1,77,-39v0,-40,-37,-40,-77,-38r0,77xm204,-166v0,37,-13,57,-36,71r35,95r-54,0r-29,-82r-44,0r0,82r-49,0r0,-248v88,-1,177,-12,177,82","w":220},"S":{"d":"18,-181v0,-80,92,-79,159,-63r-2,42v-40,0,-118,-24,-106,32v31,39,115,25,115,99v0,86,-93,81,-162,67r3,-42v40,1,122,22,107,-33v-35,-36,-114,-26,-114,-102"},"T":{"d":"3,-248r167,0r0,47r-58,0r0,201r-49,0r0,-201r-60,0r0,-47","w":172},"V":{"d":"212,-248r-58,248r-88,0r-57,-248r52,0r43,203r12,0r43,-203r53,0","w":220},"N":{"d":"27,-248r81,0r64,196r4,0r0,-196r49,0r0,248r-79,0r-65,-197r-4,0r0,197r-50,0r0,-248","w":252},"$":{"d":"104,-196v-44,-9,-46,41,-10,48xm91,-41v32,7,47,-23,31,-44v-3,-5,-10,-7,-19,-10xm177,-68v0,59,-37,76,-96,71r-9,40r-19,-2r8,-40v-14,1,-26,-4,-39,-5r3,-43r46,5v2,-19,14,-44,11,-60v-36,-13,-64,-23,-64,-73v0,-52,41,-71,96,-66r10,-43r20,0r-10,44r37,4r-1,44r-46,-3r-11,53v37,13,64,22,64,74"},"!":{"d":"71,-252r54,0r-2,158r-50,0xm72,-60r52,0r0,60r-52,0r0,-60"},"a":{"d":"65,-56v0,28,30,19,49,15r0,-37v-21,2,-49,-3,-49,22xm25,-176v58,-10,144,-23,137,54v4,29,-13,80,14,86r-3,40v-22,0,-39,-3,-52,-12v-47,32,-127,-4,-100,-71v13,-31,53,-31,93,-34v8,-45,-51,-22,-87,-24"},"o":{"d":"63,-90v0,27,5,53,32,53v27,0,32,-24,32,-53v0,-28,-4,-52,-32,-52v-28,0,-32,25,-32,52xm14,-90v0,-57,22,-95,81,-94v59,0,81,35,81,94v0,59,-22,94,-81,94v-59,1,-81,-37,-81,-94"},"J":{"d":"13,-19v17,-1,25,-6,25,-23r0,-206r49,0r0,207v2,51,-23,68,-74,66r0,-44","w":113},"t":{"d":"118,-1v-52,15,-91,-2,-91,-63r0,-73r-20,0r0,-42r20,0r0,-51r48,0r0,51r42,0r0,42r-42,0v6,40,-23,113,41,97","w":126},"n":{"d":"130,-94v5,-39,-21,-55,-56,-40r0,134r-48,0r0,-180r48,0r0,8v12,-5,27,-12,43,-12v81,0,58,106,62,184r-49,0r0,-94","w":201},"#":{"d":"114,-138r-37,0r0,38r37,0r0,-38xm156,-59r0,59r-42,0r0,-59r-37,0r0,59r-42,0r0,-59r-35,0r0,-41r35,0r0,-38r-35,0r0,-40r35,0r0,-60r42,0r0,60r37,0r0,-60r42,0r0,60r34,0r0,40r-34,0r0,38r34,0r0,41r-34,0"},"W":{"d":"63,-248r35,203r6,0r37,-200r57,0r37,200r5,0r36,-203r52,0r-50,248r-77,0r-32,-179r-31,179r-78,0r-50,-248r53,0","w":338},"@":{"d":"151,-87v-5,43,24,49,56,37v-4,-25,-3,-55,-3,-84v-35,-11,-59,5,-53,47xm181,-262v106,-1,159,53,159,158v0,61,-12,106,-69,108v-21,1,-37,-6,-47,-16v-16,6,-32,15,-54,15v-53,0,-67,-36,-68,-90v0,-56,13,-96,69,-96v12,0,23,5,33,8r0,-5r49,0r0,72v3,29,-6,61,18,65v25,-4,20,-37,21,-67v2,-74,-35,-105,-111,-105v-78,0,-118,43,-118,121v0,105,65,134,170,119r2,47v-137,18,-225,-29,-221,-166v3,-109,59,-167,167,-168","w":354},"`":{"d":"140,-246r-14,41r-94,-28r16,-46","w":196},"M":{"d":"27,-248r80,0r46,182r47,-182r78,0r0,248r-49,0r0,-189r-5,0r-46,178r-50,0r-47,-178r-5,0r0,189r-49,0r0,-248","w":305},"U":{"d":"116,3v-61,0,-91,-25,-91,-86r0,-165r50,0r0,165v-1,30,11,39,41,39v29,0,42,-10,42,-39r0,-165r49,0r0,165v1,61,-30,86,-91,86","w":232},"X":{"d":"105,-159r42,-89r55,0r-66,125r66,123r-55,0r-42,-87r-43,87r-55,0r67,-123r-67,-125r55,0","w":209},"Y":{"d":"128,0r-49,0r0,-106r-74,-142r55,0r43,90r42,-90r55,0r-72,142r0,106","w":205},"I":{"d":"25,-248r50,0r0,248r-50,0r0,-248","w":100},"O":{"d":"216,-122v0,76,-24,126,-100,126v-76,0,-100,-49,-100,-126v0,-78,23,-130,100,-131v77,0,100,54,100,131xm67,-122v0,44,6,81,49,81v43,0,49,-32,49,-81v0,-50,-6,-85,-49,-85v-44,0,-49,41,-49,85","w":231},"~":{"d":"67,-141v35,0,73,28,100,1r3,45v-22,32,-74,12,-106,4v-16,1,-29,7,-40,14r-3,-45v11,-10,25,-19,46,-19"},"L":{"d":"27,0r0,-248r49,0r0,202r86,0r0,46r-135,0","w":174},"B":{"d":"144,-176v0,-33,-35,-29,-68,-28r0,58v33,1,68,5,68,-30xm149,-74v0,-34,-39,-29,-73,-29r0,59v35,0,73,6,73,-30xm200,-70v2,83,-92,70,-173,70r0,-248v75,1,168,-15,168,63v0,31,-8,47,-27,58v22,10,31,25,32,57","w":217},"D":{"d":"107,-46v47,2,50,-38,51,-83v1,-44,-7,-75,-51,-74r-31,0r0,157r31,0xm209,-129v0,81,-20,132,-102,129r-80,0r0,-248r80,0v78,-2,102,41,102,119","w":225},"P":{"d":"150,-162v0,-41,-32,-44,-73,-41r0,87v43,4,73,-3,73,-46xm201,-162v0,70,-47,99,-124,91r0,71r-50,0r0,-248r86,0v56,0,88,29,88,86","w":213},"b":{"d":"133,-92v0,-41,-21,-58,-59,-45r0,98v41,7,59,-11,59,-53xm94,4v-25,1,-45,-3,-68,-4r0,-252r48,0r0,76v60,-24,108,11,108,84v0,65,-25,97,-88,96","w":196},"v":{"d":"55,-180r29,141r6,0r31,-141r49,0r-44,180r-78,0r-43,-180r50,0","w":174},"x":{"d":"57,-180r27,56r27,-56r52,0r-50,90r50,90r-52,0r-27,-55r-27,55r-52,0r49,-90r-49,-90r52,0","w":168},"6":{"d":"133,-75v0,-39,-45,-36,-73,-27v1,32,8,59,39,61v22,0,34,-11,34,-34xm107,-242v25,0,48,5,69,8r-4,44v-50,-8,-118,-17,-111,50v52,-27,123,-7,123,65v0,54,-31,79,-85,79v-66,-1,-89,-50,-89,-122v0,-76,25,-123,97,-124"},"9":{"d":"58,-162v-2,38,44,35,73,27v0,-31,-8,-62,-38,-62v-21,0,-34,14,-35,35xm85,4v-25,0,-48,-4,-70,-8r4,-42v52,6,116,15,112,-49v-55,21,-128,2,-124,-67v3,-52,32,-80,85,-80v66,0,90,48,90,122v0,76,-24,124,-97,124"},"<":{"d":"77,-104r78,41r0,50r-125,-65r0,-51r125,-65r0,50"},">":{"d":"33,-144r0,-50r125,65r0,51r-125,65r0,-50r78,-41"},"[":{"d":"101,-222r-41,0r0,219r41,0r0,47r-91,0r0,-314r91,0r0,48","w":108},"\\":{"d":"123,0r-111,-253r51,0r110,253r-50,0"},"]":{"d":"8,-270r91,0r0,314r-91,0r0,-47r41,0r0,-219r-41,0r0,-48","w":108},"|":{"d":"69,-270r49,0r0,360r-49,0r0,-360"},"4":{"d":"108,-39r-99,0r0,-39r60,-160r54,0r-58,153r43,0r0,-62r50,0r0,62r22,0r0,46r-22,0r0,43r-50,0r0,-43"},"\"":{"d":"13,-158r-1,-90r46,0r-1,90r-44,0xm77,-158r-1,-90r46,0r-1,90r-44,0","w":127},"'":{"d":"-7,-248r46,0r-2,90r-43,0","w":36},"(":{"d":"37,45v-45,-84,-42,-229,0,-315r52,0v-16,48,-34,101,-34,162v0,59,18,108,34,153r-52,0","w":93},")":{"d":"86,-118v0,62,-18,113,-35,161r-52,0v14,-48,34,-101,34,-161v0,-58,-20,-108,-34,-154r52,0v16,45,35,95,35,154","w":93},",":{"d":"17,-49r51,0r-22,93r-48,0","w":61},"-":{"d":"25,-120r108,0r0,45r-108,0r0,-45","w":158},".":{"d":"16,-60r52,0r0,60r-52,0r0,-60","w":89},"\/":{"d":"122,-259r46,16r-102,252r-46,-16"},":":{"d":"13,-60r51,0r0,60r-51,0r0,-60xm13,-164r51,0r0,60r-51,0r0,-60","w":82},";":{"d":"20,-164r52,0r0,60r-52,0r0,-60xm24,-57r52,0r-30,98r-45,0","w":86},"=":{"d":"18,-81r154,0r0,47r-154,0r0,-47xm18,-158r154,0r0,47r-154,0r0,-47"},"?":{"d":"36,-56r52,0r0,56r-52,0r0,-56xm2,-243v55,-22,142,-24,142,57v0,57,-56,58,-56,110r-49,0v-20,-59,58,-64,51,-115v-4,-28,-59,-11,-82,-9","w":138},"_":{"d":"181,31r0,44r-171,0r0,-44r171,0"},"{":{"d":"59,-113v40,7,37,49,33,93v-1,17,9,20,26,21r0,47v-68,2,-86,-36,-76,-105v-1,-22,-10,-29,-33,-36r0,-40v70,-1,-8,-124,74,-137v10,-2,22,-4,35,-4r0,48v-37,-6,-24,34,-23,65v1,29,-14,41,-36,48","w":122},"}":{"d":"63,-111v-40,-8,-36,-48,-33,-93v1,-17,-9,-20,-26,-21r0,-48v68,-1,76,36,76,106v0,22,10,29,33,35r0,41v-70,1,8,124,-74,137v-10,2,-22,4,-35,4r0,-48v36,4,25,-35,23,-65v-2,-29,14,-41,36,-48","w":122},"&":{"d":"116,-212v-38,0,-22,52,-3,63v15,-13,28,-18,28,-40v0,-15,-9,-23,-25,-23xm61,-75v-1,42,57,40,85,23r-55,-60v-14,5,-30,20,-30,37xm43,-198v0,-40,33,-58,73,-58v44,0,74,19,74,62v0,41,-26,54,-49,74r30,30v3,-14,8,-27,9,-42r47,1r-19,70r36,34r-29,32r-33,-28v-46,44,-170,40,-170,-52v0,-38,25,-55,50,-69v-12,-15,-19,-29,-19,-54","w":252},"*":{"d":"117,-172r14,39r-33,10r-14,-40r-34,27r-20,-27r35,-26r-34,-24r20,-29r33,24r14,-40r33,12r-14,39r42,0r0,35r-42,0"},"%":{"d":"147,-76v-13,0,-12,47,0,47v12,-2,12,-45,0,-47xm147,0v-31,0,-43,-20,-43,-53v0,-33,13,-52,43,-52v30,0,43,19,43,52v0,33,-12,53,-43,53xm45,-148v-30,0,-43,-19,-43,-52v0,-33,13,-52,43,-52v31,0,44,20,44,52v0,32,-13,51,-44,52xm124,-259r31,11r-89,257r-31,-11xm45,-176v12,-1,13,-45,0,-48v-12,3,-11,45,0,48"},"+":{"d":"13,-123r59,0r0,-61r49,0r0,61r59,0r0,47r-59,0r0,61r-49,0r0,-61r-59,0r0,-47"},"^":{"d":"96,-190r-41,77r-50,0r65,-125r51,0r65,125r-51,0"}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Generated in 2009 by FontLab Studio. Copyright info pending.
 */
Cufon.registerFont({"w":190,"face":{"font-family":"TitilliumMaps26L","font-weight":550,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-10 -284 337.058 90","underline-thickness":"10.8","underline-position":"-25.2","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":84},"\u00a0":{"w":84},"C":{"d":"113,-26v22,0,43,-4,62,-6r1,29v-22,2,-43,7,-67,7v-74,1,-91,-54,-90,-129v0,-75,15,-130,90,-129v25,0,47,4,67,8r-1,28r-62,-6v-56,-1,-61,43,-61,99v0,56,5,100,61,99","w":191},"c":{"d":"20,-93v0,-79,50,-103,121,-86r-1,26v-53,-9,-95,0,-89,60v-7,59,31,79,90,66r1,26v-13,3,-33,4,-49,5v-58,0,-73,-38,-73,-97","w":156},"d":{"d":"50,-89v0,35,7,65,39,65v17,-1,31,-7,45,-11r0,-118r-38,-4v-36,1,-45,29,-46,68xm20,-90v0,-75,42,-107,114,-89r0,-78r30,0r0,257r-30,0r0,-10v-14,7,-30,14,-50,14v-51,0,-64,-41,-64,-94","w":195},"e":{"d":"134,-101v8,-52,-44,-73,-73,-43v-8,9,-12,24,-12,43r85,0xm50,-77v-7,59,53,59,108,51r0,23v-19,4,-43,7,-67,7v-55,0,-72,-37,-72,-93v0,-58,22,-94,74,-95v59,-2,78,47,70,107r-113,0","w":182},"f":{"d":"114,-233v-43,-6,-57,8,-52,53r50,0r0,27r-50,0r0,153r-31,0r0,-153r-21,0r0,-27r21,0v-7,-65,23,-91,84,-78","w":120},"g":{"d":"51,-122v-1,25,12,36,35,37v24,0,39,-12,39,-37v0,-24,-13,-36,-38,-36v-23,1,-36,12,-36,36xm144,26v2,-38,-42,-22,-78,-28v-31,19,-19,61,29,61v29,0,48,-8,49,-33xm175,25v-2,45,-33,61,-80,61v-46,0,-77,-11,-77,-55v0,-24,14,-34,28,-45v-18,-11,-9,-41,2,-54v-15,-10,-28,-26,-28,-54v0,-53,50,-71,100,-57r55,-1r0,25r-31,0v31,46,-9,111,-73,93v-8,11,-12,36,11,35v50,-2,96,1,93,52","w":187},"h":{"d":"142,-94v10,-57,-33,-75,-80,-52r0,146r-31,0r0,-257r31,0r0,85v15,-5,30,-11,50,-12v83,-2,56,107,61,184r-31,0r0,-94","w":203},"i":{"d":"28,-250r31,0r0,34r-31,0r0,-34xm28,-180r31,0r0,180r-31,0r0,-180","w":86},"j":{"d":"32,-250r30,0r0,34r-30,0r0,-34xm-10,58v24,-14,42,-21,42,-60r0,-178r30,0r-2,208v-7,31,-30,41,-56,56","w":90},"k":{"d":"33,0r0,-257r30,0r0,149r23,-1r50,-71r35,0r-57,84r58,96r-34,0r-51,-80r-24,2r0,78r-30,0","w":180},"l":{"d":"29,-257r30,0r0,257r-30,0r0,-257","w":88},"m":{"d":"108,-156v-17,0,-31,8,-43,13r0,143r-30,0r0,-180r30,0r0,12v23,-17,74,-23,93,1v20,-6,39,-16,63,-17v83,-1,57,106,61,184r-31,0r0,-93v11,-61,-37,-76,-82,-50v10,39,3,96,5,143r-30,0v-6,-57,22,-156,-36,-156","w":309},"A":{"d":"67,-89r83,0r-34,-133r-14,0xm78,-250r62,0r66,250r-31,0r-18,-60r-97,0r-17,60r-31,0","w":217},"p":{"d":"146,-93v-1,-34,-9,-63,-39,-63v-18,0,-31,8,-44,13r0,117v8,1,23,4,35,3v40,0,48,-28,48,-70xm177,-92v0,76,-44,109,-114,92r0,79r-30,0r0,-259r30,0r0,12v13,-8,29,-16,49,-16v48,0,65,37,65,92","w":195},"q":{"d":"91,-23v16,0,29,-4,42,-9r0,-123r-33,-2v-40,0,-50,30,-50,69v0,34,7,65,41,65xm133,-5v-11,6,-25,9,-43,9v-54,0,-70,-36,-70,-91v0,-77,42,-108,119,-94v8,1,16,1,24,1r0,260r-30,0r0,-85","w":194},"r":{"d":"118,-152v-21,6,-42,13,-58,23r0,129r-30,0r0,-180r30,0r0,23v16,-12,35,-21,58,-27r0,32","w":128},"s":{"d":"25,-108v-28,-75,66,-87,124,-68r-1,25v-36,-3,-105,-21,-94,29v24,31,101,2,101,69v0,68,-78,60,-132,50r1,-26v38,2,109,24,99,-33v-21,-25,-85,-10,-98,-46","w":176},"u":{"d":"95,-23v18,0,33,-7,45,-13r0,-144r30,0r0,180r-30,0r0,-11v-14,8,-30,14,-50,15v-84,3,-54,-107,-60,-184r30,0r0,94v1,34,2,63,35,63","w":201},"w":{"d":"40,-180r33,153r9,0r38,-149r32,0r38,149r8,0r34,-153r30,0r-41,180r-52,0r-33,-136r-34,136r-52,0r-40,-180r30,0","w":271},"y":{"d":"40,-180r41,151r11,0r42,-151r30,0r-72,259r-30,0r22,-79r-26,0r-49,-180r31,0","w":173},"z":{"d":"21,-180r130,0r0,27r-94,126r94,0r0,27r-129,0r-1,-27r95,-126r-95,0r0,-27","w":172},"Z":{"d":"23,-250r159,0r0,36r-121,178r0,7r121,0r0,29r-159,0r0,-35r121,-179r0,-7r-121,0r0,-29","w":205},"0":{"d":"148,-116v0,-52,-3,-96,-53,-96v-50,0,-53,46,-53,97v0,49,6,90,53,90v48,0,53,-41,53,-91xm9,-116v0,-73,17,-126,86,-126v70,0,86,54,86,127v1,71,-18,119,-86,119v-67,0,-86,-49,-86,-120"},"1":{"d":"97,-238r29,0r0,238r-31,0r0,-202r-58,40r-14,-25"},"2":{"d":"20,-232v67,-21,171,-12,142,81v-17,55,-68,82,-103,121r112,0r0,30r-153,0r0,-28v37,-42,89,-73,112,-126v14,-33,-7,-61,-45,-58v-21,1,-44,4,-63,8"},"3":{"d":"135,-175v3,-52,-68,-36,-110,-31r-3,-27v66,-18,170,-13,141,76v-5,16,-17,24,-29,31v25,8,39,25,39,58v0,79,-84,80,-154,64r3,-28v41,7,118,20,118,-35v0,-47,-46,-41,-91,-41r0,-28v43,2,84,1,86,-39"},"5":{"d":"143,-77v0,-52,-64,-50,-96,-31r-25,-5r7,-125r137,0r0,30r-108,0r-7,71v51,-24,124,-12,124,59v0,84,-84,94,-157,71r4,-27v48,11,121,21,121,-43"},"7":{"d":"20,-238r145,0r0,42r-90,201r-29,-9r86,-193r0,-11r-112,0r0,-30"},"8":{"d":"148,-175v0,-29,-21,-38,-51,-38v-30,0,-51,8,-51,38v0,33,29,42,67,39v19,-7,34,-15,35,-39xm42,-66v-1,32,24,42,54,42v33,0,56,-11,56,-44v0,-37,-33,-43,-74,-41v-22,7,-35,17,-36,43xm13,-180v2,-45,36,-62,83,-62v47,0,84,17,85,63v0,33,-15,44,-37,55v23,10,42,25,41,58v-1,51,-37,71,-89,70v-50,0,-86,-17,-87,-66v-1,-35,17,-50,39,-62v-22,-12,-35,-24,-35,-56"},"E":{"d":"33,-250r149,0r0,29r-118,0r0,81r96,0r0,28r-96,0r0,83r118,0r0,29r-149,0r0,-250","w":202},"F":{"d":"33,-250r149,0r0,29r-118,0r0,94r96,0r0,29r-96,0r0,98r-31,0r0,-250","w":198},"G":{"d":"52,-125v-4,77,33,114,112,95r0,-73r-38,0r0,-27r69,0r0,126v-25,4,-52,8,-80,8v-75,0,-95,-52,-95,-129v0,-76,20,-129,94,-129v30,0,55,5,81,9r-2,28v-23,-4,-49,-7,-75,-7v-57,-1,-63,42,-66,99","w":218},"H":{"d":"181,-112r-117,0r0,112r-31,0r0,-250r31,0r0,109r117,0r0,-109r31,0r0,250r-31,0r0,-112","w":244},"K":{"d":"100,-109r-36,2r0,107r-31,0r0,-250r31,0r0,115r36,-2r59,-113r37,0r-69,125r72,125r-37,0","w":213},"Q":{"d":"52,-123v0,56,10,98,65,98v56,1,65,-42,65,-98v0,-56,-9,-102,-65,-102v-56,0,-65,46,-65,102xm214,-123v0,53,-7,94,-39,113r27,49r-28,14r-29,-52v-89,17,-125,-36,-125,-124v0,-78,20,-131,97,-131v77,0,98,53,97,131","w":234},"R":{"d":"64,-121v54,2,106,5,106,-51v0,-55,-53,-50,-106,-49r0,100xm202,-173v0,39,-15,63,-44,73r46,100r-34,0r-43,-93r-63,0r0,93r-31,0r0,-250v83,0,169,-12,169,77","w":223},"S":{"d":"19,-186v0,-76,89,-74,153,-61r-2,27v-51,-5,-137,-19,-116,51v27,45,124,16,124,97v0,86,-88,82,-156,68r2,-27v52,8,141,17,120,-55v-31,-43,-125,-18,-125,-100","w":191},"T":{"d":"3,-250r170,0r0,30r-69,0r0,220r-31,0r0,-220r-70,0r0,-30","w":176},"V":{"d":"203,-250r-63,250r-65,0r-63,-250r32,0r55,222r17,0r54,-222r33,0","w":214},"N":{"d":"33,-250r56,0r90,218r6,0r0,-218r32,0r0,250r-55,0r-91,-218r-7,0r0,218r-31,0r0,-250","w":249},"$":{"d":"106,-213v-49,-12,-75,48,-32,68v5,2,11,4,19,6xm90,-25v47,9,69,-34,46,-68v-8,-7,-20,-9,-32,-13xm177,-68v0,58,-35,75,-92,71r-7,40r-16,-2r6,-39r-45,-6r2,-27v17,0,32,4,48,5r15,-84v-39,-8,-68,-19,-68,-68v0,-53,43,-66,91,-63r7,-43r17,0r-8,44r44,4r-1,29r-48,-5r-13,77v38,10,68,17,68,67"},"!":{"d":"56,-252r33,0r-1,167r-31,0xm56,-44r33,0r0,44r-33,0r0,-44","w":142},"a":{"d":"51,-53v0,41,49,32,75,21r0,-55v-32,4,-75,-5,-75,34xm29,-176v53,-11,135,-21,127,51v5,36,-16,99,21,103r-2,26v-21,-1,-33,-4,-44,-14v-40,23,-111,19,-111,-42v0,-56,56,-55,106,-59v11,-58,-49,-45,-96,-40","w":188},"o":{"d":"50,-92v0,39,4,69,45,69v39,0,45,-30,45,-68v0,-39,-8,-66,-45,-66v-39,0,-45,25,-45,65xm19,-92v0,-58,21,-92,76,-92v56,0,77,36,76,93v0,57,-18,96,-76,95v-58,0,-76,-36,-76,-96"},"J":{"d":"13,-2v28,1,38,-12,37,-40r0,-208r31,0r0,210v3,49,-19,68,-68,66r0,-28","w":111},"t":{"d":"118,0v-52,13,-84,-6,-84,-62r0,-91r-24,0r0,-27r24,0r0,-54r30,0r0,54r52,0r0,27r-52,0r0,83v-3,42,13,52,53,45","w":129},"n":{"d":"144,-93v11,-59,-36,-77,-81,-51r0,144r-30,0r0,-180r30,0r0,12v14,-8,31,-15,51,-16v83,-3,56,107,61,184r-31,0r0,-93","w":204},"#":{"d":"121,-149r-52,0r0,59r52,0r0,-59xm149,-64r0,64r-28,0r0,-64r-52,0r0,64r-28,0r0,-64r-38,0r0,-26r38,0r0,-59r-38,0r0,-26r38,0r0,-64r28,0r0,64r52,0r0,-64r28,0r0,64r39,0r0,26r-39,0r0,59r39,0r0,26r-39,0"},"W":{"d":"46,-250r44,222r10,0r45,-219r36,0r47,219r9,0r43,-222r32,0r-51,250r-56,0r-42,-205r-41,205r-56,0r-52,-250r32,0","w":326},"@":{"d":"135,-87v-6,62,43,72,85,47v-6,-30,-2,-72,-3,-108v-11,-2,-23,-6,-35,-6v-41,-1,-43,27,-47,67xm181,-261v108,0,158,50,156,157v-1,60,-7,108,-64,108v-22,0,-35,-3,-43,-19v-17,7,-38,17,-62,18v-50,0,-64,-36,-64,-90v0,-58,14,-97,72,-96v16,0,29,4,41,9r0,-6r30,0r0,72v3,39,-10,83,26,83v38,0,31,-44,33,-85v4,-85,-40,-121,-125,-121v-90,0,-132,45,-132,137v0,116,67,151,184,135r1,29r-53,3v-116,4,-163,-53,-163,-167v0,-112,54,-166,163,-167","w":354},"`":{"d":"135,-237r-10,25r-82,-31r11,-28","w":196},"M":{"d":"33,-250r53,0r67,207r67,-207r53,0r0,250r-31,0r0,-215r-5,0r-67,206r-34,0r-67,-206r-5,0r0,215r-31,0r0,-250","w":305},"U":{"d":"115,3v-58,0,-86,-23,-86,-80r0,-173r31,0r0,173v0,36,19,51,55,51v37,0,57,-15,57,-51r0,-173r31,0r0,173v-1,57,-29,80,-88,80","w":231},"X":{"d":"105,-147r57,-103r35,0r-72,126r72,124r-35,0r-57,-102r-58,102r-35,0r73,-124r-73,-126r35,0","w":209},"Y":{"d":"116,0r-31,0r0,-107r-77,-143r35,0r57,110r57,-110r35,0r-76,143r0,107","w":199},"I":{"d":"30,-250r31,0r0,250r-31,0r0,-250","w":90},"O":{"d":"214,-123v0,78,-20,127,-97,127v-76,0,-97,-51,-97,-127v0,-77,21,-131,97,-131v76,0,97,53,97,131xm52,-123v0,57,10,98,65,98v55,0,65,-40,65,-98v0,-57,-9,-102,-65,-102v-56,0,-65,45,-65,102","w":234},"~":{"d":"23,-118v24,-32,74,-12,107,-2v15,-1,25,-9,35,-16r3,29v-24,32,-74,10,-106,1v-15,2,-27,9,-36,17"},"L":{"d":"33,0r0,-250r31,0r0,221r102,0r0,29r-133,0","w":182},"B":{"d":"163,-184v0,-45,-54,-38,-99,-38r0,82v49,1,99,6,99,-44xm170,-72v0,-49,-58,-41,-106,-41r0,85v50,0,106,8,106,-44xm202,-70v0,83,-89,70,-169,70r0,-250v73,1,164,-13,162,62v0,32,-10,48,-31,59v23,9,38,26,38,59","w":221},"D":{"d":"118,-29v51,-1,61,-49,61,-100v0,-49,-11,-92,-61,-92r-54,0r0,192r54,0xm211,-129v0,73,-20,129,-93,129r-85,0r0,-250r85,0v71,0,94,49,93,121","w":230},"P":{"d":"169,-169v4,-57,-50,-54,-105,-52r0,110r56,0v36,0,47,-24,49,-58xm201,-169v0,52,-28,87,-81,87r-56,0r0,82r-31,0r0,-250r87,0v54,-1,81,27,81,81","w":217},"b":{"d":"108,-156v-18,0,-32,4,-45,8r0,124v57,8,86,-14,83,-69v-2,-33,-7,-63,-38,-63xm63,-173v14,-5,29,-11,48,-11v51,1,63,38,66,91v5,87,-57,108,-144,93r0,-257r30,0r0,84","w":195},"v":{"d":"41,-180r40,155r11,0r41,-155r31,0r-49,180r-57,0r-49,-180r32,0","w":173},"x":{"d":"43,-180r40,68r40,-68r33,0r-54,90r54,90r-34,0r-39,-68r-39,68r-34,0r54,-90r-54,-90r33,0","w":165},"6":{"d":"147,-76v0,-55,-67,-49,-102,-33v1,44,10,82,52,84v32,1,50,-18,50,-51xm13,-120v0,-102,61,-140,157,-114r-3,27v-35,-5,-86,-13,-106,13v-10,12,-16,32,-16,59v53,-26,135,-16,135,59v0,51,-32,81,-83,80v-63,-1,-84,-53,-84,-124"},"9":{"d":"45,-163v-3,56,64,50,103,36v0,-46,-13,-85,-54,-86v-30,0,-47,20,-49,50xm179,-118v0,103,-61,141,-158,114r3,-27v37,4,87,15,107,-13v9,-13,16,-31,16,-57v-56,24,-139,13,-134,-62v3,-51,32,-79,81,-79v64,0,85,53,85,124"},"<":{"d":"61,-107r92,58r0,32r-122,-73r0,-32r122,-72r0,32"},">":{"d":"37,-162r0,-32r121,72r0,32r-121,73r0,-32r92,-58"},"[":{"d":"92,-240r-47,0r0,255r47,0r0,29r-78,0r0,-314r78,0r0,30","w":108},"\\":{"d":"133,0r-110,-250r32,-2r109,249"},"]":{"d":"13,-270r78,0r0,314r-78,0r0,-29r47,0r0,-255r-47,0r0,-30","w":108},"|":{"d":"78,-270r31,0r0,360r-31,0r0,-360"},"4":{"d":"120,-43r-110,0r0,-25r70,-170r33,0r-67,166r74,0r0,-74r31,0r0,74r28,0r0,29r-28,0r0,45r-31,0r0,-45"},"\"":{"d":"15,-164r0,-86r30,0r-1,86r-29,0xm74,-164r-1,-86r30,0r-1,86r-28,0","w":114},"'":{"d":"2,-250r30,0r-1,83r-28,0","w":36},"(":{"d":"46,45v-45,-84,-42,-229,0,-315r32,0v-16,47,-34,102,-34,162v0,57,17,109,34,153r-32,0","w":93},")":{"d":"77,-118v0,62,-18,113,-35,161r-33,0v15,-47,35,-101,35,-161v0,-58,-20,-109,-35,-154r33,0v16,45,35,95,35,154","w":93},",":{"d":"24,-40r33,0r-20,84r-30,0","w":61},"-":{"d":"25,-112r108,0r0,29r-108,0r0,-29","w":158},".":{"d":"26,-44r33,0r0,44r-33,0r0,-44","w":89},"\/":{"d":"130,-256r29,10r-100,251r-29,-11"},":":{"d":"20,-44r33,0r0,44r-33,0r0,-44xm20,-158r33,0r0,44r-33,0r0,-44","w":66},";":{"d":"23,-158r34,0r0,44r-34,0r0,-44xm26,-44r33,0r-24,86r-28,0","w":73},"=":{"d":"21,-80r149,0r0,30r-149,0r0,-30xm21,-148r149,0r0,30r-149,0r0,-30"},"?":{"d":"43,-42r33,0r0,42r-33,0r0,-42xm5,-245v53,-16,138,-22,133,53v-4,58,-64,59,-62,120r-31,0v-11,-62,53,-67,60,-117v7,-51,-62,-34,-97,-28","w":138},"_":{"d":"181,31r0,28r-171,0r0,-28r171,0"},"{":{"d":"36,-112v38,5,38,50,34,93v-2,27,13,35,38,36r0,29v-67,3,-68,-41,-68,-106v0,-25,-12,-32,-36,-39r0,-26v82,-5,-24,-153,104,-147r0,29v-45,-4,-39,39,-36,81v2,31,-14,42,-36,50","w":112},"}":{"d":"74,-112v-37,-6,-38,-49,-34,-93v3,-27,-13,-35,-38,-36r0,-30v66,-3,77,43,68,107v2,25,12,32,36,39r0,26v-66,1,-11,103,-50,131v-12,8,-29,15,-54,16r0,-30v45,4,38,-38,36,-80v-2,-30,13,-44,36,-50","w":112},"&":{"d":"116,-225v-40,0,-41,53,-17,71r9,9v21,-10,42,-19,42,-48v0,-21,-10,-32,-34,-32xm47,-75v0,62,90,65,113,22r-70,-72v-23,8,-43,22,-43,50xm71,-145v-35,-35,-19,-108,45,-108v40,0,64,19,64,57v0,42,-25,55,-53,70r48,48v4,-14,8,-30,10,-47r30,0v-3,22,-10,50,-17,67r44,41r-19,21r-40,-37v-21,24,-42,36,-83,37v-55,0,-83,-28,-84,-79v0,-39,25,-58,55,-70","w":252},"*":{"d":"112,-180r15,45r-22,7r-15,-45r-39,29r-14,-18r40,-29r-39,-28r14,-19r38,27r15,-44r22,7r-15,45r47,0r0,23r-47,0"},"%":{"d":"148,-81v-15,1,-16,14,-16,30v0,17,2,31,16,31v15,0,17,-14,17,-31v0,-17,-2,-30,-17,-30xm148,0v-28,0,-40,-19,-40,-51v0,-31,12,-50,40,-50v28,0,40,18,40,50v0,32,-12,51,-40,51xm47,-151v-27,0,-40,-18,-40,-51v0,-32,12,-50,40,-50v27,0,40,19,40,50v0,32,-13,51,-40,51xm121,-256r22,7r-71,253r-21,-6xm63,-202v0,-17,-1,-30,-16,-30v-15,0,-16,13,-16,30v0,18,1,31,16,31v15,0,16,-13,16,-31"},"+":{"d":"16,-119r64,0r0,-64r32,0r0,64r63,0r0,30r-63,0r0,65r-32,0r0,-65r-64,0r0,-30"},"^":{"d":"95,-207r-47,91r-33,0r63,-122r32,0r65,122r-32,0"}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Generated in 2009 by FontLab Studio. Copyright info pending.
 */
Cufon.registerFont({"w":190,"face":{"font-family":"TitilliumTitle01250","font-weight":250,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"2","bbox":"-17 -284 275.241 86.2213","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007C"},"glyphs":{" ":{"w":84},"\u00a0":{"w":84},"\"":{"d":"69,-252r13,0r0,72r-13,0r0,-72xm19,-252r12,0r0,72r-12,0r0,-72","w":100},"$":{"d":"105,-284r12,0r-42,327r-13,-2xm14,-182v0,-74,88,-62,148,-54r-1,12v-53,-2,-133,-22,-133,41v0,89,141,21,141,118v0,79,-85,71,-154,62r2,-13v67,10,167,13,134,-73v-19,-51,-137,-2,-137,-93","w":183},"%":{"d":"175,-86v-21,0,-26,14,-26,36v0,22,4,38,26,38v23,0,26,-17,26,-38v0,-22,-4,-36,-26,-36xm137,-50v0,-32,9,-48,38,-48v29,0,38,16,38,48v0,32,-9,50,-38,50v-29,0,-38,-18,-38,-50xm74,-241v-21,0,-26,14,-26,36v0,23,3,40,26,39v22,0,25,-16,25,-38v0,-23,-3,-37,-25,-37xm36,-205v0,-32,9,-48,38,-48v30,0,38,17,38,49v-1,30,-10,49,-38,49v-29,0,-38,-18,-38,-50xm144,-252r13,2r-52,250r-13,-2","w":246},"&":{"d":"21,-69v0,78,99,73,126,28r-75,-95v-28,14,-51,27,-51,67xm63,-147v-42,-37,-18,-124,59,-99v5,1,9,2,14,2r0,11v-46,-13,-104,9,-73,61v25,42,63,82,93,122v15,-19,24,-43,29,-73r12,2v-5,33,-15,58,-33,80v13,14,23,26,47,31r-3,11v-30,-4,-38,-15,-52,-32v-20,21,-38,34,-81,34v-50,0,-69,-22,-68,-72v1,-45,27,-60,56,-78","w":225},"'":{"d":"11,-251r14,0r-2,75r-11,0","w":36},"(":{"d":"20,-108v0,-57,19,-102,35,-148r13,0v-14,47,-34,89,-34,148v0,60,20,103,34,151r-13,0v-16,-49,-35,-92,-35,-151","w":93},")":{"d":"51,-202v32,80,9,177,-17,245r-12,0v24,-69,47,-163,17,-245v-6,-18,-11,-36,-17,-54r12,0v6,18,10,37,17,54","w":93},"+":{"d":"66,-180r13,0r0,180r-13,0r0,-180xm-17,-96r180,0r0,12r-180,0r0,-12","w":147},",":{"d":"15,24v-3,-17,15,-12,15,-25r0,-33r13,0v2,29,1,56,-28,58","w":61},"-":{"d":"22,-100r115,0r0,12r-115,0r0,-12","w":158},".":{"d":"28,-29r14,0r0,29r-14,0r0,-29","w":50},"\/":{"d":"193,-253r12,5r-100,248r-12,-4","w":299},"0":{"d":"167,-82v0,-76,4,-147,-72,-147v-76,0,-71,72,-71,147v0,47,27,73,71,73v44,0,72,-27,72,-73xm11,-82v-3,-85,-1,-159,84,-159v83,0,89,74,85,159v-2,55,-29,85,-85,85v-55,0,-82,-30,-84,-85"},"2":{"d":"25,-233v64,-13,146,-16,140,64v-3,38,-19,57,-39,76r-87,80r137,0r0,13r-154,0r0,-13v39,-39,88,-71,119,-117v30,-44,2,-115,-65,-98r-50,7"},"3":{"d":"151,-177v0,-69,-75,-52,-128,-44r-1,-12v59,-10,152,-25,143,57v-3,31,-16,40,-40,49v34,6,49,27,47,71v-3,70,-92,63,-153,51r2,-12v56,10,137,23,137,-55v0,-54,-55,-48,-107,-48r0,-12v49,2,100,1,100,-45"},"4":{"d":"128,-50r-118,0r0,-23r68,-168r14,0r-69,170r0,9r105,0r0,-67r13,0r0,67r33,0r0,12r-33,0r0,57r-13,0r0,-57"},"5":{"d":"157,-88v-7,-59,-78,-47,-122,-34r-10,-1r6,-115r132,0r0,13r-119,0r-7,91v50,-17,133,-21,133,46v0,95,-71,101,-147,82r1,-12v64,11,144,21,133,-70"},"6":{"d":"96,-9v48,0,63,-26,63,-76v0,-62,-89,-55,-128,-33v-3,63,4,109,65,109xm17,-155v0,-85,74,-94,149,-80r-1,12v-66,-12,-140,-8,-134,68r0,24v55,-26,154,-27,142,65v-6,46,-29,67,-77,69v-84,4,-79,-76,-79,-158"},"7":{"d":"23,-241r145,0r0,24r-95,217r-13,-5r94,-215r0,-9r-131,0r0,-12"},"8":{"d":"164,-178v1,-42,-27,-51,-69,-51v-41,0,-68,9,-68,50v0,53,43,52,93,49v30,-2,43,-15,44,-48xm23,-63v0,43,29,54,72,54v43,0,73,-11,73,-54v0,-58,-47,-59,-102,-55v-31,2,-43,19,-43,55xm13,-179v1,-45,29,-63,82,-62v50,0,83,13,83,62v0,32,-12,46,-35,54v26,9,39,25,39,62v0,52,-36,66,-87,66v-52,1,-85,-16,-86,-66v-1,-37,13,-53,38,-62v-21,-8,-35,-23,-34,-54"},":":{"d":"28,-29r14,0r0,29r-14,0r0,-29xm28,-153r14,0r0,29r-14,0r0,-29","w":50},";":{"d":"29,-153r13,0r0,29r-13,0r0,-29xm15,24v26,0,31,-28,28,-58r-13,0v0,21,3,45,-15,48r0,10","w":61},"<":{"d":"126,-187r-113,74r113,78r0,15r-126,-86r0,-13r126,-82r0,14","w":126},"=":{"d":"72,-75r182,0r0,12r-182,0r0,-12xm72,-136r181,0r0,13r-181,0r0,-13","w":299},">":{"d":"0,-187r0,-14r126,82v1,28,-28,26,-45,44r-81,55r0,-15r113,-78","w":126},"?":{"d":"45,-29r14,0r0,29r-14,0r0,-29xm-1,-249v57,-10,127,-12,127,54v0,63,-73,55,-68,123r-12,0v-8,-69,62,-64,67,-123v5,-56,-66,-50,-113,-42","w":133},"A":{"d":"53,-90r111,0r-46,-150r-19,0xm89,-252r40,0r76,251r-13,0r-24,-76r-118,0r-24,77r-13,0","w":217},"[":{"d":"88,-258r-53,0r0,291r53,0r0,11r-65,0r-1,-314r66,0r0,12","w":108},"\\":{"d":"205,-4r-12,4r-100,-248r12,-5","w":299},"]":{"d":"21,-270r65,0r0,314r-65,0r0,-11r52,0r0,-291r-52,0r0,-12","w":108},"_":{"d":"169,12r0,12r-154,0r0,-12r154,0","w":187},"a":{"d":"40,-77v-17,30,-3,73,43,68r56,-6r0,-80v-33,6,-81,-3,-99,18xm139,-107v13,-69,-44,-70,-108,-61r0,-12r73,-3v70,2,43,102,48,169r27,5r-1,12v-35,-11,-73,-2,-111,0v-45,2,-60,-58,-36,-88v20,-25,70,-15,108,-22","w":184},"b":{"d":"115,-172v-23,2,-46,9,-66,16r0,144r65,4v48,-4,44,-64,43,-117v0,-29,-16,-44,-42,-47xm170,-125v3,70,-1,139,-76,128r-58,-4r0,-251r13,0r0,84v21,-5,41,-15,66,-15v34,0,54,23,55,58","w":192},"c":{"d":"140,0v-67,11,-117,-2,-117,-72v0,-77,18,-125,96,-109v6,0,13,1,21,1r0,12v-55,-10,-110,-3,-105,57v-10,78,23,119,105,99r0,12","w":158},"d":{"d":"78,-8v24,-4,46,-13,66,-24r0,-133r-66,-7v-50,2,-44,64,-43,117v1,27,16,45,43,47xm78,-183r66,6r0,-75r12,0r0,252r-12,0r0,-20v-21,11,-39,22,-66,23v-58,2,-55,-59,-55,-119v0,-39,18,-70,55,-67","w":192},"e":{"d":"89,-172v-40,1,-57,31,-54,75r110,0v3,-46,-12,-76,-56,-75xm35,-85v-7,72,44,88,117,73r0,12r-64,3v-63,2,-67,-53,-65,-117v1,-43,23,-68,66,-69v56,-2,75,38,69,98r-123,0","w":178},"f":{"d":"116,-254v-58,-9,-72,16,-66,74r58,0r0,12r-58,0r0,168r-13,0r0,-168r-24,0r0,-12r24,0v-6,-62,11,-97,79,-85r0,11","w":118},"g":{"d":"35,-123v0,34,19,47,56,47v30,0,43,-17,43,-47v0,-37,-19,-49,-57,-49v-29,0,-42,21,-42,49xm159,30v3,-52,-54,-35,-99,-42v-13,10,-28,19,-28,40v0,36,24,49,64,47v35,-2,61,-11,63,-45xm171,30v0,47,-41,58,-93,56v-37,-1,-58,-20,-58,-57v0,-27,16,-34,31,-46v-16,-11,-5,-38,2,-52v-46,-17,-40,-119,24,-114v34,3,60,7,95,3r0,13r-41,0v31,30,17,103,-39,103v-11,0,-20,0,-29,-2v-14,19,-12,49,23,45v49,-5,85,3,85,51","w":181},"h":{"d":"116,-172v-25,0,-46,12,-67,19r0,153r-13,0r0,-263r13,0r0,98v21,-7,42,-18,67,-18v78,0,50,109,55,183r-13,0v-6,-65,24,-172,-42,-172","w":203},"i":{"d":"32,-252r13,0r0,20r-13,0r0,-20xm32,-180r13,0r0,180r-13,0r0,-180","w":77},"j":{"d":"26,-252r13,0r0,20r-13,0r0,-20xm26,-180r13,0v-5,74,14,167,-17,218r-22,37r-11,-7v14,-27,37,-47,37,-87r0,-161","w":71},"m":{"d":"116,-172v-22,1,-50,12,-67,19r0,153r-13,0r0,-180r13,0r0,15v27,-12,83,-33,104,0v21,-6,41,-17,66,-18v79,0,50,109,55,183r-12,0v-3,-74,24,-200,-74,-165v-10,4,-22,7,-30,10v11,42,2,104,5,155r-12,0r0,-125v0,-25,-10,-48,-35,-47","w":309},"n":{"d":"158,0v-2,-76,24,-205,-78,-163v-11,5,-21,8,-31,13r0,150r-13,0r0,-180r13,0r0,18v19,-7,42,-21,67,-21v78,1,50,109,55,183r-13,0","w":205},"o":{"d":"35,-117v-3,62,-1,114,69,108v50,-4,48,-56,46,-108v-1,-39,-24,-58,-69,-54v-30,2,-44,25,-46,54xm163,-117v4,72,-3,119,-82,119v-58,0,-61,-57,-58,-119v2,-47,28,-70,81,-66v37,3,57,27,59,66","w":185},"p":{"d":"99,-9v71,11,62,-76,54,-135v-7,-17,-21,-26,-42,-28v-23,3,-44,13,-62,22r0,135xm115,3v-23,0,-44,-5,-66,-7r0,76r-13,0r0,-252r13,0r0,18v18,-9,37,-20,62,-21v59,-2,63,57,59,119v-1,37,-18,67,-55,67","w":192},"q":{"d":"35,-112v-3,56,-2,117,61,102r48,-14r0,-144r-66,-4v-30,3,-40,30,-43,60xm78,-183r78,4r0,251r-12,0r0,-84v-20,6,-42,15,-66,16v-56,2,-58,-57,-55,-117v2,-36,16,-72,55,-70","w":192},"r":{"d":"124,-171v-27,8,-53,22,-75,35r0,136r-13,0r0,-180r13,0r0,31v22,-14,47,-27,75,-34r0,12","w":131},"s":{"d":"38,-101v-34,-28,-7,-84,45,-82r64,3r0,12v-48,-4,-126,-15,-108,47v21,38,115,4,115,70v0,62,-72,58,-126,49r1,-12v44,5,111,18,111,-36v0,-44,-76,-30,-102,-51","w":176},"t":{"d":"115,0v-49,4,-73,-12,-73,-59r0,-109r-29,0r0,-12r29,0r0,-41r13,0r0,41r60,0r0,12r-60,0v9,65,-33,170,60,156r0,12","w":126},"v":{"d":"75,-12r18,0r49,-168r14,0r-53,180r-37,0r-53,-180r13,0","w":168},"w":{"d":"26,-180r41,168r19,0r46,-164r13,0r46,164r20,0r40,-168r13,0r-44,180r-39,0r-43,-157r-42,157r-39,0r-43,-180r12,0","w":277},"x":{"d":"6,-180r15,0r54,80r54,-80r14,0r-61,90r61,90r-14,0r-54,-80r-54,80r-15,0r61,-90","w":156},"y":{"d":"13,-180r12,0r53,168r9,0r53,-168r13,0r-82,263r-13,0r26,-83r-16,0","w":165},"z":{"d":"151,-12r0,12r-131,0r0,-11r116,-157r-116,0r0,-12r131,0r0,12r-116,156r116,0","w":170},"{":{"w":299},"l":{"d":"34,0r0,-252r13,0r0,252r-13,0","w":81},"u":{"d":"87,-8v24,0,48,-12,66,-19r0,-153r13,0r0,180r-13,0r0,-15v-18,6,-43,19,-66,19v-78,0,-50,-110,-55,-184r13,0v7,64,-25,172,42,172","w":201},"k":{"d":"36,0r0,-263r13,0r0,158r34,0r65,-75r15,0r-69,81r69,99r-15,0r-65,-93r-34,0r0,93r-13,0","w":174},"B":{"d":"184,-190v0,-63,-74,-49,-134,-50r0,104v62,-1,134,14,134,-54xm194,-71v0,-69,-80,-51,-144,-53r0,112v67,-1,144,14,144,-59xm208,-71v0,86,-91,71,-171,71r0,-252v73,1,165,-15,161,62v-1,32,-13,50,-36,59v27,8,46,24,46,60","w":229},"C":{"d":"112,-9v23,0,48,-4,69,-7r1,12v-22,3,-46,5,-70,7v-93,6,-83,-86,-83,-174v0,-82,75,-95,153,-77r-1,13v-22,-3,-44,-8,-69,-8v-80,0,-71,83,-70,160v0,48,22,74,70,74","w":198},"D":{"d":"50,-12v74,3,142,2,142,-72r0,-82v6,-79,-66,-77,-142,-74r0,228xm206,-166v0,87,3,170,-84,166r-85,0r0,-252r85,0v56,1,84,28,84,86","w":234},"E":{"d":"37,-252r147,0r0,13r-134,0r0,101r113,0r0,13r-113,0r0,112r134,0r0,13r-147,0r0,-252","w":205},"F":{"d":"37,-252r148,0r0,12r-135,0r0,112r113,0r0,12r-113,0r0,116r-13,0r0,-252","w":202},"G":{"d":"42,-83v-2,75,76,82,147,68r0,-98r-54,0r0,-12r67,0r0,120v-78,17,-178,12,-173,-78r0,-88v-2,-87,98,-93,173,-73r-1,12r-76,-11v-49,1,-83,25,-83,72r0,88","w":229},"H":{"d":"201,-120r-151,0r0,120r-13,0r0,-252r13,0r0,120r151,0r0,-120r12,0r0,252r-12,0r0,-120","w":250},"I":{"d":"34,-252r13,0r0,252r-13,0r0,-252","w":81},"K":{"d":"86,-118r-36,0r0,118r-13,0r0,-252r13,0r0,121r36,0r90,-121r15,0r-94,127r100,125r-17,0","w":214},"L":{"d":"41,0r0,-252r13,0r0,240r123,0r0,12r-136,0","w":181},"M":{"d":"37,-252r40,0r70,231r73,-231r40,0r0,252r-13,0r0,-240r-17,0r-74,233r-19,0r-70,-233r-17,0r0,240r-13,0r0,-252","w":297},"N":{"d":"37,-252v13,1,29,-2,40,1r109,239r18,0r0,-240r13,0r0,252v-13,-1,-29,2,-40,-1r-109,-239r-18,0r0,240r-13,0r0,-252","w":254},"O":{"d":"120,-243v-88,-6,-78,79,-77,160v1,52,24,75,77,74v52,0,79,-21,78,-74r0,-86v0,-52,-27,-71,-78,-74xm120,4v-60,0,-91,-27,-91,-87r0,-86v0,-60,30,-87,91,-86v60,0,92,26,92,86r0,86v0,60,-33,87,-92,87","w":241},"P":{"d":"50,-104v63,-1,139,14,139,-54v0,-51,-7,-82,-56,-82r-83,0r0,136xm202,-193v0,62,-11,101,-69,101r-83,0r0,92r-13,0r0,-252v72,2,165,-17,165,59","w":225},"Q":{"d":"120,-243v-88,-6,-78,79,-77,160v1,52,24,75,77,74v52,0,79,-21,78,-74r0,-86v0,-52,-27,-71,-78,-74xm120,4v-60,0,-91,-27,-91,-87r0,-86v0,-60,30,-87,91,-86v60,0,92,26,92,86r0,86v0,60,-33,87,-92,87xm153,-7r13,-6r35,57r-13,6","w":241},"R":{"d":"138,-108r12,-5r61,113r-14,0xm188,-166v4,-48,-12,-74,-57,-74r-81,0r0,124r81,0r0,12r-81,0r0,104r-13,0r0,-252v83,0,178,-17,164,86v-5,40,-27,62,-70,62r0,-12v35,0,54,-18,57,-50","w":230},"S":{"d":"19,-193v0,-75,85,-66,148,-57r-1,12v-54,-5,-133,-21,-133,45v0,90,141,25,141,120v0,85,-81,81,-153,70r1,-13v61,5,141,22,138,-56v-4,-86,-141,-21,-141,-121","w":192},"T":{"d":"0,-252r180,0r0,12r-83,0r0,240r-13,0r0,-240r-84,0r0,-12","w":180},"U":{"d":"145,-10v33,0,48,-27,48,-61r0,-181r13,0r0,181v2,60,-41,79,-106,73v-42,-4,-64,-28,-64,-73r0,-181r13,0r0,181v-1,54,39,61,96,61","w":242},"V":{"d":"126,0r-42,0r-71,-252r13,0r69,240r21,0r67,-240r13,0","w":208},"W":{"d":"140,-131r-53,131r-35,0r-34,-252r13,0r32,240r16,0r55,-134r0,-29r13,0r0,29r52,134r15,0r39,-240r13,0r-41,252r-34,0","w":284},"X":{"d":"105,-135r74,-117r16,0r-81,127r81,125r-16,0r-74,-116r-75,116r-16,0r82,-125r-82,-127r16,0","w":209},"Y":{"d":"104,0r-13,0r0,-116r-82,-136r15,0r74,125r72,-125r15,0r-81,136r0,116","w":194},"Z":{"d":"22,-252r162,0r0,25r-149,207r0,8r149,0r0,12r-162,0r0,-24r149,-206r0,-10r-149,0r0,-12","w":205},"J":{"d":"13,14v43,4,49,-13,49,-55r0,-211r13,0r0,214v2,48,-13,68,-62,64r0,-12","w":109},"`":{"d":"129,-211r-6,10r-69,-33r6,-12","w":196},"*":{"d":"104,-195r18,55r-11,3r-18,-55xm103,-189r-47,34r-7,-10r46,-34xm96,-189r-47,-33r8,-10r46,34xm94,-195r17,-54r12,3r-18,55xm99,-199r57,0r0,12r-57,0r0,-12"},"1":{"d":"106,-234r13,0r0,234r-13,0r0,-220r-67,45r-7,-10"},"9":{"d":"94,-229v-46,1,-63,25,-63,73v0,61,88,55,128,34v3,-62,-5,-109,-65,-107xm173,-83v0,85,-74,94,-149,80r1,-12v66,12,140,8,134,-68r0,-27v0,0,1,-1,-6,2v-52,25,-148,21,-136,-64v6,-45,29,-67,77,-69v83,-3,79,75,79,158"},"|":{"d":"145,-252r12,0r0,273r-12,0r0,-273","w":299},"#":{"d":"182,-161r-68,0r-2,81r68,0xm192,-68r-1,68r-13,0r1,-68r-67,0r-2,68r-13,0r2,-68r-44,0r1,-12r43,0r3,-81r-44,0r1,-12r43,0r2,-68r13,0r-2,68r68,0r1,-68r13,0r-1,68r43,0r-1,12r-43,0r-2,81r43,0r-1,12r-43,0","w":299}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Generated in 2009 by FontLab Studio. Copyright info pending.
 */
Cufon.registerFont({"w":190,"face":{"font-family":"TitilliumMaps26L800","font-weight":800,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-19 -379 360 108","underline-thickness":"10.8","underline-position":"-25.2","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":84},"\u00a0":{"w":84},"C":{"d":"59,-124v-3,66,22,102,93,87v8,-1,16,-1,24,-2r1,36v-22,2,-45,7,-68,7v-76,2,-91,-53,-91,-128v0,-76,16,-130,91,-129v24,0,47,4,68,8r-1,35r-62,-5v-50,0,-53,40,-55,91","w":191},"c":{"d":"17,-92v-4,-81,55,-105,126,-86r-2,33v-48,-7,-84,-4,-84,53v0,55,32,68,85,57r1,34r-53,5v-57,-1,-70,-36,-73,-96","w":156},"d":{"d":"57,-90v-4,51,29,73,71,49r0,-104v-5,-2,-24,-5,-35,-4v-28,1,-34,27,-36,59xm17,-91v-3,-72,43,-106,111,-88r0,-76r39,0r0,255r-39,0r0,-9v-12,7,-26,13,-44,13v-53,-1,-65,-41,-67,-95","w":195},"e":{"d":"128,-103v8,-44,-40,-60,-63,-35v-6,8,-9,20,-9,35r72,0xm56,-73v-5,51,58,45,104,39r1,30v-19,5,-43,8,-68,8v-57,1,-76,-35,-76,-92v-1,-58,23,-95,76,-96v61,-1,82,50,71,111r-108,0","w":182},"f":{"d":"116,-222v-36,-6,-53,2,-48,42r46,0r0,35r-46,0r0,145r-40,0r0,-145r-19,0r0,-35r19,0v-6,-64,25,-88,88,-75r0,33","w":122},"g":{"d":"58,-121v0,21,10,31,30,31v20,0,32,-9,32,-31v0,-20,-11,-30,-32,-30v-20,0,-30,10,-30,30xm139,26v0,-32,-41,-18,-70,-24v-9,8,-14,13,-14,26v0,33,84,34,84,-2xm179,23v-3,45,-35,63,-82,63v-46,0,-81,-11,-81,-54v0,-22,13,-33,27,-45v-20,-11,-10,-42,2,-55v-16,-9,-28,-25,-27,-53v-1,-54,53,-72,104,-58r56,-1r0,32r-28,0v28,46,-14,105,-77,88v-5,11,-8,30,12,30v49,0,97,1,94,53"},"h":{"d":"107,-148v-15,0,-28,5,-39,8r0,140r-40,0r0,-255r40,0r0,81v13,-5,30,-10,47,-10v82,-2,57,107,61,184r-40,0r0,-94v0,-28,-2,-54,-29,-54","w":202},"i":{"d":"26,-249r40,0r0,41r-40,0r0,-41xm26,-180r40,0r0,180r-40,0r0,-180","w":91},"j":{"d":"28,-249r40,0r0,41r-40,0r0,-41xm-11,54v23,-13,39,-20,39,-56r0,-178r40,0r-2,209v-9,31,-31,44,-60,58","w":93},"k":{"d":"30,0r0,-255r39,0r0,146r19,-3r42,-68r45,0r-52,84r53,96r-44,0r-43,-74r-20,3r0,71r-39,0","w":183},"l":{"d":"27,-255r39,0r0,255r-39,0r0,-255","w":92},"m":{"d":"137,0v-2,-65,21,-182,-68,-138r0,138r-39,0r0,-180r39,0r0,10v25,-14,68,-20,89,2v19,-7,40,-16,63,-16v81,0,57,106,61,184r-40,0r0,-92v0,-29,-1,-57,-29,-56v-15,1,-29,5,-40,10v5,41,2,92,3,138r-39,0","w":307},"A":{"d":"72,-89r73,0r-29,-125r-14,0xm71,-249r77,0r59,249r-40,0r-15,-51r-88,0r-13,51r-41,0","w":217},"p":{"d":"140,-92v-2,-29,-8,-55,-35,-56v-15,0,-25,5,-36,10r0,105v46,10,74,-8,71,-59xm180,-92v0,74,-40,108,-111,93r0,76r-39,0r0,-257r39,0r0,10v54,-34,111,1,111,78","w":195},"q":{"d":"57,-89v-6,49,30,69,70,52r0,-110v-47,-9,-76,9,-70,58xm127,-3v-64,24,-110,-14,-110,-86v0,-76,46,-106,122,-92v9,1,19,1,28,1r0,258r-40,0r0,-81","w":195},"r":{"d":"120,-142v-20,5,-38,9,-53,18r0,124r-40,0r0,-180r40,0r0,20v14,-11,32,-19,53,-24r0,42","w":128},"s":{"d":"24,-105v-27,-77,66,-90,128,-71r-1,32v-31,-2,-99,-20,-90,23v30,23,97,6,97,68v0,67,-82,62,-136,49r1,-32v33,0,101,24,94,-24v-24,-21,-81,-11,-93,-45","w":177},"u":{"d":"95,-31v17,0,26,-6,39,-10r0,-139r39,0r0,180r-39,0r0,-9v-14,6,-28,12,-46,13v-84,3,-56,-107,-61,-184r39,0r0,94v1,32,1,54,29,55","w":201},"w":{"d":"46,-180r27,144r9,0r33,-140r41,0r33,140r8,0r28,-144r39,0r-37,180r-65,0r-27,-123r-27,123r-64,0r-37,-180r39,0","w":271},"y":{"d":"46,-180r37,142r8,0r37,-142r39,0r-67,257r-40,0r21,-77r-27,0r-47,-180r39,0","w":174},"z":{"d":"21,-180r130,0r0,35r-84,110r84,0r0,35r-130,0r0,-35r84,-110r-84,0r0,-35","w":172},"Z":{"d":"23,-249r159,0r0,41r-109,164r0,6r109,0r0,38r-159,0r0,-41r109,-164r0,-6r-109,0r0,-38","w":205},"0":{"d":"140,-116v0,-47,-1,-88,-45,-88v-44,0,-45,43,-45,88v0,44,3,83,46,83v41,0,45,-38,44,-83xm7,-116v0,-74,19,-126,88,-126v69,0,89,51,89,126v0,73,-20,120,-89,120v-68,0,-88,-48,-88,-120"},"1":{"d":"92,-238r38,0r0,238r-40,0r0,-191r-54,36r-19,-31"},"2":{"d":"19,-232v68,-22,171,-12,144,82v-15,52,-61,76,-92,112r100,0r0,38r-153,0r0,-36r79,-80v14,-14,26,-29,27,-54v2,-48,-67,-31,-102,-27"},"3":{"d":"127,-172v0,-47,-66,-30,-101,-26r-4,-35v59,-13,147,-21,147,55v0,27,-14,42,-30,52v21,10,35,23,35,56v0,80,-84,83,-155,66r4,-35v39,3,109,20,109,-30v0,-41,-46,-33,-85,-34r0,-35v38,1,80,4,80,-34"},"5":{"d":"134,-76v0,-44,-54,-42,-81,-28r-32,-7r7,-127r139,0r0,38r-102,0r-6,59v53,-22,117,-2,117,63v0,87,-87,93,-160,71r5,-35v43,7,113,25,113,-34"},"7":{"d":"20,-238r146,0r0,49r-86,195r-38,-11r82,-184r0,-11r-104,0r0,-38"},"8":{"d":"138,-172v0,-25,-16,-31,-41,-33v-46,-5,-54,59,-17,66v32,6,58,-4,58,-33xm80,-104v-45,7,-33,76,16,72v27,-2,46,-10,46,-38v0,-31,-28,-39,-62,-34xm13,-178v1,-47,36,-64,84,-64v48,0,83,19,85,64v1,31,-13,43,-32,55v21,11,35,25,35,56v1,53,-38,72,-89,72v-49,0,-87,-17,-87,-68v0,-32,16,-47,34,-60v-18,-12,-31,-24,-30,-55"},"E":{"d":"30,-249r151,0r0,37r-111,0r0,70r90,0r0,36r-90,0r0,69r111,0r0,37r-151,0r0,-249","w":200},"F":{"d":"30,-249r151,0r0,37r-111,0r0,85r90,0r0,36r-90,0r0,91r-40,0r0,-249","w":195},"G":{"d":"60,-125v0,70,25,104,96,88r0,-61r-30,0r0,-35r69,0r0,130v-24,4,-53,7,-80,7v-76,1,-97,-53,-97,-129v0,-76,19,-129,95,-128v29,0,58,3,82,9r-1,35r-74,-6v-52,-1,-60,38,-60,90","w":216},"H":{"d":"172,-108r-102,0r0,108r-40,0r0,-249r40,0r0,104r102,0r0,-104r40,0r0,249r-40,0r0,-108","w":241},"K":{"d":"103,-104r-33,3r0,101r-40,0r0,-249r40,0r0,111r32,-3r50,-108r47,0r-61,124r64,125r-48,0","w":213},"Q":{"d":"60,-123v0,51,8,90,56,90v49,0,58,-37,57,-90v-1,-50,-7,-93,-57,-93v-49,0,-56,42,-56,93xm215,-123v0,53,-9,91,-39,112r27,48r-36,18r-29,-53v-88,13,-120,-40,-120,-125v0,-76,21,-130,98,-130v78,0,99,53,99,130","w":232},"R":{"d":"70,-123v48,3,92,1,92,-46v0,-46,-45,-45,-92,-43r0,89xm203,-170v0,37,-14,61,-40,72r40,98r-44,0r-35,-88v-16,2,-36,1,-54,1r0,87r-40,0r0,-249v85,-1,173,-12,173,79","w":221},"S":{"d":"19,-184v0,-77,91,-76,155,-61r-1,34v-46,-2,-127,-23,-112,41v28,43,120,21,120,98v0,86,-90,83,-159,68r2,-35v48,4,132,22,114,-44v-34,-39,-119,-21,-119,-101","w":191},"T":{"d":"3,-249r168,0r0,39r-63,0r0,210r-40,0r0,-210r-65,0r0,-39","w":174},"V":{"d":"207,-249r-60,249r-76,0r-61,-249r43,0r49,213r14,0r49,-213r42,0","w":217},"N":{"d":"30,-249r69,0r76,207r6,0r0,-207r40,0r0,249r-67,0r-78,-207r-5,0r0,207r-41,0r0,-249","w":250},"\u2013":{"d":"180,-116r0,36r-180,0r0,-36r180,0","w":180},"\u00af":{"d":"28,-260r112,0r0,34r-112,0r0,-34","w":171},"$":{"d":"105,-204v-40,-11,-63,37,-28,54v4,2,10,4,16,6xm90,-33v45,11,64,-43,29,-63v-4,-2,-10,-3,-16,-5xm177,-68v0,59,-37,76,-95,71r-7,40r-18,-2r7,-40v-16,0,-29,-4,-42,-5r3,-35r47,5r14,-72v-37,-11,-67,-21,-67,-70v0,-52,41,-69,93,-65r9,-43r18,0r-9,44r41,4r-1,37r-47,-4r-12,64v38,12,66,21,66,71"},"!":{"d":"64,-252r43,0r-2,163r-40,0xm64,-52r43,0r0,52r-43,0r0,-52","w":166},"a":{"d":"58,-54v0,34,42,26,62,17r0,-45v-28,2,-62,-4,-62,28xm27,-176v55,-10,140,-22,132,53v5,33,-14,87,17,94r-2,33v-24,0,-35,-4,-48,-13v-40,23,-108,16,-108,-44v0,-55,52,-55,102,-59v10,-52,-50,-33,-92,-32","w":189},"o":{"d":"57,-91v0,34,6,61,38,61v33,0,39,-27,39,-61v0,-32,-7,-58,-39,-58v-32,0,-38,24,-38,58xm17,-91v0,-59,21,-92,78,-93v57,0,79,36,79,93v0,57,-21,96,-79,95v-58,0,-78,-36,-78,-95"},"J":{"d":"13,-10v25,-1,31,-7,31,-32r0,-207r40,0r0,209v3,50,-21,66,-71,65r0,-35","w":111},"t":{"d":"118,0v-53,12,-88,-3,-88,-63r0,-82r-21,0r0,-34r21,0r0,-53r39,0r0,53r48,0r0,34r-48,0v6,47,-25,129,47,113","w":127},"n":{"d":"108,-148v-16,0,-26,5,-39,9r0,139r-39,0r0,-180r39,0r0,10v12,-7,30,-14,47,-14v82,-2,57,107,61,184r-40,0r0,-94v0,-28,-2,-54,-29,-54","w":203},"#":{"d":"118,-144r-45,0r0,49r45,0r0,-49xm152,-62r0,62r-34,0r0,-62r-45,0r0,62r-35,0r0,-62r-37,0r0,-33r37,0r0,-49r-37,0r0,-33r37,0r0,-61r35,0r0,61r45,0r0,-61r34,0r0,61r37,0r0,33r-37,0r0,49r37,0r0,33r-37,0"},"W":{"d":"55,-249r39,213r8,0r41,-210r46,0r42,210r8,0r39,-213r42,0r-50,249r-67,0r-37,-192r-36,192r-67,0r-51,-249r43,0","w":332},"@":{"d":"143,-87v0,52,32,61,70,42v-4,-28,-1,-64,-2,-96v-11,-1,-18,-5,-29,-5v-35,-2,-39,23,-39,59xm181,-261v107,0,157,51,157,157v0,61,-9,108,-67,108v-22,0,-34,-4,-44,-18v-16,8,-35,17,-58,17v-52,0,-62,-37,-66,-90v-5,-73,40,-114,108,-88r0,-5r39,0r0,72v3,34,-8,74,21,74v33,0,26,-39,27,-76v2,-80,-37,-113,-117,-113v-86,0,-125,42,-125,129v0,110,67,143,177,127r1,38v-133,19,-223,-28,-218,-165v4,-109,55,-167,165,-167","w":354},"`":{"d":"138,-242r-13,33r-88,-29r14,-37","w":196},"\u00b4":{"d":"124,-275r14,37r-88,29r-13,-33","w":209},"\u00a8":{"d":"104,-262r37,0r0,41r-37,0r0,-41xm28,-262r38,0r0,41r-38,0r0,-41","w":221},"\u00ff":{"d":"106,-262r38,0r0,41r-38,0r0,-41xm31,-262r37,0r0,41r-37,0r0,-41xm46,-180r37,142r8,0r37,-142r39,0r-67,257r-40,0r21,-77r-27,0r-47,-180r39,0","w":174},"M":{"d":"30,-249r66,0r57,195r57,-195r65,0r0,249r-40,0r0,-202r-5,0r-56,192r-42,0r-57,-192r-5,0r0,202r-40,0r0,-249","w":305},"U":{"d":"116,3v-62,0,-89,-23,-89,-83r0,-169r40,0r0,169v0,33,16,45,49,45v34,0,49,-12,49,-45r0,-169r40,0r0,169v0,60,-27,83,-89,83","w":232},"X":{"d":"105,-153r49,-96r46,0r-69,126r69,123r-46,0r-49,-95r-50,95r-46,0r71,-123r-71,-126r46,0","w":209},"Y":{"d":"122,0r-40,0r0,-107r-75,-142r45,0r50,100r49,-100r45,0r-74,142r0,107","w":202},"\u00b0":{"d":"88,-233v-19,0,-30,13,-30,30v0,17,11,30,30,30v17,0,30,-13,30,-30v0,-17,-13,-30,-30,-30xm88,-150v-31,0,-53,-22,-53,-53v0,-31,22,-53,53,-53v31,0,52,22,52,53v0,31,-22,53,-52,53"},"\u00a7":{"d":"124,-53v6,-9,13,-39,0,-47v-11,-6,-40,-11,-55,-17v-15,20,-9,55,21,54v14,3,26,7,34,10xm27,-169v0,-70,79,-68,136,-55r-2,32v-36,-2,-110,-20,-93,32v27,30,103,6,103,72v0,19,-10,38,-17,49v10,10,13,17,14,38v5,72,-79,68,-140,56r4,-32v35,5,112,18,95,-33v-29,-28,-110,-6,-106,-73v0,-21,12,-36,22,-47v-11,-8,-16,-18,-16,-39"},"\u00a9":{"d":"68,-174v0,43,7,73,54,58r0,12v-42,11,-66,-8,-66,-52v0,-42,21,-64,66,-53r0,12v-25,-5,-54,-5,-54,23xm95,-240v-51,0,-80,34,-80,84v0,50,31,84,80,84v50,0,81,-34,81,-84v0,-50,-30,-84,-81,-84xm95,-61v-56,0,-91,-38,-91,-95v0,-58,36,-96,91,-96v56,0,93,39,93,96v0,56,-36,95,-93,95"},"\u2122":{"d":"87,-224r18,0r30,88r32,-88r18,0r0,105r-12,0r0,-93r-32,89r-12,0r-30,-89r0,93r-12,0r0,-105xm3,-224r72,0r0,12r-30,0r0,92r-12,0r0,-92r-30,0r0,-12"},"\u00ae":{"d":"121,-180v0,-26,-27,-21,-51,-21r0,43v24,-1,51,7,51,-22xm91,-213v48,-11,55,55,21,65r23,49r-13,0r-23,-48r-29,0r0,48r-11,0r0,-114r32,0xm95,-240v-51,0,-80,34,-80,84v0,50,31,84,80,84v50,0,81,-34,81,-84v0,-50,-30,-84,-81,-84xm95,-61v-56,0,-91,-38,-91,-95v0,-58,36,-96,91,-96v56,0,93,39,93,96v0,56,-36,95,-93,95"},"\u00e1":{"d":"143,-275r14,37r-88,29r-12,-33xm58,-54v0,34,42,26,62,17r0,-45v-28,2,-62,-4,-62,28xm27,-176v55,-10,140,-22,132,53v5,33,-14,87,17,94r-2,33v-24,0,-35,-4,-48,-13v-40,23,-108,16,-108,-44v0,-55,52,-55,102,-59v10,-52,-50,-33,-92,-32"},"\u00e0":{"d":"142,-242r-12,33r-88,-29r13,-37xm58,-54v0,34,42,26,62,17r0,-45v-28,2,-62,-4,-62,28xm27,-176v55,-10,140,-22,132,53v5,33,-14,87,17,94r-2,33v-24,0,-35,-4,-48,-13v-40,23,-108,16,-108,-44v0,-55,52,-55,102,-59v10,-52,-50,-33,-92,-32"},"\u00e2":{"d":"74,-269r32,0r47,58r-43,0r-20,-25r-19,25r-43,0xm58,-54v0,34,42,26,62,17r0,-45v-28,2,-62,-4,-62,28xm27,-176v55,-10,140,-22,132,53v5,33,-14,87,17,94r-2,33v-24,0,-35,-4,-48,-13v-40,23,-108,16,-108,-44v0,-55,52,-55,102,-59v10,-52,-50,-33,-92,-32"},"\u00e4":{"d":"119,-262r38,0r0,41r-38,0r0,-41xm44,-262r37,0r0,41r-37,0r0,-41xm58,-54v0,34,42,26,62,17r0,-45v-28,2,-62,-4,-62,28xm27,-176v55,-10,140,-22,132,53v5,33,-14,87,17,94r-2,33v-24,0,-35,-4,-48,-13v-40,23,-108,16,-108,-44v0,-55,52,-55,102,-59v10,-52,-50,-33,-92,-32"},"\u00e3":{"d":"64,-267v29,0,57,29,81,2r8,30v-15,25,-55,22,-78,6v-18,-7,-28,6,-39,13r-8,-30v9,-10,19,-21,36,-21xm58,-54v0,34,42,26,62,17r0,-45v-28,2,-62,-4,-62,28xm27,-176v55,-10,140,-22,132,53v5,33,-14,87,17,94r-2,33v-24,0,-35,-4,-48,-13v-40,23,-108,16,-108,-44v0,-55,52,-55,102,-59v10,-52,-50,-33,-92,-32"},"\u00e5":{"d":"94,-252v-7,0,-14,7,-14,14v0,7,7,14,14,14v7,0,14,-7,14,-14v0,-7,-7,-14,-14,-14xm94,-198v-25,0,-40,-15,-40,-40v0,-25,16,-40,40,-40v24,0,40,16,40,40v0,24,-15,40,-40,40xm58,-54v0,34,42,26,62,17r0,-45v-28,2,-62,-4,-62,28xm27,-176v55,-10,140,-22,132,53v5,33,-14,87,17,94r-2,33v-24,0,-35,-4,-48,-13v-40,23,-108,16,-108,-44v0,-55,52,-55,102,-59v10,-52,-50,-33,-92,-32"},"\u00e9":{"d":"131,-275r13,37r-87,29r-13,-33xm128,-103v8,-44,-40,-60,-63,-35v-6,8,-9,20,-9,35r72,0xm56,-73v-5,51,58,45,104,39r1,30v-19,5,-43,8,-68,8v-57,1,-76,-35,-76,-92v-1,-58,23,-95,76,-96v61,-1,82,50,71,111r-108,0","w":182},"\u00e8":{"d":"133,-242r-12,33r-88,-29r13,-37xm128,-103v8,-44,-40,-60,-63,-35v-6,8,-9,20,-9,35r72,0xm56,-73v-5,51,58,45,104,39r1,30v-19,5,-43,8,-68,8v-57,1,-76,-35,-76,-92v-1,-58,23,-95,76,-96v61,-1,82,50,71,111r-108,0","w":182},"\u00ea":{"d":"78,-269r32,0r47,58r-43,0r-19,-25r-20,25r-43,0xm128,-103v8,-44,-40,-60,-63,-35v-6,8,-9,20,-9,35r72,0xm56,-73v-5,51,58,45,104,39r1,30v-19,5,-43,8,-68,8v-57,1,-76,-35,-76,-92v-1,-58,23,-95,76,-96v61,-1,82,50,71,111r-108,0","w":182},"\u00eb":{"d":"122,-262r37,0r0,41r-37,0r0,-41xm46,-262r38,0r0,41r-38,0r0,-41xm128,-103v8,-44,-40,-60,-63,-35v-6,8,-9,20,-9,35r72,0xm56,-73v-5,51,58,45,104,39r1,30v-19,5,-43,8,-68,8v-57,1,-76,-35,-76,-92v-1,-58,23,-95,76,-96v61,-1,82,50,71,111r-108,0","w":182},"\u00ef":{"d":"28,-180r40,0r0,180r-40,0r0,-180xm73,-262r38,0r0,41r-38,0r0,-41xm-2,-262r38,0r0,41r-38,0r0,-41","w":95},"\u00f1":{"d":"78,-267v29,0,57,29,81,2r8,30v-15,25,-55,22,-78,6v-18,-7,-28,6,-39,13r-8,-30v9,-10,19,-21,36,-21xm111,-148v-16,0,-27,5,-40,9r0,139r-39,0r0,-180r39,0r0,10v12,-7,30,-14,47,-14v82,-2,57,106,61,184r-39,0r0,-94v0,-27,-2,-53,-29,-54","w":206},"\u00f3":{"d":"129,-275r13,37r-88,29r-12,-33xm57,-91v0,34,6,61,38,61v33,0,39,-27,39,-61v0,-32,-7,-58,-39,-58v-32,0,-38,24,-38,58xm17,-91v0,-59,21,-92,78,-93v57,0,79,36,79,93v0,57,-21,96,-79,95v-58,0,-78,-36,-78,-95","w":191},"\u00f2":{"d":"127,-242r-12,33r-88,-29r14,-37xm57,-91v0,34,6,61,38,61v33,0,39,-27,39,-61v0,-32,-7,-58,-39,-58v-32,0,-38,24,-38,58xm17,-91v0,-59,21,-92,78,-93v57,0,79,36,79,93v0,57,-21,96,-79,95v-58,0,-78,-36,-78,-95","w":191},"\u00f4":{"d":"72,-269r32,0r46,58r-42,0r-20,-25r-20,25r-42,0xm57,-91v0,34,6,61,38,61v33,0,39,-27,39,-61v0,-32,-7,-58,-39,-58v-32,0,-38,24,-38,58xm17,-91v0,-59,21,-92,78,-93v57,0,79,36,79,93v0,57,-21,96,-79,95v-58,0,-78,-36,-78,-95","w":191},"\u00f6":{"d":"115,-262r38,0r0,41r-38,0r0,-41xm40,-262r37,0r0,41r-37,0r0,-41xm57,-91v0,34,6,61,38,61v33,0,39,-27,39,-61v0,-32,-7,-58,-39,-58v-32,0,-38,24,-38,58xm17,-91v0,-59,21,-92,78,-93v57,0,79,36,79,93v0,57,-21,96,-79,95v-58,0,-78,-36,-78,-95","w":191},"\u00f5":{"d":"112,-251v12,-2,19,-8,28,-14r9,30v-16,24,-55,22,-79,6v-17,-7,-28,6,-38,13r-9,-30v10,-9,19,-20,36,-21v22,0,35,13,53,16xm57,-91v0,34,6,61,38,61v33,0,39,-27,39,-61v0,-32,-7,-58,-39,-58v-32,0,-38,24,-38,58xm17,-91v0,-59,21,-92,78,-93v57,0,79,36,79,93v0,57,-21,96,-79,95v-58,0,-78,-36,-78,-95","w":191},"\u00fa":{"d":"134,-275r13,37r-88,29r-12,-33xm95,-31v17,0,26,-6,39,-10r0,-139r39,0r0,180r-39,0r0,-9v-14,6,-28,12,-46,13v-84,3,-56,-107,-61,-184r39,0r0,94v1,32,1,54,29,55","w":201},"\u00f9":{"d":"132,-242r-12,33r-88,-29r14,-37xm95,-31v17,0,26,-6,39,-10r0,-139r39,0r0,180r-39,0r0,-9v-14,6,-28,12,-46,13v-84,3,-56,-107,-61,-184r39,0r0,94v1,32,1,54,29,55","w":201},"\u00fb":{"d":"77,-269r32,0r47,58r-43,0r-20,-25r-20,25r-42,0xm95,-31v17,0,26,-6,39,-10r0,-139r39,0r0,180r-39,0r0,-9v-14,6,-28,12,-46,13v-84,3,-56,-107,-61,-184r39,0r0,94v1,32,1,54,29,55","w":201},"\u00fc":{"d":"120,-262r38,0r0,41r-38,0r0,-41xm45,-262r37,0r0,41r-37,0r0,-41xm95,-31v17,0,26,-6,39,-10r0,-139r39,0r0,180r-39,0r0,-9v-14,6,-28,12,-46,13v-84,3,-56,-107,-61,-184r39,0r0,94v1,32,1,54,29,55","w":201},"\u0131":{"d":"28,-180r40,0r0,180r-40,0r0,-180","w":95},"\u00ed":{"d":"28,-180r40,0r0,180r-40,0r0,-180xm91,-275r13,37r-88,29r-12,-33","w":93},"\u00ec":{"d":"82,-242r-13,33r-87,-29r13,-37xm28,-180r40,0r0,180r-40,0r0,-180","w":95},"\u00ee":{"d":"30,-269r32,0r47,58r-43,0r-20,-25r-19,25r-43,0xm28,-180r40,0r0,180r-40,0r0,-180","w":95},"\u00c3":{"d":"138,-320v12,-2,20,-10,29,-15r9,30v-10,10,-21,20,-37,22v-21,-2,-40,-14,-59,-18v-12,2,-20,9,-29,16r-9,-30v10,-10,20,-21,37,-22v23,-1,40,14,59,17xm72,-89r73,0r-29,-125r-14,0xm71,-249r77,0r59,249r-40,0r-15,-51r-88,0r-13,51r-41,0","w":217},"\u00c0":{"d":"154,-307r-13,33r-87,-30r13,-37xm72,-89r73,0r-29,-125r-14,0xm71,-249r77,0r59,249r-40,0r-15,-51r-88,0r-13,51r-41,0","w":217},"\u00d5":{"d":"146,-319v10,-3,21,-9,29,-15r9,29v-9,10,-19,22,-37,22v-33,0,-66,-32,-88,-1r-9,-30v10,-10,20,-21,37,-23v22,1,40,14,59,18xm215,-123v0,78,-23,127,-99,127v-76,0,-98,-50,-98,-127v0,-77,21,-130,98,-130v78,0,99,52,99,130xm60,-123v0,50,6,90,56,90v51,0,57,-39,57,-90v0,-56,-7,-93,-57,-93v-50,0,-56,43,-56,93","w":232},"\u00c2":{"d":"90,-336r36,0r47,52r-44,0r-21,-21r-20,21r-46,0xm72,-89r73,0r-29,-125r-14,0xm71,-249r77,0r59,249r-40,0r-15,-51r-88,0r-13,51r-41,0","w":217},"\u00ca":{"d":"89,-337r36,0r48,52r-45,0r-20,-20r-21,20r-45,0xm30,-249r151,0r0,37r-111,0r0,70r90,0r0,36r-90,0r0,69r111,0r0,37r-151,0r0,-249","w":200},"\u00c1":{"d":"142,-344r14,37r-88,30r-13,-33xm72,-89r73,0r-29,-125r-14,0xm71,-249r77,0r59,249r-40,0r-15,-51r-88,0r-13,51r-41,0","w":217},"\u00cb":{"d":"130,-331r37,0r0,41r-37,0r0,-41xm52,-331r38,0r0,41r-38,0r0,-41xm30,-249r151,0r0,37r-111,0r0,70r90,0r0,36r-90,0r0,69r111,0r0,37r-151,0r0,-249","w":200},"\u00c8":{"d":"157,-307r-12,33r-88,-30r14,-37xm30,-249r151,0r0,37r-111,0r0,70r90,0r0,36r-90,0r0,69r111,0r0,37r-151,0r0,-249","w":200},"\u00d4":{"d":"100,-336r36,0r48,51r-45,0r-21,-20r-20,20r-45,0xm215,-123v0,78,-23,127,-99,127v-76,0,-98,-50,-98,-127v0,-77,21,-130,98,-130v78,0,99,52,99,130xm60,-123v0,50,6,90,56,90v51,0,57,-39,57,-90v0,-56,-7,-93,-57,-93v-50,0,-56,43,-56,93","w":232},"\u00d3":{"d":"149,-344r13,37r-87,30r-13,-33xm215,-123v0,78,-23,127,-99,127v-76,0,-98,-50,-98,-127v0,-77,21,-130,98,-130v78,0,99,52,99,130xm60,-123v0,50,6,90,56,90v51,0,57,-39,57,-90v0,-56,-7,-93,-57,-93v-50,0,-56,43,-56,93","w":232},"\u00cc":{"d":"87,-307r-12,33r-88,-30r13,-37xm27,-249r41,0r0,249r-41,0r0,-249","w":95},"\u00cf":{"d":"68,-334r38,0r0,41r-38,0r0,-41xm-9,-334r37,0r0,41r-37,0r0,-41xm27,-249r41,0r0,249r-41,0r0,-249","w":95},"\u00ce":{"d":"29,-337r36,0r48,52r-45,0r-20,-20r-21,20r-45,0xm27,-249r41,0r0,249r-41,0r0,-249","w":95},"\u00cd":{"d":"92,-344r13,37r-87,30r-13,-33xm27,-249r41,0r0,249r-41,0r0,-249","w":95},"\u00d2":{"d":"165,-307r-12,33r-88,-30r13,-37xm215,-123v0,78,-23,127,-99,127v-76,0,-98,-50,-98,-127v0,-77,21,-130,98,-130v78,0,99,52,99,130xm60,-123v0,50,6,90,56,90v51,0,57,-39,57,-90v0,-56,-7,-93,-57,-93v-50,0,-56,43,-56,93","w":232},"\u00da":{"d":"149,-344r14,37r-88,30r-12,-33xm116,3v-62,0,-89,-23,-89,-83r0,-169r40,0r0,169v0,33,16,45,49,45v34,0,49,-12,49,-45r0,-169r40,0r0,169v0,60,-27,83,-89,83","w":232},"\u00db":{"d":"98,-336r36,0r47,52r-44,0r-21,-21r-20,21r-46,0xm116,3v-62,0,-89,-23,-89,-83r0,-169r40,0r0,169v0,33,16,45,49,45v34,0,49,-12,49,-45r0,-169r40,0r0,169v0,60,-27,83,-89,83","w":232},"\u00d9":{"d":"163,-307r-13,33r-87,-30r13,-37xm116,3v-62,0,-89,-23,-89,-83r0,-169r40,0r0,169v0,33,16,45,49,45v34,0,49,-12,49,-45r0,-169r40,0r0,169v0,60,-27,83,-89,83","w":232},"\u00b8":{"d":"161,15v26,-1,43,6,43,31v0,36,-39,40,-70,31r1,-23v14,0,35,3,35,-11v0,-12,-14,-9,-26,-10r0,-33r17,0r0,15","w":299},"\u00dc":{"d":"136,-334r38,0r0,41r-38,0r0,-41xm59,-334r37,0r0,41r-37,0r0,-41xm116,3v-62,0,-89,-23,-89,-83r0,-169r40,0r0,169v0,33,16,45,49,45v34,0,49,-12,49,-45r0,-169r40,0r0,169v0,60,-27,83,-89,83","w":232},"\u00d6":{"d":"138,-331r37,0r0,41r-37,0r0,-41xm60,-331r38,0r0,41r-38,0r0,-41xm215,-123v0,78,-23,127,-99,127v-76,0,-98,-50,-98,-127v0,-77,21,-130,98,-130v78,0,99,52,99,130xm60,-123v0,50,6,90,56,90v51,0,57,-39,57,-90v0,-56,-7,-93,-57,-93v-50,0,-56,43,-56,93","w":232},"\u00d1":{"d":"156,-319v10,-3,21,-9,29,-15r8,29v-9,10,-18,21,-36,22v-24,0,-39,-17,-60,-17v-13,0,-20,10,-29,16r-9,-30v10,-10,20,-23,37,-23v22,0,41,14,60,18xm30,-249r69,0r76,207r6,0r0,-207r40,0r0,249r-67,0r-78,-207r-5,0r0,207r-41,0r0,-249","w":250},"\u00c9":{"d":"148,-344r13,37r-88,30r-12,-33xm30,-249r151,0r0,37r-111,0r0,70r90,0r0,36r-90,0r0,69r111,0r0,37r-151,0r0,-249","w":200},"\u00c7":{"d":"114,15v26,-1,43,6,43,31v0,36,-38,39,-70,31r1,-23v14,0,35,3,35,-11v0,-12,-14,-9,-26,-10r0,-30v-67,-3,-79,-56,-79,-127v0,-76,16,-130,91,-129v24,0,47,4,68,8r-1,35r-62,-5v-50,0,-53,40,-55,91v-3,66,22,102,93,87v8,-1,16,-1,24,-2r1,36v-20,2,-41,7,-63,7r0,11","w":193},"\u00c5":{"d":"109,-277v-20,0,-25,25,-6,28v14,2,26,-3,25,-14v-1,-10,-8,-14,-19,-14xm72,-89r73,0r-29,-125r-14,0xm109,-305v39,0,64,37,41,67r57,238r-40,0r-15,-51r-88,0r-13,51r-41,0r58,-238v-21,-31,3,-67,41,-67","w":217},"\u00c4":{"d":"130,-331r37,0r0,41r-37,0r0,-41xm52,-331r38,0r0,41r-38,0r0,-41xm72,-89r73,0r-29,-125r-14,0xm71,-249r77,0r59,249r-40,0r-15,-51r-88,0r-13,51r-41,0","w":217},"\u00e7":{"d":"97,15v26,-1,43,6,43,31v0,36,-39,40,-70,31r1,-23v14,0,34,3,34,-11v0,-13,-13,-9,-25,-10r0,-30v-48,-4,-60,-40,-63,-95v-4,-81,55,-105,126,-86r-2,33v-48,-7,-84,-4,-84,53v0,55,32,68,85,57r1,34v-15,2,-29,5,-46,5r0,11","w":156},"\u0178":{"d":"125,-331r37,0r0,41r-37,0r0,-41xm47,-331r38,0r0,41r-38,0r0,-41xm122,0r-40,0r0,-107r-75,-142r45,0r50,100r49,-100r45,0r-74,142r0,107","w":202},"\u00f8":{"d":"133,-218r24,9r-15,37v-7,-4,-15,-7,-24,-9xm31,31r16,-39v6,4,15,7,24,9r-16,39xm105,-148v9,2,16,7,20,14r-41,103v-9,-2,-16,-8,-20,-15xm17,-91v-4,-67,36,-103,101,-90r-13,33v-55,-14,-55,62,-41,102v-5,14,-10,27,-17,38v-24,-16,-28,-44,-30,-83xm142,-172v61,45,37,209,-71,173r13,-32v56,14,59,-64,41,-103"},"\u00b1":{"d":"177,-50r0,39r-164,0r0,-39r164,0xm13,-142r62,0r0,-41r41,0r0,41r61,0r0,39r-61,0r0,39r-41,0r0,-39r-62,0r0,-39"},"\u03c0":{"d":"183,0v-77,7,-39,-102,-48,-167r-73,0r-11,167r-12,0r10,-167v-16,1,-34,1,-48,4r0,-12v53,-12,130,2,184,-11r0,13v-11,2,-23,5,-37,5r0,113v-2,30,7,44,35,43r0,12"},"\u00aa":{"d":"70,-167v0,21,23,10,37,9r0,-23v-15,2,-37,-4,-37,14xm50,-237v39,-5,85,-11,83,33v3,17,-7,46,9,50r-2,22v-11,0,-21,-1,-26,-7v-27,11,-75,12,-70,-28v-3,-31,31,-35,63,-34v4,-26,-32,-12,-56,-14"},"\u00ba":{"d":"71,-187v0,21,4,31,21,31v19,0,22,-9,22,-31v0,-20,-3,-29,-22,-29v-17,1,-21,9,-21,29xm44,-187v0,-37,14,-54,48,-54v33,0,49,17,49,54v0,37,-16,55,-49,55v-33,0,-48,-19,-48,-55"},"I":{"d":"27,-249r41,0r0,249r-41,0r0,-249","w":95},"O":{"d":"215,-123v0,78,-23,127,-99,127v-76,0,-98,-50,-98,-127v0,-77,21,-130,98,-130v78,0,99,52,99,130xm60,-123v0,50,6,90,56,90v51,0,57,-39,57,-90v0,-56,-7,-93,-57,-93v-50,0,-56,43,-56,93","w":232},"\u00ab":{"d":"144,-89r42,34r0,40r-75,-58r0,-30r75,-55r0,40xm55,-89r42,34r0,40r-75,-58r0,-30r75,-55r0,40","w":207},"\u00bb":{"d":"22,-121r0,-40r75,56r0,29r-75,58r0,-40r41,-33xm111,-121r0,-40r75,56r0,29r-75,58r0,-40r41,-33","w":207},"\u201c":{"d":"123,-147r-40,0r20,-84r37,0xm56,-147r-40,0r20,-84r37,0","w":157},"~":{"d":"65,-139v34,0,74,30,101,1r3,37v-23,31,-73,12,-106,2v-16,1,-27,9,-38,16r-3,-37v10,-10,24,-19,43,-19"},"\u2014":{"d":"360,-116r0,36r-360,0r0,-36r360,0","w":360},"L":{"d":"30,0r0,-249r40,0r0,211r94,0r0,38r-134,0","w":178},"B":{"d":"153,-180v0,-41,-44,-33,-83,-33r0,70v41,1,83,6,83,-37xm159,-73v0,-42,-48,-35,-89,-35r0,72v42,0,89,7,89,-37xm201,-70v0,84,-91,70,-171,70r0,-249v75,1,166,-15,165,62v0,30,-9,49,-29,59v23,10,35,24,35,58","w":219},"D":{"d":"112,-37v48,-1,56,-42,56,-92v0,-47,-8,-84,-56,-83r-42,0r0,175r42,0xm210,-129v0,77,-20,129,-98,129r-82,0r0,-249r82,0v75,-1,98,44,98,120","w":227},"P":{"d":"159,-165v0,-50,-40,-49,-88,-47r0,99r46,0v29,1,42,-23,42,-52xm201,-165v0,72,-51,97,-130,89r0,76r-41,0r0,-249r87,0v54,0,84,29,84,84","w":215},"b":{"d":"106,-148v-14,0,-26,3,-37,6r0,110v47,10,74,-13,71,-60v-2,-31,-6,-55,-34,-56xm69,-174v59,-28,111,8,111,82v0,92,-63,105,-150,92r0,-255r39,0r0,81","w":195},"v":{"d":"48,-180r35,148r8,0r36,-148r40,0r-46,180r-68,0r-46,-180r41,0","w":173},"x":{"d":"50,-180r34,62r33,-62r42,0r-52,90r52,90r-42,0r-33,-62r-34,62r-42,0r51,-90r-51,-90r42,0","w":167},"6":{"d":"140,-76v0,-47,-56,-43,-87,-29v0,38,9,72,45,72v27,0,42,-15,42,-43xm106,-242v22,0,47,4,67,8r-3,36v-19,-3,-42,-6,-64,-6v-38,1,-53,25,-53,66v51,-24,129,-11,129,62v0,53,-32,80,-84,80v-64,0,-86,-51,-87,-122v0,-75,25,-124,95,-124"},"9":{"d":"93,-205v-38,-3,-55,49,-31,72v17,16,54,8,77,2v-1,-38,-8,-71,-46,-74xm181,-119v5,103,-64,142,-163,115r4,-35v20,3,41,6,64,6v37,-1,52,-26,53,-65v-57,23,-133,8,-129,-65v3,-52,33,-79,83,-79v65,0,85,50,88,123"},"\u00a5":{"d":"17,-139r42,0r-58,-99r45,0r52,93r51,-93r45,0r-58,99r41,0r0,34r-57,0v-4,4,-1,13,-2,20r59,0r0,34r-59,0r0,51r-41,0r0,-51r-60,0r0,-34r60,0v0,-7,1,-15,-1,-20r-59,0r0,-34","w":194},"<":{"d":"69,-105r85,49r0,41r-123,-69r0,-41r123,-69r0,41"},">":{"d":"35,-153r0,-41r123,69r0,41r-123,69r0,-41r85,-49"},"[":{"d":"96,-231r-44,0r0,237r44,0r0,38r-84,0r0,-314r84,0r0,39","w":108},"\\":{"d":"128,0r-110,-251r41,-2r110,252"},"]":{"d":"11,-270r84,0r0,314r-84,0r0,-38r44,0r0,-237r-44,0r0,-39","w":108},"|":{"d":"73,-270r41,0r0,360r-41,0r0,-360"},"\u00c6":{"d":"68,-89r56,0r0,-123r-26,0xm124,-51r-64,0r-13,51r-41,0r61,-249r208,0r0,37r-111,0r0,70r90,0r0,36r-90,0r0,69r111,0r0,37r-151,0r0,-51","w":294},"\u00b5":{"d":"130,-9v-17,10,-54,22,-67,1r0,88r-40,0r0,-260r40,0r0,98v-9,47,30,63,67,42r0,-140r40,0r0,180r-40,0r0,-9"},"\u03bc":{"d":"130,-9v-17,10,-54,22,-67,1r0,88r-40,0r0,-260r40,0r0,98v-9,47,30,63,67,42r0,-140r40,0r0,180r-40,0r0,-9"},"\u00e6":{"d":"237,-103v8,-44,-41,-61,-64,-35v-7,7,-9,20,-9,35r73,0xm85,-79v-30,-2,-30,50,-3,50v17,0,33,-4,45,-9v-3,-12,-2,-29,-2,-44xm32,-177v40,-4,99,-18,119,13v12,-13,27,-19,51,-20v61,-1,80,49,71,111r-109,0v-5,52,58,44,105,39r1,30v-37,9,-102,16,-125,-10v-41,25,-123,30,-123,-39v0,-57,53,-54,103,-59v8,-52,-50,-33,-92,-31","w":298},"\u0192":{"d":"170,-216v-41,-4,-65,-1,-58,47r55,0r0,35r-55,0r0,158v5,55,-40,73,-89,60r0,-30v28,2,50,4,50,-30r0,-158r-36,0r0,-35r36,0v-10,-69,29,-97,97,-79r0,32"},"\u0152":{"d":"56,-124v-4,70,24,101,97,88r0,-177r-41,-2v-49,0,-53,41,-56,91xm14,-124v-3,-98,46,-144,139,-125r152,0r0,37r-112,0r0,70r90,0r0,36r-90,0r0,69r112,0r0,37r-151,0v-13,2,-31,4,-46,4v-75,1,-91,-53,-94,-128","w":324},"\u0153":{"d":"254,-103v9,-46,-40,-57,-63,-35v-7,6,-10,20,-10,35r73,0xm64,-91v0,34,5,62,39,61v33,0,39,-27,39,-61v0,-36,-6,-58,-39,-58v-33,0,-39,23,-39,58xm181,-73v-4,51,58,44,105,39r1,30v-39,9,-106,17,-126,-15v-13,16,-30,23,-58,23v-59,1,-79,-35,-79,-95v0,-58,21,-93,79,-93v29,0,47,9,59,26v18,-34,89,-32,112,-4v16,20,22,56,16,89r-109,0","w":315},"4":{"d":"114,-41r-104,0r0,-32r64,-165r44,0r-63,160r59,0r0,-68r40,0r0,68r25,0r0,37r-25,0r0,44r-40,0r0,-44"},"\"":{"d":"14,-161r-1,-88r38,0r-1,88r-36,0xm75,-161r0,-88r38,0r-2,88r-36,0","w":120},"'":{"d":"-3,-249r39,0r-2,86r-36,0","w":36},"(":{"d":"6,-108v0,-63,18,-113,35,-162r43,0v-16,48,-34,101,-34,162v0,59,18,108,34,153r-43,0v-17,-45,-35,-94,-35,-153","w":93},")":{"d":"46,-272v44,83,43,230,0,315r-42,0v15,-47,34,-100,34,-161v0,-59,-19,-109,-34,-154r42,0","w":93},",":{"d":"21,-45r42,0r-21,89r-39,0","w":61},"-":{"d":"25,-116r108,0r0,37r-108,0r0,-37","w":158},".":{"d":"21,-52r42,0r0,52r-42,0r0,-52","w":89},"\/":{"d":"126,-257r38,13r-102,250r-37,-12"},":":{"d":"16,-52r43,0r0,52r-43,0r0,-52xm16,-161r43,0r0,52r-43,0r0,-52","w":74},";":{"d":"22,-161r42,0r0,52r-42,0r0,-52xm25,-50r42,0r-26,92r-37,0","w":80},"=":{"d":"19,-81r152,0r0,39r-152,0r0,-39xm19,-153r152,0r0,38r-152,0r0,-38"},"?":{"d":"40,-49r42,0r0,49r-42,0r0,-49xm3,-244v57,-20,138,-24,138,55v0,59,-60,58,-59,115r-40,0v-13,-58,48,-65,56,-110v8,-45,-57,-29,-90,-25","w":138},"_":{"d":"181,31r0,36r-171,0r0,-36r171,0"},"{":{"d":"48,-113v39,8,37,51,33,94v-2,22,12,26,32,28r0,39v-67,3,-72,-39,-72,-107v0,-24,-12,-30,-35,-37r0,-33v80,-4,-23,-153,107,-144r0,39v-41,-5,-32,37,-29,72v2,30,-14,42,-36,49","w":117},"}":{"d":"69,-112v-40,-6,-37,-50,-34,-93v1,-22,-11,-28,-32,-28r1,-39v67,-3,71,40,71,106v0,24,12,31,35,37r0,34v-73,3,8,122,-73,139v-9,2,-20,5,-33,5r-1,-39v41,4,32,-35,30,-72v-1,-30,14,-43,36,-50","w":117},"\u00a2":{"d":"49,-90v-6,49,44,42,88,39r1,34r-31,4r0,41r-34,0r0,-40v-45,-2,-64,-27,-64,-78v0,-49,22,-75,64,-78r0,-39r34,0r0,40v11,1,22,2,31,4r-1,34v-42,-2,-94,-11,-88,39","w":157},"\u2018":{"d":"49,-183r-40,0r19,-85r38,0","w":75},"\u2019":{"d":"27,-268r40,0r-20,85r-37,0","w":75},"\u00f7":{"d":"75,-58r39,0r0,43r-39,0r0,-43xm17,-121r156,0r0,39r-156,0r0,-39xm75,-188r39,0r0,43r-39,0r0,-43"},"\u00d8":{"d":"163,-189r-71,152v89,31,93,-90,71,-152xm71,-57r72,-154v-89,-36,-97,94,-72,154xm215,-123v6,94,-49,146,-140,121r-21,45r-24,-12r21,-46v-25,-22,-32,-60,-33,-108v0,-77,21,-131,98,-130v16,0,31,2,43,7r20,-43r26,10r-22,48v24,23,29,61,32,108","w":236},"&":{"d":"116,-219v-44,-1,-29,60,-5,72v17,-11,34,-18,34,-44v0,-18,-10,-28,-29,-28xm54,-75v-2,51,74,53,99,22r-63,-65v-19,5,-35,21,-36,43xm48,-198v1,-39,29,-55,68,-56v42,-1,69,19,69,59v-1,41,-25,55,-51,72r39,39v4,-12,7,-31,10,-45r38,1v-5,23,-10,49,-18,68r40,38r-24,27r-36,-33v-41,51,-169,46,-169,-47v0,-36,26,-59,53,-70v-12,-14,-19,-27,-19,-53","w":252},"*":{"d":"115,-176r14,42r-28,9r-14,-43r-37,28r-17,-23r38,-27r-37,-26r17,-24r36,26r15,-43r27,10r-14,42r44,0r0,29r-44,0"},"\u00a3":{"d":"109,-245v21,0,40,5,58,8r-2,34v-39,-5,-83,-13,-72,46r70,0r0,36r-70,0r0,85v27,0,54,1,73,-6r6,36v-41,11,-100,4,-153,6r0,-36r35,0r0,-85r-29,0r0,-36r29,0v-2,-51,8,-88,55,-88"},"\u00b6":{"d":"3,-183v0,-42,24,-68,67,-69r119,0r0,31r-23,0r0,221r-33,0r0,-221r-27,0r0,221r-34,0v-2,-37,4,-81,-2,-114v-43,-1,-67,-27,-67,-69"},"%":{"d":"148,-78v-17,0,-20,54,0,54v16,-1,17,-54,0,-54xm148,0v-29,0,-42,-20,-42,-52v0,-33,12,-51,42,-51v29,0,41,19,41,51v0,32,-12,52,-41,52xm46,-149v-29,0,-42,-20,-42,-52v0,-33,12,-51,42,-51v30,0,42,18,42,51v0,32,-13,51,-42,52xm122,-257r27,8r-80,255r-26,-8xm46,-174v16,0,20,-52,0,-54v-18,2,-17,52,0,54"},"+":{"d":"15,-121r61,0r0,-63r40,0r0,63r62,0r0,39r-62,0r0,62r-40,0r0,-62r-61,0r0,-39"},"\u00df":{"d":"105,-222v-25,-1,-39,8,-38,33r0,189r-40,0r0,-192v0,-49,28,-67,78,-66v50,1,74,10,78,54v5,46,-53,36,-53,70v22,25,75,21,75,72v0,70,-62,71,-120,59r1,-32v31,-1,84,14,78,-24v-6,-41,-81,-23,-75,-78v-5,-44,48,-32,53,-65v-1,-19,-15,-20,-37,-20","w":222},"\u201d":{"d":"100,-267r40,0r-20,84r-38,0xm33,-267r40,0r-20,84r-38,0","w":152},"\u00bf":{"d":"105,-130r-43,0r0,-50r43,0r0,50xm141,64v-53,21,-144,22,-138,-55v4,-57,59,-59,60,-115r40,0v12,58,-45,69,-57,110v-3,47,57,30,90,25","w":138},"\u00a1":{"d":"107,72r-43,0r1,-162r40,0xm106,-128r-42,0r0,-52r42,0r0,52","w":166},"^":{"d":"95,-199r-44,85r-41,0r64,-124r42,0r65,124r-42,0"},"\u00b7":{"d":"21,-132r42,0r0,52r-42,0r0,-52","w":89},"\u2026":{"d":"208,-52r42,0r0,52r-42,0r0,-52xm116,-52r42,0r0,52r-42,0r0,-52xm24,-52r43,0r0,52r-43,0r0,-52","w":267},"\u0394":{"d":"93,-209r-40,173r86,0r-39,-173r-7,0xm62,-246r68,0r49,214r0,32r-167,0r0,-33"},"\u2206":{"d":"93,-209r-40,173r86,0r-39,-173r-7,0xm62,-246r68,0r49,214r0,32r-167,0r0,-33"},"\u00a4":{"d":"95,-123v-34,-3,-44,51,-12,62v22,8,45,-7,44,-30v0,-20,-14,-31,-32,-32xm128,-31v-19,12,-46,12,-65,0r-26,26r-27,-27r26,-26v-11,-19,-13,-45,-1,-65r-25,-26r27,-27r26,26v19,-12,46,-12,65,0r26,-26r27,27r-26,26v11,19,11,46,0,65r26,26r-27,27"},"\u00ac":{"d":"171,-129r0,92r-38,0r0,-54r-114,0r0,-38r152,0"},"\u03a9":{"d":"53,-127v0,41,17,72,32,99r0,31r-73,0r0,-35r33,0v-43,-52,-59,-209,50,-209v111,0,93,154,51,209r33,0r0,35r-74,0r0,-31v15,-27,33,-59,33,-99v0,-40,-2,-77,-43,-77v-41,0,-42,37,-42,77"},"\u2126":{"d":"53,-127v0,41,17,72,32,99r0,31r-73,0r0,-35r33,0v-43,-52,-59,-209,50,-209v111,0,93,154,51,209r33,0r0,35r-74,0r0,-31v15,-27,33,-59,33,-99v0,-40,-2,-77,-43,-77v-41,0,-42,37,-42,77"},"\u0161":{"d":"26,-269r42,0r20,25r20,-25r42,0r-46,58r-32,0xm24,-105v-27,-77,66,-90,128,-71r-1,32v-31,-2,-99,-20,-90,23v30,23,97,6,97,68v0,67,-82,62,-136,49r1,-32v33,0,101,24,94,-24v-24,-21,-81,-11,-93,-45","w":177},"\u00fd":{"d":"129,-275r13,37r-88,29r-12,-33xm43,-180r37,142r8,0r37,-142r39,0r-67,257r-39,0r20,-77r-27,0r-47,-180r39,0","w":172},"\u017e":{"d":"22,-269r42,0r20,25r19,-25r43,0r-46,58r-33,0xm21,-180r130,0r0,35r-84,110r84,0r0,35r-130,0r0,-35r84,-110r-84,0r0,-35","w":172},"\u00d7":{"d":"95,-126r50,-50r27,27r-50,51r50,49r-28,27r-49,-49r-50,50r-28,-27r50,-50r-49,-50r28,-27"},"\u0160":{"d":"120,-284r-36,0r-48,-51r45,0r21,21r20,-21r45,0xm19,-184v0,-77,91,-76,155,-61r-1,34v-46,-2,-127,-23,-112,41v28,43,120,21,120,98v0,86,-90,83,-159,68r2,-35v48,4,132,22,114,-44v-34,-39,-119,-21,-119,-101","w":191},"\u0142":{"d":"27,-87r-17,11r-19,-27r36,-24r0,-128r39,0r0,100r19,-13r19,27r-38,26r0,115r-39,0r0,-87","w":92},"\u0141":{"d":"-7,-105r39,-27r0,-117r40,0r0,88r50,-35r20,29r-70,49r0,79r101,0r0,39r-141,0r0,-89r-20,13"},"\u00f0":{"d":"139,-112v-31,-14,-90,-18,-86,30v-8,48,53,65,75,31v8,-12,11,-33,11,-61xm10,-82v-2,-68,73,-89,129,-64v-1,-33,-21,-49,-46,-59r-38,29r-16,-23r21,-16v-11,-3,-20,-5,-32,-7r6,-34v23,4,43,7,62,14r35,-27r16,23r-21,16v35,20,55,51,55,104v1,75,-14,130,-88,129v-55,0,-81,-30,-83,-85"},"\u00d0":{"d":"112,-37v48,-1,56,-42,56,-92v0,-47,-8,-84,-56,-83r-42,0r0,68r49,0r0,39r-49,0r0,68r42,0xm210,-129v0,77,-20,129,-98,129r-82,0r0,-105r-24,0r0,-39r24,0r0,-105r82,0v75,-1,98,44,98,120","w":227},"\u00dd":{"d":"146,-344r13,37r-87,30r-13,-33xm122,0r-40,0r0,-107r-75,-142r45,0r50,100r49,-100r45,0r-74,142r0,107","w":202},"\u00de":{"d":"201,-127v0,74,-51,95,-130,88r0,39r-41,0r0,-249r41,0r0,37v77,-6,130,10,130,85xm159,-127v0,-48,-41,-49,-88,-46r0,95v49,3,88,1,88,-49","w":215},"\u00fe":{"d":"69,-173v58,-29,111,5,111,81v0,74,-33,105,-111,95r0,74r-39,0r0,-332r39,0r0,82xm69,-33v43,12,77,-8,71,-59v4,-46,-28,-68,-71,-50r0,109","w":196},"\u017d":{"d":"121,-283r-35,0r-49,-51r46,0r20,21r21,-21r44,0xm23,-249r159,0r0,41r-109,164r0,6r109,0r0,38r-159,0r0,-41r109,-164r0,-6r-109,0r0,-38","w":205},"\u00a6":{"d":"115,-62r0,152r-40,0r0,-152r40,0xm115,-270r0,148r-40,0r0,-148r40,0"},"\u011b":{"d":"29,-269r42,0r20,25r20,-25r42,0r-46,58r-32,0xm128,-103v8,-44,-40,-60,-63,-35v-6,8,-9,20,-9,35r72,0xm56,-73v-5,51,58,45,104,39r1,30v-19,5,-43,8,-68,8v-57,1,-76,-35,-76,-92v-1,-58,23,-95,76,-96v61,-1,82,50,71,111r-108,0","w":182},"\u010d":{"d":"18,-269r42,0r20,25r20,-25r43,0r-47,58r-32,0xm17,-92v-4,-81,55,-105,126,-86r-2,33v-48,-7,-84,-4,-84,53v0,55,32,68,85,57r1,34r-53,5v-57,-1,-70,-36,-73,-96","w":156},"\u0109":{"d":"64,-269r32,0r47,58r-43,0r-20,-25r-20,25r-42,0xm17,-92v-4,-81,55,-105,126,-86r-2,33v-48,-7,-84,-4,-84,53v0,55,32,68,85,57r1,34r-53,5v-57,-1,-70,-36,-73,-96","w":156},"\u0107":{"d":"117,-275r13,37r-88,29r-12,-33xm17,-92v-4,-81,55,-105,126,-86r-2,33v-48,-7,-84,-4,-84,53v0,55,32,68,85,57r1,34r-53,5v-57,-1,-70,-36,-73,-96","w":156},"\u011d":{"d":"79,-269r32,0r47,58r-43,0r-20,-25r-19,25r-43,0xm58,-121v0,21,10,31,30,31v20,0,32,-9,32,-31v0,-20,-11,-30,-32,-30v-20,0,-30,10,-30,30xm139,26v0,-32,-41,-18,-70,-24v-9,8,-14,13,-14,26v0,33,84,34,84,-2xm179,23v-3,45,-35,63,-82,63v-46,0,-81,-11,-81,-54v0,-22,13,-33,27,-45v-20,-11,-10,-42,2,-55v-16,-9,-28,-25,-27,-53v-1,-54,53,-72,104,-58r56,-1r0,32r-28,0v28,46,-14,105,-77,88v-5,11,-8,30,12,30v49,0,97,1,94,53"},"\u0125":{"d":"107,-148v-15,0,-28,5,-39,8r0,140r-40,0r0,-255r32,0r25,-31r32,0r46,58r-42,0r-20,-25v-11,9,-11,28,-33,25r0,54v13,-5,30,-10,47,-10v82,-2,57,107,61,184r-40,0r0,-94v0,-28,-2,-54,-29,-54","w":202},"\u0129":{"d":"19,-267v30,0,56,29,81,2r9,30v-16,24,-55,22,-79,6v-17,-7,-28,6,-38,13r-9,-30v10,-9,19,-21,36,-21xm28,-180r40,0r0,180r-40,0r0,-180","w":95},"\u013a":{"d":"83,-293r13,37r-30,10r0,246r-39,0r0,-233r-18,6r-13,-33","w":92},"\u0144":{"d":"138,-275r14,37r-88,29r-13,-33xm108,-148v-16,0,-26,5,-39,9r0,139r-39,0r0,-180r39,0r0,10v12,-7,30,-14,47,-14v82,-2,57,107,61,184r-40,0r0,-94v0,-28,-2,-54,-29,-54","w":203},"\u0148":{"d":"39,-269r43,0r20,25r19,-25r43,0r-46,58r-33,0xm108,-148v-16,0,-26,5,-39,9r0,139r-39,0r0,-180r39,0r0,10v12,-7,30,-14,47,-14v82,-2,57,107,61,184r-40,0r0,-94v0,-28,-2,-54,-29,-54","w":203},"\u015d":{"d":"73,-269r31,0r47,58r-42,0r-20,-25r-20,25r-42,0xm24,-105v-27,-77,66,-90,128,-71r-1,32v-31,-2,-99,-20,-90,23v30,23,97,6,97,68v0,67,-82,62,-136,49r1,-32v33,0,101,24,94,-24v-24,-21,-81,-11,-93,-45","w":177},"\u015b":{"d":"126,-275r13,37r-88,29r-12,-33xm24,-105v-27,-77,66,-90,128,-71r-1,32v-31,-2,-99,-20,-90,23v30,23,97,6,97,68v0,67,-82,62,-136,49r1,-32v33,0,101,24,94,-24v-24,-21,-81,-11,-93,-45","w":177},"\u0155":{"d":"103,-275r13,37r-88,29r-12,-33xm120,-142v-20,5,-38,9,-53,18r0,124r-40,0r0,-180r40,0r0,20v14,-11,32,-19,53,-24r0,42","w":128},"\u0169":{"d":"125,-251v12,-2,19,-8,28,-14r9,30v-16,24,-55,22,-79,6v-17,-7,-28,6,-38,13r-9,-30v10,-9,19,-20,36,-21v22,0,35,13,53,16xm95,-31v17,0,26,-6,39,-10r0,-139r39,0r0,180r-39,0r0,-9v-14,6,-28,12,-46,13v-84,3,-56,-107,-61,-184r39,0r0,94v1,32,1,54,29,55","w":201},"\u0159":{"d":"4,-269r43,0r20,25r19,-25r43,0r-46,58r-33,0xm120,-142v-20,5,-38,9,-53,18r0,124r-40,0r0,-180r40,0r0,20v14,-11,32,-19,53,-24r0,42","w":128},"\u0177":{"d":"71,-269r32,0r46,58r-42,0r-20,-25r-20,25r-42,0xm46,-180r37,142r8,0r37,-142r39,0r-67,257r-40,0r21,-77r-27,0r-47,-180r39,0","w":174},"\u0175":{"d":"120,-269r31,0r47,58r-42,0r-20,-25r-20,25r-43,0xm46,-180r27,144r9,0r33,-140r41,0r33,140r8,0r28,-144r39,0r-37,180r-65,0r-27,-123r-27,123r-64,0r-37,-180r39,0","w":271},"\u017a":{"d":"123,-275r14,37r-88,29r-12,-33xm21,-180r130,0r0,35r-84,110r84,0r0,35r-130,0r0,-35r84,-110r-84,0r0,-35","w":172},"\u016f":{"d":"102,-244v-7,0,-15,5,-15,13v0,8,7,15,15,14v7,0,13,-7,13,-14v0,-7,-6,-13,-13,-13xm101,-190v-24,0,-40,-16,-40,-41v0,-24,15,-40,40,-40v25,0,40,16,40,40v0,25,-16,41,-40,41xm95,-31v17,0,26,-6,39,-10r0,-139r39,0r0,180r-39,0r0,-9v-14,6,-28,12,-46,13v-84,3,-56,-107,-61,-184r39,0r0,94v1,32,1,54,29,55","w":201},"\u01fd":{"d":"189,-275r13,37r-88,29r-12,-33xm237,-103v8,-44,-41,-61,-64,-35v-7,7,-9,20,-9,35r73,0xm85,-79v-30,-2,-30,50,-3,50v17,0,33,-4,45,-9v-3,-12,-2,-29,-2,-44xm32,-177v40,-4,99,-18,119,13v12,-13,27,-19,51,-20v61,-1,80,49,71,111r-109,0v-5,52,58,44,105,39r1,30v-37,9,-102,16,-125,-10v-41,25,-123,30,-123,-39v0,-57,53,-54,103,-59v8,-52,-50,-33,-92,-31","w":298},"\u01ff":{"d":"118,-181v9,2,17,5,24,9r15,-37r-24,-9xm55,40r16,-39v-9,-2,-18,-5,-24,-9r-16,39xm64,-46v4,7,11,13,20,15r41,-103v-4,-7,-11,-12,-20,-14xm132,-275r13,37r-88,29r-12,-33xm17,-91v-4,-67,36,-103,101,-90r-13,33v-55,-14,-55,62,-41,102v-5,14,-10,27,-17,38v-24,-16,-28,-44,-30,-83xm142,-172v61,45,37,209,-71,173r13,-32v56,14,59,-64,41,-103"},"\u01fc":{"d":"184,-344r13,37r-88,30r-12,-33xm68,-89r56,0r0,-123r-26,0xm124,-51r-64,0r-13,51r-41,0r61,-249r208,0r0,37r-111,0r0,70r90,0r0,36r-90,0r0,69r111,0r0,37r-151,0r0,-51","w":294},"\u0106":{"d":"142,-344r14,37r-88,30r-13,-33xm59,-124v-3,66,22,102,93,87v8,-1,16,-1,24,-2r1,36v-22,2,-45,7,-68,7v-76,2,-91,-53,-91,-128v0,-76,16,-130,91,-129v24,0,47,4,68,8r-1,35r-62,-5v-50,0,-53,40,-55,91","w":191},"\u0154":{"d":"148,-344r13,37r-88,30r-12,-33xm70,-123v48,3,92,1,92,-46v0,-46,-45,-45,-92,-43r0,89xm203,-170v0,37,-14,61,-40,72r40,98r-44,0r-35,-88v-16,2,-36,1,-54,1r0,87r-40,0r0,-249v85,-1,173,-12,173,79","w":221},"\u011a":{"d":"132,-289r-35,0r-48,-51r45,0r21,21r20,-21r45,0xm30,-249r151,0r0,37r-111,0r0,70r90,0r0,36r-90,0r0,69r111,0r0,37r-151,0r0,-249","w":200},"\u010e":{"d":"126,-284r-35,0r-48,-51r45,0r21,21r20,-21r45,0xm112,-37v48,-1,56,-42,56,-92v0,-47,-8,-84,-56,-83r-42,0r0,175r42,0xm210,-129v0,77,-20,129,-98,129r-82,0r0,-249r82,0v75,-1,98,44,98,120","w":227},"\u010c":{"d":"126,-284r-35,0r-49,-51r46,0r20,21r21,-21r45,0xm59,-124v-3,66,22,102,93,87v8,-1,16,-1,24,-2r1,36v-22,2,-45,7,-68,7v-76,2,-91,-53,-91,-128v0,-76,16,-130,91,-129v24,0,47,4,68,8r-1,35r-62,-5v-50,0,-53,40,-55,91","w":191},"\u0114":{"d":"171,-334v0,70,-125,67,-126,0r41,0v1,23,44,24,44,0r41,0xm30,-249r151,0r0,37r-111,0r0,70r90,0r0,36r-90,0r0,69r111,0r0,37r-151,0r0,-249","w":200},"\u0112":{"d":"41,-325r120,0r0,34r-120,0r0,-34xm30,-249r151,0r0,37r-111,0r0,70r90,0r0,36r-90,0r0,69r111,0r0,37r-151,0r0,-249","w":200},"\u015e":{"d":"108,15v25,0,42,4,42,31v0,36,-38,40,-69,31r1,-23v14,0,36,3,34,-11v1,-13,-14,-9,-26,-10r0,-29v-23,-1,-48,-4,-68,-8r2,-35v48,4,132,22,114,-44v-34,-39,-119,-21,-119,-101v0,-77,91,-76,155,-61r-1,34v-46,-2,-127,-23,-112,41v28,43,122,21,120,98v-1,51,-24,74,-73,76r0,11","w":191},"\u0176":{"d":"83,-336r36,0r48,52r-45,0r-20,-21r-21,21r-45,0xm122,0r-40,0r0,-107r-75,-142r45,0r50,100r49,-100r45,0r-74,142r0,107","w":202},"\u015c":{"d":"80,-336r36,0r48,52r-45,0r-20,-21r-21,21r-45,0xm19,-184v0,-77,91,-76,155,-61r-1,34v-46,-2,-127,-23,-112,41v28,43,120,21,120,98v0,86,-90,83,-159,68r2,-35v48,4,132,22,114,-44v-34,-39,-119,-21,-119,-101","w":191},"\u0139":{"d":"127,-344r13,37r-87,30r-13,-33xm30,0r0,-249r40,0r0,211r94,0r0,38r-134,0","w":178},"\u0143":{"d":"162,-344r13,37r-88,30r-12,-33xm30,-249r69,0r76,207r6,0r0,-207r40,0r0,249r-67,0r-78,-207r-5,0r0,207r-41,0r0,-249","w":250},"\u012a":{"d":"-12,-329r120,0r0,34r-120,0r0,-34xm27,-249r41,0r0,249r-41,0r0,-249","w":95},"\u012c":{"d":"111,-334v0,70,-125,67,-126,0r41,0v0,25,44,23,44,0r41,0xm27,-249r41,0r0,249r-41,0r0,-249","w":95},"\u0130":{"d":"28,-327r39,0r0,42r-39,0r0,-42xm27,-249r41,0r0,249r-41,0r0,-249","w":95},"\u0134":{"d":"38,-334r36,0r47,51r-44,0r-21,-20r-20,20r-46,0xm13,-10v25,-1,31,-7,31,-32r0,-207r40,0r0,209v3,50,-21,66,-71,65r0,-35","w":111},"\u0128":{"d":"78,-317v10,-3,20,-10,29,-15r8,30v-10,10,-20,20,-36,22v-32,-5,-66,-32,-89,-2r-9,-30v10,-10,20,-21,37,-22v24,0,41,14,60,17xm27,-249r41,0r0,249r-41,0r0,-249","w":95},"\u0124":{"d":"103,-334r36,0r47,51r-45,0r-20,-20r-20,20r-46,0xm172,-108r-102,0r0,108r-40,0r0,-249r40,0r0,104r102,0r0,-104r40,0r0,249r-40,0r0,-108","w":241},"\u0120":{"d":"91,-330r39,0r0,42r-39,0r0,-42xm60,-125v0,70,25,104,96,88r0,-61r-30,0r0,-35r69,0r0,130v-24,4,-53,7,-80,7v-76,1,-97,-53,-97,-129v0,-76,19,-129,95,-128v29,0,58,3,82,9r-1,35r-74,-6v-52,-1,-60,38,-60,90","w":216},"\u010a":{"d":"86,-327r39,0r0,42r-39,0r0,-42xm59,-124v-3,66,22,102,93,87v8,-1,16,-1,24,-2r1,36v-22,2,-45,7,-68,7v-76,2,-91,-53,-91,-128v0,-76,16,-130,91,-129v24,0,47,4,68,8r-1,35r-62,-5v-50,0,-53,40,-55,91","w":191},"\u0100":{"d":"49,-326r119,0r0,34r-119,0r0,-34xm72,-89r73,0r-29,-125r-14,0xm71,-249r77,0r59,249r-40,0r-15,-51r-88,0r-13,51r-41,0","w":217},"\u0102":{"d":"171,-334v4,49,-75,66,-108,37v-10,-10,-16,-22,-17,-37r40,0v1,24,44,24,45,0r40,0xm72,-89r73,0r-29,-125r-14,0xm71,-249r77,0r59,249r-40,0r-15,-51r-88,0r-13,51r-41,0","w":217},"\u01fa":{"d":"109,-277v-20,0,-26,25,-7,28v14,2,26,-2,25,-14v-1,-9,-7,-14,-18,-14xm143,-379r13,37r-88,30r-12,-33xm72,-89r73,0r-29,-125r-14,0xm109,-305v38,0,62,36,41,67r57,238r-40,0r-15,-51r-88,0r-13,51r-41,0r58,-238v-21,-30,2,-67,41,-67","w":217},"\u0147":{"d":"143,-283r-35,0r-48,-51r45,0r21,21r20,-21r45,0xm30,-249r69,0r76,207r6,0r0,-207r40,0r0,249r-67,0r-78,-207r-5,0r0,207r-41,0r0,-249","w":250},"\u011c":{"d":"96,-336r36,0r48,52r-45,0r-21,-21r-20,21r-45,0xm60,-125v0,70,25,104,96,88r0,-61r-30,0r0,-35r69,0r0,130v-24,4,-53,7,-80,7v-76,1,-97,-53,-97,-129v0,-76,19,-129,95,-128v29,0,58,3,82,9r-1,35r-74,-6v-52,-1,-60,38,-60,90","w":216},"\u011e":{"d":"178,-334v0,70,-125,67,-126,0r41,0v1,23,43,24,44,0r41,0xm60,-125v0,70,25,104,96,88r0,-61r-30,0r0,-35r69,0r0,130v-24,4,-53,7,-80,7v-76,1,-97,-53,-97,-129v0,-76,19,-129,95,-128v29,0,58,3,82,9r-1,35r-74,-6v-52,-1,-60,38,-60,90","w":216},"\u014c":{"d":"57,-326r119,0r0,34r-119,0r0,-34xm215,-123v0,78,-23,127,-99,127v-76,0,-98,-50,-98,-127v0,-77,21,-130,98,-130v78,0,99,52,99,130xm60,-123v0,50,6,90,56,90v51,0,57,-39,57,-90v0,-56,-7,-93,-57,-93v-50,0,-56,43,-56,93","w":232},"\u014e":{"d":"179,-334v4,49,-75,66,-108,37v-10,-10,-16,-22,-17,-37r40,0v1,24,44,24,45,0r40,0xm215,-123v0,78,-23,127,-99,127v-76,0,-98,-50,-98,-127v0,-77,21,-130,98,-130v78,0,99,52,99,130xm60,-123v0,50,6,90,56,90v51,0,57,-39,57,-90v0,-56,-7,-93,-57,-93v-50,0,-56,43,-56,93","w":232},"\u0158":{"d":"129,-284r-35,0r-49,-51r46,0r20,21r21,-21r44,0xm70,-123v48,3,92,1,92,-46v0,-46,-45,-45,-92,-43r0,89xm203,-170v0,37,-14,61,-40,72r40,98r-44,0r-35,-88v-16,2,-36,1,-54,1r0,87r-40,0r0,-249v85,-1,173,-12,173,79","w":221},"\u015a":{"d":"132,-344r13,37r-87,30r-13,-33xm19,-184v0,-77,91,-76,155,-61r-1,34v-46,-2,-127,-23,-112,41v28,43,120,21,120,98v0,86,-90,83,-159,68r2,-35v48,4,132,22,114,-44v-34,-39,-119,-21,-119,-101","w":191},"\u0164":{"d":"105,-284r-35,0r-48,-51r45,0r20,21r21,-21r45,0xm3,-249r168,0r0,39r-63,0r0,210r-40,0r0,-210r-65,0r0,-39","w":174},"\u0168":{"d":"84,-337v32,4,65,31,88,2r9,30v-10,10,-19,22,-37,22v-21,0,-40,-14,-59,-18v-12,2,-20,9,-29,16r-9,-30v10,-10,21,-20,37,-22xm116,3v-62,0,-89,-23,-89,-83r0,-169r40,0r0,169v0,33,16,45,49,45v34,0,49,-12,49,-45r0,-169r40,0r0,169v0,60,-27,83,-89,83","w":232},"\u017c":{"d":"66,-249r39,0r0,41r-39,0r0,-41xm21,-180r130,0r0,35r-84,110r84,0r0,35r-130,0r0,-35r84,-110r-84,0r0,-35","w":172},"\u016b":{"d":"45,-260r112,0r0,34r-112,0r0,-34xm95,-31v17,0,26,-6,39,-10r0,-139r39,0r0,180r-39,0r0,-9v-14,6,-28,12,-46,13v-84,3,-56,-107,-61,-184r39,0r0,94v1,32,1,54,29,55","w":201},"\u016d":{"d":"165,-267v3,53,-76,72,-111,40v-11,-10,-17,-24,-18,-40r40,0v1,14,9,20,24,20v15,0,24,-6,25,-20r40,0xm95,-31v17,0,26,-6,39,-10r0,-139r39,0r0,180r-39,0r0,-9v-14,6,-28,12,-46,13v-84,3,-56,-107,-61,-184r39,0r0,94v1,32,1,54,29,55","w":201},"\u0101":{"d":"38,-260r112,0r0,34r-112,0r0,-34xm58,-54v0,34,42,26,62,17r0,-45v-28,2,-62,-4,-62,28xm27,-176v55,-10,140,-22,132,53v5,33,-14,87,17,94r-2,33v-24,0,-35,-4,-48,-13v-40,23,-108,16,-108,-44v0,-55,52,-55,102,-59v10,-52,-50,-33,-92,-32","w":189},"\u0103":{"d":"159,-267v3,53,-76,72,-111,40v-11,-10,-17,-24,-18,-40r40,0v1,14,9,20,24,20v15,0,23,-6,24,-20r41,0xm58,-54v0,34,42,26,62,17r0,-45v-28,2,-62,-4,-62,28xm27,-176v55,-10,140,-22,132,53v5,33,-14,87,17,94r-2,33v-24,0,-35,-4,-48,-13v-40,23,-108,16,-108,-44v0,-55,52,-55,102,-59v10,-52,-50,-33,-92,-32","w":189},"\u010b":{"d":"66,-249r39,0r0,41r-39,0r0,-41xm17,-92v-4,-81,55,-105,126,-86r-2,33v-48,-7,-84,-4,-84,53v0,55,32,68,85,57r1,34r-53,5v-57,-1,-70,-36,-73,-96","w":156},"\u016a":{"d":"56,-326r120,0r0,34r-120,0r0,-34xm116,3v-62,0,-89,-23,-89,-83r0,-169r40,0r0,169v0,33,16,45,49,45v34,0,49,-12,49,-45r0,-169r40,0r0,169v0,60,-27,83,-89,83","w":232},"\u016c":{"d":"179,-334v0,70,-125,67,-126,0r41,0v1,23,44,24,44,0r41,0xm116,3v-62,0,-89,-23,-89,-83r0,-169r40,0r0,169v0,33,16,45,49,45v34,0,49,-12,49,-45r0,-169r40,0r0,169v0,60,-27,83,-89,83","w":232},"\u016e":{"d":"116,-317v-11,0,-18,5,-18,14v0,10,7,15,18,15v11,0,19,-5,19,-15v0,-10,-8,-14,-19,-14xm116,-345v28,0,49,14,49,42v0,28,-19,42,-49,42v-30,0,-49,-14,-49,-42v0,-28,21,-42,49,-42xm116,3v-62,0,-89,-23,-89,-83r0,-169r40,0r0,169v0,33,16,45,49,45v34,0,49,-12,49,-45r0,-169r40,0r0,169v0,60,-27,83,-89,83","w":232},"\u0174":{"d":"148,-336r36,0r47,52r-44,0r-21,-21r-20,21r-46,0xm55,-249r39,213r8,0r41,-210r46,0r42,210r8,0r39,-213r42,0r-50,249r-67,0r-37,-192r-36,192r-67,0r-51,-249r43,0","w":332},"\u0179":{"d":"139,-344r13,37r-88,30r-12,-33xm23,-249r159,0r0,41r-109,164r0,6r109,0r0,38r-159,0r0,-41r109,-164r0,-6r-109,0r0,-38","w":205},"\u017b":{"d":"83,-327r39,0r0,42r-39,0r0,-42xm23,-249r159,0r0,41r-109,164r0,6r109,0r0,38r-159,0r0,-41r109,-164r0,-6r-109,0r0,-38","w":205},"\u0116":{"d":"88,-327r39,0r0,42r-39,0r0,-42xm30,-249r151,0r0,37r-111,0r0,70r90,0r0,36r-90,0r0,69r111,0r0,37r-151,0r0,-249","w":200},"\u0108":{"d":"89,-336r36,0r47,52r-44,0r-21,-21r-20,21r-46,0xm59,-124v-3,66,22,102,93,87v8,-1,16,-1,24,-2r1,36v-22,2,-45,7,-68,7v-76,2,-91,-53,-91,-128v0,-76,16,-130,91,-129v24,0,47,4,68,8r-1,35r-62,-5v-50,0,-53,40,-55,91","w":191},"\u0113":{"d":"36,-260r112,0r0,34r-112,0r0,-34xm128,-103v8,-44,-40,-60,-63,-35v-6,8,-9,20,-9,35r72,0xm56,-73v-5,51,58,45,104,39r1,30v-19,5,-43,8,-68,8v-57,1,-76,-35,-76,-92v-1,-58,23,-95,76,-96v61,-1,82,50,71,111r-108,0","w":182},"\u0115":{"d":"157,-267v3,53,-77,72,-112,40v-11,-10,-17,-24,-18,-40r41,0v1,14,9,20,24,20v15,0,23,-6,24,-20r41,0xm128,-103v8,-44,-40,-60,-63,-35v-6,8,-9,20,-9,35r72,0xm56,-73v-5,51,58,45,104,39r1,30v-19,5,-43,8,-68,8v-57,1,-76,-35,-76,-92v-1,-58,23,-95,76,-96v61,-1,82,50,71,111r-108,0","w":182},"\u0117":{"d":"72,-249r39,0r0,41r-39,0r0,-41xm128,-103v8,-44,-40,-60,-63,-35v-6,8,-9,20,-9,35r72,0xm56,-73v-5,51,58,45,104,39r1,30v-19,5,-43,8,-68,8v-57,1,-76,-35,-76,-92v-1,-58,23,-95,76,-96v61,-1,82,50,71,111r-108,0","w":182},"\u011f":{"d":"160,-267v3,53,-77,72,-112,40v-11,-10,-17,-24,-18,-40r41,0v1,14,9,20,24,20v15,0,23,-6,24,-20r41,0xm58,-121v0,21,10,31,30,31v20,0,32,-9,32,-31v0,-20,-11,-30,-32,-30v-20,0,-30,10,-30,30xm139,26v0,-32,-41,-18,-70,-24v-9,8,-14,13,-14,26v0,33,84,34,84,-2xm179,23v-3,45,-35,63,-82,63v-46,0,-81,-11,-81,-54v0,-22,13,-33,27,-45v-20,-11,-10,-42,2,-55v-16,-9,-28,-25,-27,-53v-1,-54,53,-72,104,-58r56,-1r0,32r-28,0v28,46,-14,105,-77,88v-5,11,-8,30,12,30v49,0,97,1,94,53"},"\u0121":{"d":"76,-249r39,0r0,41r-39,0r0,-41xm58,-121v0,21,10,31,30,31v20,0,32,-9,32,-31v0,-20,-11,-30,-32,-30v-20,0,-30,10,-30,30xm139,26v0,-32,-41,-18,-70,-24v-9,8,-14,13,-14,26v0,33,84,34,84,-2xm179,23v-3,45,-35,63,-82,63v-46,0,-81,-11,-81,-54v0,-22,13,-33,27,-45v-20,-11,-10,-42,2,-55v-16,-9,-28,-25,-27,-53v-1,-54,53,-72,104,-58r56,-1r0,32r-28,0v28,46,-14,105,-77,88v-5,11,-8,30,12,30v49,0,97,1,94,53"},"\u012d":{"d":"113,-267v3,53,-77,72,-112,40v-11,-10,-17,-24,-18,-40r41,0v1,14,9,20,24,20v15,0,23,-6,24,-20r41,0xm28,-180r40,0r0,180r-40,0r0,-180","w":95},"\u012b":{"d":"-8,-260r112,0r0,34r-112,0r0,-34xm28,-180r40,0r0,180r-40,0r0,-180","w":95},"\u0237":{"d":"-11,54v23,-13,39,-20,39,-56r0,-178r40,0r-2,209v-9,31,-31,44,-60,58","w":93},"\u0135":{"d":"31,-269r32,0r46,58r-42,0r-20,-25r-20,25r-42,0xm-11,54v23,-13,39,-20,39,-56r0,-178r40,0r-2,209v-9,31,-31,44,-60,58","w":93},"\u014d":{"d":"39,-260r112,0r0,34r-112,0r0,-34xm57,-91v0,34,6,61,38,61v33,0,39,-27,39,-61v0,-32,-7,-58,-39,-58v-32,0,-38,24,-38,58xm17,-91v0,-59,21,-92,78,-93v57,0,79,36,79,93v0,57,-21,96,-79,95v-58,0,-78,-36,-78,-95"},"\u014f":{"d":"160,-267v3,53,-77,72,-112,40v-11,-10,-17,-24,-18,-40r41,0v1,14,9,20,24,20v15,0,23,-6,24,-20r41,0xm57,-91v0,34,6,61,38,61v33,0,39,-27,39,-61v0,-32,-7,-58,-39,-58v-32,0,-38,24,-38,58xm17,-91v0,-59,21,-92,78,-93v57,0,79,36,79,93v0,57,-21,96,-79,95v-58,0,-78,-36,-78,-95"},"\u00b9":{"d":"45,-284r30,0r0,112r-33,0r0,-77r-19,14r-15,-23","w":95},"\u00b2":{"d":"7,-284v35,-5,82,-12,79,31v-2,27,-24,36,-38,52r38,0r0,29r-80,0r0,-27v15,-17,38,-27,46,-50v-1,-15,-29,-6,-44,-6","w":95},"\u00b3":{"d":"22,-242v13,-1,34,4,33,-9v-1,-16,-30,-6,-44,-6r-2,-28v33,-4,80,-8,80,28v0,12,-6,22,-12,26v31,22,8,75,-41,63r-28,-3r2,-28v16,-1,48,10,48,-8v0,-15,-23,-7,-36,-9r0,-26","w":95},"\u015f":{"d":"94,15v26,-1,43,6,43,31v0,36,-38,39,-70,31r1,-23v14,0,35,3,35,-11v0,-12,-14,-10,-26,-10r0,-29r-55,-8r1,-32v33,0,101,24,94,-24v-28,-24,-97,-7,-97,-68v0,-65,79,-60,132,-48r-1,32v-31,-2,-99,-20,-90,23v30,23,99,6,97,68v-1,39,-26,56,-64,57r0,11","w":177},"\u0105":{"d":"58,-54v0,34,42,26,62,17r0,-45v-28,2,-62,-4,-62,28xm174,4v-21,-3,-37,32,-17,38r15,-1r4,32v-30,8,-72,3,-70,-30v1,-22,17,-36,29,-46v-16,-14,-37,11,-63,7v-50,5,-71,-68,-38,-97v19,-16,54,-16,86,-19v10,-52,-50,-33,-92,-32r-1,-32v55,-10,140,-22,132,53v5,33,-14,87,17,94","w":189},"\u0104":{"d":"72,-89r73,0r-29,-125r-14,0xm207,0v-5,7,-36,34,-11,42r15,-1r4,32v-57,23,-96,-38,-45,-73r-3,0r-15,-51r-88,0r-13,51r-41,0r61,-249r77,0","w":217},"\u0118":{"d":"114,43v0,-21,14,-33,25,-43r-109,0r0,-249r151,0r0,37r-111,0r0,70r90,0r0,36r-90,0r0,69r111,0r0,37v-14,3,-23,17,-26,31v-2,13,13,11,25,10r4,32v-31,7,-70,5,-70,-30","w":200},"\u012e":{"d":"75,73v-59,22,-95,-38,-45,-73r-3,0r0,-249r41,0r0,249v-9,9,-35,33,-12,42r16,-1","w":95},"\u0172":{"d":"151,0v-9,6,-34,34,-12,42r16,-1r3,32v-30,8,-71,4,-69,-30v1,-19,12,-30,21,-40v-121,8,-74,-148,-83,-252r40,0r0,169v0,33,16,45,49,45v34,0,49,-12,49,-45r0,-169r40,0v-10,91,34,229,-54,249","w":232},"\u0110":{"d":"112,-37v48,-1,56,-42,56,-92v0,-47,-8,-84,-56,-83r-42,0r0,68r49,0r0,39r-49,0r0,68r42,0xm210,-129v0,77,-20,129,-98,129r-82,0r0,-105r-24,0r0,-39r24,0r0,-105r82,0v75,-1,98,44,98,120","w":227},"\u0171":{"d":"85,-286r31,20r-48,60r-29,-19xm157,-286r31,20r-49,60r-28,-19xm95,-31v17,0,26,-6,39,-10r0,-139r39,0r0,180r-39,0r0,-9v-14,6,-28,12,-46,13v-84,3,-56,-107,-61,-184r39,0r0,94v1,32,1,54,29,55","w":201},"\u0170":{"d":"86,-345r35,15r-38,60r-33,-13xm162,-344r35,15r-38,59r-33,-13xm116,3v-62,0,-89,-23,-89,-83r0,-169r40,0r0,169v0,33,16,45,49,45v34,0,49,-12,49,-45r0,-169r40,0r0,169v0,60,-27,83,-89,83","w":232},"\u0173":{"d":"173,0v-16,2,-37,34,-17,42r16,-1r3,32v-30,8,-72,3,-70,-30v1,-22,17,-36,29,-46r0,-6v-14,6,-28,12,-46,13v-84,3,-56,-107,-61,-184r39,0r0,94v1,32,1,54,29,55v17,0,26,-6,39,-10r0,-139r39,0r0,180","w":201},"\u0150":{"d":"86,-347r35,15r-38,59r-33,-13xm162,-347r35,15r-38,59r-33,-12xm215,-123v0,78,-23,127,-99,127v-76,0,-98,-50,-98,-127v0,-77,21,-130,98,-130v78,0,99,52,99,130xm60,-123v0,50,6,90,56,90v51,0,57,-39,57,-90v0,-56,-7,-93,-57,-93v-50,0,-56,43,-56,93","w":232},"\u01fe":{"d":"215,-123v0,78,-23,127,-99,127v-76,0,-98,-50,-98,-127v0,-77,21,-130,98,-130v78,0,99,52,99,130xm60,-123v0,50,6,90,56,90v51,0,57,-39,57,-90v0,-56,-7,-93,-57,-93v-50,0,-56,43,-56,93xm149,-344r14,37r-88,30r-12,-33","w":236},"\u0119":{"d":"128,-103v8,-44,-40,-60,-63,-35v-6,8,-9,20,-9,35r72,0xm161,-4v-22,1,-44,35,-23,45r15,-2r4,32v-30,8,-71,4,-70,-29v0,-16,12,-31,20,-39v-64,8,-90,-29,-90,-91v0,-58,23,-95,76,-96v61,-1,82,50,71,111r-108,0v-5,51,58,45,104,39","w":182},"\u014b":{"d":"109,-148v-15,0,-28,5,-39,9r0,139r-39,0r0,-180r39,0r0,10v13,-7,30,-14,47,-14v81,-2,58,106,61,183v2,54,-25,71,-62,89r-17,-33v21,-14,40,-21,40,-54r0,-95v0,-28,-3,-54,-30,-54","w":203},"\u014a":{"d":"149,37v27,0,32,-9,31,-37r-26,0r-78,-207r-5,0r0,207r-41,0r0,-249r69,0r76,207r5,0r1,-207r40,0r0,256v1,50,-21,68,-72,66r0,-36","w":250},"\u013e":{"d":"140,-159r-38,0r0,-90r38,0r0,90xm27,-255r39,0r0,255r-39,0r0,-255","w":150},"\u013d":{"d":"163,-159r-38,0r0,-90r38,0r0,90xm30,0r0,-249r40,0r0,211r94,0r0,38r-134,0","w":178},"\u010f":{"d":"243,-159r-38,0r0,-90r38,0r0,90xm57,-90v-4,51,29,73,71,49r0,-104v-5,-2,-24,-5,-35,-4v-28,1,-34,27,-36,59xm17,-91v-3,-72,43,-106,111,-88r0,-76r39,0r0,255r-39,0r0,-9v-12,7,-26,13,-44,13v-53,-1,-65,-41,-67,-95","w":271},"\u012f":{"d":"26,-249r40,0r0,41r-40,0r0,-41xm51,76v-56,11,-57,-59,-23,-76r-2,0r0,-180r40,0r-1,180v-7,9,-19,16,-21,31v-1,13,13,11,25,10r4,32v-7,2,-13,2,-22,3","w":91},"\u01fb":{"d":"95,-217v11,0,19,-15,10,-23v-8,3,-18,4,-24,9v-1,7,7,14,14,14xm58,-54v0,34,42,26,62,17r0,-45v-28,2,-62,-4,-62,28xm95,-190v-39,1,-40,-40,-51,-67r87,-34r13,38r-14,4v13,29,-5,58,-35,59xm27,-176v55,-10,140,-22,132,53v5,33,-14,87,17,94r-2,33v-24,0,-35,-4,-48,-13v-40,23,-108,16,-108,-44v0,-55,52,-55,102,-59v10,-52,-50,-33,-92,-32","w":189},"\u0151":{"d":"71,-286r31,20r-49,60r-29,-19xm142,-286r32,20r-49,60r-29,-19xm57,-91v0,34,6,61,38,61v33,0,39,-27,39,-61v0,-32,-7,-58,-39,-58v-32,0,-38,24,-38,58xm17,-91v0,-59,21,-92,78,-93v57,0,79,36,79,93v0,57,-21,96,-79,95v-58,0,-78,-36,-78,-95"},"\u0111":{"d":"57,-90v-4,51,29,73,71,49r0,-104v-5,-2,-24,-5,-35,-4v-28,1,-34,27,-36,59xm17,-91v-3,-72,43,-106,111,-88r0,-45r-74,0r0,-34r113,0r0,258r-39,0r0,-9v-12,7,-26,13,-44,13v-53,-1,-65,-41,-67,-95","w":195},"\u0127":{"d":"107,-148v-15,0,-28,5,-39,8r0,140r-40,0r0,-199r-21,0r0,-34r21,0r0,-22r40,0r0,22r52,0r0,34r-52,0r0,25v13,-5,30,-10,47,-10v82,-2,57,107,61,184r-40,0r0,-94v0,-28,-2,-54,-29,-54","w":202},"\u0165":{"d":"175,-159r-38,0r0,-90r38,0r0,90xm118,0v-53,12,-88,-3,-88,-63r0,-82r-21,0r0,-34r21,0r0,-53r39,0r0,53r48,0r0,34r-48,0v6,47,-25,129,47,113","w":185},"\u0167":{"d":"118,0v-60,15,-97,-11,-88,-81r-19,0r0,-34r19,0r0,-30r-21,0r0,-34r21,0r0,-53r39,0r0,53r48,0r0,34r-48,0r0,30r46,0r0,34r-46,0v-4,38,7,58,47,49","w":127},"\u0126":{"d":"172,-145r0,-33r-102,0r0,33r102,0xm4,-212r26,0r0,-37r40,0r0,37r102,0r0,-37r40,0r0,37r31,0r0,34r-31,0r0,178r-40,0r0,-108r-102,0r0,108r-40,0r0,-178r-26,0r0,-34","w":241},"\u0166":{"d":"15,-132r53,0r0,-78r-65,0r0,-39r168,0r0,39r-63,0r0,78r55,0r0,34r-55,0r0,98r-40,0r0,-98r-53,0r0,-34","w":174},"\u0122":{"d":"97,28r38,0r-19,80r-35,0xm60,-125v0,70,25,104,96,88r0,-61r-30,0r0,-35r69,0r0,130v-24,4,-53,7,-80,7v-76,1,-97,-53,-97,-129v0,-76,19,-129,95,-128v29,0,58,3,82,9r-1,35r-74,-6v-52,-1,-60,38,-60,90","w":216},"\u013b":{"d":"78,28r38,0r-19,80r-35,0xm30,0r0,-249r40,0r0,211r94,0r0,38r-134,0","w":178},"\u0145":{"d":"114,28r38,0r-19,80r-35,0xm30,-249r69,0r76,207r6,0r0,-207r40,0r0,249r-67,0r-78,-207r-5,0r0,207r-41,0r0,-249","w":250},"\u0156":{"d":"100,28r38,0r-19,80r-35,0xm70,-123v48,3,92,1,92,-46v0,-46,-45,-45,-92,-43r0,89xm203,-170v0,37,-14,61,-40,72r40,98r-44,0r-35,-88v-16,2,-36,1,-54,1r0,87r-40,0r0,-249v85,-1,173,-12,173,79","w":221},"\u0218":{"d":"85,28r38,0r-19,80r-35,0xm19,-184v0,-77,91,-76,155,-61r-1,34v-46,-2,-127,-23,-112,41v28,43,120,21,120,98v0,86,-90,83,-159,68r2,-35v48,4,132,22,114,-44v-34,-39,-119,-21,-119,-101","w":191},"\u0162":{"d":"76,28r38,0r-19,80r-35,0xm3,-249r168,0r0,39r-63,0r0,210r-40,0r0,-210r-65,0r0,-39","w":174},"\u0146":{"d":"90,28r38,0r-19,80r-35,0xm108,-148v-16,0,-26,5,-39,9r0,139r-39,0r0,-180r39,0r0,10v12,-7,30,-14,47,-14v82,-2,57,107,61,184r-40,0r0,-94v0,-28,-2,-54,-29,-54","w":203},"\u013c":{"d":"35,28r38,0r-19,80r-35,0xm27,-255r39,0r0,255r-39,0r0,-255","w":92},"\u0137":{"d":"80,28r38,0r-19,80r-35,0xm30,0r0,-255r39,0r0,146r19,-3r42,-68r45,0r-52,84r53,96r-44,0r-43,-74r-20,3r0,71r-39,0","w":183},"\u0163":{"d":"53,28r38,0r-19,80r-35,0xm118,0v-53,12,-88,-3,-88,-63r0,-82r-21,0r0,-34r21,0r0,-53r39,0r0,53r48,0r0,34r-48,0v6,47,-25,129,47,113","w":127},"\u0219":{"d":"77,28r39,0r-20,80r-34,0xm24,-105v-27,-77,66,-90,128,-71r-1,32v-31,-2,-99,-20,-90,23v30,23,97,6,97,68v0,67,-82,62,-136,49r1,-32v33,0,101,24,94,-24v-24,-21,-81,-11,-93,-45","w":177},"\u0157":{"d":"53,28r38,0r-19,80r-35,0xm120,-142v-20,5,-38,9,-53,18r0,124r-40,0r0,-180r40,0r0,20v14,-11,32,-19,53,-24r0,42","w":128},"\u0123":{"d":"102,-211r-39,0r19,-80r35,0xm58,-121v0,21,10,31,30,31v20,0,32,-9,32,-31v0,-20,-11,-30,-32,-30v-20,0,-30,10,-30,30xm139,26v0,-32,-41,-18,-70,-24v-9,8,-14,13,-14,26v0,33,84,34,84,-2xm179,23v-3,45,-35,63,-82,63v-46,0,-81,-11,-81,-54v0,-22,13,-33,27,-45v-20,-11,-10,-42,2,-55v-16,-9,-28,-25,-27,-53v-1,-54,53,-72,104,-58r56,-1r0,32r-28,0v28,46,-14,105,-77,88v-5,11,-8,30,12,30v49,0,97,1,94,53"},"\u0136":{"d":"95,28r39,0r-20,80r-34,0xm103,-104r-33,3r0,101r-40,0r0,-249r40,0r0,111r32,-3r50,-108r47,0r-61,124r64,125r-48,0","w":213}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Generated in 2009 by FontLab Studio. Copyright info pending.
 */
Cufon.registerFont({"w":190,"face":{"font-family":"TitilliumMaps26L550","font-weight":550,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-18 -374 360 104","underline-thickness":"10.8","underline-position":"-25.2","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":84},"\u00a0":{"w":84},"C":{"d":"113,-26v22,0,43,-4,62,-6r1,29v-22,2,-43,7,-67,7v-74,1,-91,-54,-90,-129v0,-75,15,-130,90,-129v25,0,47,4,67,8r-1,28r-62,-6v-56,-1,-61,43,-61,99v0,56,5,100,61,99","w":191},"c":{"d":"20,-93v0,-79,50,-103,121,-86r-1,26v-53,-9,-95,0,-89,60v-7,59,31,79,90,66r1,26v-13,3,-33,4,-49,5v-58,0,-73,-38,-73,-97","w":156},"d":{"d":"50,-89v0,35,7,65,39,65v17,-1,31,-7,45,-11r0,-118r-38,-4v-36,1,-45,29,-46,68xm20,-90v0,-75,42,-107,114,-89r0,-78r30,0r0,257r-30,0r0,-10v-14,7,-30,14,-50,14v-51,0,-64,-41,-64,-94","w":195},"e":{"d":"134,-101v8,-52,-44,-73,-73,-43v-8,9,-12,24,-12,43r85,0xm50,-77v-7,59,53,59,108,51r0,23v-19,4,-43,7,-67,7v-55,0,-72,-37,-72,-93v0,-58,22,-94,74,-95v59,-2,78,47,70,107r-113,0","w":182},"f":{"d":"114,-233v-43,-6,-57,8,-52,53r50,0r0,27r-50,0r0,153r-31,0r0,-153r-21,0r0,-27r21,0v-7,-65,23,-91,84,-78","w":120},"g":{"d":"51,-122v-1,25,12,36,35,37v24,0,39,-12,39,-37v0,-24,-13,-36,-38,-36v-23,1,-36,12,-36,36xm144,26v2,-38,-42,-22,-78,-28v-31,19,-19,61,29,61v29,0,48,-8,49,-33xm175,25v-2,45,-33,61,-80,61v-46,0,-77,-11,-77,-55v0,-24,14,-34,28,-45v-18,-11,-9,-41,2,-54v-15,-10,-28,-26,-28,-54v0,-53,50,-71,100,-57r55,-1r0,25r-31,0v31,46,-9,111,-73,93v-8,11,-12,36,11,35v50,-2,96,1,93,52","w":187},"h":{"d":"142,-94v10,-57,-33,-75,-80,-52r0,146r-31,0r0,-257r31,0r0,85v15,-5,30,-11,50,-12v83,-2,56,107,61,184r-31,0r0,-94","w":203},"i":{"d":"28,-250r31,0r0,34r-31,0r0,-34xm28,-180r31,0r0,180r-31,0r0,-180","w":86},"j":{"d":"32,-250r30,0r0,34r-30,0r0,-34xm-10,58v24,-14,42,-21,42,-60r0,-178r30,0r-2,208v-7,31,-30,41,-56,56","w":90},"k":{"d":"33,0r0,-257r30,0r0,149r23,-1r50,-71r35,0r-57,84r58,96r-34,0r-51,-80r-24,2r0,78r-30,0","w":180},"l":{"d":"29,-257r30,0r0,257r-30,0r0,-257","w":88},"m":{"d":"108,-156v-17,0,-31,8,-43,13r0,143r-30,0r0,-180r30,0r0,12v23,-17,74,-23,93,1v20,-6,39,-16,63,-17v83,-1,57,106,61,184r-31,0r0,-93v11,-61,-37,-76,-82,-50v10,39,3,96,5,143r-30,0v-6,-57,22,-156,-36,-156","w":309},"A":{"d":"67,-89r83,0r-34,-133r-14,0xm78,-250r62,0r66,250r-31,0r-18,-60r-97,0r-17,60r-31,0","w":217},"p":{"d":"146,-93v-1,-34,-9,-63,-39,-63v-18,0,-31,8,-44,13r0,117v8,1,23,4,35,3v40,0,48,-28,48,-70xm177,-92v0,76,-44,109,-114,92r0,79r-30,0r0,-259r30,0r0,12v13,-8,29,-16,49,-16v48,0,65,37,65,92","w":195},"q":{"d":"91,-23v16,0,29,-4,42,-9r0,-123r-33,-2v-40,0,-50,30,-50,69v0,34,7,65,41,65xm133,-5v-11,6,-25,9,-43,9v-54,0,-70,-36,-70,-91v0,-77,42,-108,119,-94v8,1,16,1,24,1r0,260r-30,0r0,-85","w":194},"r":{"d":"118,-152v-21,6,-42,13,-58,23r0,129r-30,0r0,-180r30,0r0,23v16,-12,35,-21,58,-27r0,32","w":128},"s":{"d":"25,-108v-28,-75,66,-87,124,-68r-1,25v-36,-3,-105,-21,-94,29v24,31,101,2,101,69v0,68,-78,60,-132,50r1,-26v38,2,109,24,99,-33v-21,-25,-85,-10,-98,-46","w":176},"u":{"d":"95,-23v18,0,33,-7,45,-13r0,-144r30,0r0,180r-30,0r0,-11v-14,8,-30,14,-50,15v-84,3,-54,-107,-60,-184r30,0r0,94v1,34,2,63,35,63","w":201},"w":{"d":"40,-180r33,153r9,0r38,-149r32,0r38,149r8,0r34,-153r30,0r-41,180r-52,0r-33,-136r-34,136r-52,0r-40,-180r30,0","w":271},"y":{"d":"40,-180r41,151r11,0r42,-151r30,0r-72,259r-30,0r22,-79r-26,0r-49,-180r31,0","w":173},"z":{"d":"21,-180r130,0r0,27r-94,126r94,0r0,27r-129,0r-1,-27r95,-126r-95,0r0,-27","w":172},"Z":{"d":"23,-250r159,0r0,36r-121,178r0,7r121,0r0,29r-159,0r0,-35r121,-179r0,-7r-121,0r0,-29","w":205},"0":{"d":"148,-116v0,-52,-3,-96,-53,-96v-50,0,-53,46,-53,97v0,49,6,90,53,90v48,0,53,-41,53,-91xm9,-116v0,-73,17,-126,86,-126v70,0,86,54,86,127v1,71,-18,119,-86,119v-67,0,-86,-49,-86,-120"},"1":{"d":"97,-238r29,0r0,238r-31,0r0,-202r-58,40r-14,-25"},"2":{"d":"20,-232v67,-21,171,-12,142,81v-17,55,-68,82,-103,121r112,0r0,30r-153,0r0,-28v37,-42,89,-73,112,-126v14,-33,-7,-61,-45,-58v-21,1,-44,4,-63,8"},"3":{"d":"135,-175v3,-52,-68,-36,-110,-31r-3,-27v66,-18,170,-13,141,76v-5,16,-17,24,-29,31v25,8,39,25,39,58v0,79,-84,80,-154,64r3,-28v41,7,118,20,118,-35v0,-47,-46,-41,-91,-41r0,-28v43,2,84,1,86,-39"},"5":{"d":"143,-77v0,-52,-64,-50,-96,-31r-25,-5r7,-125r137,0r0,30r-108,0r-7,71v51,-24,124,-12,124,59v0,84,-84,94,-157,71r4,-27v48,11,121,21,121,-43"},"7":{"d":"20,-238r145,0r0,42r-90,201r-29,-9r86,-193r0,-11r-112,0r0,-30"},"8":{"d":"148,-175v0,-29,-21,-38,-51,-38v-30,0,-51,8,-51,38v0,33,29,42,67,39v19,-7,34,-15,35,-39xm42,-66v-1,32,24,42,54,42v33,0,56,-11,56,-44v0,-37,-33,-43,-74,-41v-22,7,-35,17,-36,43xm13,-180v2,-45,36,-62,83,-62v47,0,84,17,85,63v0,33,-15,44,-37,55v23,10,42,25,41,58v-1,51,-37,71,-89,70v-50,0,-86,-17,-87,-66v-1,-35,17,-50,39,-62v-22,-12,-35,-24,-35,-56"},"E":{"d":"33,-250r149,0r0,29r-118,0r0,81r96,0r0,28r-96,0r0,83r118,0r0,29r-149,0r0,-250","w":202},"F":{"d":"33,-250r149,0r0,29r-118,0r0,94r96,0r0,29r-96,0r0,98r-31,0r0,-250","w":198},"G":{"d":"52,-125v-4,77,33,114,112,95r0,-73r-38,0r0,-27r69,0r0,126v-25,4,-52,8,-80,8v-75,0,-95,-52,-95,-129v0,-76,20,-129,94,-129v30,0,55,5,81,9r-2,28v-23,-4,-49,-7,-75,-7v-57,-1,-63,42,-66,99","w":218},"H":{"d":"181,-112r-117,0r0,112r-31,0r0,-250r31,0r0,109r117,0r0,-109r31,0r0,250r-31,0r0,-112","w":244},"K":{"d":"100,-109r-36,2r0,107r-31,0r0,-250r31,0r0,115r36,-2r59,-113r37,0r-69,125r72,125r-37,0","w":213},"Q":{"d":"52,-123v0,56,10,98,65,98v56,1,65,-42,65,-98v0,-56,-9,-102,-65,-102v-56,0,-65,46,-65,102xm214,-123v0,53,-7,94,-39,113r27,49r-28,14r-29,-52v-89,17,-125,-36,-125,-124v0,-78,20,-131,97,-131v77,0,98,53,97,131","w":234},"R":{"d":"64,-121v54,2,106,5,106,-51v0,-55,-53,-50,-106,-49r0,100xm202,-173v0,39,-15,63,-44,73r46,100r-34,0r-43,-93r-63,0r0,93r-31,0r0,-250v83,0,169,-12,169,77","w":223},"S":{"d":"19,-186v0,-76,89,-74,153,-61r-2,27v-51,-5,-137,-19,-116,51v27,45,124,16,124,97v0,86,-88,82,-156,68r2,-27v52,8,141,17,120,-55v-31,-43,-125,-18,-125,-100","w":191},"T":{"d":"3,-250r170,0r0,30r-69,0r0,220r-31,0r0,-220r-70,0r0,-30","w":176},"V":{"d":"203,-250r-63,250r-65,0r-63,-250r32,0r55,222r17,0r54,-222r33,0","w":214},"N":{"d":"33,-250r56,0r90,218r6,0r0,-218r32,0r0,250r-55,0r-91,-218r-7,0r0,218r-31,0r0,-250","w":249},"\u2013":{"d":"180,-112r0,28r-180,0r0,-28r180,0","w":180},"\u00af":{"d":"29,-254r107,0r0,26r-107,0r0,-26","w":167},"$":{"d":"106,-213v-49,-12,-75,48,-32,68v5,2,11,4,19,6xm90,-25v47,9,69,-34,46,-68v-8,-7,-20,-9,-32,-13xm177,-68v0,58,-35,75,-92,71r-7,40r-16,-2r6,-39r-45,-6r2,-27v17,0,32,4,48,5r15,-84v-39,-8,-68,-19,-68,-68v0,-53,43,-66,91,-63r7,-43r17,0r-8,44r44,4r-1,29r-48,-5r-13,77v38,10,68,17,68,67"},"!":{"d":"56,-252r33,0r-1,167r-31,0xm56,-44r33,0r0,44r-33,0r0,-44","w":142},"a":{"d":"51,-53v0,41,49,32,75,21r0,-55v-32,4,-75,-5,-75,34xm29,-176v53,-11,135,-21,127,51v5,36,-16,99,21,103r-2,26v-21,-1,-33,-4,-44,-14v-40,23,-111,19,-111,-42v0,-56,56,-55,106,-59v11,-58,-49,-45,-96,-40","w":188},"o":{"d":"50,-92v0,39,4,69,45,69v39,0,45,-30,45,-68v0,-39,-8,-66,-45,-66v-39,0,-45,25,-45,65xm19,-92v0,-58,21,-92,76,-92v56,0,77,36,76,93v0,57,-18,96,-76,95v-58,0,-76,-36,-76,-96"},"J":{"d":"13,-2v28,1,38,-12,37,-40r0,-208r31,0r0,210v3,49,-19,68,-68,66r0,-28","w":111},"t":{"d":"118,0v-52,13,-84,-6,-84,-62r0,-91r-24,0r0,-27r24,0r0,-54r30,0r0,54r52,0r0,27r-52,0r0,83v-3,42,13,52,53,45","w":129},"n":{"d":"144,-93v11,-59,-36,-77,-81,-51r0,144r-30,0r0,-180r30,0r0,12v14,-8,31,-15,51,-16v83,-3,56,107,61,184r-31,0r0,-93","w":204},"#":{"d":"121,-149r-52,0r0,59r52,0r0,-59xm149,-64r0,64r-28,0r0,-64r-52,0r0,64r-28,0r0,-64r-38,0r0,-26r38,0r0,-59r-38,0r0,-26r38,0r0,-64r28,0r0,64r52,0r0,-64r28,0r0,64r39,0r0,26r-39,0r0,59r39,0r0,26r-39,0"},"W":{"d":"46,-250r44,222r10,0r45,-219r36,0r47,219r9,0r43,-222r32,0r-51,250r-56,0r-42,-205r-41,205r-56,0r-52,-250r32,0","w":326},"@":{"d":"135,-87v-6,62,43,72,85,47v-6,-30,-2,-72,-3,-108v-11,-2,-23,-6,-35,-6v-41,-1,-43,27,-47,67xm181,-261v108,0,158,50,156,157v-1,60,-7,108,-64,108v-22,0,-35,-3,-43,-19v-17,7,-38,17,-62,18v-50,0,-64,-36,-64,-90v0,-58,14,-97,72,-96v16,0,29,4,41,9r0,-6r30,0r0,72v3,39,-10,83,26,83v38,0,31,-44,33,-85v4,-85,-40,-121,-125,-121v-90,0,-132,45,-132,137v0,116,67,151,184,135r1,29r-53,3v-116,4,-163,-53,-163,-167v0,-112,54,-166,163,-167","w":354},"`":{"d":"135,-237r-10,25r-82,-31r11,-28","w":196},"\u00b4":{"d":"124,-271r11,28r-82,31r-10,-26","w":207},"\u00a8":{"d":"105,-259r30,0r0,35r-30,0r0,-35xm32,-259r30,0r0,35r-30,0r0,-35","w":247},"\u00ff":{"d":"109,-259r30,0r0,35r-30,0r0,-35xm36,-259r30,0r0,35r-30,0r0,-35xm40,-180r41,151r11,0r42,-151r30,0r-72,259r-30,0r22,-79r-26,0r-49,-180r31,0","w":173},"M":{"d":"33,-250r53,0r67,207r67,-207r53,0r0,250r-31,0r0,-215r-5,0r-67,206r-34,0r-67,-206r-5,0r0,215r-31,0r0,-250","w":305},"U":{"d":"115,3v-58,0,-86,-23,-86,-80r0,-173r31,0r0,173v0,36,19,51,55,51v37,0,57,-15,57,-51r0,-173r31,0r0,173v-1,57,-29,80,-88,80","w":231},"X":{"d":"105,-147r57,-103r35,0r-72,126r72,124r-35,0r-57,-102r-58,102r-35,0r73,-124r-73,-126r35,0","w":209},"Y":{"d":"116,0r-31,0r0,-107r-77,-143r35,0r57,110r57,-110r35,0r-76,143r0,107","w":199},"\u00b0":{"d":"88,-235v-19,0,-32,12,-32,32v0,20,12,32,32,32v20,0,32,-13,32,-32v0,-19,-13,-32,-32,-32xm88,-152v-30,0,-52,-21,-52,-51v1,-30,22,-51,52,-52v30,0,51,22,51,52v0,30,-21,51,-51,51"},"\u00a7":{"d":"127,-53v9,-12,14,-45,-1,-54v-13,-8,-44,-11,-61,-17v-13,13,-17,50,9,57xm29,-175v0,-65,73,-64,130,-52r-1,25v-41,-4,-116,-18,-97,40v26,33,108,6,106,73v0,20,-9,35,-16,48v10,9,13,16,13,36v0,70,-73,67,-134,55r3,-25v43,5,117,17,99,-41v-28,-31,-110,-6,-109,-73v1,-20,11,-36,22,-46v-11,-9,-16,-19,-16,-40"},"\u00a9":{"d":"68,-174v0,43,7,73,54,58r0,12v-42,11,-66,-8,-66,-52v0,-42,21,-64,66,-53r0,12v-25,-5,-54,-5,-54,23xm95,-240v-51,0,-80,34,-80,84v0,50,31,84,80,84v50,0,81,-34,81,-84v0,-50,-30,-84,-81,-84xm95,-61v-56,0,-91,-38,-91,-95v0,-58,36,-96,91,-96v56,0,93,39,93,96v0,56,-36,95,-93,95"},"\u2122":{"d":"87,-224r18,0r30,88r32,-88r18,0r0,105r-12,0r0,-93r-32,89r-12,0r-30,-89r0,93r-12,0r0,-105xm3,-224r72,0r0,12r-30,0r0,92r-12,0r0,-92r-30,0r0,-12"},"\u00ae":{"d":"121,-180v0,-26,-27,-21,-51,-21r0,43v24,-1,51,7,51,-22xm91,-213v48,-11,55,55,21,65r23,49r-13,0r-23,-48r-29,0r0,48r-11,0r0,-114r32,0xm95,-240v-51,0,-80,34,-80,84v0,50,31,84,80,84v50,0,81,-34,81,-84v0,-50,-30,-84,-81,-84xm95,-61v-56,0,-91,-38,-91,-95v0,-58,36,-96,91,-96v56,0,93,39,93,96v0,56,-36,95,-93,95"},"\u00e1":{"d":"138,-271r10,28r-81,31r-10,-26xm51,-53v0,41,49,32,75,21r0,-55v-32,4,-75,-5,-75,34xm29,-176v53,-11,135,-21,127,51v5,36,-16,99,21,103r-2,26v-21,-1,-33,-4,-44,-14v-40,23,-111,19,-111,-42v0,-56,56,-55,106,-59v11,-58,-49,-45,-96,-40","w":191},"\u00e0":{"d":"137,-237r-10,25r-82,-31r11,-28xm51,-53v0,41,49,32,75,21r0,-55v-32,4,-75,-5,-75,34xm29,-176v53,-11,135,-21,127,51v5,36,-16,99,21,103r-2,26v-21,-1,-33,-4,-44,-14v-40,23,-111,19,-111,-42v0,-56,56,-55,106,-59v11,-58,-49,-45,-96,-40","w":191},"\u00e2":{"d":"77,-267r25,0r46,55r-34,0r-24,-29r-24,29r-34,0xm51,-53v0,41,49,32,75,21r0,-55v-32,4,-75,-5,-75,34xm29,-176v53,-11,135,-21,127,51v5,36,-16,99,21,103r-2,26v-21,-1,-33,-4,-44,-14v-40,23,-111,19,-111,-42v0,-56,56,-55,106,-59v11,-58,-49,-45,-96,-40","w":191},"\u00e4":{"d":"119,-259r29,0r0,35r-29,0r0,-35xm46,-259r29,0r0,35r-29,0r0,-35xm51,-53v0,41,49,32,75,21r0,-55v-32,4,-75,-5,-75,34xm29,-176v53,-11,135,-21,127,51v5,36,-16,99,21,103r-2,26v-21,-1,-33,-4,-44,-14v-40,23,-111,19,-111,-42v0,-56,56,-55,106,-59v11,-58,-49,-45,-96,-40","w":191},"\u00e3":{"d":"149,-238v-17,31,-59,13,-85,2v-11,1,-20,9,-27,15r-7,-23v14,-24,53,-21,76,-6v15,10,26,-5,37,-11xm51,-53v0,41,49,32,75,21r0,-55v-32,4,-75,-5,-75,34xm29,-176v53,-11,135,-21,127,51v5,36,-16,99,21,103r-2,26v-21,-1,-33,-4,-44,-14v-40,23,-111,19,-111,-42v0,-56,56,-55,106,-59v11,-58,-49,-45,-96,-40","w":191},"\u00e5":{"d":"93,-256v-10,0,-17,7,-17,17v0,10,7,17,17,17v10,0,16,-7,16,-17v0,-10,-6,-17,-16,-17xm93,-201v-21,1,-39,-17,-38,-38v1,-23,15,-37,38,-38v21,-1,39,17,38,38v-1,23,-15,37,-38,38xm51,-53v0,41,49,32,75,21r0,-55v-32,4,-75,-5,-75,34xm29,-176v53,-11,135,-21,127,51v5,36,-16,99,21,103r-2,26v-21,-1,-33,-4,-44,-14v-40,23,-111,19,-111,-42v0,-56,56,-55,106,-59v11,-58,-49,-45,-96,-40","w":191},"\u00e9":{"d":"129,-271r11,28r-82,31r-10,-26xm134,-101v8,-52,-44,-73,-73,-43v-8,9,-12,24,-12,43r85,0xm50,-77v-7,59,53,59,108,51r0,23v-19,4,-43,7,-67,7v-55,0,-72,-37,-72,-93v0,-58,22,-94,74,-95v59,-2,78,47,70,107r-113,0","w":182},"\u00e8":{"d":"132,-237r-10,25r-82,-31r11,-28xm134,-101v8,-52,-44,-73,-73,-43v-8,9,-12,24,-12,43r85,0xm50,-77v-7,59,53,59,108,51r0,23v-19,4,-43,7,-67,7v-55,0,-72,-37,-72,-93v0,-58,22,-94,74,-95v59,-2,78,47,70,107r-113,0","w":182},"\u00ea":{"d":"81,-267r25,0r46,55r-34,0r-24,-29r-25,29r-33,0xm134,-101v8,-52,-44,-73,-73,-43v-8,9,-12,24,-12,43r85,0xm50,-77v-7,59,53,59,108,51r0,23v-19,4,-43,7,-67,7v-55,0,-72,-37,-72,-93v0,-58,22,-94,74,-95v59,-2,78,47,70,107r-113,0","w":182},"\u00eb":{"d":"121,-259r29,0r0,35r-29,0r0,-35xm48,-259r29,0r0,35r-29,0r0,-35xm134,-101v8,-52,-44,-73,-73,-43v-8,9,-12,24,-12,43r85,0xm50,-77v-7,59,53,59,108,51r0,23v-19,4,-43,7,-67,7v-55,0,-72,-37,-72,-93v0,-58,22,-94,74,-95v59,-2,78,47,70,107r-113,0","w":182},"\u00ef":{"d":"32,-180r31,0r0,180r-31,0r0,-180xm75,-259r29,0r0,35r-29,0r0,-35xm2,-259r29,0r0,35r-29,0r0,-35","w":95},"\u00f1":{"d":"80,-264v28,0,56,30,78,3r7,23v-16,30,-61,13,-85,2v-11,1,-20,9,-27,15r-7,-23v9,-9,18,-20,34,-20xm146,-93v11,-59,-36,-77,-81,-51r0,144r-30,0r0,-180r30,0r0,12v14,-8,31,-15,51,-16v83,-2,55,107,60,184r-30,0r0,-93","w":206},"\u00f3":{"d":"130,-271r11,28r-82,31r-10,-26xm50,-92v0,39,4,69,45,69v39,0,45,-30,45,-68v0,-39,-8,-66,-45,-66v-39,0,-45,25,-45,65xm19,-92v0,-58,21,-92,76,-92v56,0,77,36,76,93v0,57,-18,96,-76,95v-58,0,-76,-36,-76,-96","w":191},"\u00f2":{"d":"127,-237r-10,25r-82,-31r11,-28xm50,-92v0,39,4,69,45,69v39,0,45,-30,45,-68v0,-39,-8,-66,-45,-66v-39,0,-45,25,-45,65xm19,-92v0,-58,21,-92,76,-92v56,0,77,36,76,93v0,57,-18,96,-76,95v-58,0,-76,-36,-76,-96","w":191},"\u00f4":{"d":"78,-267r25,0r45,55r-33,0r-24,-29r-25,29r-33,0xm50,-92v0,39,4,69,45,69v39,0,45,-30,45,-68v0,-39,-8,-66,-45,-66v-39,0,-45,25,-45,65xm19,-92v0,-58,21,-92,76,-92v56,0,77,36,76,93v0,57,-18,96,-76,95v-58,0,-76,-36,-76,-96","w":191},"\u00f6":{"d":"119,-259r29,0r0,35r-29,0r0,-35xm46,-259r29,0r0,35r-29,0r0,-35xm50,-92v0,39,4,69,45,69v39,0,45,-30,45,-68v0,-39,-8,-66,-45,-66v-39,0,-45,25,-45,65xm19,-92v0,-58,21,-92,76,-92v56,0,77,36,76,93v0,57,-18,96,-76,95v-58,0,-76,-36,-76,-96","w":191},"\u00f5":{"d":"63,-264v28,0,57,30,79,3r7,23v-17,30,-61,13,-86,2v-11,1,-20,9,-27,15r-7,-23v9,-9,18,-20,34,-20xm50,-92v0,39,4,69,45,69v39,0,45,-30,45,-68v0,-39,-8,-66,-45,-66v-39,0,-45,25,-45,65xm19,-92v0,-58,21,-92,76,-92v56,0,77,36,76,93v0,57,-18,96,-76,95v-58,0,-76,-36,-76,-96","w":191},"\u00fa":{"d":"135,-271r11,28r-82,31r-10,-26xm95,-23v18,0,33,-7,45,-13r0,-144r30,0r0,180r-30,0r0,-11v-14,8,-30,14,-50,15v-84,3,-54,-107,-60,-184r30,0r0,94v1,34,2,63,35,63","w":201},"\u00f9":{"d":"131,-237r-10,25r-81,-31r10,-28xm95,-23v18,0,33,-7,45,-13r0,-144r30,0r0,180r-30,0r0,-11v-14,8,-30,14,-50,15v-84,3,-54,-107,-60,-184r30,0r0,94v1,34,2,63,35,63","w":201},"\u00fb":{"d":"83,-267r24,0r46,55r-33,0r-25,-29r-24,29r-34,0xm95,-23v18,0,33,-7,45,-13r0,-144r30,0r0,180r-30,0r0,-11v-14,8,-30,14,-50,15v-84,3,-54,-107,-60,-184r30,0r0,94v1,34,2,63,35,63","w":201},"\u00fc":{"d":"123,-259r30,0r0,35r-30,0r0,-35xm50,-259r30,0r0,35r-30,0r0,-35xm95,-23v18,0,33,-7,45,-13r0,-144r30,0r0,180r-30,0r0,-11v-14,8,-30,14,-50,15v-84,3,-54,-107,-60,-184r30,0r0,94v1,34,2,63,35,63","w":201},"\u0131":{"d":"32,-180r31,0r0,180r-31,0r0,-180","w":95},"\u00ed":{"d":"32,-180r31,0r0,180r-31,0r0,-180xm90,-271r11,28r-82,31r-10,-26","w":93},"\u00ec":{"d":"79,-237r-10,25r-82,-31r11,-28xm32,-180r31,0r0,180r-31,0r0,-180","w":95},"\u00ee":{"d":"34,-267r25,0r45,55r-33,0r-24,-29r-25,29r-33,0xm32,-180r31,0r0,180r-31,0r0,-180","w":95},"\u00c3":{"d":"80,-335v32,4,63,34,87,3r7,23v-9,10,-19,19,-34,22v-22,-1,-39,-17,-59,-20v-11,3,-21,11,-29,18r-7,-24v10,-10,19,-19,35,-22xm67,-89r83,0r-34,-133r-14,0xm78,-250r62,0r66,250r-31,0r-18,-60r-97,0r-17,60r-31,0","w":217},"\u00c0":{"d":"150,-304r-10,25r-82,-30r11,-29xm67,-89r83,0r-34,-133r-14,0xm78,-250r62,0r66,250r-31,0r-18,-60r-97,0r-17,60r-31,0","w":217},"\u00d5":{"d":"148,-315v10,-3,19,-9,27,-17r8,24v-10,9,-18,21,-35,21v-27,0,-53,-31,-76,-11r-12,9r-6,-23v10,-9,18,-22,35,-22v22,0,40,15,59,19xm214,-123v0,78,-20,127,-97,127v-76,0,-97,-51,-97,-127v0,-77,21,-131,97,-131v76,0,97,53,97,131xm52,-123v0,57,10,98,65,98v55,0,65,-40,65,-98v0,-57,-9,-102,-65,-102v-56,0,-65,45,-65,102","w":234},"\u00c2":{"d":"94,-335r28,0r47,49r-35,0r-26,-25r-26,25r-36,0xm67,-89r83,0r-34,-133r-14,0xm78,-250r62,0r66,250r-31,0r-18,-60r-97,0r-17,60r-31,0","w":217},"\u00ca":{"d":"95,-336r27,0r48,49r-35,0r-26,-24r-26,24r-36,0xm33,-250r149,0r0,29r-118,0r0,81r96,0r0,28r-96,0r0,83r118,0r0,29r-149,0r0,-250","w":202},"\u00c1":{"d":"143,-340r11,29r-82,30r-10,-25xm67,-89r83,0r-34,-133r-14,0xm78,-250r62,0r66,250r-31,0r-18,-60r-97,0r-17,60r-31,0","w":217},"\u00cb":{"d":"134,-329r30,0r0,35r-30,0r0,-35xm59,-329r30,0r0,35r-30,0r0,-35xm33,-250r149,0r0,29r-118,0r0,81r96,0r0,28r-96,0r0,83r118,0r0,29r-149,0r0,-250","w":202},"\u00c8":{"d":"153,-304r-10,25r-82,-30r11,-29xm33,-250r149,0r0,29r-118,0r0,81r96,0r0,28r-96,0r0,83r118,0r0,29r-149,0r0,-250","w":202},"\u00d4":{"d":"104,-336r28,0r47,49r-35,0r-26,-25r-26,25r-35,0xm214,-123v0,78,-20,127,-97,127v-76,0,-97,-51,-97,-127v0,-77,21,-131,97,-131v76,0,97,53,97,131xm52,-123v0,57,10,98,65,98v55,0,65,-40,65,-98v0,-57,-9,-102,-65,-102v-56,0,-65,45,-65,102","w":234},"\u00d3":{"d":"149,-340r11,29r-82,30r-10,-25xm214,-123v0,78,-20,127,-97,127v-76,0,-97,-51,-97,-127v0,-77,21,-131,97,-131v76,0,97,53,97,131xm52,-123v0,57,10,98,65,98v55,0,65,-40,65,-98v0,-57,-9,-102,-65,-102v-56,0,-65,45,-65,102","w":234},"\u00cc":{"d":"84,-304r-10,25r-82,-30r11,-29xm30,-250r31,0r0,250r-31,0r0,-250","w":90},"\u00cf":{"d":"70,-331r29,0r0,35r-29,0r0,-35xm-5,-331r29,0r0,35r-29,0r0,-35xm30,-250r31,0r0,250r-31,0r0,-250","w":90},"\u00ce":{"d":"31,-336r28,0r47,49r-35,0r-26,-24r-26,24r-36,0xm30,-250r31,0r0,250r-31,0r0,-250","w":90},"\u00cd":{"d":"86,-340r10,29r-81,30r-10,-25xm30,-250r31,0r0,250r-31,0r0,-250","w":90},"\u00d2":{"d":"162,-304r-10,25r-82,-30r11,-29xm214,-123v0,78,-20,127,-97,127v-76,0,-97,-51,-97,-127v0,-77,21,-131,97,-131v76,0,97,53,97,131xm52,-123v0,57,10,98,65,98v55,0,65,-40,65,-98v0,-57,-9,-102,-65,-102v-56,0,-65,45,-65,102","w":234},"\u00da":{"d":"149,-340r10,29r-81,30r-10,-25xm115,3v-58,0,-86,-23,-86,-80r0,-173r31,0r0,173v0,36,19,51,55,51v37,0,57,-15,57,-51r0,-173r31,0r0,173v-1,57,-29,80,-88,80","w":231},"\u00db":{"d":"102,-335r28,0r47,49r-35,0r-26,-25r-26,25r-36,0xm115,3v-58,0,-86,-23,-86,-80r0,-173r31,0r0,173v0,36,19,51,55,51v37,0,57,-15,57,-51r0,-173r31,0r0,173v-1,57,-29,80,-88,80","w":231},"\u00d9":{"d":"159,-304r-10,25r-81,-30r10,-29xm115,3v-58,0,-86,-23,-86,-80r0,-173r31,0r0,173v0,36,19,51,55,51v37,0,57,-15,57,-51r0,-173r31,0r0,173v-1,57,-29,80,-88,80","w":231},"\u00b8":{"d":"162,17v26,1,40,4,41,29v1,33,-36,36,-66,29r1,-19v15,0,38,6,38,-12v0,-14,-15,-12,-29,-12r0,-32r15,0r0,17","w":299},"\u00dc":{"d":"140,-331r30,0r0,35r-30,0r0,-35xm65,-331r30,0r0,35r-30,0r0,-35xm115,3v-58,0,-86,-23,-86,-80r0,-173r31,0r0,173v0,36,19,51,55,51v37,0,57,-15,57,-51r0,-173r31,0r0,173v-1,57,-29,80,-88,80","w":231},"\u00d6":{"d":"141,-329r30,0r0,35r-30,0r0,-35xm66,-329r30,0r0,35r-30,0r0,-35xm214,-123v0,78,-20,127,-97,127v-76,0,-97,-51,-97,-127v0,-77,21,-131,97,-131v76,0,97,53,97,131xm52,-123v0,57,10,98,65,98v55,0,65,-40,65,-98v0,-57,-9,-102,-65,-102v-56,0,-65,45,-65,102","w":234},"\u00d1":{"d":"156,-315v11,-3,19,-10,27,-17r7,24v-9,10,-18,21,-34,21v-27,0,-53,-31,-76,-11r-12,9r-6,-23v9,-10,18,-22,35,-22v22,0,40,15,59,19xm33,-250r56,0r90,218r6,0r0,-218r32,0r0,250r-55,0r-91,-218r-7,0r0,218r-31,0r0,-250","w":249},"\u00c9":{"d":"148,-340r11,29r-82,30r-10,-25xm33,-250r149,0r0,29r-118,0r0,81r96,0r0,28r-96,0r0,83r118,0r0,29r-149,0r0,-250","w":202},"\u00c7":{"d":"114,17v26,1,40,4,41,29v1,34,-36,36,-66,29r1,-19v16,0,39,6,39,-12v0,-14,-16,-12,-30,-12r0,-28v-67,-3,-79,-59,-80,-129v0,-75,15,-130,90,-129v25,0,47,4,67,8r-1,28r-62,-6v-56,-1,-61,43,-61,99v0,56,5,100,61,99v22,0,43,-4,62,-6r1,29v-20,2,-40,7,-62,7r0,13","w":193},"\u00c5":{"d":"109,-284v-21,-2,-29,31,-7,34v15,2,28,-2,27,-16v0,-12,-8,-17,-20,-18xm67,-89r83,0r-34,-133r-14,0xm109,-306v36,-5,59,40,34,66r63,240r-31,0r-18,-60r-97,0r-17,60r-31,0r63,-239v-24,-24,-4,-73,34,-67","w":217},"\u00c4":{"d":"132,-329r30,0r0,35r-30,0r0,-35xm57,-329r29,0r0,35r-29,0r0,-35xm67,-89r83,0r-34,-133r-14,0xm78,-250r62,0r66,250r-31,0r-18,-60r-97,0r-17,60r-31,0","w":217},"\u00e7":{"d":"96,17v26,1,40,4,41,29v1,33,-36,36,-66,29r1,-19v15,0,38,6,38,-12v0,-14,-15,-12,-29,-12r0,-29v-49,-3,-61,-43,-61,-96v0,-79,50,-103,121,-86r-1,26v-53,-9,-95,0,-89,60v-7,59,31,79,90,66r1,26v-15,2,-30,5,-46,5r0,13","w":156},"\u0178":{"d":"125,-328r30,0r0,35r-30,0r0,-35xm50,-328r30,0r0,35r-30,0r0,-35xm116,0r-31,0r0,-107r-77,-143r35,0r57,110r57,-110r35,0r-76,143r0,107","w":199},"\u00f8":{"d":"136,-218r20,7r-16,39v-6,-4,-12,-6,-19,-8xm50,-7v5,5,10,6,18,8r-15,39r-20,-7xm110,-155v7,2,13,6,17,11r-49,119v-7,-2,-12,-5,-16,-10xm140,-172v51,36,46,176,-45,176v-10,0,-19,-1,-27,-3r10,-26v68,22,75,-75,49,-119xm19,-92v-4,-68,38,-104,102,-88r-11,25v-67,-22,-71,76,-48,120v-3,10,-8,19,-12,28v-25,-15,-29,-45,-31,-85"},"\u00b1":{"d":"175,-44r0,30r-160,0r0,-30r160,0xm15,-133r65,0r0,-48r31,0r0,48r64,0r0,30r-64,0r0,45r-31,0r0,-45r-65,0r0,-30"},"\u03c0":{"d":"183,0v-77,7,-39,-102,-48,-167r-73,0r-11,167r-12,0r10,-167v-16,1,-34,1,-48,4r0,-12v53,-12,130,2,184,-11r0,13v-11,2,-23,5,-37,5r0,113v-2,30,7,44,35,43r0,12"},"\u00aa":{"d":"66,-167v0,22,26,12,42,10r0,-26v-16,3,-42,-5,-42,16xm51,-236v36,-5,81,-11,78,32v3,18,-8,49,10,52r-1,18v-10,-1,-18,-2,-24,-7v-27,10,-70,13,-70,-26v0,-31,34,-32,64,-33v5,-30,-32,-18,-57,-17r0,-19"},"\u00ba":{"d":"68,-188v0,22,4,34,23,34v20,0,25,-12,25,-34v0,-21,-6,-30,-25,-31v-18,0,-23,10,-23,31xm46,-188v0,-34,13,-51,45,-51v33,0,47,17,47,51v0,34,-15,53,-47,54v-32,0,-45,-20,-45,-54"},"I":{"d":"30,-250r31,0r0,250r-31,0r0,-250","w":90},"O":{"d":"214,-123v0,78,-20,127,-97,127v-76,0,-97,-51,-97,-127v0,-77,21,-131,97,-131v76,0,97,53,97,131xm52,-123v0,57,10,98,65,98v55,0,65,-40,65,-98v0,-57,-9,-102,-65,-102v-56,0,-65,45,-65,102","w":234},"\u00ab":{"d":"130,-90r44,37r0,32r-70,-56r0,-24r70,-52r0,31xm46,-90r44,37r0,32r-70,-56r0,-24r70,-52r0,31","w":195},"\u00bb":{"d":"22,-124r0,-31r70,52r0,24r-70,56r0,-32r44,-36xm105,-124r0,-31r71,52r0,24r-71,56r0,-32r44,-36","w":195},"\u201c":{"d":"111,-161r-31,0r19,-80r28,0xm49,-161r-31,0r19,-80r28,0","w":145},"~":{"d":"23,-118v24,-32,74,-12,107,-2v15,-1,25,-9,35,-16r3,29v-24,32,-74,10,-106,1v-15,2,-27,9,-36,17"},"\u2014":{"d":"360,-112r0,28r-360,0r0,-28r360,0","w":360},"L":{"d":"33,0r0,-250r31,0r0,221r102,0r0,29r-133,0","w":182},"B":{"d":"163,-184v0,-45,-54,-38,-99,-38r0,82v49,1,99,6,99,-44xm170,-72v0,-49,-58,-41,-106,-41r0,85v50,0,106,8,106,-44xm202,-70v0,83,-89,70,-169,70r0,-250v73,1,164,-13,162,62v0,32,-10,48,-31,59v23,9,38,26,38,59","w":221},"D":{"d":"118,-29v51,-1,61,-49,61,-100v0,-49,-11,-92,-61,-92r-54,0r0,192r54,0xm211,-129v0,73,-20,129,-93,129r-85,0r0,-250r85,0v71,0,94,49,93,121","w":230},"P":{"d":"169,-169v4,-57,-50,-54,-105,-52r0,110r56,0v36,0,47,-24,49,-58xm201,-169v0,52,-28,87,-81,87r-56,0r0,82r-31,0r0,-250r87,0v54,-1,81,27,81,81","w":217},"b":{"d":"108,-156v-18,0,-32,4,-45,8r0,124v57,8,86,-14,83,-69v-2,-33,-7,-63,-38,-63xm63,-173v14,-5,29,-11,48,-11v51,1,63,38,66,91v5,87,-57,108,-144,93r0,-257r30,0r0,84","w":195},"v":{"d":"41,-180r40,155r11,0r41,-155r31,0r-49,180r-57,0r-49,-180r32,0","w":173},"x":{"d":"43,-180r40,68r40,-68r33,0r-54,90r54,90r-34,0r-39,-68r-39,68r-34,0r54,-90r-54,-90r33,0","w":165},"6":{"d":"147,-76v0,-55,-67,-49,-102,-33v1,44,10,82,52,84v32,1,50,-18,50,-51xm13,-120v0,-102,61,-140,157,-114r-3,27v-35,-5,-86,-13,-106,13v-10,12,-16,32,-16,59v53,-26,135,-16,135,59v0,51,-32,81,-83,80v-63,-1,-84,-53,-84,-124"},"9":{"d":"45,-163v-3,56,64,50,103,36v0,-46,-13,-85,-54,-86v-30,0,-47,20,-49,50xm179,-118v0,103,-61,141,-158,114r3,-27v37,4,87,15,107,-13v9,-13,16,-31,16,-57v-56,24,-139,13,-134,-62v3,-51,32,-79,81,-79v64,0,85,53,85,124"},"\u00a5":{"d":"17,-136r48,0r-61,-102r35,0r59,99r58,-99r35,0r-61,102r47,0r0,26r-61,0v-5,5,-2,18,-3,28r64,0r0,26r-64,0r0,56r-31,0r0,-56r-65,0r0,-26r65,0v-1,-10,2,-23,-3,-28r-62,0r0,-26","w":194},"<":{"d":"61,-107r92,58r0,32r-122,-73r0,-32r122,-72r0,32"},">":{"d":"37,-162r0,-32r121,72r0,32r-121,73r0,-32r92,-58"},"[":{"d":"92,-240r-47,0r0,255r47,0r0,29r-78,0r0,-314r78,0r0,30","w":108},"\\":{"d":"133,0r-110,-250r32,-2r109,249"},"]":{"d":"13,-270r78,0r0,314r-78,0r0,-29r47,0r0,-255r-47,0r0,-30","w":108},"|":{"d":"78,-270r31,0r0,360r-31,0r0,-360"},"\u00c6":{"d":"62,-89r67,0r0,-132r-32,0xm129,-60r-74,0r-16,60r-32,0r66,-250r205,0r0,29r-119,0r0,81r97,0r0,28r-97,0r0,83r119,0r0,29r-149,0r0,-60","w":298},"\u00b5":{"d":"138,-11v-19,14,-67,24,-80,0r0,92r-30,0r0,-261r30,0r0,96v-9,57,37,74,80,49r0,-145r30,0r0,180r-30,0r0,-11"},"\u03bc":{"d":"138,-11v-19,14,-67,24,-80,0r0,92r-30,0r0,-261r30,0r0,96v-9,57,37,74,80,49r0,-145r30,0r0,180r-30,0r0,-11"},"\u00e6":{"d":"246,-101v-1,-36,-8,-57,-42,-57v-30,0,-45,19,-45,57r87,0xm52,-53v0,45,55,30,82,19v-4,-15,-5,-34,-5,-53v-32,5,-77,-5,-77,34xm159,-77v-6,60,54,58,110,51r1,23v-38,7,-100,15,-122,-12v-23,9,-44,19,-76,19v-59,0,-70,-95,-15,-106v21,-4,48,-7,72,-9v11,-59,-49,-44,-97,-40r-1,-27v43,-3,104,-18,119,19v11,-16,28,-25,54,-25v56,-3,78,44,71,107r-116,0","w":298},"\u0192":{"d":"170,-220v-36,-3,-68,-4,-63,37r0,24r58,0r0,28r-58,0r0,155v4,51,-32,73,-82,61r1,-24v32,4,51,-1,51,-37r0,-155r-38,0r0,-28r38,0v-9,-71,21,-103,93,-87r0,26"},"\u0152":{"d":"49,-125v-5,78,30,112,112,97r0,-193r-47,-4v-56,-1,-62,45,-65,100xm111,-254v61,0,131,4,198,4r0,29r-117,0r0,81r95,0r0,28r-95,0r0,83r117,0r0,29r-148,0r-50,4v-76,1,-94,-53,-94,-128v0,-79,21,-130,94,-130","w":329},"\u0153":{"d":"263,-101v10,-55,-47,-69,-75,-42v-9,8,-11,23,-11,42r86,0xm54,-92v0,40,4,69,46,69v41,0,45,-29,46,-68v0,-43,-8,-65,-46,-66v-38,-1,-46,26,-46,65xm177,-77v-7,61,54,58,110,51r0,23v-42,9,-111,16,-126,-21v-13,18,-29,28,-61,28v-60,0,-77,-36,-77,-96v0,-57,20,-92,77,-92v31,1,50,11,62,32v11,-21,30,-31,59,-32v56,-3,80,45,71,107r-115,0","w":315},"4":{"d":"120,-43r-110,0r0,-25r70,-170r33,0r-67,166r74,0r0,-74r31,0r0,74r28,0r0,29r-28,0r0,45r-31,0r0,-45"},"\"":{"d":"15,-164r0,-86r30,0r-1,86r-29,0xm74,-164r-1,-86r30,0r-1,86r-28,0","w":114},"'":{"d":"2,-250r30,0r-1,83r-28,0","w":36},"(":{"d":"46,45v-45,-84,-42,-229,0,-315r32,0v-16,47,-34,102,-34,162v0,57,17,109,34,153r-32,0","w":93},")":{"d":"77,-118v0,62,-18,113,-35,161r-33,0v15,-47,35,-101,35,-161v0,-58,-20,-109,-35,-154r33,0v16,45,35,95,35,154","w":93},",":{"d":"24,-40r33,0r-20,84r-30,0","w":61},"-":{"d":"25,-112r108,0r0,29r-108,0r0,-29","w":158},".":{"d":"26,-44r33,0r0,44r-33,0r0,-44","w":89},"\/":{"d":"130,-256r29,10r-100,251r-29,-11"},":":{"d":"20,-44r33,0r0,44r-33,0r0,-44xm20,-158r33,0r0,44r-33,0r0,-44","w":66},";":{"d":"23,-158r34,0r0,44r-34,0r0,-44xm26,-44r33,0r-24,86r-28,0","w":73},"=":{"d":"21,-80r149,0r0,30r-149,0r0,-30xm21,-148r149,0r0,30r-149,0r0,-30"},"?":{"d":"43,-42r33,0r0,42r-33,0r0,-42xm5,-245v53,-16,138,-22,133,53v-4,58,-64,59,-62,120r-31,0v-11,-62,53,-67,60,-117v7,-51,-62,-34,-97,-28","w":138},"_":{"d":"181,31r0,28r-171,0r0,-28r171,0"},"{":{"d":"36,-112v38,5,38,50,34,93v-2,27,13,35,38,36r0,29v-67,3,-68,-41,-68,-106v0,-25,-12,-32,-36,-39r0,-26v82,-5,-24,-153,104,-147r0,29v-45,-4,-39,39,-36,81v2,31,-14,42,-36,50","w":112},"}":{"d":"74,-112v-37,-6,-38,-49,-34,-93v3,-27,-13,-35,-38,-36r0,-30v66,-3,77,43,68,107v2,25,12,32,36,39r0,26v-66,1,-11,103,-50,131v-12,8,-29,15,-54,16r0,-30v45,4,38,-38,36,-80v-2,-30,13,-44,36,-50","w":112},"\u00a2":{"d":"44,-89v-5,52,43,50,93,45r1,27r-35,4r0,42r-26,0r0,-42v-46,-1,-65,-27,-64,-76v0,-50,20,-74,64,-78r0,-42r26,0r0,43r35,3r-1,27v-48,-4,-99,-7,-93,47","w":157},"\u2018":{"d":"41,-185r-31,0r19,-81r29,0","w":70},"\u2019":{"d":"29,-266r31,0r-19,81r-28,0","w":70},"\u00f7":{"d":"80,-59r31,0r0,38r-31,0r0,-38xm19,-119r152,0r0,30r-152,0r0,-30xm80,-187r31,0r0,38r-31,0r0,-38"},"\u00d8":{"d":"117,-25v72,5,69,-82,61,-145v-2,-13,-6,-24,-12,-32r-80,171v8,4,19,6,31,6xm117,-225v-72,-4,-69,86,-61,149v2,13,6,23,12,31r81,-173v-9,-5,-20,-7,-32,-7xm214,-123v1,78,-20,128,-97,127v-17,0,-31,-3,-44,-7r-20,45r-21,-10r22,-46v-26,-22,-33,-59,-34,-109v0,-77,21,-131,97,-131v18,0,33,2,45,8r20,-42r21,9r-22,46v25,23,32,60,33,110","w":236},"&":{"d":"116,-225v-40,0,-41,53,-17,71r9,9v21,-10,42,-19,42,-48v0,-21,-10,-32,-34,-32xm47,-75v0,62,90,65,113,22r-70,-72v-23,8,-43,22,-43,50xm71,-145v-35,-35,-19,-108,45,-108v40,0,64,19,64,57v0,42,-25,55,-53,70r48,48v4,-14,8,-30,10,-47r30,0v-3,22,-10,50,-17,67r44,41r-19,21r-40,-37v-21,24,-42,36,-83,37v-55,0,-83,-28,-84,-79v0,-39,25,-58,55,-70","w":252},"*":{"d":"112,-180r15,45r-22,7r-15,-45r-39,29r-14,-18r40,-29r-39,-28r14,-19r38,27r15,-44r22,7r-15,45r47,0r0,23r-47,0"},"\u00a3":{"d":"108,-245v19,0,38,4,55,7r-1,26v-18,0,-30,-3,-48,-3v-33,0,-29,30,-29,62r74,0r0,27r-74,0r0,98v29,0,59,1,81,-6r5,28v-41,11,-99,4,-152,6r0,-28r36,0r0,-98r-29,0r0,-27r29,0v-2,-52,3,-93,53,-92"},"\u00b6":{"d":"3,-185v0,-42,25,-67,67,-67r119,0r0,24r-27,0r0,228r-27,0r0,-228r-36,0r0,228r-27,0v-2,-38,4,-84,-2,-118v-42,-2,-67,-25,-67,-67"},"%":{"d":"148,-81v-15,1,-16,14,-16,30v0,17,2,31,16,31v15,0,17,-14,17,-31v0,-17,-2,-30,-17,-30xm148,0v-28,0,-40,-19,-40,-51v0,-31,12,-50,40,-50v28,0,40,18,40,50v0,32,-12,51,-40,51xm47,-151v-27,0,-40,-18,-40,-51v0,-32,12,-50,40,-50v27,0,40,19,40,50v0,32,-13,51,-40,51xm121,-256r22,7r-71,253r-21,-6xm63,-202v0,-17,-1,-30,-16,-30v-15,0,-16,13,-16,30v0,18,1,31,16,31v15,0,16,-13,16,-31"},"+":{"d":"16,-119r64,0r0,-64r32,0r0,64r63,0r0,30r-63,0r0,65r-32,0r0,-65r-64,0r0,-30"},"\u00df":{"d":"103,-233v-29,0,-42,12,-42,41r0,192r-31,0r0,-195v-1,-48,26,-66,73,-66v48,0,68,11,72,53v5,46,-52,36,-51,71v21,26,76,23,76,73v0,68,-54,74,-115,63r1,-26v38,2,88,11,82,-35v-6,-44,-76,-25,-76,-79v0,-42,51,-30,51,-66v0,-23,-15,-25,-40,-26","w":218},"\u201d":{"d":"95,-265r32,0r-19,80r-29,0xm33,-265r32,0r-19,80r-29,0","w":137},"\u00bf":{"d":"99,-137r-33,0r0,-43r33,0r0,43xm138,65v-54,18,-138,22,-133,-53v4,-59,64,-60,62,-120r31,0v10,63,-55,69,-61,117v-7,49,61,36,97,28","w":138},"\u00a1":{"d":"89,72r-33,0r1,-167r31,0xm89,-135r-33,0r0,-45r33,0r0,45","w":142},"^":{"d":"95,-207r-47,91r-33,0r63,-122r32,0r65,122r-32,0"},"\u00b7":{"d":"26,-130r33,0r0,44r-33,0r0,-44","w":89},"\u2026":{"d":"212,-44r33,0r0,44r-33,0r0,-44xm121,-44r33,0r0,44r-33,0r0,-44xm29,-44r33,0r0,44r-33,0r0,-44","w":267},"\u0394":{"d":"92,-215r-46,187r100,0r-46,-187r-8,0xm69,-243r54,0r55,218r0,25r-164,0r0,-25"},"\u2206":{"d":"92,-215r-46,187r100,0r-46,-187r-8,0xm69,-243r54,0r55,218r0,25r-164,0r0,-25"},"\u00a4":{"d":"58,-91v0,22,15,38,37,38v23,0,38,-15,38,-38v0,-22,-16,-37,-38,-37v-22,0,-37,15,-37,37xm130,-35v-22,14,-48,15,-70,0r-25,26r-21,-21r25,-26v-13,-22,-14,-47,0,-69r-25,-26r21,-21r25,25v22,-14,48,-13,70,0r26,-25r21,21r-26,26v14,22,13,47,0,69r26,26r-21,21"},"\u00ac":{"d":"170,-126r0,86r-30,0r0,-56r-119,0r0,-30r149,0"},"\u03a9":{"d":"47,-128v1,45,19,77,36,108r0,23r-72,0r0,-26r40,0v-42,-55,-69,-218,44,-218v114,0,86,164,44,218r40,0r0,26r-71,0r0,-23v18,-30,36,-64,36,-108v0,-45,-4,-84,-49,-84v-45,0,-49,37,-48,84"},"\u2126":{"d":"47,-128v1,45,19,77,36,108r0,23r-72,0r0,-26r40,0v-42,-55,-69,-218,44,-218v114,0,86,164,44,218r40,0r0,26r-71,0r0,-23v18,-30,36,-64,36,-108v0,-45,-4,-84,-49,-84v-45,0,-49,37,-48,84"},"\u0161":{"d":"31,-267r33,0r25,29r24,-29r33,0r-45,55r-25,0xm25,-108v-28,-75,66,-87,124,-68r-1,25v-36,-3,-105,-21,-94,29v24,31,101,2,101,69v0,68,-78,60,-132,50r1,-26v38,2,109,24,99,-33v-21,-25,-85,-10,-98,-46","w":176},"\u00fd":{"d":"128,-271r11,28r-82,31r-10,-26xm37,-180r42,151r10,0r42,-151r31,0r-72,259r-31,0r23,-79r-26,0r-49,-180r30,0","w":172},"\u017e":{"d":"26,-267r33,0r25,29r24,-29r33,0r-45,55r-25,0xm21,-180r130,0r0,27r-94,126r94,0r0,27r-129,0r-1,-27r95,-126r-95,0r0,-27","w":172},"\u00d7":{"d":"96,-121r52,-51r21,21r-51,52r50,50r-21,22r-51,-51r-51,52r-22,-22r52,-51r-51,-51r22,-22"},"\u0160":{"d":"114,-286r-27,0r-48,-50r36,0r26,26r26,-26r35,0xm19,-186v0,-76,89,-74,153,-61r-2,27v-51,-5,-137,-19,-116,51v27,45,124,16,124,97v0,86,-88,82,-156,68r2,-27v52,8,141,17,120,-55v-31,-43,-125,-18,-125,-100","w":191},"\u0142":{"d":"29,-96r-20,14r-15,-21r35,-25r0,-129r30,0r0,108r23,-16r15,21r-38,26r0,118r-30,0r0,-96","w":88},"\u0141":{"d":"-4,-105r37,-26r0,-119r32,0r0,97r58,-41r16,23r-74,51r0,90r108,0r0,30r-140,0r0,-98r-22,16"},"\u00f0":{"d":"46,-81v-8,53,63,76,88,36v10,-16,12,-42,13,-71v-37,-17,-104,-20,-101,35xm13,-81v0,-70,76,-88,133,-62v-3,-35,-21,-55,-51,-69r-39,28r-14,-19r28,-20r-38,-10r5,-26v23,4,43,9,60,16r36,-26r13,19r-25,19v35,21,58,52,58,105v-1,73,-13,129,-85,129v-53,0,-81,-29,-81,-84"},"\u00d0":{"d":"118,-29v51,-1,61,-49,61,-100v0,-49,-11,-92,-61,-92r-54,0r0,81r53,0r0,30r-53,0r0,81r54,0xm211,-129v0,73,-20,129,-93,129r-85,0r0,-110r-25,0r0,-30r25,0r0,-110r85,0v71,0,94,49,93,121","w":230},"\u00dd":{"d":"140,-340r11,29r-82,30r-10,-25xm116,0r-31,0r0,-107r-77,-143r35,0r57,110r57,-110r35,0r-76,143r0,107","w":199},"\u00de":{"d":"201,-129v-2,54,-26,87,-81,87r-56,0r0,42r-31,0r0,-250r31,0r0,39v79,-5,140,5,137,82xm169,-129v3,-56,-50,-55,-105,-52r0,109r56,0v34,0,47,-23,49,-57","w":217},"\u00fe":{"d":"177,-93v0,79,-39,107,-114,94r0,78r-30,0r0,-336r30,0r0,86v14,-6,28,-13,48,-13v50,1,66,36,66,91xm107,-156v-17,0,-32,5,-44,11r0,119v10,3,23,3,36,3v40,0,47,-28,47,-70v0,-34,-9,-63,-39,-63","w":196},"\u017d":{"d":"118,-285r-28,0r-48,-49r36,0r26,25r26,-25r35,0xm23,-250r159,0r0,36r-121,178r0,7r121,0r0,29r-159,0r0,-35r121,-179r0,-7r-121,0r0,-29","w":205},"\u00a6":{"d":"109,-63r0,153r-31,0r0,-153r31,0xm109,-270r0,148r-31,0r0,-148r31,0"},"\u011b":{"d":"33,-267r34,0r24,29r25,-29r33,0r-45,55r-26,0xm134,-101v8,-52,-44,-73,-73,-43v-8,9,-12,24,-12,43r85,0xm50,-77v-7,59,53,59,108,51r0,23v-19,4,-43,7,-67,7v-55,0,-72,-37,-72,-93v0,-58,22,-94,74,-95v59,-2,78,47,70,107r-113,0","w":182},"\u010d":{"d":"24,-267r34,0r24,29r25,-29r33,0r-45,55r-26,0xm20,-93v0,-79,50,-103,121,-86r-1,26v-53,-9,-95,0,-89,60v-7,59,31,79,90,66r1,26v-13,3,-33,4,-49,5v-58,0,-73,-38,-73,-97","w":156},"\u0109":{"d":"70,-267r24,0r46,55r-33,0r-25,-29r-24,29r-34,0xm20,-93v0,-79,50,-103,121,-86r-1,26v-53,-9,-95,0,-89,60v-7,59,31,79,90,66r1,26v-13,3,-33,4,-49,5v-58,0,-73,-38,-73,-97","w":156},"\u0107":{"d":"117,-271r11,28r-82,31r-10,-26xm20,-93v0,-79,50,-103,121,-86r-1,26v-53,-9,-95,0,-89,60v-7,59,31,79,90,66r1,26v-13,3,-33,4,-49,5v-58,0,-73,-38,-73,-97","w":156},"\u011d":{"d":"81,-267r25,0r46,55r-34,0r-24,-29r-25,29r-33,0xm51,-122v-1,25,12,36,35,37v24,0,39,-12,39,-37v0,-24,-13,-36,-38,-36v-23,1,-36,12,-36,36xm144,26v2,-38,-42,-22,-78,-28v-31,19,-19,61,29,61v29,0,48,-8,49,-33xm175,25v-2,45,-33,61,-80,61v-46,0,-77,-11,-77,-55v0,-24,14,-34,28,-45v-18,-11,-9,-41,2,-54v-15,-10,-28,-26,-28,-54v0,-53,50,-71,100,-57r55,-1r0,25r-31,0v31,46,-9,111,-73,93v-8,11,-12,36,11,35v50,-2,96,1,93,52","w":187},"\u0125":{"d":"142,-94v10,-57,-33,-75,-80,-52r0,146r-31,0r0,-257r22,0r36,-44r24,0r46,54r-33,0r-24,-28v-13,10,-15,31,-40,28r0,75v15,-5,30,-11,50,-12v83,-2,56,107,61,184r-31,0r0,-94","w":203},"\u0129":{"d":"73,-247v11,-2,18,-8,26,-14r7,23v-17,30,-61,13,-86,2v-11,1,-20,9,-27,15r-7,-23v9,-9,18,-19,34,-20v22,-1,35,14,53,17xm32,-180r31,0r0,180r-31,0r0,-180","w":95},"\u013a":{"d":"80,-307r10,28r-58,22r27,0r0,257r-30,0r0,-256r-20,8r-10,-26","w":88},"\u0144":{"d":"137,-271r11,28r-82,31r-10,-26xm144,-93v11,-59,-36,-77,-81,-51r0,144r-30,0r0,-180r30,0r0,12v14,-8,31,-15,51,-16v83,-3,56,107,61,184r-31,0r0,-93","w":204},"\u0148":{"d":"44,-267r34,0r24,29r24,-29r34,0r-46,55r-25,0xm144,-93v11,-59,-36,-77,-81,-51r0,144r-30,0r0,-180r30,0r0,12v14,-8,31,-15,51,-16v83,-3,56,107,61,184r-31,0r0,-93","w":204},"\u015d":{"d":"76,-267r24,0r46,55r-34,0r-24,-29r-24,29r-34,0xm25,-108v-28,-75,66,-87,124,-68r-1,25v-36,-3,-105,-21,-94,29v24,31,101,2,101,69v0,68,-78,60,-132,50r1,-26v38,2,109,24,99,-33v-21,-25,-85,-10,-98,-46","w":176},"\u015b":{"d":"123,-271r11,28r-82,31r-10,-26xm25,-108v-28,-75,66,-87,124,-68r-1,25v-36,-3,-105,-21,-94,29v24,31,101,2,101,69v0,68,-78,60,-132,50r1,-26v38,2,109,24,99,-33v-21,-25,-85,-10,-98,-46","w":176},"\u0155":{"d":"103,-271r11,28r-82,31r-10,-26xm118,-152v-21,6,-42,13,-58,23r0,129r-30,0r0,-180r30,0r0,23v16,-12,35,-21,58,-27r0,32","w":128},"\u0169":{"d":"73,-264v28,0,57,30,79,3r7,23v-17,30,-61,13,-86,2v-11,1,-20,9,-27,15r-7,-23v9,-9,18,-20,34,-20xm95,-23v18,0,33,-7,45,-13r0,-144r30,0r0,180r-30,0r0,-11v-14,8,-30,14,-50,15v-84,3,-54,-107,-60,-184r30,0r0,94v1,34,2,63,35,63","w":201},"\u0159":{"d":"10,-267r34,0r24,29r24,-29r34,0r-46,55r-25,0xm118,-152v-21,6,-42,13,-58,23r0,129r-30,0r0,-180r30,0r0,23v16,-12,35,-21,58,-27r0,32","w":128},"\u0177":{"d":"75,-267r24,0r46,55r-34,0r-24,-29r-24,29r-34,0xm40,-180r41,151r11,0r42,-151r30,0r-72,259r-30,0r22,-79r-26,0r-49,-180r31,0","w":173},"\u0175":{"d":"123,-267r25,0r46,55r-34,0r-24,-29r-24,29r-34,0xm40,-180r33,153r9,0r38,-149r32,0r38,149r8,0r34,-153r30,0r-41,180r-52,0r-33,-136r-34,136r-52,0r-40,-180r30,0","w":271},"\u017a":{"d":"123,-271r11,28r-82,31r-10,-26xm21,-180r130,0r0,27r-94,126r94,0r0,27r-129,0r-1,-27r95,-126r-95,0r0,-27","w":172},"\u016f":{"d":"102,-248v-10,0,-17,6,-17,16v0,10,7,17,17,17v10,0,16,-7,16,-17v1,-10,-6,-17,-16,-16xm102,-194v-22,1,-39,-16,-38,-38v1,-23,15,-37,38,-38v21,-1,38,17,38,38v-1,24,-15,37,-38,38xm95,-23v18,0,33,-7,45,-13r0,-144r30,0r0,180r-30,0r0,-11v-14,8,-30,14,-50,15v-84,3,-54,-107,-60,-184r30,0r0,94v1,34,2,63,35,63","w":201},"\u01fd":{"d":"188,-271r10,28r-81,31r-10,-26xm246,-101v-1,-36,-8,-57,-42,-57v-30,0,-45,19,-45,57r87,0xm52,-53v0,45,55,30,82,19v-4,-15,-5,-34,-5,-53v-32,5,-77,-5,-77,34xm159,-77v-6,60,54,58,110,51r1,23v-38,7,-100,15,-122,-12v-23,9,-44,19,-76,19v-59,0,-70,-95,-15,-106v21,-4,48,-7,72,-9v11,-59,-49,-44,-97,-40r-1,-27v43,-3,104,-18,119,19v11,-16,28,-25,54,-25v56,-3,78,44,71,107r-116,0","w":298},"\u01ff":{"d":"121,-180v7,2,13,4,19,8r16,-39r-20,-7xm68,1v-8,-2,-13,-3,-18,-8r-17,40r20,7xm130,-271r11,28r-82,31r-10,-26xm62,-35v4,5,9,8,16,10r49,-119v-4,-5,-10,-9,-17,-11xm140,-172v51,36,46,176,-45,176v-10,0,-19,-1,-27,-3r10,-26v68,22,75,-75,49,-119xm19,-92v-4,-68,38,-104,102,-88r-11,25v-67,-22,-71,76,-48,120v-3,10,-8,19,-12,28v-25,-15,-29,-45,-31,-85"},"\u01fc":{"d":"184,-340r11,29r-82,30r-10,-25xm62,-89r67,0r0,-132r-32,0xm129,-60r-74,0r-16,60r-32,0r66,-250r205,0r0,29r-119,0r0,81r97,0r0,28r-97,0r0,83r119,0r0,29r-149,0r0,-60","w":298},"\u0106":{"d":"140,-340r10,29r-81,30r-10,-25xm113,-26v22,0,43,-4,62,-6r1,29v-22,2,-43,7,-67,7v-74,1,-91,-54,-90,-129v0,-75,15,-130,90,-129v25,0,47,4,67,8r-1,28r-62,-6v-56,-1,-61,43,-61,99v0,56,5,100,61,99","w":191},"\u0154":{"d":"147,-340r10,29r-81,30r-10,-25xm64,-121v54,2,106,5,106,-51v0,-55,-53,-50,-106,-49r0,100xm202,-173v0,39,-15,63,-44,73r46,100r-34,0r-43,-93r-63,0r0,93r-31,0r0,-250v83,0,169,-12,169,77","w":223},"\u011a":{"d":"127,-289r-27,0r-48,-50r35,0r26,26r26,-26r36,0xm33,-250r149,0r0,29r-118,0r0,81r96,0r0,28r-96,0r0,83r118,0r0,29r-149,0r0,-250","w":202},"\u010e":{"d":"122,-286r-28,0r-48,-50r36,0r26,26r26,-26r35,0xm118,-29v51,-1,61,-49,61,-100v0,-49,-11,-92,-61,-92r-54,0r0,192r54,0xm211,-129v0,73,-20,129,-93,129r-85,0r0,-250r85,0v71,0,94,49,93,121","w":230},"\u010c":{"d":"121,-286r-28,0r-48,-50r36,0r26,26r26,-26r35,0xm113,-26v22,0,43,-4,62,-6r1,29v-22,2,-43,7,-67,7v-74,1,-91,-54,-90,-129v0,-75,15,-130,90,-129v25,0,47,4,67,8r-1,28r-62,-6v-56,-1,-61,43,-61,99v0,56,5,100,61,99","w":191},"\u0114":{"d":"168,-334v2,47,-69,63,-100,35v-10,-9,-15,-21,-16,-35r31,0v0,14,13,23,27,23v15,0,27,-9,27,-23r31,0xm33,-250r149,0r0,29r-118,0r0,81r96,0r0,28r-96,0r0,83r118,0r0,29r-149,0r0,-250","w":202},"\u0112":{"d":"46,-321r114,0r0,27r-114,0r0,-27xm33,-250r149,0r0,29r-118,0r0,81r96,0r0,28r-96,0r0,83r118,0r0,29r-149,0r0,-250","w":202},"\u015e":{"d":"106,17v26,1,40,4,41,29v1,34,-36,36,-66,29r1,-19v15,0,38,6,38,-12v0,-14,-15,-12,-29,-12r0,-28v-24,-1,-49,-4,-69,-8r2,-27v52,8,141,17,120,-55v-31,-43,-125,-18,-125,-100v0,-76,89,-74,153,-61r-2,27v-51,-5,-137,-19,-116,51v27,45,124,16,124,97v0,51,-23,72,-72,75r0,14","w":191},"\u0176":{"d":"86,-335r28,0r47,49r-35,0r-26,-25r-26,25r-35,0xm116,0r-31,0r0,-107r-77,-143r35,0r57,110r57,-110r35,0r-76,143r0,107","w":199},"\u015c":{"d":"84,-335r28,0r47,49r-35,0r-26,-25r-26,25r-36,0xm19,-186v0,-76,89,-74,153,-61r-2,27v-51,-5,-137,-19,-116,51v27,45,124,16,124,97v0,86,-88,82,-156,68r2,-27v52,8,141,17,120,-55v-31,-43,-125,-18,-125,-100","w":191},"\u0139":{"d":"127,-340r11,29r-82,30r-10,-25xm33,0r0,-250r31,0r0,221r102,0r0,29r-133,0","w":182},"\u0143":{"d":"160,-340r11,29r-82,30r-10,-25xm33,-250r56,0r90,218r6,0r0,-218r32,0r0,250r-55,0r-91,-218r-7,0r0,218r-31,0r0,-250","w":249},"\u012a":{"d":"-12,-324r114,0r0,26r-114,0r0,-26xm30,-250r31,0r0,250r-31,0r0,-250","w":90},"\u012c":{"d":"18,-333v0,28,54,29,54,0r32,0v2,45,-68,62,-100,35v-10,-9,-16,-21,-17,-35r31,0xm30,-250r31,0r0,250r-31,0r0,-250","w":90},"\u0130":{"d":"30,-326r30,0r0,34r-30,0r0,-34xm30,-250r31,0r0,250r-31,0r0,-250","w":90},"\u0134":{"d":"42,-334r27,0r48,49r-35,0r-26,-25r-26,25r-36,0xm13,-2v28,1,38,-12,37,-40r0,-208r31,0r0,210v3,49,-19,68,-68,66r0,-28","w":111},"\u0128":{"d":"76,-314v12,-1,19,-9,28,-16r7,24v-10,9,-18,21,-34,21v-22,0,-39,-17,-59,-20v-11,3,-21,11,-29,18r-7,-24v10,-9,19,-19,35,-22v22,1,39,16,59,19xm30,-250r31,0r0,250r-31,0r0,-250","w":90},"\u0124":{"d":"108,-334r28,0r48,49r-35,0r-27,-25r-26,25r-35,0xm181,-112r-117,0r0,112r-31,0r0,-250r31,0r0,109r117,0r0,-109r31,0r0,250r-31,0r0,-112","w":244},"\u0120":{"d":"95,-328r31,0r0,34r-31,0r0,-34xm52,-125v-4,77,33,114,112,95r0,-73r-38,0r0,-27r69,0r0,126v-25,4,-52,8,-80,8v-75,0,-95,-52,-95,-129v0,-76,20,-129,94,-129v30,0,55,5,81,9r-2,28v-23,-4,-49,-7,-75,-7v-57,-1,-63,42,-66,99","w":218},"\u010a":{"d":"89,-326r31,0r0,34r-31,0r0,-34xm113,-26v22,0,43,-4,62,-6r1,29v-22,2,-43,7,-67,7v-74,1,-91,-54,-90,-129v0,-75,15,-130,90,-129v25,0,47,4,67,8r-1,28r-62,-6v-56,-1,-61,43,-61,99v0,56,5,100,61,99","w":191},"\u0100":{"d":"51,-323r115,0r0,27r-115,0r0,-27xm67,-89r83,0r-34,-133r-14,0xm78,-250r62,0r66,250r-31,0r-18,-60r-97,0r-17,60r-31,0","w":217},"\u0102":{"d":"167,-333v2,45,-68,62,-100,35v-10,-9,-16,-21,-17,-35r32,0v0,14,13,22,27,22v15,0,27,-8,27,-22r31,0xm67,-89r83,0r-34,-133r-14,0xm78,-250r62,0r66,250r-31,0r-18,-60r-97,0r-17,60r-31,0","w":217},"\u01fa":{"d":"109,-284v-21,-2,-29,31,-7,34v15,2,28,-2,27,-16v-1,-12,-8,-17,-20,-18xm142,-374r11,28r-82,31r-10,-25xm67,-89r83,0r-34,-133r-14,0xm109,-306v36,-5,57,41,34,66r63,240r-31,0r-18,-60r-97,0r-17,60r-31,0r63,-239v-25,-25,-4,-72,34,-67","w":217},"\u0147":{"d":"139,-285r-28,0r-48,-49r36,0r26,25r26,-25r35,0xm33,-250r56,0r90,218r6,0r0,-218r32,0r0,250r-55,0r-91,-218r-7,0r0,218r-31,0r0,-250","w":249},"\u011c":{"d":"100,-335r28,0r48,49r-35,0r-27,-25r-25,25r-36,0xm52,-125v-4,77,33,114,112,95r0,-73r-38,0r0,-27r69,0r0,126v-25,4,-52,8,-80,8v-75,0,-95,-52,-95,-129v0,-76,20,-129,94,-129v30,0,55,5,81,9r-2,28v-23,-4,-49,-7,-75,-7v-57,-1,-63,42,-66,99","w":218},"\u011e":{"d":"174,-333v3,46,-68,62,-100,35v-10,-9,-15,-21,-16,-35r31,0v0,14,13,22,27,22v15,0,27,-8,27,-22r31,0xm52,-125v-4,77,33,114,112,95r0,-73r-38,0r0,-27r69,0r0,126v-25,4,-52,8,-80,8v-75,0,-95,-52,-95,-129v0,-76,20,-129,94,-129v30,0,55,5,81,9r-2,28v-23,-4,-49,-7,-75,-7v-57,-1,-63,42,-66,99","w":218},"\u014c":{"d":"59,-323r115,0r0,27r-115,0r0,-27xm214,-123v0,78,-20,127,-97,127v-76,0,-97,-51,-97,-127v0,-77,21,-131,97,-131v76,0,97,53,97,131xm52,-123v0,57,10,98,65,98v55,0,65,-40,65,-98v0,-57,-9,-102,-65,-102v-56,0,-65,45,-65,102","w":234},"\u014e":{"d":"175,-333v3,46,-68,62,-100,35v-10,-9,-15,-21,-16,-35r31,0v0,14,13,22,27,22v15,0,27,-8,27,-22r31,0xm214,-123v0,78,-20,127,-97,127v-76,0,-97,-51,-97,-127v0,-77,21,-131,97,-131v76,0,97,53,97,131xm52,-123v0,57,10,98,65,98v55,0,65,-40,65,-98v0,-57,-9,-102,-65,-102v-56,0,-65,45,-65,102","w":234},"\u0158":{"d":"126,-285r-28,0r-48,-49r36,0r26,25r26,-25r35,0xm64,-121v54,2,106,5,106,-51v0,-55,-53,-50,-106,-49r0,100xm202,-173v0,39,-15,63,-44,73r46,100r-34,0r-43,-93r-63,0r0,93r-31,0r0,-250v83,0,169,-12,169,77","w":223},"\u015a":{"d":"131,-340r10,29r-81,30r-10,-25xm19,-186v0,-76,89,-74,153,-61r-2,27v-51,-5,-137,-19,-116,51v27,45,124,16,124,97v0,86,-88,82,-156,68r2,-27v52,8,141,17,120,-55v-31,-43,-125,-18,-125,-100","w":191},"\u0164":{"d":"102,-285r-27,0r-48,-49r35,0r26,25r26,-25r35,0xm3,-250r170,0r0,30r-69,0r0,220r-31,0r0,-220r-70,0r0,-30","w":176},"\u0168":{"d":"144,-315v11,-3,20,-10,28,-17r7,24v-9,10,-18,21,-34,21v-22,0,-39,-17,-59,-19v-12,1,-21,11,-29,17r-7,-23v10,-9,18,-22,36,-22v22,0,39,15,58,19xm115,3v-58,0,-86,-23,-86,-80r0,-173r31,0r0,173v0,36,19,51,55,51v37,0,57,-15,57,-51r0,-173r31,0r0,173v-1,57,-29,80,-88,80","w":231},"\u017c":{"d":"71,-250r30,0r0,34r-30,0r0,-34xm21,-180r130,0r0,27r-94,126r94,0r0,27r-129,0r-1,-27r95,-126r-95,0r0,-27","w":172},"\u016b":{"d":"47,-254r107,0r0,26r-107,0r0,-26xm95,-23v18,0,33,-7,45,-13r0,-144r30,0r0,180r-30,0r0,-11v-14,8,-30,14,-50,15v-84,3,-54,-107,-60,-184r30,0r0,94v1,34,2,63,35,63","w":201},"\u016d":{"d":"160,-265v4,50,-71,69,-103,38v-10,-10,-15,-23,-16,-38r31,0v0,15,11,26,28,26v17,0,29,-10,29,-26r31,0xm95,-23v18,0,33,-7,45,-13r0,-144r30,0r0,180r-30,0r0,-11v-14,8,-30,14,-50,15v-84,3,-54,-107,-60,-184r30,0r0,94v1,34,2,63,35,63","w":201},"\u0101":{"d":"40,-254r107,0r0,26r-107,0r0,-26xm51,-53v0,41,49,32,75,21r0,-55v-32,4,-75,-5,-75,34xm29,-176v53,-11,135,-21,127,51v5,36,-16,99,21,103r-2,26v-21,-1,-33,-4,-44,-14v-40,23,-111,19,-111,-42v0,-56,56,-55,106,-59v11,-58,-49,-45,-96,-40","w":188},"\u0103":{"d":"154,-265v3,49,-70,69,-103,38v-10,-10,-16,-23,-17,-38r32,0v0,16,11,26,28,26v17,0,27,-11,28,-26r32,0xm51,-53v0,41,49,32,75,21r0,-55v-32,4,-75,-5,-75,34xm29,-176v53,-11,135,-21,127,51v5,36,-16,99,21,103r-2,26v-21,-1,-33,-4,-44,-14v-40,23,-111,19,-111,-42v0,-56,56,-55,106,-59v11,-58,-49,-45,-96,-40","w":188},"\u010b":{"d":"70,-250r31,0r0,34r-31,0r0,-34xm20,-93v0,-79,50,-103,121,-86r-1,26v-53,-9,-95,0,-89,60v-7,59,31,79,90,66r1,26v-13,3,-33,4,-49,5v-58,0,-73,-38,-73,-97","w":156},"\u016a":{"d":"58,-323r114,0r0,27r-114,0r0,-27xm115,3v-58,0,-86,-23,-86,-80r0,-173r31,0r0,173v0,36,19,51,55,51v37,0,57,-15,57,-51r0,-173r31,0r0,173v-1,57,-29,80,-88,80","w":231},"\u016c":{"d":"174,-333v3,46,-68,62,-100,35v-10,-9,-15,-21,-16,-35r31,0v0,14,13,22,27,22v15,0,27,-8,27,-22r31,0xm115,3v-58,0,-86,-23,-86,-80r0,-173r31,0r0,173v0,36,19,51,55,51v37,0,57,-15,57,-51r0,-173r31,0r0,173v-1,57,-29,80,-88,80","w":231},"\u016e":{"d":"116,-321v-11,0,-20,5,-20,17v0,12,9,17,20,17v13,0,20,-6,20,-17v0,-11,-8,-17,-20,-17xm116,-343v23,0,44,14,44,39v0,24,-21,39,-44,39v-25,0,-45,-15,-45,-39v0,-25,20,-39,45,-39xm115,3v-58,0,-86,-23,-86,-80r0,-173r31,0r0,173v0,36,19,51,55,51v37,0,57,-15,57,-51r0,-173r31,0r0,173v-1,57,-29,80,-88,80","w":231},"\u0174":{"d":"149,-335r28,0r47,49r-35,0r-26,-25r-26,25r-35,0xm46,-250r44,222r10,0r45,-219r36,0r47,219r9,0r43,-222r32,0r-51,250r-56,0r-42,-205r-41,205r-56,0r-52,-250r32,0","w":326},"\u0179":{"d":"138,-340r10,29r-81,30r-10,-25xm23,-250r159,0r0,36r-121,178r0,7r121,0r0,29r-159,0r0,-35r121,-179r0,-7r-121,0r0,-29","w":205},"\u017b":{"d":"87,-326r31,0r0,34r-31,0r0,-34xm23,-250r159,0r0,36r-121,178r0,7r121,0r0,29r-159,0r0,-35r121,-179r0,-7r-121,0r0,-29","w":205},"\u0116":{"d":"93,-326r30,0r0,34r-30,0r0,-34xm33,-250r149,0r0,29r-118,0r0,81r96,0r0,28r-96,0r0,83r118,0r0,29r-149,0r0,-250","w":202},"\u0108":{"d":"94,-335r28,0r48,49r-35,0r-27,-25r-26,25r-35,0xm113,-26v22,0,43,-4,62,-6r1,29v-22,2,-43,7,-67,7v-74,1,-91,-54,-90,-129v0,-75,15,-130,90,-129v25,0,47,4,67,8r-1,28r-62,-6v-56,-1,-61,43,-61,99v0,56,5,100,61,99","w":191},"\u0113":{"d":"39,-254r107,0r0,26r-107,0r0,-26xm134,-101v8,-52,-44,-73,-73,-43v-8,9,-12,24,-12,43r85,0xm50,-77v-7,59,53,59,108,51r0,23v-19,4,-43,7,-67,7v-55,0,-72,-37,-72,-93v0,-58,22,-94,74,-95v59,-2,78,47,70,107r-113,0","w":182},"\u0115":{"d":"152,-265v4,50,-70,69,-103,38v-10,-10,-15,-23,-16,-38r31,0v0,16,12,26,29,26v17,0,27,-11,28,-26r31,0xm134,-101v8,-52,-44,-73,-73,-43v-8,9,-12,24,-12,43r85,0xm50,-77v-7,59,53,59,108,51r0,23v-19,4,-43,7,-67,7v-55,0,-72,-37,-72,-93v0,-58,22,-94,74,-95v59,-2,78,47,70,107r-113,0","w":182},"\u0117":{"d":"76,-250r30,0r0,34r-30,0r0,-34xm134,-101v8,-52,-44,-73,-73,-43v-8,9,-12,24,-12,43r85,0xm50,-77v-7,59,53,59,108,51r0,23v-19,4,-43,7,-67,7v-55,0,-72,-37,-72,-93v0,-58,22,-94,74,-95v59,-2,78,47,70,107r-113,0","w":182},"\u011f":{"d":"153,-265v4,50,-70,69,-103,38v-10,-10,-15,-23,-16,-38r31,0v0,16,12,26,29,26v17,0,27,-11,28,-26r31,0xm51,-122v-1,25,12,36,35,37v24,0,39,-12,39,-37v0,-24,-13,-36,-38,-36v-23,1,-36,12,-36,36xm144,26v2,-38,-42,-22,-78,-28v-31,19,-19,61,29,61v29,0,48,-8,49,-33xm175,25v-2,45,-33,61,-80,61v-46,0,-77,-11,-77,-55v0,-24,14,-34,28,-45v-18,-11,-9,-41,2,-54v-15,-10,-28,-26,-28,-54v0,-53,50,-71,100,-57r55,-1r0,25r-31,0v31,46,-9,111,-73,93v-8,11,-12,36,11,35v50,-2,96,1,93,52","w":187},"\u0121":{"d":"78,-250r31,0r0,34r-31,0r0,-34xm51,-122v-1,25,12,36,35,37v24,0,39,-12,39,-37v0,-24,-13,-36,-38,-36v-23,1,-36,12,-36,36xm144,26v2,-38,-42,-22,-78,-28v-31,19,-19,61,29,61v29,0,48,-8,49,-33xm175,25v-2,45,-33,61,-80,61v-46,0,-77,-11,-77,-55v0,-24,14,-34,28,-45v-18,-11,-9,-41,2,-54v-15,-10,-28,-26,-28,-54v0,-53,50,-71,100,-57r55,-1r0,25r-31,0v31,46,-9,111,-73,93v-8,11,-12,36,11,35v50,-2,96,1,93,52","w":187},"\u012d":{"d":"107,-265v4,50,-70,69,-103,38v-10,-10,-15,-23,-16,-38r31,0v0,16,12,26,29,26v17,0,27,-11,28,-26r31,0xm32,-180r31,0r0,180r-31,0r0,-180","w":95},"\u012b":{"d":"-6,-254r107,0r0,26r-107,0r0,-26xm32,-180r31,0r0,180r-31,0r0,-180","w":95},"\u0237":{"d":"-10,58v24,-14,42,-21,42,-60r0,-178r30,0r-2,208v-7,31,-30,41,-56,56","w":90},"\u0135":{"d":"33,-267r24,0r46,55r-34,0r-24,-29r-24,29r-34,0xm-10,58v24,-14,42,-21,42,-60r0,-178r30,0r-2,208v-7,31,-30,41,-56,56","w":90},"\u014d":{"d":"41,-254r107,0r0,26r-107,0r0,-26xm50,-92v0,39,4,69,45,69v39,0,45,-30,45,-68v0,-39,-8,-66,-45,-66v-39,0,-45,25,-45,65xm19,-92v0,-58,21,-92,76,-92v56,0,77,36,76,93v0,57,-18,96,-76,95v-58,0,-76,-36,-76,-96"},"\u014f":{"d":"155,-265v3,49,-70,69,-103,38v-10,-10,-16,-23,-17,-38r32,0v0,15,11,26,28,26v17,0,28,-10,28,-26r32,0xm50,-92v0,39,4,69,45,69v39,0,45,-30,45,-68v0,-39,-8,-66,-45,-66v-39,0,-45,25,-45,65xm19,-92v0,-58,21,-92,76,-92v56,0,77,36,76,93v0,57,-18,96,-76,95v-58,0,-76,-36,-76,-96"},"\u00b9":{"d":"10,-259v19,-10,28,-29,61,-25r0,112r-26,0r0,-84r-23,16","w":95},"\u00b2":{"d":"8,-284v32,-5,77,-11,75,29v-2,31,-27,41,-42,60r43,0r0,23r-76,0r0,-22v15,-20,41,-31,48,-58v-1,-20,-31,-10,-47,-8","w":95},"\u00b3":{"d":"59,-254v-1,-19,-31,-8,-47,-8r-2,-22v31,-4,76,-12,76,27v0,14,-6,22,-14,26v32,12,16,69,-22,63v-14,-1,-28,-1,-41,-4r1,-22v18,-1,52,10,53,-11v0,-18,-23,-13,-40,-14r0,-21v17,0,37,2,36,-14","w":95},"\u015f":{"d":"93,17v25,1,39,4,40,29v2,34,-36,36,-66,29r1,-19v16,0,39,6,39,-12v0,-14,-16,-12,-30,-12r0,-28r-54,-7r1,-26v38,2,109,24,99,-33v-25,-30,-102,-5,-102,-68v0,-63,78,-58,128,-46r-1,25v-36,-3,-105,-21,-94,29v24,31,104,3,101,69v-1,39,-24,56,-62,57r0,13","w":176},"\u0105":{"d":"51,-53v0,41,49,32,75,21r0,-55v-32,4,-75,-5,-75,34xm175,4v-21,-7,-43,39,-18,44v6,1,13,0,17,-2r3,26v-34,11,-80,-7,-60,-45v6,-12,15,-21,24,-30v-4,-2,-7,-4,-10,-7v-40,23,-111,19,-111,-42v0,-56,56,-55,106,-59v11,-58,-49,-45,-96,-40r-1,-25v53,-11,135,-21,127,51v5,36,-16,99,21,103","w":188},"\u0104":{"d":"67,-89r83,0r-34,-133r-14,0xm182,35v-1,14,17,16,29,11r3,26v-48,20,-87,-32,-45,-65v1,-2,7,-6,6,-7r-18,-60r-97,0r-17,60r-31,0r66,-250r62,0r66,250v-9,7,-22,21,-24,35","w":217},"\u0118":{"d":"183,72v-51,19,-86,-32,-45,-65r7,-7r-112,0r0,-250r149,0r0,29r-118,0r0,81r96,0r0,28r-96,0r0,83r118,0r0,29v-19,0,-26,21,-31,35v-1,14,17,16,29,11","w":202},"\u012e":{"d":"69,72v-51,19,-86,-32,-45,-65v1,-2,7,-6,6,-7r0,-250r31,0r-1,250v-8,10,-21,19,-23,35v-1,14,17,16,29,11","w":90},"\u0172":{"d":"149,0v-10,9,-39,39,-12,48v7,0,13,0,17,-2r3,26v-28,8,-65,2,-64,-29v0,-18,17,-31,22,-40v-58,0,-86,-23,-86,-80r0,-173r31,0r0,173v0,36,19,51,55,51v37,0,57,-15,57,-51r0,-173r31,0v-10,91,34,229,-54,250","w":231},"\u0110":{"d":"118,-29v51,-1,61,-49,61,-100v0,-49,-11,-92,-61,-92r-54,0r0,81r53,0r0,30r-53,0r0,81r54,0xm211,-129v0,73,-20,129,-93,129r-85,0r0,-110r-25,0r0,-30r25,0r0,-110r85,0v71,0,94,49,93,121","w":230},"\u0171":{"d":"93,-278r23,17r-52,53r-22,-17xm163,-278r22,17r-51,53r-22,-17xm95,-23v18,0,33,-7,45,-13r0,-144r30,0r0,180r-30,0r0,-11v-14,8,-30,14,-50,15v-84,3,-54,-107,-60,-184r30,0r0,94v1,34,2,63,35,63","w":201},"\u0170":{"d":"99,-335r25,14r-48,50r-24,-13xm172,-335r26,14r-49,50r-23,-13xm115,3v-58,0,-86,-23,-86,-80r0,-173r31,0r0,173v0,36,19,51,55,51v37,0,57,-15,57,-51r0,-173r31,0r0,173v-1,57,-29,80,-88,80","w":231},"\u0173":{"d":"170,0v-17,4,-40,40,-15,48v7,0,13,0,17,-2r3,26v-28,7,-66,2,-64,-29v1,-20,16,-36,29,-45r0,-9v-14,8,-30,14,-50,15v-84,3,-54,-107,-60,-184r30,0r0,94v1,34,2,63,35,63v18,0,33,-7,45,-13r0,-144r30,0r0,180","w":201},"\u0150":{"d":"96,-340r26,14r-49,50r-23,-12xm170,-339r25,13r-48,50r-24,-12xm214,-123v0,78,-20,127,-97,127v-76,0,-97,-51,-97,-127v0,-77,21,-131,97,-131v76,0,97,53,97,131xm52,-123v0,57,10,98,65,98v55,0,65,-40,65,-98v0,-57,-9,-102,-65,-102v-56,0,-65,45,-65,102","w":234},"\u01fe":{"d":"214,-123v0,78,-20,127,-97,127v-76,0,-97,-51,-97,-127v0,-77,21,-131,97,-131v76,0,97,53,97,131xm52,-123v0,57,10,98,65,98v55,0,65,-40,65,-98v0,-57,-9,-102,-65,-102v-56,0,-65,45,-65,102xm149,-340r11,29r-82,30r-10,-25","w":236},"\u0119":{"d":"134,-101v8,-52,-44,-73,-73,-43v-8,9,-12,24,-12,43r85,0xm158,-3v-21,4,-45,41,-20,51r17,-2r3,25v-28,8,-67,3,-64,-29v1,-17,12,-31,23,-39v-69,9,-98,-25,-98,-92v0,-58,22,-94,74,-95v59,-2,78,47,70,107r-113,0v-7,59,53,59,108,51r0,23","w":182},"\u014b":{"d":"147,-93v10,-58,-35,-78,-81,-51r0,144r-31,0r0,-180r31,0r0,12v13,-8,31,-15,51,-16v82,-3,55,107,60,184v3,53,-24,68,-59,86r-13,-26v24,-14,42,-22,42,-59r0,-94","w":204},"\u014a":{"d":"149,41v29,2,38,-11,36,-41r-23,0r-91,-218r-7,0r0,218r-31,0r0,-250r56,0r90,218r6,0r0,-218r32,0r-1,254v2,48,-17,69,-67,65r0,-28","w":249},"\u013e":{"d":"130,-164r-30,0r0,-86r30,0r0,86xm29,-257r30,0r0,257r-30,0r0,-257","w":147},"\u013d":{"d":"161,-164r-30,0r0,-86r30,0r0,86xm33,0r0,-250r31,0r0,221r102,0r0,29r-133,0","w":182},"\u010f":{"d":"237,-164r-30,0r0,-86r30,0r0,86xm50,-89v0,35,7,65,39,65v17,-1,31,-7,45,-11r0,-118r-38,-4v-36,1,-45,29,-46,68xm20,-90v0,-75,42,-107,114,-89r0,-78r30,0r0,257r-30,0r0,-10v-14,7,-30,14,-50,14v-51,0,-64,-41,-64,-94","w":266},"\u012f":{"d":"28,-250r31,0r0,34r-31,0r0,-34xm67,72v-58,22,-85,-41,-39,-72r0,-180r31,0r-1,180v-8,10,-21,19,-23,35v-2,14,17,16,28,11","w":86},"\u01fb":{"d":"94,-248v-10,0,-17,6,-17,16v0,10,7,17,17,17v10,0,17,-7,17,-17v0,-10,-7,-16,-17,-16xm51,-53v0,41,49,32,75,21r0,-55v-32,4,-75,-5,-75,34xm94,-194v-26,0,-44,-24,-36,-50r-10,-24r81,-34r11,28r-26,10v29,14,20,70,-20,70xm29,-176v53,-11,135,-21,127,51v5,36,-16,99,21,103r-2,26v-21,-1,-33,-4,-44,-14v-40,23,-111,19,-111,-42v0,-56,56,-55,106,-59v11,-58,-49,-45,-96,-40","w":188},"\u0151":{"d":"81,-278r23,17r-52,53r-22,-17xm151,-278r23,17r-52,53r-22,-17xm50,-92v0,39,4,69,45,69v39,0,45,-30,45,-68v0,-39,-8,-66,-45,-66v-39,0,-45,25,-45,65xm19,-92v0,-58,21,-92,76,-92v56,0,77,36,76,93v0,57,-18,96,-76,95v-58,0,-76,-36,-76,-96"},"\u0111":{"d":"50,-89v0,35,7,65,39,65v17,-1,31,-7,45,-11r0,-118r-38,-4v-36,1,-45,29,-46,68xm20,-90v0,-75,42,-107,114,-89r0,-45r-70,0r0,-27r70,0r0,-6r30,0v-1,6,2,7,7,6r0,27r-7,0r0,224r-30,0r0,-10v-14,7,-30,14,-50,14v-51,0,-64,-41,-64,-94","w":195},"\u0127":{"d":"142,-94v10,-57,-33,-75,-80,-52r0,146r-31,0r0,-206r-23,0r0,-27r23,0r0,-24r31,0r0,24r53,0r0,27r-53,0r0,34v15,-5,30,-11,50,-12v83,-2,56,107,61,184r-31,0r0,-94","w":203},"\u0165":{"d":"171,-164r-29,0r0,-86r29,0r0,86xm118,0v-52,13,-84,-6,-84,-62r0,-91r-24,0r0,-27r24,0r0,-54r30,0r0,54r52,0r0,27r-52,0r0,83v-3,42,13,52,53,45","w":188},"\u0167":{"d":"118,0v-64,17,-93,-18,-84,-89r-20,0r0,-27r20,0r0,-37r-24,0r0,-27r24,0r0,-54r30,0r0,54r52,0r0,27r-52,0r0,37r51,0r0,27r-51,0v-2,46,1,77,53,64","w":129},"\u0126":{"d":"181,-141r0,-40r-117,0r0,40r117,0xm4,-208r29,0r0,-42r31,0r0,42r117,0r0,-42r31,0r0,42r32,0r0,27r-32,0r0,181r-31,0r0,-112r-117,0r0,112r-31,0r0,-181r-29,0r0,-27","w":244},"\u0166":{"d":"17,-132r56,0r0,-88r-70,0r0,-30r170,0r0,30r-69,0r0,88r60,0r0,27r-60,0r0,105r-31,0r0,-105r-56,0r0,-27","w":176},"\u0122":{"d":"101,28r30,0r-18,76r-27,0xm52,-125v-4,77,33,114,112,95r0,-73r-38,0r0,-27r69,0r0,126v-25,4,-52,8,-80,8v-75,0,-95,-52,-95,-129v0,-76,20,-129,94,-129v30,0,55,5,81,9r-2,28v-23,-4,-49,-7,-75,-7v-57,-1,-63,42,-66,99","w":218},"\u013b":{"d":"84,28r29,0r-18,76r-27,0xm33,0r0,-250r31,0r0,221r102,0r0,29r-133,0","w":182},"\u0145":{"d":"117,28r30,0r-18,76r-27,0xm33,-250r56,0r90,218r6,0r0,-218r32,0r0,250r-55,0r-91,-218r-7,0r0,218r-31,0r0,-250","w":249},"\u0156":{"d":"104,28r30,0r-18,76r-27,0xm64,-121v54,2,106,5,106,-51v0,-55,-53,-50,-106,-49r0,100xm202,-173v0,39,-15,63,-44,73r46,100r-34,0r-43,-93r-63,0r0,93r-31,0r0,-250v83,0,169,-12,169,77","w":223},"\u0218":{"d":"88,28r30,0r-18,76r-27,0xm19,-186v0,-76,89,-74,153,-61r-2,27v-51,-5,-137,-19,-116,51v27,45,124,16,124,97v0,86,-88,82,-156,68r2,-27v52,8,141,17,120,-55v-31,-43,-125,-18,-125,-100","w":191},"\u0162":{"d":"81,28r30,0r-18,76r-27,0xm3,-250r170,0r0,30r-69,0r0,220r-31,0r0,-220r-70,0r0,-30","w":176},"\u0146":{"d":"94,28r30,0r-18,76r-27,0xm144,-93v11,-59,-36,-77,-81,-51r0,144r-30,0r0,-180r30,0r0,12v14,-8,31,-15,51,-16v83,-3,56,107,61,184r-31,0r0,-93","w":204},"\u013c":{"d":"37,28r30,0r-18,76r-27,0xm29,-257r30,0r0,257r-30,0r0,-257","w":88},"\u0137":{"d":"82,28r30,0r-18,76r-27,0xm33,0r0,-257r30,0r0,149r23,-1r50,-71r35,0r-57,84r58,96r-34,0r-51,-80r-24,2r0,78r-30,0","w":180},"\u0163":{"d":"57,28r30,0r-18,76r-27,0xm118,0v-52,13,-84,-6,-84,-62r0,-91r-24,0r0,-27r24,0r0,-54r30,0r0,54r52,0r0,27r-52,0r0,83v-3,42,13,52,53,45","w":129},"\u0219":{"d":"80,28r30,0r-18,76r-27,0xm25,-108v-28,-75,66,-87,124,-68r-1,25v-36,-3,-105,-21,-94,29v24,31,101,2,101,69v0,68,-78,60,-132,50r1,-26v38,2,109,24,99,-33v-21,-25,-85,-10,-98,-46","w":176},"\u0157":{"d":"57,28r29,0r-18,76r-27,0xm118,-152v-21,6,-42,13,-58,23r0,129r-30,0r0,-180r30,0r0,23v16,-12,35,-21,58,-27r0,32","w":128},"\u0123":{"d":"96,-212r-29,0r18,-76r27,0xm51,-122v-1,25,12,36,35,37v24,0,39,-12,39,-37v0,-24,-13,-36,-38,-36v-23,1,-36,12,-36,36xm144,26v2,-38,-42,-22,-78,-28v-31,19,-19,61,29,61v29,0,48,-8,49,-33xm175,25v-2,45,-33,61,-80,61v-46,0,-77,-11,-77,-55v0,-24,14,-34,28,-45v-18,-11,-9,-41,2,-54v-15,-10,-28,-26,-28,-54v0,-53,50,-71,100,-57r55,-1r0,25r-31,0v31,46,-9,111,-73,93v-8,11,-12,36,11,35v50,-2,96,1,93,52","w":187},"\u0136":{"d":"99,28r30,0r-18,76r-27,0xm100,-109r-36,2r0,107r-31,0r0,-250r31,0r0,115r36,-2r59,-113r37,0r-69,125r72,125r-37,0","w":213}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Generated in 2009 by FontLab Studio. Copyright info pending.
 */
Cufon.registerFont({"w":190,"face":{"font-family":"TitilliumMaps26L100","font-weight":100,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"3","bbox":"-17 -382 360 96","underline-thickness":"10.8","underline-position":"-25.2","unicode-range":"U+0020-U+25CA"},"glyphs":{" ":{"w":84},"\u00a0":{"w":84},"C":{"d":"36,-125v0,82,28,135,116,112r22,-3r1,12v-19,4,-41,7,-64,7v-74,1,-88,-54,-88,-128v0,-74,13,-132,88,-130v23,0,46,2,64,7r-1,12v-20,-3,-41,-7,-63,-7v-67,-2,-75,52,-75,118","w":193},"c":{"d":"25,-94v0,-74,40,-99,114,-86r-1,12v-61,-13,-108,6,-99,74v-8,70,31,98,100,82r0,12v-13,1,-25,3,-40,3v-62,0,-74,-37,-74,-97","w":157},"d":{"d":"38,-86v0,42,9,78,48,78v23,0,42,-10,59,-17r0,-143r-44,-4v-50,0,-64,35,-63,86xm101,-183v14,-1,33,2,44,4r0,-84r12,0r0,263r-12,0r0,-13v-17,8,-35,16,-59,16v-49,-1,-61,-40,-61,-90v-1,-58,18,-97,76,-96","w":193},"e":{"d":"148,-96v16,-77,-86,-105,-107,-35v-3,10,-5,21,-5,35r112,0xm36,-85v-6,70,45,88,117,73r1,12r-65,3v-51,-1,-66,-40,-66,-93v0,-56,19,-92,71,-93v55,-1,68,41,67,98r-125,0","w":182},"f":{"d":"113,-254v-56,-9,-68,16,-63,74r58,0r0,12r-58,0r0,168r-13,0r0,-168r-24,0r0,-12r24,0v-5,-60,10,-97,76,-85r0,11","w":118},"g":{"d":"37,-123v1,31,13,47,45,47v33,0,51,-14,51,-47v0,-32,-16,-49,-49,-49v-30,-1,-47,19,-47,49xm154,27v2,-47,-50,-34,-93,-38v-12,11,-27,18,-27,39v0,36,20,47,57,47v37,0,61,-13,63,-48xm24,-123v0,-49,47,-72,92,-56r54,-1r0,13r-40,0v10,9,16,24,16,44v2,48,-36,64,-82,57v-8,16,-17,44,13,44v44,0,94,-3,90,49v-3,42,-30,59,-76,59v-74,0,-91,-74,-39,-103v-14,-12,-6,-39,3,-52v-18,-9,-31,-24,-31,-54","w":181},"h":{"d":"108,-172v-24,0,-42,7,-59,15r0,157r-13,0r0,-263r13,0r0,94v17,-7,36,-13,59,-14v85,-5,52,107,59,183r-13,0v-8,-66,27,-173,-46,-172","w":204},"i":{"d":"32,-252r13,0r0,20r-13,0r0,-20xm32,-180r13,0r0,180r-13,0r0,-180","w":77},"j":{"d":"39,-252r12,0r0,20r-12,0r0,-20xm-7,67v26,-16,46,-27,46,-69r0,-178r12,0r-2,205v-7,28,-27,38,-51,53","w":83},"k":{"d":"40,0r0,-263r13,0r0,158r31,0r64,-75r15,0r-68,81r68,99r-15,0r-64,-93r-31,0r0,93r-13,0","w":173},"l":{"d":"34,-263r13,0r0,263r-13,0r0,-263","w":81},"m":{"d":"112,-172v-23,0,-42,10,-56,18r0,154r-12,0r0,-180r12,0r0,14v24,-16,83,-28,102,2v17,-10,39,-18,64,-19v85,-5,54,106,60,183r-13,0v-7,-74,29,-193,-68,-169v-15,4,-27,9,-39,15v14,39,8,102,9,154r-13,0v-6,-66,24,-172,-46,-172","w":315},"A":{"d":"55,-90r107,0r-45,-150r-16,0xm92,-252r34,0r77,252r-13,0r-24,-77r-115,0r-24,77r-13,0","w":217},"p":{"d":"159,-94v0,-43,-10,-78,-48,-78v-25,0,-41,10,-58,19r0,140v11,2,28,5,43,5v51,-1,62,-32,63,-86xm173,-93v6,79,-47,109,-120,92r0,84r-13,0r0,-263r13,0r0,14v15,-8,34,-17,58,-17v50,0,59,41,62,90","w":194},"q":{"d":"90,-8v23,0,41,-6,55,-15r0,-147v-68,-10,-106,12,-106,83v0,44,9,78,51,79xm145,-10v-16,7,-32,13,-55,13v-51,0,-65,-37,-65,-89v0,-83,50,-108,132,-94r0,263r-12,0r0,-93","w":193},"r":{"d":"117,-171v-25,7,-49,18,-68,31r0,140r-13,0r0,-180r13,0r0,28v18,-14,42,-25,68,-32r0,13","w":127},"s":{"d":"23,-135v0,-56,71,-51,120,-43r0,12v-40,-5,-106,-19,-106,30v0,63,113,12,113,84v0,64,-69,59,-124,50r1,-12v44,6,112,19,109,-37v-3,-63,-113,-14,-113,-84","w":173},"u":{"d":"96,-8v23,-1,42,-10,56,-18r0,-154r12,0r0,180r-12,0r0,-14v-16,8,-32,17,-56,17v-86,0,-52,-107,-59,-183r13,0v8,66,-27,173,46,172","w":200},"w":{"d":"28,-180r45,168r8,0r49,-164r14,0r49,164r8,0r45,-168r13,0r-48,180r-28,0r-46,-161r-47,161r-28,0r-47,-180r13,0","w":273},"y":{"d":"27,-180r51,168r16,0r51,-168r14,0r-81,263r-14,0r27,-83r-23,0r-54,-180r13,0","w":172},"z":{"d":"22,-180r129,0r1,12r-115,156r115,0r0,12r-130,0r0,-12r115,-156r-115,0r0,-12","w":173},"Z":{"d":"23,-252r159,0r0,25r-145,207r0,8r145,0r0,12r-159,0r0,-24r145,-207r0,-9r-145,0r0,-12","w":205},"0":{"d":"163,-114v0,-65,-7,-115,-68,-115v-61,0,-68,52,-68,116v0,60,10,104,68,104v58,1,69,-44,68,-105xm13,-114v0,-73,13,-127,82,-127v71,-1,82,56,82,128v0,69,-17,116,-82,116v-65,0,-82,-49,-82,-117"},"1":{"d":"106,-238r13,0r0,238r-13,0r0,-224r-66,46r-7,-11"},"2":{"d":"21,-232v65,-20,173,-11,139,78v-23,63,-82,94,-123,141r134,0r0,13r-152,0r0,-12v42,-49,103,-83,128,-146v17,-41,-12,-73,-56,-71v-26,1,-46,6,-68,9"},"3":{"d":"150,-182v4,-64,-81,-47,-125,-39r-2,-12v55,-12,141,-21,141,51v0,31,-18,47,-40,55v30,7,47,24,47,61v0,78,-84,76,-151,61r2,-12v52,12,135,20,135,-47v0,-56,-48,-58,-104,-56r0,-12v51,3,94,-2,97,-50"},"5":{"d":"160,-79v4,-70,-87,-65,-124,-37r-12,-2r7,-120r131,0r0,13r-119,0r-7,95v47,-29,138,-27,138,51v0,82,-77,92,-152,73r2,-12v22,4,46,8,72,8v42,-1,61,-26,64,-69"},"7":{"d":"21,-238r140,0r0,27r-94,214r-13,-5r94,-211r0,-12r-127,0r0,-13"},"8":{"d":"167,-181v0,-40,-29,-48,-71,-48v-41,0,-69,8,-69,47v0,45,38,57,87,51v31,-4,53,-17,53,-50xm23,-61v0,41,33,52,73,52v43,0,76,-11,75,-55v-1,-49,-44,-56,-96,-55v-30,7,-52,21,-52,58xm13,-182v0,-45,36,-59,83,-59v48,0,85,13,85,59v0,36,-20,47,-50,57v29,9,54,23,54,61v0,52,-37,67,-89,67v-49,0,-86,-14,-87,-63v0,-39,22,-55,50,-65v-25,-9,-45,-24,-46,-57"},"E":{"d":"39,-252r144,0r0,12r-131,0r0,104r109,0r0,13r-109,0r0,111r131,0r0,12r-144,0r0,-252","w":205},"F":{"d":"39,-252r144,0r0,12r-131,0r0,114r109,0r0,12r-109,0r0,114r-13,0r0,-252","w":202},"G":{"d":"116,-9v22,0,45,-5,64,-7r0,-97r-52,0r0,-12r65,0r0,119v-23,5,-50,9,-77,9v-75,1,-93,-54,-93,-128v0,-75,18,-131,93,-130v28,0,55,3,77,9r-1,12v-24,-4,-49,-9,-76,-9v-67,-1,-79,52,-79,118v0,66,12,117,79,116","w":222},"H":{"d":"199,-120r-147,0r0,120r-13,0r0,-252r13,0r0,120r147,0r0,-120r13,0r0,252r-13,0r0,-120","w":250},"K":{"d":"95,-118r-43,0r0,118r-13,0r0,-252r13,0r0,121r43,0r79,-121r15,0r-83,127r89,125r-16,0","w":214},"Q":{"d":"37,-125v0,68,12,116,81,116v69,0,81,-47,81,-116v0,-68,-12,-118,-81,-118v-68,0,-81,50,-81,118xm213,-125v-1,54,-6,100,-42,118r29,51r-13,6r-29,-52v-12,3,-25,5,-40,5v-76,1,-95,-51,-95,-128v0,-76,18,-130,95,-130v77,0,96,53,95,130","w":236},"R":{"d":"52,-117v67,2,135,9,135,-63v0,-69,-69,-61,-135,-60r0,123xm126,-252v93,-14,98,137,22,146r57,106r-15,0r-55,-105v-26,2,-56,0,-83,1r0,104r-13,0r0,-252r87,0","w":226},"S":{"d":"65,-131v-72,-20,-51,-125,32,-125v24,0,48,3,70,6r-2,12v-54,-6,-130,-19,-130,45v0,88,137,27,137,120v0,84,-76,82,-150,70r2,-13v69,12,156,11,131,-77v-9,-31,-58,-29,-90,-38","w":192},"T":{"d":"3,-252r173,0r0,12r-79,0r0,240r-13,0r0,-240r-81,0r0,-12","w":180},"V":{"d":"194,-252r-68,252r-42,0r-70,-252r13,0r68,240r21,0r65,-240r13,0","w":208},"N":{"d":"39,-252r30,0r117,240r9,0r0,-240r13,0r0,252r-30,0r-117,-240r-9,0r0,240r-13,0r0,-252","w":247},"\u2013":{"d":"180,-103r0,12r-180,0r0,-12r180,0","w":180},"\u00af":{"d":"32,-243r97,0r0,12r-97,0r0,-12","w":160},"$":{"d":"106,-229v-67,-17,-98,71,-38,92v7,2,15,4,25,6xm90,-10v55,6,85,-27,70,-79v-6,-21,-32,-21,-56,-27xm177,-68v0,56,-35,74,-89,70r-5,41r-12,-2r5,-40r-52,-4r1,-13r52,6r14,-108v-39,-7,-69,-17,-69,-64v0,-50,36,-61,85,-60r6,-42r13,0r-6,43r51,5r-1,12v-18,0,-35,-4,-52,-5r-13,100v39,7,72,13,72,61"},"!":{"d":"41,-252r12,0r0,175r-12,0r0,-175xm40,-29r14,0r0,29r-14,0r0,-29","w":94},"\u2211":{"d":"24,36r0,-24r73,-113r-73,-112r0,-24r145,0r0,12r-132,0r0,9r76,115r-76,116r0,9r132,0r0,12r-145,0"},"a":{"d":"37,-49v0,55,71,43,101,26r0,-73v-43,6,-101,-6,-101,47xm32,-177v51,-9,118,-18,118,50r0,103v5,10,14,14,27,15r0,12v-16,-1,-28,-4,-36,-15v-18,9,-43,15,-70,15v-44,0,-63,-60,-35,-89v20,-21,66,-17,102,-22v2,-37,-4,-64,-40,-63v-23,1,-45,3,-65,6","w":186},"o":{"d":"37,-94v0,52,9,86,58,86v49,1,59,-35,58,-85v-1,-49,-13,-78,-58,-79v-47,-1,-58,31,-58,78xm23,-94v-1,-56,17,-90,72,-89v54,1,71,32,71,90v1,58,-13,96,-71,96v-60,0,-71,-39,-72,-97","w":189},"J":{"d":"14,14v40,2,48,-15,48,-55r0,-211r13,0r0,214v2,47,-13,68,-61,64r0,-12","w":109},"t":{"d":"120,1v-51,11,-79,-8,-79,-61r0,-108r-28,0r0,-12r28,0r0,-59r13,0r0,59r62,0r0,12r-62,0r0,94v-5,49,10,77,64,64","w":133},"n":{"d":"112,-172v-25,0,-43,9,-59,18r0,154r-13,0r0,-180r13,0r0,14v17,-8,35,-16,59,-17v85,-5,52,107,59,183r-13,0v-8,-66,27,-173,-46,-172","w":206},"#":{"d":"129,-161r-68,0r0,81r68,0r0,-81xm141,-68r0,68r-12,0r0,-68r-68,0r0,68r-13,0r0,-68r-43,0r0,-12r43,0r0,-81r-43,0r0,-12r43,0r0,-68r13,0r0,68r68,0r0,-68r12,0r0,68r44,0r0,12r-44,0r0,81r44,0r0,12r-44,0"},"W":{"d":"31,-252r51,240r14,0r54,-236r14,0r56,236r14,0r49,-240r13,0r-52,252r-34,0r-53,-231r-51,231r-34,0r-54,-252r13,0","w":313},"@":{"d":"119,-86v0,83,63,93,114,56v-5,-36,-4,-88,-4,-132v-13,-5,-30,-9,-47,-10v-52,-2,-63,35,-63,86xm181,-259v105,0,152,48,152,155v0,67,-5,116,-72,107v-15,-2,-21,-8,-25,-22v-19,9,-41,22,-69,22v-49,0,-61,-36,-61,-90v0,-58,16,-98,76,-96v18,0,33,5,47,9v-2,-9,7,-6,13,-6v2,51,-5,117,6,159v3,13,11,14,26,14v51,0,44,-50,46,-103v3,-95,-43,-137,-139,-137v-105,0,-146,49,-146,153v0,127,70,168,198,151r1,11v-133,19,-212,-25,-212,-162v0,-112,48,-165,159,-165","w":354},"`":{"d":"129,-229r-6,10r-69,-33r6,-12","w":196},"\u00b4":{"d":"123,-264r6,12r-70,33r-5,-10","w":203},"\u00a8":{"d":"109,-252r12,0r0,22r-12,0r0,-22xm40,-252r13,0r0,22r-13,0r0,-22","w":299},"\u02c6":{"d":"143,-264r10,0r44,48r-16,0r-33,-36r-34,36r-15,0","w":299},"\u02dc":{"d":"30,-240v30,-45,78,26,104,-13v10,15,-9,24,-23,26v-20,-2,-34,-17,-53,-19v-11,2,-17,10,-25,16","w":156},"\u02da":{"d":"97,-257v-12,0,-22,10,-22,23v0,12,10,24,22,23v29,0,27,-46,0,-46xm97,-200v-19,0,-35,-14,-35,-34v0,-19,16,-34,35,-34v20,0,33,16,34,34v0,20,-15,33,-34,34","w":299},"\u02c7":{"d":"99,-264r15,0r34,36r33,-36r16,0r-44,48r-10,0","w":299},"\u00ff":{"d":"116,-252r13,0r0,22r-13,0r0,-22xm48,-252r12,0r0,22r-12,0r0,-22xm27,-180r51,168r16,0r51,-168r14,0r-81,263r-14,0r27,-83r-23,0r-54,-180r13,0","w":172},"M":{"d":"39,-252r28,0r86,232r87,-232r27,0r0,252r-12,0r0,-240r-6,0r-87,232r-18,0r-87,-232r-5,0r0,240r-13,0r0,-252","w":306},"U":{"d":"114,3v-50,0,-82,-23,-81,-74r0,-181r13,0r0,181v-1,43,26,62,68,62v45,0,71,-18,71,-62r0,-181r13,0r0,181v0,51,-32,74,-84,74","w":231},"X":{"d":"105,-135r72,-117r16,0r-79,127r79,125r-16,0r-72,-116r-73,116r-16,0r80,-125r-80,-127r16,0","w":209},"Y":{"d":"104,0r-13,0r0,-108r-80,-144r15,0r72,129r70,-129r16,0r-80,144r0,108","w":194},"\u00b0":{"d":"88,-240v-22,0,-37,15,-37,37v0,22,15,37,37,37v22,0,37,-15,37,-37v0,-22,-15,-37,-37,-37xm88,-154v-29,0,-49,-19,-49,-49v0,-30,20,-49,49,-49v29,0,49,20,49,49v0,29,-20,49,-49,49"},"\u00a7":{"d":"135,-52v15,-23,15,-72,-19,-75v-20,-2,-43,-5,-59,-13v-14,15,-24,51,-2,66v17,12,59,11,80,22xm48,-145v-34,-30,-12,-93,47,-93v20,0,38,4,57,5r-1,12v-41,-6,-106,-16,-106,35v0,71,118,19,113,94v-1,19,-7,34,-14,46v31,31,4,100,-49,90v-22,1,-41,-3,-61,-4r1,-12v52,11,127,10,106,-58v-24,-35,-113,-2,-112,-72v0,-20,10,-31,19,-43"},"\u00a9":{"d":"68,-174v0,43,7,73,54,58r0,12v-42,11,-66,-8,-66,-52v0,-42,21,-64,66,-53r0,12v-25,-5,-54,-5,-54,23xm95,-240v-51,0,-80,34,-80,84v0,50,31,84,80,84v50,0,81,-34,81,-84v0,-50,-30,-84,-81,-84xm95,-61v-56,0,-91,-38,-91,-95v0,-58,36,-96,91,-96v56,0,93,39,93,96v0,56,-36,95,-93,95"},"\u2122":{"d":"87,-224r18,0r30,88r32,-88r18,0r0,105r-12,0r0,-93r-32,89r-12,0r-30,-89r0,93r-12,0r0,-105xm3,-224r72,0r0,12r-30,0r0,92r-12,0r0,-92r-30,0r0,-12"},"\u00ae":{"d":"121,-180v0,-26,-27,-21,-51,-21r0,43v24,-1,51,7,51,-22xm91,-213v48,-11,55,55,21,65r23,49r-13,0r-23,-48r-29,0r0,48r-11,0r0,-114r32,0xm95,-240v-51,0,-80,34,-80,84v0,50,31,84,80,84v50,0,81,-34,81,-84v0,-50,-30,-84,-81,-84xm95,-61v-56,0,-91,-38,-91,-95v0,-58,36,-96,91,-96v56,0,93,39,93,96v0,56,-36,95,-93,95"},"\u00e1":{"d":"126,-264r6,12r-69,33r-6,-10xm37,-49v0,55,71,43,101,26r0,-73v-43,6,-101,-6,-101,47xm32,-177v51,-9,118,-18,118,50r0,103v5,10,14,14,27,15r0,12v-16,-1,-28,-4,-36,-15v-18,9,-43,15,-70,15v-44,0,-63,-60,-35,-89v20,-21,66,-17,102,-22v2,-37,-4,-64,-40,-63v-23,1,-45,3,-65,6","w":192},"\u00e0":{"d":"127,-229r-6,10r-69,-33r6,-12xm37,-49v0,55,71,43,101,26r0,-73v-43,6,-101,-6,-101,47xm32,-177v51,-9,118,-18,118,50r0,103v5,10,14,14,27,15r0,12v-16,-1,-28,-4,-36,-15v-18,9,-43,15,-70,15v-44,0,-63,-60,-35,-89v20,-21,66,-17,102,-22v2,-37,-4,-64,-40,-63v-23,1,-45,3,-65,6","w":192},"\u00e2":{"d":"83,-264r10,0r44,48r-15,0r-33,-36r-34,36r-15,0xm37,-49v0,55,71,43,101,26r0,-73v-43,6,-101,-6,-101,47xm32,-177v51,-9,118,-18,118,50r0,103v5,10,14,14,27,15r0,12v-16,-1,-28,-4,-36,-15v-18,9,-43,15,-70,15v-44,0,-63,-60,-35,-89v20,-21,66,-17,102,-22v2,-37,-4,-64,-40,-63v-23,1,-45,3,-65,6","w":192},"\u00e4":{"d":"119,-252r13,0r0,22r-13,0r0,-22xm51,-252r12,0r0,22r-12,0r0,-22xm37,-49v0,55,71,43,101,26r0,-73v-43,6,-101,-6,-101,47xm32,-177v51,-9,118,-18,118,50r0,103v5,10,14,14,27,15r0,12v-16,-1,-28,-4,-36,-15v-18,9,-43,15,-70,15v-44,0,-63,-60,-35,-89v20,-21,66,-17,102,-22v2,-37,-4,-64,-40,-63v-23,1,-45,3,-65,6","w":192},"\u00e3":{"d":"35,-240v30,-45,78,26,104,-13v10,15,-9,24,-23,26v-20,-3,-33,-17,-53,-19v-11,2,-17,10,-25,16xm37,-49v0,55,71,43,101,26r0,-73v-43,6,-101,-6,-101,47xm32,-177v51,-9,118,-18,118,50r0,103v5,10,14,14,27,15r0,12v-16,-1,-28,-4,-36,-15v-18,9,-43,15,-70,15v-44,0,-63,-60,-35,-89v20,-21,66,-17,102,-22v2,-37,-4,-64,-40,-63v-23,1,-45,3,-65,6","w":192},"\u00e5":{"d":"91,-264v-28,0,-28,46,0,46v12,1,22,-11,22,-23v0,-13,-10,-23,-22,-23xm91,-207v-18,0,-34,-15,-34,-34v0,-19,15,-34,34,-34v21,0,35,15,34,34v0,20,-14,34,-34,34xm37,-49v0,55,71,43,101,26r0,-73v-43,6,-101,-6,-101,47xm32,-177v51,-9,118,-18,118,50r0,103v5,10,14,14,27,15r0,12v-16,-1,-28,-4,-36,-15v-18,9,-43,15,-70,15v-44,0,-63,-60,-35,-89v20,-21,66,-17,102,-22v2,-37,-4,-64,-40,-63v-23,1,-45,3,-65,6","w":192},"\u00e9":{"d":"124,-264r6,12r-70,33r-5,-10xm148,-96v16,-77,-86,-105,-107,-35v-3,10,-5,21,-5,35r112,0xm36,-85v-6,70,45,88,117,73r1,12r-65,3v-51,-1,-66,-40,-66,-93v0,-56,19,-92,71,-93v55,-1,68,41,67,98r-125,0","w":182},"\u00e8":{"d":"130,-229r-5,10r-70,-33r6,-12xm148,-96v16,-77,-86,-105,-107,-35v-3,10,-5,21,-5,35r112,0xm36,-85v-6,70,45,88,117,73r1,12r-65,3v-51,-1,-66,-40,-66,-93v0,-56,19,-92,71,-93v55,-1,68,41,67,98r-125,0","w":182},"\u00ea":{"d":"87,-264r10,0r44,48r-16,0r-33,-36r-33,36r-16,0xm148,-96v16,-77,-86,-105,-107,-35v-3,10,-5,21,-5,35r112,0xm36,-85v-6,70,45,88,117,73r1,12r-65,3v-51,-1,-66,-40,-66,-93v0,-56,19,-92,71,-93v55,-1,68,41,67,98r-125,0","w":182},"\u00eb":{"d":"121,-252r13,0r0,22r-13,0r0,-22xm53,-252r12,0r0,22r-12,0r0,-22xm148,-96v16,-77,-86,-105,-107,-35v-3,10,-5,21,-5,35r112,0xm36,-85v-6,70,45,88,117,73r1,12r-65,3v-51,-1,-66,-40,-66,-93v0,-56,19,-92,71,-93v55,-1,68,41,67,98r-125,0","w":182},"\u00ef":{"d":"41,-180r12,0r0,180r-12,0r0,-180xm78,-252r13,0r0,22r-13,0r0,-22xm10,-252r13,0r0,22r-13,0r0,-22","w":93},"\u00f1":{"d":"54,-240v30,-45,78,26,104,-13v10,15,-9,24,-23,26v-20,-3,-33,-17,-53,-19v-11,2,-17,10,-25,16xm112,-172v-25,0,-43,9,-59,18r0,154r-13,0r0,-180r13,0r0,14v17,-8,35,-16,59,-17v85,-5,52,107,59,183r-13,0v-8,-66,27,-173,-46,-172","w":206},"\u00f3":{"d":"134,-264r5,12r-69,33r-6,-10xm37,-94v0,52,9,86,58,86v49,1,59,-35,58,-85v-1,-49,-13,-78,-58,-79v-47,-1,-58,31,-58,78xm23,-94v-1,-56,17,-90,72,-89v54,1,71,32,71,90v1,58,-13,96,-71,96v-60,0,-71,-39,-72,-97","w":192},"\u00f2":{"d":"125,-229r-5,10r-70,-33r6,-12xm37,-94v0,52,9,86,58,86v49,1,59,-35,58,-85v-1,-49,-13,-78,-58,-79v-47,-1,-58,31,-58,78xm23,-94v-1,-56,17,-90,72,-89v54,1,71,32,71,90v1,58,-13,96,-71,96v-60,0,-71,-39,-72,-97","w":192},"\u00f4":{"d":"90,-264r10,0r44,48r-16,0r-33,-36r-33,36r-16,0xm37,-94v0,52,9,86,58,86v49,1,59,-35,58,-85v-1,-49,-13,-78,-58,-79v-47,-1,-58,31,-58,78xm23,-94v-1,-56,17,-90,72,-89v54,1,71,32,71,90v1,58,-13,96,-71,96v-60,0,-71,-39,-72,-97","w":192},"\u00f6":{"d":"126,-252r13,0r0,22r-13,0r0,-22xm58,-252r13,0r0,22r-13,0r0,-22xm37,-94v0,52,9,86,58,86v49,1,59,-35,58,-85v-1,-49,-13,-78,-58,-79v-47,-1,-58,31,-58,78xm23,-94v-1,-56,17,-90,72,-89v54,1,71,32,71,90v1,58,-13,96,-71,96v-60,0,-71,-39,-72,-97","w":192},"\u00f5":{"d":"71,-257v25,4,56,33,75,4v8,16,-10,23,-23,26v-28,-6,-57,-33,-78,-3v-9,-15,11,-25,26,-27xm37,-94v0,52,9,86,58,86v49,1,59,-35,58,-85v-1,-49,-13,-78,-58,-79v-47,-1,-58,31,-58,78xm23,-94v-1,-56,17,-90,72,-89v54,1,71,32,71,90v1,58,-13,96,-71,96v-60,0,-71,-39,-72,-97","w":192},"\u00fa":{"d":"138,-264r6,12r-70,33r-5,-10xm96,-8v23,-1,42,-10,56,-18r0,-154r12,0r0,180r-12,0r0,-14v-16,8,-32,17,-56,17v-86,0,-52,-107,-59,-183r13,0v8,66,-27,173,46,172","w":200},"\u00f9":{"d":"129,-229r-5,10r-70,-33r6,-12xm96,-8v23,-1,42,-10,56,-18r0,-154r12,0r0,180r-12,0r0,-14v-16,8,-32,17,-56,17v-86,0,-52,-107,-59,-183r13,0v8,66,-27,173,46,172","w":200},"\u00fb":{"d":"94,-264r10,0r44,48r-16,0r-33,-36r-33,36r-16,0xm96,-8v23,-1,42,-10,56,-18r0,-154r12,0r0,180r-12,0r0,-14v-16,8,-32,17,-56,17v-86,0,-52,-107,-59,-183r13,0v8,66,-27,173,46,172","w":200},"\u00fc":{"d":"131,-252r12,0r0,22r-12,0r0,-22xm62,-252r13,0r0,22r-13,0r0,-22xm96,-8v23,-1,42,-10,56,-18r0,-154r12,0r0,180r-12,0r0,-14v-16,8,-32,17,-56,17v-86,0,-52,-107,-59,-183r13,0v8,66,-27,173,46,172","w":200},"\u0131":{"d":"41,-180r12,0r0,180r-12,0r0,-180","w":93},"\u00ed":{"d":"41,-180r12,0r0,180r-12,0r0,-180xm90,-264r5,12r-69,33r-5,-10","w":93},"\u00ec":{"d":"73,-229r-5,10r-70,-33r6,-12xm41,-180r12,0r0,180r-12,0r0,-180","w":93},"\u00ee":{"d":"42,-264r10,0r44,48r-16,0r-33,-36r-33,36r-16,0xm41,-180r12,0r0,180r-12,0r0,-180","w":93},"\u00c3":{"d":"141,-307v11,-3,17,-12,26,-19r4,10v-9,8,-17,18,-30,20v-21,-3,-38,-18,-57,-23v-12,3,-21,12,-29,20r-4,-11v10,-8,18,-20,33,-20v22,0,37,19,57,23xm55,-90r107,0r-45,-150r-16,0xm92,-252r34,0r77,252r-13,0r-24,-77r-115,0r-24,77r-13,0","w":217},"\u00c0":{"d":"143,-297r-6,9r-69,-33r5,-11xm55,-90r107,0r-45,-150r-16,0xm92,-252r34,0r77,252r-13,0r-24,-77r-115,0r-24,77r-13,0","w":217},"\u00d5":{"d":"150,-307v12,-2,17,-11,26,-18v9,16,-12,27,-26,30v-21,-3,-36,-20,-57,-23v-11,3,-20,13,-29,20r-3,-11v9,-8,18,-18,32,-20v22,1,37,19,57,22xm213,-125v0,78,-17,128,-95,128v-78,0,-95,-52,-95,-128v0,-76,19,-130,95,-130v76,0,95,53,95,130xm37,-125v0,68,13,116,81,116v70,0,81,-47,81,-116v0,-67,-14,-119,-81,-118v-67,0,-81,50,-81,118","w":236},"\u00c2":{"d":"103,-334r11,0r48,45r-16,0r-37,-35r-37,35r-17,0xm55,-90r107,0r-45,-150r-16,0xm92,-252r34,0r77,252r-13,0r-24,-77r-115,0r-24,77r-13,0","w":217},"\u00ca":{"d":"105,-334r11,0r49,45r-17,0r-37,-35r-37,35r-17,0xm39,-252r144,0r0,12r-131,0r0,104r109,0r0,13r-109,0r0,111r131,0r0,12r-144,0r0,-252","w":205},"\u00c1":{"d":"144,-332r6,11r-70,33r-5,-9xm55,-90r107,0r-45,-150r-16,0xm92,-252r34,0r77,252r-13,0r-24,-77r-115,0r-24,77r-13,0","w":217},"\u00cb":{"d":"143,-324r13,0r0,22r-13,0r0,-22xm73,-324r12,0r0,22r-12,0r0,-22xm39,-252r144,0r0,12r-131,0r0,104r109,0r0,13r-109,0r0,111r131,0r0,12r-144,0r0,-252","w":205},"\u00c8":{"d":"143,-297r-5,9r-70,-33r6,-11xm39,-252r144,0r0,12r-131,0r0,104r109,0r0,13r-109,0r0,111r131,0r0,12r-144,0r0,-252","w":205},"\u00d4":{"d":"113,-336r10,0r49,45r-16,0r-38,-35r-37,35r-17,0xm213,-125v0,78,-17,128,-95,128v-78,0,-95,-52,-95,-128v0,-76,19,-130,95,-130v76,0,95,53,95,130xm37,-125v0,68,13,116,81,116v70,0,81,-47,81,-116v0,-67,-14,-119,-81,-118v-67,0,-81,50,-81,118","w":236},"\u00d3":{"d":"150,-332r6,11r-70,33r-5,-9xm213,-125v0,78,-17,128,-95,128v-78,0,-95,-52,-95,-128v0,-76,19,-130,95,-130v76,0,95,53,95,130xm37,-125v0,68,13,116,81,116v70,0,81,-47,81,-116v0,-67,-14,-119,-81,-118v-67,0,-81,50,-81,118","w":236},"\u00cc":{"d":"78,-297r-5,9r-70,-33r6,-11xm34,-252r13,0r0,252r-13,0r0,-252","w":81},"\u00cf":{"d":"73,-324r13,0r0,22r-13,0r0,-22xm3,-324r12,0r0,22r-12,0r0,-22xm34,-252r13,0r0,252r-13,0r0,-252","w":81},"\u00ce":{"d":"36,-334r10,0r49,45r-17,0r-37,-35r-37,35r-17,0xm34,-252r13,0r0,252r-13,0r0,-252","w":81},"\u00cd":{"d":"72,-332r6,11r-69,33r-6,-9xm34,-252r13,0r0,252r-13,0r0,-252","w":81},"\u00d2":{"d":"156,-297r-6,9r-69,-33r5,-11xm213,-125v0,78,-17,128,-95,128v-78,0,-95,-52,-95,-128v0,-76,19,-130,95,-130v76,0,95,53,95,130xm37,-125v0,68,13,116,81,116v70,0,81,-47,81,-116v0,-67,-14,-119,-81,-118v-67,0,-81,50,-81,118","w":236},"\u00da":{"d":"147,-332r6,11r-69,33r-6,-9xm114,3v-50,0,-82,-23,-81,-74r0,-181r13,0r0,181v-1,43,26,62,68,62v45,0,71,-18,71,-62r0,-181r13,0r0,181v0,51,-32,74,-84,74","w":231},"\u00db":{"d":"111,-334r10,0r49,45r-17,0r-37,-35r-37,35r-17,0xm114,3v-50,0,-82,-23,-81,-74r0,-181r13,0r0,181v-1,43,26,62,68,62v45,0,71,-18,71,-62r0,-181r13,0r0,181v0,51,-32,74,-84,74","w":231},"\u00d9":{"d":"153,-297r-5,9r-70,-33r6,-11xm114,3v-50,0,-82,-23,-81,-74r0,-181r13,0r0,181v-1,43,26,62,68,62v45,0,71,-18,71,-62r0,-181r13,0r0,181v0,51,-32,74,-84,74","w":231},"\u00b8":{"d":"164,21v24,1,36,3,37,25v2,30,-31,27,-58,25r0,-10v19,-1,46,8,46,-15v0,-19,-20,-14,-37,-15r0,-31r12,0r0,21","w":299},"\u00dc":{"d":"149,-324r12,0r0,22r-12,0r0,-22xm78,-324r13,0r0,22r-13,0r0,-22xm114,3v-50,0,-82,-23,-81,-74r0,-181r13,0r0,181v-1,43,26,62,68,62v45,0,71,-18,71,-62r0,-181r13,0r0,181v0,51,-32,74,-84,74","w":231},"\u00d6":{"d":"151,-324r12,0r0,22r-12,0r0,-22xm80,-324r13,0r0,22r-13,0r0,-22xm213,-125v0,78,-17,128,-95,128v-78,0,-95,-52,-95,-128v0,-76,19,-130,95,-130v76,0,95,53,95,130xm37,-125v0,68,13,116,81,116v70,0,81,-47,81,-116v0,-67,-14,-119,-81,-118v-67,0,-81,50,-81,118","w":236},"\u00d1":{"d":"156,-307v11,-3,16,-11,25,-18v9,15,-11,26,-25,30v-22,-3,-37,-20,-58,-23v-11,3,-20,13,-29,20r-3,-11v9,-8,18,-18,32,-20v23,1,37,19,58,22xm39,-252r30,0r117,240r9,0r0,-240r13,0r0,252r-30,0r-117,-240r-9,0r0,240r-13,0r0,-252","w":247},"\u00c9":{"d":"149,-332r6,11r-69,33r-6,-9xm39,-252r144,0r0,12r-131,0r0,104r109,0r0,13r-109,0r0,111r131,0r0,12r-144,0r0,-252","w":205},"\u00c7":{"d":"114,21v24,1,37,2,38,25v1,30,-32,27,-59,25r1,-10v19,-1,45,8,45,-15v0,-19,-19,-14,-36,-15r0,-28v-68,-2,-80,-57,-80,-128v0,-74,13,-132,88,-130v23,0,46,2,64,7r-1,12v-20,-3,-41,-7,-63,-7v-67,-2,-75,52,-75,118v0,82,28,135,116,112r22,-3r1,12v-19,2,-39,8,-61,7r0,18","w":193},"\u00c5":{"d":"109,-296v-27,0,-31,41,-7,44v19,2,30,-6,30,-22v0,-14,-9,-22,-23,-22xm55,-90r107,0r-45,-150r-16,0xm109,-307v36,-5,46,49,20,62r74,245r-13,0r-24,-77r-115,0r-24,77r-13,0r76,-245v-28,-13,-17,-68,19,-62","w":217},"\u00c4":{"d":"138,-324r12,0r0,22r-12,0r0,-22xm67,-324r13,0r0,22r-13,0r0,-22xm55,-90r107,0r-45,-150r-16,0xm92,-252r34,0r77,252r-13,0r-24,-77r-115,0r-24,77r-13,0","w":217},"\u00e7":{"d":"95,21v24,1,36,3,37,25v2,30,-32,27,-59,25r1,-10v19,-1,46,8,46,-15v0,-19,-20,-14,-37,-15r0,-29v-50,-3,-55,-43,-58,-96v-4,-74,40,-99,114,-86r-1,12v-61,-13,-108,6,-99,74v-8,70,31,98,100,82r0,12v-14,1,-28,4,-44,3r0,18","w":157},"\u0178":{"d":"128,-324r13,0r0,23r-13,0r0,-23xm58,-324r12,0r0,23r-12,0r0,-23xm104,0r-13,0r0,-108r-80,-144r15,0r72,129r70,-129r16,0r-80,144r0,108","w":194},"\u00f8":{"d":"135,-173r-10,-5r16,-40r11,4xm37,37r17,-42v3,2,7,3,11,4r-17,42xm121,-167v4,1,7,4,10,6r-62,149v-4,0,-6,-3,-9,-5xm135,-173v47,31,52,176,-40,176v-12,0,-21,-1,-30,-4r4,-11v57,17,84,-20,84,-81v0,-34,-7,-56,-22,-68xm23,-94v-5,-69,39,-103,102,-84r-4,11v-53,-18,-88,14,-84,73v3,37,2,64,23,77r-6,12v-27,-14,-28,-47,-31,-89","w":189},"\u00b1":{"d":"171,-34r0,13r-151,0r0,-13r151,0xm20,-116r68,0r0,-60r15,0r0,60r68,0r0,13r-68,0r0,55r-15,0r0,-55r-68,0r0,-13"},"\u03c0":{"d":"183,0v-77,7,-39,-102,-48,-167r-73,0r-11,167r-12,0r10,-167v-16,1,-34,1,-48,4r0,-12v53,-12,130,2,184,-11r0,13v-11,2,-23,5,-37,5r0,113v-2,30,7,44,35,43r0,12"},"\u2022":{"d":"50,-144r90,0r0,104r-90,0r0,-104"},"\u00aa":{"d":"58,-167v0,28,37,14,52,10r0,-30v-21,3,-52,-5,-52,20xm53,-234v31,-4,73,-10,68,28v3,20,-10,57,13,57r0,10v-10,-1,-14,-2,-20,-8v-24,10,-68,16,-68,-21v0,-32,36,-27,64,-30v6,-36,-27,-28,-56,-25"},"\u00ba":{"d":"60,-189v0,26,7,39,30,39v23,0,28,-13,28,-39v0,-25,-6,-37,-28,-37v-22,0,-31,12,-30,37xm48,-189v0,-31,12,-48,42,-48v30,0,40,17,40,48v0,32,-10,50,-40,50v-30,0,-42,-18,-42,-50"},"\u2039":{"d":"28,-91r48,42r0,14r-60,-49r0,-13r60,-47r0,14","w":97},"I":{"d":"34,-252r13,0r0,252r-13,0r0,-252","w":81},"O":{"d":"213,-125v0,78,-17,128,-95,128v-78,0,-95,-52,-95,-128v0,-76,19,-130,95,-130v76,0,95,53,95,130xm37,-125v0,68,13,116,81,116v70,0,81,-47,81,-116v0,-67,-14,-119,-81,-118v-67,0,-81,50,-81,118","w":236},"\u00ab":{"d":"102,-91r49,42r0,14r-60,-49r0,-13r60,-47r0,14xm28,-91r48,42r0,14r-60,-49r0,-13r60,-47r0,14","w":172},"\u00bb":{"d":"22,-130r0,-14r60,47r0,13r-60,49r0,-14r48,-42xm96,-130r0,-14r60,47r0,13r-60,49r0,-14r49,-42","w":172},"\u201c":{"d":"86,-189r-13,0r17,-72r11,0xm35,-189r-14,0r18,-72r10,0","w":122},"~":{"d":"130,-114v14,-2,25,-11,34,-19r2,13v-10,8,-19,19,-36,19v-26,0,-44,-18,-69,-20v-15,2,-24,12,-34,19v-8,-21,18,-26,34,-32v25,2,45,17,69,20"},"\u2014":{"d":"360,-103r0,12r-360,0r0,-12r360,0","w":360},"L":{"d":"39,0r0,-252r13,0r0,240r119,0r0,12r-132,0"},"B":{"d":"181,-191v0,-61,-71,-48,-129,-49r0,105v62,1,129,10,129,-56xm191,-71v-2,-63,-76,-51,-139,-52r0,111v66,0,142,11,139,-59xm204,-71v5,84,-86,71,-165,71r0,-252v71,0,155,-12,155,61v0,32,-13,53,-35,61v26,7,43,26,45,59","w":225},"D":{"d":"129,-12v56,-5,70,-59,70,-118v0,-56,-15,-110,-70,-110r-77,0r0,228r77,0xm213,-130v0,67,-18,130,-84,130r-90,0r0,-252r90,0v64,2,84,57,84,122","w":235},"P":{"d":"188,-176v0,-41,-18,-64,-61,-64r-75,0r0,135r75,0v44,1,61,-29,61,-71xm202,-176v0,51,-23,83,-75,83r-75,0r0,93r-13,0r0,-252r88,0v51,0,75,27,75,76","w":221},"b":{"d":"111,-172v-24,0,-42,7,-58,14r0,148v69,11,110,-14,106,-83v-2,-42,-6,-78,-48,-79xm53,-170v16,-6,34,-13,58,-13v49,0,58,40,61,89v5,81,-49,110,-132,94r0,-263r13,0r0,93","w":193},"v":{"d":"28,-180r50,168r16,0r51,-168r14,0r-55,180r-36,0r-54,-180r14,0","w":172},"x":{"d":"30,-180r52,80r53,-80r14,0r-59,90r59,90r-15,0r-52,-80r-52,80r-15,0r60,-90r-60,-90r15,0","w":164},"6":{"d":"161,-76v0,-71,-89,-64,-132,-40v3,54,13,105,66,107v40,1,66,-25,66,-67xm16,-121v-4,-97,53,-137,147,-114r-1,12v-18,-3,-38,-6,-59,-6v-56,1,-73,42,-73,100v49,-27,151,-26,145,53v-4,49,-29,79,-80,79v-60,0,-76,-57,-79,-124"},"9":{"d":"32,-165v-4,74,83,66,132,45v-1,-59,-13,-109,-68,-109v-40,0,-62,23,-64,64xm177,-117v5,98,-55,139,-149,113r2,-12v38,9,92,13,113,-16v12,-16,21,-40,21,-75v-57,25,-151,23,-146,-58v3,-48,29,-76,78,-76v62,0,77,55,81,124"},"\u00a5":{"d":"17,-131r61,0r-69,-107r15,0r74,112r72,-112r15,0r-68,107r60,0r0,12r-68,0v-8,7,-4,27,-5,41r73,0r0,12r-73,0r0,66r-13,0r0,-66r-74,0r0,-12r74,0v-1,-14,3,-34,-5,-41r-69,0r0,-12","w":194},"<":{"d":"44,-109r106,74r0,15r-117,-82r0,-13r117,-79r0,14"},">":{"d":"40,-180r0,-14r118,79r0,13r-118,82r0,-15r107,-74"},"[":{"d":"83,-258r-53,0r0,291r53,0r0,11r-66,0r0,-314r66,0r0,12","w":108},"\\":{"d":"143,0r-108,-247r12,-5r109,247"},"]":{"d":"18,-270r66,0r0,314r-66,0r0,-11r53,0r0,-291r-53,0r0,-12","w":108},"|":{"d":"87,-270r13,0r0,360r-13,0r0,-360"},"\u2260":{"d":"22,-139r89,0r26,-59r11,5r-23,54r44,0r0,13r-50,0r-21,47r71,0r0,13r-76,0r-28,61r-11,-5r25,-56r-57,0r0,-13r63,0r21,-47r-84,0r0,-13"},"\u00c6":{"d":"50,-90r88,0r0,-150r-43,0xm138,-77r-92,0r-24,77r-13,0r77,-252r196,0r0,12r-131,0r0,104r109,0r0,13r-109,0r0,111r131,0r0,12r-144,0r0,-77","w":304},"\u00b5":{"d":"152,-14v-22,17,-90,29,-102,-5r0,102r-13,0r0,-263r13,0v8,66,-27,173,46,172v23,-1,41,-10,56,-18r0,-154r12,0r0,180r-12,0r0,-14"},"\u03bc":{"d":"152,-14v-22,17,-90,29,-102,-5r0,102r-13,0r0,-263r13,0v8,66,-27,173,46,172v23,-1,41,-10,56,-18r0,-154r12,0r0,180r-12,0r0,-14"},"\u00e6":{"d":"265,-96v17,-79,-89,-104,-110,-35v-3,9,-5,21,-5,35r115,0xm42,-78v-19,19,-9,72,24,70v30,-2,60,-11,82,-19v-10,-17,-11,-41,-11,-69v-32,5,-77,-1,-95,18xm150,-85v-7,74,47,87,121,73r0,12v-44,1,-100,11,-118,-18v-37,22,-133,44,-133,-31v0,-63,66,-50,118,-59v13,-71,-46,-66,-108,-60r0,-12v45,-1,111,-15,118,31v10,-23,32,-34,62,-34v56,-1,70,39,68,98r-128,0","w":298},"\u0192":{"d":"170,-229v-47,-7,-77,3,-73,51r0,40r65,0r0,11r-65,0r0,151v3,47,-21,73,-68,62v-3,-14,9,-10,22,-10v28,0,33,-23,33,-52r0,-151r-43,0r0,-11r43,0v-6,-70,8,-121,87,-102"},"\u0152":{"d":"37,-125v-2,79,23,126,106,115r32,-2r0,-227r-57,-4v-68,-1,-79,51,-81,118xm23,-124v-4,-101,44,-128,152,-128r141,0r0,12r-128,0r0,104r107,0r0,13r-107,0r0,111r128,0r0,12r-198,3v-76,2,-92,-52,-95,-127","w":339},"\u0153":{"d":"282,-96v17,-80,-88,-104,-110,-35v-3,9,-4,21,-4,35r114,0xm35,-94v0,54,7,86,60,86v51,0,59,-32,59,-85v0,-52,-13,-77,-59,-79v-50,-2,-60,28,-60,78xm168,-85v-9,75,47,86,120,73r1,12v-54,3,-117,11,-128,-35v-9,28,-28,38,-66,38v-62,0,-73,-35,-73,-97v0,-57,15,-89,73,-89v37,0,58,14,67,43v9,-29,31,-42,65,-43v56,-1,70,40,69,98r-128,0","w":315},"\u2021":{"d":"89,-44r-66,0r0,-12r66,0r0,-111r-66,0r0,-12r66,0r0,-73r13,0r0,73r65,0r0,12r-65,0r0,111r65,0r0,12r-65,0r0,72r-13,0r0,-72"},"4":{"d":"132,-48r-119,0r0,-10r77,-180r14,0r-76,178r104,0r0,-86r13,0r0,86r33,0r0,12r-33,0r0,48r-13,0r0,-48"},"\"":{"d":"18,-169r0,-83r13,0r0,83r-13,0xm71,-169r0,-83r13,0r0,83r-13,0","w":100},"'":{"d":"11,-252r13,0r0,76r-12,0","w":36},"(":{"d":"20,-108v0,-63,17,-114,35,-162r13,0v-17,46,-35,102,-35,162v0,58,17,110,35,153r-13,0v-18,-43,-35,-94,-35,-153","w":93},")":{"d":"68,-118v0,62,-18,113,-35,161r-13,0v15,-47,34,-100,34,-161v0,-59,-19,-109,-34,-154r13,0v16,45,35,95,35,154","w":93},",":{"d":"32,-31r14,0r-18,75r-11,0","w":61},"-":{"d":"25,-104r108,0r0,13r-108,0r0,-13","w":158},".":{"d":"35,-29r15,0r0,29r-15,0r0,-29","w":89},"\/":{"d":"139,-253r12,5r-100,248r-12,-4"},":":{"d":"28,-29r14,0r0,29r-14,0r0,-29xm28,-153r14,0r0,29r-14,0r0,-29","w":50},";":{"d":"27,-153r14,0r0,29r-14,0r0,-29xm28,-31r15,0r-19,75r-11,0","w":61},"=":{"d":"23,-79r145,0r0,13r-145,0r0,-13xm23,-139r145,0r0,13r-145,0r0,-13"},"?":{"d":"50,-29r15,0r0,29r-15,0r0,-29xm7,-246v51,-15,130,-19,125,48v-5,60,-71,62,-68,130r-13,0v-5,-69,62,-73,68,-130v7,-58,-68,-47,-110,-36","w":138},"_":{"d":"181,30r0,12r-171,0r0,-12r171,0"},"{":{"d":"14,-112v38,5,37,50,34,93v-3,35,16,52,51,52r-1,12v-62,2,-61,-46,-61,-108v0,-29,-13,-35,-37,-43r0,-11v80,-6,-17,-159,98,-153r1,11v-53,-3,-53,43,-49,95v3,31,-12,46,-36,52","w":102},"}":{"d":"85,-112v-37,-6,-37,-49,-34,-93v3,-35,-16,-52,-51,-52r0,-12v62,-2,61,47,61,108v0,28,14,35,38,43r0,11v-83,6,18,159,-99,153r0,-11v51,2,54,-42,49,-95v-3,-31,12,-46,36,-52","w":102},"\u00a2":{"d":"36,-89v-9,64,44,67,102,58r1,13v-14,1,-26,4,-42,3r0,46r-13,0r0,-46v-48,0,-63,-25,-63,-74v0,-51,19,-74,63,-77r0,-47r12,0r0,47r42,4r0,13v-55,-8,-110,-8,-102,60","w":157},"\u2018":{"d":"27,-190r-14,0r18,-72r10,0","w":61},"\u2019":{"d":"34,-262r14,0r-18,72r-10,0","w":61},"\u00f7":{"d":"88,-61r15,0r0,29r-15,0r0,-29xm24,-115r143,0r0,13r-143,0r0,-13xm88,-185r15,0r0,29r-15,0r0,-29"},"\u00d8":{"d":"118,-9v91,0,88,-101,75,-176v-3,-16,-11,-29,-20,-39r-97,207v11,6,25,8,42,8xm118,-243v-89,0,-88,105,-75,180v3,16,11,29,22,38r97,-207v-12,-7,-26,-11,-44,-11xm213,-125v0,78,-17,130,-95,128v-18,0,-34,-3,-47,-9r-22,46r-12,-5r22,-48v-27,-23,-36,-60,-36,-112v1,-76,19,-130,95,-130v20,0,36,4,50,11r19,-41r12,5r-20,43v26,23,33,61,34,112","w":236},"&":{"d":"116,-238v-47,0,-53,59,-26,84r13,13v30,-10,56,-19,56,-57v0,-26,-12,-40,-43,-40xm33,-75v-7,80,121,87,141,22r-85,-85v-34,12,-53,23,-56,63xm80,-147v-34,-30,-21,-107,36,-103v35,2,55,17,55,52v1,43,-27,55,-59,66r67,66v5,-14,8,-31,11,-52r13,0v-4,23,-7,44,-14,62r50,49r-8,10r-47,-47v-15,31,-39,46,-80,47v-54,1,-83,-24,-83,-78v0,-44,26,-61,59,-72","w":252},"*":{"d":"107,-187r16,50r-11,4r-17,-51r-43,31r-7,-9r44,-32r-43,-31r7,-10r43,32r16,-50r12,4r-16,50r52,0r0,12r-53,0"},"\u00a3":{"d":"105,-245r51,4r0,12v-17,-1,-32,-4,-51,-4v-44,0,-34,45,-36,87r83,0r0,11r-83,0r0,123v34,0,70,2,96,-6r2,12v-40,11,-98,4,-148,6r0,-12r37,0r0,-123r-28,0r0,-11r28,0v0,-51,-4,-102,49,-99"},"\u00b6":{"d":"3,-189v0,-39,26,-63,67,-63r118,0r0,12r-35,0r0,240r-13,0r0,-240r-55,0r0,240r-13,0v-2,-41,4,-90,-2,-126v-41,-1,-67,-23,-67,-63"},"%":{"d":"150,-86v-20,0,-25,15,-25,36v0,21,4,38,25,38v20,0,24,-17,24,-38v0,-22,-4,-36,-24,-36xm150,0v-26,0,-37,-19,-37,-50v0,-31,11,-48,37,-48v26,0,37,17,37,48v0,29,-12,50,-37,50xm49,-155v-26,0,-37,-19,-37,-50v0,-31,11,-48,37,-48v26,0,37,19,37,49v0,29,-12,49,-37,49xm119,-252r12,1r-52,251r-12,-2xm73,-204v0,-22,-4,-37,-24,-37v-20,0,-25,15,-25,36v0,21,5,39,25,39v20,0,24,-17,24,-38"},"+":{"d":"20,-115r68,0r0,-68r15,0r0,68r68,0r0,13r-68,0r0,69r-15,0r0,-69r-68,0r0,-13"},"\u00df":{"d":"99,-254v-39,-1,-50,18,-50,57r0,197r-13,0r0,-202v-1,-44,18,-66,63,-64v63,-13,81,69,36,93v-13,7,-26,11,-22,29v17,31,77,26,77,75v0,67,-42,78,-106,71r1,-12v55,6,97,-2,92,-59v-4,-47,-79,-34,-79,-80v0,-37,50,-25,48,-68v-1,-30,-14,-36,-47,-37","w":212},"\u201d":{"d":"87,-261r14,0r-18,72r-10,0xm35,-261r14,0r-18,72r-10,0","w":108},"\u00bf":{"d":"89,-151r-15,0r0,-29r15,0r0,29xm132,66v-51,15,-130,19,-125,-48v5,-60,71,-62,68,-130r13,0v5,69,-62,73,-68,130v-7,58,68,47,110,36","w":138},"\u00a1":{"d":"54,72r-13,0r0,-175r13,0r0,175xm54,-151r-14,0r0,-29r14,0r0,29","w":94},"\u203a":{"d":"22,-130r0,-14r60,47r0,13r-60,49r0,-14r48,-42","w":97},"\u201e":{"d":"87,-41r14,0r-18,72r-10,0xm35,-41r14,0r-18,72r-10,0","w":108},"\u201a":{"d":"34,-41r14,0r-18,72r-10,0","w":61},"^":{"d":"93,-225r-53,105r-15,0r62,-118r13,0r65,118r-15,0"},"\u2248":{"d":"130,-71v14,-2,25,-10,33,-19r3,13v-24,34,-72,7,-105,0v-14,2,-25,11,-34,19v-8,-21,16,-28,34,-32v26,1,45,17,69,19xm130,-132v14,-2,25,-11,34,-19r2,13v-10,8,-19,19,-36,19v-26,0,-44,-18,-69,-20v-15,2,-24,12,-34,19v-8,-21,18,-26,34,-32v25,2,45,17,69,20"},"\u00b7":{"d":"35,-126r15,0r0,29r-15,0r0,-29","w":89},"\u02d8":{"d":"130,-260v3,42,-58,61,-86,33v-9,-9,-13,-20,-13,-33r12,0v1,21,14,34,37,34v23,0,37,-12,37,-34r13,0","w":160},"\u02dd":{"d":"112,-261r7,9r-59,38r-6,-10xm179,-261r6,9r-58,38r-7,-10","w":246},"\u02d9":{"d":"32,-252r13,0r0,20r-13,0r0,-20","w":77},"\u2026":{"d":"221,-29r15,0r0,29r-15,0r0,-29xm130,-29r14,0r0,29r-14,0r0,-29xm39,-29r14,0r0,29r-14,0r0,-29","w":267},"\u2030":{"d":"240,-86v-19,1,-24,15,-24,36v0,20,4,38,24,38v21,0,25,-16,25,-38v0,-22,-5,-36,-25,-36xm240,0v-25,0,-37,-20,-37,-50v-1,-31,11,-48,37,-48v26,0,38,18,38,48v0,30,-12,50,-38,50xm148,-86v-20,0,-25,15,-25,36v0,21,4,38,25,38v20,0,24,-17,24,-38v0,-22,-4,-36,-24,-36xm148,0v-26,0,-37,-19,-37,-50v0,-31,11,-48,37,-48v25,0,37,18,37,48v0,29,-12,50,-37,50xm47,-154v-26,0,-37,-19,-37,-50v0,-31,11,-48,37,-48v26,0,37,17,37,48v0,30,-11,50,-37,50xm126,-252r12,3r-67,249r-12,-3xm72,-204v0,-22,-5,-37,-25,-37v-20,0,-24,15,-24,37v0,21,4,38,24,38v20,0,25,-17,25,-38","w":299},"\u0394":{"d":"91,-225r-60,213r130,0r-61,-213r-9,0xm82,-238r28,0r66,238r-159,0v16,-85,45,-157,65,-238"},"\u2206":{"d":"91,-225r-60,213r130,0r-61,-213r-9,0xm82,-238r28,0r66,238r-159,0v16,-85,45,-157,65,-238"},"\u221a":{"d":"53,-135r45,159r10,0r65,-334r13,0r-67,346r-31,0r-44,-154r-34,11r-4,-12"},"\u25ca":{"d":"93,-226r-64,107r64,107r61,-107xm99,0r-13,0r-71,-119r71,-119r13,0r69,119"},"\u220f":{"d":"182,-238r0,13r-28,0r0,261r-13,0r0,-261r-91,0r0,261r-13,0r0,-261r-28,0r0,-13r173,0"},"\u2020":{"d":"23,-179r66,0r0,-73r13,0r0,73r65,0r0,12r-65,0r0,195r-13,0r0,-195r-66,0r0,-12"},"\u02db":{"d":"74,42v-2,18,21,22,37,15v5,15,-8,15,-22,15v-32,0,-34,-40,-14,-58v7,-6,13,-20,28,-14v-11,13,-26,23,-29,42","w":156},"\u00a4":{"d":"48,-91v0,29,18,48,47,48v29,0,48,-19,48,-48v0,-29,-20,-48,-48,-48v-27,0,-47,19,-47,48xm143,-129v18,18,18,59,0,77r25,25r-9,9r-25,-25v-18,17,-60,17,-77,0r-25,25r-10,-9r26,-25v-18,-19,-18,-59,0,-77r-26,-25r10,-10r25,26v18,-18,59,-18,77,0r25,-26r9,10"},"\u00ac":{"d":"167,-120r0,75r-13,0r0,-62r-129,0r0,-13r142,0"},"\u221e":{"d":"20,-105v-6,54,52,64,63,17v3,-9,3,-8,7,-17v-10,-19,-12,-49,-42,-49v-24,0,-25,21,-28,49xm171,-105v5,-44,-35,-65,-55,-33v-7,11,-9,22,-15,33v10,20,13,49,42,49v24,0,25,-21,28,-49xm6,-105v0,-34,10,-62,41,-62v30,0,39,23,48,46v8,-24,19,-46,49,-46v31,0,41,28,41,62v0,34,-11,61,-42,61v-30,0,-39,-23,-48,-45v-8,25,-14,46,-47,45v-31,0,-43,-27,-42,-61"},"\u222b":{"d":"84,-253v-5,-48,26,-65,73,-54r0,11v-39,-6,-63,2,-61,43r11,284v5,48,-25,62,-74,53r0,-12v37,6,64,0,62,-41"},"\u2202":{"d":"161,-106v-17,-14,-38,-28,-67,-28v-40,0,-61,25,-65,66v-6,65,84,77,111,32v11,-18,19,-42,21,-70xm97,-229v-18,0,-34,3,-49,5r-1,-12v15,-4,31,-5,50,-5v64,1,78,49,78,116v-1,71,-21,126,-87,128v-46,1,-73,-25,-73,-71v0,-81,102,-97,147,-53v-1,-60,-7,-108,-65,-108"},"\u03a9":{"d":"34,-130v2,53,23,90,43,126r0,7r-68,0r0,-10r55,0v-20,-35,-43,-75,-44,-126v-2,-64,11,-109,75,-108v118,0,73,180,32,234r54,0r0,10r-68,0r0,-7v20,-37,42,-73,44,-126v2,-56,-6,-98,-62,-98v-56,0,-63,42,-61,98"},"\u2126":{"d":"34,-130v2,53,23,90,43,126r0,7r-68,0r0,-10r55,0v-20,-35,-43,-75,-44,-126v-2,-64,11,-109,75,-108v118,0,73,180,32,234r54,0r0,10r-68,0r0,-7v20,-37,42,-73,44,-126v2,-56,-6,-98,-62,-98v-56,0,-63,42,-61,98"},"\u2264":{"d":"33,-37r117,0r0,13r-117,0r0,-13xm44,-131r106,56r0,15r-117,-64r0,-13r117,-61r0,14"},"\u2265":{"d":"40,-37r118,0r0,13r-118,0r0,-13xm40,-184r0,-14r118,61r0,13r-118,64r0,-15r107,-56"},"\u0161":{"d":"40,-264r15,0r34,36r33,-36r16,0r-44,48r-10,0xm23,-135v0,-56,71,-51,120,-43r0,12v-40,-5,-106,-19,-106,30v0,63,113,12,113,84v0,64,-69,59,-124,50r1,-12v44,6,112,19,109,-37v-3,-63,-113,-14,-113,-84","w":173},"\u00fd":{"d":"127,-264r6,12r-69,33r-6,-10xm26,-180r50,168r16,0r52,-168r13,0r-81,263r-13,0r26,-83r-23,0r-54,-180r14,0","w":172},"\u017e":{"d":"34,-264r15,0r34,36r34,-36r15,0r-44,48r-10,0xm22,-180r129,0r1,12r-115,156r115,0r0,12r-130,0r0,-12r115,-156r-115,0r0,-12","w":173},"\u2212":{"d":"20,-115r151,0r0,13r-151,0r0,-13"},"\u00d7":{"d":"99,-112r54,-53r9,9r-53,55r53,52r-10,10r-53,-53r-54,53r-9,-9r54,-53r-54,-54r10,-10"},"\u0160":{"d":"105,-291r-11,0r-48,-45v31,-2,35,23,53,34r37,-34r17,0xm65,-131v-72,-20,-51,-125,32,-125v24,0,48,3,70,6r-2,12v-54,-6,-130,-19,-130,45v0,88,137,27,137,120v0,84,-76,82,-150,70r2,-13v69,12,156,11,131,-77v-9,-31,-58,-29,-90,-38","w":192},"\u0142":{"d":"34,-115r-28,20r-7,-10r35,-25r0,-133r13,0r0,125r29,-21r7,10r-36,25r0,124r-13,0r0,-115","w":81},"\u0141":{"d":"1,-104r36,-25r0,-123r13,0r0,114r75,-52r7,9r-82,58r0,111r123,0r0,12r-136,0r0,-114r-28,20"},"\u00f0":{"d":"161,-125v-21,-6,-44,-16,-68,-16v-39,0,-57,25,-61,64v-7,67,82,92,114,44v14,-21,14,-54,15,-92xm19,-77v0,-78,85,-89,141,-60v-3,-44,-25,-71,-60,-92r-43,29r-7,-10r38,-26v-15,-8,-31,-13,-48,-19r5,-11v21,6,39,14,55,23r36,-25r8,10r-32,21v36,23,62,56,62,109v0,71,-9,130,-78,131v-49,1,-77,-29,-77,-80"},"\u00d0":{"d":"129,-12v56,-5,70,-59,70,-118v0,-56,-15,-110,-70,-110r-77,0r0,108r62,0r0,12r-62,0r0,108r77,0xm213,-130v0,67,-18,130,-84,130r-90,0r0,-120r-30,0r0,-12r30,0r0,-120r90,0v64,2,84,57,84,122","w":235},"\u00dd":{"d":"129,-332r6,11r-70,33r-5,-9xm104,0r-13,0r0,-108r-80,-144r15,0r72,129r70,-129r16,0r-80,144r0,108","w":194},"\u00de":{"d":"202,-132v0,51,-23,83,-75,83r-75,0r0,49r-13,0r0,-252r13,0r0,44r75,0v51,0,75,27,75,76xm188,-132v0,-41,-18,-64,-61,-64r-75,0r0,135r75,0v44,1,61,-30,61,-71","w":221},"\u00fe":{"d":"53,-166v16,-8,34,-17,58,-17v49,0,59,41,62,89v5,77,-40,109,-120,94r0,83r-13,0r0,-346r13,0r0,97xm111,-172v-25,-1,-42,10,-58,19r0,140v11,3,29,5,44,5v51,0,62,-33,62,-86v0,-43,-10,-77,-48,-78","w":197},"\u017d":{"d":"112,-289r-11,0r-48,-45v31,-2,35,23,54,34v18,-11,22,-36,53,-34xm23,-252r159,0r0,25r-145,207r0,8r145,0r0,12r-159,0r0,-24r145,-207r0,-9r-145,0r0,-12","w":205},"\u00a6":{"d":"99,-63r0,153r-13,0r0,-153r13,0xm99,-270r0,150r-13,0r0,-150r13,0"},"\u20ac":{"d":"113,3v-61,0,-86,-32,-88,-91r-23,0r0,-12r22,0r0,-41r-22,0r0,-13r23,0v4,-56,26,-90,88,-90v23,0,44,4,63,7r-1,13v-48,-11,-124,-14,-131,37v-1,10,-4,21,-5,33r111,1r0,12r-112,0v0,14,-2,28,0,41r112,0r0,12r-112,0v-4,75,63,91,137,72r1,12v-19,4,-40,7,-63,7"},"\u011b":{"d":"42,-264r16,0r33,36r34,-36r15,0r-44,48r-10,0xm148,-96v16,-77,-86,-105,-107,-35v-3,10,-5,21,-5,35r112,0xm36,-85v-6,70,45,88,117,73r1,12r-65,3v-51,-1,-66,-40,-66,-93v0,-56,19,-92,71,-93v55,-1,68,41,67,98r-125,0","w":182},"\u010d":{"d":"37,-264r15,0r34,36r34,-36r15,0r-44,48r-10,0xm25,-94v0,-74,40,-99,114,-86r-1,12v-61,-13,-108,6,-99,74v-8,70,31,98,100,82r0,12v-13,1,-25,3,-40,3v-62,0,-74,-37,-74,-97","w":157},"\u0109":{"d":"81,-264r10,0r44,48r-16,0r-33,-36r-33,36r-16,0xm25,-94v0,-74,40,-99,114,-86r-1,12v-61,-13,-108,6,-99,74v-8,70,31,98,100,82r0,12v-13,1,-25,3,-40,3v-62,0,-74,-37,-74,-97","w":157},"\u0107":{"d":"118,-264r5,12r-69,33r-5,-10xm25,-94v0,-74,40,-99,114,-86r-1,12v-61,-13,-108,6,-99,74v-8,70,31,98,100,82r0,12v-13,1,-25,3,-40,3v-62,0,-74,-37,-74,-97","w":157},"\u011d":{"d":"86,-264r10,0r44,48r-16,0r-33,-36r-33,36r-16,0xm37,-123v1,31,13,47,45,47v33,0,51,-14,51,-47v0,-32,-16,-49,-49,-49v-30,-1,-47,19,-47,49xm154,27v2,-47,-50,-34,-93,-38v-12,11,-27,18,-27,39v0,36,20,47,57,47v37,0,61,-13,63,-48xm24,-123v0,-49,47,-72,92,-56r54,-1r0,13r-40,0v10,9,16,24,16,44v2,48,-36,64,-82,57v-8,16,-17,44,13,44v44,0,94,-3,90,49v-3,42,-30,59,-76,59v-74,0,-91,-74,-39,-103v-14,-12,-6,-39,3,-52v-18,-9,-31,-24,-31,-54","w":181},"\u0125":{"d":"97,-332r10,0r44,48r-16,0r-33,-36r-33,36r-16,0xm108,-172v-24,0,-42,7,-59,15r0,157r-13,0r0,-263r13,0r0,94v17,-7,36,-13,59,-14v85,-5,52,107,59,183r-13,0v-8,-66,27,-173,-46,-172","w":204},"\u0129":{"d":"-7,-240v31,-44,78,26,105,-13v8,15,-9,24,-23,26v-28,-6,-57,-33,-78,-3xm41,-180r12,0r0,180r-12,0r0,-180","w":93},"\u013a":{"d":"72,-336r6,12r-69,33r-6,-10xm34,-263r13,0r0,263r-13,0r0,-263","w":81},"\u0144":{"d":"135,-264r5,12r-69,33r-5,-10xm112,-172v-25,0,-43,9,-59,18r0,154r-13,0r0,-180r13,0r0,14v17,-8,35,-16,59,-17v85,-5,52,107,59,183r-13,0v-8,-66,27,-173,-46,-172","w":206},"\u0148":{"d":"54,-264r15,0r34,36r34,-36r15,0r-44,48r-10,0xm112,-172v-25,0,-43,9,-59,18r0,154r-13,0r0,-180r13,0r0,14v17,-8,35,-16,59,-17v85,-5,52,107,59,183r-13,0v-8,-66,27,-173,-46,-172","w":206},"\u015d":{"d":"82,-264r10,0r44,48r-16,0r-33,-36r-33,36r-16,0xm23,-135v0,-56,71,-51,120,-43r0,12v-40,-5,-106,-19,-106,30v0,63,113,12,113,84v0,64,-69,59,-124,50r1,-12v44,6,112,19,109,-37v-3,-63,-113,-14,-113,-84","w":173},"\u015b":{"d":"119,-264r6,12r-70,33r-5,-10xm23,-135v0,-56,71,-51,120,-43r0,12v-40,-5,-106,-19,-106,30v0,63,113,12,113,84v0,64,-69,59,-124,50r1,-12v44,6,112,19,109,-37v-3,-63,-113,-14,-113,-84","w":173},"\u0155":{"d":"103,-264r5,12r-69,33r-6,-10xm117,-171v-25,7,-49,18,-68,31r0,140r-13,0r0,-180r13,0r0,28v18,-14,42,-25,68,-32r0,13","w":127},"\u0169":{"d":"46,-240v31,-44,78,26,105,-13v8,15,-9,24,-23,26v-20,-2,-34,-17,-53,-19v-11,2,-17,10,-25,16xm96,-8v23,-1,42,-10,56,-18r0,-154r12,0r0,180r-12,0r0,-14v-16,8,-32,17,-56,17v-86,0,-52,-107,-59,-183r13,0v8,66,-27,173,46,172","w":200},"\u0159":{"d":"22,-264r15,0r34,36r34,-36r15,0r-44,48r-10,0xm117,-171v-25,7,-49,18,-68,31r0,140r-13,0r0,-180r13,0r0,28v18,-14,42,-25,68,-32r0,13","w":127},"\u0177":{"d":"81,-264r10,0r44,48r-15,0r-33,-36r-34,36r-15,0xm27,-180r51,168r16,0r51,-168r14,0r-81,263r-14,0r27,-83r-23,0r-54,-180r13,0","w":172},"\u1ef3":{"d":"123,-229r-5,10r-69,-33r5,-12xm27,-180r51,168r16,0r51,-168r14,0r-81,263r-14,0r27,-83r-23,0r-54,-180r13,0","w":172},"\u1e85":{"d":"165,-252r12,0r0,22r-12,0r0,-22xm96,-252r13,0r0,22r-13,0r0,-22xm28,-180r45,168r8,0r49,-164r14,0r49,164r8,0r45,-168r13,0r-48,180r-28,0r-46,-161r-47,161r-28,0r-47,-180r13,0","w":273},"\u0175":{"d":"132,-264r10,0r44,48r-16,0r-33,-36r-33,36r-16,0xm28,-180r45,168r8,0r49,-164r14,0r49,164r8,0r45,-168r13,0r-48,180r-28,0r-46,-161r-47,161r-28,0r-47,-180r13,0","w":273},"\u1e83":{"d":"168,-264r6,12r-69,33r-6,-10xm28,-180r45,168r8,0r49,-164r14,0r49,164r8,0r45,-168r13,0r-48,180r-28,0r-46,-161r-47,161r-28,0r-47,-180r13,0","w":273},"\u1e81":{"d":"174,-229r-5,10r-70,-33r6,-12xm28,-180r45,168r8,0r49,-164r14,0r49,164r8,0r45,-168r13,0r-48,180r-28,0r-46,-161r-47,161r-28,0r-47,-180r13,0","w":273},"\u017a":{"d":"122,-264r6,12r-70,33r-5,-10xm22,-180r129,0r1,12r-115,156r115,0r0,12r-130,0r0,-12r115,-156r-115,0r0,-12","w":173},"\u016f":{"d":"103,-257v-12,0,-22,10,-22,23v0,12,10,23,22,23v12,0,22,-11,22,-23v0,-13,-10,-23,-22,-23xm103,-200v-18,0,-34,-15,-34,-34v0,-18,16,-34,34,-34v20,0,33,16,34,34v0,20,-15,33,-34,34xm96,-8v23,-1,42,-10,56,-18r0,-154r12,0r0,180r-12,0r0,-14v-16,8,-32,17,-56,17v-86,0,-52,-107,-59,-183r13,0v8,66,-27,173,46,172","w":200},"\u01fd":{"d":"184,-264r6,12r-69,33r-6,-10xm265,-96v17,-79,-89,-104,-110,-35v-3,9,-5,21,-5,35r115,0xm42,-78v-19,19,-9,72,24,70v30,-2,60,-11,82,-19v-10,-17,-11,-41,-11,-69v-32,5,-77,-1,-95,18xm150,-85v-7,74,47,87,121,73r0,12v-44,1,-100,11,-118,-18v-37,22,-133,44,-133,-31v0,-63,66,-50,118,-59v13,-71,-46,-66,-108,-60r0,-12v45,-1,111,-15,118,31v10,-23,32,-34,62,-34v56,-1,70,39,68,98r-128,0","w":298},"\u01ff":{"d":"125,-178r10,5r17,-41r-11,-4xm48,41r17,-42v-4,-1,-8,-2,-11,-4r-17,42xm126,-264r6,12r-69,33r-6,-10xm60,-17v3,2,5,5,9,5r62,-149v-3,-2,-6,-5,-10,-6xm135,-173v47,31,52,176,-40,176v-12,0,-21,-1,-30,-4r4,-11v57,17,84,-20,84,-81v0,-34,-7,-56,-22,-68xm23,-94v-5,-69,39,-103,102,-84r-4,11v-53,-18,-88,14,-84,73v3,37,2,64,23,77r-6,12v-27,-14,-28,-47,-31,-89","w":189},"\u01fc":{"d":"184,-332r6,11r-70,33r-5,-9xm50,-90r88,0r0,-150r-43,0xm138,-77r-92,0r-24,77r-13,0r77,-252r196,0r0,12r-131,0r0,104r109,0r0,13r-109,0r0,111r131,0r0,12r-144,0r0,-77","w":304},"\u0106":{"d":"135,-332r6,11r-69,33r-6,-9xm36,-125v0,82,28,135,116,112r22,-3r1,12v-19,4,-41,7,-64,7v-74,1,-88,-54,-88,-128v0,-74,13,-132,88,-130v23,0,46,2,64,7r-1,12v-20,-3,-41,-7,-63,-7v-67,-2,-75,52,-75,118","w":193},"\u0154":{"d":"145,-332r6,11r-70,33r-5,-9xm52,-117v67,2,135,9,135,-63v0,-69,-69,-61,-135,-60r0,123xm126,-252v93,-14,98,137,22,146r57,106r-15,0r-55,-105v-26,2,-56,0,-83,1r0,104r-13,0r0,-252r87,0","w":226},"\u011a":{"d":"117,-291r-11,0r-48,-45v31,-2,35,23,53,34r37,-34r17,0xm39,-252r144,0r0,12r-131,0r0,104r109,0r0,13r-109,0r0,111r131,0r0,12r-144,0r0,-252","w":205},"\u010e":{"d":"113,-291r-11,0r-48,-45v31,-2,35,23,54,34v18,-11,22,-36,53,-34xm129,-12v56,-5,70,-59,70,-118v0,-56,-15,-110,-70,-110r-77,0r0,228r77,0xm213,-130v0,67,-18,130,-84,130r-90,0r0,-252r90,0v64,2,84,57,84,122","w":235},"\u010c":{"d":"110,-291r-11,0r-48,-45v31,-2,35,23,54,34v18,-11,22,-36,53,-34xm36,-125v0,82,28,135,116,112r22,-3r1,12v-19,4,-41,7,-64,7v-74,1,-88,-54,-88,-128v0,-74,13,-132,88,-130v23,0,46,2,64,7r-1,12v-20,-3,-41,-7,-63,-7v-67,-2,-75,52,-75,118","w":193},"\u0114":{"d":"163,-333v3,50,-79,56,-95,18v-3,-5,-4,-11,-4,-18r13,0v1,21,16,32,37,32v21,0,36,-11,37,-32r12,0xm39,-252r144,0r0,12r-131,0r0,104r109,0r0,13r-109,0r0,111r131,0r0,12r-144,0r0,-252","w":205},"\u0112":{"d":"55,-311r103,0r0,11r-103,0r0,-11xm39,-252r144,0r0,12r-131,0r0,104r109,0r0,13r-109,0r0,111r131,0r0,12r-144,0r0,-252","w":205},"\u015e":{"d":"103,21v24,1,36,3,37,25v2,30,-31,27,-58,25r0,-10v19,-1,46,8,46,-15v0,-19,-20,-14,-37,-15r0,-28r-69,-6r2,-13v69,12,159,10,131,-77v-18,-55,-134,-7,-134,-100v0,-72,82,-67,146,-57r-2,12v-54,-6,-130,-19,-130,45v0,88,142,27,137,120v-3,50,-21,73,-69,75r0,19","w":192},"\u0176":{"d":"92,-334r11,0r48,45r-16,0r-37,-35r-38,35r-16,0xm104,0r-13,0r0,-108r-80,-144r15,0r72,129r70,-129r16,0r-80,144r0,108","w":194},"\u015c":{"d":"91,-334r11,0r48,45r-16,0r-37,-35r-37,35r-17,0xm65,-131v-72,-20,-51,-125,32,-125v24,0,48,3,70,6r-2,12v-54,-6,-130,-19,-130,45v0,88,137,27,137,120v0,84,-76,82,-150,70r2,-13v69,12,156,11,131,-77v-9,-31,-58,-29,-90,-38","w":192},"\u0139":{"d":"127,-332r6,11r-70,33r-5,-9xm39,0r0,-252r13,0r0,240r119,0r0,12r-132,0"},"\u0143":{"d":"155,-332r6,11r-70,33r-5,-9xm39,-252r30,0r117,240r9,0r0,-240r13,0r0,252r-30,0r-117,-240r-9,0r0,240r-13,0r0,-252","w":247},"\u012a":{"d":"-11,-315r104,0r0,12r-104,0r0,-12xm34,-252r13,0r0,252r-13,0r0,-252","w":81},"\u012c":{"d":"90,-332v3,50,-78,55,-95,18v-3,-5,-4,-11,-4,-18r13,0v1,21,15,31,37,31v21,-1,36,-10,37,-31r12,0xm34,-252r13,0r0,252r-13,0r0,-252","w":81},"\u0130":{"d":"34,-324r13,0r0,20r-13,0r0,-20xm34,-252r13,0r0,252r-13,0r0,-252","w":81},"\u0134":{"d":"50,-334r10,0r49,45r-16,0r-38,-35r-37,35r-17,0xm14,14v40,2,48,-15,48,-55r0,-211r13,0r0,214v2,47,-13,68,-61,64r0,-12","w":109},"\u0128":{"d":"73,-307v12,-2,17,-11,26,-18r4,10v-9,8,-17,18,-30,20v-21,-2,-36,-20,-57,-23v-12,3,-20,13,-29,20r-4,-11v9,-8,19,-18,33,-20v22,1,36,19,57,22xm34,-252r13,0r0,252r-13,0r0,-252","w":81},"\u0124":{"d":"120,-334r11,0r48,45r-16,0r-37,-35r-37,35r-17,0xm199,-120r-147,0r0,120r-13,0r0,-252r13,0r0,120r147,0r0,-120r13,0r0,252r-13,0r0,-120","w":250},"\u0120":{"d":"105,-324r12,0r0,20r-12,0r0,-20xm116,-9v22,0,45,-5,64,-7r0,-97r-52,0r0,-12r65,0r0,119v-23,5,-50,9,-77,9v-75,1,-93,-54,-93,-128v0,-75,18,-131,93,-130v28,0,55,3,77,9r-1,12v-24,-4,-49,-9,-76,-9v-67,-1,-79,52,-79,118v0,66,12,117,79,116","w":222},"\u010a":{"d":"98,-324r12,0r0,20r-12,0r0,-20xm36,-125v0,82,28,135,116,112r22,-3r1,12v-19,4,-41,7,-64,7v-74,1,-88,-54,-88,-128v0,-74,13,-132,88,-130v23,0,46,2,64,7r-1,12v-20,-3,-41,-7,-63,-7v-67,-2,-75,52,-75,118","w":193},"\u0100":{"d":"57,-315r103,0r0,12r-103,0r0,-12xm55,-90r107,0r-45,-150r-16,0xm92,-252r34,0r77,252r-13,0r-24,-77r-115,0r-24,77r-13,0","w":217},"\u0102":{"d":"158,-332v3,50,-78,55,-95,18v-3,-5,-4,-11,-4,-18r13,0v1,21,15,31,37,31v21,-1,36,-10,37,-31r12,0xm55,-90r107,0r-45,-150r-16,0xm92,-252r34,0r77,252r-13,0r-24,-77r-115,0r-24,77r-13,0","w":217},"\u01fa":{"d":"140,-364r6,11r-69,33r-6,-10xm108,-296v-27,0,-31,41,-7,44v19,2,31,-5,30,-22v0,-14,-9,-22,-23,-22xm55,-90r107,0r-45,-150r-16,0xm108,-307v35,-4,47,46,20,61r75,246r-13,0r-24,-77r-115,0r-24,77r-13,0r75,-244v-27,-13,-18,-68,19,-63","w":217},"\u0147":{"d":"129,-289r-11,0r-48,-45v31,-2,35,23,54,34v18,-11,22,-36,53,-34xm39,-252r30,0r117,240r9,0r0,-240r13,0r0,252r-30,0r-117,-240r-9,0r0,240r-13,0r0,-252","w":247},"\u011c":{"d":"109,-334r11,0r48,45r-16,0r-37,-35r-37,35r-17,0xm116,-9v22,0,45,-5,64,-7r0,-97r-52,0r0,-12r65,0r0,119v-23,5,-50,9,-77,9v-75,1,-93,-54,-93,-128v0,-75,18,-131,93,-130v28,0,55,3,77,9r-1,12v-24,-4,-49,-9,-76,-9v-67,-1,-79,52,-79,118v0,66,12,117,79,116","w":222},"\u011e":{"d":"168,-332v2,50,-79,55,-96,18v-3,-5,-4,-11,-4,-18r13,0v1,21,16,31,37,31v21,0,36,-10,37,-31r13,0xm116,-9v22,0,45,-5,64,-7r0,-97r-52,0r0,-12r65,0r0,119v-23,5,-50,9,-77,9v-75,1,-93,-54,-93,-128v0,-75,18,-131,93,-130v28,0,55,3,77,9r-1,12v-24,-4,-49,-9,-76,-9v-67,-1,-79,52,-79,118v0,66,12,117,79,116","w":222},"\u014c":{"d":"66,-315r104,0r0,12r-104,0r0,-12xm213,-125v0,78,-17,128,-95,128v-78,0,-95,-52,-95,-128v0,-76,19,-130,95,-130v76,0,95,53,95,130xm37,-125v0,68,13,116,81,116v70,0,81,-47,81,-116v0,-67,-14,-119,-81,-118v-67,0,-81,50,-81,118","w":236},"\u014e":{"d":"168,-332v2,50,-79,55,-96,18v-3,-5,-4,-11,-4,-18r13,0v1,21,16,31,37,31v21,0,36,-10,37,-31r13,0xm213,-125v0,78,-17,128,-95,128v-78,0,-95,-52,-95,-128v0,-76,19,-130,95,-130v76,0,95,53,95,130xm37,-125v0,68,13,116,81,116v70,0,81,-47,81,-116v0,-67,-14,-119,-81,-118v-67,0,-81,50,-81,118","w":236},"\u0158":{"d":"119,-289r-11,0r-48,-45v31,-2,35,23,54,34v18,-11,22,-36,53,-34xm52,-117v67,2,135,9,135,-63v0,-69,-69,-61,-135,-60r0,123xm126,-252v93,-14,98,137,22,146r57,106r-15,0r-55,-105v-26,2,-56,0,-83,1r0,104r-13,0r0,-252r87,0","w":226},"\u015a":{"d":"128,-332r6,11r-70,33r-5,-9xm65,-131v-72,-20,-51,-125,32,-125v24,0,48,3,70,6r-2,12v-54,-6,-130,-19,-130,45v0,88,137,27,137,120v0,84,-76,82,-150,70r2,-13v69,12,156,11,131,-77v-9,-31,-58,-29,-90,-38","w":192},"\u0164":{"d":"96,-289r-11,0r-48,-45v31,-2,35,23,53,34r37,-34r17,0xm3,-252r173,0r0,12r-79,0r0,240r-13,0r0,-240r-81,0r0,-12","w":180},"\u0168":{"d":"148,-307v11,-3,17,-12,26,-18v7,16,-13,26,-26,30v-21,-3,-37,-20,-58,-23v-11,3,-20,12,-28,20r-4,-11v9,-8,18,-18,32,-20v23,1,37,19,58,22xm114,3v-50,0,-82,-23,-81,-74r0,-181r13,0r0,181v-1,43,26,62,68,62v45,0,71,-18,71,-62r0,-181r13,0r0,181v0,51,-32,74,-84,74","w":231},"\u017c":{"d":"80,-252r13,0r0,20r-13,0r0,-20xm22,-180r129,0r1,12r-115,156r115,0r0,12r-130,0r0,-12r115,-156r-115,0r0,-12","w":173},"\u016b":{"d":"52,-243r96,0r0,12r-96,0r0,-12xm96,-8v23,-1,42,-10,56,-18r0,-154r12,0r0,180r-12,0r0,-14v-16,8,-32,17,-56,17v-86,0,-52,-107,-59,-183r13,0v8,66,-27,173,46,172","w":200},"\u016d":{"d":"150,-260v3,42,-58,61,-86,33v-9,-9,-14,-20,-14,-33r13,0v1,21,14,34,37,34v23,0,36,-13,37,-34r13,0xm96,-8v23,-1,42,-10,56,-18r0,-154r12,0r0,180r-12,0r0,-14v-16,8,-32,17,-56,17v-86,0,-52,-107,-59,-183r13,0v8,66,-27,173,46,172","w":200},"\u0101":{"d":"45,-243r96,0r0,12r-96,0r0,-12xm37,-49v0,55,71,43,101,26r0,-73v-43,6,-101,-6,-101,47xm32,-177v51,-9,118,-18,118,50r0,103v5,10,14,14,27,15r0,12v-16,-1,-28,-4,-36,-15v-18,9,-43,15,-70,15v-44,0,-63,-60,-35,-89v20,-21,66,-17,102,-22v2,-37,-4,-64,-40,-63v-23,1,-45,3,-65,6","w":186},"\u0103":{"d":"143,-260v3,42,-58,61,-86,33v-9,-9,-13,-20,-13,-33r12,0v1,21,14,34,37,34v23,0,37,-12,37,-34r13,0xm37,-49v0,55,71,43,101,26r0,-73v-43,6,-101,-6,-101,47xm32,-177v51,-9,118,-18,118,50r0,103v5,10,14,14,27,15r0,12v-16,-1,-28,-4,-36,-15v-18,9,-43,15,-70,15v-44,0,-63,-60,-35,-89v20,-21,66,-17,102,-22v2,-37,-4,-64,-40,-63v-23,1,-45,3,-65,6","w":186},"\u010b":{"d":"80,-252r12,0r0,20r-12,0r0,-20xm25,-94v0,-74,40,-99,114,-86r-1,12v-61,-13,-108,6,-99,74v-8,70,31,98,100,82r0,12v-13,1,-25,3,-40,3v-62,0,-74,-37,-74,-97","w":157},"\u016a":{"d":"64,-315r103,0r0,12r-103,0r0,-12xm114,3v-50,0,-82,-23,-81,-74r0,-181r13,0r0,181v-1,43,26,62,68,62v45,0,71,-18,71,-62r0,-181r13,0r0,181v0,51,-32,74,-84,74","w":231},"\u016c":{"d":"165,-332v2,50,-78,55,-95,18v-3,-5,-4,-11,-4,-18r12,0v0,40,75,41,75,0r12,0xm114,3v-50,0,-82,-23,-81,-74r0,-181r13,0r0,181v-1,43,26,62,68,62v45,0,71,-18,71,-62r0,-181r13,0r0,181v0,51,-32,74,-84,74","w":231},"\u016e":{"d":"116,-328v-15,0,-23,8,-23,22v0,14,8,22,23,22v15,0,23,-9,23,-22v0,-13,-8,-22,-23,-22xm116,-339v21,0,34,12,34,33v0,21,-13,33,-34,33v-21,0,-35,-11,-35,-33v0,-22,14,-33,35,-33xm114,3v-50,0,-82,-23,-81,-74r0,-181r13,0r0,181v-1,43,26,62,68,62v45,0,71,-18,71,-62r0,-181r13,0r0,181v0,51,-32,74,-84,74","w":231},"\u1e80":{"d":"191,-297r-6,9r-69,-33r6,-11xm31,-252r51,240r14,0r54,-236r14,0r56,236r14,0r49,-240r13,0r-52,252r-34,0r-53,-231r-51,231r-34,0r-54,-252r13,0","w":313},"\u1e82":{"d":"192,-332r6,11r-69,33r-6,-9xm31,-252r51,240r14,0r54,-236r14,0r56,236r14,0r49,-240r13,0r-52,252r-34,0r-53,-231r-51,231r-34,0r-54,-252r13,0","w":313},"\u0174":{"d":"152,-334r10,0r49,45r-17,0r-37,-35r-37,35r-17,0xm31,-252r51,240r14,0r54,-236r14,0r56,236r14,0r49,-240r13,0r-52,252r-34,0r-53,-231r-51,231r-34,0r-54,-252r13,0","w":313},"\u1e84":{"d":"186,-324r12,0r0,22r-12,0r0,-22xm115,-324r13,0r0,22r-13,0r0,-22xm31,-252r51,240r14,0r54,-236r14,0r56,236r14,0r49,-240r13,0r-52,252r-34,0r-53,-231r-51,231r-34,0r-54,-252r13,0","w":313},"\u1ef2":{"d":"135,-297r-6,9r-69,-33r6,-11xm104,0r-13,0r0,-108r-80,-144r15,0r72,129r70,-129r16,0r-80,144r0,108","w":194},"\u0179":{"d":"134,-332r6,11r-69,33r-6,-9xm23,-252r159,0r0,25r-145,207r0,8r145,0r0,12r-159,0r0,-24r145,-207r0,-9r-145,0r0,-12","w":205},"\u017b":{"d":"96,-324r13,0r0,20r-13,0r0,-20xm23,-252r159,0r0,25r-145,207r0,8r145,0r0,12r-159,0r0,-24r145,-207r0,-9r-145,0r0,-12","w":205},"\u0116":{"d":"104,-324r12,0r0,20r-12,0r0,-20xm39,-252r144,0r0,12r-131,0r0,104r109,0r0,13r-109,0r0,111r131,0r0,12r-144,0r0,-252","w":205},"\u0108":{"d":"106,-334r11,0r48,45r-16,0r-38,-35r-37,35r-16,0xm36,-125v0,82,28,135,116,112r22,-3r1,12v-19,4,-41,7,-64,7v-74,1,-88,-54,-88,-128v0,-74,13,-132,88,-130v23,0,46,2,64,7r-1,12v-20,-3,-41,-7,-63,-7v-67,-2,-75,52,-75,118","w":193},"\u0113":{"d":"47,-243r96,0r0,12r-96,0r0,-12xm148,-96v16,-77,-86,-105,-107,-35v-3,10,-5,21,-5,35r112,0xm36,-85v-6,70,45,88,117,73r1,12r-65,3v-51,-1,-66,-40,-66,-93v0,-56,19,-92,71,-93v55,-1,68,41,67,98r-125,0","w":182},"\u0115":{"d":"144,-260v3,42,-58,61,-86,33v-9,-9,-13,-20,-13,-33r12,0v1,21,14,34,37,34v23,0,37,-12,37,-34r13,0xm148,-96v16,-77,-86,-105,-107,-35v-3,10,-5,21,-5,35r112,0xm36,-85v-6,70,45,88,117,73r1,12r-65,3v-51,-1,-66,-40,-66,-93v0,-56,19,-92,71,-93v55,-1,68,41,67,98r-125,0","w":182},"\u0117":{"d":"85,-252r13,0r0,20r-13,0r0,-20xm148,-96v16,-77,-86,-105,-107,-35v-3,10,-5,21,-5,35r112,0xm36,-85v-6,70,45,88,117,73r1,12r-65,3v-51,-1,-66,-40,-66,-93v0,-56,19,-92,71,-93v55,-1,68,41,67,98r-125,0","w":182},"\u011f":{"d":"140,-260v4,42,-57,61,-85,33v-9,-9,-14,-20,-14,-33r13,0v0,22,14,34,37,34v23,0,36,-13,37,-34r12,0xm37,-123v1,31,13,47,45,47v33,0,51,-14,51,-47v0,-32,-16,-49,-49,-49v-30,-1,-47,19,-47,49xm154,27v2,-47,-50,-34,-93,-38v-12,11,-27,18,-27,39v0,36,20,47,57,47v37,0,61,-13,63,-48xm24,-123v0,-49,47,-72,92,-56r54,-1r0,13r-40,0v10,9,16,24,16,44v2,48,-36,64,-82,57v-8,16,-17,44,13,44v44,0,94,-3,90,49v-3,42,-30,59,-76,59v-74,0,-91,-74,-39,-103v-14,-12,-6,-39,3,-52v-18,-9,-31,-24,-31,-54","w":181},"\u0121":{"d":"84,-252r13,0r0,20r-13,0r0,-20xm37,-123v1,31,13,47,45,47v33,0,51,-14,51,-47v0,-32,-16,-49,-49,-49v-30,-1,-47,19,-47,49xm154,27v2,-47,-50,-34,-93,-38v-12,11,-27,18,-27,39v0,36,20,47,57,47v37,0,61,-13,63,-48xm24,-123v0,-49,47,-72,92,-56r54,-1r0,13r-40,0v10,9,16,24,16,44v2,48,-36,64,-82,57v-8,16,-17,44,13,44v44,0,94,-3,90,49v-3,42,-30,59,-76,59v-74,0,-91,-74,-39,-103v-14,-12,-6,-39,3,-52v-18,-9,-31,-24,-31,-54","w":181},"\u012d":{"d":"97,-260v3,42,-58,61,-86,33v-9,-9,-14,-20,-14,-33r13,0v1,21,14,34,37,34v23,0,37,-12,37,-34r13,0xm41,-180r12,0r0,180r-12,0r0,-180","w":93},"\u012b":{"d":"-1,-243r96,0r0,12r-96,0r0,-12xm41,-180r12,0r0,180r-12,0r0,-180","w":93},"\u0237":{"d":"-7,67v26,-16,46,-27,46,-69r0,-178r12,0r-2,205v-7,28,-27,38,-51,53","w":83},"\u0135":{"d":"37,-264r10,0r44,48r-16,0r-33,-36r-33,36r-16,0xm-7,67v26,-16,46,-27,46,-69r0,-178r12,0r-2,205v-7,28,-27,38,-51,53","w":83},"\u014d":{"d":"46,-243r97,0r0,12r-97,0r0,-12xm37,-94v0,52,9,86,58,86v49,1,59,-35,58,-85v-1,-49,-13,-78,-58,-79v-47,-1,-58,31,-58,78xm23,-94v-1,-56,17,-90,72,-89v54,1,71,32,71,90v1,58,-13,96,-71,96v-60,0,-71,-39,-72,-97","w":189},"\u014f":{"d":"144,-260v4,43,-58,60,-86,33v-9,-9,-13,-20,-13,-33r13,0v0,22,14,34,37,34v23,0,36,-13,37,-34r12,0xm37,-94v0,52,9,86,58,86v49,1,59,-35,58,-85v-1,-49,-13,-78,-58,-79v-47,-1,-58,31,-58,78xm23,-94v-1,-56,17,-90,72,-89v54,1,71,32,71,90v1,58,-13,96,-71,96v-60,0,-71,-39,-72,-97","w":189},"\u2070":{"d":"76,-229v-1,-27,-4,-46,-28,-46v-23,0,-26,18,-27,46v0,30,5,46,28,48v22,-2,28,-19,27,-48xm8,-229v0,-33,8,-58,40,-59v33,0,40,26,41,59v0,34,-8,59,-40,60v-33,0,-41,-26,-41,-60","w":95},"\u00b9":{"d":"14,-260v17,-8,24,-25,49,-24r0,112r-13,0r0,-98r-30,20","w":95},"\u00b2":{"d":"11,-283v27,-8,71,-9,67,26v-4,34,-33,50,-51,73r53,0r0,12r-70,0r0,-12v17,-25,50,-38,55,-73v4,-25,-36,-18,-53,-14","w":95},"\u00b3":{"d":"68,-259v0,-24,-36,-15,-55,-13r-1,-12v45,-20,99,21,52,53v34,9,26,62,-15,62v-15,0,-26,-2,-39,-4r2,-11v22,3,60,10,60,-18v0,-25,-22,-22,-45,-22r0,-12v23,2,41,-1,41,-23","w":95},"\u2074":{"d":"59,-193r-53,0v4,-38,23,-59,33,-91r13,0r-31,79r38,0r0,-31r13,0r0,31r13,0r0,12r-13,0r0,21r-13,0r0,-21","w":95},"\u2075":{"d":"72,-207v0,-30,-33,-26,-46,-15r-11,-1r3,-61r63,0r0,12r-51,0r-2,37v20,-17,58,-6,58,28v0,39,-37,43,-72,34r1,-13v23,6,57,11,57,-21","w":95},"\u2076":{"d":"73,-208v3,-32,-33,-26,-50,-17v0,24,4,44,26,44v18,0,22,-10,24,-27xm10,-229v0,-51,28,-67,71,-55r-1,11v-29,-5,-61,-4,-56,35v25,-14,63,-7,63,30v0,24,-14,40,-38,39v-30,-2,-39,-24,-39,-60","w":95},"\u2077":{"d":"11,-284r70,0r0,22r-41,93r-13,-3v12,-34,33,-60,40,-100r-56,0r0,-12","w":95},"\u2078":{"d":"73,-258v-1,-13,-9,-17,-25,-17v-16,0,-26,3,-26,17v0,18,13,20,32,20v12,-4,19,-6,19,-20xm21,-201v0,15,12,20,27,20v16,0,27,-4,27,-21v0,-19,-14,-22,-34,-22v-14,4,-19,6,-20,23xm48,-169v-44,10,-55,-55,-19,-62v-35,-13,-21,-63,19,-57v39,-8,52,49,19,57v13,4,22,10,21,28v0,25,-14,35,-40,34","w":95},"\u2079":{"d":"22,-250v-2,27,31,31,51,18v-1,-24,-4,-43,-26,-43v-17,0,-24,9,-25,25xm86,-227v3,48,-26,66,-73,55r1,-12v29,7,63,5,59,-34v-28,13,-65,4,-65,-32v0,-24,16,-38,39,-38v31,0,37,25,39,61","w":95},"\u015f":{"d":"89,21v24,1,36,3,37,25v2,30,-31,27,-58,25r0,-10v19,-1,46,8,46,-15v0,-19,-20,-14,-37,-15r0,-28r-51,-5r1,-12v44,6,112,19,109,-37v-3,-63,-113,-14,-113,-84v0,-56,71,-51,120,-43r0,12v-40,-5,-106,-19,-106,30v0,63,118,12,113,84v-3,38,-23,55,-61,55r0,18","w":173},"\u0105":{"d":"37,-49v0,55,71,43,101,26r0,-73v-43,6,-101,-6,-101,47xm139,42v-1,17,21,22,37,15v5,16,-8,15,-22,15v-17,0,-29,-12,-28,-30v1,-18,20,-35,29,-43v-6,-3,-10,-6,-14,-11v-18,9,-43,15,-70,15v-44,0,-63,-60,-35,-89v20,-21,66,-17,102,-22v2,-37,-4,-64,-40,-63v-23,1,-45,3,-65,6r-1,-12v51,-9,118,-18,118,50r0,103v5,10,14,14,27,15r0,12v-4,0,-8,0,-11,-1v-8,11,-26,24,-27,40","w":186},"\u0104":{"d":"55,-90r107,0r-45,-150r-16,0xm203,0v-13,11,-47,50,-12,60v7,0,14,-1,20,-3v5,15,-8,15,-22,15v-17,0,-29,-12,-28,-30v1,-18,20,-35,29,-43r-24,-76r-115,0r-24,77r-13,0r78,-252r34,0","w":217},"\u0118":{"d":"131,42v1,-19,20,-31,27,-42r-119,0r0,-252r144,0r0,12r-131,0r0,104r109,0r0,13r-109,0r0,111r131,0r0,12r-10,0v-8,11,-27,25,-29,42v-2,17,23,22,37,15v6,15,-7,16,-22,15v-17,0,-28,-12,-28,-30","w":205},"\u012e":{"d":"18,42v-2,17,23,22,37,15v6,15,-7,15,-22,15v-31,0,-35,-42,-14,-57r15,-17r0,-250r13,0r0,252v-8,11,-27,25,-29,42","w":81},"\u0172":{"d":"145,0v-11,11,-48,51,-11,60v7,0,14,-1,20,-3v5,15,-8,15,-22,15v-36,1,-33,-47,-11,-61r8,-8v-59,3,-97,-18,-96,-74r0,-181r13,0r0,181v-1,43,26,62,68,62v45,0,71,-18,71,-62r0,-181r13,0r0,181v1,41,-20,63,-53,71","w":231},"\u0110":{"d":"129,-12v56,-5,70,-59,70,-118v0,-56,-15,-110,-70,-110r-77,0r0,108r62,0r0,12r-62,0r0,108r77,0xm213,-130v0,67,-18,130,-84,130r-90,0r0,-120r-30,0r0,-12r30,0r0,-120r90,0v64,2,84,57,84,122","w":235},"\u0171":{"d":"108,-261r6,9r-59,38r-6,-10xm174,-261r7,9r-59,38r-6,-10xm96,-8v23,-1,42,-10,56,-18r0,-154r12,0r0,180r-12,0r0,-14v-16,8,-32,17,-56,17v-86,0,-52,-107,-59,-183r13,0v8,66,-27,173,46,172","w":200},"\u0170":{"d":"126,-316r5,10r-69,32r-5,-11xm194,-316r5,10r-69,32r-5,-11xm114,3v-50,0,-82,-23,-81,-74r0,-181r13,0r0,181v-1,43,26,62,68,62v45,0,71,-18,71,-62r0,-181r13,0r0,181v0,51,-32,74,-84,74","w":231},"\u0173":{"d":"135,42v-1,17,23,22,37,15v6,14,-7,15,-21,15v-32,0,-36,-40,-15,-57v6,-9,18,-12,16,-29v-16,8,-32,17,-56,17v-86,0,-52,-107,-59,-183r13,0v8,66,-27,173,46,172v23,-1,42,-10,56,-18r0,-154r12,0r1,180v-12,13,-25,25,-30,42","w":200},"\u0150":{"d":"117,-326r5,11r-68,31r-6,-10xm186,-326r5,11r-69,31r-5,-10xm213,-125v0,78,-17,128,-95,128v-78,0,-95,-52,-95,-128v0,-76,19,-130,95,-130v76,0,95,53,95,130xm37,-125v0,68,13,116,81,116v70,0,81,-47,81,-116v0,-67,-14,-119,-81,-118v-67,0,-81,50,-81,118","w":236},"\u01fe":{"d":"213,-125v0,78,-17,128,-95,128v-78,0,-95,-52,-95,-128v0,-76,19,-130,95,-130v76,0,95,53,95,130xm37,-125v0,68,13,116,81,116v70,0,81,-47,81,-116v0,-67,-14,-119,-81,-118v-67,0,-81,50,-81,118xm148,-332r6,11r-69,33r-6,-9","w":236},"\u0119":{"d":"148,-96v16,-77,-86,-105,-107,-35v-3,10,-5,21,-5,35r112,0xm122,42v-2,17,23,22,37,15v6,14,-7,16,-21,15v-17,0,-31,-12,-29,-30v2,-17,17,-30,26,-41v-13,1,-30,3,-46,2v-51,-1,-66,-40,-66,-93v0,-56,19,-92,71,-93v55,-1,68,41,67,98r-125,0v-6,70,45,88,117,73v-1,4,4,13,-2,12v-9,11,-27,25,-29,42","w":182},"\u014b":{"d":"117,-172v-25,0,-43,9,-59,18r0,154r-13,0r0,-180r13,0r0,14v17,-8,35,-16,59,-17v86,-6,54,109,59,186v3,48,-23,62,-54,80r-5,-11v26,-17,49,-28,46,-70v-6,-67,27,-175,-46,-174","w":206},"\u014a":{"d":"39,-252r30,0r117,240r9,0r0,-240r13,0r1,250v2,47,-13,67,-61,64r0,-12v36,2,49,-13,47,-50r-17,0r-117,-240r-9,0r0,240r-13,0r0,-252","w":247},"\u013e":{"d":"111,-174r-12,0r0,-78r12,0r0,78xm34,-263r13,0r0,263r-13,0r0,-263","w":142},"\u013d":{"d":"157,-174r-13,0r0,-78r13,0r0,78xm39,0r0,-252r13,0r0,240r119,0r0,12r-132,0"},"\u010f":{"d":"224,-174r-12,0r0,-78r12,0r0,78xm38,-86v0,42,9,78,48,78v23,0,42,-10,59,-17r0,-143r-44,-4v-50,0,-64,35,-63,86xm101,-183v14,-1,33,2,44,4r0,-84r12,0r0,263r-12,0r0,-13v-17,8,-35,16,-59,16v-49,-1,-61,-40,-61,-90v-1,-58,18,-97,76,-96","w":254},"\u012f":{"d":"32,-252r13,0r0,20r-13,0r0,-20xm45,0v-13,11,-47,50,-12,60v7,0,14,-1,20,-3v5,15,-8,15,-22,15v-17,0,-30,-13,-28,-30v2,-20,17,-31,29,-44r0,-178r13,0r0,180","w":77},"\u01fb":{"d":"125,-325r6,11r-70,34r-5,-10xm94,-257v-12,0,-23,11,-23,23v0,11,11,24,23,23v29,0,27,-46,0,-46xm94,-200v-19,0,-35,-14,-35,-34v0,-19,16,-34,35,-34v19,0,33,15,33,34v0,20,-14,34,-33,34xm37,-49v0,55,71,43,101,26r0,-73v-43,6,-101,-6,-101,47xm32,-177v51,-9,118,-18,118,50r0,103v5,10,14,14,27,15r0,12v-16,-1,-28,-4,-36,-15v-18,9,-43,15,-70,15v-44,0,-63,-60,-35,-89v20,-21,66,-17,102,-22v2,-37,-4,-64,-40,-63v-23,1,-45,3,-65,6","w":186},"\u0151":{"d":"102,-261r6,9r-58,38r-7,-10xm168,-261r7,9r-59,38r-6,-10xm37,-94v0,52,9,86,58,86v49,1,59,-35,58,-85v-1,-49,-13,-78,-58,-79v-47,-1,-58,31,-58,78xm23,-94v-1,-56,17,-90,72,-89v54,1,71,32,71,90v1,58,-13,96,-71,96v-60,0,-71,-39,-72,-97","w":189},"\u0111":{"d":"38,-86v0,42,9,78,48,78v23,0,42,-10,59,-17r0,-143r-44,-4v-50,0,-64,35,-63,86xm101,-183v14,-1,33,2,44,4r0,-45r-63,0r0,-11r63,0r0,-28r12,0r0,28r22,0r0,11r-22,0r0,224r-12,0r0,-13v-17,8,-35,16,-59,16v-49,-1,-61,-40,-61,-90v-1,-58,18,-97,76,-96","w":193},"\u0127":{"d":"108,-172v-24,0,-42,7,-59,15r0,157r-13,0r0,-220r-25,0r0,-12r25,0r0,-31r13,0r0,31r58,0r0,12r-58,0r0,51v17,-7,36,-13,59,-14v85,-5,52,107,59,183r-13,0v-8,-66,27,-173,-46,-172","w":204},"\u0165":{"d":"164,-174r-12,0r0,-78r12,0r0,78xm120,1v-51,11,-79,-8,-79,-61r0,-108r-28,0r0,-12r28,0r0,-59r13,0r0,59r62,0r0,12r-62,0r0,94v-5,49,10,77,64,64","w":195},"\u0326":{"d":"29,28r13,0r-17,68r-10,0","w":61},"\u0167":{"d":"120,1v-51,11,-84,-8,-79,-61r0,-45r-22,0r0,-12r22,0r0,-51r-28,0r0,-12r28,0r0,-59r13,0r0,59r62,0r0,12r-62,0r0,51r61,0r0,12r-61,0v-1,58,-9,113,64,95","w":133},"\u0126":{"d":"199,-132r0,-56r-147,0r0,56r147,0xm7,-199r32,0r0,-53r13,0r0,53r147,0r0,-53r13,0r0,53r35,0r0,11r-35,0r0,188r-13,0r0,-120r-147,0r0,120r-13,0r0,-188r-32,0r0,-11","w":250},"\u0166":{"d":"21,-131r63,0r0,-109r-81,0r0,-12r173,0r0,12r-79,0r0,109r68,0r0,11r-68,0r0,120r-13,0r0,-120r-63,0r0,-11","w":180},"\u0122":{"d":"111,28r13,0r-16,68r-10,0xm116,-9v22,0,45,-5,64,-7r0,-97r-52,0r0,-12r65,0r0,119v-23,5,-50,9,-77,9v-75,1,-93,-54,-93,-128v0,-75,18,-131,93,-130v28,0,55,3,77,9r-1,12v-24,-4,-49,-9,-76,-9v-67,-1,-79,52,-79,118v0,66,12,117,79,116","w":222},"\u013b":{"d":"96,28r13,0r-17,68r-10,0xm39,0r0,-252r13,0r0,240r119,0r0,12r-132,0"},"\u0145":{"d":"124,28r13,0r-17,68r-10,0xm39,-252r30,0r117,240r9,0r0,-240r13,0r0,252r-30,0r-117,-240r-9,0r0,240r-13,0r0,-252","w":247},"\u0156":{"d":"114,28r13,0r-17,68r-10,0xm52,-117v67,2,135,9,135,-63v0,-69,-69,-61,-135,-60r0,123xm126,-252v93,-14,98,137,22,146r57,106r-15,0r-55,-105v-26,2,-56,0,-83,1r0,104r-13,0r0,-252r87,0","w":226},"\u0218":{"d":"97,28r13,0r-17,68r-10,0xm65,-131v-72,-20,-51,-125,32,-125v24,0,48,3,70,6r-2,12v-54,-6,-130,-19,-130,45v0,88,137,27,137,120v0,84,-76,82,-150,70r2,-13v69,12,156,11,131,-77v-9,-31,-58,-29,-90,-38","w":192},"\u0162":{"d":"90,28r13,0r-16,68r-10,0xm3,-252r173,0r0,12r-79,0r0,240r-13,0r0,-240r-81,0r0,-12","w":180},"\u0146":{"d":"103,28r13,0r-16,68r-10,0xm112,-172v-25,0,-43,9,-59,18r0,154r-13,0r0,-180r13,0r0,14v17,-8,35,-16,59,-17v85,-5,52,107,59,183r-13,0v-8,-66,27,-173,-46,-172","w":206},"\u013c":{"d":"41,28r13,0r-17,68r-10,0xm34,-263r13,0r0,263r-13,0r0,-263","w":81},"\u0137":{"d":"87,28r13,0r-16,68r-11,0xm40,0r0,-263r13,0r0,158r31,0r64,-75r15,0r-68,81r68,99r-15,0r-64,-93r-31,0r0,93r-13,0","w":173},"\u0163":{"d":"67,28r13,0r-16,68r-10,0xm120,1v-51,11,-79,-8,-79,-61r0,-108r-28,0r0,-12r28,0r0,-59r13,0r0,59r62,0r0,12r-62,0r0,94v-5,49,10,77,64,64","w":133},"\u0219":{"d":"87,28r13,0r-16,68r-11,0xm23,-135v0,-56,71,-51,120,-43r0,12v-40,-5,-106,-19,-106,30v0,63,113,12,113,84v0,64,-69,59,-124,50r1,-12v44,6,112,19,109,-37v-3,-63,-113,-14,-113,-84","w":173},"\u0157":{"d":"64,28r13,0r-17,68r-10,0xm117,-171v-25,7,-49,18,-68,31r0,140r-13,0r0,-180r13,0r0,28v18,-14,42,-25,68,-32r0,13","w":127},"\u0123":{"d":"86,-213r-13,0r17,-69r10,0xm37,-123v1,31,13,47,45,47v33,0,51,-14,51,-47v0,-32,-16,-49,-49,-49v-30,-1,-47,19,-47,49xm154,27v2,-47,-50,-34,-93,-38v-12,11,-27,18,-27,39v0,36,20,47,57,47v37,0,61,-13,63,-48xm24,-123v0,-49,47,-72,92,-56r54,-1r0,13r-40,0v10,9,16,24,16,44v2,48,-36,64,-82,57v-8,16,-17,44,13,44v44,0,94,-3,90,49v-3,42,-30,59,-76,59v-74,0,-91,-74,-39,-103v-14,-12,-6,-39,3,-52v-18,-9,-31,-24,-31,-54","w":181},"\u0312":{"d":"28,-213r-13,0r17,-69r10,0","w":61},"\u1ef9":{"d":"115,-238v10,-2,15,-9,22,-15v8,15,-9,24,-23,26v-20,-2,-34,-17,-53,-19v-11,2,-17,10,-25,16v-9,-15,11,-24,26,-27v20,2,34,16,53,19xm27,-180r51,168r16,0r51,-168r14,0r-81,263r-14,0r27,-83r-23,0r-54,-180r13,0","w":172},"\u1eb0":{"d":"146,-348r-5,10r-70,-33r6,-11xm158,-322v3,50,-79,56,-95,18v-3,-5,-4,-11,-4,-18r13,0v1,21,15,31,37,31v21,-1,36,-10,37,-31r12,0xm55,-90r107,0r-45,-150r-16,0xm92,-252r34,0r77,252r-13,0r-24,-77r-115,0r-24,77r-13,0","w":217},"\u1ef8":{"d":"126,-310v10,-2,15,-10,22,-15v8,15,-9,24,-23,26v-20,-2,-34,-17,-53,-19v-11,2,-17,10,-25,16v-9,-15,11,-24,26,-27v20,1,34,17,53,19xm104,0r-13,0r0,-108r-80,-144r15,0r72,129r70,-129r16,0r-80,144r0,108","w":194},"\u1ec5":{"d":"118,-274v10,-2,15,-10,22,-15v8,15,-9,24,-23,26v-20,-2,-34,-17,-53,-19v-11,2,-17,10,-25,16v-9,-15,11,-24,26,-27v20,2,34,16,53,19xm87,-253r10,0r44,48r-16,0r-33,-36r-33,36r-16,0xm148,-96v16,-77,-86,-105,-107,-35v-3,10,-5,21,-5,35r112,0xm36,-85v-6,70,45,88,117,73r1,12r-65,3v-51,-1,-66,-40,-66,-93v0,-56,19,-92,71,-93v55,-1,68,41,67,98r-125,0","w":182},"\u1ed7":{"d":"42,-276v31,-44,78,26,105,-13v8,15,-9,24,-23,26v-20,-2,-34,-17,-53,-19v-11,2,-17,10,-25,16xm90,-253r10,0r44,48r-16,0r-33,-36r-33,36r-16,0xm37,-94v0,52,9,86,58,86v49,1,59,-35,58,-85v-1,-49,-13,-78,-58,-79v-47,-1,-58,31,-58,78xm23,-94v-1,-56,17,-90,72,-89v54,1,71,32,71,90v1,58,-13,96,-71,96v-60,0,-71,-39,-72,-97","w":192},"\u1eab":{"d":"42,-276v31,-44,78,26,105,-13v8,15,-9,24,-23,26v-20,-2,-34,-17,-53,-19v-11,2,-17,10,-25,16xm90,-253r10,0r44,48r-16,0r-33,-36r-33,36r-16,0xm37,-49v0,55,71,43,101,26r0,-73v-43,6,-101,-6,-101,47xm32,-177v51,-9,118,-18,118,50r0,103v5,10,14,14,27,15r0,12v-16,-1,-28,-4,-36,-15v-18,9,-43,15,-70,15v-44,0,-63,-60,-35,-89v20,-21,66,-17,102,-22v2,-37,-4,-64,-40,-63v-23,1,-45,3,-65,6","w":192},"\u0136":{"d":"108,28r13,0r-17,68r-10,0xm95,-118r-43,0r0,118r-13,0r0,-252r13,0r0,121r43,0r79,-121r15,0r-83,127r89,125r-16,0","w":214},"\u2080":{"d":"76,-93v0,-28,-4,-46,-28,-46v-23,0,-26,18,-27,46v0,30,4,48,28,48v23,0,27,-19,27,-48xm8,-93v0,-33,8,-59,40,-59v32,0,41,25,41,59v0,34,-8,59,-40,60v-33,0,-41,-26,-41,-60","w":95},"\u2081":{"d":"14,-124v17,-8,24,-25,49,-24r0,112r-13,0r0,-98r-30,20","w":95},"\u2082":{"d":"11,-147v27,-8,71,-9,67,26v-4,35,-34,50,-51,73r53,0r0,12r-70,0r0,-12v17,-25,50,-38,55,-73v4,-25,-36,-18,-53,-14","w":95},"\u2083":{"d":"68,-123v0,-24,-36,-15,-55,-13r-1,-12v29,-4,72,-10,70,25v-1,13,-7,26,-18,28v34,9,26,62,-15,62v-15,0,-26,-2,-39,-4r2,-11v22,5,60,9,60,-18v0,-25,-22,-22,-45,-22r0,-12v23,2,41,-1,41,-23","w":95},"\u2084":{"d":"59,-57r-53,0v4,-38,23,-59,33,-91r13,0r-31,79r38,0r0,-31r13,0r0,31r13,0r0,12r-13,0r0,21r-13,0r0,-21","w":95},"\u2085":{"d":"72,-71v0,-30,-33,-26,-46,-15r-11,-1r3,-61r63,0r0,12r-51,0r-2,37v20,-17,58,-6,58,28v0,38,-38,44,-72,34r1,-13v23,6,57,11,57,-21","w":95},"\u2086":{"d":"73,-72v4,-32,-34,-26,-50,-17v0,24,4,44,26,44v18,0,22,-10,24,-27xm10,-93v0,-51,28,-67,71,-55r-1,11v-29,-5,-61,-4,-56,35v25,-14,63,-7,63,30v0,24,-14,40,-38,39v-30,-2,-39,-24,-39,-60","w":95},"\u2087":{"d":"11,-148r70,0r0,22r-41,93r-13,-3v12,-34,33,-60,40,-100r-56,0r0,-12","w":95},"\u2088":{"d":"73,-122v-1,-13,-9,-17,-25,-17v-16,0,-26,3,-26,17v0,18,13,20,32,20v12,-4,19,-6,19,-20xm21,-65v0,15,12,20,27,20v16,0,27,-4,27,-21v0,-19,-14,-22,-34,-22v-14,4,-19,6,-20,23xm48,-33v-44,10,-55,-55,-19,-62v-35,-13,-21,-63,19,-57v39,-8,52,49,19,57v13,4,22,10,21,28v0,25,-14,35,-40,34","w":95},"\u2089":{"d":"22,-114v-2,27,31,31,51,18v-1,-24,-4,-43,-26,-43v-17,0,-24,9,-25,25xm86,-91v3,48,-26,66,-73,55r1,-12v29,7,63,5,59,-34v-28,13,-65,4,-65,-32v0,-24,16,-38,39,-38v31,0,37,25,39,61","w":95},"\u0315":{"d":"30,-174r-12,0r0,-78r12,0r0,78","w":48},"\u0300":{"d":"129,-229r-6,10r-69,-33r6,-12","w":196},"\u0301":{"d":"123,-264r6,12r-70,33r-5,-10","w":299},"\u0302":{"d":"143,-264r10,0r44,48r-16,0r-33,-36r-34,36r-15,0","w":299},"\u030c":{"d":"99,-264r15,0r34,36r33,-36r16,0r-44,48r-10,0","w":299},"\u0303":{"d":"30,-240v30,-45,78,26,104,-13v10,15,-9,24,-23,26v-20,-2,-34,-17,-53,-19v-11,2,-17,10,-25,16","w":170},"\u0308":{"d":"109,-252r12,0r0,22r-12,0r0,-22xm40,-252r13,0r0,22r-13,0r0,-22","w":299},"\u0304":{"d":"32,-243r97,0r0,12r-97,0r0,-12","w":160},"\u0306":{"d":"130,-260v3,42,-58,61,-86,33v-9,-9,-13,-20,-13,-33r12,0v1,21,14,34,37,34v23,0,37,-12,37,-34r13,0","w":160},"\u030a":{"d":"97,-257v-12,0,-22,10,-22,23v0,12,10,24,22,23v29,0,27,-46,0,-46xm97,-200v-19,0,-35,-14,-35,-34v0,-19,16,-34,35,-34v20,0,33,16,34,34v0,20,-15,33,-34,34","w":299},"\u030b":{"d":"112,-261r7,9r-59,38r-6,-10xm179,-261r6,9r-58,38r-7,-10","w":246},"\u0307":{"d":"32,-252r13,0r0,20r-13,0r0,-20","w":77},"\u0327":{"d":"83,21v24,1,36,3,37,25v2,30,-31,27,-58,25r0,-10v19,-1,46,8,46,-15v0,-19,-20,-14,-37,-15r0,-31r12,0r0,21","w":141},"\u0328":{"d":"74,42v-2,18,21,22,37,15v5,15,-8,15,-22,15v-32,0,-34,-40,-14,-58v7,-6,13,-20,28,-14v-11,13,-26,23,-29,42","w":156}}});
;
/**
 * Coin Slider - Unique jQuery Image Slider
 * @version: 1.0 - (2010/04/04)
 * @requires jQuery v1.2.2 or later 
 * @author Ivan Lazarevic
 * Examples and documentation at: http://workshop.rs/projects/coin-slider/
 
 * Licensed under MIT licence:
 *   http://www.opensource.org/licenses/mit-license.php
**/

(function($) {

	var params 		= new Array;
	var order		= new Array;
	var images		= new Array;
	var links		= new Array;
	var linksTarget = new Array;
	var titles		= new Array;
	var interval	= new Array;
	var imagePos	= new Array;
	var appInterval = new Array;	
	var squarePos	= new Array;	
	var reverse		= new Array;
	
	$.fn.coinslider= $.fn.CoinSlider = function(options){
		
		init = function(el){
				
			order[el.id] 		= new Array();	// order of square appereance
			images[el.id]		= new Array();
			links[el.id]		= new Array();
			linksTarget[el.id]	= new Array();
			titles[el.id]		= new Array();
			imagePos[el.id]		= 0;
			squarePos[el.id]	= 0;
			reverse[el.id]		= 1;						
				
			params[el.id] = $.extend({}, $.fn.coinslider.defaults, options);
						
			// create images, links and titles arrays
			$.each($('#'+el.id+' img'), function(i,item){
				images[el.id][i] 		= $(item).attr('src');
				links[el.id][i] 		= $(item).parent().is('a') ? $(item).parent().attr('href') : '';
				linksTarget[el.id][i] 	= $(item).parent().is('a') ? $(item).parent().attr('target') : '';
				titles[el.id][i] 		= $(item).next().is('span') ? $(item).next().html() : '';
				$(item).hide();
				$(item).next().hide();
			});			
			

			// set panel
			$(el).css({
				'background-image':'url('+images[el.id][0]+')',
				'width': params[el.id].width,
				'height': params[el.id].height,
				'position': 'relative',
				'background-position': 'top left'
			}).wrap("<div class='coin-slider' id='coin-slider-"+el.id+"' />");	
			
				
			// create title bar
			$('#'+el.id).append("<div class='cs-title' id='cs-title-"+el.id+"' style='position: absolute; bottom:0; left: 0; z-index: 1000;'></div>");
						
			$.setFields(el);
			
			if(params[el.id].navigation)
				$.setNavigation(el);
			
			$.transition(el,0);
			$.transitionCall(el);
				
		}
		
		// squares positions
		$.setFields = function(el){
			
			tWidth = sWidth = parseInt(params[el.id].width/params[el.id].spw);
			tHeight = sHeight = parseInt(params[el.id].height/params[el.id].sph);
			
			counter = sLeft = sTop = 0;
			tgapx = gapx = params[el.id].width - params[el.id].spw*sWidth;
			tgapy = gapy = params[el.id].height - params[el.id].sph*sHeight;
			
			for(i=1;i <= params[el.id].sph;i++){
				gapx = tgapx;
				
					if(gapy > 0){
						gapy--;
						sHeight = tHeight+1;
					} else {
						sHeight = tHeight;
					}
				
				for(j=1; j <= params[el.id].spw; j++){	

					if(gapx > 0){
						gapx--;
						sWidth = tWidth+1;
					} else {
						sWidth = tWidth;
					}

					order[el.id][counter] = i+''+j;
					counter++;
					
					if(params[el.id].links)
						$('#'+el.id).append("<a href='"+links[el.id][0]+"' class='cs-"+el.id+"' id='cs-"+el.id+i+j+"' style='width:"+sWidth+"px; height:"+sHeight+"px; float: left; position: absolute;'></a>");
					else
						$('#'+el.id).append("<div class='cs-"+el.id+"' id='cs-"+el.id+i+j+"' style='width:"+sWidth+"px; height:"+sHeight+"px; float: left; position: absolute;'></div>");
								
					// positioning squares
					$("#cs-"+el.id+i+j).css({ 
						'background-position': -sLeft +'px '+(-sTop+'px'),
						'left' : sLeft ,
						'top': sTop
					});
				
					sLeft += sWidth;
				}

				sTop += sHeight;
				sLeft = 0;					
					
			}
			
			
			$('.cs-'+el.id).mouseover(function(){
				$('#cs-navigation-'+el.id).show();
			});
		
			$('.cs-'+el.id).mouseout(function(){
				$('#cs-navigation-'+el.id).hide();
			});	
			
			$('#cs-title-'+el.id).mouseover(function(){
				$('#cs-navigation-'+el.id).show();
			});
		
			$('#cs-title-'+el.id).mouseout(function(){
				$('#cs-navigation-'+el.id).hide();
			});	
			
			if(params[el.id].hoverPause){	
				$('.cs-'+el.id).mouseover(function(){
					params[el.id].pause = true;
				});
			
				$('.cs-'+el.id).mouseout(function(){
					params[el.id].pause = false;
				});	
				
				$('#cs-title-'+el.id).mouseover(function(){
					params[el.id].pause = true;
				});
			
				$('#cs-title-'+el.id).mouseout(function(){
					params[el.id].pause = false;
				});	
			}
					
			
		};
				
		
		$.transitionCall = function(el){
		
			clearInterval(interval[el.id]);	
			delay = params[el.id].delay + params[el.id].spw*params[el.id].sph*params[el.id].sDelay;
			interval[el.id] = setInterval(function() { $.transition(el)  }, delay);
			
		}
		
		// transitions
		$.transition = function(el,direction){
			
			if(params[el.id].pause == true) return;
			
			$.effect(el);
			
			squarePos[el.id] = 0;
			appInterval[el.id] = setInterval(function() { $.appereance(el,order[el.id][squarePos[el.id]])  },params[el.id].sDelay);
					
			$(el).css({ 'background-image': 'url('+images[el.id][imagePos[el.id]]+')' });
			
			if(typeof(direction) == "undefined")
				imagePos[el.id]++;
			else
				if(direction == 'prev')
					imagePos[el.id]--;
				else
					imagePos[el.id] = direction;
		
			if  (imagePos[el.id] == images[el.id].length) {
				imagePos[el.id] = 0;
			}
			
			if (imagePos[el.id] == -1){
				imagePos[el.id] = images[el.id].length-1;
			}
	
			$('.cs-button-'+el.id).removeClass('cs-active');
			$('#cs-button-'+el.id+"-"+(imagePos[el.id]+1)).addClass('cs-active');
			
			if(titles[el.id][imagePos[el.id]]){
				$('#cs-title-'+el.id).css({ 'opacity' : 0 }).animate({ 'opacity' : params[el.id].opacity }, params[el.id].titleSpeed);
				$('#cs-title-'+el.id).html(titles[el.id][imagePos[el.id]]);
			} else {
				$('#cs-title-'+el.id).css('opacity',0);
			}				
				
		};
		
		$.appereance = function(el,sid){

			$('.cs-'+el.id).attr('href',links[el.id][imagePos[el.id]]).attr('target',linksTarget[el.id][imagePos[el.id]]);

			if (squarePos[el.id] == params[el.id].spw*params[el.id].sph) {
				clearInterval(appInterval[el.id]);
				return;
			}

			$('#cs-'+el.id+sid).css({ opacity: 0, 'background-image': 'url('+images[el.id][imagePos[el.id]]+')' });
			$('#cs-'+el.id+sid).animate({ opacity: 1 }, 300);
			squarePos[el.id]++;
			
		};
		
		// navigation
		$.setNavigation = function(el){
			// create prev and next 
			$(el).append("<div id='cs-navigation-"+el.id+"'></div>");
			$('#cs-navigation-'+el.id).hide();
			
			$('#cs-navigation-'+el.id).append("<a href='#' id='cs-prev-"+el.id+"' class='cs-prev'><img src='http://www.studio-kniften.de/sites/all/themes/kniften01/img/pct-prev01.png'></a>");
			$('#cs-navigation-'+el.id).append("<a href='#' id='cs-next-"+el.id+"' class='cs-next'><img src='http://www.studio-kniften.de/sites/all/themes/kniften01/img/pct-next01.png'></a>");
			$('#cs-prev-'+el.id).css({
				'position' 	: 'absolute',
				'top'		: params[el.id].height/2 - 15,
				'left'		: 0,
				'z-index' 	: 1001,
				'line-height': '30px',
				'opacity'	: params[el.id].opacity
			}).click( function(e){
				e.preventDefault();
				$.transition(el,'prev');
				$.transitionCall(el);		
			}).mouseover( function(){ $('#cs-navigation-'+el.id).show() });
	
			$('#cs-next-'+el.id).css({
				'position' 	: 'absolute',
				'top'		: params[el.id].height/2 - 15,
				'right'		: 0,
				'z-index' 	: 1001,
				'line-height': '30px',
				'opacity'	: params[el.id].opacity
			}).click( function(e){
				e.preventDefault();
				$.transition(el);
				$.transitionCall(el);
			}).mouseover( function(){ $('#cs-navigation-'+el.id).show() });
		
			// image buttons
			$("<div id='cs-buttons-"+el.id+"' class='cs-buttons'></div>").appendTo($('#coin-slider-'+el.id));

			
			for(k=1;k<images[el.id].length+1;k++){
				$('#cs-buttons-'+el.id).append("<a href='#' class='cs-button-"+el.id+"' id='cs-button-"+el.id+"-"+k+"'>"+k+"</a>");
			}
			
			$.each($('.cs-button-'+el.id), function(i,item){
				$(item).click( function(e){
					$('.cs-button-'+el.id).removeClass('cs-active');
					$(this).addClass('cs-active');
					e.preventDefault();
					$.transition(el,i);
					$.transitionCall(el);				
				})
			});	
			
			$('#cs-navigation-'+el.id+' a').mouseout(function(){
				$('#cs-navigation-'+el.id).hide();
				params[el.id].pause = false;
			});						

			$("#cs-buttons-"+el.id).css({
				'left'			: '50%',
				'margin-left' 	: -images[el.id].length*15/2-5,
				'position'		: 'relative'
				
			});
			
				
		}




		// effects
		$.effect = function(el){
			
			effA = ['random','swirl','rain','straight'];
			if(params[el.id].effect == '')
				eff = effA[Math.floor(Math.random()*(effA.length))];
			else
				eff = params[el.id].effect;

			order[el.id] = new Array();

			if(eff == 'random'){
				counter = 0;
				  for(i=1;i <= params[el.id].sph;i++){
				  	for(j=1; j <= params[el.id].spw; j++){	
				  		order[el.id][counter] = i+''+j;
						counter++;
				  	}
				  }	
				$.random(order[el.id]);
			}
			
			if(eff == 'rain')	{
				$.rain(el);
			}
			
			if(eff == 'swirl')
				$.swirl(el);
				
			if(eff == 'straight')
				$.straight(el);
				
			reverse[el.id] *= -1;
			if(reverse[el.id] > 0){
				order[el.id].reverse();
			}

		}

			
		// shuffle array function
		$.random = function(arr) {
						
		  var i = arr.length;
		  if ( i == 0 ) return false;
		  while ( --i ) {
		     var j = Math.floor( Math.random() * ( i + 1 ) );
		     var tempi = arr[i];
		     var tempj = arr[j];
		     arr[i] = tempj;
		     arr[j] = tempi;
		   }
		}	
		
		//swirl effect by milos popovic
		$.swirl = function(el){

			var n = params[el.id].sph;
			var m = params[el.id].spw;

			var x = 1;
			var y = 1;
			var going = 0;
			var num = 0;
			var c = 0;
			
			var dowhile = true;
						
			while(dowhile) {
				
				num = (going==0 || going==2) ? m : n;
				
				for (i=1;i<=num;i++){
					
					order[el.id][c] = x+''+y;
					c++;

					if(i!=num){
						switch(going){
							case 0 : y++; break;
							case 1 : x++; break;
							case 2 : y--; break;
							case 3 : x--; break;
						
						}
					}
				}
				
				going = (going+1)%4;

				switch(going){
					case 0 : m--; y++; break;
					case 1 : n--; x++; break;
					case 2 : m--; y--; break;
					case 3 : n--; x--; break;		
				}
				
				check = $.max(n,m) - $.min(n,m);			
				if(m<=check && n<=check)
					dowhile = false;
									
			}
		}

		// rain effect
		$.rain = function(el){
			var n = params[el.id].sph;
			var m = params[el.id].spw;

			var c = 0;
			var to = to2 = from = 1;
			var dowhile = true;


			while(dowhile){
				
				for(i=from;i<=to;i++){
					order[el.id][c] = i+''+parseInt(to2-i+1);
					c++;
				}
				
				to2++;
				
				if(to < n && to2 < m && n<m){
					to++;	
				}
				
				if(to < n && n>=m){
					to++;	
				}
				
				if(to2 > m){
					from++;
				}
				
				if(from > to) dowhile= false;
				
			}			

		}

		// straight effect
		$.straight = function(el){
			counter = 0;
			for(i=1;i <= params[el.id].sph;i++){
				for(j=1; j <= params[el.id].spw; j++){	
					order[el.id][counter] = i+''+j;
					counter++;
				}
				
			}
		}

		$.min = function(n,m){
			if (n>m) return m;
			else return n;
		}
		
		$.max = function(n,m){
			if (n<m) return m;
			else return n;
		}		
	
	this.each (
		function(){ init(this); }
	);
	

	};
	
	
	// default values
	$.fn.coinslider.defaults = {	
		width: 650, // width of slider panel
		height: 370, // height of slider panel
		spw: 7, // squares per width
		sph: 5, // squares per height
		delay: 50000, // delay between images in ms
		sDelay: 100, // delay beetwen squares in ms
		opacity: 0.7, // opacity of title and navigation
		titleSpeed: 500, // speed of title appereance in ms
		effect: 'straight', // random, swirl, rain, straight
		navigation: false, // prev next and buttons
		links : false, // show images as links 
		hoverPause: true // pause on hover		
	};	
	
})(jQuery);
	
;

