/*
 * 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")}})})();




(function($){var opts;$.fn.lightbox=function(options){opts=$.extend({},$.fn.lightbox.defaults,options);$.fn.lightbox.initialize();return this.each(function(){$(this).click(function(){$(this).lightbox.start(this);return false;});});};$.fn.lightbox.initialize=function(){$('#overlay').remove();$('#lightbox').remove();opts.inprogress=false;var outerImage='<div id="outerImageContainer"><div id="imageContainer"><img id="lightboxImage"><div id="hoverNav"><a href="javascript://" title="'+opts.strings.prevLinkTitle+'" id="prevLink"></a><a href="javascript://" id="nextLink" title="'+opts.strings.nextLinkTitle+'"></a></div><div id="loading"><a href="javascript://" id="loadingLink"><img src="'+opts.fileLoadingImage+'"></a></div></div></div>';var imageData='<div id="imageDataContainer" class="clearfix"><div id="imageData"><div id="imageDetails"><span id="caption"></span><span id="numberDisplay"></span></div><div id="bottomNav">'
if(opts.displayHelp)
imageData+='<span id="helpDisplay">'+opts.strings.help+'</span>';imageData+='<a href="javascript://" id="bottomNavClose" title="'+opts.strings.closeTitle+'"><img src="'+opts.fileBottomNavCloseImage+'"></a></div></div></div>';var string;if(opts.navbarOnTop){string='<div id="overlay"></div><div id="lightbox">'+imageData+outerImage+'</div>';$("body").append(string);$("#imageDataContainer").addClass('ontop');}else{string='<div id="overlay"></div><div id="lightbox">'+outerImage+imageData+'</div>';$("body").append(string);}
$("#overlay").click(function(){$.fn.lightbox.end();}).hide();$("#lightbox").click(function(){$.fn.lightbox.end();}).hide();$("#loadingLink").click(function(){$.fn.lightbox.end();return false;});$("#bottomNavClose").click(function(){$.fn.lightbox.end();return false;});$('#outerImageContainer').width(opts.widthCurrent).height(opts.heightCurrent);$('#imageDataContainer').width(opts.widthCurrent);};$.fn.lightbox.getPageSize=function(){var xScroll,yScroll;if(window.innerHeight&&window.scrollMaxY){xScroll=window.innerWidth+window.scrollMaxX;yScroll=window.innerHeight+window.scrollMaxY;}else if(document.body.scrollHeight>document.body.offsetHeight){xScroll=document.body.scrollWidth;yScroll=document.body.scrollHeight;}else{xScroll=document.body.offsetWidth;yScroll=document.body.offsetHeight;}
var windowWidth,windowHeight;if(self.innerHeight){if(document.documentElement.clientWidth){windowWidth=document.documentElement.clientWidth;}else{windowWidth=self.innerWidth;}
windowHeight=self.innerHeight;}else if(document.documentElement&&document.documentElement.clientHeight){windowWidth=document.documentElement.clientWidth;windowHeight=document.documentElement.clientHeight;}else if(document.body){windowWidth=document.body.clientWidth;windowHeight=document.body.clientHeight;}
if(yScroll<windowHeight){pageHeight=windowHeight;}else{pageHeight=yScroll;}
if(xScroll<windowWidth){pageWidth=xScroll;}else{pageWidth=windowWidth;}
var arrayPageSize=new Array(pageWidth,pageHeight,windowWidth,windowHeight);return arrayPageSize;};$.fn.lightbox.getPageScroll=function(){var xScroll,yScroll;if(self.pageYOffset){yScroll=self.pageYOffset;xScroll=self.pageXOffset;}else if(document.documentElement&&document.documentElement.scrollTop){yScroll=document.documentElement.scrollTop;xScroll=document.documentElement.scrollLeft;}else if(document.body){yScroll=document.body.scrollTop;xScroll=document.body.scrollLeft;}
var arrayPageScroll=new Array(xScroll,yScroll);return arrayPageScroll;};$.fn.lightbox.pause=function(ms){var date=new Date();var curDate=null;do{curDate=new Date();}
while(curDate-date<ms);};$.fn.lightbox.start=function(imageLink){$("select, embed, object").hide();var arrayPageSize=$.fn.lightbox.getPageSize();$("#overlay").hide().css({width:'100%',height:arrayPageSize[1]+'px',opacity:opts.overlayOpacity}).fadeIn();opts.imageArray=[];imageNum=0;var anchors=document.getElementsByTagName(imageLink.tagName);if(!imageLink.rel||(imageLink.rel=='')){opts.imageArray.push(new Array(imageLink.href,opts.displayTitle?imageLink.title:''));}else{$("a").each(function(){if(this.href&&(this.rel==imageLink.rel)){opts.imageArray.push(new Array(this.href,opts.displayTitle?this.title:''));}})
for(i=0;i<opts.imageArray.length;i++){for(j=opts.imageArray.length-1;j>i;j--){if(opts.imageArray[i][0]==opts.imageArray[j][0]){opts.imageArray.splice(j,1);}}}
while(opts.imageArray[imageNum][0]!=imageLink.href){imageNum++;}}
var arrayPageScroll=$.fn.lightbox.getPageScroll();var lightboxTop=arrayPageScroll[1]+(arrayPageSize[3]/10);var lightboxLeft=arrayPageScroll[0];$('#lightbox').css({top:lightboxTop+'px',left:lightboxLeft+'px'}).show();if(!opts.slideNavBar)
$('#imageData').hide();$.fn.lightbox.changeImage(imageNum);};$.fn.lightbox.changeImage=function(imageNum){if(opts.inprogress==false){opts.inprogress=true;opts.activeImage=imageNum;$('#loading').show();$('#lightboxImage').hide();$('#hoverNav').hide();$('#prevLink').hide();$('#nextLink').hide();if(opts.slideNavBar){$('#imageDataContainer').hide();$('#imageData').hide();$.fn.doChangeImage();}else{$.fn.doChangeImage();}}};$.fn.doChangeImage=function(){imgPreloader=new Image();imgPreloader.onload=function(){var newWidth=imgPreloader.width;var newHeight=imgPreloader.height;if(opts.fitToScreen){var arrayPageSize=$.fn.lightbox.getPageSize();var ratio;var initialPageWidth=arrayPageSize[2]-2*opts.borderSize;var initialPageHeight=arrayPageSize[3]-200;if(imgPreloader.height>initialPageHeight)
{newWidth=parseInt((initialPageHeight/imgPreloader.height)*imgPreloader.width);newHeight=initialPageHeight;}
else if(imgPreloader.width>initialPageWidth)
{newHeight=parseInt((initialPageWidth/imgPreloader.width)*imgPreloader.height);newWidth=initialPageWidth;}}
$('#lightboxImage').attr('src',opts.imageArray[opts.activeImage][0]).width(newWidth).height(newHeight);$.fn.lightbox.resizeImageContainer(newWidth,newHeight);}
imgPreloader.src=opts.imageArray[opts.activeImage][0];}
$.fn.lightbox.end=function(){$.fn.lightbox.disableKeyboardNav();$('#lightbox').hide();$('#overlay').fadeOut();$('select, object, embed').show();};$.fn.lightbox.preloadNeighborImages=function(){if((opts.imageArray.length-1)>opts.activeImage){preloadNextImage=new Image();preloadNextImage.src=opts.imageArray[opts.activeImage+1][0];}
if(opts.activeImage>0){preloadPrevImage=new Image();preloadPrevImage.src=opts.imageArray[opts.activeImage-1][0];}};$.fn.lightbox.keyboardAction=function(e){if(e==null){var keycode=event.keyCode;var escapeKey=27;}else{var keycode=e.keyCode;var escapeKey=e.DOM_VK_ESCAPE;}
var key=String.fromCharCode(keycode).toLowerCase();if((key=='x')||(key=='o')||(key=='c')||(keycode==escapeKey)){$.fn.lightbox.end();}else if((key=='p')||(keycode==37)){if(opts.activeImage!=0){$.fn.lightbox.disableKeyboardNav();$.fn.lightbox.changeImage(opts.activeImage-1);}}else if((key=='n')||(keycode==39)){if(opts.activeImage!=(opts.imageArray.length-1)){$.fn.lightbox.disableKeyboardNav();$.fn.lightbox.changeImage(opts.activeImage+1);}}};$.fn.lightbox.resizeImageContainer=function(imgWidth,imgHeight){opts.widthCurrent=document.getElementById('outerImageContainer').offsetWidth;opts.heightCurrent=document.getElementById('outerImageContainer').offsetHeight;var widthNew=(imgWidth+(opts.borderSize*2));var heightNew=(imgHeight+(opts.borderSize*2));opts.xScale=(widthNew/opts.widthCurrent)*100;opts.yScale=(heightNew/opts.heightCurrent)*100;wDiff=opts.widthCurrent-widthNew;hDiff=opts.heightCurrent-heightNew;$('#imageDataContainer').animate({width:widthNew},opts.resizeSpeed,'linear');$('#outerImageContainer').animate({width:widthNew},opts.resizeSpeed,'linear',function(){$('#outerImageContainer').animate({height:heightNew},opts.resizeSpeed,'linear',function(){$.fn.lightbox.showImage();});});if((hDiff==0)&&(wDiff==0)){if(jQuery.browser.msie){$.fn.lightbox.pause(250);}else{$.fn.lightbox.pause(100);}}
$('#prevLink').height(imgHeight);$('#nextLink').height(imgHeight);};$.fn.lightbox.showImage=function(){$('#loading').hide();$('#lightboxImage').fadeIn("fast");$.fn.lightbox.updateDetails();$.fn.lightbox.preloadNeighborImages();opts.inprogress=false;};$.fn.lightbox.updateDetails=function(){if(opts.imageArray[opts.activeImage][1]){$('#caption').html(opts.imageArray[opts.activeImage][1]).show();}
if(opts.imageArray.length>1){var nav_html;nav_html=opts.strings.image+(opts.activeImage+1)+opts.strings.of+opts.imageArray.length;if((opts.activeImage)>0){nav_html='<a title="'+opts.strings.prevLinkTitle+'" href="#" id="prevLinkText">'+opts.strings.prevLinkText+"</a>"+nav_html;}
if((opts.activeImage+1)<opts.imageArray.length){nav_html+='<a title="'+opts.strings.nextLinkTitle+'" href="#" id="nextLinkText">'+opts.strings.nextLinkText+"</a>";}
$('#numberDisplay').html(nav_html).show();}
if(opts.slideNavBar){$("#imageData").slideDown(opts.navBarSlideSpeed);}else{$("#imageData").show();}
var arrayPageSize=$.fn.lightbox.getPageSize();$('#overlay').height(arrayPageSize[1]);$.fn.lightbox.updateNav();};$.fn.lightbox.updateNav=function(){$('#hoverNav').show();if(opts.activeImage!=0){$('#prevLink,#prevLinkText').show().click(function(){$.fn.lightbox.changeImage(opts.activeImage-1);return false;});}
if(opts.activeImage!=(opts.imageArray.length-1)){$('#nextLink,#nextLinkText').show().click(function(){$.fn.lightbox.changeImage(opts.activeImage+1);return false;});}
$.fn.lightbox.enableKeyboardNav();};$.fn.lightbox.enableKeyboardNav=function(){document.onkeydown=$.fn.lightbox.keyboardAction;};$.fn.lightbox.disableKeyboardNav=function(){document.onkeydown='';};$.fn.lightbox.defaults={fileLoadingImage:url_base+'css/images/loading.gif',fileBottomNavCloseImage:url_base+'css/images/closelabel.gif',overlayOpacity:0.8,borderSize:10,imageArray:new Array,activeImage:null,inprogress:false,resizeSpeed:350,widthCurrent:250,heightCurrent:250,xScale:1,yScale:1,displayTitle:true,navbarOnTop:false,slideNavBar:false,navBarSlideSpeed:350,displayHelp:false,strings:{help:' \u2190 / P - previous image\u00a0\u00a0\u00a0\u00a0\u2192 / N - next image\u00a0\u00a0\u00a0\u00a0ESC / X - close image gallery',prevLinkTitle:var_prevLinkTitle,nextLinkTitle:var_nextLinkTitle,prevLinkText:var_prevLinkText,nextLinkText:var_nextLinkText,closeTitle:var_closeTitle,image:var_image,of:var_of},fitToScreen:false};})(jQuery);




var arVersion=navigator.appVersion.split("MSIE");var version=parseFloat(arVersion[1]);function openWindow(theURL,winName,features){window.open(theURL,winName,features);}
function IsNumeric(strString){var strValidChars="0123456789";var strChar;var blnResult=true;if(strString.length==0)return false;for(i=0;i<strString.length&&blnResult==true;i++){strChar=strString.charAt(i);if(strValidChars.indexOf(strChar)==-1){blnResult=false;}}
return blnResult;}
function is_integer(value){for(i=0;i<value.length;i++)
{if(value[i]<'0'||value[i]>'9')
{return false;}}
return true;}
function validate_seach(){if($("#cauta").val().length<3){alert('Cautati dupa un cuvant de minim 3 caractere')
return false;}
location.href=url_base+str_replace(" ","-",$("#cauta").val())+'-'+$("#type").val();}
function str_replace(search,replace,subject,count){var i=0,j=0,temp='',repl='',sl=0,fl=0,f=[].concat(search),r=[].concat(replace),s=subject,ra=r instanceof Array,sa=s instanceof Array;s=[].concat(s);if(count){this.window[count]=0;}
for(i=0,sl=s.length;i<sl;i++){if(s[i]===''){continue;}
for(j=0,fl=f.length;j<fl;j++){temp=s[i]+'';repl=ra?(r[j]!==undefined?r[j]:''):r[0];s[i]=(temp).split(f[j]).join(repl);if(count&&s[i]!==temp){this.window[count]+=(temp.length-s[i].length)/f[j].length;}}}
return sa?s:s[0];}
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(3($){$.28.1n({14:3(b,c){5 d=S b=="1o";c=$.1n({},$.D.1G,{T:d?b:15,w:d?15:b,1p:d?$.D.1G.1p:10,U:c&&!c.1q?10:37},c);c.1r=c.1r||3(a){6 a};c.1s=c.1s||c.1H;6 I.K(3(){1I $.D(I,c)})},M:3(a){6 I.V("M",a)},1t:3(a){6 I.16("1t",[a])},1J:3(){6 I.16("1J")},1K:3(a){6 I.16("1K",[a])},1L:3(){6 I.16("1L")}});$.D=3(h,j){5 k={29:38,2a:40,2b:46,2c:9,2d:13,2e:27,2f:39,2g:33,2h:34,2i:8};5 l=$(h).3a("14","3b").N(j.2j);5 m;5 n="";5 o=$.D.2k(j);5 p=0;5 r;5 s={1u:B};5 t=$.D.2l(j,h,1M,s);5 u;$.1N.2m&&$(h.2n).V("3c.14",3(){4(u){u=B;6 B}});l.V(($.1N.2m?"3d":"3e")+".14",3(a){r=a.2o;3f(a.2o){O k.29:a.19();4(t.L()){t.2p()}z{W(0,C)}P;O k.2a:a.19();4(t.L()){t.2q()}z{W(0,C)}P;O k.2g:a.19();4(t.L()){t.2r()}z{W(0,C)}P;O k.2h:a.19();4(t.L()){t.2s()}z{W(0,C)}P;O j.1a&&$.1v(j.Q)==","&&k.2f:O k.2c:O k.2d:4(1M()){a.19();u=C;6 B}P;O k.2e:t.X();P;3g:1O(m);m=1P(W,j.1p);P}}).1Q(3(){p++}).3h(3(){p=0;4(!s.1u){2t()}}).2u(3(){4(p++>1&&!t.L()){W(0,C)}}).V("1t",3(){5 c=(1w.7>1)?1w[1]:15;3 1R(q,a){5 b;4(a&&a.7){17(5 i=0;i<a.7;i++){4(a[i].M.R()==q.R()){b=a[i];P}}}4(S c=="3")c(b);z l.16("M",b&&[b.w,b.J])}$.K(1b(l.E()),3(i,a){1S(a,1R,1R)})}).V("1J",3(){o.1c()}).V("1K",3(){$.1n(j,1w[1]);4("w"2v 1w[1])o.1d()}).V("1L",3(){t.1x();l.1x();$(h.2n).1x(".14")});3 1M(){5 a=t.2w();4(!a)6 B;5 v=a.M;n=v;4(j.1a){5 b=1b(l.E());4(b.7>1){v=b.18(0,b.7-1).2x(j.Q)+j.Q+v}v+=j.Q}Y=v.1y("3i");4(Y[1]!=""&&Y[1]!="1T"&&Y[1]!=1T){4(3j(Y[1])){3k.3l=3m+3n(" ","-",Y[0])+\'-\'+$(\'#3o\').E()+\'-\'+Y[1]+"/"}}z{l.E(v);1e();l.16("M",[a.w,a.J]);6 C}}3 W(a,b){4(r==k.2b){t.X();6}5 c=l.E();4(!b&&c==n)6;n=c;c=1f(c);4(c.7>=j.1U){l.N(j.1V);4(!j.1z)c=c.R();1S(c,2y,1e)}z{1A();t.X()}};3 1b(b){4(!b){6[""]}5 c=b.1y(j.Q);5 d=[];$.K(c,3(i,a){4($.1v(a))d[i]=$.1v(a)});6 d}3 1f(a){4(!j.1a)6 a;5 b=1b(a);6 b[b.7-1]}3 1B(q,a){4(j.1B&&(1f(l.E()).R()==q.R())&&r!=k.2i){l.E(l.E()+a.3p(1f(n).7));$.D.1W(h,n.7,n.7+a.7)}};3 2t(){1O(m);m=1P(1e,3q)};3 1e(){5 c=t.L();t.X();1O(m);1A();4(j.2z){l.1t(3(a){4(!a){4(j.1a){5 b=1b(l.E()).18(0,-1);l.E(b.2x(j.Q)+(b.7?j.Q:""))}z l.E("")}})}4(c)$.D.1W(h,h.J.7,h.J.7)};3 2y(q,a){4(a&&a.7&&p){1A();t.2A(a,q);1B(q,a[0].J);t.1X()}z{1e()}};3 1S(c,d,e){4(!j.1z)c=c.R();5 f=o.2B(c);4(f&&f.7){d(c,f)}z 4((S j.T=="1o")&&(j.T.7>0)){5 g={3r:+1I 3s()};$.K(j.2C,3(a,b){g[a]=S b=="3"?b():b});$.3t({3u:"3v",3w:"14"+h.3x,2D:j.2D,T:j.T,w:$.1n({q:1f(c),3y:j.U},g),3z:3(a){5 b=j.1C&&j.1C(a)||1C(a);o.1g(c,b);d(c,b)}})}z{t.2E();e(c)}};3 1C(a){5 b=[];5 c=a.1y("\\n");17(5 i=0;i<c.7;i++){5 d=$.1v(c[i]);4(d){d=d.1y("|");b[b.7]={w:d,J:d[1],M:j.1D&&j.1D(d,d[1])||d[1]}}}6 b};3 1A(){l.1h(j.1V)}};$.D.1G={2j:"3A",2F:"3B",1V:"3C",1U:1,1p:3D,1z:B,1i:C,1Y:B,1j:10,U:3E,2z:B,2C:{},1Z:C,1H:3(a){6 a[0]},1s:15,1B:B,F:0,1a:B,Q:", ",1r:3(a,b){6 a.2G(1I 3F("(?![^&;]+;)(?!<[^<>]*)("+b.2G(/([\\^\\$\\(\\)\\[\\]\\{\\}\\*\\.\\+\\?\\|\\\\])/2H,"\\\\$1")+")(?![^<>]*>)(?![^&;]+;)","2H"),"<2I>$1</2I>")},1q:C,1E:3G};$.D.2k=3(g){5 h={};5 j=0;3 1i(s,a){4(!g.1z)s=s.R();5 i=s.3H(a);4(i==-1)6 B;6 i==0||g.1Y};3 1g(q,a){4(j>g.1j){1c()}4(!h[q]){j++}h[q]=a}3 1d(){4(!g.w)6 B;5 b={},2J=0;4(!g.T)g.1j=1;b[""]=[];17(5 i=0,2K=g.w.7;i<2K;i++){5 c=g.w[i];c=(S c=="1o")?[c]:c;5 d=g.1s(c,i+1,g.w.7);4(d===B)20;5 e=d.3I(0).R();4(!b[e])b[e]=[];5 f={J:d,w:c,M:g.1D&&g.1D(c)||d};b[e].21(f);4(2J++<g.U){b[""].21(f)}};$.K(b,3(i,a){g.1j++;1g(i,a)})}1P(1d,25);3 1c(){h={};j=0}6{1c:1c,1g:1g,1d:1d,2B:3(q){4(!g.1j||!j)6 15;4(!g.T&&g.1Y){5 a=[];17(5 k 2v h){4(k.7>0){5 c=h[k];$.K(c,3(i,x){4(1i(x.J,q)){a.21(x)}})}}6 a}z 4(h[q]){6 h[q]}z 4(g.1i){17(5 i=q.7-1;i>=g.1U;i--){5 c=h[q.3J(0,i)];4(c){5 a=[];$.K(c,3(i,x){4(1i(x.J,q)){a[a.7]=x}});6 a}}}6 15}}};$.D.2l=3(e,f,g,h){5 j={G:"3K"};5 k,y=-1,w,1F="",22=C,H,A;3 2L(){4(!22)6;H=$("<3L/>").X().N(e.2F).Z("3M","3N").23(2M.2N);A=$("<3O/>").23(H).3P(3(a){4(11(a).2O&&11(a).2O.3Q()==\'2P\'){y=$("24",A).1h(j.G).3R(11(a));$(11(a)).N(j.G)}}).2u(3(a){$(11(a)).N(j.G);g();f.1Q();6 B}).3S(3(){h.1u=C}).3T(3(){h.1u=B});4(e.F>0)H.Z("F",e.F);22=B}3 11(a){5 b=a.11;3U(b&&b.3V!="2P")b=b.3W;4(!b)6[];6 b}3 12(a){k.18(y,y+1).1h(j.G);2Q(a);5 b=k.18(y,y+1).N(j.G);4(e.1q){5 c=0;k.18(0,y).K(3(){c+=I.1k});4((c+b[0].1k-A.1l())>A[0].3X){A.1l(c+b[0].1k-A.3Y())}z 4(c<A.1l()){A.1l(c)}}};3 2Q(a){y+=a;4(y<0){y=k.1m()-1}z 4(y>=k.1m()){y=0}}3 2R(a){6 e.U&&e.U<a?e.U:a}3 2S(){A.2T();5 a=2R(w.7);17(5 i=0;i<a;i++){4(!w[i])20;5 b=e.1H(w[i].w,i+1,a,w[i].J,1F);4(b===B)20;5 c=$("<24/>").3Z(e.1r(b,1F)).N(i%2==0?"41":"42").23(A)[0];$.w(c,"2U",w[i])}k=A.43("24");4(e.1Z){k.18(0,1).N(j.G);y=0}4($.28.2V)A.2V()}6{2A:3(d,q){2L();w=d;1F=q;2S()},2q:3(){12(1)},2p:3(){12(-1)},2r:3(){4(y!=0&&y-8<0){12(-y)}z{12(-8)}},2s:3(){4(y!=k.1m()-1&&y+8>k.1m()){12(k.1m()-1-y)}z{12(8)}},X:3(){H&&H.X();k&&k.1h(j.G);y=-1},L:3(){6 H&&H.44(":L")},45:3(){6 I.L()&&(k.2W("."+j.G)[0]||e.1Z&&k[0])},1X:3(){5 a=$(f).47();H.Z({F:S e.F=="1o"||e.F>0?e.F:$(f).F(),2X:a.2X+f.1k,26:a.26}).1X();4(e.1q){A.1l(0);A.Z({2Y:e.1E,48:\'49\'});4($.1N.4a&&S 2M.2N.4b.2Y==="1T"){5 b=0;k.K(3(){b+=I.1k});5 c=b>e.1E;A.Z(\'4c\',c?e.1E:b);4(!c){k.F(A.F()-2Z(k.Z("30-26"))-2Z(k.Z("30-4d")))}}}},2w:3(){5 a=k&&k.2W("."+j.G).1h(j.G);6 a&&a.7&&$.w(a[0],"2U")},2E:3(){A&&A.2T()},1x:3(){H&&H.4e()}}};$.D.1W=3(a,b,c){4(a.31){5 d=a.31();d.4f(C);d.4g("32",b);d.4h("32",c);d.4i()}z 4(a.35){a.35(b,c)}z{4(a.36){a.36=b;a.4j=c}}a.1Q()}})(4k);',62,269,'|||function|if|var|return|length|||||||||||||||||||||||||data||active|else|list|false|true|Autocompleter|val|width|ACTIVE|element|this|value|each|visible|result|addClass|case|break|multipleSeparator|toLowerCase|typeof|url|max|bind|onChange|hide|selTxt|css||target|moveSelect||autocomplete|null|trigger|for|slice|preventDefault|multiple|trimWords|flush|populate|hideResultsNow|lastWord|add|removeClass|matchSubset|cacheLength|offsetHeight|scrollTop|size|extend|string|delay|scroll|highlight|formatMatch|search|mouseDownOnSelect|trim|arguments|unbind|split|matchCase|stopLoading|autoFill|parse|formatResult|scrollHeight|term|defaults|formatItem|new|flushCache|setOptions|unautocomplete|selectCurrent|browser|clearTimeout|setTimeout|focus|findValueCallback|request|undefined|minChars|loadingClass|Selection|show|matchContains|selectFirst|continue|push|needsInit|appendTo|li||left||fn|UP|DOWN|DEL|TAB|RETURN|ESC|COMMA|PAGEUP|PAGEDOWN|BACKSPACE|inputClass|Cache|Select|opera|form|keyCode|prev|next|pageUp|pageDown|hideResults|click|in|selected|join|receiveData|mustMatch|display|load|extraParams|dataType|emptyList|resultsClass|replace|gi|strong|nullData|ol|init|document|body|nodeName|LI|movePosition|limitNumberOfItems|fillList|empty|ac_data|bgiframe|filter|top|maxHeight|parseInt|padding|createTextRange|character|||setSelectionRange|selectionStart|150||188|attr|off|submit|keypress|keydown|switch|default|blur|_|IsNumeric|location|href|url_base|str_replace|type|substring|200|timestamp|Date|ajax|mode|abort|port|name|limit|success|ac_input|ac_results|ac_loading|400|100|RegExp|180|indexOf|charAt|substr|ac_over|div|position|absolute|ul|mouseover|toUpperCase|index|mousedown|mouseup|while|tagName|parentNode|clientHeight|innerHeight|html||ac_even|ac_odd|find|is|current||offset|overflow|auto|msie|style|height|right|remove|collapse|moveStart|moveEnd|select|selectionEnd|jQuery'.split('|'),0,{}));



/**
 * jQuery.ScrollTo - Easy element scrolling using jQuery.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 5/25/2009
 * @author Ariel Flesler
 * @version 1.4.2
 *
 * http://flesler.blogspot.com/2007/10/jqueryscrollto.html
 */
;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);



jQuery.fn.extend({everyTime:function(interval,label,fn,times){return this.each(function(){jQuery.timer.add(this,interval,label,fn,times);});},oneTime:function(interval,label,fn){return this.each(function(){jQuery.timer.add(this,interval,label,fn,1);});},stopTime:function(label,fn){return this.each(function(){jQuery.timer.remove(this,label,fn);});}});jQuery.extend({timer:{global:[],guid:1,dataKey:"jQuery.timer",regex:/^([0-9]+(?:\.[0-9]*)?)\s*(.*s)?$/,powers:{'ms':1,'cs':10,'ds':100,'s':1000,'das':10000,'hs':100000,'ks':1000000},timeParse:function(value){if(value==undefined||value==null)
return null;var result=this.regex.exec(jQuery.trim(value.toString()));if(result[2]){var num=parseFloat(result[1]);var mult=this.powers[result[2]]||1;return num*mult;}else{return value;}},add:function(element,interval,label,fn,times){var counter=0;if(jQuery.isFunction(label)){if(!times)
times=fn;fn=label;label=interval;}
interval=jQuery.timer.timeParse(interval);if(typeof interval!='number'||isNaN(interval)||interval<0)
return;if(typeof times!='number'||isNaN(times)||times<0)
times=0;times=times||0;var timers=jQuery.data(element,this.dataKey)||jQuery.data(element,this.dataKey,{});if(!timers[label])
timers[label]={};fn.timerID=fn.timerID||this.guid++;var handler=function(){if((++counter>times&&times!==0)||fn.call(element,counter)===false)
jQuery.timer.remove(element,label,fn);};handler.timerID=fn.timerID;if(!timers[label][fn.timerID])
timers[label][fn.timerID]=window.setInterval(handler,interval);this.global.push(element);},remove:function(element,label,fn){var timers=jQuery.data(element,this.dataKey),ret;if(timers){if(!label){for(label in timers)
this.remove(element,label,fn);}else if(timers[label]){if(fn){if(fn.timerID){window.clearInterval(timers[label][fn.timerID]);delete timers[label][fn.timerID];}}else{for(var fn in timers[label]){window.clearInterval(timers[label][fn]);delete timers[label][fn];}}
for(ret in timers[label])break;if(!ret){ret=null;delete timers[label];}}
for(ret in timers)break;if(!ret)
jQuery.removeData(element,this.dataKey);}}}});jQuery(window).bind("unload",function(){jQuery.each(jQuery.timer.global,function(index,item){jQuery.timer.remove(item);});});


;(function(){var $$;$$=jQuery.fn.flash=function(htmlOptions,pluginOptions,replace,update){var block=replace||$$.replace;pluginOptions=$$.copy($$.pluginOptions,pluginOptions);if(!$$.hasFlash(pluginOptions.version)){if(pluginOptions.expressInstall&&$$.hasFlash(6,0,65)){var expressInstallOptions={flashvars:{MMredirectURL:location,MMplayerType:'PlugIn',MMdoctitle:jQuery('title').text()}};}else if(pluginOptions.update){block=update||$$.update;}else{return this;}}
htmlOptions=$$.copy($$.htmlOptions,expressInstallOptions,htmlOptions);return this.each(function(){block.call(this,$$.copy(htmlOptions));});};$$.copy=function(){var options={},flashvars={};for(var i=0;i<arguments.length;i++){var arg=arguments[i];if(arg==undefined)continue;jQuery.extend(options,arg);if(arg.flashvars==undefined)continue;jQuery.extend(flashvars,arg.flashvars);}
options.flashvars=flashvars;return options;};$$.hasFlash=function(){if(/hasFlash\=true/.test(location))return true;if(/hasFlash\=false/.test(location))return false;var pv=$$.hasFlash.playerVersion().match(/\d+/g);var rv=String([arguments[0],arguments[1],arguments[2]]).match(/\d+/g)||String($$.pluginOptions.version).match(/\d+/g);for(var i=0;i<3;i++){pv[i]=parseInt(pv[i]||0);rv[i]=parseInt(rv[i]||0);if(pv[i]<rv[i])return false;if(pv[i]>rv[i])return true;}
return true;};$$.hasFlash.playerVersion=function(){try{try{var axo=new ActiveXObject('ShockwaveFlash.ShockwaveFlash.6');try{axo.AllowScriptAccess='always';}
catch(e){return'6,0,0';}}catch(e){}
return new ActiveXObject('ShockwaveFlash.ShockwaveFlash').GetVariable('$version').replace(/\D+/g,',').match(/^,?(.+),?$/)[1];}catch(e){try{if(navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin){return(navigator.plugins["Shockwave Flash 2.0"]||navigator.plugins["Shockwave Flash"]).description.replace(/\D+/g,",").match(/^,?(.+),?$/)[1];}}catch(e){}}
return'0,0,0';};$$.htmlOptions={height:240,flashvars:{},pluginspage:'http://www.adobe.com/go/getflashplayer',src:'#',type:'application/x-shockwave-flash',width:320};$$.pluginOptions={expressInstall:false,update:true,version:'6.0.65'};$$.replace=function(htmlOptions){this.innerHTML='<div class="alt">'+this.innerHTML+'</div>';jQuery(this).addClass('flash-replaced').prepend($$.transform(htmlOptions));};$$.update=function(htmlOptions){var url=String(location).split('?');url.splice(1,0,'?hasFlash=true&');url=url.join('');var msg='<p>This content requires the Flash Player. <a href="http://www.adobe.com/go/getflashplayer">Download Flash Player</a>. Already have Flash Player? <a href="'+url+'">Click here.</a></p>';this.innerHTML='<span class="alt">'+this.innerHTML+'</span>';jQuery(this).addClass('flash-update').prepend(msg);};function toAttributeString(){var s='';for(var key in this)
if(typeof this[key]!='function')
s+=key+'="'+this[key]+'" ';return s;};function toFlashvarsString(){var s='';for(var key in this)
if(typeof this[key]!='function')
s+=key+'='+encodeURIComponent(this[key])+'&';return s.replace(/&$/,'');};$$.transform=function(htmlOptions){htmlOptions.toString=toAttributeString;if(htmlOptions.flashvars)htmlOptions.flashvars.toString=toFlashvarsString;return'<embed '+String(htmlOptions)+'/>';};if(window.attachEvent){window.attachEvent("onbeforeunload",function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};});}})();




(function($){$.prettyPhoto={version:'2.5.6'};$.fn.prettyPhoto=function(settings){settings=jQuery.extend({animationSpeed:'normal',opacity:0.80,showTitle:true,allowresize:true,default_width:500,default_height:344,counter_separator_label:'/',theme:'light_rounded',hideflash:false,wmode:'opaque',autoplay:true,modal:false,changepicturecallback:function(){},callback:function(){},markup:'<div class="pp_pic_holder"> \
      <div class="pp_top"> \
       <div class="pp_left"></div> \
       <div class="pp_middle"></div> \
       <div class="pp_right"></div> \
      </div> \
      <div class="pp_content_container"> \
       <div class="pp_left"> \
       <div class="pp_right"> \
        <div class="pp_content"> \
         <div class="pp_loaderIcon"></div> \
         <div class="pp_fade"> \
          <a href="#" class="pp_expand" title="Expand the image">Expand</a> \
          <div class="pp_hoverContainer"> \
           <a class="pp_next" href="#">next</a> \
           <a class="pp_previous" href="#">previous</a> \
          </div> \
          <div id="pp_full_res"></div> \
          <div class="pp_details clearfix"> \
           <a class="pp_close" href="#">Close</a> \
           <p class="pp_description"></p> \
           <div class="pp_nav"> \
            <a href="#" class="pp_arrow_previous">Previous</a> \
            <p class="currentTextHolder">0/0</p> \
            <a href="#" class="pp_arrow_next">Next</a> \
           </div> \
          </div> \
         </div> \
        </div> \
       </div> \
       </div> \
      </div> \
      <div class="pp_bottom"> \
       <div class="pp_left"></div> \
       <div class="pp_middle"></div> \
       <div class="pp_right"></div> \
      </div> \
     </div> \
     <div class="pp_overlay"></div> \
     <div class="ppt"></div>',image_markup:'<img id="fullResImage" src="" />',flash_markup:'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="{width}" height="{height}"><param name="wmode" value="{wmode}" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="{path}" /><embed src="{path}" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="{width}" height="{height}" wmode="{wmode}"></embed></object>',quicktime_markup:'<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="{height}" width="{width}"><param name="src" value="{path}"><param name="autoplay" value="{autoplay}"><param name="type" value="video/quicktime"><embed src="{path}" height="{height}" width="{width}" autoplay="{autoplay}" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></embed></object>',iframe_markup:'<iframe src ="{path}" width="{width}" height="{height}" frameborder="no"></iframe>',inline_markup:'<div class="pp_inline clearfix">{content}</div>'},settings);if($.browser.msie&&parseInt($.browser.version)==6){settings.theme="light_square";}
if($('.pp_overlay').size()==0)_buildOverlay();var doresize=true,percentBased=false,correctSizes,$pp_pic_holder,$ppt,$pp_overlay,pp_contentHeight,pp_contentWidth,pp_containerHeight,pp_containerWidth,windowHeight=$(window).height(),windowWidth=$(window).width(),setPosition=0,scrollPos=_getScroll();$(window).scroll(function(){scrollPos=_getScroll();_centerOverlay();_resizeOverlay();});$(window).resize(function(){_centerOverlay();_resizeOverlay();});$(document).keydown(function(e){if($pp_pic_holder.is(':visible'))
switch(e.keyCode){case 37:$.prettyPhoto.changePage('previous');break;case 39:$.prettyPhoto.changePage('next');break;case 27:if(!settings.modal)
$.prettyPhoto.close();break;};});$(this).each(function(){$(this).bind('click',function(){_self=this;theRel=$(this).attr('rel');galleryRegExp=/\[(?:.*)\]/;theGallery=galleryRegExp.exec(theRel);var images=new Array(),titles=new Array(),descriptions=new Array();if(theGallery){$('a[rel*='+theGallery+']').each(function(i){if($(this)[0]===$(_self)[0])setPosition=i;images.push($(this).attr('href'));titles.push($(this).find('img').attr('alt'));descriptions.push($(this).attr('title'));});}else{images=$(this).attr('href');titles=($(this).find('img').attr('alt'))?$(this).find('img').attr('alt'):'';descriptions=($(this).attr('title'))?$(this).attr('title'):'';}
$.prettyPhoto.open(images,titles,descriptions);return false;});});$.prettyPhoto.open=function(gallery_images,gallery_titles,gallery_descriptions){if($.browser.msie&&$.browser.version==6){$('select').css('visibility','hidden');};if(settings.hideflash)$('object,embed').css('visibility','hidden');images=$.makeArray(gallery_images);titles=$.makeArray(gallery_titles);descriptions=$.makeArray(gallery_descriptions);image_set=($(images).size()>0)?true:false;_checkPosition($(images).size());$('.pp_loaderIcon').show();$pp_overlay.show().fadeTo(settings.animationSpeed,settings.opacity);$pp_pic_holder.find('.currentTextHolder').text((setPosition+1)+settings.counter_separator_label+$(images).size());if(descriptions[setPosition]){$pp_pic_holder.find('.pp_description').show().html(unescape(descriptions[setPosition]));}else{$pp_pic_holder.find('.pp_description').hide().text('');};if(titles[setPosition]&&settings.showTitle){hasTitle=true;$ppt.html(unescape(titles[setPosition]));}else{hasTitle=false;};movie_width=(parseFloat(grab_param('width',images[setPosition])))?grab_param('width',images[setPosition]):settings.default_width.toString();movie_height=(parseFloat(grab_param('height',images[setPosition])))?grab_param('height',images[setPosition]):settings.default_height.toString();if(movie_width.indexOf('%')!=-1||movie_height.indexOf('%')!=-1){movie_height=parseFloat(($(window).height()*parseFloat(movie_height)/100)-100);movie_width=parseFloat(($(window).width()*parseFloat(movie_width)/100)-100);percentBased=true;}
$pp_pic_holder.fadeIn(function(){imgPreloader="";switch(_getFileType(images[setPosition])){case'image':imgPreloader=new Image();nextImage=new Image();if(image_set&&setPosition>$(images).size())nextImage.src=images[setPosition+1];prevImage=new Image();if(image_set&&images[setPosition-1])prevImage.src=images[setPosition-1];$pp_pic_holder.find('#pp_full_res')[0].innerHTML=settings.image_markup;$pp_pic_holder.find('#fullResImage').attr('src',images[setPosition]);imgPreloader.onload=function(){correctSizes=_fitToViewport(imgPreloader.width,imgPreloader.height);_showContent();};imgPreloader.onerror=function(){alert('Image cannot be loaded. Make sure the path is correct and image exist.');$.prettyPhoto.close();};imgPreloader.src=images[setPosition];break;case'youtube':correctSizes=_fitToViewport(movie_width,movie_height);movie='http://www.youtube.com/v/'+grab_param('v',images[setPosition]);if(settings.autoplay)movie+="&autoplay=1";toInject=settings.flash_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);break;case'vimeo':correctSizes=_fitToViewport(movie_width,movie_height);movie_id=images[setPosition];movie='http://vimeo.com/moogaloop.swf?clip_id='+movie_id.replace('http://vimeo.com/','');if(settings.autoplay)movie+="&autoplay=1";toInject=settings.flash_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,movie);break;case'quicktime':correctSizes=_fitToViewport(movie_width,movie_height);correctSizes['height']+=15;correctSizes['contentHeight']+=15;correctSizes['containerHeight']+=15;toInject=settings.quicktime_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,images[setPosition]).replace(/{autoplay}/g,settings.autoplay);break;case'flash':correctSizes=_fitToViewport(movie_width,movie_height);flash_vars=images[setPosition];flash_vars=flash_vars.substring(images[setPosition].indexOf('flashvars')+10,images[setPosition].length);filename=images[setPosition];filename=filename.substring(0,filename.indexOf('?'));toInject=settings.flash_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{wmode}/g,settings.wmode).replace(/{path}/g,filename+'?'+flash_vars);break;case'iframe':correctSizes=_fitToViewport(movie_width,movie_height);frame_url=images[setPosition];frame_url=frame_url.substr(0,frame_url.indexOf('iframe')-1);toInject=settings.iframe_markup.replace(/{width}/g,correctSizes['width']).replace(/{height}/g,correctSizes['height']).replace(/{path}/g,frame_url);break;case'inline':myClone=$(images[setPosition]).clone().css({'width':settings.default_width}).wrapInner('<div id="pp_full_res"><div class="pp_inline clearfix"></div></div>').appendTo($('body'));correctSizes=_fitToViewport($(myClone).width(),$(myClone).height());$(myClone).remove();toInject=settings.inline_markup.replace(/{content}/g,$(images[setPosition]).html());break;};if(!imgPreloader){$pp_pic_holder.find('#pp_full_res')[0].innerHTML=toInject;_showContent();};});};$.prettyPhoto.changePage=function(direction){if(direction=='previous'){setPosition--;if(setPosition<0){setPosition=0;return;};}else{if($('.pp_arrow_next').is('.disabled'))return;setPosition++;};if(!doresize)doresize=true;_hideContent(function(){$.prettyPhoto.open(images,titles,descriptions)});$('a.pp_expand,a.pp_contract').fadeOut(settings.animationSpeed);};$.prettyPhoto.close=function(){$pp_pic_holder.find('object,embed').css('visibility','hidden');$('div.pp_pic_holder,div.ppt,.pp_fade').fadeOut(settings.animationSpeed);$pp_overlay.fadeOut(settings.animationSpeed,function(){$('#pp_full_res').html('');$pp_pic_holder.attr('style','').find('div:not(.pp_hoverContainer)').attr('style','');_centerOverlay();if($.browser.msie&&$.browser.version==6){$('select').css('visibility','visible');};if(settings.hideflash)$('object,embed').css('visibility','visible');setPosition=0;settings.callback();});doresize=true;};_showContent=function(){$('.pp_loaderIcon').hide();projectedTop=scrollPos['scrollTop']+((windowHeight/2)-(correctSizes['containerHeight']/2));if(projectedTop<0)projectedTop=0+$ppt.height();$pp_pic_holder.find('.pp_content').animate({'height':correctSizes['contentHeight']},settings.animationSpeed);$pp_pic_holder.animate({'top':projectedTop,'left':(windowWidth/2)-(correctSizes['containerWidth']/2),'width':correctSizes['containerWidth']},settings.animationSpeed,function(){$pp_pic_holder.find('.pp_hoverContainer,#fullResImage').height(correctSizes['height']).width(correctSizes['width']);$pp_pic_holder.find('.pp_fade').fadeIn(settings.animationSpeed);if(image_set&&_getFileType(images[setPosition])=="image"){$pp_pic_holder.find('.pp_hoverContainer').show();}else{$pp_pic_holder.find('.pp_hoverContainer').hide();}
if(settings.showTitle&&hasTitle){$ppt.css({'top':$pp_pic_holder.offset().top-25,'left':$pp_pic_holder.offset().left+20,'display':'none'});$ppt.fadeIn(settings.animationSpeed);};if(correctSizes['resized'])$('a.pp_expand,a.pp_contract').fadeIn(settings.animationSpeed);settings.changepicturecallback();});};function _hideContent(callback){$pp_pic_holder.find('#pp_full_res object,#pp_full_res embed').css('visibility','hidden');$pp_pic_holder.find('.pp_fade').fadeOut(settings.animationSpeed,function(){$('.pp_loaderIcon').show();if(callback)callback();});$ppt.fadeOut(settings.animationSpeed);}
function _checkPosition(setCount){if(setPosition==setCount-1){$pp_pic_holder.find('a.pp_next').css('visibility','hidden');$pp_pic_holder.find('a.pp_arrow_next').addClass('disabled').unbind('click');}else{$pp_pic_holder.find('a.pp_next').css('visibility','visible');$pp_pic_holder.find('a.pp_arrow_next.disabled').removeClass('disabled').bind('click',function(){$.prettyPhoto.changePage('next');return false;});};if(setPosition==0){$pp_pic_holder.find('a.pp_previous').css('visibility','hidden');$pp_pic_holder.find('a.pp_arrow_previous').addClass('disabled').unbind('click');}else{$pp_pic_holder.find('a.pp_previous').css('visibility','visible');$pp_pic_holder.find('a.pp_arrow_previous.disabled').removeClass('disabled').bind('click',function(){$.prettyPhoto.changePage('previous');return false;});};if(setCount>1){$('.pp_nav').show();}else{$('.pp_nav').hide();}};function _fitToViewport(width,height){hasBeenResized=false;_getDimensions(width,height);imageWidth=width;imageHeight=height;if(((pp_containerWidth>windowWidth)||(pp_containerHeight>windowHeight))&&doresize&&settings.allowresize&&!percentBased){hasBeenResized=true;notFitting=true;while(notFitting){if((pp_containerWidth>windowWidth)){imageWidth=(windowWidth-200);imageHeight=(height/width)*imageWidth;}else if((pp_containerHeight>windowHeight)){imageHeight=(windowHeight-200);imageWidth=(width/height)*imageHeight;}else{notFitting=false;};pp_containerHeight=imageHeight;pp_containerWidth=imageWidth;};_getDimensions(imageWidth,imageHeight);};return{width:Math.floor(imageWidth),height:Math.floor(imageHeight),containerHeight:Math.floor(pp_containerHeight),containerWidth:Math.floor(pp_containerWidth)+40,contentHeight:Math.floor(pp_contentHeight),contentWidth:Math.floor(pp_contentWidth),resized:hasBeenResized};};function _getDimensions(width,height){width=parseFloat(width);height=parseFloat(height);$pp_details=$pp_pic_holder.find('.pp_details');$pp_details.width(width);detailsHeight=parseFloat($pp_details.css('marginTop'))+parseFloat($pp_details.css('marginBottom'));$pp_details=$pp_details.clone().appendTo($('body')).css({'position':'absolute','top':-10000});detailsHeight+=$pp_details.height();detailsHeight=(detailsHeight<=34)?36:detailsHeight;if($.browser.msie&&$.browser.version==7)detailsHeight+=8;$pp_details.remove();pp_contentHeight=height+detailsHeight;pp_contentWidth=width;pp_containerHeight=pp_contentHeight+$ppt.height()+$pp_pic_holder.find('.pp_top').height()+$pp_pic_holder.find('.pp_bottom').height();pp_containerWidth=width;}
function _getFileType(itemSrc){if(itemSrc.match(/youtube\.com\/watch/i)){return'youtube';}else if(itemSrc.match(/vimeo\.com/i)){return'vimeo';}else if(itemSrc.indexOf('.mov')!=-1){return'quicktime';}else if(itemSrc.indexOf('.swf')!=-1){return'flash';}else if(itemSrc.indexOf('iframe')!=-1){return'iframe'}else if(itemSrc.substr(0,1)=='#'){return'inline';}else{return'image';};};function _centerOverlay(){if(doresize){titleHeight=$ppt.height();contentHeight=$pp_pic_holder.height();contentwidth=$pp_pic_holder.width();projectedTop=(windowHeight/2)+scrollPos['scrollTop']-((contentHeight+titleHeight)/2);$pp_pic_holder.css({'top':projectedTop,'left':(windowWidth/2)+scrollPos['scrollLeft']-(contentwidth/2)});$ppt.css({'top':projectedTop-titleHeight,'left':(windowWidth/2)+scrollPos['scrollLeft']-(contentwidth/2)+20});};};function _getScroll(){if(self.pageYOffset){return{scrollTop:self.pageYOffset,scrollLeft:self.pageXOffset};}else if(document.documentElement&&document.documentElement.scrollTop){return{scrollTop:document.documentElement.scrollTop,scrollLeft:document.documentElement.scrollLeft};}else if(document.body){return{scrollTop:document.body.scrollTop,scrollLeft:document.body.scrollLeft};};};function _resizeOverlay(){windowHeight=$(window).height();windowWidth=$(window).width();$pp_overlay.css({'height':$(document).height()});};function _buildOverlay(){$('body').append(settings.markup);$pp_pic_holder=$('.pp_pic_holder');$ppt=$('.ppt');$pp_overlay=$('div.pp_overlay');$pp_pic_holder.attr('class','pp_pic_holder '+settings.theme);$pp_overlay.css({'opacity':0,'height':$(document).height()}).bind('click',function(){if(!settings.modal)
$.prettyPhoto.close();});$('a.pp_close').bind('click',function(){$.prettyPhoto.close();return false;});$('a.pp_expand').bind('click',function(){$this=$(this);if($this.hasClass('pp_expand')){$this.removeClass('pp_expand').addClass('pp_contract');doresize=false;}else{$this.removeClass('pp_contract').addClass('pp_expand');doresize=true;};_hideContent(function(){$.prettyPhoto.open(images,titles,descriptions)});$pp_pic_holder.find('.pp_fade').fadeOut(settings.animationSpeed);return false;});$pp_pic_holder.find('.pp_previous, .pp_arrow_previous').bind('click',function(){$.prettyPhoto.changePage('previous');return false;});$pp_pic_holder.find('.pp_next, .pp_arrow_next').bind('click',function(){$.prettyPhoto.changePage('next');return false;});};_centerOverlay();};function grab_param(name,url){name=name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");var regexS="[\\?&]"+name+"=([^&#]*)";var regex=new RegExp(regexS);var results=regex.exec(url);if(results==null)
return"";else
return results[1];}})(jQuery);


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
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("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}})());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}})());


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2008 Microsoft Corporation. All Rights Reserved. Portions © 2008 DynaComware
 * Corp. All Rights Reserved. Portions © 2008 Ascender Corp. All Rights Reserved.
 * 
 * Description:
 * The PhagsPa portions of this font were created by the design teams of Ascender
 * and DynaComware.
 * 
 * 
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/fonts/
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/
 */
Cufon.registerFont({"w":194,"face":{"font-family":"Microsoft PhagsPa","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 2 4 2 4 2 2 3","ascent":"288","descent":"-72","x-height":"4","bbox":"-35 -334 332 85","underline-thickness":"35.1562","underline-position":"0","unicode-range":"U+0021-U+021B"},"glyphs":{" ":{"w":98},"\u00a0":{"w":98},"\t":{"w":98},"!":{"d":"66,-252r-3,181r-24,0r-3,-181r30,0xm51,3v-5,0,-10,-1,-14,-5v-4,-4,-5,-9,-5,-14v0,-5,1,-10,5,-14v4,-4,9,-6,14,-6v5,0,10,2,14,6v4,4,6,9,6,14v0,5,-2,10,-6,14v-4,4,-9,5,-14,5","w":102},"\"":{"d":"57,-252r-5,79r-21,0r-5,-79r31,0xm115,-252r-5,79r-20,0r-6,-79r31,0","w":141},"#":{"d":"205,-181r-4,18r-46,0r-11,53r49,0r-4,19r-49,0r-15,69r-22,0r15,-69r-44,0r-15,69r-22,0r15,-69r-46,0r3,-19r47,0r11,-53r-49,0r4,-18r48,0r15,-71r22,0r-15,71r45,0r15,-71r21,0r-14,71r46,0xm133,-163r-44,0r-12,53r45,0","w":212},"$":{"d":"108,-1r0,38r-18,0r0,-37v-25,0,-45,-5,-61,-15r0,-31v7,6,16,11,28,15v12,4,23,6,33,6r0,-90v-26,-12,-42,-24,-50,-34v-8,-10,-12,-23,-12,-37v0,-17,6,-32,18,-44v12,-12,26,-20,44,-22r0,-32r18,0r0,31v23,1,39,4,48,10r0,30v-12,-9,-28,-15,-48,-16r0,93v24,12,41,23,50,34v9,11,14,23,14,37v0,17,-6,31,-17,42v-11,11,-27,19,-47,22xm90,-146r0,-81v-10,2,-17,6,-23,13v-6,7,-9,14,-9,24v0,10,2,19,7,25v5,6,13,12,25,19xm108,-105r0,79v23,-5,34,-18,34,-37v0,-16,-11,-30,-34,-42"},"%":{"d":"71,-126v-17,0,-31,-6,-41,-17v-10,-11,-16,-27,-16,-46v0,-21,5,-37,16,-49v11,-12,26,-18,45,-18v18,0,31,6,41,17v10,11,15,27,15,47v0,20,-5,36,-16,48v-11,12,-26,18,-44,18xm73,-237v-11,0,-20,5,-26,13v-6,8,-10,20,-10,34v0,14,4,25,10,33v6,8,15,12,26,12v11,0,20,-5,26,-13v6,-8,9,-19,9,-34v0,-14,-3,-25,-9,-33v-6,-8,-15,-12,-26,-12xm240,-252r-162,254r-25,0r161,-254r26,0xm221,4v-17,0,-31,-6,-41,-17v-10,-11,-16,-27,-16,-46v0,-21,6,-38,17,-50v11,-12,26,-18,44,-18v18,0,31,6,41,17v10,11,15,27,15,47v0,20,-5,37,-16,49v-11,12,-26,18,-44,18xm224,-107v-11,0,-21,4,-27,12v-6,8,-9,20,-9,35v0,14,3,24,9,32v6,8,15,12,26,12v11,0,20,-4,26,-12v6,-8,9,-20,9,-34v0,-14,-3,-25,-9,-33v-6,-8,-14,-12,-25,-12","w":294},"&":{"d":"254,4v-7,0,-13,-1,-18,-3v-5,-2,-10,-4,-14,-7v-4,-3,-8,-8,-12,-13v-4,-5,-9,-10,-13,-16v-5,5,-10,10,-16,15v-6,5,-13,8,-21,12v-8,4,-15,7,-24,9v-9,2,-19,3,-29,3v-13,0,-24,-2,-35,-5v-11,-3,-19,-8,-27,-14v-8,-6,-14,-13,-18,-22v-4,-9,-6,-20,-6,-32v0,-18,5,-33,15,-46v10,-13,24,-23,43,-31v-4,-3,-6,-6,-10,-9v-4,-3,-6,-8,-9,-12v-3,-4,-5,-9,-7,-14v-2,-5,-3,-12,-3,-18v0,-9,2,-17,5,-24v3,-7,8,-13,14,-18v6,-5,13,-9,21,-12v8,-3,17,-3,26,-3v9,0,17,0,25,3v8,3,14,6,19,11v5,5,10,10,13,17v3,7,5,14,5,22v0,14,-5,26,-13,35v-8,9,-20,17,-36,24v8,3,15,7,22,12v7,5,13,9,19,15v6,6,10,12,15,18r14,20v9,-13,17,-28,22,-44v5,-16,7,-33,7,-50v0,-4,0,-8,-1,-12v-1,-4,-1,-8,-2,-12r28,0v1,4,2,8,2,11r0,12v0,11,-1,21,-3,32v-2,11,-5,22,-9,32v-4,10,-8,20,-13,29v-5,9,-10,17,-16,25v4,6,8,11,11,15v3,4,8,7,11,10v3,3,6,5,10,6v4,1,8,2,13,2v4,0,7,0,11,-1v4,-1,7,-3,11,-4r0,27v-4,2,-8,3,-13,4v-5,1,-10,1,-14,1xm107,-21v9,0,16,-1,24,-3v8,-2,15,-5,21,-8v6,-3,12,-7,17,-11v5,-4,10,-8,14,-13v-7,-11,-14,-21,-20,-29v-6,-8,-12,-14,-18,-20v-6,-6,-13,-11,-20,-15v-7,-4,-15,-7,-24,-11v-7,3,-14,5,-20,9v-6,4,-11,8,-16,13v-5,5,-8,11,-11,17v-3,6,-4,14,-4,23v0,8,2,15,5,21v3,6,7,11,12,15v5,4,11,7,18,9v7,2,14,3,22,3xm150,-200v0,-6,-1,-11,-3,-15v-2,-4,-5,-8,-8,-11v-3,-3,-7,-4,-11,-5v-4,-1,-8,-2,-12,-2v-11,0,-21,3,-28,9v-7,6,-10,14,-10,25v0,5,1,10,2,14v1,4,3,8,6,12v3,4,5,6,9,9v4,3,8,6,12,8v15,-5,26,-11,33,-18v7,-7,10,-16,10,-26","w":288},"'":{"d":"57,-252r-5,79r-21,0r-5,-79r31,0","w":82},"(":{"d":"105,57r-26,0v-36,-41,-54,-92,-54,-153v0,-61,18,-113,54,-156r26,0v-37,45,-55,96,-55,155v0,59,18,110,55,154","w":108},")":{"d":"30,57r-26,0v37,-44,55,-95,55,-154v0,-59,-18,-110,-55,-155r26,0v37,43,55,95,55,156v0,61,-18,112,-55,153","w":108},"*":{"d":"137,-194r-48,10r33,42r-19,14r-27,-47r-28,47r-20,-14r34,-42r-49,-10r8,-22r46,17r-4,-53r25,0r-5,53r47,-17","w":150},"+":{"d":"206,-93r-71,0r0,71r-23,0r0,-71r-71,0r0,-24r71,0r0,-71r23,0r0,71r71,0r0,24","w":246},",":{"d":"56,-40r-29,86r-20,0r20,-86r29,0","w":78},"-":{"d":"121,-89r-96,0r0,-23r96,0r0,23","w":143},".":{"d":"39,4v-5,0,-10,-2,-14,-6v-4,-4,-5,-9,-5,-14v0,-5,1,-10,5,-14v4,-4,9,-6,14,-6v6,0,10,2,14,6v4,4,6,9,6,14v0,5,-2,10,-6,14v-4,4,-8,6,-14,6","w":78},"\/":{"d":"143,-252r-121,294r-27,0r121,-294r27,0","w":140},"0":{"d":"95,4v-25,0,-45,-11,-59,-32v-14,-21,-21,-52,-21,-93v0,-45,7,-78,22,-101v15,-23,35,-34,63,-34v53,0,79,43,79,129v0,43,-7,76,-22,98v-15,22,-35,33,-62,33xm99,-232v-36,0,-54,37,-54,110v0,68,18,102,53,102v35,0,52,-35,52,-104v0,-72,-17,-108,-51,-108"},"1":{"d":"173,0r-142,0r0,-25r57,0r0,-196r-58,17r0,-27r87,-27r0,233r56,0r0,25"},"2":{"d":"169,0r-152,0r0,-26r73,-73v19,-19,33,-35,41,-47v8,-12,12,-26,12,-40v0,-15,-5,-26,-13,-34v-8,-8,-20,-12,-35,-12v-22,0,-44,10,-65,29r0,-30v20,-15,43,-23,69,-23v22,0,40,6,53,18v13,12,19,28,19,49v0,16,-4,32,-13,47v-9,15,-25,35,-48,58r-58,57r0,1r117,0r0,26"},"3":{"d":"23,-9r0,-31v17,14,36,20,58,20v18,0,32,-4,42,-13v10,-9,16,-21,16,-36v0,-33,-23,-49,-70,-49r-21,0r0,-25r20,0v42,0,62,-15,62,-46v0,-29,-15,-43,-47,-43v-18,0,-34,6,-50,18r0,-28v16,-10,35,-14,57,-14v21,0,38,6,51,17v13,11,19,25,19,43v0,33,-17,55,-51,64r0,1v18,2,33,8,44,19v11,11,16,25,16,41v0,23,-9,40,-25,54v-16,14,-37,21,-64,21v-24,0,-43,-4,-57,-13"},"4":{"d":"182,-67r-33,0r0,67r-28,0r0,-67r-119,0r0,-19r113,-166r34,0r0,162r33,0r0,23xm121,-90r0,-109v0,-8,1,-16,1,-26r-1,0v-2,4,-5,10,-10,19r-77,116r87,0"},"5":{"d":"29,-6r0,-31v17,11,34,17,52,17v18,0,32,-5,43,-15v11,-10,17,-23,17,-40v0,-17,-6,-30,-17,-39v-11,-9,-27,-14,-48,-14v-7,0,-20,1,-39,2r0,-126r122,0r0,26r-95,0r0,74v8,0,14,-1,21,-1v27,0,48,6,63,20v15,14,22,32,22,56v0,24,-8,44,-24,59v-16,15,-37,22,-65,22v-23,0,-41,-3,-52,-10"},"6":{"d":"164,-249r0,27v-13,-7,-27,-10,-41,-10v-22,0,-41,10,-54,30v-13,20,-20,47,-20,80r1,0v12,-24,31,-36,58,-36v22,0,39,8,52,22v13,14,20,32,20,56v0,25,-8,45,-23,61v-15,16,-33,23,-56,23v-25,0,-46,-10,-60,-30v-14,-20,-22,-49,-22,-85v0,-44,10,-80,29,-106v19,-26,43,-39,74,-39v18,0,32,2,42,7xm101,-133v-15,0,-27,5,-36,15v-9,10,-14,22,-14,36v0,17,5,32,14,44v9,12,22,18,37,18v15,0,26,-5,35,-16v9,-11,13,-24,13,-40v0,-18,-4,-32,-13,-42v-9,-10,-21,-15,-36,-15"},"7":{"d":"178,-243r-100,243r-30,0r94,-226r-127,0r0,-26r163,0r0,9"},"8":{"d":"72,-132r0,-1v-30,-14,-45,-34,-45,-61v0,-18,6,-33,20,-45v14,-12,32,-17,54,-17v20,0,35,5,48,16v13,11,19,25,19,42v0,28,-15,50,-46,65r0,1v37,13,55,36,55,68v0,21,-8,38,-23,50v-15,12,-35,18,-62,18v-22,0,-40,-6,-54,-18v-14,-12,-20,-29,-20,-48v0,-32,18,-55,54,-70xm139,-194v0,-12,-4,-21,-11,-28v-7,-7,-17,-10,-30,-10v-12,0,-22,4,-30,11v-8,7,-12,15,-12,26v0,22,14,39,41,50v28,-11,42,-28,42,-49xm95,-118v-32,13,-48,31,-48,55v0,13,5,23,14,31v9,8,22,12,37,12v15,0,27,-4,36,-12v9,-8,13,-18,13,-30v0,-25,-17,-44,-52,-56"},"9":{"d":"30,-4r0,-28v14,8,29,12,45,12v23,0,40,-10,53,-28v13,-18,19,-44,19,-78r0,0v-11,22,-30,32,-57,32v-22,0,-39,-6,-53,-21v-14,-15,-20,-34,-20,-57v0,-25,7,-45,22,-61v15,-16,35,-23,59,-23v25,0,44,9,58,29v14,20,20,48,20,86v0,47,-9,82,-27,107v-18,25,-43,38,-75,38v-17,0,-32,-2,-44,-8xm95,-232v-14,0,-26,6,-35,16v-9,10,-14,24,-14,40v0,18,5,32,14,42v9,10,21,15,37,15v14,0,25,-5,34,-14v9,-9,15,-21,15,-34v0,-19,-6,-35,-15,-47v-9,-12,-21,-18,-36,-18"},":":{"d":"39,-145v-5,0,-10,-2,-14,-6v-4,-4,-5,-9,-5,-14v0,-5,1,-9,5,-13v4,-4,9,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,13v0,5,-2,10,-6,14v-4,4,-8,6,-14,6xm39,4v-5,0,-10,-2,-14,-6v-4,-4,-5,-9,-5,-14v0,-5,1,-10,5,-14v4,-4,9,-6,14,-6v6,0,10,2,14,6v4,4,6,9,6,14v0,5,-2,10,-6,14v-4,4,-8,6,-14,6","w":78},";":{"d":"40,-145v-6,0,-10,-2,-14,-6v-4,-4,-6,-9,-6,-14v0,-5,2,-9,6,-13v4,-4,8,-6,14,-6v5,0,10,2,14,6v4,4,5,8,5,13v0,5,-1,10,-5,14v-4,4,-9,6,-14,6xm56,-40r-29,86r-20,0r20,-86r29,0","w":78},"<":{"d":"199,-22r-151,-76r0,-11r151,-84r0,26r-113,63r0,0r113,55r0,27","w":246},"=":{"d":"206,-131r-165,0r0,-23r165,0r0,23xm206,-56r-165,0r0,-23r165,0r0,23","w":246},">":{"d":"199,-98r-151,76r0,-27r113,-54r0,-1r-113,-63r0,-26r151,84r0,11","w":246},"?":{"d":"59,-70v-1,-3,-2,-7,-3,-12v-1,-5,-1,-9,-1,-14v0,-8,1,-15,4,-21v3,-6,7,-12,11,-17v4,-5,10,-10,15,-15v5,-5,11,-10,15,-15v4,-5,8,-10,11,-15v3,-5,4,-11,4,-18v0,-6,-1,-11,-3,-15v-2,-4,-5,-8,-9,-11v-4,-3,-8,-6,-13,-7v-5,-1,-9,-2,-15,-2v-20,0,-37,8,-52,24r0,-31v18,-11,37,-17,56,-17v9,0,17,1,25,3v8,2,15,6,21,11v6,5,11,10,14,17v3,7,5,15,5,24v0,9,-2,16,-5,23v-3,7,-6,13,-11,19v-5,6,-11,11,-16,16r-15,15v0,0,-8,10,-11,15v-3,5,-5,11,-5,17v0,5,1,11,2,15v1,4,3,8,4,11r-28,0xm75,3v-5,0,-10,-1,-14,-5v-4,-4,-6,-9,-6,-14v0,-6,2,-10,6,-14v4,-4,9,-6,14,-6v5,0,9,2,13,6v4,4,6,8,6,14v0,5,-2,10,-6,14v-4,4,-8,5,-13,5","w":161},"@":{"d":"205,-74r-1,0v-9,28,-26,42,-51,42v-16,0,-28,-6,-38,-18v-10,-12,-15,-28,-15,-48v0,-26,6,-48,20,-66v14,-18,31,-26,53,-26v8,0,16,3,23,7v7,4,11,9,13,16r1,0v0,-3,0,-10,1,-20r22,0v-6,65,-8,97,-8,98v0,24,7,37,21,37v13,0,23,-7,31,-21v8,-14,13,-31,13,-53v0,-32,-11,-59,-31,-79v-20,-20,-48,-31,-84,-31v-35,0,-64,13,-87,37v-23,24,-34,54,-34,91v0,36,11,66,33,88v22,22,50,33,87,33v29,0,53,-5,74,-15r0,22v-20,9,-46,13,-76,13v-43,0,-77,-13,-103,-39v-26,-26,-39,-59,-39,-101v0,-43,14,-78,41,-106v27,-28,62,-43,105,-43v40,0,73,12,99,36v26,24,39,55,39,93v0,28,-6,50,-20,68v-14,18,-31,27,-51,27v-26,0,-38,-14,-38,-42xm173,-169v-15,0,-26,6,-35,20v-9,14,-14,31,-14,52v0,14,4,24,10,32v6,8,14,12,24,12v15,0,26,-7,34,-21v8,-14,13,-34,13,-58v0,-25,-11,-37,-32,-37","w":343},"A":{"d":"228,0r-33,0r-26,-71r-107,0r-25,71r-33,0r97,-252r30,0xm159,-97r-39,-108v-1,-4,-3,-8,-4,-16r-1,0v-1,7,-2,12,-4,16r-39,108r87,0","w":232},"B":{"d":"33,0r0,-252r72,0v22,0,39,5,52,16v13,11,19,25,19,42v0,14,-4,26,-12,37v-8,11,-18,18,-32,22r0,1v17,2,31,8,41,19v10,11,15,26,15,43v0,22,-8,39,-23,52v-15,13,-34,20,-58,20r-74,0xm63,-225r0,81r30,0v16,0,29,-4,38,-12v9,-8,14,-19,14,-33v0,-24,-16,-36,-48,-36r-34,0xm63,-117r0,90r40,0v17,0,30,-4,40,-12v10,-8,14,-20,14,-34v0,-30,-19,-44,-60,-44r-34,0","w":206},"C":{"d":"205,-11v-19,10,-42,15,-70,15v-36,0,-64,-11,-86,-34v-22,-23,-32,-53,-32,-91v0,-40,12,-73,36,-98v24,-25,55,-37,92,-37v24,0,44,3,60,10r0,32v-18,-10,-38,-16,-60,-16v-29,0,-53,10,-71,29v-18,19,-27,46,-27,78v0,31,9,55,26,73v17,18,39,28,66,28v25,0,47,-6,66,-17r0,28","w":222},"D":{"d":"33,0r0,-252r70,0v89,0,133,41,133,123v0,39,-12,70,-37,94v-25,24,-58,35,-99,35r-67,0xm63,-225r0,198r37,0v33,0,59,-8,77,-26v18,-18,28,-43,28,-75v0,-65,-34,-97,-103,-97r-39,0","w":252},"E":{"d":"167,0r-134,0r0,-252r128,0r0,27r-98,0r0,83r91,0r0,27r-91,0r0,88r104,0r0,27","w":182},"F":{"d":"161,-225r-98,0r0,87r91,0r0,26r-91,0r0,112r-30,0r0,-252r128,0r0,27","w":175},"G":{"d":"221,-17v-25,14,-53,21,-84,21v-36,0,-65,-12,-87,-35v-22,-23,-33,-54,-33,-92v0,-39,12,-71,37,-96v25,-25,55,-37,93,-37v27,0,50,4,69,13r0,33v-20,-13,-44,-20,-72,-20v-28,0,-51,11,-69,30v-18,19,-28,44,-28,75v0,32,9,57,26,75v17,18,39,28,68,28v20,0,37,-4,51,-12r0,-71r-55,0r0,-26r84,0r0,114","w":246},"H":{"d":"223,0r-30,0r0,-115r-130,0r0,115r-30,0r0,-252r30,0r0,110r130,0r0,-110r30,0r0,252","w":255},"I":{"d":"87,-252r0,25r-24,0r0,202r24,0r0,25r-79,0r0,-25r25,0r0,-202r-25,0r0,-25r79,0","w":95},"J":{"d":"98,-90v0,30,-6,52,-19,69v-13,17,-30,25,-51,25v-10,0,-18,-1,-24,-4r0,-29v6,5,14,7,24,7v27,0,40,-23,40,-68r0,-162r30,0r0,162","w":128},"K":{"d":"208,0r-41,0r-97,-115v-4,-4,-6,-7,-7,-9r0,0r0,124r-30,0r0,-252r30,0r0,118r0,0v2,-3,4,-5,7,-8r94,-110r37,0r-108,121","w":208},"L":{"d":"164,0r-131,0r0,-252r30,0r0,225r101,0r0,27","w":169},"M":{"d":"290,0r-29,0r0,-169v0,-13,0,-30,2,-49r-1,0v-3,11,-5,19,-7,24r-86,194r-15,0r-86,-192v-2,-6,-4,-14,-7,-26r-1,0v1,10,2,26,2,49r0,169r-29,0r0,-252r39,0r77,176v6,13,10,23,12,30r1,0v5,-14,9,-24,12,-31r79,-175r37,0r0,252","w":323},"N":{"d":"236,0r-36,0r-130,-201v-3,-5,-6,-10,-8,-16r-1,0v1,5,2,17,2,35r0,182r-30,0r0,-252r38,0r127,198v5,8,8,14,10,17r0,0v-1,-7,-1,-21,-1,-38r0,-177r29,0r0,252","w":269},"O":{"d":"135,4v-36,0,-64,-11,-86,-35v-22,-24,-32,-54,-32,-92v0,-41,10,-73,32,-97v22,-24,52,-36,90,-36v35,0,63,12,84,35v21,23,32,54,32,92v0,41,-11,73,-33,97v-22,24,-50,36,-87,36xm137,-230v-26,0,-48,10,-65,29v-17,19,-25,44,-25,75v0,31,9,56,25,75v16,19,37,29,63,29v28,0,49,-9,65,-27v16,-18,24,-44,24,-76v0,-33,-8,-59,-23,-77v-15,-18,-37,-28,-64,-28","w":271},"P":{"d":"63,-95r0,95r-30,0r0,-252r69,0v27,0,48,7,63,20v15,13,22,31,22,55v0,24,-8,44,-24,59v-16,15,-39,23,-67,23r-33,0xm63,-225r0,103r31,0v20,0,35,-5,46,-14v11,-9,16,-22,16,-39v0,-33,-20,-50,-59,-50r-34,0","w":201},"Q":{"d":"133,4v-8,0,-15,-1,-23,-2v-8,-1,-15,-4,-22,-7v-7,-3,-14,-7,-21,-11v-7,-4,-13,-9,-18,-15v-21,-23,-32,-54,-32,-92v0,-41,10,-73,32,-97v22,-24,53,-36,91,-36v34,0,62,12,83,35v21,23,32,54,32,92v0,16,-1,31,-5,45v-4,14,-10,27,-17,38v-7,11,-16,21,-27,29v-11,8,-24,14,-39,17v6,7,12,12,17,17v5,5,11,10,16,13v5,3,11,6,17,8v6,2,12,3,19,3v2,0,4,-1,6,-1v2,0,4,-1,6,-1v2,0,5,0,7,-1v2,-1,4,-1,6,-2r0,29v-2,1,-4,1,-6,1v-2,0,-6,1,-8,1v-2,0,-5,1,-7,1r-6,0v-11,0,-22,-2,-31,-5v-9,-3,-17,-8,-25,-14v-8,-6,-15,-12,-22,-20xm137,-230v-26,0,-48,10,-65,29v-17,19,-25,44,-25,75v0,31,9,56,25,75v16,19,37,29,63,29v28,0,49,-9,65,-27v16,-18,24,-44,24,-76v0,-33,-8,-59,-23,-77v-15,-18,-37,-28,-64,-28","w":271},"R":{"d":"214,0r-35,0r-43,-71v-4,-7,-7,-11,-11,-16v-4,-5,-7,-9,-11,-12v-4,-3,-8,-5,-12,-6v-4,-1,-9,-2,-15,-2r-24,0r0,107r-30,0r0,-252r75,0v11,0,22,1,31,4v9,3,17,7,24,13v7,6,12,13,16,21v4,8,6,18,6,29v0,9,-1,17,-4,24v-3,7,-6,14,-11,20v-5,6,-11,11,-18,15v-7,4,-14,7,-23,9r0,1v4,2,8,4,11,6v3,2,6,6,9,9v3,3,5,7,8,11r9,14xm63,-225r0,91r40,0v7,0,14,-1,20,-3v6,-2,11,-6,16,-10v5,-4,8,-9,11,-15v3,-6,4,-12,4,-20v0,-13,-4,-24,-13,-32v-9,-8,-21,-11,-38,-11r-40,0","w":215},"S":{"d":"21,-10r0,-35v4,4,9,6,15,9v6,3,11,6,17,8v6,2,13,3,19,4v6,1,12,2,17,2v18,0,32,-3,41,-10v9,-7,13,-17,13,-30v0,-7,-1,-12,-4,-17v-3,-5,-8,-10,-13,-14v-5,-4,-12,-8,-19,-12r-23,-12v-9,-4,-16,-9,-24,-14v-8,-5,-14,-9,-20,-15v-6,-6,-11,-11,-14,-18v-3,-7,-4,-16,-4,-25v0,-11,2,-22,7,-30v5,-8,12,-15,20,-21v8,-6,18,-9,28,-12v10,-3,21,-4,32,-4v25,0,43,3,54,9r0,33v-15,-10,-34,-16,-57,-16v-6,0,-13,1,-19,2v-6,1,-12,4,-17,7v-5,3,-10,7,-13,12v-3,5,-4,10,-4,17v0,6,1,12,3,17v2,5,6,9,11,13v5,4,10,7,17,11v7,4,14,8,23,12v9,4,18,9,26,14v8,5,15,11,21,17v6,6,11,12,15,19v4,7,5,16,5,25v0,12,-2,23,-7,32v-5,9,-12,16,-20,21v-8,5,-18,10,-29,12v-11,2,-22,3,-34,3v-4,0,-8,0,-14,-1r-18,-3v0,0,-13,-2,-18,-4v-5,-2,-10,-4,-13,-6","w":191},"T":{"d":"182,-225r-73,0r0,225r-29,0r0,-225r-73,0r0,-27r175,0r0,27","w":188},"U":{"d":"217,-102v0,71,-31,106,-95,106v-61,0,-92,-34,-92,-102r0,-154r29,0r0,152v0,52,22,78,66,78v42,0,63,-25,63,-75r0,-155r29,0r0,150","w":247},"V":{"d":"220,-252r-93,252r-32,0r-92,-252r33,0r70,200v2,6,4,14,5,22r1,0v1,-7,2,-15,5,-23r72,-199r31,0","w":223},"W":{"d":"332,-252r-71,252r-35,0r-52,-184v-2,-8,-4,-17,-4,-26r-1,0v-1,9,-2,17,-4,25r-52,185r-35,0r-73,-252r32,0r54,193v2,8,3,17,4,26r1,0v1,-6,2,-15,5,-26r56,-193r28,0r54,195v2,7,3,14,4,23r1,0v0,-6,1,-14,4,-24r52,-194r32,0","w":336},"X":{"d":"207,0r-36,0r-58,-97v-2,-3,-4,-7,-6,-12r0,0v-1,3,-3,6,-6,12r-60,97r-36,0r84,-127r-78,-125r36,0r52,89v3,6,6,11,9,17r1,0v4,-8,6,-14,9,-18r54,-88r34,0r-79,125","w":212},"Y":{"d":"197,-252r-83,159r0,93r-30,0r0,-92r-81,-160r34,0r56,114v1,1,3,6,6,15r1,0v1,-4,4,-9,7,-15r59,-114r31,0","w":198},"Z":{"d":"198,-245r-148,218r144,0r0,27r-188,0r0,-8r146,-217r-134,0r0,-27r180,0r0,7","w":205},"[":{"d":"100,57r-65,0r0,-309r65,0r0,21r-39,0r0,267r39,0r0,21","w":108},"\\":{"d":"140,42r-26,0r-119,-294r28,0","w":136},"]":{"d":"74,57r-65,0r0,-21r39,0r0,-267r-39,0r0,-21r65,0r0,309","w":108},"^":{"d":"206,-110r-26,0r-58,-108r-1,0r-55,108r-26,0r75,-146r11,0","w":246},"_":{"d":"149,52r-149,0r0,-21r149,0r0,21","w":149},"`":{"d":"83,-214r-23,0r-46,-58r30,0","w":96},"a":{"d":"158,0r-29,0r0,-28r-1,0v-13,22,-31,32,-55,32v-18,0,-32,-5,-42,-14v-10,-9,-15,-22,-15,-38v0,-34,19,-53,59,-59r54,-7v0,-31,-12,-46,-37,-46v-22,0,-42,7,-59,22r0,-29v18,-11,39,-17,62,-17v42,0,63,22,63,67r0,117xm129,-91r-43,6v-13,2,-23,5,-30,10v-7,5,-11,13,-11,25v0,9,4,16,10,22v6,6,15,8,25,8v14,0,26,-5,35,-15v9,-10,14,-23,14,-38r0,-18","w":183},"b":{"d":"59,-26r-1,0r0,26r-29,0r0,-266r29,0r0,118r1,0v14,-24,35,-36,62,-36v23,0,41,8,54,24v13,16,20,38,20,65v0,30,-7,54,-22,72v-15,18,-35,27,-60,27v-24,0,-42,-10,-54,-30xm58,-99r0,26v0,15,5,27,15,37v10,10,21,16,36,16v17,0,31,-7,41,-20v10,-13,15,-32,15,-56v0,-20,-5,-36,-14,-47v-9,-11,-21,-17,-37,-17v-17,0,-31,6,-41,18v-10,12,-15,25,-15,43","w":211},"c":{"d":"152,-8v-14,8,-30,12,-49,12v-26,0,-46,-8,-62,-25v-16,-17,-24,-38,-24,-65v0,-30,8,-53,25,-71v17,-18,40,-27,68,-27v16,0,30,3,42,9r0,29v-13,-9,-28,-14,-43,-14v-18,0,-33,7,-45,20v-12,13,-18,31,-18,52v0,21,6,38,17,50v11,12,26,18,45,18v16,0,30,-6,44,-16r0,28","w":166},"d":{"d":"183,0r-29,0r0,-31r-1,0v-13,23,-34,35,-62,35v-23,0,-40,-8,-54,-24v-14,-16,-20,-38,-20,-66v0,-30,7,-53,22,-71v15,-18,35,-27,60,-27v25,0,43,10,54,29r1,0r0,-111r29,0r0,266xm154,-81r0,-27v0,-15,-4,-27,-14,-37v-10,-10,-22,-15,-37,-15v-18,0,-31,6,-41,19v-10,13,-16,31,-16,54v0,21,5,37,15,49v10,12,23,18,39,18v16,0,29,-5,39,-17v10,-12,15,-26,15,-44","w":211},"e":{"d":"174,-83r-127,0v0,20,6,36,16,47v10,11,24,16,42,16v20,0,39,-7,56,-20r0,27v-16,11,-36,17,-62,17v-25,0,-45,-8,-60,-24v-15,-16,-22,-39,-22,-69v0,-28,8,-51,24,-69v16,-18,35,-26,59,-26v24,0,42,8,55,23v13,15,19,36,19,63r0,15xm144,-107v0,-17,-4,-30,-12,-39v-8,-9,-19,-14,-33,-14v-14,0,-25,5,-34,15v-9,10,-16,22,-18,38r97,0","w":188},"f":{"d":"118,-241v-6,-3,-12,-5,-19,-5v-20,0,-30,13,-30,38r0,28r42,0r0,25r-42,0r0,155r-29,0r0,-155r-31,0r0,-25r31,0r0,-29v0,-19,5,-34,16,-45v11,-11,25,-16,41,-16v9,0,16,1,21,3r0,26","w":112},"g":{"d":"183,-14v0,66,-32,99,-95,99v-22,0,-41,-5,-58,-13r0,-29v20,11,40,17,58,17v44,0,66,-24,66,-71r0,-19r-1,0v-14,23,-34,34,-62,34v-22,0,-40,-8,-54,-24v-14,-16,-20,-37,-20,-64v0,-31,7,-55,22,-73v15,-18,34,-27,60,-27v24,0,42,10,54,29r1,0r0,-25r29,0r0,166xm154,-81r0,-27v0,-14,-5,-27,-15,-37v-10,-10,-22,-15,-36,-15v-18,0,-31,6,-41,19v-10,13,-16,32,-16,55v0,20,5,36,15,48v10,12,22,18,38,18v16,0,30,-6,40,-17v10,-11,15,-26,15,-44","w":211},"h":{"d":"179,0r-29,0r0,-104v0,-38,-14,-56,-42,-56v-14,0,-26,5,-36,16v-10,11,-14,25,-14,42r0,102r-29,0r0,-266r29,0r0,116r1,0v14,-23,33,-34,59,-34v41,0,61,24,61,73r0,111","w":203},"i":{"d":"44,-226v-5,0,-9,-1,-13,-5v-4,-4,-6,-8,-6,-13v0,-5,2,-10,6,-14v4,-4,8,-5,13,-5v5,0,9,1,13,5v4,4,6,9,6,14v0,5,-2,9,-6,13v-4,4,-8,5,-13,5xm58,0r-29,0r0,-180r29,0r0,180","w":87},"j":{"d":"58,-8v0,30,-6,53,-18,69v-12,16,-29,24,-51,24v-8,0,-16,-2,-24,-6r0,-27v9,5,17,8,25,8v26,0,39,-21,39,-63r0,-177r29,0r0,172xm44,-226v-5,0,-9,-1,-13,-5v-4,-4,-6,-8,-6,-13v0,-5,2,-10,6,-14v4,-4,8,-5,13,-5v5,0,9,1,13,5v4,4,6,9,6,14v0,5,-2,9,-6,13v-4,4,-8,5,-13,5","w":87},"k":{"d":"179,0r-41,0r-79,-86r-1,0r0,86r-29,0r0,-266r29,0r0,168r1,0r75,-82r38,0r-83,87","w":178},"l":{"d":"58,0r-29,0r0,-266r29,0r0,266","w":87},"m":{"d":"285,0r-29,0r0,-103v0,-20,-3,-35,-9,-44v-6,-9,-16,-13,-31,-13v-12,0,-23,6,-32,17v-9,11,-13,24,-13,40r0,103r-28,0r0,-107v0,-35,-14,-53,-41,-53v-13,0,-24,5,-32,16v-8,11,-12,24,-12,41r0,103r-29,0r0,-180r29,0r0,28r1,0v13,-22,32,-32,56,-32v12,0,23,3,32,10v9,7,16,16,19,27v13,-25,33,-37,59,-37v40,0,60,24,60,73r0,111","w":310},"n":{"d":"179,0r-29,0r0,-103v0,-38,-14,-57,-42,-57v-14,0,-27,5,-36,16v-9,11,-14,24,-14,41r0,103r-29,0r0,-180r29,0r0,30r1,0v14,-23,33,-34,59,-34v20,0,35,6,45,19v10,13,16,31,16,55r0,110","w":203},"o":{"d":"104,4v-27,0,-47,-8,-63,-25v-16,-17,-24,-39,-24,-67v0,-30,8,-54,25,-71v17,-17,39,-25,67,-25v27,0,47,8,62,25v15,17,23,39,23,68v0,29,-8,52,-24,69v-16,17,-39,26,-66,26xm107,-160v-19,0,-33,6,-44,19v-11,13,-17,30,-17,52v0,21,6,39,17,51v11,12,26,18,44,18v19,0,33,-6,43,-18v10,-12,15,-30,15,-52v0,-22,-5,-40,-15,-52v-10,-12,-24,-18,-43,-18","w":210},"p":{"d":"59,-26r-1,0r0,109r-29,0r0,-263r29,0r0,32r1,0v14,-24,35,-36,62,-36v23,0,41,8,54,24v13,16,20,38,20,65v0,30,-7,54,-22,72v-15,18,-35,27,-60,27v-23,0,-41,-10,-54,-30xm58,-99r0,26v0,15,5,27,15,37v10,10,21,16,36,16v17,0,31,-7,41,-20v10,-13,15,-32,15,-56v0,-20,-5,-36,-14,-47v-9,-11,-21,-17,-37,-17v-17,0,-31,6,-41,18v-10,12,-15,25,-15,43","w":211},"q":{"d":"183,83r-29,0r0,-114r-1,0v-13,23,-33,35,-61,35v-23,0,-41,-8,-55,-24v-14,-16,-20,-38,-20,-66v0,-30,7,-53,22,-71v15,-18,36,-27,61,-27v25,0,42,10,53,29r1,0r0,-25r29,0r0,263xm154,-81r0,-26v0,-15,-5,-28,-15,-38v-10,-10,-21,-15,-36,-15v-17,0,-31,6,-41,19v-10,13,-16,32,-16,55v0,21,5,36,15,48v10,12,23,18,38,18v17,0,30,-5,40,-17v10,-12,15,-26,15,-44","w":211},"r":{"d":"123,-151v-5,-4,-13,-6,-22,-6v-12,0,-23,6,-31,18v-8,12,-12,27,-12,47r0,92r-29,0r0,-180r29,0r0,37r1,0v4,-13,11,-23,19,-30v8,-7,18,-10,28,-10v8,0,13,0,17,2r0,30","w":125},"s":{"d":"18,-7r0,-30v16,12,33,17,52,17v25,0,38,-8,38,-25v0,-5,-1,-10,-3,-13v-2,-3,-5,-5,-9,-8v-4,-3,-8,-5,-13,-7v-7,-3,-7,-4,-16,-7v-8,-3,-15,-6,-21,-9v-6,-3,-11,-7,-15,-11v-4,-4,-7,-9,-9,-14v-2,-5,-3,-11,-3,-18v0,-8,1,-16,5,-23v4,-7,10,-12,16,-16v6,-4,14,-8,22,-10v8,-2,17,-3,26,-3v16,0,29,3,41,8r0,29v-13,-9,-28,-13,-45,-13v-5,0,-11,1,-15,2v-4,1,-8,3,-11,5v-3,2,-5,5,-7,8v-2,3,-3,6,-3,10v0,5,1,9,3,12v2,3,4,7,7,9v3,2,7,4,12,6r16,7v8,3,16,6,22,9v6,3,12,7,16,11v4,4,8,9,10,14v2,5,4,12,4,19v0,9,-2,16,-6,23v-4,7,-9,12,-16,16v-7,4,-14,8,-23,10v-9,2,-18,3,-27,3v-19,0,-34,-4,-48,-11","w":152},"t":{"d":"113,-2v-7,4,-16,6,-27,6v-32,0,-48,-18,-48,-53r0,-106r-30,0r0,-25r30,0r0,-44r29,-9r0,53r46,0r0,25r-46,0r0,101v0,12,2,21,6,26v4,5,12,8,21,8v7,0,14,-2,19,-6r0,24","w":121},"u":{"d":"175,0r-29,0r0,-28r-1,0v-12,22,-30,32,-55,32v-43,0,-65,-25,-65,-76r0,-108r29,0r0,103v0,38,15,57,44,57v14,0,25,-6,34,-16v9,-10,14,-23,14,-40r0,-104r29,0r0,180","w":203},"v":{"d":"171,-180r-72,180r-28,0r-69,-180r32,0r46,131v3,10,5,18,6,25r1,0v1,-9,2,-18,5,-25r48,-131r31,0","w":172},"w":{"d":"256,-180r-54,180r-30,0r-37,-129v-1,-5,-3,-11,-3,-17r-1,0v0,4,-1,10,-3,17r-40,129r-29,0r-55,-180r30,0r38,135v1,4,2,10,2,17r2,0v0,-5,1,-11,3,-17r41,-135r27,0r37,136v1,4,2,10,3,16r1,0v0,-5,1,-10,3,-16r36,-136r29,0","w":260},"x":{"d":"161,-180r-61,91r60,89r-34,0r-35,-58v-2,-4,-5,-8,-8,-14r-1,0v-1,1,-3,6,-8,14r-36,58r-33,0r61,-88r-59,-92r34,0r35,62v4,7,3,7,7,14r1,0r45,-76r32,0","w":165},"y":{"d":"172,-180r-82,209v-15,37,-36,56,-63,56v-8,0,-13,-1,-18,-3r0,-25v6,2,12,3,17,3v15,0,25,-9,32,-26r15,-34r-71,-180r32,0r49,139v1,2,2,6,4,13r1,0v1,-3,1,-7,3,-13r52,-139r29,0","w":174},"z":{"d":"155,-172r-107,147r106,0r0,25r-148,0r0,-9r106,-146r-96,0r0,-25r139,0r0,8","w":162},"{":{"d":"98,57v-36,0,-54,-18,-54,-54r0,-53v0,-24,-10,-36,-28,-37r0,-21v18,-1,28,-14,28,-38r0,-51v0,-36,18,-55,54,-55r0,22v-19,0,-28,12,-28,35r0,52v0,25,-9,39,-27,45r0,1v18,5,27,20,27,45r0,51v0,13,2,21,6,27v4,6,12,9,22,9r0,22","w":108},"|":{"d":"56,85r-26,0r0,-360r26,0r0,360","w":86},"}":{"d":"93,-87v-18,1,-28,13,-28,37r0,53v0,36,-17,54,-53,54r0,-22v10,0,17,-3,21,-9v4,-6,7,-14,7,-27r0,-51v0,-25,9,-40,26,-45r0,-1v-17,-6,-26,-20,-26,-45r0,-52v0,-23,-9,-35,-28,-35r0,-22v36,0,53,19,53,55r0,51v0,24,10,37,28,38r0,21","w":108},"~":{"d":"210,-132v-1,17,-5,31,-14,40v-9,9,-20,15,-35,15v-13,0,-29,-7,-47,-20v-11,-8,-21,-11,-28,-11v-16,0,-25,10,-26,31r-23,0v1,-17,5,-30,14,-40v9,-10,20,-15,35,-15v12,0,26,6,41,16v15,11,27,15,35,15v7,0,13,-2,17,-8v4,-6,7,-14,7,-23r24,0","w":246},"\u00a1":{"d":"51,-145v-5,0,-10,-2,-14,-6v-4,-4,-5,-9,-5,-14v0,-5,1,-9,5,-13v4,-4,9,-6,14,-6v5,0,10,2,14,6v4,4,6,8,6,13v0,5,-2,10,-6,14v-4,4,-9,6,-14,6xm67,71r-31,0r4,-181r23,0","w":102},"\u00a2":{"d":"167,-37v-11,7,-24,11,-39,12r0,34r-21,0r0,-34v-23,-3,-42,-12,-55,-28v-13,-16,-20,-37,-20,-61v0,-26,7,-48,20,-65v13,-17,32,-28,55,-32r0,-37r21,0r0,35v14,0,28,3,39,9r0,31v-12,-8,-25,-13,-39,-14r0,138v14,-1,27,-6,39,-15r0,27xm107,-51r0,-134v-14,4,-25,12,-33,24v-8,12,-12,26,-12,44v0,18,4,32,12,44v8,12,19,19,33,22"},"\u00a3":{"d":"177,0r-158,0r0,-24v26,-8,38,-26,38,-55r0,-33r-35,0r0,-24r35,0r0,-45v0,-22,6,-40,19,-54v13,-14,30,-21,50,-21v14,0,26,2,37,7r0,27v-12,-7,-24,-10,-37,-10v-27,0,-40,18,-40,54r0,42r52,0r0,24r-52,0r0,28v0,28,-11,48,-34,59r125,0r0,25"},"\u00a4":{"d":"182,-62r-16,17r-24,-25v-12,9,-26,14,-42,14v-16,0,-30,-5,-42,-14r-24,25r-16,-17r24,-24v-9,-13,-14,-26,-14,-41v0,-15,5,-29,14,-42r-24,-24r16,-17r24,24v13,-9,27,-13,42,-13v15,0,29,4,42,13r24,-24r16,17r-24,24v9,13,14,27,14,42v0,14,-5,27,-14,41xm100,-176v-14,0,-25,5,-34,14v-9,9,-14,21,-14,34v0,13,5,25,14,34v9,9,21,15,34,15v13,0,24,-6,34,-15v10,-9,15,-21,15,-34v0,-13,-5,-25,-15,-34v-10,-9,-21,-14,-34,-14","w":200},"\u00a5":{"d":"183,-252r-62,115r50,0r0,25r-59,0r0,36r59,0r0,24r-59,0r0,52r-29,0r0,-52r-60,0r0,-24r60,0r0,-36r-60,0r0,-25r51,0r-62,-115r34,0r44,90v3,7,6,14,8,20r1,0v2,-5,4,-12,8,-21r45,-89r31,0"},"\u00a6":{"d":"56,-126r-26,0r0,-149r26,0r0,149xm56,85r-26,0r0,-150r26,0r0,150","w":86},"\u00a7":{"d":"116,-73v11,9,15,20,15,33v0,15,-5,27,-17,37v-12,10,-27,15,-45,15v-15,0,-29,-3,-42,-10r0,-28v15,9,30,13,44,13v10,0,18,-2,23,-7v5,-5,8,-10,8,-17v0,-6,-2,-12,-6,-16v-4,-4,-15,-11,-32,-20v-27,-14,-41,-33,-41,-56v0,-19,9,-34,26,-43v-12,-10,-19,-23,-19,-39v0,-15,6,-27,17,-37v11,-10,25,-14,43,-14v15,0,28,2,38,7r0,28v-12,-7,-25,-11,-39,-11v-20,0,-29,9,-29,26v0,6,2,12,7,17v5,5,17,13,36,22v26,13,39,29,39,51v0,20,-9,37,-26,49xm70,-159v-12,6,-18,15,-18,28v0,8,3,16,10,22v7,6,18,14,35,21v10,-8,15,-18,15,-30v0,-8,-3,-16,-9,-22v-6,-6,-17,-12,-33,-19","w":161},"\u00a8":{"d":"107,-214v-5,0,-9,-2,-12,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,12,5v3,3,5,7,5,12v0,5,-1,10,-4,13v-3,3,-8,5,-13,5xm40,-214v-5,0,-10,-2,-13,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,13,5v4,3,5,7,5,12v0,5,-2,10,-5,13v-3,3,-7,5,-12,5","w":149},"\u00a9":{"d":"160,6v-36,0,-67,-13,-93,-39v-26,-26,-39,-57,-39,-93v0,-36,13,-67,39,-93v26,-26,57,-39,93,-39v36,0,67,13,93,39v26,26,39,57,39,93v0,36,-13,67,-39,93v-26,26,-57,39,-93,39xm160,-242v-32,0,-59,11,-82,34v-23,23,-34,50,-34,82v0,32,11,59,34,82v23,23,50,34,82,34v32,0,59,-11,82,-34v23,-23,35,-50,35,-82v0,-32,-12,-59,-35,-82v-23,-23,-50,-34,-82,-34xm213,-47v-13,8,-29,12,-47,12v-24,0,-45,-8,-62,-25v-17,-17,-24,-37,-24,-62v0,-29,8,-52,25,-69v17,-17,39,-26,66,-26v15,0,30,4,42,10r0,26v-11,-8,-26,-13,-45,-13v-18,0,-33,7,-45,19v-12,12,-18,29,-18,50v0,20,6,38,18,50v12,12,27,18,46,18v17,0,32,-5,44,-14r0,24","w":320},"\u00aa":{"d":"121,-126r-23,0r0,-18r0,0v-9,14,-23,21,-41,21v-13,0,-23,-3,-31,-10v-8,-7,-12,-16,-12,-27v0,-24,15,-37,44,-41r40,-6v0,-20,-8,-29,-26,-29v-16,0,-31,5,-45,15r0,-23v13,-8,29,-12,47,-12v15,0,26,5,34,13v8,8,13,20,13,35r0,82xm98,-189r-31,4v-20,3,-30,11,-30,24v0,6,2,11,7,15v5,4,10,5,18,5v10,0,18,-4,25,-11v7,-7,11,-15,11,-25r0,-12","w":141},"\u00ab":{"d":"166,-35r-29,0r-53,-59r53,-61r30,0r-54,61xm98,-35r-29,0r-53,-59r53,-61r29,0r-53,61","w":182},"\u00ac":{"d":"206,-45r-23,0r0,-75r-142,0r0,-24r165,0r0,99","w":246},"\u00ad":{"d":"121,-89r-96,0r0,-23r96,0r0,23","w":143},"\u00ae":{"d":"160,6v-36,0,-67,-13,-93,-39v-26,-26,-39,-57,-39,-93v0,-36,13,-67,39,-93v26,-26,57,-39,93,-39v36,0,67,13,93,39v26,26,39,57,39,93v0,36,-13,67,-39,93v-26,26,-57,39,-93,39xm160,-242v-32,0,-59,11,-82,34v-23,23,-34,50,-34,82v0,32,11,59,34,82v23,23,50,34,82,34v32,0,59,-11,82,-34v23,-23,35,-50,35,-82v0,-32,-12,-59,-35,-82v-23,-23,-50,-34,-82,-34xm224,-44r-28,0r-18,-40v-9,-20,-19,-30,-30,-30r-16,0r0,70r-23,0r0,-167r47,0v20,0,34,4,45,12v11,8,16,19,16,33v0,11,-4,22,-11,30v-7,8,-18,13,-31,16r0,1v9,2,18,12,27,31xm132,-191r0,57r25,0v23,0,35,-10,35,-29v0,-10,-3,-18,-9,-22v-6,-4,-17,-6,-30,-6r-21,0","w":320},"\u00af":{"d":"149,-245r-149,0r0,-21r149,0r0,21","w":149},"\u00b0":{"d":"68,-158v-13,0,-26,-4,-35,-14v-9,-10,-14,-21,-14,-35v0,-13,5,-25,14,-34v9,-9,21,-14,34,-14v14,0,25,5,35,14v10,9,14,21,14,34v0,14,-5,25,-14,35v-9,10,-21,14,-34,14xm68,-234v-8,0,-15,3,-20,8v-5,5,-8,11,-8,19v0,8,3,14,8,20v5,6,11,9,19,9v8,0,14,-3,20,-9v6,-6,8,-12,8,-20v0,-8,-3,-14,-8,-19v-5,-5,-11,-8,-19,-8","w":135},"\u00b1":{"d":"206,-115r-71,0r0,71r-23,0r0,-71r-71,0r0,-23r71,0r0,-71r23,0r0,71r71,0r0,23xm206,0r-165,0r0,-23r165,0r0,23","w":246},"\u00b2":{"d":"116,-155r-98,0r0,-20r42,-42v12,-12,21,-21,24,-27v3,-6,5,-14,5,-20v0,-7,-3,-12,-7,-16v-4,-4,-11,-7,-18,-7v-14,0,-27,6,-38,18r0,-26v10,-9,24,-13,42,-13v14,0,25,3,33,11v8,8,12,18,12,31v0,18,-12,38,-36,61r-29,27r0,1r68,0r0,22","w":131},"\u00b3":{"d":"23,-161r0,-25v12,9,25,13,38,13v9,0,17,-2,22,-6v5,-4,8,-10,8,-18v0,-17,-12,-25,-38,-25r-15,0r0,-21r14,0v23,0,34,-7,34,-23v0,-14,-8,-21,-25,-21v-11,0,-22,4,-33,12r0,-24v10,-6,23,-9,38,-9v13,0,24,3,32,10v8,7,11,16,11,27v0,18,-8,31,-25,37r0,0v21,5,31,17,31,36v0,14,-5,24,-15,33v-10,9,-23,13,-40,13v-16,0,-28,-3,-37,-9","w":131},"\u00b4":{"d":"92,-272r-46,58r-22,0r39,-58r29,0","w":101},"\u00b5":{"d":"184,0r-30,0v-3,-8,-4,-19,-4,-30r-1,0v-10,22,-26,34,-49,34v-20,0,-33,-8,-41,-22r-1,0r0,88r-29,0r0,-250r29,0r0,110v0,15,4,27,12,36v8,9,19,13,32,13v14,0,25,-5,34,-15v9,-10,13,-24,13,-41r0,-103r30,0r0,133v0,22,1,38,5,47","w":207},"\u00b6":{"d":"147,-234r-23,0r0,234r-19,0r0,-234r-27,0r0,234r-19,0r0,-159v-13,0,-24,-4,-32,-13v-8,-9,-12,-21,-12,-34v0,-14,4,-24,13,-33v9,-9,19,-13,32,-13r87,0r0,18","w":164},"\u00b7":{"d":"39,-90v-5,0,-10,-1,-14,-5v-4,-4,-5,-9,-5,-14v0,-6,1,-10,5,-14v4,-4,9,-6,14,-6v6,0,10,2,14,6v4,4,6,8,6,14v0,5,-2,10,-6,14v-4,4,-8,5,-14,5","w":78},"\u00b8":{"d":"69,45v0,21,-17,31,-49,31r-11,0r0,-16v5,1,9,1,12,1v17,0,25,-5,25,-16v0,-9,-8,-14,-23,-14v-1,0,-3,1,-7,1r0,-32r19,0r0,18v10,0,19,2,25,7v6,5,9,12,9,20","w":73},"\u00b9":{"d":"117,-155r-88,0r0,-20r32,0r0,-104r-34,9r0,-22r57,-17r0,134r33,0r0,20","w":131},"\u00ba":{"d":"77,-122v-20,0,-36,-6,-47,-18v-11,-12,-16,-28,-16,-48v0,-21,6,-38,18,-50v12,-12,27,-18,47,-18v19,0,35,6,46,18v11,12,16,27,16,47v0,21,-5,38,-17,50v-12,12,-27,19,-47,19xm78,-236v-12,0,-23,4,-30,12v-7,8,-11,20,-11,35v0,15,4,26,11,34v7,8,17,13,30,13v12,0,22,-5,29,-13v7,-8,11,-20,11,-34v0,-15,-4,-27,-11,-35v-7,-8,-17,-12,-29,-12","w":155},"\u00bb":{"d":"167,-95r-53,60r-29,0r53,-60r-53,-60r29,0xm98,-95r-52,60r-30,0r54,-60r-54,-60r30,0","w":182},"\u00bc":{"d":"112,-103r-88,0r0,-19r32,0r0,-105r-34,10r0,-22r57,-17r0,134r33,0r0,19xm245,-252r-151,252r-25,0r151,-252r25,0xm299,-36r-20,0r0,36r-23,0r0,-36r-69,0r0,-16r65,-97r27,0r0,94r20,0r0,19xm257,-127r-1,0v-1,4,-4,8,-7,13r-38,59r45,0r0,-57v0,-4,1,-8,1,-15","w":326},"\u00bd":{"d":"112,-103r-88,0r0,-19r32,0r0,-105r-34,10r0,-22r57,-17r0,134r33,0r0,19xm245,-252r-151,252r-25,0r151,-252r25,0xm307,0r-97,0r0,-20r42,-42v12,-12,20,-21,23,-27v3,-6,5,-13,5,-19v0,-7,-2,-13,-6,-17v-4,-4,-11,-6,-18,-6v-14,0,-27,5,-38,17r0,-26v10,-9,23,-13,41,-13v14,0,25,3,33,11v8,8,12,18,12,31v0,18,-12,38,-36,61r-29,28r0,0r68,0r0,22","w":335},"\u00be":{"d":"23,-108r0,-25v12,9,25,13,38,13v9,0,17,-2,22,-6v5,-4,8,-10,8,-18v0,-17,-12,-25,-38,-25r-15,0r0,-21r14,0v23,0,34,-7,34,-23v0,-14,-8,-21,-25,-21v-11,0,-22,4,-33,12r0,-25v10,-6,23,-9,38,-9v13,0,24,4,32,11v8,7,11,16,11,27v0,18,-8,30,-25,36r0,1v21,5,31,16,31,35v0,14,-5,25,-15,34v-10,9,-23,13,-40,13v-16,0,-28,-3,-37,-9xm257,-252r-150,252r-26,0r151,-252r25,0xm310,-36r-19,0r0,36r-23,0r0,-36r-70,0r0,-16r65,-97r28,0r0,94r19,0r0,19xm268,-127r0,0v-1,4,-4,8,-7,13r-38,59r45,0r0,-57r0,-15","w":342},"\u00bf":{"d":"110,-111v1,3,2,7,3,12v1,5,1,10,1,15v0,8,-2,14,-5,20v-3,6,-7,12,-11,17v-4,5,-9,10,-14,15v-5,5,-11,10,-15,15v-4,5,-8,11,-11,16v-3,5,-5,11,-5,18v0,6,2,10,4,14v2,4,5,8,9,11v4,3,8,6,13,7v5,1,9,2,15,2v20,0,37,-7,52,-23r0,31v-18,11,-37,17,-56,17v-9,0,-17,-2,-25,-4v-8,-2,-15,-5,-21,-10v-6,-5,-11,-11,-14,-18v-3,-7,-5,-15,-5,-24v0,-9,2,-16,5,-23v3,-7,6,-13,11,-19v5,-6,10,-11,15,-16v5,-5,10,-9,15,-14v5,-5,9,-11,12,-16v3,-5,4,-11,4,-17v0,-5,-1,-11,-2,-15v-1,-4,-2,-8,-3,-11r28,0xm94,-184v5,0,10,2,14,6v4,4,6,7,6,13v0,5,-2,10,-6,14v-4,4,-9,6,-14,6v-5,0,-10,-2,-14,-6v-4,-4,-5,-9,-5,-14v0,-6,1,-9,5,-13v4,-4,9,-6,14,-6","w":161},"\u00c0":{"d":"228,0r-33,0r-26,-71r-107,0r-25,71r-33,0r97,-252r30,0xm159,-97r-39,-108v-1,-4,-3,-8,-4,-16r-1,0v-1,7,-2,12,-4,16r-39,108r87,0xm133,-275r-23,0r-46,-58r30,0","w":232},"\u00c1":{"d":"228,0r-33,0r-26,-71r-107,0r-25,71r-33,0r97,-252r30,0xm159,-97r-39,-108v-1,-4,-3,-8,-4,-16r-1,0v-1,7,-2,12,-4,16r-39,108r87,0xm152,-333r-46,58r-22,0r39,-58r29,0","w":232},"\u00c2":{"d":"163,-275r-21,0r-29,-41r-29,41r-20,0r38,-58r23,0xm228,0r-33,0r-26,-71r-107,0r-25,71r-33,0r97,-252r30,0xm159,-97r-39,-108v-1,-4,-3,-8,-4,-16r-1,0v-1,7,-2,12,-4,16r-39,108r87,0","w":232},"\u00c3":{"d":"172,-317v0,12,-3,22,-9,30v-6,8,-13,12,-23,12v-8,0,-17,-3,-28,-9v-9,-5,-16,-8,-21,-8v-10,0,-15,7,-15,20r-17,0v0,-13,3,-22,9,-30v6,-8,13,-11,23,-11v8,0,16,3,26,9v9,5,17,7,23,7v10,0,15,-6,15,-20r17,0xm228,0r-33,0r-26,-71r-107,0r-25,71r-33,0r97,-252r30,0xm159,-97r-39,-108v-1,-4,-3,-8,-4,-16r-1,0v-1,7,-2,12,-4,16r-39,108r87,0","w":232},"\u00c4":{"d":"228,0r-33,0r-26,-71r-107,0r-25,71r-33,0r97,-252r30,0xm159,-97r-39,-108v-1,-4,-3,-8,-4,-16r-1,0v-1,7,-2,12,-4,16r-39,108r87,0xm147,-275v-5,0,-9,-2,-12,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,12,5v3,3,5,7,5,12v0,5,-1,10,-4,13v-3,3,-8,5,-13,5xm80,-275v-5,0,-10,-2,-13,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,13,5v4,3,5,7,5,12v0,5,-2,10,-5,13v-3,3,-7,5,-12,5","w":232},"\u00c5":{"d":"228,0r-33,0r-26,-71r-107,0r-25,71r-33,0r93,-242v-12,-6,-18,-16,-18,-29v0,-10,4,-19,11,-25v7,-6,15,-10,26,-10v10,0,19,4,26,10v7,6,10,14,10,24v0,13,-6,23,-17,29xm115,-292v-6,0,-10,2,-14,6v-4,4,-6,8,-6,14v0,13,7,20,20,20v6,0,11,-2,15,-6v4,-4,5,-8,5,-14v0,-6,-1,-10,-5,-14v-4,-4,-9,-6,-15,-6xm159,-97r-39,-108v-1,-4,-3,-8,-4,-16r-1,0v-1,7,-2,12,-4,16r-39,108r87,0","w":232},"\u00c6":{"d":"293,0r-133,0r0,-71r-90,0r-34,71r-34,0r123,-252r162,0r0,27r-98,0r0,83r91,0r0,27r-91,0r0,88r104,0r0,27xm160,-97r0,-128r-17,0r-61,128r78,0","w":309},"\u00c7":{"d":"205,-11v-20,10,-43,15,-69,15r0,14v10,0,18,2,24,7v6,5,9,12,9,20v0,21,-17,31,-49,31r-11,0r0,-16v5,1,9,1,12,1v17,0,25,-5,25,-16v0,-9,-8,-14,-23,-14v-1,0,-3,1,-7,1r0,-29v-30,-4,-54,-16,-72,-39v-18,-23,-27,-51,-27,-85v0,-40,12,-73,36,-98v24,-25,55,-37,92,-37v24,0,44,3,60,10r0,32v-18,-10,-38,-16,-60,-16v-29,0,-53,10,-71,29v-18,19,-27,46,-27,78v0,31,9,55,26,73v17,18,39,28,66,28v25,0,47,-6,66,-17r0,28","w":222},"\u00c8":{"d":"167,0r-134,0r0,-252r128,0r0,27r-98,0r0,83r91,0r0,27r-91,0r0,88r104,0r0,27xm124,-275r-23,0r-46,-58r30,0","w":182},"\u00c9":{"d":"167,0r-134,0r0,-252r128,0r0,27r-98,0r0,83r91,0r0,27r-91,0r0,88r104,0r0,27xm141,-333r-46,58r-22,0r39,-58r29,0","w":182},"\u00ca":{"d":"145,-275r-21,0r-29,-41r-29,41r-20,0r38,-59r23,0xm167,0r-134,0r0,-252r128,0r0,27r-98,0r0,83r91,0r0,27r-91,0r0,88r104,0r0,27","w":182},"\u00cb":{"d":"167,0r-134,0r0,-252r128,0r0,27r-98,0r0,83r91,0r0,27r-91,0r0,88r104,0r0,27xm131,-275v-5,0,-9,-2,-12,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,12,5v3,3,5,7,5,12v0,5,-1,10,-4,13v-3,3,-8,5,-13,5xm64,-275v-5,0,-10,-2,-13,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,13,5v4,3,5,7,5,12v0,5,-2,10,-5,13v-3,3,-7,5,-12,5","w":182},"\u00cc":{"d":"87,-252r0,25r-24,0r0,202r24,0r0,25r-79,0r0,-25r25,0r0,-202r-25,0r0,-25r79,0xm74,-275r-23,0r-46,-58r30,0","w":95},"\u00cd":{"d":"87,-252r0,25r-24,0r0,202r24,0r0,25r-79,0r0,-25r25,0r0,-202r-25,0r0,-25r79,0xm90,-333r-46,58r-22,0r39,-58r29,0","w":95},"\u00ce":{"d":"99,-275r-22,0r-29,-41r-29,41r-20,0r38,-59r24,0xm87,-252r0,25r-24,0r0,202r24,0r0,25r-79,0r0,-25r25,0r0,-202r-25,0r0,-25r79,0","w":95},"\u00cf":{"d":"87,-252r0,25r-24,0r0,202r24,0r0,25r-79,0r0,-25r25,0r0,-202r-25,0r0,-25r79,0xm83,-275v-5,0,-9,-2,-12,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,12,5v3,3,5,7,5,12v0,5,-1,10,-4,13v-3,3,-8,5,-13,5xm16,-275v-5,0,-10,-2,-13,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,13,5v4,3,5,7,5,12v0,5,-2,10,-5,13v-3,3,-7,5,-12,5","w":95},"\u00d0":{"d":"33,0r0,-113r-28,0r0,-27r28,0r0,-112r70,0v89,0,133,41,133,123v0,39,-12,71,-37,94v-25,23,-58,35,-99,35r-67,0xm63,-225r0,85r59,0r0,27r-59,0r0,86r37,0v33,0,59,-8,77,-26v18,-18,28,-43,28,-75v0,-65,-34,-97,-103,-97r-39,0","w":252},"\u00d1":{"d":"196,-317v0,12,-3,22,-9,30v-6,8,-13,12,-23,12v-8,0,-17,-3,-28,-9v-9,-5,-16,-8,-21,-8v-10,0,-16,7,-16,20r-16,0v0,-13,2,-22,8,-30v6,-8,14,-11,24,-11v8,0,16,3,26,9v9,5,17,7,23,7v10,0,14,-6,14,-20r18,0xm236,0r-36,0r-130,-201v-3,-5,-6,-10,-8,-16r-1,0v1,5,2,17,2,35r0,182r-30,0r0,-252r38,0r127,198v5,8,8,14,10,17r0,0v-1,-7,-1,-21,-1,-38r0,-177r29,0r0,252","w":269},"\u00d2":{"d":"135,4v-36,0,-64,-11,-86,-35v-22,-24,-32,-54,-32,-92v0,-41,10,-73,32,-97v22,-24,52,-36,90,-36v35,0,63,12,84,35v21,23,32,54,32,92v0,41,-11,73,-33,97v-22,24,-50,36,-87,36xm137,-230v-26,0,-48,10,-65,29v-17,19,-25,44,-25,75v0,31,9,56,25,75v16,19,37,29,63,29v28,0,49,-9,65,-27v16,-18,24,-44,24,-76v0,-33,-8,-59,-23,-77v-15,-18,-37,-28,-64,-28xm155,-275r-23,0r-46,-58r30,0","w":271},"\u00d3":{"d":"135,4v-36,0,-64,-11,-86,-35v-22,-24,-32,-54,-32,-92v0,-41,10,-73,32,-97v22,-24,52,-36,90,-36v35,0,63,12,84,35v21,23,32,54,32,92v0,41,-11,73,-33,97v-22,24,-50,36,-87,36xm137,-230v-26,0,-48,10,-65,29v-17,19,-25,44,-25,75v0,31,9,56,25,75v16,19,37,29,63,29v28,0,49,-9,65,-27v16,-18,24,-44,24,-76v0,-33,-8,-59,-23,-77v-15,-18,-37,-28,-64,-28xm181,-333r-46,58r-22,0r39,-58r29,0","w":271},"\u00d4":{"d":"187,-275r-22,0r-28,-41r-29,41r-20,0r38,-59r23,0xm135,4v-36,0,-64,-11,-86,-35v-22,-24,-32,-54,-32,-92v0,-41,10,-73,32,-97v22,-24,52,-36,90,-36v35,0,63,12,84,35v21,23,32,54,32,92v0,41,-11,73,-33,97v-22,24,-50,36,-87,36xm137,-230v-26,0,-48,10,-65,29v-17,19,-25,44,-25,75v0,31,9,56,25,75v16,19,37,29,63,29v28,0,49,-9,65,-27v16,-18,24,-44,24,-76v0,-33,-8,-59,-23,-77v-15,-18,-37,-28,-64,-28","w":271},"\u00d5":{"d":"194,-317v0,12,-3,22,-9,30v-6,8,-12,12,-22,12v-8,0,-18,-3,-29,-9v-9,-5,-16,-8,-21,-8v-10,0,-15,7,-15,20r-17,0v0,-13,3,-22,9,-30v6,-8,13,-11,23,-11v8,0,16,3,26,9v9,5,17,8,23,8v10,0,15,-7,15,-21r17,0xm135,4v-36,0,-64,-11,-86,-35v-22,-24,-32,-54,-32,-92v0,-41,10,-73,32,-97v22,-24,52,-36,90,-36v35,0,63,12,84,35v21,23,32,54,32,92v0,41,-11,73,-33,97v-22,24,-50,36,-87,36xm137,-230v-26,0,-48,10,-65,29v-17,19,-25,44,-25,75v0,31,9,56,25,75v16,19,37,29,63,29v28,0,49,-9,65,-27v16,-18,24,-44,24,-76v0,-33,-8,-59,-23,-77v-15,-18,-37,-28,-64,-28","w":271},"\u00d6":{"d":"135,4v-36,0,-64,-11,-86,-35v-22,-24,-32,-54,-32,-92v0,-41,10,-73,32,-97v22,-24,52,-36,90,-36v35,0,63,12,84,35v21,23,32,54,32,92v0,41,-11,73,-33,97v-22,24,-50,36,-87,36xm137,-230v-26,0,-48,10,-65,29v-17,19,-25,44,-25,75v0,31,9,56,25,75v16,19,37,29,63,29v28,0,49,-9,65,-27v16,-18,24,-44,24,-76v0,-33,-8,-59,-23,-77v-15,-18,-37,-28,-64,-28xm170,-275v-5,0,-9,-2,-12,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,12,5v3,3,5,7,5,12v0,5,-1,10,-4,13v-3,3,-8,5,-13,5xm103,-275v-5,0,-10,-2,-13,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,13,5v4,3,5,7,5,12v0,5,-2,10,-5,13v-3,3,-7,5,-12,5","w":271},"\u00d7":{"d":"199,-45r-16,16r-60,-60r-59,60r-17,-16r60,-60r-60,-60r17,-16r59,60r60,-60r16,16r-59,60","w":246},"\u00d8":{"d":"57,-23r-27,32r-13,-11r27,-34v-19,-23,-27,-52,-27,-87v0,-40,10,-73,32,-97v22,-24,52,-36,90,-36v27,0,51,7,71,22r23,-28r14,11r-24,29v22,23,32,55,32,93v0,41,-11,73,-33,97v-22,24,-50,36,-87,36v-31,0,-57,-9,-78,-27xm192,-212v-15,-12,-33,-18,-55,-18v-27,0,-49,10,-65,29v-16,19,-25,44,-25,75v0,26,7,48,18,66xm203,-199r-127,153v15,16,35,24,59,24v28,0,49,-9,65,-27v16,-18,24,-44,24,-76v0,-30,-7,-55,-21,-74","w":271},"\u00d9":{"d":"217,-102v0,71,-31,106,-95,106v-61,0,-92,-34,-92,-102r0,-154r29,0r0,152v0,52,22,78,66,78v42,0,63,-25,63,-75r0,-155r29,0r0,150xm146,-275r-23,0r-46,-58r30,0","w":247},"\u00da":{"d":"217,-102v0,71,-31,106,-95,106v-61,0,-92,-34,-92,-102r0,-154r29,0r0,152v0,52,22,78,66,78v42,0,63,-25,63,-75r0,-155r29,0r0,150xm169,-333r-46,58r-22,0r39,-58r29,0","w":247},"\u00db":{"d":"173,-275r-21,0r-29,-41r-29,41r-20,0r38,-59r24,0xm217,-102v0,71,-31,106,-95,106v-61,0,-92,-34,-92,-102r0,-154r29,0r0,152v0,52,22,78,66,78v42,0,63,-25,63,-75r0,-155r29,0r0,150","w":247},"\u00dc":{"d":"217,-102v0,71,-31,106,-95,106v-61,0,-92,-34,-92,-102r0,-154r29,0r0,152v0,52,22,78,66,78v42,0,63,-25,63,-75r0,-155r29,0r0,150xm157,-275v-5,0,-9,-2,-12,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,12,5v3,3,5,7,5,12v0,5,-1,10,-4,13v-3,3,-8,5,-13,5xm90,-275v-5,0,-10,-2,-13,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,13,5v4,3,5,7,5,12v0,5,-2,10,-5,13v-3,3,-7,5,-12,5","w":247},"\u00dd":{"d":"197,-252r-83,159r0,93r-30,0r0,-92r-81,-160r34,0r56,114v1,1,3,6,6,15r1,0v1,-4,4,-9,7,-15r59,-114r31,0xm146,-333r-46,58r-22,0r39,-58r29,0","w":198},"\u00de":{"d":"63,-56r0,56r-30,0r0,-252r30,0r0,40r39,0v27,0,48,6,63,19v15,13,22,32,22,56v0,24,-8,43,-25,58v-17,15,-39,23,-67,23r-32,0xm63,-186r0,104r31,0v20,0,35,-5,46,-14v11,-9,16,-22,16,-39v0,-34,-20,-51,-59,-51r-34,0","w":201},"\u00df":{"d":"81,0r0,-28v9,6,19,8,30,8v13,0,23,-4,31,-13v8,-9,12,-20,12,-35v0,-18,-6,-31,-18,-42v-12,-11,-27,-18,-48,-20r0,-23v14,-2,25,-8,34,-18v9,-10,13,-22,13,-35v0,-13,-4,-22,-10,-29v-6,-7,-15,-11,-26,-11v-27,0,-41,18,-41,54r0,192r-29,0r0,-196v0,-22,7,-40,20,-54v13,-14,30,-20,52,-20v19,0,34,5,46,16v12,11,18,26,18,44v0,15,-5,29,-14,41v-9,12,-20,19,-34,24r0,1v44,9,67,34,67,75v0,21,-7,38,-20,52v-13,14,-31,21,-52,21v-12,0,-22,-1,-31,-4","w":195},"\u00e0":{"d":"158,0r-29,0r0,-28r-1,0v-13,22,-31,32,-55,32v-18,0,-32,-5,-42,-14v-10,-9,-15,-22,-15,-38v0,-34,19,-53,59,-59r54,-7v0,-31,-12,-46,-37,-46v-22,0,-42,7,-59,22r0,-29v18,-11,39,-17,62,-17v42,0,63,22,63,67r0,117xm129,-91r-43,6v-13,2,-23,5,-30,10v-7,5,-11,13,-11,25v0,9,4,16,10,22v6,6,15,8,25,8v14,0,26,-5,35,-15v9,-10,14,-23,14,-38r0,-18xm119,-214r-23,0r-46,-58r30,0","w":183},"\u00e1":{"d":"158,0r-29,0r0,-28r-1,0v-13,22,-31,32,-55,32v-18,0,-32,-5,-42,-14v-10,-9,-15,-22,-15,-38v0,-34,19,-53,59,-59r54,-7v0,-31,-12,-46,-37,-46v-22,0,-42,7,-59,22r0,-29v18,-11,39,-17,62,-17v42,0,63,22,63,67r0,117xm129,-91r-43,6v-13,2,-23,5,-30,10v-7,5,-11,13,-11,25v0,9,4,16,10,22v6,6,15,8,25,8v14,0,26,-5,35,-15v9,-10,14,-23,14,-38r0,-18xm133,-272r-46,58r-22,0r39,-58r29,0","w":183},"\u00e2":{"d":"142,-214r-22,0r-29,-41r-29,41r-19,0r37,-58r24,0xm158,0r-29,0r0,-28r-1,0v-13,22,-31,32,-55,32v-18,0,-32,-5,-42,-14v-10,-9,-15,-22,-15,-38v0,-34,19,-53,59,-59r54,-7v0,-31,-12,-46,-37,-46v-22,0,-42,7,-59,22r0,-29v18,-11,39,-17,62,-17v42,0,63,22,63,67r0,117xm129,-91r-43,6v-13,2,-23,5,-30,10v-7,5,-11,13,-11,25v0,9,4,16,10,22v6,6,15,8,25,8v14,0,26,-5,35,-15v9,-10,14,-23,14,-38r0,-18","w":183},"\u00e3":{"d":"148,-256v0,12,-2,22,-8,30v-6,8,-13,12,-23,12v-8,0,-17,-4,-28,-10v-9,-5,-16,-7,-21,-7v-10,0,-16,7,-16,20r-16,0v0,-13,2,-22,8,-30v6,-8,14,-12,24,-12v8,0,16,3,26,9v9,5,16,8,22,8v10,0,15,-6,15,-20r17,0xm158,0r-29,0r0,-28r-1,0v-13,22,-31,32,-55,32v-18,0,-32,-5,-42,-14v-10,-9,-15,-22,-15,-38v0,-34,19,-53,59,-59r54,-7v0,-31,-12,-46,-37,-46v-22,0,-42,7,-59,22r0,-29v18,-11,39,-17,62,-17v42,0,63,22,63,67r0,117xm129,-91r-43,6v-13,2,-23,5,-30,10v-7,5,-11,13,-11,25v0,9,4,16,10,22v6,6,15,8,25,8v14,0,26,-5,35,-15v9,-10,14,-23,14,-38r0,-18","w":183},"\u00e4":{"d":"158,0r-29,0r0,-28r-1,0v-13,22,-31,32,-55,32v-18,0,-32,-5,-42,-14v-10,-9,-15,-22,-15,-38v0,-34,19,-53,59,-59r54,-7v0,-31,-12,-46,-37,-46v-22,0,-42,7,-59,22r0,-29v18,-11,39,-17,62,-17v42,0,63,22,63,67r0,117xm129,-91r-43,6v-13,2,-23,5,-30,10v-7,5,-11,13,-11,25v0,9,4,16,10,22v6,6,15,8,25,8v14,0,26,-5,35,-15v9,-10,14,-23,14,-38r0,-18xm124,-214v-5,0,-9,-2,-12,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,12,5v3,3,5,7,5,12v0,5,-1,10,-4,13v-3,3,-8,5,-13,5xm57,-214v-5,0,-10,-2,-13,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,13,5v4,3,5,7,5,12v0,5,-2,10,-5,13v-3,3,-7,5,-12,5","w":183},"\u00e5":{"d":"91,-207v-10,0,-19,-3,-26,-9v-7,-6,-10,-14,-10,-24v0,-10,4,-19,11,-25v7,-6,15,-10,26,-10v10,0,19,4,26,10v7,6,10,14,10,24v0,10,-4,17,-11,24v-7,7,-16,10,-26,10xm91,-261v-6,0,-10,2,-14,6v-4,4,-6,8,-6,14v0,13,7,20,20,20v6,0,10,-2,14,-6v4,-4,6,-8,6,-14v0,-6,-2,-10,-6,-14v-4,-4,-8,-6,-14,-6xm158,0r-29,0r0,-28r-1,0v-13,22,-31,32,-55,32v-18,0,-32,-5,-42,-14v-10,-9,-15,-22,-15,-38v0,-34,19,-53,59,-59r54,-7v0,-31,-12,-46,-37,-46v-22,0,-42,7,-59,22r0,-29v18,-11,39,-17,62,-17v42,0,63,22,63,67r0,117xm129,-91r-43,6v-13,2,-23,5,-30,10v-7,5,-11,13,-11,25v0,9,4,16,10,22v6,6,15,8,25,8v14,0,26,-5,35,-15v9,-10,14,-23,14,-38r0,-18","w":183},"\u00e6":{"d":"285,-83r-127,0v0,20,6,36,16,47v10,11,24,16,42,16v21,0,39,-7,56,-20r0,27v-15,11,-36,17,-62,17v-32,0,-55,-13,-68,-40r0,0v-17,27,-41,40,-69,40v-18,0,-32,-5,-42,-14v-10,-9,-15,-22,-15,-38v0,-35,22,-54,67,-57r46,-3v0,-35,-13,-52,-38,-52v-21,0,-40,7,-58,21r0,-28v17,-11,39,-17,62,-17v27,0,44,12,52,35r1,0v14,-23,35,-35,63,-35v24,0,42,8,55,23v13,15,19,36,19,63r0,15xm256,-107v0,-17,-4,-30,-12,-39v-8,-9,-19,-14,-33,-14v-14,0,-25,4,-35,14v-10,10,-16,23,-18,39r98,0xm129,-72r0,-11r-35,2v-16,1,-29,4,-37,9v-8,5,-12,12,-12,23v0,9,3,16,9,21v6,5,14,8,25,8v14,0,26,-5,36,-15v10,-10,14,-22,14,-37","w":299},"\u00e7":{"d":"152,-8v-14,8,-30,12,-48,12r0,14v10,0,18,2,24,7v6,5,9,12,9,20v0,21,-17,31,-49,31r-11,0r0,-16v5,1,9,1,12,1v17,0,25,-5,25,-16v0,-9,-8,-14,-23,-14v-1,0,-3,1,-7,1r0,-30v-21,-4,-37,-13,-49,-29v-12,-16,-18,-36,-18,-59v0,-30,8,-53,25,-71v17,-18,40,-27,68,-27v16,0,30,3,42,9r0,29v-13,-9,-28,-14,-43,-14v-18,0,-33,7,-45,20v-12,13,-18,31,-18,52v0,21,6,38,17,50v11,12,26,18,45,18v16,0,30,-6,44,-16r0,28","w":166},"\u00e8":{"d":"174,-83r-127,0v0,20,6,36,16,47v10,11,24,16,42,16v20,0,39,-7,56,-20r0,27v-16,11,-36,17,-62,17v-25,0,-45,-8,-60,-24v-15,-16,-22,-39,-22,-69v0,-28,8,-51,24,-69v16,-18,35,-26,59,-26v24,0,42,8,55,23v13,15,19,36,19,63r0,15xm144,-107v0,-17,-4,-30,-12,-39v-8,-9,-19,-14,-33,-14v-14,0,-25,5,-34,15v-9,10,-16,22,-18,38r97,0xm128,-214r-23,0r-46,-58r30,0","w":188},"\u00e9":{"d":"174,-83r-127,0v0,20,6,36,16,47v10,11,24,16,42,16v20,0,39,-7,56,-20r0,27v-16,11,-36,17,-62,17v-25,0,-45,-8,-60,-24v-15,-16,-22,-39,-22,-69v0,-28,8,-51,24,-69v16,-18,35,-26,59,-26v24,0,42,8,55,23v13,15,19,36,19,63r0,15xm144,-107v0,-17,-4,-30,-12,-39v-8,-9,-19,-14,-33,-14v-14,0,-25,5,-34,15v-9,10,-16,22,-18,38r97,0xm140,-272r-46,58r-22,0r39,-58r29,0","w":188},"\u00ea":{"d":"148,-214r-22,0r-29,-41r-29,41r-19,0r37,-58r24,0xm174,-83r-127,0v0,20,6,36,16,47v10,11,24,16,42,16v20,0,39,-7,56,-20r0,27v-16,11,-36,17,-62,17v-25,0,-45,-8,-60,-24v-15,-16,-22,-39,-22,-69v0,-28,8,-51,24,-69v16,-18,35,-26,59,-26v24,0,42,8,55,23v13,15,19,36,19,63r0,15xm144,-107v0,-17,-4,-30,-12,-39v-8,-9,-19,-14,-33,-14v-14,0,-25,5,-34,15v-9,10,-16,22,-18,38r97,0","w":188},"\u00eb":{"d":"174,-83r-127,0v0,20,6,36,16,47v10,11,24,16,42,16v20,0,39,-7,56,-20r0,27v-16,11,-36,17,-62,17v-25,0,-45,-8,-60,-24v-15,-16,-22,-39,-22,-69v0,-28,8,-51,24,-69v16,-18,35,-26,59,-26v24,0,42,8,55,23v13,15,19,36,19,63r0,15xm144,-107v0,-17,-4,-30,-12,-39v-8,-9,-19,-14,-33,-14v-14,0,-25,5,-34,15v-9,10,-16,22,-18,38r97,0xm131,-214v-5,0,-9,-2,-12,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,12,5v3,3,5,7,5,12v0,5,-1,10,-4,13v-3,3,-8,5,-13,5xm64,-214v-5,0,-10,-2,-13,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,13,5v4,3,5,7,5,12v0,5,-2,10,-5,13v-3,3,-7,5,-12,5","w":188},"\u00ec":{"d":"58,0r-29,0r0,-180r29,0r0,180xm65,-214r-23,0r-46,-58r30,0","w":87},"\u00ed":{"d":"58,0r-29,0r0,-180r29,0r0,180xm84,-272r-46,58r-22,0r39,-58r29,0","w":87},"\u00ee":{"d":"91,-214r-21,0r-29,-41r-29,41r-20,0r38,-58r23,0xm58,0r-29,0r0,-180r29,0r0,180","w":87},"\u00ef":{"d":"58,0r-29,0r0,-180r29,0r0,180xm76,-214v-5,0,-9,-2,-12,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,12,5v3,3,5,7,5,12v0,5,-1,10,-4,13v-3,3,-8,5,-13,5xm9,-214v-5,0,-10,-2,-13,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,13,5v4,3,5,7,5,12v0,5,-2,10,-5,13v-3,3,-7,5,-12,5","w":87},"\u00f1":{"d":"160,-256v0,12,-3,22,-9,30v-6,8,-13,12,-23,12v-8,0,-17,-4,-28,-10v-9,-5,-16,-7,-21,-7v-10,0,-16,7,-16,20r-16,0v0,-13,2,-22,8,-30v6,-8,14,-12,24,-12v8,0,16,3,26,9v9,5,17,8,23,8v10,0,14,-6,14,-20r18,0xm179,0r-29,0r0,-103v0,-38,-14,-57,-42,-57v-14,0,-27,5,-36,16v-9,11,-14,24,-14,41r0,103r-29,0r0,-180r29,0r0,30r1,0v14,-23,33,-34,59,-34v20,0,35,6,45,19v10,13,16,31,16,55r0,110","w":203},"\u00f2":{"d":"104,4v-27,0,-47,-8,-63,-25v-16,-17,-24,-39,-24,-67v0,-30,8,-54,25,-71v17,-17,39,-25,67,-25v27,0,47,8,62,25v15,17,23,39,23,68v0,29,-8,52,-24,69v-16,17,-39,26,-66,26xm107,-160v-19,0,-33,6,-44,19v-11,13,-17,30,-17,52v0,21,6,39,17,51v11,12,26,18,44,18v19,0,33,-6,43,-18v10,-12,15,-30,15,-52v0,-22,-5,-40,-15,-52v-10,-12,-24,-18,-43,-18xm132,-214r-23,0r-46,-58r30,0","w":210},"\u00f3":{"d":"104,4v-27,0,-47,-8,-63,-25v-16,-17,-24,-39,-24,-67v0,-30,8,-54,25,-71v17,-17,39,-25,67,-25v27,0,47,8,62,25v15,17,23,39,23,68v0,29,-8,52,-24,69v-16,17,-39,26,-66,26xm107,-160v-19,0,-33,6,-44,19v-11,13,-17,30,-17,52v0,21,6,39,17,51v11,12,26,18,44,18v19,0,33,-6,43,-18v10,-12,15,-30,15,-52v0,-22,-5,-40,-15,-52v-10,-12,-24,-18,-43,-18xm149,-272r-46,58r-22,0r39,-58r29,0","w":210},"\u00f4":{"d":"156,-214r-22,0r-29,-41r-29,41r-20,0r38,-58r24,0xm104,4v-27,0,-47,-8,-63,-25v-16,-17,-24,-39,-24,-67v0,-30,8,-54,25,-71v17,-17,39,-25,67,-25v27,0,47,8,62,25v15,17,23,39,23,68v0,29,-8,52,-24,69v-16,17,-39,26,-66,26xm107,-160v-19,0,-33,6,-44,19v-11,13,-17,30,-17,52v0,21,6,39,17,51v11,12,26,18,44,18v19,0,33,-6,43,-18v10,-12,15,-30,15,-52v0,-22,-5,-40,-15,-52v-10,-12,-24,-18,-43,-18","w":210},"\u00f5":{"d":"164,-256v0,12,-3,22,-9,30v-6,8,-13,12,-23,12v-8,0,-17,-4,-28,-10v-9,-5,-16,-7,-21,-7v-10,0,-15,7,-15,20r-17,0v0,-13,2,-22,8,-30v6,-8,14,-12,24,-12v8,0,16,3,26,9v9,5,17,8,23,8v10,0,14,-6,14,-20r18,0xm104,4v-27,0,-47,-8,-63,-25v-16,-17,-24,-39,-24,-67v0,-30,8,-54,25,-71v17,-17,39,-25,67,-25v27,0,47,8,62,25v15,17,23,39,23,68v0,29,-8,52,-24,69v-16,17,-39,26,-66,26xm107,-160v-19,0,-33,6,-44,19v-11,13,-17,30,-17,52v0,21,6,39,17,51v11,12,26,18,44,18v19,0,33,-6,43,-18v10,-12,15,-30,15,-52v0,-22,-5,-40,-15,-52v-10,-12,-24,-18,-43,-18","w":210},"\u00f6":{"d":"104,4v-27,0,-47,-8,-63,-25v-16,-17,-24,-39,-24,-67v0,-30,8,-54,25,-71v17,-17,39,-25,67,-25v27,0,47,8,62,25v15,17,23,39,23,68v0,29,-8,52,-24,69v-16,17,-39,26,-66,26xm107,-160v-19,0,-33,6,-44,19v-11,13,-17,30,-17,52v0,21,6,39,17,51v11,12,26,18,44,18v19,0,33,-6,43,-18v10,-12,15,-30,15,-52v0,-22,-5,-40,-15,-52v-10,-12,-24,-18,-43,-18xm139,-214v-5,0,-9,-2,-12,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,12,5v3,3,5,7,5,12v0,5,-1,10,-4,13v-3,3,-8,5,-13,5xm72,-214v-5,0,-10,-2,-13,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,13,5v4,3,5,7,5,12v0,5,-2,10,-5,13v-3,3,-7,5,-12,5","w":210},"\u00f7":{"d":"124,-153v-5,0,-9,-1,-13,-5v-4,-4,-5,-8,-5,-13v0,-5,2,-10,5,-14v3,-4,8,-5,13,-5v12,0,19,6,19,19v0,6,-2,9,-6,13v-4,4,-8,5,-13,5xm206,-93r-165,0r0,-24r165,0r0,24xm124,-20v-5,0,-9,-1,-13,-5v-4,-4,-6,-8,-6,-13v0,-5,1,-10,5,-14v4,-4,9,-5,14,-5v12,0,18,6,18,19v0,5,-3,9,-6,13v-3,4,-7,5,-12,5","w":246},"\u00f8":{"d":"206,-184r-29,31v11,16,17,37,17,61v0,30,-8,53,-24,70v-16,17,-39,26,-66,26v-22,0,-40,-6,-55,-18r-26,28r-14,-13r26,-29v-12,-16,-18,-36,-18,-60v0,-30,8,-54,25,-71v17,-17,39,-25,67,-25v22,0,39,6,54,17r29,-31xm144,-147v-9,-9,-21,-13,-37,-13v-19,0,-34,6,-45,19v-11,13,-16,30,-16,52v0,15,3,28,9,39xm157,-130r-90,97v10,9,23,13,39,13v19,0,34,-6,44,-18v10,-12,15,-30,15,-52v0,-16,-2,-29,-8,-40","w":210},"\u00f9":{"d":"175,0r-29,0r0,-28r-1,0v-12,22,-30,32,-55,32v-43,0,-65,-25,-65,-76r0,-108r29,0r0,103v0,38,15,57,44,57v14,0,25,-6,34,-16v9,-10,14,-23,14,-40r0,-104r29,0r0,180xm124,-214r-23,0r-46,-58r30,0","w":203},"\u00fa":{"d":"175,0r-29,0r0,-28r-1,0v-12,22,-30,32,-55,32v-43,0,-65,-25,-65,-76r0,-108r29,0r0,103v0,38,15,57,44,57v14,0,25,-6,34,-16v9,-10,14,-23,14,-40r0,-104r29,0r0,180xm148,-272r-46,58r-22,0r39,-58r29,0","w":203},"\u00fb":{"d":"150,-214r-21,0r-29,-41r-29,41r-20,0r38,-58r23,0xm175,0r-29,0r0,-28r-1,0v-12,22,-30,32,-55,32v-43,0,-65,-25,-65,-76r0,-108r29,0r0,103v0,38,15,57,44,57v14,0,25,-6,34,-16v9,-10,14,-23,14,-40r0,-104r29,0r0,180","w":203},"\u00fc":{"d":"175,0r-29,0r0,-28r-1,0v-12,22,-30,32,-55,32v-43,0,-65,-25,-65,-76r0,-108r29,0r0,103v0,38,15,57,44,57v14,0,25,-6,34,-16v9,-10,14,-23,14,-40r0,-104r29,0r0,180xm135,-214v-5,0,-9,-2,-12,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,12,5v3,3,5,7,5,12v0,5,-1,10,-4,13v-3,3,-8,5,-13,5xm68,-214v-5,0,-10,-2,-13,-5v-3,-3,-5,-8,-5,-13v0,-5,2,-9,5,-12v3,-3,7,-5,12,-5v5,0,9,2,13,5v4,3,5,7,5,12v0,5,-2,10,-5,13v-3,3,-7,5,-12,5","w":203},"\u00fd":{"d":"172,-180r-82,209v-15,37,-36,56,-63,56v-8,0,-13,-1,-18,-3r0,-25v6,2,12,3,17,3v15,0,25,-9,32,-26r15,-34r-71,-180r32,0r49,139v1,2,2,6,4,13r1,0v1,-3,1,-7,3,-13r52,-139r29,0xm134,-272r-46,58r-22,0r39,-58r29,0","w":174},"\u00fe":{"d":"59,-26r-1,0r0,109r-29,0r0,-349r29,0r0,118r1,0v14,-24,35,-36,62,-36v23,0,41,8,54,24v13,16,20,38,20,65v0,30,-7,54,-22,72v-15,18,-35,27,-60,27v-23,0,-41,-10,-54,-30xm58,-99r0,26v0,15,5,27,15,37v10,10,21,16,36,16v17,0,31,-7,41,-20v10,-13,15,-32,15,-56v0,-20,-5,-36,-14,-47v-9,-11,-21,-17,-37,-17v-17,0,-31,6,-41,18v-10,12,-15,25,-15,43","w":211},"\u0100":{"d":"160,-275r-89,0r0,-20r89,0r0,20xm228,0r-33,0r-26,-71r-107,0r-25,71r-33,0r97,-252r30,0xm159,-97r-39,-108v-1,-4,-3,-8,-4,-16r-1,0v-1,7,-2,12,-4,16r-39,108r87,0","w":232},"\u0101":{"d":"141,-214r-89,0r0,-19r89,0r0,19xm158,0r-29,0r0,-28r-1,0v-13,22,-31,32,-55,32v-18,0,-32,-5,-42,-14v-10,-9,-15,-22,-15,-38v0,-34,19,-53,59,-59r54,-7v0,-31,-12,-46,-37,-46v-22,0,-42,7,-59,22r0,-29v18,-11,39,-17,62,-17v42,0,63,22,63,67r0,117xm129,-91r-43,6v-13,2,-23,5,-30,10v-7,5,-11,13,-11,25v0,9,4,16,10,22v6,6,15,8,25,8v14,0,26,-5,35,-15v9,-10,14,-23,14,-38r0,-18","w":183},"\u0102":{"d":"164,-320v-1,13,-7,24,-16,32v-9,8,-20,13,-33,13v-14,0,-25,-5,-34,-13v-9,-8,-13,-19,-13,-32r17,0v1,18,11,28,30,28v8,0,15,-3,21,-8v6,-5,9,-12,10,-20r18,0xm228,0r-33,0r-26,-71r-107,0r-25,71r-33,0r97,-252r30,0xm159,-97r-39,-108v-1,-4,-3,-8,-4,-16r-1,0v-1,7,-2,12,-4,16r-39,108r87,0","w":232},"\u0103":{"d":"142,-258v-1,13,-7,24,-16,32v-9,8,-20,12,-33,12v-14,0,-25,-4,-34,-12v-9,-8,-14,-19,-14,-32r18,0v1,18,11,27,30,27v8,0,14,-3,20,-8v6,-5,10,-11,11,-19r18,0xm158,0r-29,0r0,-28r-1,0v-13,22,-31,32,-55,32v-18,0,-32,-5,-42,-14v-10,-9,-15,-22,-15,-38v0,-34,19,-53,59,-59r54,-7v0,-31,-12,-46,-37,-46v-22,0,-42,7,-59,22r0,-29v18,-11,39,-17,62,-17v42,0,63,22,63,67r0,117xm129,-91r-43,6v-13,2,-23,5,-30,10v-7,5,-11,13,-11,25v0,9,4,16,10,22v6,6,15,8,25,8v14,0,26,-5,35,-15v9,-10,14,-23,14,-38r0,-18","w":183},"\u0106":{"d":"205,-11v-19,10,-42,15,-70,15v-36,0,-64,-11,-86,-34v-22,-23,-32,-53,-32,-91v0,-40,12,-73,36,-98v24,-25,55,-37,92,-37v24,0,44,3,60,10r0,32v-18,-10,-38,-16,-60,-16v-29,0,-53,10,-71,29v-18,19,-27,46,-27,78v0,31,9,55,26,73v17,18,39,28,66,28v25,0,47,-6,66,-17r0,28xm174,-333r-46,58r-22,0r39,-58r29,0","w":222},"\u0107":{"d":"152,-8v-14,8,-30,12,-49,12v-26,0,-46,-8,-62,-25v-16,-17,-24,-38,-24,-65v0,-30,8,-53,25,-71v17,-18,40,-27,68,-27v16,0,30,3,42,9r0,29v-13,-9,-28,-14,-43,-14v-18,0,-33,7,-45,20v-12,13,-18,31,-18,52v0,21,6,38,17,50v11,12,26,18,45,18v16,0,30,-6,44,-16r0,28xm143,-272r-46,58r-22,0r39,-58r29,0","w":166},"\u0108":{"d":"184,-276r-21,0r-29,-40r-29,40r-20,0r38,-58r23,0xm205,-11v-19,10,-42,15,-70,15v-36,0,-64,-11,-86,-34v-22,-23,-32,-53,-32,-91v0,-40,12,-73,36,-98v24,-25,55,-37,92,-37v24,0,44,3,60,10r0,32v-18,-10,-38,-16,-60,-16v-29,0,-53,10,-71,29v-18,19,-27,46,-27,78v0,31,9,55,26,73v17,18,39,28,66,28v25,0,47,-6,66,-17r0,28","w":222},"\u0109":{"d":"148,-214r-22,0r-29,-41r-29,41r-19,0r37,-58r24,0xm152,-8v-14,8,-30,12,-49,12v-26,0,-46,-8,-62,-25v-16,-17,-24,-38,-24,-65v0,-30,8,-53,25,-71v17,-18,40,-27,68,-27v16,0,30,3,42,9r0,29v-13,-9,-28,-14,-43,-14v-18,0,-33,7,-45,20v-12,13,-18,31,-18,52v0,21,6,38,17,50v11,12,26,18,45,18v16,0,30,-6,44,-16r0,28","w":166},"\u010c":{"d":"205,-11v-19,10,-42,15,-70,15v-36,0,-64,-11,-86,-34v-22,-23,-32,-53,-32,-91v0,-40,12,-73,36,-98v24,-25,55,-37,92,-37v24,0,44,3,60,10r0,32v-18,-10,-38,-16,-60,-16v-29,0,-53,10,-71,29v-18,19,-27,46,-27,78v0,31,9,55,26,73v17,18,39,28,66,28v25,0,47,-6,66,-17r0,28xm185,-333r-37,58r-24,0r-38,-58r21,0r29,40r28,-40r21,0","w":222},"\u010d":{"d":"152,-8v-14,8,-30,12,-49,12v-26,0,-46,-8,-62,-25v-16,-17,-24,-38,-24,-65v0,-30,8,-53,25,-71v17,-18,40,-27,68,-27v16,0,30,3,42,9r0,29v-13,-9,-28,-14,-43,-14v-18,0,-33,7,-45,20v-12,13,-18,31,-18,52v0,21,6,38,17,50v11,12,26,18,45,18v16,0,30,-6,44,-16r0,28xm151,-272r-38,58r-23,0r-38,-58r20,0r29,40r29,-40r21,0","w":166},"\u010e":{"d":"33,0r0,-252r70,0v89,0,133,41,133,123v0,39,-12,70,-37,94v-25,24,-58,35,-99,35r-67,0xm63,-225r0,198r37,0v33,0,59,-8,77,-26v18,-18,28,-43,28,-75v0,-65,-34,-97,-103,-97r-39,0xm169,-333r-38,58r-23,0r-38,-58r21,0r28,40r29,-40r21,0","w":252},"\u010f":{"d":"183,0r-29,0r0,-31r-1,0v-13,23,-34,35,-62,35v-23,0,-40,-8,-54,-24v-14,-16,-20,-38,-20,-66v0,-30,7,-53,22,-71v15,-18,35,-27,60,-27v25,0,43,10,54,29r1,0r0,-111r29,0r0,266xm154,-81r0,-27v0,-15,-4,-27,-14,-37v-10,-10,-22,-15,-37,-15v-18,0,-31,6,-41,19v-10,13,-16,31,-16,54v0,21,5,37,15,49v10,12,23,18,39,18v16,0,29,-5,39,-17v10,-12,15,-26,15,-44xm256,-266r-29,45r-21,0r20,-45r30,0","w":242},"\u0110":{"d":"33,0r0,-113r-28,0r0,-27r28,0r0,-112r70,0v89,0,133,41,133,123v0,39,-12,71,-37,94v-25,23,-58,35,-99,35r-67,0xm63,-225r0,85r59,0r0,27r-59,0r0,86r37,0v33,0,59,-8,77,-26v18,-18,28,-43,28,-75v0,-65,-34,-97,-103,-97r-39,0","w":252},"\u0111":{"d":"183,0r-29,0r0,-31r-1,0v-13,23,-34,35,-62,35v-23,0,-40,-8,-54,-24v-14,-16,-20,-38,-20,-66v0,-30,7,-53,22,-71v15,-18,35,-27,60,-27v24,0,42,10,54,29r1,0r0,-56r-58,0r0,-24r58,0r0,-31r29,0r0,31r24,0r0,24r-24,0r0,211xm154,-81r0,-27v0,-15,-4,-27,-14,-37v-10,-10,-22,-15,-37,-15v-18,0,-31,6,-41,19v-10,13,-16,31,-16,54v0,21,5,37,15,49v10,12,23,18,39,18v16,0,29,-5,39,-17v10,-12,15,-26,15,-44","w":211},"\u0114":{"d":"167,0r-134,0r0,-252r128,0r0,27r-98,0r0,83r91,0r0,27r-91,0r0,88r104,0r0,27xm146,-320v-1,13,-7,24,-16,32v-9,8,-20,12,-33,12v-14,0,-25,-4,-34,-12v-9,-8,-13,-19,-14,-32r18,0v1,18,11,27,30,27v8,0,15,-2,21,-7v6,-5,9,-12,10,-20r18,0","w":182},"\u0115":{"d":"146,-258v-1,13,-7,24,-16,32v-9,8,-20,12,-33,12v-14,0,-25,-4,-34,-12v-9,-8,-13,-19,-13,-32r17,0v1,18,11,27,30,27v8,0,15,-3,21,-8v6,-5,9,-11,10,-19r18,0xm174,-83r-127,0v0,20,6,36,16,47v10,11,24,16,42,16v20,0,39,-7,56,-20r0,27v-16,11,-36,17,-62,17v-25,0,-45,-8,-60,-24v-15,-16,-22,-39,-22,-69v0,-28,8,-51,24,-69v16,-18,35,-26,59,-26v24,0,42,8,55,23v13,15,19,36,19,63r0,15xm144,-107v0,-17,-4,-30,-12,-39v-8,-9,-19,-14,-33,-14v-14,0,-25,5,-34,15v-9,10,-16,22,-18,38r97,0","w":188},"\u011a":{"d":"167,0r-134,0r0,-252r128,0r0,27r-98,0r0,83r91,0r0,27r-91,0r0,88r104,0r0,27xm148,-333r-38,58r-23,0r-38,-58r20,0r29,40r29,-40r21,0","w":182},"\u011b":{"d":"174,-83r-127,0v0,20,6,36,16,47v10,11,24,16,42,16v20,0,39,-7,56,-20r0,27v-16,11,-36,17,-62,17v-25,0,-45,-8,-60,-24v-15,-16,-22,-39,-22,-69v0,-28,8,-51,24,-69v16,-18,35,-26,59,-26v24,0,42,8,55,23v13,15,19,36,19,63r0,15xm144,-107v0,-17,-4,-30,-12,-39v-8,-9,-19,-14,-33,-14v-14,0,-25,5,-34,15v-9,10,-16,22,-18,38r97,0xm148,-272r-37,58r-23,0r-38,-58r20,0r29,40r28,-40r21,0","w":188},"\u0130":{"d":"87,-252r0,25r-24,0r0,202r24,0r0,25r-79,0r0,-25r25,0r0,-202r-25,0r0,-25r79,0xm48,-275v-5,0,-9,-2,-12,-5v-3,-3,-6,-8,-6,-13v0,-5,3,-9,6,-12v3,-3,7,-5,12,-5v5,0,9,2,12,5v3,3,5,7,5,12v0,5,-2,9,-5,12v-3,3,-7,6,-12,6","w":95},"\u0131":{"d":"58,0r-29,0r0,-180r29,0r0,180","w":87},"\u0132":{"d":"87,-252r0,25r-24,0r0,202r24,0r0,25r-79,0r0,-25r25,0r0,-202r-25,0r0,-25r79,0xm194,-90v0,30,-6,52,-19,69v-13,17,-30,25,-51,25v-10,0,-18,-1,-24,-4r0,-29v6,5,14,7,24,7v27,0,40,-23,40,-68r0,-162r30,0r0,162","w":224},"\u0133":{"d":"44,-226v-5,0,-9,-1,-13,-5v-4,-4,-6,-8,-6,-13v0,-5,2,-10,6,-14v4,-4,8,-5,13,-5v5,0,9,1,13,5v4,4,6,9,6,14v0,5,-2,9,-6,13v-4,4,-8,5,-13,5xm58,0r-29,0r0,-180r29,0r0,180xm149,-8v0,30,-6,53,-18,69v-12,16,-29,24,-51,24v-8,0,-16,-2,-24,-6r0,-27v9,5,17,8,25,8v26,0,39,-21,39,-63r0,-177r29,0r0,172xm135,-226v-5,0,-9,-1,-13,-5v-4,-4,-6,-8,-6,-13v0,-5,2,-10,6,-14v4,-4,8,-5,13,-5v5,0,9,1,13,5v4,4,6,9,6,14v0,5,-2,9,-6,13v-4,4,-8,5,-13,5","w":178},"\u0152":{"d":"318,0r-126,0v-2,0,-11,0,-25,2v-11,1,-22,2,-32,2v-37,0,-65,-11,-86,-35v-21,-24,-32,-54,-32,-92v0,-41,11,-73,33,-97v22,-24,52,-36,90,-36v11,0,22,0,32,1r20,3r121,0r0,27r-99,0r0,83r91,0r0,27r-91,0r0,88r104,0r0,27xm185,-28r0,-197v-19,-3,-35,-5,-48,-5v-27,0,-48,11,-65,30v-17,19,-25,44,-25,74v0,30,9,56,25,75v16,19,37,29,64,29v14,0,30,-2,49,-6","w":335},"\u0153":{"d":"321,-83r-128,0v0,20,6,36,16,47v10,11,25,16,43,16v21,0,39,-7,56,-20r0,27v-16,11,-37,17,-63,17v-32,0,-54,-13,-67,-41r0,0v-15,28,-41,41,-74,41v-27,0,-47,-8,-63,-25v-16,-17,-24,-39,-24,-67v0,-30,8,-54,25,-71v17,-17,39,-25,67,-25v34,0,58,13,71,41r0,0v14,-28,37,-41,68,-41v23,0,41,8,54,23v13,15,19,37,19,63r0,15xm291,-107v0,-17,-4,-30,-12,-39v-8,-9,-18,-14,-32,-14v-14,0,-26,5,-36,15v-10,10,-15,23,-17,38r97,0xm107,-160v-19,0,-33,6,-44,19v-11,13,-17,31,-17,53v0,21,6,38,17,50v11,12,25,18,43,18v19,0,33,-6,43,-18v10,-12,16,-29,16,-51v0,-23,-6,-41,-16,-53v-10,-12,-24,-18,-42,-18","w":333},"\u0158":{"d":"214,0r-35,0r-43,-71v-4,-7,-7,-11,-11,-16v-4,-5,-7,-9,-11,-12v-4,-3,-8,-5,-12,-6v-4,-1,-9,-2,-15,-2r-24,0r0,107r-30,0r0,-252r75,0v11,0,22,1,31,4v9,3,17,7,24,13v7,6,12,13,16,21v4,8,6,18,6,29v0,9,-1,17,-4,24v-3,7,-6,14,-11,20v-5,6,-11,11,-18,15v-7,4,-14,7,-23,9r0,1v4,2,8,4,11,6v3,2,6,6,9,9v3,3,5,7,8,11r9,14xm63,-225r0,91r40,0v7,0,14,-1,20,-3v6,-2,11,-6,16,-10v5,-4,8,-9,11,-15v3,-6,4,-12,4,-20v0,-13,-4,-24,-13,-32v-9,-8,-21,-11,-38,-11r-40,0xm157,-333r-38,58r-23,0r-38,-58r20,0r29,40r29,-40r21,0","w":215},"\u0159":{"d":"123,-151v-5,-4,-13,-6,-22,-6v-12,0,-23,6,-31,18v-8,12,-12,27,-12,47r0,92r-29,0r0,-180r29,0r0,37r1,0v4,-13,11,-23,19,-30v8,-7,18,-10,28,-10v8,0,13,0,17,2r0,30xm125,-272r-37,58r-23,0r-38,-58r20,0r29,40r28,-40r21,0","w":125},"\u015a":{"d":"21,-10r0,-35v4,4,9,6,15,9v6,3,11,6,17,8v6,2,13,3,19,4v6,1,12,2,17,2v18,0,32,-3,41,-10v9,-7,13,-17,13,-30v0,-7,-1,-12,-4,-17v-3,-5,-8,-10,-13,-14v-5,-4,-12,-8,-19,-12r-23,-12v-9,-4,-16,-9,-24,-14v-8,-5,-14,-9,-20,-15v-6,-6,-11,-11,-14,-18v-3,-7,-4,-16,-4,-25v0,-11,2,-22,7,-30v5,-8,12,-15,20,-21v8,-6,18,-9,28,-12v10,-3,21,-4,32,-4v25,0,43,3,54,9r0,33v-15,-10,-34,-16,-57,-16v-6,0,-13,1,-19,2v-6,1,-12,4,-17,7v-5,3,-10,7,-13,12v-3,5,-4,10,-4,17v0,6,1,12,3,17v2,5,6,9,11,13v5,4,10,7,17,11v7,4,14,8,23,12v9,4,18,9,26,14v8,5,15,11,21,17v6,6,11,12,15,19v4,7,5,16,5,25v0,12,-2,23,-7,32v-5,9,-12,16,-20,21v-8,5,-18,10,-29,12v-11,2,-22,3,-34,3v-4,0,-8,0,-14,-1r-18,-3v0,0,-13,-2,-18,-4v-5,-2,-10,-4,-13,-6xm144,-333r-46,58r-22,0r39,-58r29,0","w":191},"\u015b":{"d":"18,-7r0,-30v16,12,33,17,52,17v25,0,38,-8,38,-25v0,-5,-1,-10,-3,-13v-2,-3,-5,-5,-9,-8v-4,-3,-8,-5,-13,-7v-7,-3,-7,-4,-16,-7v-8,-3,-15,-6,-21,-9v-6,-3,-11,-7,-15,-11v-4,-4,-7,-9,-9,-14v-2,-5,-3,-11,-3,-18v0,-8,1,-16,5,-23v4,-7,10,-12,16,-16v6,-4,14,-8,22,-10v8,-2,17,-3,26,-3v16,0,29,3,41,8r0,29v-13,-9,-28,-13,-45,-13v-5,0,-11,1,-15,2v-4,1,-8,3,-11,5v-3,2,-5,5,-7,8v-2,3,-3,6,-3,10v0,5,1,9,3,12v2,3,4,7,7,9v3,2,7,4,12,6r16,7v8,3,16,6,22,9v6,3,12,7,16,11v4,4,8,9,10,14v2,5,4,12,4,19v0,9,-2,16,-6,23v-4,7,-9,12,-16,16v-7,4,-14,8,-23,10v-9,2,-18,3,-27,3v-19,0,-34,-4,-48,-11xm125,-272r-46,58r-22,0r39,-58r29,0","w":152},"\u015c":{"d":"146,-275r-21,0r-29,-41r-29,41r-20,0r38,-59r23,0xm21,-10r0,-35v4,4,9,6,15,9v6,3,11,6,17,8v6,2,13,3,19,4v6,1,12,2,17,2v18,0,32,-3,41,-10v9,-7,13,-17,13,-30v0,-7,-1,-12,-4,-17v-3,-5,-8,-10,-13,-14v-5,-4,-12,-8,-19,-12r-23,-12v-9,-4,-16,-9,-24,-14v-8,-5,-14,-9,-20,-15v-6,-6,-11,-11,-14,-18v-3,-7,-4,-16,-4,-25v0,-11,2,-22,7,-30v5,-8,12,-15,20,-21v8,-6,18,-9,28,-12v10,-3,21,-4,32,-4v25,0,43,3,54,9r0,33v-15,-10,-34,-16,-57,-16v-6,0,-13,1,-19,2v-6,1,-12,4,-17,7v-5,3,-10,7,-13,12v-3,5,-4,10,-4,17v0,6,1,12,3,17v2,5,6,9,11,13v5,4,10,7,17,11v7,4,14,8,23,12v9,4,18,9,26,14v8,5,15,11,21,17v6,6,11,12,15,19v4,7,5,16,5,25v0,12,-2,23,-7,32v-5,9,-12,16,-20,21v-8,5,-18,10,-29,12v-11,2,-22,3,-34,3v-4,0,-8,0,-14,-1r-18,-3v0,0,-13,-2,-18,-4v-5,-2,-10,-4,-13,-6","w":191},"\u015d":{"d":"125,-214r-21,0r-29,-41r-29,41r-20,0r38,-58r23,0xm18,-7r0,-30v16,12,33,17,52,17v25,0,38,-8,38,-25v0,-5,-1,-10,-3,-13v-2,-3,-5,-5,-9,-8v-4,-3,-8,-5,-13,-7v-7,-3,-7,-4,-16,-7v-8,-3,-15,-6,-21,-9v-6,-3,-11,-7,-15,-11v-4,-4,-7,-9,-9,-14v-2,-5,-3,-11,-3,-18v0,-8,1,-16,5,-23v4,-7,10,-12,16,-16v6,-4,14,-8,22,-10v8,-2,17,-3,26,-3v16,0,29,3,41,8r0,29v-13,-9,-28,-13,-45,-13v-5,0,-11,1,-15,2v-4,1,-8,3,-11,5v-3,2,-5,5,-7,8v-2,3,-3,6,-3,10v0,5,1,9,3,12v2,3,4,7,7,9v3,2,7,4,12,6r16,7v8,3,16,6,22,9v6,3,12,7,16,11v4,4,8,9,10,14v2,5,4,12,4,19v0,9,-2,16,-6,23v-4,7,-9,12,-16,16v-7,4,-14,8,-23,10v-9,2,-18,3,-27,3v-19,0,-34,-4,-48,-11","w":152},"\u015e":{"d":"21,-10r0,-35v4,4,9,6,15,9v6,3,11,6,17,8v6,2,13,3,19,4v6,1,12,2,17,2v18,0,32,-3,41,-10v9,-7,13,-17,13,-30v0,-7,-1,-12,-4,-17v-3,-5,-8,-10,-13,-14v-5,-4,-12,-8,-19,-12r-23,-12v-9,-4,-16,-9,-24,-14v-8,-5,-14,-9,-20,-15v-6,-6,-11,-11,-14,-18v-3,-7,-4,-16,-4,-25v0,-11,2,-22,7,-30v5,-8,12,-15,20,-21v8,-6,18,-9,28,-12v10,-3,21,-4,32,-4v25,0,43,3,54,9r0,33v-15,-10,-34,-16,-57,-16v-6,0,-13,1,-19,2v-6,1,-12,4,-17,7v-5,3,-10,7,-13,12v-3,5,-4,10,-4,17v0,6,1,12,3,17v2,5,6,9,11,13v5,4,10,7,17,11v7,4,14,8,23,12v9,4,18,9,26,14v8,5,15,11,21,17v6,6,11,12,15,19v4,7,5,16,5,25v0,11,-2,21,-6,29v-4,8,-8,15,-15,20v-7,5,-15,9,-24,12v-9,3,-18,5,-28,6r0,15v10,0,18,2,24,7v6,5,9,12,9,20v0,21,-16,31,-48,31r-11,0r0,-16v4,1,8,1,12,1v17,0,25,-5,25,-16v0,-9,-8,-14,-23,-14v-1,0,-4,1,-7,1r0,-28v-4,0,-9,0,-15,-1v-6,-1,-11,-2,-17,-3v-6,-1,-11,-2,-16,-4v-5,-2,-10,-4,-13,-6","w":191},"\u015f":{"d":"18,-7r0,-30v16,12,33,17,52,17v25,0,38,-8,38,-25v0,-5,-1,-10,-3,-13v-2,-3,-5,-5,-9,-8v-4,-3,-8,-5,-13,-7v-7,-3,-7,-4,-16,-7v-8,-3,-15,-6,-21,-9v-6,-3,-11,-7,-15,-11v-4,-4,-7,-9,-9,-14v-2,-5,-3,-11,-3,-18v0,-8,1,-16,5,-23v4,-7,10,-12,16,-16v6,-4,14,-8,22,-10v8,-2,17,-3,26,-3v16,0,29,3,41,8r0,29v-13,-9,-28,-13,-45,-13v-5,0,-11,1,-15,2v-4,1,-8,3,-11,5v-3,2,-5,5,-7,8v-2,3,-3,6,-3,10v0,5,1,9,3,12v2,3,4,7,7,9v3,2,7,4,12,6r16,7v8,3,16,6,22,9v6,3,12,7,16,11v4,4,8,9,10,14v2,5,4,12,4,19v0,8,-2,14,-5,20v-3,6,-7,12,-12,16v-5,4,-11,7,-18,10v-7,3,-14,4,-22,5r0,15v10,0,18,3,24,8v6,5,9,11,9,19v0,21,-16,31,-48,31r-12,0r0,-16v4,1,9,1,13,1v16,0,24,-5,24,-16v0,-9,-7,-14,-22,-14v-1,0,-3,1,-7,1r0,-28v-16,0,-31,-4,-44,-11","w":152},"\u0160":{"d":"21,-10r0,-35v4,4,9,6,15,9v6,3,11,6,17,8v6,2,13,3,19,4v6,1,12,2,17,2v18,0,32,-3,41,-10v9,-7,13,-17,13,-30v0,-7,-1,-12,-4,-17v-3,-5,-8,-10,-13,-14v-5,-4,-12,-8,-19,-12r-23,-12v-9,-4,-16,-9,-24,-14v-8,-5,-14,-9,-20,-15v-6,-6,-11,-11,-14,-18v-3,-7,-4,-16,-4,-25v0,-11,2,-22,7,-30v5,-8,12,-15,20,-21v8,-6,18,-9,28,-12v10,-3,21,-4,32,-4v25,0,43,3,54,9r0,33v-15,-10,-34,-16,-57,-16v-6,0,-13,1,-19,2v-6,1,-12,4,-17,7v-5,3,-10,7,-13,12v-3,5,-4,10,-4,17v0,6,1,12,3,17v2,5,6,9,11,13v5,4,10,7,17,11v7,4,14,8,23,12v9,4,18,9,26,14v8,5,15,11,21,17v6,6,11,12,15,19v4,7,5,16,5,25v0,12,-2,23,-7,32v-5,9,-12,16,-20,21v-8,5,-18,10,-29,12v-11,2,-22,3,-34,3v-4,0,-8,0,-14,-1r-18,-3v0,0,-13,-2,-18,-4v-5,-2,-10,-4,-13,-6xm145,-334r-37,58r-24,0r-38,-58r21,0r28,41r29,-41r21,0","w":191},"\u0161":{"d":"18,-7r0,-30v16,12,33,17,52,17v25,0,38,-8,38,-25v0,-5,-1,-10,-3,-13v-2,-3,-5,-5,-9,-8v-4,-3,-8,-5,-13,-7v-7,-3,-7,-4,-16,-7v-8,-3,-15,-6,-21,-9v-6,-3,-11,-7,-15,-11v-4,-4,-7,-9,-9,-14v-2,-5,-3,-11,-3,-18v0,-8,1,-16,5,-23v4,-7,10,-12,16,-16v6,-4,14,-8,22,-10v8,-2,17,-3,26,-3v16,0,29,3,41,8r0,29v-13,-9,-28,-13,-45,-13v-5,0,-11,1,-15,2v-4,1,-8,3,-11,5v-3,2,-5,5,-7,8v-2,3,-3,6,-3,10v0,5,1,9,3,12v2,3,4,7,7,9v3,2,7,4,12,6r16,7v8,3,16,6,22,9v6,3,12,7,16,11v4,4,8,9,10,14v2,5,4,12,4,19v0,9,-2,16,-6,23v-4,7,-9,12,-16,16v-7,4,-14,8,-23,10v-9,2,-18,3,-27,3v-19,0,-34,-4,-48,-11xm120,-272r-38,58r-23,0r-38,-58r20,0r29,40r29,-40r21,0","w":152},"\u0162":{"d":"75,76r0,-16v4,1,8,1,12,1v17,0,25,-5,25,-16v0,-9,-8,-14,-23,-14v-1,0,-4,1,-7,1r0,-32r-2,0r0,-225r-73,0r0,-27r175,0r0,27r-73,0r0,225r-8,0r0,18v10,0,18,2,24,7v6,5,9,12,9,20v0,21,-16,31,-48,31r-11,0","w":188},"\u0163":{"d":"57,76r0,-16v4,1,9,1,13,1v16,0,24,-5,24,-16v0,-9,-7,-14,-22,-14v-1,0,-4,1,-8,1r0,-31v-17,-6,-26,-24,-26,-50r0,-106r-30,0r0,-25r30,0r0,-44r15,-5r14,-4r0,53r46,0r0,25r-46,0r0,101v0,12,2,21,6,26v4,5,11,8,21,8v7,0,13,-2,19,-6r0,24v-7,4,-16,6,-27,6r-3,0r0,14v10,0,19,3,25,8v6,5,9,11,9,19v0,21,-16,31,-48,31r-12,0","w":121},"\u01cd":{"d":"228,0r-33,0r-26,-71r-107,0r-25,71r-33,0r97,-252r30,0xm159,-97r-39,-108v-1,-4,-3,-8,-4,-16r-1,0v-1,7,-2,12,-4,16r-39,108r87,0xm165,-332r-38,58r-23,0r-38,-58r20,0r29,40r29,-40r21,0","w":232},"\u01ce":{"d":"157,0r-29,0r0,-28r-1,0v-13,22,-31,32,-55,32v-18,0,-32,-5,-42,-14v-10,-9,-16,-22,-16,-38v0,-34,20,-53,60,-59r54,-7v0,-31,-12,-46,-37,-46v-22,0,-42,7,-59,22r0,-29v18,-11,38,-17,61,-17v42,0,64,22,64,67r0,117xm128,-91r-44,6v-13,2,-23,5,-30,10v-7,5,-10,13,-10,25v0,9,3,16,9,22v6,6,15,8,25,8v14,0,27,-5,36,-15v9,-10,14,-23,14,-38r0,-18xm139,-272r-38,58r-23,0r-38,-58r20,0r29,40r29,-40r21,0","w":181},"\u01cf":{"d":"87,-252r0,25r-24,0r0,202r24,0r0,25r-79,0r0,-25r25,0r0,-202r-25,0r0,-25r79,0xm97,-332r-37,58r-24,0r-38,-58r21,0r28,40r29,-40r21,0","w":95},"\u01d0":{"d":"58,0r-29,0r0,-180r29,0r0,180xm93,-272r-38,58r-23,0r-38,-58r20,0r29,40r29,-40r21,0","w":87},"\u01d1":{"d":"135,4v-36,0,-64,-11,-86,-35v-22,-24,-32,-54,-32,-92v0,-41,10,-73,32,-97v22,-24,52,-36,90,-36v35,0,63,12,84,35v21,23,32,54,32,92v0,41,-11,73,-33,97v-22,24,-50,36,-87,36xm137,-230v-26,0,-48,10,-65,29v-17,19,-25,44,-25,75v0,31,9,56,25,75v16,19,37,29,63,29v28,0,49,-9,65,-27v16,-18,24,-44,24,-76v0,-33,-8,-59,-23,-77v-15,-18,-37,-28,-64,-28xm185,-332r-38,58r-23,0r-38,-58r21,0r28,40r29,-40r21,0","w":271},"\u01d2":{"d":"104,4v-27,0,-47,-8,-63,-25v-16,-17,-24,-39,-24,-67v0,-30,8,-54,25,-71v17,-17,39,-25,67,-25v27,0,47,8,62,25v15,17,23,39,23,68v0,29,-8,52,-24,69v-16,17,-39,26,-66,26xm107,-160v-19,0,-33,6,-44,19v-11,13,-17,30,-17,52v0,21,6,39,17,51v11,12,26,18,44,18v19,0,33,-6,43,-18v10,-12,15,-30,15,-52v0,-22,-5,-40,-15,-52v-10,-12,-24,-18,-43,-18xm155,-272r-38,58r-23,0r-38,-58r20,0r29,40r29,-40r21,0","w":210},"\u01d3":{"d":"217,-102v0,71,-31,106,-95,106v-61,0,-92,-34,-92,-102r0,-154r29,0r0,152v0,52,22,78,66,78v42,0,63,-25,63,-75r0,-155r29,0r0,150xm173,-332r-37,58r-24,0r-38,-58r21,0r28,40r29,-40r21,0","w":247},"\u01d4":{"d":"175,0r-29,0r0,-28r-1,0v-12,22,-30,32,-55,32v-43,0,-65,-25,-65,-76r0,-108r29,0r0,103v0,38,15,57,44,57v14,0,25,-6,34,-16v9,-10,14,-23,14,-40r0,-104r29,0r0,180xm151,-272r-37,58r-24,0r-38,-58r21,0r28,40r29,-40r21,0","w":203},"\u0218":{"d":"21,-10r0,-35v4,4,9,6,15,9v6,3,11,6,17,8v6,2,13,3,19,4v6,1,12,2,17,2v18,0,32,-3,41,-10v9,-7,13,-17,13,-30v0,-7,-1,-12,-4,-17v-3,-5,-8,-10,-13,-14v-5,-4,-12,-8,-19,-12r-23,-12v-9,-4,-16,-9,-24,-14v-8,-5,-14,-9,-20,-15v-6,-6,-11,-11,-14,-18v-3,-7,-4,-16,-4,-25v0,-11,2,-22,7,-30v5,-8,12,-15,20,-21v8,-6,18,-9,28,-12v10,-3,21,-4,32,-4v25,0,43,3,54,9r0,33v-15,-10,-34,-16,-57,-16v-6,0,-13,1,-19,2v-6,1,-12,4,-17,7v-5,3,-10,7,-13,12v-3,5,-4,10,-4,17v0,6,1,12,3,17v2,5,6,9,11,13v5,4,10,7,17,11v7,4,14,8,23,12v9,4,18,9,26,14v8,5,15,11,21,17v6,6,11,12,15,19v4,7,5,16,5,25v0,12,-2,23,-7,32v-5,9,-12,16,-20,21v-8,5,-18,10,-29,12v-11,2,-22,3,-34,3v-4,0,-8,0,-14,-1r-18,-3v0,0,-13,-2,-18,-4v-5,-2,-10,-4,-13,-6xm106,14r-28,58r-21,0r21,-58r28,0","w":191},"\u0219":{"d":"18,-7r0,-30v16,12,33,17,52,17v25,0,38,-8,38,-25v0,-5,-1,-10,-3,-13v-2,-3,-5,-5,-9,-8v-4,-3,-8,-5,-13,-7v-7,-3,-7,-4,-16,-7v-8,-3,-15,-6,-21,-9v-6,-3,-11,-7,-15,-11v-4,-4,-7,-9,-9,-14v-2,-5,-3,-11,-3,-18v0,-8,1,-16,5,-23v4,-7,10,-12,16,-16v6,-4,14,-8,22,-10v8,-2,17,-3,26,-3v16,0,29,3,41,8r0,29v-13,-9,-28,-13,-45,-13v-5,0,-11,1,-15,2v-4,1,-8,3,-11,5v-3,2,-5,5,-7,8v-2,3,-3,6,-3,10v0,5,1,9,3,12v2,3,4,7,7,9v3,2,7,4,12,6r16,7v8,3,16,6,22,9v6,3,12,7,16,11v4,4,8,9,10,14v2,5,4,12,4,19v0,9,-2,16,-6,23v-4,7,-9,12,-16,16v-7,4,-14,8,-23,10v-9,2,-18,3,-27,3v-19,0,-34,-4,-48,-11xm106,14r-28,58r-21,0r21,-58r28,0","w":152},"\u021a":{"d":"182,-225r-73,0r0,225r-29,0r0,-225r-73,0r0,-27r175,0r0,27xm106,14r-28,58r-21,0r21,-58r28,0","w":188},"\u021b":{"d":"113,-2v-7,4,-16,6,-27,6v-32,0,-48,-18,-48,-53r0,-106r-30,0r0,-25r30,0r0,-44r29,-9r0,53r46,0r0,25r-46,0r0,101v0,12,2,21,6,26v4,5,12,8,21,8v7,0,14,-2,19,-6r0,24xm106,14r-28,58r-21,0r21,-58r28,0","w":121}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2008 Microsoft Corporation. All Rights Reserved. Portions © 2008 DynaComware
 * Corp. All Rights Reserved. Portions © 2008 Ascender Corp. All Rights Reserved.
 * 
 * Description:
 * The PhagsPa portions of this font were created by the design teams of Ascender
 * and DynaComware.
 * 
 * Manufacturer:
 * Microsoft Corporation
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography/fonts/
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/
 */
Cufon.registerFont({"w":207,"face":{"font-family":"Microsoft PhagsPa","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 2 4 2 4 2 2 3","ascent":"288","descent":"-72","x-height":"4","bbox":"-23 -352 359 85","underline-thickness":"35.1562","underline-position":"0","unicode-range":"U+0021-U+021B"},"glyphs":{" ":{"w":99},"\u00a0":{"w":99},"\t":{"w":99},"!":{"d":"88,-252r-7,174r-45,0r-6,-174r58,0xm59,4v-9,0,-17,-2,-23,-8v-6,-6,-9,-13,-9,-21v0,-8,3,-16,9,-21v6,-5,14,-8,23,-8v9,0,17,3,23,8v6,5,9,13,9,21v0,8,-3,15,-9,21v-6,6,-14,8,-23,8","w":117},"\"":{"d":"147,-255r-6,78r-35,0r-6,-78r47,0xm77,-255r-5,77r-36,0r-5,-77r46,0","w":177},"#":{"d":"207,-188r-7,32r-33,0r-9,43r36,0r-8,32r-35,0r-14,61r-35,0r13,-61r-40,0r-13,61r-35,0r12,-61r-32,0r6,-32r33,0r9,-43r-35,0r6,-32r36,0r13,-62r36,0r-13,62r40,0r14,-62r35,0r-13,62r33,0xm132,-156r-41,0r-10,43r41,0","w":213},"$":{"d":"118,-1r0,38r-25,0r0,-37v-24,0,-46,-6,-67,-17r0,-48v7,6,18,10,31,15v13,5,25,7,36,8r0,-64v-27,-10,-46,-21,-56,-33v-10,-12,-15,-26,-15,-43v0,-18,6,-34,19,-47v13,-13,31,-21,52,-23r0,-33r25,0r0,32v25,1,44,5,56,12r0,48v-16,-10,-35,-17,-56,-19r0,67v26,9,45,20,56,32v11,12,16,26,16,43v0,19,-6,35,-18,47v-12,12,-31,19,-54,22xm93,-155r0,-56v-16,3,-25,12,-25,26v0,12,9,22,25,30xm118,-96r0,53v17,-3,26,-11,26,-25v0,-11,-9,-21,-26,-28"},"%":{"d":"76,-124v-18,0,-33,-6,-44,-17v-11,-11,-16,-27,-16,-46v0,-21,5,-38,17,-50v12,-12,28,-19,47,-19v19,0,34,6,44,17v10,11,15,27,15,47v0,21,-5,37,-17,49v-12,12,-27,19,-46,19xm79,-225v-17,0,-26,12,-26,36v0,22,9,34,25,34v17,0,25,-12,25,-35v0,-23,-8,-35,-24,-35xm260,-252r-165,252r-42,0r163,-252r44,0xm233,4v-18,0,-33,-7,-44,-18v-11,-11,-16,-26,-16,-45v0,-21,5,-38,17,-50v12,-12,28,-19,47,-19v19,0,34,6,44,17v10,11,15,26,15,46v0,21,-5,38,-17,50v-12,12,-27,19,-46,19xm235,-97v-17,0,-25,12,-25,36v0,22,8,34,25,34v17,0,25,-13,25,-36v0,-11,-3,-19,-7,-25v-4,-6,-11,-9,-18,-9","w":312},"&":{"d":"260,4v-6,0,-12,0,-18,-2v-6,-2,-11,-4,-16,-7v-5,-3,-10,-6,-14,-10r-12,-12v-4,4,-10,7,-16,11v-6,4,-13,7,-21,10v-8,3,-16,5,-25,7v-9,2,-19,3,-30,3v-14,0,-26,-2,-38,-5v-12,-3,-22,-8,-30,-15v-8,-7,-15,-14,-20,-24v-5,-10,-7,-20,-7,-33v0,-10,2,-19,6,-27v4,-8,8,-14,14,-20v6,-6,12,-11,19,-15v7,-4,14,-8,22,-11v-4,-3,-7,-6,-11,-10v-4,-4,-7,-8,-10,-12v-3,-4,-5,-9,-7,-14v-2,-5,-3,-10,-3,-16v0,-9,2,-18,6,-25v4,-7,9,-13,16,-18v7,-5,15,-8,24,-11v9,-3,20,-4,31,-4v11,0,21,1,30,4v9,3,17,6,23,11v6,5,11,10,15,17v4,7,5,15,5,23v0,13,-4,23,-12,33v-8,10,-19,18,-33,24v6,3,11,5,16,8v5,3,10,8,15,12v5,4,10,9,15,14v5,5,9,11,14,18v10,-12,16,-24,20,-38v4,-14,7,-28,7,-43v0,-4,0,-9,-1,-13v-1,-4,-2,-7,-3,-11r48,0v1,4,1,7,2,11v1,4,1,7,1,12v0,11,-1,23,-3,34v-2,11,-6,20,-10,30v-4,10,-10,19,-16,28v-6,9,-13,17,-20,25v6,6,11,11,17,14v6,3,13,5,18,5v6,0,11,-1,17,-2v6,-1,11,-3,15,-5r0,41v-6,3,-13,5,-19,6v-6,1,-13,2,-21,2xm111,-38v7,0,14,-1,20,-2v6,-1,12,-3,17,-5v5,-2,10,-5,15,-8v5,-3,9,-6,13,-9v-6,-9,-12,-17,-18,-24v-6,-7,-12,-12,-18,-17v-6,-5,-11,-8,-17,-11v-6,-3,-11,-6,-17,-9v-5,2,-10,5,-14,8v-4,3,-8,6,-11,10v-3,4,-6,8,-8,13v-2,5,-4,11,-4,17v0,6,1,10,3,15v2,5,5,9,9,12v4,3,8,5,13,7v5,2,11,3,17,3xm144,-198v0,-3,-1,-6,-2,-9v-1,-3,-4,-4,-6,-6v-2,-2,-4,-4,-7,-5v-3,-1,-6,-1,-9,-1v-4,0,-8,1,-11,2v-3,1,-6,2,-8,4v-2,2,-5,4,-6,7v-1,3,-2,6,-2,9v0,7,2,12,6,18v4,6,10,11,16,14v4,-1,8,-3,11,-5v3,-2,6,-4,9,-7v3,-3,4,-6,6,-9v2,-3,3,-8,3,-12","w":305},"'":{"d":"76,-255r-6,77r-35,0r-5,-77r46,0","w":105},"(":{"d":"130,57r-45,0v-38,-42,-57,-93,-57,-154v0,-59,19,-110,57,-155r45,0v-36,47,-54,98,-54,155v0,57,18,108,54,154","w":132},")":{"d":"48,57r-45,0v36,-46,54,-97,54,-154v0,-56,-18,-108,-54,-155r46,0v38,45,56,96,56,155v0,60,-19,112,-57,154","w":132},"*":{"d":"152,-185r-48,6r34,37r-32,22r-24,-44r-24,44r-32,-22r34,-37r-48,-6r13,-36r44,19r-7,-50r41,0r-8,50r44,-19","w":163},"+":{"d":"213,-85r-68,0r0,67r-35,0r0,-67r-68,0r0,-36r68,0r0,-68r35,0r0,68r68,0r0,36","w":254},",":{"d":"76,-44r-26,89r-43,0r18,-89r51,0","w":97},"-":{"d":"121,-77r-96,0r0,-38r96,0r0,38","w":145},".":{"d":"48,4v-9,0,-17,-2,-23,-8v-6,-6,-9,-13,-9,-21v0,-8,4,-16,10,-21v6,-5,14,-8,23,-8v9,0,17,4,23,9v6,5,9,12,9,20v0,9,-3,16,-9,21v-6,5,-14,8,-24,8","w":97},"\/":{"d":"164,-252r-123,294r-50,0r123,-294r50,0","w":159},"0":{"d":"102,4v-60,0,-90,-42,-90,-126v0,-44,9,-77,25,-100v16,-23,39,-34,70,-34v59,0,88,42,88,128v0,43,-8,75,-24,98v-16,23,-39,34,-69,34xm105,-214v-24,0,-36,31,-36,91v0,57,11,85,35,85v23,0,35,-29,35,-88v0,-59,-12,-88,-34,-88"},"1":{"d":"189,0r-159,0r0,-44r52,0r0,-157r-54,12r0,-45r109,-22r0,212r52,0r0,44"},"2":{"d":"83,-47r0,1r102,0r0,46r-166,0r0,-43r72,-69v15,-14,25,-26,31,-35v6,-9,9,-20,9,-30v0,-23,-12,-35,-37,-35v-22,0,-43,9,-63,26r0,-49v22,-14,46,-21,74,-21v26,0,47,6,61,19v14,13,22,31,22,53v0,29,-18,60,-53,91"},"3":{"d":"26,-8r0,-49v17,12,37,19,59,19v14,0,25,-3,33,-9v8,-6,12,-15,12,-26v0,-11,-5,-20,-15,-26v-10,-6,-23,-9,-40,-9r-23,0r0,-42r21,0v33,0,49,-11,49,-33v0,-21,-12,-31,-37,-31v-17,0,-34,5,-50,16r0,-45v18,-9,38,-13,62,-13v26,0,46,5,60,17v14,12,22,26,22,45v0,33,-17,54,-50,62r0,1v18,2,32,8,42,19v10,11,16,24,16,40v0,24,-9,42,-26,56v-17,14,-42,20,-72,20v-26,0,-47,-4,-63,-12"},"4":{"d":"198,-54r-31,0r0,54r-50,0r0,-54r-110,0r0,-35r106,-163r54,0r0,159r31,0r0,39xm117,-197r-1,0v-2,4,-4,11,-9,20r-54,84r64,0r0,-79r0,-25"},"5":{"d":"29,-7r0,-47v17,11,36,16,55,16v15,0,26,-4,34,-11v8,-7,13,-16,13,-28v0,-25,-18,-37,-53,-37v-11,0,-26,1,-42,3r0,-141r140,0r0,45r-93,0r0,51v7,-1,14,-1,21,-1v26,0,46,6,61,20v15,14,22,32,22,55v0,25,-9,46,-26,62v-17,16,-41,24,-71,24v-24,0,-44,-4,-61,-11"},"6":{"d":"177,-249r0,46v-13,-7,-27,-11,-42,-11v-19,0,-34,7,-45,21v-11,14,-18,34,-18,58r1,0v12,-18,30,-27,53,-27v21,0,39,7,51,21v12,14,18,33,18,57v0,25,-8,46,-24,63v-16,17,-38,25,-63,25v-28,0,-51,-9,-67,-30v-16,-21,-23,-50,-23,-87v0,-44,9,-78,30,-104v21,-26,49,-39,84,-39v19,0,34,2,45,7xm108,-121v-10,0,-19,4,-25,11v-6,7,-9,16,-9,27v0,12,3,23,9,32v6,9,15,13,25,13v10,0,18,-4,24,-12v6,-8,9,-17,9,-30v0,-27,-11,-41,-33,-41"},"7":{"d":"192,-226r-89,226r-58,0r89,-207r-117,0r0,-45r175,0r0,26"},"8":{"d":"65,-131r0,-1v-29,-12,-43,-31,-43,-57v0,-19,8,-35,23,-48v15,-13,36,-19,60,-19v25,0,45,5,60,17v15,12,22,27,22,46v0,28,-16,48,-48,61r0,1v17,5,31,12,40,24v9,12,14,25,14,39v0,22,-8,40,-24,53v-16,13,-39,19,-69,19v-26,0,-46,-6,-62,-19v-16,-13,-24,-29,-24,-50v0,-30,17,-52,51,-66xm135,-188v0,-9,-3,-16,-8,-21v-5,-5,-13,-7,-22,-7v-9,0,-16,3,-22,8v-6,5,-8,12,-8,20v0,16,10,28,30,36v20,-8,30,-20,30,-36xm102,-110v-24,9,-35,24,-35,43v0,9,4,16,11,22v7,6,16,9,26,9v11,0,20,-2,27,-8v7,-6,10,-14,10,-24v0,-19,-13,-33,-39,-42"},"9":{"d":"28,-5r0,-46v13,9,29,13,48,13v19,0,34,-7,45,-20v11,-13,16,-32,16,-56r-1,0v-11,17,-28,24,-51,24v-21,0,-37,-7,-51,-21v-14,-14,-20,-33,-20,-56v0,-27,7,-49,24,-65v17,-16,39,-24,65,-24v27,0,48,10,64,30v16,20,24,50,24,88v0,45,-10,80,-29,105v-19,25,-46,37,-81,37v-21,0,-38,-2,-53,-9xm101,-214v-10,0,-18,4,-24,12v-6,8,-9,18,-9,30v0,13,3,23,9,30v6,7,14,11,25,11v10,0,18,-3,24,-10v6,-7,9,-16,9,-27v0,-13,-4,-24,-10,-33v-6,-9,-14,-13,-24,-13"},":":{"d":"48,-124v-9,0,-17,-3,-23,-9v-6,-6,-9,-12,-9,-20v0,-8,4,-16,10,-21v6,-5,14,-8,23,-8v9,0,17,3,23,8v6,5,9,13,9,21v0,9,-3,16,-9,21v-6,5,-14,8,-24,8xm48,4v-9,0,-17,-2,-23,-8v-6,-6,-9,-13,-9,-21v0,-8,4,-16,10,-21v6,-5,14,-8,23,-8v9,0,17,4,23,9v6,5,9,12,9,20v0,9,-3,16,-9,21v-6,5,-14,8,-24,8","w":97},";":{"d":"49,-124v-9,0,-17,-3,-23,-9v-6,-6,-9,-12,-9,-20v0,-9,3,-16,9,-21v6,-5,15,-8,24,-8v9,0,17,3,23,8v6,5,9,13,9,21v0,9,-3,16,-9,21v-6,5,-14,8,-24,8xm76,-44r-26,89r-43,0r18,-89r51,0","w":97},"<":{"d":"210,-11r-165,-75r0,-28r165,-79r0,42r-118,50r0,1r118,47r0,42","w":254},"=":{"d":"213,-123r-171,0r0,-36r171,0r0,36xm213,-47r-171,0r0,-35r171,0r0,35","w":254},">":{"d":"210,-88r-165,75r0,-42r118,-47r0,-1r-118,-50r0,-42r165,78r0,29","w":254},"?":{"d":"46,-73v-1,-3,-1,-6,-2,-10v-1,-4,-1,-8,-1,-11v0,-5,0,-11,1,-15v1,-4,3,-8,5,-12v2,-4,5,-8,8,-12v3,-4,7,-6,11,-10v4,-4,9,-8,12,-11v3,-3,6,-6,8,-9v2,-3,4,-7,5,-10v1,-3,2,-8,2,-12v0,-4,-1,-7,-2,-10v-1,-3,-3,-6,-5,-8v-2,-2,-6,-4,-9,-5v-3,-1,-8,-2,-12,-2v-9,0,-18,1,-28,5v-10,4,-19,10,-28,18r0,-53v9,-5,18,-9,29,-12v11,-3,22,-4,33,-4v11,0,22,1,31,3v9,2,17,7,24,12v7,5,13,11,17,19v4,8,6,18,6,29v0,7,-1,14,-3,20v-2,6,-4,11,-7,16v-3,5,-7,10,-12,15v-5,5,-10,10,-16,15v-4,3,-8,6,-11,9v-3,3,-6,6,-8,9v-2,3,-3,6,-4,9v-1,3,-2,7,-2,11v0,3,0,6,1,9v1,3,2,5,3,7r-46,0xm72,4v-9,0,-17,-2,-23,-8v-6,-6,-10,-13,-10,-21v0,-8,4,-15,10,-21v6,-6,14,-8,23,-8v9,0,17,2,23,8v6,5,9,13,9,21v0,8,-3,15,-9,21v-6,6,-14,8,-23,8","w":157},"@":{"d":"197,-65r-1,0v-8,22,-22,33,-44,33v-16,0,-30,-5,-40,-17v-10,-12,-14,-28,-14,-49v0,-27,6,-48,20,-65v14,-17,31,-26,50,-26v17,0,29,7,33,21r0,0r2,-17r40,0v-5,50,-8,82,-8,97v0,16,4,25,13,25v9,0,17,-7,23,-19v6,-12,9,-28,9,-48v0,-27,-9,-50,-26,-68v-17,-18,-42,-26,-73,-26v-34,0,-62,12,-84,35v-22,23,-33,52,-33,86v0,33,10,58,30,77v20,19,46,28,81,28v26,0,50,-5,72,-15r0,33v-20,9,-45,13,-77,13v-43,0,-79,-12,-106,-37v-27,-25,-40,-58,-40,-100v0,-43,14,-79,43,-108v29,-29,66,-43,112,-43v42,0,76,11,102,34v26,23,39,52,39,89v0,30,-7,55,-23,73v-16,18,-36,27,-60,27v-12,0,-21,-3,-28,-9v-7,-6,-11,-14,-12,-24xm174,-158v-11,0,-19,6,-26,18v-7,12,-10,26,-10,42v0,11,2,20,7,26v5,6,10,9,17,9v11,0,20,-5,26,-17v6,-12,10,-28,10,-48v0,-9,-3,-17,-7,-22v-4,-5,-10,-8,-17,-8","w":343},"A":{"d":"250,0r-61,0r-18,-56r-90,0r-18,56r-61,0r92,-252r67,0xm158,-100r-27,-84v-2,-6,-4,-14,-5,-23r-1,0v-1,7,-2,15,-4,22r-28,85r65,0","w":253},"B":{"d":"29,0r0,-252r92,0v28,0,49,5,64,15v15,10,23,25,23,44v0,14,-5,26,-14,36v-9,10,-21,17,-35,21r0,1v18,2,32,9,43,20v11,11,16,24,16,40v0,23,-8,41,-25,55v-17,14,-38,20,-67,20r-97,0xm86,-210r0,60r25,0v12,0,20,-3,27,-9v7,-6,10,-13,10,-23v0,-19,-13,-28,-41,-28r-21,0xm86,-108r0,66r30,0v13,0,24,-3,31,-9v7,-6,11,-14,11,-25v0,-10,-4,-18,-11,-24v-7,-6,-17,-8,-30,-8r-31,0","w":230},"C":{"d":"210,-9v-18,9,-43,13,-73,13v-39,0,-69,-11,-91,-34v-22,-23,-33,-53,-33,-91v0,-40,12,-73,37,-98v25,-25,57,-37,97,-37v25,0,46,3,63,9r0,55v-17,-10,-36,-15,-58,-15v-24,0,-42,7,-57,22v-15,15,-22,35,-22,60v0,24,6,45,20,59v14,14,33,21,56,21v22,0,43,-5,61,-16r0,52","w":224},"D":{"d":"29,0r0,-252r89,0v90,0,134,41,134,123v0,39,-12,71,-36,94v-24,23,-57,35,-98,35r-89,0xm86,-206r0,160r28,0v25,0,44,-7,58,-22v14,-15,21,-35,21,-60v0,-24,-7,-43,-21,-57v-14,-14,-34,-21,-59,-21r-27,0","w":265},"E":{"d":"180,0r-151,0r0,-252r145,0r0,46r-88,0r0,56r82,0r0,46r-82,0r0,58r94,0r0,46","w":191},"F":{"d":"175,-206r-89,0r0,62r81,0r0,46r-81,0r0,98r-57,0r0,-252r146,0r0,46","w":187},"G":{"d":"236,-17v-25,14,-55,21,-92,21v-41,0,-73,-11,-96,-33v-23,-22,-35,-54,-35,-93v0,-40,12,-72,38,-97v26,-25,60,-37,102,-37v27,0,51,4,71,11r0,53v-19,-11,-43,-17,-71,-17v-24,0,-43,8,-58,23v-15,15,-22,35,-22,61v0,26,7,46,20,60v13,14,31,22,54,22v14,0,24,-2,32,-6r0,-49r-51,0r0,-46r108,0r0,127","w":255},"H":{"d":"247,0r-57,0r0,-103r-104,0r0,103r-57,0r0,-252r57,0r0,100r104,0r0,-100r57,0r0,252","w":275},"I":{"d":"107,-252r0,44r-21,0r0,164r21,0r0,44r-99,0r0,-44r21,0r0,-164r-21,0r0,-44r99,0","w":114},"J":{"d":"134,-100v0,34,-8,60,-24,78v-16,18,-37,26,-67,26v-13,0,-26,-1,-37,-6r0,-54v10,7,20,11,32,11v26,0,39,-19,39,-57r0,-150r57,0r0,152","w":160},"K":{"d":"238,0r-71,0r-74,-110v-1,-2,-4,-6,-7,-13r0,0r0,123r-57,0r0,-252r57,0r0,119r0,0v1,-3,5,-8,8,-14r69,-105r68,0r-88,120","w":233},"L":{"d":"179,0r-150,0r0,-252r57,0r0,206r93,0r0,46","w":184},"M":{"d":"316,0r-56,0r0,-151v0,-16,1,-34,2,-54r-1,0v-3,15,-6,27,-8,34r-59,171r-47,0r-60,-170v-2,-5,-4,-16,-8,-35r-1,0v2,25,2,47,2,66r0,139r-51,0r0,-252r83,0r51,149v4,12,7,24,9,36r1,0v3,-14,7,-26,11,-36r51,-149r81,0r0,252","w":344},"N":{"d":"256,0r-58,0r-104,-158v-6,-9,-10,-16,-12,-21r-1,0v1,9,1,22,1,40r0,139r-53,0r0,-252r61,0r100,153v5,7,9,14,13,21r0,0v-1,-6,-1,-18,-1,-35r0,-139r54,0r0,252","w":284},"O":{"d":"135,4v-36,0,-65,-12,-88,-35v-23,-23,-34,-54,-34,-92v0,-40,12,-71,35,-96v23,-25,53,-37,91,-37v36,0,66,11,88,35v22,24,33,54,33,93v0,40,-12,72,-35,96v-23,24,-53,36,-90,36xm138,-207v-20,0,-36,7,-48,22v-12,15,-17,34,-17,59v0,25,5,45,17,60v12,15,27,21,46,21v20,0,36,-7,47,-21v11,-14,17,-34,17,-59v0,-26,-5,-46,-16,-61v-11,-15,-27,-21,-46,-21","w":272},"P":{"d":"86,-87r0,87r-57,0r0,-252r89,0v64,0,95,26,95,80v0,25,-9,46,-27,62v-18,16,-43,23,-73,23r-27,0xm86,-208r0,78r22,0v30,0,45,-14,45,-40v0,-26,-15,-38,-45,-38r-22,0","w":221},"Q":{"d":"138,-207v-20,0,-36,7,-48,22v-12,15,-17,34,-17,59v0,25,5,45,17,60v12,15,27,21,46,21v20,0,36,-7,47,-21v11,-14,17,-34,17,-59v0,-26,-5,-45,-16,-60v-11,-15,-26,-22,-46,-22xm183,-5v6,7,11,12,17,16v6,4,11,8,17,10v6,2,11,5,17,6v6,1,12,1,19,1r6,0v0,0,5,-1,7,-1v2,0,5,-1,7,-2v2,-1,3,0,5,-1r0,47v-4,1,-8,3,-15,4v-7,1,-15,1,-24,1v-11,0,-22,-2,-32,-6v-10,-4,-19,-8,-28,-15v-9,-7,-18,-14,-26,-23v-13,-13,-12,-13,-26,-28v-17,0,-33,-4,-47,-11v-14,-7,-26,-16,-36,-27v-10,-11,-18,-25,-23,-40v-5,-15,-8,-32,-8,-49v0,-40,11,-72,34,-96v23,-25,55,-37,93,-37v36,0,65,11,87,35v22,23,33,54,33,93v0,30,-6,56,-20,78v-14,21,-33,36,-57,45","w":272},"R":{"d":"240,0r-65,0r-39,-65v-3,-5,-6,-9,-9,-13v-3,-4,-5,-7,-8,-10v-3,-3,-5,-5,-8,-6v-3,-1,-6,-3,-10,-3r-15,0r0,97r-57,0r0,-252r90,0v61,0,92,22,92,68v0,9,-1,18,-4,25v-3,7,-7,14,-12,20v-5,6,-11,11,-18,15v-7,4,-14,9,-23,11r0,0v4,1,7,3,11,6v4,3,7,5,10,9r9,12v0,0,7,7,9,11xm86,-210r0,71r24,0v12,0,23,-4,30,-11v8,-7,11,-15,11,-26v0,-22,-14,-34,-40,-34r-25,0","w":235},"S":{"d":"17,-10r0,-56v10,9,21,15,33,19v12,4,25,7,37,7v7,0,13,-1,18,-2v5,-1,10,-4,14,-6v4,-2,6,-5,8,-8v2,-3,2,-6,2,-10v0,-5,-1,-9,-4,-13v-3,-4,-6,-8,-11,-11v-5,-3,-11,-6,-18,-9v-7,-3,-13,-6,-21,-9v-20,-8,-34,-19,-44,-31v-10,-12,-15,-25,-15,-42v0,-13,3,-25,8,-34v5,-9,13,-18,22,-24v9,-6,19,-10,31,-13v12,-3,25,-4,38,-4v13,0,25,0,35,2v10,2,19,4,28,7r0,53v-4,-3,-9,-6,-14,-8v-5,-2,-10,-4,-15,-5v-5,-1,-11,-3,-16,-4v-5,-1,-10,-1,-15,-1v-6,0,-12,1,-17,2v-5,1,-10,3,-14,5v-4,2,-6,5,-8,8v-2,3,-3,7,-3,11v0,4,1,8,3,11v2,3,6,7,10,10v4,3,9,5,15,8v6,3,13,6,20,9v10,4,19,9,27,14v8,5,14,10,20,16v6,6,11,12,14,20v3,8,4,17,4,27v0,14,-3,26,-8,36v-5,10,-13,17,-22,23v-9,6,-19,10,-31,13v-12,3,-26,3,-39,3v-14,0,-27,-1,-39,-3v-12,-2,-24,-6,-33,-11","w":201},"T":{"d":"206,-206r-72,0r0,206r-57,0r0,-206r-72,0r0,-46r201,0r0,46","w":210},"U":{"d":"234,-109v0,76,-35,113,-106,113v-68,0,-102,-37,-102,-111r0,-145r57,0r0,146v0,41,16,61,48,61v31,0,47,-20,47,-59r0,-148r56,0r0,143","w":260},"V":{"d":"239,-252r-87,252r-64,0r-86,-252r61,0r52,175v3,9,5,18,6,25r1,0v1,-8,2,-16,5,-25r52,-175r60,0","w":240},"W":{"d":"359,-252r-67,252r-63,0r-42,-162v-2,-8,-4,-18,-4,-28r-1,0v-1,11,-2,21,-4,28r-43,162r-66,0r-66,-252r62,0r36,168v2,7,2,17,3,29r1,0v0,-9,2,-19,5,-30r46,-167r61,0r41,169v2,6,3,15,4,27r1,0v0,-9,1,-19,3,-28r35,-168r58,0","w":361},"X":{"d":"235,0r-68,0r-43,-82v-2,-3,-3,-9,-5,-17r-1,0v-1,4,-3,10,-6,18r-43,81r-68,0r80,-126r-73,-126r69,0r36,76v3,6,6,13,8,21r0,0v1,-5,4,-12,8,-22r40,-75r64,0r-76,125","w":235},"Y":{"d":"219,-252r-82,162r0,90r-57,0r0,-89r-80,-163r65,0r40,94v1,2,3,9,6,21r1,0v2,-8,3,-15,5,-20r42,-95r60,0","w":218},"Z":{"d":"210,0r-203,0r0,-33r129,-173r-119,0r0,-46r193,0r0,32r-127,174r127,0r0,46","w":218},"[":{"d":"121,57r-83,0r0,-309r83,0r0,35r-37,0r0,239r37,0r0,35","w":132},"\\":{"d":"169,42r-49,0r-120,-294r49,0","w":156},"]":{"d":"95,57r-83,0r0,-35r37,0r0,-239r-37,0r0,-35r83,0r0,309","w":132},"^":{"d":"220,-107r-43,0r-51,-103r0,0r-48,103r-42,0r75,-149r29,0","w":254},"_":{"d":"149,52r-149,0r0,-21r149,0r0,21","w":149},"`":{"d":"105,-208r-40,0r-55,-57r49,0","w":113},"a":{"d":"173,0r-52,0r0,-26r-1,0v-12,20,-30,30,-54,30v-17,0,-31,-4,-41,-14v-10,-10,-15,-23,-15,-40v0,-35,21,-56,62,-61r49,-6v0,-20,-11,-30,-32,-30v-21,0,-42,7,-61,20r0,-42v8,-4,19,-8,32,-11v13,-3,25,-4,36,-4v51,0,77,25,77,76r0,108xm121,-73r0,-12r-33,4v-18,2,-27,10,-27,24v0,6,3,12,7,16v4,4,10,6,18,6v10,0,18,-4,25,-11v7,-7,10,-16,10,-27","w":193},"b":{"d":"80,-21r-1,0r0,21r-56,0r0,-266r56,0r0,113r1,0v14,-21,33,-31,58,-31v23,0,41,8,54,24v13,16,19,37,19,65v0,30,-7,54,-22,72v-15,18,-35,27,-59,27v-22,0,-39,-8,-50,-25xm78,-97r0,19v0,12,3,20,10,28v7,8,16,12,26,12v13,0,22,-5,29,-15v7,-10,11,-23,11,-41v0,-15,-4,-27,-10,-35v-6,-8,-15,-13,-27,-13v-11,0,-21,5,-28,13v-7,8,-11,19,-11,32","w":223},"c":{"d":"160,-7v-13,7,-31,11,-55,11v-28,0,-50,-8,-67,-25v-17,-17,-25,-39,-25,-65v0,-31,9,-54,27,-72v18,-18,43,-26,74,-26v21,0,37,2,46,8r0,47v-12,-9,-25,-13,-39,-13v-16,0,-29,5,-38,14v-9,9,-14,23,-14,39v0,16,4,28,13,37v9,9,21,14,37,14v14,0,28,-4,41,-13r0,44","w":172},"d":{"d":"200,0r-56,0r0,-25r-1,0v-13,19,-31,29,-55,29v-22,0,-41,-7,-55,-23v-14,-16,-20,-39,-20,-67v0,-30,7,-54,22,-72v15,-18,36,-26,60,-26v23,0,39,8,48,25r1,0r0,-107r56,0r0,266xm145,-88r0,-13v0,-12,-3,-21,-10,-29v-7,-8,-16,-12,-27,-12v-12,0,-22,5,-29,15v-7,10,-10,22,-10,39v0,16,3,28,10,37v7,9,16,13,28,13v11,0,20,-5,27,-14v7,-9,11,-21,11,-36","w":222},"e":{"d":"185,-74r-117,0v2,26,18,39,49,39v20,0,37,-5,52,-14r0,40v-17,9,-38,13,-65,13v-29,0,-51,-8,-67,-24v-16,-16,-24,-38,-24,-67v0,-30,9,-54,26,-71v17,-17,39,-26,64,-26v26,0,47,7,61,23v14,16,21,36,21,63r0,24xm134,-108v0,-26,-11,-39,-32,-39v-9,0,-16,4,-23,11v-7,7,-11,17,-12,28r67,0","w":194},"f":{"d":"141,-224v-7,-3,-14,-4,-21,-4v-18,0,-26,10,-26,29r0,19r41,0r0,41r-41,0r0,139r-56,0r0,-139r-30,0r0,-41r30,0r0,-22v0,-21,7,-37,20,-50v13,-13,32,-19,55,-19v11,0,20,2,28,4r0,43","w":137},"g":{"d":"200,-21v0,33,-10,60,-29,78v-19,18,-47,28,-84,28v-24,0,-44,-4,-58,-11r0,-47v19,11,37,17,56,17v19,0,34,-5,44,-15v10,-10,15,-24,15,-41r0,-14r0,0v-13,20,-31,30,-56,30v-23,0,-42,-8,-55,-24v-13,-16,-20,-38,-20,-65v0,-30,7,-55,22,-73v15,-18,35,-26,59,-26v22,0,39,8,50,25r0,0r0,-21r56,0r0,159xm145,-86r0,-15v0,-11,-3,-21,-10,-29v-7,-8,-15,-12,-26,-12v-12,0,-22,5,-29,15v-7,10,-11,23,-11,40v0,15,3,27,10,36v7,9,16,13,28,13v11,0,20,-4,27,-13v7,-9,11,-20,11,-35","w":222},"h":{"d":"196,0r-55,0r0,-102v0,-26,-10,-40,-29,-40v-10,0,-18,4,-24,11v-6,7,-9,17,-9,28r0,103r-56,0r0,-266r56,0r0,113r1,0v14,-21,32,-31,55,-31v41,0,61,24,61,73r0,111","w":216},"i":{"d":"52,-208v-9,0,-18,-3,-24,-9v-6,-6,-8,-12,-8,-20v0,-8,2,-16,8,-21v6,-5,15,-8,24,-8v9,0,17,3,23,8v6,5,8,13,8,21v0,8,-2,15,-8,20v-6,5,-14,9,-23,9xm79,0r-56,0r0,-180r56,0r0,180","w":102},"j":{"d":"52,-208v-9,0,-18,-3,-24,-9v-6,-6,-8,-12,-8,-20v0,-8,2,-16,8,-21v6,-5,15,-8,24,-8v9,0,17,3,23,8v6,5,8,13,8,21v0,8,-2,15,-8,20v-6,5,-14,9,-23,9xm79,-3v0,27,-7,48,-20,64v-13,16,-32,24,-56,24v-8,0,-16,-2,-26,-6r0,-43v8,4,14,6,20,6v17,0,26,-14,26,-41r0,-181r56,0r0,177","w":102},"k":{"d":"204,0r-67,0r-57,-89r-1,0r0,89r-56,0r0,-266r56,0r0,169r1,0r53,-83r66,0r-64,85","w":201},"l":{"d":"79,0r-56,0r0,-266r56,0r0,266","w":102},"m":{"d":"309,0r-55,0r0,-103v0,-26,-10,-39,-29,-39v-9,0,-16,4,-22,12v-6,8,-9,17,-9,29r0,101r-55,0r0,-104v0,-25,-10,-38,-29,-38v-9,0,-17,3,-23,11v-6,8,-8,18,-8,31r0,100r-56,0r0,-180r56,0r0,28r1,0v6,-10,14,-17,24,-23v10,-6,22,-9,34,-9v25,0,43,11,52,33v14,-22,33,-33,60,-33v39,0,59,24,59,72r0,112","w":329},"n":{"d":"197,0r-55,0r0,-100v0,-28,-10,-42,-30,-42v-10,0,-18,4,-24,11v-6,7,-9,17,-9,28r0,103r-56,0r0,-180r56,0r0,28r1,0v13,-22,32,-32,57,-32v40,0,60,25,60,74r0,110","w":217},"o":{"d":"109,4v-30,0,-54,-8,-71,-25v-17,-17,-25,-39,-25,-68v0,-30,8,-53,26,-70v18,-17,43,-25,73,-25v30,0,53,8,70,25v17,17,25,39,25,67v0,30,-8,53,-26,70v-18,17,-42,26,-72,26xm111,-142v-13,0,-24,5,-31,14v-7,9,-11,21,-11,38v0,35,14,52,42,52v27,0,40,-17,40,-53v0,-34,-13,-51,-40,-51","w":220},"p":{"d":"80,-21r-1,0r0,104r-56,0r0,-263r56,0r0,27r1,0v14,-21,32,-31,57,-31v23,0,42,8,55,24v13,16,19,37,19,65v0,30,-8,54,-23,72v-15,18,-34,27,-59,27v-22,0,-38,-8,-49,-25xm78,-95r0,15v0,12,3,22,10,30v7,8,15,12,26,12v13,0,22,-5,29,-15v7,-10,11,-23,11,-41v0,-32,-12,-48,-37,-48v-11,0,-21,4,-28,13v-7,9,-11,20,-11,34","w":223},"q":{"d":"200,83r-56,0r0,-108r-1,0v-13,19,-31,29,-55,29v-23,0,-41,-7,-55,-23v-14,-16,-20,-39,-20,-67v0,-30,7,-54,22,-72v15,-18,35,-26,59,-26v22,0,38,8,49,25r1,0r0,-21r56,0r0,263xm145,-86r0,-14v0,-12,-3,-22,-10,-30v-7,-8,-15,-12,-26,-12v-12,0,-22,5,-29,15v-7,10,-11,23,-11,40v0,15,3,27,10,36v7,9,16,13,27,13v12,0,21,-4,28,-13v7,-9,11,-21,11,-35","w":222},"r":{"d":"141,-130v-7,-4,-15,-5,-24,-5v-12,0,-21,4,-28,13v-7,9,-10,21,-10,36r0,86r-56,0r0,-180r56,0r0,33r1,0v9,-24,24,-36,47,-36v6,0,11,1,14,2r0,51","w":143},"s":{"d":"12,-5r0,-45v9,6,18,10,27,13v9,3,18,4,26,4v10,0,17,-1,23,-4v6,-3,9,-7,9,-13v0,-4,-1,-7,-4,-9v-3,-2,-6,-4,-10,-6v-4,-2,-9,-3,-14,-4v-5,-1,-9,-3,-13,-5v-7,-3,-14,-6,-19,-9v-5,-3,-10,-7,-14,-11v-4,-4,-6,-9,-8,-14v-2,-5,-3,-12,-3,-19v0,-10,2,-19,6,-26v4,-7,11,-13,18,-18v7,-5,16,-8,25,-10v9,-2,19,-3,29,-3v8,0,17,0,25,1v8,1,16,4,24,6r0,43v-7,-4,-15,-8,-23,-10v-8,-2,-15,-3,-23,-3v-4,0,-8,0,-11,1v-3,1,-6,2,-8,3v-2,1,-5,3,-6,5v-1,2,-2,5,-2,7v0,3,1,6,3,8v2,2,5,4,8,6v3,2,8,4,12,5r12,4v7,3,14,5,20,8v6,3,11,7,15,11v4,4,8,8,10,14v2,6,4,12,4,20v0,11,-2,19,-7,27v-5,8,-11,14,-19,19v-8,5,-16,8,-26,10v-10,2,-20,3,-31,3v-20,0,-38,-3,-55,-9","w":158},"t":{"d":"132,-2v-8,4,-20,6,-37,6v-39,0,-59,-20,-59,-61r0,-82r-29,0r0,-41r29,0r0,-39r56,-16r0,55r40,0r0,41r-40,0r0,73v0,19,7,28,22,28v6,0,12,-2,18,-5r0,41","w":140},"u":{"d":"194,0r-55,0r0,-27r-1,0v-14,21,-32,31,-55,31v-42,0,-62,-24,-62,-75r0,-109r55,0r0,104v0,25,10,38,30,38v10,0,18,-4,24,-11v6,-7,9,-16,9,-28r0,-103r55,0r0,180","w":217},"v":{"d":"195,-180r-67,180r-63,0r-64,-180r59,0r31,111v4,13,6,23,7,32r0,0v1,-8,3,-19,7,-31r32,-112r58,0","w":195},"w":{"d":"284,-180r-52,180r-58,0r-27,-105v-2,-7,-3,-15,-3,-23r-1,0v-1,9,-1,16,-3,22r-29,106r-57,0r-51,-180r56,0r25,117v1,6,2,12,3,20r1,0v1,-8,1,-14,3,-20r31,-117r53,0r28,117v1,3,1,10,2,21r1,0r3,-21r24,-117r51,0","w":287},"x":{"d":"197,-180r-59,87r59,93r-64,0r-26,-49v-2,-4,-5,-9,-8,-16r0,0v-2,5,-5,10,-8,16r-26,49r-64,0r61,-90r-57,-90r64,0r26,50v3,7,6,12,7,17r1,0v2,-6,5,-11,8,-17r26,-50r60,0","w":198},"y":{"d":"195,-180r-73,194v-18,47,-45,71,-80,71v-13,0,-24,-2,-33,-5r0,-44v7,4,15,6,24,6v14,0,24,-7,30,-20r9,-22r-73,-180r62,0r33,110v2,7,4,15,5,24r1,0v1,-7,3,-15,6,-24r34,-110r55,0","w":193},"z":{"d":"166,0r-162,0r0,-23r91,-116r-82,0r0,-41r152,0r0,27r-85,112r86,0r0,41","w":172},"{":{"d":"118,57v-26,0,-43,-5,-55,-14v-12,-9,-18,-26,-18,-50r0,-42v0,-22,-8,-32,-26,-32r0,-33v18,0,26,-11,26,-33r0,-40v0,-24,7,-40,18,-50v11,-10,29,-15,55,-15r0,33v-19,0,-28,10,-28,30r0,38v0,28,-9,46,-27,53r0,1v18,7,27,25,27,54r0,36v0,11,3,19,7,24v4,5,11,7,21,7r0,33","w":132},"|":{"d":"81,85r-44,0r0,-360r44,0r0,360","w":117},"}":{"d":"114,-81v-18,0,-26,10,-26,32r0,41v0,25,-7,42,-18,51v-11,9,-29,14,-55,14r0,-33v10,0,17,-2,21,-7v4,-5,7,-13,7,-24r0,-37v0,-28,9,-46,27,-53r0,-1v-18,-7,-27,-26,-27,-55r0,-36v0,-20,-9,-30,-28,-30r0,-33v26,0,44,5,55,15v11,10,18,26,18,50r0,40v0,22,8,33,26,33r0,33","w":132},"~":{"d":"221,-136v-1,20,-6,36,-16,47v-10,11,-23,17,-39,17v-12,0,-28,-5,-46,-15v-13,-7,-21,-11,-27,-11v-14,0,-22,9,-23,28r-36,0v1,-20,6,-36,16,-47v10,-11,23,-17,40,-17v13,0,27,4,42,13v15,9,25,14,31,14v6,0,12,-3,16,-8v4,-5,6,-12,6,-21r36,0","w":254},"\u00a1":{"d":"59,-127v-9,0,-17,-3,-23,-8v-6,-5,-9,-12,-9,-20v0,-8,3,-15,9,-21v6,-6,14,-8,23,-8v9,0,17,2,23,8v6,6,9,13,9,21v0,8,-3,15,-9,20v-6,5,-14,8,-23,8xm89,72r-59,0r7,-174r45,0","w":117},"\u00a2":{"d":"176,-36v-9,5,-18,7,-31,9r0,34r-29,0r0,-33v-25,-1,-46,-10,-62,-26v-16,-16,-24,-37,-24,-63v0,-27,7,-51,23,-68v16,-17,37,-27,63,-30r0,-37r29,0r0,37v13,1,23,3,31,8r0,47v-9,-7,-19,-11,-31,-12r0,101v13,-2,22,-6,31,-12r0,45xm116,-70r0,-98v-23,7,-34,23,-34,49v0,26,11,42,34,49"},"\u00a3":{"d":"196,0r-171,0r0,-40v23,-6,34,-22,34,-47r0,-21r-30,0r0,-38r30,0r0,-33v0,-23,8,-42,22,-56v14,-14,34,-21,58,-21v15,0,28,2,41,8r0,46v-11,-8,-24,-12,-37,-12v-22,0,-32,14,-32,41r0,27r47,0r0,38r-47,0r0,16v0,22,-9,37,-27,49r112,0r0,43"},"\u00a4":{"d":"191,-63r-25,26r-25,-25v-12,8,-26,11,-41,11v-15,0,-29,-3,-41,-11r-25,25r-25,-26r25,-24v-8,-13,-12,-26,-12,-40v0,-14,4,-28,12,-41r-25,-24r25,-26r25,25v12,-8,26,-11,41,-11v15,0,29,3,41,11r25,-25r25,26r-25,24v8,13,12,27,12,41v0,13,-4,27,-12,40xm100,-170v-12,0,-22,5,-30,13v-8,8,-12,17,-12,29v0,12,4,22,12,30v8,8,18,12,30,12v12,0,22,-4,30,-12v8,-8,13,-18,13,-30v0,-11,-4,-21,-13,-29v-9,-8,-19,-13,-30,-13","w":200},"\u00a5":{"d":"203,-252r-62,113r44,0r0,33r-53,0r0,27r53,0r0,33r-53,0r0,46r-54,0r0,-46r-56,0r0,-33r56,0r0,-27r-56,0r0,-33r45,0r-60,-113r57,0r43,100r1,0v0,-1,2,-7,6,-16r36,-84r53,0"},"\u00a6":{"d":"81,-120r-44,0r0,-155r44,0r0,155xm81,85r-44,0r0,-158r44,0r0,158","w":117},"\u00a7":{"d":"132,-76v10,9,15,18,15,30v0,17,-6,32,-19,42v-13,10,-30,16,-51,16v-19,0,-36,-4,-51,-12r0,-44v21,12,40,19,55,19v15,0,22,-6,22,-18v0,-7,-6,-13,-17,-19v-17,-8,-28,-14,-36,-20v-8,-6,-15,-12,-20,-20v-5,-8,-7,-17,-7,-26v0,-17,7,-31,22,-42v-10,-10,-15,-22,-15,-37v0,-16,6,-30,18,-40v12,-10,28,-15,48,-15v16,0,32,4,46,10r0,44v-16,-11,-32,-17,-46,-17v-14,0,-22,5,-22,16v0,5,2,10,7,14v5,4,16,9,33,17v30,13,44,31,44,54v0,20,-9,36,-26,48xm76,-152v-8,4,-11,11,-11,19v0,7,2,13,8,18v6,5,17,12,32,18v8,-5,11,-13,11,-22v0,-7,-3,-12,-9,-17v-6,-5,-17,-10,-31,-16","w":174},"\u00a8":{"d":"123,-208v-8,0,-15,-2,-20,-7v-5,-5,-7,-11,-7,-18v0,-7,2,-13,7,-17v5,-4,12,-7,20,-7v8,0,14,2,19,7v5,5,8,10,8,17v0,7,-3,13,-8,18v-5,5,-11,7,-19,7xm42,-208v-8,0,-14,-2,-19,-7v-5,-5,-8,-11,-8,-18v0,-7,3,-12,8,-17v5,-5,11,-7,19,-7v8,0,15,2,20,7v5,5,7,10,7,17v0,7,-2,14,-7,18v-5,4,-12,7,-20,7","w":166},"\u00a9":{"d":"157,4v-39,0,-71,-12,-96,-36v-25,-24,-38,-55,-38,-93v0,-37,13,-69,39,-94v26,-25,57,-37,96,-37v38,0,71,12,96,36v25,24,38,56,38,94v0,37,-13,68,-39,93v-26,25,-58,37,-96,37xm158,-237v-32,0,-59,11,-80,32v-21,21,-32,47,-32,79v0,32,11,58,32,79v21,21,48,32,80,32v31,0,57,-11,78,-32v21,-21,33,-48,33,-79v0,-32,-11,-58,-32,-79v-21,-21,-47,-32,-79,-32xm212,-52v-15,8,-32,12,-49,12v-24,0,-44,-7,-60,-23v-16,-16,-25,-35,-25,-59v0,-27,9,-49,26,-65v17,-16,38,-25,65,-25v15,0,29,4,42,10r0,41v-11,-9,-26,-13,-43,-13v-13,0,-24,4,-33,13v-9,9,-14,21,-14,36v0,14,5,26,14,35v9,9,21,13,35,13v17,0,31,-4,42,-13r0,38","w":314},"\u00aa":{"d":"130,-126r-38,0r0,-15r0,0v-10,13,-24,19,-39,19v-12,0,-21,-4,-29,-11v-8,-7,-11,-17,-11,-28v0,-25,15,-39,46,-43r33,-4v0,-13,-8,-20,-24,-20v-14,0,-28,4,-43,13r0,-31v15,-7,31,-10,50,-10v36,0,55,18,55,53r0,77xm92,-173r0,-12r-21,3v-14,2,-21,7,-21,16v0,10,7,16,19,16v6,0,11,-2,16,-7v5,-5,7,-10,7,-16","w":147},"\u00ab":{"d":"200,-35r-47,0r-58,-59r58,-61r47,0r-59,61xm114,-35r-47,0r-58,-59r58,-61r47,0r-59,61","w":209},"\u00ac":{"d":"213,-47r-35,0r0,-68r-136,0r0,-36r171,0r0,104","w":254},"\u00ad":{"d":"121,-77r-96,0r0,-38r96,0r0,38","w":145},"\u00ae":{"d":"157,4v-39,0,-71,-12,-96,-36v-25,-24,-38,-55,-38,-93v0,-37,13,-69,39,-94v26,-25,57,-37,96,-37v38,0,71,12,96,36v25,24,38,56,38,94v0,37,-13,68,-39,93v-26,25,-58,37,-96,37xm158,-237v-32,0,-59,11,-80,32v-21,21,-32,47,-32,79v0,32,11,58,32,79v21,21,48,32,80,32v31,0,57,-11,78,-32v21,-21,33,-48,33,-79v0,-32,-11,-58,-32,-79v-21,-21,-47,-32,-79,-32xm226,-46r-44,0r-14,-41v-5,-14,-11,-22,-19,-22r-13,0r0,63r-37,0r0,-162r56,0v43,0,65,15,65,46v0,22,-13,36,-38,42r0,1v11,2,19,11,25,26xm136,-178r0,41r20,0v16,0,24,-7,24,-21v0,-13,-9,-20,-28,-20r-16,0","w":314},"\u00af":{"d":"149,-245r-149,0r0,-21r149,0r0,21","w":149},"\u00b0":{"d":"70,-157v-14,0,-25,-5,-35,-15v-10,-10,-15,-21,-15,-35v0,-14,5,-26,15,-35v10,-9,21,-14,35,-14v14,0,26,5,36,14v10,9,14,21,14,35v0,14,-4,25,-14,35v-10,10,-22,15,-36,15xm70,-230v-6,0,-12,3,-16,7v-4,4,-7,10,-7,16v0,6,3,11,7,16v4,5,10,7,16,7v6,0,12,-2,16,-7v4,-5,7,-10,7,-16v0,-6,-3,-12,-7,-16v-4,-4,-10,-7,-16,-7","w":136},"\u00b1":{"d":"213,-122r-68,0r0,68r-35,0r0,-68r-67,0r0,-36r67,0r0,-68r35,0r0,68r68,0r0,36xm213,0r-171,0r0,-36r171,0r0,36","w":254},"\u00b2":{"d":"127,-155r-106,0r0,-28r43,-41v9,-9,15,-15,17,-19v2,-4,3,-10,3,-15v0,-5,-2,-9,-5,-12v-3,-3,-7,-5,-13,-5v-11,0,-24,6,-37,18r0,-38v14,-9,29,-13,44,-13v16,0,29,4,38,12v9,8,14,19,14,33v0,8,-3,17,-7,25v-4,8,-15,19,-32,34r-18,17r0,0r59,0r0,32","w":145},"\u00b3":{"d":"23,-161r0,-32v13,8,26,12,39,12v18,0,26,-6,26,-18v0,-12,-10,-18,-30,-18r-21,0r0,-29r20,0v17,0,26,-6,26,-17v0,-11,-6,-16,-20,-16v-13,0,-24,4,-35,12r0,-31v12,-7,26,-10,42,-10v16,0,28,3,37,10v9,7,14,17,14,29v0,17,-9,28,-26,34r0,1v20,5,31,16,31,34v0,14,-7,26,-18,35v-11,9,-26,13,-45,13v-16,0,-29,-3,-40,-9","w":145},"\u00b4":{"d":"105,-265r-55,57r-40,0r45,-57r50,0","w":109},"\u00b5":{"d":"204,0r-57,0v-3,-8,-4,-17,-4,-27r-1,0v-7,21,-19,31,-38,31v-11,0,-20,-3,-25,-11r0,0r0,76r-56,0r0,-249r56,0r0,104v0,24,10,36,30,36v22,0,32,-15,32,-45r0,-95r56,0r0,125v0,28,2,46,7,55","w":220},"\u00b6":{"d":"166,-224r-20,0r0,224r-31,0r0,-224r-21,0r0,224r-31,0r0,-147v-13,-1,-24,-6,-33,-16v-9,-10,-14,-22,-14,-37v0,-15,5,-27,15,-37v10,-10,22,-15,37,-15r98,0r0,28","w":183},"\u00b7":{"d":"48,-86v-9,0,-17,-2,-23,-8v-6,-6,-9,-13,-9,-21v0,-8,4,-16,10,-21v6,-5,14,-8,23,-8v9,0,17,4,23,9v6,5,9,12,9,20v0,9,-3,16,-9,21v-6,5,-14,8,-24,8","w":97},"\u00b8":{"d":"9,79r0,-24v4,1,9,1,13,1v14,0,21,-4,21,-13v0,-8,-6,-11,-19,-11r-7,0r0,-32r30,0r0,14v22,1,33,11,33,30v0,24,-19,36,-56,36v-5,0,-10,-1,-15,-1","w":77},"\u00b9":{"d":"127,-155r-99,0r0,-31r31,0r0,-83r-34,7r0,-32r72,-14r0,122r30,0r0,31","w":141},"\u00ba":{"d":"81,-122v-22,0,-39,-6,-51,-18v-12,-12,-18,-28,-18,-49v0,-21,6,-37,19,-49v13,-12,30,-18,52,-18v21,0,38,6,50,18v12,12,18,28,18,47v0,22,-7,38,-19,50v-12,12,-29,19,-51,19xm82,-225v-19,0,-29,12,-29,36v0,24,10,36,29,36v19,0,28,-13,28,-37v0,-24,-9,-35,-28,-35","w":164},"\u00bb":{"d":"200,-94r-58,59r-47,0r59,-59r-59,-61r47,0xm114,-94r-57,59r-48,0r59,-59r-58,-61r47,0","w":209},"\u00bc":{"d":"119,-103r-99,0r0,-30r31,0r0,-84r-34,7r0,-31r72,-15r0,123r30,0r0,30xm265,-252r-157,252r-43,0r157,-252r43,0xm324,-31r-19,0r0,31r-37,0r0,-31r-70,0r0,-25r62,-93r45,0r0,91r19,0r0,27xm268,-119r-1,0v-2,4,-4,8,-7,13r-30,48r38,0r0,-46r0,-15","w":342},"\u00bd":{"d":"119,-103r-99,0r0,-30r31,0r0,-84r-34,7r0,-31r72,-15r0,123r30,0r0,30xm265,-252r-157,252r-43,0r157,-252r43,0xm324,0r-106,0r0,-28r43,-41v9,-9,15,-15,17,-19v2,-4,3,-9,3,-14v0,-5,-2,-10,-5,-13v-3,-3,-7,-5,-13,-5v-11,0,-24,7,-37,19r0,-38v14,-9,29,-14,44,-14v16,0,29,4,38,12v9,8,14,19,14,33v0,8,-3,17,-7,25v-4,8,-14,20,-31,35r-19,16r0,1r59,0r0,31","w":347},"\u00be":{"d":"23,-108r0,-32v13,8,26,12,39,12v18,0,26,-6,26,-18v0,-12,-10,-18,-30,-18r-21,0r0,-29r20,0v17,0,26,-6,26,-17v0,-11,-6,-16,-20,-16v-13,0,-24,3,-35,11r0,-31v12,-7,26,-10,42,-10v16,0,28,4,37,11v9,7,14,16,14,28v0,17,-9,29,-26,35r0,0v20,5,31,17,31,35v0,14,-7,26,-18,35v-11,9,-26,13,-45,13v-16,0,-29,-3,-40,-9xm275,-252r-157,252r-42,0r156,-252r43,0xm333,-31r-20,0r0,31r-37,0r0,-31r-70,0r0,-25r62,-93r45,0r0,91r20,0r0,27xm277,-119r-2,0v-2,4,-4,8,-7,13r-29,48r37,0r0,-46v0,-6,1,-11,1,-15","w":352},"\u00bf":{"d":"114,-107v1,3,1,6,2,10v1,4,1,8,1,11v0,5,0,10,-1,14v-1,4,-3,9,-5,13v-2,4,-5,7,-8,11v-3,4,-7,7,-11,11v-4,4,-8,7,-11,10v-3,3,-7,7,-9,10v-2,3,-4,7,-5,10v-1,3,-2,8,-2,12v0,4,1,7,2,10v1,3,3,6,5,8v2,2,6,4,9,5v3,1,8,2,12,2v9,0,18,-2,28,-6v10,-4,19,-9,28,-17r0,53v-9,5,-18,9,-29,12v-11,3,-23,4,-34,4v-11,0,-21,-2,-30,-4v-9,-2,-17,-6,-24,-11v-7,-5,-13,-12,-17,-20v-4,-8,-6,-18,-6,-29v0,-7,1,-13,3,-19v2,-6,4,-12,7,-17v3,-5,7,-9,12,-14v5,-5,10,-10,16,-15v4,-3,8,-7,11,-10v3,-3,5,-5,7,-8v2,-3,4,-6,5,-9v1,-3,2,-7,2,-11v0,-3,0,-6,-1,-9v-1,-3,-2,-5,-3,-7r46,0xm88,-184v9,0,17,2,23,8v6,6,10,13,10,21v0,8,-4,14,-10,20v-6,6,-14,9,-23,9v-9,0,-17,-3,-23,-9v-6,-5,-9,-12,-9,-20v0,-9,3,-16,9,-21v6,-6,14,-8,23,-8","w":157},"\u00c0":{"d":"250,0r-61,0r-18,-56r-90,0r-18,56r-61,0r92,-252r67,0xm158,-100r-27,-84v-2,-6,-4,-14,-5,-23r-1,0v-1,7,-2,15,-4,22r-28,85r65,0xm161,-275r-40,0r-55,-57r49,0","w":253},"\u00c1":{"d":"250,0r-61,0r-18,-56r-90,0r-18,56r-61,0r92,-252r67,0xm158,-100r-27,-84v-2,-6,-4,-14,-5,-23r-1,0v-1,7,-2,15,-4,22r-28,85r65,0xm182,-332r-55,57r-40,0r45,-57r50,0","w":253},"\u00c2":{"d":"189,-275r-36,0r-28,-33r-26,33r-36,0r41,-58r44,0xm250,0r-61,0r-18,-56r-90,0r-18,56r-61,0r92,-252r67,0xm158,-100r-27,-84v-2,-6,-4,-14,-5,-23r-1,0v-1,7,-2,15,-4,22r-28,85r65,0","w":253},"\u00c3":{"d":"189,-330v0,16,-2,29,-9,38v-7,9,-16,13,-27,13v-10,0,-20,-2,-30,-7v-10,-6,-17,-8,-21,-8v-9,0,-14,6,-14,19r-25,0v0,-16,4,-29,10,-38v6,-9,15,-14,27,-14v9,0,19,3,29,9v9,5,16,7,21,7v9,0,14,-6,14,-19r25,0xm250,0r-61,0r-18,-56r-90,0r-18,56r-61,0r92,-252r67,0xm158,-100r-27,-84v-2,-6,-4,-14,-5,-23r-1,0v-1,7,-2,15,-4,22r-28,85r65,0","w":253},"\u00c4":{"d":"250,0r-61,0r-18,-56r-90,0r-18,56r-61,0r92,-252r67,0xm158,-100r-27,-84v-2,-6,-4,-14,-5,-23r-1,0v-1,7,-2,15,-4,22r-28,85r65,0xm166,-275v-8,0,-15,-2,-20,-7v-5,-5,-7,-11,-7,-18v0,-7,2,-13,7,-17v5,-4,12,-7,20,-7v8,0,14,2,19,7v5,5,8,10,8,17v0,7,-3,13,-8,18v-5,5,-11,7,-19,7xm85,-275v-8,0,-14,-2,-19,-7v-5,-5,-8,-11,-8,-18v0,-7,3,-12,8,-17v5,-5,11,-7,19,-7v8,0,15,2,20,7v5,5,7,10,7,17v0,7,-2,14,-7,18v-5,4,-12,7,-20,7","w":253},"\u00c5":{"d":"250,0r-61,0r-18,-56r-90,0r-18,56r-61,0r90,-247v-6,-6,-10,-14,-10,-24v0,-12,4,-23,13,-30v9,-7,19,-11,32,-11v13,0,24,4,32,11v8,7,13,17,13,29v0,9,-4,17,-10,24xm126,-289v-6,0,-10,2,-13,5v-3,3,-5,7,-5,12v0,11,6,17,18,17v6,0,11,-2,14,-5v3,-3,5,-7,5,-12v0,-5,-2,-9,-5,-12v-3,-3,-8,-5,-14,-5xm157,-103r-27,-81v-2,-5,-3,-12,-4,-21r-1,0v-1,8,-2,14,-4,20r-27,82r63,0","w":253},"\u00c6":{"d":"325,0r-151,0r0,-56r-83,0r-25,56r-66,0r127,-252r192,0r0,46r-88,0r0,56r82,0r0,46r-82,0r0,58r94,0r0,46xm174,-100r0,-106r-14,0r-49,106r63,0","w":336},"\u00c7":{"d":"210,-9v-18,9,-43,13,-73,13v-39,0,-69,-11,-91,-34v-22,-23,-33,-53,-33,-91v0,-40,12,-73,37,-98v25,-25,57,-37,97,-37v25,0,46,3,63,9r0,55v-17,-10,-36,-15,-58,-15v-24,0,-42,7,-57,22v-15,15,-22,35,-22,60v0,24,6,45,20,59v14,14,33,21,56,21v22,0,43,-5,61,-16r0,52xm107,79r0,-24v4,1,9,1,13,1v14,0,21,-4,21,-13v0,-8,-6,-11,-19,-11r-7,0r0,-32r30,0r0,14v22,1,33,11,33,30v0,24,-19,36,-56,36v-5,0,-10,-1,-15,-1","w":224},"\u00c8":{"d":"180,0r-151,0r0,-252r145,0r0,46r-88,0r0,56r82,0r0,46r-82,0r0,58r94,0r0,46xm135,-275r-40,0r-55,-57r49,0","w":191},"\u00c9":{"d":"180,0r-151,0r0,-252r145,0r0,46r-88,0r0,56r82,0r0,46r-82,0r0,58r94,0r0,46xm164,-332r-55,57r-40,0r45,-57r50,0","w":191},"\u00ca":{"d":"164,-275r-37,0r-27,-33r-26,33r-37,0r42,-58r43,0xm180,0r-151,0r0,-252r145,0r0,46r-88,0r0,56r82,0r0,46r-82,0r0,58r94,0r0,46","w":191},"\u00cc":{"d":"107,-252r0,44r-21,0r0,164r21,0r0,44r-99,0r0,-44r21,0r0,-164r-21,0r0,-44r99,0xm94,-275r-40,0r-55,-57r49,0","w":114},"\u00cd":{"d":"107,-252r0,44r-21,0r0,164r21,0r0,44r-99,0r0,-44r21,0r0,-164r-21,0r0,-44r99,0xm115,-332r-55,57r-40,0r45,-57r50,0","w":114},"\u00ce":{"d":"122,-275r-37,0r-28,-33r-25,33r-37,0r42,-58r43,0xm107,-252r0,44r-21,0r0,164r21,0r0,44r-99,0r0,-44r21,0r0,-164r-21,0r0,-44r99,0","w":114},"\u00cf":{"d":"107,-252r0,44r-21,0r0,164r21,0r0,44r-99,0r0,-44r21,0r0,-164r-21,0r0,-44r99,0xm99,-275v-8,0,-15,-2,-20,-7v-5,-5,-7,-11,-7,-18v0,-7,2,-13,7,-17v5,-4,12,-7,20,-7v8,0,14,2,19,7v5,5,8,10,8,17v0,7,-3,13,-8,18v-5,5,-11,7,-19,7xm18,-275v-8,0,-14,-2,-19,-7v-5,-5,-8,-11,-8,-18v0,-7,3,-12,8,-17v5,-5,11,-7,19,-7v8,0,15,2,20,7v5,5,7,10,7,17v0,7,-2,14,-7,18v-5,4,-12,7,-20,7","w":114},"\u00d0":{"d":"29,0r0,-103r-29,0r0,-47r29,0r0,-102r89,0v90,0,134,41,134,123v0,39,-12,71,-36,94v-24,23,-57,35,-98,35r-89,0xm86,-206r0,56r47,0r0,47r-47,0r0,57r28,0v25,0,44,-7,58,-22v14,-15,21,-35,21,-60v0,-24,-7,-43,-21,-57v-14,-14,-34,-21,-59,-21r-27,0","w":265},"\u00d1":{"d":"212,-330v0,16,-3,29,-10,38v-7,9,-15,13,-26,13v-10,0,-20,-2,-30,-7v-10,-6,-18,-8,-22,-8v-9,0,-14,6,-14,19r-24,0v0,-16,3,-29,9,-38v6,-9,15,-14,27,-14v9,0,20,3,30,9v9,5,16,7,21,7v9,0,14,-6,14,-19r25,0xm256,0r-58,0r-104,-158v-6,-9,-10,-16,-12,-21r-1,0v1,9,1,22,1,40r0,139r-53,0r0,-252r61,0r100,153v5,7,9,14,13,21r0,0v-1,-6,-1,-18,-1,-35r0,-139r54,0r0,252","w":284},"\u00d2":{"d":"135,4v-36,0,-65,-12,-88,-35v-23,-23,-34,-54,-34,-92v0,-40,12,-71,35,-96v23,-25,53,-37,91,-37v36,0,66,11,88,35v22,24,33,54,33,93v0,40,-12,72,-35,96v-23,24,-53,36,-90,36xm138,-207v-20,0,-36,7,-48,22v-12,15,-17,34,-17,59v0,25,5,45,17,60v12,15,27,21,46,21v20,0,36,-7,47,-21v11,-14,17,-34,17,-59v0,-26,-5,-46,-16,-61v-11,-15,-27,-21,-46,-21xm171,-275r-40,0r-55,-57r49,0","w":272},"\u00d3":{"d":"135,4v-36,0,-65,-12,-88,-35v-23,-23,-34,-54,-34,-92v0,-40,12,-71,35,-96v23,-25,53,-37,91,-37v36,0,66,11,88,35v22,24,33,54,33,93v0,40,-12,72,-35,96v-23,24,-53,36,-90,36xm138,-207v-20,0,-36,7,-48,22v-12,15,-17,34,-17,59v0,25,5,45,17,60v12,15,27,21,46,21v20,0,36,-7,47,-21v11,-14,17,-34,17,-59v0,-26,-5,-46,-16,-61v-11,-15,-27,-21,-46,-21xm195,-332r-55,57r-40,0r45,-57r50,0","w":272},"\u00d4":{"d":"202,-275r-36,0r-28,-33r-26,33r-36,0r41,-58r43,0xm135,4v-36,0,-65,-12,-88,-35v-23,-23,-34,-54,-34,-92v0,-40,12,-71,35,-96v23,-25,53,-37,91,-37v36,0,66,11,88,35v22,24,33,54,33,93v0,40,-12,72,-35,96v-23,24,-53,36,-90,36xm138,-207v-20,0,-36,7,-48,22v-12,15,-17,34,-17,59v0,25,5,45,17,60v12,15,27,21,46,21v20,0,36,-7,47,-21v11,-14,17,-34,17,-59v0,-26,-5,-46,-16,-61v-11,-15,-27,-21,-46,-21","w":272},"\u00d5":{"d":"202,-330v0,16,-3,29,-10,38v-7,9,-16,13,-27,13v-10,0,-19,-2,-29,-7v-10,-6,-18,-8,-22,-8v-9,0,-14,6,-14,19r-25,0v0,-16,4,-29,10,-38v6,-9,15,-14,27,-14v9,0,20,3,30,9v9,5,16,7,21,7v9,0,13,-6,13,-19r26,0xm135,4v-36,0,-65,-12,-88,-35v-23,-23,-34,-54,-34,-92v0,-40,12,-71,35,-96v23,-25,53,-37,91,-37v36,0,66,11,88,35v22,24,33,54,33,93v0,40,-12,72,-35,96v-23,24,-53,36,-90,36xm138,-207v-20,0,-36,7,-48,22v-12,15,-17,34,-17,59v0,25,5,45,17,60v12,15,27,21,46,21v20,0,36,-7,47,-21v11,-14,17,-34,17,-59v0,-26,-5,-46,-16,-61v-11,-15,-27,-21,-46,-21","w":272},"\u00d6":{"d":"135,4v-36,0,-65,-12,-88,-35v-23,-23,-34,-54,-34,-92v0,-40,12,-71,35,-96v23,-25,53,-37,91,-37v36,0,66,11,88,35v22,24,33,54,33,93v0,40,-12,72,-35,96v-23,24,-53,36,-90,36xm138,-207v-20,0,-36,7,-48,22v-12,15,-17,34,-17,59v0,25,5,45,17,60v12,15,27,21,46,21v20,0,36,-7,47,-21v11,-14,17,-34,17,-59v0,-26,-5,-46,-16,-61v-11,-15,-27,-21,-46,-21xm177,-275v-8,0,-15,-2,-20,-7v-5,-5,-7,-11,-7,-18v0,-7,2,-13,7,-17v5,-4,12,-7,20,-7v8,0,14,2,19,7v5,5,8,10,8,17v0,7,-3,13,-8,18v-5,5,-11,7,-19,7xm96,-275v-8,0,-14,-2,-19,-7v-5,-5,-8,-11,-8,-18v0,-7,3,-12,8,-17v5,-5,11,-7,19,-7v8,0,15,2,20,7v5,5,7,10,7,17v0,7,-2,14,-7,18v-5,4,-12,7,-20,7","w":272},"\u00d7":{"d":"213,-44r-26,26r-59,-60r-60,60r-25,-26r59,-59r-59,-60r24,-25r61,60r60,-60r24,26r-59,59","w":254},"\u00d8":{"d":"61,-19r-25,30r-22,-19r26,-30v-18,-22,-27,-51,-27,-85v0,-40,12,-71,35,-96v23,-25,53,-37,91,-37v27,0,51,7,71,21r23,-27r22,18r-24,28v19,23,29,52,29,88v0,40,-12,72,-35,96v-23,24,-53,36,-90,36v-28,0,-53,-7,-74,-23xm179,-199v-11,-9,-25,-13,-41,-13v-21,0,-39,8,-51,24v-12,16,-18,37,-18,63v0,17,2,33,8,45xm195,-175r-101,119v12,11,25,16,42,16v21,0,38,-7,50,-22v12,-15,18,-36,18,-62v0,-19,-3,-36,-9,-51","w":272},"\u00d9":{"d":"234,-109v0,76,-35,113,-106,113v-68,0,-102,-37,-102,-111r0,-145r57,0r0,146v0,41,16,61,48,61v31,0,47,-20,47,-59r0,-148r56,0r0,143xm162,-275r-40,0r-55,-57r49,0","w":260},"\u00da":{"d":"234,-109v0,76,-35,113,-106,113v-68,0,-102,-37,-102,-111r0,-145r57,0r0,146v0,41,16,61,48,61v31,0,47,-20,47,-59r0,-148r56,0r0,143xm191,-332r-55,57r-40,0r45,-57r50,0","w":260},"\u00db":{"d":"193,-275r-36,0r-28,-33r-26,33r-36,0r41,-58r44,0xm234,-109v0,76,-35,113,-106,113v-68,0,-102,-37,-102,-111r0,-145r57,0r0,146v0,41,16,61,48,61v31,0,47,-20,47,-59r0,-148r56,0r0,143","w":260},"\u00dc":{"d":"234,-109v0,76,-35,113,-106,113v-68,0,-102,-37,-102,-111r0,-145r57,0r0,146v0,41,16,61,48,61v31,0,47,-20,47,-59r0,-148r56,0r0,143xm171,-275v-8,0,-15,-2,-20,-7v-5,-5,-7,-11,-7,-18v0,-7,2,-13,7,-17v5,-4,12,-7,20,-7v8,0,14,2,19,7v5,5,8,10,8,17v0,7,-3,13,-8,18v-5,5,-11,7,-19,7xm90,-275v-8,0,-14,-2,-19,-7v-5,-5,-8,-11,-8,-18v0,-7,3,-12,8,-17v5,-5,11,-7,19,-7v8,0,15,2,20,7v5,5,7,10,7,17v0,7,-2,14,-7,18v-5,4,-12,7,-20,7","w":260},"\u00dd":{"d":"219,-252r-82,162r0,90r-57,0r0,-89r-80,-163r65,0r40,94v1,2,3,9,6,21r1,0v2,-8,3,-15,5,-20r42,-95r60,0xm159,-326r-55,57r-40,0r45,-57r50,0","w":218},"\u00de":{"d":"86,-49r0,49r-57,0r0,-252r57,0r0,37r32,0v64,0,95,26,95,80v0,25,-9,46,-27,62v-18,16,-43,24,-73,24r-27,0xm86,-171r0,78r22,0v30,0,45,-14,45,-40v0,-26,-15,-38,-45,-38r-22,0","w":221},"\u00df":{"d":"96,-1r0,-46v10,6,20,9,31,9v10,0,17,-3,23,-9v6,-6,9,-15,9,-26v0,-14,-6,-24,-16,-32v-10,-8,-25,-12,-44,-13r0,-39v13,-1,23,-5,30,-12v7,-7,11,-16,11,-28v0,-10,-3,-17,-8,-23v-5,-6,-12,-8,-21,-8v-22,0,-32,14,-32,43r0,185r-56,0r0,-184v0,-26,8,-47,24,-63v16,-16,38,-24,67,-24v25,0,46,7,61,20v15,13,22,29,22,49v0,14,-5,27,-13,38v-8,11,-19,18,-32,22r0,0v43,8,64,32,64,71v0,21,-8,38,-23,53v-15,15,-35,22,-60,22v-12,0,-24,-1,-37,-5","w":226},"\u00e0":{"d":"173,0r-52,0r0,-26r-1,0v-12,20,-30,30,-54,30v-17,0,-31,-4,-41,-14v-10,-10,-15,-23,-15,-40v0,-35,21,-56,62,-61r49,-6v0,-20,-11,-30,-32,-30v-21,0,-42,7,-61,20r0,-42v8,-4,19,-8,32,-11v13,-3,25,-4,36,-4v51,0,77,25,77,76r0,108xm121,-73r0,-12r-33,4v-18,2,-27,10,-27,24v0,6,3,12,7,16v4,4,10,6,18,6v10,0,18,-4,25,-11v7,-7,10,-16,10,-27xm136,-208r-40,0r-55,-57r49,0","w":193},"\u00e1":{"d":"173,0r-52,0r0,-26r-1,0v-12,20,-30,30,-54,30v-17,0,-31,-4,-41,-14v-10,-10,-15,-23,-15,-40v0,-35,21,-56,62,-61r49,-6v0,-20,-11,-30,-32,-30v-21,0,-42,7,-61,20r0,-42v8,-4,19,-8,32,-11v13,-3,25,-4,36,-4v51,0,77,25,77,76r0,108xm121,-73r0,-12r-33,4v-18,2,-27,10,-27,24v0,6,3,12,7,16v4,4,10,6,18,6v10,0,18,-4,25,-11v7,-7,10,-16,10,-27xm157,-265r-55,57r-40,0r45,-57r50,0","w":193},"\u00e2":{"d":"161,-208r-37,0r-27,-34r-26,34r-37,0r42,-58r43,0xm173,0r-52,0r0,-26r-1,0v-12,20,-30,30,-54,30v-17,0,-31,-4,-41,-14v-10,-10,-15,-23,-15,-40v0,-35,21,-56,62,-61r49,-6v0,-20,-11,-30,-32,-30v-21,0,-42,7,-61,20r0,-42v8,-4,19,-8,32,-11v13,-3,25,-4,36,-4v51,0,77,25,77,76r0,108xm121,-73r0,-12r-33,4v-18,2,-27,10,-27,24v0,6,3,12,7,16v4,4,10,6,18,6v10,0,18,-4,25,-11v7,-7,10,-16,10,-27","w":193},"\u00e3":{"d":"159,-263v0,16,-2,29,-9,38v-7,9,-16,13,-27,13v-10,0,-19,-2,-29,-7v-10,-6,-18,-8,-22,-8v-9,0,-14,6,-14,19r-25,0v0,-16,4,-29,10,-38v6,-9,15,-14,27,-14v9,0,19,3,29,9v9,5,16,7,21,7v9,0,14,-6,14,-19r25,0xm173,0r-52,0r0,-26r-1,0v-12,20,-30,30,-54,30v-17,0,-31,-4,-41,-14v-10,-10,-15,-23,-15,-40v0,-35,21,-56,62,-61r49,-6v0,-20,-11,-30,-32,-30v-21,0,-42,7,-61,20r0,-42v8,-4,19,-8,32,-11v13,-3,25,-4,36,-4v51,0,77,25,77,76r0,108xm121,-73r0,-12r-33,4v-18,2,-27,10,-27,24v0,6,3,12,7,16v4,4,10,6,18,6v10,0,18,-4,25,-11v7,-7,10,-16,10,-27","w":193},"\u00e4":{"d":"173,0r-52,0r0,-26r-1,0v-12,20,-30,30,-54,30v-17,0,-31,-4,-41,-14v-10,-10,-15,-23,-15,-40v0,-35,21,-56,62,-61r49,-6v0,-20,-11,-30,-32,-30v-21,0,-42,7,-61,20r0,-42v8,-4,19,-8,32,-11v13,-3,25,-4,36,-4v51,0,77,25,77,76r0,108xm121,-73r0,-12r-33,4v-18,2,-27,10,-27,24v0,6,3,12,7,16v4,4,10,6,18,6v10,0,18,-4,25,-11v7,-7,10,-16,10,-27xm139,-208v-8,0,-15,-2,-20,-7v-5,-5,-7,-11,-7,-18v0,-7,2,-13,7,-17v5,-4,12,-7,20,-7v8,0,14,2,19,7v5,5,8,10,8,17v0,7,-3,13,-8,18v-5,5,-11,7,-19,7xm58,-208v-8,0,-14,-2,-19,-7v-5,-5,-8,-11,-8,-18v0,-7,3,-12,8,-17v5,-5,11,-7,19,-7v8,0,15,2,20,7v5,5,7,10,7,17v0,7,-2,14,-7,18v-5,4,-12,7,-20,7","w":193},"\u00e5":{"d":"173,0r-52,0r0,-26r-1,0v-12,20,-30,30,-54,30v-17,0,-31,-4,-41,-14v-10,-10,-15,-23,-15,-40v0,-35,21,-56,62,-61r49,-6v0,-20,-11,-30,-32,-30v-21,0,-42,7,-61,20r0,-42v8,-4,19,-8,32,-11v13,-3,25,-4,36,-4v51,0,77,25,77,76r0,108xm121,-73r0,-12r-33,4v-18,2,-27,10,-27,24v0,6,3,12,7,16v4,4,10,6,18,6v10,0,18,-4,25,-11v7,-7,10,-16,10,-27xm101,-208v-12,0,-22,-4,-30,-11v-8,-7,-12,-16,-12,-27v0,-12,5,-22,13,-29v8,-7,18,-10,30,-10v13,0,22,3,30,10v8,7,12,17,12,28v0,11,-5,21,-13,28v-8,7,-18,11,-30,11xm101,-263v-11,0,-17,5,-17,16v0,11,6,17,17,17v5,0,10,-2,13,-5v3,-3,5,-7,5,-12v0,-5,-2,-9,-5,-12v-3,-3,-8,-4,-13,-4","w":193},"\u00e6":{"d":"288,-74r-117,0v2,26,19,39,50,39v19,0,36,-5,52,-14r0,40v-18,9,-41,13,-67,13v-32,0,-55,-10,-70,-31r0,0v-17,21,-38,31,-64,31v-19,0,-35,-4,-46,-14v-11,-10,-16,-23,-16,-40v0,-17,6,-32,17,-42v11,-10,28,-16,49,-18r45,-3v0,-22,-11,-34,-33,-34v-20,0,-40,6,-60,19r0,-41v22,-10,44,-15,65,-15v27,0,46,7,57,23r0,0v15,-16,35,-23,58,-23v25,0,45,7,59,23v14,16,21,37,21,64r0,23xm237,-108v0,-26,-10,-39,-31,-39v-9,0,-16,4,-23,11v-7,7,-11,17,-12,28r66,0xm121,-73r0,-8r-28,3v-22,2,-32,9,-32,23v0,6,2,10,7,14v5,4,11,6,18,6v10,0,18,-3,25,-10v7,-7,10,-17,10,-28","w":298},"\u00e7":{"d":"160,-7v-13,7,-31,11,-55,11v-28,0,-50,-8,-67,-25v-17,-17,-25,-39,-25,-65v0,-31,9,-54,27,-72v18,-18,43,-26,74,-26v21,0,37,2,46,8r0,47v-12,-9,-25,-13,-39,-13v-16,0,-29,5,-38,14v-9,9,-14,23,-14,39v0,16,4,28,13,37v9,9,21,14,37,14v14,0,28,-4,41,-13r0,44xm75,79r0,-24v4,1,9,1,13,1v14,0,21,-4,21,-13v0,-8,-6,-11,-19,-11r-7,0r0,-32r30,0r0,14v22,1,33,11,33,30v0,24,-19,36,-56,36v-5,0,-10,-1,-15,-1","w":172},"\u00e8":{"d":"185,-74r-117,0v2,26,18,39,49,39v20,0,37,-5,52,-14r0,40v-17,9,-38,13,-65,13v-29,0,-51,-8,-67,-24v-16,-16,-24,-38,-24,-67v0,-30,9,-54,26,-71v17,-17,39,-26,64,-26v26,0,47,7,61,23v14,16,21,36,21,63r0,24xm134,-108v0,-26,-11,-39,-32,-39v-9,0,-16,4,-23,11v-7,7,-11,17,-12,28r67,0xm140,-208r-40,0r-55,-57r49,0","w":194},"\u00e9":{"d":"185,-74r-117,0v2,26,18,39,49,39v20,0,37,-5,52,-14r0,40v-17,9,-38,13,-65,13v-29,0,-51,-8,-67,-24v-16,-16,-24,-38,-24,-67v0,-30,9,-54,26,-71v17,-17,39,-26,64,-26v26,0,47,7,61,23v14,16,21,36,21,63r0,24xm134,-108v0,-26,-11,-39,-32,-39v-9,0,-16,4,-23,11v-7,7,-11,17,-12,28r67,0xm162,-265r-55,57r-40,0r45,-57r50,0","w":194},"\u00ea":{"d":"167,-208r-37,0r-27,-34r-26,34r-37,0r42,-58r43,0xm185,-74r-117,0v2,26,18,39,49,39v20,0,37,-5,52,-14r0,40v-17,9,-38,13,-65,13v-29,0,-51,-8,-67,-24v-16,-16,-24,-38,-24,-67v0,-30,9,-54,26,-71v17,-17,39,-26,64,-26v26,0,47,7,61,23v14,16,21,36,21,63r0,24xm134,-108v0,-26,-11,-39,-32,-39v-9,0,-16,4,-23,11v-7,7,-11,17,-12,28r67,0","w":194},"\u00eb":{"d":"185,-74r-117,0v2,26,18,39,49,39v20,0,37,-5,52,-14r0,40v-17,9,-38,13,-65,13v-29,0,-51,-8,-67,-24v-16,-16,-24,-38,-24,-67v0,-30,9,-54,26,-71v17,-17,39,-26,64,-26v26,0,47,7,61,23v14,16,21,36,21,63r0,24xm134,-108v0,-26,-11,-39,-32,-39v-9,0,-16,4,-23,11v-7,7,-11,17,-12,28r67,0xm142,-208v-8,0,-15,-2,-20,-7v-5,-5,-7,-11,-7,-18v0,-7,2,-13,7,-17v5,-4,12,-7,20,-7v8,0,14,2,19,7v5,5,8,10,8,17v0,7,-3,13,-8,18v-5,5,-11,7,-19,7xm61,-208v-8,0,-14,-2,-19,-7v-5,-5,-8,-11,-8,-18v0,-7,3,-12,8,-17v5,-5,11,-7,19,-7v8,0,15,2,20,7v5,5,7,10,7,17v0,7,-2,14,-7,18v-5,4,-12,7,-20,7","w":194},"\u00ec":{"d":"79,0r-56,0r0,-180r56,0r0,180xm91,-208r-40,0r-55,-57r49,0","w":102},"\u00ed":{"d":"79,0r-56,0r0,-180r56,0r0,180xm108,-265r-55,57r-40,0r45,-57r50,0","w":102},"\u00ee":{"d":"116,-208r-37,0r-27,-34r-26,34r-37,0r42,-58r43,0xm79,0r-56,0r0,-180r56,0r0,180","w":102},"\u00ef":{"d":"79,0r-56,0r0,-180r56,0r0,180xm93,-208v-8,0,-15,-2,-20,-7v-5,-5,-7,-11,-7,-18v0,-7,2,-13,7,-17v5,-4,12,-7,20,-7v8,0,14,2,19,7v5,5,8,10,8,17v0,7,-3,13,-8,18v-5,5,-11,7,-19,7xm12,-208v-8,0,-14,-2,-19,-7v-5,-5,-8,-11,-8,-18v0,-7,3,-12,8,-17v5,-5,11,-7,19,-7v8,0,15,2,20,7v5,5,7,10,7,17v0,7,-2,14,-7,18v-5,4,-12,7,-20,7","w":102},"\u00f0":{"d":"133,-170r1,0v-10,-17,-22,-31,-35,-42r-51,25r-14,-24r42,-21v-18,-15,-34,-25,-47,-34r62,0v1,1,9,6,23,17r48,-24r13,24r-38,19v42,34,64,77,64,131v0,30,-8,56,-26,75v-18,19,-41,28,-70,28v-29,0,-52,-8,-68,-25v-16,-17,-24,-40,-24,-69v0,-27,7,-50,23,-67v16,-17,36,-26,61,-26v14,0,26,4,36,13xm108,-142v-12,0,-22,5,-29,14v-7,9,-10,22,-10,38v0,16,3,29,10,38v7,9,16,14,28,14v11,0,20,-4,27,-14v7,-10,10,-23,10,-39v0,-34,-12,-51,-36,-51","w":213},"\u00f1":{"d":"173,-263v0,16,-3,29,-10,38v-7,9,-16,13,-27,13v-10,0,-19,-2,-29,-7v-10,-6,-18,-8,-22,-8v-9,0,-14,6,-14,19r-25,0v0,-16,4,-29,10,-38v6,-9,15,-14,27,-14v9,0,19,3,29,9v9,5,17,7,22,7v9,0,13,-6,13,-19r26,0xm197,0r-55,0r0,-100v0,-28,-10,-42,-30,-42v-10,0,-18,4,-24,11v-6,7,-9,17,-9,28r0,103r-56,0r0,-180r56,0r0,28r1,0v13,-22,32,-32,57,-32v40,0,60,25,60,74r0,110","w":217},"\u00f2":{"d":"109,4v-30,0,-54,-8,-71,-25v-17,-17,-25,-39,-25,-68v0,-30,8,-53,26,-70v18,-17,43,-25,73,-25v30,0,53,8,70,25v17,17,25,39,25,67v0,30,-8,53,-26,70v-18,17,-42,26,-72,26xm111,-142v-13,0,-24,5,-31,14v-7,9,-11,21,-11,38v0,35,14,52,42,52v27,0,40,-17,40,-53v0,-34,-13,-51,-40,-51xm150,-208r-40,0r-55,-57r49,0","w":219},"\u00f3":{"d":"109,4v-30,0,-54,-8,-71,-25v-17,-17,-25,-39,-25,-68v0,-30,8,-53,26,-70v18,-17,43,-25,73,-25v30,0,53,8,70,25v17,17,25,39,25,67v0,30,-8,53,-26,70v-18,17,-42,26,-72,26xm111,-142v-13,0,-24,5,-31,14v-7,9,-11,21,-11,38v0,35,14,52,42,52v27,0,40,-17,40,-53v0,-34,-13,-51,-40,-51xm170,-265r-55,57r-40,0r45,-57r50,0","w":219},"\u00f4":{"d":"174,-208r-37,0r-27,-34r-26,34r-37,0r42,-58r43,0xm109,4v-30,0,-54,-8,-71,-25v-17,-17,-25,-39,-25,-68v0,-30,8,-53,26,-70v18,-17,43,-25,73,-25v30,0,53,8,70,25v17,17,25,39,25,67v0,30,-8,53,-26,70v-18,17,-42,26,-72,26xm111,-142v-13,0,-24,5,-31,14v-7,9,-11,21,-11,38v0,35,14,52,42,52v27,0,40,-17,40,-53v0,-34,-13,-51,-40,-51","w":219},"\u00f5":{"d":"173,-263v0,16,-3,29,-10,38v-7,9,-15,13,-26,13v-10,0,-20,-2,-30,-7v-10,-6,-17,-8,-21,-8v-9,0,-14,6,-14,19r-25,0v0,-16,3,-29,9,-38v6,-9,15,-14,27,-14v9,0,20,3,30,9v9,5,16,7,21,7v9,0,14,-6,14,-19r25,0xm109,4v-30,0,-54,-8,-71,-25v-17,-17,-25,-39,-25,-68v0,-30,8,-53,26,-70v18,-17,43,-25,73,-25v30,0,53,8,70,25v17,17,25,39,25,67v0,30,-8,53,-26,70v-18,17,-42,26,-72,26xm111,-142v-13,0,-24,5,-31,14v-7,9,-11,21,-11,38v0,35,14,52,42,52v27,0,40,-17,40,-53v0,-34,-13,-51,-40,-51","w":219},"\u00f6":{"d":"109,4v-30,0,-54,-8,-71,-25v-17,-17,-25,-39,-25,-68v0,-30,8,-53,26,-70v18,-17,43,-25,73,-25v30,0,53,8,70,25v17,17,25,39,25,67v0,30,-8,53,-26,70v-18,17,-42,26,-72,26xm111,-142v-13,0,-24,5,-31,14v-7,9,-11,21,-11,38v0,35,14,52,42,52v27,0,40,-17,40,-53v0,-34,-13,-51,-40,-51xm151,-208v-8,0,-15,-2,-20,-7v-5,-5,-7,-11,-7,-18v0,-7,2,-13,7,-17v5,-4,12,-7,20,-7v8,0,14,2,19,7v5,5,8,10,8,17v0,7,-3,13,-8,18v-5,5,-11,7,-19,7xm70,-208v-8,0,-14,-2,-19,-7v-5,-5,-8,-11,-8,-18v0,-7,3,-12,8,-17v5,-5,11,-7,19,-7v8,0,15,2,20,7v5,5,7,10,7,17v0,7,-2,14,-7,18v-5,4,-12,7,-20,7","w":219},"\u00f7":{"d":"128,-149v-7,0,-12,-2,-17,-7v-5,-5,-7,-10,-7,-17v0,-7,2,-13,7,-18v5,-5,10,-7,17,-7v7,0,14,2,18,7v4,5,7,11,7,18v0,7,-3,12,-8,17v-5,5,-10,7,-17,7xm213,-85r-171,0r0,-36r171,0r0,36xm128,-8v-7,0,-13,-2,-18,-7v-5,-5,-7,-10,-7,-17v0,-7,2,-13,7,-18v5,-5,11,-8,18,-8v7,0,13,2,17,7v4,5,7,12,7,19v0,7,-2,13,-7,17v-5,4,-10,7,-17,7","w":254},"\u00f8":{"d":"212,-178r-24,26v13,17,19,37,19,60v0,30,-9,54,-26,71v-17,17,-41,25,-72,25v-23,0,-42,-5,-57,-15r-24,25r-21,-19r24,-25v-12,-17,-18,-37,-18,-60v0,-30,8,-52,26,-69v18,-17,43,-26,73,-26v21,0,40,5,55,15r24,-26xm136,-139v-7,-5,-15,-7,-25,-7v-30,0,-45,19,-45,56v0,9,1,15,3,21xm152,-114r-70,71v7,5,17,8,29,8v30,0,44,-18,44,-56v0,-9,-1,-16,-3,-23","w":220},"\u00f9":{"d":"194,0r-55,0r0,-27r-1,0v-14,21,-32,31,-55,31v-42,0,-62,-24,-62,-75r0,-109r55,0r0,104v0,25,10,38,30,38v10,0,18,-4,24,-11v6,-7,9,-16,9,-28r0,-103r55,0r0,180xm138,-208r-40,0r-55,-57r49,0","w":217},"\u00fa":{"d":"194,0r-55,0r0,-27r-1,0v-14,21,-32,31,-55,31v-42,0,-62,-24,-62,-75r0,-109r55,0r0,104v0,25,10,38,30,38v10,0,18,-4,24,-11v6,-7,9,-16,9,-28r0,-103r55,0r0,180xm172,-265r-55,57r-40,0r45,-57r50,0","w":217},"\u00fb":{"d":"171,-208r-37,0r-28,-34r-25,34r-37,0r41,-58r44,0xm194,0r-55,0r0,-27r-1,0v-14,21,-32,31,-55,31v-42,0,-62,-24,-62,-75r0,-109r55,0r0,104v0,25,10,38,30,38v10,0,18,-4,24,-11v6,-7,9,-16,9,-28r0,-103r55,0r0,180","w":217},"\u00fc":{"d":"194,0r-55,0r0,-27r-1,0v-14,21,-32,31,-55,31v-42,0,-62,-24,-62,-75r0,-109r55,0r0,104v0,25,10,38,30,38v10,0,18,-4,24,-11v6,-7,9,-16,9,-28r0,-103r55,0r0,180xm149,-208v-8,0,-15,-2,-20,-7v-5,-5,-7,-11,-7,-18v0,-7,2,-13,7,-17v5,-4,12,-7,20,-7v8,0,14,2,19,7v5,5,8,10,8,17v0,7,-3,13,-8,18v-5,5,-11,7,-19,7xm68,-208v-8,0,-14,-2,-19,-7v-5,-5,-8,-11,-8,-18v0,-7,3,-12,8,-17v5,-5,11,-7,19,-7v8,0,15,2,20,7v5,5,7,10,7,17v0,7,-2,14,-7,18v-5,4,-12,7,-20,7","w":217},"\u00fd":{"d":"195,-180r-73,194v-18,47,-45,71,-80,71v-13,0,-24,-2,-33,-5r0,-44v7,4,15,6,24,6v14,0,24,-7,30,-20r9,-22r-73,-180r62,0r33,110v2,7,4,15,5,24r1,0v1,-7,3,-15,6,-24r34,-110r55,0xm147,-265r-55,57r-40,0r45,-57r50,0","w":193},"\u00fe":{"d":"80,-21r-1,0r0,104r-56,0r0,-349r56,0r0,113r1,0v14,-21,32,-31,57,-31v23,0,42,8,55,24v13,16,19,37,19,65v0,30,-8,54,-23,72v-15,18,-34,27,-59,27v-22,0,-38,-8,-49,-25xm78,-95r0,15v0,12,3,22,10,30v7,8,15,12,26,12v13,0,22,-5,29,-15v7,-10,11,-23,11,-41v0,-32,-12,-48,-37,-48v-11,0,-21,4,-28,13v-7,9,-11,20,-11,34","w":223},"\u00ff":{"d":"195,-180r-73,194v-18,47,-45,71,-80,71v-13,0,-24,-2,-33,-5r0,-44v7,4,15,6,24,6v14,0,24,-7,30,-20r9,-22r-73,-180r62,0r33,110v2,7,4,15,5,24r1,0v1,-7,3,-15,6,-24r34,-110r55,0xm140,-208v-8,0,-15,-2,-20,-7v-5,-5,-7,-11,-7,-18v0,-7,2,-13,7,-17v5,-4,12,-7,20,-7v8,0,14,2,19,7v5,5,8,10,8,17v0,7,-3,13,-8,18v-5,5,-11,7,-19,7xm59,-208v-8,0,-14,-2,-19,-7v-5,-5,-8,-11,-8,-18v0,-7,3,-12,8,-17v5,-5,11,-7,19,-7v8,0,15,2,20,7v5,5,7,10,7,17v0,7,-2,14,-7,18v-5,4,-12,7,-20,7","w":193},"\u0100":{"d":"178,-270r-103,0r0,-30r103,0r0,30xm250,0r-61,0r-18,-56r-90,0r-18,56r-61,0r92,-252r67,0xm158,-100r-27,-84v-2,-6,-4,-14,-5,-23r-1,0v-1,7,-2,15,-4,22r-28,85r65,0","w":253},"\u0101":{"d":"150,-208r-103,0r0,-31r103,0r0,31xm173,0r-52,0r0,-26r-1,0v-12,20,-30,30,-54,30v-17,0,-31,-4,-41,-14v-10,-10,-15,-23,-15,-40v0,-35,21,-56,62,-61r49,-6v0,-20,-11,-30,-32,-30v-21,0,-42,7,-61,20r0,-42v8,-4,19,-8,32,-11v13,-3,25,-4,36,-4v51,0,77,25,77,76r0,108xm121,-73r0,-12r-33,4v-18,2,-27,10,-27,24v0,6,3,12,7,16v4,4,10,6,18,6v10,0,18,-4,25,-11v7,-7,10,-16,10,-27","w":193},"\u0102":{"d":"186,-324v-1,17,-7,30,-18,40v-11,10,-25,14,-42,14v-17,0,-31,-5,-42,-15v-11,-10,-17,-23,-17,-39r32,0v2,16,11,24,28,24v16,0,25,-8,27,-24r32,0xm250,0r-61,0r-18,-56r-90,0r-18,56r-61,0r92,-252r67,0xm158,-100r-27,-84v-2,-6,-4,-14,-5,-23r-1,0v-1,7,-2,15,-4,22r-28,85r65,0","w":253},"\u0103":{"d":"157,-262v-1,17,-7,29,-18,39v-11,10,-25,15,-42,15v-17,0,-30,-6,-41,-16v-11,-10,-17,-22,-17,-38r31,0v2,16,11,23,28,23v16,0,26,-7,28,-23r31,0xm173,0r-52,0r0,-26r-1,0v-12,20,-30,30,-54,30v-17,0,-31,-4,-41,-14v-10,-10,-15,-23,-15,-40v0,-35,21,-56,62,-61r49,-6v0,-20,-11,-30,-32,-30v-21,0,-42,7,-61,20r0,-42v8,-4,19,-8,32,-11v13,-3,25,-4,36,-4v51,0,77,25,77,76r0,108xm121,-73r0,-12r-33,4v-18,2,-27,10,-27,24v0,6,3,12,7,16v4,4,10,6,18,6v10,0,18,-4,25,-11v7,-7,10,-16,10,-27","w":193},"\u0106":{"d":"210,-9v-18,9,-43,13,-73,13v-39,0,-69,-11,-91,-34v-22,-23,-33,-53,-33,-91v0,-40,12,-73,37,-98v25,-25,57,-37,97,-37v25,0,46,3,63,9r0,55v-17,-10,-36,-15,-58,-15v-24,0,-42,7,-57,22v-15,15,-22,35,-22,60v0,24,6,45,20,59v14,14,33,21,56,21v22,0,43,-5,61,-16r0,52xm212,-326r-55,57r-40,0r45,-57r50,0","w":224},"\u0107":{"d":"160,-7v-13,7,-31,11,-55,11v-28,0,-50,-8,-67,-25v-17,-17,-25,-39,-25,-65v0,-31,9,-54,27,-72v18,-18,43,-26,74,-26v21,0,37,2,46,8r0,47v-12,-9,-25,-13,-39,-13v-16,0,-29,5,-38,14v-9,9,-14,23,-14,39v0,16,4,28,13,37v9,9,21,14,37,14v14,0,28,-4,41,-13r0,44xm176,-265r-55,57r-40,0r45,-57r50,0","w":172},"\u0108":{"d":"207,-270r-36,0r-28,-33r-26,33r-36,0r41,-57r44,0xm210,-9v-18,9,-43,13,-73,13v-39,0,-69,-11,-91,-34v-22,-23,-33,-53,-33,-91v0,-40,12,-73,37,-98v25,-25,57,-37,97,-37v25,0,46,3,63,9r0,55v-17,-10,-36,-15,-58,-15v-24,0,-42,7,-57,22v-15,15,-22,35,-22,60v0,24,6,45,20,59v14,14,33,21,56,21v22,0,43,-5,61,-16r0,52","w":224},"\u0109":{"d":"165,-208r-37,0r-27,-34r-26,34r-37,0r42,-58r43,0xm160,-7v-13,7,-31,11,-55,11v-28,0,-50,-8,-67,-25v-17,-17,-25,-39,-25,-65v0,-31,9,-54,27,-72v18,-18,43,-26,74,-26v21,0,37,2,46,8r0,47v-12,-9,-25,-13,-39,-13v-16,0,-29,5,-38,14v-9,9,-14,23,-14,39v0,16,4,28,13,37v9,9,21,14,37,14v14,0,28,-4,41,-13r0,44","w":172},"\u010c":{"d":"210,-9v-18,9,-43,13,-73,13v-39,0,-69,-11,-91,-34v-22,-23,-33,-53,-33,-91v0,-40,12,-73,37,-98v25,-25,57,-37,97,-37v25,0,46,3,63,9r0,55v-17,-10,-36,-15,-58,-15v-24,0,-42,7,-57,22v-15,15,-22,35,-22,60v0,24,6,45,20,59v14,14,33,21,56,21v22,0,43,-5,61,-16r0,52xm204,-333r-41,58r-44,0r-41,-58r36,0r27,33r27,-33r36,0","w":224},"\u010d":{"d":"160,-7v-13,7,-31,11,-55,11v-28,0,-50,-8,-67,-25v-17,-17,-25,-39,-25,-65v0,-31,9,-54,27,-72v18,-18,43,-26,74,-26v21,0,37,2,46,8r0,47v-12,-9,-25,-13,-39,-13v-16,0,-29,5,-38,14v-9,9,-14,23,-14,39v0,16,4,28,13,37v9,9,21,14,37,14v14,0,28,-4,41,-13r0,44xm167,-266r-42,58r-43,0r-42,-58r36,0r28,33r27,-33r36,0","w":172},"\u010e":{"d":"29,0r0,-252r89,0v90,0,134,41,134,123v0,39,-12,71,-36,94v-24,23,-57,35,-98,35r-89,0xm86,-206r0,160r28,0v25,0,44,-7,58,-22v14,-15,21,-35,21,-60v0,-24,-7,-43,-21,-57v-14,-14,-34,-21,-59,-21r-27,0xm189,-333r-42,58r-43,0r-41,-58r36,0r27,33r27,-33r36,0","w":265},"\u010f":{"d":"200,0r-56,0r0,-25r-1,0v-13,19,-31,29,-55,29v-22,0,-41,-7,-55,-23v-14,-16,-20,-39,-20,-67v0,-30,7,-54,22,-72v15,-18,36,-26,60,-26v23,0,39,8,48,25r1,0r0,-107r56,0r0,266xm145,-88r0,-13v0,-12,-3,-21,-10,-29v-7,-8,-16,-12,-27,-12v-12,0,-22,5,-29,15v-7,10,-10,22,-10,39v0,16,3,28,10,37v7,9,16,13,28,13v11,0,20,-5,27,-14v7,-9,11,-21,11,-36xm278,-266r-30,61r-34,0r16,-61r48,0","w":266},"\u0110":{"d":"29,0r0,-103r-29,0r0,-47r29,0r0,-102r89,0v90,0,134,41,134,123v0,39,-12,71,-36,94v-24,23,-57,35,-98,35r-89,0xm86,-206r0,56r47,0r0,47r-47,0r0,57r28,0v25,0,44,-7,58,-22v14,-15,21,-35,21,-60v0,-24,-7,-43,-21,-57v-14,-14,-34,-21,-59,-21r-27,0","w":265},"\u0111":{"d":"225,-206r-25,0r0,206r-56,0r0,-25r-1,0v-13,19,-31,29,-55,29v-22,0,-41,-7,-55,-23v-14,-16,-20,-39,-20,-67v0,-30,7,-54,22,-72v15,-18,36,-26,60,-26v23,0,39,8,48,25r1,0r0,-47r-58,0r0,-36r58,0r0,-24r56,0r0,24r25,0r0,36xm145,-88r0,-13v0,-12,-3,-21,-10,-29v-7,-8,-16,-12,-27,-12v-12,0,-22,5,-29,15v-7,10,-10,22,-10,39v0,16,3,28,10,37v7,9,16,13,28,13v11,0,20,-5,27,-14v7,-9,11,-21,11,-36","w":227},"\u0112":{"d":"155,-270r-103,0r0,-30r103,0r0,30xm180,0r-151,0r0,-252r145,0r0,46r-88,0r0,56r82,0r0,46r-82,0r0,58r94,0r0,46","w":191},"\u0113":{"d":"155,-208r-103,0r0,-31r103,0r0,31xm185,-74r-117,0v2,26,18,39,49,39v20,0,37,-5,52,-14r0,40v-17,9,-38,13,-65,13v-29,0,-51,-8,-67,-24v-16,-16,-24,-38,-24,-67v0,-30,9,-54,26,-71v17,-17,39,-26,64,-26v26,0,47,7,61,23v14,16,21,36,21,63r0,24xm134,-108v0,-26,-11,-39,-32,-39v-9,0,-16,4,-23,11v-7,7,-11,17,-12,28r67,0","w":194},"\u0114":{"d":"180,0r-151,0r0,-252r145,0r0,46r-88,0r0,56r82,0r0,46r-82,0r0,58r94,0r0,46xm163,-329v-1,17,-7,29,-18,39v-11,10,-25,15,-42,15v-17,0,-31,-5,-42,-15v-11,-10,-17,-23,-17,-39r32,0v2,16,11,23,28,23v16,0,25,-7,27,-23r32,0","w":191},"\u0115":{"d":"162,-262v-1,17,-7,29,-18,39v-11,10,-25,15,-42,15v-17,0,-31,-6,-42,-16v-11,-10,-16,-22,-16,-38r31,0v2,16,11,23,28,23v16,0,25,-7,27,-23r32,0xm185,-74r-117,0v2,26,18,39,49,39v20,0,37,-5,52,-14r0,40v-17,9,-38,13,-65,13v-29,0,-51,-8,-67,-24v-16,-16,-24,-38,-24,-67v0,-30,9,-54,26,-71v17,-17,39,-26,64,-26v26,0,47,7,61,23v14,16,21,36,21,63r0,24xm134,-108v0,-26,-11,-39,-32,-39v-9,0,-16,4,-23,11v-7,7,-11,17,-12,28r67,0","w":194},"\u011a":{"d":"180,0r-151,0r0,-252r145,0r0,46r-88,0r0,56r82,0r0,46r-82,0r0,58r94,0r0,46xm168,-333r-42,58r-44,0r-41,-58r36,0r27,33r28,-33r36,0","w":191},"\u011b":{"d":"185,-74r-117,0v2,26,18,39,49,39v20,0,37,-5,52,-14r0,40v-17,9,-38,13,-65,13v-29,0,-51,-8,-67,-24v-16,-16,-24,-38,-24,-67v0,-30,9,-54,26,-71v17,-17,39,-26,64,-26v26,0,47,7,61,23v14,16,21,36,21,63r0,24xm134,-108v0,-26,-11,-39,-32,-39v-9,0,-16,4,-23,11v-7,7,-11,17,-12,28r67,0xm164,-266r-41,58r-44,0r-41,-58r36,0r27,33r27,-33r36,0","w":194},"\u0131":{"d":"79,0r-56,0r0,-180r56,0r0,180","w":102},"\u0132":{"d":"107,-252r0,44r-21,0r0,164r21,0r0,44r-99,0r0,-44r21,0r0,-164r-21,0r0,-44r99,0xm248,-100v0,34,-8,60,-24,78v-16,18,-37,26,-67,26v-13,0,-26,-1,-37,-6r0,-54v10,7,20,11,32,11v26,0,39,-19,39,-57r0,-150r57,0r0,152","w":274},"\u0133":{"d":"52,-208v-9,0,-18,-3,-24,-9v-6,-6,-8,-12,-8,-20v0,-8,2,-16,8,-21v6,-5,15,-8,24,-8v9,0,17,3,23,8v6,5,8,13,8,21v0,8,-2,15,-8,20v-6,5,-14,9,-23,9xm79,0r-56,0r0,-180r56,0r0,180xm154,-208v-9,0,-18,-3,-24,-9v-6,-6,-8,-12,-8,-20v0,-8,2,-16,8,-21v6,-5,15,-8,24,-8v9,0,17,3,23,8v6,5,8,13,8,21v0,8,-2,15,-8,20v-6,5,-14,9,-23,9xm181,-3v0,27,-7,48,-20,64v-13,16,-32,24,-56,24v-8,0,-16,-2,-26,-6r0,-43v8,4,14,6,20,6v17,0,26,-14,26,-41r0,-181r56,0r0,177","w":204},"\u0141":{"d":"179,0r-150,0r0,-82r-29,15r0,-46r29,-15r0,-124r57,0r0,96r49,-26r0,46r-49,26r0,64r93,0r0,46","w":184},"\u0142":{"d":"107,-133r-24,16r0,117r-55,0r0,-83r-23,15r0,-46r23,-14r0,-138r55,0r0,104r24,-16r0,45","w":113},"\u0143":{"d":"256,0r-58,0r-104,-158v-6,-9,-10,-16,-12,-21r-1,0v1,9,1,22,1,40r0,139r-53,0r0,-252r61,0r100,153v5,7,9,14,13,21r0,0v-1,-6,-1,-18,-1,-35r0,-139r54,0r0,252xm218,-326r-55,57r-40,0r45,-57r50,0","w":284},"\u0144":{"d":"197,0r-55,0r0,-100v0,-28,-10,-42,-30,-42v-10,0,-18,4,-24,11v-6,7,-9,17,-9,28r0,103r-56,0r0,-180r56,0r0,28r1,0v13,-22,32,-32,57,-32v40,0,60,25,60,74r0,110xm185,-265r-55,57r-40,0r45,-57r50,0","w":217},"\u014c":{"d":"188,-270r-103,0r0,-30r103,0r0,30xm135,4v-36,0,-65,-12,-88,-35v-23,-23,-34,-54,-34,-92v0,-40,12,-71,35,-96v23,-25,53,-37,91,-37v36,0,66,11,88,35v22,24,33,54,33,93v0,40,-12,72,-35,96v-23,24,-53,36,-90,36xm138,-207v-20,0,-36,7,-48,22v-12,15,-17,34,-17,59v0,25,5,45,17,60v12,15,27,21,46,21v20,0,36,-7,47,-21v11,-14,17,-34,17,-59v0,-26,-5,-46,-16,-61v-11,-15,-27,-21,-46,-21","w":272},"\u014d":{"d":"162,-208r-103,0r0,-31r103,0r0,31xm109,4v-30,0,-54,-8,-71,-25v-17,-17,-25,-39,-25,-68v0,-30,8,-53,26,-70v18,-17,43,-25,73,-25v30,0,53,8,70,25v17,17,25,39,25,67v0,30,-8,53,-26,70v-18,17,-42,26,-72,26xm111,-142v-13,0,-24,5,-31,14v-7,9,-11,21,-11,38v0,35,14,52,42,52v27,0,40,-17,40,-53v0,-34,-13,-51,-40,-51","w":220},"\u014e":{"d":"196,-324v-1,17,-7,30,-18,40v-11,10,-25,14,-42,14v-17,0,-31,-5,-42,-15v-11,-10,-17,-23,-17,-39r32,0v2,16,11,24,28,24v16,0,25,-8,27,-24r32,0xm135,4v-36,0,-65,-12,-88,-35v-23,-23,-34,-54,-34,-92v0,-40,12,-71,35,-96v23,-25,53,-37,91,-37v36,0,66,11,88,35v22,24,33,54,33,93v0,40,-12,72,-35,96v-23,24,-53,36,-90,36xm138,-207v-20,0,-36,7,-48,22v-12,15,-17,34,-17,59v0,25,5,45,17,60v12,15,27,21,46,21v20,0,36,-7,47,-21v11,-14,17,-34,17,-59v0,-26,-5,-46,-16,-61v-11,-15,-27,-21,-46,-21","w":272},"\u014f":{"d":"169,-262v-1,17,-7,29,-18,39v-11,10,-24,15,-41,15v-17,0,-31,-6,-42,-16v-11,-10,-17,-22,-17,-38r31,0v2,16,11,23,28,23v16,0,26,-7,28,-23r31,0xm109,4v-30,0,-54,-8,-71,-25v-17,-17,-25,-39,-25,-68v0,-30,8,-53,26,-70v18,-17,43,-25,73,-25v30,0,53,8,70,25v17,17,25,39,25,67v0,30,-8,53,-26,70v-18,17,-42,26,-72,26xm111,-142v-13,0,-24,5,-31,14v-7,9,-11,21,-11,38v0,35,14,52,42,52v27,0,40,-17,40,-53v0,-34,-13,-51,-40,-51","w":220},"\u0150":{"d":"135,4v-36,0,-65,-12,-88,-35v-23,-23,-34,-54,-34,-92v0,-40,12,-71,35,-96v23,-25,53,-37,91,-37v36,0,66,11,88,35v22,24,33,54,33,93v0,40,-12,72,-35,96v-23,24,-53,36,-90,36xm138,-207v-20,0,-36,7,-48,22v-12,15,-17,34,-17,59v0,25,5,45,17,60v12,15,27,21,46,21v20,0,36,-7,47,-21v11,-14,17,-34,17,-59v0,-26,-5,-46,-16,-61v-11,-15,-27,-21,-46,-21xm224,-332r-44,57r-37,0r38,-57r43,0xm158,-332r-44,57r-37,0r37,-57r44,0","w":272},"\u0151":{"d":"109,4v-30,0,-54,-8,-71,-25v-17,-17,-25,-39,-25,-68v0,-30,8,-53,26,-70v18,-17,43,-25,73,-25v30,0,53,8,70,25v17,17,25,39,25,67v0,30,-8,53,-26,70v-18,17,-42,26,-72,26xm111,-142v-13,0,-24,5,-31,14v-7,9,-11,21,-11,38v0,35,14,52,42,52v27,0,40,-17,40,-53v0,-34,-13,-51,-40,-51xm194,-265r-44,57r-37,0r38,-57r43,0xm128,-265r-44,57r-37,0r37,-57r44,0","w":220},"\u0152":{"d":"327,0r-146,0v-3,0,-9,1,-20,2v-11,2,-20,2,-28,2v-36,0,-65,-11,-87,-35v-22,-24,-33,-55,-33,-92v0,-40,11,-73,34,-97v23,-24,53,-36,91,-36v7,0,16,1,26,2v10,1,18,2,20,2r137,0r0,46r-88,0r0,57r82,0r0,46r-82,0r0,57r94,0r0,46xm174,-54r0,-144v-10,-6,-23,-9,-37,-9v-20,0,-34,7,-46,22v-12,15,-18,35,-18,60v0,24,6,43,18,58v12,15,27,22,46,22v14,0,26,-3,37,-9","w":338},"\u0153":{"d":"323,-74r-118,0v2,26,18,39,50,39v20,0,37,-5,52,-14r0,40v-17,9,-37,13,-61,13v-30,0,-53,-11,-69,-33r-1,0v-16,22,-39,33,-71,33v-27,0,-50,-8,-67,-25v-17,-17,-25,-39,-25,-68v0,-29,8,-53,25,-70v17,-17,41,-26,69,-26v16,0,30,3,42,9v12,6,21,13,27,22r1,0v14,-21,36,-30,66,-30v25,0,45,7,59,23v14,16,21,37,21,63r0,24xm271,-108v0,-26,-11,-39,-31,-39v-9,0,-17,4,-23,11v-6,7,-11,17,-12,28r66,0xm111,-142v-13,0,-24,5,-31,14v-7,9,-11,22,-11,38v0,34,14,52,42,52v27,0,40,-18,40,-53v0,-16,-4,-28,-11,-37v-7,-9,-16,-14,-29,-14","w":332},"\u0154":{"d":"240,0r-65,0r-39,-65v-3,-5,-6,-9,-9,-13v-3,-4,-5,-7,-8,-10v-3,-3,-5,-5,-8,-6v-3,-1,-6,-3,-10,-3r-15,0r0,97r-57,0r0,-252r90,0v61,0,92,22,92,68v0,9,-1,18,-4,25v-3,7,-7,14,-12,20v-5,6,-11,11,-18,15v-7,4,-14,9,-23,11r0,0v4,1,7,3,11,6v4,3,7,5,10,9r9,12v0,0,7,7,9,11xm86,-210r0,71r24,0v12,0,23,-4,30,-11v8,-7,11,-15,11,-26v0,-22,-14,-34,-40,-34r-25,0xm181,-326r-55,57r-40,0r45,-57r50,0","w":235},"\u0155":{"d":"141,-130v-7,-4,-15,-5,-24,-5v-12,0,-21,4,-28,13v-7,9,-10,21,-10,36r0,86r-56,0r0,-180r56,0r0,33r1,0v9,-24,24,-36,47,-36v6,0,11,1,14,2r0,51xm147,-265r-55,57r-40,0r45,-57r50,0","w":143},"\u015e":{"d":"73,79r0,-24v4,1,9,1,13,1v14,0,22,-4,22,-13v0,-8,-7,-11,-20,-11r-6,0r0,-28v-12,0,-25,-2,-36,-4v-11,-2,-21,-6,-29,-10r0,-56v10,9,21,15,33,19v12,4,25,7,37,7v7,0,13,-1,18,-2v5,-1,10,-4,14,-6v4,-2,6,-5,8,-8v2,-3,2,-6,2,-10v0,-5,-1,-9,-4,-13v-3,-4,-6,-8,-11,-11v-5,-3,-11,-6,-18,-9v-7,-3,-13,-6,-21,-9v-20,-8,-34,-19,-44,-31v-10,-12,-15,-25,-15,-42v0,-13,3,-25,8,-34v5,-9,13,-18,22,-24v9,-6,19,-10,31,-13v12,-3,25,-4,38,-4v13,0,25,0,35,2v10,2,19,4,28,7r0,53v-4,-3,-9,-6,-14,-8v-5,-2,-10,-4,-15,-5v-5,-1,-11,-3,-16,-4v-5,-1,-10,-1,-15,-1v-6,0,-12,1,-17,2v-5,1,-10,3,-14,5v-4,2,-6,5,-8,8v-2,3,-3,7,-3,11v0,4,1,8,3,11v2,3,6,7,10,10v4,3,9,5,15,8v6,3,13,6,20,9v10,4,19,9,27,14v8,5,14,10,20,16v6,6,11,12,14,20v3,8,4,17,4,27v0,12,-2,22,-6,31v-4,9,-9,16,-16,22v-7,6,-16,11,-25,14v-9,3,-19,6,-30,7r0,11v22,1,33,11,33,30v0,24,-19,36,-56,36v-5,0,-11,-1,-16,-1","w":201},"\u015f":{"d":"49,79r0,-24v4,1,9,1,13,1v14,0,21,-4,21,-13v0,-8,-6,-11,-19,-11r-7,0r0,-28v-16,-1,-31,-4,-45,-9r0,-45v9,6,18,10,27,13v9,3,18,4,26,4v10,0,17,-1,23,-4v6,-3,9,-7,9,-13v0,-4,-1,-7,-4,-9v-3,-2,-6,-4,-10,-6v-4,-2,-9,-3,-14,-4v-5,-1,-9,-3,-13,-5v-7,-3,-14,-6,-19,-9v-5,-3,-10,-7,-14,-11v-4,-4,-6,-9,-8,-14v-2,-5,-3,-12,-3,-19v0,-10,2,-19,6,-26v4,-7,11,-13,18,-18v7,-5,16,-8,25,-10v9,-2,19,-3,29,-3v8,0,17,0,25,1v8,1,16,4,24,6r0,43v-7,-4,-15,-8,-23,-10v-8,-2,-15,-3,-23,-3v-4,0,-8,0,-11,1v-3,1,-6,2,-8,3v-2,1,-5,3,-6,5v-1,2,-2,5,-2,7v0,3,1,6,3,8v2,2,5,4,8,6v3,2,8,4,12,5r12,4v7,3,14,5,20,8v6,3,11,7,15,11v4,4,8,8,10,14v2,6,4,12,4,20v0,9,-2,16,-5,23v-3,7,-8,13,-14,18v-6,5,-11,8,-19,11v-8,3,-15,5,-24,6r0,11v22,1,32,11,32,30v0,24,-18,36,-55,36v-5,0,-11,-1,-16,-1","w":158},"\u0160":{"d":"171,-327r-42,57r-43,0r-42,-57r36,0r28,33r27,-33r36,0xm17,-10r0,-56v10,9,21,15,33,19v12,4,25,7,37,7v7,0,13,-1,18,-2v5,-1,10,-4,14,-6v4,-2,6,-5,8,-8v2,-3,2,-6,2,-10v0,-5,-1,-9,-4,-13v-3,-4,-6,-8,-11,-11v-5,-3,-11,-6,-18,-9v-7,-3,-13,-6,-21,-9v-20,-8,-34,-19,-44,-31v-10,-12,-15,-25,-15,-42v0,-13,3,-25,8,-34v5,-9,13,-18,22,-24v9,-6,19,-10,31,-13v12,-3,25,-4,38,-4v13,0,25,0,35,2v10,2,19,4,28,7r0,53v-4,-3,-9,-6,-14,-8v-5,-2,-10,-4,-15,-5v-5,-1,-11,-3,-16,-4v-5,-1,-10,-1,-15,-1v-6,0,-12,1,-17,2v-5,1,-10,3,-14,5v-4,2,-6,5,-8,8v-2,3,-3,7,-3,11v0,4,1,8,3,11v2,3,6,7,10,10v4,3,9,5,15,8v6,3,13,6,20,9v10,4,19,9,27,14v8,5,14,10,20,16v6,6,11,12,14,20v3,8,4,17,4,27v0,14,-3,26,-8,36v-5,10,-13,17,-22,23v-9,6,-19,10,-31,13v-12,3,-26,3,-39,3v-14,0,-27,-1,-39,-3v-12,-2,-24,-6,-33,-11","w":201},"\u0161":{"d":"12,-5r0,-45v9,6,18,10,27,13v9,3,18,4,26,4v10,0,17,-1,23,-4v6,-3,9,-7,9,-13v0,-4,-1,-7,-4,-9v-3,-2,-6,-4,-10,-6v-4,-2,-9,-3,-14,-4v-5,-1,-9,-3,-13,-5v-7,-3,-14,-6,-19,-9v-5,-3,-10,-7,-14,-11v-4,-4,-6,-9,-8,-14v-2,-5,-3,-12,-3,-19v0,-10,2,-19,6,-26v4,-7,11,-13,18,-18v7,-5,16,-8,25,-10v9,-2,19,-3,29,-3v8,0,17,0,25,1v8,1,16,4,24,6r0,43v-7,-4,-15,-8,-23,-10v-8,-2,-15,-3,-23,-3v-4,0,-8,0,-11,1v-3,1,-6,2,-8,3v-2,1,-5,3,-6,5v-1,2,-2,5,-2,7v0,3,1,6,3,8v2,2,5,4,8,6v3,2,8,4,12,5r12,4v7,3,14,5,20,8v6,3,11,7,15,11v4,4,8,8,10,14v2,6,4,12,4,20v0,11,-2,19,-7,27v-5,8,-11,14,-19,19v-8,5,-16,8,-26,10v-10,2,-20,3,-31,3v-20,0,-38,-3,-55,-9xm143,-266r-42,58r-44,0r-41,-58r36,0r27,33r28,-33r36,0","w":158},"\u0162":{"d":"206,-206r-72,0r0,206r-21,0r0,14v22,1,33,11,33,30v0,24,-19,36,-56,36v-5,0,-10,-1,-15,-1r0,-24v4,1,9,1,13,1v14,0,21,-4,21,-13v0,-8,-6,-11,-19,-11r-7,0r0,-32r-6,0r0,-206r-72,0r0,-46r201,0r0,46","w":210},"\u0163":{"d":"132,-2v-8,4,-20,6,-36,6r-1,0r-2,0r0,10v22,1,33,11,33,30v0,24,-19,36,-56,36v-5,0,-10,-1,-15,-1r0,-24v4,1,8,1,12,1v14,0,22,-4,22,-13v0,-8,-7,-11,-20,-11r-6,0r0,-35v-18,-9,-27,-27,-27,-54r0,-82r-29,0r0,-41r29,0r0,-39r56,-16r0,55r40,0r0,41r-40,0r0,73v0,19,7,28,22,28v6,0,12,-2,18,-5r0,41","w":140},"\u0164":{"d":"206,-206r-72,0r0,206r-57,0r0,-206r-72,0r0,-46r201,0r0,46xm169,-333r-42,58r-44,0r-41,-58r36,0r27,33r28,-33r36,0","w":210},"\u0165":{"d":"132,-2v-8,4,-20,6,-37,6v-39,0,-59,-20,-59,-61r0,-82r-29,0r0,-41r29,0r0,-39r56,-16r0,55r40,0r0,41r-40,0r0,73v0,19,7,28,22,28v6,0,12,-2,18,-5r0,41xm196,-266r-30,61r-34,0r16,-61r48,0","w":184},"\u0166":{"d":"206,-206r-72,0r0,64r42,0r0,47r-42,0r0,95r-57,0r0,-95r-42,0r0,-47r42,0r0,-64r-72,0r0,-46r201,0r0,46","w":210},"\u0167":{"d":"132,-2v-8,4,-20,6,-37,6v-39,0,-59,-20,-59,-61r0,-21r-25,0r0,-36r25,0r0,-25r-29,0r0,-41r29,0r0,-39r56,-16r0,55r40,0r0,41r-40,0r0,25r38,0r0,36r-38,0r0,12v0,19,7,28,22,28v6,0,12,-2,18,-5r0,41","w":140},"\u0168":{"d":"193,-324v0,16,-2,29,-9,38v-7,9,-16,13,-27,13v-10,0,-20,-2,-30,-7v-10,-6,-17,-9,-21,-9v-9,0,-14,6,-14,19r-25,0v0,-16,4,-29,10,-38v6,-9,15,-13,27,-13v9,0,19,2,29,8v9,5,16,8,21,8v9,0,14,-6,14,-19r25,0xm234,-109v0,76,-35,113,-106,113v-68,0,-102,-37,-102,-111r0,-145r57,0r0,146v0,41,16,61,48,61v31,0,47,-20,47,-59r0,-148r56,0r0,143","w":260},"\u0169":{"d":"172,-263v0,16,-3,29,-10,38v-7,9,-15,13,-26,13v-10,0,-20,-2,-30,-7v-10,-6,-17,-8,-21,-8v-9,0,-15,6,-15,19r-24,0v0,-16,3,-29,9,-38v6,-9,15,-14,27,-14v9,0,20,3,30,9v9,5,16,7,21,7v9,0,14,-6,14,-19r25,0xm194,0r-55,0r0,-27r-1,0v-14,21,-32,31,-55,31v-42,0,-62,-24,-62,-75r0,-109r55,0r0,104v0,25,10,38,30,38v10,0,18,-4,24,-11v6,-7,9,-16,9,-28r0,-103r55,0r0,180","w":217},"\u016a":{"d":"182,-270r-103,0r0,-30r103,0r0,30xm234,-109v0,76,-35,113,-106,113v-68,0,-102,-37,-102,-111r0,-145r57,0r0,146v0,41,16,61,48,61v31,0,47,-20,47,-59r0,-148r56,0r0,143","w":260},"\u016b":{"d":"160,-208r-103,0r0,-31r103,0r0,31xm194,0r-55,0r0,-27r-1,0v-14,21,-32,31,-55,31v-42,0,-62,-24,-62,-75r0,-109r55,0r0,104v0,25,10,38,30,38v10,0,18,-4,24,-11v6,-7,9,-16,9,-28r0,-103r55,0r0,180","w":217},"\u016c":{"d":"189,-324v-1,17,-7,30,-18,40v-11,10,-24,14,-41,14v-17,0,-31,-5,-42,-15v-11,-10,-17,-23,-17,-39r31,0v2,16,11,24,28,24v16,0,26,-8,28,-24r31,0xm234,-109v0,76,-35,113,-106,113v-68,0,-102,-37,-102,-111r0,-145r57,0r0,146v0,41,16,61,48,61v31,0,47,-20,47,-59r0,-148r56,0r0,143","w":260},"\u016d":{"d":"168,-262v-1,17,-7,29,-18,39v-11,10,-25,15,-42,15v-17,0,-31,-6,-42,-16v-11,-10,-16,-22,-16,-38r31,0v2,16,11,23,28,23v16,0,25,-7,27,-23r32,0xm194,0r-55,0r0,-27r-1,0v-14,21,-32,31,-55,31v-42,0,-62,-24,-62,-75r0,-109r55,0r0,104v0,25,10,38,30,38v10,0,18,-4,24,-11v6,-7,9,-16,9,-28r0,-103r55,0r0,180","w":217},"\u016e":{"d":"234,-109v0,76,-35,113,-106,113v-68,0,-102,-37,-102,-111r0,-145r57,0r0,146v0,41,16,61,48,61v31,0,47,-20,47,-59r0,-148r56,0r0,143xm129,-275v-12,0,-21,-4,-29,-11v-8,-7,-12,-16,-12,-27v0,-12,4,-22,12,-29v8,-7,18,-10,30,-10v13,0,23,3,31,10v8,7,11,17,11,28v0,11,-4,21,-12,28v-8,7,-19,11,-31,11xm129,-330v-11,0,-17,5,-17,16v0,11,6,17,17,17v5,0,10,-2,13,-5v3,-3,5,-7,5,-12v0,-5,-2,-9,-5,-12v-3,-3,-8,-4,-13,-4","w":260},"\u016f":{"d":"194,0r-55,0r0,-27r-1,0v-14,21,-32,31,-55,31v-42,0,-62,-24,-62,-75r0,-109r55,0r0,104v0,25,10,38,30,38v10,0,18,-4,24,-11v6,-7,9,-16,9,-28r0,-103r55,0r0,180xm108,-208v-12,0,-22,-4,-30,-11v-8,-7,-11,-16,-11,-27v0,-12,4,-22,12,-29v8,-7,18,-10,30,-10v13,0,22,3,30,10v8,7,12,17,12,28v0,11,-5,21,-13,28v-8,7,-18,11,-30,11xm108,-263v-11,0,-17,5,-17,16v0,11,6,17,17,17v5,0,10,-2,13,-5v3,-3,5,-7,5,-12v0,-5,-2,-9,-5,-12v-3,-3,-8,-4,-13,-4","w":217},"\u0170":{"d":"234,-109v0,76,-35,113,-106,113v-68,0,-102,-37,-102,-111r0,-145r57,0r0,146v0,41,16,61,48,61v31,0,47,-20,47,-59r0,-148r56,0r0,143xm215,-332r-45,57r-37,0r38,-57r44,0xm148,-332r-43,57r-37,0r37,-57r43,0","w":260},"\u0171":{"d":"194,0r-55,0r0,-27r-1,0v-14,21,-32,31,-55,31v-42,0,-62,-24,-62,-75r0,-109r55,0r0,104v0,25,10,38,30,38v10,0,18,-4,24,-11v6,-7,9,-16,9,-28r0,-103r55,0r0,180xm192,-265r-45,57r-37,0r38,-57r44,0xm125,-265r-43,57r-38,0r38,-57r43,0","w":217},"\u0179":{"d":"210,0r-203,0r0,-33r129,-173r-119,0r0,-46r193,0r0,32r-127,174r127,0r0,46xm180,-326r-55,57r-40,0r45,-57r50,0","w":218},"\u017a":{"d":"166,0r-162,0r0,-23r91,-116r-82,0r0,-41r152,0r0,27r-85,112r86,0r0,41xm158,-265r-55,57r-40,0r45,-57r50,0","w":172},"\u017d":{"d":"210,0r-203,0r0,-33r129,-173r-119,0r0,-46r193,0r0,32r-127,174r127,0r0,46xm174,-327r-42,58r-43,0r-42,-58r36,0r28,33r27,-33r36,0","w":218},"\u017e":{"d":"166,0r-162,0r0,-23r91,-116r-82,0r0,-41r152,0r0,27r-85,112r86,0r0,41xm153,-266r-42,58r-43,0r-41,-58r36,0r27,33r27,-33r36,0","w":172},"\u017f":{"d":"126,-224v-7,-3,-14,-4,-21,-4v-18,0,-26,10,-26,29r0,199r-56,0r0,-202v0,-21,7,-37,20,-50v13,-13,32,-19,55,-19v11,0,20,2,28,4r0,43","w":107},"\u0192":{"d":"184,-206v-8,-4,-16,-6,-24,-6v-15,0,-23,8,-26,24r-4,25r28,0r0,37r-34,0r-16,105v-4,23,-11,41,-24,54v-13,13,-29,21,-49,21v-6,0,-13,-2,-21,-4r0,-42v5,2,10,3,16,3v14,0,23,-11,27,-35r15,-102r-18,0r0,-37r25,0r4,-27v3,-20,11,-35,24,-47v13,-12,29,-17,49,-17v10,0,19,1,28,4r0,44"},"\u0194":{"d":"239,-252r-81,201r6,11v16,25,24,47,24,64v0,17,-7,31,-20,43v-13,12,-29,18,-49,18v-20,0,-36,-6,-48,-18v-12,-12,-18,-26,-18,-43v0,-9,2,-18,5,-26v3,-8,9,-20,19,-37r6,-11r-81,-202r63,0r46,129v2,6,5,18,10,36r0,0v2,-7,6,-20,11,-36r46,-129r61,0xm120,-10v-8,15,-12,25,-12,32v0,12,4,18,12,18v8,0,13,-6,13,-18v0,-7,-5,-17,-13,-32","w":240},"\u01cd":{"d":"250,0r-61,0r-18,-56r-90,0r-18,56r-61,0r92,-252r67,0xm158,-100r-27,-84v-2,-6,-4,-14,-5,-23r-1,0v-1,7,-2,15,-4,22r-28,85r65,0xm190,-331r-42,57r-43,0r-42,-57r36,0r28,33r27,-33r36,0","w":253},"\u01ce":{"d":"173,0r-52,0r0,-26r-1,0v-12,20,-30,30,-54,30v-17,0,-31,-4,-41,-14v-10,-10,-15,-23,-15,-40v0,-35,21,-56,62,-61r49,-6v0,-20,-11,-30,-32,-30v-21,0,-42,7,-61,20r0,-42v8,-4,19,-8,32,-11v13,-3,25,-4,36,-4v51,0,77,25,77,76r0,108xm121,-73r0,-12r-33,4v-18,2,-27,10,-27,24v0,6,3,12,7,16v4,4,10,6,18,6v10,0,18,-4,25,-11v7,-7,10,-16,10,-27xm157,-263r-42,57r-43,0r-41,-57r36,0r27,33r27,-33r36,0","w":193},"\u01cf":{"d":"107,-252r0,44r-21,0r0,164r21,0r0,44r-99,0r0,-44r21,0r0,-164r-21,0r0,-44r99,0xm121,-331r-42,57r-43,0r-42,-57r36,0r27,33r28,-33r36,0","w":114},"\u01d0":{"d":"79,0r-56,0r0,-180r56,0r0,180xm114,-263r-41,57r-44,0r-41,-57r36,0r27,33r27,-33r36,0","w":102},"\u021a":{"d":"206,-206r-72,0r0,206r-57,0r0,-206r-72,0r0,-46r201,0r0,46xm131,11r-26,63r-43,0r18,-63r51,0","w":210},"\u021b":{"d":"132,-2v-8,4,-20,6,-37,6v-39,0,-59,-20,-59,-61r0,-82r-29,0r0,-41r29,0r0,-39r56,-16r0,55r40,0r0,41r-40,0r0,73v0,19,7,28,22,28v6,0,12,-2,18,-5r0,41xm131,11r-26,63r-43,0r18,-63r51,0","w":140},"\u0218":{"d":"17,-10r0,-56v10,9,21,15,33,19v12,4,25,7,37,7v7,0,13,-1,18,-2v5,-1,10,-4,14,-6v4,-2,6,-5,8,-8v2,-3,2,-6,2,-10v0,-5,-1,-9,-4,-13v-3,-4,-6,-8,-11,-11v-5,-3,-11,-6,-18,-9v-7,-3,-13,-6,-21,-9v-20,-8,-34,-19,-44,-31v-10,-12,-15,-25,-15,-42v0,-13,3,-25,8,-34v5,-9,13,-18,22,-24v9,-6,19,-10,31,-13v12,-3,25,-4,38,-4v13,0,25,0,35,2v10,2,19,4,28,7r0,53v-4,-3,-9,-6,-14,-8v-5,-2,-10,-4,-15,-5v-5,-1,-11,-3,-16,-4v-5,-1,-10,-1,-15,-1v-6,0,-12,1,-17,2v-5,1,-10,3,-14,5v-4,2,-6,5,-8,8v-2,3,-3,7,-3,11v0,4,1,8,3,11v2,3,6,7,10,10v4,3,9,5,15,8v6,3,13,6,20,9v10,4,19,9,27,14v8,5,14,10,20,16v6,6,11,12,14,20v3,8,4,17,4,27v0,14,-3,26,-8,36v-5,10,-13,17,-22,23v-9,6,-19,10,-31,13v-12,3,-26,3,-39,3v-14,0,-27,-1,-39,-3v-12,-2,-24,-6,-33,-11xm131,11r-26,63r-43,0r18,-63r51,0","w":201},"\u0219":{"d":"12,-5r0,-45v9,6,18,10,27,13v9,3,18,4,26,4v10,0,17,-1,23,-4v6,-3,9,-7,9,-13v0,-4,-1,-7,-4,-9v-3,-2,-6,-4,-10,-6v-4,-2,-9,-3,-14,-4v-5,-1,-9,-3,-13,-5v-7,-3,-14,-6,-19,-9v-5,-3,-10,-7,-14,-11v-4,-4,-6,-9,-8,-14v-2,-5,-3,-12,-3,-19v0,-10,2,-19,6,-26v4,-7,11,-13,18,-18v7,-5,16,-8,25,-10v9,-2,19,-3,29,-3v8,0,17,0,25,1v8,1,16,4,24,6r0,43v-7,-4,-15,-8,-23,-10v-8,-2,-15,-3,-23,-3v-4,0,-8,0,-11,1v-3,1,-6,2,-8,3v-2,1,-5,3,-6,5v-1,2,-2,5,-2,7v0,3,1,6,3,8v2,2,5,4,8,6v3,2,8,4,12,5r12,4v7,3,14,5,20,8v6,3,11,7,15,11v4,4,8,8,10,14v2,6,4,12,4,20v0,11,-2,19,-7,27v-5,8,-11,14,-19,19v-8,5,-16,8,-26,10v-10,2,-20,3,-31,3v-20,0,-38,-3,-55,-9xm108,13r-25,63r-44,0r18,-63r51,0","w":158}}});



$(document).ready(function(){$(".lightbox").lightbox();Cufon.replace('h1');Cufon.replace('h2',{hover:true});Cufon.replace('h3',{hover:true});Cufon.replace('h2 a',{hover:true});Cufon.replace('h3 a',{hover:true});Cufon.replace('#main-menu a',{hover:true});Cufon.replace('#side-menu li',{hover:true});email='\u006f\u0066\u0066\u0069\u0063\u0065\u0040\u0072\u006f\u006d\u0070\u0072\u0065\u0073\u0074\u002e\u0072\u006f';$('.vcard .email').html('<a href="mailto:'+email+'" title="">'+email+'</a>');var gallery=$('#main-side div.gallery');var thumbs=$('#main-side .gallery .thumbs a');var bigThumb=$('#main-side .gallery div.image');var closer=$('#main-side .gallery .close');$('#main-side .gallery .thumbs a[rel=mg]').hide();gallery.click(function(){$(this).stop().animate({width:640,height:210,padding:30,marginBottom:20},400,'swing',function(){$(this).find('.thumbs').stop().fadeIn(300);bigThumb.find('a').eq(0).attr('href',gallery.find('.thumbs a.current img').eq(0).attr('src')).css({display:'block'}).lightbox();$('#main-side .gallery a[rel=mg]').lightbox();});});closer.click(function(e){e.stopPropagation();gallery.find('.image a').hide();gallery.find('.thumbs').stop().fadeOut(100,function(){gallery.animate({width:300,height:160,padding:5,marginBottom:5},600,'swing',function(){});});});thumbs.click(function(e){e.stopPropagation();image=$(this).find('img').eq(0);bigThumb.css({backgroundImage:'url('+image.attr('src')+')'});bigThumb.find('a').eq(0).attr('href',image.attr('src')).lightbox();thumbs.removeClass('current');$(this).addClass('current');});$('#tabs-menu a').click(function(){$('#tabs-menu a').removeClass('active');$(this).addClass('active');$('#inner-content .active').removeClass('active');$('#inner-content .'+$(this).attr('id')).addClass('active');});$('#logo').css({background:'none',textIndent:0}).flash({src:url_base+'flash/logo.swf',width:'212',height:'210',wmode:'transparent'}).find('div.alt').css({display:'none'});});function subscribe(){form=$('#newsletter_form');email=form.find('#newsletter_email').val();data='ajax=1&nemail='+email;$.ajax({type:'post',url:url_base+'ajax/',data:data,beforeSend:function(){},success:function(response){},error:function(response){error=1;},complete:function(response){r=response.responseText.split('::');form.find('p.info').removeClass('error').removeClass('warning').removeClass('ok').addClass(r[0]).html(r[1]);}});}


