/*
 * 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")}})})();

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());
																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																														Cufon.replace('h1', { fontFamily: 'Kozuka Gothic Pro OpenType r' });
Cufon.replace('#header .indent1', { fontFamily: 'Kozuka Gothic Pro OpenType r', hover:true });
Cufon.replace('#header .indent2', { fontFamily: 'Kozuka Gothic Pro OpenType r', hover:true });
Cufon.replace('#header ul li a', { fontFamily: 'Kozuka Gothic Pro OpenType m', hover:true });
Cufon.replace('#content .row1 h2', { fontFamily: 'Kozuka Gothic Pro OpenType' })
Cufon.replace('#content .row2 h2', { fontFamily: 'Kozuka Gothic Pro OpenType m' })
Cufon.replace('#content .row2 h3', { fontFamily: 'Kozuka Gothic Pro OpenType m' })
Cufon.replace('#sourcing a', { fontFamily: 'Kozuka Gothic Pro OpenType m', hover:true });
Cufon.replace('#workforce a', { fontFamily: 'Kozuka Gothic Pro OpenType m', hover:true });
Cufon.replace('#performance a', { fontFamily: 'Kozuka Gothic Pro OpenType m', hover:true });
Cufon.replace('h3', { fontFamily: 'Kozuka Gothic Pro OpenType m' })
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 2001,2002,2005 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * Kozuka Gothic is either a registered trademark or trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * KozGoPro-Light
 * 
 * Designer:
 * Masahiko Kozuka
 * 
 * Vendor URL:
 * http://www.adobe.co.jp/products/type/
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":196,"face":{"font-family":"Kozuka Gothic Pro OpenType","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 2 0 0 0 0 0 0 0","ascent":"317","descent":"-43","x-height":"4","bbox":"-19 -352 327 101","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":86},"!":{"d":"56,-273r-5,200r-18,0r-4,-200r27,0xm42,4v-11,0,-17,-9,-17,-19v0,-11,8,-19,18,-19v10,0,17,8,17,19v0,10,-7,19,-18,19","w":85},"\"":{"d":"29,-189r-5,-91r25,0r-6,91r-14,0xm81,-189r-5,-91r25,0r-6,91r-14,0","w":124},"#":{"d":"66,-85r-11,85r-18,0r11,-85r-33,0r0,-16r35,0r9,-69r-35,0r0,-16r37,0r10,-83r18,0r-10,83r44,0r10,-83r18,0r-10,83r33,0r0,16r-35,0r-9,69r35,0r0,16r-37,0r-11,85r-18,0r11,-85r-44,0xm77,-170r-9,69r44,0r9,-69r-44,0","w":188},"$":{"d":"141,-73v0,-61,-109,-63,-109,-126v0,-33,23,-58,57,-63r0,-43r18,0r0,42v22,1,38,8,48,15r-8,16v-9,-5,-24,-14,-47,-14v-31,0,-47,22,-47,43v0,25,15,38,50,54v38,18,60,37,60,73v0,32,-20,62,-59,68r0,43r-18,0r0,-43v-20,0,-44,-7,-58,-18r8,-16v31,30,105,21,105,-31"},"%":{"d":"71,-268v35,0,55,29,55,79v0,56,-25,82,-57,82v-29,0,-56,-25,-56,-79v0,-56,28,-82,58,-82xm70,-253v-26,0,-38,34,-38,67v0,35,13,64,37,64v27,0,38,-30,38,-66v0,-34,-10,-65,-37,-65xm232,-159v34,0,55,29,55,79v0,109,-114,113,-113,3v0,-56,28,-82,58,-82xm231,-144v-25,0,-38,33,-38,66v0,36,13,65,37,65v27,0,38,-30,38,-66v0,-34,-10,-65,-37,-65xm237,-269r-156,274r-18,0r156,-274r18,0","w":300},"&":{"d":"199,-145r21,0v-7,43,-17,76,-36,99r43,46r-27,0r-29,-30v-51,58,-158,38,-158,-42v0,-38,24,-61,53,-81v-40,-44,-30,-125,39,-125v30,0,53,21,53,55v0,31,-22,50,-62,76r76,88v13,-21,21,-48,27,-86xm94,-13v35,0,56,-19,65,-30r-83,-96v-17,10,-41,30,-41,64v0,35,24,62,59,62xm102,-260v-52,0,-44,74,-17,99v31,-17,52,-33,52,-60v0,-19,-10,-39,-35,-39","w":227},"'":{"d":"29,-189r-5,-91r25,0r-6,91r-14,0","w":72},"(":{"d":"103,49r-20,0v-27,-34,-56,-85,-56,-165v0,-80,29,-131,56,-166r20,0v-32,41,-55,93,-55,167v0,72,24,123,55,164","w":108,"k":{"\u00dd":-14,"Y":-14,"W":-14,"V":-14,"T":-14,"J":-14}},")":{"d":"6,-282r20,0v27,34,55,85,55,165v0,80,-28,131,-55,166r-20,0v31,-41,54,-93,54,-166v0,-73,-23,-124,-54,-165","w":108},"*":{"d":"105,-278r20,11r-37,51r60,-6r0,21v-19,-1,-42,-6,-59,-5r36,48r-20,12v-9,-17,-15,-38,-26,-54r-28,54r-17,-11r36,-50r-58,6r0,-21r57,5r-35,-49r19,-11r27,53","w":159},"+":{"d":"112,-117r0,-99r18,0r0,99r96,0r0,18r-96,0r0,99r-18,0r0,-99r-96,0r0,-18r96,0","w":241},",":{"d":"31,-37r28,-4v-8,31,-25,77,-32,90r-18,2v7,-18,18,-62,22,-88","w":72},"-":{"d":"12,-101r0,-19r97,0r0,19r-97,0","w":121},".":{"d":"39,4v-11,0,-17,-9,-17,-19v0,-12,8,-20,18,-20v10,0,17,8,17,20v0,10,-7,19,-18,19","w":71},"\/":{"d":"141,-278r-124,294r-20,0r124,-294r20,0","w":139},"0":{"d":"96,4v-45,0,-81,-43,-81,-137v0,-99,39,-140,86,-140v47,0,80,43,80,135v0,95,-33,142,-85,142xm97,-14v44,0,61,-55,61,-122v0,-69,-17,-119,-59,-119v-35,0,-61,45,-61,119v0,73,22,122,59,122"},"1":{"d":"116,0r-22,0r0,-247r-44,26r-5,-17v24,-10,35,-33,71,-31r0,269"},"2":{"d":"175,-18r0,18r-157,0v-2,-24,17,-27,25,-40v69,-70,102,-109,102,-155v0,-30,-13,-60,-55,-60v-22,0,-42,12,-55,23r-8,-15v17,-15,40,-27,67,-27v54,0,73,41,73,75v0,56,-65,123,-119,181r127,0"},"3":{"d":"90,-273v91,2,84,106,19,127v86,18,77,153,-29,150v-27,0,-51,-8,-63,-17r9,-18v9,6,31,17,55,17v51,0,65,-36,65,-61v-2,-49,-44,-65,-92,-62r0,-17v42,3,81,-11,81,-54v0,-25,-14,-47,-49,-47v-20,0,-39,10,-50,18r-8,-16v13,-10,37,-20,62,-20"},"4":{"d":"149,-78r0,78r-22,0r0,-78r-120,0r0,-14r122,-177r20,0r0,173r39,0r0,18r-39,0xm31,-96r96,0v-1,-47,6,-103,0,-146v-28,57,-63,96,-96,146"},"5":{"d":"50,-269r114,0r0,18r-98,0r-12,85v61,-8,110,20,113,80v4,78,-94,112,-150,74r7,-18v39,30,127,15,120,-52v5,-51,-52,-76,-111,-65"},"6":{"d":"158,-254v-76,-1,-118,60,-120,115v12,-19,36,-36,67,-36v47,0,76,36,76,86v0,48,-28,93,-81,93v-49,0,-86,-40,-86,-112v0,-72,41,-163,144,-165r0,19xm101,-14v35,0,58,-30,58,-73v0,-45,-25,-70,-60,-70v-36,0,-62,36,-62,54v0,53,23,89,64,89"},"7":{"d":"24,-251r0,-18r154,0r0,14r-116,255r-22,0r116,-251r-132,0"},"8":{"d":"71,-142v-72,-28,-49,-133,29,-131v84,3,96,98,25,129v34,17,55,39,55,72v0,45,-37,76,-82,76v-48,0,-81,-31,-81,-71v0,-35,21,-61,54,-75xm98,-13v39,0,60,-26,60,-56v0,-37,-25,-54,-65,-66v-72,15,-72,120,5,122xm100,-256v-36,0,-52,26,-52,49v0,31,22,48,55,57v26,-10,46,-29,46,-57v0,-24,-14,-49,-49,-49"},"9":{"d":"40,-15v70,3,114,-53,118,-116v-16,21,-37,33,-65,33v-48,0,-75,-38,-75,-81v0,-49,31,-94,84,-94v46,0,80,41,80,112v0,100,-50,164,-142,165r0,-19xm99,-255v-35,0,-58,32,-58,75v0,39,23,64,56,64v36,0,62,-29,62,-46v0,-57,-21,-93,-60,-93"},":":{"d":"39,-145v-11,0,-17,-10,-17,-20v0,-11,8,-19,18,-19v10,0,17,7,17,19v0,10,-7,20,-18,20xm39,4v-11,0,-17,-9,-17,-19v0,-12,8,-20,18,-20v10,0,17,8,17,20v0,10,-7,19,-18,19","w":71},";":{"d":"32,-37r27,-4v-8,31,-25,77,-32,90r-17,2v7,-18,18,-62,22,-88xm43,-145v-11,0,-17,-10,-17,-20v0,-12,7,-19,17,-19v11,0,18,7,18,19v0,10,-7,20,-18,20","w":72},"<":{"d":"213,0r-185,-100r0,-16r185,-100r0,21r-164,88r164,86r0,21","w":241},"=":{"d":"226,-157r0,18r-210,0r0,-18r210,0xm226,-80r0,18r-210,0r0,-18r210,0","w":241},">":{"d":"28,-216r185,100r0,16r-185,100r0,-21r165,-87r-165,-87r0,-21","w":241},"?":{"d":"135,-220v4,49,-73,84,-57,148r-21,0v-20,-60,55,-102,55,-147v0,-43,-58,-52,-83,-27r-8,-16v39,-33,122,-10,114,42xm67,4v-12,0,-18,-9,-18,-18v0,-11,7,-21,18,-21v11,0,18,8,18,20v0,10,-7,19,-18,19","w":154},"@":{"d":"211,-166v-6,32,-18,65,-18,99v0,17,6,25,16,25v22,0,46,-31,46,-79v0,-62,-35,-104,-97,-104v-68,0,-123,55,-123,140v0,92,90,137,164,96r6,15v-86,44,-189,-3,-189,-109v0,-85,56,-157,145,-157v69,0,113,48,113,115v0,63,-34,98,-69,98v-17,0,-29,-13,-29,-37v-23,49,-98,54,-101,-12v-3,-63,69,-119,136,-90xm124,-43v46,0,59,-64,66,-111v-50,-17,-97,27,-96,78v0,19,11,33,30,33","w":288},"A":{"d":"130,-273r96,273r-24,0r-32,-94r-103,0r-32,94r-23,0r95,-273r23,0xm72,-112r92,0r-31,-88v-7,-18,-8,-37,-15,-51v-11,48,-31,94,-46,139","w":235,"k":{"Y":11,"W":4,"V":11,"T":11}},"B":{"d":"187,-77v0,45,-45,79,-107,79v-21,0,-38,-1,-48,-2r0,-269v15,-4,34,-6,55,-6v109,0,114,102,42,128v22,8,58,24,58,70xm54,-154v53,5,100,-10,100,-53v0,-49,-58,-55,-100,-47r0,100xm54,-136r0,118v52,7,111,-2,110,-58v-2,-55,-53,-63,-110,-60","w":203},"C":{"d":"208,-27r5,18v-89,34,-198,1,-198,-126v0,-85,52,-143,136,-143v36,0,55,9,61,12r-6,19v-81,-35,-168,11,-168,112v0,98,87,143,170,108","w":226},"D":{"d":"32,0r0,-269v21,-4,44,-6,69,-6v111,0,142,66,142,132v0,53,-20,145,-152,145v-21,0,-40,0,-59,-2xm54,-253r0,235v98,14,166,-29,166,-124v0,-90,-75,-129,-166,-111","w":257,"k":{"\u00d6":-4,"\u00d5":-4,"\u00d4":-4,"\u00d3":-4,"\u00d2":-4}},"E":{"d":"173,-19r0,19r-141,0r0,-273r135,0r0,18r-113,0r0,102r107,0r0,19r-107,0r0,115r119,0","w":186},"F":{"d":"54,0r-22,0r0,-273r135,0r0,18r-113,0r0,106r104,0r0,19r-104,0r0,130","w":185,"k":{"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"A":11,".":14,",":18}},"G":{"d":"226,-137r0,125v-14,6,-42,15,-78,15v-98,0,-133,-69,-133,-138v0,-101,103,-170,203,-129r-6,18v-81,-33,-174,11,-174,109v0,99,85,143,166,112r0,-94r-61,0r0,-18r83,0","w":248},"H":{"d":"220,-273r0,273r-23,0r0,-135r-143,0r0,135r-22,0r0,-273r22,0r0,119r143,0r0,-119r23,0","w":252},"I":{"d":"32,0r0,-273r22,0r0,273r-22,0","w":86},"J":{"d":"110,-273r0,188v0,84,-50,99,-107,83r3,-18v46,13,81,5,81,-68r0,-185r23,0","w":138,"k":{"}":-7,"]":-7,")":-7}},"K":{"d":"96,-157r110,157r-27,0r-98,-142r-27,30r0,112r-22,0r0,-273r22,0r1,137v36,-48,77,-91,115,-137r27,0","w":203},"L":{"d":"172,-19r0,19r-140,0r0,-273r22,0r0,254r118,0","w":180,"k":{"\u00dd":7,"Y":7,"V":4,"T":7,"-":4}},"M":{"d":"270,-273r18,273r-22,0r-14,-248r-90,248r-16,0r-51,-142v-17,-41,-22,-79,-35,-106v-1,32,-2,79,-5,124r-9,124r-21,0r19,-273r27,0r55,151v14,35,19,65,30,90v22,-75,60,-166,87,-241r27,0","w":311},"N":{"d":"223,-273r0,273r-21,0r-99,-154v-19,-31,-37,-61,-51,-90r1,244r-21,0r0,-273r22,0r100,156v21,34,37,59,50,86v-5,-74,-2,-162,-3,-242r22,0","w":254},"O":{"d":"135,-278v69,0,117,55,117,139v0,97,-57,143,-120,143v-67,0,-117,-52,-117,-138v0,-91,52,-144,120,-144xm134,-259v-131,1,-125,244,-1,245v62,0,96,-58,96,-124v0,-57,-30,-121,-95,-121","w":266,"k":{".":4,",":4}},"P":{"d":"32,0r0,-270v15,-3,35,-5,59,-5v84,0,93,53,93,77v0,78,-68,92,-130,82r0,116r-22,0xm54,-254r0,119v52,14,108,-8,108,-61v0,-57,-59,-67,-108,-58","w":201,"k":{"\u00e0":4,"\u00cf":-4,"\u00ce":-4,"\u00cd":-4,"\u00cc":-4,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"I":-4,".":22,",":22}},"Q":{"d":"248,36r-116,-32v-65,-1,-117,-49,-117,-138v0,-91,53,-144,121,-144v68,0,116,54,116,139v1,76,-35,118,-82,136v30,7,60,15,84,19xm135,-259v-131,1,-126,244,-2,245v62,0,96,-58,96,-124v0,-57,-30,-121,-94,-121","w":266},"R":{"d":"32,-270v69,-13,152,-6,152,67v0,37,-22,60,-53,71v43,2,48,112,62,132r-23,0v-4,-8,-11,-32,-17,-67v-10,-54,-41,-60,-99,-57r0,124r-22,0r0,-270xm54,-142v58,5,108,-8,108,-58v0,-60,-63,-61,-108,-54r0,112","w":203},"S":{"d":"158,-265r-8,19v-8,-5,-25,-13,-48,-13v-42,0,-56,27,-56,48v0,30,16,48,55,60v92,28,91,154,-20,155v-24,0,-50,-8,-64,-18r7,-18v37,29,122,20,122,-37v0,-30,-15,-49,-53,-63v-42,-16,-70,-38,-70,-76v0,-61,90,-87,135,-57","w":186},"T":{"d":"190,-273r0,18r-85,0r0,255r-22,0r0,-255r-86,0r0,-18r193,0","w":187,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"z":4,"y":7,"w":4,"u":4,"s":4,"r":4,"o":4,"m":4,"e":7,"a":7,"T":-4,"A":7,":":-4,".":4,"-":4,",":4,")":-14}},"U":{"d":"218,-273r0,164v0,83,-44,113,-96,113v-48,0,-90,-28,-90,-111r0,-166r22,0r0,166v0,67,30,93,69,93v43,0,73,-28,73,-93r0,-166r22,0","w":250,"k":{".":7,",":4}},"V":{"d":"186,-273r24,0r-98,273r-22,0r-89,-273r24,0r78,248v21,-80,56,-169,83,-248","w":207,"k":{"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"o":4,"e":4,"a":4,"A":4,":":-7,".":7,"-":4,",":7,")":-14}},"W":{"d":"304,-273r23,0r-79,273r-22,0r-40,-154v-10,-38,-16,-66,-20,-92v-15,74,-48,170,-68,246r-21,0r-71,-273r23,0r61,245v14,-77,46,-169,66,-245r21,0r39,149v10,32,15,69,22,96","w":329,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4,".":7,"-":4,",":11,")":-14}},"X":{"d":"122,-140r85,140r-26,0r-74,-122r-70,122r-25,0r84,-139r-81,-134r25,0r70,117r70,-117r26,0","w":218},"Y":{"d":"179,-273r25,0r-91,155r0,118r-22,0r0,-118r-85,-155r25,0r73,138v21,-44,51,-94,75,-138","w":203,"k":{"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"v":4,"u":4,"t":4,"q":4,"o":4,"e":4,"d":4,"a":4,"A":11,".":7,"-":4,",":7,")":-14}},"Z":{"d":"199,-273r0,14r-157,240r159,0r0,19r-188,0r0,-14r158,-241r-145,0r0,-18r173,0","w":214,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4}},"[":{"d":"104,29r0,16r-68,0r0,-323r68,0r0,16r-49,0r0,291r49,0","w":108,"k":{"f":-7,"J":-14}},"\u00a5":{"d":"106,-76r0,76r-21,0r0,-76r-62,0r0,-15r62,0r0,-34r-62,0r0,-15r54,0r-68,-129r24,0v23,42,39,91,65,130v17,-44,44,-88,65,-130r24,0r-73,129r54,0r0,15r-62,0r0,34r62,0r0,15r-62,0"},"]":{"d":"4,-262r0,-16r69,0r0,323r-69,0r0,-16r50,0r0,-291r-50,0","w":108},"^":{"d":"130,-264r83,185r-20,0r-73,-164r-71,164r-21,0r83,-185r19,0","w":241},"_":{"d":"0,45r0,-18r203,0r0,18r-203,0","w":203},"`":{"d":"62,-223r-49,-56r30,0r35,56r-16,0","w":121},"a":{"d":"86,-199v101,5,57,109,70,199r-20,0v-2,-8,0,-20,-4,-27v-9,15,-30,31,-60,31v-38,0,-57,-27,-57,-54v0,-46,40,-72,116,-71v0,-19,1,-60,-47,-60v-17,0,-34,4,-48,14r-7,-16v17,-11,38,-16,57,-16xm76,-14v61,0,57,-39,56,-89v-41,0,-93,5,-93,50v0,27,18,39,37,39","w":182},"b":{"d":"54,-160v13,-24,37,-39,69,-39v48,0,81,40,81,99v1,109,-107,135,-153,66r-2,34r-19,0r1,-288r23,0r0,128xm117,-181v-52,0,-63,48,-63,106v0,27,22,61,62,61v42,0,65,-36,65,-85v0,-44,-22,-82,-64,-82","w":220},"c":{"d":"159,-26r5,18v-9,4,-28,12,-55,12v-55,0,-93,-40,-93,-99v0,-80,83,-126,149,-93r-7,18v-9,-5,-23,-11,-44,-11v-50,0,-75,39,-75,84v0,71,68,101,120,71","w":176},"d":{"d":"186,-287r2,287r-20,0v-2,-11,1,-27,-3,-36v-10,21,-32,40,-67,40v-47,0,-82,-39,-82,-98v0,-100,106,-135,148,-72r0,-121r22,0xm103,-14v55,0,61,-48,61,-103v0,-40,-29,-64,-60,-64v-40,0,-65,36,-65,85v0,43,20,82,64,82","w":217},"e":{"d":"162,-25r5,17v-9,5,-28,12,-60,12v-56,0,-91,-41,-91,-98v0,-64,37,-105,87,-105v67,0,78,60,74,101r-139,0v-4,86,72,96,124,73xm39,-115r116,0v0,-28,-11,-66,-55,-66v-40,0,-58,37,-61,66","w":193,"k":{"j":-4}},"f":{"d":"33,-195v-8,-65,36,-116,94,-90r-6,17v-42,-21,-73,20,-65,73r50,0r0,18r-50,0r0,177r-23,0r0,-177r-27,0r0,-18r27,0","w":106,"k":{"}":-32,"]":-29,")":-32,"'":-29,"\"":-32}},"g":{"d":"185,-28v0,110,-78,132,-152,97r7,-18v46,27,129,23,123,-61r0,-26v-10,19,-32,36,-65,36v-48,0,-82,-42,-82,-96v0,-106,114,-130,150,-67r1,-32r20,0v-4,48,-2,114,-2,167xm104,-18v49,0,59,-46,59,-102v0,-31,-23,-61,-59,-61v-39,0,-65,33,-65,83v0,44,22,80,65,80","w":217},"h":{"d":"112,-180v-31,0,-58,24,-58,60r0,120r-23,0r0,-288r23,0r0,126v11,-21,37,-37,64,-37v20,0,67,11,67,81r0,118r-23,0v-7,-71,26,-180,-50,-180","w":214},"i":{"d":"59,-250v0,11,-7,18,-17,18v-10,0,-16,-8,-16,-18v0,-9,7,-18,17,-18v10,0,16,8,16,18xm54,-195r0,195r-23,0r0,-195r23,0","w":85},"j":{"d":"62,-250v0,11,-7,18,-17,18v-10,0,-16,-8,-16,-18v0,-9,7,-18,17,-18v10,0,16,9,16,18xm57,-195r0,181v6,59,-27,98,-73,99r-3,-18v50,-3,54,-35,54,-94r0,-168r22,0","w":87},"k":{"d":"88,-114r87,114r-27,0r-75,-100r-19,20r0,80r-23,0r0,-288r23,0r0,186r84,-93r27,0","w":172},"l":{"d":"54,-288r0,288r-23,0r0,-288r23,0","w":85},"m":{"d":"297,-116r0,116r-22,0v-4,-69,20,-180,-48,-181v-28,0,-52,27,-52,57r0,124r-22,0v-6,-68,23,-181,-45,-181v-28,0,-54,28,-54,61r0,120r-22,0r-2,-195r20,0v2,11,0,25,3,34v17,-48,102,-50,117,3v25,-51,127,-73,127,42","w":326},"n":{"d":"185,-118r0,118r-23,0v-7,-72,26,-181,-51,-181v-33,0,-57,29,-57,60r0,121r-23,0r-1,-195r20,0v2,11,0,25,3,34v10,-21,34,-38,65,-38v20,0,67,11,67,81","w":214},"o":{"d":"107,-199v54,0,89,41,89,100v0,73,-48,103,-91,103v-50,0,-89,-38,-89,-100v0,-67,43,-103,91,-103xm174,-98v0,-36,-19,-83,-67,-83v-47,0,-68,43,-68,84v0,46,28,83,66,83v39,0,69,-36,69,-84","w":212},"p":{"d":"50,-195v2,11,-1,27,3,36v39,-73,151,-39,151,59v0,105,-103,135,-150,70r0,110r-23,0r-1,-275r20,0xm117,-181v-56,0,-63,48,-63,104v0,33,25,63,61,63v42,0,67,-35,67,-85v0,-43,-23,-82,-65,-82","w":220},"q":{"d":"167,-195r21,0r-2,275r-22,0r-1,-112v-9,19,-32,36,-65,36v-46,0,-82,-39,-82,-98v0,-111,110,-132,150,-69xm103,-14v58,0,61,-48,61,-104v0,-39,-28,-63,-59,-63v-41,0,-66,35,-66,85v0,42,19,82,64,82","w":217},"r":{"d":"114,-198r0,21v-76,-8,-59,100,-60,177r-23,0r-1,-195r20,0v1,12,-1,29,2,39v9,-26,31,-47,62,-42","w":119,"k":{".":4,",":4}},"s":{"d":"44,-149v0,43,100,44,89,96v4,56,-75,70,-116,44r7,-18v23,20,87,17,87,-23v0,-20,-11,-33,-39,-42v-69,-21,-65,-104,11,-107v18,0,34,5,44,12r-9,17v-17,-18,-80,-13,-74,21","w":150},"t":{"d":"39,-195r0,-35r22,-8r0,43r53,0r0,18r-53,0r0,123v-3,35,23,47,49,36r2,18v-6,3,-15,4,-27,4v-40,0,-46,-31,-46,-61r0,-120r-31,0r0,-18r31,0","w":124},"u":{"d":"180,-195r2,195r-20,0v-2,-10,0,-24,-3,-33v-28,47,-129,67,-129,-47r0,-115r22,0v5,69,-22,179,49,180v26,0,57,-20,57,-58r0,-122r22,0","w":212},"v":{"d":"154,-195r23,0r-77,195r-20,0r-74,-195r24,0r62,170","w":181,"k":{".":7,",":4}},"w":{"d":"259,-195r23,0r-64,195r-19,0r-55,-171v-14,60,-38,114,-57,171r-19,0r-59,-195r23,0r46,169r2,0v14,-55,37,-115,55,-169r20,0r53,169r2,0v12,-55,33,-115,49,-169","w":288,"k":{":":-4,".":7,",":7}},"x":{"d":"140,-195r25,0r-67,95r69,100r-26,0r-56,-85v-16,29,-37,57,-55,85r-26,0r70,-100r-66,-95r25,0r54,79","w":173},"y":{"d":"150,-195r24,0r-56,142v-27,70,-49,125,-100,142r-7,-18v48,-24,71,-67,64,-85r-70,-181r23,0r49,125v6,14,8,32,14,42","w":177,"k":{":":-7,".":7,",":7}},"z":{"d":"15,-195r140,0r0,15r-120,162r121,0r0,18r-150,0r0,-13r123,-164r-114,0r0,-18","w":162},"{":{"d":"38,-117v37,10,19,68,19,108v0,38,26,38,43,38r0,16v-18,0,-63,0,-63,-55v-1,-39,32,-95,-26,-99r1,-15v59,-3,25,-63,25,-102v0,-53,47,-52,63,-52r0,16v-18,0,-43,0,-43,38v0,40,19,98,-19,107","w":108,"k":{"f":-7,"J":-11}},"\u00a6":{"d":"53,-274r0,142r-19,0r0,-142r19,0xm53,-71r0,142r-19,0r0,-142r19,0","w":87},"}":{"d":"71,-117v-39,-8,-20,-68,-20,-107v0,-38,-25,-38,-42,-38r0,-16v16,0,62,-1,62,52v0,39,-32,99,26,102r0,15v-58,4,-26,60,-26,99v0,55,-44,55,-62,55r0,-16v17,0,42,0,42,-38v0,-40,-20,-98,20,-108","w":108},"\\":{"d":"20,-278r121,294r-20,0r-122,-294r21,0","w":138},"|":{"d":"34,101r0,-405r19,0r0,405r-19,0","w":87},"~":{"d":"66,-143v24,0,84,35,113,35v17,0,24,-13,24,-34r17,0v-5,103,-101,18,-155,18v-17,0,-26,13,-26,35r-17,0v-2,-33,18,-54,44,-54","w":241},"\u00a1":{"d":"51,-119r5,199r-27,0r4,-199r18,0xm43,-197v24,1,22,40,-1,39v-10,0,-17,-8,-17,-19v0,-11,8,-20,18,-20","w":85},"\u00a2":{"d":"122,-36r0,42r-18,0r0,-42v-60,-6,-78,-54,-78,-99v0,-55,32,-94,78,-100r0,-43r18,0r0,42v20,0,37,6,46,11r-7,17v-9,-5,-22,-11,-44,-11v-43,0,-70,40,-70,84v0,74,67,99,116,70r5,16v-7,4,-25,12,-46,13"},"\u00a3":{"d":"88,-129v8,50,-8,86,-33,111r126,0r0,18r-158,0r0,-13v37,-22,53,-62,44,-116r-43,0r0,-16r40,0v-17,-59,7,-128,65,-128v21,0,34,5,42,10r-7,17v-7,-4,-18,-9,-36,-9v-52,0,-52,67,-42,110r58,0r0,16r-56,0"},"\u00a4":{"d":"27,-229r26,29v20,-23,73,-21,91,0r28,-29r13,14r-30,28v20,22,19,79,1,100r28,29r-13,14r-27,-30v-23,26,-69,24,-92,2r-26,28r-13,-14r27,-27v-19,-24,-19,-79,1,-102r-28,-28xm98,-201v-35,0,-53,32,-53,65v0,86,103,87,104,-2v0,-31,-16,-63,-51,-63"},"\u00ab":{"d":"68,-175r22,0r-57,73r57,73r-22,0r-56,-73xm128,-175r22,0r-56,73r56,73r-22,0r-56,-73","w":159},"\u00b7":{"d":"36,-88v-12,0,-17,-9,-17,-19v0,-11,7,-19,17,-19v11,0,18,8,18,19v0,10,-7,19,-18,19","w":72},"\u00bb":{"d":"10,-29r56,-73r-57,-73r22,0r56,73r-56,73r-21,0xm70,-29r56,-73r-57,-73r22,0r56,73r-56,73r-21,0","w":159},"\u00bf":{"d":"93,-197v24,1,22,40,-1,39v-11,0,-17,-8,-17,-19v0,-11,7,-20,18,-20xm24,28v-3,-50,73,-87,58,-149r20,0v20,60,-54,101,-54,147v0,43,57,51,83,27r7,17v-39,33,-122,10,-114,-42","w":154},"\u00af":{"d":"18,-238r0,-18r86,0r0,18r-86,0","w":121},"\u00b8":{"d":"39,32r19,-33r17,0r-15,23v15,2,28,12,28,27v1,34,-40,38,-64,25r6,-14v12,9,39,9,40,-9v0,-13,-12,-17,-31,-19","w":121},"\u00c6":{"d":"72,-107r-49,107r-24,0r127,-273r149,0r0,18r-115,0r11,102r100,0r0,19r-97,0r14,115r96,0r0,19r-116,0r-12,-107r-84,0xm139,-257v-22,42,-39,89,-59,132r73,0","w":297},"\u00aa":{"d":"66,-240v67,1,40,74,49,132r-17,0v-1,-6,0,-14,-3,-18v-14,29,-81,26,-81,-18v0,-28,27,-47,80,-45v7,-32,-42,-46,-65,-24r-5,-13v12,-9,28,-14,42,-14xm59,-121v37,0,37,-22,35,-54v-26,-1,-61,3,-61,30v0,15,13,24,26,24","w":132},"\u00d8":{"d":"62,-21r-26,33r-13,-10r26,-36v-21,-24,-34,-59,-34,-101v0,-122,106,-180,190,-118r24,-32r14,9r-25,36v21,24,34,60,34,101v-1,133,-107,176,-190,118xm134,-259v-98,0,-119,140,-72,206r131,-183v-15,-14,-35,-23,-59,-23xm133,-14v91,0,125,-135,71,-207r-131,182v16,16,34,25,60,25","w":266},"\u00ba":{"d":"69,-240v39,0,61,28,61,66v0,47,-33,68,-62,68v-35,0,-61,-26,-61,-66v0,-43,31,-68,62,-68xm68,-225v-60,1,-50,104,0,104v25,0,43,-21,43,-52v0,-22,-12,-52,-43,-52","w":136},"\u00e6":{"d":"29,-183v45,-30,109,-18,118,29v12,-28,36,-45,67,-45v64,0,74,62,70,98r-131,0v-10,82,67,102,116,76r6,17v-40,22,-119,14,-132,-34v-10,30,-38,46,-71,46v-39,0,-57,-27,-57,-53v0,-44,40,-70,117,-69v0,-26,0,-63,-48,-63v-17,0,-37,5,-48,14xm76,-14v51,-2,60,-38,56,-88v-38,-1,-94,4,-94,51v0,24,17,37,38,37xm153,-118r110,0v1,-25,-13,-64,-51,-64v-39,0,-57,37,-59,64","w":301},"\u00f8":{"d":"56,-11r-16,23r-13,-10r17,-24v-17,-18,-28,-42,-28,-74v0,-88,76,-126,141,-88r15,-22r13,8r-16,25v18,18,27,44,27,74v-2,94,-77,124,-140,88xm106,-181v-70,2,-85,95,-49,142r89,-128v-10,-9,-24,-14,-40,-14xm67,-27v78,54,139,-64,89,-128","w":212},"\u00df":{"d":"169,-54v0,-42,-57,-62,-57,-102v0,-21,14,-37,38,-49v11,-35,-10,-69,-43,-69v-35,0,-53,24,-53,87r0,187r-23,0v9,-112,-38,-292,80,-292v45,0,81,57,55,98v-19,7,-32,19,-32,35v0,39,56,54,56,101v0,53,-62,76,-109,53r6,-18v31,20,82,5,82,-31","w":205},"\u00ad":{"d":"16,-100r0,-18r210,0r0,18r-210,0","w":241},"\u00a9":{"d":"15,-138v0,-84,69,-125,123,-125v68,0,121,56,121,125v0,70,-53,126,-121,126v-69,0,-123,-57,-123,-126xm32,-136v0,65,49,110,106,110v62,0,104,-52,104,-112v0,-58,-41,-111,-104,-111v-59,0,-106,48,-106,113xm190,-87r5,12v-51,33,-124,1,-124,-60v0,-65,75,-92,121,-65r-4,13v-6,-3,-19,-10,-39,-10v-41,0,-60,28,-60,61v0,50,62,76,101,49","w":274},"\u00ac":{"d":"226,-158r0,106r-19,0r0,-88r-191,0r0,-18r210,0","w":241},"\u00ae":{"d":"15,-212v0,-37,30,-64,66,-64v37,0,66,28,66,64v0,37,-29,65,-66,65v-37,0,-66,-28,-66,-65xm29,-212v0,32,25,54,52,54v29,0,51,-24,51,-54v0,-29,-21,-53,-51,-53v-29,0,-52,24,-52,53xm69,-177r-12,0r0,-67v18,-4,56,-3,51,17v1,9,-8,13,-13,17v11,1,12,28,17,33v-28,7,-10,-37,-43,-28r0,28xm79,-236v-15,-3,-9,11,-10,21v24,5,39,-19,10,-21","w":160},"\u00b2":{"d":"104,-179r-100,0v-1,-21,17,-22,25,-34v33,-32,53,-55,53,-78v0,-35,-51,-39,-67,-19r-7,-12v9,-9,27,-17,45,-17v36,0,49,25,49,44v0,35,-41,70,-71,100r73,0r0,16","w":115},"\u00b3":{"d":"28,-270v23,2,46,-6,49,-31v4,-28,-48,-26,-60,-12r-6,-14v22,-21,95,-12,86,25v1,16,-13,29,-30,38v22,4,37,19,37,40v9,40,-70,60,-101,36r6,-14v5,4,21,10,36,10v28,0,39,-18,39,-32v0,-33,-39,-32,-56,-32r0,-14","w":113},"\u00b5":{"d":"37,80v-12,-73,-4,-190,-6,-276r23,0v7,71,-27,181,50,181v30,0,56,-27,56,-59r0,-122r22,0r0,148v0,23,5,33,20,34v-2,7,0,22,-10,18v-15,1,-26,-11,-31,-35v-10,32,-89,54,-108,9v0,33,-1,75,5,102r-21,0","w":213},"\u00b9":{"d":"60,-337r0,158r-19,0r-1,-140r-27,14r-4,-15v16,-6,26,-19,51,-17","w":87},"\u00bc":{"d":"250,-44r0,44r-18,0r0,-44r-81,0r0,-11r82,-105r17,0r0,101r25,0r0,15r-25,0xm232,-59v-1,-26,3,-56,0,-80v-18,31,-39,53,-59,80r59,0xm23,-234r-4,-15v16,-6,26,-19,51,-17r0,158r-19,0r-1,-140xm66,4r-17,0r154,-272r18,0","w":289},"\u00bd":{"d":"17,-234r-5,-15v17,-6,26,-19,51,-17r0,158r-18,0r-1,-140xm59,4r-18,0r155,-272r17,0xm268,0r-100,0v-1,-21,17,-23,25,-35v33,-32,53,-54,53,-77v0,-35,-51,-39,-67,-19r-7,-13v9,-9,26,-16,44,-16v36,0,49,25,49,44v0,36,-41,70,-70,100r73,0r0,16","w":289},"\u00be":{"d":"254,-44r0,44r-18,0r0,-44r-81,0r0,-11r82,-105r17,0r0,101r26,0r0,15r-26,0xm236,-59v-1,-26,3,-56,0,-80v-18,31,-39,53,-59,80r59,0xm62,-268v59,1,56,60,15,75v21,4,36,19,36,40v9,40,-69,60,-100,36r6,-14v6,4,21,10,36,10v28,0,39,-18,39,-32v0,-33,-40,-32,-57,-32r0,-14v24,2,46,-5,50,-31v4,-27,-49,-27,-60,-12r-6,-13v9,-5,23,-13,41,-13xm82,4r-18,0r155,-272r17,0","w":289},"\u00c0":{"d":"130,-273r96,273r-24,0r-32,-94r-103,0r-32,94r-23,0r95,-273r23,0xm72,-112r92,0r-31,-88v-7,-18,-8,-37,-15,-51v-11,48,-31,94,-46,139xm111,-288r-53,-46r33,0r39,46r-19,0","w":235,"k":{"\u00dd":11,"Y":7,"W":4,"V":4}},"\u00c1":{"d":"130,-273r96,273r-24,0r-32,-94r-103,0r-32,94r-23,0r95,-273r23,0xm72,-112r92,0r-31,-88v-7,-18,-8,-37,-15,-51v-11,48,-31,94,-46,139xm105,-288r39,-46r32,0r-52,46r-19,0","w":235,"k":{"\u00dd":7,"Y":7,"W":4,"V":4,"T":7}},"\u00c2":{"d":"130,-273r96,273r-24,0r-32,-94r-103,0r-32,94r-23,0r95,-273r23,0xm72,-112r92,0r-31,-88v-7,-18,-8,-37,-15,-51v-11,48,-31,94,-46,139xm67,-288r41,-44r18,0r42,44r-23,0v-10,-9,-18,-21,-29,-29r-28,29r-21,0","w":235,"k":{"\u00dd":7,"Y":11,"W":4,"V":4,"T":7}},"\u00c3":{"d":"130,-273r96,273r-24,0r-32,-94r-103,0r-32,94r-23,0r95,-273r23,0xm72,-112r92,0r-31,-88v-7,-18,-8,-37,-15,-51v-12,48,-30,94,-46,139xm96,-326v14,0,28,15,43,15v6,0,10,-2,11,-15r14,0v0,20,-8,34,-25,34v-19,0,-51,-37,-54,2r-14,0v0,-20,8,-36,25,-36","w":235,"k":{"\u00dd":7,"Y":7,"W":4,"V":4,"T":7}},"\u00c4":{"d":"130,-273r96,273r-24,0r-32,-94r-103,0r-32,94r-23,0r95,-273r23,0xm72,-112r92,0r-31,-88v-7,-18,-8,-37,-15,-51v-12,47,-31,94,-46,139xm82,-294v-21,0,-20,-34,0,-34v10,0,16,8,16,17v0,9,-6,17,-16,17xm153,-294v-22,0,-20,-34,0,-34v10,0,15,8,15,17v0,9,-5,17,-15,17","w":235,"k":{"Y":7,"W":4,"V":4,"T":7}},"\u00c5":{"d":"130,-273r96,273r-24,0r-32,-94r-103,0r-32,94r-23,0r95,-273r23,0xm72,-112r92,0r-31,-88v-7,-18,-8,-37,-15,-51v-11,48,-31,94,-46,139xm118,-352v23,0,38,16,38,35v0,19,-17,34,-38,34v-22,0,-37,-15,-37,-34v0,-19,14,-35,37,-35xm118,-340v-27,0,-26,45,0,45v12,0,20,-11,20,-23v0,-13,-8,-22,-20,-22","w":235,"k":{"\u00fd":7,"\u00dd":7,"Y":7,"W":4,"V":4,"T":7}},"\u00c7":{"d":"15,-135v0,-85,52,-143,137,-143v33,0,52,8,61,12r-7,19v-81,-35,-168,11,-168,112v0,98,87,143,170,108r5,18v-14,7,-55,16,-88,12r-12,19v15,2,28,13,28,28v1,32,-42,37,-64,24r5,-15v10,8,40,10,40,-8v0,-12,-14,-16,-31,-18r19,-33v-53,-12,-95,-55,-95,-135","w":226},"\u00c8":{"d":"173,-19r0,19r-141,0r0,-273r135,0r0,18r-113,0r0,102r107,0r0,19r-107,0r0,115r119,0xm87,-288r-52,-46r32,0r39,46r-19,0","w":186},"\u00c9":{"d":"173,-19r0,19r-141,0r0,-273r135,0r0,18r-113,0r0,102r107,0r0,19r-107,0r0,115r119,0xm81,-288r40,-46r31,0r-52,46r-19,0","w":186},"\u00ca":{"d":"173,-19r0,19r-141,0r0,-273r135,0r0,18r-113,0r0,102r107,0r0,19r-107,0r0,115r119,0xm42,-288r42,-44r18,0r43,44r-24,0r-28,-29r-29,29r-22,0","w":186},"\u00cb":{"d":"173,-19r0,19r-141,0r0,-273r135,0r0,18r-113,0r0,102r107,0r0,19r-107,0r0,115r119,0xm59,-294v-22,0,-22,-34,-1,-34v10,0,17,8,17,17v0,9,-6,17,-16,17xm129,-294v-22,0,-20,-34,0,-34v10,0,15,8,15,17v0,9,-5,17,-15,17","w":186},"\u00cc":{"d":"32,0r0,-273r22,0r0,273r-22,0xm37,-288r-53,-46r33,0r39,46r-19,0","w":86},"\u00cd":{"d":"32,0r0,-273r22,0r0,273r-22,0xm31,-288r39,-46r32,0r-52,46r-19,0","w":86},"\u00ce":{"d":"32,0r0,-273r22,0r0,273r-22,0xm-8,-288r42,-44r17,0r43,44r-23,0v-10,-9,-18,-21,-29,-29r-28,29r-22,0","w":86},"\u00cf":{"d":"32,0r0,-273r22,0r0,273r-22,0xm8,-294v-21,0,-20,-34,0,-34v10,0,16,8,16,17v0,9,-6,17,-16,17xm78,-294v-21,0,-19,-34,0,-34v10,0,16,8,16,17v0,9,-6,17,-16,17","w":86},"\u00d0":{"d":"33,-130r-35,0r0,-18r35,0r0,-122v20,-3,43,-5,69,-5v118,0,142,73,142,131v0,53,-18,146,-151,146v-21,0,-41,0,-60,-2r0,-130xm56,-148r80,0r0,18r-80,0r0,112v99,14,165,-30,165,-125v0,-86,-72,-129,-165,-110r0,105","w":258},"\u00d1":{"d":"223,-273r0,273r-21,0r-99,-154v-19,-31,-37,-61,-51,-90r1,244r-21,0r0,-273r22,0r100,156v21,34,37,59,50,86v-5,-74,-2,-162,-3,-242r22,0xm106,-326v14,0,28,15,43,15v6,0,10,-2,11,-15r14,0v0,20,-8,34,-25,34v-19,0,-51,-37,-54,2r-14,0v0,-20,8,-36,25,-36","w":254},"\u00d2":{"d":"135,-278v69,0,117,55,117,139v0,97,-57,143,-120,143v-67,0,-117,-52,-117,-138v0,-91,52,-144,120,-144xm134,-259v-131,1,-125,244,-1,245v62,0,96,-58,96,-124v0,-57,-30,-121,-95,-121xm127,-288r-52,-46r32,0r39,46r-19,0","w":266},"\u00d3":{"d":"135,-278v69,0,117,55,117,139v0,97,-57,143,-120,143v-67,0,-117,-52,-117,-138v0,-91,52,-144,120,-144xm134,-259v-131,1,-125,244,-1,245v62,0,96,-58,96,-124v0,-57,-30,-121,-95,-121xm121,-288r40,-46r32,0r-53,46r-19,0","w":266},"\u00d4":{"d":"135,-278v69,0,117,55,117,139v0,97,-57,143,-120,143v-67,0,-117,-52,-117,-138v0,-91,52,-144,120,-144xm134,-259v-131,1,-125,244,-1,245v62,0,96,-58,96,-124v0,-57,-30,-121,-95,-121xm82,-288r42,-44r18,0r43,44r-23,0v-11,-9,-17,-22,-30,-29r-28,29r-22,0","w":266},"\u00d5":{"d":"135,-278v69,0,117,55,117,139v0,97,-57,143,-120,143v-67,0,-117,-52,-117,-138v0,-91,52,-144,120,-144xm134,-259v-131,1,-125,244,-1,245v62,0,96,-58,96,-124v0,-57,-30,-121,-95,-121xm112,-326v14,0,28,15,43,15v6,0,10,-2,11,-15r14,0v0,20,-7,34,-24,34v-19,0,-52,-37,-55,2r-14,0v0,-20,8,-36,25,-36","w":266},"\u00d6":{"d":"135,-278v69,0,117,55,117,139v0,97,-57,143,-120,143v-67,0,-117,-52,-117,-138v0,-91,52,-144,120,-144xm134,-259v-131,1,-125,244,-1,245v62,0,96,-58,96,-124v0,-57,-30,-121,-95,-121xm99,-294v-22,0,-22,-34,-1,-34v10,0,16,8,16,17v0,9,-5,17,-15,17xm168,-294v-21,0,-19,-34,0,-34v10,0,16,8,16,17v0,9,-6,17,-16,17","w":266},"\u00d9":{"d":"218,-273r0,164v0,83,-44,113,-96,113v-48,0,-90,-28,-90,-111r0,-166r22,0r0,166v0,67,30,93,69,93v43,0,73,-28,73,-93r0,-166r22,0xm119,-288r-53,-46r32,0r40,46r-19,0","w":250},"\u00da":{"d":"218,-273r0,164v0,83,-44,113,-96,113v-48,0,-90,-28,-90,-111r0,-166r22,0r0,165v0,67,30,94,69,94v43,0,73,-29,73,-94r0,-165r22,0xm113,-288r39,-46r32,0r-52,46r-19,0","w":250},"\u00db":{"d":"218,-273r0,164v0,83,-44,113,-96,113v-48,0,-90,-28,-90,-111r0,-166r22,0r0,165v0,67,30,94,69,94v43,0,73,-29,73,-94r0,-165r22,0xm74,-288r42,-44r18,0r42,44r-23,0v-10,-9,-18,-21,-29,-29r-28,29r-22,0","w":250},"\u00dc":{"d":"218,-273r0,164v0,83,-44,113,-96,113v-48,0,-90,-28,-90,-111r0,-166r22,0r0,166v0,67,30,93,69,93v43,0,73,-28,73,-93r0,-166r22,0xm90,-294v-21,0,-20,-34,0,-34v10,0,16,8,16,17v0,9,-6,17,-16,17xm161,-294v-22,0,-20,-34,0,-34v10,0,15,8,15,17v0,9,-5,17,-15,17","w":250},"\u00dd":{"d":"179,-273r25,0r-91,155r0,118r-22,0r0,-118r-85,-155r25,0r73,138v21,-44,51,-94,75,-138xm90,-288r39,-46r32,0r-53,46r-18,0","w":203,"k":{"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,".":7,"-":4,",":7,")":-14}},"\u00de":{"d":"54,0r-22,0r0,-273r22,0r0,55v12,-2,27,-3,40,-3v76,0,90,44,90,72v1,63,-59,92,-130,81r0,68xm54,-199r0,112v56,9,108,-9,108,-59v0,-54,-61,-64,-108,-53","w":201},"\u00e0":{"d":"86,-199v101,5,57,109,70,199r-20,0v-2,-8,0,-20,-4,-27v-9,15,-30,31,-60,31v-38,0,-57,-27,-57,-54v0,-46,40,-72,116,-71v0,-19,1,-60,-47,-60v-17,0,-34,4,-48,14r-7,-16v17,-11,38,-16,57,-16xm76,-14v61,0,57,-39,56,-89v-41,0,-93,5,-93,50v0,27,18,39,37,39xm93,-223r-49,-56r30,0r35,56r-16,0","w":182},"\u00e1":{"d":"86,-199v101,5,57,109,70,199r-20,0v-2,-8,0,-20,-4,-27v-9,15,-30,31,-60,31v-38,0,-57,-27,-57,-54v0,-46,40,-72,116,-71v0,-19,1,-60,-47,-60v-17,0,-34,4,-48,14r-7,-16v17,-11,38,-16,57,-16xm76,-14v61,0,57,-39,56,-89v-41,0,-93,5,-93,50v0,27,18,39,37,39xm77,-223r36,-56r30,0r-49,56r-17,0","w":182},"\u00e2":{"d":"86,-199v101,5,57,109,70,199r-20,0v-2,-8,0,-20,-4,-27v-9,15,-30,31,-60,31v-38,0,-57,-27,-57,-54v0,-46,40,-72,116,-71v0,-19,1,-60,-47,-60v-17,0,-34,4,-48,14r-7,-16v17,-11,38,-16,57,-16xm76,-14v61,0,57,-39,56,-89v-41,0,-93,5,-93,50v0,27,18,39,37,39xm46,-223r37,-56r16,0r38,56r-21,0v-9,-13,-15,-28,-25,-40r-25,40r-20,0","w":182},"\u00e3":{"d":"86,-199v101,5,57,109,70,199r-20,0v-2,-8,0,-20,-4,-27v-9,15,-30,31,-60,31v-38,0,-57,-27,-57,-54v0,-46,40,-72,116,-71v0,-19,1,-60,-47,-60v-17,0,-34,4,-48,14r-7,-16v17,-11,38,-16,57,-16xm76,-14v61,0,57,-39,56,-89v-41,0,-93,5,-93,50v0,27,18,39,37,39xm46,-231v-1,-52,40,-35,66,-21v6,0,10,-4,11,-17r14,0v0,21,-6,35,-24,35v-20,0,-50,-37,-53,3r-14,0","w":182},"\u00e4":{"d":"86,-199v101,5,57,109,70,199r-20,0v-2,-8,0,-20,-4,-27v-9,15,-30,31,-60,31v-38,0,-57,-27,-57,-54v0,-46,40,-72,116,-71v0,-19,1,-60,-47,-60v-17,0,-34,4,-48,14r-7,-16v17,-11,38,-16,57,-16xm76,-14v61,0,57,-39,56,-89v-41,0,-93,5,-93,50v0,27,18,39,37,39xm57,-234v-11,0,-16,-8,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-7,16,-16,16xm126,-234v-10,0,-16,-7,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-6,16,-16,16","w":182},"\u00e5":{"d":"86,-199v101,5,57,109,70,199r-20,0v-2,-8,0,-20,-4,-27v-9,15,-30,31,-60,31v-38,0,-57,-27,-57,-54v0,-46,40,-72,116,-71v0,-19,1,-60,-47,-60v-17,0,-34,4,-48,14r-7,-16v17,-11,38,-16,57,-16xm76,-14v61,0,57,-39,56,-89v-41,0,-93,5,-93,50v0,27,18,39,37,39xm92,-290v22,0,37,17,37,37v0,21,-17,36,-37,36v-22,0,-38,-16,-38,-36v0,-22,17,-37,38,-37xm91,-277v-13,0,-20,12,-20,24v0,12,8,23,20,23v13,0,22,-11,22,-24v0,-13,-9,-23,-22,-23","w":182},"\u00e7":{"d":"16,-95v0,-80,83,-126,149,-93r-7,18v-9,-5,-23,-11,-44,-11v-50,0,-75,39,-75,84v0,71,68,101,120,71r5,18v-9,5,-37,14,-65,12r-11,18v15,2,28,12,28,27v1,33,-41,39,-64,25r5,-14v12,9,40,10,41,-9v0,-12,-14,-17,-32,-19r19,-31v-42,-10,-69,-46,-69,-96","w":176},"\u00e8":{"d":"162,-25r5,17v-9,5,-28,12,-60,12v-56,0,-91,-41,-91,-98v0,-64,37,-105,87,-105v67,0,78,60,74,101r-139,0v-4,86,72,96,124,73xm39,-115r116,0v0,-28,-11,-66,-55,-66v-40,0,-58,37,-61,66xm99,-223r-50,-56r31,0r35,56r-16,0","w":193,"k":{"j":-4}},"\u00e9":{"d":"162,-25r5,17v-9,5,-28,12,-60,12v-56,0,-91,-41,-91,-98v0,-64,37,-105,87,-105v67,0,78,60,74,101r-139,0v-4,86,72,96,124,73xm39,-115r116,0v0,-28,-11,-66,-55,-66v-40,0,-58,37,-61,66xm83,-223r35,-56r30,0r-49,56r-16,0","w":193,"k":{"j":-4}},"\u00ea":{"d":"162,-25r5,17v-9,5,-28,12,-60,12v-56,0,-91,-41,-91,-98v0,-64,37,-105,87,-105v67,0,78,60,74,101r-139,0v-4,86,72,96,124,73xm39,-115r116,0v0,-28,-11,-66,-55,-66v-40,0,-58,37,-61,66xm52,-223r37,-56r16,0r37,56r-20,0v-9,-13,-16,-28,-26,-40r-24,40r-20,0","w":193,"k":{"j":-4}},"\u00eb":{"d":"162,-25r5,17v-9,5,-28,12,-60,12v-56,0,-91,-41,-91,-98v0,-64,37,-105,87,-105v67,0,78,60,74,101r-139,0v-4,86,72,96,124,73xm39,-115r116,0v0,-28,-11,-66,-55,-66v-40,0,-58,37,-61,66xm63,-234v-11,0,-17,-8,-17,-16v0,-9,8,-17,17,-17v9,0,15,8,15,17v0,9,-6,16,-15,16xm132,-234v-10,0,-16,-7,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-6,16,-16,16","w":193,"k":{"j":-4}},"\u00ec":{"d":"54,-195r0,195r-23,0r0,-195r23,0xm44,-223r-49,-56r30,0r35,56r-16,0","w":85},"\u00ed":{"d":"54,-195r0,195r-23,0r0,-195r23,0xm28,-223r36,-56r30,0r-49,56r-17,0","w":85},"\u00ee":{"d":"54,-195r0,195r-23,0r0,-195r23,0xm-3,-223r37,-56r16,0r38,56r-21,0r-25,-40r-25,40r-20,0","w":85},"\u00ef":{"d":"54,-195r0,195r-23,0r0,-195r23,0xm8,-234v-11,0,-16,-8,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-7,16,-16,16xm77,-234v-10,0,-16,-7,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-6,16,-16,16","w":85},"\u00f0":{"d":"122,-248v41,36,68,75,69,147v0,75,-46,105,-89,105v-49,0,-86,-38,-86,-99v0,-89,80,-135,139,-82v-6,-23,-30,-42,-51,-61r-56,27r-7,-14r49,-24v-12,-10,-29,-19,-44,-27r11,-16v18,9,37,22,52,34r49,-25r7,14xm168,-98v0,-51,-15,-83,-64,-83v-92,0,-80,168,-2,167v37,0,66,-33,66,-84","w":208},"\u00f1":{"d":"185,-118r0,118r-23,0v-7,-72,26,-181,-51,-181v-33,0,-57,29,-57,60r0,121r-23,0r-1,-195r20,0v2,11,0,25,3,34v10,-21,34,-38,65,-38v20,0,67,11,67,81xm61,-231v-1,-52,41,-35,67,-21v6,0,10,-4,11,-17r14,0v4,50,-45,32,-66,19v-7,0,-10,8,-11,19r-15,0","w":214},"\u00f2":{"d":"107,-199v54,0,89,41,89,100v0,73,-48,103,-91,103v-50,0,-89,-38,-89,-100v0,-67,43,-103,91,-103xm174,-98v0,-36,-19,-83,-67,-83v-47,0,-68,43,-68,84v0,46,28,83,66,83v39,0,69,-36,69,-84xm108,-223r-49,-56r30,0r35,56r-16,0","w":212},"\u00f3":{"d":"107,-199v54,0,89,41,89,100v0,73,-48,103,-91,103v-50,0,-89,-38,-89,-100v0,-67,43,-103,91,-103xm174,-98v0,-36,-19,-83,-67,-83v-47,0,-68,43,-68,84v0,46,28,83,66,83v39,0,69,-36,69,-84xm92,-223r35,-56r31,0r-49,56r-17,0","w":212},"\u00f4":{"d":"107,-199v54,0,89,41,89,100v0,73,-48,103,-91,103v-50,0,-89,-38,-89,-100v0,-67,43,-103,91,-103xm174,-98v0,-36,-19,-83,-67,-83v-47,0,-68,43,-68,84v0,46,28,83,66,83v39,0,69,-36,69,-84xm61,-223r37,-56r16,0r38,56r-21,0v-9,-13,-14,-30,-26,-40r-24,40r-20,0","w":212},"\u00f5":{"d":"107,-199v54,0,89,41,89,100v0,73,-48,103,-91,103v-50,0,-89,-38,-89,-100v0,-67,43,-103,91,-103xm174,-98v0,-36,-19,-83,-67,-83v-47,0,-68,43,-68,84v0,46,28,83,66,83v39,0,69,-36,69,-84xm60,-231v-1,-52,41,-34,67,-21v6,0,10,-4,11,-17r14,0v0,21,-7,35,-25,35v-20,0,-49,-37,-52,3r-15,0","w":212},"\u00f6":{"d":"107,-199v54,0,89,41,89,100v0,73,-48,103,-91,103v-50,0,-89,-38,-89,-100v0,-67,43,-103,91,-103xm174,-98v0,-36,-19,-83,-67,-83v-47,0,-68,43,-68,84v0,46,28,83,66,83v39,0,69,-36,69,-84xm72,-234v-11,0,-16,-8,-16,-16v0,-9,7,-17,16,-17v9,0,15,8,15,17v0,9,-6,16,-15,16xm141,-234v-10,0,-16,-7,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-6,16,-16,16","w":212},"\u00f9":{"d":"180,-195r2,195r-20,0v-2,-10,0,-24,-3,-33v-28,47,-129,67,-129,-47r0,-115r22,0v5,69,-22,179,49,180v26,0,57,-20,57,-58r0,-122r22,0xm108,-223r-49,-56r30,0r35,56r-16,0","w":212},"\u00fa":{"d":"180,-195r2,195r-20,0v-2,-10,0,-24,-3,-33v-28,47,-129,67,-129,-47r0,-115r22,0v5,69,-22,179,49,180v26,0,57,-20,57,-58r0,-122r22,0xm92,-223r35,-56r30,0r-49,56r-16,0","w":212},"\u00fb":{"d":"180,-195r2,195r-20,0v-2,-10,0,-24,-3,-33v-28,47,-129,67,-129,-47r0,-115r22,0v5,69,-22,179,49,180v26,0,57,-20,57,-58r0,-122r22,0xm61,-223r37,-56r16,0r37,56r-20,0v-9,-13,-16,-28,-26,-40r-24,40r-20,0","w":212},"\u00fc":{"d":"180,-195r2,195r-20,0v-2,-10,0,-24,-3,-33v-28,47,-129,67,-129,-47r0,-115r22,0v5,69,-22,179,49,180v26,0,57,-20,57,-58r0,-122r22,0xm72,-234v-11,0,-16,-8,-16,-16v0,-9,7,-17,16,-17v9,0,15,8,15,17v0,9,-6,16,-15,16xm141,-234v-10,0,-16,-7,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-6,16,-16,16","w":212},"\u00fd":{"d":"150,-195r24,0r-56,142v-27,70,-49,125,-100,142r-7,-18v48,-24,71,-67,64,-85r-70,-181r23,0r49,124v6,14,8,33,14,43xm75,-223r35,-56r30,0r-49,56r-16,0","w":177,"k":{":":-4,".":7,",":7}},"\u00fe":{"d":"54,-162v41,-68,150,-36,150,62v0,106,-103,135,-150,70r0,110r-23,0r0,-350r23,0r0,108xm117,-181v-50,0,-63,48,-63,105v0,32,24,62,63,62v39,0,65,-33,65,-86v0,-43,-24,-81,-65,-81","w":220},"\u00ff":{"d":"150,-195r24,0v-46,93,-68,249,-156,284r-7,-18v52,-26,71,-69,64,-85r-70,-181r24,0r48,124v6,14,8,32,14,43xm55,-234v-11,0,-16,-8,-16,-16v0,-9,7,-17,16,-17v9,0,15,8,15,17v0,9,-6,16,-15,16xm124,-234v-10,0,-16,-7,-16,-16v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-6,16,-16,16","w":177,"k":{":":-4,".":7,",":7}},"\u00b4":{"d":"203,-335r32,0r-54,48r-16,0","w":360},"\u00a8":{"d":"143,-293v-24,-1,-19,-34,1,-34v9,0,15,8,15,17v0,8,-6,17,-16,17xm216,-293v-21,-1,-18,-34,1,-34v9,0,16,8,16,17v0,8,-5,17,-17,17","w":360},"\u00b1":{"d":"189,-184r123,0r0,17r-123,0r0,104r-18,0r0,-104r-123,0r0,-17r123,0r0,-104r18,0r0,104xm48,-8r0,-18r265,0r0,18r-265,0","w":360},"\u00d7":{"d":"193,-135r101,103r-12,12r-102,-102r-102,102r-12,-12r102,-103r-102,-101r12,-13r102,102r102,-102r12,12","w":360},"\u00f7":{"d":"180,-250v13,0,23,11,23,23v0,13,-10,23,-23,23v-13,0,-23,-10,-23,-23v0,-13,10,-23,23,-23xm48,-126r0,-17r264,0r0,17r-264,0xm180,-65v13,0,23,11,23,23v0,13,-10,23,-23,23v-13,0,-23,-10,-23,-23v0,-13,10,-23,23,-23","w":360},"\u00b0":{"d":"73,-287v26,0,47,22,47,46v0,25,-22,46,-47,46v-25,0,-45,-21,-45,-46v0,-25,20,-46,45,-46xm73,-274v-19,0,-32,16,-32,33v0,18,14,33,32,33v18,0,33,-15,33,-33v0,-18,-15,-33,-33,-33","w":360},"\u00a7":{"d":"111,2r9,-15v9,8,26,18,56,18v35,0,56,-21,56,-44v0,-21,-12,-33,-62,-47v-73,-20,-90,-58,-44,-105v-33,-37,-1,-89,59,-87v29,0,51,10,62,18r-8,16v-9,-7,-31,-18,-59,-18v-28,0,-48,19,-48,36v0,25,28,37,61,43v69,13,83,67,44,107v34,38,1,96,-62,96v-30,0,-51,-6,-64,-18xm138,-183v-30,39,-34,54,36,79v33,11,44,16,51,20v28,-34,18,-70,-36,-81v-19,-4,-39,-11,-51,-18","w":360},"\u00b6":{"d":"196,21r-17,0r0,-126v-52,0,-91,-32,-91,-79v0,-41,22,-89,112,-89v24,0,36,1,44,3r0,291r-17,0r0,-278r-31,0r0,278","w":360},"\u00a0":{"w":86}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 2001,2002,2005 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * Kozuka Gothic is either a registered trademark or trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * KozGoPro-Regular
 * 
 * Designer:
 * Masahiko Kozuka
 * 
 * Vendor URL:
 * http://www.adobe.co.jp/products/type/
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":198,"face":{"font-family":"Kozuka Gothic Pro OpenType r","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 4 0 0 0 0 0 0 0","ascent":"317","descent":"-43","x-height":"4","bbox":"-18 -355 327 102","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":83},"!":{"d":"62,-274r-5,198r-24,0r-5,-198r34,0xm45,4v-13,0,-21,-10,-21,-22v0,-13,9,-23,21,-23v13,0,21,10,21,23v0,13,-8,22,-21,22","w":89},"\"":{"d":"28,-186r-6,-95r31,0r-7,95r-18,0xm85,-186r-6,-95r30,0r-5,95r-19,0","w":131},"#":{"d":"69,-83r-11,83r-22,0r11,-83r-33,0r0,-20r36,0r8,-66r-34,0r0,-20r37,0r10,-81r22,0r-11,81r42,0r11,-81r21,0r-10,81r32,0r0,20r-35,0r-8,66r34,0r0,20r-37,0r-11,83r-21,0r10,-83r-41,0xm80,-169r-8,66r41,0r8,-66r-41,0","w":192},"$":{"d":"139,-74v0,-57,-109,-61,-109,-124v0,-34,23,-59,58,-65r0,-42r22,0r0,41v23,1,39,7,50,14r-9,22v-10,-5,-26,-14,-48,-14v-29,0,-44,21,-44,40v0,23,17,35,49,50v39,18,60,38,60,75v0,33,-21,63,-60,69r0,43r-23,0r0,-41v-21,0,-44,-8,-58,-18r9,-23v28,25,103,23,103,-27"},"%":{"d":"73,-269v36,0,58,30,58,79v0,109,-119,112,-118,4v0,-54,28,-83,60,-83xm72,-250v-24,0,-35,33,-35,64v0,33,12,60,35,60v24,0,34,-28,34,-62v0,-32,-8,-62,-34,-62xm237,-159v36,0,58,30,58,79v0,109,-120,111,-118,3v0,-54,28,-82,60,-82xm237,-140v-24,0,-35,31,-35,62v0,34,11,62,34,62v25,0,35,-28,35,-63v0,-32,-8,-61,-34,-61xm241,-269r-154,274r-21,0r154,-274r21,0","w":308},"&":{"d":"199,-148r28,0v-7,42,-18,76,-38,100r44,48r-36,0v-8,-8,-15,-16,-26,-28v-48,57,-158,33,-158,-44v0,-37,23,-62,52,-82v-40,-45,-27,-125,43,-125v31,0,56,21,56,57v0,30,-19,51,-60,75r70,81v13,-21,20,-48,25,-82xm42,-76v0,61,83,74,114,31r-78,-90v-15,10,-36,28,-36,59xm105,-257v-48,0,-40,69,-15,93v28,-16,47,-32,47,-56v0,-18,-9,-37,-32,-37","w":234},"'":{"d":"28,-186r-6,-95r31,0r-7,95r-18,0","w":74},"(":{"d":"104,49r-24,0v-26,-33,-54,-85,-54,-165v0,-80,28,-133,54,-167r24,0v-30,40,-51,93,-51,167v0,72,22,124,51,165","w":111,"k":{"\u00dd":-14,"Y":-14,"W":-14,"V":-14,"T":-14,"J":-14}},")":{"d":"8,-283r24,0v26,33,53,86,53,166v0,80,-27,131,-53,166r-24,0v29,-40,51,-93,51,-166v0,-73,-21,-125,-51,-166","w":111},"*":{"d":"107,-279r22,13r-37,51r60,-7r0,25v-19,-1,-42,-7,-60,-6r38,49r-23,13v-9,-18,-15,-39,-26,-56r-27,56r-20,-13r37,-50r-59,7r0,-25r59,6r-37,-49r22,-13r26,54","w":163},"+":{"d":"110,-120r0,-97r23,0r0,97r93,0r0,22r-93,0r0,98r-23,0r0,-98r-94,0r0,-22r94,0","w":242},",":{"d":"31,-43r35,-4v-9,33,-26,78,-36,95r-22,3v8,-22,19,-66,23,-94","w":79},"-":{"d":"12,-98r0,-23r99,0r0,23r-99,0","w":122},".":{"d":"42,4v-14,0,-21,-10,-21,-22v0,-14,9,-24,22,-24v13,0,21,10,21,24v0,13,-9,22,-22,22","w":78},"\/":{"d":"138,-279r-115,295r-24,0r114,-295r25,0","w":137},"0":{"d":"98,4v-49,0,-84,-48,-84,-138v0,-94,38,-140,88,-140v51,0,82,48,82,136v0,94,-32,142,-86,142xm99,-20v40,0,55,-52,55,-116v0,-67,-16,-114,-54,-114v-32,0,-55,43,-55,114v0,71,20,116,54,116"},"1":{"d":"123,0r-29,0r-1,-242r-44,26r-8,-22v27,-11,40,-36,82,-32r0,270"},"2":{"d":"177,-24r0,24r-159,0v-3,-27,14,-33,26,-46v62,-67,96,-104,96,-148v0,-29,-12,-55,-51,-55v-22,0,-41,12,-54,22r-10,-21v17,-15,41,-26,70,-26v54,0,76,39,76,76v0,57,-65,119,-113,174r119,0"},"3":{"d":"91,-274v91,1,89,106,22,128v32,5,59,31,59,70v0,43,-32,80,-92,80v-27,0,-51,-8,-63,-17r9,-23v10,6,31,16,55,16v45,0,60,-31,60,-56v-2,-46,-40,-61,-87,-58r0,-22v40,3,77,-9,77,-50v0,-23,-14,-44,-46,-44v-20,0,-38,10,-49,18r-9,-22v13,-10,38,-20,64,-20"},"4":{"d":"153,-76r0,76r-28,0r0,-76r-118,0r0,-19r115,-175r31,0r0,171r37,0r0,23r-37,0xm37,-99r88,0r0,-139v-26,54,-58,91,-88,139"},"5":{"d":"49,-270r118,0r0,25r-96,0r-12,77v59,-10,109,20,112,81v4,79,-97,113,-155,75r9,-23v38,28,116,15,116,-49v0,-49,-53,-73,-109,-60"},"6":{"d":"161,-249v-74,-1,-114,56,-116,106v36,-58,140,-34,140,53v0,49,-30,94,-83,94v-53,0,-88,-43,-88,-113v0,-80,45,-163,147,-165r0,25xm103,-19v31,0,51,-28,51,-69v0,-41,-22,-65,-54,-65v-32,0,-56,31,-56,51v0,49,22,83,59,83"},"7":{"d":"23,-245r0,-25r158,0r0,19r-113,251r-31,0r113,-245r-127,0"},"8":{"d":"15,-67v0,-37,26,-58,53,-76v-72,-31,-44,-135,34,-131v85,4,97,98,28,129r0,2v33,14,54,38,54,70v0,46,-37,77,-85,77v-51,0,-84,-32,-84,-71xm99,-18v35,0,54,-23,54,-51v0,-34,-22,-51,-58,-63v-65,13,-65,113,4,114xm101,-252v-31,0,-47,22,-47,45v0,29,20,45,50,54v23,-9,41,-27,41,-53v0,-23,-12,-46,-44,-46"},"9":{"d":"38,-21v65,2,107,-36,115,-106v-40,56,-136,25,-136,-52v0,-49,32,-95,85,-95v50,0,83,44,83,113v0,102,-52,164,-147,165r0,-25xm100,-251v-31,0,-53,30,-53,70v0,36,21,61,52,61v29,0,55,-22,55,-44v0,-52,-18,-87,-54,-87"},":":{"d":"43,-143v-14,0,-21,-11,-21,-23v0,-13,8,-23,21,-23v13,0,21,10,21,23v0,13,-8,23,-21,23xm43,4v-14,0,-21,-10,-21,-22v0,-13,8,-23,21,-23v13,0,21,10,21,23v0,13,-8,22,-21,22","w":78},";":{"d":"31,-43r35,-4v-9,33,-26,78,-36,95r-22,3v8,-22,19,-66,23,-94xm46,-143v-14,0,-21,-11,-21,-23v0,-13,9,-23,21,-23v13,0,21,10,21,23v0,13,-8,23,-21,23","w":79},"<":{"d":"215,0r-187,-99r0,-19r187,-99r0,25r-161,84r161,83r0,25","w":242},"=":{"d":"226,-160r0,22r-210,0r0,-22r210,0xm226,-81r0,22r-210,0r0,-22r210,0","w":242},">":{"d":"27,-217r188,99r0,20r-188,98r0,-25r163,-83r-163,-84r0,-25","w":242},"?":{"d":"139,-220v0,52,-70,82,-56,145r-27,0v-19,-59,52,-97,52,-142v0,-40,-54,-48,-79,-25r-8,-22v13,-9,34,-15,54,-15v45,0,64,28,64,59xm69,4v-14,0,-21,-10,-21,-22v0,-13,8,-23,21,-23v13,0,21,10,21,23v0,13,-8,22,-21,22","w":156},"@":{"d":"212,-166v-6,32,-18,64,-18,98v0,15,5,23,15,23v21,0,44,-30,44,-78v0,-60,-33,-101,-94,-101v-66,0,-121,55,-121,139v0,92,87,133,162,95r6,16v-86,44,-189,-3,-189,-109v0,-85,57,-158,145,-158v68,0,112,49,112,115v0,64,-33,99,-70,99v-16,0,-27,-14,-29,-36v-24,48,-96,52,-99,-13v-3,-64,69,-120,136,-90xm126,-46v42,0,54,-63,61,-106v-47,-14,-88,27,-88,75v0,19,9,31,27,31","w":289},"A":{"d":"136,-274r91,274r-32,0r-29,-89r-96,0r-29,89r-30,0r91,-274r34,0xm76,-113r83,0r-27,-81v-7,-19,-8,-38,-15,-52v-10,47,-27,90,-41,133","w":236,"k":{"Y":11,"W":4,"V":11,"T":11}},"B":{"d":"31,-270v63,-13,152,-9,152,62v0,28,-21,49,-47,61v26,6,57,28,57,69v0,78,-86,86,-162,77r0,-269xm60,-157v49,5,92,-9,92,-49v0,-43,-54,-53,-92,-44r0,93xm60,-134r0,111v49,5,102,-3,101,-55v-2,-51,-49,-59,-101,-56","w":208},"C":{"d":"204,-32r7,24v-90,34,-196,-4,-196,-127v0,-113,102,-167,196,-132r-8,25v-76,-32,-157,8,-157,106v0,95,79,136,158,104","w":223},"D":{"d":"242,-144v0,114,-88,163,-211,143r0,-270v20,-3,43,-5,69,-5v110,0,142,65,142,132xm60,-249r0,225v90,13,150,-28,150,-119v0,-86,-63,-121,-150,-106","w":256,"k":{"\u00d6":-4,"\u00d5":-4,"\u00d4":-4,"\u00d3":-4,"\u00d2":-4}},"E":{"d":"175,-25r0,25r-144,0r0,-274r138,0r0,25r-109,0r0,93r103,0r0,25r-103,0r0,106r115,0","w":189},"F":{"d":"60,0r-29,0r0,-274r138,0r0,25r-109,0r0,97r100,0r0,25r-100,0r0,127","w":186,"k":{"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"A":11,".":14,",":18}},"G":{"d":"226,-141r0,130v-15,6,-43,14,-78,14v-108,0,-133,-80,-133,-138v0,-108,103,-169,204,-130r-8,25v-74,-33,-165,6,-165,103v0,93,74,133,151,107r0,-87r-56,0r0,-24r85,0","w":248},"H":{"d":"221,-274r0,274r-29,0r0,-131r-132,0r0,131r-29,0r0,-274r29,0r0,117r132,0r0,-117r29,0","w":252},"I":{"d":"31,0r0,-274r29,0r0,274r-29,0","w":91},"J":{"d":"114,-274r0,187v0,85,-51,100,-112,86r4,-25v44,13,78,4,78,-64r0,-184r30,0","w":141,"k":{"}":-7,"]":-7,")":-7}},"K":{"d":"107,-158r104,158r-35,0r-90,-138r-26,30r0,108r-29,0r0,-274r29,0v2,43,-4,95,2,134v32,-48,70,-89,105,-134r36,0","w":208},"L":{"d":"174,-26r0,26r-143,0r0,-274r29,0r0,248r114,0","w":182,"k":{"\u00dd":7,"Y":7,"V":4,"T":7,"-":4}},"M":{"d":"272,-274r17,274r-29,0r-13,-242v-9,31,-20,65,-33,103r-49,138r-22,0r-46,-135r-32,-106r-13,242r-29,0r19,-274r37,0r48,139v13,33,19,66,29,92v20,-74,54,-158,79,-231r37,0","w":312},"N":{"d":"224,-274r0,274r-30,0r-87,-144v-18,-31,-37,-62,-50,-92r2,236r-28,0r0,-274r31,0r88,144v19,33,35,62,48,90r-3,-234r29,0","w":254},"O":{"d":"134,-279v70,0,116,56,116,139v0,96,-54,144,-119,144v-68,0,-116,-53,-116,-139v0,-89,50,-144,119,-144xm133,-254v-117,0,-115,233,-1,233v57,0,87,-54,87,-117v0,-55,-27,-116,-86,-116","w":264,"k":{".":4,",":4}},"P":{"d":"31,0r0,-271v16,-3,36,-5,62,-5v89,0,96,56,96,78v-2,74,-65,96,-129,85r0,113r-29,0xm60,-249r0,111v49,11,99,-8,99,-57v0,-51,-54,-64,-99,-54","w":205,"k":{"\u00e0":4,"\u00cf":-4,"\u00ce":-4,"\u00cd":-4,"\u00cc":-4,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"I":-4,".":22,",":22}},"Q":{"d":"243,38v-41,-10,-77,-25,-114,-34v-63,-2,-114,-50,-114,-139v0,-90,51,-144,120,-144v69,0,115,55,115,139v0,75,-34,115,-76,135v27,7,55,14,78,18xm134,-254v-119,0,-115,234,-2,233v57,0,87,-54,87,-117v0,-55,-27,-116,-85,-116","w":264},"R":{"d":"31,-270v69,-15,158,-7,158,67v0,37,-24,60,-51,72v41,3,47,112,60,131r-31,0v-4,-8,-11,-32,-18,-66v-9,-52,-35,-58,-89,-55r0,121r-29,0r0,-270xm60,-144v53,5,98,-8,98,-55v0,-54,-56,-57,-98,-50r0,105","w":207},"S":{"d":"162,-265r-9,25v-8,-5,-25,-13,-48,-13v-38,0,-53,23,-53,43v0,27,16,41,53,56v44,19,67,42,67,81v0,44,-31,77,-90,77v-25,0,-52,-7,-66,-17r8,-25v35,27,118,23,118,-33v0,-27,-15,-44,-51,-58v-41,-15,-69,-39,-69,-77v0,-64,92,-89,140,-59","w":189},"T":{"d":"191,-274r0,25r-81,0r0,249r-30,0r0,-249r-80,0r0,-25r191,0","w":190,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"z":4,"y":7,"w":4,"u":4,"s":4,"r":4,"o":4,"m":4,"e":7,"a":7,"T":-4,"A":7,":":-4,".":4,"-":4,",":4,")":-14}},"U":{"d":"220,-274r0,164v0,82,-43,114,-98,114v-51,0,-91,-29,-91,-112r0,-166r29,0r0,166v0,62,28,87,64,87v40,0,66,-26,66,-87r0,-166r30,0","w":250,"k":{".":7,",":4}},"V":{"d":"183,-274r32,0r-95,274r-31,0r-87,-274r32,0r42,138v13,36,20,73,30,103v20,-79,52,-163,77,-241","w":213,"k":{"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"o":4,"e":4,"a":4,"A":4,":":-7,".":7,"-":4,",":7,")":-14}},"W":{"d":"296,-274r31,0r-76,274r-30,0r-36,-147v-10,-35,-12,-65,-19,-90v-14,73,-43,162,-61,237r-31,0r-68,-274r32,0r53,238r2,0v12,-77,40,-163,59,-238r31,0r34,142v9,32,14,67,21,95v14,-79,39,-160,58,-237","w":330,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4,".":7,"-":4,",":11,")":-14}},"X":{"d":"127,-141r83,141r-35,0r-67,-118r-63,118r-35,0r82,-139r-78,-135r34,0r63,113v19,-38,42,-75,63,-113r34,0","w":219},"Y":{"d":"174,-274r33,0r-88,156r0,118r-30,0r0,-117r-83,-157r34,0v23,44,41,93,67,134v18,-44,45,-92,67,-134","w":208,"k":{"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"v":4,"u":4,"t":4,"q":4,"o":4,"e":4,"d":4,"a":4,"A":11,".":7,"-":4,",":7,")":-14}},"Z":{"d":"198,-274r0,19r-147,230r149,0r0,25r-188,0r0,-18r148,-231r-136,0r0,-25r174,0","w":212,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4}},"[":{"d":"104,26r0,20r-70,0r0,-325r70,0r0,20r-46,0r0,285r46,0","w":111,"k":{"f":-7,"J":-14}},"\u00a5":{"d":"111,-75r0,75r-29,0r0,-75r-61,0r0,-17r61,0r0,-33r-61,0r0,-18r53,0r-66,-127r32,0r59,127v16,-43,41,-86,60,-127r32,0r-71,127r53,0r0,18r-62,0r0,33r62,0r0,17r-62,0"},"]":{"d":"7,-259r0,-20r71,0r0,325r-71,0r0,-20r46,0r0,-285r-46,0","w":111},"^":{"d":"132,-264r84,186r-25,0r-70,-160r-70,160r-25,0r84,-186r22,0","w":242},"_":{"d":"0,45r0,-18r203,0r0,18r-203,0","w":203},"`":{"d":"60,-224r-48,-57r34,0r36,57r-22,0","w":122},"a":{"d":"88,-201v102,3,59,112,73,201r-27,0v-2,-8,0,-19,-4,-25v-10,15,-30,29,-58,29v-37,0,-58,-27,-58,-55v0,-47,41,-73,114,-73v0,-17,1,-54,-44,-54v-17,0,-35,5,-48,14r-8,-20v16,-10,38,-17,60,-17xm79,-19v44,-2,55,-36,50,-83v-37,0,-84,6,-84,47v0,25,16,36,34,36","w":186},"b":{"d":"59,-288r1,123v12,-23,34,-36,65,-36v46,0,79,41,79,101v1,107,-102,135,-148,68r-2,32r-26,0r2,-288r29,0xm116,-176v-49,0,-57,45,-57,99v0,29,22,57,55,57v38,0,60,-33,60,-79v0,-41,-20,-77,-58,-77","w":219},"c":{"d":"157,-30r5,23v-9,4,-28,11,-53,11v-56,0,-94,-40,-94,-100v0,-78,80,-128,148,-94r-7,24v-8,-5,-22,-10,-41,-10v-45,0,-69,36,-69,78v0,67,60,92,111,68","w":174},"d":{"d":"188,-288r1,288r-26,0v-2,-10,0,-24,-3,-33v-10,21,-32,37,-64,37v-45,0,-81,-39,-81,-99v0,-98,98,-137,143,-75r0,-118r30,0xm104,-20v46,0,54,-46,54,-98v0,-39,-28,-58,-53,-58v-37,0,-59,34,-59,79v0,41,19,77,58,77","w":217},"e":{"d":"163,-30r5,22v-11,5,-31,12,-61,12v-57,0,-92,-40,-92,-99v0,-62,35,-106,88,-106v66,0,80,59,75,106r-133,0v-3,79,68,85,118,65xm45,-117r104,0v0,-27,-10,-61,-49,-61v-36,0,-52,34,-55,61","w":194,"k":{"j":-4}},"f":{"d":"6,-196r27,0v0,-24,-1,-57,21,-79v19,-19,52,-20,75,-12r-5,24v-41,-18,-68,17,-61,67r47,0r0,23r-47,0r0,173r-30,0r0,-173r-27,0r0,-23","w":111,"k":{"}":-32,"]":-29,")":-32,"'":-29,"\"":-32}},"g":{"d":"162,-197r27,0v-4,47,-1,116,-2,169v0,34,0,113,-93,113v-22,0,-47,-6,-62,-16r8,-23v44,24,123,23,117,-56r0,-24v-10,18,-31,34,-61,34v-47,0,-81,-42,-81,-97v0,-104,107,-132,146,-70xm157,-82v0,-52,-10,-95,-52,-95v-35,0,-59,30,-59,78v0,42,20,75,58,75v22,0,53,-17,53,-58","w":216},"h":{"d":"186,-120r0,120r-29,0v-7,-68,25,-176,-46,-176v-23,0,-52,19,-52,55r0,121r-29,0r0,-288r29,0r1,122v37,-52,126,-58,126,46","w":214},"i":{"d":"64,-251v0,13,-8,20,-20,20v-12,0,-19,-8,-19,-20v0,-11,8,-20,20,-20v12,0,19,9,19,20xm59,-196r0,196r-29,0r0,-196r29,0","w":89},"j":{"d":"68,-251v0,12,-8,20,-20,20v-12,0,-19,-9,-19,-20v0,-11,8,-20,20,-20v12,0,19,9,19,20xm63,-196v-6,87,20,210,-22,260v-14,16,-39,21,-55,21r-4,-24v48,-3,51,-32,51,-89r0,-168r30,0","w":92},"k":{"d":"98,-115r84,115r-37,0r-68,-97r-18,21r0,76r-29,0r0,-288r29,0r1,183v24,-32,51,-60,76,-91r36,0","w":178},"l":{"d":"59,-288r0,288r-29,0r0,-288r29,0","w":89},"m":{"d":"297,-118r0,118r-30,0v-5,-65,21,-174,-43,-176v-24,0,-46,23,-46,53r0,123r-30,0v-6,-64,24,-176,-41,-176v-26,0,-48,25,-48,56r0,120r-29,0r-2,-197r26,0v2,10,0,24,3,32v15,-43,102,-50,114,3v32,-55,126,-64,126,44","w":325},"n":{"d":"186,-120r0,120r-29,0v-7,-68,25,-176,-46,-176v-26,0,-52,22,-52,56r0,120r-29,0r-2,-197r27,0r2,32v30,-49,129,-62,129,45","w":214},"o":{"d":"107,-201v54,0,89,41,89,101v0,73,-48,104,-92,104v-50,0,-89,-38,-89,-101v0,-67,42,-104,92,-104xm166,-99v0,-35,-17,-78,-60,-78v-84,0,-75,158,-1,158v36,0,61,-36,61,-80","w":212},"p":{"d":"55,-197v2,11,0,25,3,34v41,-70,146,-37,146,62v0,105,-96,134,-145,74r0,107r-29,0r-2,-277r27,0xm116,-176v-47,0,-57,45,-57,98v0,38,28,58,55,58v39,0,60,-33,60,-80v0,-41,-20,-76,-58,-76","w":219},"q":{"d":"161,-197r28,0r-1,277r-30,0r-1,-110v-10,19,-31,34,-62,34v-44,0,-80,-39,-80,-99v0,-74,46,-106,86,-106v30,-1,48,17,59,34xm104,-20v51,0,54,-46,54,-98v0,-32,-23,-58,-53,-58v-37,0,-59,33,-59,79v0,41,18,77,58,77","w":217},"r":{"d":"119,-199r0,28v-78,-10,-58,96,-60,171r-29,0r-2,-196r26,0v2,12,-1,28,3,38v10,-26,33,-49,62,-41","w":124,"k":{".":4,",":4}},"s":{"d":"130,-189r-9,23v-14,-16,-71,-18,-71,17v0,17,11,25,36,36v32,13,50,29,50,59v0,56,-79,72,-121,45r9,-23v21,18,83,19,83,-19v0,-18,-9,-31,-36,-39v-72,-21,-63,-110,14,-111v19,0,35,6,45,12","w":152},"t":{"d":"37,-196r0,-36r30,-10r0,46r51,0r0,23r-51,0r0,114v-3,35,21,44,47,35r2,23v-6,3,-17,5,-30,5v-48,0,-49,-43,-49,-64r0,-113r-30,0r0,-23r30,0","w":127},"u":{"d":"183,-196r2,196r-27,0v-1,-10,1,-23,-2,-31v-9,15,-30,35,-63,35v-30,0,-65,-16,-65,-84r0,-116r30,0v6,65,-22,173,44,175v23,0,51,-18,51,-53r0,-122r30,0","w":212},"v":{"d":"149,-196r31,0r-74,196r-28,0r-73,-197r32,0r57,165","w":184,"k":{".":7,",":4}},"w":{"d":"252,-197r30,0r-63,197r-26,0r-50,-163v-13,58,-33,109,-50,163r-27,0r-58,-197r31,0r43,166v13,-56,34,-112,50,-166r26,0r49,166","w":288,"k":{":":-4,".":7,",":7}},"x":{"d":"138,-196r32,0r-65,95r67,101r-34,0r-51,-81v-14,28,-34,54,-50,81r-33,0r67,-100r-64,-96r34,0r49,76v14,-28,32,-50,48,-76","w":177},"y":{"d":"146,-196r31,0v-45,95,-64,255,-156,285r-8,-25v49,-25,68,-61,61,-79r-70,-181r33,0r57,160v14,-54,35,-108,52,-160","w":181,"k":{":":-7,".":7,",":7}},"z":{"d":"15,-196r142,0r0,19r-113,153r114,0r0,24r-151,0r0,-18r114,-154r-106,0r0,-24","w":164},"{":{"d":"40,-118v37,9,22,65,22,108v0,36,24,36,40,36r0,19v-22,0,-65,0,-65,-55v0,-38,31,-93,-25,-98r0,-18v57,-3,25,-63,25,-100v0,-53,47,-53,65,-53r0,20v-17,0,-40,-1,-40,35v0,40,18,99,-22,106","w":111,"k":{"f":-7,"J":-11}},"\u00a6":{"d":"58,-274r0,142r-24,0r0,-142r24,0xm58,-71r0,142r-24,0r0,-142r24,0","w":91},"}":{"d":"71,-117v-37,-9,-21,-67,-21,-107v0,-36,-23,-35,-40,-35r0,-20v18,0,64,0,64,53v0,40,-31,97,26,100r0,18v-57,4,-26,59,-26,98v0,55,-42,55,-64,55r0,-19v16,0,40,0,40,-36v0,-39,-19,-99,21,-107","w":111},"\\":{"d":"25,-279r111,295r-24,0r-112,-295r25,0","w":135},"|":{"d":"34,102r0,-407r24,0r0,407r-24,0","w":91},"~":{"d":"68,-145v25,0,82,37,109,35v15,0,23,-13,23,-34r21,0v-2,108,-100,22,-154,22v-15,0,-24,12,-24,35r-21,0v-1,-37,19,-58,46,-58","w":242},"\u00a1":{"d":"57,-118r5,197r-34,0r5,-197r24,0xm45,-199v14,0,21,11,21,23v0,13,-8,23,-21,23v-12,0,-21,-10,-21,-23v0,-13,9,-23,21,-23","w":89},"\u00a2":{"d":"127,-36r0,42r-23,0r0,-43v-119,-16,-92,-189,0,-200r0,-41r23,0r0,40v18,0,34,6,43,11r-8,23v-46,-30,-106,7,-106,68v0,70,61,92,109,67r5,21v-7,4,-24,11,-43,12"},"\u00a3":{"d":"183,-24r0,24r-161,0r0,-17v34,-20,53,-58,43,-109r-41,0r0,-21r38,0v-17,-61,7,-127,68,-127v20,0,34,5,42,10r-7,23v-7,-4,-18,-9,-35,-9v-49,-2,-50,62,-40,103r57,0r0,21r-54,0v2,42,6,57,-32,102r122,0"},"\u00a4":{"d":"27,-233r27,30v20,-24,73,-20,91,0r28,-30r16,16r-31,29v19,23,17,79,0,100r30,30r-16,17r-27,-31v-24,24,-69,23,-92,1r-27,30r-15,-17r29,-28v-19,-24,-20,-79,0,-102r-30,-28xm99,-199v-31,0,-49,29,-49,62v0,82,95,83,97,-1v0,-31,-16,-61,-48,-61"},"\u00ab":{"d":"65,-176r26,0r-54,73r54,74r-26,0r-53,-74xm129,-176r25,0r-54,73r54,74r-25,0r-54,-74","w":163},"\u00b7":{"d":"40,-84v-13,0,-22,-11,-22,-23v0,-13,10,-23,22,-23v13,0,21,9,21,23v0,13,-8,23,-21,23","w":79},"\u00bb":{"d":"9,-29r54,-74r-54,-73r26,0r54,73r-54,74r-26,0xm72,-29r54,-74r-54,-73r26,0r54,73r-54,74r-26,0","w":163},"\u00bf":{"d":"93,-199v14,0,21,11,21,23v0,13,-9,23,-22,23v-13,0,-21,-10,-21,-23v0,-13,9,-23,22,-23xm22,27v0,-50,69,-84,56,-146r27,0v19,59,-52,97,-52,142v0,40,54,46,79,25r8,21v-13,9,-34,16,-54,16v-44,0,-64,-28,-64,-58","w":156},"\u00af":{"d":"17,-239r0,-20r88,0r0,20r-88,0","w":122},"\u00b8":{"d":"38,33r19,-34r20,0r-14,22v15,2,28,12,28,28v1,34,-43,38,-67,25r6,-15v11,8,38,8,39,-8v0,-9,-6,-15,-31,-18","w":122},"\u00c6":{"d":"75,-100r-44,100r-31,0r121,-274r159,0r0,25r-112,0r10,93r98,0r0,25r-95,0r13,106r96,0r0,25r-122,0r-12,-100r-81,0xm138,-253r-53,129r68,0v-6,-42,-5,-91,-15,-129","w":302},"\u00aa":{"d":"67,-240v69,1,42,73,51,132r-21,0v-1,-6,0,-14,-3,-18v-15,30,-81,25,-81,-19v0,-29,29,-47,80,-46v7,-30,-44,-40,-64,-21r-6,-16v12,-8,28,-12,44,-12xm61,-124v33,0,33,-21,32,-50v-23,-1,-56,3,-56,28v0,14,11,22,24,22","w":134},"\u00d8":{"d":"66,-19r-25,34r-17,-13r25,-36v-21,-24,-34,-60,-34,-102v0,-117,101,-179,184,-120r23,-33r19,13r-25,35v22,24,34,60,34,101v0,129,-101,177,-184,121xm133,-254v-87,-1,-110,131,-67,194r119,-174v-14,-13,-31,-20,-52,-20xm132,-20v83,1,111,-125,67,-194r-119,172v14,14,29,22,52,22","w":264},"\u00ba":{"d":"71,-240v39,0,61,28,61,66v1,93,-124,87,-124,2v0,-43,30,-68,63,-68xm70,-222v-54,1,-47,100,0,98v23,0,38,-21,38,-49v0,-21,-10,-49,-38,-49","w":139},"\u00e6":{"d":"28,-184v41,-29,109,-20,119,26v12,-26,36,-43,66,-43v65,0,75,61,71,104r-127,0v-8,78,65,91,112,67r7,21v-42,23,-118,16,-133,-31v-12,28,-38,44,-70,44v-39,0,-59,-26,-59,-54v0,-45,42,-72,115,-71v1,-24,-3,-56,-46,-56v-17,0,-35,6,-47,14xm80,-19v45,0,53,-36,49,-81v-35,-1,-84,5,-84,47v0,20,13,34,35,34xm157,-120r99,0v1,-24,-11,-59,-46,-59v-35,0,-52,34,-53,59","w":300},"\u00f8":{"d":"58,-10r-17,24r-14,-11r17,-25v-17,-17,-29,-43,-29,-75v-1,-87,76,-128,140,-89r16,-24r15,10r-17,25v17,18,28,44,28,75v-2,94,-76,125,-139,90xm141,-165v-75,-49,-123,64,-81,120xm105,-19v56,1,81,-83,47,-131r-80,119v9,9,20,12,33,12","w":212},"\u00df":{"d":"166,-56v0,-40,-54,-59,-54,-98v0,-21,13,-39,36,-50v13,-31,-9,-64,-39,-64v-32,0,-50,22,-50,82r0,186r-29,0v9,-114,-38,-292,83,-292v48,0,86,55,59,100v-18,7,-31,20,-31,34v0,37,54,54,54,99v0,54,-62,77,-111,55r6,-24v28,18,76,7,76,-28","w":210},"\u00ad":{"d":"16,-98r0,-22r210,0r0,22r-210,0","w":242},"\u00a9":{"d":"15,-138v0,-81,65,-126,123,-126v69,0,123,56,123,125v0,70,-54,127,-123,127v-69,0,-123,-56,-123,-126xm34,-137v0,64,48,109,104,109v61,0,104,-51,104,-110v0,-58,-42,-110,-104,-110v-58,0,-104,47,-104,111xm190,-90r5,15v-52,33,-124,0,-124,-61v0,-66,75,-92,122,-65r-5,15v-6,-3,-19,-10,-39,-10v-39,0,-59,26,-59,59v0,50,62,75,100,47","w":275},"\u00ac":{"d":"226,-161r0,110r-23,0r0,-89r-186,0r0,-21r209,0","w":242},"\u00ae":{"d":"16,-212v0,-37,30,-66,67,-66v38,0,67,29,67,66v0,37,-29,66,-67,66v-37,0,-67,-29,-67,-66xm31,-212v0,32,25,53,52,53v30,0,51,-23,51,-53v0,-30,-22,-53,-52,-53v-29,0,-51,23,-51,53xm72,-177r-14,0r0,-67v18,-2,52,-8,53,17v1,9,-7,13,-13,17v10,0,13,28,16,33r-15,0v-5,-10,-3,-33,-27,-27r0,27xm72,-235r0,20v22,5,35,-19,9,-20r-9,0","w":165},"\u00b2":{"d":"109,-179r-105,0v-2,-23,15,-25,25,-36v30,-32,51,-52,51,-74v0,-35,-50,-36,-65,-17r-7,-17v10,-9,28,-16,47,-16v37,0,51,24,51,45v0,37,-41,66,-67,96r70,0r0,19","w":119},"\u00b3":{"d":"29,-271v23,1,44,-5,47,-28v3,-27,-48,-25,-59,-11r-6,-17v24,-21,99,-12,91,26v1,17,-14,28,-31,37v21,3,37,19,37,40v0,42,-73,62,-105,36r7,-18v16,17,79,12,72,-18v0,-31,-37,-31,-53,-31r0,-16","w":117},"\u00b5":{"d":"35,81v-11,-75,-3,-191,-5,-278r30,0v7,67,-26,176,44,176v27,0,51,-24,51,-54r0,-123r30,0r0,147v0,22,4,31,18,32r-2,22v-25,5,-37,-6,-44,-33v-9,30,-80,52,-99,11v0,32,0,75,5,100r-28,0","w":213},"\u00b9":{"d":"67,-337r0,158r-25,0r0,-136r-29,14r-4,-19v18,-7,30,-20,58,-17","w":93},"\u00bc":{"d":"257,-43r0,43r-23,0r0,-43r-79,0r0,-14r78,-104r24,0r0,100r25,0r0,18r-25,0xm181,-62v15,3,36,0,53,1v-1,-25,3,-53,0,-76v-14,28,-35,50,-53,75xm22,-231r-4,-18v18,-7,30,-21,58,-18r0,159r-25,0r0,-137xm73,4r-21,0r153,-273r20,0","w":295},"\u00bd":{"d":"16,-231r-4,-18v18,-7,29,-21,57,-18r0,159r-24,0r0,-137xm65,4r-21,0r153,-273r20,0xm276,0r-105,0v-2,-23,17,-25,25,-37v32,-31,51,-52,51,-74v0,-34,-49,-34,-64,-17r-8,-16v10,-9,28,-17,47,-17v37,0,51,24,51,45v0,36,-39,68,-67,96r70,0r0,20","w":295},"\u00be":{"d":"261,-43r0,43r-23,0r0,-43r-79,0r0,-14r78,-104r24,0r0,100r24,0r0,18r-24,0xm238,-61v-1,-25,3,-53,0,-76v-15,28,-35,51,-53,76r53,0xm63,-269v60,0,60,60,18,76v21,3,36,19,36,40v0,42,-72,60,-105,36r7,-18v16,16,79,11,72,-19v0,-31,-36,-30,-53,-30r0,-17v23,1,46,-5,48,-28v3,-25,-48,-24,-59,-10r-7,-17v9,-6,24,-13,43,-13xm87,4r-20,0r152,-273r21,0","w":295},"\u00c0":{"d":"136,-274r91,274r-32,0r-29,-89r-96,0r-29,89r-30,0r91,-274r34,0xm76,-113r83,0r-27,-81v-7,-19,-8,-38,-15,-52v-10,47,-27,90,-41,133xm110,-289r-52,-46r38,0r39,46r-25,0","w":236,"k":{"\u00dd":11,"Y":7,"W":4,"V":4}},"\u00c1":{"d":"136,-274r91,274r-32,0r-29,-89r-96,0r-29,89r-30,0r91,-274r34,0xm76,-113r83,0r-27,-81v-7,-19,-8,-38,-15,-52v-10,47,-27,90,-41,133xm102,-289r39,-46r38,0r-52,46r-25,0","w":236,"k":{"\u00dd":7,"Y":7,"W":4,"V":4,"T":7}},"\u00c2":{"d":"136,-274r91,274r-32,0r-29,-89r-96,0r-29,89r-30,0r91,-274r34,0xm76,-113r83,0r-27,-81v-7,-19,-8,-38,-15,-52v-10,47,-27,90,-41,133xm65,-289r41,-45r24,0r41,45r-27,0v-9,-9,-17,-20,-27,-28r-26,28r-26,0","w":236,"k":{"\u00dd":7,"Y":11,"W":4,"V":4,"T":7}},"\u00c3":{"d":"136,-274r91,274r-32,0r-29,-89r-96,0r-28,89r-31,0r91,-274r34,0xm76,-113r83,0r-27,-81v-7,-19,-8,-38,-15,-52v-10,47,-27,90,-41,133xm96,-330v16,-1,28,15,43,15v6,0,10,-2,11,-15r17,0v0,23,-9,37,-27,37v-19,0,-50,-37,-53,2r-17,0v0,-23,9,-39,26,-39","w":236,"k":{"\u00dd":7,"Y":7,"W":4,"V":4,"T":7}},"\u00c4":{"d":"136,-274r91,274r-32,0r-29,-89r-96,0r-29,89r-30,0r91,-274r34,0xm76,-113r83,0r-27,-81v-7,-19,-8,-38,-15,-52v-10,47,-27,90,-41,133xm82,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v10,0,18,8,18,19v0,10,-7,19,-18,19xm154,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v11,0,18,8,18,19v0,10,-7,19,-18,19","w":236,"k":{"Y":7,"W":4,"V":4,"T":7}},"\u00c5":{"d":"136,-274r91,274r-32,0r-29,-89r-95,0r-29,89r-31,0r91,-274r34,0xm76,-113r83,0r-27,-81v-7,-19,-8,-38,-15,-52v-10,47,-27,90,-41,133xm119,-355v25,0,39,17,39,36v0,20,-17,35,-39,35v-23,0,-39,-16,-39,-35v0,-20,15,-36,39,-36xm118,-341v-13,0,-19,11,-19,22v0,11,7,21,19,21v12,0,20,-9,20,-21v0,-12,-8,-22,-20,-22","w":236,"k":{"\u00fd":7,"\u00dd":7,"Y":7,"W":4,"V":4,"T":7}},"\u00c7":{"d":"15,-135v0,-113,101,-168,196,-132r-8,25v-77,-32,-157,8,-157,106v0,95,79,136,158,104r7,23v-14,7,-54,16,-86,12r-11,18v15,3,29,13,29,29v0,34,-43,38,-68,26r6,-17v11,7,39,9,39,-8v0,-11,-13,-16,-31,-18r18,-33v-54,-13,-92,-58,-92,-135","w":223},"\u00c8":{"d":"175,-25r0,25r-144,0r0,-274r138,0r0,25r-109,0r0,93r103,0r0,25r-103,0r0,106r115,0xm86,-289r-52,-46r39,0r38,46r-25,0","w":189},"\u00c9":{"d":"175,-25r0,25r-144,0r0,-274r138,0r0,25r-109,0r0,93r103,0r0,25r-103,0r0,106r115,0xm78,-289r39,-46r38,0r-52,46r-25,0","w":189},"\u00ca":{"d":"175,-25r0,25r-144,0r0,-274r138,0r0,25r-109,0r0,93r103,0r0,25r-103,0r0,106r115,0xm41,-289r41,-45r24,0r42,45r-27,0v-10,-9,-17,-20,-28,-28r-26,28r-26,0","w":189},"\u00cb":{"d":"175,-25r0,25r-144,0r0,-274r138,0r0,25r-109,0r0,93r103,0r0,25r-103,0r0,106r115,0xm58,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v10,0,18,8,18,19v0,10,-7,19,-18,19xm131,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v11,0,18,8,18,19v0,10,-7,19,-18,19","w":189},"\u00cc":{"d":"31,0r0,-274r29,0r0,274r-29,0xm38,-289r-52,-46r38,0r38,46r-24,0","w":91},"\u00cd":{"d":"31,0r0,-274r29,0r0,274r-29,0xm30,-289r38,-46r38,0r-52,46r-24,0","w":91},"\u00ce":{"d":"31,0r0,-274r29,0r0,274r-29,0xm-8,-289r41,-45r24,0r42,45r-27,0v-9,-9,-17,-20,-27,-28r-27,28r-26,0","w":91},"\u00cf":{"d":"31,0r0,-274r29,0r0,274r-29,0xm10,-294v-12,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,18,8,18,19v0,10,-7,19,-18,19xm82,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v11,0,18,8,18,19v0,10,-7,19,-18,19","w":91},"\u00d0":{"d":"243,-144v0,118,-87,160,-210,143r0,-127r-34,0r0,-24r34,0r0,-118v20,-4,43,-6,69,-6v115,0,141,71,141,132xm63,-152r72,0r0,24r-72,0r0,104v90,12,149,-27,149,-119v0,-81,-63,-123,-149,-105r0,96","w":258},"\u00d1":{"d":"224,-274r0,274r-30,0r-87,-144v-18,-31,-37,-62,-50,-92r2,236r-28,0r0,-274r31,0r88,144v19,33,35,62,48,90r-3,-234r29,0xm105,-330v15,-1,29,15,43,15v6,0,10,-2,11,-15r17,0v0,23,-9,37,-27,37v-19,0,-50,-37,-53,2r-17,0v0,-23,9,-39,26,-39","w":254},"\u00d2":{"d":"134,-279v70,0,116,56,116,139v0,96,-54,144,-119,144v-68,0,-116,-53,-116,-139v0,-89,50,-144,119,-144xm133,-254v-117,0,-115,233,-1,233v57,0,87,-54,87,-117v0,-55,-27,-116,-86,-116xm125,-289r-53,-46r39,0r38,46r-24,0","w":264},"\u00d3":{"d":"134,-279v70,0,116,56,116,139v0,96,-54,144,-119,144v-68,0,-116,-53,-116,-139v0,-89,50,-144,119,-144xm133,-254v-117,0,-115,233,-1,233v57,0,87,-54,87,-117v0,-55,-27,-116,-86,-116xm117,-289r38,-46r38,0r-52,46r-24,0","w":264},"\u00d4":{"d":"134,-279v70,0,116,56,116,139v0,96,-54,144,-119,144v-68,0,-116,-53,-116,-139v0,-89,50,-144,119,-144xm133,-254v-117,0,-115,233,-1,233v57,0,87,-54,87,-117v0,-55,-27,-116,-86,-116xm79,-289r41,-45r24,0r42,45r-27,0v-10,-9,-17,-20,-28,-28r-26,28r-26,0","w":264},"\u00d5":{"d":"134,-279v70,0,116,56,116,139v0,96,-54,144,-119,144v-68,0,-116,-53,-116,-139v0,-89,50,-144,119,-144xm132,-254v-117,1,-112,233,0,233v57,0,87,-54,87,-117v0,-55,-28,-116,-87,-116xm110,-330v16,-1,28,15,43,15v6,0,10,-2,11,-15r17,0v0,23,-9,37,-27,37v-19,0,-50,-37,-53,2r-17,0v0,-23,9,-39,26,-39","w":264},"\u00d6":{"d":"134,-279v70,0,116,56,116,139v0,96,-54,144,-119,144v-68,0,-116,-53,-116,-139v0,-89,50,-144,119,-144xm133,-254v-117,0,-115,233,-1,233v57,0,87,-54,87,-117v0,-55,-27,-116,-86,-116xm96,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v10,0,18,8,18,19v0,10,-7,19,-18,19xm169,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v11,0,18,8,18,19v0,10,-7,19,-18,19","w":264},"\u00d9":{"d":"220,-274r0,164v0,82,-43,114,-98,114v-51,0,-91,-29,-91,-112r0,-166r29,0r0,166v0,62,28,87,64,87v40,0,66,-26,66,-87r0,-166r30,0xm117,-289r-52,-46r39,0r38,46r-25,0","w":250},"\u00da":{"d":"220,-274r0,164v0,82,-43,114,-98,114v-51,0,-91,-29,-91,-112r0,-166r29,0r0,166v0,62,28,87,64,87v40,0,66,-26,66,-87r0,-166r30,0xm109,-289r39,-46r38,0r-52,46r-25,0","w":250},"\u00db":{"d":"220,-274r0,163v0,83,-43,115,-98,115v-51,0,-91,-29,-91,-112r0,-166r29,0r0,166v0,62,28,87,64,87v40,0,66,-26,66,-87r0,-166r30,0xm72,-289r41,-45r23,0r43,45r-27,0v-10,-9,-17,-20,-28,-28r-26,28r-26,0","w":250},"\u00dc":{"d":"220,-274r0,164v0,82,-43,114,-98,114v-51,0,-91,-29,-91,-112r0,-166r29,0r0,166v0,62,28,87,64,87v40,0,66,-26,66,-87r0,-166r30,0xm89,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v10,0,18,8,18,19v0,10,-7,19,-18,19xm162,-294v-12,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v11,0,18,8,18,19v0,10,-7,19,-18,19","w":250},"\u00dd":{"d":"174,-274r33,0r-88,157r0,117r-30,0r0,-117r-83,-157r34,0v23,44,41,93,67,134v18,-44,45,-92,67,-134xm89,-289r38,-46r38,0r-52,46r-24,0","w":208,"k":{"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,".":7,"-":4,",":7,")":-14}},"\u00de":{"d":"60,0r-29,0r0,-274r29,0r0,54v11,-2,25,-3,38,-3v70,0,91,40,91,74v1,65,-59,94,-129,83r0,66xm60,-91v49,11,102,-8,98,-54v5,-49,-55,-62,-98,-50r0,104","w":204},"\u00e0":{"d":"88,-201v102,3,59,112,73,201r-27,0v-2,-8,0,-19,-4,-25v-10,15,-30,29,-58,29v-37,0,-58,-27,-58,-55v0,-47,41,-73,114,-73v0,-17,1,-54,-44,-54v-17,0,-35,5,-48,14r-8,-20v16,-10,38,-17,60,-17xm79,-19v44,-2,55,-36,50,-83v-37,0,-84,6,-84,47v0,25,16,36,34,36xm93,-224r-49,-57r34,0r36,57r-21,0","w":186},"\u00e1":{"d":"88,-201v102,3,59,112,73,201r-27,0v-2,-8,0,-19,-4,-25v-10,15,-30,29,-58,29v-37,0,-58,-27,-58,-55v0,-47,41,-73,114,-73v0,-17,1,-54,-44,-54v-17,0,-35,5,-48,14r-8,-20v16,-10,38,-17,60,-17xm79,-19v44,-2,55,-36,50,-83v-37,0,-84,6,-84,47v0,25,16,36,34,36xm76,-224r35,-57r35,0r-48,57r-22,0","w":186},"\u00e2":{"d":"88,-201v102,3,59,112,73,201r-27,0v-2,-8,0,-19,-4,-25v-10,15,-30,29,-58,29v-37,0,-58,-27,-58,-55v0,-47,41,-73,114,-73v0,-17,1,-54,-44,-54v-17,0,-35,5,-48,14r-8,-20v16,-10,38,-17,60,-17xm79,-19v44,-2,55,-36,50,-83v-37,0,-84,6,-84,47v0,25,16,36,34,36xm45,-224r37,-57r22,0r37,57r-24,0v-8,-12,-14,-27,-24,-38r-24,38r-24,0","w":186},"\u00e3":{"d":"88,-201v102,3,59,112,73,201r-27,0v-2,-8,0,-19,-4,-25v-10,15,-30,29,-58,29v-37,0,-58,-27,-58,-55v0,-47,41,-73,114,-73v0,-17,1,-54,-44,-54v-17,0,-35,5,-48,14r-8,-20v16,-10,38,-17,60,-17xm79,-19v44,-2,55,-36,50,-83v-37,0,-84,6,-84,47v0,25,16,36,34,36xm72,-271v17,0,48,38,52,-1r17,0v3,53,-44,36,-68,23v-6,0,-9,7,-10,18r-18,0v0,-24,10,-40,27,-40","w":186},"\u00e4":{"d":"88,-201v102,3,59,112,73,201r-27,0v-2,-8,0,-19,-4,-25v-10,15,-30,29,-58,29v-37,0,-58,-27,-58,-55v0,-47,41,-73,114,-73v0,-17,1,-54,-44,-54v-17,0,-35,5,-48,14r-8,-20v16,-10,38,-17,60,-17xm79,-19v44,-2,55,-36,50,-83v-37,0,-84,6,-84,47v0,25,16,36,34,36xm57,-233v-12,0,-18,-8,-18,-18v0,-10,8,-19,19,-19v10,0,17,8,17,19v0,10,-7,18,-18,18xm129,-233v-11,0,-18,-8,-18,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-8,18,-19,18","w":186},"\u00e5":{"d":"88,-201v102,3,59,112,73,201r-27,0v-2,-8,0,-19,-4,-25v-10,15,-30,29,-58,29v-37,0,-58,-27,-58,-55v0,-47,41,-73,114,-73v0,-17,1,-54,-44,-54v-17,0,-35,5,-48,14r-8,-20v16,-10,38,-17,60,-17xm79,-19v44,-2,55,-36,50,-83v-37,0,-84,6,-84,47v0,25,16,36,34,36xm94,-292v23,0,39,16,39,37v0,21,-17,37,-39,37v-23,0,-40,-17,-40,-37v0,-23,17,-37,40,-37xm93,-278v-28,1,-25,45,0,46v13,0,21,-10,21,-23v0,-13,-8,-23,-21,-23","w":186},"\u00e7":{"d":"15,-96v0,-78,79,-128,148,-94r-7,24v-8,-5,-22,-10,-41,-10v-45,0,-69,36,-69,78v0,67,60,92,111,68r5,23v-9,5,-36,12,-62,11r-11,17v15,2,28,12,28,28v1,34,-43,38,-67,25r6,-15v12,7,39,9,39,-9v0,-11,-13,-15,-31,-17r18,-32v-41,-10,-67,-47,-67,-97","w":174},"\u00e8":{"d":"163,-30r5,22v-11,5,-31,12,-61,12v-57,0,-92,-40,-92,-99v0,-62,35,-106,88,-106v66,0,80,59,75,106r-133,0v-3,79,68,85,118,65xm45,-117r104,0v0,-27,-10,-61,-49,-61v-36,0,-52,34,-55,61xm96,-224r-48,-57r34,0r36,57r-22,0","w":194,"k":{"j":-4}},"\u00e9":{"d":"163,-30r5,22v-11,5,-31,12,-61,12v-57,0,-92,-40,-92,-99v0,-62,35,-106,88,-106v66,0,80,59,75,106r-133,0v-3,79,68,85,118,65xm45,-117r104,0v0,-27,-10,-61,-49,-61v-36,0,-52,34,-55,61xm80,-224r35,-57r35,0r-49,57r-21,0","w":194,"k":{"j":-4}},"\u00ea":{"d":"163,-30r5,22v-11,5,-31,12,-61,12v-57,0,-92,-40,-92,-99v0,-62,35,-106,88,-106v66,0,80,59,75,106r-133,0v-3,79,68,85,118,65xm45,-117r104,0v0,-27,-10,-61,-49,-61v-36,0,-52,34,-55,61xm49,-224r37,-57r21,0r38,57r-24,0v-9,-12,-15,-27,-25,-38r-23,38r-24,0","w":194,"k":{"j":-4}},"\u00eb":{"d":"163,-30r5,22v-11,5,-31,12,-61,12v-57,0,-92,-40,-92,-99v0,-62,35,-106,88,-106v66,0,80,59,75,106r-133,0v-3,79,68,85,118,65xm45,-117r104,0v0,-27,-10,-61,-49,-61v-36,0,-52,34,-55,61xm61,-233v-12,0,-18,-8,-18,-18v0,-10,8,-19,19,-19v10,0,17,8,17,19v0,10,-7,18,-18,18xm133,-233v-11,0,-19,-8,-19,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-7,18,-18,18","w":194,"k":{"j":-4}},"\u00ec":{"d":"59,-196r0,196r-29,0r0,-196r29,0xm44,-224r-49,-57r35,0r35,57r-21,0","w":89},"\u00ed":{"d":"59,-196r0,196r-29,0r0,-196r29,0xm27,-224r35,-57r35,0r-48,57r-22,0","w":89},"\u00ee":{"d":"59,-196r0,196r-29,0r0,-196r29,0xm-3,-224r37,-57r21,0r38,57r-25,0v-8,-12,-14,-27,-24,-38r-23,38r-24,0","w":89},"\u00ef":{"d":"59,-196r0,196r-29,0r0,-196r29,0xm9,-233v-12,0,-18,-8,-18,-18v0,-10,7,-19,18,-19v10,0,18,8,18,19v0,10,-7,18,-18,18xm81,-233v-11,0,-19,-8,-19,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-7,18,-18,18","w":89},"\u00f0":{"d":"101,-235r-55,27r-7,-16r46,-23v-12,-9,-27,-18,-42,-26r14,-19v19,9,37,20,53,33r49,-24r8,16r-41,20v47,41,66,90,66,145v0,76,-45,106,-89,106v-50,0,-88,-38,-88,-100v0,-88,75,-126,133,-85v-11,-19,-27,-38,-47,-54xm162,-98v0,-46,-13,-78,-58,-78v-83,0,-71,158,-1,157v35,0,59,-33,59,-79","w":208},"\u00f1":{"d":"186,-120r0,120r-29,0v-7,-68,25,-176,-46,-176v-26,0,-52,22,-52,56r0,120r-29,0r-2,-197r27,0r2,32v30,-49,129,-62,129,45xm86,-271v18,0,48,38,53,-1r17,0v3,52,-45,36,-69,23v-6,0,-9,7,-10,18r-18,0v0,-24,10,-40,27,-40","w":214},"\u00f2":{"d":"107,-201v54,0,89,41,89,101v0,73,-48,104,-92,104v-50,0,-89,-38,-89,-101v0,-67,42,-104,92,-104xm166,-99v0,-35,-17,-78,-60,-78v-84,0,-75,158,-1,158v36,0,61,-36,61,-80xm105,-224r-49,-57r35,0r35,57r-21,0","w":212},"\u00f3":{"d":"107,-201v54,0,89,41,89,101v0,73,-48,104,-92,104v-50,0,-89,-38,-89,-101v0,-67,42,-104,92,-104xm166,-99v0,-35,-17,-78,-60,-78v-84,0,-75,158,-1,158v36,0,61,-36,61,-80xm89,-224r35,-57r35,0r-49,57r-21,0","w":212},"\u00f4":{"d":"107,-201v54,0,89,41,89,101v0,73,-48,104,-92,104v-50,0,-89,-38,-89,-101v0,-67,42,-104,92,-104xm166,-99v0,-35,-17,-78,-60,-78v-84,0,-75,158,-1,158v36,0,61,-36,61,-80xm58,-224r37,-57r21,0r38,57r-24,0v-9,-12,-15,-27,-25,-38r-23,38r-24,0","w":212},"\u00f5":{"d":"107,-201v54,0,89,41,89,101v0,73,-48,104,-92,104v-50,0,-89,-38,-89,-101v0,-67,42,-104,92,-104xm166,-99v0,-35,-17,-78,-60,-78v-84,0,-75,158,-1,158v36,0,61,-36,61,-80xm85,-271v18,0,48,38,52,-1r17,0v0,24,-9,38,-27,38v-19,0,-49,-36,-51,3r-18,0v0,-24,10,-40,27,-40","w":212},"\u00f6":{"d":"107,-201v54,0,89,41,89,101v0,73,-48,104,-92,104v-50,0,-89,-38,-89,-101v0,-67,42,-104,92,-104xm166,-99v0,-35,-17,-78,-60,-78v-84,0,-75,158,-1,158v36,0,61,-36,61,-80xm70,-233v-12,0,-18,-8,-18,-18v0,-10,8,-19,19,-19v10,0,17,8,17,19v0,10,-7,18,-18,18xm142,-233v-11,0,-19,-8,-19,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-7,18,-18,18","w":212},"\u00f9":{"d":"183,-196r2,196r-27,0v-1,-10,1,-23,-2,-31v-9,15,-30,35,-63,35v-30,0,-65,-16,-65,-84r0,-116r30,0v6,65,-22,173,44,175v23,0,51,-18,51,-53r0,-122r30,0xm106,-224r-49,-57r35,0r35,57r-21,0","w":212},"\u00fa":{"d":"183,-196r2,196r-27,0v-1,-10,1,-23,-2,-31v-9,15,-30,35,-63,35v-30,0,-65,-16,-65,-84r0,-116r30,0v6,65,-22,173,44,175v23,0,51,-18,51,-53r0,-122r30,0xm89,-224r36,-57r34,0r-48,57r-22,0","w":212},"\u00fb":{"d":"183,-196r2,196r-27,0v-1,-10,1,-23,-2,-31v-9,15,-30,35,-63,35v-30,0,-65,-16,-65,-84r0,-116r30,0v6,65,-22,173,44,175v23,0,51,-18,51,-53r0,-122r30,0xm59,-224r37,-57r21,0r38,57r-25,0v-8,-12,-14,-27,-24,-38r-24,38r-23,0","w":212},"\u00fc":{"d":"183,-196r2,196r-27,0v-1,-10,1,-23,-2,-31v-9,15,-30,35,-63,35v-30,0,-65,-16,-65,-84r0,-116r30,0v6,65,-22,173,44,175v23,0,51,-18,51,-53r0,-122r30,0xm71,-233v-12,0,-19,-8,-19,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-7,18,-18,18xm143,-233v-11,0,-19,-8,-19,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-7,18,-18,18","w":212},"\u00fd":{"d":"146,-196r31,0v-45,95,-64,255,-156,285r-8,-25v49,-25,68,-61,61,-79r-70,-181r33,0r57,160v14,-54,35,-108,52,-160xm73,-224r36,-57r35,0r-49,57r-22,0","w":181,"k":{":":-4,".":7,",":7}},"\u00fe":{"d":"59,-271r1,106v40,-67,144,-34,144,64v0,106,-96,133,-145,74r0,107r-29,0r0,-351r29,0xm116,-176v-50,0,-57,46,-57,100v0,23,19,56,57,56v36,0,58,-32,58,-80v0,-41,-21,-76,-58,-76","w":219},"\u00ff":{"d":"146,-196r31,0v-44,97,-65,254,-156,285r-8,-25v47,-25,67,-60,60,-79r-69,-181r33,0r57,160xm55,-233v-12,0,-19,-8,-19,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-7,18,-18,18xm127,-233v-11,0,-19,-8,-19,-18v0,-10,8,-19,19,-19v10,0,18,8,18,19v0,10,-7,18,-18,18","w":181,"k":{":":-4,".":7,",":7}},"\u00b4":{"d":"200,-337r39,0r-53,48r-24,0","w":360},"\u00a8":{"d":"143,-293v-26,0,-23,-39,0,-39v23,0,25,39,0,39xm218,-293v-11,0,-18,-9,-18,-19v0,-10,9,-20,19,-20v23,1,25,39,-1,39","w":360},"\u00b1":{"d":"191,-189r120,0r0,23r-120,0r0,100r-22,0r0,-100r-120,0r0,-23r120,0r0,-100r22,0r0,100xm49,-7r0,-23r263,0r0,23r-263,0","w":360},"\u00d7":{"d":"196,-135r100,99r-16,17r-100,-100r-99,100r-16,-17r99,-99r-99,-99r16,-17r99,100r100,-100r16,16","w":360},"\u00f7":{"d":"180,-252v14,0,25,12,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25xm49,-123r0,-23r262,0r0,23r-262,0xm180,-68v14,0,25,12,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":360},"\u00b0":{"d":"73,-289v26,0,47,22,47,47v0,26,-21,47,-47,47v-26,0,-47,-21,-47,-47v0,-26,21,-47,47,-47xm73,-273v-18,0,-32,14,-32,31v0,18,14,32,32,32v17,0,31,-14,31,-32v0,-17,-14,-31,-31,-31","w":360},"\u00a7":{"d":"108,4r10,-20v18,24,109,26,109,-21v0,-19,-12,-32,-58,-44v-72,-19,-95,-63,-44,-108v-36,-38,3,-90,61,-90v28,0,50,9,63,17r-9,20v-17,-20,-104,-23,-104,16v0,23,24,34,57,40v69,13,89,70,46,111v35,39,-3,97,-65,97v-29,0,-51,-6,-66,-18xm140,-179v-29,34,-32,52,32,73v31,10,44,16,51,20v26,-29,18,-65,-31,-75v-19,-4,-40,-11,-52,-18","w":360},"\u00b6":{"d":"195,21r-21,0r0,-126v-48,0,-87,-32,-87,-79v0,-42,23,-91,114,-91v24,0,37,2,46,4r0,292r-21,0r0,-275r-31,0r0,275","w":360},"\u00a0":{"w":83}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 2001-2002 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * Kozuka Gothic is either a registered trademark or trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * KozGoPro-Medium
 * 
 * Designer:
 * Masahiko Kozuka
 * 
 * Vendor URL:
 * http://www.adobe.co.jp/products/type/
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":202,"face":{"font-family":"Kozuka Gothic Pro OpenType m","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 0 0 0 0 0 0 0","ascent":"317","descent":"-43","x-height":"4","bbox":"-17 -360 327 102","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":80},"!":{"d":"71,-276r-7,194r-32,0r-7,-194r46,0xm48,4v-17,0,-27,-13,-27,-28v0,-16,12,-28,27,-28v16,0,26,12,26,28v0,16,-10,28,-26,28","w":95},"\"":{"d":"26,-181r-7,-101r39,0r-7,101r-25,0xm90,-181r-7,-101r39,0r-7,101r-25,0","w":141},"#":{"d":"72,-81r-10,81r-27,0r10,-81r-32,0r0,-26r37,0r7,-60r-34,0r0,-26r38,0r10,-78r27,0r-11,78r39,0r11,-78r26,0r-10,78r32,0r0,26r-36,0r-7,60r33,0r0,26r-37,0r-11,81r-27,0r11,-81r-39,0xm84,-167r-8,60r39,0r7,-60r-38,0","w":198},"$":{"d":"113,-8r0,44r-28,0r0,-42v-23,-1,-47,-8,-61,-17r11,-31v26,23,100,25,100,-22v0,-22,-13,-35,-46,-49v-36,-16,-62,-34,-62,-70v0,-35,23,-62,60,-69r0,-41r29,0r0,39v23,1,39,8,51,14r-10,30v-10,-5,-27,-13,-49,-13v-27,0,-40,18,-40,34v0,20,14,34,46,45v80,27,83,131,-1,148"},"%":{"d":"75,-270v40,0,61,33,61,79v0,56,-30,84,-63,84v-34,0,-61,-29,-61,-80v0,-51,27,-83,63,-83xm74,-246v-42,1,-39,117,0,115v21,0,30,-26,30,-58v0,-30,-8,-57,-30,-57xm245,-160v40,0,61,34,61,80v0,56,-30,83,-63,83v-34,0,-62,-29,-62,-80v0,-51,28,-83,64,-83xm244,-136v-22,0,-31,30,-31,58v0,32,11,57,31,57v21,0,30,-25,30,-57v0,-30,-8,-58,-30,-58xm247,-270r-152,275r-25,0r152,-275r25,0","w":317},"&":{"d":"197,-50r45,50r-49,0v-7,-7,-13,-14,-22,-25v-21,19,-46,29,-75,29v-102,0,-106,-124,-33,-157v-39,-46,-26,-127,49,-127v35,0,62,23,62,60v0,30,-21,50,-57,75v19,23,42,51,59,70v12,-19,19,-48,23,-77r38,0v-6,41,-19,77,-40,102xm103,-27v25,0,40,-13,48,-22r-69,-81v-13,9,-30,25,-30,50v0,29,20,53,51,53xm109,-252v-43,0,-34,62,-11,84v24,-15,39,-30,39,-51v0,-16,-8,-33,-28,-33","w":243},"'":{"d":"26,-181r-7,-101r39,0r-7,101r-25,0","w":76},"(":{"d":"106,49r-31,0v-24,-33,-51,-86,-51,-166v0,-80,27,-133,51,-166r31,0v-27,39,-47,93,-47,167v0,73,21,125,47,165","w":115,"k":{"\u00dd":-14,"Y":-14,"W":-14,"V":-14,"T":-14,"J":-14}},")":{"d":"10,-283r31,0v24,32,50,85,50,166v0,80,-26,133,-50,166r-31,0v59,-68,61,-264,0,-332","w":115},"*":{"d":"84,-222v11,-17,16,-39,25,-58r27,16r-39,51r61,-9r0,31v-20,-1,-43,-8,-61,-7r39,49r-27,16r-25,-58r-26,58r-26,-16r40,-51r-60,9r0,-31v19,2,42,8,59,8r-39,-50r28,-15","w":169},"+":{"d":"107,-123r0,-95r29,0r0,95r91,0r0,28r-91,0r0,95r-29,0r0,-95r-91,0r0,-28r91,0","w":243},",":{"d":"31,-52r45,-4v-10,36,-28,81,-42,104r-29,2v10,-27,21,-70,26,-102","w":88},"-":{"d":"12,-94r0,-30r99,0r0,30r-99,0","w":123},".":{"d":"48,4v-17,0,-27,-12,-27,-28v0,-17,12,-29,27,-29v16,0,27,12,27,29v0,17,-10,28,-27,28","w":88},"\/":{"d":"135,-280r-104,297r-30,0r103,-297r31,0","w":133},"0":{"d":"100,4v-57,0,-87,-56,-87,-139v0,-89,34,-140,90,-140v57,0,86,55,86,137v0,92,-33,142,-89,142xm101,-30v35,0,46,-50,46,-106v0,-64,-13,-106,-45,-106v-27,0,-47,38,-47,106v0,67,17,106,46,106"},"1":{"d":"132,0r-41,0r0,-233r-46,25r-9,-30r61,-33r35,0r0,271"},"2":{"d":"181,-35r0,35r-164,0r0,-26v46,-49,117,-122,117,-166v0,-26,-13,-50,-47,-50v-21,0,-39,12,-52,22r-13,-30v17,-14,43,-25,73,-25v56,0,81,37,81,78v0,57,-58,116,-104,162r109,0"},"3":{"d":"93,-275v93,-1,96,105,27,129v91,25,68,150,-39,150v-28,0,-53,-8,-66,-17r11,-32v10,6,32,15,54,15v39,0,54,-25,54,-49v-1,-41,-37,-54,-80,-51r0,-30v36,3,68,-8,72,-44v5,-44,-69,-45,-91,-22r-11,-30v14,-10,41,-19,69,-19"},"4":{"d":"161,-72r0,72r-40,0r0,-72r-113,0r0,-27r106,-172r47,0r0,168r33,0r0,31r-33,0xm122,-232v-22,48,-49,86,-75,129r74,0"},"5":{"d":"48,-271r124,0r0,34r-95,0r-9,65v60,-7,109,22,110,83v0,52,-40,93,-99,93v-27,0,-51,-7,-64,-15r10,-32v35,24,110,17,110,-42v0,-46,-51,-64,-104,-55"},"6":{"d":"166,-242v-76,-1,-108,55,-110,93v41,-53,134,-26,134,58v0,50,-32,95,-86,95v-111,0,-108,-183,-47,-237v31,-27,70,-42,108,-42xm104,-27v27,0,44,-26,44,-62v0,-35,-18,-59,-46,-59v-24,0,-48,24,-48,48v0,42,18,73,50,73"},"7":{"d":"21,-237r0,-34r164,0r0,26r-108,245r-43,0r108,-237r-121,0"},"8":{"d":"14,-69v-1,-36,23,-58,50,-74v-73,-33,-39,-136,40,-132v89,4,100,95,34,130v30,13,51,37,51,70v0,47,-38,79,-89,79v-55,0,-86,-35,-86,-73xm101,-26v29,0,46,-20,46,-45v0,-30,-20,-47,-50,-57v-53,12,-56,101,4,102xm102,-246v-27,0,-39,19,-39,40v0,25,17,39,43,48v40,-10,51,-88,-4,-88"},"9":{"d":"36,-30v69,8,112,-55,110,-93v-41,50,-131,20,-131,-57v0,-50,34,-95,88,-95v55,0,86,46,86,113v-1,97,-51,168,-153,166r0,-34xm57,-183v0,67,90,74,90,15v0,-45,-16,-77,-47,-77v-26,0,-43,26,-43,62"},":":{"d":"48,-138v-17,0,-27,-13,-27,-28v0,-16,12,-28,27,-28v16,0,26,11,26,28v0,16,-10,28,-26,28xm48,4v-17,0,-27,-13,-27,-28v0,-16,12,-29,27,-29v16,0,26,12,26,29v0,16,-10,28,-26,28","w":88},";":{"d":"31,-52r45,-4v-11,36,-28,81,-42,103r-29,3v10,-28,21,-71,26,-102xm50,-138v-17,0,-26,-13,-26,-28v0,-17,12,-28,27,-28v16,0,26,11,26,28v0,16,-10,28,-27,28","w":88},"<":{"d":"217,0r-191,-96r0,-25r191,-97r0,33r-156,77r156,76r0,32","w":243},"=":{"d":"228,-164r0,28r-211,0r0,-28r211,0xm228,-84r0,28r-211,0r0,-28r211,0","w":243},">":{"d":"26,-218r192,96r0,27r-192,95r0,-32r159,-77r-159,-77r0,-32","w":243},"?":{"d":"145,-220v0,53,-66,78,-54,139r-37,0v-15,-55,45,-93,48,-133v2,-35,-49,-39,-72,-21r-10,-30v12,-9,34,-15,56,-15v48,0,69,29,69,60xm71,4v-17,0,-26,-13,-26,-28v0,-17,11,-28,26,-28v16,0,27,11,27,28v0,16,-11,28,-27,28","w":160},"@":{"d":"213,-166r-16,97v0,14,4,21,13,21v20,0,42,-28,42,-77v0,-58,-33,-98,-93,-98v-63,0,-118,54,-118,137v0,93,86,131,159,94r7,19v-88,42,-190,-2,-190,-111v0,-85,59,-159,146,-159v68,0,113,49,113,115v0,64,-32,101,-72,101v-20,0,-27,-16,-32,-34v-23,47,-92,48,-95,-16v-3,-64,69,-121,136,-89xm130,-51v37,0,46,-59,52,-98v-43,-11,-74,26,-75,70v0,17,8,28,23,28","w":290},"A":{"d":"144,-275r85,275r-44,0r-25,-81r-84,0r-24,81r-43,0r84,-275r51,0xm82,-113r71,0r-22,-72v-6,-17,-7,-39,-14,-54v-9,44,-23,85,-35,126","w":237,"k":{"Y":11,"W":4,"V":11,"T":11}},"B":{"d":"192,-209v1,27,-19,48,-46,61v29,7,55,30,55,69v0,29,-14,47,-24,56v-18,28,-103,29,-148,22r0,-271v15,-3,40,-6,64,-6v84,0,99,41,99,69xm70,-161v43,4,80,-8,80,-43v0,-43,-46,-45,-80,-40r0,83xm70,-130r0,99v42,5,89,-4,88,-49v-2,-44,-43,-53,-88,-50","w":216},"C":{"d":"200,-41r7,33v-91,36,-193,-12,-193,-127v0,-117,100,-166,194,-134r-9,35v-69,-28,-141,4,-141,97v0,89,70,125,142,96","w":219},"D":{"d":"241,-144v0,122,-93,161,-212,143r0,-271v20,-3,44,-6,70,-6v117,0,142,73,142,134xm71,-242r0,210v79,9,125,-24,126,-111v1,-79,-51,-110,-126,-99","w":254,"k":{"\u00d6":-4,"\u00d5":-4,"\u00d4":-4,"\u00d3":-4,"\u00d2":-4}},"E":{"d":"179,-35r0,35r-150,0r0,-275r144,0r0,35r-102,0r0,79r96,0r0,35r-96,0r0,91r108,0","w":192},"F":{"d":"71,0r-42,0r0,-275r143,0r0,35r-101,0r0,84r94,0r0,35r-94,0r0,121","w":190,"k":{"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"A":11,".":14,",":18}},"G":{"d":"227,-148r0,137v-15,6,-46,14,-79,14v-119,0,-134,-95,-134,-139v0,-113,105,-167,205,-131r-9,34v-70,-27,-152,2,-152,95v0,83,58,123,128,101r0,-78r-47,0r0,-33r88,0","w":248},"H":{"d":"225,-276r0,276r-42,0r0,-125r-112,0r0,125r-42,0r0,-276r42,0r0,114r112,0r0,-114r42,0","w":253},"I":{"d":"29,0r0,-275r42,0r0,275r-42,0","w":99},"J":{"d":"120,-276r0,185v1,89,-54,105,-119,90r5,-35v40,10,72,5,72,-57r0,-183r42,0","w":145,"k":{"}":-7,"]":-7,")":-7}},"K":{"d":"122,-158r96,158r-48,0r-77,-130r-23,29r0,101r-41,0r0,-275r41,0r1,129v28,-46,61,-86,91,-129r51,0","w":216},"L":{"d":"177,-35r0,35r-148,0r0,-275r42,0r0,240r106,0","w":185,"k":{"\u00dd":7,"Y":7,"V":4,"T":7,"-":4}},"M":{"d":"276,-276r16,276r-40,0r-11,-230v-18,75,-48,154,-71,227r-32,0r-38,-122v-12,-35,-18,-74,-28,-105r-12,230r-38,0r18,-276r52,0r39,122r26,94v17,-71,45,-147,67,-216r52,0","w":313},"N":{"d":"226,-275r0,275r-42,0r-72,-129v-19,-29,-30,-66,-48,-93v4,62,3,151,3,222r-38,0r0,-275r45,0r72,127v18,29,32,64,46,91v-6,-65,-4,-145,-4,-218r38,0","w":254},"O":{"d":"133,-280v73,0,115,61,115,140v0,96,-52,144,-119,144v-70,0,-115,-57,-115,-140v0,-87,48,-144,119,-144xm131,-246v-51,0,-73,55,-73,109v0,56,25,107,73,107v48,0,73,-50,73,-109v0,-53,-24,-107,-73,-107","w":261,"k":{".":4,",":4}},"P":{"d":"96,-278v62,-1,101,25,101,82v0,76,-63,96,-127,88r0,108r-41,0r0,-272v17,-3,39,-6,67,-6xm70,-242r0,101v44,9,85,-10,85,-53v0,-43,-45,-58,-85,-48","w":210,"k":{"\u00e0":4,"\u00cf":-4,"\u00ce":-4,"\u00cd":-4,"\u00cc":-4,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"I":-4,".":22,",":22}},"Q":{"d":"238,41v-41,-10,-74,-27,-113,-37v-60,-2,-111,-50,-111,-140v0,-87,48,-144,119,-144v72,0,115,59,115,139v0,71,-31,112,-68,131v24,7,50,13,71,18xm132,-246v-51,0,-74,55,-74,109v0,56,27,107,73,107v48,0,73,-50,73,-109v0,-53,-23,-107,-72,-107","w":261},"R":{"d":"29,-272v71,-14,167,-9,167,70v0,36,-23,59,-49,71v41,6,45,110,59,131r-43,0v-4,-8,-11,-32,-18,-66v-10,-47,-28,-54,-75,-51r0,117r-41,0r0,-272xm70,-148v47,4,84,-9,84,-49v0,-47,-46,-52,-84,-46r0,95","w":214},"S":{"d":"168,-267r-10,34v-9,-5,-26,-12,-49,-12v-33,0,-47,19,-47,37v0,23,15,38,51,50v96,33,84,164,-31,162v-26,0,-54,-8,-67,-17r10,-35v29,23,111,26,111,-25v0,-23,-14,-38,-47,-52v-41,-17,-69,-41,-69,-78v0,-67,95,-95,148,-64","w":194},"T":{"d":"193,-275r0,35r-75,0r0,240r-42,0r0,-240r-74,0r0,-35r191,0","w":194,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"z":7,"y":7,"w":7,"u":7,"s":7,"r":7,"o":7,"m":4,"e":11,"a":11,"T":-4,"A":7,":":-4,".":4,"-":4,",":4,")":-14}},"U":{"d":"222,-275r0,163v0,82,-40,116,-99,116v-57,0,-95,-33,-95,-115r0,-164r42,0r0,166v0,55,23,79,55,79v35,0,56,-24,56,-79r0,-166r41,0","w":250,"k":{".":7,",":4}},"V":{"d":"177,-275r45,0r-90,275r-46,0r-83,-276r45,0r64,232v16,-79,44,-156,65,-231","w":222,"k":{"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"o":7,"e":7,"a":4,"A":4,":":-7,".":7,"-":4,",":7,")":-14}},"W":{"d":"285,-275r42,0r-70,275r-44,0r-30,-133v-8,-31,-11,-61,-17,-89v-11,75,-34,150,-51,222r-44,0r-65,-275r45,0r45,227v13,-73,36,-154,52,-227r42,0r29,131v8,31,11,65,18,95v12,-77,31,-152,48,-226","w":331,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4,".":7,"-":4,",":11,")":-14}},"X":{"d":"134,-141r78,141r-47,0r-58,-111r-53,111r-46,0r76,-140r-73,-135r47,0r53,106r52,-106r47,0","w":220},"Y":{"d":"165,-275r47,0r-85,159r0,116r-42,0r0,-115r-81,-160r47,0r57,128","w":212,"k":{"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"v":4,"u":7,"t":4,"q":7,"o":7,"e":7,"d":4,"a":7,"A":11,".":11,"-":4,",":11,")":-14}},"Z":{"d":"197,-275r0,25r-132,215r134,0r0,35r-189,0r0,-24r134,-216r-122,0r0,-35r175,0","w":210,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4}},"[":{"d":"105,20r0,26r-74,0r0,-326r74,0r0,25r-42,0r0,275r42,0","w":115,"k":{"f":-7,"J":-14}},"\u00a5":{"d":"118,-72r0,72r-39,0r0,-72r-60,0r0,-22r60,0r0,-31r-60,0r0,-22r50,0r-64,-124r44,0r36,82v8,14,8,32,17,41v13,-42,35,-84,52,-123r43,0r-68,124r51,0r0,22r-62,0r0,31r62,0r0,22r-62,0"},"]":{"d":"10,-255r0,-25r75,0r0,326r-75,0r0,-26r43,0r0,-275r-43,0","w":115},"^":{"d":"136,-266r85,190r-33,0r-67,-155r-66,155r-32,0r85,-190r28,0","w":243},"_":{"d":"0,45r0,-18r204,0r0,18r-204,0","w":204},"`":{"d":"57,-225r-48,-58r42,0r35,58r-29,0","w":122},"a":{"d":"91,-203v106,2,66,113,77,203r-37,0v-2,-7,0,-18,-4,-23v-11,15,-31,27,-56,27v-37,0,-58,-27,-58,-58v0,-49,43,-74,111,-74v0,-15,0,-44,-40,-44v-18,0,-35,6,-48,14r-9,-28v14,-9,37,-17,64,-17xm84,-27v36,0,45,-33,41,-73v-33,0,-71,7,-71,42v0,22,15,31,30,31","w":191},"b":{"d":"68,-289r1,118v42,-64,137,-25,137,69v0,106,-96,138,-143,72r-2,30r-36,0r2,-289r41,0xm114,-169v-40,0,-46,44,-46,91v0,25,19,48,46,48v32,0,49,-28,49,-70v0,-37,-16,-69,-49,-69","w":220},"c":{"d":"154,-37r6,31v-65,28,-146,-7,-146,-91v0,-76,74,-127,147,-97r-8,32v-44,-23,-96,8,-96,63v0,60,51,81,97,62","w":171},"d":{"d":"192,-289r2,289r-37,0v-2,-10,0,-23,-3,-31v-38,67,-140,30,-140,-66v0,-95,90,-137,136,-79r0,-113r42,0xm106,-30v41,0,44,-43,44,-88v0,-32,-20,-52,-43,-52v-32,0,-50,32,-50,71v0,39,17,69,49,69","w":218},"e":{"d":"165,-37r7,29v-14,6,-36,12,-63,12v-60,0,-95,-40,-95,-100v0,-59,34,-107,90,-107v62,1,83,55,77,113r-126,0v-1,67,65,70,110,53xm55,-120r87,0v0,-24,-9,-53,-41,-53v-31,0,-44,30,-46,53","w":195,"k":{"j":-4}},"f":{"d":"5,-198r27,0v0,-22,0,-54,22,-76v21,-20,54,-24,79,-13r-4,32v-35,-15,-63,12,-56,57r44,0r0,31r-43,0r0,167r-42,0r0,-167r-27,0r0,-31","w":119,"k":{"}":-32,"]":-29,")":-32,"'":-29,"\"":-32}},"g":{"d":"155,-198r37,0v-3,45,-2,118,-2,170v0,40,-3,113,-97,113v-23,0,-47,-6,-62,-15r9,-32v46,30,127,13,108,-68v-41,61,-134,16,-134,-68v0,-97,99,-137,139,-74xm105,-33v36,0,44,-43,44,-89v0,-26,-17,-48,-43,-48v-29,0,-49,28,-49,70v0,39,17,67,48,67","w":217},"h":{"d":"190,-120r0,120r-41,0v-7,-61,24,-168,-38,-168v-21,0,-43,17,-43,47r0,121r-41,0r0,-289r41,0r1,118v38,-53,121,-46,121,51","w":216},"i":{"d":"72,-253v0,13,-9,24,-24,24v-14,0,-25,-11,-25,-24v0,-14,11,-25,25,-25v14,0,24,11,24,25xm68,-199r0,199r-41,0r0,-199r41,0","w":95},"j":{"d":"77,-253v0,13,-10,24,-25,24v-14,0,-24,-11,-24,-24v0,-14,11,-25,25,-25v15,0,24,11,24,25xm73,-199v-6,88,20,215,-24,263v-15,16,-40,21,-61,21r-5,-32v43,-4,49,-26,49,-84r0,-168r41,0","w":99},"k":{"d":"113,-117r79,117r-51,0r-56,-91r-17,20r0,71r-41,0r0,-289r41,0r1,180v20,-32,43,-59,65,-89r49,0","w":188},"l":{"d":"68,-289r0,289r-41,0r0,-289r41,0","w":95},"m":{"d":"299,-120r0,120r-41,0v-6,-59,21,-168,-36,-168v-19,0,-39,17,-39,46r0,122r-41,0r0,-120v0,-28,-10,-48,-34,-48v-19,0,-40,17,-40,48r0,120r-41,0r-2,-198r36,0v2,9,0,22,3,29v16,-41,98,-46,112,3v33,-55,123,-56,123,46","w":324},"n":{"d":"190,-121r0,121r-41,0v-7,-61,24,-168,-38,-168v-21,0,-43,16,-43,48r0,120r-41,0r-2,-198r37,0v2,9,0,22,3,29v9,-17,30,-34,60,-34v31,0,65,21,65,82","w":216},"o":{"d":"108,-203v54,0,90,41,90,102v0,74,-48,105,-93,105v-51,0,-91,-38,-91,-102v0,-67,41,-105,94,-105xm155,-100v0,-33,-14,-71,-49,-71v-69,1,-62,146,0,144v30,0,49,-33,49,-73","w":212},"p":{"d":"62,-198v2,9,0,22,3,30v43,-67,141,-32,141,66v0,102,-89,134,-138,79r0,103r-41,0r-2,-278r37,0xm114,-169v-38,0,-46,42,-46,89v0,36,24,51,45,51v32,0,50,-30,50,-71v0,-38,-17,-69,-49,-69","w":220},"q":{"d":"154,-198r40,0r-2,278r-42,0r-1,-107v-40,61,-135,25,-135,-69v0,-72,44,-107,84,-107v27,-1,43,14,55,31xm105,-30v46,0,45,-43,45,-89v0,-31,-20,-50,-43,-50v-32,0,-50,29,-50,70v0,39,15,69,48,69","w":218},"r":{"d":"126,-202r0,40v-75,-14,-56,92,-58,162r-41,0r-2,-198r37,0v1,11,-1,27,2,36v11,-28,32,-45,62,-40","w":132,"k":{".":4,",":4}},"s":{"d":"135,-191r-10,30v-14,-13,-66,-18,-66,13v0,14,8,24,33,31v75,23,61,121,-24,121v-21,0,-41,-5,-54,-13r9,-31v18,15,81,21,79,-13v0,-15,-8,-25,-33,-33v-76,-25,-61,-115,18,-117v19,0,37,6,48,12","w":155},"t":{"d":"121,-1v-45,15,-86,-5,-86,-63r0,-103r-28,0r0,-31r28,0r0,-36r41,-13r0,49r47,0r0,31r-47,0r0,100v-2,33,19,43,44,34","w":132},"u":{"d":"188,-198r2,198r-37,0v-2,-9,0,-22,-3,-29v-8,14,-28,33,-60,33v-34,0,-64,-22,-64,-85r0,-118r42,0v6,60,-22,168,37,168v19,0,41,-15,41,-45r0,-122r42,0","w":214},"v":{"d":"142,-198r43,0r-71,198r-40,0r-69,-198r45,0r46,156","w":189,"k":{".":7,",":4}},"w":{"d":"241,-198r42,0r-61,198r-37,0r-26,-88v-7,-20,-9,-42,-16,-63v-10,57,-27,100,-42,151r-38,0r-57,-198r43,0r36,158v11,-54,29,-106,43,-158r34,0r43,158v8,-53,24,-107,36,-158","w":288,"k":{":":-4,".":7,",":7}},"x":{"d":"134,-198r45,0r-62,95r63,103r-47,0r-43,-76r-41,76r-46,0r64,-101r-61,-97r46,0r42,72v12,-26,26,-48,40,-72","w":183},"y":{"d":"140,-198r44,0v-44,100,-61,261,-158,288r-11,-36v45,-21,64,-52,57,-69r-68,-183r45,0r48,151","w":186,"k":{":":-7,".":7,",":7}},"z":{"d":"15,-198r144,0r0,26r-100,138r102,0r0,34r-153,0r0,-25r101,-140r-94,0r0,-33","w":168},"{":{"d":"44,-118v37,8,25,64,25,105v0,33,20,33,35,33r0,26v-25,0,-67,0,-67,-56v0,-39,29,-92,-26,-96r1,-23v55,-3,25,-59,25,-97v0,-54,46,-54,67,-54r0,25v-15,0,-35,0,-35,33v0,38,15,99,-25,104","w":115,"k":{"f":-7,"J":-11}},"\u00a6":{"d":"65,-276r0,143r-32,0r0,-143r32,0xm65,-71r0,143r-32,0r0,-143r32,0","w":98},"}":{"d":"11,-255r0,-25v22,0,68,0,68,54v0,34,-30,98,25,97r1,23v-56,2,-26,58,-26,96v0,56,-43,56,-68,56r0,-26v15,0,36,0,36,-33v0,-38,-13,-100,25,-105v-40,-4,-25,-65,-25,-104v0,-33,-21,-33,-36,-33","w":115},"\\":{"d":"32,-280r97,297r-30,0r-98,-297r31,0","w":130},"|":{"d":"33,102r0,-409r32,0r0,409r-32,0","w":98},"~":{"d":"72,-149v26,0,77,36,103,35v13,0,20,-12,20,-34r27,0v2,47,-20,65,-47,65v-27,0,-79,-35,-104,-36v-13,0,-21,10,-22,34r-28,0v-1,-44,22,-64,51,-64","w":243},"\u00a1":{"d":"64,-114r7,193r-45,0r6,-193r32,0xm48,-201v17,0,27,13,27,28v0,16,-11,28,-27,28v-15,0,-26,-12,-26,-28v0,-16,11,-28,26,-28","w":95},"\u00a2":{"d":"133,-36r0,41r-29,0r0,-42v-50,-7,-77,-44,-77,-99v0,-52,29,-93,77,-102r0,-41r29,0r0,40v15,0,31,4,40,9r-8,31v-44,-26,-96,7,-96,62v0,63,53,84,98,61r7,30v-8,4,-24,9,-41,10"},"\u00a3":{"d":"185,-34r0,34r-165,0r0,-23v30,-17,51,-52,43,-99r-40,0r0,-28r35,0v-17,-63,11,-125,74,-125v20,0,35,5,43,10r-9,31v-29,-19,-73,-2,-73,40v0,17,1,31,4,44r55,0r0,28r-51,0v3,33,4,49,-30,88r114,0"},"\u00a4":{"d":"27,-239r29,32v21,-23,72,-21,91,0r29,-32r20,20r-33,31v17,22,17,79,0,99r31,32r-19,20r-28,-32v-25,23,-67,22,-92,1r-28,31r-19,-20r31,-30v-19,-23,-18,-79,1,-101r-32,-31xm101,-195v-27,0,-43,25,-43,57v2,76,84,77,85,-1v0,-30,-15,-56,-42,-56"},"\u00ab":{"d":"61,-178r32,0r-51,75r51,75r-32,0r-50,-75xm129,-178r32,0r-50,75r50,75r-32,0r-50,-75","w":169},"\u00b7":{"d":"45,-79v-17,0,-27,-12,-27,-28v0,-17,12,-29,27,-29v16,0,26,12,26,29v0,17,-10,28,-26,28","w":88},"\u00bb":{"d":"9,-28r50,-75r-50,-75r32,0r50,75r-50,75r-32,0xm77,-28r50,-75r-50,-75r31,0r51,75r-50,75r-32,0","w":169},"\u00bf":{"d":"93,-201v17,0,26,13,26,28v0,16,-10,28,-26,28v-16,0,-27,-12,-27,-28v0,-16,11,-28,27,-28xm18,23v0,-53,68,-78,55,-139r37,0v18,56,-47,91,-49,134v-1,36,51,39,73,20r10,30v-12,8,-35,16,-57,16v-48,0,-69,-30,-69,-61","w":160},"\u00af":{"d":"15,-239r0,-25r92,0r0,25r-92,0","w":122},"\u00b8":{"d":"37,33r18,-34r24,0r-12,21v15,2,28,13,28,29v1,35,-47,39,-72,26r7,-18v13,8,38,11,38,-7v0,-10,-12,-15,-31,-17","w":122},"\u00c6":{"d":"80,-90r-36,90r-43,0r114,-275r171,0r0,35r-106,0r8,81r96,0r0,34r-91,0r10,90r95,0r0,35r-131,0r-10,-90r-77,0xm140,-246v-18,39,-31,83,-48,123r60,0","w":308},"\u00aa":{"d":"69,-241v71,0,46,72,54,132r-27,0v-1,-5,0,-12,-3,-15v-18,28,-80,20,-80,-21v0,-31,31,-49,78,-48v6,-28,-44,-32,-61,-16r-7,-20v11,-7,28,-12,46,-12xm64,-128v27,0,29,-20,27,-45v-22,0,-48,4,-48,25v0,13,10,20,21,20","w":138},"\u00d8":{"d":"71,-15r-23,34r-23,-17r23,-36v-22,-25,-34,-61,-34,-103v0,-111,93,-178,179,-124r20,-32r25,15r-23,36v21,25,33,62,33,102v1,122,-93,175,-177,125xm131,-246v-72,-2,-93,114,-59,174r101,-157v-11,-10,-25,-17,-42,-17xm131,-30v69,3,94,-110,60,-173r-101,156v11,11,24,17,41,17","w":261},"\u00ba":{"d":"72,-242v39,0,62,28,62,67v1,94,-125,87,-125,2v0,-43,29,-69,63,-69xm71,-219v-45,0,-38,90,0,90v20,0,32,-20,32,-45v0,-20,-9,-45,-32,-45","w":143},"\u00e6":{"d":"148,-164v13,-24,37,-39,65,-39v64,0,79,64,72,110r-121,0v-6,67,65,75,106,55r7,29v-45,23,-115,16,-134,-27v-13,25,-38,40,-70,40v-39,0,-60,-27,-60,-58v0,-47,43,-72,111,-71v1,-23,-2,-47,-41,-47v-18,0,-36,6,-47,14r-9,-27v35,-26,110,-25,121,21xm84,-27v43,0,42,-33,41,-71v-32,-1,-71,6,-71,41v0,20,14,30,30,30xm164,-122r83,0v1,-22,-9,-51,-39,-51v-30,0,-43,29,-44,51","w":300},"\u00f8":{"d":"60,-9r-16,26r-17,-13r16,-26v-18,-18,-29,-44,-29,-77v-1,-85,74,-127,139,-91r16,-25r18,12r-17,27v18,18,28,44,28,76v-2,93,-74,124,-138,91xm66,-55r69,-105v-7,-7,-17,-11,-29,-11v-53,3,-62,75,-40,116xm147,-141r-69,103v38,31,80,-10,80,-61v0,-14,-3,-28,-11,-42","w":212},"\u00df":{"d":"163,-59v-2,-36,-51,-54,-51,-93v0,-21,13,-39,35,-50v10,-29,-7,-58,-34,-58v-27,0,-45,20,-45,76r0,184r-41,0r0,-182v0,-76,26,-106,89,-111v53,-5,92,56,65,103v-71,36,23,75,23,128v0,55,-64,80,-114,58r6,-31v24,14,69,6,67,-24","w":217},"\u00ad":{"d":"17,-96r0,-28r211,0r0,28r-211,0","w":243},"\u00a9":{"d":"14,-139v0,-77,63,-126,125,-126v69,0,124,57,124,126v0,71,-55,127,-124,127v-70,0,-125,-57,-125,-127xm36,-138v0,62,48,107,103,107v59,0,101,-50,101,-108v0,-57,-42,-107,-101,-107v-58,0,-103,47,-103,108xm190,-93r5,17v-51,33,-125,0,-125,-61v0,-65,77,-93,124,-65r-5,18v-5,-3,-21,-9,-40,-9v-36,0,-55,23,-55,55v0,50,59,70,96,45","w":276},"\u00ac":{"d":"227,-167r0,119r-29,0r0,-91r-182,0r0,-28r211,0","w":243},"\u00ae":{"d":"17,-212v0,-38,31,-68,68,-68v39,0,69,31,69,68v0,37,-30,67,-69,67v-38,0,-68,-29,-68,-67xm34,-212v0,32,24,53,51,53v30,0,51,-23,51,-53v0,-29,-22,-53,-51,-53v-29,0,-51,24,-51,53xm75,-179r-16,0r0,-65v17,-2,56,-9,56,17v1,8,-8,12,-14,16v10,0,13,26,17,32r-18,0v-5,-9,-3,-30,-25,-25r0,25xm76,-234r0,18v19,5,31,-17,8,-18r-8,0","w":170},"\u00b2":{"d":"114,-179r-110,0v-3,-24,14,-29,24,-40v28,-30,49,-48,49,-69v0,-31,-45,-31,-61,-14r-9,-22v10,-9,29,-16,50,-16v89,0,52,92,4,124v-3,4,-9,7,-11,12r64,0r0,25","w":124},"\u00b3":{"d":"30,-274v20,1,42,-3,44,-23v2,-25,-46,-20,-57,-9r-7,-22v26,-21,106,-13,97,27v1,18,-13,28,-30,37v21,3,36,18,36,39v0,44,-75,62,-110,38r7,-23v16,14,69,13,69,-16v0,-27,-34,-27,-49,-27r0,-21","w":122},"\u00b5":{"d":"32,81v-11,-75,-3,-193,-5,-280r41,0r0,119v0,28,10,50,37,50v18,0,42,-16,42,-46r0,-123r42,0r0,144v0,19,4,27,17,27r-3,30v-26,7,-44,-4,-51,-30v-7,26,-68,47,-87,13v0,31,0,74,5,96r-38,0","w":215},"\u00b9":{"d":"76,-338r0,159r-32,0r-1,-131r-30,14r-5,-24v20,-8,36,-21,68,-18","w":102},"\u00bc":{"d":"268,-41r0,41r-31,0r0,-41r-76,0r0,-18r72,-102r35,0r0,98r22,0r0,22r-22,0xm192,-64v12,3,31,0,45,1v0,-23,4,-49,1,-70v-13,26,-30,46,-46,69xm21,-226r-6,-23v20,-9,36,-23,69,-19r0,160r-33,0r0,-132xm82,4r-25,0r151,-274r25,0","w":304},"\u00bd":{"d":"15,-226r-5,-23v20,-9,35,-23,68,-19r0,160r-32,0r-1,-132xm73,4r-25,0r151,-274r25,0xm287,0r-110,0v-3,-24,13,-29,23,-40v29,-30,49,-48,49,-69v0,-31,-46,-31,-60,-14r-10,-22v11,-9,29,-17,50,-17v38,0,55,24,55,47v0,35,-37,63,-62,89r65,0r0,26","w":304},"\u00be":{"d":"271,-41r0,41r-31,0r0,-41r-76,0r0,-18r73,-102r34,0r0,98r23,0r0,22r-23,0xm196,-64v12,3,30,0,44,1v0,-23,4,-49,1,-70v-12,26,-29,46,-45,69xm85,-194v21,3,37,19,37,40v0,42,-76,59,-110,37r7,-23v16,14,69,14,69,-16v0,-27,-34,-27,-49,-27r0,-20v20,1,41,-4,43,-24v3,-25,-45,-20,-56,-9r-7,-22v26,-21,106,-13,97,27v0,17,-12,30,-31,37xm95,4r-26,0r151,-274r25,0","w":304},"\u00c0":{"d":"144,-275r85,275r-44,0r-25,-81r-84,0r-24,81r-43,0r84,-275r51,0xm82,-113r71,0r-22,-72v-6,-17,-7,-39,-14,-54v-9,44,-23,85,-35,126xm109,-291r-52,-47r48,0r37,47r-33,0","w":237,"k":{"\u00dd":11,"Y":11,"W":4,"V":4}},"\u00c1":{"d":"144,-275r85,275r-44,0r-25,-81r-84,0r-24,81r-43,0r84,-275r51,0xm82,-113r71,0r-22,-72v-6,-17,-7,-39,-14,-54v-9,44,-23,85,-35,126xm98,-290r37,-48r48,0r-52,48r-33,0","w":237,"k":{"\u00dd":11,"Y":7,"W":4,"V":4,"T":7}},"\u00c2":{"d":"144,-275r85,275r-44,0r-25,-81r-84,0r-24,81r-43,0r84,-275r51,0xm82,-113r71,0r-22,-72v-6,-17,-7,-39,-14,-54v-9,44,-23,85,-35,126xm63,-290r40,-46r32,0r41,46r-33,0v-9,-8,-15,-19,-25,-26r-23,26r-32,0","w":237,"k":{"\u00dd":7,"Y":11,"W":4,"V":4,"T":7}},"\u00c3":{"d":"144,-275r85,275r-45,0r-24,-81r-85,0r-24,81r-42,0r84,-275r51,0xm82,-113r71,0r-22,-72v-6,-17,-7,-39,-14,-54v-9,44,-23,85,-35,126xm96,-336v20,0,48,36,53,-1r21,0v4,55,-45,43,-70,27v-6,0,-10,6,-11,17r-21,0v-1,-27,10,-43,28,-43","w":237,"k":{"\u00dd":11,"Y":11,"W":4,"V":4,"T":7}},"\u00c4":{"d":"144,-275r85,275r-45,0r-24,-81r-84,0r-24,81r-43,0r85,-275r50,0xm82,-113r71,0r-22,-72v-6,-17,-7,-39,-14,-54v-9,44,-23,85,-35,126xm81,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,22,10,22,23v0,13,-10,22,-22,22xm157,-294v-13,0,-21,-10,-21,-22v0,-12,9,-23,21,-23v12,0,22,10,22,23v0,13,-9,22,-22,22","w":237,"k":{"Y":11,"W":4,"V":4,"T":7}},"\u00c5":{"d":"144,-275r85,275r-45,0r-24,-81r-84,0r-24,81r-43,0r84,-275r51,0xm82,-113r71,0r-22,-72v-6,-17,-7,-39,-14,-54v-9,44,-23,85,-35,126xm120,-360v28,0,41,18,41,38v0,21,-16,37,-41,37v-26,0,-42,-16,-42,-36v0,-21,16,-39,42,-39xm119,-343v-26,0,-25,41,0,41v12,0,19,-9,19,-20v0,-11,-7,-21,-19,-21","w":237,"k":{"\u00fd":7,"\u00dd":11,"Y":7,"W":4,"V":4,"T":7}},"\u00c7":{"d":"200,-41r7,33v-12,8,-51,15,-81,11r-10,17v15,3,29,13,29,30v0,37,-47,42,-73,27r6,-19v11,6,38,10,39,-7v0,-10,-13,-14,-32,-16r18,-36v-55,-15,-89,-62,-89,-134v0,-117,100,-166,194,-134r-9,35v-69,-28,-141,4,-141,97v0,89,70,125,142,96","w":219},"\u00c8":{"d":"179,-35r0,35r-150,0r0,-275r144,0r0,35r-102,0r0,79r96,0r0,35r-96,0r0,91r108,0xm86,-291r-51,-47r47,0r38,47r-34,0","w":192},"\u00c9":{"d":"179,-35r0,35r-150,0r0,-275r144,0r0,35r-102,0r0,79r96,0r0,35r-96,0r0,91r108,0xm75,-290r37,-48r48,0r-51,48r-34,0","w":192},"\u00ca":{"d":"179,-35r0,35r-150,0r0,-275r144,0r0,35r-102,0r0,79r96,0r0,35r-96,0r0,91r108,0xm40,-290r40,-46r32,0r41,46r-33,0v-9,-8,-15,-19,-25,-26r-23,26r-32,0","w":192},"\u00cb":{"d":"179,-35r0,35r-150,0r0,-275r144,0r0,35r-102,0r0,79r96,0r0,35r-96,0r0,91r108,0xm58,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,22,10,22,23v0,13,-10,22,-22,22xm135,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,21,10,21,23v0,13,-8,22,-21,22","w":192},"\u00cc":{"d":"29,0r0,-275r42,0r0,275r-42,0xm40,-291r-52,-47r48,0r37,47r-33,0","w":99},"\u00cd":{"d":"29,0r0,-275r42,0r0,275r-42,0xm29,-290r37,-48r47,0r-51,48r-33,0","w":99},"\u00ce":{"d":"29,0r0,-275r42,0r0,275r-42,0xm-7,-290r40,-46r33,0r40,46r-33,0v-8,-8,-15,-19,-24,-26r-23,26r-33,0","w":99},"\u00cf":{"d":"29,0r0,-275r42,0r0,275r-42,0xm12,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,21,10,21,23v0,13,-9,22,-21,22xm88,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,21,10,21,23v0,13,-8,22,-21,22","w":99},"\u00d0":{"d":"243,-144v0,123,-93,160,-212,143r0,-124r-31,0r0,-32r31,0r0,-115v20,-4,45,-6,71,-6v120,0,141,77,141,134xm73,-157r61,0r0,32r-61,0r0,93v79,8,125,-25,126,-111v1,-76,-49,-111,-126,-99r0,85","w":257},"\u00d1":{"d":"226,-275r0,275r-42,0r-72,-129v-19,-29,-30,-66,-48,-93v4,62,3,151,3,222r-38,0r0,-275r45,0r72,127v18,29,32,64,46,91v-6,-65,-4,-145,-4,-218r38,0xm105,-336v19,0,47,36,52,-1r21,0v4,56,-45,42,-70,27v-6,0,-9,6,-10,17r-21,0v-1,-27,10,-43,28,-43","w":254},"\u00d2":{"d":"133,-280v73,0,115,61,115,140v0,96,-52,144,-119,144v-70,0,-115,-57,-115,-140v0,-87,48,-144,119,-144xm131,-246v-51,0,-73,55,-73,109v0,56,25,107,73,107v48,0,73,-50,73,-109v0,-53,-24,-107,-73,-107xm121,-291r-52,-47r48,0r37,47r-33,0","w":261},"\u00d3":{"d":"133,-280v73,0,115,61,115,140v0,96,-52,144,-119,144v-70,0,-115,-57,-115,-140v0,-87,48,-144,119,-144xm131,-246v-51,0,-73,55,-73,109v0,56,25,107,73,107v48,0,73,-50,73,-109v0,-53,-24,-107,-73,-107xm110,-290r37,-48r48,0r-52,48r-33,0","w":261},"\u00d4":{"d":"133,-280v73,0,115,61,115,140v0,96,-52,144,-119,144v-70,0,-115,-57,-115,-140v0,-87,48,-144,119,-144xm131,-246v-51,0,-73,55,-73,109v0,56,25,107,73,107v48,0,73,-50,73,-109v0,-53,-24,-107,-73,-107xm74,-290r40,-46r33,0r41,46r-34,0v-8,-8,-15,-19,-24,-26r-23,26r-33,0","w":261},"\u00d5":{"d":"133,-280v73,0,115,61,115,140v0,96,-52,144,-119,144v-70,0,-115,-57,-115,-140v0,-87,48,-144,119,-144xm131,-246v-50,0,-73,55,-73,109v0,56,25,107,73,107v48,0,73,-50,73,-109v0,-53,-23,-107,-73,-107xm108,-336v20,0,48,36,53,-1r21,0v4,55,-45,43,-70,27v-6,0,-10,6,-11,17r-21,0v-1,-27,10,-43,28,-43","w":261},"\u00d6":{"d":"133,-280v73,0,115,61,115,140v0,96,-52,144,-119,144v-70,0,-115,-57,-115,-140v0,-87,48,-144,119,-144xm131,-246v-51,0,-73,55,-73,109v0,56,25,107,73,107v48,0,73,-50,73,-109v0,-53,-24,-107,-73,-107xm93,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,21,10,21,23v0,13,-9,22,-21,22xm169,-294v-13,0,-21,-10,-21,-22v0,-12,9,-23,21,-23v12,0,21,10,21,23v0,13,-8,22,-21,22","w":261},"\u00d9":{"d":"222,-275r0,163v0,82,-40,116,-99,116v-57,0,-95,-33,-95,-115r0,-164r42,0r0,166v0,55,23,79,55,79v35,0,56,-24,56,-79r0,-166r41,0xm115,-291r-51,-47r48,0r37,47r-34,0","w":250},"\u00da":{"d":"222,-275r0,163v0,82,-40,116,-99,116v-57,0,-95,-33,-95,-115r0,-164r42,0r0,166v0,55,23,79,55,79v35,0,56,-24,56,-79r0,-166r41,0xm105,-290r36,-48r48,0r-51,48r-33,0","w":250},"\u00db":{"d":"222,-275r0,163v0,82,-40,116,-99,116v-57,0,-95,-33,-95,-115r0,-164r42,0r0,166v0,55,23,79,55,79v35,0,56,-24,56,-79r0,-166r41,0xm69,-290r40,-46r32,0r41,46r-33,0v-8,-8,-15,-19,-24,-26r-23,26r-33,0","w":250},"\u00dc":{"d":"222,-275r0,163v0,82,-40,116,-99,116v-57,0,-95,-33,-95,-115r0,-164r42,0r0,166v0,55,23,79,55,79v35,0,56,-24,56,-79r0,-166r41,0xm88,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,21,10,21,23v0,13,-9,22,-21,22xm164,-294v-13,0,-22,-10,-22,-22v0,-12,10,-23,22,-23v12,0,21,10,21,23v0,13,-8,22,-21,22","w":250},"\u00dd":{"d":"165,-275r47,0r-85,159r0,116r-42,0r0,-115r-81,-160r47,0r57,128xm85,-290r37,-48r48,0r-51,48r-34,0","w":212,"k":{"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,".":11,"-":4,",":11,")":-14}},"\u00de":{"d":"70,0r-41,0r0,-275r41,0r0,52v9,-1,19,-2,33,-2v78,0,93,49,93,77v0,69,-59,96,-126,86r0,62xm70,-96v44,8,84,-8,84,-48v0,-42,-45,-56,-84,-46r0,94","w":210},"\u00e0":{"d":"91,-203v106,2,66,113,77,203r-37,0v-2,-7,0,-18,-4,-23v-11,15,-31,27,-56,27v-37,0,-58,-27,-58,-58v0,-49,43,-74,111,-74v0,-15,0,-44,-40,-44v-18,0,-35,6,-48,14r-9,-28v14,-9,37,-17,64,-17xm84,-27v36,0,45,-33,41,-73v-33,0,-71,7,-71,42v0,22,15,31,30,31xm91,-225r-47,-58r42,0r34,58r-29,0","w":191},"\u00e1":{"d":"91,-203v106,2,66,113,77,203r-37,0v-2,-7,0,-18,-4,-23v-11,15,-31,27,-56,27v-37,0,-58,-27,-58,-58v0,-49,43,-74,111,-74v0,-15,0,-44,-40,-44v-18,0,-35,6,-48,14r-9,-28v14,-9,37,-17,64,-17xm84,-27v36,0,45,-33,41,-73v-33,0,-71,7,-71,42v0,22,15,31,30,31xm75,-225r34,-58r42,0r-48,58r-28,0","w":191},"\u00e2":{"d":"91,-203v106,2,66,113,77,203r-37,0v-2,-7,0,-18,-4,-23v-11,15,-31,27,-56,27v-37,0,-58,-27,-58,-58v0,-49,43,-74,111,-74v0,-15,0,-44,-40,-44v-18,0,-35,6,-48,14r-9,-28v14,-9,37,-17,64,-17xm84,-27v36,0,45,-33,41,-73v-33,0,-71,7,-71,42v0,22,15,31,30,31xm44,-225r37,-58r29,0r38,58r-30,0v-8,-12,-14,-26,-23,-37r-22,37r-29,0","w":191},"\u00e3":{"d":"91,-203v106,2,66,113,77,203r-37,0v-2,-7,0,-18,-4,-23v-11,15,-31,27,-56,27v-37,0,-58,-27,-58,-58v0,-49,43,-74,111,-74v0,-15,0,-44,-40,-44v-18,0,-35,6,-48,14r-9,-28v14,-9,37,-17,64,-17xm84,-27v36,0,45,-33,41,-73v-33,0,-71,7,-71,42v0,22,15,31,30,31xm74,-275v19,0,48,39,52,-1r21,0v3,57,-44,43,-70,28v-6,0,-9,6,-10,18r-22,0v-1,-27,11,-45,29,-45","w":191},"\u00e4":{"d":"91,-203v106,2,66,113,77,203r-37,0v-2,-7,0,-18,-4,-23v-11,15,-31,27,-56,27v-37,0,-58,-27,-58,-58v0,-49,43,-74,111,-74v0,-15,0,-44,-40,-44v-18,0,-35,6,-48,14r-9,-28v14,-9,37,-17,64,-17xm84,-27v36,0,45,-33,41,-73v-33,0,-71,7,-71,42v0,22,15,31,30,31xm58,-231v-14,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,22,-22,22xm134,-231v-13,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,22,-22,22","w":191},"\u00e5":{"d":"91,-203v106,2,66,113,77,203r-37,0v-2,-7,0,-18,-4,-23v-11,15,-31,27,-56,27v-37,0,-58,-27,-58,-58v0,-49,43,-74,111,-74v0,-15,0,-44,-40,-44v-18,0,-35,6,-48,14r-9,-28v14,-9,37,-17,64,-17xm84,-27v36,0,45,-33,41,-73v-33,0,-71,7,-71,42v0,22,15,31,30,31xm96,-296v25,0,42,16,42,39v0,21,-18,38,-42,38v-26,0,-42,-17,-42,-38v0,-23,17,-39,42,-39xm96,-279v-28,1,-25,42,0,43v13,0,20,-9,20,-21v0,-12,-7,-22,-20,-22","w":191},"\u00e7":{"d":"154,-37r6,31v-10,5,-36,11,-60,10r-9,16v15,2,29,13,29,29v1,35,-48,39,-73,26r7,-18v13,7,38,11,38,-7v0,-10,-12,-15,-31,-17r17,-33v-40,-12,-64,-47,-64,-97v0,-76,75,-127,147,-97r-8,32v-44,-23,-96,8,-96,63v0,60,50,81,97,62","w":171},"\u00e8":{"d":"165,-37r7,29v-14,6,-36,12,-63,12v-60,0,-95,-40,-95,-100v0,-59,34,-107,90,-107v62,1,83,55,77,113r-126,0v-1,67,65,70,110,53xm55,-120r87,0v0,-24,-9,-53,-41,-53v-31,0,-44,30,-46,53xm94,-225r-48,-58r42,0r34,58r-28,0","w":195,"k":{"j":-4}},"\u00e9":{"d":"165,-37r7,29v-14,6,-36,12,-63,12v-60,0,-95,-40,-95,-100v0,-59,34,-107,90,-107v62,1,83,55,77,113r-126,0v-1,67,65,70,110,53xm55,-120r87,0v0,-24,-9,-53,-41,-53v-31,0,-44,30,-46,53xm77,-225r34,-58r42,0r-48,58r-28,0","w":195,"k":{"j":-4}},"\u00ea":{"d":"165,-37r7,29v-14,6,-36,12,-63,12v-60,0,-95,-40,-95,-100v0,-59,34,-107,90,-107v62,1,83,55,77,113r-126,0v-1,67,65,70,110,53xm55,-120r87,0v0,-24,-9,-53,-41,-53v-31,0,-44,30,-46,53xm46,-225r38,-58r28,0r38,58r-30,0v-8,-12,-14,-26,-23,-37r-21,37r-30,0","w":195,"k":{"j":-4}},"\u00eb":{"d":"165,-37r7,29v-14,6,-36,12,-63,12v-60,0,-95,-40,-95,-100v0,-59,34,-107,90,-107v62,1,83,55,77,113r-126,0v-1,67,65,70,110,53xm55,-120r87,0v0,-24,-9,-53,-41,-53v-31,0,-44,30,-46,53xm60,-231v-14,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,22,-22,22xm136,-231v-13,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,22,-22,22","w":195,"k":{"j":-4}},"\u00ec":{"d":"68,-198r0,198r-41,0r0,-198r41,0xm43,-225r-48,-58r43,0r34,58r-29,0","w":95},"\u00ed":{"d":"68,-198r0,198r-41,0r0,-198r41,0xm26,-225r35,-58r42,0r-48,58r-29,0","w":95},"\u00ee":{"d":"68,-198r0,198r-41,0r0,-198r41,0xm-4,-225r37,-58r29,0r38,58r-30,0v-8,-12,-14,-26,-23,-37r-21,37r-30,0","w":95},"\u00ef":{"d":"68,-198r0,198r-41,0r0,-198r41,0xm10,-231v-14,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,21,10,21,23v0,12,-8,22,-21,22xm85,-231v-13,0,-22,-10,-22,-22v0,-13,10,-23,23,-23v12,0,21,10,21,23v0,12,-9,22,-22,22","w":95},"\u00f0":{"d":"97,-230r-54,25r-8,-18r43,-21v-11,-9,-24,-16,-38,-24r19,-24v18,9,37,19,54,32r49,-24r10,19r-41,19v47,40,64,89,64,142v2,148,-181,138,-181,7v0,-80,67,-119,123,-89v-10,-16,-24,-31,-40,-44xm152,-99v0,-19,0,-71,-47,-71v-69,0,-60,142,-1,143v30,0,48,-32,48,-72","w":210},"\u00f1":{"d":"190,-121r0,121r-41,0v-7,-61,24,-168,-38,-168v-21,0,-43,16,-43,48r0,120r-41,0r-2,-198r37,0v2,9,0,22,3,29v9,-17,30,-34,60,-34v31,0,65,21,65,82xm86,-275v19,0,48,39,53,-1r20,0v4,58,-44,42,-70,28v-6,0,-9,6,-10,18r-22,0v-1,-27,11,-45,29,-45","w":216},"\u00f2":{"d":"108,-203v54,0,90,41,90,102v0,74,-48,105,-93,105v-51,0,-91,-38,-91,-102v0,-67,41,-105,94,-105xm155,-100v0,-33,-14,-71,-49,-71v-69,1,-62,146,0,144v30,0,49,-33,49,-73xm102,-225r-48,-58r42,0r35,58r-29,0","w":212},"\u00f3":{"d":"108,-203v54,0,90,41,90,102v0,74,-48,105,-93,105v-51,0,-91,-38,-91,-102v0,-67,41,-105,94,-105xm155,-100v0,-33,-14,-71,-49,-71v-69,1,-62,146,0,144v30,0,49,-33,49,-73xm85,-225r35,-58r42,0r-48,58r-29,0","w":212},"\u00f4":{"d":"108,-203v54,0,90,41,90,102v0,74,-48,105,-93,105v-51,0,-91,-38,-91,-102v0,-67,41,-105,94,-105xm155,-100v0,-33,-14,-71,-49,-71v-69,1,-62,146,0,144v30,0,49,-33,49,-73xm54,-225r38,-58r29,0r38,58r-30,0v-8,-12,-14,-26,-23,-37r-22,37r-30,0","w":212},"\u00f5":{"d":"108,-203v54,0,90,41,90,102v0,74,-48,105,-93,105v-51,0,-91,-38,-91,-102v0,-67,41,-105,94,-105xm155,-100v0,-33,-14,-71,-49,-71v-69,1,-62,146,0,144v30,0,49,-33,49,-73xm84,-275v19,0,48,39,52,-1r21,0v4,58,-44,42,-70,28v-6,0,-9,6,-10,18r-22,0v-1,-27,11,-45,29,-45","w":212},"\u00f6":{"d":"108,-203v54,0,90,41,90,102v0,74,-48,105,-93,105v-51,0,-91,-38,-91,-102v0,-67,41,-105,94,-105xm155,-100v0,-33,-14,-71,-49,-71v-69,1,-62,146,0,144v30,0,49,-33,49,-73xm69,-231v-14,0,-23,-10,-23,-22v0,-13,10,-23,23,-23v12,0,21,10,21,23v0,12,-8,22,-21,22xm144,-231v-13,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,22,-22,22","w":212},"\u00f9":{"d":"188,-198r2,198r-37,0v-2,-9,0,-22,-3,-29v-8,14,-28,33,-60,33v-34,0,-64,-22,-64,-85r0,-118r42,0v6,60,-22,168,37,168v19,0,41,-15,41,-45r0,-122r42,0xm103,-225r-48,-58r43,0r34,58r-29,0","w":214},"\u00fa":{"d":"188,-198r2,198r-37,0v-2,-9,0,-22,-3,-29v-8,14,-28,33,-60,33v-34,0,-64,-22,-64,-85r0,-118r42,0v6,60,-22,168,37,168v19,0,41,-15,41,-45r0,-122r42,0xm86,-225r35,-58r42,0r-48,58r-29,0","w":214},"\u00fb":{"d":"188,-198r2,198r-37,0v-2,-9,0,-22,-3,-29v-8,14,-28,33,-60,33v-34,0,-64,-22,-64,-85r0,-118r42,0v6,60,-22,168,37,168v19,0,41,-15,41,-45r0,-122r42,0xm55,-225r38,-58r29,0r38,58r-30,0v-8,-12,-14,-26,-23,-37r-22,37r-30,0","w":214},"\u00fc":{"d":"188,-198r2,198r-37,0v-2,-9,0,-22,-3,-29v-8,14,-28,33,-60,33v-34,0,-64,-22,-64,-85r0,-118r42,0v6,60,-22,168,37,168v19,0,41,-15,41,-45r0,-122r42,0xm70,-231v-14,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,21,10,21,23v0,12,-8,22,-21,22xm145,-231v-13,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,22,-22,22","w":214},"\u00fd":{"d":"140,-198r44,0v-44,100,-61,261,-158,288r-11,-36v45,-21,64,-52,57,-69r-68,-183r45,0r48,151xm72,-225r35,-58r42,0r-48,58r-29,0","w":186,"k":{":":-4,".":7,",":7}},"\u00fe":{"d":"68,-274r1,104v42,-64,137,-29,137,69v0,74,-43,105,-83,105v-25,1,-43,-12,-55,-27r0,103r-41,0r0,-354r41,0xm115,-169v-45,0,-47,44,-47,91v0,17,13,49,46,49v31,0,49,-29,49,-71v0,-38,-17,-69,-48,-69","w":220},"\u00ff":{"d":"140,-198r44,0v-43,100,-62,262,-158,288r-11,-36v45,-21,64,-50,57,-69r-68,-183r45,0r48,151xm56,-231v-14,0,-23,-10,-23,-22v0,-13,10,-23,23,-23v12,0,21,10,21,23v0,12,-8,22,-21,22xm131,-231v-13,0,-22,-10,-22,-22v0,-13,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,22,-22,22","w":186,"k":{":":-4,".":7,",":7}},"\u00b4":{"d":"195,-341r50,0r-53,50r-34,0","w":360},"\u00a8":{"d":"142,-293v-14,0,-22,-11,-22,-23v0,-12,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,23,-22,23xm220,-293v-13,0,-21,-11,-21,-23v0,-12,9,-23,22,-23v12,0,22,10,22,23v0,12,-9,23,-23,23","w":360},"\u00b1":{"d":"195,-195r115,0r0,29r-115,0r0,96r-30,0r0,-96r-115,0r0,-29r115,0r0,-96r30,0r0,96xm50,-5r0,-30r261,0r0,30r-261,0","w":360},"\u00d7":{"d":"201,-136r96,96r-21,21r-96,-96r-96,96r-21,-21r96,-96r-96,-96r22,-21r95,96r96,-96r21,21","w":360},"\u00f7":{"d":"180,-255v16,0,28,13,28,28v0,16,-13,28,-28,28v-15,0,-28,-12,-28,-28v0,-15,13,-28,28,-28xm50,-121r0,-30r260,0r0,30r-260,0xm180,-73v16,0,28,13,28,28v0,16,-13,29,-28,29v-15,0,-28,-13,-28,-29v0,-15,13,-28,28,-28","w":360},"\u00b0":{"d":"71,-292v28,0,49,23,49,49v0,27,-22,49,-49,49v-27,0,-49,-22,-49,-49v0,-27,22,-49,49,-49xm71,-273v-17,0,-30,14,-30,30v0,17,14,30,30,30v17,0,30,-13,30,-30v0,-17,-13,-30,-30,-30","w":360},"\u00a7":{"d":"104,8r11,-27v16,19,105,28,105,-15v0,-17,-11,-29,-52,-39v-70,-17,-103,-69,-46,-113v-37,-40,1,-94,66,-94v27,0,49,6,64,14r-10,28v-16,-16,-99,-24,-99,13v0,19,20,29,52,35v69,13,95,74,47,115v8,6,16,20,16,37v1,67,-107,79,-154,46xm143,-173v-26,26,-27,48,28,65v26,9,41,15,49,19v24,-25,17,-54,-26,-65v-18,-5,-39,-13,-51,-19","w":360},"\u00b6":{"d":"194,20r-28,0r0,-127v-40,0,-80,-28,-80,-79v0,-43,24,-90,115,-90v24,0,41,1,51,3r0,293r-28,0r0,-269r-30,0r0,269","w":360},"\u00a0":{"w":80}}});
