/*
 * 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")}})})();

$(document).ready(function(){
	$(".sidebar .nav li a.animate").hover(function(){
		$(this).animate({textIndent:"133"}, "fast")
	}, function(){
		$(this).animate({textIndent:"27"}, "fast")
	});
});

/*
 * jQuery EasIng v1.1.2 - http://gsgd.co.uk/sandbox/jquery.easIng.php
 *
 * Uses the built In easIng capabilities added In jQuery 1.1
 * to offer multiple easIng options
 *
 * Copyright (c) 2007 George Smith
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 */

// t: current time, b: begInnIng value, c: change In value, d: duration

jQuery.extend( jQuery.easing,
{
	easeInQuad: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
	easeInOutQuad: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t + b;
		return -c/2 * ((--t)*(t-2) - 1) + b;
	},
	easeInCubic: function (x, t, b, c, d) {
		return c*(t/=d)*t*t + b;
	},
	easeOutCubic: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t + 1) + b;
	},
	easeInOutCubic: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t + b;
		return c/2*((t-=2)*t*t + 2) + b;
	},
	easeInQuart: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t + b;
	},
	easeOutQuart: function (x, t, b, c, d) {
		return -c * ((t=t/d-1)*t*t*t - 1) + b;
	},
	easeInOutQuart: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
		return -c/2 * ((t-=2)*t*t*t - 2) + b;
	},
	easeInQuint: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t*t + b;
	},
	easeOutQuint: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t*t*t + 1) + b;
	},
	easeInOutQuint: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
		return c/2*((t-=2)*t*t*t*t + 2) + b;
	},
	easeInSine: function (x, t, b, c, d) {
		return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
	},
	easeOutSine: function (x, t, b, c, d) {
		return c * Math.sin(t/d * (Math.PI/2)) + b;
	},
	easeInOutSine: function (x, t, b, c, d) {
		return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
	},
	easeInExpo: function (x, t, b, c, d) {
		return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
	},
	easeOutExpo: function (x, t, b, c, d) {
		return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
	},
	easeInOutExpo: function (x, t, b, c, d) {
		if (t==0) return b;
		if (t==d) return b+c;
		if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
		return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
	},
	easeInCirc: function (x, t, b, c, d) {
		return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
	},
	easeOutCirc: function (x, t, b, c, d) {
		return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
	},
	easeInOutCirc: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
		return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
	},
	easeInElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	},
	easeOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
	},
	easeInOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
	},
	easeInBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*(t/=d)*t*((s+1)*t - s) + b;
	},
	easeOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	},
	easeInOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158; 
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
	},
	easeInBounce: function (x, t, b, c, d) {
		return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
	},
	easeOutBounce: function (x, t, b, c, d) {
		if ((t/=d) < (1/2.75)) {
			return c*(7.5625*t*t) + b;
		} else if (t < (2/2.75)) {
			return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
		} else if (t < (2.5/2.75)) {
			return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
		} else {
			return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
		}
	},
	easeInOutBounce: function (x, t, b, c, d) {
		if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
		return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
	}
});

/*
    anythingSlider v1.2
    
    By Chris Coyier: http://css-tricks.com
    with major improvements by Doug Neiner: http://pixelgraphics.us/
    based on work by Remy Sharp: http://jqueryfordesigners.com/


	To use the navigationFormatter function, you must have a function that
	accepts two paramaters, and returns a string of HTML text.
	
	index = integer index (1 based);
	panel = jQuery wrapped LI item this tab references
	@return = Must return a string of HTML/Text
	
	navigationFormatter: function(index, panel){
		return index + " Panel"; // This would have each tab with the text 'X Panel' where X = index
	}
*/

(function($){
	
    $.anythingSlider = function(el, options){
        // To avoid scope issues, use 'base' instead of 'this'
        // to reference this class from internal events and functions.
        var base = this;
        
        // Access to jQuery and DOM versions of element
        base.$el = $(el);
        base.el = el; 

		// Set up a few defaults
        base.currentPage = 1;
		base.timer = null;
		base.playing = false;

        // Add a reverse reference to the DOM object
        base.$el.data("AnythingSlider", base);
        
        base.init = function(){
            base.options = $.extend({},$.anythingSlider.defaults, options);
			
			// Cache existing DOM elements for later 
			base.$wrapper = base.$el.find('> div').css('overflow', 'hidden');
            base.$slider  = base.$wrapper.find('> ul');
            base.$items   = base.$slider.find('> li');
            base.$single  = base.$items.filter(':first');

			// Build the navigation if needed
			if(base.options.buildNavigation) base.buildNavigation();
        
        	// Get the details
            base.singleWidth = base.$single.outerWidth();
            base.pages = base.$items.length;

            // Top and tail the list with 'visible' number of items, top has the last section, and tail has the first
			// This supports the "infinite" scrolling
			base.$items.filter(':first').before(base.$items.filter(':last').clone().addClass('cloned'));
            base.$items.filter(':last' ).after(base.$items.filter(':first').clone().addClass('cloned'));

			// We just added two items, time to re-cache the list
            base.$items = base.$slider.find('> li'); // reselect
            
			// Setup our forward/backward navigation
			base.buildNextBackButtons();
		
			// If autoPlay functionality is included, then initialize the settings
			if(base.options.autoPlay) {
				base.playing = !base.options.startStopped; // Sets the playing variable to false if startStopped is true
				base.buildAutoPlay();
			};
			
			// If pauseOnHover then add hover effects
			if(base.options.pauseOnHover) {
				base.$el.hover(function(){
					base.clearTimer();
				}, function(){
					base.startStop(base.playing);
				});
			}
			
			// If a hash can not be used to trigger the plugin, then go to page 1
			if((base.options.hashTags == true && !base.gotoHash()) || base.options.hashTags == false){
				base.setCurrentPage(1);
			};
        };

		base.gotoPage = function(page, autoplay){
			// When autoplay isn't passed, we stop the timer
			if(autoplay !== true) autoplay = false;
			if(!autoplay) base.startStop(false);
			
			if(typeof(page) == "undefined" || page == null) {
				page = 1;
				base.setCurrentPage(1);
			};
			
			// Just check for bounds
			if(page > base.pages + 1) page = base.pages;
			if(page < 0 ) page = 1;

			var dir = page < base.currentPage ? -1 : 1,
                n = Math.abs(base.currentPage - page),
                left = base.singleWidth * dir * n;
			
			base.$wrapper.filter(':not(:animated)').animate({
                scrollLeft : '+=' + left
            }, base.options.animationTime, base.options.easing, function () {
                if (page == 0) {
                    base.$wrapper.scrollLeft(base.singleWidth * base.pages);
					page = base.pages;
                } else if (page > base.pages) {
                    base.$wrapper.scrollLeft(base.singleWidth);
                    // reset back to start position
                    page = 1;
                };
				base.setCurrentPage(page);
				
            });
		};
		
		base.setCurrentPage = function(page, move){
			// Set visual
			if(base.options.buildNavigation){
				base.$nav.find('.cur').removeClass('cur');
				$(base.$navLinks[page - 1]).addClass('cur');	
			};
			
			// Only change left if move does not equal false
			if(move !== false) base.$wrapper.scrollLeft(base.singleWidth * page);

			// Update local variable
			base.currentPage = page;
		};
		
		base.goForward = function(autoplay){
			if(autoplay !== true) autoplay = false;
			base.gotoPage(base.currentPage + 1, autoplay);
		};
		
		base.goBack = function(){
			base.gotoPage(base.currentPage - 1);
		};
		
		// This method tries to find a hash that matches panel-X
		// If found, it tries to find a matching item
		// If that is found as well, then that item starts visible
		base.gotoHash = function(){
			if(/^#?panel-\d+$/.test(window.location.hash)){
				var index = parseInt(window.location.hash.substr(7));
				var $item = base.$items.filter(':eq(' + index + ')');
				if($item.length != 0){
					base.setCurrentPage(index);
					return true;
				};
			};
			return false; // A item wasn't found;
		};
        
		// Creates the numbered navigation links
		base.buildNavigation = function(){
			base.$nav = $("<div id='thumbNav'></div>").appendTo(base.$el);
			base.$items.each(function(i,el){
				var index = i + 1;
				var $a = $("<a href='#'></a>");
				
				// If a formatter function is present, use it
				if( typeof(base.options.navigationFormatter) == "function"){
					$a.html(base.options.navigationFormatter(index, $(this)));
				} else {
					$a.text(index);
				}
				$a.click(function(e){
                    base.gotoPage(index);
                    
                    if (base.options.hashTags)
						base.setHash('panel-' + index);
						
                    e.preventDefault();
				});
				base.$nav.append($a);
			});
			base.$navLinks = base.$nav.find('> a');
		};
		
		
		// Creates the Forward/Backward buttons
		base.buildNextBackButtons = function(){
			var $forward = $('<a class="arrow forward">&gt;</a>'),
				$back    = $('<a class="arrow back">&lt;</a>');
				
            // Bind to the forward and back buttons
            $back.click(function(e){
                base.goBack();
				e.preventDefault();
            });

            $forward.click(function(e){
                base.goForward();
				e.preventDefault();
            });

			// Append elements to page
			base.$wrapper.after($back).after($forward);
		};
		
		// Creates the Start/Stop button
		base.buildAutoPlay = function(){

			base.$startStop = $("<a href='#' id='start-stop'></a>").html(base.playing ? base.options.stopText :  base.options.startText);
			base.$el.append(base.$startStop);            
            base.$startStop.click(function(e){
				base.startStop(!base.playing);
				e.preventDefault();
            });

			// Use the same setting, but trigger the start;
			base.startStop(base.playing);
		};
		
		// Handles stopping and playing the slideshow
		// Pass startStop(false) to stop and startStop(true) to play
		base.startStop = function(playing){
			if(playing !== true) playing = false; // Default if not supplied is false
			
			// Update variable
			base.playing = playing;
			
			// Toggle playing and text
			if(base.options.autoPlay) base.$startStop.toggleClass("playing", playing).html( playing ? base.options.stopText : base.options.startText );
			
			if(playing){
				base.clearTimer(); // Just in case this was triggered twice in a row
				base.timer = window.setInterval(function(){
					base.goForward(true);
				}, base.options.delay);
			} else {
				base.clearTimer();
			};
		};
		
		base.clearTimer = function(){
			// Clear the timer only if it is set
			if(base.timer) window.clearInterval(base.timer);
		};
		
		// Taken from AJAXY jquery.history Plugin
		base.setHash = function ( hash ) {
			// Write hash
			if ( typeof window.location.hash !== 'undefined' ) {
				if ( window.location.hash !== hash ) {
					window.location.hash = hash;
				};
			} else if ( location.hash !== hash ) {
				location.hash = hash;
			};
			
			// Done
			return hash;
		};
		// <-- End AJAXY code


		// Trigger the initialization
        base.init();
    };

	
    $.anythingSlider.defaults = {
        easing: "swing",                // Anything other than "linear" or "swing" requires the easing plugin
        autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not
        startStopped: false,            // If autoPlay is on, this can force it to start stopped
        delay: 3000,                    // How long between slide transitions in AutoPlay mode
        animationTime: 600,             // How long the slide transition takes
        hashTags: true,                 // Should links change the hashtag in the URL?
        buildNavigation: true,          // If true, builds and list of anchor links to link to each slide
        pauseOnHover: true,             // If true, and autoPlay is enabled, the show will pause on hover
		startText: "Start",             // Start text
		stopText: "Stop",               // Stop text
		navigationFormatter: null       // Details at the top of the file on this use (advanced use)
    };
	

    $.fn.anythingSlider = function(options){
		if(typeof(options) == "object"){
		    return this.each(function(i){			
				(new $.anythingSlider(this, options));

	            // This plugin supports multiple instances, but only one can support hash-tag support
				// This disables hash-tags on all items but the first one
				options.hashTags = false;
	        });	
		} else if (typeof(options) == "number") {

			return this.each(function(i){
				var anySlide = $(this).data('AnythingSlider');
				if(anySlide){
					anySlide.gotoPage(options);
				}
			});
		}
    };

	
})(jQuery);

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.08
 */
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-1]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());

Cufon.replace('.social-services dt, h1, h2, h3', { fontFamily: 'Amerigo BT' });
Cufon.replace('#content .nav a', { fontFamily: 'Amerigo BT', hover:true });
Cufon.replace('h4', { fontFamily: 'Swis721 Th BT' });

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1999 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":184,"face":{"font-family":"Amerigo BT","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 14 5 3 5 5 6 2 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-33 -338 360 85","underline-thickness":"21.9727","underline-position":"-26.1914","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":92},"!":{"d":"30,-16v-1,-12,8,-21,19,-21v14,0,21,6,21,21v0,13,-8,19,-21,19v-12,0,-19,-7,-19,-19xm30,-236r40,0r-13,180r-13,0","w":92},"\"":{"d":"87,-252r0,97r-21,0r0,-97r21,0xm37,-252r0,97r-20,0r0,-97r20,0","w":103},"#":{"d":"133,-173r46,0r29,-83r25,0r-29,83r54,0r-7,21r-55,0r-16,48r58,0r-8,22r-58,0r-29,82r-26,0r30,-82r-47,0r-30,82r-25,0r30,-82r-57,0r8,-22r56,0r17,-48r-60,0r7,-21r61,0r29,-83r26,0xm154,-104r17,-48r-46,0r-17,48r46,0","w":276},"$":{"d":"95,-11v28,-4,48,-38,28,-63v-6,-7,-15,-14,-28,-22r0,85xm85,-223v-26,3,-38,36,-24,60v4,6,12,12,24,20r0,-80xm25,-175v0,-37,26,-58,60,-63r0,-24r10,0r0,23v23,0,43,2,61,7r0,42v-20,-11,-33,-36,-61,-34r0,88v42,27,67,28,67,74v0,40,-28,63,-67,66r0,21r-10,0r0,-21v-24,1,-43,-4,-63,-10r0,-41v21,12,30,36,63,37r0,-92v-37,-25,-60,-30,-60,-73"},"%":{"d":"133,-6v31,-3,32,-84,0,-87v-31,1,-32,86,0,87xm88,-49v0,-28,17,-55,45,-55v28,0,45,25,45,54v0,29,-17,55,-45,55v-28,0,-46,-24,-45,-54xm181,-204r6,6r-178,168r-5,-6xm55,-139v32,-2,31,-85,0,-88v-32,2,-32,86,0,88xm10,-182v0,-29,16,-57,45,-56v29,1,45,24,45,55v0,30,-17,55,-46,55v-27,0,-44,-25,-44,-54"},"&":{"d":"72,-116v-44,27,-33,111,30,106v21,-1,39,-5,53,-14xm177,-46v16,-32,20,-66,-10,-94r45,0v4,44,-3,83,-24,106v13,15,25,27,42,34r-52,0r-15,-14v-44,36,-153,18,-150,-47v2,-34,24,-49,53,-62v-17,-19,-30,-33,-31,-62v0,-32,25,-54,58,-54v33,0,57,18,56,49v-1,30,-23,48,-49,60xm92,-225v-29,-1,-37,33,-24,56v4,8,13,18,25,31v28,-14,46,-84,-1,-87","w":230},"'":{"d":"37,-252r0,97r-20,0r0,-97r20,0","w":53},"(":{"d":"85,75v-91,-53,-89,-277,0,-330v-50,78,-51,252,0,330","w":94},")":{"d":"10,75v50,-78,50,-253,0,-330v89,53,91,278,0,330","w":94},"*":{"d":"23,-245r34,45r-45,-33xm0,-206r56,8r-56,9r0,-17xm57,-196r-33,46r-12,-12xm58,-196r8,56r-16,0xm60,-196r45,33r-12,12xm115,-206r0,17r-56,-9xm93,-245r13,12r-47,33xm50,-255r16,0r-8,55","w":115},"+":{"d":"160,-118r95,0r0,21r-95,0r0,97r-20,0r0,-97r-95,0r0,-21r95,0r0,-97r20,0r0,97","w":299},",":{"d":"52,-38v30,1,23,48,10,66v-7,11,-16,18,-27,21v8,-13,15,-27,15,-47v-12,0,-19,-7,-19,-19v-1,-14,7,-22,21,-21","w":92},"-":{"d":"12,-102r76,0r0,27r-76,0r0,-27","w":98,"k":{"\u00f0":-13,"\u00f8":-13,"\u00d8":-13,"\u00c6":6,"o":-13,"Y":26,"X":13,"W":13,"V":6,"T":13,"Q":-13,"O":-13,"C":-10}},".":{"d":"51,3v-12,0,-19,-8,-19,-21v-1,-14,7,-24,21,-24v14,0,20,9,20,24v0,13,-9,21,-22,21","w":92},"\/":{"d":"80,-239r16,5r-93,256r-16,-5","w":83},"0":{"d":"90,-10v61,0,50,-143,35,-187v-6,-17,-18,-26,-33,-26v-41,0,-43,53,-43,109v0,55,2,104,41,104xm89,5v-59,0,-77,-55,-77,-123v-1,-68,25,-121,84,-121v56,0,76,56,76,122v0,68,-24,122,-83,122"},"1":{"d":"70,0v28,-44,9,-132,14,-198r-53,0v28,-9,55,-25,85,-42r0,193v0,23,4,33,13,47r-59,0"},"2":{"d":"161,-177v-7,69,-51,92,-107,150v45,-1,93,9,114,-23r-7,50r-151,0v59,-65,102,-95,113,-172v6,-41,-35,-66,-66,-41r-33,26r0,-43v57,-16,144,-11,137,53"},"3":{"d":"157,-185v-1,32,-25,50,-53,61v35,5,59,23,60,58v4,71,-82,80,-147,64r0,-46v19,12,28,36,56,38v32,2,55,-22,55,-53v0,-34,-24,-51,-61,-50v32,-19,51,-31,55,-69v3,-33,-43,-53,-69,-31r-33,28r0,-44v49,-15,139,-17,137,44"},"4":{"d":"114,-203r-79,112r79,0r0,-112xm100,0v12,-17,15,-38,14,-66r-113,0v36,-58,73,-113,116,-164r26,-9r0,148r33,0r0,25r-33,0v0,28,0,51,13,66r-56,0"},"5":{"d":"131,-70v0,-54,-49,-66,-100,-55r0,-108r126,0r0,28r-108,0r0,65v56,-20,117,4,117,65v0,73,-75,93,-142,73r0,-46v19,13,28,39,56,39v31,0,51,-28,51,-61"},"6":{"d":"135,-66v2,-49,-41,-65,-84,-51v-2,52,-3,109,44,109v29,0,39,-26,40,-58xm14,-98v-1,-85,44,-159,130,-136v9,3,17,9,24,16v-70,-16,-115,19,-116,91v47,-30,119,-5,119,56v0,45,-33,77,-78,76v-57,0,-78,-42,-79,-103"},"7":{"d":"22,-236r154,0v-33,79,-71,151,-96,239r-36,0r102,-212v-29,2,-65,-3,-89,4r-35,26r0,-57"},"8":{"d":"91,-8v38,0,62,-44,37,-73v-7,-8,-22,-19,-46,-32v-19,15,-35,29,-36,56v-1,29,16,49,45,49xm156,-187v-1,30,-19,45,-44,56v34,18,56,29,56,69v0,44,-33,68,-80,68v-39,0,-71,-25,-71,-62v0,-35,26,-53,56,-62v-26,-14,-44,-29,-45,-62v-1,-37,27,-59,65,-59v37,0,64,17,63,52xm93,-225v-35,0,-49,42,-26,65v7,8,19,15,36,23v30,-16,39,-88,-10,-88"},"9":{"d":"168,-138v0,103,-71,178,-155,123v71,12,116,-23,118,-91v-49,28,-119,5,-119,-57v0,-45,33,-76,78,-75v56,0,78,40,78,100xm47,-168v-3,50,40,64,85,52v2,-51,2,-108,-43,-109v-31,0,-40,24,-42,57"},":":{"d":"44,3v-14,0,-20,-8,-20,-22v0,-13,8,-22,21,-22v13,0,20,8,20,23v1,14,-7,21,-21,21xm45,-99v-15,0,-20,-9,-21,-22v0,-13,9,-22,21,-23v14,0,20,9,20,24v0,13,-7,21,-20,21","w":86},";":{"d":"44,-38v31,1,25,47,11,66v-7,11,-16,18,-27,21v8,-13,15,-27,15,-47v-12,0,-19,-7,-19,-19v0,-13,6,-22,20,-21xm45,-99v-15,0,-20,-9,-21,-22v0,-13,9,-22,21,-23v14,0,20,9,20,24v0,13,-7,21,-20,21","w":86},"<":{"d":"253,-179r-175,72r175,71r0,23r-207,-85r0,-18r207,-85r0,22","w":299},"=":{"d":"255,-63r-210,0r0,-21r210,0r0,21xm255,-131r-210,0r0,-20r210,0r0,20","w":299},">":{"d":"253,-116r0,18r-207,85r0,-23r176,-71r-176,-72r0,-22","w":299},"?":{"d":"56,-16v0,-11,9,-21,20,-21v14,0,21,7,21,21v0,12,-8,19,-21,19v-13,0,-20,-6,-20,-19xm21,-230v59,-23,153,-5,129,69v-12,39,-70,54,-67,106v-7,-2,-18,4,-17,-9v3,-40,53,-87,49,-121v4,-32,-34,-50,-57,-31r-37,30r0,-44","w":161},"@":{"d":"125,-78v0,41,42,50,67,27v19,-17,22,-48,30,-75v-4,-19,-16,-33,-37,-33v-37,0,-60,41,-60,81xm43,-90v-7,128,167,151,248,90r8,12v-31,22,-67,39,-116,38v-97,-2,-163,-48,-163,-142v0,-104,71,-164,176,-164v83,0,144,40,144,119v0,66,-34,111,-97,116v-23,2,-37,-9,-35,-32v-10,18,-26,31,-52,32v-37,0,-51,-22,-55,-59v-7,-70,90,-134,126,-68r10,-22r20,0r-27,114v0,11,6,17,18,16v46,-6,69,-46,70,-95v2,-65,-55,-105,-125,-103v-92,3,-145,56,-150,148","w":360},"A":{"d":"97,-203r-32,93r62,0xm59,-95v-6,31,-38,69,-13,95r-55,0v15,-13,22,-30,31,-53r69,-179r24,-8r64,188v7,23,17,37,30,52r-65,0v26,-26,-8,-65,-12,-95r-73,0","w":202,"k":{"\u2019":33,"\u2018":26,"\u201d":33,"\u201c":26,"\u00bb":-20,"Y":8,"W":8,"V":8,"T":18,"A":-13,";":-7,":":-7}},"B":{"d":"142,-63v0,-42,-30,-54,-76,-50r0,100v45,3,76,-8,76,-50xm130,-176v0,-37,-24,-51,-64,-47r0,96v39,4,64,-13,64,-49xm34,-52v0,-62,11,-142,-13,-184v65,0,146,-11,144,55v-1,36,-24,54,-58,59v39,1,71,22,71,60v0,70,-84,63,-157,62v10,-15,13,-28,13,-52","w":191,"k":{"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"\u00bb":-13,"\u00ab":-13,"Y":6,"W":6,"-":-11}},"C":{"d":"16,-112v0,-97,80,-148,176,-120r0,42v-21,-10,-31,-34,-59,-34v-55,0,-80,48,-80,109v0,66,36,121,99,101r42,-33r-6,45v-91,24,-172,-11,-172,-110","w":203,"k":{"\u2019":-13,"\u2018":-13,"\u201d":-13,"\u201c":-13,"\u00bb":-13,"\u00c5":-10,"Y":-10,"S":-7,"A":-10,"-":-8}},"D":{"d":"179,-118v0,-75,-35,-112,-116,-102r0,204v79,7,116,-26,116,-102xm32,-52v-3,-62,11,-143,-13,-184r84,0v73,-1,112,39,112,110v0,83,-37,129,-128,126r-68,0v9,-17,14,-26,13,-52","w":232,"k":{"\u2019":6,"\u201d":6,"\u00bb":-7,"\u00ab":-7,"\u00c5":6,"Y":15,"W":6,"A":6,"-":-13}},"E":{"d":"34,-52v0,-62,12,-142,-13,-184r144,0r0,46v-18,-10,-26,-31,-52,-31r-47,0r0,96v36,3,64,-3,82,-22r0,55v-15,-19,-44,-23,-82,-20r0,98v25,-2,53,3,69,-8r36,-26r-7,48r-143,0v9,-16,13,-29,13,-52","w":183},"F":{"d":"34,-52v0,-62,12,-142,-13,-184r144,0r0,46v-18,-10,-26,-31,-52,-31r-47,0r0,96v36,3,64,-3,82,-22r0,55v-15,-19,-44,-23,-82,-20v1,41,-6,88,13,112r-58,0v9,-16,13,-29,13,-52","w":169,"k":{"\u2019":-20,"\u2018":-20,"\u201d":-20,"\u201c":-20,"\u00bb":-13,"\u00ab":-7,"\u00f8":10,"\u00e6":11,"\u00c5":20,"u":6,"r":8,"o":10,"e":10,"a":11,"T":-13,"A":20,";":13,":":13,".":55,"-":-13,",":55}},"G":{"d":"18,-112v0,-100,82,-146,178,-120r0,42v-19,-12,-30,-34,-60,-34v-55,0,-81,47,-81,107v0,74,34,118,109,105v1,-33,1,-64,-14,-83r59,0v-15,20,-15,56,-14,92v-92,26,-177,-8,-177,-109","w":221,"k":{"\u00bb":-7,"W":6,"T":6,"-":-13}},"H":{"d":"34,-52v0,-62,11,-142,-13,-184r57,0v-16,25,-11,67,-12,107r100,0v-1,-40,5,-83,-13,-107r58,0v-25,42,-10,123,-13,186v-1,24,4,34,13,50r-58,0v19,-25,12,-72,13,-114r-100,0v1,42,-5,88,12,114r-57,0v10,-15,13,-28,13,-52","w":231,"k":{";":6,":":6,".":13,",":13}},"I":{"d":"34,-52v0,-62,11,-142,-13,-184r57,0v-23,44,-12,123,-12,186v0,24,4,34,12,50r-57,0v10,-15,13,-28,13,-52","w":98},"J":{"d":"37,-184v0,-24,-4,-37,-14,-52r58,0v-27,52,-13,149,-13,222v0,70,-37,95,-101,87r0,-42v14,9,23,24,42,28v23,-2,28,-26,28,-56r0,-187","w":98},"K":{"d":"148,-211v8,-7,4,-18,-3,-25r62,0v-40,28,-71,69,-106,102v37,44,61,102,110,134r-58,0r-84,-121xm33,-52v0,-62,11,-142,-13,-184r58,0v-25,42,-10,123,-13,186v-1,24,4,34,13,50r-58,0v10,-15,13,-28,13,-52","w":199,"k":{"\u2019":-27,"\u2018":-13,"\u201d":-27,"\u201c":-13,"\u00bb":-7,"\u00ab":13,"\u00f8":6,"\u00d8":11,"\u00c5":-7,"y":8,"u":6,"o":6,"e":6,"Y":-10,"W":-7,"T":-13,"O":11,"C":10,"A":-7,"-":26}},"L":{"d":"33,-52v0,-62,12,-142,-13,-184r58,0v-27,52,-7,149,-13,222v22,-2,49,6,60,-8r35,-26r-6,48r-134,0v9,-16,13,-29,13,-52","w":159,"k":{"\u2019":46,"\u2018":40,"\u201d":46,"\u201c":40,"\u00bb":-27,"\u00e6":-7,"\u00c5":-20,"y":6,"u":-7,"a":-7,"Y":23,"W":24,"V":23,"T":23,"A":-20}},"M":{"d":"31,-52v0,-62,12,-143,-13,-184r49,0r75,186r75,-186r48,0v-25,42,-10,123,-13,186v-1,24,4,34,13,50r-57,0v28,-44,9,-133,14,-199r-82,199r-11,0r-80,-199v4,66,-12,154,13,199r-44,0v10,-17,13,-26,13,-52","w":285},"N":{"d":"31,-52v0,-62,12,-143,-13,-184r43,0r116,177v-4,-60,12,-138,-14,-177r45,0v-28,57,-7,160,-13,238r-16,0r-129,-197v4,65,-12,151,13,195r-45,0v10,-17,13,-26,13,-52","w":225},"O":{"d":"189,-113v0,-58,-18,-110,-68,-110v-47,0,-67,48,-67,103v0,58,19,110,68,110v47,0,67,-48,67,-103xm118,5v-64,0,-100,-52,-100,-119v0,-71,38,-126,107,-125v63,0,101,53,101,119v0,71,-39,125,-108,125","w":243,"k":{"\u00bb":-7,"Y":11,"X":20,".":21,"-":-13,",":21}},"P":{"d":"133,-168v0,-42,-24,-59,-69,-54r0,108v42,5,69,-13,69,-54xm32,-52v-3,-62,11,-143,-13,-184v74,-2,150,-7,150,68v0,51,-47,76,-105,68v1,38,-4,78,13,100r-58,0v9,-17,14,-26,13,-52","w":174,"k":{"\u2019":-13,"\u2018":-20,"\u201d":-13,"\u201c":-20,"\u00bb":-20,"\u00f8":6,"\u00e6":13,"\u00c5":16,"y":-15,"u":-7,"o":6,"e":13,"a":13,"Y":-7,"W":-7,"U":-7,"A":16,".":53,"-":6,",":53}},"Q":{"d":"226,-122v0,63,-30,112,-81,122v37,16,60,53,113,46v-18,22,-42,40,-69,20r-82,-63v-56,-7,-89,-53,-89,-118v0,-72,39,-124,107,-124v63,-1,101,51,101,117xm189,-113v0,-58,-18,-110,-68,-110v-47,0,-67,48,-67,103v0,58,19,110,68,110v47,0,67,-48,67,-103","w":243,"k":{"\u00bb":-7,"-":-13}},"R":{"d":"131,-176v1,-38,-25,-50,-65,-47r0,96v40,3,65,-12,65,-49xm34,-52v-3,-62,11,-143,-13,-184v68,0,147,-12,145,55v-1,37,-25,58,-61,63v31,41,57,88,98,118r-53,0r-84,-121v2,44,-7,95,13,121r-58,0v9,-17,14,-26,13,-52","w":197,"k":{"\u2019":13,"\u201d":13,"\u00bb":-7,"\u00ab":20,"\u00f8":13,"\u00e6":6,"u":6,"o":13,"e":13,"a":6,"Y":13,"W":13,"V":6,"T":6,"C":8,".":6,"-":26,",":6}},"S":{"d":"32,-145v-37,-69,49,-114,117,-87r0,42v-19,-11,-29,-32,-55,-35v-30,-4,-51,35,-33,61v24,34,97,43,97,101v0,65,-81,82,-137,58r0,-42v19,11,31,33,57,36v48,5,65,-55,24,-79v-24,-14,-58,-32,-70,-55","w":174,"k":{"S":6}},"T":{"d":"69,0v27,-51,7,-148,13,-220v-39,-6,-56,14,-78,30r0,-46r188,0r0,46v-21,-15,-36,-36,-78,-30v5,73,-13,169,13,220r-58,0","w":193,"k":{"\u2019":-20,"\u2018":-20,"\u201d":-20,"\u201c":-20,"\u00bb":26,"\u00ab":40,"\u00f8":41,"\u00e6":41,"\u00c5":18,"y":41,"w":41,"u":34,"s":34,"r":34,"o":41,"e":41,"c":41,"a":41,"T":-20,"C":6,"A":18,";":40,":":40,".":46,"-":13,",":46}},"U":{"d":"27,-68v-2,-57,10,-131,-13,-168r58,0v-23,36,-13,106,-13,161v0,46,12,63,54,66v83,5,58,-99,58,-175v0,-26,-3,-35,-13,-52r50,0v-24,35,-14,103,-14,158v0,64,-28,84,-84,84v-56,0,-81,-20,-83,-74","w":221,"k":{"Z":6,"J":-7}},"V":{"d":"163,-205v6,-12,-1,-20,-8,-31r54,0v-49,64,-65,159,-100,236r-24,0r-67,-196v-7,-17,-14,-28,-26,-40r65,0v-8,10,-13,21,-7,38r55,165","w":198,"k":{"\u2019":-20,"\u2018":-20,"\u201d":-20,"\u201c":-20,"\u00ab":20,"\u00f8":20,"\u00e6":26,"\u00c5":13,"u":10,"o":20,"i":-7,"e":24,"a":26,"A":13,";":16,":":16,".":53,"-":6,",":53}},"W":{"d":"279,-207v3,-12,-1,-21,-8,-29r52,0v-12,12,-19,25,-25,42r-62,194r-21,0r-56,-188r-54,188r-23,0r-57,-197v-4,-17,-13,-27,-24,-39r65,0v-9,10,-12,19,-8,35r42,154r55,-189r23,0r56,189","w":315,"k":{"\u2019":-20,"\u2018":-27,"\u201d":-20,"\u201c":-27,"\u00ab":13,"\u00f8":18,"\u00e6":24,"\u00c5":8,"u":15,"r":16,"o":18,"i":-7,"e":23,"a":24,"A":8,";":18,":":18,".":50,"-":13,",":50}},"X":{"d":"59,-30v-7,11,-3,22,5,30r-56,0v32,-33,55,-76,82,-115v-28,-40,-48,-86,-82,-121r67,0v-9,10,-10,22,-2,34r36,59v13,-26,31,-47,41,-76v0,-7,-4,-11,-8,-17r55,0v-29,30,-53,72,-79,107r57,94v8,12,18,25,30,35r-66,0v9,-11,11,-19,3,-31r-43,-70","w":209,"k":{"\u2019":-7,"\u201d":-7,"\u00bb":-13,"\u00ab":6,"\u00d8":20,"e":13,"T":6,"O":20,"C":16,"-":13}},"Y":{"d":"66,0v17,-24,12,-67,13,-108v-30,-42,-51,-92,-87,-128r68,0v-9,10,-11,20,-3,32r45,74r45,-89v-1,-7,-5,-11,-8,-17r56,0v-34,32,-57,79,-84,119v1,43,-6,92,13,117r-58,0","w":191,"k":{"\u2019":-13,"\u2018":-13,"\u201d":-13,"\u201c":-13,"\u00bb":13,"\u00ab":26,"\u00f8":41,"\u00e6":38,"\u00d8":16,"\u00c5":15,"u":31,"o":41,"e":44,"a":38,"O":16,"C":16,"A":15,";":31,":":31,".":46,"-":26,",":46}},"Z":{"d":"137,-221v-55,-2,-79,-2,-113,29r0,-44r158,0r-127,221v48,-3,78,10,109,-19v7,-7,13,-11,18,-14r-6,48r-167,0","w":194,"k":{"\u2019":-13,"\u2018":-7,"\u201d":-13,"\u201c":-7,"\u00bb":-13}},"[":{"d":"57,30v1,23,9,29,22,45r-47,0r0,-330r47,0v-9,15,-22,22,-22,50r0,235","w":96},"\\":{"d":"-13,-234r16,-5r93,256r-16,5","w":83},"]":{"d":"40,-213v1,-20,-15,-28,-22,-42r47,0r0,330r-47,0v14,-16,22,-25,22,-50r0,-238","w":96},"^":{"d":"194,-256r91,98r-27,0r-78,-77r-78,77r-28,0r92,-98r28,0","w":360},"_":{"d":"180,64r0,21r-180,0r0,-21r180,0","w":180},"`":{"d":"76,-248r34,60r-83,-60r49,0","w":180},"a":{"d":"47,-48v0,28,31,33,61,29r0,-62v-36,4,-61,5,-61,33xm30,-158v42,-11,108,-31,108,41v0,41,-7,91,15,111r-37,10r-7,-20v-49,33,-90,24,-94,-27v-4,-43,45,-51,93,-47v1,-31,4,-66,-26,-65v-5,-2,-31,17,-52,34r0,-37","w":164},"b":{"d":"143,-81v0,-49,-33,-74,-83,-64r0,126v45,19,83,-12,83,-62xm30,5v-6,-83,16,-192,-16,-250r46,-10r0,107v21,-12,27,-20,51,-21v39,0,63,38,63,79v0,63,-60,117,-115,81","w":188},"c":{"d":"17,-74v0,-70,58,-112,130,-89r0,39v-17,-10,-30,-26,-52,-31v-29,1,-45,36,-45,70v0,61,48,76,107,65v-17,14,-37,25,-65,25v-44,1,-75,-35,-75,-79","w":154},"d":{"d":"49,-83v0,50,35,74,83,63r0,-126v-45,-20,-83,13,-83,63xm132,-157v0,-38,2,-66,-17,-88r47,-10r0,198v0,28,3,37,14,53r-44,9r0,-21v-16,10,-32,20,-52,21v-39,1,-64,-39,-64,-81v0,-61,61,-117,116,-81","w":191},"e":{"d":"18,-80v0,-71,78,-117,124,-69v12,12,17,33,18,58r-110,1v-4,65,49,82,112,69v-18,16,-38,24,-69,25v-46,0,-75,-35,-75,-84xm124,-110v5,-42,-40,-61,-62,-31v-7,10,-11,23,-12,41","w":174},"f":{"d":"32,-167v-10,-73,46,-99,108,-82r0,36v-15,-9,-24,-23,-43,-27v-35,-1,-35,35,-34,73r41,0r0,16r-41,0v4,52,-11,120,14,151r-58,0v23,-34,10,-98,13,-151r-22,0r0,-16r22,0","w":104,"k":{"\u2019":-60,"\u2018":-53,"\u201d":-60,"\u201c":-53,"\u00bb":-27,"y":-20,"w":-20,"t":-7,";":-7,":":-7,".":13,",":13}},"g":{"d":"141,21v0,-35,-56,-15,-90,-23v-25,25,-7,60,34,60v27,0,56,-14,56,-37xm85,-73v44,-2,34,-85,-4,-84v-19,0,-29,17,-29,37v-1,23,12,47,33,47xm21,-113v-3,-48,64,-72,99,-44r53,-12r0,26r-48,-11v42,33,8,109,-57,92v-8,16,-3,34,22,32v37,-2,77,-4,74,35v-3,46,-39,67,-87,69v-31,1,-66,-14,-68,-38v4,-23,16,-24,38,-41v-30,-15,-6,-47,18,-58v-25,-5,-42,-22,-44,-50","w":181},"h":{"d":"30,-52v0,-67,13,-150,-16,-193r46,-10r0,105v28,-12,36,-18,61,-19v71,-3,20,124,54,169r-57,0v18,-21,12,-60,14,-98v2,-47,-28,-53,-72,-48v3,51,-9,114,13,146r-56,0v9,-17,13,-27,13,-52","w":187},"i":{"d":"32,-52v-1,-41,6,-85,-14,-108r44,-10v4,58,-11,132,13,170r-56,0v10,-15,13,-28,13,-52xm27,-231v0,-10,7,-19,19,-19v11,0,20,8,19,19v0,12,-7,19,-19,19v-12,0,-19,-7,-19,-19","w":92},"j":{"d":"32,4v0,-56,12,-129,-14,-164r44,-10r0,149v2,72,-17,103,-84,94r0,-38v12,8,19,19,34,24v22,-3,20,-24,20,-55xm28,-231v-1,-11,8,-19,19,-19v12,0,19,9,19,19v0,12,-7,19,-19,19v-12,0,-19,-7,-19,-19","w":92},"k":{"d":"114,-142v9,-7,5,-18,-1,-25r63,0v-31,18,-57,43,-83,66v29,33,50,76,87,101r-50,0r-66,-90xm29,-52v0,-65,14,-150,-14,-193r44,-10r0,203v0,23,3,37,13,52r-56,0v10,-17,13,-26,13,-52","w":176,"k":{"\u00f8":6,"\u00e6":6,"y":-7,"o":6,"e":6,"a":6}},"l":{"d":"29,-52v0,-65,14,-150,-14,-193r44,-10r0,203v0,26,3,35,13,52r-56,0v10,-15,13,-28,13,-52","w":88},"m":{"d":"31,-52v0,-40,7,-86,-14,-108r44,-10r0,20v32,-18,68,-29,90,-1v45,-26,105,-30,105,43v0,40,-6,85,13,108r-57,0v17,-22,11,-60,13,-98v3,-48,-28,-53,-72,-48v14,38,-7,114,19,146r-57,0v17,-22,11,-60,13,-98v2,-45,-25,-54,-67,-48v3,51,-9,116,14,146r-57,0v10,-15,13,-28,13,-52","w":280},"n":{"d":"30,-52v0,-41,6,-86,-15,-108r45,-10r0,20v28,-12,36,-18,61,-19v71,-3,20,124,54,169r-57,0v18,-21,12,-60,14,-98v2,-47,-28,-53,-72,-48v3,51,-9,114,13,146r-56,0v9,-17,13,-27,13,-52","w":187,"k":{"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"\u00bb":-13}},"o":{"d":"98,-8v64,-1,56,-148,-3,-148v-60,1,-58,148,3,148xm95,5v-47,0,-78,-39,-78,-87v0,-48,34,-87,81,-87v46,0,79,39,79,88v0,49,-34,86,-82,86","w":193,"k":{"\u2018":13,"\u201c":13,"x":6,"-":-13}},"p":{"d":"143,-83v0,-50,-34,-74,-83,-63r0,126v43,20,83,-13,83,-63xm30,22v0,-62,13,-143,-15,-182r45,-10r0,21v14,-11,31,-21,51,-21v39,0,65,39,65,81v0,61,-62,117,-116,80v0,34,-2,64,13,83r-56,0v9,-17,13,-27,13,-52","w":191},"q":{"d":"49,-85v0,50,32,71,83,64r0,-126v-44,-19,-83,12,-83,62xm18,-76v0,-63,60,-118,115,-81r29,-14r0,195v0,24,4,34,13,50r-56,0v15,-21,13,-55,13,-92v-20,12,-28,19,-51,20v-39,0,-63,-37,-63,-78","w":188},"r":{"d":"31,-52v0,-40,7,-86,-14,-108r44,-10r0,24v18,-14,34,-28,61,-20r0,36v-14,-12,-36,-16,-61,-13v3,50,-9,113,14,143r-57,0v10,-15,13,-28,13,-52","w":126,"k":{"\u2019":-13,"\u2018":-13,"\u201d":-13,"\u201c":-13,"\u00bb":-13,"\u00f8":6,"y":-13,"x":-7,"w":-13,"v":-13,"q":6,"o":6,"g":6,"f":-7,"e":6,"d":6,"c":6,";":-7,":":-7,".":40,",":40}},"s":{"d":"21,-121v-1,-46,57,-56,101,-42r0,38v-25,-17,-29,-25,-50,-31v-18,-1,-32,24,-18,39v22,23,75,26,75,69v0,54,-65,61,-110,44r0,-40v26,20,30,30,54,35v30,-1,34,-44,4,-55v-27,-9,-55,-23,-56,-57","w":143},"t":{"d":"68,4v-63,0,-30,-99,-38,-155r-29,0v23,-19,43,-40,59,-63r0,47r55,0r0,16r-55,0r0,98v-5,42,30,38,64,34v-14,12,-34,22,-56,23","w":120},"u":{"d":"68,2v-78,2,-17,-130,-56,-162r44,-10v8,62,-29,167,56,150v4,0,10,0,16,-1v-3,-49,10,-111,-15,-139r45,-10v4,56,-12,130,14,164r-44,10r0,-22v-21,11,-35,20,-60,20","w":187},"v":{"d":"117,-133v6,-13,3,-24,-5,-34r50,0v-37,42,-49,113,-74,169r-21,0v-24,-55,-38,-129,-74,-169r64,0v-9,13,-11,19,-6,34r35,106","w":156,"k":{"\u2019":-13,"\u2018":-13,"\u201d":-13,"\u201c":-13,"\u00bb":-20,";":-7,":":-7,".":29,"-":-7,",":29}},"w":{"d":"215,-135v5,-14,2,-23,-6,-32r49,0v-31,42,-49,116,-72,169r-19,0r-41,-120r-41,120r-20,0v-24,-57,-33,-125,-71,-169r65,0v-7,11,-13,18,-8,33r31,99r44,-132r15,0r45,134","w":254,"k":{"\u2019":-13,"\u2018":-13,"\u201d":-13,"\u201c":-13,"\u00bb":-20,".":29,"-":-7,",":29}},"x":{"d":"74,-67v-8,21,-42,43,-24,67r-47,0v24,-22,42,-53,63,-80v-21,-29,-37,-63,-64,-87r60,0v-16,25,17,44,23,63v8,-20,39,-40,21,-63r47,0v-23,21,-41,49,-60,75v23,30,40,67,69,92r-62,0v18,-25,-19,-47,-26,-67","w":166,"k":{"\u00f8":10,"o":10,"e":13,"c":13}},"y":{"d":"121,-135v6,-13,2,-23,-6,-32r49,0v-49,61,-54,170,-103,230v-12,15,-35,14,-56,9r0,-38v15,12,35,39,52,10v6,-9,12,-23,18,-41v-27,-56,-41,-126,-79,-170r64,0v-8,9,-13,19,-7,32r37,102","w":159,"k":{"\u2019":-13,"\u2018":-13,"\u201d":-13,"\u201c":-13,"\u00bb":-20,".":34,"-":-7,",":34}},"z":{"d":"25,-167r129,0r-97,152v21,-2,49,5,62,-5r33,-25r0,45r-140,0r97,-152v-17,1,-39,-3,-51,4r-33,23r0,-42","w":166},"{":{"d":"151,-237v-85,-22,-6,135,-79,144v41,6,35,53,35,101v0,37,8,44,44,43r0,22v-50,1,-70,-11,-70,-64v0,-49,8,-99,-51,-91r0,-22v56,7,53,-40,51,-91v-2,-54,19,-65,70,-65r0,23","w":180},"|":{"d":"101,-275r0,360r-22,0r0,-360r22,0","w":180},"}":{"d":"29,-260v50,0,72,10,70,65v-2,50,-6,98,51,91r0,22v-56,-8,-53,40,-51,91v2,55,-19,65,-70,64r0,-22v87,20,5,-135,79,-144v-41,-7,-35,-54,-35,-102v0,-36,-9,-44,-44,-43r0,-22","w":180},"~":{"d":"201,-105v28,0,46,-12,68,-28r0,23v-20,14,-39,24,-68,25v-33,1,-76,-26,-102,-24v-29,2,-46,12,-68,28r0,-23v20,-15,40,-25,68,-26v33,-1,74,25,102,25","w":299},"\u00c4":{"d":"97,-203r-32,93r62,0xm59,-95v-6,31,-38,69,-13,95r-55,0v15,-13,22,-30,31,-53r69,-179r24,-8r64,188v7,23,17,37,30,52r-65,0v26,-26,-8,-65,-12,-95r-73,0xm122,-286v0,-11,7,-20,19,-19v13,0,19,7,19,19v0,12,-7,18,-19,18v-13,0,-19,-6,-19,-18xm41,-286v0,-11,7,-20,18,-19v14,0,19,6,20,19v0,12,-8,18,-20,18v-12,0,-18,-6,-18,-18","w":202},"\u00c5":{"d":"97,-203r-32,93r62,0xm59,-95v-6,31,-38,69,-13,95r-55,0v15,-13,22,-30,31,-53r69,-179r24,-8r64,188v7,23,17,37,30,52r-65,0v26,-26,-8,-65,-12,-95r-73,0xm123,-296v0,-13,-11,-24,-24,-24v-13,0,-23,11,-23,24v0,13,10,24,23,24v13,0,24,-11,24,-24xm58,-297v0,-22,19,-41,41,-41v23,0,42,19,42,41v1,23,-19,43,-42,42v-23,0,-41,-19,-41,-42","w":202,"k":{"\u2019":33,"\u2018":26,"\u201d":33,"\u201c":26,"\u00bb":-20,"Y":8,"W":8,"V":8,"T":18,";":-7,":":-7}},"\u00c7":{"d":"16,-112v0,-97,80,-148,176,-120r0,42v-21,-10,-31,-34,-59,-34v-55,0,-80,48,-80,109v0,66,36,121,99,101r42,-33r-6,45v-91,24,-172,-11,-172,-110xm91,73v22,-7,41,-43,13,-53r0,-20r12,0r0,12v17,1,29,11,29,28v0,23,-28,41,-54,33","w":203},"\u00c9":{"d":"34,-52v0,-62,12,-142,-13,-184r144,0r0,46v-18,-10,-26,-31,-52,-31r-47,0r0,96v36,3,64,-3,82,-22r0,55v-15,-19,-44,-23,-82,-20r0,98v25,-2,53,3,69,-8r36,-26r-7,48r-143,0v9,-16,13,-29,13,-52xm113,-318r49,0r-83,60","w":183},"\u00d1":{"d":"54,-268v3,-24,22,-48,49,-34v23,13,51,24,68,-4v-3,24,-23,47,-50,34v-17,-4,-33,-24,-50,-12v-5,3,-10,9,-17,16xm31,-52v0,-62,12,-143,-13,-184r43,0r116,177v-4,-60,12,-138,-14,-177r45,0v-28,57,-7,160,-13,238r-16,0r-129,-197v4,65,-12,151,13,195r-45,0v10,-17,13,-26,13,-52","w":225},"\u00d6":{"d":"189,-113v0,-58,-18,-110,-68,-110v-47,0,-67,48,-67,103v0,58,19,110,68,110v47,0,67,-48,67,-103xm118,5v-64,0,-100,-52,-100,-119v0,-71,38,-126,107,-125v63,0,101,53,101,119v0,71,-39,125,-108,125xm143,-286v0,-11,7,-20,19,-19v13,0,19,7,19,19v0,12,-7,18,-19,18v-13,0,-19,-6,-19,-18xm62,-286v0,-11,7,-20,18,-19v14,0,19,6,20,19v0,12,-8,18,-20,18v-12,0,-18,-6,-18,-18","w":243},"\u00dc":{"d":"27,-68v-2,-57,10,-131,-13,-168r58,0v-23,36,-13,106,-13,161v0,46,12,63,54,66v83,5,58,-99,58,-175v0,-26,-3,-35,-13,-52r50,0v-24,35,-14,103,-14,158v0,64,-28,84,-84,84v-56,0,-81,-20,-83,-74xm138,-286v0,-11,7,-20,19,-19v13,0,19,7,19,19v0,12,-7,18,-19,18v-13,0,-19,-6,-19,-18xm57,-286v0,-11,7,-20,18,-19v14,0,19,6,20,19v0,12,-8,18,-20,18v-12,0,-18,-6,-18,-18","w":221},"\u00e1":{"d":"47,-48v0,28,31,33,61,29r0,-62v-36,4,-61,5,-61,33xm30,-158v42,-11,108,-31,108,41v0,41,-7,91,15,111r-37,10r-7,-20v-49,33,-90,24,-94,-27v-4,-43,45,-51,93,-47v1,-31,4,-66,-26,-65v-5,-2,-31,17,-52,34r0,-37xm96,-248r49,0r-83,60","w":164},"\u00e0":{"d":"47,-48v0,28,31,33,61,29r0,-62v-36,4,-61,5,-61,33xm30,-158v42,-11,108,-31,108,41v0,41,-7,91,15,111r-37,10r-7,-20v-49,33,-90,24,-94,-27v-4,-43,45,-51,93,-47v1,-31,4,-66,-26,-65v-5,-2,-31,17,-52,34r0,-37xm68,-248r34,60r-83,-60r49,0","w":164},"\u00e2":{"d":"82,-252r63,64r-63,-29r-63,29xm47,-48v0,28,31,33,61,29r0,-62v-36,4,-61,5,-61,33xm30,-158v42,-11,108,-31,108,41v0,41,-7,91,15,111r-37,10r-7,-20v-49,33,-90,24,-94,-27v-4,-43,45,-51,93,-47v1,-31,4,-66,-26,-65v-5,-2,-31,17,-52,34r0,-37","w":164},"\u00e4":{"d":"47,-48v0,28,31,33,61,29r0,-62v-36,4,-61,5,-61,33xm30,-158v42,-11,108,-31,108,41v0,41,-7,91,15,111r-37,10r-7,-20v-49,33,-90,24,-94,-27v-4,-43,45,-51,93,-47v1,-31,4,-66,-26,-65v-5,-2,-31,17,-52,34r0,-37xm103,-216v0,-11,7,-20,19,-19v13,0,19,7,19,19v0,12,-7,18,-19,18v-13,0,-19,-6,-19,-18xm22,-216v0,-11,7,-20,18,-19v14,0,19,6,20,19v0,12,-8,18,-20,18v-12,0,-18,-6,-18,-18","w":164},"\u00e3":{"d":"23,-198v4,-23,22,-46,50,-34v25,11,50,26,68,-3v-4,23,-23,47,-50,34v-24,-11,-50,-26,-68,3xm47,-48v0,28,31,33,61,29r0,-62v-36,4,-61,5,-61,33xm30,-158v42,-11,108,-31,108,41v0,41,-7,91,15,111r-37,10r-7,-20v-49,33,-90,24,-94,-27v-4,-43,45,-51,93,-47v1,-31,4,-66,-26,-65v-5,-2,-31,17,-52,34r0,-37","w":164},"\u00e5":{"d":"47,-48v0,28,31,33,61,29r0,-62v-36,4,-61,5,-61,33xm30,-158v42,-11,108,-31,108,41v0,41,-7,91,15,111r-37,10r-7,-20v-49,33,-90,24,-94,-27v-4,-43,45,-51,93,-47v1,-31,4,-66,-26,-65v-5,-2,-31,17,-52,34r0,-37xm107,-225v0,-12,-12,-24,-24,-24v-13,0,-23,12,-23,24v0,12,10,23,23,23v13,0,24,-10,24,-23xm42,-226v0,-22,19,-41,41,-41v22,0,42,19,42,41v0,23,-19,43,-42,42v-23,0,-41,-19,-41,-42","w":164},"\u00e7":{"d":"17,-74v0,-70,58,-112,130,-89r0,39v-17,-10,-30,-26,-52,-31v-29,1,-45,36,-45,70v0,61,48,76,107,65v-17,14,-37,25,-65,25v-44,1,-75,-35,-75,-79xm65,73v22,-7,41,-43,13,-53r0,-20r12,0r0,12v17,1,29,11,29,28v0,23,-28,41,-54,33","w":154},"\u00e9":{"d":"18,-80v0,-71,78,-117,124,-69v12,12,17,33,18,58r-110,1v-4,65,49,82,112,69v-18,16,-38,24,-69,25v-46,0,-75,-35,-75,-84xm124,-110v5,-42,-40,-61,-62,-31v-7,10,-11,23,-12,41xm108,-248r49,0r-83,60","w":174},"\u00e8":{"d":"18,-80v0,-71,78,-117,124,-69v12,12,17,33,18,58r-110,1v-4,65,49,82,112,69v-18,16,-38,24,-69,25v-46,0,-75,-35,-75,-84xm124,-110v5,-42,-40,-61,-62,-31v-7,10,-11,23,-12,41xm80,-248r34,60r-83,-60r49,0","w":174},"\u00ea":{"d":"94,-252r64,64r-64,-29r-63,29xm18,-80v0,-71,78,-117,124,-69v12,12,17,33,18,58r-110,1v-4,65,49,82,112,69v-18,16,-38,24,-69,25v-46,0,-75,-35,-75,-84xm124,-110v5,-42,-40,-61,-62,-31v-7,10,-11,23,-12,41","w":174},"\u00eb":{"d":"18,-80v0,-71,78,-117,124,-69v12,12,17,33,18,58r-110,1v-4,65,49,82,112,69v-18,16,-38,24,-69,25v-46,0,-75,-35,-75,-84xm124,-110v5,-42,-40,-61,-62,-31v-7,10,-11,23,-12,41xm115,-216v0,-11,7,-20,19,-19v13,0,19,7,19,19v0,12,-7,18,-19,18v-13,0,-19,-6,-19,-18xm34,-216v0,-11,7,-20,18,-19v14,0,19,6,20,19v0,12,-8,18,-20,18v-12,0,-18,-6,-18,-18","w":174},"\u00ed":{"d":"32,-52v-1,-41,6,-85,-14,-108r44,-10v4,58,-11,132,13,170r-56,0v10,-15,13,-28,13,-52xm60,-248r49,0r-83,60","w":92},"\u00ec":{"d":"32,-52v-1,-41,6,-85,-14,-108r44,-10v4,58,-11,132,13,170r-56,0v10,-15,13,-28,13,-52xm32,-248r34,60r-83,-60r49,0","w":92},"\u00ee":{"d":"46,-252r64,64r-64,-29r-63,29xm32,-52v-1,-41,6,-85,-14,-108r44,-10v4,58,-11,132,13,170r-56,0v10,-15,13,-28,13,-52","w":92},"\u00ef":{"d":"32,-52v-1,-41,6,-85,-14,-108r44,-10v4,58,-11,132,13,170r-56,0v10,-15,13,-28,13,-52xm67,-216v0,-11,7,-20,19,-19v13,0,19,7,19,19v0,12,-7,18,-19,18v-13,0,-19,-6,-19,-18xm-14,-216v0,-11,7,-20,18,-19v14,0,19,6,20,19v0,12,-8,18,-20,18v-12,0,-18,-6,-18,-18","w":92},"\u00f1":{"d":"35,-198v4,-23,22,-46,50,-34v25,11,50,26,68,-3v-4,23,-23,47,-50,34v-24,-11,-50,-26,-68,3xm30,-52v0,-41,6,-86,-15,-108r45,-10r0,20v28,-12,36,-18,61,-19v71,-3,20,124,54,169r-57,0v18,-21,12,-60,14,-98v2,-47,-28,-53,-72,-48v3,51,-9,114,13,146r-56,0v9,-17,13,-27,13,-52","w":187},"\u00f3":{"d":"98,-8v64,-1,56,-148,-3,-148v-60,1,-58,148,3,148xm95,5v-47,0,-78,-39,-78,-87v0,-48,34,-87,81,-87v46,0,79,39,79,88v0,49,-34,86,-82,86xm111,-248r49,0r-83,60","w":193},"\u00f2":{"d":"98,-8v64,-1,56,-148,-3,-148v-60,1,-58,148,3,148xm95,5v-47,0,-78,-39,-78,-87v0,-48,34,-87,81,-87v46,0,79,39,79,88v0,49,-34,86,-82,86xm83,-248r34,60r-83,-60r49,0","w":193},"\u00f4":{"d":"97,-252r63,64r-63,-29r-63,29xm98,-8v64,-1,56,-148,-3,-148v-60,1,-58,148,3,148xm95,5v-47,0,-78,-39,-78,-87v0,-48,34,-87,81,-87v46,0,79,39,79,88v0,49,-34,86,-82,86","w":193},"\u00f6":{"d":"98,-8v64,-1,56,-148,-3,-148v-60,1,-58,148,3,148xm95,5v-47,0,-78,-39,-78,-87v0,-48,34,-87,81,-87v46,0,79,39,79,88v0,49,-34,86,-82,86xm118,-216v0,-11,7,-20,19,-19v13,0,19,7,19,19v0,12,-7,18,-19,18v-13,0,-19,-6,-19,-18xm37,-216v0,-11,7,-20,18,-19v14,0,19,6,20,19v0,12,-8,18,-20,18v-12,0,-18,-6,-18,-18","w":193},"\u00f5":{"d":"38,-198v4,-23,23,-47,50,-34v24,11,50,26,68,-3v-4,23,-23,47,-50,34v-24,-11,-50,-26,-68,3xm98,-8v64,-1,56,-148,-3,-148v-60,1,-58,148,3,148xm95,5v-47,0,-78,-39,-78,-87v0,-48,34,-87,81,-87v46,0,79,39,79,88v0,49,-34,86,-82,86","w":193},"\u00fa":{"d":"68,2v-78,2,-17,-130,-56,-162r44,-10v8,62,-29,167,56,150v4,0,10,0,16,-1v-3,-49,10,-111,-15,-139r45,-10v4,56,-12,130,14,164r-44,10r0,-22v-21,11,-35,20,-60,20xm108,-248r49,0r-83,60","w":187},"\u00f9":{"d":"68,2v-78,2,-17,-130,-56,-162r44,-10v8,62,-29,167,56,150v4,0,10,0,16,-1v-3,-49,10,-111,-15,-139r45,-10v4,56,-12,130,14,164r-44,10r0,-22v-21,11,-35,20,-60,20xm80,-248r34,60r-83,-60r49,0","w":187},"\u00fb":{"d":"94,-252r63,64r-63,-29r-63,29xm68,2v-78,2,-17,-130,-56,-162r44,-10v8,62,-29,167,56,150v4,0,10,0,16,-1v-3,-49,10,-111,-15,-139r45,-10v4,56,-12,130,14,164r-44,10r0,-22v-21,11,-35,20,-60,20","w":187},"\u00fc":{"d":"68,2v-78,2,-17,-130,-56,-162r44,-10v8,62,-29,167,56,150v4,0,10,0,16,-1v-3,-49,10,-111,-15,-139r45,-10v4,56,-12,130,14,164r-44,10r0,-22v-21,11,-35,20,-60,20xm115,-216v0,-11,7,-20,19,-19v13,0,19,7,19,19v0,12,-7,18,-19,18v-13,0,-19,-6,-19,-18xm34,-216v0,-11,7,-20,18,-19v14,0,19,6,20,19v0,12,-8,18,-20,18v-12,0,-18,-6,-18,-18","w":187},"\u00b0":{"d":"59,-170v19,0,36,-17,36,-36v0,-19,-17,-35,-36,-35v-19,0,-35,16,-35,35v0,19,16,36,35,36xm10,-206v0,-27,23,-50,49,-50v27,0,50,23,50,50v0,26,-24,50,-50,50v-26,0,-49,-23,-49,-50","w":118},"\u00a2":{"d":"87,-154v-48,12,-51,121,0,133r0,-133xm17,-74v0,-51,27,-83,70,-93r0,-23r9,0r0,21v19,0,34,3,51,6r0,39v-17,-10,-30,-25,-51,-31r0,137v0,0,44,3,61,-2v-17,14,-33,25,-61,24r0,21r-9,0r0,-20v-40,-4,-70,-34,-70,-79"},"\u00a3":{"d":"41,-166v-6,-70,69,-84,129,-66r0,42v-19,-11,-30,-32,-56,-34v-45,-3,-42,44,-41,93r58,0r0,15r-58,0v3,41,-4,68,-22,88v51,2,100,15,129,-19v-8,22,-10,53,-39,55v-27,2,-97,-17,-124,-9v7,-24,24,-30,24,-64r0,-51r-26,0r0,-15r26,0r0,-35"},"\u00a7":{"d":"100,-37v30,-14,41,-61,6,-78r-31,-20v-29,12,-39,55,-8,76xm35,-189v-2,-49,61,-58,105,-44r0,38v-17,-10,-28,-27,-51,-30v-15,-2,-28,10,-28,25v0,39,103,56,98,110v-3,31,-24,48,-51,58v18,14,31,25,32,52v0,51,-61,57,-108,43r0,-38v19,10,32,28,56,31v22,3,34,-27,19,-44v-19,-21,-99,-63,-91,-95v1,-32,24,-48,51,-58v-18,-10,-31,-24,-32,-48","w":174},"\u00b6":{"d":"13,-175v-1,-69,83,-63,154,-61r0,14r-22,0r0,246r-17,0r0,-246r-32,0r0,246r-17,0r0,-137v-38,-1,-66,-24,-66,-62","w":180},"\u00df":{"d":"194,-46v0,50,-63,56,-107,40r0,-39v18,11,30,28,53,35v14,0,27,-12,27,-26v-3,-35,-77,-35,-77,-82v0,-36,47,-57,47,-88v0,-23,-15,-35,-38,-35v-32,2,-40,19,-41,55r0,186r-43,0v24,-37,14,-110,14,-167v0,-64,26,-85,80,-88v32,-2,58,16,61,45v2,27,-54,50,-56,80v4,33,80,35,80,84","w":204,"k":{"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"\u00bb":-7}},"\u00ae":{"d":"103,-85v0,-42,7,-93,-11,-119v45,2,106,-10,104,36v-1,24,-17,37,-40,41v21,27,39,57,67,76r-41,0r-54,-72v0,29,-2,55,11,72r-47,0v6,-10,11,-21,11,-34xm168,-165v0,-24,-15,-30,-40,-28r0,59v26,2,40,-6,40,-31xm21,-127v0,-77,52,-130,129,-130v77,0,129,52,129,130v0,77,-53,129,-129,129v-77,0,-129,-53,-129,-129xm150,-14v67,0,114,-46,114,-113v0,-67,-45,-114,-114,-114v-69,0,-114,47,-114,114v0,67,47,113,114,113","w":299},"\u00a9":{"d":"80,-122v0,-67,55,-98,121,-79r0,30v-14,-7,-22,-23,-41,-23v-35,0,-52,30,-52,68v0,42,24,75,63,63r33,-23r-5,32v-60,16,-119,-4,-119,-68xm21,-127v0,-77,52,-130,129,-130v77,0,129,52,129,130v0,77,-53,129,-129,129v-77,0,-129,-53,-129,-129xm150,-14v67,0,114,-46,114,-113v0,-67,-45,-114,-114,-114v-69,0,-114,47,-114,114v0,67,47,113,114,113","w":299},"\u2122":{"d":"156,-220v2,29,-5,64,6,84r-19,0v10,-24,10,-74,0,-100r25,0r30,75r30,-75r24,0v-9,24,-10,74,0,100r-28,0v11,-20,4,-55,6,-84r-35,84r-5,0xm92,-229v2,31,-6,72,6,93r-30,0v12,-20,3,-62,6,-93v-16,-2,-23,7,-31,13r0,-20r80,0r0,20v-8,-6,-14,-15,-31,-13","w":291},"\u00b4":{"d":"104,-248r49,0r-83,60","w":180},"\u00a8":{"d":"111,-216v0,-11,7,-20,19,-19v13,0,19,7,19,19v0,12,-7,18,-19,18v-13,0,-19,-6,-19,-18xm30,-216v0,-11,7,-20,18,-19v14,0,19,6,20,19v0,12,-8,18,-20,18v-12,0,-18,-6,-18,-18","w":180},"\u00c6":{"d":"133,-217r-50,97r50,0r0,-97xm35,-27v-7,10,0,21,7,27r-56,0v15,-14,22,-23,34,-46r106,-190r137,0r0,46v-17,-10,-25,-31,-51,-31r-47,0r0,101v36,3,64,-3,82,-22r0,55v-15,-18,-44,-23,-82,-20r0,93v25,-2,53,4,69,-8r35,-26r-7,48r-143,0v17,-25,14,-66,14,-107r-57,0","w":283,"k":{"\u00bb":-20,"-":-7}},"\u00d8":{"d":"122,-10v73,1,81,-122,51,-180r-96,156v11,14,23,24,45,24xm121,-223v-70,-1,-80,114,-54,174r96,-154v-10,-12,-23,-19,-42,-20xm18,-115v0,-91,80,-152,158,-110r16,-26r13,8r-16,28v69,59,39,221,-71,221v-25,0,-41,-6,-55,-17r-18,29r-13,-9r19,-31v-21,-20,-33,-53,-33,-93","w":243,"k":{"\u00bb":-7,"Y":11,"X":20,".":21,"-":-13,",":21}},"\u00b1":{"d":"255,-7r-210,0r0,-21r210,0r0,21xm160,-147r95,0r0,21r-95,0r0,60r-20,0r0,-60r-95,0r0,-21r95,0r0,-60r20,0r0,60","w":299},"\u00a5":{"d":"83,-157r18,31r17,-31r-35,0xm67,0v17,-23,13,-65,13,-105r-75,0r0,-13r68,0r-22,-39r-46,0r0,-13r37,0v-16,-22,-27,-47,-48,-64r65,0v-22,23,11,46,17,64r49,0v7,-20,34,-42,15,-64r55,0v-18,18,-34,39,-48,64r40,0r0,13r-49,0r-24,39r73,0r0,13r-75,0v1,40,-5,82,13,105r-58,0","w":192},"\u00b5":{"d":"125,-23v-14,31,-82,36,-97,2r-20,96r-28,0r56,-263r28,0v-8,44,-22,81,-25,129v-3,43,54,52,75,22v25,-34,30,-103,43,-151r28,0r-33,156v-1,11,10,14,19,11v-3,12,0,26,-21,24v-17,-2,-23,-9,-25,-26","w":198},"\u00aa":{"d":"17,-95r91,0r0,15r-91,0r0,-15xm80,-175v-45,-6,-59,41,-14,42r14,-1r0,-41xm80,-205v-6,-41,-35,-14,-59,4r0,-31v33,-7,84,-22,84,31v0,30,-5,64,12,78r-31,8r-5,-13v-27,20,-70,15,-71,-21v-1,-33,32,-36,70,-35r0,-21","w":123},"\u00ba":{"d":"20,-95r105,0r0,15r-105,0r0,-15xm73,-126v45,-1,42,-101,-1,-101v-44,1,-42,101,1,101xm71,-114v-35,0,-60,-28,-60,-63v0,-35,27,-62,62,-62v35,0,61,27,61,62v1,35,-28,63,-63,63","w":145},"\u00e6":{"d":"212,-109v5,-43,-42,-63,-63,-31v-7,10,-11,24,-11,41xm51,-48v-2,30,33,35,61,28r0,-61v-34,5,-59,5,-61,33xm111,-90v6,-34,-3,-78,-38,-61r-39,30r0,-37v28,-10,88,-20,103,7v42,-39,121,-6,111,61r-110,0v-4,67,47,79,112,69v-26,27,-92,34,-120,4v-38,28,-111,32,-111,-26v0,-44,42,-49,92,-47","w":262},"\u00f8":{"d":"66,-25v29,40,76,2,76,-53v0,-20,-4,-36,-10,-50xm125,-141v-30,-36,-80,0,-73,53v3,19,3,34,8,50xm17,-82v0,-62,64,-109,118,-76r20,-30r11,6r-19,31v55,41,29,156,-52,156v-16,0,-30,-4,-40,-11r-20,31r-11,-6r20,-33v-16,-16,-27,-36,-27,-68","w":193,"k":{"\u2018":13,"\u201c":13,"x":6,"-":-13}},"\u00bf":{"d":"105,-179v3,50,-53,93,-49,129v-4,33,34,51,57,32r37,-30r0,44v-59,23,-152,5,-129,-68v12,-39,69,-55,67,-107r17,0xm74,-216v0,-13,7,-22,21,-21v13,0,20,6,20,19v0,13,-8,21,-21,21v-12,0,-21,-7,-20,-19","w":161},"\u00a1":{"d":"43,-180r14,0r13,180r-40,0xm30,-218v0,-14,8,-21,21,-21v12,0,19,7,19,19v1,12,-8,22,-20,21v-11,0,-20,-6,-20,-19","w":92},"\u00ac":{"d":"255,-151r0,88r-20,0r0,-67r-190,0r0,-21r210,0","w":299},"\u00ab":{"d":"98,-149r17,0r-34,62r34,63r-16,0r-39,-63xm49,-149r18,0r-33,62r33,63r-16,0r-40,-63","w":124,"k":{"\u00d8":-7,"\u00c6":-20,"\u00c5":-20,"y":-20,"w":-20,"v":-20,"n":-13,"f":-20,"Y":13,"X":-13,"T":26,"Q":-7,"O":-7,"G":-7,"C":-7,"A":-20}},"\u00bb":{"d":"58,-149r18,0r38,62r-40,63r-16,0r33,-63xm10,-149r16,0r39,62r-39,63r-17,0r34,-63","w":124,"k":{"Y":26,"X":13,"W":13,"V":20,"T":40}},"\u2026":{"d":"185,3v-12,0,-19,-8,-19,-21v-1,-14,7,-24,21,-24v12,0,20,9,20,22v0,15,-8,23,-22,23xm65,3v-12,0,-19,-8,-19,-21v-1,-14,8,-24,21,-24v12,0,19,9,19,22v0,15,-7,23,-21,23xm305,3v-12,0,-19,-9,-20,-21v0,-14,8,-24,22,-24v12,0,20,9,20,22v0,15,-8,23,-22,23","w":360},"\u00a0":{},"\u00c0":{"d":"97,-203r-32,93r62,0xm59,-95v-6,31,-38,69,-13,95r-55,0v15,-13,22,-30,31,-53r69,-179r24,-8r64,188v7,23,17,37,30,52r-65,0v26,-26,-8,-65,-12,-95r-73,0xm87,-318r34,60r-83,-60r49,0","w":202},"\u00c3":{"d":"42,-268v4,-24,23,-48,50,-34v23,13,51,24,68,-4v-4,23,-23,48,-50,34v-17,-4,-34,-24,-51,-12v-5,3,-10,9,-17,16xm97,-203r-32,93r62,0xm59,-95v-6,31,-38,69,-13,95r-55,0v15,-13,22,-30,31,-53r69,-179r24,-8r64,188v7,23,17,37,30,52r-65,0v26,-26,-8,-65,-12,-95r-73,0","w":202},"\u00d5":{"d":"63,-268v3,-24,23,-48,50,-34v22,12,50,25,67,-4v-3,24,-23,47,-49,34v-17,-4,-34,-24,-51,-12v-5,3,-10,9,-17,16xm189,-113v0,-58,-18,-110,-68,-110v-47,0,-67,48,-67,103v0,58,19,110,68,110v47,0,67,-48,67,-103xm118,5v-64,0,-100,-52,-100,-119v0,-71,38,-126,107,-125v63,0,101,53,101,119v0,71,-39,125,-108,125","w":243},"\u2013":{"d":"0,-92r180,0r0,22r-180,0r0,-22","w":180},"\u2014":{"d":"0,-92r360,0r0,22r-360,0r0,-22","w":360},"\u201c":{"d":"107,-166v-44,-7,-14,-86,16,-87v-9,11,-15,27,-15,46v12,0,19,7,19,19v1,13,-6,24,-20,22xm38,-166v-30,0,-23,-48,-10,-66v7,-11,16,-18,27,-21v-9,11,-15,27,-15,46v12,0,19,7,19,19v1,14,-7,23,-21,22","w":143,"k":{"\u00f0":13,"\u00c6":66,"\u00c5":33,"y":-13,"w":-13,"v":-13,"Y":-7,"W":-7,"T":-13,"C":6,"A":33}},"\u201d":{"d":"107,-253v41,7,13,86,-17,87v9,-11,13,-28,14,-47v-12,0,-18,-7,-18,-19v-1,-14,7,-23,21,-21xm38,-253v30,0,23,48,10,66v-7,11,-16,18,-27,21v10,-11,14,-28,15,-47v-12,0,-19,-7,-19,-19v-1,-14,7,-22,21,-21","w":143},"\u2018":{"d":"38,-166v-42,-8,-13,-87,18,-87v-9,11,-15,27,-15,46v12,0,19,7,19,19v0,14,-8,25,-22,22","w":77,"k":{"\u00f0":13,"\u00c6":66,"\u00c5":33,"y":-13,"w":-13,"v":-13,"Y":-7,"W":-7,"T":-13,"C":6,"A":33}},"\u2019":{"d":"38,-253v30,0,23,48,10,66v-7,11,-16,18,-27,21v10,-11,14,-28,15,-47v-12,0,-19,-7,-19,-19v-1,-14,7,-22,21,-21","w":77},"\u00f7":{"d":"130,-44v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20xm255,-97r-210,0r0,-21r210,0r0,21xm130,-171v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,11,-9,21,-20,21v-11,0,-20,-10,-20,-21","w":299},"\u00ff":{"d":"121,-135v6,-13,2,-23,-6,-32r49,0v-49,61,-54,170,-103,230v-12,15,-35,14,-56,9r0,-38v15,12,35,39,52,10v6,-9,12,-23,18,-41v-27,-56,-41,-126,-79,-170r64,0v-8,9,-13,19,-7,32r37,102xm101,-216v0,-11,7,-20,19,-19v13,0,19,7,19,19v0,12,-7,18,-19,18v-13,0,-19,-6,-19,-18xm20,-216v0,-11,7,-20,18,-19v14,0,19,6,20,19v0,12,-8,18,-20,18v-12,0,-18,-6,-18,-18","w":159},"\u00a4":{"d":"70,-90v-2,54,32,102,76,68v15,-11,24,-20,31,-25r-6,45v-19,5,-36,7,-58,7v-52,-2,-72,-42,-78,-95r-29,0r3,-14r25,0v-1,-11,-1,-17,0,-31r-28,0r3,-13r27,0v5,-74,63,-107,140,-84r0,42v-20,-19,-65,-54,-90,-15v-8,12,-13,32,-15,57r77,0r-4,13r-74,0r0,31r66,0r-3,14r-63,0"},"\u00b7":{"d":"26,-116v0,-11,10,-21,20,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-10,0,-20,-9,-20,-20","w":92},"\u00c2":{"d":"101,-323r63,64r-63,-29r-63,29xm97,-203r-32,93r62,0xm59,-95v-6,31,-38,69,-13,95r-55,0v15,-13,22,-30,31,-53r69,-179r24,-8r64,188v7,23,17,37,30,52r-65,0v26,-26,-8,-65,-12,-95r-73,0","w":202},"\u00ca":{"d":"99,-323r63,64r-63,-29r-64,29xm34,-52v0,-62,12,-142,-13,-184r144,0r0,46v-18,-10,-26,-31,-52,-31r-47,0r0,96v36,3,64,-3,82,-22r0,55v-15,-19,-44,-23,-82,-20r0,98v25,-2,53,3,69,-8r36,-26r-7,48r-143,0v9,-16,13,-29,13,-52","w":183},"\u00c1":{"d":"97,-203r-32,93r62,0xm59,-95v-6,31,-38,69,-13,95r-55,0v15,-13,22,-30,31,-53r69,-179r24,-8r64,188v7,23,17,37,30,52r-65,0v26,-26,-8,-65,-12,-95r-73,0xm115,-318r49,0r-83,60","w":202},"\u00cb":{"d":"34,-52v0,-62,12,-142,-13,-184r144,0r0,46v-18,-10,-26,-31,-52,-31r-47,0r0,96v36,3,64,-3,82,-22r0,55v-15,-19,-44,-23,-82,-20r0,98v25,-2,53,3,69,-8r36,-26r-7,48r-143,0v9,-16,13,-29,13,-52xm120,-286v0,-11,7,-20,19,-19v13,0,19,7,19,19v0,12,-7,18,-19,18v-13,0,-19,-6,-19,-18xm39,-286v0,-11,7,-20,18,-19v14,0,19,6,20,19v0,12,-8,18,-20,18v-12,0,-18,-6,-18,-18","w":183},"\u00c8":{"d":"34,-52v0,-62,12,-142,-13,-184r144,0r0,46v-18,-10,-26,-31,-52,-31r-47,0r0,96v36,3,64,-3,82,-22r0,55v-15,-19,-44,-23,-82,-20r0,98v25,-2,53,3,69,-8r36,-26r-7,48r-143,0v9,-16,13,-29,13,-52xm85,-318r34,60r-83,-60r49,0","w":183},"\u00cd":{"d":"34,-52v0,-62,11,-142,-13,-184r57,0v-23,44,-12,123,-12,186v0,24,4,34,12,50r-57,0v10,-15,13,-28,13,-52xm63,-318r49,0r-83,60","w":98},"\u00ce":{"d":"49,-323r64,64r-64,-29r-63,29xm34,-52v0,-62,11,-142,-13,-184r57,0v-23,44,-12,123,-12,186v0,24,4,34,12,50r-57,0v10,-15,13,-28,13,-52","w":98},"\u00cf":{"d":"34,-52v0,-62,11,-142,-13,-184r57,0v-23,44,-12,123,-12,186v0,24,4,34,12,50r-57,0v10,-15,13,-28,13,-52xm70,-286v0,-11,7,-20,19,-19v13,0,19,7,19,19v0,12,-7,18,-19,18v-13,0,-19,-6,-19,-18xm-11,-286v0,-11,7,-20,18,-19v14,0,19,6,20,19v0,12,-8,18,-20,18v-12,0,-18,-6,-18,-18","w":98},"\u00cc":{"d":"34,-52v0,-62,11,-142,-13,-184r57,0v-23,44,-12,123,-12,186v0,24,4,34,12,50r-57,0v10,-15,13,-28,13,-52xm35,-318r34,60r-83,-60r49,0","w":98},"\u00d3":{"d":"189,-113v0,-58,-18,-110,-68,-110v-47,0,-67,48,-67,103v0,58,19,110,68,110v47,0,67,-48,67,-103xm118,5v-64,0,-100,-52,-100,-119v0,-71,38,-126,107,-125v63,0,101,53,101,119v0,71,-39,125,-108,125xm136,-318r49,0r-83,60","w":243},"\u00d4":{"d":"122,-323r63,64r-63,-29r-64,29xm189,-113v0,-58,-18,-110,-68,-110v-47,0,-67,48,-67,103v0,58,19,110,68,110v47,0,67,-48,67,-103xm118,5v-64,0,-100,-52,-100,-119v0,-71,38,-126,107,-125v63,0,101,53,101,119v0,71,-39,125,-108,125","w":243},"\u00d2":{"d":"189,-113v0,-58,-18,-110,-68,-110v-47,0,-67,48,-67,103v0,58,19,110,68,110v47,0,67,-48,67,-103xm118,5v-64,0,-100,-52,-100,-119v0,-71,38,-126,107,-125v63,0,101,53,101,119v0,71,-39,125,-108,125xm108,-318r34,60r-83,-60r49,0","w":243},"\u00da":{"d":"27,-68v-2,-57,10,-131,-13,-168r58,0v-23,36,-13,106,-13,161v0,46,12,63,54,66v83,5,58,-99,58,-175v0,-26,-3,-35,-13,-52r50,0v-24,35,-14,103,-14,158v0,64,-28,84,-84,84v-56,0,-81,-20,-83,-74xm131,-318r49,0r-83,60","w":221},"\u00db":{"d":"117,-323r63,64r-63,-29r-63,29xm27,-68v-2,-57,10,-131,-13,-168r58,0v-23,36,-13,106,-13,161v0,46,12,63,54,66v83,5,58,-99,58,-175v0,-26,-3,-35,-13,-52r50,0v-24,35,-14,103,-14,158v0,64,-28,84,-84,84v-56,0,-81,-20,-83,-74","w":221},"\u00d9":{"d":"27,-68v-2,-57,10,-131,-13,-168r58,0v-23,36,-13,106,-13,161v0,46,12,63,54,66v83,5,58,-99,58,-175v0,-26,-3,-35,-13,-52r50,0v-24,35,-14,103,-14,158v0,64,-28,84,-84,84v-56,0,-81,-20,-83,-74xm103,-318r34,60r-83,-60r49,0","w":221},"\u00af":{"d":"30,-226r119,0r0,19r-119,0r0,-19","w":180},"\u00b8":{"d":"63,73v22,-7,41,-43,13,-53r0,-20r12,0r0,12v17,1,29,11,29,28v0,23,-28,41,-54,33","w":180},"\u00a6":{"d":"101,-72r0,134r-22,0r0,-134r22,0xm101,-252r0,134r-22,0r0,-134r22,0","w":180},"\u00d0":{"d":"179,-118v0,-75,-35,-112,-116,-102r0,86r48,0r0,17r-48,0r0,101v79,7,116,-26,116,-102xm32,-134v0,-39,4,-80,-13,-102r84,0v73,-1,112,39,112,110v0,83,-37,129,-128,126r-68,0v19,-26,12,-74,13,-117r-31,0r0,-17r31,0","w":232,"k":{"\u2019":6,"\u201d":6,"\u00bb":-7,"\u00ab":-7,"\u00c5":6,"Y":15,"W":6,"A":6,"-":-13}},"\u00f0":{"d":"98,-8v51,0,50,-82,42,-135v-47,-20,-88,4,-88,60v0,39,12,75,46,75xm17,-82v0,-64,69,-106,122,-69v-7,-25,-17,-43,-34,-60r-46,25r-7,-13r45,-22r-33,-27r37,-9r21,22r43,-22r6,12r-40,21v56,54,74,227,-36,229v-47,1,-78,-40,-78,-87","w":193,"k":{"-":-20}},"\u00dd":{"d":"66,0v17,-24,12,-67,13,-108v-30,-42,-51,-92,-87,-128r68,0v-9,10,-11,20,-3,32r45,74r45,-89v-1,-7,-5,-11,-8,-17r56,0v-34,32,-57,79,-84,119v1,43,-6,92,13,117r-58,0xm110,-318r49,0r-83,60","w":191},"\u00fd":{"d":"121,-135v6,-13,2,-23,-6,-32r49,0v-49,61,-54,170,-103,230v-12,15,-35,14,-56,9r0,-38v15,12,35,39,52,10v6,-9,12,-23,18,-41v-27,-56,-41,-126,-79,-170r64,0v-8,9,-13,19,-7,32r37,102xm94,-248r49,0r-83,60","w":159},"\u00de":{"d":"136,-125v0,-43,-26,-58,-72,-53r0,108v45,3,72,-12,72,-55xm32,-52v-3,-62,11,-143,-13,-184r58,0v-6,12,-16,30,-13,43v62,-5,109,10,108,68v0,53,-47,75,-108,69v-3,22,4,40,13,56r-58,0v9,-17,14,-26,13,-52","w":176,"k":{"\u00bb":-20,"\u00ab":-20,";":-7,":":-7,".":33,"-":-27,",":33}},"\u00fe":{"d":"143,-83v0,-50,-34,-74,-83,-63r0,126v43,20,83,-13,83,-63xm17,74v28,-66,13,-181,13,-269v0,-21,-6,-34,-16,-50r46,-10r0,106v14,-11,31,-21,51,-21v39,0,65,39,65,81v0,61,-62,117,-116,80v0,34,-2,64,13,83r-56,0","w":191},"\u00d7":{"d":"234,-205r15,14r-84,84r84,83r-15,15r-83,-84r-84,84r-14,-15r83,-83r-83,-84r14,-14r84,83","w":299},"\u00b9":{"d":"46,-93v17,-26,6,-79,9,-119r-34,0v18,-6,36,-15,55,-25v4,47,-10,111,9,144r-39,0","w":121},"\u00b2":{"d":"106,-200v-4,42,-33,56,-70,91v29,-1,60,5,75,-14r-5,30r-99,0v39,-40,66,-55,74,-103v4,-25,-24,-39,-43,-25r-22,16r0,-26v35,-10,94,-8,90,31","w":121},"\u00b3":{"d":"103,-204v-1,20,-17,30,-35,37v22,2,40,12,40,34v2,45,-58,49,-97,38r0,-27v12,7,19,22,37,23v20,1,36,-13,36,-32v0,-22,-17,-30,-40,-30v39,-9,51,-71,-1,-65v-10,6,-20,15,-30,22r0,-26v31,-10,91,-12,90,26","w":121},"\u00bc":{"d":"248,-113r-50,62r50,0r0,-62xm239,0v7,-10,9,-20,9,-37r-71,0v22,-32,47,-63,73,-92r16,-5r0,83r21,0r0,14r-21,0v0,16,0,28,8,37r-35,0xm232,-204r6,6r-179,167r-5,-6xm44,-103v17,-23,6,-73,9,-110r-33,0v17,-6,34,-14,53,-24v3,44,-9,103,8,134r-37,0","w":292},"\u00bd":{"d":"278,-99v-8,38,-34,52,-68,84v28,-1,58,5,72,-13r-4,28r-96,0v36,-36,63,-53,71,-96v5,-24,-23,-38,-41,-24r-21,16r0,-24v35,-10,86,-9,87,29xm232,-204r6,6r-179,167r-5,-6xm44,-103v17,-23,6,-73,9,-110r-33,0v17,-6,34,-14,53,-24v3,44,-9,103,8,134r-37,0","w":292},"\u00be":{"d":"248,-113r-50,62r50,0r0,-62xm239,0v8,-9,10,-20,9,-37r-71,0v22,-32,47,-63,73,-92r16,-5r0,83r22,0r0,14r-22,0v0,17,1,28,9,37r-36,0xm232,-204r6,6r-178,167r-6,-6xm99,-206v0,19,-17,28,-34,34v20,2,38,13,38,33v2,42,-56,43,-93,35r0,-26v12,7,18,21,36,22v18,1,36,-11,35,-29v-1,-20,-15,-29,-38,-29v19,-10,34,-16,34,-38v0,-35,-51,-22,-64,-2r0,-25v33,-6,86,-11,86,25","w":292},"\u00ad":{"d":"12,-102r76,0r0,27r-76,0r0,-27","w":98}}});


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1998 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":187,"face":{"font-family":"Swis721 Th BT","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 3 3 2 2 2 2 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-20 -347 360 85","underline-thickness":"7.55859","underline-position":"-33.3984","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":93},"!":{"d":"50,0r0,-32r12,0r0,32r-12,0xm52,-65r-4,-193r14,0r-2,193r-8,0","w":110},"\"":{"d":"63,-252r12,0r0,97r-12,0r0,-97xm18,-252r12,0r0,97r-12,0r0,-97","w":93},"#":{"d":"125,-153r-18,51r48,0r17,-51r-47,0xm144,-255r17,0r-32,89r49,0r31,-89r17,0r-32,89r58,0r-4,13r-59,0r-18,51r63,0r-4,13r-63,0r-31,89r-17,0r31,-89r-48,0r-32,89r-16,0r31,-89r-60,0r4,-13r60,0r19,-51r-65,0r3,-13r66,0","w":276},"$":{"d":"98,-7v51,3,80,-57,46,-92v-10,-9,-25,-17,-46,-21r0,113xm172,-64v1,45,-30,66,-74,69r0,25r-11,0r0,-25v-45,-4,-72,-32,-71,-80r11,0v1,41,22,64,60,68r0,-115v-39,-11,-64,-26,-65,-68v-1,-38,26,-63,65,-63r0,-16r11,0r0,16v41,0,68,22,68,62r-11,0v-3,-33,-21,-52,-57,-51r0,110v43,8,73,25,74,68xm87,-242v-49,-4,-68,55,-40,87v8,9,22,16,40,21r0,-108"},"%":{"d":"192,-93v-24,0,-43,20,-44,44v-1,23,21,44,44,44v23,0,44,-21,44,-44v0,-23,-20,-44,-44,-44xm192,6v-29,0,-55,-26,-55,-55v0,-29,26,-55,55,-55v29,0,55,26,55,55v0,29,-26,55,-55,55xm53,6r143,-265r13,0r-144,265r-12,0xm69,-149v-29,0,-55,-27,-55,-55v0,-29,26,-55,55,-55v29,0,55,26,55,55v0,29,-26,55,-55,55xm69,-247v-24,0,-44,20,-44,44v0,23,21,44,44,44v23,0,45,-21,45,-44v0,-23,-22,-44,-45,-44","w":261},"&":{"d":"201,-117v0,29,-5,54,-17,72r36,45r-15,0r-28,-35v-19,24,-43,40,-78,42v-45,1,-80,-32,-79,-76v1,-42,29,-67,64,-81v-17,-22,-29,-34,-31,-61v-2,-28,23,-48,52,-48v29,0,50,21,50,49v0,35,-24,51,-53,64r74,92v10,-18,14,-37,14,-63r11,0xm32,-70v-3,53,58,83,105,56v13,-7,24,-18,33,-31r-78,-96v-34,12,-58,32,-60,71xm103,-249v-53,3,-41,70,-8,94v26,-12,47,-23,48,-55v1,-23,-18,-40,-40,-39","w":219},"'":{"d":"18,-252r12,0r0,97r-12,0r0,-97","w":48},"(":{"d":"47,-94v0,74,23,124,56,173r-13,0v-68,-84,-72,-251,-4,-337r13,0v-31,45,-52,95,-52,164","w":103},")":{"d":"19,-258v70,85,63,254,-5,337r-12,0v70,-82,74,-253,4,-337r13,0","w":103},"*":{"d":"61,-157r-9,-7r31,-39r-46,-13r4,-12r44,16r-1,-47r12,0r-1,47r44,-16r4,12r-46,13r31,39r-9,7r-29,-40","w":180},"+":{"d":"145,-215r11,0r0,102r99,0r0,11r-99,0r0,102r-11,0r0,-102r-100,0r0,-11r100,0r0,-102","w":299},",":{"d":"24,38r26,-69r12,0r-26,69r-12,0","w":93},"-":{"d":"14,-88r0,-10r96,0r0,10r-96,0","w":123,"k":{"Y":26,"X":13,"W":20,"V":20,"T":13}},".":{"d":"41,0r0,-31r12,0r0,31r-12,0","w":93},"\/":{"d":"97,-266r13,0r-102,296r-13,0","w":105},"0":{"d":"94,-241v-52,0,-68,56,-68,119v0,63,15,118,68,118v53,0,67,-54,67,-118v0,-65,-15,-119,-67,-119xm94,7v-60,0,-80,-58,-80,-129v0,-72,20,-130,80,-130v60,0,79,59,79,130v0,71,-18,129,-79,129"},"1":{"d":"36,-199v36,0,58,-15,63,-46r12,0r0,245r-12,0r0,-213v-14,15,-34,25,-63,24r0,-10"},"2":{"d":"168,-184v0,93,-149,81,-138,173r137,0r0,11r-149,0v-15,-115,129,-86,138,-183v3,-34,-23,-57,-58,-57v-38,0,-62,25,-60,65v-4,-1,-14,3,-13,-3v0,-44,28,-73,73,-73v41,0,70,26,70,67"},"3":{"d":"91,7v-49,0,-75,-31,-74,-81v4,1,10,-2,12,1v-1,42,22,68,62,68v38,1,69,-25,68,-62v-1,-44,-34,-57,-83,-56v0,-6,-3,-14,8,-11v39,1,68,-17,67,-55v0,-33,-22,-51,-57,-51v-38,0,-59,24,-59,62v-3,-1,-9,1,-11,-1v-1,-45,28,-72,73,-72v75,0,89,107,25,121v28,6,49,29,49,62v0,45,-34,75,-80,75"},"4":{"d":"132,0r0,-65r-115,0r0,-12r116,-168r10,0r0,169r28,0r0,11r-28,0r0,65r-11,0xm132,-76r0,-148r-103,148r103,0"},"5":{"d":"170,-73v7,69,-82,105,-130,62v-13,-12,-21,-30,-23,-52r12,0v3,36,24,59,61,59v42,1,68,-28,68,-71v0,-69,-90,-88,-122,-42r-10,0r20,-128r114,0r0,11r-105,0r-15,98v48,-39,138,-7,130,63"},"6":{"d":"96,-4v39,0,62,-31,62,-72v1,-41,-20,-73,-60,-72v-38,0,-62,31,-62,72v0,41,22,72,60,72xm17,-116v0,-79,17,-135,86,-135v40,0,61,24,65,61r-12,0v-4,-32,-22,-50,-56,-50v-62,0,-74,68,-70,139v7,-33,30,-58,68,-58v45,0,73,36,73,83v0,47,-30,83,-73,83v-63,0,-82,-51,-81,-123"},"7":{"d":"167,-233v-50,60,-84,139,-100,233r-12,0v14,-92,49,-170,97,-233r-131,0r0,-12r146,0r0,12"},"8":{"d":"94,-128v-39,0,-66,21,-66,58v0,37,28,65,66,65v37,0,65,-27,65,-64v0,-37,-27,-59,-65,-59xm94,-241v-31,0,-55,20,-55,51v0,31,24,51,55,51v31,0,55,-21,55,-51v0,-31,-23,-51,-55,-51xm16,-68v1,-37,18,-55,47,-66v-22,-10,-37,-26,-37,-55v-1,-38,29,-62,68,-62v72,0,90,98,30,117v29,9,48,29,48,65v0,46,-33,76,-80,76v-44,0,-77,-31,-76,-75"},"9":{"d":"92,-239v-40,-1,-63,30,-63,71v0,41,21,72,61,72v39,0,62,-31,62,-71v0,-40,-22,-72,-60,-72xm171,-127v0,78,-18,132,-86,134v-39,1,-61,-24,-65,-60r11,0v5,31,23,49,56,49v63,0,73,-65,71,-139v-7,33,-31,58,-68,58v-46,1,-73,-36,-73,-83v0,-47,28,-83,72,-83v63,0,83,52,82,124"},":":{"d":"45,-144r0,-31r12,0r0,31r-12,0xm45,0r0,-31r12,0r0,31r-12,0","w":102},";":{"d":"49,-144r0,-31r11,0r0,31r-11,0xm23,38r25,-69r12,0r-25,69r-12,0","w":102},"<":{"d":"253,-195r0,12r-187,76r187,76r0,12r-207,-85r0,-7","w":299},"=":{"d":"45,-82r210,0r0,12r-210,0r0,-12xm45,-144r210,0r0,11r-210,0r0,-11","w":299},">":{"d":"46,-195r207,84r0,7r-207,85r0,-12r188,-76r-188,-76r0,-12","w":299},"?":{"d":"72,0r0,-31r14,0r0,31r-14,0xm156,-202v-1,66,-77,65,-71,138r-12,0v-7,-72,71,-76,71,-137v0,-35,-25,-52,-61,-52v-38,0,-61,27,-60,68r-12,0v0,-48,28,-79,75,-79v40,0,71,23,70,62","w":166},"@":{"d":"242,-23v-23,2,-37,-10,-32,-33v-10,17,-27,33,-51,33v-37,1,-51,-21,-55,-57v-7,-70,93,-135,126,-64v7,-9,4,-27,22,-24r-28,118v0,11,10,17,22,16v51,-5,75,-49,77,-103v2,-67,-59,-108,-129,-106v-96,3,-153,61,-156,154v-2,79,62,128,143,127v43,0,83,-15,111,-34r4,6v-30,23,-65,38,-113,38v-95,0,-161,-47,-161,-140v0,-103,71,-162,174,-162v81,0,142,41,142,118v0,63,-35,108,-96,113xm120,-78v0,44,47,55,75,31v20,-17,24,-51,32,-80v-5,-22,-18,-37,-43,-37v-39,0,-64,42,-64,86","w":360},"A":{"d":"-2,0r100,-259r14,0r98,259r-12,0r-33,-88r-121,0r-34,88r-12,0xm48,-99r112,0r-55,-146","w":206,"k":{"\u201d":46,"\u00c5":-7,"y":5,"w":5,"v":5,"Y":21,"X":-7,"W":6,"V":6,"U":6,"T":13,"A":-7,";":-7,":":-7,".":-7,",":-7}},"B":{"d":"208,-69v2,82,-94,69,-178,69r0,-259v77,1,165,-13,165,64v0,32,-19,50,-44,59v36,7,56,26,57,67xm183,-195v0,-66,-77,-51,-141,-53r0,109v66,0,141,8,141,-56xm196,-71v0,-70,-84,-58,-154,-59r0,119v73,-1,154,14,154,-60","w":222,"k":{"\u00d8":-7,"Y":13,"W":6,"V":6,"S":-7,"O":-7,"G":-7,"C":-7,"-":-7}},"C":{"d":"124,-5v52,0,88,-31,90,-81r12,0v-2,56,-42,92,-100,91v-73,0,-108,-57,-108,-134v0,-79,36,-135,110,-136v51,0,94,34,97,81r-12,0v-7,-43,-38,-70,-87,-70v-63,0,-95,55,-95,125v0,70,30,124,93,124","w":245,"k":{"\u201d":-13,"S":-7,";":-7,":":-7,"-":-8}},"D":{"d":"217,-129v0,-82,-35,-123,-125,-119r-50,0r0,237r50,0v88,5,125,-37,125,-118xm229,-129v0,91,-44,133,-140,129r-59,0r0,-259r59,0v98,-4,139,39,140,130","w":248,"k":{"\u00c5":3,"Y":6,"W":-3,"V":3,"A":3,".":13,"-":-7,",":13}},"E":{"d":"30,0r0,-259r158,0r0,12r-146,0r0,107r133,0r0,11r-133,0r0,117r149,0r0,12r-161,0","w":204,"k":{".":-7,"-":6,",":-7}},"F":{"d":"30,0r0,-259r151,0r0,12r-139,0r0,107r123,0r0,11r-123,0r0,129r-12,0","w":188,"k":{"\u201d":-7,"\u00f8":8,"\u00e6":8,"\u00c5":15,"u":8,"r":6,"o":8,"e":8,"a":8,"T":-7,"A":15,";":13,":":13,".":55,"-":6,",":55}},"G":{"d":"131,-5v61,0,97,-42,93,-108r-85,0r0,-11r96,0r0,124r-10,0r0,-51v-17,36,-45,56,-94,57v-73,0,-112,-57,-112,-135v0,-78,39,-135,112,-136v56,0,94,30,101,80r-12,0v-8,-42,-39,-69,-89,-69v-65,1,-100,55,-100,125v0,70,34,124,100,124","w":255,"k":{"Y":3,"T":6}},"H":{"d":"30,0r0,-259r12,0r0,115r163,0r0,-115r12,0r0,259r-12,0r0,-133r-163,0r0,133r-12,0","w":246},"I":{"d":"31,0r0,-259r12,0r0,259r-12,0","w":74},"J":{"d":"77,6v-48,0,-67,-34,-63,-87v8,-1,12,0,11,11v-2,41,15,65,53,65v44,-1,52,-25,53,-74r0,-180r12,0r0,184v0,52,-17,81,-66,81","w":170,"k":{".":8,",":8}},"K":{"d":"30,0r0,-259r12,0r0,146r143,-146r16,0r-102,104r117,155r-14,0r-111,-147r-49,50r0,97r-12,0","w":209,"k":{"\u00f8":6,"\u00e6":-7,"\u00d8":10,"\u00c5":-10,"y":3,"u":6,"o":6,"e":6,"a":-7,"Y":3,"W":6,"U":13,"O":10,"C":10,"A":-10,".":-7,"-":13,",":-7}},"L":{"d":"30,0r0,-259r12,0r0,247r137,0r0,12r-149,0","w":183,"k":{"\u201d":79,"\u00d8":13,"y":13,"Y":36,"W":11,"V":23,"U":6,"T":29,"O":13,".":-10,"-":26,",":-10}},"M":{"d":"30,0r0,-259r17,0r92,244r93,-244r17,0r0,259r-11,0r0,-244r-93,244r-12,0r-93,-244r0,244r-10,0","w":278},"N":{"d":"30,0r0,-259r12,0r162,238r0,-238r12,0r0,259r-12,0r-163,-238r0,238r-11,0","w":245,"k":{";":6,":":6}},"O":{"d":"133,-254v-68,0,-102,53,-102,125v0,72,34,124,102,124v68,0,102,-52,102,-124v0,-73,-34,-125,-102,-125xm133,6v-75,0,-114,-56,-114,-135v0,-79,38,-136,114,-136v75,1,115,57,115,136v0,79,-39,135,-115,135","w":266,"k":{"Y":6,".":15,"-":-7,",":15}},"P":{"d":"193,-190v0,75,-71,73,-151,70r0,120r-12,0r0,-259v78,0,163,-9,163,69xm181,-192v0,-65,-71,-56,-139,-56r0,118v71,1,139,8,139,-62","w":207,"k":{"\u201d":-7,"\u00f8":10,"\u00e6":10,"\u00c5":26,"y":-7,"u":-3,"s":10,"o":10,"e":10,"a":10,"Y":3,"W":-3,"A":26,";":6,":":6,".":86,"-":40,",":86}},"Q":{"d":"248,-132v0,49,-15,87,-40,112r35,29r-8,8r-36,-30v-17,12,-40,19,-68,19v-73,0,-112,-57,-112,-135v0,-79,38,-136,114,-136v73,0,115,56,115,133xm31,-129v0,95,77,153,158,109r-30,-25r7,-8r33,26v24,-22,36,-57,36,-102v1,-72,-34,-125,-102,-125v-68,0,-102,53,-102,125","w":266,"k":{".":11,"-":-7,",":11}},"R":{"d":"184,-44v0,-54,-8,-78,-62,-78r-80,0r0,122r-12,0r0,-259v79,2,174,-17,174,68v0,37,-17,55,-47,64v34,6,39,36,39,78v1,26,4,42,9,49v-25,3,-21,-14,-21,-44xm192,-190v0,-71,-79,-57,-150,-58r0,115v68,-1,150,12,150,-57","w":223,"k":{"y":-3}},"S":{"d":"174,-111v41,49,-4,122,-70,117v-51,-4,-85,-35,-88,-85r12,0v-8,89,146,100,150,13v4,-88,-155,-35,-155,-131v0,-67,95,-88,137,-47v15,14,22,32,23,55r-11,0v0,-40,-31,-67,-72,-66v-38,0,-66,21,-66,58v0,64,114,55,140,86","w":206,"k":{"S":-7,"-":-7}},"T":{"d":"86,0r0,-248r-80,0r0,-11r173,0r0,11r-80,0r0,248r-13,0","w":183,"k":{"\u00f8":48,"\u00e6":48,"\u00c5":13,"y":46,"w":46,"u":46,"s":48,"r":34,"o":48,"i":5,"e":48,"c":48,"a":48,"T":-8,"C":6,"A":13,";":46,":":46,".":53,"-":53,",":53}},"U":{"d":"121,6v-58,0,-94,-37,-93,-96r0,-169r12,0v7,105,-34,254,81,254v113,0,75,-150,81,-254r12,0r0,169v1,59,-36,96,-93,96","w":241,"k":{"\u00c5":6,"A":6,";":6,":":6,".":13,",":13}},"V":{"d":"89,0r-90,-259r13,0r83,241r83,-241r12,0r-90,259r-11,0","w":188,"k":{"\u201d":-13,"\u00f8":13,"\u00e6":13,"\u00c5":6,"y":-3,"u":6,"o":13,"e":13,"a":13,"A":6,";":10,":":10,".":46,"-":26,",":46}},"W":{"d":"72,0r-69,-259r12,0r63,237r63,-237r15,0r62,237r64,-237r12,0r-69,259r-13,0r-64,-242r-64,242r-12,0","w":296,"k":{"\u201d":-7,"\u00f8":6,"\u00e6":6,"\u00c5":6,"y":-5,"u":-5,"o":6,"i":-7,"e":6,"a":6,"A":6,";":5,":":5,".":29,"-":13,",":29}},"X":{"d":"0,0r88,-133r-84,-126r14,0r77,116r77,-116r13,0r-82,126r87,133r-13,0r-82,-122r-81,122r-14,0","w":190,"k":{"\u00c5":-7,"e":10,"C":6,"A":-7,";":6,":":6,".":-7,"-":20,",":-7}},"Y":{"d":"89,0r0,-114r-89,-145r14,0r82,132r80,-132r14,0r-89,145r0,114r-12,0","w":190,"k":{"\u00f8":33,"\u00e6":33,"\u00d8":6,"\u00c5":21,"u":26,"o":33,"e":33,"a":33,"O":6,"C":6,"A":21,";":31,":":31,".":60,"-":53,",":60}},"Z":{"d":"3,0r0,-12r167,-236r-153,0r0,-11r165,0r0,12r-166,236r171,0r0,11r-184,0","w":190,"k":{";":-7,":":-7,".":-7,"-":20,",":-7}},"[":{"d":"102,74r-61,0r0,-332r61,0r0,11r-48,0r0,310r48,0r0,11","w":108},"\\":{"d":"-5,-266r13,0r102,296r-13,0","w":105},"]":{"d":"8,74r0,-11r48,0r0,-310r-48,0r0,-11r61,0r0,332r-61,0","w":108},"^":{"d":"171,-256r17,0r97,97r-19,0r-86,-85r-86,85r-19,0","w":360},"_":{"d":"0,74r180,0r0,11r-180,0r0,-11","w":180},"`":{"d":"110,-210r-11,0r-45,-58r19,0","w":180},"a":{"d":"71,-7v57,0,79,-34,72,-100v-1,4,-29,9,-48,11v-43,6,-68,11,-71,46v-2,28,18,44,47,43xm155,-40v0,25,0,33,23,32v1,8,0,11,-10,10v-20,-2,-25,-12,-25,-34v-14,23,-40,35,-75,37v-50,4,-74,-62,-39,-91v13,-11,48,-17,77,-21v33,-6,37,-7,37,-35v0,-27,-21,-39,-50,-39v-35,0,-60,15,-62,46r-10,0v1,-36,32,-57,71,-56v45,0,63,18,63,68r0,83","w":182},"b":{"d":"107,-181v-46,0,-71,38,-71,88v0,50,25,88,71,88v46,0,71,-38,71,-88v0,-50,-25,-88,-71,-88xm107,5v-36,-1,-58,-18,-71,-45r0,40r-11,0r0,-258r11,0r0,114v11,-28,34,-47,71,-47v53,0,82,41,82,98v0,57,-28,98,-82,98","w":205},"c":{"d":"98,-5v34,0,59,-23,62,-55r11,0v-4,38,-31,65,-74,65v-53,0,-81,-43,-81,-98v0,-101,134,-138,153,-39r-12,0v-5,-28,-27,-50,-59,-49v-46,0,-71,38,-71,88v0,50,25,88,71,88","w":186},"d":{"d":"99,-5v46,0,71,-38,71,-88v0,-50,-25,-88,-71,-88v-46,0,-71,38,-71,88v0,50,25,88,71,88xm99,-191v36,0,60,19,71,45r0,-112r11,0r0,258r-11,0r0,-41v-11,28,-34,46,-71,46v-54,0,-82,-41,-82,-98v0,-57,29,-98,82,-98","w":205},"e":{"d":"161,-103v7,-67,-72,-103,-113,-57v-12,14,-19,33,-20,57r133,0xm95,-5v33,1,56,-22,63,-50r12,0v-7,33,-36,60,-75,60v-52,1,-80,-43,-80,-98v0,-55,29,-98,80,-98v52,0,81,41,78,99r-146,0v-1,48,24,86,68,87","w":188},"f":{"d":"37,-187v0,-42,-6,-81,43,-73r0,10v-37,-9,-33,27,-32,63r31,0r0,11r-31,0r0,176r-11,0r0,-176r-26,0r0,-11r26,0","w":87,"k":{"\u201d":-13,".":6,"-":6,",":6}},"g":{"d":"99,-5v46,0,71,-38,71,-88v0,-50,-25,-88,-71,-88v-46,0,-71,38,-71,88v0,50,25,88,71,88xm97,65v60,-1,78,-36,73,-105v-11,26,-35,45,-72,45v-53,0,-81,-42,-81,-98v0,-57,28,-98,82,-98v36,0,61,19,71,46r0,-42r11,0r0,177v11,81,-84,104,-138,70v-14,-9,-19,-23,-19,-40r11,0v2,31,27,45,62,45","w":205},"h":{"d":"100,-180v-85,0,-60,100,-64,180r-11,0r0,-258r11,0r0,102v22,-52,127,-48,127,32r0,124r-11,0v-7,-70,28,-180,-52,-180"},"i":{"d":"26,0r0,-187r11,0r0,187r-11,0xm26,-228r0,-30r11,0r0,30r-11,0","w":62},"j":{"d":"26,-228r0,-30r11,0r0,30r-11,0xm-2,64v28,0,28,-7,28,-39r0,-212r11,0r0,216v0,36,-6,46,-39,46r0,-11","w":62},"k":{"d":"25,0r0,-258r11,0r0,178r108,-107r14,0r-68,68r79,119r-13,0r-74,-111r-46,44r0,67r-11,0","w":164,"k":{"-":13}},"l":{"d":"26,0r0,-258r11,0r0,258r-11,0","w":62},"m":{"d":"36,-156v15,-44,105,-48,114,3v12,-23,30,-36,61,-38v85,-2,53,114,59,191r-12,0v-7,-69,27,-180,-47,-180v-81,0,-53,103,-58,180r-11,0v-7,-70,26,-180,-48,-180v-80,0,-53,104,-58,180r-11,0r0,-187r11,0r0,31","w":294},"n":{"d":"100,-180v-85,0,-60,100,-64,180r-11,0r0,-187r11,0r0,31v22,-52,127,-48,127,32r0,124r-11,0v-7,-70,28,-180,-52,-180"},"o":{"d":"98,-181v-46,0,-71,38,-71,88v0,50,25,88,71,88v46,0,71,-38,71,-88v0,-50,-25,-88,-71,-88xm98,5v-53,0,-82,-41,-82,-98v0,-57,29,-98,82,-98v53,0,82,41,82,98v0,56,-29,99,-82,98","w":196},"p":{"d":"107,-181v-46,0,-71,38,-71,88v0,50,25,88,71,88v46,0,71,-38,71,-88v0,-50,-25,-88,-71,-88xm107,5v-36,0,-60,-18,-71,-45r0,114r-11,0r0,-261r11,0r0,43v11,-28,34,-47,71,-47v54,0,82,41,82,98v0,56,-29,99,-82,98","w":205},"q":{"d":"99,-181v-46,0,-71,38,-71,88v0,50,25,88,71,88v46,0,71,-38,71,-88v0,-50,-25,-88,-71,-88xm99,-191v37,0,60,19,71,47r0,-43r11,0r0,261r-11,0r0,-114v-11,27,-35,45,-71,45v-53,1,-82,-42,-82,-98v0,-57,28,-98,82,-98","w":205},"r":{"d":"92,-180v-76,0,-51,105,-56,180r-11,0r0,-187r11,0r0,34v9,-23,26,-37,56,-38r0,11","w":94,"k":{".":33,"-":20,",":33}},"s":{"d":"143,-79v34,35,-6,84,-54,84v-42,0,-67,-23,-71,-60r11,0v-1,60,115,68,115,7v0,-62,-121,-27,-121,-94v0,-48,76,-63,108,-34v11,10,17,22,19,39r-11,0v1,-55,-102,-59,-104,-6v-9,33,89,45,108,64","w":173},"t":{"d":"80,1v-23,8,-45,1,-45,-31r0,-147r-24,0r0,-10r24,0r0,-51r11,0r0,51r34,0r0,10r-34,0r0,136v-2,31,9,40,34,32r0,10","w":87,"k":{"-":6}},"u":{"d":"88,-5v84,0,60,-101,63,-182r11,0r0,187r-11,0r0,-29v-23,52,-127,46,-127,-33r0,-125r11,0v7,72,-27,182,53,182"},"v":{"d":"72,0r-69,-187r12,0r64,174r66,-174r12,0r-72,187r-13,0","w":159,"k":{".":29,",":29}},"w":{"d":"64,0r-59,-187r12,0r53,169r44,-169r11,0r46,169r54,-169r11,0r-60,187r-11,0r-45,-167r-44,167r-12,0","w":240,"k":{".":23,",":23}},"x":{"d":"12,0r-14,0r69,-97r-66,-90r14,0r59,81r57,-81r14,0r-65,90r69,97r-13,0r-63,-88","w":147,"k":{"-":13}},"y":{"d":"73,28v-12,32,-19,51,-55,45r0,-11v40,12,42,-36,54,-61r-70,-188r11,0r65,174r64,-174r13,0","w":157,"k":{".":28,"-":6,",":28}},"z":{"d":"6,0r0,-13r129,-163r-122,0r0,-11r134,0r0,14r-129,162r133,0r0,11r-145,0","w":157},"{":{"d":"86,-150v0,-62,-7,-118,62,-110v-1,6,3,15,-6,13v-84,-14,-3,142,-76,154v41,7,33,57,34,106v0,40,11,47,48,48v-1,5,3,14,-5,12v-64,5,-57,-49,-57,-109v0,-39,-14,-53,-54,-51r0,-13v37,4,55,-12,54,-50","w":180},"|":{"d":"83,-275r14,0r0,360r-14,0r0,-360","w":180},"}":{"d":"114,-93v-75,-14,13,-171,-82,-154v1,-6,-3,-16,6,-13v64,-5,56,50,56,110v0,39,18,54,55,50v-1,6,4,14,-8,13v-52,-6,-47,44,-47,93v0,53,-12,67,-62,67v0,-6,-3,-15,7,-13v83,14,2,-140,75,-153","w":180},"~":{"d":"201,-100v28,-2,45,-13,68,-28r0,13v-31,27,-83,30,-125,11v-48,-23,-78,-7,-113,18r0,-13v21,-15,40,-26,68,-26v32,0,77,27,102,25","w":299},"\u00c4":{"d":"-2,0r100,-259r14,0r98,259r-12,0r-33,-88r-121,0r-34,88r-12,0xm48,-99r112,0r-55,-146xm127,-299r0,-21r16,0r0,21r-16,0xm71,-299r0,-21r16,0r0,21r-16,0","w":206},"\u00c5":{"d":"105,-337v-15,0,-31,15,-30,30v0,15,15,29,30,29v15,0,29,-13,29,-29v0,-16,-14,-30,-29,-30xm105,-268v-21,0,-40,-18,-40,-39v0,-21,19,-40,40,-40v21,0,39,19,39,40v0,21,-18,39,-39,39xm-2,0r100,-259r14,0r98,259r-12,0r-33,-88r-121,0r-34,88r-12,0xm48,-99r112,0r-55,-146","w":206,"k":{"\u201d":46,"y":5,"w":5,"v":5,"Y":21,"X":-7,"W":6,"V":6,"U":6,"T":13,"A":-7,":":-7,".":-7}},"\u00c7":{"d":"124,-5v52,0,88,-31,90,-81r12,0v-2,56,-42,92,-100,91v-73,0,-108,-57,-108,-134v0,-79,36,-135,110,-136v51,0,94,34,97,81r-12,0v-7,-43,-38,-70,-87,-70v-63,0,-95,55,-95,125v0,70,30,124,93,124xm169,48v1,36,-45,32,-75,25r0,-10v21,5,64,14,65,-13v0,-19,-17,-20,-37,-20r0,-30r7,0r0,21v24,0,40,5,40,27","w":245},"\u00c9":{"d":"30,0r0,-259r158,0r0,12r-146,0r0,107r133,0r0,11r-133,0r0,117r149,0r0,12r-161,0xm91,-284r37,-58r19,0r-45,58r-11,0","w":204},"\u00d1":{"d":"103,-320v20,0,49,17,56,-5r10,0v-6,33,-38,24,-67,18v-13,-2,-11,14,-26,11v4,-14,11,-24,27,-24xm30,0r0,-259r12,0r162,238r0,-238r12,0r0,259r-12,0r-163,-238r0,238r-11,0","w":245},"\u00d6":{"d":"133,-254v-68,0,-102,53,-102,125v0,72,34,124,102,124v68,0,102,-52,102,-124v0,-73,-34,-125,-102,-125xm133,6v-75,0,-114,-56,-114,-135v0,-79,38,-136,114,-136v75,1,115,57,115,136v0,79,-39,135,-115,135xm154,-299r0,-21r16,0r0,21r-16,0xm98,-299r0,-21r16,0r0,21r-16,0","w":266},"\u00dc":{"d":"121,6v-58,0,-94,-37,-93,-96r0,-169r12,0v7,105,-34,254,81,254v113,0,75,-150,81,-254r12,0r0,169v1,59,-36,96,-93,96xm141,-299r0,-21r16,0r0,21r-16,0xm85,-299r0,-21r16,0r0,21r-16,0","w":241},"\u00e1":{"d":"71,-7v57,0,79,-34,72,-100v-1,4,-29,9,-48,11v-43,6,-68,11,-71,46v-2,28,18,44,47,43xm155,-40v0,25,0,33,23,32v1,8,0,11,-10,10v-20,-2,-25,-12,-25,-34v-14,23,-40,35,-75,37v-50,4,-74,-62,-39,-91v13,-11,48,-17,77,-21v33,-6,37,-7,37,-35v0,-27,-21,-39,-50,-39v-35,0,-60,15,-62,46r-10,0v1,-36,32,-57,71,-56v45,0,63,18,63,68r0,83xm68,-210r37,-58r19,0r-45,58r-11,0","w":182},"\u00e0":{"d":"71,-7v57,0,79,-34,72,-100v-1,4,-29,9,-48,11v-43,6,-68,11,-71,46v-2,28,18,44,47,43xm155,-40v0,25,0,33,23,32v1,8,0,11,-10,10v-20,-2,-25,-12,-25,-34v-14,23,-40,35,-75,37v-50,4,-74,-62,-39,-91v13,-11,48,-17,77,-21v33,-6,37,-7,37,-35v0,-27,-21,-39,-50,-39v-35,0,-60,15,-62,46r-10,0v1,-36,32,-57,71,-56v45,0,63,18,63,68r0,83xm108,-210r-11,0r-45,-58r19,0","w":182},"\u00e2":{"d":"43,-210r36,-58r18,0r35,58r-11,0r-33,-48r-34,48r-11,0xm71,-7v57,0,79,-34,72,-100v-1,4,-29,9,-48,11v-43,6,-68,11,-71,46v-2,28,18,44,47,43xm155,-40v0,25,0,33,23,32v1,8,0,11,-10,10v-20,-2,-25,-12,-25,-34v-14,23,-40,35,-75,37v-50,4,-74,-62,-39,-91v13,-11,48,-17,77,-21v33,-6,37,-7,37,-35v0,-27,-21,-39,-50,-39v-35,0,-60,15,-62,46r-10,0v1,-36,32,-57,71,-56v45,0,63,18,63,68r0,83","w":182},"\u00e4":{"d":"71,-7v57,0,79,-34,72,-100v-1,4,-29,9,-48,11v-43,6,-68,11,-71,46v-2,28,18,44,47,43xm155,-40v0,25,0,33,23,32v1,8,0,11,-10,10v-20,-2,-25,-12,-25,-34v-14,23,-40,35,-75,37v-50,4,-74,-62,-39,-91v13,-11,48,-17,77,-21v33,-6,37,-7,37,-35v0,-27,-21,-39,-50,-39v-35,0,-60,15,-62,46r-10,0v1,-36,32,-57,71,-56v45,0,63,18,63,68r0,83xm108,-225r0,-21r16,0r0,21r-16,0xm52,-225r0,-21r16,0r0,21r-16,0","w":182},"\u00e3":{"d":"68,-247v19,0,50,18,57,-4r10,0v-6,33,-39,23,-68,17v-12,-2,-11,15,-26,12v4,-14,10,-25,27,-25xm71,-7v57,0,79,-34,72,-100v-1,4,-29,9,-48,11v-43,6,-68,11,-71,46v-2,28,18,44,47,43xm155,-40v0,25,0,33,23,32v1,8,0,11,-10,10v-20,-2,-25,-12,-25,-34v-14,23,-40,35,-75,37v-50,4,-74,-62,-39,-91v13,-11,48,-17,77,-21v33,-6,37,-7,37,-35v0,-27,-21,-39,-50,-39v-35,0,-60,15,-62,46r-10,0v1,-36,32,-57,71,-56v45,0,63,18,63,68r0,83","w":182},"\u00e5":{"d":"90,-269v-15,0,-29,13,-29,29v0,16,14,30,29,30v15,0,29,-14,29,-30v0,-16,-13,-29,-29,-29xm90,-200v-20,1,-39,-18,-39,-39v0,-21,18,-40,39,-40v21,0,39,19,39,40v0,21,-19,39,-39,39xm71,-7v57,0,79,-34,72,-100v-1,4,-29,9,-48,11v-43,6,-68,11,-71,46v-2,28,18,44,47,43xm155,-40v0,25,0,33,23,32v1,8,0,11,-10,10v-20,-2,-25,-12,-25,-34v-14,23,-40,35,-75,37v-50,4,-74,-62,-39,-91v13,-11,48,-17,77,-21v33,-6,37,-7,37,-35v0,-27,-21,-39,-50,-39v-35,0,-60,15,-62,46r-10,0v1,-36,32,-57,71,-56v45,0,63,18,63,68r0,83","w":182},"\u00e7":{"d":"98,-5v34,0,59,-23,62,-55r11,0v-4,38,-31,65,-74,65v-53,0,-81,-43,-81,-98v0,-101,134,-138,153,-39r-12,0v-5,-28,-27,-50,-59,-49v-46,0,-71,38,-71,88v0,50,25,88,71,88xm139,48v1,36,-45,32,-75,25r0,-10v21,5,64,14,65,-13v0,-19,-17,-20,-37,-20r0,-30r7,0r0,21v24,0,40,5,40,27","w":186},"\u00e9":{"d":"161,-103v7,-67,-72,-103,-113,-57v-12,14,-19,33,-20,57r133,0xm95,-5v33,1,56,-22,63,-50r12,0v-7,33,-36,60,-75,60v-52,1,-80,-43,-80,-98v0,-55,29,-98,80,-98v52,0,81,41,78,99r-146,0v-1,48,24,86,68,87xm76,-210r37,-58r19,0r-45,58r-11,0","w":188},"\u00e8":{"d":"161,-103v7,-67,-72,-103,-113,-57v-12,14,-19,33,-20,57r133,0xm95,-5v33,1,56,-22,63,-50r12,0v-7,33,-36,60,-75,60v-52,1,-80,-43,-80,-98v0,-55,29,-98,80,-98v52,0,81,41,78,99r-146,0v-1,48,24,86,68,87xm116,-210r-11,0r-45,-58r19,0","w":188},"\u00ea":{"d":"51,-210r36,-58r17,0r36,58r-11,0r-33,-48r-34,48r-11,0xm161,-103v7,-67,-72,-103,-113,-57v-12,14,-19,33,-20,57r133,0xm95,-5v33,1,56,-22,63,-50r12,0v-7,33,-36,60,-75,60v-52,1,-80,-43,-80,-98v0,-55,29,-98,80,-98v52,0,81,41,78,99r-146,0v-1,48,24,86,68,87","w":188},"\u00eb":{"d":"161,-103v7,-67,-72,-103,-113,-57v-12,14,-19,33,-20,57r133,0xm95,-5v33,1,56,-22,63,-50r12,0v-7,33,-36,60,-75,60v-52,1,-80,-43,-80,-98v0,-55,29,-98,80,-98v52,0,81,41,78,99r-146,0v-1,48,24,86,68,87xm116,-225r0,-21r16,0r0,21r-16,0xm60,-225r0,-21r16,0r0,21r-16,0","w":188},"\u00ed":{"d":"26,0r0,-187r11,0r0,187r-11,0xm12,-210r37,-58r19,0r-45,58r-11,0","w":62},"\u00ec":{"d":"26,0r0,-187r11,0r0,187r-11,0xm52,-210r-11,0r-45,-58r19,0","w":62},"\u00ee":{"d":"-13,-210r36,-58r17,0r36,58r-11,0r-33,-48r-34,48r-11,0xm26,0r0,-187r11,0r0,187r-11,0","w":62},"\u00ef":{"d":"26,0r0,-187r11,0r0,187r-11,0xm52,-225r0,-21r16,0r0,21r-16,0xm-4,-225r0,-21r16,0r0,21r-16,0","w":62},"\u00f1":{"d":"74,-247v19,0,50,18,57,-4r10,0v-6,33,-39,23,-68,17v-12,-2,-11,15,-26,12v5,-14,11,-25,27,-25xm100,-180v-85,0,-60,100,-64,180r-11,0r0,-187r11,0r0,31v22,-52,127,-48,127,32r0,124r-11,0v-7,-70,28,-180,-52,-180"},"\u00f3":{"d":"98,-181v-46,0,-71,38,-71,88v0,50,25,88,71,88v46,0,71,-38,71,-88v0,-50,-25,-88,-71,-88xm98,5v-53,0,-82,-41,-82,-98v0,-57,29,-98,82,-98v53,0,82,41,82,98v0,56,-29,99,-82,98xm78,-210r37,-58r19,0r-45,58r-11,0","w":196},"\u00f2":{"d":"98,-181v-46,0,-71,38,-71,88v0,50,25,88,71,88v46,0,71,-38,71,-88v0,-50,-25,-88,-71,-88xm98,5v-53,0,-82,-41,-82,-98v0,-57,29,-98,82,-98v53,0,82,41,82,98v0,56,-29,99,-82,98xm118,-210r-11,0r-45,-58r19,0","w":196},"\u00f4":{"d":"54,-210r36,-58r17,0r36,58r-11,0r-34,-48r-33,48r-11,0xm98,-181v-46,0,-71,38,-71,88v0,50,25,88,71,88v46,0,71,-38,71,-88v0,-50,-25,-88,-71,-88xm98,5v-53,0,-82,-41,-82,-98v0,-57,29,-98,82,-98v53,0,82,41,82,98v0,56,-29,99,-82,98","w":196},"\u00f6":{"d":"98,-181v-46,0,-71,38,-71,88v0,50,25,88,71,88v46,0,71,-38,71,-88v0,-50,-25,-88,-71,-88xm98,5v-53,0,-82,-41,-82,-98v0,-57,29,-98,82,-98v53,0,82,41,82,98v0,56,-29,99,-82,98xm118,-225r0,-21r16,0r0,21r-16,0xm62,-225r0,-21r16,0r0,21r-16,0","w":196},"\u00f5":{"d":"78,-247v19,0,50,18,57,-4r10,0v-6,33,-39,22,-68,17v-11,-2,-11,14,-25,12v4,-14,10,-25,26,-25xm98,-181v-46,0,-71,38,-71,88v0,50,25,88,71,88v46,0,71,-38,71,-88v0,-50,-25,-88,-71,-88xm98,5v-53,0,-82,-41,-82,-98v0,-57,29,-98,82,-98v53,0,82,41,82,98v0,56,-29,99,-82,98","w":196},"\u00fa":{"d":"88,-5v84,0,60,-101,63,-182r11,0r0,187r-11,0r0,-29v-23,52,-127,46,-127,-33r0,-125r11,0v7,72,-27,182,53,182xm74,-210r37,-58r19,0r-45,58r-11,0"},"\u00f9":{"d":"88,-5v84,0,60,-101,63,-182r11,0r0,187r-11,0r0,-29v-23,52,-127,46,-127,-33r0,-125r11,0v7,72,-27,182,53,182xm114,-210r-11,0r-45,-58r19,0"},"\u00fb":{"d":"49,-210r36,-58r18,0r35,58r-11,0r-33,-48r-33,48r-12,0xm88,-5v84,0,60,-101,63,-182r11,0r0,187r-11,0r0,-29v-23,52,-127,46,-127,-33r0,-125r11,0v7,72,-27,182,53,182"},"\u00fc":{"d":"88,-5v84,0,60,-101,63,-182r11,0r0,187r-11,0r0,-29v-23,52,-127,46,-127,-33r0,-125r11,0v7,72,-27,182,53,182xm114,-225r0,-21r16,0r0,21r-16,0xm58,-225r0,-21r16,0r0,21r-16,0"},"\u00b0":{"d":"98,-207v0,-20,-18,-39,-39,-39v-20,0,-38,18,-38,39v0,21,18,39,38,39v21,0,39,-19,39,-39xm12,-207v0,-26,21,-48,47,-48v26,-1,49,22,48,48v0,26,-22,47,-48,47v-26,0,-47,-22,-47,-47","w":118},"\u00a2":{"d":"117,-178v-74,-21,-108,66,-82,133v6,13,15,23,27,30xm171,-60v-2,47,-52,77,-103,61r-16,49r-11,0r18,-53v-78,-37,-50,-221,61,-186r14,-42r11,0r-15,46v21,8,35,27,39,52r-11,0v-5,-20,-14,-35,-31,-42r-55,165v42,14,85,-11,88,-50r11,0"},"\u00a3":{"d":"123,6v-30,0,-75,-30,-103,-5r-8,-11v33,-19,59,-64,39,-108r-41,0r0,-10r35,0v-13,-25,-23,-37,-25,-62v-5,-59,90,-82,127,-42v13,13,20,33,20,57r-11,0v-1,-41,-23,-66,-62,-67v-33,-1,-61,21,-61,52v0,26,13,37,27,62r51,0r0,10r-46,0v14,42,-2,79,-27,100v26,-13,62,12,85,12v20,0,36,-11,46,-23r8,9v-15,15,-31,26,-54,26"},"\u00a7":{"d":"87,35v-37,-3,-59,-20,-57,-60v4,1,13,-3,11,4v-1,30,17,46,45,46v52,0,63,-65,18,-80v-32,-19,-84,-26,-84,-72v0,-25,15,-42,34,-51v-36,-25,-12,-90,36,-87v36,2,57,22,56,60r-11,0v0,-31,-14,-47,-43,-49v-34,-2,-57,36,-36,62v26,31,104,33,104,88v0,26,-15,39,-35,50v37,25,15,93,-38,89xm64,-170v-28,6,-45,40,-26,65v17,23,53,30,79,45v26,-10,44,-43,23,-68v-15,-19,-52,-29,-76,-42","w":180},"\u00b6":{"d":"17,-199v-1,-66,76,-64,146,-61r0,10r-24,0r0,250r-10,0r0,-250r-34,0r0,250r-11,0r0,-137v-39,-1,-67,-24,-67,-62","w":180},"\u00df":{"d":"85,-252v-39,0,-48,24,-48,72r0,180r-12,0r0,-180v-3,-54,14,-77,60,-82v69,-7,86,100,29,117v30,8,46,32,46,70v0,52,-29,85,-83,78v1,-3,-1,-9,1,-11v48,3,70,-21,70,-67v1,-46,-25,-66,-71,-65v-1,-6,0,-13,8,-9v32,-1,51,-16,51,-49v1,-34,-18,-54,-51,-54","w":175,"k":{".":6,",":6}},"\u00ae":{"d":"197,-163v0,-34,-47,-26,-81,-27r0,56v36,-2,81,9,81,-29xm215,-162v0,21,-16,37,-36,39r33,69r-18,0r-32,-67r-46,0r0,67r-15,0r0,-149v50,1,115,-9,114,41xm267,-126v0,-70,-47,-117,-117,-117v-70,0,-117,48,-117,117v0,69,48,117,117,117v69,0,117,-48,117,-117xm22,-126v0,-76,50,-124,128,-128v113,-6,168,144,91,217v-22,21,-52,40,-91,39v-76,-3,-128,-53,-128,-128","w":299},"\u00a9":{"d":"83,-126v0,-62,57,-101,106,-68v11,8,17,19,19,32r-14,0v-25,-61,-95,-30,-95,36v0,38,18,67,51,68v25,1,43,-16,46,-37r13,0v-2,28,-29,49,-60,49v-42,-1,-66,-35,-66,-80xm267,-126v0,-70,-47,-117,-117,-117v-70,0,-117,48,-117,117v0,69,48,117,117,117v68,0,117,-48,117,-117xm22,-126v0,-76,50,-128,128,-128v79,0,128,52,128,128v0,78,-52,128,-128,128v-76,0,-128,-53,-128,-128","w":299},"\u2122":{"d":"145,-255r16,0r32,80r29,-80r15,0r0,92r-8,0r0,-86r-32,86r-8,0r-35,-86r0,86r-9,0r0,-92xm50,-255r72,0r0,7r-31,0r0,85r-10,0r0,-85r-31,0r0,-7","w":299},"\u00b4":{"d":"70,-210r37,-58r19,0r-45,58r-11,0","w":180},"\u00a8":{"d":"110,-225r0,-21r16,0r0,21r-16,0xm54,-225r0,-21r16,0r0,21r-16,0","w":180},"\u00c6":{"d":"172,-87r-123,0r-40,87r-13,0r119,-259r214,0r0,11r-145,0r0,108r132,0r0,11r-132,0r0,118r149,0r0,11r-161,0r0,-87xm172,-98r0,-150r-49,0r-69,150r118,0","w":342,"k":{".":-7,"-":6}},"\u00d8":{"d":"133,-253v-100,0,-127,134,-79,208r151,-179v-15,-19,-39,-29,-72,-29xm132,6v-37,-1,-60,-12,-80,-33r-31,37r-8,-6r32,-39v-18,-23,-26,-55,-26,-94v-1,-80,38,-136,115,-135v37,-1,62,11,80,31r31,-36r8,8r-32,37v18,25,26,55,27,95v1,79,-41,135,-116,135xm134,-5v99,6,127,-137,78,-210r-152,179v18,19,40,29,74,31","w":266,"k":{"Y":6,".":15,"-":-7}},"\u00b1":{"d":"45,-23r210,0r0,11r-210,0r0,-11xm145,-202r11,0r0,62r99,0r0,12r-99,0r0,62r-11,0r0,-62r-100,0r0,-12r100,0r0,-62","w":299},"\u00a5":{"d":"89,0r0,-107r-89,0r0,-8r85,0r-18,-28r-67,0r0,-9r60,0r-60,-93r14,0r82,126r81,-126r13,0r-60,93r60,0r0,9r-66,0r-18,28r84,0r0,8r-89,0r0,107r-12,0","w":190},"\u00b5":{"d":"123,-29v-15,42,-100,51,-109,-1r-22,105r-12,0r55,-261r12,0r-25,132v-5,52,60,62,87,26v28,-37,33,-105,47,-158r12,0r-34,166v-1,12,7,14,20,13v-1,6,0,13,-11,11v-19,1,-24,-14,-20,-33","w":182},"\u00aa":{"d":"108,-203v-22,13,-90,3,-90,40v0,21,15,30,36,30v41,0,59,-22,54,-70xm116,-220v0,33,-16,87,18,86v1,6,0,8,-8,7v-15,1,-18,-8,-18,-23v-18,30,-100,38,-99,-12v1,-34,35,-36,72,-41v24,-4,29,-5,27,-24v-4,-42,-84,-34,-85,4r-8,0v3,-25,24,-39,54,-39v30,1,47,10,47,42","w":136},"\u00ba":{"d":"73,-255v-34,0,-52,26,-52,62v0,35,18,61,52,61v34,0,54,-26,54,-61v0,-36,-21,-62,-54,-62xm73,-125v-39,0,-61,-27,-61,-68v0,-41,22,-69,61,-69v39,0,62,28,62,69v0,41,-23,68,-62,68","w":147},"\u00e6":{"d":"288,-103v8,-67,-71,-103,-113,-57v-13,14,-19,33,-20,57r133,0xm143,-104v-37,14,-121,3,-119,54v1,28,17,44,46,44v55,-2,80,-32,73,-98xm20,-135v-4,-65,127,-79,135,-15v13,-23,34,-41,67,-41v52,0,81,41,78,99r-145,0v-2,49,23,87,67,87v34,0,55,-22,63,-50r12,0v-9,71,-129,81,-146,10v-11,56,-139,75,-139,-3v1,-49,45,-51,93,-59v35,-6,39,-7,38,-35v-2,-29,-19,-38,-50,-39v-37,0,-58,14,-62,46r-11,0","w":314},"\u00f8":{"d":"48,-27v43,50,130,8,121,-66v-3,-22,-5,-44,-14,-57xm97,-181v-66,-4,-88,94,-55,146r107,-123v-11,-14,-29,-22,-52,-23xm98,5v-26,-2,-44,-9,-58,-23r-22,26r-7,-7r23,-28v-39,-55,-14,-169,64,-164v27,2,44,9,58,24r22,-25r7,7r-22,26v38,57,16,170,-65,164","w":196},"\u00bf":{"d":"81,5v-56,0,-89,-55,-58,-101v19,-28,64,-46,59,-99r11,0v8,74,-70,74,-70,137v0,35,24,52,60,52v39,0,62,-27,61,-68r12,0v0,48,-28,79,-75,79xm94,-259r0,31r-14,0r0,-31r14,0","w":166},"\u00a1":{"d":"60,-258r0,31r-12,0r0,-31r12,0xm59,-194r3,194r-13,0r1,-194r9,0","w":110},"\u00ac":{"d":"45,-150r210,0r0,88r-10,0r0,-77r-200,0r0,-11","w":299},"\u00ab":{"d":"60,-37r-45,-57r45,-54r15,0r-44,54r44,57r-15,0xm104,-37r-45,-57r45,-54r15,0r-44,54r44,57r-15,0","w":133},"\u00bb":{"d":"73,-148r45,58r-45,53r-15,0r44,-53r-44,-58r15,0xm29,-148r45,58r-45,53r-15,0r45,-53r-45,-58r15,0","w":133},"\u2026":{"d":"54,0r0,-31r12,0r0,31r-12,0xm174,0r0,-31r12,0r0,31r-12,0xm294,0r0,-31r12,0r0,31r-12,0","w":360},"\u00a0":{},"\u00c0":{"d":"-2,0r100,-259r14,0r98,259r-12,0r-33,-88r-121,0r-34,88r-12,0xm48,-99r112,0r-55,-146xm127,-284r-11,0r-45,-58r19,0","w":206},"\u00c3":{"d":"87,-320v20,0,49,17,57,-5r10,0v-6,33,-39,24,-68,18v-12,-2,-11,14,-26,11v5,-13,11,-24,27,-24xm-2,0r100,-259r14,0r98,259r-12,0r-33,-88r-121,0r-34,88r-12,0xm48,-99r112,0r-55,-146","w":206},"\u00d5":{"d":"114,-320v20,0,49,17,56,-5r10,0v-6,32,-38,24,-67,18v-13,-2,-11,14,-26,11v4,-14,11,-24,27,-24xm133,-254v-68,0,-102,53,-102,125v0,72,34,124,102,124v68,0,102,-52,102,-124v0,-73,-34,-125,-102,-125xm133,6v-75,0,-114,-56,-114,-135v0,-79,38,-136,114,-136v75,1,115,57,115,136v0,79,-39,135,-115,135","w":266},"\u2013":{"d":"0,-89r0,-8r180,0r0,8r-180,0","w":180},"\u2014":{"d":"0,-97r360,0r0,8r-360,0r0,-8","w":360},"\u201c":{"d":"113,-189r-13,0r-25,-70r13,0xm62,-189r-13,0r-25,-70r12,0","w":137,"k":{"\u00c6":53,"\u00c5":46,"J":79,"A":46}},"\u201d":{"d":"75,-189r26,-70r12,0r-25,70r-13,0xm24,-189r25,-70r12,0r-25,70r-12,0","w":137},"\u2018":{"d":"62,-189r-13,0r-25,-70r12,0","w":85},"\u2019":{"d":"24,-189r25,-70r12,0r-25,70r-12,0","w":85},"\u00f7":{"d":"134,-47v0,-8,8,-17,16,-17v8,0,16,7,16,16v0,8,-7,16,-16,16v-8,0,-16,-7,-16,-15xm45,-113r210,0r0,11r-210,0r0,-11xm134,-167v0,-8,8,-16,16,-16v8,0,16,8,16,16v0,8,-7,16,-16,16v-10,0,-16,-8,-16,-16","w":299},"\u00ff":{"d":"73,28v-12,32,-19,51,-55,45r0,-11v40,12,42,-36,54,-61r-70,-188r11,0r65,174r64,-174r13,0xm99,-225r0,-21r16,0r0,21r-16,0xm43,-225r0,-21r16,0r0,21r-16,0","w":157},"\u00a4":{"d":"169,-190v0,-50,-76,-69,-103,-29v-11,15,-19,37,-22,66r113,0r-3,9r-110,0r-1,41r97,0r-3,9r-93,0v5,51,19,88,68,90v34,1,56,-19,58,-50r12,0v-3,37,-29,62,-70,61v-55,-1,-76,-43,-80,-101r-32,0v0,-14,19,-8,31,-9r0,-41r-30,0v0,-14,19,-8,31,-9v-1,-77,68,-127,128,-82v14,10,19,26,21,45r-12,0"},"\u00b7":{"d":"59,-122v0,6,-6,11,-12,11v-7,0,-12,-4,-12,-11v0,-7,6,-12,12,-12v7,0,12,6,12,12","w":93},"\u00c2":{"d":"63,-284r36,-58r17,0r36,58r-11,0r-34,-48r-33,48r-11,0xm-2,0r100,-259r14,0r98,259r-12,0r-33,-88r-121,0r-34,88r-12,0xm48,-99r112,0r-55,-146","w":206},"\u00ca":{"d":"66,-284r36,-58r18,0r35,58r-11,0r-33,-48r-33,48r-12,0xm30,0r0,-259r158,0r0,12r-146,0r0,107r133,0r0,11r-133,0r0,117r149,0r0,12r-161,0","w":204},"\u00c1":{"d":"-2,0r100,-259r14,0r98,259r-12,0r-33,-88r-121,0r-34,88r-12,0xm48,-99r112,0r-55,-146xm87,-284r37,-58r19,0r-45,58r-11,0","w":206},"\u00cb":{"d":"30,0r0,-259r158,0r0,12r-146,0r0,107r133,0r0,11r-133,0r0,117r149,0r0,12r-161,0xm131,-299r0,-21r16,0r0,21r-16,0xm75,-299r0,-21r16,0r0,21r-16,0","w":204},"\u00c8":{"d":"30,0r0,-259r158,0r0,12r-146,0r0,107r133,0r0,11r-133,0r0,117r149,0r0,12r-161,0xm131,-284r-11,0r-45,-58r19,0","w":204},"\u00cd":{"d":"31,0r0,-259r12,0r0,259r-12,0xm17,-284r37,-58r19,0r-45,58r-11,0","w":74},"\u00ce":{"d":"-7,-284r36,-58r17,0r36,58r-11,0r-34,-48r-33,48r-11,0xm31,0r0,-259r12,0r0,259r-12,0","w":74},"\u00cf":{"d":"31,0r0,-259r12,0r0,259r-12,0xm57,-299r0,-21r16,0r0,21r-16,0xm1,-299r0,-21r16,0r0,21r-16,0","w":74},"\u00cc":{"d":"31,0r0,-259r12,0r0,259r-12,0xm57,-284r-11,0r-45,-58r19,0","w":74},"\u00d3":{"d":"133,-254v-68,0,-102,53,-102,125v0,72,34,124,102,124v68,0,102,-52,102,-124v0,-73,-34,-125,-102,-125xm133,6v-75,0,-114,-56,-114,-135v0,-79,38,-136,114,-136v75,1,115,57,115,136v0,79,-39,135,-115,135xm114,-284r37,-58r19,0r-45,58r-11,0","w":266},"\u00d4":{"d":"89,-284r36,-58r17,0r36,58r-11,0r-33,-48r-34,48r-11,0xm133,-254v-68,0,-102,53,-102,125v0,72,34,124,102,124v68,0,102,-52,102,-124v0,-73,-34,-125,-102,-125xm133,6v-75,0,-114,-56,-114,-135v0,-79,38,-136,114,-136v75,1,115,57,115,136v0,79,-39,135,-115,135","w":266},"\u00d2":{"d":"133,-254v-68,0,-102,53,-102,125v0,72,34,124,102,124v68,0,102,-52,102,-124v0,-73,-34,-125,-102,-125xm133,6v-75,0,-114,-56,-114,-135v0,-79,38,-136,114,-136v75,1,115,57,115,136v0,79,-39,135,-115,135xm154,-284r-11,0r-45,-58r19,0","w":266},"\u00da":{"d":"121,6v-58,0,-94,-37,-93,-96r0,-169r12,0v7,105,-34,254,81,254v113,0,75,-150,81,-254r12,0r0,169v1,59,-36,96,-93,96xm101,-284r37,-58r19,0r-45,58r-11,0","w":241},"\u00db":{"d":"76,-284r36,-58r18,0r35,58r-11,0r-33,-48r-33,48r-12,0xm121,6v-58,0,-94,-37,-93,-96r0,-169r12,0v7,105,-34,254,81,254v113,0,75,-150,81,-254r12,0r0,169v1,59,-36,96,-93,96","w":241},"\u00d9":{"d":"121,6v-58,0,-94,-37,-93,-96r0,-169r12,0v7,105,-34,254,81,254v113,0,75,-150,81,-254r12,0r0,169v1,59,-36,96,-93,96xm141,-284r-11,0r-45,-58r19,0","w":241},"\u00af":{"d":"51,-229r0,-13r78,0r0,13r-78,0","w":180},"\u00b8":{"d":"132,48v1,36,-45,32,-75,25r0,-10v21,5,64,14,65,-13v0,-19,-17,-20,-37,-20r0,-30r7,0r0,21v24,0,40,5,40,27","w":180},"\u00a6":{"d":"83,-72r14,0r0,134r-14,0r0,-134xm83,-252r14,0r0,134r-14,0r0,-134","w":180},"\u00d0":{"d":"217,-129v0,-82,-35,-123,-125,-119r-50,0r0,104r87,0r0,10r-87,0r0,123r50,0v88,5,125,-37,125,-118xm229,-129v0,91,-44,133,-140,129r-59,0r0,-134r-30,0r0,-10r30,0r0,-115r59,0v98,-4,139,39,140,130","w":248,"k":{"Y":6,"W":-3,"V":3,"A":3,".":13,"-":-7}},"\u00f0":{"d":"15,-90v0,-81,82,-124,138,-73v-13,-24,-30,-41,-51,-56r-50,21r-3,-10r42,-18v-16,-10,-34,-18,-53,-26r5,-9v21,8,40,18,59,30r45,-19r4,9r-39,17v39,31,67,70,68,133v1,58,-27,96,-82,96v-55,-1,-83,-38,-83,-95xm169,-90v0,-49,-25,-85,-71,-85v-46,0,-71,36,-71,85v0,49,25,85,71,85v46,0,71,-36,71,-85","w":196},"\u00dd":{"d":"89,0r0,-114r-89,-145r14,0r82,132r80,-132r14,0r-89,145r0,114r-12,0xm75,-284r37,-58r19,0r-45,58r-11,0","w":190},"\u00fd":{"d":"73,28v-12,32,-19,51,-55,45r0,-11v40,12,42,-36,54,-61r-70,-188r11,0r65,174r64,-174r13,0xm59,-210r37,-58r19,0r-45,58r-11,0","w":157},"\u00de":{"d":"181,-140v-1,-65,-71,-57,-139,-57r0,118v72,1,141,8,139,-61xm193,-137v0,73,-74,71,-151,69r0,68r-12,0r0,-259r12,0r0,52v76,-1,151,-5,151,70","w":210},"\u00fe":{"d":"107,5v-36,0,-60,-18,-71,-45r0,114r-11,0r0,-332r11,0r0,114v11,-28,34,-47,71,-47v53,0,82,41,82,98v0,57,-28,98,-82,98xm178,-93v0,-50,-25,-88,-71,-88v-46,0,-71,38,-71,88v0,50,25,88,71,88v46,0,71,-38,71,-88","w":205},"\u00d7":{"d":"63,-202r87,87r86,-87r8,8r-86,87r86,86r-8,8r-86,-86r-87,86r-8,-8r87,-86r-87,-87","w":299},"\u00b9":{"d":"24,-217v22,0,37,-10,41,-28r8,0r0,147r-8,0r0,-128v-10,10,-22,15,-41,15r0,-6","w":123},"\u00b2":{"d":"111,-208v1,56,-99,48,-91,104r90,0r0,6r-98,0v-7,-74,87,-52,91,-110v1,-20,-17,-34,-38,-34v-24,0,-41,15,-40,39v-3,-1,-9,2,-8,-2v0,-27,20,-45,48,-44v26,0,46,16,46,41","w":123},"\u00b3":{"d":"60,-94v-31,-1,-50,-18,-49,-49v2,1,7,-1,8,1v0,26,15,41,41,41v25,1,45,-14,45,-37v0,-28,-23,-35,-55,-34v-1,-4,0,-7,5,-6v25,0,45,-10,45,-34v0,-20,-16,-30,-38,-30v-24,0,-40,13,-39,38v-2,0,-7,1,-7,-1v0,-29,18,-43,48,-43v48,0,59,63,17,72v18,3,32,17,32,37v0,28,-23,46,-53,45","w":123},"\u00bc":{"d":"261,0r0,-36r-72,0r0,-7r73,-94r7,0r0,94r17,0r0,7r-17,0r0,36r-8,0xm261,-43r0,-83r-64,83r64,0xm58,6r167,-258r14,0r-168,258r-13,0xm23,-219v20,0,37,-8,39,-26r8,0r0,137r-8,0r0,-119v-9,10,-20,14,-39,14r0,-6","w":296},"\u00bd":{"d":"284,-103v1,54,-91,43,-87,97r86,0r0,6r-93,0v-8,-70,82,-47,86,-102v1,-20,-16,-33,-36,-33v-23,1,-39,13,-38,37v-3,-1,-9,2,-8,-2v1,-26,19,-41,46,-41v24,0,44,15,44,38xm58,6r167,-258r14,0r-168,258r-13,0xm23,-219v20,0,37,-8,39,-26r8,0r0,137r-8,0r0,-119v-9,10,-20,14,-39,14r0,-6","w":296},"\u00be":{"d":"261,0r0,-36r-72,0r0,-7r73,-94r7,0r0,94r17,0r0,7r-17,0r0,36r-8,0xm261,-43r0,-83r-64,83r64,0xm58,6r167,-258r14,0r-168,258r-13,0xm58,-104v-29,0,-48,-16,-48,-45r8,0v-1,24,15,38,39,38v24,0,43,-12,43,-34v-1,-26,-22,-32,-52,-32v-1,-4,1,-6,5,-5v24,0,41,-11,42,-32v1,-20,-16,-29,-36,-28v-22,0,-38,12,-37,35v-2,0,-7,1,-7,-1v0,-27,19,-37,46,-40v47,-5,55,59,16,68v18,3,30,14,31,34v0,25,-22,43,-50,42","w":296},"\u00ad":{"d":"14,-88r0,-10r96,0r0,10r-96,0","w":123}}});
