/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();;

var Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;

$(document).ready(function() {

  // Attach onclick event to document only and catch clicks on all elements.
  $(document.body).click(function(event) {
    // Catch only the first parent link of a clicked element.
    $(event.target).parents("a:first,area:first").andSelf().filter("a,area").each(function() {

      var ga = Drupal.settings.googleanalytics;
      // Expression to check for absolute internal links.
      var isInternal = new RegExp("^(https?):\/\/" + window.location.host, "i");
      // Expression to check for special links like gotwo.module /go/* links.
      var isInternalSpecial = new RegExp("(\/go\/.*)$", "i");
      // Expression to check for download links.
      var isDownload = new RegExp("\\.(" + ga.trackDownloadExtensions + ")$", "i");

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});
;
(function ($) {

/**
 * Open Mollom privacy policy link in a new window.
 *
 * Required for valid XHTML Strict markup.
 */
Drupal.behaviors.mollomPrivacy = function (context) {
  $('.mollom-privacy a', context).click(function () {
    this.target = '_blank';
  });
};

/**
 * Attach click event handlers for CAPTCHA links.
 */
Drupal.behaviors.mollomCaptcha = function (context) {
  $('a.mollom-switch-captcha', context).click(getMollomCaptcha);
};

/**
 * Fetch a Mollom CAPTCHA and output the image or audio into the form.
 */
function getMollomCaptcha() {
  // Get the current requested CAPTCHA type from the clicked link.
  var newCaptchaType = $(this).hasClass('mollom-audio-captcha') ? 'audio' : 'image';

  var context = $(this).parents('form');

  // Extract the Mollom session id from the form.
  var mollomSessionId = $('input.mollom-session-id', context).val();

  // Retrieve a CAPTCHA:
  $.getJSON(Drupal.settings.basePath + 'mollom/captcha/' + newCaptchaType + '/' + mollomSessionId,
    function (data) {
      if (!(data && data.content)) {
        return;
      }
      // Inject new CAPTCHA.
      $('.mollom-captcha-content', context).parent().html(data.content);
      // Update session id.
      $('input.mollom-session-id', context).val(data.session_id);
      // Add an onclick-event handler for the new link.
      Drupal.attachBehaviors(context);
      // Focus on the CATPCHA input.
      $('input[name="mollom[captcha]"]', context).focus();
    }
  );
  return false;
}

})(jQuery);
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1996. American Greetings Corporation
 */
Cufon.registerFont({"w":202,"face":{"font-family":"CACPinafore","font-weight":400,"font-stretch":"normal","units-per-em":"650","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"520","descent":"-130","cap-height":"18","bbox":"-33.6363 -593.5 542.051 201.492","underline-thickness":"13.0127","underline-position":"-35.8643","unicode-range":"U+0020-U+0178"},"glyphs":{" ":{"w":158},"!":{"d":"46,-91v0,-109,3,-257,-4,-372v-1,-13,7,-20,23,-20v20,0,28,11,27,33r-9,145r0,131v-1,35,22,102,-20,102v-11,0,-17,-7,-17,-19xm62,-50v34,0,36,55,0,55v-14,0,-27,-13,-27,-27v0,-14,13,-28,27,-28","w":126},"\"":{"d":"124,-410v62,9,9,86,-17,97v-10,-3,3,-9,4,-19v4,-9,5,-15,5,-19v-33,-8,-23,-64,8,-59xm43,-410v62,7,9,86,-16,97r-6,-2v4,-5,16,-27,15,-36v-34,-7,-24,-63,7,-59","w":167},"#":{"d":"215,-335v-1,2,-20,73,-20,75v22,-2,51,-2,48,20v-4,28,-29,-1,-52,5v-2,14,-6,35,-9,63v21,-3,53,-4,50,19v-4,28,-27,0,-53,6v-4,32,-11,113,-29,109v-8,1,-16,-10,-16,-17v0,14,3,8,9,-20v6,-25,10,-49,13,-72v-16,0,-41,1,-74,3v-4,40,-16,149,-45,89v0,14,3,7,9,-19v5,-23,9,-46,12,-69v-21,1,-50,1,-47,-15v9,-14,-1,-19,22,-12v13,4,23,3,29,3v2,-14,5,-36,8,-64v-19,2,-51,1,-48,-14v8,-13,0,-22,21,-13v13,2,22,3,28,3v7,-19,1,-93,32,-92v10,0,15,4,15,12v-8,22,-15,39,-21,80v16,0,40,-1,72,-3v7,-30,0,-87,31,-89v10,0,15,4,15,12xm167,-235v-16,0,-40,1,-73,3v-2,14,-6,36,-9,65v33,-1,58,-2,74,-4v2,-14,5,-36,8,-64","w":253},"$":{"d":"128,-273v-21,-24,-82,3,-77,32v10,53,123,35,123,108v0,42,-32,68,-62,87v0,21,3,47,-16,48v-21,2,-4,-43,-19,-46v-31,-5,-54,-22,-54,-58v0,-17,11,-44,28,-44v11,0,17,6,17,17v-1,6,-24,16,-20,28v0,18,12,28,36,28v28,1,70,-32,68,-61v-4,-56,-134,-31,-130,-105v1,-28,16,-56,47,-69v35,-7,-11,-77,31,-83v18,-2,9,25,11,40v0,2,0,12,1,31v15,5,52,16,47,39v0,18,-8,26,-26,24v-5,1,-5,-15,-5,-16","w":193},"%":{"d":"106,-410v28,0,46,31,36,59v43,52,-2,160,-64,160v-41,0,-68,-41,-68,-85v0,-56,43,-134,96,-134xm266,-402v21,2,21,21,4,36v-62,88,-110,230,-162,327v-17,29,-22,47,-41,31v-6,-18,-1,-19,12,-39v39,-60,115,-231,156,-323v9,-19,20,-30,31,-32xm269,-216v29,0,45,28,37,59v42,52,-3,159,-64,159v-41,0,-68,-41,-68,-85v0,-56,41,-133,95,-133xm81,-217v39,-1,66,-63,46,-102v-10,13,-29,17,-31,-1v-2,-10,16,-10,11,-21v-1,-7,11,-12,11,-19v0,-16,-6,-24,-19,-24v-35,-3,-65,60,-64,97v1,35,14,71,46,70xm245,-23v38,0,65,-61,46,-103v-9,13,-28,17,-32,0v-2,-7,16,-11,11,-22v-1,-7,13,-12,12,-19v0,-16,-7,-24,-20,-24v-35,-3,-64,61,-63,98v0,35,15,70,46,70","w":333},"&":{"d":"209,-209v45,0,75,38,75,84v0,71,-65,133,-137,133v-71,0,-133,-52,-131,-121v2,-70,29,-100,77,-136v-91,-47,-27,-204,71,-198v41,2,67,31,68,72v0,32,-28,73,-59,71v-29,6,-33,-36,-15,-41v19,17,49,-2,49,-29v0,-24,-23,-40,-47,-40v-41,0,-84,42,-84,82v0,27,25,55,52,63v-13,0,-5,-3,24,-9v29,-6,48,-9,56,-9v28,0,41,7,41,21v-1,34,-89,35,-120,30v-34,18,-86,67,-86,117v0,58,47,96,108,96v51,0,105,-49,105,-100v0,-33,-22,-58,-55,-57v-40,0,-77,40,-52,82v0,12,-6,18,-16,18v-15,1,-24,-19,-24,-34v-2,-51,49,-95,100,-95","w":300},"'":{"d":"79,-410v62,7,9,86,-16,97r-6,-2v4,-5,16,-27,15,-36v-34,-7,-24,-63,7,-59","w":158},"(":{"d":"17,-168v0,-116,66,-227,146,-252v25,-2,27,39,4,44v-73,17,-123,109,-122,202v0,83,30,149,90,201v13,30,-21,42,-40,18v-50,-62,-78,-131,-78,-213","w":190},")":{"d":"61,-369v-20,-5,-30,-50,1,-51v105,49,136,247,71,365v-19,34,-69,111,-100,111v-21,0,-32,-18,-12,-32v84,-58,156,-188,102,-314v-15,-37,-36,-63,-62,-79","w":190},"*":{"d":"105,-395v23,2,69,-14,56,21v-7,19,-16,1,-58,-5v0,2,13,29,17,49v2,12,-18,9,-23,11v-13,-7,-6,-23,-10,-55v-12,9,-31,26,-44,31v-5,1,-16,-17,-15,-22v0,-2,17,-11,52,-25v-18,-14,-66,-35,-27,-54v3,0,15,14,38,41v5,-28,16,-72,43,-39v-5,15,-25,38,-29,47","w":190},"+":{"d":"136,-145v23,2,72,-9,93,-8v11,0,16,4,16,12v0,34,-58,22,-108,21v2,31,20,98,-14,102v-28,-10,-5,-68,-10,-103v-25,-2,-54,2,-79,3v-17,0,-25,-5,-25,-14v3,-34,72,-16,103,-14r-3,-79v-7,-32,34,-38,35,-12v1,20,-10,70,-8,92","w":253},",":{"d":"63,-58v58,0,19,74,-10,82r-6,-1v7,-8,10,-16,9,-23v-34,-13,-25,-58,7,-58","w":126},"-":{"d":"32,-157v0,-30,25,-10,50,-12r81,-7v34,-5,33,36,11,40v-29,-17,-81,0,-120,0v-15,0,-22,-6,-22,-21","w":222},"\u2010":{"d":"32,-157v0,-30,25,-10,50,-12r81,-7v34,-5,33,36,11,40v-29,-17,-81,0,-120,0v-15,0,-22,-6,-22,-21","w":222},".":{"d":"36,-29v-1,-33,54,-39,55,-4v1,33,-54,41,-55,4","w":126},"\/":{"d":"213,-392v26,2,27,20,8,37v-25,21,-106,199,-142,277v-25,54,-45,82,-56,82v-16,0,-25,-21,-15,-33v56,-64,121,-238,170,-336v9,-18,22,-27,35,-27","w":238},"0":{"d":"241,-304v73,94,3,312,-109,310v-133,-2,-141,-229,-73,-328v33,-49,64,-90,123,-94v50,-3,73,59,59,112xm136,-30v77,1,138,-152,85,-223v-9,7,-26,26,-35,25v-11,0,-16,-5,-16,-16v1,-13,32,-23,20,-43v-3,-9,22,-17,22,-37v0,-37,-14,-57,-43,-57v-71,0,-122,111,-122,201v0,77,23,149,89,150","w":285},"1":{"d":"124,-362v-17,113,-22,261,0,355v0,15,-7,22,-19,22v-15,0,-22,-14,-24,-41v-7,-99,-5,-167,4,-271v-11,11,-17,28,-37,30v-20,2,-26,-25,-9,-30v13,-9,31,-31,46,-70v8,-22,43,-22,39,5","w":167},"2":{"d":"308,-301v-6,95,-43,152,-100,231v49,22,89,45,120,9v9,-3,21,16,21,25v0,22,-25,35,-47,35v-50,0,-66,-21,-116,-44v-21,24,-63,44,-103,46v-37,1,-83,-21,-83,-55v0,-33,39,-52,76,-51v23,0,57,8,104,24v46,-59,89,-123,94,-206v3,-44,-24,-77,-66,-77v-50,0,-100,47,-100,97v0,38,21,46,58,46v9,0,14,5,14,14v1,18,-21,29,-40,29v-37,0,-64,-35,-64,-74v0,-68,74,-149,142,-149v57,0,93,41,90,100xm38,-55v0,15,34,22,52,22v21,0,40,-7,59,-21r0,-5v-22,-12,-44,-18,-67,-18v-16,0,-44,8,-44,22","w":349},"3":{"d":"190,-423v47,-2,88,30,87,76v0,39,-23,78,-69,115v12,5,40,16,49,32v55,97,-50,214,-141,214v-51,0,-93,-29,-93,-78v0,-40,33,-88,72,-86v14,0,21,4,21,15v-1,14,-11,36,-29,24v-18,-1,-34,21,-34,39v0,30,30,46,62,47v60,1,124,-57,124,-119v0,-39,-21,-60,-64,-63v-24,10,-39,16,-47,16v-13,0,-20,-5,-20,-14v1,-27,29,-38,66,-35v22,-21,72,-70,65,-101v1,-30,-25,-46,-57,-46v-40,0,-98,34,-96,72v2,33,47,15,57,3v7,0,11,5,11,13v0,21,-34,37,-54,37v-29,0,-47,-18,-47,-46v0,-64,70,-113,137,-115","w":299},"4":{"d":"266,-395v-18,41,-37,53,-34,129v0,21,-1,60,-2,116v42,-2,103,0,81,41v-18,19,-43,-10,-81,-1v0,44,5,68,19,93v-1,11,-12,26,-28,23v-38,3,-22,-65,-26,-109v0,-4,-4,-6,-10,-5v-53,1,-118,14,-151,36v-10,0,-16,-8,-16,-26v0,-16,6,-18,16,-24v53,-57,92,-129,145,-200v14,-20,23,-39,30,-54v2,-14,8,-49,27,-43v14,-1,31,11,30,24xm200,-302r-115,171v9,-2,46,-8,111,-17v-2,-50,3,-103,4,-154","w":333},"5":{"d":"84,-251v72,-69,194,-50,194,63v0,91,-75,195,-165,195v-46,0,-86,-37,-86,-83v0,-41,36,-82,77,-80v26,-6,28,36,11,38v-31,-9,-59,14,-59,42v0,31,32,48,64,48v66,0,126,-84,126,-150v0,-44,-28,-80,-71,-80v-40,0,-74,24,-102,72v-10,10,-42,4,-38,-15v19,-29,28,-125,35,-165v-11,-27,-7,-44,38,-43v57,0,86,-2,146,-2v11,0,15,7,15,20v-4,49,-99,21,-146,24v-12,0,-19,3,-20,9v-1,3,-7,38,-19,107","w":304},"6":{"d":"195,-230v48,-1,76,42,76,90v0,77,-60,163,-135,157v-83,-6,-116,-75,-116,-159v0,-120,68,-252,177,-260v35,-3,59,25,59,61v0,34,-33,84,-65,82v-15,0,-23,-7,-23,-23v-1,-16,16,-19,29,-11v39,-6,33,-75,-10,-70v-85,8,-133,122,-136,212v-3,69,29,128,90,130v51,1,96,-56,96,-108v0,-45,-17,-69,-52,-69v-46,0,-85,46,-70,92v2,6,-5,9,-17,9v-14,0,-20,-9,-20,-27v0,-53,56,-105,117,-106","w":291},"7":{"d":"240,-403v30,-14,52,16,31,36v-39,24,-104,135,-125,169v-42,71,-63,111,-75,187v-2,14,-10,21,-22,21v-18,0,-27,-9,-27,-29v-1,-82,145,-267,201,-350v-14,1,-24,1,-31,1v-51,0,-91,12,-134,12v-18,0,-27,-8,-27,-24v1,-27,37,-37,57,-19v44,7,111,-1,152,-4","w":302},"8":{"d":"195,-392v-72,-31,-157,67,-89,122v27,-31,90,-110,121,-111v15,-1,32,25,18,36v-33,12,-96,72,-119,97v28,22,94,91,84,134v2,60,-44,130,-102,130v-52,0,-88,-45,-86,-99v2,-57,25,-100,60,-152v-11,-14,-30,-41,-30,-74v0,-62,71,-133,134,-133v39,0,34,46,9,50xm112,-20v40,0,65,-37,65,-78v0,-41,-24,-81,-74,-118v-24,26,-46,78,-46,124v-1,39,19,72,55,72","w":259},"9":{"d":"156,-408v87,5,124,79,124,171v0,118,-59,242,-164,251v-38,3,-58,-25,-58,-63v0,-32,30,-82,62,-80v19,-4,32,35,11,38v-21,-15,-44,9,-44,31v0,20,17,33,37,35v63,8,124,-112,125,-209v1,-66,-33,-139,-93,-139v-52,0,-95,57,-95,111v0,49,18,73,55,73v44,0,81,-50,67,-95v0,-9,7,-13,18,-13v13,0,20,9,20,28v-3,56,-64,112,-115,112v-48,0,-77,-44,-77,-93v0,-80,51,-162,127,-158","w":316},":":{"d":"65,-152v14,0,26,12,26,25v2,32,-55,40,-55,4v0,-15,13,-29,29,-29xm36,-29v-1,-33,54,-39,55,-4v1,33,-54,41,-55,4","w":126},";":{"d":"65,-152v14,0,26,12,26,25v2,32,-55,40,-55,4v0,-15,13,-29,29,-29xm63,-58v63,8,9,85,-17,96r-5,-1v11,-14,16,-27,15,-37v-34,-7,-25,-62,7,-58","w":126},"<":{"d":"219,-262v15,-1,26,20,10,28v-52,28,-110,64,-174,104v39,26,81,49,121,74v19,12,50,22,61,41v-6,34,-45,2,-58,-6v-69,-42,-120,-73,-152,-94v-13,-8,-13,-23,0,-31r163,-101v10,-6,20,-11,29,-15","w":253},"=":{"d":"47,-196r182,0v11,0,16,3,16,11v0,21,-32,24,-61,23r-91,-3v-25,-1,-79,13,-84,-10v0,-14,13,-21,38,-21xm143,-100v16,0,69,-10,86,-9v11,0,16,4,16,12v2,23,-34,25,-61,23r-91,-3v-25,-1,-79,13,-84,-10v5,-42,99,-13,134,-13","w":253},">":{"d":"61,-12v-13,10,-41,21,-44,-3v1,-15,21,-18,33,-26v79,-45,79,-45,149,-89v-39,-26,-81,-50,-121,-75v-19,-12,-49,-22,-61,-40v0,-19,20,-20,35,-10r175,109v13,8,13,23,0,31","w":253},"?":{"d":"182,-476v69,0,113,63,113,134v0,86,-98,184,-122,233v0,14,-7,30,-24,30v-11,0,-17,-7,-17,-21v2,-24,44,-65,61,-86v47,-61,70,-112,70,-153v0,-54,-34,-104,-86,-102v-70,4,-126,64,-126,135v0,38,21,67,55,68v37,-8,60,-25,55,-79v0,-7,12,-19,20,-18v12,0,18,11,18,32v1,41,-45,98,-98,98v-49,0,-81,-48,-81,-99v0,-88,75,-172,162,-172xm152,-54v16,0,29,13,29,29v0,17,-8,26,-25,26v-15,0,-32,-13,-32,-27v0,-13,14,-28,28,-28","w":317},"@":{"d":"209,-397v82,0,149,65,149,148v0,65,-28,138,-84,136v-19,0,-34,-12,-42,-35v-20,32,-42,48,-67,48v-30,0,-52,-37,-52,-68v0,-49,50,-142,98,-142v38,0,46,46,44,84v9,11,-3,86,20,78v34,0,52,-34,52,-101v0,-65,-52,-117,-116,-117v-91,0,-153,80,-153,174v0,132,113,167,227,128v16,-2,17,22,4,26v-136,46,-266,-13,-266,-154v0,-107,81,-205,186,-205xm221,-199v-14,-20,16,-73,-15,-76v-29,-3,-62,65,-62,98v0,28,8,41,25,41v17,0,40,-26,52,-63","w":380},"A":{"d":"307,-245v2,55,-4,149,35,159v14,0,29,-24,43,-70v10,-9,25,-3,23,14v-3,33,-36,97,-71,93v-35,-4,-40,-33,-54,-73v-22,65,-67,135,-137,135v-87,0,-123,-89,-123,-183v0,-68,27,-172,71,-228v65,-84,166,-98,196,16v7,6,23,13,22,35xm148,-23v89,-3,135,-156,124,-268v-12,13,-24,20,-37,20v-27,0,-33,-28,-14,-35v32,3,40,-6,40,-47v0,-53,-20,-80,-61,-80v-85,0,-143,135,-143,249v0,76,27,163,91,161","w":415,"k":{"t":34,"r":22,"j":27,"b":13,"a":13,"T":33}},"B":{"d":"250,-257v54,17,122,52,122,114v0,106,-133,166,-269,160v-34,14,-52,-2,-75,-18v-13,-9,-11,-27,7,-31v4,0,9,-2,16,-5v5,-47,3,-53,8,-140v-13,-4,-42,-20,-40,-35v3,-22,27,-40,46,-47v-1,-36,-3,-82,-16,-115v0,-10,10,-19,20,-19v18,0,20,23,27,37v31,-37,73,-85,141,-85v43,0,83,25,83,66v0,37,-38,89,-70,118xm206,-266v37,-28,79,-73,79,-107v0,-24,-23,-35,-49,-35v-72,0,-138,64,-136,140v53,-3,58,-3,106,2xm174,-238v-30,-14,-115,1,-115,23v0,8,9,12,28,12v33,0,61,-12,87,-35xm90,-19v114,14,238,-26,246,-125v4,-49,-51,-78,-116,-91v-40,25,-72,53,-128,58v-4,42,-2,83,-4,126v0,16,0,26,2,32","w":390,"k":{"y":6,"t":22}},"C":{"d":"205,-291v55,-6,56,-141,-9,-139v-25,0,-49,12,-72,37v-50,54,-74,123,-74,207v0,140,93,193,191,136v23,-13,41,-31,53,-55v5,-9,24,-7,22,5v-22,51,-81,111,-155,111v-94,0,-145,-97,-145,-199v0,-126,62,-274,183,-283v49,-4,75,49,75,100v0,50,-27,120,-72,118v-24,5,-43,-37,-14,-41","w":323,"k":{"t":41,"r":23,"j":27}},"D":{"d":"229,-454v131,0,187,164,122,283v-38,69,-104,136,-181,160v-12,4,-33,6,-64,9v-11,1,-14,23,-30,22v-22,-2,-17,-44,-40,-49v-21,-14,-8,-39,16,-39v10,-69,7,-156,10,-230v2,-42,1,-63,-21,-75v-19,-10,-13,-47,9,-47v20,0,34,22,42,63v22,-46,76,-97,137,-97xm117,-40v107,-1,228,-117,230,-235v1,-72,-46,-144,-122,-144v-89,0,-128,101,-131,198v-1,43,-2,96,0,160v1,18,5,21,23,21","w":402,"k":{"z":40,"y":37,"x":56,"w":19,"u":24,"s":59,"r":37,"q":41,"p":19,"o":21,"n":30,"m":34,"j":32,"h":19,"g":63,"f":24,"e":27,"d":32,"c":31,"a":40}},"E":{"d":"80,-435v16,-3,14,29,28,24v66,-21,116,-31,151,-31v41,0,61,12,61,36v0,13,-12,31,-24,29v-19,-4,-13,-33,-53,-33v-40,0,-86,13,-139,37v-5,2,-7,6,-8,12v-11,82,-17,136,-17,162v0,6,3,10,7,10v-23,0,-8,-7,45,-19v53,-12,87,-18,102,-18v41,0,35,36,9,37v-66,2,-166,15,-166,53v0,47,-11,111,39,108v21,8,156,-57,169,-57v16,0,24,30,8,35v-20,7,-142,57,-170,52v-69,5,-85,-53,-78,-127v2,-11,-8,-25,-9,-31v20,-37,16,-114,23,-182v3,-34,-40,11,-43,-20v-2,-15,38,-30,40,-36v2,-12,4,-46,25,-41","w":351,"k":{"z":30,"y":41,"x":25,"w":36,"v":35,"u":36,"t":77,"s":29,"r":31,"q":30,"p":29,"o":33,"n":35,"m":39,"l":43,"k":35,"j":48,"i":43,"h":44,"g":33,"f":43,"e":29,"d":43,"c":34,"b":43,"a":31}},"F":{"d":"189,-188v-27,11,-126,-6,-112,55v-1,21,-4,59,-4,114v0,37,-36,42,-36,8v0,-41,27,-142,-1,-166v-1,-11,13,-15,13,-31v0,-30,1,-71,4,-126v2,-31,-44,7,-43,-25v-7,-10,46,-34,46,-36v4,-12,22,-25,39,-14v50,-11,127,-24,168,-24v51,0,76,13,76,39v1,17,-25,35,-37,18v-5,-23,-27,-25,-57,-25v-43,2,-131,11,-153,32v-12,41,-14,123,-15,151v0,10,3,14,10,14v29,-6,80,-19,107,-18v28,0,41,7,41,21v1,28,-29,15,-46,13","w":350,"k":{"z":123,"y":119,"x":138,"w":110,"v":103,"u":109,"t":136,"s":148,"r":127,"q":125,"p":106,"o":106,"n":116,"m":116,"l":102,"k":24,"j":131,"i":113,"h":118,"g":161,"f":117,"e":113,"d":124,"c":117,"b":105,"a":126}},"G":{"d":"254,-221v-39,0,-81,32,-121,32v-18,0,-28,-6,-28,-17v-3,-14,104,-32,101,-33v56,-23,97,-33,97,33v0,96,-74,212,-171,212v-83,0,-112,-94,-112,-176v0,-120,54,-268,160,-274v41,-2,73,34,73,76v0,28,-21,84,-49,80v-22,2,-32,-31,-8,-38v41,-12,28,-86,-19,-81v-85,7,-122,141,-124,231v-2,72,25,148,87,143v73,-6,135,-90,135,-163v0,-17,-7,-25,-21,-25","w":328,"k":{"x":22,"s":22,"r":19,"j":25,"g":22}},"H":{"d":"384,-35v19,11,47,-77,54,-77v7,0,10,5,10,15v0,44,-30,105,-63,100v-68,-10,-57,-98,-69,-164v-24,-16,-137,24,-159,30v-11,40,2,88,10,120v-1,21,-35,25,-39,0v-3,-17,-8,-49,-11,-98v2,-11,-11,-10,-19,-8v-35,5,-46,-37,-14,-37v20,0,35,7,36,-22r2,-85v-48,46,-114,8,-113,-54v0,-25,8,-38,24,-38v24,0,9,28,9,44v0,22,12,34,34,34v28,0,43,-26,45,-58v2,-23,-5,-76,22,-76v14,0,20,12,18,37v-5,69,-12,117,-8,202v9,14,17,-4,88,-16v23,-11,75,5,77,-22v5,-85,-11,-194,47,-207v28,4,23,33,0,49v-17,30,-15,119,-13,167v7,12,48,11,46,38v0,13,-6,19,-18,19v-17,1,-15,-9,-25,-17v-5,35,-4,121,29,124","w":461,"k":{"t":20}},"I":{"d":"30,-22v38,9,108,28,105,-27r-6,-114r0,-90v0,-15,1,-44,4,-85v0,-8,-3,-11,-9,-11r-73,12v-44,5,-44,-37,-14,-40v28,9,100,15,106,-20v2,-7,12,-18,20,-18v15,0,16,26,29,25v40,-5,104,-9,103,30v0,11,-6,17,-18,17v-22,-8,-15,-26,-54,-22v-52,5,-51,3,-56,46v-10,76,-5,280,2,285v19,12,100,-13,97,24v-3,36,-45,7,-66,7v-26,0,-111,21,-138,21v-31,0,-47,-7,-47,-22v0,-12,5,-18,15,-18","w":318,"k":{"z":76,"y":45,"x":50,"w":43,"v":53,"u":43,"t":72,"s":41,"r":45,"q":37,"p":31,"o":50,"n":30,"m":32,"l":41,"j":28,"i":47,"h":33,"g":38,"f":33,"e":43,"d":47,"c":55,"b":37,"a":38}},"J":{"d":"275,-416v42,-2,105,2,114,27v-5,38,-61,-8,-84,-2v-22,1,-27,-1,-29,16v29,162,16,385,-129,385v-78,0,-130,-78,-130,-154v0,-23,12,-57,33,-54v41,5,-5,40,-3,60v6,61,51,117,101,112v136,-16,117,-226,91,-351v-53,-7,-133,41,-143,-14v6,-35,31,0,54,-4v9,-1,65,-4,85,-18v6,-15,13,-23,21,-23v8,-1,17,19,19,20","w":396,"k":{"z":89,"y":91,"x":91,"w":83,"v":75,"u":82,"t":70,"s":90,"r":99,"q":83,"p":80,"o":74,"n":88,"m":89,"l":72,"j":102,"i":83,"h":88,"g":94,"f":87,"e":77,"d":83,"c":79,"b":75,"a":83}},"K":{"d":"162,-144v42,52,75,104,131,104v26,0,43,-11,52,-33v8,-19,15,-30,22,-30v7,0,11,5,11,15v0,37,-42,85,-86,84v-60,-3,-110,-79,-150,-114v-8,33,8,76,10,105v0,13,-6,20,-18,20v-32,2,-23,-103,-22,-143v-10,-12,-32,-33,-14,-46v26,-19,14,-36,23,-95v-38,54,-111,18,-111,-45v0,-28,8,-41,25,-41v30,0,5,34,4,48v-1,17,18,32,35,31v30,-2,44,-24,48,-53v0,-2,2,-21,7,-58v2,-12,9,-19,17,-19v11,0,16,11,16,34v0,39,-22,157,-20,196v0,9,4,13,13,13v85,-29,131,-126,155,-228v5,-23,35,-30,36,-2v-28,114,-83,219,-184,257","w":367,"k":{"z":31,"x":-3,"t":28}},"L":{"d":"206,-75v47,33,124,70,149,2v6,-15,29,-11,26,10v-8,61,-80,80,-137,45r-50,-26v-22,27,-57,51,-103,54v-33,2,-75,-15,-73,-45v3,-52,102,-67,159,-50v5,-8,8,-62,2,-72v-81,-5,-160,-30,-169,-99v-5,-35,45,-72,80,-72v31,-6,39,44,10,44v-25,-9,-55,4,-54,29v0,46,78,74,134,67v-7,-125,4,-243,114,-253v44,-4,73,49,69,99v-6,90,-52,163,-150,179v0,42,-3,71,-7,88xm211,-191v73,-9,119,-69,119,-143v1,-34,-14,-67,-45,-64v-77,8,-83,109,-74,207xm58,-36v8,44,103,6,102,-17v-18,-24,-99,-13,-102,17","w":393},"M":{"d":"241,-393v48,4,49,64,59,119v21,-63,52,-126,85,-119v78,17,35,229,58,317v10,38,37,39,48,5v3,-6,6,-41,22,-41v8,0,12,6,12,20v1,37,-27,92,-62,92v-35,0,-54,-38,-56,-114v-1,-35,-4,-98,-9,-190v-2,-30,-10,-45,-24,-45v-52,21,-61,161,-64,214v-3,40,11,121,-24,122v-15,0,-23,-21,-23,-65v0,-71,16,-167,1,-237v-11,-50,-39,-48,-62,-8v-40,69,-39,171,-42,288v-1,24,0,44,-22,45v-17,0,-26,-18,-24,-55v3,-69,27,-229,13,-291v-8,-39,-21,-58,-38,-58v-48,0,-50,131,-17,157v15,11,8,38,-11,38v-29,0,-42,-67,-41,-105v2,-72,18,-120,73,-131v48,6,60,56,71,124v10,-25,46,-85,77,-82","w":539,"k":{"t":24}},"N":{"d":"315,-96v0,17,13,54,28,51v19,5,35,-44,42,-80v8,-9,20,-2,20,15v0,39,-25,115,-61,110v-43,-6,-56,-50,-56,-120v0,-31,-1,-97,-1,-199v0,-80,-48,-77,-73,-21v-37,86,-65,173,-65,295v0,24,4,51,-21,51v-14,0,-21,-13,-21,-42v-1,-55,17,-126,17,-181v0,-58,-9,-157,-44,-154v-38,3,-48,91,-26,129r12,24v0,9,-9,19,-18,19v-24,0,-34,-53,-33,-85v0,-69,19,-116,71,-126v63,11,56,104,65,167v17,-51,57,-181,111,-181v24,0,38,18,46,52v5,22,7,204,7,276","w":407,"k":{"t":29}},"O":{"d":"259,-318v75,93,17,327,-105,327v-94,0,-134,-107,-134,-215v0,-73,21,-139,61,-196v24,-34,51,-52,81,-52v66,0,86,51,97,136xm186,-227v42,-16,34,-62,39,-100v5,-36,-27,-86,-60,-86v-21,0,-41,14,-61,42v-34,48,-51,102,-51,163v0,88,28,177,102,179v78,2,128,-134,97,-224r-5,0v-11,20,-24,55,-50,55v-21,0,-28,-22,-11,-29","w":312},"P":{"d":"211,-475v75,-2,100,126,75,198v-29,83,-97,168,-205,130v1,48,-2,101,13,136v0,16,-9,24,-26,24v-21,0,-31,-18,-29,-55r6,-134v-11,-9,-16,-20,-16,-32v5,-24,15,-17,15,-56v0,-56,-10,-69,-22,-105v0,-14,7,-21,19,-21v24,0,31,20,41,46v25,-55,63,-128,129,-131xm131,-174v76,3,127,-84,127,-167v0,-111,-63,-123,-111,-54v-29,42,-65,126,-65,183v0,34,12,36,49,38","w":315,"k":{"z":70,"y":72,"x":91,"w":45,"v":44,"u":55,"t":25,"s":82,"r":62,"q":76,"p":46,"o":50,"n":64,"m":69,"j":39,"i":30,"h":30,"g":114,"f":39,"e":64,"d":64,"c":67,"a":76}},"Q":{"d":"258,-327v24,19,34,69,34,109v0,81,-14,135,-58,181v-1,17,16,35,33,35v15,0,22,5,22,14v0,15,-9,23,-28,23v-16,0,-33,-15,-54,-46v-161,67,-220,-159,-169,-316v22,-63,58,-131,128,-138v54,-5,93,80,92,138xm220,-71v35,-46,52,-129,31,-199v-7,23,-18,63,-41,63v-17,0,-23,-18,-13,-26v23,-10,36,-52,23,-75v-1,-6,9,-18,9,-23v2,-39,-27,-96,-63,-91v-76,10,-113,124,-113,213v0,95,49,207,141,161v-3,-14,-22,-42,-41,-28v-20,-10,-2,-41,17,-38v31,5,31,10,50,43","w":322},"R":{"d":"293,-324v0,107,-76,203,-162,208v-3,0,-7,-1,-13,-3v26,70,78,139,146,81v10,-9,24,-24,40,-47v6,-8,22,-10,20,3v-6,41,-62,94,-115,91v-78,-5,-113,-80,-136,-147v-7,54,2,88,3,140v0,13,-6,19,-20,19v-16,0,-24,-11,-23,-33v5,-112,23,-267,-15,-345v0,-12,7,-19,21,-19v27,-6,24,49,32,61v27,-87,76,-153,128,-153v58,0,94,80,94,144xm109,-157v86,30,153,-70,153,-154v0,-44,-29,-122,-68,-122v-59,0,-117,161,-118,229v10,15,23,27,33,47","w":322,"k":{"x":44,"u":16,"t":19,"s":41,"j":19}},"S":{"d":"164,-418v-48,0,-85,43,-84,91v0,49,35,90,106,120v43,18,96,46,96,101v0,66,-76,119,-145,119v-65,0,-117,-36,-117,-98v0,-30,17,-72,44,-71v11,0,18,4,18,14v0,7,-43,47,-37,63v-1,37,48,56,90,56v107,0,159,-112,58,-150v-83,-32,-137,-61,-143,-149v-4,-66,54,-138,118,-138v52,0,91,54,91,109v0,36,-21,82,-53,82v-25,0,-34,-33,-9,-36v22,-2,32,-16,32,-45v1,-37,-28,-68,-65,-68","w":306,"k":{"t":27}},"T":{"d":"204,-406v35,0,50,-7,70,-15v14,-1,13,10,21,19v39,8,120,23,139,-12v7,-13,25,-10,24,6v6,47,-102,44,-165,38r-5,3v-9,69,-10,269,-1,355v1,12,-9,28,-21,27v-28,0,-16,-50,-17,-76r0,-305v0,-4,-3,-7,-11,-9v-76,-10,-165,-5,-182,52v2,40,78,38,100,14v4,-18,43,-35,43,-5v0,69,-188,63,-185,-6v2,-47,69,-72,113,-81v18,-3,43,-5,77,-5","w":470,"k":{"z":145,"y":137,"x":140,"w":123,"v":119,"u":139,"t":147,"s":144,"r":123,"q":127,"p":135,"o":135,"n":130,"m":129,"l":82,"k":30,"j":139,"i":103,"h":89,"g":149,"f":117,"e":144,"d":133,"c":148,"b":98,"a":146,"A":28}},"U":{"d":"402,-60v15,7,43,-62,53,-60v7,0,10,4,10,11v2,27,-39,93,-67,88v-37,5,-64,-55,-72,-119v-19,66,-44,138,-111,142v-61,4,-86,-80,-86,-152v0,-63,34,-234,-31,-234v-35,0,-52,56,-52,89v0,20,19,53,20,66v0,9,-8,22,-18,22v-24,0,-34,-49,-34,-78v0,-61,40,-141,94,-141v84,0,53,187,53,281v0,70,19,106,59,106v41,11,89,-95,92,-150v4,-69,-18,-199,30,-210v15,-3,20,21,19,45r-13,170v0,31,23,131,54,124","w":459,"k":{"t":26}},"V":{"d":"18,-304v0,-47,24,-101,66,-98v46,3,57,49,66,102r35,216v11,45,42,50,58,6v26,-71,41,-336,118,-336v29,0,19,32,1,37v-57,62,-57,188,-85,280v-24,78,-37,117,-89,86v-38,-34,-33,-78,-46,-154v-17,-93,-12,-126,-34,-176v-7,-16,-16,-22,-26,-22v-37,0,-44,81,-20,111v9,5,39,43,5,46v-31,3,-49,-62,-49,-98","w":397,"k":{"z":78,"y":77,"x":77,"w":69,"v":63,"u":70,"t":45,"s":78,"r":83,"q":74,"p":65,"o":64,"n":77,"m":77,"l":52,"j":72,"i":63,"h":60,"g":83,"f":73,"e":68,"d":73,"c":71,"b":46,"a":74}},"W":{"d":"485,-377v-31,-16,-42,14,-42,58v0,24,8,106,8,130v0,76,-18,130,-54,164v-13,13,-27,19,-44,19v-45,-10,-36,-9,-74,-54v-16,37,-47,64,-80,64v-119,0,-68,-213,-67,-316v1,-43,-6,-76,-38,-76v-56,0,-62,140,-14,163v20,10,7,39,-13,39v-36,0,-51,-52,-51,-93v0,-67,28,-156,83,-154v118,5,49,206,49,297v0,55,11,89,55,93v28,2,74,-44,54,-56r-16,-109v-1,-53,19,-141,62,-141v26,0,37,46,37,80v0,52,-27,126,-43,172v3,22,36,49,61,49v81,0,64,-198,56,-288v-4,-43,14,-89,52,-89v18,0,32,13,32,31v0,11,-5,17,-13,17xm294,-299v-17,-1,-23,56,-23,81v0,28,4,56,11,80v13,-20,25,-86,26,-119v0,-28,-5,-42,-14,-42","w":511,"k":{"z":34,"y":39,"x":35,"w":31,"v":24,"u":31,"t":24,"s":33,"r":43,"q":29,"p":31,"o":23,"n":36,"m":39,"l":23,"j":52,"i":32,"h":37,"g":38,"f":35,"e":24,"d":30,"c":26,"b":26,"a":30}},"X":{"d":"371,-124v1,-3,2,-19,10,-19v7,0,11,6,11,17v-2,35,-48,109,-79,101v-42,5,-83,-99,-102,-147v-7,15,-22,44,-44,86v-32,59,-63,89,-93,89v-37,0,-58,-41,-57,-83v0,-36,10,-54,31,-54v34,0,-2,47,-2,66v0,16,9,33,25,32v17,0,38,-16,61,-49v28,-39,49,-82,66,-129r-41,-121v-16,-41,-32,-61,-49,-61v-20,0,-29,20,-29,62v0,39,19,65,31,92v0,12,-6,19,-17,19v-28,1,-42,-71,-42,-107v0,-100,67,-148,110,-73v19,33,34,87,55,140r3,0v16,-32,81,-193,140,-193v11,0,27,10,26,21v0,21,-34,11,-43,22v-50,36,-81,133,-110,197v17,41,35,145,90,145v18,0,35,-17,49,-53","w":388,"k":{"t":30,"j":22}},"Y":{"d":"342,-201v4,122,3,274,-99,285v-38,4,-59,-37,-59,-78v0,-33,24,-81,55,-79v14,0,21,6,21,19v0,16,-9,19,-24,17v-13,-2,-25,25,-24,40v0,25,10,37,31,37v49,0,74,-55,74,-165r0,-92v-26,54,-77,107,-115,102v-86,6,-67,-147,-63,-233v1,-44,-9,-67,-31,-67v-61,0,-66,119,-22,143v16,9,3,34,-12,35v-32,-5,-44,-61,-44,-105v0,-56,25,-112,74,-112v102,0,35,176,62,265v18,59,85,39,113,-12v25,-45,40,-100,40,-170v0,-19,12,-42,29,-42v10,0,15,7,15,18v0,63,-23,135,-21,194","w":385},"Z":{"d":"222,-434v51,0,86,26,85,76v-2,76,-66,138,-120,177v42,12,75,53,74,105v-2,89,-61,175,-143,181v-42,3,-67,-29,-67,-70v0,-43,42,-110,89,-117v22,-3,27,30,13,36v-38,1,-73,30,-73,69v0,26,14,39,40,39v60,0,110,-73,110,-141v0,-47,-28,-80,-74,-80v-14,0,-51,16,-65,16v-13,0,-20,-5,-20,-16v1,-39,69,-21,102,-44v42,-30,99,-84,99,-142v0,-39,-23,-58,-70,-58v-48,0,-147,56,-147,108v0,37,49,41,76,21v23,-17,28,-25,34,-63v2,-12,8,-18,19,-18v11,0,16,7,16,21v0,50,-70,107,-120,107v-31,0,-64,-22,-61,-53v9,-88,111,-154,203,-154","w":317,"k":{"y":34,"w":23,"v":21,"u":23,"q":24,"n":23,"m":27,"g":25,"f":24,"d":20,"c":20}},"[":{"d":"89,10v-6,35,46,20,68,22v10,0,15,3,15,10v-3,34,-64,14,-103,19v-30,-5,-11,-64,-11,-92v0,-109,4,-248,-5,-362v-3,-45,53,-18,96,-24v27,-4,31,28,8,28v-20,0,-68,-15,-68,22r0,377","w":190},"\\":{"d":"231,-29v8,12,0,37,-15,33v-32,-10,-80,-135,-102,-180v-38,-77,-59,-131,-97,-179v-9,-10,-13,-17,-13,-20v0,-12,7,-17,21,-17v33,1,44,54,58,79v41,77,85,198,135,271v3,4,7,8,13,13","w":238},"]":{"d":"139,-393r0,429v0,17,-5,25,-16,25r-80,0v-26,4,-30,-29,-8,-29v21,0,70,13,69,-22r-3,-167r3,-210v5,-35,-46,-22,-69,-22v-10,0,-14,-3,-14,-10v3,-32,61,-19,102,-19v11,0,16,8,16,25","w":190},"^":{"d":"245,-112r-30,0r-72,-131r-70,131r-30,0r88,-166r26,0","w":288},"_":{"d":"241,43v0,9,-4,13,-13,13r-224,0v-9,0,-13,-4,-13,-13v0,-9,4,-13,13,-13r224,0v9,0,13,4,13,13","w":232},"`":{"d":"121,-269v20,5,16,26,-1,29v-25,-21,-63,-30,-96,-41v-21,-7,-20,-45,6,-43v25,10,67,48,91,55","w":142},"a":{"d":"216,-49v25,3,36,-33,56,-39v6,0,9,4,9,11v2,26,-41,65,-67,65v-26,0,-42,-18,-50,-53v-18,34,-55,69,-86,69v-35,0,-61,-44,-61,-81v0,-60,63,-179,119,-174v45,-6,51,53,50,99v12,26,-4,109,30,103xm152,-114v-15,-26,20,-100,-22,-102v-41,-2,-83,83,-83,128v0,27,12,56,37,55v32,-2,60,-52,68,-81","w":268,"k":{"z":21,"y":13,"x":29,"t":70,"s":29,"r":26,"l":43,"j":49,"g":18,"b":8}},"b":{"d":"151,-215v50,-1,92,36,91,85v-1,77,-71,141,-159,127r-29,-1v-20,-7,-36,-34,-22,-58v-11,-108,-6,-181,13,-267v5,-9,35,-9,31,8v0,1,-1,7,-3,17v-15,81,-18,93,-17,155v22,-44,55,-66,95,-66xm112,-32v53,3,100,-40,100,-93v0,-33,-25,-58,-58,-58v-55,0,-89,62,-91,120v-1,32,14,29,49,31","w":254,"k":{"y":16,"x":16,"t":39}},"c":{"d":"46,-110v0,63,68,103,118,63v19,-10,25,-34,43,-44v7,0,10,4,10,11v-9,38,-59,77,-99,77v-55,0,-98,-47,-98,-102v0,-52,45,-137,94,-137v29,0,43,20,43,61v0,24,-6,36,-21,36v-35,0,-2,-63,-31,-64v-33,-1,-59,64,-59,99","k":{"z":23,"x":31,"t":73,"s":29,"r":29}},"d":{"d":"217,-47v12,6,51,-35,55,-36v7,0,11,4,11,12v-6,23,-35,61,-67,61v-21,0,-45,-26,-51,-44v-16,27,-47,56,-82,56v-44,0,-66,-48,-66,-92v0,-73,48,-159,126,-152v1,-37,8,-123,50,-113v28,0,41,29,41,85v0,66,-26,137,-45,190v-1,14,15,33,28,33xm179,-128v15,-30,29,-92,28,-130v0,-19,-4,-65,-17,-65v-14,6,-28,80,-14,103v14,22,-2,10,-3,47v0,15,2,30,6,45xm85,-30v24,0,63,-35,70,-61v0,14,-2,3,-5,-31v-3,-34,-5,-56,-5,-64v0,-16,-2,-21,-18,-22v-43,-1,-84,72,-84,118v0,40,14,60,42,60","w":267,"k":{"z":18,"x":26,"t":26,"s":26,"r":23,"j":39}},"e":{"d":"91,-2v-128,-8,-64,-241,15,-241v25,0,38,13,38,40v1,51,-49,126,-84,143v-3,15,18,24,33,24v32,0,57,-14,73,-42v4,-8,21,-9,20,4v-6,38,-52,75,-95,72xm49,-83v30,-11,62,-62,64,-105v0,-12,-4,-18,-12,-18v-37,8,-68,78,-52,123","w":174,"k":{"z":21,"x":29,"t":31,"s":29,"r":21,"j":44}},"f":{"d":"210,-6v0,63,-39,159,-96,157v-42,-1,-78,-54,-84,-95v-19,-119,7,-295,49,-374v20,-38,61,-29,61,27v0,56,-27,132,-61,169v60,-22,74,3,119,26v-1,31,12,78,12,90xm63,-136v20,-31,53,-104,53,-143v0,-14,-4,-22,-11,-22v-14,0,-28,47,-42,140v1,2,-4,19,0,25xm91,-21v29,-2,71,-26,75,-56v-13,-47,-105,-23,-105,26v0,15,15,31,30,30xm112,116v56,-3,90,-100,67,-165v-41,35,-42,44,-89,50v-10,1,-33,-8,-35,-14v-2,74,15,131,57,129","w":216,"k":{"y":10,"x":13,"t":31,"s":8,"r":65,"j":-25,"c":13,"a":8}},"g":{"d":"16,-65v0,-66,88,-154,154,-154v55,0,55,53,37,94v-6,42,-25,106,-5,158v-13,37,-2,118,-42,146v-43,50,-111,10,-111,-55v0,-60,55,-134,115,-129v4,-12,3,-36,3,-54v-41,30,-57,45,-101,48v-31,2,-50,-23,-50,-54xm178,-132v6,-19,16,-62,-18,-58v-42,-5,-116,76,-116,119v0,18,15,30,33,30v43,0,101,-49,101,-91xm113,164v38,-2,55,-52,55,-101v0,-32,-1,-36,-24,-39v-33,-5,-67,65,-67,98v0,22,15,43,36,42","w":227,"k":{"x":10,"t":21}},"h":{"d":"171,-81v0,63,64,15,77,2v5,0,8,3,8,10v0,24,-33,56,-65,55v-57,-2,-45,-89,-41,-142v4,-54,-43,-53,-64,-17v-24,41,-28,93,-34,162v-1,8,-6,13,-16,13v-29,0,-6,-74,-5,-95v2,-39,7,-81,11,-124v6,-58,14,-97,18,-119v3,-16,34,-20,34,-2v-15,51,-19,79,-30,152v16,-22,34,-43,64,-44v33,0,50,21,50,62v0,42,-7,72,-7,87","w":228,"k":{"z":5,"x":8,"t":31,"s":10,"r":5,"p":8,"j":29,"e":10}},"i":{"d":"43,-268v0,-17,12,-30,29,-30v17,0,26,8,26,26v0,21,-10,32,-29,32v-17,0,-26,-10,-26,-28xm81,0v-69,0,-60,-132,-47,-189v5,-19,35,-15,33,7v0,-15,-2,-6,-6,27v-4,33,-6,55,-6,66v-3,72,50,66,72,21v4,-8,21,-7,19,5v-7,32,-38,63,-65,63","w":121,"k":{"z":5,"x":10,"t":21,"s":10,"r":5,"p":10,"m":-11,"l":14,"k":-8,"j":26,"i":-14,"e":8}},"j":{"d":"114,-292v0,20,-10,30,-29,30v-18,0,-27,-10,-27,-27v0,-20,11,-29,31,-29v17,0,25,9,25,26xm80,-221v39,8,2,88,4,116v0,15,3,49,10,101v14,26,16,21,9,47v15,65,-8,154,-70,154v-76,0,-81,-106,-45,-159v19,-27,41,-44,71,-48v13,-11,3,-29,1,-58v-2,9,-24,38,-30,13v10,-31,22,-57,22,-101v0,-43,10,-65,28,-65xm32,161v52,0,56,-98,38,-137v-45,-25,-75,46,-77,85v0,27,14,52,39,52","w":140,"k":{"x":34,"t":34,"e":21,"c":18,"a":15}},"k":{"d":"86,-76v1,14,57,52,83,52v25,0,50,-16,74,-46v7,-9,19,-8,20,4v0,24,-53,75,-91,75v-40,0,-79,-26,-119,-77v-3,17,1,70,-20,70v-11,0,-17,-7,-16,-21r12,-125v8,-69,4,-140,-3,-207v-4,-35,41,-42,41,-13v0,17,-8,69,-7,87v0,9,-1,35,-2,77v34,-54,69,-81,105,-81v39,0,69,28,69,68v0,78,-98,124,-146,137xm72,-101v52,-7,128,-50,129,-107v0,-24,-19,-38,-42,-39v-52,-3,-101,84,-99,140v2,4,6,6,12,6","w":246,"k":{"z":13,"y":18,"x":18,"t":18,"s":21,"r":18,"p":26,"j":34,"a":6}},"l":{"d":"92,-35v34,0,48,-32,70,-45v6,0,8,3,8,10v-4,29,-48,71,-77,68v-69,-8,-72,-57,-76,-151v-4,-77,26,-220,76,-209v45,-8,45,84,36,125v-14,64,-26,110,-64,159v-17,23,-5,43,27,43xm45,-89v39,-41,64,-127,64,-196v0,-27,-5,-41,-17,-41v-56,25,-59,160,-47,237","w":151,"k":{"z":10,"x":18,"t":10,"s":16,"r":13,"p":21,"j":34}},"m":{"d":"273,-36v17,6,47,-35,55,-37v6,0,9,3,9,10v-18,70,-116,95,-115,-4v0,-32,10,-110,-14,-111v-28,-2,-58,116,-58,159v0,14,-6,22,-18,22v-10,0,-15,-8,-15,-26v0,-20,9,-91,9,-112v0,-27,-5,-40,-16,-40v-35,22,-57,98,-57,161v0,8,-9,23,-17,22v-29,-4,-10,-61,-10,-87v0,-43,6,-76,7,-98v1,-16,9,-25,24,-25v19,1,1,30,4,43v15,-19,32,-53,61,-53v27,5,25,15,36,50v20,-30,31,-51,59,-54v48,-5,31,94,32,143v0,25,8,37,24,37","w":316,"k":{"z":10,"x":13,"t":60,"s":13,"r":13,"p":21,"n":4,"j":29}},"n":{"d":"180,-43v16,6,48,-37,55,-38v6,0,9,3,9,10v-4,29,-35,65,-67,65v-56,0,-44,-83,-44,-141v0,-23,-4,-34,-14,-34v-35,17,-62,103,-63,164v1,7,-11,20,-19,20v-10,0,-16,-9,-14,-26r20,-164v-2,-17,33,-35,35,-8v-1,5,-2,10,-2,18v22,-27,40,-41,53,-41v44,-2,28,90,28,134v0,28,8,41,23,41","w":220,"k":{"z":10,"x":16,"t":65,"s":16,"r":10,"p":18,"l":23,"j":31}},"o":{"d":"177,-160v-2,9,11,12,11,22v0,8,-11,22,-11,30v2,45,-39,108,-81,108v-47,0,-82,-65,-81,-116v1,-56,31,-150,88,-123v46,-10,59,17,74,79xm152,-140v0,-23,-16,-67,-37,-67v-10,0,-16,8,-16,25v0,36,14,54,40,54v9,0,13,-4,13,-12xm95,-34v29,0,58,-35,54,-69v-57,9,-85,-47,-68,-104v-44,23,-54,170,14,173","k":{"y":8,"x":23,"t":29,"j":18}},"p":{"d":"154,-243v50,-1,82,43,82,94v0,85,-82,143,-174,122v-2,28,1,73,2,103v0,21,-7,30,-20,30v-12,0,-17,-9,-17,-27v0,-3,4,-40,4,-111v0,-23,-17,-43,4,-64v3,-40,-11,-131,19,-131v18,0,14,19,13,38v20,-32,53,-53,87,-54xm105,-51v59,0,104,-39,104,-97v0,-35,-25,-67,-58,-66v-60,0,-90,74,-88,145v6,11,20,18,42,18","w":243,"k":{"t":18,"s":13,"j":16}},"q":{"d":"169,-43v28,-7,34,4,52,8v8,4,41,-41,46,-39v6,0,8,3,8,10v0,9,-14,25,-42,51v6,26,8,44,8,53v1,47,-23,129,-63,127v-62,-3,-49,-126,-37,-199v-15,16,-34,39,-62,39v-36,0,-62,-38,-62,-84v0,-58,55,-167,109,-167v43,0,46,54,51,94v27,28,-9,75,-8,107xm121,-212v-44,6,-76,73,-78,124v-3,57,37,78,66,47v22,-24,48,-58,32,-91v4,-28,9,-84,-20,-80xm177,134v34,-6,49,-102,29,-135v-16,2,-29,2,-43,0v-13,23,-16,140,14,135","w":241,"k":{"j":13}},"r":{"d":"140,-31v15,5,48,-30,54,-32v6,0,9,3,9,9v-9,27,-44,63,-68,58v-61,7,-43,-119,-35,-164r-30,1v-14,37,-25,116,-59,123v-6,0,-9,-4,-9,-11v17,-38,52,-99,37,-157v-6,-24,32,-57,32,-16v0,44,34,27,52,17v8,0,13,5,13,14v-12,30,-21,84,-20,119v0,26,8,39,24,39","w":175,"k":{"x":3,"s":3,"p":10,"j":18}},"s":{"d":"73,0v-30,0,-52,-23,-40,-56v-9,4,-19,5,-19,-9v24,-47,53,-90,73,-141v2,-19,4,-48,22,-46v39,6,-8,45,15,71v13,29,42,70,42,103v0,46,-46,78,-93,78xm85,-29v75,0,45,-96,15,-141r-50,95v19,-7,33,-11,43,-11v28,-2,27,30,5,32v-4,0,-8,-2,-11,-7v-16,0,-24,5,-24,16v0,11,7,16,22,16","w":179,"k":{"y":8}},"t":{"d":"193,-248v0,30,-39,-2,-48,15v-14,75,-15,77,-49,166v-3,39,58,42,79,16r18,-17v6,0,9,3,9,10v0,30,-42,60,-75,59v-46,0,-69,-55,-69,-163r2,-62v-31,-2,-47,-11,-47,-26v1,-29,28,-2,44,-3v4,0,7,-3,7,-8v0,-29,28,-97,56,-91v30,-4,32,47,28,85v27,3,40,2,45,19xm125,-262v3,-16,4,-54,-12,-54v-10,0,-17,20,-22,59v9,-1,21,-2,34,-5xm119,-233v-11,1,-27,0,-29,6v-7,32,-9,82,-4,117v20,-34,25,-80,33,-123","w":175,"k":{"x":3,"s":8,"p":13,"j":23}},"u":{"d":"196,-49v14,3,49,-35,54,-37v7,0,10,3,10,9v-8,34,-39,66,-64,63v-25,2,-42,-24,-52,-52v-26,46,-27,59,-64,69v-36,0,-54,-33,-54,-100v0,-15,4,-48,10,-100v1,-11,7,-17,18,-17v10,0,14,6,14,18v0,41,-32,159,15,162v25,2,56,-68,58,-95v2,-47,-9,-84,23,-91v9,0,14,4,14,12v1,44,-29,148,18,159","w":234,"k":{"z":10,"x":18,"s":16,"r":16,"p":18,"j":31,"e":21}},"v":{"d":"127,-229v13,1,22,20,35,8v30,10,-13,41,-1,76v-2,74,-17,132,-73,144v-76,-13,-86,-128,-64,-212v5,-14,37,-11,33,8v-12,50,-21,163,30,169v38,-10,42,-55,47,-107v4,-40,-24,-43,-25,-62v0,-11,7,-25,18,-24","w":187,"k":{"x":21,"t":29,"s":10,"g":13}},"w":{"d":"204,-212v11,2,20,22,35,9v22,4,11,28,-2,42v10,62,-3,139,-56,139v-17,0,-33,-12,-49,-36v-14,27,-32,58,-63,58v-81,0,-43,-141,-40,-217v1,-15,8,-23,20,-23v11,0,17,7,17,22v0,23,-44,182,5,182v19,0,57,-51,45,-98v-6,-23,-3,-62,19,-60v28,2,17,55,15,84v-1,22,13,56,32,56v27,0,35,-76,25,-105v-24,-7,-28,-51,-3,-53","w":267,"k":{"t":34,"j":13,"g":13,"f":10}},"x":{"d":"201,-31v14,5,50,-39,58,-39v6,0,9,3,9,9v0,19,-45,68,-72,63v-40,-8,-37,-18,-59,-69v-15,26,-54,91,-71,87v-8,1,-20,-10,-20,-17v0,-11,7,-17,21,-18v26,-19,40,-52,63,-91v0,-19,-4,-42,-14,-69v-14,-18,-21,0,-34,26v-16,30,-32,76,-52,98v-25,5,-22,-8,-7,-32v28,-44,30,-130,89,-135v28,-2,36,44,42,72v9,-13,42,-70,70,-65v19,-1,20,28,3,33v-36,2,-53,56,-66,77v7,23,11,71,40,70","w":237,"k":{"t":26,"p":10,"j":23,"f":-14}},"y":{"d":"192,-34v32,-7,55,-35,77,-55v6,0,8,4,8,11v-15,37,-36,47,-81,70v22,80,23,198,-58,208v-35,4,-55,-35,-54,-73v3,-67,41,-102,87,-144r-11,-53v-24,30,-46,66,-79,66v-67,0,-49,-109,-42,-173v-7,-28,34,-35,35,-9v0,-15,-3,-5,-7,32v-4,37,-6,60,-6,69v0,33,8,50,23,50v20,7,73,-62,72,-78v-1,-38,-2,-85,24,-92v37,6,1,75,1,98v0,18,3,42,11,73xm139,165v55,0,54,-117,36,-158v-35,32,-62,61,-62,115v0,28,9,43,26,43","w":250,"k":{"x":16,"t":57,"s":13,"r":13,"p":13,"j":34,"i":8}},"z":{"d":"175,-170v-1,43,-9,58,-32,85v23,19,35,47,58,66v9,8,14,29,-5,30v16,67,-4,163,-66,163v-47,0,-71,-47,-71,-99v0,-60,35,-104,90,-110v-6,-14,-16,-24,-28,-30v-18,4,-50,9,-50,-13v0,-16,22,-25,42,-21v20,4,33,-36,33,-58v0,-32,-12,-48,-36,-48v-55,0,-58,145,-90,152v-6,0,-9,-4,-9,-10v23,-56,24,-171,100,-171v35,0,65,29,64,64xm128,139v49,0,50,-115,30,-144v-42,-1,-69,37,-69,81v0,31,12,63,39,63","k":{"t":26}},"{":{"d":"74,-229v-17,-94,-23,-207,81,-211v23,-1,27,21,7,24v-41,5,-73,43,-68,93v8,88,27,99,-9,141v36,40,17,53,9,140v-5,49,28,87,68,92v9,1,13,6,13,13v0,8,-7,12,-20,12v-102,-6,-102,-110,-81,-211v6,-31,-72,-37,-34,-60v13,-8,37,-15,34,-33","w":190},"|":{"d":"95,-1r-31,0r0,-451r31,0r0,451","w":158},"}":{"d":"30,-440v105,5,99,116,81,211v-5,26,39,24,44,46v2,10,-48,26,-44,47v6,36,11,72,12,113v2,50,-39,95,-93,98v-23,1,-25,-22,-7,-25v41,-5,74,-42,68,-92v-6,-53,-11,-85,-11,-95v0,-20,6,-35,20,-46v-35,-41,-17,-53,-9,-140v4,-49,-28,-88,-68,-93v-8,-1,-12,-5,-12,-12v0,-8,6,-12,19,-12","w":190},"~":{"d":"36,-177v37,-57,59,-64,111,-27v32,23,61,36,85,-14r16,24v-41,57,-58,59,-117,19v-30,-20,-57,-25,-80,22","w":288},"\u0152":{"d":"293,-435v16,-2,14,29,28,24v66,-21,116,-31,151,-31v41,0,61,12,61,36v1,12,-13,31,-24,29v-19,-3,-13,-33,-53,-33v-40,0,-86,13,-139,37v-4,2,-7,6,-8,12v-11,81,-16,133,-16,157v0,7,-1,15,6,15v-23,0,-8,-7,45,-19v53,-12,88,-18,103,-18v41,0,33,37,8,37v-57,0,-159,25,-165,41v-3,49,-14,123,38,120v21,8,156,-58,169,-57v19,-3,22,30,8,35v-20,6,-141,52,-170,52v-47,0,-71,-21,-78,-64v-26,47,-60,71,-103,71v-95,0,-135,-104,-134,-215v1,-99,48,-237,142,-248v65,8,87,53,97,136v0,1,3,6,9,14v12,-41,-19,-126,25,-131xm201,-235v28,-22,15,-60,24,-92v1,-37,-27,-86,-60,-86v-21,0,-41,14,-61,42v-34,48,-51,102,-51,163v0,94,36,182,102,179v54,-3,90,-62,100,-109v-16,-20,6,-38,6,-66v0,-16,-2,-33,-9,-49r-5,0v-11,20,-24,58,-50,55v-31,-3,-23,-25,4,-37","w":546},"\u0153":{"d":"17,-116v0,-60,29,-153,93,-124v36,-6,47,14,63,59v23,-42,47,-62,70,-62v25,0,38,13,38,40v0,52,-48,125,-84,143v11,49,97,10,105,-18v2,-9,21,-9,20,4v-9,67,-131,108,-160,26v-17,32,-38,48,-64,48v-50,0,-81,-61,-81,-116xm187,-86v32,-10,63,-67,63,-102v0,-11,-5,-17,-13,-17v-31,0,-55,61,-55,101v0,12,2,18,5,18xm101,-182v0,25,15,55,40,53v8,0,12,-5,12,-13v1,-25,-15,-65,-37,-65v-10,0,-15,8,-15,25xm96,-35v25,1,55,-35,55,-61v0,-10,-9,-7,-15,-6v-46,-1,-67,-48,-57,-101v-41,26,-44,166,17,168","w":335},"\u0178":{"d":"342,-201v4,122,3,274,-99,285v-38,4,-59,-37,-59,-78v0,-33,24,-81,55,-79v14,0,21,6,21,19v0,16,-9,19,-24,17v-13,-2,-25,25,-24,40v0,25,10,37,31,37v49,0,74,-55,74,-165r0,-92v-26,54,-77,107,-115,102v-86,6,-67,-147,-63,-233v1,-44,-9,-67,-31,-67v-61,0,-66,119,-22,143v16,9,3,34,-12,35v-32,-5,-44,-61,-44,-105v0,-56,25,-112,74,-112v102,0,35,176,62,265v18,59,85,39,113,-12v25,-45,40,-100,40,-170v0,-19,12,-42,29,-42v10,0,15,7,15,18v0,63,-23,135,-21,194xm267,-518v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28xm172,-518v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28","w":385},"\u00a0":{"w":158},"\u00a1":{"d":"65,-353v14,0,27,13,27,27v0,15,-12,28,-27,28v-15,0,-28,-14,-28,-28v0,-14,14,-27,28,-27xm81,-257v0,103,-4,247,4,355v1,13,-7,20,-23,20v-20,0,-28,-10,-27,-32r9,-146r0,-114v1,-35,-22,-102,20,-102v11,0,17,7,17,19","w":126},"\u00a2":{"d":"113,-105v40,0,56,-38,82,-53v22,6,11,26,-2,42v-22,29,-50,47,-80,43v-3,27,9,70,-17,75v-27,-8,-4,-50,-6,-79v-107,-22,-66,-191,5,-215v1,-8,1,-15,1,-22v0,-17,-17,-73,14,-73v18,0,12,26,12,43r0,50v35,-3,47,89,9,93v-20,2,-22,-29,-19,-50v-1,-5,-4,-7,-9,-7v-58,16,-71,153,10,153","w":231},"\u00a3":{"d":"71,-49v47,8,142,50,181,3v8,-9,28,-10,26,6v-4,30,-61,50,-92,52v-40,3,-119,-51,-158,-23v-22,6,-30,-23,-10,-29r11,-3v32,-29,52,-77,42,-136v-19,0,-50,3,-50,-14v0,-22,25,-16,45,-17v-22,-86,6,-163,78,-163v25,0,58,8,69,32v1,8,-9,21,-17,18v-19,-6,-36,-23,-54,-22v-48,4,-59,75,-40,137r83,2v9,0,13,5,13,13v2,20,-22,18,-38,18v-11,0,-28,0,-53,-2v5,60,-8,86,-36,128","w":288},"\u00a8":{"d":"114,-268v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28xm19,-268v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28","w":186},"\u00a9":{"d":"34,-404v0,-96,69,-164,164,-164v96,0,164,69,164,164v0,95,-70,164,-164,164v-94,0,-164,-70,-164,-164xm335,-404v0,-80,-58,-137,-137,-137v-80,0,-137,59,-137,137v0,79,58,137,137,137v79,0,137,-57,137,-137xm142,-403v3,38,18,68,55,68v29,0,47,-15,54,-43r27,8v-8,36,-38,59,-79,60v-54,0,-87,-39,-87,-94v0,-57,31,-92,88,-92v40,0,65,17,75,51r-26,6v-22,-59,-113,-33,-107,36","w":384},"\u00ab":{"d":"186,-104v24,18,71,44,108,43v8,0,12,4,12,11v-5,25,-24,24,-54,13v-29,-10,-71,-32,-93,-51v-23,-31,31,-55,50,-71v19,-15,60,-48,78,-54v16,1,13,32,-1,37v-32,25,-73,42,-100,72xm45,-104v26,18,70,44,108,43v8,0,12,4,12,11v-5,25,-24,24,-54,13v-29,-10,-71,-32,-93,-51v-23,-31,31,-55,50,-71v19,-15,60,-48,78,-54v16,1,13,32,-1,37v-8,9,-77,43,-100,72","w":317},"\u00ae":{"d":"28,-407v0,-94,71,-158,164,-158v95,0,164,65,164,158v0,94,-72,158,-164,158v-93,0,-164,-66,-164,-158xm329,-407v0,-77,-61,-132,-137,-132v-79,0,-137,55,-137,132v0,77,60,132,137,132v77,0,137,-55,137,-132xm256,-444v0,28,-23,46,-50,48v29,12,43,50,63,76r-35,0v-25,-32,-29,-80,-85,-72r0,72r-29,0r0,-170v59,1,136,-9,136,46xm226,-441v0,-31,-43,-26,-77,-26r0,52v33,1,77,2,77,-26","w":378},"\u00b4":{"d":"43,-254v-8,9,-33,23,-34,-1v0,-6,4,-11,13,-14v19,-6,65,-43,91,-55v27,-2,28,35,6,43","w":142},"\u00bb":{"d":"153,-191v3,-26,23,-25,53,-14v29,10,70,33,93,50v25,32,-30,56,-50,72v-19,15,-60,48,-78,54v-16,-1,-12,-32,2,-37r99,-69r1,-3v-24,-19,-72,-44,-109,-43v-8,0,-11,-3,-11,-10xm12,-191v3,-26,23,-25,53,-14v29,10,70,33,93,50v25,31,-32,59,-49,72v-19,15,-60,48,-79,54v-16,-1,-12,-32,2,-37r99,-69r1,-3v-25,-18,-72,-44,-109,-43v-8,0,-11,-3,-11,-10","w":317},"\u00bf":{"d":"160,-357v16,0,31,12,31,28v0,14,-15,28,-28,28v-15,0,-28,-14,-28,-30v0,-17,8,-26,25,-26xm215,-150v50,0,81,48,81,99v0,87,-75,171,-162,171v-101,0,-143,-132,-90,-220v14,-42,106,-126,103,-167v9,-15,40,-13,37,12v-2,23,-45,64,-61,85v-47,61,-71,112,-71,153v0,53,34,105,86,102v70,-4,126,-60,127,-134v1,-38,-20,-70,-56,-68v-37,2,-60,32,-54,78v-1,9,-8,18,-20,18v-12,0,-19,-10,-19,-31v0,-40,45,-98,99,-98","w":317},"\u00c0":{"d":"307,-245v2,55,-4,149,35,159v14,0,29,-24,43,-70v10,-9,25,-3,23,14v-3,33,-36,97,-71,93v-35,-4,-40,-33,-54,-73v-22,65,-67,135,-137,135v-87,0,-123,-89,-123,-183v0,-68,27,-172,71,-228v65,-84,166,-98,196,16v7,6,23,13,22,35xm148,-23v89,-3,135,-156,124,-268v-12,13,-24,20,-37,20v-27,0,-33,-28,-14,-35v32,3,40,-6,40,-47v0,-53,-20,-80,-61,-80v-85,0,-143,135,-143,249v0,76,27,163,91,161xm220,-518v20,5,16,26,-1,29v-25,-21,-63,-30,-96,-41v-21,-7,-20,-45,6,-43v25,10,67,48,91,55","w":431},"\u00c1":{"d":"307,-245v2,55,-4,149,35,159v14,0,29,-24,43,-70v10,-9,25,-3,23,14v-3,33,-36,97,-71,93v-35,-4,-40,-33,-54,-73v-22,65,-67,135,-137,135v-87,0,-123,-89,-123,-183v0,-68,27,-172,71,-228v65,-84,166,-98,196,16v7,6,23,13,22,35xm148,-23v89,-3,135,-156,124,-268v-12,13,-24,20,-37,20v-27,0,-33,-28,-14,-35v32,3,40,-6,40,-47v0,-53,-20,-80,-61,-80v-85,0,-143,135,-143,249v0,76,27,163,91,161xm187,-502v-8,9,-33,23,-34,-1v0,-6,4,-11,13,-14v19,-6,65,-43,91,-55v27,-2,28,35,6,43","w":431},"\u00c2":{"d":"261,-533v9,9,45,40,11,45v-19,-14,-41,-40,-62,-55v-25,18,-51,31,-70,55v-19,2,-24,-17,-9,-28v12,-9,47,-42,59,-63v10,-18,32,-18,41,0v8,15,17,32,30,46xm307,-245v2,55,-4,149,35,159v14,0,29,-24,43,-70v10,-9,25,-3,23,14v-3,33,-36,97,-71,93v-35,-4,-40,-33,-54,-73v-22,65,-67,135,-137,135v-87,0,-123,-89,-123,-183v0,-68,27,-172,71,-228v65,-84,166,-98,196,16v7,6,23,13,22,35xm148,-23v89,-3,135,-156,124,-268v-12,13,-24,20,-37,20v-27,0,-33,-28,-14,-35v32,3,40,-6,40,-47v0,-53,-20,-80,-61,-80v-85,0,-143,135,-143,249v0,76,27,163,91,161","w":431},"\u00c3":{"d":"233,-523v10,2,37,-20,48,-19v8,0,12,4,12,11v0,19,-43,41,-58,39v-10,1,-44,-16,-54,-15v-17,-3,-55,24,-59,0v-3,-17,37,-34,57,-33v10,0,42,18,54,17xm307,-245v2,55,-4,149,35,159v14,0,29,-24,43,-70v10,-9,25,-3,23,14v-3,33,-36,97,-71,93v-35,-4,-40,-33,-54,-73v-22,65,-67,135,-137,135v-87,0,-123,-89,-123,-183v0,-68,27,-172,71,-228v65,-84,166,-98,196,16v7,6,23,13,22,35xm148,-23v89,-3,135,-156,124,-268v-12,13,-24,20,-37,20v-27,0,-33,-28,-14,-35v32,3,40,-6,40,-47v0,-53,-20,-80,-61,-80v-85,0,-143,135,-143,249v0,76,27,163,91,161","w":431},"\u00c4":{"d":"307,-245v2,55,-4,149,35,159v14,0,29,-24,43,-70v10,-9,25,-3,23,14v-3,33,-36,97,-71,93v-35,-4,-40,-33,-54,-73v-22,65,-67,135,-137,135v-87,0,-123,-89,-123,-183v0,-68,27,-172,71,-228v65,-84,166,-98,196,16v7,6,23,13,22,35xm148,-23v89,-3,135,-156,124,-268v-12,13,-24,20,-37,20v-27,0,-33,-28,-14,-35v32,3,40,-6,40,-47v0,-53,-20,-80,-61,-80v-85,0,-143,135,-143,249v0,76,27,163,91,161xm225,-519v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28xm130,-519v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28","w":431},"\u00c5":{"d":"206,-583v26,0,49,22,49,48v0,26,-23,48,-49,48v-26,1,-48,-22,-48,-48v0,-26,22,-49,48,-48xm206,-510v14,0,26,-12,26,-25v0,-14,-11,-26,-26,-26v-13,0,-25,12,-25,26v0,14,11,25,25,25xm307,-245v2,55,-4,149,35,159v14,0,29,-24,43,-70v10,-9,25,-3,23,14v-3,33,-36,97,-71,93v-35,-4,-40,-33,-54,-73v-22,65,-67,135,-137,135v-87,0,-123,-89,-123,-183v0,-68,27,-172,71,-228v65,-84,166,-98,196,16v7,6,23,13,22,35xm148,-23v89,-3,135,-156,124,-268v-12,13,-24,20,-37,20v-27,0,-33,-28,-14,-35v32,3,40,-6,40,-47v0,-53,-20,-80,-61,-80v-85,0,-143,135,-143,249v0,76,27,163,91,161","w":431},"\u00c6":{"d":"302,-435v16,-3,14,29,28,24v66,-21,116,-31,151,-31v41,0,61,12,61,36v1,12,-13,31,-24,29v-19,-3,-13,-33,-53,-33v-40,0,-86,13,-139,37v-23,34,-15,110,-21,174v0,6,2,9,6,9v-23,0,-8,-6,44,-18v52,-12,85,-18,100,-18v41,0,36,36,10,37v-67,3,-167,16,-167,53v0,47,-10,111,39,108v21,8,156,-57,169,-57v16,0,24,30,8,35v-20,7,-141,52,-170,52v-52,0,-77,-26,-79,-82v-31,62,-70,93,-119,93v-84,0,-123,-89,-123,-183v0,-87,27,-162,73,-229v53,-77,142,-95,184,-13v2,-14,8,-24,22,-23xm148,-23v94,-5,126,-149,127,-260v-17,1,-27,14,-40,12v-27,3,-34,-28,-13,-34v29,1,38,-16,39,-48v0,-51,-21,-77,-62,-77v-93,0,-138,145,-142,246v-3,76,27,164,91,161","w":555},"\u00c7":{"d":"205,-291v55,-6,56,-141,-9,-139v-24,0,-48,13,-71,38v-50,55,-75,123,-75,206v0,140,93,193,191,136v23,-13,41,-31,53,-55v5,-9,24,-7,22,5v-18,47,-79,109,-141,110v-7,12,-9,13,-9,16v20,-1,45,10,44,28v0,34,-22,50,-66,50v-8,-1,-29,-2,-28,-14v1,-11,18,-6,28,-6v26,0,39,-9,39,-27v-6,-21,-35,-7,-52,1v-6,0,-10,-2,-10,-9v6,-15,21,-21,30,-38v-168,-13,-163,-310,-66,-415v31,-34,65,-64,114,-67v49,-2,75,49,75,100v0,50,-27,120,-72,118v-24,5,-43,-37,-14,-41","w":337},"\u00c8":{"d":"80,-435v16,-3,14,29,28,24v66,-21,116,-31,151,-31v41,0,61,12,61,36v0,13,-12,31,-24,29v-19,-4,-13,-33,-53,-33v-40,0,-86,13,-139,37v-5,2,-7,6,-8,12v-11,82,-17,136,-17,162v0,6,3,10,7,10v-23,0,-8,-7,45,-19v53,-12,87,-18,102,-18v41,0,35,36,9,37v-66,2,-166,15,-166,53v0,47,-11,111,39,108v21,8,156,-57,169,-57v16,0,24,30,8,35v-20,7,-142,57,-170,52v-69,5,-85,-53,-78,-127v2,-11,-8,-25,-9,-31v20,-37,16,-114,23,-182v3,-34,-40,11,-43,-20v-2,-15,38,-30,40,-36v2,-12,4,-46,25,-41xm203,-498v20,5,16,26,-1,29v-25,-21,-63,-30,-96,-41v-21,-7,-20,-45,6,-43v25,10,67,48,91,55","w":351},"\u00c9":{"d":"80,-435v16,-3,14,29,28,24v66,-21,116,-31,151,-31v41,0,61,12,61,36v0,13,-12,31,-24,29v-19,-4,-13,-33,-53,-33v-40,0,-86,13,-139,37v-5,2,-7,6,-8,12v-11,82,-17,136,-17,162v0,6,3,10,7,10v-23,0,-8,-7,45,-19v53,-12,87,-18,102,-18v41,0,35,36,9,37v-66,2,-166,15,-166,53v0,47,-11,111,39,108v21,8,156,-57,169,-57v16,0,24,30,8,35v-20,7,-142,57,-170,52v-69,5,-85,-53,-78,-127v2,-11,-8,-25,-9,-31v20,-37,16,-114,23,-182v3,-34,-40,11,-43,-20v-2,-15,38,-30,40,-36v2,-12,4,-46,25,-41xm170,-485v-8,9,-33,23,-34,-1v0,-6,4,-11,13,-14v19,-6,65,-43,91,-55v27,-2,28,35,6,43","w":351},"\u00ca":{"d":"247,-515v9,9,43,39,11,45v-19,-14,-41,-41,-62,-56v-25,18,-52,30,-71,56v-20,2,-24,-18,-8,-29v12,-8,47,-41,59,-62v10,-18,31,-18,40,0v7,15,18,32,31,46xm80,-435v16,-3,14,29,28,24v66,-21,116,-31,151,-31v41,0,61,12,61,36v0,13,-12,31,-24,29v-19,-4,-13,-33,-53,-33v-40,0,-86,13,-139,37v-5,2,-7,6,-8,12v-11,82,-17,136,-17,162v0,6,3,10,7,10v-23,0,-8,-7,45,-19v53,-12,87,-18,102,-18v41,0,35,36,9,37v-66,2,-166,15,-166,53v0,47,-11,111,39,108v21,8,156,-57,169,-57v16,0,24,30,8,35v-20,7,-142,57,-170,52v-69,5,-85,-53,-78,-127v2,-11,-8,-25,-9,-31v20,-37,16,-114,23,-182v3,-34,-40,11,-43,-20v-2,-15,38,-30,40,-36v2,-12,4,-46,25,-41","w":351},"\u00cb":{"d":"80,-435v16,-3,14,29,28,24v66,-21,116,-31,151,-31v41,0,61,12,61,36v0,13,-12,31,-24,29v-19,-4,-13,-33,-53,-33v-40,0,-86,13,-139,37v-5,2,-7,6,-8,12v-11,82,-17,136,-17,162v0,6,3,10,7,10v-23,0,-8,-7,45,-19v53,-12,87,-18,102,-18v41,0,35,36,9,37v-66,2,-166,15,-166,53v0,47,-11,111,39,108v21,8,156,-57,169,-57v16,0,24,30,8,35v-20,7,-142,57,-170,52v-69,5,-85,-53,-78,-127v2,-11,-8,-25,-9,-31v20,-37,16,-114,23,-182v3,-34,-40,11,-43,-20v-2,-15,38,-30,40,-36v2,-12,4,-46,25,-41xm210,-498v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28xm115,-498v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28","w":351},"\u00cc":{"d":"30,-22v38,9,108,28,105,-27r-6,-114r0,-90v0,-15,1,-44,4,-85v0,-8,-3,-11,-9,-11r-73,12v-44,5,-44,-37,-14,-40v28,9,100,15,106,-20v2,-7,12,-18,20,-18v15,0,16,26,29,25v40,-5,104,-9,103,30v0,11,-6,17,-18,17v-22,-8,-15,-26,-54,-22v-52,5,-51,3,-56,46v-10,76,-5,280,2,285v19,12,100,-13,97,24v-3,36,-45,7,-66,7v-26,0,-111,21,-138,21v-31,0,-47,-7,-47,-22v0,-12,5,-18,15,-18xm188,-498v20,5,16,26,-1,29v-25,-21,-63,-30,-96,-41v-21,-7,-20,-45,6,-43v25,10,67,48,91,55","w":318},"\u00cd":{"d":"30,-22v38,9,108,28,105,-27r-6,-114r0,-90v0,-15,1,-44,4,-85v0,-8,-3,-11,-9,-11r-73,12v-44,5,-44,-37,-14,-40v28,9,100,15,106,-20v2,-7,12,-18,20,-18v15,0,16,26,29,25v40,-5,104,-9,103,30v0,11,-6,17,-18,17v-22,-8,-15,-26,-54,-22v-52,5,-51,3,-56,46v-10,76,-5,280,2,285v19,12,100,-13,97,24v-3,36,-45,7,-66,7v-26,0,-111,21,-138,21v-31,0,-47,-7,-47,-22v0,-12,5,-18,15,-18xm155,-482v-8,9,-33,23,-34,-1v0,-6,4,-11,13,-14v19,-6,65,-43,91,-55v27,-2,28,35,6,43","w":318},"\u00ce":{"d":"217,-515v11,8,44,38,12,45v-19,-14,-41,-41,-62,-56v-25,18,-52,30,-71,56v-20,2,-24,-18,-8,-29v12,-8,46,-40,58,-62v10,-18,32,-19,41,0v7,15,18,31,30,46xm30,-22v38,9,108,28,105,-27r-6,-114r0,-90v0,-15,1,-44,4,-85v0,-8,-3,-11,-9,-11r-73,12v-44,5,-44,-37,-14,-40v28,9,100,15,106,-20v2,-7,12,-18,20,-18v15,0,16,26,29,25v40,-5,104,-9,103,30v0,11,-6,17,-18,17v-22,-8,-15,-26,-54,-22v-52,5,-51,3,-56,46v-10,76,-5,280,2,285v19,12,100,-13,97,24v-3,36,-45,7,-66,7v-26,0,-111,21,-138,21v-31,0,-47,-7,-47,-22v0,-12,5,-18,15,-18","w":318},"\u00cf":{"d":"30,-22v38,9,108,28,105,-27r-6,-114r0,-90v0,-15,1,-44,4,-85v0,-8,-3,-11,-9,-11r-73,12v-44,5,-44,-37,-14,-40v28,9,100,15,106,-20v2,-7,12,-18,20,-18v15,0,16,26,29,25v40,-5,104,-9,103,30v0,11,-6,17,-18,17v-22,-8,-15,-26,-54,-22v-52,5,-51,3,-56,46v-10,76,-5,280,2,285v19,12,100,-13,97,24v-3,36,-45,7,-66,7v-26,0,-111,21,-138,21v-31,0,-47,-7,-47,-22v0,-12,5,-18,15,-18xm188,-497v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28xm93,-497v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28","w":318},"\u00d1":{"d":"232,-502v11,3,38,-19,47,-19v8,0,12,4,12,11v0,19,-43,41,-58,39v-10,2,-45,-16,-54,-15v-17,-3,-54,26,-58,0v-2,-17,36,-32,56,-32v11,0,43,18,55,16xm315,-96v0,17,13,54,28,51v19,5,35,-44,42,-80v8,-9,20,-2,20,15v0,39,-25,115,-61,110v-43,-6,-56,-50,-56,-120v0,-31,-1,-97,-1,-199v0,-80,-48,-77,-73,-21v-37,86,-65,173,-65,295v0,24,4,51,-21,51v-14,0,-21,-13,-21,-42v-1,-55,17,-126,17,-181v0,-58,-9,-157,-44,-154v-38,3,-48,91,-26,129r12,24v0,9,-9,19,-18,19v-24,0,-34,-53,-33,-85v0,-69,19,-116,71,-126v63,11,56,104,65,167v17,-51,57,-181,111,-181v24,0,38,18,46,52v5,22,7,204,7,276","w":426},"\u00d2":{"d":"259,-318v75,93,17,327,-105,327v-94,0,-134,-107,-134,-215v0,-73,21,-139,61,-196v24,-34,51,-52,81,-52v66,0,86,51,97,136xm186,-227v42,-16,34,-62,39,-100v5,-36,-27,-86,-60,-86v-21,0,-41,14,-61,42v-34,48,-51,102,-51,163v0,88,28,177,102,179v78,2,128,-134,97,-224r-5,0v-11,20,-24,55,-50,55v-21,0,-28,-22,-11,-29xm211,-517v20,5,16,26,-1,29v-25,-21,-63,-30,-96,-41v-21,-7,-20,-45,6,-43v25,10,67,48,91,55","w":312},"\u00d3":{"d":"259,-318v75,93,17,327,-105,327v-94,0,-134,-107,-134,-215v0,-73,21,-139,61,-196v24,-34,51,-52,81,-52v66,0,86,51,97,136xm186,-227v42,-16,34,-62,39,-100v5,-36,-27,-86,-60,-86v-21,0,-41,14,-61,42v-34,48,-51,102,-51,163v0,88,28,177,102,179v78,2,128,-134,97,-224r-5,0v-11,20,-24,55,-50,55v-21,0,-28,-22,-11,-29xm149,-503v-8,9,-33,23,-34,-1v0,-6,4,-11,13,-14v19,-6,65,-43,91,-55v27,-2,28,35,6,43","w":312},"\u00d4":{"d":"220,-534v12,8,45,41,9,45v-14,-19,-41,-40,-60,-56v-25,18,-51,31,-70,56v-19,2,-25,-18,-9,-29v12,-9,48,-40,59,-62v9,-18,32,-18,41,0v8,15,18,31,30,46xm259,-318v75,93,17,327,-105,327v-94,0,-134,-107,-134,-215v0,-73,21,-139,61,-196v24,-34,51,-52,81,-52v66,0,86,51,97,136xm186,-227v42,-16,34,-62,39,-100v5,-36,-27,-86,-60,-86v-21,0,-41,14,-61,42v-34,48,-51,102,-51,163v0,88,28,177,102,179v78,2,128,-134,97,-224r-5,0v-11,20,-24,55,-50,55v-21,0,-28,-22,-11,-29","w":312},"\u00d5":{"d":"195,-522v11,3,38,-19,47,-19v8,0,12,4,12,11v-2,20,-43,41,-58,39v-10,2,-45,-16,-54,-15v-17,-3,-54,26,-58,0v-2,-17,36,-32,56,-32v11,0,43,17,55,16xm259,-318v75,93,17,327,-105,327v-94,0,-134,-107,-134,-215v0,-73,21,-139,61,-196v24,-34,51,-52,81,-52v66,0,86,51,97,136xm186,-227v42,-16,34,-62,39,-100v5,-36,-27,-86,-60,-86v-21,0,-41,14,-61,42v-34,48,-51,102,-51,163v0,88,28,177,102,179v78,2,128,-134,97,-224r-5,0v-11,20,-24,55,-50,55v-21,0,-28,-22,-11,-29","w":312},"\u00d6":{"d":"259,-318v75,93,17,327,-105,327v-94,0,-134,-107,-134,-215v0,-73,21,-139,61,-196v24,-34,51,-52,81,-52v66,0,86,51,97,136xm186,-227v42,-16,34,-62,39,-100v5,-36,-27,-86,-60,-86v-21,0,-41,14,-61,42v-34,48,-51,102,-51,163v0,88,28,177,102,179v78,2,128,-134,97,-224r-5,0v-11,20,-24,55,-50,55v-21,0,-28,-22,-11,-29xm186,-517v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28xm91,-517v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28","w":312},"\u00d8":{"d":"23,69v-21,0,-36,-33,-23,-50v26,-22,31,-36,52,-74v-51,-100,-36,-258,29,-347v41,-57,103,-71,146,-18v16,-37,38,-107,81,-105v39,2,40,30,13,55v-20,19,-45,62,-69,109v3,13,6,28,7,43v90,113,-12,414,-173,305v-29,55,-50,82,-63,82xm187,-227v20,-6,45,-43,32,-68xm210,-382v-29,-48,-72,-35,-106,11v-53,72,-65,188,-32,277xm103,-47v102,72,188,-86,149,-206r-5,0v-11,20,-24,56,-50,55v-11,0,-17,-3,-19,-10","w":312},"\u00d9":{"d":"402,-60v15,7,43,-62,53,-60v7,0,10,4,10,11v2,27,-39,93,-67,88v-37,5,-64,-55,-72,-119v-19,66,-44,138,-111,142v-61,4,-86,-80,-86,-152v0,-63,34,-234,-31,-234v-35,0,-52,56,-52,89v0,20,19,53,20,66v0,9,-8,22,-18,22v-24,0,-34,-49,-34,-78v0,-61,40,-141,94,-141v84,0,53,187,53,281v0,70,19,106,59,106v41,11,89,-95,92,-150v4,-69,-18,-199,30,-210v15,-3,20,21,19,45r-13,170v0,31,23,131,54,124xm275,-498v20,5,16,26,-1,29v-25,-21,-63,-30,-96,-41v-21,-7,-20,-45,6,-43v25,10,67,48,91,55","w":477},"\u00da":{"d":"402,-60v15,7,43,-62,53,-60v7,0,10,4,10,11v2,27,-39,93,-67,88v-37,5,-64,-55,-72,-119v-19,66,-44,138,-111,142v-61,4,-86,-80,-86,-152v0,-63,34,-234,-31,-234v-35,0,-52,56,-52,89v0,20,19,53,20,66v0,9,-8,22,-18,22v-24,0,-34,-49,-34,-78v0,-61,40,-141,94,-141v84,0,53,187,53,281v0,70,19,106,59,106v41,11,89,-95,92,-150v4,-69,-18,-199,30,-210v15,-3,20,21,19,45r-13,170v0,31,23,131,54,124xm255,-483v-8,9,-33,23,-34,-1v0,-6,4,-11,13,-14v19,-6,65,-43,91,-55v27,-2,28,35,6,43","w":477},"\u00db":{"d":"308,-514v9,10,42,39,11,46r-62,-56v-27,17,-51,34,-74,56v-17,-1,-20,-19,-5,-29v12,-8,46,-41,58,-63v10,-18,32,-19,41,0v7,15,18,32,31,46xm402,-60v15,7,43,-62,53,-60v7,0,10,4,10,11v2,27,-39,93,-67,88v-37,5,-64,-55,-72,-119v-19,66,-44,138,-111,142v-61,4,-86,-80,-86,-152v0,-63,34,-234,-31,-234v-35,0,-52,56,-52,89v0,20,19,53,20,66v0,9,-8,22,-18,22v-24,0,-34,-49,-34,-78v0,-61,40,-141,94,-141v84,0,53,187,53,281v0,70,19,106,59,106v41,11,89,-95,92,-150v4,-69,-18,-199,30,-210v15,-3,20,21,19,45r-13,170v0,31,23,131,54,124","w":477},"\u00dc":{"d":"402,-60v15,7,43,-62,53,-60v7,0,10,4,10,11v2,27,-39,93,-67,88v-37,5,-64,-55,-72,-119v-19,66,-44,138,-111,142v-61,4,-86,-80,-86,-152v0,-63,34,-234,-31,-234v-35,0,-52,56,-52,89v0,20,19,53,20,66v0,9,-8,22,-18,22v-24,0,-34,-49,-34,-78v0,-61,40,-141,94,-141v84,0,53,187,53,281v0,70,19,106,59,106v41,11,89,-95,92,-150v4,-69,-18,-199,30,-210v15,-3,20,21,19,45r-13,170v0,31,23,131,54,124xm257,-498v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28xm162,-498v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28","w":477},"\u00dd":{"d":"342,-201v4,122,3,274,-99,285v-38,4,-59,-37,-59,-78v0,-33,24,-81,55,-79v14,0,21,6,21,19v0,16,-9,19,-24,17v-13,-2,-25,25,-24,40v0,25,10,37,31,37v49,0,74,-55,74,-165r0,-92v-26,54,-77,107,-115,102v-86,6,-67,-147,-63,-233v1,-44,-9,-67,-31,-67v-61,0,-66,119,-22,143v16,9,3,34,-12,35v-32,-5,-44,-61,-44,-105v0,-56,25,-112,74,-112v102,0,35,176,62,265v18,59,85,39,113,-12v25,-45,40,-100,40,-170v0,-19,12,-42,29,-42v10,0,15,7,15,18v0,63,-23,135,-21,194xm240,-486v-8,9,-33,23,-34,-1v0,-6,4,-11,13,-14v19,-6,65,-43,91,-55v27,-2,28,35,6,43","w":385},"\u00df":{"d":"169,-211v36,7,74,51,74,95v0,54,-37,116,-88,116v-18,0,-50,-7,-49,-21v1,-14,13,-26,20,-25v41,36,83,-24,83,-72v0,-41,-34,-72,-70,-77v-19,-3,-8,-24,1,-29v46,-23,63,-24,67,-73v2,-27,-22,-56,-49,-54v-114,11,-90,195,-89,323v0,21,-7,32,-21,32v-17,-1,-18,-19,-17,-42v2,-57,13,-123,-2,-168v11,-26,12,-69,12,-111v0,-32,6,-48,19,-48v19,0,11,21,16,37v12,-22,51,-53,79,-53v54,0,86,33,85,87v0,34,-42,70,-71,83","w":260},"\u00e0":{"d":"216,-49v25,3,36,-33,56,-39v6,0,9,4,9,11v2,26,-41,65,-67,65v-26,0,-42,-18,-50,-53v-18,34,-55,69,-86,69v-35,0,-61,-44,-61,-81v0,-60,63,-179,119,-174v45,-6,51,53,50,99v12,26,-4,109,30,103xm152,-114v-15,-26,20,-100,-22,-102v-41,-2,-83,83,-83,128v0,27,12,56,37,55v32,-2,60,-52,68,-81xm184,-305v20,5,16,26,-1,29v-25,-21,-63,-30,-96,-41v-21,-7,-20,-45,6,-43v25,10,67,48,91,55","w":268},"\u00e1":{"d":"216,-49v25,3,36,-33,56,-39v6,0,9,4,9,11v2,26,-41,65,-67,65v-26,0,-42,-18,-50,-53v-18,34,-55,69,-86,69v-35,0,-61,-44,-61,-81v0,-60,63,-179,119,-174v45,-6,51,53,50,99v12,26,-4,109,30,103xm152,-114v-15,-26,20,-100,-22,-102v-41,-2,-83,83,-83,128v0,27,12,56,37,55v32,-2,60,-52,68,-81xm134,-290v-8,9,-33,23,-34,-1v0,-6,4,-11,13,-14v19,-6,65,-43,91,-55v27,-2,28,35,6,43","w":268},"\u00e2":{"d":"198,-321v9,10,44,40,11,46r-62,-56v-26,18,-51,33,-73,56v-17,0,-21,-19,-6,-29v12,-9,47,-42,59,-63v10,-18,32,-18,41,0v8,15,17,32,30,46xm216,-49v25,3,36,-33,56,-39v6,0,9,4,9,11v2,26,-41,65,-67,65v-26,0,-42,-18,-50,-53v-18,34,-55,69,-86,69v-35,0,-61,-44,-61,-81v0,-60,63,-179,119,-174v45,-6,51,53,50,99v12,26,-4,109,30,103xm152,-114v-15,-26,20,-100,-22,-102v-41,-2,-83,83,-83,128v0,27,12,56,37,55v32,-2,60,-52,68,-81","w":268},"\u00e3":{"d":"167,-308v10,2,37,-20,47,-19v8,0,12,4,12,11v0,19,-43,41,-58,39v-10,1,-44,-16,-54,-15v-17,-3,-54,24,-58,-1v-2,-17,37,-32,56,-32v11,0,44,18,55,17xm216,-49v25,3,36,-33,56,-39v6,0,9,4,9,11v2,26,-41,65,-67,65v-26,0,-42,-18,-50,-53v-18,34,-55,69,-86,69v-35,0,-61,-44,-61,-81v0,-60,63,-179,119,-174v45,-6,51,53,50,99v12,26,-4,109,30,103xm152,-114v-15,-26,20,-100,-22,-102v-41,-2,-83,83,-83,128v0,27,12,56,37,55v32,-2,60,-52,68,-81","w":268},"\u00e4":{"d":"216,-49v25,3,36,-33,56,-39v6,0,9,4,9,11v2,26,-41,65,-67,65v-26,0,-42,-18,-50,-53v-18,34,-55,69,-86,69v-35,0,-61,-44,-61,-81v0,-60,63,-179,119,-174v45,-6,51,53,50,99v12,26,-4,109,30,103xm152,-114v-15,-26,20,-100,-22,-102v-41,-2,-83,83,-83,128v0,27,12,56,37,55v32,-2,60,-52,68,-81xm159,-304v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28xm64,-304v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28","w":268},"\u00e5":{"d":"139,-365v26,0,48,22,48,48v0,26,-22,48,-48,48v-26,0,-48,-22,-48,-48v0,-26,22,-48,48,-48xm139,-291v13,0,25,-12,25,-26v0,-14,-11,-25,-25,-25v-14,0,-26,12,-26,25v0,13,13,26,26,26xm216,-49v25,3,36,-33,56,-39v6,0,9,4,9,11v2,26,-41,65,-67,65v-26,0,-42,-18,-50,-53v-18,34,-55,69,-86,69v-35,0,-61,-44,-61,-81v0,-60,63,-179,119,-174v45,-6,51,53,50,99v12,26,-4,109,30,103xm152,-114v-15,-26,20,-100,-22,-102v-41,-2,-83,83,-83,128v0,27,12,56,37,55v32,-2,60,-52,68,-81","w":268},"\u00e6":{"d":"19,-81v0,-62,60,-170,118,-170v26,0,43,16,49,47v20,-26,38,-39,55,-39v25,0,38,13,38,40v0,52,-48,125,-84,143v12,49,98,10,106,-18v3,-9,21,-8,20,4v-10,67,-136,109,-162,23v-24,37,-50,55,-79,55v-36,0,-61,-47,-61,-85xm185,-86v32,-10,63,-67,63,-102v0,-11,-5,-17,-13,-17v-38,8,-66,76,-50,119xm154,-114v-16,-26,21,-100,-22,-102v-41,-3,-81,85,-81,130v0,51,43,71,72,30v11,-15,25,-43,31,-58","w":334},"\u00e7":{"d":"48,-112v-3,65,62,101,115,64v18,-12,26,-32,44,-43v7,0,10,4,10,11v-9,38,-59,82,-99,77r-9,14v20,-1,45,10,45,28v0,34,-22,51,-66,51v-9,0,-29,-2,-28,-15v1,-13,19,-5,28,-5v26,0,39,-9,39,-27v-6,-23,-33,-7,-52,0v-6,0,-10,-3,-10,-9v7,-16,20,-21,31,-40v-51,-13,-76,-46,-76,-99v0,-52,45,-137,94,-137v29,0,44,20,44,60v0,43,-40,51,-41,13v-1,-28,6,-37,-12,-40v-33,3,-55,60,-57,97","k":{"t":31,"s":26,"r":26}},"\u00e8":{"d":"91,-2v-128,-8,-64,-241,15,-241v25,0,38,13,38,40v1,51,-49,126,-84,143v-3,15,18,24,33,24v32,0,57,-14,73,-42v4,-8,21,-9,20,4v-6,38,-52,75,-95,72xm49,-83v30,-11,62,-62,64,-105v0,-12,-4,-18,-12,-18v-37,8,-68,78,-52,123xm161,-304v20,5,16,26,-1,29v-25,-21,-63,-30,-96,-41v-21,-7,-20,-45,6,-43v25,10,67,48,91,55","w":174},"\u00e9":{"d":"91,-2v-128,-8,-64,-241,15,-241v25,0,38,13,38,40v1,51,-49,126,-84,143v-3,15,18,24,33,24v32,0,57,-14,73,-42v4,-8,21,-9,20,4v-6,38,-52,75,-95,72xm49,-83v30,-11,62,-62,64,-105v0,-12,-4,-18,-12,-18v-37,8,-68,78,-52,123xm111,-289v-8,9,-33,23,-34,-1v0,-6,4,-11,13,-14v19,-6,65,-43,91,-55v27,-2,28,35,6,43","w":174},"\u00ea":{"d":"175,-320v9,9,43,39,11,45v-19,-14,-41,-41,-62,-56v-25,18,-52,30,-71,56v-19,1,-24,-17,-8,-28v12,-8,46,-41,58,-63v10,-18,32,-19,41,0v7,15,18,32,31,46xm91,-2v-128,-8,-64,-241,15,-241v25,0,38,13,38,40v1,51,-49,126,-84,143v-3,15,18,24,33,24v32,0,57,-14,73,-42v4,-8,21,-9,20,4v-6,38,-52,75,-95,72xm49,-83v30,-11,62,-62,64,-105v0,-12,-4,-18,-12,-18v-37,8,-68,78,-52,123","w":174},"\u00eb":{"d":"91,-2v-128,-8,-64,-241,15,-241v25,0,38,13,38,40v1,51,-49,126,-84,143v-3,15,18,24,33,24v32,0,57,-14,73,-42v4,-8,21,-9,20,4v-6,38,-52,75,-95,72xm49,-83v30,-11,62,-62,64,-105v0,-12,-4,-18,-12,-18v-37,8,-68,78,-52,123xm136,-303v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28xm41,-303v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28","w":174},"\u00ec":{"d":"77,0v-69,0,-60,-132,-47,-189v5,-19,35,-14,33,7v0,-15,-2,-6,-6,27v-4,33,-6,55,-6,66v-4,74,49,63,72,20v4,-7,21,-6,19,6v-7,32,-38,63,-65,63xm103,-273v20,5,16,26,-1,29v-25,-21,-63,-30,-96,-41v-21,-7,-20,-45,6,-43v25,10,67,48,91,55","w":121},"\u00ed":{"d":"77,0v-69,0,-60,-132,-47,-189v5,-19,35,-14,33,7v0,-15,-2,-6,-6,27v-4,33,-6,55,-6,66v-4,74,49,63,72,20v4,-7,21,-6,19,6v-7,32,-38,63,-65,63xm46,-257v-8,9,-33,23,-34,-1v0,-6,4,-11,13,-14v19,-6,65,-43,91,-55v27,-2,28,35,6,43","w":121},"\u00ee":{"d":"124,-288v9,9,43,39,11,45v-9,-1,-8,-11,-19,-19r-43,-37v-25,18,-52,30,-71,56v-20,2,-24,-18,-8,-29v12,-8,47,-41,59,-63v9,-17,32,-17,40,0v8,15,18,33,31,47xm77,0v-69,0,-60,-132,-47,-189v5,-19,35,-14,33,7v0,-15,-2,-6,-6,27v-4,33,-6,55,-6,66v-4,74,49,63,72,20v4,-7,21,-6,19,6v-7,32,-38,63,-65,63","w":121},"\u00ef":{"d":"77,0v-69,0,-60,-132,-47,-189v5,-19,35,-14,33,7v0,-15,-2,-6,-6,27v-4,33,-6,55,-6,66v-4,74,49,63,72,20v4,-7,21,-6,19,6v-7,32,-38,63,-65,63xm80,-271v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28xm-15,-271v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28","w":121},"\u00f1":{"d":"141,-277v10,2,37,-20,47,-19v8,0,12,4,12,11v0,19,-43,41,-58,39v-10,1,-44,-16,-54,-15v-17,-3,-54,24,-58,-1v-2,-17,37,-33,56,-32v10,0,43,19,55,17xm180,-43v16,6,48,-37,55,-38v6,0,9,3,9,10v-4,29,-35,65,-67,65v-56,0,-44,-83,-44,-141v0,-23,-4,-34,-14,-34v-35,17,-62,103,-63,164v1,7,-11,20,-19,20v-10,0,-16,-9,-14,-26r20,-164v-2,-17,33,-35,35,-8v-1,5,-2,10,-2,18v22,-27,40,-41,53,-41v44,-2,28,90,28,134v0,28,8,41,23,41","w":220},"\u00f2":{"d":"177,-160v-2,9,11,12,11,22v0,8,-11,22,-11,30v2,45,-39,108,-81,108v-47,0,-82,-65,-81,-116v1,-56,31,-150,88,-123v46,-10,59,17,74,79xm152,-140v0,-23,-16,-67,-37,-67v-10,0,-16,8,-16,25v0,36,14,54,40,54v9,0,13,-4,13,-12xm95,-34v29,0,58,-35,54,-69v-57,9,-85,-47,-68,-104v-44,23,-54,170,14,173xm140,-304v20,5,16,26,-1,29v-25,-21,-63,-30,-96,-41v-21,-7,-20,-45,6,-43v25,10,67,48,91,55"},"\u00f3":{"d":"177,-160v-2,9,11,12,11,22v0,8,-11,22,-11,30v2,45,-39,108,-81,108v-47,0,-82,-65,-81,-116v1,-56,31,-150,88,-123v46,-10,59,17,74,79xm152,-140v0,-23,-16,-67,-37,-67v-10,0,-16,8,-16,25v0,36,14,54,40,54v9,0,13,-4,13,-12xm95,-34v29,0,58,-35,54,-69v-57,9,-85,-47,-68,-104v-44,23,-54,170,14,173xm103,-289v-8,9,-33,23,-34,-1v0,-6,4,-11,13,-14v19,-6,65,-43,91,-55v27,-2,28,35,6,43"},"\u00f4":{"d":"163,-319v9,9,44,39,11,45v-9,-1,-8,-11,-19,-19r-43,-37v-25,18,-52,30,-71,56v-19,1,-24,-17,-8,-28v12,-8,47,-42,59,-63v10,-18,31,-18,40,0v7,15,18,32,31,46xm177,-160v-2,9,11,12,11,22v0,8,-11,22,-11,30v2,45,-39,108,-81,108v-47,0,-82,-65,-81,-116v1,-56,31,-150,88,-123v46,-10,59,17,74,79xm152,-140v0,-23,-16,-67,-37,-67v-10,0,-16,8,-16,25v0,36,14,54,40,54v9,0,13,-4,13,-12xm95,-34v29,0,58,-35,54,-69v-57,9,-85,-47,-68,-104v-44,23,-54,170,14,173"},"\u00f5":{"d":"129,-308v10,2,37,-20,47,-19v8,0,12,4,12,11v-2,20,-43,41,-58,39v-10,1,-44,-16,-54,-15v-17,-2,-55,24,-58,-1v-2,-16,37,-32,56,-32v12,0,44,18,55,17xm177,-160v-2,9,11,12,11,22v0,8,-11,22,-11,30v2,45,-39,108,-81,108v-47,0,-82,-65,-81,-116v1,-56,31,-150,88,-123v46,-10,59,17,74,79xm152,-140v0,-23,-16,-67,-37,-67v-10,0,-16,8,-16,25v0,36,14,54,40,54v9,0,13,-4,13,-12xm95,-34v29,0,58,-35,54,-69v-57,9,-85,-47,-68,-104v-44,23,-54,170,14,173"},"\u00f6":{"d":"177,-160v-2,9,11,12,11,22v0,8,-11,22,-11,30v2,45,-39,108,-81,108v-47,0,-82,-65,-81,-116v1,-56,31,-150,88,-123v46,-10,59,17,74,79xm152,-140v0,-23,-16,-67,-37,-67v-10,0,-16,8,-16,25v0,36,14,54,40,54v9,0,13,-4,13,-12xm95,-34v29,0,58,-35,54,-69v-57,9,-85,-47,-68,-104v-44,23,-54,170,14,173xm128,-304v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28xm33,-304v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28"},"\u00f8":{"d":"36,-40v-43,-62,-16,-199,51,-204v13,5,28,2,44,5v16,-30,27,-91,64,-91v26,0,26,19,8,37v-13,13,-31,43,-47,75v9,15,18,35,21,62v0,3,13,11,11,18v0,8,-11,22,-11,30v1,59,-59,142,-118,95v-26,52,-44,79,-55,79v-15,0,-23,-20,-15,-33v23,-20,25,-35,47,-73xm99,-171v4,-12,14,-26,16,-36v-13,-2,-17,17,-16,36xm139,-128v28,0,6,-41,1,-59r-24,52v6,5,13,7,23,7xm81,-207v-30,15,-44,92,-28,134r31,-64v-11,-22,-9,-41,-3,-70xm72,-41v38,24,81,-19,77,-62v-18,2,-32,1,-45,-8"},"\u00f9":{"d":"196,-49v14,3,49,-35,54,-37v7,0,10,3,10,9v-8,34,-39,66,-64,63v-25,2,-42,-24,-52,-52v-26,46,-27,59,-64,69v-36,0,-54,-33,-54,-100v0,-15,4,-48,10,-100v1,-11,7,-17,18,-17v10,0,14,6,14,18v0,41,-32,159,15,162v25,2,56,-68,58,-95v2,-47,-9,-84,23,-91v9,0,14,4,14,12v1,44,-29,148,18,159xm128,-272v20,5,16,26,-1,29v-25,-21,-63,-30,-96,-41v-21,-7,-20,-45,6,-43v25,10,67,48,91,55","w":234},"\u00fa":{"d":"196,-49v14,3,49,-35,54,-37v7,0,10,3,10,9v-8,34,-39,66,-64,63v-25,2,-42,-24,-52,-52v-26,46,-27,59,-64,69v-36,0,-54,-33,-54,-100v0,-15,4,-48,10,-100v1,-11,7,-17,18,-17v10,0,14,6,14,18v0,41,-32,159,15,162v25,2,56,-68,58,-95v2,-47,-9,-84,23,-91v9,0,14,4,14,12v1,44,-29,148,18,159xm98,-254v-8,9,-33,23,-34,-1v0,-6,4,-11,13,-14v19,-6,65,-43,91,-55v27,-2,28,35,6,43","w":234},"\u00fb":{"d":"172,-290v11,9,44,39,11,45v-9,-1,-8,-11,-19,-19r-43,-37v-27,17,-50,34,-73,56v-17,0,-21,-19,-6,-29v12,-8,47,-41,59,-62v10,-18,32,-18,41,0v8,15,18,31,30,46xm196,-49v14,3,49,-35,54,-37v7,0,10,3,10,9v-8,34,-39,66,-64,63v-25,2,-42,-24,-52,-52v-26,46,-27,59,-64,69v-36,0,-54,-33,-54,-100v0,-15,4,-48,10,-100v1,-11,7,-17,18,-17v10,0,14,6,14,18v0,41,-32,159,15,162v25,2,56,-68,58,-95v2,-47,-9,-84,23,-91v9,0,14,4,14,12v1,44,-29,148,18,159","w":234},"\u00fc":{"d":"196,-49v14,3,49,-35,54,-37v7,0,10,3,10,9v-8,34,-39,66,-64,63v-25,2,-42,-24,-52,-52v-26,46,-27,59,-64,69v-36,0,-54,-33,-54,-100v0,-15,4,-48,10,-100v1,-11,7,-17,18,-17v10,0,14,6,14,18v0,41,-32,159,15,162v25,2,56,-68,58,-95v2,-47,-9,-84,23,-91v9,0,14,4,14,12v1,44,-29,148,18,159xm136,-272v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28xm41,-272v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28","w":234},"\u00fd":{"d":"192,-34v32,-7,55,-35,77,-55v6,0,8,4,8,11v-15,37,-36,47,-81,70v22,80,23,198,-58,208v-35,4,-55,-35,-54,-73v3,-67,41,-102,87,-144r-11,-53v-24,30,-46,66,-79,66v-67,0,-49,-109,-42,-173v-7,-28,34,-35,35,-9v0,-15,-3,-5,-7,32v-4,37,-6,60,-6,69v0,33,8,50,23,50v20,7,73,-62,72,-78v-1,-38,-2,-85,24,-92v37,6,1,75,1,98v0,18,3,42,11,73xm139,165v55,0,54,-117,36,-158v-35,32,-62,61,-62,115v0,28,9,43,26,43xm129,-254v-8,9,-33,23,-34,-1v0,-6,4,-11,13,-14v19,-6,65,-43,91,-55v27,-2,28,35,6,43","w":250},"\u00ff":{"d":"192,-34v32,-7,55,-35,77,-55v6,0,8,4,8,11v-15,37,-36,47,-81,70v22,80,23,198,-58,208v-35,4,-55,-35,-54,-73v3,-67,41,-102,87,-144r-11,-53v-24,30,-46,66,-79,66v-67,0,-49,-109,-42,-173v-7,-28,34,-35,35,-9v0,-15,-3,-5,-7,32v-4,37,-6,60,-6,69v0,33,8,50,23,50v20,7,73,-62,72,-78v-1,-38,-2,-85,24,-92v37,6,1,75,1,98v0,18,3,42,11,73xm139,165v55,0,54,-117,36,-158v-35,32,-62,61,-62,115v0,28,9,43,26,43xm147,-272v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28xm52,-272v0,-17,12,-30,29,-30v17,0,25,8,25,26v0,21,-10,32,-29,32v-17,0,-25,-10,-25,-28","w":250},"\u0131":{"d":"77,0v-69,0,-60,-132,-47,-189v5,-19,35,-14,33,7v0,-15,-2,-6,-6,27v-4,33,-6,55,-6,66v-4,74,49,63,72,20v4,-7,21,-6,19,6v-7,32,-38,63,-65,63","w":121}}});
;

