/*
 * 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 m=this,h,z=m.jQuery,q=m.$,p=m.jQuery=m.$=function(F,G){return new p.fn.init(F,G);},E=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,g=/^.[^:#\[\.,]*$/;p.fn=p.prototype={init:function(F,I){F=F||document;if(F.nodeType){this[0]=F;this.length=1;this.context=F;return this;}if(typeof F==="string"){var H=E.exec(F);if(H&&(H[1]||!I)){if(H[1]){F=p.clean([H[1]],I);}else{var J=document.getElementById(H[3]);if(J&&J.id!=H[3]){return p().find(F);}var G=p(J||[]);G.context=document;G.selector=F;return G;}}else{return p(I).find(F);}}else{if(p.isFunction(F)){return p(document).ready(F);}}if(F.selector&&F.context){this.selector=F.selector;this.context=F.context;}return this.setArray(p.isArray(F)?F:p.makeArray(F));},selector:"",jquery:"1.3.2",size:function(){return this.length;},get:function(F){return F===h?Array.prototype.slice.call(this):this[F];},pushStack:function(G,I,F){var H=p(G);H.prevObject=this;H.context=this.context;if(I==="find"){H.selector=this.selector+(this.selector?" ":"")+F;}else{if(I){H.selector=this.selector+"."+I+"("+F+")";}}return H;},setArray:function(F){this.length=0;Array.prototype.push.apply(this,F);return this;},each:function(G,F){return p.each(this,G,F);},index:function(F){return p.inArray(F&&F.jquery?F[0]:F,this);},attr:function(G,I,H){var F=G;if(typeof G==="string"){if(I===h){return this[0]&&p[H||"attr"](this[0],G);}else{F={};F[G]=I;}}return this.each(function(J){for(G in F){p.attr(H?this.style:this,G,p.prop(this,F[G],H,J,G));}});},css:function(F,G){if((F=="width"||F=="height")&&parseFloat(G)<0){G=h;}return this.attr(F,G,"curCSS");},text:function(G){if(typeof G!=="object"&&G!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(G));}var F="";p.each(G||this,function(){p.each(this.childNodes,function(){if(this.nodeType!=8){F+=this.nodeType!=1?this.nodeValue:p.fn.text([this]);}});});return F;},wrapAll:function(F){if(this[0]){var G=p(F,this[0].ownerDocument).clone();if(this[0].parentNode){G.insertBefore(this[0]);}G.map(function(){var H=this;while(H.firstChild){H=H.firstChild;}return H;}).append(this);}return this;},wrapInner:function(F){return this.each(function(){p(this).contents().wrapAll(F);});},wrap:function(F){return this.each(function(){p(this).wrapAll(F);});},append:function(){return this.domManip(arguments,true,function(F){if(this.nodeType==1){this.appendChild(F);}});},prepend:function(){return this.domManip(arguments,true,function(F){if(this.nodeType==1){this.insertBefore(F,this.firstChild);}});},before:function(){return this.domManip(arguments,false,function(F){this.parentNode.insertBefore(F,this);});},after:function(){return this.domManip(arguments,false,function(F){this.parentNode.insertBefore(F,this.nextSibling);});},end:function(){return this.prevObject||p([]);},push:[].push,sort:[].sort,splice:[].splice,find:function(F){if(this.length===1){var G=this.pushStack([],"find",F);G.length=0;p.find(F,this[0],G);return G;}else{return this.pushStack(p.unique(p.map(this,function(H){return p.find(F,H);})),"find",F);}},clone:function(H){var F=this.map(function(){if(!p.support.noCloneEvent&&!p.isXMLDoc(this)){var J=this.outerHTML;if(!J){var K=this.ownerDocument.createElement("div");K.appendChild(this.cloneNode(true));J=K.innerHTML;}return p.clean([J.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0];}else{return this.cloneNode(true);}});if(H===true){var I=this.find("*").andSelf(),G=0;F.find("*").andSelf().each(function(){if(this.nodeName!==I[G].nodeName){return;}var J=p.data(I[G],"events");for(var L in J){for(var K in J[L]){p.event.add(this,L,J[L][K],J[L][K].data);}}G++;});}return F;},filter:function(F){return this.pushStack(p.isFunction(F)&&p.grep(this,function(H,G){return F.call(H,G);})||p.multiFilter(F,p.grep(this,function(G){return G.nodeType===1;})),"filter",F);},closest:function(F){var H=p.expr.match.POS.test(F)?p(F):null,G=0;return this.map(function(){var I=this;while(I&&I.ownerDocument){if(H?H.index(I)>-1:p(I).is(F)){p.data(I,"closest",G);return I;}I=I.parentNode;G++;}});},not:function(F){if(typeof F==="string"){if(g.test(F)){return this.pushStack(p.multiFilter(F,this,true),"not",F);}else{F=p.multiFilter(F,this);}}var G=F.length&&F[F.length-1]!==h&&!F.nodeType;return this.filter(function(){return G?p.inArray(this,F)<0:this!=F;});},add:function(F){return this.pushStack(p.unique(p.merge(this.get(),typeof F==="string"?p(F):p.makeArray(F))));},is:function(F){return !!F&&p.multiFilter(F,this).length>0;},hasClass:function(F){return !!F&&this.is("."+F);},val:function(L){if(L===h){var F=this[0];if(F){if(p.nodeName(F,"option")){return(F.attributes.value||{}).specified?F.value:F.text;}if(p.nodeName(F,"select")){var J=F.selectedIndex,M=[],N=F.options,I=F.type=="select-one";if(J<0){return null;}for(var G=I?J:0,K=I?J+1:N.length;G<K;G++){var H=N[G];if(H.selected){L=p(H).val();if(I){return L;}M.push(L);}}return M;}return(F.value||"").replace(/\r/g,"");}return h;}if(typeof L==="number"){L+="";}return this.each(function(){if(this.nodeType!=1){return;}if(p.isArray(L)&&/radio|checkbox/.test(this.type)){this.checked=(p.inArray(this.value,L)>=0||p.inArray(this.name,L)>=0);}else{if(p.nodeName(this,"select")){var O=p.makeArray(L);p("option",this).each(function(){this.selected=(p.inArray(this.value,O)>=0||p.inArray(this.text,O)>=0);});if(!O.length){this.selectedIndex=-1;}}else{this.value=L;}}});},html:function(F){return F===h?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(F);},replaceWith:function(F){return this.after(F).remove();},eq:function(F){return this.slice(F,+F+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","));},map:function(F){return this.pushStack(p.map(this,function(H,G){return F.call(H,G,H);}));},andSelf:function(){return this.add(this.prevObject);},domManip:function(K,N,M){if(this[0]){var J=(this[0].ownerDocument||this[0]).createDocumentFragment(),G=p.clean(K,(this[0].ownerDocument||this[0]),J),I=J.firstChild;if(I){for(var H=0,F=this.length;H<F;H++){M.call(L(this[H],I),this.length>1||H>0?J.cloneNode(true):J);}}if(G){p.each(G,A);}}return this;function L(O,P){return N&&p.nodeName(O,"table")&&p.nodeName(P,"tr")?(O.getElementsByTagName("tbody")[0]||O.appendChild(O.ownerDocument.createElement("tbody"))):O;}}};p.fn.init.prototype=p.fn;function A(F,G){if(G.src){p.ajax({url:G.src,async:false,dataType:"script"});}else{p.globalEval(G.text||G.textContent||G.innerHTML||"");}if(G.parentNode){G.parentNode.removeChild(G);}}function f(){return +new Date;}p.extend=p.fn.extend=function(){var K=arguments[0]||{},I=1,J=arguments.length,F=false,H;if(typeof K==="boolean"){F=K;K=arguments[1]||{};I=2;}if(typeof K!=="object"&&!p.isFunction(K)){K={};}if(J==I){K=this;--I;}for(;I<J;I++){if((H=arguments[I])!=null){for(var G in H){var L=K[G],M=H[G];if(K===M){continue;}if(F&&M&&typeof M==="object"&&!M.nodeType){K[G]=p.extend(F,L||(M.length!=null?[]:{}),M);}else{if(M!==h){K[G]=M;}}}}}return K;};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,r=document.defaultView||{},t=Object.prototype.toString;p.extend({noConflict:function(F){m.$=q;if(F){m.jQuery=z;}return p;},isFunction:function(F){return t.call(F)==="[object Function]";},isArray:function(F){return t.call(F)==="[object Array]";},isXMLDoc:function(F){return F.nodeType===9&&F.documentElement.nodeName!=="HTML"||!!F.ownerDocument&&p.isXMLDoc(F.ownerDocument);},globalEval:function(H){if(H&&/\S/.test(H)){var G=document.getElementsByTagName("head")[0]||document.documentElement,F=document.createElement("script");F.type="text/javascript";if(p.support.scriptEval){F.appendChild(document.createTextNode(H));}else{F.text=H;}G.insertBefore(F,G.firstChild);G.removeChild(F);}},nodeName:function(G,F){return G.nodeName&&G.nodeName.toUpperCase()==F.toUpperCase();},each:function(H,L,G){var F,I=0,J=H.length;if(G){if(J===h){for(F in H){if(L.apply(H[F],G)===false){break;}}}else{for(;I<J;){if(L.apply(H[I++],G)===false){break;}}}}else{if(J===h){for(F in H){if(L.call(H[F],F,H[F])===false){break;}}}else{for(var K=H[0];I<J&&L.call(K,I,K)!==false;K=H[++I]){}}}return H;},prop:function(I,J,H,G,F){if(p.isFunction(J)){J=J.call(I,G);}return typeof J==="number"&&H=="curCSS"&&!b.test(F)?J+"px":J;},className:{add:function(F,G){p.each((G||"").split(/\s+/),function(H,I){if(F.nodeType==1&&!p.className.has(F.className,I)){F.className+=(F.className?" ":"")+I;}});},remove:function(F,G){if(F.nodeType==1){F.className=G!==h?p.grep(F.className.split(/\s+/),function(H){return !p.className.has(G,H);}).join(" "):"";}},has:function(G,F){return G&&p.inArray(F,(G.className||G).toString().split(/\s+/))>-1;}},swap:function(I,H,J){var F={};for(var G in H){F[G]=I.style[G];I.style[G]=H[G];}J.call(I);for(var G in H){I.style[G]=F[G];}},css:function(I,G,K,F){if(G=="width"||G=="height"){var M,H={position:"absolute",visibility:"hidden",display:"block"},L=G=="width"?["Left","Right"]:["Top","Bottom"];function J(){M=G=="width"?I.offsetWidth:I.offsetHeight;if(F==="border"){return;}p.each(L,function(){if(!F){M-=parseFloat(p.curCSS(I,"padding"+this,true))||0;}if(F==="margin"){M+=parseFloat(p.curCSS(I,"margin"+this,true))||0;}else{M-=parseFloat(p.curCSS(I,"border"+this+"Width",true))||0;}});}if(I.offsetWidth!==0){J();}else{p.swap(I,H,J);}return Math.max(0,Math.round(M));}return p.curCSS(I,G,K);},curCSS:function(J,G,H){var M,F=J.style;if(G=="opacity"&&!p.support.opacity){M=p.attr(F,"opacity");return M==""?"1":M;}if(G.match(/float/i)){G=x;}if(!H&&F&&F[G]){M=F[G];}else{if(r.getComputedStyle){if(G.match(/float/i)){G="float";}G=G.replace(/([A-Z])/g,"-$1").toLowerCase();var N=r.getComputedStyle(J,null);if(N){M=N.getPropertyValue(G);}if(G=="opacity"&&M==""){M="1";}}else{if(J.currentStyle){var K=G.replace(/\-(\w)/g,function(O,P){return P.toUpperCase();});M=J.currentStyle[G]||J.currentStyle[K];if(!/^\d+(px)?$/i.test(M)&&/^\d/.test(M)){var I=F.left,L=J.runtimeStyle.left;J.runtimeStyle.left=J.currentStyle.left;F.left=M||0;M=F.pixelLeft+"px";F.left=I;J.runtimeStyle.left=L;}}}}return M;},clean:function(G,L,J){L=L||document;if(typeof L.createElement==="undefined"){L=L.ownerDocument||L[0]&&L[0].ownerDocument||document;}if(!J&&G.length===1&&typeof G[0]==="string"){var I=/^<(\w+)\s*\/?>$/.exec(G[0]);if(I){return[L.createElement(I[1])];}}var H=[],F=[],M=L.createElement("div");p.each(G,function(Q,T){if(typeof T==="number"){T+="";}if(!T){return;}if(typeof T==="string"){T=T.replace(/(<(\w+)[^>]*?)\/>/g,function(V,W,U){return U.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?V:W+"></"+U+">";});var P=T.replace(/^\s+/,"").substring(0,10).toLowerCase();var R=!P.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!P.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||P.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!P.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!P.indexOf("<td")||!P.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!P.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!p.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];M.innerHTML=R[1]+T+R[2];while(R[0]--){M=M.lastChild;}if(!p.support.tbody){var S=/<tbody/i.test(T),O=!P.indexOf("<table")&&!S?M.firstChild&&M.firstChild.childNodes:R[1]=="<table>"&&!S?M.childNodes:[];for(var N=O.length-1;N>=0;--N){if(p.nodeName(O[N],"tbody")&&!O[N].childNodes.length){O[N].parentNode.removeChild(O[N]);}}}if(!p.support.leadingWhitespace&&/^\s/.test(T)){M.insertBefore(L.createTextNode(T.match(/^\s*/)[0]),M.firstChild);}T=p.makeArray(M.childNodes);}if(T.nodeType){H.push(T);}else{H=p.merge(H,T);}});if(J){for(var K=0;H[K];K++){if(p.nodeName(H[K],"script")&&(!H[K].type||H[K].type.toLowerCase()==="text/javascript")){F.push(H[K].parentNode?H[K].parentNode.removeChild(H[K]):H[K]);}else{if(H[K].nodeType===1){H.splice.apply(H,[K+1,0].concat(p.makeArray(H[K].getElementsByTagName("script"))));}J.appendChild(H[K]);}}return F;}return H;},attr:function(K,H,L){if(!K||K.nodeType==3||K.nodeType==8){return h;}var I=!p.isXMLDoc(K),M=L!==h;H=I&&p.props[H]||H;if(K.tagName){var G=/href|src|style/.test(H);if(H=="selected"&&K.parentNode){K.parentNode.selectedIndex;}if(H in K&&I&&!G){if(M){if(H=="type"&&p.nodeName(K,"input")&&K.parentNode){throw"type property can't be changed";}K[H]=L;}if(p.nodeName(K,"form")&&K.getAttributeNode(H)){return K.getAttributeNode(H).nodeValue;}if(H=="tabIndex"){var J=K.getAttributeNode("tabIndex");return J&&J.specified?J.value:K.nodeName.match(/(button|input|object|select|textarea)/i)?0:K.nodeName.match(/^(a|area)$/i)&&K.href?0:h;}return K[H];}if(!p.support.style&&I&&H=="style"){return p.attr(K.style,"cssText",L);}if(M){K.setAttribute(H,""+L);}var F=!p.support.hrefNormalized&&I&&G?K.getAttribute(H,2):K.getAttribute(H);return F===null?h:F;}if(!p.support.opacity&&H=="opacity"){if(M){K.zoom=1;K.filter=(K.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(L)+""=="NaN"?"":"alpha(opacity="+L*100+")");}return K.filter&&K.filter.indexOf("opacity=")>=0?(parseFloat(K.filter.match(/opacity=([^)]*)/)[1])/100)+"":"";}H=H.replace(/-([a-z])/ig,function(N,O){return O.toUpperCase();});if(M){K[H]=L;}return K[H];},trim:function(F){return(F||"").replace(/^\s+|\s+$/g,"");},makeArray:function(H){var F=[];if(H!=null){var G=H.length;if(G==null||typeof H==="string"||p.isFunction(H)||H.setInterval){F[0]=H;}else{while(G){F[--G]=H[G];}}}return F;},inArray:function(H,I){for(var F=0,G=I.length;F<G;F++){if(I[F]===H){return F;}}return -1;},merge:function(I,F){var G=0,H,J=I.length;if(!p.support.getAll){while((H=F[G++])!=null){if(H.nodeType!=8){I[J++]=H;}}}else{while((H=F[G++])!=null){I[J++]=H;}}return I;},unique:function(L){var G=[],F={};try{for(var H=0,I=L.length;H<I;H++){var K=p.data(L[H]);if(!F[K]){F[K]=true;G.push(L[H]);}}}catch(J){G=L;}return G;},grep:function(G,K,F){var H=[];for(var I=0,J=G.length;I<J;I++){if(!F!=!K(G[I],I)){H.push(G[I]);}}return H;},map:function(F,K){var G=[];for(var H=0,I=F.length;H<I;H++){var J=K(F[H],H);if(J!=null){G[G.length]=J;}}return G.concat.apply([],G);}});var D=navigator.userAgent.toLowerCase();p.browser={version:(D.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(D),opera:/opera/.test(D),msie:/msie/.test(D)&&!/opera/.test(D),mozilla:/mozilla/.test(D)&&!/(compatible|webkit)/.test(D)};p.each({parent:function(F){return F.parentNode;},parents:function(F){return p.dir(F,"parentNode");},next:function(F){return p.nth(F,2,"nextSibling");},prev:function(F){return p.nth(F,2,"previousSibling");},nextAll:function(F){return p.dir(F,"nextSibling");},prevAll:function(F){return p.dir(F,"previousSibling");},siblings:function(F){return p.sibling(F.parentNode.firstChild,F);},children:function(F){return p.sibling(F.firstChild);},contents:function(F){return p.nodeName(F,"iframe")?F.contentDocument||F.contentWindow.document:p.makeArray(F.childNodes);}},function(F,G){p.fn[F]=function(H){var I=p.map(this,G);if(H&&typeof H=="string"){I=p.multiFilter(H,I);}return this.pushStack(p.unique(I),F,H);};});p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(F,G){p.fn[F]=function(H){var K=[],M=p(H);for(var L=0,I=M.length;L<I;L++){var J=(L>0?this.clone(true):this).get();p.fn[G].apply(p(M[L]),J);K=K.concat(J);}return this.pushStack(K,F,H);};});p.each({removeAttr:function(F){p.attr(this,F,"");if(this.nodeType==1){this.removeAttribute(F);}},addClass:function(F){p.className.add(this,F);},removeClass:function(F){p.className.remove(this,F);},toggleClass:function(G,F){if(typeof F!=="boolean"){F=!p.className.has(this,G);}p.className[F?"add":"remove"](this,G);},remove:function(F){if(!F||p.filter(F,[this]).length){p("*",this).add([this]).each(function(){p.event.remove(this);p.removeData(this);});if(this.parentNode){this.parentNode.removeChild(this);}}},empty:function(){p(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild);}}},function(F,G){p.fn[F]=function(){return this.each(G,arguments);};});function k(F,G){return F[0]&&parseInt(p.curCSS(F[0],G,true),10)||0;}var i="jQuery"+f(),w=0,B={};p.extend({cache:{},data:function(G,F,H){G=G==m?B:G;var I=G[i];if(!I){I=G[i]=++w;}if(F&&!p.cache[I]){p.cache[I]={};}if(H!==h){p.cache[I][F]=H;}return F?p.cache[I][F]:I;},removeData:function(G,F){G=G==m?B:G;var I=G[i];if(F){if(p.cache[I]){delete p.cache[I][F];F="";for(F in p.cache[I]){break;}if(!F){p.removeData(G);}}}else{try{delete G[i];}catch(H){if(G.removeAttribute){G.removeAttribute(i);}}delete p.cache[I];}},queue:function(G,F,I){if(G){F=(F||"fx")+"queue";var H=p.data(G,F);if(!H||p.isArray(I)){H=p.data(G,F,p.makeArray(I));}else{if(I){H.push(I);}}}return H;},dequeue:function(I,H){var F=p.queue(I,H),G=F.shift();if(!H||H==="fx"){G=F[0];}if(G!==h){G.call(I);}}});p.fn.extend({data:function(F,H){var I=F.split(".");I[1]=I[1]?"."+I[1]:"";if(H===h){var G=this.triggerHandler("getData"+I[1]+"!",[I[0]]);if(G===h&&this.length){G=p.data(this[0],F);}return G===h&&I[1]?this.data(I[0]):G;}else{return this.trigger("setData"+I[1]+"!",[I[0],H]).each(function(){p.data(this,F,H);});}},removeData:function(F){return this.each(function(){p.removeData(this,F);});},queue:function(F,G){if(typeof F!=="string"){G=F;F="fx";}if(G===h){return p.queue(this[0],F);}return this.each(function(){var H=p.queue(this,F,G);if(F=="fx"&&H.length==1){H[0].call(this);}});},dequeue:function(F){return this.each(function(){p.dequeue(this,F);});}});
/*
 * 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 S=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,M=0,I=Object.prototype.toString;var G=function(Z,V,ac,ad){ac=ac||[];V=V||document;if(V.nodeType!==1&&V.nodeType!==9){return[];}if(!Z||typeof Z!=="string"){return ac;}var aa=[],X,ag,aj,U,ae,W,Y=true;S.lastIndex=0;while((X=S.exec(Z))!==null){aa.push(X[1]);if(X[2]){W=RegExp.rightContext;break;}}if(aa.length>1&&N.exec(Z)){if(aa.length===2&&J.relative[aa[0]]){ag=K(aa[0]+aa[1],V);}else{ag=J.relative[aa[0]]?[V]:G(aa.shift(),V);while(aa.length){Z=aa.shift();if(J.relative[Z]){Z+=aa.shift();}ag=K(Z,ag);}}}else{var af=ad?{expr:aa.pop(),set:F(ad)}:G.find(aa.pop(),aa.length===1&&V.parentNode?V.parentNode:V,R(V));ag=G.filter(af.expr,af.set);if(aa.length>0){aj=F(ag);}else{Y=false;}while(aa.length){var ai=aa.pop(),ah=ai;if(!J.relative[ai]){ai="";}else{ah=aa.pop();}if(ah==null){ah=V;}J.relative[ai](aj,ah,R(V));}}if(!aj){aj=ag;}if(!aj){throw"Syntax error, unrecognized expression: "+(ai||Z);}if(I.call(aj)==="[object Array]"){if(!Y){ac.push.apply(ac,aj);}else{if(V.nodeType===1){for(var ab=0;aj[ab]!=null;ab++){if(aj[ab]&&(aj[ab]===true||aj[ab].nodeType===1&&L(V,aj[ab]))){ac.push(ag[ab]);}}}else{for(var ab=0;aj[ab]!=null;ab++){if(aj[ab]&&aj[ab].nodeType===1){ac.push(ag[ab]);}}}}}else{F(aj,ac);}if(W){G(W,V,ac,ad);if(H){hasDuplicate=false;ac.sort(H);if(hasDuplicate){for(var ab=1;ab<ac.length;ab++){if(ac[ab]===ac[ab-1]){ac.splice(ab--,1);}}}}}return ac;};G.matches=function(U,V){return G(U,null,null,V);};G.find=function(ab,U,ac){var aa,Y;if(!ab){return[];}for(var X=0,W=J.order.length;X<W;X++){var Z=J.order[X],Y;if((Y=J.match[Z].exec(ab))){var V=RegExp.leftContext;if(V.substr(V.length-1)!=="\\"){Y[1]=(Y[1]||"").replace(/\\/g,"");aa=J.find[Z](Y,U,ac);if(aa!=null){ab=ab.replace(J.match[Z],"");break;}}}}if(!aa){aa=U.getElementsByTagName("*");}return{set:aa,expr:ab};};G.filter=function(ae,ad,ah,X){var W=ae,aj=[],ab=ad,Z,U,aa=ad&&ad[0]&&R(ad[0]);while(ae&&ad.length){for(var ac in J.filter){if((Z=J.match[ac].exec(ae))!=null){var V=J.filter[ac],ai,ag;U=false;if(ab==aj){aj=[];}if(J.preFilter[ac]){Z=J.preFilter[ac](Z,ab,ah,aj,X,aa);if(!Z){U=ai=true;}else{if(Z===true){continue;}}}if(Z){for(var Y=0;(ag=ab[Y])!=null;Y++){if(ag){ai=V(ag,Z,Y,ab);var af=X^!!ai;if(ah&&ai!=null){if(af){U=true;}else{ab[Y]=false;}}else{if(af){aj.push(ag);U=true;}}}}}if(ai!==h){if(!ah){ab=aj;}ae=ae.replace(J.match[ac],"");if(!U){return[];}break;}}}if(ae==W){if(U==null){throw"Syntax error, unrecognized expression: "+ae;}else{break;}}W=ae;}return ab;};var J=G.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(U){return U.getAttribute("href");}},relative:{"+":function(ab,U,aa){var Y=typeof U==="string",ac=Y&&!/\W/.test(U),Z=Y&&!ac;if(ac&&!aa){U=U.toUpperCase();}for(var X=0,W=ab.length,V;X<W;X++){if((V=ab[X])){while((V=V.previousSibling)&&V.nodeType!==1){}ab[X]=Z||V&&V.nodeName===U?V||false:V===U;}}if(Z){G.filter(U,ab,true);}},">":function(aa,V,ab){var Y=typeof V==="string";if(Y&&!/\W/.test(V)){V=ab?V:V.toUpperCase();for(var W=0,U=aa.length;W<U;W++){var Z=aa[W];if(Z){var X=Z.parentNode;aa[W]=X.nodeName===V?X:false;}}}else{for(var W=0,U=aa.length;W<U;W++){var Z=aa[W];if(Z){aa[W]=Y?Z.parentNode:Z.parentNode===V;}}if(Y){G.filter(V,aa,true);}}},"":function(X,V,Z){var W=M++,U=T;if(!V.match(/\W/)){var Y=V=Z?V:V.toUpperCase();U=Q;}U("parentNode",V,W,X,Y,Z);},"~":function(X,V,Z){var W=M++,U=T;if(typeof V==="string"&&!V.match(/\W/)){var Y=V=Z?V:V.toUpperCase();U=Q;}U("previousSibling",V,W,X,Y,Z);}},find:{ID:function(V,W,X){if(typeof W.getElementById!=="undefined"&&!X){var U=W.getElementById(V[1]);return U?[U]:[];}},NAME:function(W,Z,aa){if(typeof Z.getElementsByName!=="undefined"){var V=[],Y=Z.getElementsByName(W[1]);for(var X=0,U=Y.length;X<U;X++){if(Y[X].getAttribute("name")===W[1]){V.push(Y[X]);}}return V.length===0?null:V;}},TAG:function(U,V){return V.getElementsByTagName(U[1]);}},preFilter:{CLASS:function(X,V,W,U,aa,ab){X=" "+X[1].replace(/\\/g,"")+" ";if(ab){return X;}for(var Y=0,Z;(Z=V[Y])!=null;Y++){if(Z){if(aa^(Z.className&&(" "+Z.className+" ").indexOf(X)>=0)){if(!W){U.push(Z);}}else{if(W){V[Y]=false;}}}}return false;},ID:function(U){return U[1].replace(/\\/g,"");},TAG:function(V,U){for(var W=0;U[W]===false;W++){}return U[W]&&R(U[W])?V[1]:V[1].toUpperCase();},CHILD:function(U){if(U[1]=="nth"){var V=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(U[2]=="even"&&"2n"||U[2]=="odd"&&"2n+1"||!/\D/.test(U[2])&&"0n+"+U[2]||U[2]);U[2]=(V[1]+(V[2]||1))-0;U[3]=V[3]-0;}U[0]=M++;return U;},ATTR:function(Y,V,W,U,Z,aa){var X=Y[1].replace(/\\/g,"");if(!aa&&J.attrMap[X]){Y[1]=J.attrMap[X];}if(Y[2]==="~="){Y[4]=" "+Y[4]+" ";}return Y;},PSEUDO:function(Y,V,W,U,Z){if(Y[1]==="not"){if(Y[3].match(S).length>1||/^\w/.test(Y[3])){Y[3]=G(Y[3],null,null,V);}else{var X=G.filter(Y[3],V,W,true^Z);if(!W){U.push.apply(U,X);}return false;}}else{if(J.match.POS.test(Y[0])||J.match.CHILD.test(Y[0])){return true;}}return Y;},POS:function(U){U.unshift(true);return U;}},filters:{enabled:function(U){return U.disabled===false&&U.type!=="hidden";},disabled:function(U){return U.disabled===true;},checked:function(U){return U.checked===true;},selected:function(U){U.parentNode.selectedIndex;return U.selected===true;},parent:function(U){return !!U.firstChild;},empty:function(U){return !U.firstChild;},has:function(W,V,U){return !!G(U[3],W).length;},header:function(U){return/h\d/i.test(U.nodeName);},text:function(U){return"text"===U.type;},radio:function(U){return"radio"===U.type;},checkbox:function(U){return"checkbox"===U.type;},file:function(U){return"file"===U.type;},password:function(U){return"password"===U.type;},submit:function(U){return"submit"===U.type;},image:function(U){return"image"===U.type;},reset:function(U){return"reset"===U.type;},button:function(U){return"button"===U.type||U.nodeName.toUpperCase()==="BUTTON";},input:function(U){return/input|select|textarea|button/i.test(U.nodeName);}},setFilters:{first:function(V,U){return U===0;},last:function(W,V,U,X){return V===X.length-1;},even:function(V,U){return U%2===0;},odd:function(V,U){return U%2===1;},lt:function(W,V,U){return V<U[3]-0;},gt:function(W,V,U){return V>U[3]-0;},nth:function(W,V,U){return U[3]-0==V;},eq:function(W,V,U){return U[3]-0==V;}},filter:{PSEUDO:function(aa,W,X,ab){var V=W[1],Y=J.filters[V];if(Y){return Y(aa,X,W,ab);}else{if(V==="contains"){return(aa.textContent||aa.innerText||"").indexOf(W[3])>=0;}else{if(V==="not"){var Z=W[3];for(var X=0,U=Z.length;X<U;X++){if(Z[X]===aa){return false;}}return true;}}}},CHILD:function(U,X){var aa=X[1],V=U;switch(aa){case"only":case"first":while(V=V.previousSibling){if(V.nodeType===1){return false;}}if(aa=="first"){return true;}V=U;case"last":while(V=V.nextSibling){if(V.nodeType===1){return false;}}return true;case"nth":var W=X[2],ad=X[3];if(W==1&&ad==0){return true;}var Z=X[0],ac=U.parentNode;if(ac&&(ac.sizcache!==Z||!U.nodeIndex)){var Y=0;for(V=ac.firstChild;V;V=V.nextSibling){if(V.nodeType===1){V.nodeIndex=++Y;}}ac.sizcache=Z;}var ab=U.nodeIndex-ad;if(W==0){return ab==0;}else{return(ab%W==0&&ab/W>=0);}}},ID:function(V,U){return V.nodeType===1&&V.getAttribute("id")===U;},TAG:function(V,U){return(U==="*"&&V.nodeType===1)||V.nodeName===U;},CLASS:function(V,U){return(" "+(V.className||V.getAttribute("class"))+" ").indexOf(U)>-1;},ATTR:function(Z,X){var W=X[1],U=J.attrHandle[W]?J.attrHandle[W](Z):Z[W]!=null?Z[W]:Z.getAttribute(W),aa=U+"",Y=X[2],V=X[4];return U==null?Y==="!=":Y==="="?aa===V:Y==="*="?aa.indexOf(V)>=0:Y==="~="?(" "+aa+" ").indexOf(V)>=0:!V?aa&&U!==false:Y==="!="?aa!=V:Y==="^="?aa.indexOf(V)===0:Y==="$="?aa.substr(aa.length-V.length)===V:Y==="|="?aa===V||aa.substr(0,V.length+1)===V+"-":false;},POS:function(Y,V,W,Z){var U=V[2],X=J.setFilters[U];if(X){return X(Y,W,V,Z);}}}};var N=J.match.POS;for(var P in J.match){J.match[P]=RegExp(J.match[P].source+/(?![^\[]*\])(?![^\(]*\))/.source);}var F=function(V,U){V=Array.prototype.slice.call(V);if(U){U.push.apply(U,V);return U;}return V;};try{Array.prototype.slice.call(document.documentElement.childNodes);}catch(O){F=function(Y,X){var V=X||[];if(I.call(Y)==="[object Array]"){Array.prototype.push.apply(V,Y);}else{if(typeof Y.length==="number"){for(var W=0,U=Y.length;W<U;W++){V.push(Y[W]);}}else{for(var W=0;Y[W];W++){V.push(Y[W]);}}}return V;};}var H;if(document.documentElement.compareDocumentPosition){H=function(V,U){var W=V.compareDocumentPosition(U)&4?-1:V===U?0:1;if(W===0){hasDuplicate=true;}return W;};}else{if("sourceIndex" in document.documentElement){H=function(V,U){var W=V.sourceIndex-U.sourceIndex;if(W===0){hasDuplicate=true;}return W;};}else{if(document.createRange){H=function(X,V){var W=X.ownerDocument.createRange(),U=V.ownerDocument.createRange();W.selectNode(X);W.collapse(true);U.selectNode(V);U.collapse(true);var Y=W.compareBoundaryPoints(Range.START_TO_END,U);if(Y===0){hasDuplicate=true;}return Y;};}}}(function(){var V=document.createElement("form"),W="script"+(new Date).getTime();V.innerHTML="<input name='"+W+"'/>";var U=document.documentElement;U.insertBefore(V,U.firstChild);if(!!document.getElementById(W)){J.find.ID=function(Y,Z,aa){if(typeof Z.getElementById!=="undefined"&&!aa){var X=Z.getElementById(Y[1]);return X?X.id===Y[1]||typeof X.getAttributeNode!=="undefined"&&X.getAttributeNode("id").nodeValue===Y[1]?[X]:h:[];}};J.filter.ID=function(Z,X){var Y=typeof Z.getAttributeNode!=="undefined"&&Z.getAttributeNode("id");return Z.nodeType===1&&Y&&Y.nodeValue===X;};}U.removeChild(V);})();(function(){var U=document.createElement("div");U.appendChild(document.createComment(""));if(U.getElementsByTagName("*").length>0){J.find.TAG=function(V,Z){var Y=Z.getElementsByTagName(V[1]);if(V[1]==="*"){var X=[];for(var W=0;Y[W];W++){if(Y[W].nodeType===1){X.push(Y[W]);}}Y=X;}return Y;};}U.innerHTML="<a href='#'></a>";if(U.firstChild&&typeof U.firstChild.getAttribute!=="undefined"&&U.firstChild.getAttribute("href")!=="#"){J.attrHandle.href=function(V){return V.getAttribute("href",2);};}})();if(document.querySelectorAll){(function(){var U=G,V=document.createElement("div");V.innerHTML="<p class='TEST'></p>";if(V.querySelectorAll&&V.querySelectorAll(".TEST").length===0){return;}G=function(Z,Y,W,X){Y=Y||document;if(!X&&Y.nodeType===9&&!R(Y)){try{return F(Y.querySelectorAll(Z),W);}catch(aa){}}return U(Z,Y,W,X);};G.find=U.find;G.filter=U.filter;G.selectors=U.selectors;G.matches=U.matches;})();}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var U=document.createElement("div");U.innerHTML="<div class='test e'></div><div class='test'></div>";if(U.getElementsByClassName("e").length===0){return;}U.lastChild.className="e";if(U.getElementsByClassName("e").length===1){return;}J.order.splice(1,0,"CLASS");J.find.CLASS=function(V,W,X){if(typeof W.getElementsByClassName!=="undefined"&&!X){return W.getElementsByClassName(V[1]);}};})();}function Q(V,aa,Z,ae,ab,ad){var ac=V=="previousSibling"&&!ad;for(var X=0,W=ae.length;X<W;X++){var U=ae[X];if(U){if(ac&&U.nodeType===1){U.sizcache=Z;U.sizset=X;}U=U[V];var Y=false;while(U){if(U.sizcache===Z){Y=ae[U.sizset];break;}if(U.nodeType===1&&!ad){U.sizcache=Z;U.sizset=X;}if(U.nodeName===aa){Y=U;break;}U=U[V];}ae[X]=Y;}}}function T(V,aa,Z,ae,ab,ad){var ac=V=="previousSibling"&&!ad;for(var X=0,W=ae.length;X<W;X++){var U=ae[X];if(U){if(ac&&U.nodeType===1){U.sizcache=Z;U.sizset=X;}U=U[V];var Y=false;while(U){if(U.sizcache===Z){Y=ae[U.sizset];break;}if(U.nodeType===1){if(!ad){U.sizcache=Z;U.sizset=X;}if(typeof aa!=="string"){if(U===aa){Y=true;break;}}else{if(G.filter(aa,[U]).length>0){Y=U;break;}}}U=U[V];}ae[X]=Y;}}}var L=document.compareDocumentPosition?function(V,U){return V.compareDocumentPosition(U)&16;}:function(V,U){return V!==U&&(V.contains?V.contains(U):true);};var R=function(U){return U.nodeType===9&&U.documentElement.nodeName!=="HTML"||!!U.ownerDocument&&R(U.ownerDocument);};var K=function(U,ab){var X=[],Y="",Z,W=ab.nodeType?[ab]:ab;while((Z=J.match.PSEUDO.exec(U))){Y+=Z[0];U=U.replace(J.match.PSEUDO,"");}U=J.relative[U]?U+"*":U;for(var aa=0,V=W.length;aa<V;aa++){G(U,W[aa],X);}return G.filter(Y,X);};p.find=G;p.filter=G.filter;p.expr=G.selectors;p.expr[":"]=p.expr.filters;G.selectors.filters.hidden=function(U){return U.offsetWidth===0||U.offsetHeight===0;};G.selectors.filters.visible=function(U){return U.offsetWidth>0||U.offsetHeight>0;};G.selectors.filters.animated=function(U){return p.grep(p.timers,function(V){return U===V.elem;}).length;};p.multiFilter=function(W,U,V){if(V){W=":not("+W+")";}return G.matches(W,U);};p.dir=function(W,V){var U=[],X=W[V];while(X&&X!=document){if(X.nodeType==1){U.push(X);}X=X[V];}return U;};p.nth=function(Y,U,W,X){U=U||1;var V=0;for(;Y;Y=Y[W]){if(Y.nodeType==1&&++V==U){break;}}return Y;};p.sibling=function(W,V){var U=[];for(;W;W=W.nextSibling){if(W.nodeType==1&&W!=V){U.push(W);}}return U;};return;m.Sizzle=G;})();p.event={add:function(J,G,I,L){if(J.nodeType==3||J.nodeType==8){return;}if(J.setInterval&&J!=m){J=m;}if(!I.guid){I.guid=this.guid++;}if(L!==h){var H=I;I=this.proxy(H);I.data=L;}var F=p.data(J,"events")||p.data(J,"events",{}),K=p.data(J,"handle")||p.data(J,"handle",function(){return typeof p!=="undefined"&&!p.event.triggered?p.event.handle.apply(arguments.callee.elem,arguments):h;});K.elem=J;p.each(G.split(/\s+/),function(N,O){var P=O.split(".");O=P.shift();I.type=P.slice().sort().join(".");var M=F[O];if(p.event.specialAll[O]){p.event.specialAll[O].setup.call(J,L,P);}if(!M){M=F[O]={};if(!p.event.special[O]||p.event.special[O].setup.call(J,L,P)===false){if(J.addEventListener){J.addEventListener(O,K,false);}else{if(J.attachEvent){J.attachEvent("on"+O,K);}}}}M[I.guid]=I;p.event.global[O]=true;});J=null;},guid:1,global:{},remove:function(L,I,K){if(L.nodeType==3||L.nodeType==8){return;}var H=p.data(L,"events"),G,F;if(H){if(I===h||(typeof I==="string"&&I.charAt(0)==".")){for(var J in H){this.remove(L,J+(I||""));}}else{if(I.type){K=I.handler;I=I.type;}p.each(I.split(/\s+/),function(N,P){var R=P.split(".");P=R.shift();var O=RegExp("(^|\\.)"+R.slice().sort().join(".*\\.")+"(\\.|$)");if(H[P]){if(K){delete H[P][K.guid];}else{for(var Q in H[P]){if(O.test(H[P][Q].type)){delete H[P][Q];}}}if(p.event.specialAll[P]){p.event.specialAll[P].teardown.call(L,R);}for(G in H[P]){break;}if(!G){if(!p.event.special[P]||p.event.special[P].teardown.call(L,R)===false){if(L.removeEventListener){L.removeEventListener(P,p.data(L,"handle"),false);}else{if(L.detachEvent){L.detachEvent("on"+P,p.data(L,"handle"));}}}G=null;delete H[P];}}});}for(G in H){break;}if(!G){var M=p.data(L,"handle");if(M){M.elem=null;}p.removeData(L,"events");p.removeData(L,"handle");}}},trigger:function(J,L,I,F){var H=J.type||J;if(!F){J=typeof J==="object"?J[i]?J:p.extend(p.Event(H),J):p.Event(H);if(H.indexOf("!")>=0){J.type=H=H.slice(0,-1);J.exclusive=true;}if(!I){J.stopPropagation();if(this.global[H]){p.each(p.cache,function(){if(this.events&&this.events[H]){p.event.trigger(J,L,this.handle.elem);}});}}if(!I||I.nodeType==3||I.nodeType==8){return h;}J.result=h;J.target=I;L=p.makeArray(L);L.unshift(J);}J.currentTarget=I;var K=p.data(I,"handle");if(K){K.apply(I,L);}if((!I[H]||(p.nodeName(I,"a")&&H=="click"))&&I["on"+H]&&I["on"+H].apply(I,L)===false){J.result=false;}if(!F&&I[H]&&!J.isDefaultPrevented()&&!(p.nodeName(I,"a")&&H=="click")){this.triggered=true;try{I[H]();}catch(M){}}this.triggered=false;if(!J.isPropagationStopped()){var G=I.parentNode||I.ownerDocument;if(G){p.event.trigger(J,L,G,true);}}},handle:function(L){var K,F;L=arguments[0]=p.event.fix(L||m.event);L.currentTarget=this;var M=L.type.split(".");L.type=M.shift();K=!M.length&&!L.exclusive;var J=RegExp("(^|\\.)"+M.slice().sort().join(".*\\.")+"(\\.|$)");F=(p.data(this,"events")||{})[L.type];for(var H in F){var I=F[H];if(K||J.test(I.type)){L.handler=I;L.data=I.data;var G=I.apply(this,arguments);if(G!==h){L.result=G;if(G===false){L.preventDefault();L.stopPropagation();}}if(L.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(I){if(I[i]){return I;}var G=I;I=p.Event(G);for(var H=this.props.length,K;H;){K=this.props[--H];I[K]=G[K];}if(!I.target){I.target=I.srcElement||document;}if(I.target.nodeType==3){I.target=I.target.parentNode;}if(!I.relatedTarget&&I.fromElement){I.relatedTarget=I.fromElement==I.target?I.toElement:I.fromElement;}if(I.pageX==null&&I.clientX!=null){var J=document.documentElement,F=document.body;I.pageX=I.clientX+(J&&J.scrollLeft||F&&F.scrollLeft||0)-(J.clientLeft||0);I.pageY=I.clientY+(J&&J.scrollTop||F&&F.scrollTop||0)-(J.clientTop||0);}if(!I.which&&((I.charCode||I.charCode===0)?I.charCode:I.keyCode)){I.which=I.charCode||I.keyCode;}if(!I.metaKey&&I.ctrlKey){I.metaKey=I.ctrlKey;}if(!I.which&&I.button){I.which=(I.button&1?1:(I.button&2?3:(I.button&4?2:0)));}return I;},proxy:function(G,F){F=F||function(){return G.apply(this,arguments);};F.guid=G.guid=G.guid||F.guid||this.guid++;return F;},special:{ready:{setup:C,teardown:function(){}}},specialAll:{live:{setup:function(F,G){p.event.add(this,G[0],c);},teardown:function(H){if(H.length){var F=0,G=RegExp("(^|\\.)"+H[0]+"(\\.|$)");p.each((p.data(this,"events").live||{}),function(){if(G.test(this.type)){F++;}});if(F<1){p.event.remove(this,H[0],c);}}}}}};p.Event=function(F){if(!this.preventDefault){return new p.Event(F);}if(F&&F.type){this.originalEvent=F;this.type=F.type;}else{this.type=F;}this.timeStamp=f();this[i]=true;};function l(){return false;}function v(){return true;}p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=v;var F=this.originalEvent;if(!F){return;}if(F.preventDefault){F.preventDefault();}F.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=v;var F=this.originalEvent;if(!F){return;}if(F.stopPropagation){F.stopPropagation();}F.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=v;this.stopPropagation();},isDefaultPrevented:l,isPropagationStopped:l,isImmediatePropagationStopped:l};var a=function(G){var F=G.relatedTarget;while(F&&F!=this){try{F=F.parentNode;}catch(H){F=this;}}if(F!=this){G.type=G.data;p.event.handle.apply(this,arguments);}};p.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(G,F){p.event.special[F]={setup:function(){p.event.add(this,G,a,F);},teardown:function(){p.event.remove(this,G,a);}};});p.fn.extend({bind:function(G,H,F){return G=="unload"?this.one(G,H,F):this.each(function(){p.event.add(this,G,F||H,F&&H);});},one:function(H,I,G){var F=p.event.proxy(G||I,function(J){p(this).unbind(J,F);return(G||I).apply(this,arguments);});return this.each(function(){p.event.add(this,H,F,G&&I);});},unbind:function(G,F){return this.each(function(){p.event.remove(this,G,F);});},trigger:function(F,G){return this.each(function(){p.event.trigger(F,G,this);});},triggerHandler:function(F,H){if(this[0]){var G=p.Event(F);G.preventDefault();G.stopPropagation();p.event.trigger(G,H,this[0]);return G.result;}},toggle:function(H){var F=arguments,G=1;while(G<F.length){p.event.proxy(H,F[G++]);}return this.click(p.event.proxy(H,function(I){this.lastToggle=(this.lastToggle||0)%G;I.preventDefault();return F[this.lastToggle++].apply(this,arguments)||false;}));},hover:function(F,G){return this.mouseenter(F).mouseleave(G);},ready:function(F){C();if(p.isReady){F.call(document,p);}else{p.readyList.push(F);}return this;},live:function(H,G){var F=p.event.proxy(G);F.guid+=this.selector+H;p(document).bind(j(H,this.selector),this.selector,F);return this;},die:function(G,F){p(document).unbind(j(G,this.selector),F?{guid:F.guid+this.selector+G}:null);return this;}});function c(I){var F=RegExp("(^|\\.)"+I.type+"(\\.|$)"),H=true,G=[];p.each(p.data(this,"events").live||[],function(J,K){if(F.test(K.type)){var L=p(I.target).closest(K.data)[0];if(L){G.push({elem:L,fn:K});}}});G.sort(function(K,J){return p.data(K.elem,"closest")-p.data(J.elem,"closest");});p.each(G,function(){if(this.fn.call(this.elem,I,this.fn.data)===false){return(H=false);}});return H;}function j(G,F){return["live",G,F.replace(/\./g,"`").replace(/ /g,"|")].join(".");}p.extend({isReady:false,readyList:[],ready:function(){if(!p.isReady){p.isReady=true;if(p.readyList){p.each(p.readyList,function(){this.call(document,p);});p.readyList=null;}p(document).triggerHandler("ready");}}});var y=false;function C(){if(y){return;}y=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);p.ready();},false);}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);p.ready();}});if(document.documentElement.doScroll&&m==m.top){(function(){if(p.isReady){return;}try{document.documentElement.doScroll("left");}catch(F){setTimeout(arguments.callee,0);return;}p.ready();})();}}}p.event.add(m,"load",p.ready);}p.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(G,F){p.fn[F]=function(H){return H?this.bind(F,H):this.trigger(F);};});p(m).bind("unload",function(){for(var F in p.cache){if(F!=1&&p.cache[F].handle){p.event.remove(p.cache[F].handle.elem);}}});(function(){p.support={};var G=document.documentElement,H=document.createElement("script"),L=document.createElement("div"),K="script"+(new Date).getTime();L.style.display="none";L.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 I=L.getElementsByTagName("*"),F=L.getElementsByTagName("a")[0];if(!I||!I.length||!F){return;}p.support={leadingWhitespace:L.firstChild.nodeType==3,tbody:!L.getElementsByTagName("tbody").length,objectAll:!!L.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!L.getElementsByTagName("link").length,style:/red/.test(F.getAttribute("style")),hrefNormalized:F.getAttribute("href")==="/a",opacity:F.style.opacity==="0.5",cssFloat:!!F.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};H.type="text/javascript";try{H.appendChild(document.createTextNode("window."+K+"=1;"));}catch(J){}G.insertBefore(H,G.firstChild);if(m[K]){p.support.scriptEval=true;delete m[K];}G.removeChild(H);if(L.attachEvent&&L.fireEvent){L.attachEvent("onclick",function(){p.support.noCloneEvent=false;L.detachEvent("onclick",arguments.callee);});L.cloneNode(true).fireEvent("onclick");}p(function(){var M=document.createElement("div");M.style.width=M.style.paddingLeft="1px";document.body.appendChild(M);p.boxModel=p.support.boxModel=M.offsetWidth===2;document.body.removeChild(M).style.display="none";});})();var x=p.support.cssFloat?"cssFloat":"styleFloat";p.props={"for":"htmlFor","class":"className","float":x,cssFloat:x,styleFloat:x,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};p.fn.extend({_load:p.fn.load,load:function(H,K,L){if(typeof H!=="string"){return this._load(H);}var J=H.indexOf(" ");if(J>=0){var F=H.slice(J,H.length);H=H.slice(0,J);}var I="GET";if(K){if(p.isFunction(K)){L=K;K=null;}else{if(typeof K==="object"){K=p.param(K);I="POST";}}}var G=this;p.ajax({url:H,type:I,dataType:"html",data:K,complete:function(N,M){if(M=="success"||M=="notmodified"){G.html(F?p("<div/>").append(N.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(F):N.responseText);}if(L){G.each(L,[N.responseText,M,N]);}}});return this;},serialize:function(){return p.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?p.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(F,G){var H=p(this).val();return H==null?null:p.isArray(H)?p.map(H,function(J,I){return{name:G.name,value:J};}):{name:G.name,value:H};}).get();}});p.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(F,G){p.fn[G]=function(H){return this.bind(G,H);};});var s=f();p.extend({get:function(F,H,I,G){if(p.isFunction(H)){I=H;H=null;}return p.ajax({type:"GET",url:F,data:H,success:I,dataType:G});},getScript:function(F,G){return p.get(F,null,G,"script");},getJSON:function(F,G,H){return p.get(F,G,H,"json");},post:function(F,H,I,G){if(p.isFunction(H)){I=H;H={};}return p.ajax({type:"POST",url:F,data:H,success:I,dataType:G});},ajaxSetup:function(F){p.extend(p.ajaxSettings,F);},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return m.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(N){N=p.extend(true,N,p.extend(true,{},p.ajaxSettings,N));var X,G=/=\?(&|$)/g,S,W,H=N.type.toUpperCase();if(N.data&&N.processData&&typeof N.data!=="string"){N.data=p.param(N.data);}if(N.dataType=="jsonp"){if(H=="GET"){if(!N.url.match(G)){N.url+=(N.url.match(/\?/)?"&":"?")+(N.jsonp||"callback")+"=?";}}else{if(!N.data||!N.data.match(G)){N.data=(N.data?N.data+"&":"")+(N.jsonp||"callback")+"=?";}}N.dataType="json";}if(N.dataType=="json"&&(N.data&&N.data.match(G)||N.url.match(G))){X="jsonp"+s++;if(N.data){N.data=(N.data+"").replace(G,"="+X+"$1");}N.url=N.url.replace(G,"="+X+"$1");N.dataType="script";m[X]=function(Y){W=Y;J();M();m[X]=h;try{delete m[X];}catch(Z){}if(I){I.removeChild(U);}};}if(N.dataType=="script"&&N.cache==null){N.cache=false;}if(N.cache===false&&H=="GET"){var F=f();var V=N.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+F+"$2");N.url=V+((V==N.url)?(N.url.match(/\?/)?"&":"?")+"_="+F:"");}if(N.data&&H=="GET"){N.url+=(N.url.match(/\?/)?"&":"?")+N.data;N.data=null;}if(N.global&&!p.active++){p.event.trigger("ajaxStart");}var R=/^(\w+:)?\/\/([^\/?#]+)/.exec(N.url);if(N.dataType=="script"&&H=="GET"&&R&&(R[1]&&R[1]!=location.protocol||R[2]!=location.host)){var I=document.getElementsByTagName("head")[0];var U=document.createElement("script");U.src=N.url;if(N.scriptCharset){U.charset=N.scriptCharset;}if(!X){var P=false;U.onload=U.onreadystatechange=function(){if(!P&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){P=true;J();M();U.onload=U.onreadystatechange=null;I.removeChild(U);}};}I.appendChild(U);return h;}var L=false;var K=N.xhr();if(N.username){K.open(H,N.url,N.async,N.username,N.password);}else{K.open(H,N.url,N.async);}try{if(N.data){K.setRequestHeader("Content-Type",N.contentType);}if(N.ifModified){K.setRequestHeader("If-Modified-Since",p.lastModified[N.url]||"Thu, 01 Jan 1970 00:00:00 GMT");}K.setRequestHeader("X-Requested-With","XMLHttpRequest");K.setRequestHeader("Accept",N.dataType&&N.accepts[N.dataType]?N.accepts[N.dataType]+", */*":N.accepts._default);}catch(T){}if(N.beforeSend&&N.beforeSend(K,N)===false){if(N.global&&!--p.active){p.event.trigger("ajaxStop");}K.abort();return false;}if(N.global){p.event.trigger("ajaxSend",[K,N]);}var O=function(Y){if(K.readyState==0){if(Q){clearInterval(Q);Q=null;if(N.global&&!--p.active){p.event.trigger("ajaxStop");}}}else{if(!L&&K&&(K.readyState==4||Y=="timeout")){L=true;if(Q){clearInterval(Q);Q=null;}S=Y=="timeout"?"timeout":!p.httpSuccess(K)?"error":N.ifModified&&p.httpNotModified(K,N.url)?"notmodified":"success";if(S=="success"){try{W=p.httpData(K,N.dataType,N);}catch(aa){S="parsererror";}}if(S=="success"){var Z;try{Z=K.getResponseHeader("Last-Modified");}catch(aa){}if(N.ifModified&&Z){p.lastModified[N.url]=Z;}if(!X){J();}}else{p.handleError(N,K,S);}M();if(Y){K.abort();}if(N.async){K=null;}}}};if(N.async){var Q=setInterval(O,13);if(N.timeout>0){setTimeout(function(){if(K&&!L){O("timeout");}},N.timeout);}}try{K.send(N.data);}catch(T){p.handleError(N,K,null,T);}if(!N.async){O();}function J(){if(N.success){N.success(W,S);}if(N.global){p.event.trigger("ajaxSuccess",[K,N]);}}function M(){if(N.complete){N.complete(K,S);}if(N.global){p.event.trigger("ajaxComplete",[K,N]);}if(N.global&&!--p.active){p.event.trigger("ajaxStop");}}return K;},handleError:function(G,I,F,H){if(G.error){G.error(I,F,H);}if(G.global){p.event.trigger("ajaxError",[I,G,H]);}},active:0,httpSuccess:function(G){try{return !G.status&&location.protocol=="file:"||(G.status>=200&&G.status<300)||G.status==304||G.status==1223;}catch(F){}return false;},httpNotModified:function(H,F){try{var I=H.getResponseHeader("Last-Modified");return H.status==304||I==p.lastModified[F];}catch(G){}return false;},httpData:function(K,I,H){var G=K.getResponseHeader("content-type"),F=I=="xml"||!I&&G&&G.indexOf("xml")>=0,J=F?K.responseXML:K.responseText;if(F&&J.documentElement.tagName=="parsererror"){throw"parsererror";}if(H&&H.dataFilter){J=H.dataFilter(J,I);}if(typeof J==="string"){if(I=="script"){p.globalEval(J);}if(I=="json"){J=m["eval"]("("+J+")");}}return J;},param:function(F){var H=[];function I(J,K){H[H.length]=encodeURIComponent(J)+"="+encodeURIComponent(K);}if(p.isArray(F)||F.jquery){p.each(F,function(){I(this.name,this.value);});}else{for(var G in F){if(p.isArray(F[G])){p.each(F[G],function(){I(G,this);});}else{I(G,p.isFunction(F[G])?F[G]():F[G]);}}}return H.join("&").replace(/%20/g,"+");}});var n={},o,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function u(G,F){var H={};p.each(d.concat.apply([],d.slice(0,F)),function(){H[this]=G;});return H;}p.fn.extend({show:function(K,M){if(K){return this.animate(u("show",3),K,M);}else{for(var I=0,G=this.length;I<G;I++){var F=p.data(this[I],"olddisplay");this[I].style.display=F||"";if(p.css(this[I],"display")==="none"){var H=this[I].tagName,L;if(n[H]){L=n[H];}else{var J=p("<"+H+" />").appendTo("body");L=J.css("display");if(L==="none"){L="block";}J.remove();n[H]=L;}p.data(this[I],"olddisplay",L);}}for(var I=0,G=this.length;I<G;I++){this[I].style.display=p.data(this[I],"olddisplay")||"";}return this;}},hide:function(I,J){if(I){return this.animate(u("hide",3),I,J);}else{for(var H=0,G=this.length;H<G;H++){var F=p.data(this[H],"olddisplay");if(!F&&F!=="none"){p.data(this[H],"olddisplay",p.css(this[H],"display"));}}for(var H=0,G=this.length;H<G;H++){this[H].style.display="none";}return this;}},_toggle:p.fn.toggle,toggle:function(H,G){var F=typeof H==="boolean";return p.isFunction(H)&&p.isFunction(G)?this._toggle.apply(this,arguments):H==null||F?this.each(function(){var I=F?H:p(this).is(":hidden");p(this)[I?"show":"hide"]();}):this.animate(u("toggle",3),H,G);},fadeTo:function(F,H,G){return this.animate({opacity:H},F,G);},animate:function(J,G,I,H){var F=p.speed(G,I,H);return this[F.queue===false?"each":"queue"](function(){var L=p.extend({},F),N,M=this.nodeType==1&&p(this).is(":hidden"),K=this;for(N in J){if(J[N]=="hide"&&M||J[N]=="show"&&!M){return L.complete.call(this);}if((N=="height"||N=="width")&&this.style){L.display=p.css(this,"display");L.overflow=this.style.overflow;}}if(L.overflow!=null){this.style.overflow="hidden";}L.curAnim=p.extend({},J);p.each(J,function(P,T){var S=new p.fx(K,L,P);if(/toggle|show|hide/.test(T)){S[T=="toggle"?M?"show":"hide":T](J);}else{var R=T.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),U=S.cur(true)||0;if(R){var O=parseFloat(R[2]),Q=R[3]||"px";if(Q!="px"){K.style[P]=(O||1)+Q;U=((O||1)/S.cur(true))*U;K.style[P]=U+Q;}if(R[1]){O=((R[1]=="-="?-1:1)*O)+U;}S.custom(U,O,Q);}else{S.custom(U,T,"");}}});return true;});},stop:function(G,F){var H=p.timers;if(G){this.queue([]);}this.each(function(){for(var I=H.length-1;I>=0;I--){if(H[I].elem==this){if(F){H[I](true);}H.splice(I,1);}}});if(!F){this.dequeue();}return this;}});p.each({slideDown:u("show",1),slideUp:u("hide",1),slideToggle:u("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(F,G){p.fn[F]=function(H,I){return this.animate(G,H,I);};});p.extend({speed:function(H,I,G){var F=typeof H==="object"?H:{complete:G||!G&&I||p.isFunction(H)&&H,duration:H,easing:G&&I||I&&!p.isFunction(I)&&I};F.duration=p.fx.off?0:typeof F.duration==="number"?F.duration:p.fx.speeds[F.duration]||p.fx.speeds._default;F.old=F.complete;F.complete=function(){if(F.queue!==false){p(this).dequeue();}if(p.isFunction(F.old)){F.old.call(this);}};return F;},easing:{linear:function(H,I,F,G){return F+G*H;},swing:function(H,I,F,G){return((-Math.cos(H*Math.PI)/2)+0.5)*G+F;}},timers:[],fx:function(G,F,H){this.options=F;this.elem=G;this.prop=H;if(!F.orig){F.orig={};}}});p.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this);}(p.fx.step[this.prop]||p.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block";}},cur:function(G){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop];}var F=parseFloat(p.css(this.elem,this.prop,G));return F&&F>-10000?F:parseFloat(p.curCSS(this.elem,this.prop))||0;},custom:function(J,I,H){this.startTime=f();this.start=J;this.end=I;this.unit=H||this.unit||"px";this.now=this.start;this.pos=this.state=0;var F=this;function G(K){return F.step(K);}G.elem=this.elem;if(G()&&p.timers.push(G)&&!o){o=setInterval(function(){var L=p.timers;for(var K=0;K<L.length;K++){if(!L[K]()){L.splice(K--,1);}}if(!L.length){clearInterval(o);o=h;}},13);}},show:function(){this.options.orig[this.prop]=p.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());p(this.elem).show();},hide:function(){this.options.orig[this.prop]=p.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(I){var H=f();if(I||H>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var F=true;for(var G in this.options.curAnim){if(this.options.curAnim[G]!==true){F=false;}}if(F){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(p.css(this.elem,"display")=="none"){this.elem.style.display="block";}}if(this.options.hide){p(this.elem).hide();}if(this.options.hide||this.options.show){for(var J in this.options.curAnim){p.attr(this.elem.style,J,this.options.orig[J]);}}this.options.complete.call(this.elem);}return false;}else{var K=H-this.startTime;this.state=K/this.options.duration;this.pos=p.easing[this.options.easing||(p.easing.swing?"swing":"linear")](this.state,K,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};p.extend(p.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(F){p.attr(F.elem.style,"opacity",F.now);},_default:function(F){if(F.elem.style&&F.elem.style[F.prop]!=null){F.elem.style[F.prop]=F.now+F.unit;}else{F.elem[F.prop]=F.now;}}}});if(document.documentElement.getBoundingClientRect){p.fn.offset=function(){if(!this[0]){return{top:0,left:0};}if(this[0]===this[0].ownerDocument.body){return p.offset.bodyOffset(this[0]);}var H=this[0].getBoundingClientRect(),K=this[0].ownerDocument,G=K.body,F=K.documentElement,M=F.clientTop||G.clientTop||0,L=F.clientLeft||G.clientLeft||0,J=H.top+(self.pageYOffset||p.boxModel&&F.scrollTop||G.scrollTop)-M,I=H.left+(self.pageXOffset||p.boxModel&&F.scrollLeft||G.scrollLeft)-L;return{top:J,left:I};};}else{p.fn.offset=function(){if(!this[0]){return{top:0,left:0};}if(this[0]===this[0].ownerDocument.body){return p.offset.bodyOffset(this[0]);}p.offset.initialized||p.offset.initialize();var K=this[0],H=K.offsetParent,G=K,P=K.ownerDocument,N,I=P.documentElement,L=P.body,M=P.defaultView,F=M.getComputedStyle(K,null),O=K.offsetTop,J=K.offsetLeft;while((K=K.parentNode)&&K!==L&&K!==I){N=M.getComputedStyle(K,null);O-=K.scrollTop,J-=K.scrollLeft;if(K===H){O+=K.offsetTop,J+=K.offsetLeft;if(p.offset.doesNotAddBorder&&!(p.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(K.tagName))){O+=parseInt(N.borderTopWidth,10)||0,J+=parseInt(N.borderLeftWidth,10)||0;}G=H,H=K.offsetParent;}if(p.offset.subtractsBorderForOverflowNotVisible&&N.overflow!=="visible"){O+=parseInt(N.borderTopWidth,10)||0,J+=parseInt(N.borderLeftWidth,10)||0;}F=N;}if(F.position==="relative"||F.position==="static"){O+=L.offsetTop,J+=L.offsetLeft;}if(F.position==="fixed"){O+=Math.max(I.scrollTop,L.scrollTop),J+=Math.max(I.scrollLeft,L.scrollLeft);}return{top:O,left:J};};}p.offset={initialize:function(){if(this.initialized){return;}var M=document.body,G=document.createElement("div"),I,H,O,J,N,F,K=M.style.marginTop,L='<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>';N={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(F in N){G.style[F]=N[F];}G.innerHTML=L;M.insertBefore(G,M.firstChild);I=G.firstChild,H=I.firstChild,J=I.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(H.offsetTop!==5);this.doesAddBorderForTableAndCells=(J.offsetTop===5);I.style.overflow="hidden",I.style.position="relative";this.subtractsBorderForOverflowNotVisible=(H.offsetTop===-5);M.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(M.offsetTop===0);M.style.marginTop=K;M.removeChild(G);this.initialized=true;},bodyOffset:function(F){p.offset.initialized||p.offset.initialize();var H=F.offsetTop,G=F.offsetLeft;if(p.offset.doesNotIncludeMarginInBodyOffset){H+=parseInt(p.curCSS(F,"marginTop",true),10)||0,G+=parseInt(p.curCSS(F,"marginLeft",true),10)||0;}return{top:H,left:G};}};p.fn.extend({position:function(){var J=0,I=0,G;if(this[0]){var H=this.offsetParent(),K=this.offset(),F=/^body|html$/i.test(H[0].tagName)?{top:0,left:0}:H.offset();K.top-=k(this,"marginTop");K.left-=k(this,"marginLeft");F.top+=k(H,"borderTopWidth");F.left+=k(H,"borderLeftWidth");G={top:K.top-F.top,left:K.left-F.left};}return G;},offsetParent:function(){var F=this[0].offsetParent||document.body;while(F&&(!/^body|html$/i.test(F.tagName)&&p.css(F,"position")=="static")){F=F.offsetParent;}return p(F);}});p.each(["Left","Top"],function(G,F){var H="scroll"+F;p.fn[H]=function(I){if(!this[0]){return null;}return I!==h?this.each(function(){this==m||this==document?m.scrollTo(!G?I:p(m).scrollLeft(),G?I:p(m).scrollTop()):this[H]=I;}):this[0]==m||this[0]==document?self[G?"pageYOffset":"pageXOffset"]||p.boxModel&&document.documentElement[H]||document.body[H]:this[0][H];};});p.each(["Height","Width"],function(J,H){var F=J?"Left":"Top",I=J?"Right":"Bottom",G=H.toLowerCase();p.fn["inner"+H]=function(){return this[0]?p.css(this[0],G,false,"padding"):null;};p.fn["outer"+H]=function(L){return this[0]?p.css(this[0],G,false,L?"margin":"border"):null;};var K=H.toLowerCase();p.fn[K]=function(L){return this[0]==m?document.compatMode=="CSS1Compat"&&document.documentElement["client"+H]||document.body["client"+H]:this[0]==document?Math.max(document.documentElement["client"+H],document.body["scroll"+H],document.documentElement["scroll"+H],document.body["offset"+H],document.documentElement["offset"+H]):L===h?(this.length?p.css(this[0],K):null):this.css(K,typeof L==="string"?L:L+"px");};});})();
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */
var Cufon=(function(){var n=function(){return n.replace.apply(null,arguments);};var y=n.DOM={ready:(function(){var D=false,F={loaded:1,complete:1};var C=[],E=function(){if(D){return;}D=true;for(var G;G=C.shift();G()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",E,false);window.addEventListener("pageshow",E,false);}if(!window.opera&&document.readyState){(function(){F[document.readyState]?E():setTimeout(arguments.callee,10);})();}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");E();}catch(G){setTimeout(arguments.callee,1);}})();}r(window,"load",E);return function(G){if(!arguments.length){E();}else{D?G():C.push(G);}};})(),root:function(){return document.documentElement||document.body;}};var o=n.CSS={Size:function(D,C){this.value=parseFloat(D);this.unit=String(D).match(/[a-z%]*$/)[0]||"px";this.convert=function(E){return E/C*this.value;};this.convertFrom=function(E){return E/this.value*C;};this.toString=function(){return this.value+this.unit;};},addClass:function(D,C){var E=D.className;D.className=E+(E&&" ")+C;return D;},color:k(function(D){var C={};C.color=D.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(F,E,G){C.opacity=parseFloat(G);return"rgb("+E+")";});return C;}),fontStretch:k(function(C){if(typeof C=="number"){return C;}if(/%$/.test(C)){return parseFloat(C)/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}[C]||1;}),getStyle:function(D){var C=document.defaultView;if(C&&C.getComputedStyle){return new a(C.getComputedStyle(D,null));}if(D.currentStyle){return new a(D.currentStyle);}return new a(D.style);},gradient:k(function(G){var H={id:G,type:G.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},D=G.substr(G.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var F=0,C=D.length,E;F<C;++F){E=D[F].split("=",2).reverse();H.stops.push([E[1]||F/(C-1),E[0]]);}return H;}),quotedList:k(function(F){var E=[],D=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,C;while(C=D.exec(F)){E.push(C[3]||C[1]);}return E;}),recognizesMedia:k(function(H){var F=document.createElement("style"),E,D,C;F.type="text/css";F.media=H;try{F.appendChild(document.createTextNode("/**/"));}catch(G){}D=h("head")[0];D.insertBefore(F,D.firstChild);E=(F.sheet||F.styleSheet);C=E&&!E.disabled;D.removeChild(F);return C;}),removeClass:function(E,D){var C=RegExp("(?:^|\\s+)"+D+"(?=\\s|$)","g");E.className=E.className.replace(C,"");return E;},supports:function(E,D){var C=document.createElement("span").style;if(C[E]===undefined){return false;}C[E]=D;return C[E]===D;},textAlign:function(F,E,C,D){if(E.get("textAlign")=="right"){if(C>0){F=" "+F;}}else{if(C<D-1){F+=" ";}}return F;},textShadow:k(function(G){if(G=="none"){return null;}var F=[],H={},C,D=0;var E=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(C=E.exec(G)){if(C[0]==","){F.push(H);H={};D=0;}else{if(C[1]){H.color=C[1];}else{H[["offX","offY","blur"][D++]]=C[2];}}}F.push(H);return F;}),textTransform:(function(){var C={uppercase:function(D){return D.toUpperCase();},lowercase:function(D){return D.toLowerCase();},capitalize:function(D){return D.replace(/\b./g,function(E){return E.toUpperCase();});}};return function(F,E){var D=C[E.get("textTransform")];return D?D(F):F;};})(),whiteSpace:(function(){var E={inline:1,"inline-block":1,"run-in":1};var D=/^\s+/,C=/\s+$/;return function(I,G,H,F){if(F){if(F.nodeName.toLowerCase()=="br"){I=I.replace(D,"");}}if(E[G.get("display")]){return I;}if(!H.previousSibling){I=I.replace(D,"");}if(!H.nextSibling){I=I.replace(C,"");}return I;};})()};o.ready=(function(){var C=!o.recognizesMedia("all"),F=false;var E=[],I=function(){C=true;for(var L;L=E.shift();L()){}};var J=h("link"),K=h("style");function D(L){return L.disabled||H(L.sheet,L.media||"screen");}function H(N,Q){if(!o.recognizesMedia(Q||"all")){return true;}if(!N||N.disabled){return false;}try{var R=N.cssRules,P;if(R){search:for(var M=0,L=R.length;P=R[M],M<L;++M){switch(P.type){case 2:break;case 3:if(!H(P.styleSheet,P.media.mediaText)){return false;}break;default:break search;}}}}catch(O){}return true;}function G(){if(document.createStyleSheet){return true;}var M,L;for(L=0;M=J[L];++L){if(M.rel.toLowerCase()=="stylesheet"&&!D(M)){return false;}}for(L=0;M=K[L];++L){if(!D(M)){return false;}}return true;}y.ready(function(){if(!F){F=o.getStyle(document.body).isUsable();}if(C||(F&&G())){I();}else{setTimeout(arguments.callee,10);}});return function(L){if(C){L();}else{E.push(L);}};})();function t(E){var D=this.face=E.face,C={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=E.glyphs;this.w=E.w;this.baseSize=parseInt(D["units-per-em"],10);this.family=D["font-family"].toLowerCase();this.weight=D["font-weight"];this.style=D["font-style"]||"normal";this.viewBox=(function(){var G=D.bbox.split(/\s+/);var F={minX:parseInt(G[0],10),minY:parseInt(G[1],10),maxX:parseInt(G[2],10),maxY:parseInt(G[3],10)};F.width=F.maxX-F.minX;F.height=F.maxY-F.minY;F.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ");};return F;})();this.ascent=-parseInt(D.ascent,10);this.descent=-parseInt(D.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(M,O,F){var P=this.glyphs,N,L,H,Q=[],G=0,K=-1,J=-1,I;while(I=M[++K]){N=P[I]||this.missingGlyph;if(!N){continue;}if(L){G-=H=L[I]||0;Q[J]-=H;}G+=Q[++J]=~~(N.w||this.w)+O+(C[I]?F:0);L=N.k;}Q.total=G;return Q;};}function g(){var D={},C={oblique:"italic",italic:"oblique"};this.add=function(E){(D[E.style]||(D[E.style]={}))[E.weight]=E;};this.get=function(I,J){var H=D[I]||D[C[I]]||D.normal||D.italic||D.oblique;if(!H){return null;}J={normal:400,bold:700}[J]||parseInt(J,10);if(H[J]){return H[J];}var F={1:1,99:0}[J%100],L=[],G,E;if(F===undefined){F=J>400;}if(J==500){J=400;}for(var K in H){if(!l(H,K)){continue;}K=parseInt(K,10);if(!G||K<G){G=K;}if(!E||K>E){E=K;}L.push(K);}if(J<G){J=G;}if(J>E){J=E;}L.sort(function(N,M){return(F?(N>=J&&M>=J)?N<M:N>M:(N<=J&&M<=J)?N>M:N<M)?-1:1;});return H[L[0]];};}function s(){function E(G,H){if(G.contains){return G.contains(H);}return G.compareDocumentPosition(H)&16;}function C(H){var G=H.relatedTarget;if(!G||E(this,G)){return;}D(this,H.type=="mouseover");}function F(G){D(this,G.type=="mouseenter");}function D(G,H){setTimeout(function(){var I=d.get(G).options;n.replace(G,H?i(I,I.hover):I,true);},10);}this.attach=function(G){if(G.onmouseenter===undefined){r(G,"mouseover",C);r(G,"mouseout",C);}else{r(G,"mouseenter",F);r(G,"mouseleave",F);}};}function v(){var D=[],E={};function C(I){var F=[],H;for(var G=0;H=I[G];++G){F[G]=D[E[H]];}return F;}this.add=function(G,F){E[G]=D.push(F)-1;};this.repeat=function(){var F=arguments.length?C(arguments):D,G;for(var H=0;G=F[H++];){n.replace(G[0],G[1],true);}};}function B(){var E={},C=0;function D(F){return F.cufid||(F.cufid=++C);}this.get=function(F){var G=D(F);return E[G]||(E[G]={});};}function a(C){var E={},D={};this.extend=function(F){for(var G in F){if(l(F,G)){E[G]=F[G];}}return this;};this.get=function(F){return E[F]!=undefined?E[F]:C[F];};this.getSize=function(G,F){return D[G]||(D[G]=new o.Size(this.get(G),F));};this.isUsable=function(){return !!C;};}function r(D,C,E){if(D.addEventListener){D.addEventListener(C,E,false);}else{if(D.attachEvent){D.attachEvent("on"+C,function(){return E.call(D,window.event);});}}}function w(D,C){var E=d.get(D);if(E.options){return D;}if(C.hover&&C.hoverables[D.nodeName.toLowerCase()]){b.attach(D);}E.options=C;return D;}function k(C){var D={};return function(E){if(!l(D,E)){D[E]=C.apply(null,arguments);}return D[E];};}function c(G,F){var C=o.quotedList(F.get("fontFamily").toLowerCase()),E;for(var D=0;E=C[D];++D){if(j[E]){return j[E].get(F.get("fontStyle"),F.get("fontWeight"));}}return null;}function h(C){return document.getElementsByTagName(C);}function l(D,C){return D.hasOwnProperty(C);}function i(){var D={},C,G;for(var F=0,E=arguments.length;C=arguments[F],F<E;++F){for(G in C){if(l(C,G)){D[G]=C[G];}}}return D;}function p(F,N,D,O,G,E){var L=document.createDocumentFragment(),I;if(N===""){return L;}var M=O.separate;var J=N.split(q[M]),C=(M=="words");if(C&&u){if(/^\s/.test(N)){J.unshift("");}if(/\s$/.test(N)){J.push("");}}for(var K=0,H=J.length;K<H;++K){I=A[O.engine](F,C?o.textAlign(J[K],D,K,H):J[K],D,O,G,E,K<H-1);if(I){L.appendChild(I);}}return L;}function m(E,N){var D=E.nodeName.toLowerCase();if(N.ignore[D]){return;}var F=!N.textless[D];var C=o.getStyle(w(E,N)).extend(N);var G=c(E,C),H,L,J,I,M,K;if(!G){return;}for(H=E.firstChild;H;H=J){L=H.nodeType;J=H.nextSibling;if(F&&L==3){if(I){I.appendData(H.data);E.removeChild(H);}else{I=H;}if(J){continue;}}if(I){E.replaceChild(p(G,o.whiteSpace(I.data,C,I,K),C,N,H,E),I);I=null;}if(L==1){if(H.firstChild){if(H.nodeName.toLowerCase()=="cufon"){A[N.engine](G,null,C,N,H,E);}else{arguments.callee(H,N);}}K=H;}}}var u=" ".split(/\s+/).length==0;var d=new B();var b=new s();var z=new v();var f=false;var A={},j={},x={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(C){return jQuery(C);})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(C){return $$(C);})||(window.$&&function(C){return $(C);})||(document.querySelectorAll&&function(C){return document.querySelectorAll(C);})||h),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var q={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};n.now=function(){y.ready();return n;};n.refresh=function(){z.repeat.apply(z,arguments);return n;};n.registerEngine=function(D,C){if(!C){return n;}A[D]=C;return n.set("engine",D);};n.registerFont=function(E){if(!E){return n;}var C=new t(E),D=C.family;if(!j[D]){j[D]=new g();}j[D].add(C);return n.set("fontFamily",'"'+D+'"');};n.replace=function(E,D,C){D=i(x,D);if(!D.engine){return n;}if(!f){o.addClass(y.root(),"cufon-active cufon-loading");o.ready(function(){o.addClass(o.removeClass(y.root(),"cufon-loading"),"cufon-ready");});f=true;}if(D.hover){D.forceHitArea=true;}if(D.autoDetect){delete D.fontFamily;}if(typeof D.textShadow=="string"){D.textShadow=o.textShadow(D.textShadow);}if(typeof D.color=="string"&&/^-/.test(D.color)){D.textGradient=o.gradient(D.color);}else{delete D.textGradient;}if(!C){z.add(E,arguments);}if(E.nodeType||typeof E=="string"){E=[E];}o.ready(function(){for(var G=0,F=E.length;G<F;++G){var H=E[G];if(typeof H=="string"){n.replace(D.selector(H),D,true);}else{m(H,D);}}});return n;};n.set=function(C,D){x[C]=D;return n;};return n;})();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 f=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var g=document.createElement("style");g.type="text/css";g.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(f?"":"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(g);function d(q,j){var o=0,n=0;var h=[],p=/([mrvxe])([^a-z]*)/g,l;generate:for(var k=0;l=p.exec(q);++k){var m=l[2].split(",");switch(l[1]){case"v":h[k]={m:"bezierCurveTo",a:[o+~~m[0],n+~~m[1],o+~~m[2],n+~~m[3],o+=~~m[4],n+=~~m[5]]};break;case"r":h[k]={m:"lineTo",a:[o+=~~m[0],n+=~~m[1]]};break;case"m":h[k]={m:"moveTo",a:[o=~~m[0],n=~~m[1]]};break;case"x":h[k]={m:"closePath"};break;case"e":break generate;}j[h[k].m].apply(j,h[k].a);}return h;}function c(n,m){for(var k=0,j=n.length;k<j;++k){var h=n[k];m[h.m].apply(m,h.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 y=V.glyphs,ac,x=-1,l=-1,ab;X.scale(G,1);while(ab=Z[++x]){var ac=y[Z[x]]||V.missingGlyph;if(!ac){continue;}if(ac.d){X.beginPath();if(ac.code){c(ac.code,X);}else{ac.code=d("m"+ac.d,X);}X.fill();}X.translate(E[++l],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 f=document.namespaces;if(!f){return;}f.add("cvml","urn:schemas-microsoft-com:vml");f=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return;}b=null;var i=(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:'+(i?"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(j,k){return a(j,/(?:em|ex|%)$|^[a-z-]+$/i.test(k)?"1em":k);}function a(m,n){if(n==="0"){return 0;}if(/px$/i.test(n)){return parseFloat(n);}var l=m.style.left,k=m.runtimeStyle.left;m.runtimeStyle.left=m.currentStyle.left;m.style.left=n.replace("%","em");var j=m.style.pixelLeft;m.style.left=l;m.runtimeStyle.left=k;return j;}function g(m,l,k,o){var j="computed"+o,n=l[j];if(isNaN(n)){n=l.get(o);l[j]=n=(n=="normal")?0:~~k.convertFrom(a(m,n));}return n;}var h={};function d(q){var r=q.id;if(!h[r]){var o=q.stops,p=document.createElement("cvml:fill"),l=[];p.type="gradient";p.angle=180;p.focus="0";p.method="sigma";p.color=o[0][1];for(var n=1,m=o.length-1;n<m;++n){l.push(o[n][0]*100+"% "+o[n][1]);}p.colors=l.join(",");p.color2=o[m][1];h[r]=p;}return h[r];}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,g(ad,Y,p,"letterSpacing"),g(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(i){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em";}else{if(!isNaN(E)){E+="em";}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height));}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px";}}return y;};})());
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 2003 by Ole Schaefer, published by primetype GmbH, primetype.com for
 * the primetype library. All Rights Reserved.
 * 
 * Trademark:
 * Notes is a trademark of primetype GmbH
 * 
 * Description:
 * Postprocessing and mastering by Andreas Eigendorf for the primetype library.
 * Andreas Eigendorf is originator of this software. All Rights Reserved.
 * 
 * Manufacturer:
 * Ole Schaefer, published by primetype GmbH, primetype.com for the primetype
 * library
 * 
 * Designer:
 * Ole Schaefer
 * 
 * Vendor URL:
 * http://www.primetype.com
 * 
 * License information:
 * http://www.primetype.com/license.html
 */
Cufon.registerFont({w:178,face:{"font-family":"Notes-Regular","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 3 0 0 2 0 4",ascent:"288",descent:"-72","x-height":"4",bbox:"-15 -315 340 73.1157","underline-thickness":"18","underline-position":"-18",stemh:"29",stemv:"31","unicode-range":"U+0020-U+00FF"},glyphs:{" ":{w:108,k:{z:4,y:4,x:4,w:4,v:4,t:2,s:2,q:2,o:2,g:4,f:4,e:2,d:4,c:4,a:5,Z:4,Y:4,X:4,W:4,V:4,J:4,I:7}},"!":{d:"59,-74r-30,0r0,-182r30,0r0,182xm63,0r-38,0r0,-38r38,0r0,38",w:88},'"':{d:"112,-164r-35,0r0,-92r35,0r0,92xm56,-164r-34,0r0,-92r34,0r0,92",w:133},"#":{d:"220,-61r-36,0r0,61r-31,0r0,-61r-72,0r0,61r-31,0r0,-61r-36,0r0,-25r36,0r0,-83r-36,0r0,-25r36,0r0,-62r31,0r0,62r72,0r0,-62r31,0r0,62r36,0r0,25r-36,0r0,83r36,0r0,25xm153,-86r0,-83r-72,0r0,83r72,0",w:234},"$":{d:"157,-76v2,46,-17,71,-51,77r0,42r-30,0r0,-39v-28,-1,-56,-10,-56,-10r0,-29v0,0,38,10,59,10v31,0,50,-16,47,-51v-5,-67,-104,-24,-104,-117v0,-37,22,-59,54,-65r0,-41r30,0r0,40v26,1,47,8,47,8r0,27v0,0,-35,-6,-58,-6v-51,0,-58,67,-14,78v38,10,74,20,76,76"},"%":{d:"340,-72v0,47,-19,76,-64,76v-45,0,-64,-29,-64,-76v0,-40,23,-65,64,-65v41,0,64,25,64,65xm262,-256r-124,256r-35,0r125,-256r34,0xm153,-194v0,47,-19,75,-64,75v-44,0,-64,-28,-64,-75v0,-40,23,-65,64,-65v41,0,64,25,64,65xm276,-23v28,-1,34,-21,34,-49v0,-21,-9,-38,-34,-38v-28,1,-33,21,-33,49v0,21,8,38,33,38xm89,-146v28,0,33,-21,33,-48v0,-21,-8,-38,-33,-38v-28,0,-33,21,-33,48v0,21,8,38,33,38",w:365},"&":{d:"194,-121r-25,0r0,121v-78,3,-144,6,-144,-83v0,-26,12,-42,29,-51v-18,-11,-25,-33,-25,-64v0,-44,28,-61,68,-61v19,0,60,6,60,6r0,26v0,0,-46,-5,-60,-5v-29,0,-38,17,-38,48v0,40,41,37,80,36r0,-32r30,0r0,32r25,0r0,27xm139,-27r0,-94v-49,-3,-93,1,-83,56v-2,39,42,40,83,38",w:201},"'":{d:"56,-164r-34,0r0,-92r34,0r0,92",w:77},"(":{d:"99,32v-57,2,-74,-27,-74,-72r0,-176v-1,-45,17,-74,74,-72r0,25v-30,-2,-42,10,-43,47r0,176v0,37,13,49,43,47r0,25",w:102,k:{y:4,x:-4,w:4,v:4,t:4,q:4,o:4,g:4,f:7,e:2,d:4,c:4,a:4,Z:-4,Y:-4,X:-4,W:-4,V:-4,S:4,Q:4,O:4,J:-7,I:-7,G:4,C:4,"9":4,"7":7,"1":14}},")":{d:"77,-40v1,45,-16,75,-73,72r0,-25v30,2,42,-10,43,-47r0,-176v0,-37,-13,-49,-43,-47r0,-25v57,-2,73,27,73,72r0,176",w:102},"*":{d:"159,-210r-47,30r37,40r-21,19r-38,-41r-38,41r-21,-19r37,-40r-46,-30r15,-24r39,24r0,-46r29,0r0,46r39,-24",w:180},"+":{d:"158,-113r-54,0r0,57r-28,0r0,-57r-54,0r0,-27r54,0r0,-58r28,0r0,58r54,0r0,27",w:180},",":{d:"59,-38v2,36,-5,63,-10,92r-24,0r7,-54r-10,0r0,-38r37,0",w:81,k:{"9":18,"8":11,"7":14,"6":14,"5":7,"3":7,"1":36,"0":14}},"-":{d:"101,-113r-79,0r0,-27r79,0r0,27",w:122,k:{z:4,x:4,f:7,a:7,Z:14,Y:22,X:22,W:11,V:11,T:43,S:14,J:22,I:22,A:11,"8":4,"7":29,"4":7,"3":7,"2":18,"1":18}},".":{d:"59,0r-37,0r0,-38r37,0r0,38",w:81,k:{z:-4,y:29,x:-4,w:29,v:29,u:7,t:11,q:7,o:9,g:11,f:7,e:7,d:7,c:9,a:4,Z:-7,Y:43,X:-7,W:36,V:36,U:14,T:36,Q:14,O:14,J:-4,I:-4,G:14,C:14,A:-7,"9":18,"8":11,"7":18,"6":14,"5":7,"3":7,"1":36,"0":14}},"/":{d:"121,-256r-74,256r-33,0r74,-256r33,0",w:135,k:{w:14,"9":11,"8":7,"7":7,"6":7,"5":7,"4":22,"3":7,"2":7,"1":7,"0":11,"/":29}},"0":{d:"162,-148v0,74,6,152,-68,152v-44,0,-69,-28,-69,-76r0,-76v0,-48,25,-75,69,-75v44,0,68,27,68,75xm94,-25v52,1,37,-74,37,-123v0,-28,-11,-46,-37,-46v-52,-1,-38,72,-38,122v0,28,12,47,38,47",w:187,k:{"9":4,"8":4,"7":14,"6":2,"5":4,"4":7,"3":9,"2":7,"1":11,"0":4,"/":11,".":14,",":14}},"1":{d:"98,0r-30,0r0,-189r-57,13r0,-29v28,-6,50,-18,87,-15r0,220",w:127,k:{"9":7,"8":4,"7":7,"6":4,"4":4,"3":9,"2":7,"1":7,"0":4,"/":4,".":4,"-":4,",":4}},"2":{d:"157,0r-132,0r0,-48v0,-93,108,-47,101,-115v10,-47,-85,-27,-101,-25r0,-27v0,0,28,-8,59,-8v49,0,75,19,73,69v-3,87,-114,33,-101,125r101,0r0,29",k:{"9":4,"8":7,"7":7,"6":4,"5":4,"4":4,"3":7,"2":7,"1":7,"0":4,"/":7}},"3":{d:"153,-45v0,57,-21,85,-76,85v-31,0,-59,-9,-59,-9r0,-28v0,0,36,8,59,8v36,0,45,-21,45,-56v0,-41,-45,-38,-86,-37r0,-29v43,2,79,2,79,-45v0,-25,-14,-38,-40,-38v-23,0,-57,7,-57,7r0,-28v0,0,26,-8,57,-8v48,0,71,24,71,75v0,23,-10,39,-25,49v19,9,32,27,32,54",k:{"9":9,"8":4,"7":14,"6":4,"5":4,"4":4,"3":7,"2":7,"1":14,"0":4,"/":7,"-":4}},"4":{d:"185,-7r-36,0r0,54r-30,0r0,-54r-105,0r0,-29v34,-52,46,-108,43,-184r30,0v2,80,-6,139,-40,184r72,0r0,-108r30,0r0,108r36,0r0,29",w:199,k:{"9":18,"8":11,"7":29,"6":11,"5":11,"3":7,"2":4,"1":32,"0":11,"-":14}},"5":{d:"160,-61v5,63,-14,103,-75,101v-31,0,-60,-9,-60,-9r0,-28v0,0,36,8,59,8v43,0,46,-29,46,-72v0,-19,-9,-34,-31,-34v-42,0,-40,27,-74,20r0,-145r135,0r0,29r-104,0r0,83v38,-31,114,-14,104,47",w:185,k:{"9":11,"8":7,"7":7,"6":7,"5":7,"4":4,"3":7,"2":7,"1":7,"0":7,"/":7,"-":7}},"6":{d:"162,-99v5,61,-10,103,-68,103v-43,0,-69,-25,-69,-69r0,-111v-7,-77,70,-93,130,-77r0,29v0,0,-36,-6,-51,-6v-50,2,-50,42,-48,89v33,-33,115,-21,106,42xm94,-25v40,0,37,-35,37,-73v0,-43,-52,-36,-75,-18v1,43,-9,91,38,91",w:187,k:{"9":7,"8":4,"7":18,"6":4,"5":7,"4":7,"3":14,"2":9,"1":25,"0":2,"/":7,".":14,",":14}},"7":{d:"149,-220v12,99,-65,124,-67,198r0,58r-31,0r0,-58v0,-85,68,-103,68,-169r-105,0r0,-29r135,0",w:163,k:{"}":7,"]":7,"9":4,"8":4,"4":14,"1":-4,"0":4,"/":11,".":32,"-":7,",":29,")":7}},"8":{d:"169,-83v0,57,-23,87,-72,87v-49,0,-72,-29,-72,-87v0,-26,12,-42,29,-51v-18,-11,-25,-33,-25,-64v0,-44,28,-61,68,-61v45,-1,69,22,69,75v0,24,-10,41,-25,50v17,9,28,25,28,51xm97,-148v32,0,38,-19,38,-50v0,-23,-14,-34,-38,-34v-29,0,-38,17,-38,48v0,23,12,36,38,36xm97,-23v35,0,42,-23,42,-60v0,-23,-16,-38,-42,-38v-35,0,-41,24,-41,60v0,23,15,38,41,38",w:194,k:{"9":7,"8":4,"7":7,"6":4,"5":4,"4":7,"3":9,"2":7,"1":11,"0":4,"/":7,".":11,"-":4,",":11}},"9":{d:"162,-40v9,77,-70,90,-126,73r0,-28v0,0,35,6,50,6v52,-1,45,-44,45,-91v-36,32,-114,17,-106,-45v-5,-60,13,-98,69,-98v43,0,68,24,68,68r0,115xm131,-107v-1,-42,9,-88,-37,-87v-38,0,-38,31,-38,68v0,43,50,38,75,19",w:187,k:{"9":4,"8":4,"7":11,"6":4,"5":4,"3":7,"2":4,"1":9,"0":2}},":":{d:"59,-142r-37,0r0,-38r37,0r0,38xm59,0r-37,0r0,-38r37,0r0,38",w:81},";":{d:"59,-142r-37,0r0,-38r37,0r0,38xm59,-38v2,36,-5,63,-10,92r-24,0r7,-54r-10,0r0,-38r37,0",w:81},"<":{d:"158,-50r-136,-63r0,-27r136,-63r0,29r-106,47r106,47r0,30",w:180},"=":{d:"158,-140r-136,0r0,-27r136,0r0,27xm158,-86r-136,0r0,-27r136,0r0,27",w:180},">":{d:"158,-113r-136,63r0,-30r106,-47r-106,-47r0,-29r136,63r0,27",w:180},"?":{d:"66,-259v70,0,77,88,39,112v-21,14,-32,35,-28,73r-30,0v-3,-50,10,-78,36,-93v22,-13,21,-63,-18,-63v-20,0,-51,5,-51,5r0,-27v0,0,26,-7,52,-7xm81,0r-38,0r0,-38r38,0r0,38",w:149},"@":{d:"324,-119v0,70,-19,121,-73,119v-25,0,-41,-11,-49,-28v-28,39,-118,29,-100,-40v14,-53,12,-112,77,-112v29,0,64,9,64,9r-17,108v0,17,5,36,26,36v30,0,38,-45,38,-92v0,-54,-28,-110,-115,-110v-102,0,-116,73,-116,157v0,54,29,113,116,113r48,0r0,31v-137,10,-198,-47,-198,-180v0,-86,52,-151,150,-151v98,0,149,54,149,140xm209,-149v-32,-10,-67,-1,-68,30v0,30,-31,88,13,88v14,0,31,-8,43,-16v-6,-35,9,-69,12,-102",w:349},A:{d:"196,0r-32,0r-16,-50r-97,0r-15,50r-32,0r81,-256r30,0xm139,-79r-39,-127r-40,127r79,0",w:199,k:{"\u00bb":22,"\u00ab":22,y:7,w:4,v:7,t:4,g:4,f:4,Z:-4,Y:22,W:11,V:11,U:4,T:29,Q:4,O:5,J:-4,G:4,C:4,"?":11,";":-4,":":-4,".":-7,"-":11,",":-7}},B:{d:"184,-72v0,81,-81,74,-159,72r0,-256v76,-3,151,-5,151,71v0,27,-12,44,-31,54v23,10,39,28,39,59xm146,-185v0,-43,-45,-44,-90,-42r0,83v44,2,90,3,90,-41xm153,-72v0,-48,-50,-44,-97,-43r0,86v47,1,97,6,97,-43",w:205,k:{"\u00fc":2,"\u00f6":2,"\u00e4":5,"\u00dd":11,"\u00d8":2,"\u00d6":2,"\u00c6":11,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"\u00bb":11,z:-4,y:7,x:7,w:4,v:4,t:2,s:2,q:2,o:2,l:2,g:4,f:7,e:2,d:4,c:4,a:5,Z:4,Y:11,X:11,W:7,V:7,T:18,S:5,Q:4,O:4,J:14,I:14,G:2,C:2,A:4,"?":7,".":7,"-":4,",":7,")":4}},C:{d:"146,-1v0,0,-23,5,-44,5v-91,2,-77,-94,-77,-180v0,-48,24,-83,77,-83v21,0,44,5,44,5r0,28v0,0,-27,-4,-43,-4v-68,2,-47,88,-47,151v0,28,13,54,47,54v16,0,43,-4,43,-4r0,28",w:160,k:{"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f9":7,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00f1":4,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":9,"\u00e5":9,"\u00e4":9,"\u00e3":9,"\u00e2":9,"\u00e1":9,"\u00e0":9,"\u00d8":11,"\u00d6":11,"\u00bb":14,"\u00ab":22,y:14,w:14,v:14,u:7,t:7,s:7,r:4,q:11,p:4,o:11,n:4,m:4,l:4,k:4,j:4,i:4,h:4,g:11,f:7,e:11,d:11,c:11,b:4,a:9,Y:4,U:4,T:4,S:4,R:4,Q:11,P:4,O:11,N:4,M:4,L:4,K:4,H:4,G:11,F:4,E:4,D:4,C:11,B:4,";":-4,":":-4,".":-4,"-":18,",":-7,")":-4," ":4}},D:{d:"184,-173v1,86,11,175,-80,173r-79,0r0,-256r79,0v55,0,80,35,80,83xm104,-29v69,-2,49,-82,49,-144v0,-28,-13,-54,-49,-54r-48,0r0,198r48,0",w:208,k:{"\u00fc":2,"\u00fb":2,"\u00fa":2,"\u00f9":2,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00f1":2,"\u00ef":2,"\u00ee":2,"\u00ed":2,"\u00ec":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":4,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00dd":11,"\u00c6":14,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"\u00bb":7,z:4,y:4,x:7,w:4,v:4,u:2,t:4,s:4,q:4,o:4,g:4,f:4,e:2,d:4,c:4,a:7,Z:4,Y:11,X:9,W:4,V:4,T:14,J:14,I:14,A:7,"?":7,";":4,":":4,".":14,",":14,")":4}},E:{d:"153,0r-128,0r0,-256r128,0r0,29r-97,0r0,83r90,0r0,29r-90,0r0,86r97,0r0,29",w:171,k:{"\u00fc":7,"\u00f6":7,"\u00e4":7,"\u00bb":14,"\u00ab":7,y:7,x:4,w:7,v:7,u:4,t:4,s:4,q:7,o:7,g:7,f:4,e:5,d:7,c:7,a:7,Z:4,Y:4,X:4,W:4,V:4,T:7,S:7,Q:7,O:7,J:4,I:4,G:7,C:7,A:4,".":-4,",":-4}},F:{d:"153,-227r-97,0r0,83r90,0r0,29r-90,0r0,115r-31,0r0,-256r128,0r0,29",w:171,k:{"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f9":7,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00f1":7,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":11,"\u00e6":22,"\u00e5":22,"\u00e4":22,"\u00e3":22,"\u00e2":22,"\u00e1":22,"\u00e0":22,"\u00dd":4,"\u00d8":7,"\u00d6":7,"\u00c6":29,"\u00c5":25,"\u00c4":25,"\u00c3":25,"\u00c2":25,"\u00c1":25,"\u00c0":25,"\u00bb":14,"\u00ab":7,z:7,y:7,x:11,w:7,v:7,u:7,t:4,s:7,r:7,q:11,p:7,o:11,n:7,m:7,l:4,k:4,j:7,i:7,h:4,g:11,f:4,e:9,d:11,c:11,b:7,a:23,Z:4,Y:4,X:7,W:4,V:4,U:4,T:7,S:7,R:4,Q:7,P:4,O:7,N:4,M:4,L:4,K:4,J:43,I:4,H:4,G:7,F:4,E:4,D:4,C:7,B:4,A:25,";":4,":":4,".":43,"-":4,",":43," ":4}},G:{d:"184,-18v0,0,-25,22,-80,22v-91,1,-80,-87,-79,-173v0,-55,28,-90,87,-90v55,0,71,-4,64,38v0,0,-38,-9,-64,-9v-74,-1,-56,84,-56,151v0,28,12,54,48,54v30,0,49,-10,49,-10r0,-77r-54,0r0,-28r85,0r0,122",w:208,k:{"\u00f6":2,"\u00e4":4,"\u00bb":7,"\u00ab":7,y:9,x:5,w:7,v:9,t:2,s:2,q:2,o:2,g:2,f:4,e:2,d:2,c:2,a:2,Y:7,X:4,W:7,V:7,T:14,S:4,O:2,J:7,I:7,G:2,A:2,"?":7,";":4,":":4}},H:{d:"184,0r-31,0r0,-115r-97,0r0,115r-31,0r0,-256r31,0r0,112r97,0r0,-112r31,0r0,256",w:208,k:{"\u00f6":2,"\u00e4":4,"\u00bb":7,y:4,x:4,w:4,v:4,s:2,q:2,o:2,g:4,f:2,e:2,d:2,c:4,a:4}},I:{d:"149,0r-138,0r0,-25r54,0r0,-205r-54,0r0,-26r138,0r0,26r-54,0r0,205r54,0r0,25",w:160,k:{"\u00fc":14,"\u00f6":14,"\u00e4":7,"\u00bb":22,"\u00ab":22,y:22,x:4,w:22,v:22,u:7,t:11,s:4,r:7,q:11,p:4,o:13,n:7,m:7,l:4,k:4,j:4,i:4,h:4,g:14,f:11,e:11,d:11,c:14,b:4,a:9,U:4,S:4,Q:14,O:14,G:14,C:14,".":-4,"-":22,",":-4,")":-7," ":7}},J:{d:"103,-79v1,54,-29,84,-92,79r0,-29v40,4,61,-17,61,-50r0,-177r31,0r0,177",w:127,k:{"\u00f6":2,"\u00e4":4,"\u00bb":7,z:4,y:4,x:4,w:4,v:4,t:2,s:2,q:2,o:2,g:2,f:2,e:2,d:2,c:2,a:5,Z:4,Y:4,X:4,T:4,S:2,J:14,I:7,A:4,";":4,":":4,".":14,",":14,")":4}},K:{d:"184,0r-36,0r-89,-133r85,-123r36,0r-85,123xm56,0r-31,0r0,-256r31,0r0,256",w:187,k:{"\u00fc":9,"\u00fb":9,"\u00fa":9,"\u00f9":9,"\u00f8":13,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00f1":4,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":13,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00d8":13,"\u00d6":13,"\u00d5":13,"\u00d4":13,"\u00d3":13,"\u00d2":13,"\u00bb":22,"\u00ab":22,y:14,w:11,v:14,u:9,t:7,s:4,r:4,q:11,p:4,o:13,n:4,m:4,l:4,k:4,j:4,i:4,h:4,g:13,f:7,e:11,d:11,c:13,b:4,a:7,Y:4,W:4,U:7,T:4,S:4,R:4,Q:13,P:4,O:13,N:4,M:4,L:4,K:4,H:4,G:11,F:4,E:4,D:4,C:11,B:4,".":-7,"-":22,",":-4,")":-7," ":4}},L:{d:"153,0r-128,0r0,-256r31,0r0,227r97,0r0,29",w:167,k:{"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f9":7,"\u00f8":14,"\u00f6":14,"\u00f5":14,"\u00f4":14,"\u00f3":14,"\u00f2":14,"\u00f1":4,"\u00ef":4,"\u00ee":4,"\u00ed":4,"\u00ec":4,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e8":13,"\u00e7":14,"\u00e4":7,"\u00bb":22,"\u00ab":29,y:22,w:22,v:22,u:7,t:7,s:4,r:4,q:11,p:4,o:14,n:4,m:4,l:4,k:4,j:4,i:4,h:4,g:14,f:7,e:13,d:11,c:14,b:4,a:7,Y:43,X:4,W:36,V:43,U:14,T:43,S:4,R:4,Q:14,P:4,O:14,N:4,M:4,L:4,K:4,I:4,H:4,G:14,F:4,E:4,D:4,C:14,B:4,"?":14,";":-4,":":-4,".":-7,"-":22,",":-7," ":4}},M:{d:"239,0r-30,0r0,-187r-61,158r-31,0r-61,-158r0,187r-31,0r0,-256r34,0r73,190r73,-190r34,0r0,256",w:264,k:{"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00bb":7,y:4,x:4,w:4,v:4,s:2,q:2,o:2,g:4,f:2,e:2,d:2,c:2,a:4}},N:{d:"184,0r-31,0r-97,-189r0,189r-31,0r0,-256r31,0r97,189r0,-189r31,0r0,256",w:208,k:{"\u00f6":2,"\u00e4":4,"\u00bb":7,y:4,x:4,w:4,v:4,s:2,q:2,o:2,g:4,f:2,e:2,d:2,c:2,a:4}},O:{d:"184,-176v0,88,14,180,-80,180v-93,0,-79,-92,-79,-180v0,-48,24,-83,79,-83v55,0,80,35,80,83xm104,-25v71,-2,49,-87,49,-151v0,-28,-13,-54,-49,-54v-71,0,-48,88,-48,151v0,28,12,54,48,54",w:208,k:{"\u00fc":2,"\u00f6":2,"\u00e4":5,"\u00bb":7,z:4,y:4,x:7,w:4,v:4,t:4,s:4,q:4,o:2,g:4,f:4,e:4,d:4,c:4,a:7,Z:7,Y:9,X:13,W:7,V:5,T:18,S:2,J:14,I:14,A:5,"?":7,";":4,".":14,",":14,")":4}},P:{d:"176,-182v0,63,-50,80,-120,74r0,108r-31,0r0,-256v77,-4,151,-3,151,74xm146,-182v0,-44,-43,-48,-90,-45r0,90v47,3,90,-1,90,-45",w:198,k:{"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":18,"\u00f6":18,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00f1":7,"\u00ef":4,"\u00ed":4,"\u00ec":4,"\u00eb":18,"\u00ea":18,"\u00e9":18,"\u00e8":18,"\u00e7":22,"\u00e5":22,"\u00e4":22,"\u00e3":22,"\u00e2":22,"\u00e1":22,"\u00e0":22,"\u00dd":11,"\u00d8":4,"\u00c6":32,"\u00c5":25,"\u00c4":25,"\u00c3":25,"\u00c2":25,"\u00c1":25,"\u00c0":25,"\u00bb":14,"\u00ab":14,z:4,y:7,x:7,w:7,v:7,u:14,t:4,s:14,r:7,q:18,p:7,o:18,n:7,m:7,l:4,k:4,j:4,i:4,h:4,g:18,f:4,e:18,d:18,c:22,b:4,a:22,Z:14,Y:11,X:18,W:7,V:7,T:14,S:4,Q:4,O:4,J:43,I:18,H:4,G:4,C:4,A:25,"?":7,";":4,":":4,".":58,"-":7,",":58,")":7," ":4}},Q:{d:"184,-176v-1,81,15,171,-63,179v-1,21,-1,43,19,42v12,0,31,-3,31,-3r0,26v-29,6,-88,10,-81,-45r0,-20v-80,-8,-64,-97,-65,-179v0,-48,24,-83,79,-83v55,0,80,35,80,83xm104,-25v71,-2,49,-87,49,-151v0,-28,-13,-54,-49,-54v-71,0,-48,88,-48,151v0,28,12,54,48,54",w:208,k:{"\u00fc":2,"\u00f6":2,"\u00e4":5,"\u00bb":7,z:4,y:4,x:7,w:4,v:4,u:2,t:2,s:2,a:7,Z:7,Y:9,X:11,W:7,V:5,T:18,J:14,I:14,A:4,"?":7,".":14,",":14,")":4}},R:{d:"187,0r-36,0r-64,-108r-31,0r0,108r-31,0r0,-256v77,-4,151,-3,151,74v0,40,-18,65,-54,72xm146,-182v0,-44,-43,-48,-90,-45r0,90v47,3,90,-1,90,-45",w:198,k:{"\u00fc":7,"\u00f6":13,"\u00e4":11,"\u00bb":7,"\u00ab":7,z:4,y:7,x:4,w:7,v:7,u:7,t:4,s:7,r:7,q:13,p:7,o:13,n:7,m:7,l:4,k:4,j:4,i:4,h:4,g:13,f:7,e:9,d:13,c:14,b:4,a:11,Z:4,Y:7,X:7,W:7,V:7,U:4,T:14,S:4,Q:4,O:4,J:4,I:7,G:4,C:4,"?":7,"-":7,")":4}},S:{d:"157,-76v2,56,-28,81,-75,80v-31,0,-62,-10,-62,-10r0,-29v0,0,38,10,59,10v31,0,50,-16,47,-51v-5,-67,-104,-24,-104,-117v0,-44,30,-66,73,-66v31,0,58,8,58,8r0,27v0,0,-35,-6,-58,-6v-51,0,-58,67,-14,78v38,10,74,20,76,76",k:{"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00e7":2,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00bb":4,z:4,y:9,x:7,w:7,v:7,t:4,s:7,q:2,o:2,g:2,f:7,d:2,c:2,a:4,Z:4,Y:7,X:7,W:5,V:4,T:7,S:11,O:2,J:11,I:7,C:4,"?":4,";":4,":":4,".":4,"-":4,",":4,")":4}},T:{d:"173,-227r-64,0r0,227r-31,0r0,-227r-64,0r0,-29r159,0r0,29",w:187,k:{"\u00fc":29,"\u00fb":29,"\u00fa":40,"\u00f9":40,"\u00f8":47,"\u00f6":29,"\u00f5":29,"\u00f4":29,"\u00f3":36,"\u00f2":36,"\u00f1":29,"\u00eb":29,"\u00ea":29,"\u00e9":36,"\u00e8":36,"\u00e7":50,"\u00e6":50,"\u00e5":43,"\u00e4":32,"\u00e3":29,"\u00e2":29,"\u00e1":36,"\u00e0":36,"\u00d8":18,"\u00d6":18,"\u00d5":18,"\u00d4":18,"\u00d3":18,"\u00d2":18,"\u00c6":36,"\u00c5":29,"\u00c4":29,"\u00c3":29,"\u00c2":29,"\u00c1":29,"\u00c0":29,"\u00bb":36,"\u00ab":36,z:47,y:49,x:47,w:47,v:47,u:47,t:14,s:47,r:47,q:50,p:47,o:47,n:47,m:47,l:7,k:7,j:7,i:7,h:7,g:50,f:11,e:47,d:50,c:50,b:7,a:50,X:4,S:7,Q:18,O:18,J:43,G:14,C:14,A:29,";":29,":":29,".":36,"-":43,",":43}},U:{d:"184,-79v0,48,-25,83,-80,83v-55,0,-79,-35,-79,-83r0,-177r31,0r0,177v0,28,12,54,48,54v36,0,49,-26,49,-54r0,-177r31,0r0,177",w:208,k:{"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00bb":7,z:2,y:4,x:7,w:4,v:4,t:2,s:2,q:2,o:2,g:4,f:2,e:2,d:2,c:2,a:4,Z:4,X:4,J:14,I:4,A:4,".":14,",":14}},V:{d:"187,-256r-74,256r-35,0r-74,-256r32,0r59,208r60,-208r32,0",w:190,k:{"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":18,"\u00f6":18,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00f1":14,"\u00eb":16,"\u00ea":16,"\u00e9":16,"\u00e8":16,"\u00e7":20,"\u00e6":22,"\u00e5":22,"\u00e4":14,"\u00e3":14,"\u00e2":14,"\u00e1":22,"\u00e0":22,"\u00d8":5,"\u00c6":18,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"\u00bb":22,"\u00ab":22,z:11,y:11,x:11,w:11,v:11,u:14,t:4,s:14,r:14,q:20,p:14,o:18,n:14,m:14,j:4,i:4,g:20,f:7,e:16,d:20,c:20,a:22,S:4,Q:5,O:5,J:36,G:4,C:4,A:11,";":11,":":11,".":36,"-":11,",":36,")":-4," ":4}},W:{d:"317,-256r-64,256r-34,0r-55,-205r-55,205r-34,0r-64,-256r32,0r50,206r53,-206r36,0r52,206r50,-206r33,0",w:327,k:{"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":20,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u00f1":14,"\u00eb":16,"\u00ea":16,"\u00e9":16,"\u00e8":16,"\u00e7":18,"\u00e6":22,"\u00e5":22,"\u00e4":22,"\u00e3":18,"\u00e2":18,"\u00e1":22,"\u00e0":22,"\u00d8":7,"\u00d6":7,"\u00c6":18,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"\u00bb":14,"\u00ab":14,z:11,y:11,x:11,w:11,v:11,u:14,t:4,s:14,r:14,q:20,p:14,o:20,n:14,m:14,j:7,i:7,g:20,f:7,e:16,d:20,c:20,a:22,S:4,Q:7,O:7,J:36,G:4,C:4,A:11,";":11,":":11,".":36,"-":11,",":36,")":-4," ":4}},X:{d:"198,0r-36,0r-61,-105r-61,105r-36,0r75,-131r-72,-125r36,0r58,99r57,-99r36,0r-72,125",w:201,k:{"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f9":7,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00f1":7,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":11,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00d8":13,"\u00d6":13,"\u00d5":13,"\u00d4":13,"\u00d3":13,"\u00d2":13,"\u00bb":22,"\u00ab":22,y:14,w:14,v:14,u:7,t:7,s:4,r:7,q:11,p:7,o:11,n:7,m:7,l:4,k:4,j:4,i:4,h:4,g:11,f:7,e:9,d:11,c:11,b:4,a:4,U:4,T:4,S:4,Q:11,O:13,G:7,C:7,".":-7,"-":22,",":-7,")":-4," ":4}},Y:{d:"185,-256r-75,168r0,88r-31,0r0,-88r-75,-168r34,0r57,132r56,-132r34,0",w:189,k:{"\u00fc":22,"\u00fb":22,"\u00fa":25,"\u00f9":25,"\u00f8":32,"\u00f6":25,"\u00f5":22,"\u00f4":25,"\u00f3":32,"\u00f2":32,"\u00eb":23,"\u00ea":23,"\u00e9":31,"\u00e8":31,"\u00e7":32,"\u00e6":32,"\u00e5":29,"\u00e4":22,"\u00e3":22,"\u00e2":22,"\u00e1":29,"\u00e0":29,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"\u00c5":22,"\u00c4":22,"\u00c3":22,"\u00c2":22,"\u00c1":22,"\u00c0":22,"\u00bb":29,"\u00ab":29,z:22,y:18,x:18,w:18,v:18,u:25,t:14,s:25,r:25,q:32,p:25,o:32,n:25,m:25,l:7,k:7,j:7,i:7,h:7,g:32,f:7,e:31,d:32,c:32,b:7,a:32,S:4,Q:9,O:9,J:36,G:7,C:7,A:22,";":14,":":14,".":43,"-":22,",":43,")":-4," ":4}},Z:{d:"142,0r-128,0r0,-29r91,-198r-91,0r0,-29r128,0r0,29r-91,198r91,0r0,29",w:156,k:{"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f9":7,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00f1":4,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00bb":7,"\u00ab":7,y:11,w:11,v:11,u:7,t:7,s:4,q:11,o:11,g:11,f:7,e:11,d:11,c:11,a:5,U:4,S:4,Q:7,O:7,G:5,C:5,";":-4,".":-7,"-":14,",":-7,")":-4," ":4}},"[":{d:"99,32r-74,0r0,-320r74,0r0,25r-43,0r0,270r43,0r0,25",w:102,k:{"9":4,"7":7,"1":14}},"\\":{d:"121,0r-33,0r-74,-256r33,0",w:135},"]":{d:"77,32r-73,0r0,-25r43,0r0,-270r-43,0r0,-25r73,0r0,320",w:102},"^":{d:"153,-155r-30,0r-36,-72r-36,72r-29,0r52,-101r27,0",w:174},_:{d:"173,68r-173,0r0,-27r173,0r0,27",w:172},"`":{d:"110,-221r-85,-11r0,-27r85,11r0,27",w:135},a:{d:"146,0r-31,0r0,-11v-32,28,-104,15,-97,-38v-4,-52,48,-59,97,-52v1,-30,0,-55,-32,-54v-23,0,-54,7,-54,7r0,-26v0,0,27,-10,57,-10v87,0,54,109,60,184xm115,-36r0,-41v0,0,-66,-5,-66,28v0,35,46,28,66,13",w:171,k:{"\u00fc":2,"\u00f6":2,"\u00bb":7,y:7,x:4,w:7,v:7,t:2,s:2,q:2,o:2,g:4,f:2,e:2,d:2,c:4,a:5,"?":14}},b:{d:"153,-122v0,63,7,126,-61,122r-67,0r0,-256r31,0r0,85v38,-28,97,-8,97,49xm88,-27v49,2,30,-54,34,-95v4,-38,-41,-42,-66,-24r0,119r32,0",k:{"\u00fc":2,"\u00fb":2,"\u00fa":2,"\u00f9":2,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00f1":2,"\u00ef":2,"\u00ee":2,"\u00ed":2,"\u00ec":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":4,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00bb":7,z:5,y:7,x:7,w:7,v:7,u:2,t:2,s:2,q:4,p:2,o:4,n:2,m:2,l:2,k:2,j:2,i:2,h:2,g:4,f:4,e:2,d:4,c:4,a:5,"?":14,";":4,":":4,".":7,",":7,")":4," ":4}},c:{d:"126,-1v0,0,-21,5,-38,5v-64,2,-63,-58,-63,-123v0,-56,56,-75,101,-60r0,27v0,0,-22,-3,-36,-3v-46,-1,-32,53,-34,94v-9,37,46,39,70,33r0,27",w:140,k:{"\u00fc":4,"\u00f8":9,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00bb":7,"\u00ab":7,y:4,w:4,v:4,u:4,s:2,r:2,q:7,o:9,l:4,k:4,j:4,i:4,h:4,g:9,f:4,e:7,d:7,c:7,b:2,a:7,"?":7,".":-5,"-":7," ":4}},d:{d:"153,0r-31,0r0,-9v-38,28,-97,8,-97,-49v0,-62,-7,-129,58,-126v15,0,29,5,39,11r0,-83r31,0r0,256xm122,-34r0,-114v-26,-16,-70,-11,-66,26v4,40,-14,98,30,99v12,0,25,-6,36,-11",k:{"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":4,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00bb":7,y:4,x:4,w:4,v:4,t:2,s:2,q:2,o:2,g:4,e:2,d:2,c:4,a:5}},e:{d:"149,-79r-97,0v1,38,17,55,43,55v19,0,47,-7,47,-7r0,28v0,0,-26,7,-48,7v-48,0,-72,-36,-72,-103v0,-53,19,-85,65,-85v56,0,65,48,62,105xm120,-103v1,-28,-4,-54,-32,-55v-29,0,-36,24,-36,55r68,0",w:171,k:{"\u00fc":2,"\u00f6":2,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00bb":7,z:2,y:4,x:5,w:5,v:5,u:2,t:2,r:2,q:2,p:2,o:2,n:2,m:2,l:2,k:2,j:2,i:2,h:2,g:2,f:4,e:2,d:2,c:2,b:2,a:7,"?":11,";":2,":":4,".":7,",":4,")":2," ":2}},f:{d:"103,-229v-10,1,-45,-9,-40,16r0,33r32,0r0,25r-32,0r0,155r-31,0r0,-155r-25,0r0,-25r25,0v-3,-42,1,-79,42,-79v14,0,29,4,29,4r0,26",w:102,k:{"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f9":7,"\u00f8":9,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00f1":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":11,"\u00e6":9,"\u00e5":9,"\u00e4":9,"\u00e3":9,"\u00e2":9,"\u00e1":9,"\u00e0":9,"\u00df":4,"\u00bb":7,"\u00ab":7,w:2,u:7,s:4,r:5,q:7,p:7,o:9,n:7,m:7,l:2,j:4,i:4,g:7,e:7,d:7,c:11,a:9,"?":-7,";":4,":":4,".":14,"-":11,",":11,")":-7," ":5}},g:{d:"153,9v0,44,-17,63,-60,63v-30,0,-61,-8,-61,-8r0,-28v0,0,37,7,58,7v34,1,33,-27,32,-59v-38,26,-97,7,-97,-49v0,-62,-3,-121,61,-119v27,0,67,8,67,8r0,185xm122,-41r0,-112v-32,-10,-69,-2,-66,31v4,38,-13,91,30,91v12,0,25,-5,36,-10",k:{"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00bb":7,y:4,x:4,w:4,v:4,t:2,s:2,q:2,o:2,g:2,e:2,d:2,c:4,a:4,"?":11}},h:{d:"153,0r-31,0r0,-122v6,-40,-45,-36,-66,-19r0,141r-31,0r0,-256r31,0r0,89v10,-8,25,-17,46,-17v79,0,43,113,51,184",k:{"\u00f6":2,"\u00e4":5,"\u00bb":7,y:7,x:4,w:7,v:7,s:2,q:2,o:2,g:4,f:4,e:2,d:2,c:4,a:5,"?":11}},i:{d:"56,-225r-31,0r0,-31r31,0r0,31xm56,0r-31,0r0,-180r31,0r0,180",w:81,k:{"\u00f6":2,"\u00e4":4,"\u00bb":7,y:4,x:4,w:4,v:4,s:2,q:2,o:2,g:4,e:2,d:2,c:4,a:5}},j:{d:"56,-225r-31,0r0,-31r31,0r0,31xm56,31v7,41,-37,45,-63,38r0,-26v8,1,37,9,32,-15r0,-208r31,0r0,211",w:81,k:{"\u00f6":2,"\u00e4":4,"\u00bb":7,y:4,x:4,w:4,v:4,s:2,q:2,o:2,g:4,e:2,d:2,c:4,a:4}},k:{d:"153,0r-34,0r-61,-101r57,-79r34,0r-57,79xm56,0r-31,0r0,-256r31,0r0,256",w:153,k:{"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":5,"\u00f6":5,"\u00f5":5,"\u00f4":5,"\u00f3":5,"\u00f2":5,"\u00f1":2,"\u00ef":2,"\u00ee":2,"\u00ed":2,"\u00ec":2,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":9,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00df":4,"\u00bb":7,"\u00ab":7,y:4,w:4,v:2,u:4,s:2,r:2,q:7,p:2,o:5,n:2,m:2,l:2,k:2,j:2,i:2,h:2,g:9,f:2,e:7,d:9,c:9,b:2,a:5,"?":11,".":-4,"-":7,",":-4,")":-4," ":4}},l:{d:"56,0r-31,0r0,-256r31,0r0,256",w:81,k:{"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00bb":7,y:4,x:4,w:4,v:4,s:2,q:2,o:2,g:4,f:2,e:2,d:2,c:4,a:4}},m:{d:"250,0r-30,0r0,-122v6,-41,-49,-36,-68,-16v3,44,0,92,1,138r-31,0r0,-122v6,-40,-45,-36,-66,-19r0,141r-31,0r0,-180r31,0r0,13v17,-20,80,-26,90,6v9,-9,26,-23,53,-23v79,0,43,113,51,184",w:275,k:{"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":4,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00bb":7,y:7,x:4,w:7,v:7,s:2,q:2,o:2,g:4,f:4,e:2,d:2,c:4,a:5,"?":11}},n:{d:"153,0r-31,0r0,-122v6,-40,-45,-36,-66,-19r0,141r-31,0r0,-180r31,0r0,13v10,-8,25,-17,46,-17v79,0,43,113,51,184",k:{"\u00f6":2,"\u00e4":4,"\u00bb":7,y:7,x:4,w:7,v:7,s:2,q:2,o:2,g:4,f:4,e:2,d:2,c:4,a:5,"?":11}},o:{d:"151,-119v0,65,1,123,-64,123v-64,0,-64,-58,-64,-123v0,-40,23,-65,64,-65v41,0,64,25,64,65xm87,-23v46,0,32,-54,34,-96v0,-21,-9,-38,-34,-38v-45,0,-33,55,-33,96v0,21,8,38,33,38",w:174,k:{"\u00fc":2,"\u00fb":2,"\u00fa":2,"\u00f9":2,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00f1":2,"\u00ef":2,"\u00ee":2,"\u00ed":2,"\u00ec":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":4,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00bb":7,z:7,y:7,x:7,w:7,v:7,u:2,t:4,r:2,q:4,p:2,o:4,n:2,m:2,l:2,k:2,j:2,i:2,h:2,g:4,f:5,e:2,d:4,c:4,b:2,a:5,"?":11,";":4,":":4,".":9,",":7,")":4," ":2}},p:{d:"153,-122v0,64,5,127,-63,122v-7,0,-21,-2,-34,-3r0,71r-31,0r0,-248r31,0r0,9v38,-28,97,-8,97,49xm88,-27v49,2,30,-54,34,-95v4,-38,-41,-42,-66,-24r0,119r32,0",k:{"\u00fc":2,"\u00fb":2,"\u00fa":2,"\u00f9":2,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00f1":2,"\u00ef":2,"\u00ee":2,"\u00ed":2,"\u00ec":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":4,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00bb":7,z:5,y:7,x:7,w:7,v:7,u:2,t:2,s:2,r:2,q:4,p:2,o:4,n:2,m:2,l:2,k:2,j:2,i:2,h:2,g:4,f:4,e:2,d:4,c:4,b:2,a:5,"?":11,";":4,":":4,".":7,",":7,")":4," ":2}},q:{d:"153,68r-31,0r0,-77v-38,28,-97,8,-97,-49v0,-64,-6,-126,61,-126v27,0,67,8,67,8r0,244xm122,-34r0,-119v-32,-10,-69,-2,-66,31v4,40,-14,98,30,99v12,0,25,-6,36,-11",k:{"\u00f6":2,"\u00e4":4,"\u00bb":7,y:4,x:4,w:4,v:4,t:2,s:2,q:2,o:2,g:2,e:2,d:2,c:4,a:5,"?":11}},r:{d:"106,-149v-23,-5,-41,10,-50,27r0,122r-31,0r0,-180r31,0r0,23v5,-17,27,-32,50,-25r0,33",w:113,k:{"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":9,"\u00e6":13,"\u00e5":13,"\u00e4":13,"\u00e3":13,"\u00e2":13,"\u00e1":13,"\u00e0":13,"\u00bb":4,"\u00ab":7,y:-2,v:-2,q:7,o:7,l:2,k:2,h:2,g:7,e:9,d:7,c:9,b:2,a:13,"?":7,".":29,",":29,")":7," ":4}},s:{d:"139,-52v0,40,-21,56,-62,56v-31,0,-61,-9,-61,-9r0,-28v9,2,100,25,92,-16v0,-25,-28,-26,-47,-32v-21,-7,-43,-15,-43,-49v0,-36,21,-54,62,-54v26,0,51,7,51,7r0,27v0,0,-27,-6,-50,-6v-43,0,-40,41,-8,47v33,6,65,11,66,57",w:156,k:{"\u00fc":2,"\u00f6":2,"\u00e4":2,"\u00df":2,"\u00bb":7,"\u00ab":7,z:4,y:7,x:4,w:5,v:5,u:2,t:4,s:4,r:2,q:2,p:2,o:2,n:2,m:2,l:2,k:2,j:2,i:2,h:2,g:4,f:4,e:2,d:2,c:2,b:2,a:2,"?":11,";":4,":":4,".":2,"-":7,",":4,")":4," ":2}},t:{d:"113,-1v-28,8,-81,11,-81,-44r0,-110r-25,0r0,-25r25,0r0,-47r31,0r0,47r50,0r0,25r-50,0r0,111v-6,28,40,20,50,17r0,26",w:120,k:{"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":9,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00f1":4,"\u00ef":4,"\u00ee":4,"\u00ed":4,"\u00ec":4,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":9,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00df":4,"\u00bb":7,"\u00ab":11,y:2,w:4,u:4,t:16,s:2,r:2,q:7,p:4,o:9,n:4,m:4,l:4,k:2,j:4,i:4,h:4,g:7,e:9,d:7,c:7,b:2,a:5,"?":7,";":-4,":":-4,".":-7,"-":7,",":-4,")":-4," ":4}},u:{d:"153,0r-31,0r0,-12v-10,8,-25,16,-46,16v-79,0,-43,-113,-51,-184r31,0r0,122v-6,40,45,36,66,19r0,-141r31,0r0,180",k:{"\u00f6":2,"\u00e4":4,"\u00bb":7,y:4,x:4,w:4,v:4,t:4,s:2,q:2,o:2,g:4,f:4,e:2,d:2,c:2,a:5,"?":11}},v:{d:"158,-180r-60,180r-34,0r-60,-180r32,0r45,140r45,-140r32,0",w:162,k:{"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":5,"\u00ea":5,"\u00e9":5,"\u00e8":5,"\u00e7":5,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00df":4,"\u00bb":7,"\u00ab":7,z:4,u:4,s:4,r:4,q:7,p:4,o:7,n:4,m:4,l:4,k:4,j:4,i:4,h:4,g:7,e:5,d:7,c:7,b:4,a:7,"?":7,".":29,",":25,")":4," ":4}},w:{d:"259,-180r-49,180r-35,0r-40,-136r-40,136r-35,0r-49,-180r32,0r35,137r40,-137r34,0r40,137r35,-137r32,0",w:270,k:{"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":4,"\u00ef":4,"\u00ee":4,"\u00ed":4,"\u00ec":4,"\u00eb":5,"\u00ea":5,"\u00e9":5,"\u00e8":5,"\u00e7":7,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00df":4,"\u00bb":7,"\u00ab":7,z:4,x:4,u:4,t:4,s:4,r:4,q:7,p:4,o:7,n:4,m:4,l:4,k:4,j:4,i:4,h:4,g:7,f:2,e:5,d:7,c:7,b:4,a:7,"?":7,".":29,",":25,")":4," ":4}},x:{d:"155,0r-35,0r-43,-69r-42,69r-35,0r56,-93r-52,-87r35,0r38,63r39,-63r35,0r-52,87",w:154,k:{"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":4,"\u00eb":5,"\u00ea":5,"\u00e9":5,"\u00e8":5,"\u00e7":7,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00df":4,"\u00bb":7,"\u00ab":11,w:4,u:4,r:4,q:7,p:4,o:7,n:4,m:4,l:4,k:4,j:4,i:4,h:4,g:7,e:5,d:7,c:7,b:4,a:4,"?":7,".":-4,"-":4,",":-4,")":-4," ":4}},y:{d:"158,-180r-84,248r-33,0r24,-68r-61,-180r32,0r45,136r45,-136r32,0",w:162,k:{"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":4,"\u00ef":4,"\u00ee":4,"\u00ed":4,"\u00ec":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00df":4,"\u00bb":7,"\u00ab":7,z:4,u:4,s:4,r:4,q:7,p:4,o:7,n:4,m:4,l:4,k:4,i:4,h:4,g:7,e:4,d:7,c:7,b:4,a:7,"?":7,".":29,",":25,")":4," ":4}},z:{d:"135,0r-121,0r0,-27r83,-126r-83,0r0,-27r121,0r0,27r-82,126r82,0r0,27",w:149,k:{"\u00fc":2,"\u00f6":7,"\u00e4":5,"\u00bb":7,"\u00ab":7,y:4,w:4,v:4,u:2,s:2,q:7,o:7,g:7,e:5,d:7,c:7,a:5,"?":7,".":-4,"-":4,",":-4," ":4}},"{":{d:"110,32v-47,3,-76,-8,-74,-54v-6,-37,20,-99,-32,-93r0,-25v78,10,-19,-160,88,-148r18,0r0,25v-27,-2,-46,3,-43,29v-3,39,12,96,-21,106v33,10,21,67,21,106v0,26,16,31,43,29r0,25",w:113,k:{"9":4,"7":7,"1":14}},"|":{d:"56,36r-31,0r0,-328r31,0r0,328",w:81},"}":{d:"110,-115v-79,-10,18,159,-88,147r-18,0r0,-25v27,2,46,-3,43,-29v3,-40,-12,-95,21,-106v-33,-10,-17,-67,-21,-106v3,-26,-16,-31,-43,-29r0,-25v47,-3,73,8,73,54v0,38,-20,100,33,94r0,25",w:113},"~":{d:"158,-144v10,72,-97,5,-136,34v-10,-72,97,-5,136,-34",w:180},"\u00a0":{w:108,k:{z:4,y:4,x:4,w:4,v:4,t:2,s:2,q:2,o:2,g:4,f:4,e:2,d:4,c:4,a:5,Z:4,Y:4,X:4,W:4,V:4,J:4,I:7}},"\u00a1":{d:"63,-149r-38,0r0,-38r38,0r0,38xm59,68r-30,0r0,-181r30,0r0,181",w:88},"\u00a2":{d:"126,-1v0,0,-10,3,-23,4r0,40r-31,0r0,-41v-51,-6,-47,-63,-47,-121v0,-35,16,-57,47,-63r0,-41r31,0r0,40v13,1,23,4,23,4r0,27v0,0,-22,-3,-36,-3v-46,-1,-32,53,-34,94v-9,37,46,39,70,33r0,27",w:140},"\u00a3":{d:"157,-224v0,0,-33,-6,-56,-6v-47,0,-47,40,-45,86r79,0r0,29r-79,0r0,86r97,0r0,29r-128,0r0,-183v0,-51,30,-76,75,-76v31,0,57,8,57,8r0,27",w:171},"\u00a4":{d:"169,-67r-20,20r-23,-23v-19,12,-53,12,-72,1r-23,22r-20,-20r22,-23v-10,-18,-12,-54,-1,-73r-21,-22r20,-20r20,20v20,-13,58,-11,77,1r21,-21r20,20r-22,23v9,19,8,53,-2,71xm89,-88v25,0,34,-18,33,-42v0,-21,-8,-37,-33,-37v-25,0,-34,17,-33,41v0,21,8,38,33,38",w:180},"\u00a5":{d:"193,-256r-49,108r45,0r0,29r-58,0r-13,29r71,0r0,29r-72,0r0,61r-31,0r0,-61r-72,0r0,-29r72,0r-13,-29r-59,0r0,-29r45,0r-48,-108r34,0r57,132r56,-132r35,0",w:203},"\u00a6":{d:"56,-144r-31,0r0,-148r31,0r0,148xm56,36r-31,0r0,-148r31,0r0,148",w:81},"\u00a7":{d:"146,-23v2,44,-18,63,-62,63v-31,0,-61,-9,-61,-9r0,-28v11,2,107,29,92,-24v0,-25,-29,-23,-47,-31v-42,3,-63,-83,-21,-105v-15,-7,-22,-23,-22,-49v0,-36,21,-53,62,-53v26,0,52,6,52,6r0,27v0,0,-28,-5,-51,-5v-44,0,-41,48,-8,53v39,6,66,19,66,75v0,21,-8,31,-20,38v11,8,20,21,20,42xm80,-81v25,12,35,-7,35,-37v0,-23,-24,-24,-42,-30v-27,10,-25,65,7,67",w:171},"\u00a8":{d:"117,-225r-31,0r0,-31r31,0r0,31xm56,-225r-31,0r0,-31r31,0r0,31",w:142},"\u00a9":{d:"252,-149v0,99,-32,153,-113,153v-80,0,-114,-52,-114,-153v0,-80,49,-110,114,-110v65,0,113,30,113,110xm139,-27v69,0,79,-49,79,-122v0,-54,-27,-80,-79,-80v-69,0,-80,49,-80,123v0,54,28,79,80,79xm180,-57v0,0,-17,5,-34,5v-49,0,-67,-34,-63,-87v-8,-54,53,-73,97,-60r0,27v0,0,-18,-3,-32,-3v-33,0,-37,25,-35,58v-9,35,44,40,67,33r0,27",w:277},"\u00aa":{d:"149,-76r-30,0r0,-10v-32,26,-104,14,-97,-38v-4,-52,48,-60,97,-53v2,-30,-1,-54,-33,-53v-23,0,-54,7,-54,7r0,-27v0,0,27,-9,57,-9v87,0,54,108,60,183xm149,0r-120,0r0,-27r120,0r0,27xm119,-111r0,-42v-32,0,-67,-4,-67,29v0,35,46,26,67,13",w:174},"\u00ab":{d:"155,-58r-34,0r-36,-61r36,-61r34,0r-36,61xm92,-58r-34,0r-36,-61r36,-61r34,0r-36,61",w:176,k:{z:7,y:7,x:7,w:7,v:7,u:7,t:7,s:7,r:7,q:7,p:7,o:7,n:7,m:7,l:7,k:7,j:7,i:7,h:7,g:7,f:7,e:7,d:7,c:7,b:7,a:7,Z:7,Y:29,X:22,W:14,V:22,U:7,T:36,S:7,R:7,Q:7,P:7,O:7,N:7,M:7,L:7,K:7,J:36,I:22,G:7,F:7,E:7,D:7,C:7,B:7,A:22}},"\u00ac":{d:"158,-56r-28,0r0,-57r-108,0r0,-27r136,0r0,84",w:180},"\u00ad":{d:"101,-113r-79,0r0,-27r79,0r0,27",w:122},"\u00ae":{d:"252,-149v0,99,-32,153,-113,153v-80,0,-114,-52,-114,-153v0,-80,49,-110,114,-110v65,0,113,30,113,110xm139,-27v69,0,79,-49,79,-122v0,-54,-27,-80,-79,-80v-69,0,-80,49,-80,123v0,54,28,79,80,79xm198,-56r-36,0r-38,-54r-7,0r0,54r-31,0r0,-144v51,2,107,-13,108,45v0,28,-15,40,-35,44xm164,-155v0,-23,-26,-17,-47,-18r0,36v21,-1,47,5,47,-18",w:277},"\u00af":{d:"110,-229r-85,0r0,-27r85,0r0,27",w:135},"\u00b0":{d:"153,-194v0,51,-16,82,-64,82v-47,0,-64,-31,-64,-82v0,-40,23,-65,64,-65v41,0,64,25,64,65xm89,-139v31,0,33,-24,33,-55v0,-21,-8,-38,-33,-38v-31,0,-33,25,-33,56v0,21,8,37,33,37"},"\u00b1":{d:"158,-113r-54,0r0,57r-28,0r0,-57r-54,0r0,-27r54,0r0,-58r28,0r0,58r54,0r0,27xm158,0r-136,0r0,-27r136,0r0,27",w:180},"\u00b2":{d:"107,-102r-91,0r0,-38v1,-57,60,-36,60,-77v0,-10,-5,-15,-19,-15v-14,0,-41,5,-41,5r0,-26v0,0,21,-6,41,-6v37,0,51,16,50,51v-2,53,-68,31,-61,78r61,0r0,28",w:122},"\u00b3":{d:"88,-184v34,22,20,85,-33,85v-20,0,-42,-6,-42,-6r0,-27v10,2,77,19,63,-21v1,-20,-32,-14,-52,-15r0,-27v22,-1,47,6,47,-21v0,-10,-5,-16,-18,-16v-13,0,-40,6,-40,6r0,-27v0,0,21,-6,41,-6v46,0,64,52,34,75",w:122},"\u00b4":{d:"110,-232r-85,11r0,-27r85,-11r0,27",w:135},"\u00b5":{d:"153,0r-31,0r0,-12v-12,11,-43,21,-66,13r0,67r-31,0r0,-248r31,0r0,122v-6,40,45,36,66,19r0,-141r31,0r0,180"},"\u00b6":{d:"202,0r-31,0r0,-256r31,0r0,256xm140,0r-30,0r0,-108v-59,3,-92,-21,-92,-74v0,-64,52,-80,122,-74r0,256xm110,-137r0,-90v-38,-3,-61,12,-61,45v0,32,22,48,61,45",w:226},"\u00b7":{d:"56,-113r-31,0r0,-31r31,0r0,31",w:81},"\u00b8":{d:"79,41v0,35,-36,33,-54,27r0,-14v13,0,27,1,27,-13v0,-13,-14,-12,-27,-12r10,-43r20,0v-1,9,-6,21,-5,28v12,0,29,3,29,27",w:104},"\u00b9":{d:"87,-102r-30,0r0,-124r-37,8r0,-25v21,-6,38,-15,67,-13r0,154",w:122},"\u00ba":{d:"153,-194v0,65,0,122,-64,122v-64,0,-64,-57,-64,-122v0,-40,23,-65,64,-65v41,0,64,25,64,65xm153,0r-128,0r0,-27r128,0r0,27xm89,-99v45,0,33,-54,33,-95v0,-21,-8,-38,-33,-38v-45,0,-33,54,-33,95v0,21,8,38,33,38"},"\u00bb":{d:"155,-119r-36,61r-34,0r36,-61r-36,-61r34,0xm92,-119r-36,61r-34,0r36,-61r-36,-61r34,0",w:176,k:{z:7,y:7,x:11,w:7,v:7,t:7,s:7,f:11,c:7,a:14,Z:7,Y:29,X:22,W:14,V:22,T:36,S:7,J:36,I:22,A:22}},"\u00bc":{d:"329,-24r-15,0r0,24r-31,0r0,-24r-68,0r0,-24v22,-31,27,-60,25,-105r31,0v1,43,-3,77,-20,102r32,0r0,-60r31,0r0,60r15,0r0,27xm247,-256r-125,256r-36,0r125,-256r36,0xm87,-102r-30,0r0,-124r-37,8r0,-25v21,-6,38,-15,67,-13r0,154",w:333},"\u00bd":{d:"318,0r-92,0r0,-38v1,-57,61,-37,61,-76v0,-10,-6,-16,-20,-16v-14,0,-41,5,-41,5r0,-26v0,0,21,-6,41,-6v37,0,52,16,51,51v-2,54,-69,31,-61,79r61,0r0,27xm247,-256r-125,256r-36,0r125,-256r36,0xm87,-102r-30,0r0,-124r-37,8r0,-25v21,-6,38,-15,67,-13r0,154",w:333},"\u00be":{d:"329,-24r-15,0r0,24r-31,0r0,-24r-68,0r0,-24v22,-31,27,-60,25,-105r31,0v1,43,-3,77,-20,102r32,0r0,-60r31,0r0,60r15,0r0,27xm247,-256r-125,256r-36,0r125,-256r36,0xm88,-184v34,22,20,85,-33,85v-20,0,-42,-6,-42,-6r0,-27v10,2,77,19,63,-21v1,-20,-32,-14,-52,-15r0,-27v22,-1,47,6,47,-21v0,-10,-5,-16,-18,-16v-13,0,-40,6,-40,6r0,-27v0,0,21,-6,41,-6v46,0,64,52,34,75",w:333},"\u00bf":{d:"106,-149r-38,0r0,-38r38,0r0,38xm135,65v0,0,-25,7,-51,7v-43,0,-63,-20,-62,-64v1,-60,62,-48,50,-121r31,0v4,50,-11,78,-36,93v-22,14,-22,63,18,63v20,0,50,-5,50,-5r0,27",w:149},"\u00c0":{d:"142,-270r-84,-7r0,-27r84,7r0,27xm196,0r-32,0r-16,-50r-97,0r-15,50r-32,0r81,-256r30,0xm139,-79r-39,-127r-40,127r79,0",w:199,k:{y:7,w:4,v:7,t:4,g:4,Y:22,W:11,V:11,T:29,C:4}},"\u00c1":{d:"142,-277r-84,7r0,-27r84,-7r0,27xm196,0r-32,0r-16,-50r-97,0r-15,50r-32,0r81,-256r30,0xm139,-79r-39,-127r-40,127r79,0",w:199,k:{y:7,w:4,v:7,t:4,g:4,Y:22,W:11,V:11,T:29,C:4}},"\u00c2":{d:"156,-270r-56,-14r-56,14r0,-27r56,-18r56,18r0,27xm196,0r-32,0r-16,-50r-97,0r-15,50r-32,0r81,-256r30,0xm139,-79r-39,-127r-40,127r79,0",w:199,k:{y:7,w:4,v:7,t:4,g:4,Y:22,W:11,V:11,T:29,C:4}},"\u00c3":{d:"156,-304v13,63,-77,12,-112,34v-13,-62,78,-12,112,-34xm196,0r-32,0r-16,-50r-97,0r-15,50r-32,0r81,-256r30,0xm139,-79r-39,-127r-40,127r79,0",w:199,k:{y:7,w:4,v:7,t:4,g:4,Y:22,W:11,V:11,T:29,C:4}},"\u00c4":{d:"153,-270r-31,0r0,-31r31,0r0,31xm77,-270r-30,0r0,-31r30,0r0,31xm196,0r-32,0r-16,-50r-97,0r-15,50r-32,0r81,-256r30,0xm139,-79r-39,-127r-40,127r79,0",w:199,k:{y:7,w:4,v:7,t:4,g:4,Y:22,W:11,V:11,T:29,C:4}},"\u00c5":{d:"196,0r-32,0r-16,-50r-97,0r-15,50r-32,0r73,-233v-32,-14,-19,-75,23,-68v43,-7,54,55,22,68xm118,-265v0,-9,-5,-16,-18,-16v-13,0,-18,7,-18,16v0,9,5,17,18,17v13,0,18,-8,18,-17xm139,-79r-39,-127r-40,127r79,0",w:199,k:{y:7,w:4,v:7,t:4,g:4,Y:22,W:11,V:11,T:29,C:4}},"\u00c6":{d:"266,0r-120,0r0,-58r-85,0r-23,58r-34,0r102,-256r160,0r0,29r-90,0r0,83r83,0r0,29r-83,0r0,86r90,0r0,29xm146,-86r0,-141r-17,0r-56,141r73,0",w:284,k:{y:7,w:7,v:7,t:4,q:7,o:7,g:9,e:7,d:7,c:7,a:7,W:4,T:4,C:4}},"\u00c7":{d:"146,-1r-48,5v0,3,-3,8,-1,10v12,0,29,3,29,27v0,35,-36,33,-54,27r0,-14v13,0,27,1,27,-13v0,-13,-14,-12,-27,-12r6,-28v-68,-14,-53,-100,-53,-177v0,-48,24,-83,77,-83v21,0,44,5,44,5r0,28v0,0,-27,-4,-43,-4v-68,2,-47,88,-47,151v0,28,13,54,47,54v16,0,43,-4,43,-4r0,28",w:160},"\u00c8":{d:"128,-270r-85,-7r0,-27r85,7r0,27xm153,0r-128,0r0,-256r128,0r0,29r-97,0r0,83r90,0r0,29r-90,0r0,86r97,0r0,29",w:171,k:{y:7,w:7,v:7,t:4,q:7,o:7,c:7,a:7}},"\u00c9":{d:"128,-277r-85,7r0,-27r85,-7r0,27xm153,0r-128,0r0,-256r128,0r0,29r-97,0r0,83r90,0r0,29r-90,0r0,86r97,0r0,29",w:171,k:{y:7,w:7,v:7,t:4,q:7,o:7,c:7,a:7}},"\u00ca":{d:"144,-270r-56,-14r-56,14r0,-27r56,-18r56,18r0,27xm153,0r-128,0r0,-256r128,0r0,29r-97,0r0,83r90,0r0,29r-90,0r0,86r97,0r0,29",w:171,k:{y:7,w:7,v:7,t:4,q:7,o:7,c:7,a:7}},"\u00cb":{d:"135,-270r-31,0r0,-31r31,0r0,31xm74,-270r-31,0r0,-31r31,0r0,31xm153,0r-128,0r0,-256r128,0r0,29r-97,0r0,83r90,0r0,29r-90,0r0,86r97,0r0,29",w:171,k:{y:7,w:7,v:7,t:4,q:7,o:7,c:7,a:7}},"\u00cc":{d:"122,-270r-84,-7r0,-27r84,7r0,27xm149,0r-138,0r0,-25r54,0r0,-205r-54,0r0,-26r138,0r0,26r-54,0r0,205r54,0r0,25",w:160},"\u00cd":{d:"122,-277r-84,7r0,-27r84,-7r0,27xm149,0r-138,0r0,-25r54,0r0,-205r-54,0r0,-26r138,0r0,26r-54,0r0,205r54,0r0,25",w:160},"\u00ce":{d:"136,-270r-56,-14r-56,14r0,-27r56,-18r56,18r0,27xm149,0r-138,0r0,-25r54,0r0,-205r-54,0r0,-26r138,0r0,26r-54,0r0,205r54,0r0,25",w:160},"\u00cf":{d:"126,-270r-31,0r0,-31r31,0r0,31xm65,-270r-31,0r0,-31r31,0r0,31xm149,0r-138,0r0,-25r54,0r0,-205r-54,0r0,-26r138,0r0,26r-54,0r0,205r54,0r0,25",w:160},"\u00d0":{d:"184,-173v1,86,11,175,-80,173r-79,0r0,-256r79,0v55,0,80,35,80,83xm104,-29v69,-2,49,-82,49,-144v0,-28,-13,-54,-49,-54r-48,0r0,83r75,0r0,29r-75,0r0,86r48,0",w:208},"\u00d1":{d:"160,-304v13,62,-77,12,-111,34v-13,-62,78,-13,111,-34xm184,0r-31,0r-97,-189r0,189r-31,0r0,-256r31,0r97,189r0,-189r31,0r0,256",w:208},"\u00d2":{d:"147,-270r-85,-7r0,-27r85,7r0,27xm184,-176v0,88,14,180,-80,180v-93,0,-79,-92,-79,-180v0,-48,24,-83,79,-83v55,0,80,35,80,83xm104,-25v71,-2,49,-87,49,-151v0,-28,-13,-54,-49,-54v-71,0,-48,88,-48,151v0,28,12,54,48,54",w:208,k:{Y:9,X:13,T:18}},"\u00d3":{d:"147,-277r-85,7r0,-27r85,-7r0,27xm184,-176v0,88,14,180,-80,180v-93,0,-79,-92,-79,-180v0,-48,24,-83,79,-83v55,0,80,35,80,83xm104,-25v71,-2,49,-87,49,-151v0,-28,-13,-54,-49,-54v-71,0,-48,88,-48,151v0,28,12,54,48,54",w:208,k:{Y:9,X:13,T:18}},"\u00d4":{d:"160,-270r-56,-14r-55,14r0,-27r55,-18r56,18r0,27xm184,-176v0,88,14,180,-80,180v-93,0,-79,-92,-79,-180v0,-48,24,-83,79,-83v55,0,80,35,80,83xm104,-25v71,-2,49,-87,49,-151v0,-28,-13,-54,-49,-54v-71,0,-48,88,-48,151v0,28,12,54,48,54",w:208,k:{Y:9,X:13,T:18}},"\u00d5":{d:"160,-304v13,62,-77,12,-111,34v-13,-62,78,-13,111,-34xm184,-176v0,88,14,180,-80,180v-93,0,-79,-92,-79,-180v0,-48,24,-83,79,-83v55,0,80,35,80,83xm104,-25v71,-2,49,-87,49,-151v0,-28,-13,-54,-49,-54v-71,0,-48,88,-48,151v0,28,12,54,48,54",w:208,k:{Y:9,X:13,T:18}},"\u00d6":{d:"158,-270r-31,0r0,-31r31,0r0,31xm82,-270r-31,0r0,-31r31,0r0,31xm184,-176v0,88,14,180,-80,180v-93,0,-79,-92,-79,-180v0,-48,24,-83,79,-83v55,0,80,35,80,83xm104,-25v71,-2,49,-87,49,-151v0,-28,-13,-54,-49,-54v-71,0,-48,88,-48,151v0,28,12,54,48,54",w:208,k:{z:4,y:4,x:7,w:4,v:4,u:2,t:2,s:2,r:2,q:4,p:2,o:4,n:2,m:2,l:2,k:2,j:2,i:2,h:2,g:4,f:4,e:2,d:4,c:4,b:2,a:5,Y:9,X:13,W:7,T:18}},"\u00d7":{d:"144,-85r-21,20r-40,-40r-41,40r-20,-20r40,-41r-40,-41r20,-20r41,40r40,-40r21,20r-41,41",w:165},"\u00d8":{d:"184,-176v0,99,5,203,-108,176r-13,36r-31,0r18,-50v-37,-30,-21,-101,-25,-162v-3,-58,45,-96,108,-79r13,-37r30,0r-17,50v17,15,25,39,25,66xm85,-28v88,20,66,-79,68,-148v0,-10,-2,-21,-6,-30xm123,-227v-39,-13,-70,16,-67,51v4,43,-6,93,6,127",w:208,k:{X:13,W:7,V:5,T:18}},"\u00d9":{d:"147,-270r-85,-7r0,-27r85,7r0,27xm184,-79v0,48,-25,83,-80,83v-55,0,-79,-35,-79,-83r0,-177r31,0r0,177v0,28,12,54,48,54v36,0,49,-26,49,-54r0,-177r31,0r0,177",w:208},"\u00da":{d:"147,-277r-85,7r0,-27r85,-7r0,27xm184,-79v0,48,-25,83,-80,83v-55,0,-79,-35,-79,-83r0,-177r31,0r0,177v0,28,12,54,48,54v36,0,49,-26,49,-54r0,-177r31,0r0,177",w:208},"\u00db":{d:"160,-270r-56,-14r-55,14r0,-27r55,-18r56,18r0,27xm184,-79v0,48,-25,83,-80,83v-55,0,-79,-35,-79,-83r0,-177r31,0r0,177v0,28,12,54,48,54v36,0,49,-26,49,-54r0,-177r31,0r0,177",w:208},"\u00dc":{d:"150,-270r-30,0r0,-31r30,0r0,31xm89,-270r-30,0r0,-31r30,0r0,31xm184,-79v0,48,-25,83,-80,83v-55,0,-79,-35,-79,-83r0,-177r31,0r0,177v0,28,12,54,48,54v36,0,49,-26,49,-54r0,-177r31,0r0,177",w:208,k:{z:2,y:4,x:7,w:4,v:4,t:2,s:2,q:2,o:2,g:4,f:2,e:2,d:2,c:2,a:5}},"\u00dd":{d:"137,-277r-85,7r0,-27r85,-7r0,27xm185,-256r-75,168r0,88r-31,0r0,-88r-75,-168r34,0r57,132r56,-132r34,0",w:189,k:{y:22,w:22,v:22,t:14,q:32,o:32,g:32,e:31,c:32,a:32,C:11}},"\u00de":{d:"176,-131v0,63,-51,79,-120,73r0,58r-31,0r0,-256r31,0r0,51v69,-5,120,10,120,74xm146,-131v0,-44,-43,-48,-90,-45r0,90v47,3,90,-1,90,-45",w:198},"\u00df":{d:"176,-52v0,40,-19,56,-54,56v-31,0,-48,-5,-48,-5r0,-28v0,0,24,5,45,5v16,0,27,-7,27,-25v0,-41,-61,-26,-61,-79v0,-31,28,-46,28,-75v0,-18,-14,-27,-27,-27v-17,0,-30,10,-30,31r0,199r-31,0r0,-200v0,-37,24,-59,61,-59v33,0,58,19,58,56v0,36,-29,57,-29,71v0,28,61,21,61,80",w:198,k:{z:7,y:14,x:7,w:14,v:14,u:7,t:9,s:11,r:4,q:7,p:7,o:7,n:7,m:7,l:7,k:7,j:7,i:7,h:7,g:7,f:11,e:7,d:7,c:7,b:7,a:7,".":7,"-":18,",":7}},"\u00e0":{d:"126,-221r-85,-11r0,-27r85,11r0,27xm146,0r-31,0r0,-11v-32,28,-104,15,-97,-38v-4,-52,48,-59,97,-52v1,-30,0,-55,-32,-54v-23,0,-54,7,-54,7r0,-26v0,0,27,-10,57,-10v87,0,54,109,60,184xm115,-36r0,-41v0,0,-66,-5,-66,28v0,35,46,28,66,13",w:171,k:{y:7,x:4,w:7,v:7,t:2,o:2,g:4,f:2,e:2,d:2,c:4}},"\u00e1":{d:"126,-232r-85,11r0,-27r85,-11r0,27xm146,0r-31,0r0,-11v-32,28,-104,15,-97,-38v-4,-52,48,-59,97,-52v1,-30,0,-55,-32,-54v-23,0,-54,7,-54,7r0,-26v0,0,27,-10,57,-10v87,0,54,109,60,184xm115,-36r0,-41v0,0,-66,-5,-66,28v0,35,46,28,66,13",w:171,k:{y:7,x:4,w:7,v:7,t:2,o:2,g:4,f:2,e:2,d:2,c:4}},"\u00e2":{d:"140,-211r-56,-18r-56,18r0,-27r56,-21r56,21r0,27xm146,0r-31,0r0,-11v-32,28,-104,15,-97,-38v-4,-52,48,-59,97,-52v1,-30,0,-55,-32,-54v-23,0,-54,7,-54,7r0,-26v0,0,27,-10,57,-10v87,0,54,109,60,184xm115,-36r0,-41v0,0,-66,-5,-66,28v0,35,46,28,66,13",w:171,k:{y:7,x:4,w:7,v:7,t:2,o:2,g:4,f:2,e:2,d:2,c:4}},"\u00e3":{d:"140,-259v13,66,-80,11,-112,36v-13,-66,81,-11,112,-36xm146,0r-31,0r0,-11v-32,28,-104,15,-97,-38v-4,-52,48,-59,97,-52v1,-30,0,-55,-32,-54v-23,0,-54,7,-54,7r0,-26v0,0,27,-10,57,-10v87,0,54,109,60,184xm115,-36r0,-41v0,0,-66,-5,-66,28v0,35,46,28,66,13",w:171,k:{y:7,x:4,w:7,v:7,t:2,o:2,g:4,f:2,e:2,d:2,c:4}},"\u00e4":{d:"130,-225r-31,0r0,-31r31,0r0,31xm68,-225r-30,0r0,-31r30,0r0,31xm146,0r-31,0r0,-11v-32,28,-104,15,-97,-38v-4,-52,48,-59,97,-52v1,-30,0,-55,-32,-54v-23,0,-54,7,-54,7r0,-26v0,0,27,-10,57,-10v87,0,54,109,60,184xm115,-36r0,-41v0,0,-66,-5,-66,28v0,35,46,28,66,13",w:171,k:{y:7,x:4,w:7,v:7,t:2,s:2,q:2,o:2,g:4,f:2,e:2,d:2,c:4,a:5}},"\u00e5":{d:"127,-223v0,24,-16,36,-41,36v-25,0,-42,-12,-42,-36v0,-24,17,-36,42,-36v25,0,41,12,41,36xm146,0r-31,0r0,-11v-32,28,-104,15,-97,-38v-4,-52,48,-59,97,-52v1,-30,0,-55,-32,-54v-23,0,-54,7,-54,7r0,-26v0,0,27,-10,57,-10v87,0,54,109,60,184xm104,-223v0,-9,-5,-16,-18,-16v-13,0,-18,7,-18,16v0,9,5,16,18,16v13,0,18,-7,18,-16xm115,-36r0,-41v0,0,-66,-5,-66,28v0,35,46,28,66,13",w:171,k:{y:7,x:4,w:7,v:7,t:2,o:2,g:4,f:2,e:2,d:2,c:4}},"\u00e6":{d:"243,-79r-97,0v1,38,17,55,43,55v19,0,47,-7,47,-7r0,28v0,0,-26,7,-48,7v-24,0,-45,-8,-58,-27v-10,10,-31,27,-58,27v-35,0,-54,-20,-54,-53v0,-53,48,-59,97,-52v1,-30,0,-55,-32,-54v-23,0,-54,7,-54,7r0,-26v0,0,27,-10,57,-10v24,0,39,7,48,20v11,-13,26,-20,47,-20v56,0,65,48,62,105xm213,-103v1,-28,-4,-54,-32,-55v-29,0,-35,24,-35,55r67,0xm122,-40v-4,-10,-7,-22,-7,-37v0,0,-68,-5,-66,28v3,39,53,24,73,9",w:264,k:{y:5,x:5,w:5,v:5,t:2,p:2,o:2,m:2,g:2,f:4,e:2,d:2,c:2}},"\u00e7":{d:"126,-1r-41,5v0,3,-5,10,-1,10v12,0,29,3,29,27v0,35,-36,33,-54,27r0,-14v13,0,27,1,27,-13v0,-13,-14,-12,-27,-12r7,-28v-46,-10,-41,-65,-41,-120v0,-56,56,-75,101,-60r0,27v0,0,-22,-3,-36,-3v-46,-1,-32,53,-34,94v-9,37,46,39,70,33r0,27",w:140,k:{p:2,o:7,l:4,g:9,f:4,e:7,d:7,b:4}},"\u00e8":{d:"128,-221r-85,-11r0,-27r85,11r0,27xm149,-79r-97,0v1,38,17,55,43,55v19,0,47,-7,47,-7r0,28v0,0,-26,7,-48,7v-48,0,-72,-36,-72,-103v0,-53,19,-85,65,-85v56,0,65,48,62,105xm120,-103v1,-28,-4,-54,-32,-55v-29,0,-36,24,-36,55r68,0",w:171,k:{y:4,x:5,w:5,v:5,t:2,r:2,p:2,o:2,m:2,l:2,k:2,g:2,f:4,d:2,c:2,b:2}},"\u00e9":{d:"128,-232r-85,11r0,-27r85,-11r0,27xm149,-79r-97,0v1,38,17,55,43,55v19,0,47,-7,47,-7r0,28v0,0,-26,7,-48,7v-48,0,-72,-36,-72,-103v0,-53,19,-85,65,-85v56,0,65,48,62,105xm120,-103v1,-28,-4,-54,-32,-55v-29,0,-36,24,-36,55r68,0",w:171,k:{y:4,x:5,w:5,v:5,t:2,r:2,p:2,o:2,m:2,l:2,k:2,g:2,f:4,d:2,c:2,b:2}},"\u00ea":{d:"141,-211r-55,-18r-56,18r0,-27r56,-21r55,21r0,27xm149,-79r-97,0v1,38,17,55,43,55v19,0,47,-7,47,-7r0,28v0,0,-26,7,-48,7v-48,0,-72,-36,-72,-103v0,-53,19,-85,65,-85v56,0,65,48,62,105xm120,-103v1,-28,-4,-54,-32,-55v-29,0,-36,24,-36,55r68,0",w:171,k:{y:4,x:5,w:5,v:5,t:2,r:2,p:2,o:2,m:2,l:2,k:2,g:2,f:4,d:2,c:2,b:2}},"\u00eb":{d:"131,-225r-30,0r0,-31r30,0r0,31xm70,-225r-30,0r0,-31r30,0r0,31xm149,-79r-97,0v1,38,17,55,43,55v19,0,47,-7,47,-7r0,28v0,0,-26,7,-48,7v-48,0,-72,-36,-72,-103v0,-53,19,-85,65,-85v56,0,65,48,62,105xm120,-103v1,-28,-4,-54,-32,-55v-29,0,-36,24,-36,55r68,0",w:171,k:{y:4,x:5,w:5,v:5,t:2,r:2,p:2,o:2,m:2,l:2,k:2,g:2,f:4,d:2,c:2,b:2}},"\u00ec":{d:"83,-221r-85,-11r0,-27r85,11r0,27xm56,0r-31,0r0,-180r31,0r0,180",w:81,k:{y:4,w:4,o:2,g:4,d:2}},"\u00ed":{d:"83,-232r-85,11r0,-27r85,-11r0,27xm56,0r-31,0r0,-180r31,0r0,180",w:81,k:{y:4,w:4,o:2,g:4,d:2}},"\u00ee":{d:"96,-211r-55,-18r-56,18r0,-27r56,-21r55,21r0,27xm56,0r-31,0r0,-180r31,0r0,180",w:81,k:{y:4,w:4,o:2,g:4,d:2}},"\u00ef":{d:"79,-225r-30,0r0,-31r30,0r0,31xm32,-225r-30,0r0,-31r30,0r0,31xm56,0r-31,0r0,-180r31,0r0,180",w:81,k:{y:4,w:4,o:2,g:4,d:2}},"\u00f0":{d:"180,-212r-20,6v5,43,2,94,2,141v0,44,-25,69,-68,69v-67,0,-69,-57,-69,-126v0,-63,72,-78,106,-43r0,-32r-30,10r0,-25r21,-7v-6,-21,-70,-9,-82,-7r0,-27v0,0,31,-6,50,-6v27,0,50,8,62,30r28,-9r0,26xm94,-23v54,-1,33,-69,37,-118v-23,-19,-78,-26,-75,19v3,45,-11,99,38,99",w:187},"\u00f1":{d:"145,-259v13,66,-80,11,-112,36v-13,-66,81,-11,112,-36xm153,0r-31,0r0,-122v6,-40,-45,-36,-66,-19r0,141r-31,0r0,-180r31,0r0,13v10,-8,25,-17,46,-17v79,0,43,113,51,184",k:{y:7,x:4,w:7,v:7,o:2,g:4,f:4,d:2}},"\u00f2":{d:"130,-221r-85,-11r0,-27r85,11r0,27xm151,-119v0,65,1,123,-64,123v-64,0,-64,-58,-64,-123v0,-40,23,-65,64,-65v41,0,64,25,64,65xm87,-23v46,0,32,-54,34,-96v0,-21,-9,-38,-34,-38v-45,0,-33,55,-33,96v0,21,8,38,33,38",w:174,k:{y:7,x:7,w:7,v:7,t:4,r:2,p:2,o:4,m:2,l:2,k:2,g:4,f:5,d:4,c:4,b:2}},"\u00f3":{d:"130,-232r-85,11r0,-27r85,-11r0,27xm151,-119v0,65,1,123,-64,123v-64,0,-64,-58,-64,-123v0,-40,23,-65,64,-65v41,0,64,25,64,65xm87,-23v46,0,32,-54,34,-96v0,-21,-9,-38,-34,-38v-45,0,-33,55,-33,96v0,21,8,38,33,38",w:174,k:{y:7,x:7,w:7,v:7,t:4,r:2,p:2,o:4,m:2,l:2,k:2,g:4,f:5,d:4,c:4,b:2}},"\u00f4":{d:"143,-211r-56,-18r-55,18r0,-27r55,-21r56,21r0,27xm151,-119v0,65,1,123,-64,123v-64,0,-64,-58,-64,-123v0,-40,23,-65,64,-65v41,0,64,25,64,65xm87,-23v46,0,32,-54,34,-96v0,-21,-9,-38,-34,-38v-45,0,-33,55,-33,96v0,21,8,38,33,38",w:174,k:{y:7,x:7,w:7,v:7,t:4,r:2,p:2,o:4,m:2,l:2,k:2,g:4,f:5,d:4,c:4,b:2}},"\u00f5":{d:"143,-259v13,66,-79,11,-111,36v-13,-66,80,-11,111,-36xm151,-119v0,65,1,123,-64,123v-64,0,-64,-58,-64,-123v0,-40,23,-65,64,-65v41,0,64,25,64,65xm87,-23v46,0,32,-54,34,-96v0,-21,-9,-38,-34,-38v-45,0,-33,55,-33,96v0,21,8,38,33,38",w:174,k:{y:7,x:7,w:7,v:7,t:4,r:2,p:2,o:4,m:2,l:2,k:2,g:4,f:5,d:4,c:4,b:2}},"\u00f6":{d:"133,-225r-30,0r0,-31r30,0r0,31xm72,-225r-31,0r0,-31r31,0r0,31xm151,-119v0,65,1,123,-64,123v-64,0,-64,-58,-64,-123v0,-40,23,-65,64,-65v41,0,64,25,64,65xm87,-23v46,0,32,-54,34,-96v0,-21,-9,-38,-34,-38v-45,0,-33,55,-33,96v0,21,8,38,33,38",w:174,k:{z:7,y:7,x:7,w:7,v:7,u:2,t:4,s:2,r:2,q:4,p:2,o:4,n:2,m:2,l:2,k:2,j:2,i:2,h:2,g:4,f:5,e:2,d:4,c:4,b:2,a:5}},"\u00f7":{d:"106,-167r-32,0r0,-31r32,0r0,31xm158,-113r-136,0r0,-27r136,0r0,27xm106,-56r-32,0r0,-30r32,0r0,30",w:180},"\u00f8":{d:"151,-119v0,72,-6,136,-81,121r-12,34r-31,0r17,-46v-26,-19,-20,-66,-21,-109v-1,-46,34,-73,82,-63r12,-34r31,0r-17,46v13,11,20,29,20,51xm76,-25v60,14,47,-67,41,-114xm99,-155v-57,-17,-49,65,-41,114",w:174,k:{y:7,x:7,w:7,v:7,t:4,r:2,p:2,o:4,m:2,l:2,k:2,g:4,f:5,d:4,c:4,b:2}},"\u00f9":{d:"131,-221r-84,-11r0,-27r84,11r0,27xm153,0r-31,0r0,-12v-10,8,-25,16,-46,16v-79,0,-43,-113,-51,-184r31,0r0,122v-6,40,45,36,66,19r0,-141r31,0r0,180",k:{y:4,x:4,w:4,v:4,t:4,o:2,g:4,f:4,d:2}},"\u00fa":{d:"131,-232r-84,11r0,-27r84,-11r0,27xm153,0r-31,0r0,-12v-10,8,-25,16,-46,16v-79,0,-43,-113,-51,-184r31,0r0,122v-6,40,45,36,66,19r0,-141r31,0r0,180",k:{y:4,x:4,w:4,v:4,t:4,o:2,g:4,f:4,d:2}},"\u00fb":{d:"145,-211r-56,-18r-56,18r0,-27r56,-21r56,21r0,27xm153,0r-31,0r0,-12v-10,8,-25,16,-46,16v-79,0,-43,-113,-51,-184r31,0r0,122v-6,40,45,36,66,19r0,-141r31,0r0,180",k:{y:4,x:4,w:4,v:4,t:4,o:2,g:4,f:4,d:2}},"\u00fc":{d:"135,-225r-31,0r0,-31r31,0r0,31xm74,-225r-31,0r0,-31r31,0r0,31xm153,0r-31,0r0,-12v-10,8,-25,16,-46,16v-79,0,-43,-113,-51,-184r31,0r0,122v-6,40,45,36,66,19r0,-141r31,0r0,180",k:{y:4,x:4,w:4,v:4,t:4,s:2,q:2,o:2,g:4,f:4,e:2,d:2,c:2,a:5}},"\u00fd":{d:"123,-232r-84,11r0,-27r84,-11r0,27xm158,-180r-84,248r-33,0r24,-68r-61,-180r32,0r45,136r45,-136r32,0",w:162},"\u00fe":{d:"153,-122v0,64,5,127,-63,122v-7,0,-21,-2,-34,-3r0,71r-31,0r0,-324r31,0r0,85v38,-28,97,-8,97,49xm88,-27v49,2,30,-54,34,-95v4,-38,-41,-42,-66,-24r0,119r32,0"},"\u00ff":{d:"127,-225r-31,0r0,-31r31,0r0,31xm66,-225r-31,0r0,-31r31,0r0,31xm158,-180r-84,248r-33,0r24,-68r-61,-180r32,0r45,136r45,-136r32,0",w:162}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 2003 by Ole Schaefer, published by primetype GmbH, primetype.com for
 * the primetype library. All Rights Reserved.
 * 
 * Trademark:
 * Notes is a trademark of primetype GmbH
 * 
 * Description:
 * Postprocessing and mastering by Andreas Eigendorf for the primetype library.
 * Andreas Eigendorf is originator of this software. All Rights Reserved.
 * 
 * Manufacturer:
 * Ole Schaefer, published by primetype GmbH, primetype.com for the primetype
 * library
 * 
 * Designer:
 * Ole Schaefer
 * 
 * Vendor URL:
 * http://www.primetype.com
 * 
 * License information:
 * http://www.primetype.com/license.html
 */
Cufon.registerFont({w:189,face:{"font-family":"Notes-Bold","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 6 4 0 0 2 0 4",ascent:"288",descent:"-72","x-height":"4",bbox:"-19 -328 364 73.5653","underline-thickness":"18","underline-position":"-18",stemh:"27",stemv:"31","unicode-range":"U+0020-U+00FF"},glyphs:{" ":{w:100,k:{"\u00b7":4,y:4,x:4,v:4,t:4,o:2,f:4,a:4,Y:4,X:4,V:4,J:7,I:7}},"!":{d:"70,-85r-48,0r0,-171r48,0r0,171xm72,0r-52,0r0,-52r52,0r0,52",w:91},'"':{d:"137,-142r-49,0r0,-114r49,0r0,114xm67,-142r-49,0r0,-114r49,0r0,114",w:154},"#":{d:"223,-54r-27,0r0,54r-48,0r0,-54r-54,0r0,54r-49,0r0,-54r-27,0r0,-41r27,0r0,-65r-27,0r0,-42r27,0r0,-54r49,0r0,54r54,0r0,-54r48,0r0,54r27,0r0,42r-27,0r0,65r27,0r0,41xm148,-95r0,-65r-54,0r0,65r54,0",w:241},"$":{d:"173,-82v1,49,-14,76,-52,83r0,42r-49,0r0,-40v-27,-2,-54,-9,-54,-9r0,-45v0,0,47,10,68,10v30,0,39,-11,38,-37v-1,-27,-37,-30,-58,-38v-28,-11,-46,-29,-46,-72v0,-39,21,-60,52,-68r0,-43r49,0r0,41v25,2,48,7,48,7r0,44v0,0,-43,-7,-66,-7v-44,0,-45,44,-13,54v41,12,81,18,83,78",w:192},"%":{d:"364,-74v0,48,-26,78,-73,78v-47,0,-74,-30,-74,-78v0,-43,29,-70,74,-70v45,0,73,27,73,70xm281,-256r-124,256r-53,0r125,-256r52,0xm168,-189v0,48,-26,78,-73,78v-47,0,-73,-30,-73,-78v0,-43,28,-70,73,-70v45,0,73,27,73,70xm291,-38v22,0,25,-16,24,-38v0,-16,-6,-27,-24,-27v-22,0,-25,16,-25,38v0,16,7,27,25,27xm95,-153v22,0,25,-16,24,-37v0,-16,-6,-28,-24,-28v-22,0,-26,16,-25,38v0,16,7,27,25,27",w:385},"&":{d:"205,-112r-21,0r0,112v-81,2,-162,9,-162,-78v0,-28,13,-46,31,-56v-18,-10,-28,-29,-28,-59v0,-46,35,-66,79,-66v28,0,56,5,56,5r0,43v0,0,-34,-3,-56,-3v-22,1,-30,12,-30,30v0,27,31,29,61,27r0,-34r49,0r0,34r21,0r0,45xm135,-45r0,-67v-35,-3,-70,2,-65,35v-2,33,32,34,65,32",w:212},"'":{d:"67,-142r-49,0r0,-114r49,0r0,114",w:84},"(":{d:"113,47v-61,2,-91,-24,-91,-87r0,-176v0,-63,30,-88,91,-86r0,39v-30,-2,-42,10,-43,47r0,176v0,37,13,49,43,47r0,40",w:117,k:{y:7,w:2,v:7,u:2,t:4,s:4,q:4,o:4,j:-14,g:4,f:4,e:4,d:4,c:4,a:4,Q:4,O:4,J:4,G:4,C:7,"7":7,"1":7}},")":{d:"95,-40v0,63,-30,89,-91,87r0,-40v30,2,42,-10,43,-47r0,-176v0,-37,-13,-49,-43,-47r0,-39v61,-2,91,23,91,86r0,176",w:117},"*":{d:"175,-200r-45,28r36,39r-32,30r-37,-41r-38,41r-32,-30r36,-39r-45,-28r23,-37r34,21r0,-40r43,0r0,40r34,-21",w:192},"+":{d:"171,-104r-54,0r0,57r-45,0r0,-57r-54,0r0,-44r54,0r0,-57r45,0r0,57r54,0r0,44"},",":{d:"70,-52v4,49,-9,81,-19,117r-30,0r11,-65r-14,0r0,-52r52,0",w:88,k:{"9":14,"8":7,"7":22,"6":11,"5":4,"3":4,"1":22,"0":11}},"-":{d:"108,-104r-90,0r0,-44r90,0r0,44",w:126,k:{x:4,a:7,Z:7,Y:22,X:22,W:4,V:11,T:29,S:7,J:36,I:22,A:14,"8":4,"7":18,"4":11,"3":7,"2":11}},".":{d:"70,0r-52,0r0,-52r52,0r0,52",w:88,k:{z:-4,y:22,x:-4,w:14,v:22,u:4,t:7,q:7,o:7,g:7,f:11,e:7,d:7,c:7,Z:-4,Y:47,X:-7,W:22,V:32,U:7,T:43,Q:11,O:11,G:11,C:11,A:-7,"9":14,"8":7,"7":22,"6":11,"5":4,"3":4,"1":22,"0":11}},"/":{d:"139,-256r-74,256r-51,0r74,-256r51,0",w:153,k:{w:14,"9":11,"8":7,"6":7,"4":18,"3":11,"2":7,"1":7,"0":11,"/":29}},"0":{d:"176,-140v0,77,1,144,-77,144v-77,0,-77,-67,-77,-144v0,-53,24,-83,77,-83v53,0,77,30,77,83xm99,-41v41,0,29,-60,29,-98v0,-26,-7,-39,-29,-39v-41,0,-29,59,-29,97v0,26,7,40,29,40",w:198,k:{"9":4,"8":4,"7":11,"6":2,"5":2,"4":7,"3":11,"2":7,"1":4,"0":2,"/":4,".":11,",":11}},"1":{d:"113,0r-49,0r0,-169r-57,14r0,-47v31,-10,61,-22,106,-18r0,220",w:137,k:{"9":5,"8":4,"7":4,"6":2,"4":4,"3":7,"2":4,"1":7,"0":2}},"2":{d:"171,0r-149,0r0,-51v1,-48,33,-67,69,-73v39,-6,44,-56,-1,-54v-23,0,-68,7,-68,7r0,-44v0,0,38,-8,69,-8v57,0,80,23,80,76v0,72,-98,47,-101,102r101,0r0,45",k:{"9":4,"8":7,"7":7,"6":5,"5":4,"4":4,"3":7,"2":4,"1":4,"0":4}},"3":{d:"171,-45v0,62,-29,86,-84,85v-31,0,-69,-9,-69,-9r0,-44v0,0,45,8,68,8v32,0,36,-13,36,-41v0,-35,-48,-26,-82,-27r0,-45v37,0,75,6,75,-37v0,-16,-7,-23,-33,-23v-23,0,-64,7,-64,7r0,-44v0,0,36,-8,67,-8v52,-1,79,19,79,75v0,24,-11,39,-28,49v21,9,35,26,35,54",w:192,k:{"9":9,"8":7,"7":13,"6":7,"5":7,"4":4,"3":11,"2":4,"1":7,"0":5,"/":4}},"4":{d:"203,0r-32,0r0,50r-49,0r0,-50r-108,0r0,-45v36,-52,41,-99,39,-175r49,0v1,78,-1,133,-37,175r57,0r0,-97r49,0r0,97r32,0r0,45",w:217,k:{"9":14,"8":11,"7":25,"6":11,"5":11,"3":7,"2":4,"1":29,"0":11,"-":14}},"5":{d:"175,-59v0,69,-23,99,-85,99v-31,0,-68,-9,-68,-9r0,-44v0,0,44,8,67,8v39,0,38,-21,37,-53v-1,-43,-53,-18,-67,-5r-37,0r0,-157r153,0r0,45r-105,0r0,59v45,-24,105,-10,105,57",w:196,k:{"9":11,"8":5,"7":4,"6":4,"5":4,"4":4,"3":7,"2":4,"1":4,"0":5,"/":4,"-":11}},"6":{d:"176,-96v0,62,-17,100,-77,100v-50,0,-77,-27,-77,-76r0,-94v-8,-86,79,-104,144,-87r0,43v0,0,-38,-4,-53,-4v-38,-1,-46,24,-43,62v11,-6,25,-11,43,-11v46,0,63,26,63,67xm99,-41v30,0,30,-24,29,-52v0,-35,-38,-26,-58,-15v0,32,-5,67,29,67",w:198,k:{"9":7,"8":5,"7":18,"6":4,"5":4,"4":7,"3":14,"2":7,"1":18,"0":2,"/":7,".":11,",":11}},"7":{d:"167,-175v0,84,-64,88,-64,156r0,55r-48,0r0,-55v0,-88,64,-96,64,-156r-105,0r0,-45r153,0r0,45",w:181,k:{"9":2,"8":4,"4":7,"1":-4,"0":4,"/":7,".":29,",":29}},"8":{d:"184,-78v0,55,-30,82,-81,82v-51,0,-81,-27,-81,-82v0,-28,13,-46,31,-56v-18,-10,-28,-29,-28,-59v0,-46,34,-66,78,-66v47,0,77,22,77,74v0,26,-11,42,-27,51v18,10,31,28,31,56xm103,-157v22,0,29,-12,28,-30v0,-15,-7,-27,-28,-27v-22,0,-30,12,-29,30v0,15,8,27,29,27xm103,-41v23,0,32,-14,32,-38v0,-18,-8,-33,-32,-33v-26,1,-33,16,-33,39v0,20,12,32,33,32",w:205,k:{"9":7,"8":4,"7":7,"6":4,"5":4,"4":7,"3":11,"2":7,"1":7,"0":4,"/":7,".":7,"-":4,",":7}},"9":{d:"176,-50v0,66,-32,90,-86,90v-24,0,-54,-6,-54,-6r0,-44v0,0,37,5,52,5v38,1,42,-29,40,-66v-44,26,-116,2,-106,-57v-4,-60,18,-93,77,-95v93,-3,77,88,77,173xm128,-113v0,-32,5,-65,-29,-65v-28,0,-29,20,-29,47v0,35,36,27,58,18",w:198,k:{"9":4,"7":11,"6":2,"5":2,"3":7,"2":4,"1":4,"0":2,"/":4}},":":{d:"70,-128r-52,0r0,-52r52,0r0,52xm70,0r-52,0r0,-52r52,0r0,52",w:88},";":{d:"70,-128r-52,0r0,-52r52,0r0,52xm70,-52v4,49,-9,81,-19,117r-30,0r11,-65r-14,0r0,-52r52,0",w:88},"<":{d:"171,-36r-153,-68r0,-44r153,-68r0,49r-100,41r100,41r0,49"},"=":{d:"171,-148r-153,0r0,-43r153,0r0,43xm171,-61r-153,0r0,-43r153,0r0,43"},">":{d:"171,-104r-153,68r0,-49r100,-41r-100,-41r0,-49r153,68r0,44"},"?":{d:"146,-201v1,36,-13,52,-32,63v-16,10,-21,26,-19,53r-48,0v-3,-47,8,-73,34,-86v19,-9,27,-44,-10,-43v-20,0,-57,7,-57,7r0,-44v0,0,31,-8,62,-8v41,0,70,16,70,58xm97,0r-52,0r0,-52r52,0r0,52",w:163},"@":{d:"338,-115v0,77,-31,115,-83,115v-25,0,-40,-10,-49,-24v-37,36,-122,21,-106,-52v12,-55,17,-104,85,-104v35,0,77,14,77,14r-16,102v0,12,3,21,13,21v18,0,27,-34,27,-72v0,-54,-24,-97,-106,-97v-84,0,-106,55,-106,129v0,58,26,108,106,108r59,0r0,47v-139,11,-217,-35,-217,-169v0,-100,54,-162,158,-162v105,0,158,58,158,144xm208,-134v-28,-7,-51,-2,-53,24v-2,21,-20,61,11,63v10,0,21,-3,31,-8v1,-29,7,-53,11,-79",w:360},A:{d:"214,0r-52,0r-12,-43r-82,0r-12,43r-52,0r75,-256r60,0xm138,-88r-29,-104r-29,104r58,0",w:217,k:{"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":2,"\u00e5":2,"\u00e4":2,"\u00e3":2,"\u00e2":2,"\u00e0":2,"\u00bb":14,"\u00ab":14,y:7,x:-4,w:4,v:7,u:4,t:4,s:2,q:4,o:4,g:5,f:5,e:4,d:4,c:4,a:2,Y:18,X:-4,W:5,V:9,U:4,T:25,S:4,Q:5,O:5,G:4,C:4,A:-4,"?":14,";":-7,":":-7,".":-7,"-":14,",":-7,"!":-7}},B:{d:"198,-72v0,89,-94,71,-176,72r0,-256v80,0,169,-13,169,71v0,27,-12,44,-30,54v22,9,37,27,37,59xm142,-182v0,-37,-38,-29,-72,-30r0,61v34,0,72,4,72,-31xm149,-76v0,-42,-42,-30,-79,-32r0,65v37,-1,79,7,79,-33",w:216,k:{"\u00fc":2,"\u00f6":4,"\u00e4":2,"\u00dd":11,"\u00d8":2,"\u00d6":2,"\u00c6":7,"\u00c5":5,"\u00c4":5,"\u00c3":5,"\u00c2":5,"\u00c1":5,"\u00c0":5,"\u00bb":7,z:2,y:7,x:7,w:4,v:4,t:4,s:4,q:2,o:2,g:2,f:4,e:2,d:2,c:2,a:2,Z:4,Y:11,X:11,W:4,V:7,T:7,S:7,Q:4,O:4,J:11,I:11,G:2,C:2,A:5,"?":7,";":4,".":4,"-":4,",":4,")":4}},C:{d:"157,-1v0,0,-26,5,-47,5v-58,0,-88,-34,-88,-94r0,-76v-8,-79,66,-105,135,-88r0,44v0,0,-31,-3,-47,-3v-55,-1,-40,69,-40,119v0,30,9,52,42,52v16,0,45,-4,45,-4r0,45",w:171,k:{"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":9,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":9,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00d8":7,"\u00d6":7,"\u00bb":7,"\u00ab":22,y:14,x:4,w:7,v:14,u:4,t:4,s:2,q:7,o:9,g:7,f:4,e:9,d:7,c:7,a:4,T:-4,Q:7,O:7,G:7,C:7,"?":-4,";":-4,":":-4,".":-4,"-":18,",":-4}},D:{d:"198,-162v0,88,-3,162,-88,162r-88,0r0,-256r88,0v58,0,88,34,88,94xm110,-45v52,1,39,-64,39,-113v0,-30,-8,-53,-39,-53r-40,0r0,166r40,0",w:219,k:{"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":4,"\u00e5":4,"\u00e4":5,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00dd":11,"\u00c6":11,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"\u00bb":7,z:2,y:4,x:7,w:4,v:4,s:2,q:2,o:4,g:4,f:2,e:2,d:2,c:2,a:5,Z:4,Y:11,X:11,W:4,V:7,T:11,S:4,Q:2,O:2,J:14,I:14,A:7,"?":7,";":4,":":4,".":11,",":11,")":4}},E:{d:"167,0r-145,0r0,-256r145,0r0,45r-97,0r0,58r90,0r0,45r-90,0r0,63r97,0r0,45",w:181,k:{"\u00fc":2,"\u00f6":4,"\u00e4":4,"\u00bb":7,"\u00ab":7,y:4,w:4,v:4,u:2,s:2,q:5,o:7,g:5,f:4,e:7,d:5,c:7,a:4,U:2,S:2,Q:4,O:4,J:4,G:4,C:4,".":-4,",":-4}},F:{d:"167,-211r-97,0r0,58r90,0r0,45r-90,0r0,108r-48,0r0,-256r145,0r0,45",w:181,k:{"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f9":7,"\u00f8":9,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00f1":7,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":9,"\u00e6":18,"\u00e5":18,"\u00e4":14,"\u00e3":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00d8":4,"\u00d6":4,"\u00c6":25,"\u00c5":18,"\u00c4":18,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,"\u00bb":7,"\u00ab":7,z:4,y:4,x:7,v:4,u:7,s:7,r:4,q:9,p:7,o:9,n:7,m:7,l:4,j:4,i:4,g:9,e:9,d:7,c:9,a:18,Z:4,S:7,Q:7,O:7,J:36,I:4,G:4,C:4,A:18,";":4,":":4,".":50,",":50}},G:{d:"198,-16v0,0,-39,20,-88,20v-87,0,-88,-74,-88,-162v0,-64,32,-101,95,-101v41,0,74,13,74,13r0,43v0,0,-45,-11,-72,-11v-61,0,-48,64,-49,120v0,33,12,53,41,53v21,0,38,-7,38,-7r0,-53r-43,0r0,-45r92,0r0,130",w:219,k:{"\u00f6":2,"\u00e4":4,"\u00bb":7,y:4,x:5,v:4,t:2,s:4,q:2,o:2,g:2,f:4,e:2,d:2,c:2,a:4,Z:4,Y:11,X:7,W:4,V:7,T:7,S:4,J:4,I:7,A:4,"?":7,")":4}},H:{d:"198,0r-49,0r0,-108r-79,0r0,108r-48,0r0,-256r48,0r0,103r79,0r0,-103r49,0r0,256",w:219,k:{"\u00f6":2,"\u00e4":4,"\u00bb":7,y:4,x:4,w:2,v:4,s:4,q:2,o:2,g:4,f:2,e:2,d:2,c:2,a:4,J:4}},I:{d:"149,0r-138,0r0,-32r45,0r0,-191r-45,0r0,-33r138,0r0,33r-45,0r0,191r45,0r0,32",w:160,k:{"\u00fc":5,"\u00f6":16,"\u00e4":9,"\u00bb":22,"\u00ab":22,y:22,w:14,v:22,u:5,t:11,s:4,r:4,q:14,p:4,o:16,n:4,m:4,l:4,k:4,j:4,i:4,h:4,g:16,f:11,e:16,d:14,c:14,b:4,a:9,X:-4,T:-4,S:4,Q:11,O:11,G:11,C:11,"-":22," ":7}},J:{d:"113,-79v1,62,-34,84,-99,79r0,-43v34,2,51,-6,51,-40r0,-173r48,0r0,177",w:135,k:{"\u00fc":2,"\u00f6":2,"\u00e4":5,"\u00bb":7,y:4,x:5,w:2,v:4,u:2,s:4,q:2,o:2,g:4,f:2,e:2,d:2,c:2,a:5,Y:4,X:4,S:2,J:11,I:4,A:7,";":4,":":4,".":7,",":4,")":4}},K:{d:"198,0r-54,0r-73,-133r69,-123r54,0r-69,123xm70,0r-48,0r0,-256r48,0r0,256",w:198,k:{"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":9,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":9,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00d8":11,"\u00d6":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00bb":22,"\u00ab":22,y:9,w:5,v:9,u:4,t:4,s:2,q:7,o:9,j:4,i:4,g:9,f:4,e:9,d:7,c:9,a:4,U:4,S:4,Q:11,O:11,G:11,C:11,"?":4,";":-4,":":-4,".":-7,"-":18,",":-4,"!":-7," ":4}},L:{d:"167,0r-145,0r0,-256r48,0r0,211r97,0r0,45",w:181,k:{"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":9,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00f1":4,"\u00ef":4,"\u00ee":4,"\u00ed":4,"\u00ec":4,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":7,"\u00e4":7,"\u00bb":22,"\u00ab":29,y:25,x:4,w:14,v:25,u:4,t:11,s:4,r:4,q:7,p:4,o:9,n:4,m:4,l:4,k:4,j:4,i:4,h:4,g:9,f:7,e:9,d:7,c:7,b:4,a:7,Y:43,W:22,V:29,U:11,T:43,Q:11,O:11,G:11,C:11,"?":18,".":-4,"-":18,",":-4," ":4}},M:{d:"254,0r-49,0r0,-154r-43,111r-49,0r-43,-111r0,154r-48,0r0,-256r52,0r64,158r64,-158r52,0r0,256",w:275,k:{"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00bb":7,y:4,x:4,w:2,v:4,s:4,q:2,o:2,g:2,e:2,d:2,c:2,a:4,J:4}},N:{d:"198,0r-49,0r-79,-153r0,153r-48,0r0,-256r48,0r79,153r0,-153r49,0r0,256",w:219,k:{"\u00f6":2,"\u00e4":4,"\u00bb":7,y:4,x:4,w:2,v:4,s:4,q:2,o:2,g:2,f:2,e:2,d:2,c:2,a:4,J:4}},O:{d:"198,-90v0,60,-30,94,-88,94v-58,0,-88,-34,-88,-94r0,-76v0,-60,30,-93,88,-93v58,0,88,33,88,93r0,76xm110,-41v54,0,39,-71,39,-121v0,-30,-8,-52,-39,-52v-55,-1,-40,69,-40,120v0,30,9,53,40,53",w:219,k:{"\u00fc":2,"\u00f6":2,"\u00e4":5,"\u00bb":7,z:2,y:4,x:7,w:2,v:4,s:4,q:2,o:2,g:2,f:4,e:2,d:2,c:2,a:5,Z:7,Y:11,X:11,W:4,V:7,T:11,S:4,J:14,I:11,A:5,"?":7,";":4,":":4,".":11,",":11,")":4}},P:{d:"191,-178v0,71,-51,81,-121,77r0,101r-48,0r0,-256v84,0,169,-13,169,78xm142,-178v0,-38,-36,-35,-72,-34r0,68v36,1,72,4,72,-34",w:208,k:{"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f9":7,"\u00f8":16,"\u00f6":16,"\u00f5":16,"\u00f4":16,"\u00f3":16,"\u00f2":16,"\u00f1":4,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u00e7":16,"\u00e5":18,"\u00e4":18,"\u00e3":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00dd":7,"\u00d8":4,"\u00c6":29,"\u00c5":18,"\u00c4":18,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,"\u00bb":11,"\u00ab":7,z:4,y:4,x:7,w:4,v:7,u:7,s:11,r:7,q:14,p:7,o:16,n:7,m:7,j:4,i:4,h:4,g:16,e:20,d:14,c:16,a:18,Z:11,Y:7,X:11,W:4,V:4,T:7,S:4,Q:4,O:4,J:36,I:11,G:4,C:4,A:18,"?":7,";":4,":":4,".":58,"-":4,",":58,")":7}},Q:{d:"198,-166v0,79,3,159,-65,167v-8,31,30,27,47,23r0,44v0,0,-21,4,-42,4v-37,1,-55,-26,-53,-71v-66,-10,-63,-88,-63,-167v0,-60,30,-93,88,-93v58,0,88,33,88,93xm110,-41v54,0,39,-71,39,-121v0,-30,-8,-52,-39,-52v-55,-1,-40,69,-40,120v0,30,9,53,40,53",w:219,k:{"\u00fc":2,"\u00f6":2,"\u00e4":5,"\u00bb":7,Z:7,Y:11,X:9,W:4,V:7,T:11,S:4,J:14,I:11,A:5,"?":7,";":4,":":4,".":11,",":11,")":4}},R:{d:"202,0r-54,0r-60,-101r-18,0r0,101r-48,0r0,-256v84,-1,169,-12,169,78v0,42,-20,66,-52,74xm142,-178v0,-39,-36,-34,-72,-34r0,68v36,0,72,5,72,-34",w:208,k:{"\u00fc":4,"\u00f6":13,"\u00e4":11,"\u00bb":11,"\u00ab":7,y:5,w:2,v:5,u:4,s:5,r:4,q:11,p:4,o:13,n:4,m:4,j:4,i:4,g:11,f:4,e:11,d:11,c:11,b:4,a:11,Y:4,W:4,V:4,U:4,T:7,S:4,Q:4,O:4,J:7,I:4,G:4,C:4,"?":4,"-":7}},S:{d:"173,-82v2,62,-25,87,-84,86v-31,0,-71,-10,-71,-10r0,-45v0,0,47,10,68,10v30,0,39,-11,38,-37v-1,-27,-37,-30,-58,-38v-28,-11,-46,-29,-46,-72v0,-51,37,-71,82,-71v31,0,67,8,67,8r0,44v0,0,-43,-7,-66,-7v-44,0,-45,44,-13,54v41,12,81,18,83,78",w:192,k:{"\u00fc":2,"\u00fb":2,"\u00fa":2,"\u00f9":2,"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00f1":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00bb":4,z:2,y:7,x:7,w:2,v:7,u:2,t:4,s:4,q:2,o:2,g:2,f:4,e:2,d:2,c:2,a:4,Z:4,Y:4,X:4,W:4,V:4,T:4,S:4,J:7,I:4,G:4,C:4,A:4,"?":4,":":4,")":4}},T:{d:"187,-211r-64,0r0,211r-48,0r0,-211r-64,0r0,-45r176,0r0,45",w:198,k:{"\u00fc":11,"\u00fb":14,"\u00fa":29,"\u00f9":29,"\u00f8":50,"\u00f6":11,"\u00f5":11,"\u00f4":14,"\u00f3":29,"\u00f2":29,"\u00f1":22,"\u00eb":14,"\u00ea":14,"\u00e9":29,"\u00e8":29,"\u00e7":50,"\u00e6":50,"\u00e5":29,"\u00e4":11,"\u00e3":11,"\u00e2":22,"\u00e1":29,"\u00e0":29,"\u00d8":11,"\u00d6":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c6":36,"\u00c5":25,"\u00c4":25,"\u00c3":25,"\u00c2":25,"\u00c1":25,"\u00c0":25,"\u00bb":36,"\u00ab":29,z:47,y:52,x:50,w:50,v:50,u:50,t:7,s:50,r:50,q:50,p:50,o:50,n:50,m:50,l:4,k:4,j:4,i:4,h:4,g:50,f:7,e:50,d:50,c:50,b:4,a:50,Y:-4,X:-4,W:-4,V:-4,T:-4,S:7,Q:11,O:11,J:36,I:-4,G:11,C:11,A:25,"?":-4,";":36,":":36,".":43,"-":29,",":43}},U:{d:"198,-94v0,69,-32,98,-88,98v-56,0,-88,-29,-88,-98r0,-162r48,0r0,162v0,30,9,53,40,53v31,0,39,-23,39,-53r0,-162r49,0r0,162",w:219,k:{"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00bb":7,y:4,x:7,w:2,v:4,s:4,q:2,o:2,g:2,f:2,e:2,d:2,c:2,a:5,X:2,J:14,A:4,".":7,",":7}},V:{d:"205,-256r-70,256r-61,0r-70,-256r52,0r48,187r49,-187r52,0",w:208,k:{"\u00fc":11,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":22,"\u00f6":11,"\u00f5":11,"\u00f4":14,"\u00f3":22,"\u00f2":22,"\u00f1":14,"\u00eb":14,"\u00ea":14,"\u00e9":22,"\u00e8":22,"\u00e7":22,"\u00e6":25,"\u00e5":25,"\u00e4":11,"\u00e3":11,"\u00e2":14,"\u00e1":22,"\u00e0":22,"\u00d8":7,"\u00c6":18,"\u00c5":9,"\u00c4":9,"\u00c3":9,"\u00c2":9,"\u00c1":9,"\u00c0":9,"\u00bb":11,"\u00ab":11,z:14,y:14,x:14,w:14,v:14,u:14,t:7,s:18,r:14,q:22,p:14,o:22,n:14,m:14,l:4,k:4,j:4,i:4,h:4,g:22,f:7,e:22,d:22,c:22,b:4,a:25,Y:-4,X:-4,W:-4,V:-4,T:-4,Q:7,O:7,J:36,G:7,C:7,A:9,"?":-4,";":11,":":14,".":32,"-":11,",":32," ":4}},W:{d:"329,-256r-54,256r-61,0r-46,-168r-46,168r-61,0r-54,-256r52,0r37,187r46,-187r52,0r46,187r37,-187r52,0",w:336,k:{"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":18,"\u00f6":11,"\u00f5":14,"\u00f4":14,"\u00f3":18,"\u00f2":18,"\u00f1":11,"\u00eb":14,"\u00ea":14,"\u00e9":18,"\u00e8":18,"\u00e7":18,"\u00e6":22,"\u00e5":22,"\u00e4":11,"\u00e3":14,"\u00e2":14,"\u00e1":22,"\u00e0":22,"\u00d8":4,"\u00d6":4,"\u00c6":14,"\u00c5":5,"\u00c4":5,"\u00c3":5,"\u00c2":5,"\u00c1":5,"\u00c0":5,"\u00bb":11,"\u00ab":11,z:11,y:11,x:11,w:11,v:11,u:11,t:4,s:14,r:11,q:18,p:11,o:18,n:11,m:11,j:4,i:4,g:18,f:7,e:18,d:18,c:18,a:22,T:-4,Q:4,O:4,J:29,G:4,C:4,A:5,"?":-4,";":11,":":7,".":22,"-":4,",":22}},X:{d:"212,0r-57,0r-49,-90r-48,90r-58,0r72,-131r-68,-125r57,0r45,84r45,-84r58,0r-69,125",w:212,k:{"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00d8":11,"\u00d6":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00bb":14,"\u00ab":22,y:7,w:4,v:7,u:4,t:11,s:4,q:9,o:11,g:11,f:7,e:11,d:9,c:11,a:7,X:-4,V:-4,U:2,T:-4,Q:9,O:11,I:-4,G:7,C:7,A:-4,";":-7,":":-4,".":-7,"-":22,",":-11," ":4}},Y:{d:"203,-256r-75,175r0,81r-49,0r0,-81r-75,-175r54,0r46,117r45,-117r54,0",w:207,k:{"\u00fc":11,"\u00fb":14,"\u00fa":22,"\u00f9":22,"\u00f8":36,"\u00f6":22,"\u00f5":14,"\u00f4":14,"\u00f3":29,"\u00f2":29,"\u00eb":11,"\u00ea":14,"\u00e9":29,"\u00e8":29,"\u00e7":36,"\u00e6":43,"\u00e5":29,"\u00e4":14,"\u00e3":14,"\u00e2":22,"\u00e1":29,"\u00e0":29,"\u00d6":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c5":18,"\u00c4":18,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,"\u00bb":22,"\u00ab":22,z:29,y:22,x:22,w:22,v:22,u:29,t:11,s:32,r:29,q:36,p:29,o:36,n:29,m:29,l:7,k:7,j:7,i:7,h:7,g:36,f:11,e:36,d:36,c:36,b:7,a:43,V:-4,T:-4,S:7,Q:11,O:11,J:36,G:11,C:11,A:18,"?":-4,";":29,":":29,".":47,"-":22,",":47," ":4}},Z:{d:"160,0r-146,0r0,-45r88,-166r-88,0r0,-45r146,0r0,45r-87,166r87,0r0,45",w:174,k:{"\u00fc":5,"\u00fb":5,"\u00fa":5,"\u00f9":5,"\u00f8":13,"\u00f6":13,"\u00f5":13,"\u00f4":13,"\u00f3":13,"\u00f2":13,"\u00eb":13,"\u00ea":13,"\u00e9":13,"\u00e8":13,"\u00e7":13,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00bb":7,"\u00ab":7,y:14,w:7,v:14,u:5,t:7,s:4,q:11,o:13,g:11,f:7,e:13,d:11,c:11,a:7,Q:7,O:7,G:7,C:7,"?":-4,".":-4,"-":7,",":-4}},"[":{d:"113,47r-91,0r0,-349r91,0r0,39r-43,0r0,270r43,0r0,40",w:117,k:{"7":7,"1":7}},"\\":{d:"139,0r-51,0r-74,-256r51,0",w:153},"]":{d:"95,47r-91,0r0,-40r43,0r0,-270r-43,0r0,-39r91,0r0,349",w:117},"^":{d:"198,-144r-49,0r-41,-66r-41,66r-49,0r68,-112r44,0",w:216},_:{d:"184,68r-184,0r0,-43r184,0r0,43",w:183},"`":{d:"124,-205r-102,-11r0,-43r102,11r0,43",w:145},a:{d:"162,0r-45,0r0,-9v-37,24,-101,16,-101,-43v0,-49,47,-62,97,-54v1,-22,-4,-34,-26,-33v-21,0,-56,8,-56,8r0,-43v0,0,33,-10,64,-10v98,0,59,104,67,184xm113,-44r0,-29v-22,-1,-48,-2,-48,19v0,24,32,20,48,10",w:183,k:{"\u00fc":2,"\u00f6":2,"\u00e4":4,y:7,x:4,w:2,v:5,u:2,t:4,s:4,o:2,g:4,f:4,e:2,d:2,c:2,a:4,"?":14}},b:{d:"167,-119v0,67,-1,119,-70,119r-75,0r0,-256r48,0r0,83v42,-26,97,-2,97,54xm93,-41v35,1,24,-40,26,-72v2,-29,-27,-32,-49,-21r0,93r23,0",k:{"\u00fc":2,"\u00fb":2,"\u00fa":2,"\u00f9":2,"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00f1":2,"\u00ef":2,"\u00ee":2,"\u00ed":2,"\u00ec":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00bb":7,z:4,y:7,x:7,w:2,v:5,u:2,t:4,s:4,r:2,q:2,p:2,o:2,n:2,m:2,l:2,k:2,j:2,i:2,h:2,g:4,f:4,e:2,d:2,c:2,b:2,a:7,"?":14,";":4,":":4,".":7,",":4,")":4}},c:{d:"133,-1v0,0,-21,5,-38,5v-63,3,-79,-48,-73,-116v-7,-65,61,-81,111,-67r0,41v0,0,-21,-2,-35,-2v-38,-1,-28,38,-28,70v0,19,6,30,28,30v14,0,35,-2,35,-2r0,41",w:144,k:{"\u00fc":2,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":5,"\u00ea":5,"\u00e9":5,"\u00e8":5,"\u00e7":5,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00bb":4,"\u00ab":4,z:-4,u:2,t:-4,s:2,q:4,o:4,g:5,f:-4,e:5,d:4,c:5,a:4,"?":7,";":-4,".":-4,",":-4,")":-4}},d:{d:"167,0r-45,0r0,-9v-42,29,-100,6,-100,-52v0,-62,-5,-125,59,-123v14,0,27,4,38,9r0,-81r48,0r0,256xm119,-46r0,-90v-23,-8,-51,-5,-49,23v2,30,-10,74,24,73v8,0,16,-2,25,-6",k:{"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00bb":7,y:2,x:2,v:2,s:4,q:2,o:2,g:4,f:4,e:2,d:2,c:2,a:5,"?":7}},e:{d:"166,-70r-97,0v3,20,13,29,35,29v19,0,54,-5,54,-5r0,43v0,0,-30,7,-56,7v-54,2,-82,-33,-82,-103v0,-51,26,-85,75,-85v64,0,75,50,71,114xm121,-105v1,-23,-5,-38,-26,-38v-21,0,-27,14,-27,38r53,0",w:185,k:{"\u00fc":2,"\u00f6":2,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00df":2,"\u00bb":7,z:4,y:5,x:9,w:4,v:5,u:2,t:4,s:4,r:2,q:2,p:2,o:2,n:2,m:2,l:2,k:2,j:2,i:2,h:2,g:4,f:2,e:2,d:2,c:2,b:2,a:5,"?":14,";":4,":":4,".":7,",":4,")":4}},f:{d:"113,-213v-12,0,-38,-6,-36,15r0,18r29,0r0,41r-29,0r0,139r-48,0r0,-139r-25,0r0,-41r25,0v-9,-66,34,-90,84,-76r0,43",w:109,k:{"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":7,"\u00f6":4,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":4,"\u00eb":5,"\u00ea":5,"\u00e9":5,"\u00e8":5,"\u00e7":7,"\u00e6":11,"\u00e5":11,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":11,"\u00e0":11,"\u00bb":4,"\u00ab":4,u:4,t:7,s:4,r:4,q:7,p:4,o:7,n:4,m:4,g:7,f:7,e:7,d:7,c:7,a:11,"?":-7,".":14,",":11,")":-4," ":4}},g:{d:"167,-5v0,59,-21,77,-71,77v-33,0,-67,-8,-67,-8r0,-44v0,0,38,7,59,7v28,1,32,-14,31,-41v-43,25,-97,2,-97,-54v0,-66,2,-117,70,-116v36,0,75,11,75,11r0,168xm119,-53r0,-85v-27,-5,-51,-2,-49,25v1,29,-8,68,24,66v8,0,16,-2,25,-6",k:{"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00bb":7,y:4,x:4,v:4,s:4,q:2,o:2,g:4,f:4,e:2,d:2,c:2,a:4,"?":14}},h:{d:"167,0r-48,0r0,-115v3,-29,-31,-27,-49,-16r0,131r-48,0r0,-256r48,0r0,86v11,-7,25,-14,43,-14v83,0,46,111,54,184",k:{"\u00fc":2,"\u00f6":2,"\u00e4":4,"\u00bb":7,y:7,x:4,w:2,v:7,u:2,t:4,s:4,q:2,o:2,g:4,f:4,e:2,d:2,c:2,a:4,"?":14}},i:{d:"70,-207r-48,0r0,-49r48,0r0,49xm70,0r-48,0r0,-180r48,0r0,180",w:91,k:{"\u00f6":2,"\u00e4":4,"\u00bb":7,y:2,x:2,v:2,s:4,q:2,o:2,g:4,f:4,e:2,d:2,c:2,a:5}},j:{d:"70,-207r-48,0r0,-49r48,0r0,49xm70,23v7,51,-44,52,-77,47r0,-42v7,1,33,4,29,-13r0,-195r48,0r0,203",w:91,k:{"\u00f6":2,"\u00e4":5,"\u00bb":7,y:2,v:2,s:4,q:2,o:2,g:4,f:4,e:2,d:2,c:2,a:5}},k:{d:"167,0r-52,0r-44,-101r41,-79r52,0r-41,78xm70,0r-48,0r0,-256r48,0r0,256",w:167,k:{"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":5,"\u00f6":5,"\u00f5":5,"\u00f4":5,"\u00f3":5,"\u00f2":5,"\u00eb":5,"\u00ea":5,"\u00e9":5,"\u00e8":5,"\u00e7":5,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00bb":4,"\u00ab":7,z:-2,x:-4,u:4,s:4,q:5,o:5,n:2,g:5,e:5,d:4,c:5,a:4,"?":7,".":-4,"-":7,",":-4,")":-4," ":4}},l:{d:"70,0r-48,0r0,-256r48,0r0,256",w:91,k:{"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":5,"\u00e5":5,"\u00e4":5,"\u00e3":5,"\u00e2":5,"\u00e1":5,"\u00e0":5,"\u00bb":7,y:2,x:2,v:2,s:4,q:2,o:2,g:4,f:4,e:2,d:2,c:2,a:5,"?":7}},m:{d:"265,0r-49,0r0,-115v3,-30,-31,-28,-49,-15r0,130r-48,0r0,-115v3,-29,-31,-27,-49,-16r0,131r-48,0r0,-180r45,0r0,12v19,-20,78,-23,91,5v11,-9,29,-21,53,-21v83,0,46,111,54,184",w:286,k:{"\u00fc":2,"\u00fb":2,"\u00fa":2,"\u00f9":2,"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00bb":7,y:7,x:4,w:2,v:7,u:2,t:4,s:4,q:2,o:2,g:4,f:4,e:2,d:2,c:2,a:4,"?":14}},n:{d:"167,0r-48,0r0,-115v3,-29,-31,-27,-49,-16r0,131r-48,0r0,-180r45,0r0,12v11,-8,26,-16,46,-16v83,0,46,111,54,184",k:{"\u00f6":2,"\u00e4":4,"\u00bb":7,y:7,x:4,w:2,v:7,u:2,t:4,s:4,q:2,o:2,g:4,f:4,e:2,d:2,c:2,a:4,"?":14}},o:{d:"168,-112v0,68,-9,116,-73,116v-64,0,-73,-48,-73,-116v0,-49,27,-72,73,-72v46,0,73,23,73,72xm95,-39v35,0,24,-43,24,-74v0,-16,-5,-28,-24,-28v-36,0,-25,42,-25,73v0,16,6,29,25,29",k:{"\u00fc":2,"\u00fb":2,"\u00fa":2,"\u00f9":2,"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00f1":2,"\u00ef":2,"\u00ee":2,"\u00ed":2,"\u00ec":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00df":2,"\u00bb":7,z:4,y:5,x:11,w:4,v:5,u:2,t:4,s:4,r:2,q:2,p:2,o:2,n:2,m:2,l:2,k:2,j:2,i:2,h:2,g:4,f:7,e:2,d:2,c:2,b:2,a:7,"?":14,";":4,":":4,".":7,",":7,")":4," ":2}},p:{d:"167,-119v0,67,-1,120,-70,119v-6,0,-17,-2,-27,-3r0,71r-48,0r0,-248r45,0r0,9v42,-29,100,-6,100,52xm93,-41v35,1,24,-40,26,-72v2,-29,-27,-32,-49,-21r0,93r23,0",k:{"\u00fc":2,"\u00fb":2,"\u00fa":2,"\u00f9":2,"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00df":2,"\u00bb":7,z:4,y:5,x:7,w:2,v:5,u:2,t:4,s:4,r:2,q:2,p:2,o:2,n:2,m:2,l:2,k:2,j:2,i:2,h:2,g:4,f:4,e:2,d:2,c:2,b:2,a:7,"?":14,";":4,":":4,".":7,",":7,")":4}},q:{d:"167,68r-48,0r0,-75v-42,26,-97,2,-97,-54v0,-68,-1,-124,70,-123v36,0,75,11,75,11r0,241xm119,-46r0,-92v-27,-5,-51,-2,-49,25v2,30,-10,74,24,73v8,0,16,-2,25,-6",k:{"\u00f6":2,"\u00e4":5,"\u00bb":7,y:4,x:2,v:4,s:4,q:2,o:2,g:4,f:4,e:2,d:2,c:2,a:5,"?":14}},r:{d:"113,-127v-18,-4,-35,6,-43,20r0,107r-48,0r0,-180r45,0r0,21v4,-17,26,-30,46,-23r0,55",w:118,k:{"\u00f8":5,"\u00f6":5,"\u00f5":5,"\u00f4":5,"\u00f3":5,"\u00f2":5,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":5,"\u00e6":13,"\u00e5":13,"\u00e4":13,"\u00e3":13,"\u00e2":13,"\u00e1":13,"\u00e0":13,"\u00bb":4,y:-4,x:-2,w:-4,v:-4,t:-5,s:4,q:7,o:5,g:7,f:-4,e:7,d:7,c:7,a:13,"?":7,".":22,",":22,")":4," ":2}},s:{d:"157,-58v0,47,-26,62,-72,62v-34,0,-69,-11,-69,-11r0,-42v2,0,92,23,92,-4v0,-12,-23,-12,-36,-15v-22,-3,-54,-11,-54,-55v0,-43,30,-61,71,-61v31,0,60,8,60,8r0,42v0,0,-34,-6,-57,-6v-19,0,-25,3,-25,12v0,14,23,11,36,14v24,4,54,14,54,56",w:174,k:{"\u00fc":4,"\u00f6":4,"\u00e4":4,"\u00df":4,"\u00bb":7,"\u00ab":4,z:4,y:5,x:7,w:4,v:5,u:4,t:4,s:5,r:4,q:4,p:4,o:4,n:4,m:4,l:4,k:4,j:4,i:4,h:4,g:4,f:5,e:5,d:4,c:5,b:4,a:4,"?":14,";":2,":":2,"-":4,")":4}},t:{d:"124,0v0,0,-21,4,-42,4v-65,0,-53,-80,-53,-143r-25,0r0,-41r25,0r0,-47r48,0r0,47r47,0r0,41r-47,0v5,33,-15,95,19,98v9,0,28,-3,28,-3r0,44",w:127,k:{"\u00fc":2,"\u00fb":2,"\u00fa":2,"\u00f9":2,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":2,"\u00e5":2,"\u00e4":2,"\u00e3":2,"\u00e2":2,"\u00e1":2,"\u00e0":2,"\u00bb":4,"\u00ab":4,z:-2,x:-4,v:-2,u:2,t:7,q:2,o:4,g:4,f:7,e:4,d:2,c:2,a:2,"?":7,";":-4,":":-4,".":-4,",":-4,")":-4,"!":-4," ":4}},u:{d:"167,0r-45,0r0,-12v-11,8,-26,16,-46,16v-83,0,-46,-111,-54,-184r48,0r0,115v-3,29,31,27,49,16r0,-131r48,0r0,180",k:{"\u00f6":2,"\u00e4":4,"\u00bb":7,y:2,x:2,v:2,t:4,s:4,q:2,o:2,g:4,f:4,e:2,d:2,c:2,a:4,"?":14}},v:{d:"176,-180r-54,180r-64,0r-54,-180r52,0r34,122r34,-122r52,0",w:180,k:{"\u00fc":2,"\u00fb":2,"\u00fa":2,"\u00f9":2,"\u00f8":5,"\u00f6":5,"\u00f5":5,"\u00f4":5,"\u00f3":5,"\u00f2":5,"\u00eb":5,"\u00ea":5,"\u00e9":5,"\u00e8":5,"\u00e7":5,"\u00e6":9,"\u00e5":9,"\u00e4":9,"\u00e3":9,"\u00e2":9,"\u00e1":9,"\u00e0":9,"\u00df":2,u:2,t:-2,s:4,r:2,q:5,p:2,o:5,n:2,m:2,l:2,k:2,j:2,i:2,h:2,g:5,e:5,d:5,c:5,b:2,a:9,"?":7,".":22,",":22,")":7," ":4}},w:{d:"272,-180r-40,180r-65,0r-27,-100r-28,100r-65,0r-40,-180r52,0r24,122r30,-122r53,0r30,122r24,-122r52,0",w:279,k:{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,t:-2,s:2,q:4,o:4,g:4,e:4,d:4,c:2,a:7,"?":7,".":14,",":14,")":2}},x:{d:"173,0r-57,0r-30,-55r-29,55r-57,0r53,-93r-49,-87r56,0r26,49r26,-49r57,0r-49,87",w:172,k:{"\u00fc":2,"\u00fb":2,"\u00fa":2,"\u00f9":2,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e7":9,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00df":4,"\u00ab":4,u:2,t:-2,s:4,q:7,o:11,l:2,k:2,i:2,g:7,e:9,d:7,c:7,a:4,"?":7,".":-4,"-":4,",":-4," ":4}},y:{d:"176,-180r-84,248r-52,0r22,-65r-58,-183r52,0r32,106r36,-106r52,0",w:180,k:{"\u00fc":2,"\u00fb":2,"\u00fa":2,"\u00f9":2,"\u00f8":5,"\u00f6":5,"\u00f5":5,"\u00f4":5,"\u00f3":5,"\u00f2":5,"\u00eb":5,"\u00ea":5,"\u00e9":5,"\u00e8":5,"\u00e7":5,"\u00e6":9,"\u00e5":9,"\u00e4":9,"\u00e3":9,"\u00e2":9,"\u00e1":9,"\u00e0":9,"\u00df":2,u:2,t:-2,s:4,r:2,q:5,p:2,o:5,n:2,m:2,l:2,k:2,j:2,i:2,h:2,g:5,e:5,d:5,c:5,b:2,a:9,"?":7,".":22,",":22,")":7," ":4}},z:{d:"153,0r-139,0r0,-43r68,-94r-68,0r0,-43r139,0r0,43r-68,94r68,0r0,43",w:167,k:{"\u00fc":2,"\u00f6":4,"\u00e4":2,"\u00bb":7,u:2,s:4,q:4,o:4,g:4,e:5,d:4,c:5,a:2,"?":7,".":-4}},"{":{d:"124,47v-60,3,-92,-14,-92,-69v0,-35,17,-90,-28,-86r0,-40v44,5,28,-50,28,-86v0,-55,32,-71,92,-68r0,39v-27,-2,-46,3,-43,29v-3,39,12,96,-21,106v33,10,21,67,21,106v0,26,16,31,43,29r0,40",w:127,k:{"7":7,"1":7}},"|":{d:"70,36r-48,0r0,-328r48,0r0,328",w:91},"}":{d:"124,-108v-44,-5,-29,49,-29,86v0,55,-31,73,-91,69r0,-40v27,2,46,-3,43,-29v3,-39,-12,-96,21,-106v-33,-10,-17,-67,-21,-106v3,-26,-16,-31,-43,-29r0,-39v59,-3,91,13,91,68v0,35,-17,90,29,86r0,40",w:127},"~":{d:"171,-110v0,0,-19,11,-40,11v-36,0,-86,-18,-113,-2r0,-41v0,0,19,-11,40,-11v36,0,86,18,113,2r0,41"},"\u00a0":{w:100,k:{"\u00b7":4,y:4,x:4,v:4,t:4,o:2,f:4,a:4,Y:4,X:4,V:4,J:7,I:7}},"\u00a1":{d:"72,-135r-52,0r0,-52r52,0r0,52xm70,68r-48,0r0,-171r48,0r0,171",w:91},"\u00a2":{d:"133,-42v-4,22,13,48,-20,45r0,40r-48,0r0,-43v-42,-10,-43,-58,-43,-112v0,-37,15,-59,43,-68r0,-43r48,0r0,40v11,1,20,4,20,4r0,41v0,0,-21,-2,-35,-2v-38,-1,-28,38,-28,70v0,19,6,30,28,30v14,0,35,-2,35,-2",w:144},"\u00a3":{d:"171,-207v0,0,-40,-7,-63,-7v-41,2,-39,28,-38,63r79,0r0,45r-79,0r0,61r97,0r0,45r-145,0r0,-177v0,-51,28,-82,85,-82v31,0,64,8,64,8r0,44",w:185},"\u00a4":{d:"172,-73r-29,29r-22,-22v-17,7,-44,9,-62,1r-22,21r-29,-29r22,-22v-8,-17,-8,-43,-2,-63r-20,-21r29,-29r20,19v18,-8,48,-8,65,1r21,-20r29,29r-22,22v7,18,7,44,-1,61xm89,-100v17,0,23,-11,22,-29v0,-16,-6,-26,-22,-26v-17,0,-23,11,-22,29v0,16,6,26,22,26",w:180},"\u00a5":{d:"207,-256r-42,99r35,0r0,42r-52,0r-10,21r62,0r0,42r-69,0r0,52r-48,0r0,-52r-69,0r0,-42r62,0r-9,-21r-53,0r0,-42r35,0r-42,-99r54,0r46,117r46,-117r54,0",w:214},"\u00a6":{d:"70,-144r-48,0r0,-148r48,0r0,148xm70,36r-48,0r0,-148r48,0r0,148",w:91},"\u00a7":{d:"160,-30v0,52,-22,71,-71,70v-34,0,-69,-11,-69,-11r0,-42v3,-1,101,27,92,-10v1,-12,-25,-12,-36,-18v-24,-5,-54,-17,-54,-64v0,-20,8,-33,22,-42v-15,-8,-22,-25,-22,-52v0,-43,30,-60,71,-60v31,0,60,7,60,7r0,42v-1,2,-94,-22,-83,13v0,11,25,11,36,16v27,5,54,20,54,68v0,21,-7,34,-19,41v11,8,19,20,19,42xm91,-89v15,8,21,-7,21,-25v0,-14,-15,-18,-29,-21v-21,9,-16,45,8,46",w:181},"\u00a8":{d:"149,-207r-48,0r0,-49r48,0r0,49xm70,-207r-48,0r0,-49r48,0r0,49",w:171},"\u00a9":{d:"266,-142v0,97,-41,146,-122,146v-81,0,-122,-49,-122,-146v0,-80,51,-117,122,-117v71,0,122,37,122,117xm144,-43v59,0,70,-38,70,-97v0,-45,-21,-72,-70,-72v-59,0,-70,38,-70,97v0,45,21,72,70,72xm185,-64v0,0,-17,5,-34,5v-43,0,-63,-27,-63,-72v0,-54,52,-74,97,-61r0,27v0,0,-18,-2,-32,-2v-27,0,-35,17,-34,43v-9,35,43,40,66,33r0,27",w:288},"\u00aa":{d:"166,-76r-45,0r0,-9v-37,24,-101,16,-101,-43v0,-49,48,-63,97,-53v2,-22,-4,-34,-26,-33v-21,0,-57,7,-57,7r0,-43v0,0,34,-9,65,-9v98,0,59,103,67,183xm166,0r-143,0r0,-43r143,0r0,43xm117,-119r0,-30v-22,-1,-49,-2,-49,19v0,23,33,20,49,11",w:187},"\u00ab":{d:"184,-54r-53,0r-36,-65r36,-65r53,0r-36,65xm106,-54r-52,0r-36,-65r36,-65r52,0r-36,65",w:201,k:{z:7,u:7,s:7,r:7,q:7,p:7,o:7,n:7,m:7,l:7,k:7,j:7,i:7,h:7,g:7,f:7,e:7,d:7,c:7,b:7,a:7,Z:7,Y:22,X:22,W:14,V:14,U:7,T:29,S:7,R:7,Q:7,P:7,O:7,N:7,M:7,L:7,K:7,J:29,I:22,H:7,G:7,F:7,E:7,D:7,C:7,A:14}},"\u00ac":{d:"171,-47r-45,0r0,-57r-108,0r0,-44r153,0r0,101"},"\u00ad":{d:"108,-104r-90,0r0,-44r90,0r0,44",w:126},"\u00ae":{d:"266,-142v0,97,-41,146,-122,146v-81,0,-122,-49,-122,-146v0,-80,51,-117,122,-117v71,0,122,37,122,117xm144,-43v59,0,70,-38,70,-97v0,-45,-21,-72,-70,-72v-59,0,-70,38,-70,97v0,45,21,72,70,72xm196,-63r-36,0v-11,-15,-17,-35,-30,-47r0,47r-31,0r0,-130v47,2,96,-11,97,42v0,25,-12,35,-29,39xm166,-151v0,-18,-19,-15,-36,-15r0,29v16,-1,36,4,36,-14",w:288},"\u00af":{d:"124,-212r-102,0r0,-44r102,0r0,44",w:145},"\u00b0":{d:"168,-189v0,51,-24,81,-73,81v-49,0,-73,-30,-73,-81v0,-43,28,-70,73,-70v45,0,73,27,73,70xm95,-149v23,0,25,-18,24,-41v0,-16,-6,-28,-24,-28v-23,0,-26,19,-25,42v0,16,7,27,25,27"},"\u00b1":{d:"171,-108r-54,0r0,54r-45,0r0,-54r-54,0r0,-43r54,0r0,-54r45,0r0,54r54,0r0,43xm171,0r-153,0r0,-43r153,0r0,43"},"\u00b2":{d:"114,-102r-105,0r0,-38v0,-60,65,-42,60,-72v1,-16,-59,-3,-60,-4r0,-37v0,0,30,-6,49,-6v38,0,57,14,56,53v-1,49,-62,41,-60,65r60,0r0,39",w:122},"\u00b3":{d:"113,-154v13,64,-66,58,-107,50r0,-38v3,-3,69,17,62,-10v0,-15,-33,-9,-49,-10r0,-39v15,-2,48,7,45,-12v-2,-16,-56,-1,-58,-3r0,-37v0,0,28,-6,48,-6v47,-11,74,47,41,75v10,5,18,15,18,30",w:122},"\u00b4":{d:"124,-216r-102,11r0,-43r102,-11r0,43",w:145},"\u00b5":{d:"167,0r-45,0r0,-12v-12,9,-31,19,-52,15r0,65r-48,0r0,-248r48,0r0,115v-3,29,31,27,49,16r0,-131r48,0r0,180"},"\u00b6":{d:"225,0r-49,0r0,-256r49,0r0,256xm158,0r-48,0r0,-101v-56,1,-92,-18,-92,-77v-2,-78,64,-81,140,-78r0,256xm110,-144r0,-68v-26,-1,-43,6,-43,34v0,28,17,35,43,34",w:246},"\u00b7":{d:"67,-104r-49,0r0,-49r49,0r0,49",w:84},"\u00b8":{d:"92,41v0,39,-48,31,-70,27r0,-21v12,0,27,2,27,-10v0,-11,-15,-7,-25,-8r9,-43r33,0v0,7,-8,20,-4,24v17,0,30,7,30,31",w:113},"\u00b9":{d:"90,-102r-45,0r0,-110r-34,7r0,-38v23,-8,45,-16,79,-13r0,154",w:122},"\u00ba":{d:"168,-187v0,68,-9,115,-73,115v-63,0,-73,-47,-73,-115v0,-49,27,-72,73,-72v46,0,73,23,73,72xm164,0r-139,0r0,-43r139,0r0,43xm95,-114v35,0,24,-43,24,-74v0,-16,-5,-29,-24,-29v-35,0,-25,42,-25,74v0,16,6,29,25,29"},"\u00bb":{d:"184,-119r-36,65r-53,0r36,-65r-36,-65r53,0xm106,-119r-36,65r-52,0r36,-65r-36,-65r52,0",w:201,k:{a:7,Z:7,Y:22,X:14,W:7,V:7,T:36,S:7,J:29,I:22,A:14}},"\u00bc":{d:"319,-21r-8,0r0,21r-45,0r0,-21r-63,0r0,-33v18,-28,19,-57,18,-99r45,0v-1,38,3,65,-14,94r13,0v7,-16,7,-34,7,-53r39,0r0,53r8,0r0,38xm250,-256r-124,256r-54,0r124,-256r54,0xm90,-102r-45,0r0,-110r-34,7r0,-38v23,-8,45,-16,79,-13r0,154",w:322},"\u00bd":{d:"314,0r-106,0r0,-38v0,-60,66,-42,61,-72v1,-16,-60,-2,-61,-4r0,-37v0,0,31,-6,50,-6v38,0,57,14,56,53v-1,48,-62,43,-61,65r61,0r0,39xm250,-256r-124,256r-54,0r124,-256r54,0xm90,-102r-45,0r0,-110r-34,7r0,-38v23,-8,45,-16,79,-13r0,154",w:322},"\u00be":{d:"319,-21r-8,0r0,21r-45,0r0,-21r-63,0r0,-33v18,-28,19,-57,18,-99r45,0v-1,38,3,65,-14,94r13,0v7,-16,7,-34,7,-53r39,0r0,53r8,0r0,38xm250,-256r-124,256r-54,0r124,-256r54,0xm113,-154v13,64,-66,58,-107,50r0,-38v3,-3,69,17,62,-10v0,-15,-33,-9,-49,-10r0,-39v15,-2,48,7,45,-12v-2,-16,-56,-1,-58,-3r0,-37v0,0,28,-6,48,-6v47,-11,74,47,41,75v10,5,18,15,18,30",w:322},"\u00bf":{d:"119,-135r-52,0r0,-52r52,0r0,52xm149,63v0,0,-31,9,-62,9v-43,0,-69,-18,-69,-64v0,-63,58,-43,50,-111r49,0v2,46,-7,74,-35,86v-19,9,-26,46,11,44v20,0,56,-7,56,-7r0,43",w:163},"\u00c0":{d:"160,-270r-102,-4r0,-43r102,4r0,43xm214,0r-52,0r-12,-43r-82,0r-12,43r-52,0r75,-256r60,0xm138,-88r-29,-104r-29,104r58,0",w:217,k:{y:7,w:4,v:7,t:4,q:4,o:4,g:5,e:4,d:4,c:4,a:2,Y:18,W:5,V:9,T:25,C:4}},"\u00c1":{d:"160,-274r-102,4r0,-43r102,-4r0,43xm214,0r-52,0r-12,-43r-82,0r-12,43r-52,0r75,-256r60,0xm138,-88r-29,-104r-29,104r58,0",w:217,k:{y:7,w:4,v:7,t:4,q:4,o:4,g:5,e:4,d:4,c:4,a:2,Y:18,W:5,V:9,T:25,C:4}},"\u00c2":{d:"174,-266r-65,-15r-65,15r0,-44r65,-18r65,18r0,44xm214,0r-52,0r-12,-43r-82,0r-12,43r-52,0r75,-256r60,0xm138,-88r-29,-104r-29,104r58,0",w:217,k:{y:7,w:4,v:7,t:4,q:4,o:4,g:5,e:4,d:4,c:4,a:2,Y:18,W:5,V:9,T:25,C:4}},"\u00c3":{d:"174,-279v-22,19,-110,-8,-130,11r0,-42v21,-20,108,6,130,-10r0,41xm214,0r-52,0r-12,-43r-82,0r-12,43r-52,0r75,-256r60,0xm138,-88r-29,-104r-29,104r58,0",w:217,k:{y:7,w:4,v:7,t:4,q:4,o:4,g:5,e:4,d:4,c:4,a:2,Y:18,W:5,V:9,T:25,C:4}},"\u00c4":{d:"176,-270r-48,0r0,-49r48,0r0,49xm90,-270r-49,0r0,-49r49,0r0,49xm214,0r-52,0r-12,-43r-82,0r-12,43r-52,0r75,-256r60,0xm138,-88r-29,-104r-29,104r58,0",w:217,k:{y:7,w:4,v:7,t:4,q:4,o:4,g:5,e:4,d:4,c:4,a:2,Y:18,W:5,V:9,T:25,C:4}},"\u00c5":{d:"214,0r-52,0r-12,-43r-82,0r-12,43r-52,0r70,-238v-22,-26,-6,-66,35,-66v41,0,57,40,35,66xm123,-265v0,-9,-4,-16,-14,-16v-10,0,-14,7,-14,16v0,9,4,17,14,17v10,0,14,-8,14,-17xm138,-88r-29,-104r-29,104r58,0",w:217,k:{y:7,w:4,v:7,t:4,q:4,o:4,g:5,e:4,d:4,c:4,a:2,Y:18,W:5,V:9,T:25,C:4}},"\u00c6":{d:"270,0r-128,0r0,-49r-66,0r-18,49r-54,0r99,-256r167,0r0,45r-79,0r0,58r72,0r0,45r-72,0r0,63r79,0r0,45xm142,-94r0,-117r-4,0r-44,117r48,0",w:284,k:{y:4,w:4,v:4,q:7,o:7,g:5,e:7,d:7,c:7,a:4,C:4}},"\u00c7":{d:"157,-1r-51,5v0,2,-2,6,0,6v17,0,30,7,30,31v0,39,-48,31,-70,27r0,-21v12,0,28,2,27,-10v1,-11,-15,-7,-25,-8r7,-30v-58,-15,-53,-91,-53,-165v0,-80,66,-105,135,-88r0,44v0,0,-31,-3,-47,-3v-55,-1,-40,69,-40,119v0,30,9,52,42,52v16,0,45,-4,45,-4r0,45",w:171},"\u00c8":{d:"146,-270r-103,-4r0,-43r103,4r0,43xm167,0r-145,0r0,-256r145,0r0,45r-97,0r0,58r90,0r0,45r-90,0r0,63r97,0r0,45",w:181,k:{y:4,w:4,v:4,q:7,o:7,c:7,a:4}},"\u00c9":{d:"146,-274r-103,4r0,-43r103,-4r0,43xm167,0r-145,0r0,-256r145,0r0,45r-97,0r0,58r90,0r0,45r-90,0r0,63r97,0r0,45",w:181,k:{y:4,w:4,v:4,q:7,o:7,c:7,a:4}},"\u00ca":{d:"158,-266r-64,-15r-65,15r0,-44r65,-18r64,18r0,44xm167,0r-145,0r0,-256r145,0r0,45r-97,0r0,58r90,0r0,45r-90,0r0,63r97,0r0,45",w:181,k:{y:4,w:4,v:4,q:7,o:7,c:7,a:4}},"\u00cb":{d:"157,-270r-49,0r0,-49r49,0r0,49xm77,-270r-48,0r0,-49r48,0r0,49xm167,0r-145,0r0,-256r145,0r0,45r-97,0r0,58r90,0r0,45r-90,0r0,63r97,0r0,45",w:181,k:{y:4,w:4,v:4,q:7,o:7,c:7,a:4}},"\u00cc":{d:"131,-270r-102,-4r0,-43r102,4r0,43xm149,0r-138,0r0,-32r45,0r0,-191r-45,0r0,-33r138,0r0,33r-45,0r0,191r45,0r0,32",w:160},"\u00cd":{d:"131,-274r-102,4r0,-43r102,-4r0,43xm149,0r-138,0r0,-32r45,0r0,-191r-45,0r0,-33r138,0r0,33r-45,0r0,191r45,0r0,32",w:160},"\u00ce":{d:"145,-266r-65,-15r-65,15r0,-44r65,-18r65,18r0,44xm149,0r-138,0r0,-32r45,0r0,-191r-45,0r0,-33r138,0r0,33r-45,0r0,191r45,0r0,32",w:160},"\u00cf":{d:"140,-270r-48,0r0,-49r48,0r0,49xm68,-270r-48,0r0,-49r48,0r0,49xm149,0r-138,0r0,-32r45,0r0,-191r-45,0r0,-33r138,0r0,33r-45,0r0,191r45,0r0,32",w:160},"\u00d0":{d:"198,-162v0,88,-3,162,-88,162r-88,0r0,-256r88,0v58,0,88,34,88,94xm110,-45v52,1,39,-64,39,-113v0,-30,-8,-53,-39,-53r-40,0r0,58r58,0r0,45r-58,0r0,63r40,0",w:219},"\u00d1":{d:"175,-279v-22,18,-110,-8,-130,11r0,-42v21,-20,108,6,130,-10r0,41xm198,0r-49,0r-79,-153r0,153r-48,0r0,-256r48,0r79,153r0,-153r49,0r0,256",w:219},"\u00d2":{d:"161,-270r-102,-4r0,-43r102,4r0,43xm198,-90v0,60,-30,94,-88,94v-58,0,-88,-34,-88,-94r0,-76v0,-60,30,-93,88,-93v58,0,88,33,88,93r0,76xm110,-41v54,0,39,-71,39,-121v0,-30,-8,-52,-39,-52v-55,-1,-40,69,-40,120v0,30,9,53,40,53",w:219,k:{Y:11,X:11,T:11}},"\u00d3":{d:"161,-274r-102,4r0,-43r102,-4r0,43xm198,-90v0,60,-30,94,-88,94v-58,0,-88,-34,-88,-94r0,-76v0,-60,30,-93,88,-93v58,0,88,33,88,93r0,76xm110,-41v54,0,39,-71,39,-121v0,-30,-8,-52,-39,-52v-55,-1,-40,69,-40,120v0,30,9,53,40,53",w:219,k:{Y:11,X:11,T:11}},"\u00d4":{d:"175,-266r-65,-15r-65,15r0,-44r65,-18r65,18r0,44xm198,-90v0,60,-30,94,-88,94v-58,0,-88,-34,-88,-94r0,-76v0,-60,30,-93,88,-93v58,0,88,33,88,93r0,76xm110,-41v54,0,39,-71,39,-121v0,-30,-8,-52,-39,-52v-55,-1,-40,69,-40,120v0,30,9,53,40,53",w:219,k:{Y:11,X:11,T:11}},"\u00d5":{d:"175,-279v-22,18,-110,-8,-130,11r0,-42v21,-20,108,6,130,-10r0,41xm198,-90v0,60,-30,94,-88,94v-58,0,-88,-34,-88,-94r0,-76v0,-60,30,-93,88,-93v58,0,88,33,88,93r0,76xm110,-41v54,0,39,-71,39,-121v0,-30,-8,-52,-39,-52v-55,-1,-40,69,-40,120v0,30,9,53,40,53",w:219,k:{Y:11,X:11,T:11}},"\u00d6":{d:"181,-270r-49,0r0,-49r49,0r0,49xm87,-270r-48,0r0,-49r48,0r0,49xm198,-90v0,60,-30,94,-88,94v-58,0,-88,-34,-88,-94r0,-76v0,-60,30,-93,88,-93v58,0,88,33,88,93r0,76xm110,-41v54,0,39,-71,39,-121v0,-30,-8,-52,-39,-52v-55,-1,-40,69,-40,120v0,30,9,53,40,53",w:219,k:{Y:11,X:11,W:4,T:11}},"\u00d7":{d:"172,-80r-31,31r-46,-46r-47,46r-30,-31r46,-46r-46,-46r30,-31r47,46r46,-46r31,31r-47,46"},"\u00d8":{d:"198,-90v2,71,-48,106,-117,90r-13,36r-30,0r16,-48v-40,-23,-31,-92,-32,-154v-2,-71,47,-104,117,-90r12,-36r31,0r-17,48v40,23,32,92,33,154xm124,-212v-71,-18,-56,81,-51,145xm96,-43v67,15,52,-64,53,-119v0,-10,0,-18,-3,-26",w:219,k:{X:11,W:4,V:7,T:11}},"\u00d9":{d:"161,-270r-102,-4r0,-43r102,4r0,43xm198,-94v0,69,-32,98,-88,98v-56,0,-88,-29,-88,-98r0,-162r48,0r0,162v0,30,9,53,40,53v31,0,39,-23,39,-53r0,-162r49,0r0,162",w:219},"\u00da":{d:"161,-274r-102,4r0,-43r102,-4r0,43xm198,-94v0,69,-32,98,-88,98v-56,0,-88,-29,-88,-98r0,-162r48,0r0,162v0,30,9,53,40,53v31,0,39,-23,39,-53r0,-162r49,0r0,162",w:219},"\u00db":{d:"175,-266r-65,-15r-65,15r0,-44r65,-18r65,18r0,44xm198,-94v0,69,-32,98,-88,98v-56,0,-88,-29,-88,-98r0,-162r48,0r0,162v0,30,9,53,40,53v31,0,39,-23,39,-53r0,-162r49,0r0,162",w:219},"\u00dc":{d:"174,-270r-49,0r0,-49r49,0r0,49xm95,-270r-49,0r0,-49r49,0r0,49xm198,-94v0,69,-32,98,-88,98v-56,0,-88,-29,-88,-98r0,-162r48,0r0,162v0,30,9,53,40,53v31,0,39,-23,39,-53r0,-162r49,0r0,162",w:219},"\u00dd":{d:"155,-274r-103,4r0,-43r103,-4r0,43xm203,-256r-75,175r0,81r-49,0r0,-81r-75,-175r54,0r46,117r45,-117r54,0",w:207,k:{y:22,w:22,v:22,t:11,q:36,o:36,g:36,e:36,c:36,a:43,C:7}},"\u00de":{d:"191,-131v0,71,-51,81,-121,77r0,54r-48,0r0,-256r48,0r0,47v70,-3,121,7,121,78xm142,-131v0,-38,-35,-36,-72,-35r0,69v36,1,72,4,72,-34",w:205},"\u00df":{d:"191,-57v0,45,-25,61,-60,61v-24,0,-46,-4,-46,-4r0,-43v4,-1,62,14,57,-12v0,-24,-50,-20,-50,-71v0,-30,21,-47,21,-67v0,-14,-7,-21,-20,-21v-15,0,-23,11,-23,29r0,185r-48,0r0,-186v0,-42,21,-73,71,-73v41,0,69,21,69,62v0,35,-22,50,-22,65v0,22,51,20,51,75",w:208,k:{z:4,y:11,x:7,w:7,v:11,u:2,t:7,s:9,r:4,q:7,p:5,o:7,n:4,m:4,l:5,k:5,j:5,i:5,h:5,g:7,f:11,e:5,d:5,c:5,b:5,a:7,".":5,"-":11,",":5}},"\u00e0":{d:"143,-205r-102,-11r0,-43r102,11r0,43xm162,0r-45,0r0,-9v-37,24,-101,16,-101,-43v0,-49,47,-62,97,-54v1,-22,-4,-34,-26,-33v-21,0,-56,8,-56,8r0,-43v0,0,33,-10,64,-10v98,0,59,104,67,184xm113,-44r0,-29v-22,-1,-48,-2,-48,19v0,24,32,20,48,10",w:183,k:{y:7,x:4,w:2,v:5,t:4,o:2,g:4,f:4,e:2,d:2,c:2}},"\u00e1":{d:"143,-216r-102,11r0,-43r102,-11r0,43xm162,0r-45,0r0,-9v-37,24,-101,16,-101,-43v0,-49,47,-62,97,-54v1,-22,-4,-34,-26,-33v-21,0,-56,8,-56,8r0,-43v0,0,33,-10,64,-10v98,0,59,104,67,184xm113,-44r0,-29v-22,-1,-48,-2,-48,19v0,24,32,20,48,10",w:183,k:{y:7,x:4,w:2,v:5,t:4,o:2,g:4,f:4,e:2,d:2,c:2}},"\u00e2":{d:"157,-194r-65,-22r-65,22r0,-44r65,-25r65,25r0,44xm162,0r-45,0r0,-9v-37,24,-101,16,-101,-43v0,-49,47,-62,97,-54v1,-22,-4,-34,-26,-33v-21,0,-56,8,-56,8r0,-43v0,0,33,-10,64,-10v98,0,59,104,67,184xm113,-44r0,-29v-22,-1,-48,-2,-48,19v0,24,32,20,48,10",w:183,k:{y:7,x:4,w:2,v:5,t:4,o:2,g:4,f:4,e:2,d:2,c:2}},"\u00e3":{d:"157,-218v0,0,-16,11,-35,11v-29,0,-77,-15,-95,0r0,-41v0,0,15,-11,34,-11v34,0,76,14,96,0r0,41xm162,0r-45,0r0,-9v-37,24,-101,16,-101,-43v0,-49,47,-62,97,-54v1,-22,-4,-34,-26,-33v-21,0,-56,8,-56,8r0,-43v0,0,33,-10,64,-10v98,0,59,104,67,184xm113,-44r0,-29v-22,-1,-48,-2,-48,19v0,24,32,20,48,10",w:183,k:{y:7,x:4,w:2,v:5,t:4,o:2,g:4,f:4,e:2,d:2,c:2}},"\u00e4":{d:"156,-207r-49,0r0,-49r49,0r0,49xm77,-207r-49,0r0,-49r49,0r0,49xm162,0r-45,0r0,-9v-37,24,-101,16,-101,-43v0,-49,47,-62,97,-54v1,-22,-4,-34,-26,-33v-21,0,-56,8,-56,8r0,-43v0,0,33,-10,64,-10v98,0,59,104,67,184xm113,-44r0,-29v-22,-1,-48,-2,-48,19v0,24,32,20,48,10",w:183,k:{y:7,x:4,w:2,v:5,t:4,s:4,q:2,o:2,g:4,f:4,e:2,d:2,c:2,a:4}},"\u00e5":{d:"137,-234v0,24,-17,40,-45,40v-28,0,-45,-16,-45,-40v0,-24,17,-40,45,-40v28,0,45,16,45,40xm162,0r-45,0r0,-9v-37,24,-101,16,-101,-43v0,-49,47,-62,97,-54v1,-22,-4,-34,-26,-33v-21,0,-56,8,-56,8r0,-43v0,0,33,-10,64,-10v98,0,59,104,67,184xm106,-234v0,-9,-4,-16,-14,-16v-10,0,-15,7,-15,16v0,9,5,16,15,16v10,0,14,-7,14,-16xm113,-44r0,-29v-22,-1,-48,-2,-48,19v0,24,32,20,48,10",w:183,k:{y:7,x:4,w:2,v:5,t:4,o:2,g:4,f:4,e:2,d:2,c:2}},"\u00e6":{d:"259,-70r-96,0v3,20,13,29,35,29v19,0,54,-5,54,-5r0,43v0,0,-31,7,-57,7v-27,0,-49,-7,-63,-24v-29,32,-116,38,-116,-32v0,-49,47,-62,97,-54v1,-22,-4,-34,-26,-33v-21,0,-56,8,-56,8r0,-43v5,-4,103,-20,113,3v12,-8,26,-13,44,-13v64,2,75,50,71,114xm214,-105v1,-23,-4,-39,-25,-38v-21,0,-27,14,-27,38r52,0xm118,-46v-3,-8,-3,-17,-4,-27v-22,-1,-50,-2,-49,19v2,26,37,19,53,8",w:279,k:{y:5,x:9,w:4,v:5,t:4,p:2,o:2,l:2,g:4,f:4,e:2,d:2,c:2}},"\u00e7":{d:"133,-1r-42,5v0,2,-4,6,0,6v17,0,30,7,30,31v0,40,-49,31,-71,27r0,-21v12,0,28,2,27,-10v1,-11,-14,-7,-24,-8r7,-31v-37,-12,-38,-58,-38,-110v0,-65,61,-81,111,-67r0,41v0,0,-21,-2,-35,-2v-38,-1,-28,38,-28,70v0,19,6,30,28,30v14,0,35,-2,35,-2r0,41",w:144,k:{x:-4,o:4,g:4,f:-4,e:5,d:4}},"\u00e8":{d:"144,-205r-103,-11r0,-43r103,11r0,43xm166,-70r-97,0v3,20,13,29,35,29v19,0,54,-5,54,-5r0,43v0,0,-30,7,-56,7v-54,2,-82,-33,-82,-103v0,-51,26,-85,75,-85v64,0,75,50,71,114xm121,-105v1,-23,-5,-38,-26,-38v-21,0,-27,14,-27,38r53,0",w:185,k:{y:5,x:9,w:4,v:5,t:4,r:2,p:2,o:2,m:2,l:2,k:2,g:4,f:2,d:2,c:2,b:2}},"\u00e9":{d:"144,-216r-103,11r0,-43r103,-11r0,43xm166,-70r-97,0v3,20,13,29,35,29v19,0,54,-5,54,-5r0,43v0,0,-30,7,-56,7v-54,2,-82,-33,-82,-103v0,-51,26,-85,75,-85v64,0,75,50,71,114xm121,-105v1,-23,-5,-38,-26,-38v-21,0,-27,14,-27,38r53,0",w:185,k:{y:5,x:9,w:4,v:5,t:4,r:2,p:2,o:2,m:2,l:2,k:2,g:4,f:2,d:2,c:2,b:2}},"\u00ea":{d:"158,-194r-65,-22r-65,22r0,-44r65,-25r65,25r0,44xm166,-70r-97,0v3,20,13,29,35,29v19,0,54,-5,54,-5r0,43v0,0,-30,7,-56,7v-54,2,-82,-33,-82,-103v0,-51,26,-85,75,-85v64,0,75,50,71,114xm121,-105v1,-23,-5,-38,-26,-38v-21,0,-27,14,-27,38r53,0",w:185,k:{y:5,x:9,w:4,v:5,t:4,r:2,p:2,o:2,m:2,l:2,k:2,g:4,f:2,d:2,c:2,b:2}},"\u00eb":{d:"157,-207r-49,0r0,-49r49,0r0,49xm77,-207r-48,0r0,-49r48,0r0,49xm166,-70r-97,0v3,20,13,29,35,29v19,0,54,-5,54,-5r0,43v0,0,-30,7,-56,7v-54,2,-82,-33,-82,-103v0,-51,26,-85,75,-85v64,0,75,50,71,114xm121,-105v1,-23,-5,-38,-26,-38v-21,0,-27,14,-27,38r53,0",w:185,k:{y:5,x:9,w:4,v:5,t:4,r:2,p:2,o:2,m:2,l:2,k:2,g:4,f:2,d:2,c:2,b:2}},"\u00ec":{d:"97,-205r-102,-11r0,-43r102,11r0,43xm70,0r-48,0r0,-180r48,0r0,180",w:91,k:{o:2,g:4,d:2}},"\u00ed":{d:"97,-216r-102,11r0,-43r102,-11r0,43xm70,0r-48,0r0,-180r48,0r0,180",w:91,k:{o:2,g:4,d:2}},"\u00ee":{d:"111,-194r-65,-22r-65,22r0,-44r65,-25r65,25r0,44xm70,0r-48,0r0,-180r48,0r0,180",w:91,k:{o:2,g:4,d:2}},"\u00ef":{d:"106,-207r-48,0r0,-49r48,0r0,49xm34,-207r-48,0r0,-49r48,0r0,49xm70,0r-48,0r0,-180r48,0r0,180",w:91,k:{o:2,g:4,d:2}},"\u00f0":{d:"191,-212r-19,6v8,37,4,90,4,134v0,49,-27,76,-77,76v-66,0,-83,-45,-77,-113v-10,-60,61,-82,106,-56v0,-9,0,-17,-2,-24r-29,11r0,-25r16,-6v-12,-10,-69,-1,-77,-1r0,-43v0,0,30,-6,54,-6v33,0,58,10,72,32r29,-11r0,26xm99,-41v38,0,28,-45,29,-80v-21,-11,-58,-20,-58,15v0,32,-6,65,29,65",w:198},"\u00f1":{d:"159,-218v0,0,-15,11,-34,11v-29,0,-77,-15,-95,0r0,-41v0,0,15,-11,34,-11v34,0,75,15,95,0r0,41xm167,0r-48,0r0,-115v3,-29,-31,-27,-49,-16r0,131r-48,0r0,-180r45,0r0,12v11,-8,26,-16,46,-16v83,0,46,111,54,184",k:{y:7,w:2,v:7,t:4,o:2,g:4,f:4,d:2}},"\u00f2":{d:"146,-205r-102,-11r0,-43r102,11r0,43xm168,-112v0,68,-9,116,-73,116v-64,0,-73,-48,-73,-116v0,-49,27,-72,73,-72v46,0,73,23,73,72xm95,-39v35,0,24,-43,24,-74v0,-16,-5,-28,-24,-28v-36,0,-25,42,-25,73v0,16,6,29,25,29",k:{y:5,x:11,w:4,v:5,t:4,r:2,p:2,o:2,m:2,l:2,k:2,g:4,f:7,d:2,c:2,b:2}},"\u00f3":{d:"146,-216r-102,11r0,-43r102,-11r0,43xm168,-112v0,68,-9,116,-73,116v-64,0,-73,-48,-73,-116v0,-49,27,-72,73,-72v46,0,73,23,73,72xm95,-39v35,0,24,-43,24,-74v0,-16,-5,-28,-24,-28v-36,0,-25,42,-25,73v0,16,6,29,25,29",k:{y:5,x:11,w:4,v:5,t:4,r:2,p:2,o:2,m:2,l:2,k:2,g:4,f:7,d:2,c:2,b:2}},"\u00f4":{d:"159,-194r-64,-22r-65,22r0,-44r65,-25r64,25r0,44xm168,-112v0,68,-9,116,-73,116v-64,0,-73,-48,-73,-116v0,-49,27,-72,73,-72v46,0,73,23,73,72xm95,-39v35,0,24,-43,24,-74v0,-16,-5,-28,-24,-28v-36,0,-25,42,-25,73v0,16,6,29,25,29",k:{y:5,x:11,w:4,v:5,t:4,r:2,p:2,o:2,m:2,l:2,k:2,g:4,f:7,d:2,c:2,b:2}},"\u00f5":{d:"159,-218v0,0,-15,11,-34,11v-29,0,-77,-15,-95,0r0,-41v0,0,15,-11,34,-11v34,0,75,15,95,0r0,41xm168,-112v0,68,-9,116,-73,116v-64,0,-73,-48,-73,-116v0,-49,27,-72,73,-72v46,0,73,23,73,72xm95,-39v35,0,24,-43,24,-74v0,-16,-5,-28,-24,-28v-36,0,-25,42,-25,73v0,16,6,29,25,29",k:{y:5,x:11,w:4,v:5,t:4,r:2,p:2,o:2,m:2,l:2,k:2,g:4,f:7,d:2,c:2,b:2}},"\u00f6":{d:"159,-207r-49,0r0,-49r49,0r0,49xm80,-207r-49,0r0,-49r49,0r0,49xm168,-112v0,68,-9,116,-73,116v-64,0,-73,-48,-73,-116v0,-49,27,-72,73,-72v46,0,73,23,73,72xm95,-39v35,0,24,-43,24,-74v0,-16,-5,-28,-24,-28v-36,0,-25,42,-25,73v0,16,6,29,25,29",k:{z:4,y:5,x:11,w:4,v:5,u:2,t:4,s:4,r:2,q:2,p:2,o:2,n:2,m:2,l:2,k:2,j:2,i:2,h:2,g:4,f:7,e:2,d:2,c:2,b:2,a:7}},"\u00f7":{d:"119,-166r-49,0r0,-48r49,0r0,48xm171,-104r-153,0r0,-44r153,0r0,44xm119,-38r-49,0r0,-48r49,0r0,48"},"\u00f8":{d:"168,-112v0,76,-16,129,-91,114r-12,34r-31,0r16,-44v-29,-15,-28,-58,-28,-104v0,-55,37,-79,90,-70r12,-34r31,0r-16,43v18,11,29,31,29,61xm101,-141v-44,-5,-30,46,-30,84xm88,-40v44,7,29,-47,30,-83",k:{y:5,x:11,w:4,v:5,t:4,r:2,p:2,o:2,m:2,l:2,k:2,g:4,f:7,d:2,c:2,b:2}},"\u00f9":{d:"146,-205r-103,-11r0,-43r103,11r0,43xm167,0r-45,0r0,-12v-11,8,-26,16,-46,16v-83,0,-46,-111,-54,-184r48,0r0,115v-3,29,31,27,49,16r0,-131r48,0r0,180",k:{y:2,x:2,v:2,t:4,o:2,g:4,f:4,d:2}},"\u00fa":{d:"146,-216r-103,11r0,-43r103,-11r0,43xm167,0r-45,0r0,-12v-11,8,-26,16,-46,16v-83,0,-46,-111,-54,-184r48,0r0,115v-3,29,31,27,49,16r0,-131r48,0r0,180",k:{y:2,x:2,v:2,t:4,o:2,g:4,f:4,d:2}},"\u00fb":{d:"159,-194r-64,-22r-65,22r0,-44r65,-25r64,25r0,44xm167,0r-45,0r0,-12v-11,8,-26,16,-46,16v-83,0,-46,-111,-54,-184r48,0r0,115v-3,29,31,27,49,16r0,-131r48,0r0,180",k:{y:2,x:2,v:2,t:4,o:2,g:4,f:4,d:2}},"\u00fc":{d:"158,-207r-48,0r0,-49r48,0r0,49xm79,-207r-48,0r0,-49r48,0r0,49xm167,0r-45,0r0,-12v-11,8,-26,16,-46,16v-83,0,-46,-111,-54,-184r48,0r0,115v-3,29,31,27,49,16r0,-131r48,0r0,180",k:{y:2,x:2,v:2,t:4,s:4,q:2,o:2,g:4,f:4,e:2,d:2,c:2,a:4}},"\u00fd":{d:"141,-216r-102,11r0,-43r102,-11r0,43xm176,-180r-84,248r-52,0r22,-65r-58,-183r52,0r32,106r36,-106r52,0",w:180},"\u00fe":{d:"167,-119v0,67,-1,120,-70,119v-6,0,-17,-2,-27,-3r0,71r-48,0r0,-324r48,0r0,83v42,-26,97,-2,97,54xm93,-41v35,1,24,-40,26,-72v2,-29,-27,-32,-49,-21r0,93r23,0"},"\u00ff":{d:"154,-207r-49,0r0,-49r49,0r0,49xm75,-207r-49,0r0,-49r49,0r0,49xm176,-180r-84,248r-52,0r22,-65r-58,-183r52,0r32,106r36,-106r52,0",w:180}}});Cufon.DOM.ready(function(){if(!printMode&&(renderlang=="no"||renderlang=="en")){Cufon.replace("h1:not(h1.translate)",{hover:true});Cufon.replace("#ulTopMenu");Cufon.replace("#ulCenter a:not(#ulCenter a.translate)");}});document.write('<style type="text/css">.faq_item p { display: none; }</style>');document.write('<style type="text/css">.blackout div { display: none; }</style>');$(document).ready(function(){var c={"Norwegian (bokmål)":"no",English:"en",Afrikaans:"af",Albanian:"sq",Arabic:"ar",Belarusian:"be",Bulgarian:"bg",Catalan:"ca",Chinese:"zh",Croatian:"hr",Czech:"cs",Danish:"da",Dutch:"nl",English:"en",Estonian:"et",Farsi:"fa",Finnish:"fi",French:"fr",Galician:"gl",German:"de",Greek:"el",Hebrew:"he",Hindi:"hi",Hungarian:"hu",Icelandic:"is",Indonesian:"id",Irish:"ga",Italian:"it",Japanese:"ja",Korean:"ko",Latvian:"lv",Lithuanian:"lt",Macedonian:"mk",Malay:"ms",Maltese:"mt","Norwegian (bokmål)":"no",Polish:"pl",Portuguese:"pt",Romanian:"ro",Russian:"ru",Serbian:"sr",Slovak:"sk",Slovenian:"sl",Spanish:"es",Swahili:"sw",Swedish:"sv",Tagalog:"tl",Thai:"th",Turkish:"tr",Ukrainian:"uk",Vietnamese:"vi",Welsh:"cy",Yiddish:"yi"};$("#languageselector").empty();for(var a in c){var b="";if(c[a]==renderlang){b=' selected="selected"';}$("#languageselector").append('<option value="'+c[a]+'"'+b+">"+a+"</option>");}$("#languageselector_toggle").show().click(function(){$("#languageselector").toggle();return false;});if(renderlang!="no"){translatePageTo(renderlang,translationWarning);}else{replaceFonts();}$(".faq_item h2").click(function(){var d=$(this).parent().children("p");if(d.css("display")=="none"){$.ajax({url:d.children("a.link").attr("href"),cache:false});}d.slideToggle("fast");return false;});$(".blackout h3").click(function(){var d=$(this).parent().children("div");if(d.css("display")=="none"){$.ajax({url:d.children("a.link").attr("href"),cache:false});}d.slideToggle("fast");return false;});$("#divPage #divOverflow2 a img").mouseenter(function(){$(this).after('<div class="imageoverlay" />');var d=$(this).next();d.css({top:$(this).position().top,left:$(this).position().left+16,width:$(this).width(),height:$(this).height(),opacity:0});d.fadeTo("fast",0.3);$(".imageoverlay").mouseleave(function(){$(this).fadeOut("fast",function(){$(this).remove();});});});$("#divPage a img:not(#divOverflow2 a img)").mouseenter(function(){$(this).after('<div class="imageoverlay" />');var d=$(this).next();d.css({top:$(this).position().top,left:$(this).position().left,width:$(this).width(),height:$(this).height(),opacity:0});d.fadeTo("fast",0.3);$(".imageoverlay").mouseleave(function(){$(this).fadeOut("fast",function(){$(this).remove();});});});});function replaceFonts(){if(!printMode){Cufon.replace("h1");Cufon.replace("#ulTopMenu");Cufon.replace("#ulCenter");}}function translateElement(a,b){google.language.translate(a.html(),"no",b,function(c){if(!c.error){a.html(c.translation);}if(jQuery.inArray(b,["no","en"])>=0){replaceFonts();}});}function translatePageTo(c,b){google.language.CurrentLocale=c;var a=$('<p class="translationwarning translate"><span id="branding"></span><span id="message">'+b+"</span></p>");$("#divContentsTop").after(a);translateElement($(".translationwarning #message"),c);google.language.getBranding("branding",{type:"vertical"});$(".translate").each(function(){$(this).css("border","1px solid #f2af00");if($(this).children().length>0){translateElement($(this),c);$(this).children().each(function(){translateElement($(this),c);});}else{translateElement($(this),c);}});$("img").each(function(){var d=$(this);google.language.translate(d.attr("alt"),"no",c,function(f){if(!f.error){d.attr("alt",f.translation);}});});}function searchBoxFocus(a){document.getElementById(a).value="";}function checkEnterKey(b){var a;if(e&&e.which){e=e;a=e.which;}else{e=b;a=e.keyCode;}if(a==13){document.forms.formTop.submit();return false;}else{return true;}}