/*
 * 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],d)},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],d)}}}}}};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 d(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,e=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function u(G,F){var H={};p.each(e.concat.apply([],e.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")}})})();var _jscr_originalSizes=new Array();var _jscr_differenceSizes=new Array();var _jscr_previousWindowSize=new Array();var _jscr_originalPercentages=new Array();var _jscr_intervals=new Array();var _jscr_trackInt=new Array();var _jscr_originalPos=new Array();var _jscr_globalProperties=new Array();jQuery.jScrollHorizontalPane={active:[]};jQuery.fn.jScrollHorizontalPane=function(a){a=jQuery.extend({scrollbarHeight:10,scrollbarMargin:5,wheelSpeed:18,showArrows:false,arrowSize:10,animateTo:false,dragMinWidth:1,dragMaxWidth:99999,animateInterval:100,animateStep:3,maintainPosition:true,resize:true,minimumWidth:200,reset:false},a);return this.each(function(){if(a.reset==true){jQuery.fn.jScrollHorizontalPane.reset()}var n=jQuery(this);var H=0;var T=false;var N=n.attr("id");if(N==undefined){N=n.attr("class")}var w=_jscr_previousWindowSize[N];_jscr_originalPos[N]=-1;_jscr_globalProperties[N]=a;_jscr_previousWindowSize[N]=$(window).width();if(_jscr_originalSizes[N]==undefined){if((jQuery.browser.msie)&&(parseInt(jQuery.browser.version)==6)){var X=parseInt(n.outerWidth())-parseInt(n.offset().left);_jscr_differenceSizes[N]=n.offset().left/$(window).width()}else{var X=n.outerWidth();_jscr_differenceSizes[N]=n.position().left/$(window).width()}percentageWidth=(X/$(window).width());_jscr_originalPercentages[N]=percentageWidth;_jscr_originalSizes[N]=$(window).width()}else{percentageWidth=_jscr_originalPercentages[N];diff=_jscr_differenceSizes[N]-((n.offset().left+_jscr_originalPos[N])/$(window).width());percentageWidth=percentageWidth+diff}var j=new Array();_jscr_intervals=new Array();j[0]=0;_jscr_intervals[0]=0;margin=n.position().left;offset=1;if(margin<0){margin=0}$(".scroll-interval",n).each(function(p,an){pos=$(an).position().left-margin;if(pos!=0){_jscr_intervals[p+offset]=pos}else{offset--}});if(_jscr_intervals.length<=1){_jscr_intervals=new Array()}if(jQuery(this).parent().is(".jScrollPaneContainer")){var al=a.maintainPosition?n.offset({relativeTo:jQuery(this).parent()[0]}).left:0;var l=jQuery(this).parent();var E=l.outerWidth();var am=l.innerHeight();var V=n.offset().left+_jscr_originalPos[N]+E;if((w!=$(window).width())&&((V>$(window).width())||(w<$(window).width()))&&(a.resize==true)){if($(window).width()>=_jscr_originalSizes[N]){E=($(window).width()*percentageWidth)}else{E=$(window).width()-(n.offset().left+_jscr_originalPos[N])-10}if(E<a.minimumWidth){E=a.minimumWidth}jQuery(this).parent().css({height:am+"px",width:E+"px"})}var F=E;if(l.unmousewheel){if($.browser.opera){l.unbind("mousewheel",fn=function(){})}else{l.unmousewheel()}}jQuery(">.jScrollPaneTrack, >.jScrollArrowLeft, >.jScrollArrowRight",l).remove();n.css({left:0});_jscr_originalPos[N]=-1}else{var al=0;this.originalPadding=n.css("paddingTop")+" "+n.css("paddingRight")+" "+n.css("paddingBottom")+" "+n.css("paddingLeft");this.originalSidePaddingTotal=(parseInt(n.css("paddingLeft"))||0)+(parseInt(n.css("paddingRight"))||0);var E=n.outerWidth();var V=n.offset().left+_jscr_originalPos[N]+E;if((V)>$(window).width()){E=$(window).width()*percentageWidth}if(E<a.minimumWidth){E=a.minimumWidth}var am=n.innerHeight();var F=E;n.wrap(jQuery("<div></div>").attr({className:"jScrollPaneContainer"}).css({height:am+"px",width:E+"px"}));jQuery(document).bind("emchange",function(an,ao,p){n.jScrollHorizontalPane(a)})}var W=this.originalSidePaddingTotal;n.css({height:am-a.scrollbarHeight-W+"px",width:"auto",paddingRight:a.scrollbarMargin+"px"});var aa=n.outerWidth();if($.browser.msie||$.browser.opera||$.browser.safari){var f=0;n.children().each(function(p,an){if($(an).outerWidth()>f){f=$(an).outerWidth()}});if(f>aa){aa=f}}var P=E/aa;var ac=new Array();if(P<0.99){var g=n.parent();g.append(jQuery("<div></div>").attr({className:"jScrollPaneTrack"}).css({height:a.scrollbarHeight+"px"}).append(jQuery("<div></div>").attr({className:"jScrollPaneDrag"}).css({height:a.scrollbarHeight+"px"}).append(jQuery("<div></div>").attr({className:"jScrollPaneDragLeft"}).css({height:a.scrollbarHeight+"px"}),jQuery("<div></div>").attr({className:"jScrollPaneDragRight"}).css({height:a.scrollbarHeight+"px"}))));var ai=jQuery(">.jScrollPaneTrack",g);for(inter in _jscr_intervals){if(a.showArrows==true){scrollOffset=a.arrowSize}else{scrollOffset=0}intervalTrackPos=_jscr_intervals[inter]/aa*ai.width()-(scrollOffset);ac[inter]=intervalTrackPos;if(ac[inter-1]!=undefined){j[inter-1]=(ac[inter]+ac[inter-1])/2}if(inter!=0){interObj=jQuery("<div>|</div>").attr({className:"jScrollIntervalTrack"}).css({left:intervalTrackPos+"px"});ai.append(interObj)}}var o=jQuery(">.jScrollPaneTrack .jScrollPaneDrag",g);if(a.showArrows){var J;var ak;var s;var Z;var Q=function(){if(Z>4||Z%4==0){ah(ae+ak*10)}Z++};var k=function(p){jQuery("body").unbind("mouseup",k);J.removeClass("jScrollActiveArrowButton");clearInterval(s);S=true;x()};var B=function(){jQuery("body").bind("mouseup",k);J.addClass("jScrollActiveArrowButton");Z=0;Q();s=setInterval(Q,100)};g.append(jQuery("<a></a>").attr({href:"javascript:;",className:"jScrollArrowLeft"}).css({width:a.arrowSize+"px"}).html("Scroll Left").bind("mousedown",function(){J=jQuery(this);ak=-1;B();this.blur();return false}),jQuery("<a></a>").attr({href:"javascript:;",className:"jScrollArrowRight"}).css({width:a.arrowSize+"px"}).html("Scroll Right").bind("mousedown",function(){J=jQuery(this);ak=1;B();this.blur();return false}));if(a.arrowSize){F=E-a.arrowSize-a.arrowSize;ai.css({width:F+"px",left:a.arrowSize+"px"})}else{var K=jQuery(">.jScrollArrowLeft",g).width();a.arrowSize=K;F=E-K-jQuery(">.jScrollArrowRight",g).width();ai.css({width:F+"px",left:K+"px"})}}var af=jQuery(this).css({position:"absolute",overflow:"visible"});var b;var z;var C;var ae=0;var v=P*E/2;var A=function(an,ap){var ao=ap=="X"?"Left":"Bottom";return an["page"+ap]||(an["client"+ap]+(document.documentElement["scroll"+ao]||document.body["scroll"+ao]))||0};var I=function(){return false};var h=0;var m=1;var S=false;var L=false;_jscr_trackInt[N]=-1;var ad=function(){U();b=o.offset(false);b.left-=ae;z=F-o[0].offsetWidth;C=2*a.wheelSpeed*z/aa};var d=function(p){ad();v=A(p,"X")-ae-b.left;jQuery("body").bind("mouseup",t).bind("mousemove",M);if(jQuery.browser.msie){jQuery("body").bind("dragstart",I).bind("selectstart",I)}return false};var t=function(){jQuery("body").unbind("mouseup",t).unbind("mousemove",M);v=P*E/2;x();if(jQuery.browser.msie){jQuery("body").unbind("dragstart",I).unbind("selectstart",I)}};var ah=function(an){O(ae,an);an=an<0?0:(an>z?z:an);ae=an;o.css({left:an+"px"});var ao=an/z;_jscr_originalPos[N]=(E-aa)*ao*-1;af.css({left:((E-aa)*ao)+"px"});n.trigger("scroll")};var M=function(p){ah(A(p,"X")-b.left-v)};var O=function(p,an){if((L==false)&&(T!=true)){_jscr_trackInt[N]=-1;halfInter=-1;smallInter=-1;bigInter=-1;endDragPos=an+o.width();fullTrackWidth=$(".jScrollPaneTrack").width();for(inter in ac){if((endDragPos>=fullTrackWidth)&&(endDragPos>=ac[inter])){_jscr_trackInt[N]=inter}else{if(an>=ac[inter]){smallInter=inter}else{bigInter=inter;break}}}if(_jscr_trackInt[N]==-1){smallDistance=an-ac[smallInter];largeDistance=ac[bigInter]-an;if(smallDistance<=largeDistance){_jscr_trackInt[N]=smallInter}else{_jscr_trackInt[N]=bigInter}}}else{L=false}};var x=function(){if(_jscr_trackInt[N]!=-1){if(S==true){if((m==-1)&&(_jscr_trackInt[N]!=0)){_jscr_trackInt[N]=h-1}else{if((m==1)&&(_jscr_trackInt[N]!=(_jscr_intervals.length-1))){_jscr_trackInt[N]=parseInt(h)+1}}S=false}L=true;ah(ac[_jscr_trackInt[N]]);h=_jscr_trackInt[N]}};var q=0;if(a.showArrows==true){q=a.arrowSize}var Y=Math.max(Math.min(P*(E-q*2),a.dragMaxWidth),a.dragMinWidth);o.css({width:Y+"px"}).bind("mousedown",d);var R;var r;var i;var ab=function(){if(r>8||r%4==0){ah((ae-((ae-i)/2)))}r++};var aj=function(){clearInterval(R);x();jQuery("body").unbind("mouseup",aj).unbind("mousemove",G)};var G=function(p){i=A(p,"X")-b.left-v};var u=function(p){ad();G(p);r=0;jQuery("body").bind("mouseup",aj).bind("mousemove",G);R=setInterval(ab,100);ab()};ai.bind("mousedown",u);if(g.mousewheel){g.mousewheel(function(ao,aq){var an=-1;if($.browser.opera){aq=ao.wheelDelta/120}if(ac.length>1){T=true;if(aq<0){_jscr_trackInt[N]=parseInt(_jscr_trackInt[N])+1;if((_jscr_trackInt[N])>=ac.length-1){_jscr_trackInt[N]=ac.length-1}if((parseInt(o.width())+parseInt(ac[_jscr_trackInt[N]]))>parseInt($(".jScrollPaneTrack").width())){an=parseInt($(".jScrollPaneTrack").width())-o.width()}}else{_jscr_trackInt[N]=parseInt(_jscr_trackInt[N])-1;if(_jscr_trackInt[N]<0){_jscr_trackInt[N]=0}}}ad();U();var ap=ae;if(T==true){if(an==-1){ah(ac[_jscr_trackInt[N]])}else{ah(an)}}else{ah(ae-aq*C)}x();var p=ap!=ae;T=false;return !p},false)}var e;var y;function D(){var p=(e-ae)/a.animateStep;if((p>1||p<-1)&&((ae+p+o.width())<(E))){ah(ae+p)}else{ah(e);U()}}var U=function(){if(y){clearInterval(y);delete e}};var ag=function(ao,p){if(typeof ao=="string"){$e=jQuery(ao,this);if(!$e.length){return}ao=$e.position().left}U();var an=-ao/(E-aa)*z;if(!p||a.animateTo){e=an;y=setInterval(D,a.animateInterval)}else{ah(an)}};n[0].scrollTo=ag;n[0].scrollBy=function(an){var p=-parseInt(af.css("left"))||0;ag(p+an)};ad();ag(-al,true);jQuery.jScrollHorizontalPane.active.push(n[0])}else{var ag=function(an,p){};n[0].scrollTo=ag;n.css({height:am-this.originalSidePaddingTotal+"px",width:E+"px",padding:this.originalPadding})}})};jQuery.fn.jScrollHorizontalPane.reset=function(){_jscr_originalSizes=new Array();_jscr_differenceSizes=new Array();_jscr_previousWindowSize=new Array();_jscr_originalPercentages=new Array();_jscr_intervals=new Array();_jscr_trackInt=new Array();_jscr_originalPos=new Array();_jscr_globalProperties=new Array()};jQuery(window).bind("unload",function(){var b=jQuery.jScrollHorizontalPane.active;for(var a=0;a<b.length;a++){b[a].scrollTo=b[a].scrollBy=null}});(function(a){jQuery(function(b){b(window).wresize(d);function d(){b(".scroll-pane").each(function(e,f){if(b(f).attr("id")==undefined){id=b(f).attr("class")}else{id=b(f).attr("id")}b(f).jScrollHorizontalPane(_jscr_globalProperties[b(f).attr("id")])})}});a.fn.wresize=function(d){version="1.1";wresize={fired:false,width:0};function b(){if(a.browser.msie){if(!wresize.fired){wresize.fired=true}else{var f=parseInt(a.browser.version,10);wresize.fired=false;if(f<7){return false}else{if(f==7){var g=a(window).width();if(g!=wresize.width){wresize.width=g;return false}}}}}return true}function e(f){if(b()){return d.apply(this,[f])}}this.each(function(){if(this==window){a(this).resize(e)}else{a(this).resize(d)}});return this}})(jQuery);function css_browser_selector(n){var a=n.toLowerCase(),i=function(b){return a.indexOf(b)>-1},j="gecko",l="webkit",p="safari",d="opera",e="mobile",f=document.documentElement,k=[(!(/opera|webtv/i.test(a))&&/msie\s(\d)/.test(a))?("ie ie"+RegExp.$1):i("firefox/2")?j+" ff2":i("firefox/3.5")?j+" ff3 ff3_5":i("firefox/3.6")?j+" ff3 ff3_6":i("firefox/3")?j+" ff3":i("gecko/")?j:i("opera")?d+(/version\/(\d+)/.test(a)?" "+d+RegExp.$1:(/opera(\s|\/)(\d+)/.test(a)?" "+d+RegExp.$2:"")):i("konqueror")?"konqueror":i("blackberry")?e+" blackberry":i("android")?e+" android":i("chrome")?l+" chrome":i("iron")?l+" iron":i("applewebkit/")?l+" "+p+(/version\/(\d+)/.test(a)?" "+p+RegExp.$1:""):i("mozilla/")?j:"",i("j2me")?e+" j2me":i("iphone")?e+" iphone":i("ipod")?e+" ipod":i("ipad")?e+" ipad":i("mac")?"mac":i("darwin")?"mac":i("webtv")?"webtv":i("win")?"win"+(i("windows nt 6.0")?" vista":""):i("freebsd")?"freebsd":(i("x11")||i("linux"))?"linux":"","js"];c=k.join(" ");f.className+=" "+c;return c}css_browser_selector(navigator.userAgent);var Cufon=(function(){var P=function(){return P.replace.apply(null,arguments)};var D=P.DOM={ready:(function(){var d=false,a={loaded:1,complete:1};var e=[],b=function(){if(d){return}d=true;for(var f;f=e.shift();f()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",b,false);window.addEventListener("pageshow",b,false)}if(!window.opera&&document.readyState){(function(){a[document.readyState]?b():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");b()}catch(f){setTimeout(arguments.callee,1)}})()}K(window,"load",b);return function(f){if(!arguments.length){b()}else{d?f():e.push(f)}}})(),root:function(){return document.documentElement||document.body}};var O=P.CSS={Size:function(a,b){this.value=parseFloat(a);this.unit=String(a).match(/[a-z%]*$/)[0]||"px";this.convert=function(d){return d/b*this.value};this.convertFrom=function(d){return d/this.value*b};this.toString=function(){return this.value+this.unit}},addClass:function(b,d){var a=b.className;b.className=a+(a&&" ")+d;return b},color:S(function(a){var b={};b.color=a.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(e,f,d){b.opacity=parseFloat(d);return"rgb("+f+")"});return b}),fontStretch:S(function(a){if(typeof a=="number"){return a}if(/%$/.test(a)){return parseFloat(a)/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}[a]||1}),getStyle:function(a){var b=document.defaultView;if(b&&b.getComputedStyle){return new ab(b.getComputedStyle(a,null))}if(a.currentStyle){return new ab(a.currentStyle)}return new ab(a.style)},gradient:S(function(b){var a={id:b,type:b.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},f=b.substr(b.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var d=0,g=f.length,e;d<g;++d){e=f[d].split("=",2).reverse();a.stops.push([e[1]||d/(g-1),e[0]])}return a}),quotedList:S(function(a){var b=[],d=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,e;while(e=d.exec(a)){b.push(e[3]||e[1])}return b}),recognizesMedia:S(function(a){var d=document.createElement("style"),e,f,g;d.type="text/css";d.media=a;try{d.appendChild(document.createTextNode("/**/"))}catch(b){}f=V("head")[0];f.insertBefore(d,f.firstChild);e=(d.sheet||d.styleSheet);g=e&&!e.disabled;f.removeChild(d);return g}),removeClass:function(a,b){var d=RegExp("(?:^|\\s+)"+b+"(?=\\s|$)","g");a.className=a.className.replace(d,"");return a},supports:function(a,b){var d=document.createElement("span").style;if(d[a]===undefined){return false}d[a]=b;return d[a]===b},textAlign:function(a,b,e,d){if(b.get("textAlign")=="right"){if(e>0){a=" "+a}}else{if(e<d-1){a+=" "}}return a},textShadow:S(function(b){if(b=="none"){return null}var d=[],a={},g,f=0;var e=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(g=e.exec(b)){if(g[0]==","){d.push(a);a={};f=0}else{if(g[1]){a.color=g[1]}else{a[["offX","offY","blur"][f++]]=g[2]}}}d.push(a);return d}),textTransform:(function(){var a={uppercase:function(b){return b.toUpperCase()},lowercase:function(b){return b.toLowerCase()},capitalize:function(b){return b.replace(/\b./g,function(d){return d.toUpperCase()})}};return function(b,d){var e=a[d.get("textTransform")];return e?e(b):b}})(),whiteSpace:(function(){var a={inline:1,"inline-block":1,"run-in":1};var b=/^\s+/,d=/\s+$/;return function(e,g,f,h){if(h){if(h.nodeName.toLowerCase()=="br"){e=e.replace(b,"")}}if(a[g.get("display")]){return e}if(!f.previousSibling){e=e.replace(b,"")}if(!f.nextSibling){e=e.replace(d,"")}return e}})()};O.ready=(function(){var d=!O.recognizesMedia("all"),j=false;var a=[],g=function(){d=true;for(var k;k=a.shift();k()){}};var f=V("link"),e=V("style");function b(k){return k.disabled||h(k.sheet,k.media||"screen")}function h(q,n){if(!O.recognizesMedia(n||"all")){return true}if(!q||q.disabled){return false}try{var m=q.cssRules,o;if(m){search:for(var k=0,l=m.length;o=m[k],k<l;++k){switch(o.type){case 2:break;case 3:if(!h(o.styleSheet,o.media.mediaText)){return false}break;default:break search}}}}catch(p){}return true}function i(){if(document.createStyleSheet){return true}var k,l;for(l=0;k=f[l];++l){if(k.rel.toLowerCase()=="stylesheet"&&!b(k)){return false}}for(l=0;k=e[l];++l){if(!b(k)){return false}}return true}D.ready(function(){if(!j){j=O.getStyle(document.body).isUsable()}if(d||(j&&i())){g()}else{setTimeout(arguments.callee,10)}});return function(k){if(d){k()}else{a.push(k)}}})();function I(a){var b=this.face=a.face,d={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=a.glyphs;this.w=a.w;this.baseSize=parseInt(b["units-per-em"],10);this.family=b["font-family"].toLowerCase();this.weight=b["font-weight"];this.style=b["font-style"]||"normal";this.viewBox=(function(){var e=b.bbox.split(/\s+/);var f={minX:parseInt(e[0],10),minY:parseInt(e[1],10),maxX:parseInt(e[2],10),maxY:parseInt(e[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(b.ascent,10);this.descent=-parseInt(b.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(i,g,p){var f=this.glyphs,h,j,n,e=[],o=0,k=-1,l=-1,m;while(m=i[++k]){h=f[m]||this.missingGlyph;if(!h){continue}if(j){o-=n=j[m]||0;e[l]-=n}o+=e[++l]=~~(h.w||this.w)+g+(d[m]?p:0);j=h.k}e.total=o;return e}}function W(){var a={},b={oblique:"italic",italic:"oblique"};this.add=function(d){(a[d.style]||(a[d.style]={}))[d.weight]=d};this.get=function(g,f){var h=a[g]||a[b[g]]||a.normal||a.italic||a.oblique;if(!h){return null}f={normal:400,bold:700}[f]||parseInt(f,10);if(h[f]){return h[f]}var j={1:1,99:0}[f%100],d=[],i,k;if(j===undefined){j=f>400}if(f==500){f=400}for(var e in h){if(!R(h,e)){continue}e=parseInt(e,10);if(!i||e<i){i=e}if(!k||e>k){k=e}d.push(e)}if(f<i){f=i}if(f>k){f=k}d.sort(function(m,l){return(j?(m>=f&&l>=f)?m<l:m>l:(m<=f&&l<=f)?m>l:m<l)?-1:1});return h[d[0]]}}function J(){function b(g,f){if(g.contains){return g.contains(f)}return g.compareDocumentPosition(f)&16}function e(f){var g=f.relatedTarget;if(!g||b(this,g)){return}d(this,f.type=="mouseover")}function a(f){d(this,f.type=="mouseenter")}function d(g,f){setTimeout(function(){var h=Y.get(g).options;P.replace(g,f?U(h,h.hover):h,true)},10)}this.attach=function(f){if(f.onmouseenter===undefined){K(f,"mouseover",e);K(f,"mouseout",e)}else{K(f,"mouseenter",a);K(f,"mouseleave",a)}}}function G(){var b=[],a={};function d(e){var h=[],f;for(var g=0;f=e[g];++g){h[g]=b[a[f]]}return h}this.add=function(e,f){a[e]=b.push(f)-1};this.repeat=function(){var g=arguments.length?d(arguments):b,f;for(var e=0;f=g[e++];){P.replace(f[0],f[1],true)}}}function M(){var a={},d=0;function b(e){return e.cufid||(e.cufid=++d)}this.get=function(f){var e=b(f);return a[e]||(a[e]={})}}function ab(d){var a={},b={};this.extend=function(f){for(var e in f){if(R(f,e)){a[e]=f[e]}}return this};this.get=function(e){return a[e]!=undefined?a[e]:d[e]};this.getSize=function(e,f){return b[e]||(b[e]=new O.Size(this.get(e),f))};this.isUsable=function(){return !!d}}function K(b,d,a){if(b.addEventListener){b.addEventListener(d,a,false)}else{if(b.attachEvent){b.attachEvent("on"+d,function(){return a.call(b,window.event)})}}}function F(b,d){var a=Y.get(b);if(a.options){return b}if(d.hover&&d.hoverables[b.nodeName.toLowerCase()]){aa.attach(b)}a.options=d;return b}function S(b){var a={};return function(d){if(!R(a,d)){a[d]=b.apply(null,arguments)}return a[d]}}function Z(a,b){var f=O.quotedList(b.get("fontFamily").toLowerCase()),d;for(var e=0;d=f[e];++e){if(T[d]){return T[d].get(b.get("fontStyle"),b.get("fontWeight"))}}return null}function V(a){return document.getElementsByTagName(a)}function R(a,b){return a.hasOwnProperty(b)}function U(){var e={},f,a;for(var b=0,d=arguments.length;f=arguments[b],b<d;++b){for(a in f){if(R(f,a)){e[a]=f[a]}}}return e}function N(n,f,b,e,m,a){var h=document.createDocumentFragment(),k;if(f===""){return h}var g=e.separate;var j=f.split(L[g]),d=(g=="words");if(d&&H){if(/^\s/.test(f)){j.unshift("")}if(/\s$/.test(f)){j.push("")}}for(var i=0,l=j.length;i<l;++i){k=B[e.engine](n,d?O.textAlign(j[i],b,i,l):j[i],b,e,m,a,i<l-1);if(k){h.appendChild(k)}}return h}function Q(a,e){var b=a.nodeName.toLowerCase();if(e.ignore[b]){return}var m=!e.textless[b];var d=O.getStyle(F(a,e)).extend(e);var l=Z(a,d),k,g,i,j,f,h;if(!l){return}for(k=a.firstChild;k;k=i){g=k.nodeType;i=k.nextSibling;if(m&&g==3){if(j){j.appendData(k.data);a.removeChild(k)}else{j=k}if(i){continue}}if(j){a.replaceChild(N(l,O.whiteSpace(j.data,d,j,h),d,e,k,a),j);j=null}if(g==1){if(k.firstChild){if(k.nodeName.toLowerCase()=="cufon"){B[e.engine](l,null,d,e,k,a)}else{arguments.callee(k,e)}}h=k}}}var H=" ".split(/\s+/).length==0;var Y=new M();var aa=new J();var C=new G();var X=false;var B={},T={},E={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(a){return jQuery(a)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(a){return $$(a)})||(window.$&&function(a){return $(a)})||(document.querySelectorAll&&function(a){return document.querySelectorAll(a)})||V),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var L={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};P.now=function(){D.ready();return P};P.refresh=function(){C.repeat.apply(C,arguments);return P};P.registerEngine=function(a,b){if(!b){return P}B[a]=b;return P.set("engine",a)};P.registerFont=function(a){if(!a){return P}var d=new I(a),b=d.family;if(!T[b]){T[b]=new W()}T[b].add(d);return P.set("fontFamily",'"'+b+'"')};P.replace=function(a,b,d){b=U(E,b);if(!b.engine){return P}if(!X){O.addClass(D.root(),"cufon-active cufon-loading");O.ready(function(){O.addClass(O.removeClass(D.root(),"cufon-loading"),"cufon-ready")});X=true}if(b.hover){b.forceHitArea=true}if(b.autoDetect){delete b.fontFamily}if(typeof b.textShadow=="string"){b.textShadow=O.textShadow(b.textShadow)}if(typeof b.color=="string"&&/^-/.test(b.color)){b.textGradient=O.gradient(b.color)}else{delete b.textGradient}if(!d){C.add(a,arguments)}if(a.nodeType||typeof a=="string"){a=[a]}O.ready(function(){for(var f=0,g=a.length;f<g;++f){var e=a[f];if(typeof e=="string"){P.replace(b.selector(e),b,true)}else{Q(e,b)}}});return P};P.set=function(b,a){E[b]=a;return P};return P})();Cufon.registerEngine("vml",(function(){var n=document.namespaces;if(!n){return}n.add("cvml","urn:schemas-microsoft-com:vml");n=null;var i=document.createElement("cvml:shape");i.style.behavior="url(#default#VML)";if(!i.coordsize){return}i=null;var k=(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:'+(k?"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 p(b,a){return j(b,/(?:em|ex|%)$|^[a-z-]+$/i.test(a)?"1em":a)}function j(b,a){if(a==="0"){return 0}if(/px$/i.test(a)){return parseFloat(a)}var d=b.style.left,e=b.runtimeStyle.left;b.runtimeStyle.left=b.currentStyle.left;b.style.left=a.replace("%","em");var f=b.style.pixelLeft;b.style.left=d;b.runtimeStyle.left=e;return f}function m(b,d,e,g){var f="computed"+g,a=d[f];if(isNaN(a)){a=d.get(g);d[f]=a=(a=="normal")?0:~~e.convertFrom(j(b,a))}return a}var l={};function o(f){var e=f.id;if(!l[e]){var h=f.stops,g=document.createElement("cvml:fill"),d=[];g.type="gradient";g.angle=180;g.focus="0";g.method="sigma";g.color=h[0][1];for(var a=1,b=h.length-1;a<b;++a){d.push(h[a][0]*100+"% "+h[a][1])}g.colors=d.join(",");g.color2=h[b][1];l[e]=g}return l[e]}return function(aI,ay,b,aG,ar,aF,e){var aY=(ay===null);if(aY){ay=ar.alt}var au=aI.viewBox;var aW=b.computedFontSize||(b.computedFontSize=new Cufon.CSS.Size(p(aF,b.get("fontSize"))+"px",aI.baseSize));var aN,aV;if(aY){aN=ar;aV=ar.firstChild}else{aN=document.createElement("cufon");aN.className="cufon cufon-vml";aN.alt=ay;aV=document.createElement("cufoncanvas");aN.appendChild(aV);if(aG.printable){var a=document.createElement("cufontext");a.appendChild(document.createTextNode(ay));aN.appendChild(a)}if(!e){aN.appendChild(document.createElement("cvml:shape"))}}var av=aN.style;var ak=aV.style;var a0=aW.convert(au.height),aC=Math.ceil(a0);var f=aC/a0;var am=f*Cufon.CSS.fontStretch(b.get("fontStretch"));var g=au.minX,h=au.minY;ak.height=aC;ak.top=Math.round(aW.convert(h-aI.ascent));ak.left=Math.round(aW.convert(g));av.height=aW.convert(aI.height)+"px";var aA=b.get("color");var az=Cufon.CSS.textTransform(ay,b).split("");var aq=aI.spacing(az,m(aF,b,aW,"letterSpacing"),m(aF,b,aW,"wordSpacing"));if(!aq.length){return null}var a1=aq.total;var aO=-g+a1+(au.width-aq[aq.length-1]);var ax=aW.convert(aO*am),d=Math.round(ax);var an=aO+","+au.height,aZ;var at="r"+an+"ns";var aR=aG.textGradient&&o(aG.textGradient);var aX=aI.glyphs,aj=0;var aw=aG.textShadow;var aK=-1,aL=0,aP;while(aP=az[++aK]){var aE=aX[az[aK]]||aI.missingGlyph,aQ;if(!aE){continue}if(aY){aQ=aV.childNodes[aL];while(aQ.firstChild){aQ.removeChild(aQ.firstChild)}}else{aQ=document.createElement("cvml:shape");aV.appendChild(aQ)}aQ.stroked="f";aQ.coordsize=an;aQ.coordorigin=aZ=(g-aj)+","+h;aQ.path=(aE.d?"m"+aE.d+"xe":"")+"m"+aZ+at;aQ.fillcolor=aA;if(aR){aQ.appendChild(aR.cloneNode(false))}var aD=aQ.style;aD.width=d;aD.height=aC;if(aw){var aT=aw[0],aU=aw[1];var aH=Cufon.CSS.color(aT.color),aM;var ao=document.createElement("cvml:shadow");ao.on="t";ao.color=aH.color;ao.offset=aT.offX+","+aT.offY;if(aU){aM=Cufon.CSS.color(aU.color);ao.type="double";ao.color2=aM.color;ao.offset2=aU.offX+","+aU.offY}ao.opacity=aH.opacity||(aM&&aM.opacity)||1;aQ.appendChild(ao)}aj+=aq[aL++]}var ap=aQ.nextSibling,aS,aJ;if(aG.forceHitArea){if(!ap){ap=document.createElement("cvml:rect");ap.stroked="f";ap.className="cufon-vml-cover";aS=document.createElement("cvml:fill");aS.opacity=0;ap.appendChild(aS);aV.appendChild(ap)}aJ=ap.style;aJ.width=d;aJ.height=aC}else{if(ap){aV.removeChild(ap)}}av.width=Math.max(Math.ceil(aW.convert(a1*am)),0);if(k){var al=b.computedYAdjust;if(al===undefined){var aB=b.get("lineHeight");if(aB=="normal"){aB="1em"}else{if(!isNaN(aB)){aB+="em"}}b.computedYAdjust=al=0.5*(j(aF,aB)-parseFloat(av.height))}if(al){av.marginTop=Math.ceil(al)+"px";av.marginBottom=al+"px"}}return aN}})());Cufon.registerEngine("canvas",(function(){var g=document.createElement("canvas");if(!g||!g.getContext||!g.getContext.apply){return}g=null;var h=Cufon.CSS.supports("display","inline-block");var j=!h&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var i=document.createElement("style");i.type="text/css";i.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(j?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(h?"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(i);function k(a,s){var d=0,e=0;var t=[],b=/([mrvxe])([^a-z]*)/g,q;generate:for(var r=0;q=b.exec(a);++r){var f=q[2].split(",");switch(q[1]){case"v":t[r]={m:"bezierCurveTo",a:[d+~~f[0],e+~~f[1],d+~~f[2],e+~~f[3],d+=~~f[4],e+=~~f[5]]};break;case"r":t[r]={m:"lineTo",a:[d+=~~f[0],e+=~~f[1]]};break;case"m":t[r]={m:"moveTo",a:[d=~~f[0],e=~~f[1]]};break;case"x":t[r]={m:"closePath"};break;case"e":break generate}s[t[r].m].apply(s,t[r].a)}return t}function l(a,b){for(var d=0,e=a.length;d<e;++d){var f=a[d];b[f.m].apply(b,f.a)}}return function(f,ax,ae,aA,ar,e){var aI=(ax===null);if(aI){ax=ar.getAttribute("alt")}var au=f.viewBox;var aH=ae.getSize("fontSize",f.baseSize);var at=0,af=0,ag=0,az=0;var aw=aA.textShadow,ai=[];if(aw){for(var x=aw.length;x--;){var ao=aw[x];var aj=aH.convertFrom(parseFloat(ao.offX));var al=aH.convertFrom(parseFloat(ao.offY));ai[x]=[aj,al];if(al<at){at=al}if(aj>af){af=aj}if(al>ag){ag=al}if(aj<az){az=aj}}}var a=Cufon.CSS.textTransform(ax,ae).split("");var ap=f.spacing(a,~~aH.convertFrom(parseFloat(ae.get("letterSpacing"))||0),~~aH.convertFrom(parseFloat(ae.get("wordSpacing"))||0));if(!ap.length){return null}var aK=ap.total;af+=au.width-ap[ap.length-1];az+=au.minX;var aB,aG;if(aI){aB=ar;aG=ar.firstChild}else{aB=document.createElement("cufon");aB.className="cufon cufon-canvas";aB.setAttribute("alt",ax);aG=document.createElement("canvas");aB.appendChild(aG);if(aA.printable){var ab=document.createElement("cufontext");ab.appendChild(document.createTextNode(ax));aB.appendChild(ab)}}var av=aB.style;var am=aG.style;var aJ=aH.convert(au.height);var b=Math.ceil(aJ);var ah=b/aJ;var an=ah*Cufon.CSS.fontStretch(ae.get("fontStretch"));var ak=aK*an;var ad=Math.ceil(aH.convert(ak+af-az));var aF=Math.ceil(aH.convert(au.height-at+ag));aG.width=ad;aG.height=aF;am.width=ad+"px";am.height=aF+"px";at+=au.minY;am.top=Math.round(aH.convert(at-f.ascent))+"px";am.left=Math.round(aH.convert(az))+"px";var aC=Math.max(Math.ceil(aH.convert(ak)),0)+"px";if(h){av.width=aC;av.height=aH.convert(f.height)+"px"}else{av.paddingLeft=aC;av.paddingBottom=(aH.convert(f.height)-1)+"px"}var d=aG.getContext("2d"),aq=aJ/au.height;d.scale(aq,aq*ah);d.translate(-az,-at);d.save();function y(){var m=f.glyphs,p,n=-1,o=-1,q;d.scale(an,1);while(q=a[++n]){var p=m[a[n]]||f.missingGlyph;if(!p){continue}if(p.d){d.beginPath();if(p.code){l(p.code,d)}else{p.code=k("m"+p.d,d)}d.fill()}d.translate(ap[++o],0)}d.restore()}if(aw){for(var x=aw.length;x--;){var ao=aw[x];d.save();d.fillStyle=ao.color;d.translate.apply(d,ai[x]);y()}}var aD=aA.textGradient;if(aD){var ay=aD.stops,aE=d.createLinearGradient(0,au.minY,0,au.maxY);for(var x=0,ac=ay.length;x<ac;++x){aE.addColorStop.apply(aE,ay[x])}d.fillStyle=aE}else{d.fillStyle=ae.get("color")}y();return aB}})());
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright  2000 Adobe Systems Incorporated. All Rights Reserved. U.S. Patent
 * Des. pending.
 * 
 * Trademark:
 * Myriad is a registered trademark of Adobe Systems Incorporated.
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({w:173,face:{"font-family":"Sans","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 3 4 3 2 2 4",ascent:"270",descent:"-90","x-height":"4",bbox:"-22 -316 296 90","underline-thickness":"18","underline-position":"-27",stemh:"24",stemv:"32","unicode-range":"U+0020-U+00FF"},glyphs:{" ":{w:76},"\u00a0":{w:76},"!":{d:"48,-69r-24,0r-5,-174r34,0xm36,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,21,10,21,23v0,13,-8,22,-21,22",w:72},'"':{d:"13,-249r31,0r-6,86r-19,0xm67,-249r31,0r-6,86r-20,0",w:110,k:{",":41,".":41,A:22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,J:21,M:2,T:-6,V:-6,W:-6,c:3,d:3,e:3,o:3,q:3,"\u00f8":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,f:-9,"\u00df":-9,g:4,t:-9,v:-8,w:-8,y:-8,"\u00fd":-8,"\u00ff":-8}},"#":{d:"62,-92r38,0r7,-52r-38,0xm50,0r-22,0r10,-71r-30,0r0,-21r33,0r7,-52r-31,0r0,-21r34,0r9,-69r21,0r-9,69r38,0r9,-69r21,0r-9,69r30,0r0,21r-33,0r-7,52r31,0r0,21r-34,0r-9,71r-22,0r9,-71r-37,0",w:168},"$":{d:"96,31r-23,0r0,-36v-21,0,-42,-7,-55,-16r9,-24v25,21,96,23,94,-20v0,-20,-13,-32,-40,-43v-37,-14,-60,-32,-60,-63v0,-30,21,-53,54,-58r0,-36r23,0r0,35v22,1,37,7,47,13r-9,24v-8,-4,-23,-13,-46,-13v-28,0,-38,16,-38,31v0,18,13,31,45,41v73,23,76,113,-1,128r0,37"},"%":{d:"62,-238v32,0,54,25,54,70v0,49,-26,73,-56,73v-30,0,-55,-23,-55,-70v0,-47,26,-73,57,-73xm91,-167v0,-28,-8,-53,-31,-52v-19,0,-30,23,-30,53v0,30,11,52,31,52v21,0,30,-22,30,-53xm78,4r-20,0r137,-242r21,0xm215,-141v32,0,54,24,54,69v0,98,-112,100,-111,4v0,-47,26,-73,57,-73xm213,-122v-19,0,-30,23,-30,53v0,30,10,52,30,52v21,0,31,-22,31,-53v0,-28,-9,-52,-31,-52",w:274},"&":{d:"211,0r-37,0v-7,-7,-14,-13,-23,-23v-44,49,-145,27,-145,-41v0,-34,21,-55,47,-72v-36,-41,-23,-109,42,-111v30,0,53,20,53,52v0,27,-16,45,-53,66r59,67v11,-17,18,-39,23,-70r29,0v-6,38,-17,68,-35,89xm36,-69v0,53,74,63,100,27r-68,-76v-13,8,-32,23,-32,49xm121,-194v0,-15,-8,-32,-29,-31v-41,2,-34,58,-12,79v25,-14,41,-27,41,-48",w:207},"(":{d:"65,-250r24,0v-26,36,-45,82,-45,148v0,64,20,110,45,146r-24,0v-23,-30,-47,-77,-47,-147v0,-71,24,-117,47,-147",w:91,k:{J:-6,T:-17,V:-18,W:-18,Y:-15,"\u00dd":-15,A:4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,C:4,G:4,O:4,Q:4,"\u00d8":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,X:-4,j:-20}},")":{d:"26,44r-24,0v57,-62,59,-232,0,-294r24,0v23,30,47,76,47,147v0,71,-24,116,-47,147",w:91},"*":{d:"91,-247r22,13r-34,45r54,-7r0,25v-17,-1,-38,-7,-54,-6r34,43r-22,13v-8,-16,-13,-35,-23,-50r-23,50r-21,-13r35,-44r-54,7r0,-25v17,1,38,7,53,6r-34,-44r22,-12r23,50",w:138},"+":{d:"90,-192r23,0r0,85r82,0r0,22r-82,0r0,85r-23,0r0,-85r-81,0r0,-22r81,0r0,-85",w:203},",":{d:"23,42r-23,3v8,-22,18,-61,22,-87r35,-3v-9,31,-24,70,-34,87",w:63,k:{'"':37,"'":37}},"-":{d:"0,-109r89,0r0,23r-89,0r0,-23",w:88},"\u00ad":{d:"0,-109r89,0r0,23r-89,0r0,-23",w:88,k:{J:7,T:18,V:4,W:4,Y:18,"\u00dd":18,c:-6,d:-6,e:-6,o:-6,q:-6,"\u00f8":-6,"\u00e7":-6,"\u00e9":-6,"\u00ea":-6,"\u00eb":-6,"\u00e8":-6,"\u00f3":-6,"\u00f4":-6,"\u00f6":-6,"\u00f2":-6,"\u00f5":-6,g:-5,v:2,w:2,y:2,"\u00fd":2,"\u00ff":2,A:1,"\u00c6":1,"\u00c1":1,"\u00c2":1,"\u00c4":1,"\u00c0":1,"\u00c5":1,"\u00c3":1,C:-5,G:-5,O:-5,Q:-5,"\u00d8":-5,"\u00c7":-5,"\u00d3":-5,"\u00d4":-5,"\u00d6":-5,"\u00d2":-5,"\u00d5":-5,X:8}},".":{d:"56,-19v0,13,-8,23,-22,23v-12,0,-21,-10,-21,-23v0,-13,9,-22,22,-22v13,0,21,9,21,22",w:63,k:{'"':37,"'":37}},"/":{d:"18,14r-24,0r100,-261r25,0",w:112},"0":{d:"167,-120v0,80,-30,124,-82,124v-46,0,-77,-43,-77,-120v0,-79,33,-122,81,-122v49,0,78,43,78,118xm87,-21v32,0,48,-37,48,-97v0,-58,-15,-95,-48,-95v-29,0,-47,36,-47,95v0,61,18,97,47,97"},"1":{d:"80,0r-1,-204r-41,21r-6,-24v25,-10,39,-31,78,-27r0,234r-30,0"},"2":{d:"160,0r-149,0v-4,-27,13,-32,25,-44v58,-58,87,-87,87,-122v0,-24,-11,-46,-46,-46v-21,0,-39,11,-50,20r-10,-22v16,-13,39,-24,66,-24v50,0,71,35,71,68v0,47,-54,101,-99,144r105,0r0,26"},"3":{d:"10,-12r8,-24v9,5,30,14,52,14v40,0,53,-25,53,-45v-1,-39,-37,-50,-78,-47r0,-24v35,2,66,-5,70,-39v5,-40,-68,-42,-88,-20r-9,-23v13,-9,37,-18,62,-18v82,0,87,90,24,111v27,8,52,26,52,61v0,37,-29,70,-85,70v-26,0,-49,-8,-61,-16"},"4":{d:"139,0r-30,0r0,-64r-109,0r0,-21r104,-149r35,0r0,145r32,0r0,25r-32,0r0,64xm109,-89r0,-114v-23,43,-50,75,-77,114r77,0"},"5":{d:"52,-147v54,-8,99,15,103,71v4,69,-92,99,-145,66r8,-25v32,22,110,17,105,-38v7,-41,-52,-58,-100,-49r16,-112r111,0r0,27r-89,0"},"6":{d:"144,-238r0,26v-60,-1,-104,42,-104,85v34,-49,127,-27,127,48v0,43,-29,83,-78,83v-96,0,-99,-158,-43,-205v25,-21,56,-36,98,-37xm135,-77v0,-66,-97,-70,-97,-11v0,39,19,67,52,67v27,0,45,-23,45,-56"},"7":{d:"15,-234r148,0r0,21r-102,213r-33,0r102,-208r-115,0r0,-26"},"8":{d:"89,-238v77,2,94,84,30,112v27,14,47,33,47,62v0,41,-35,68,-80,68v-90,0,-102,-102,-32,-126v-64,-29,-38,-118,35,-116xm87,-19v28,0,47,-18,47,-42v0,-28,-20,-42,-52,-51v-55,12,-58,91,5,93xm91,-135v43,-8,53,-79,-4,-80v-26,0,-40,17,-40,37v0,23,17,36,44,43"},"9":{d:"29,4r0,-26v59,1,101,-32,105,-86v-36,49,-125,20,-125,-47v0,-44,32,-83,80,-83v48,0,78,39,78,99v0,94,-49,141,-138,143xm41,-157v0,60,94,66,94,14v0,-40,-15,-72,-49,-71v-27,0,-45,24,-45,57"},":":{d:"35,-123v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,21,10,21,23v0,13,-8,22,-21,22xm35,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,21,10,21,23v0,13,-8,22,-21,22",w:63},";":{d:"23,42r-22,2v8,-21,17,-60,21,-86r35,-3v-9,31,-24,70,-34,87xm37,-123v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22",w:63},"<":{d:"18,-86r0,-19r167,-87r0,25r-140,72r140,70r0,25",w:203},"=":{d:"195,-121r-186,0r0,-22r186,0r0,22xm195,-51r-186,0r0,-21r186,0r0,21",w:203},">":{d:"185,-106r0,20r-167,86r0,-25r142,-71r-142,-71r0,-25",w:203},"?":{d:"125,-194v3,45,-62,73,-52,125r-28,0v-13,-46,45,-85,47,-121v2,-34,-49,-39,-70,-20r-9,-22v35,-30,120,-10,112,38xm59,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,21,10,21,23v0,13,-8,22,-21,22",w:135},"@":{d:"112,-43v36,0,47,-52,52,-89v-40,-13,-76,21,-76,62v0,16,8,27,24,27xm177,8r6,15v-78,40,-173,-3,-173,-98v0,-74,51,-138,131,-138v63,0,105,44,105,104v0,54,-30,86,-64,86v-17,0,-24,-15,-28,-32v-21,43,-88,45,-90,-14v-2,-58,64,-103,124,-78r-12,66v-5,27,-1,40,11,40v18,1,39,-25,39,-66v0,-53,-31,-90,-87,-90v-59,0,-108,47,-108,120v0,82,80,120,146,85",w:254},A:{d:"147,-76r-86,0r-25,76r-32,0r82,-243r38,0r83,243r-34,0xm68,-101r73,0r-38,-114v-8,39,-24,77,-35,114",w:209,k:{J:-7,M:1,T:28,V:19,W:19,Y:28,"\u00dd":28,a:-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,g:4,s:2,t:4,v:8,w:8,y:8,"\u00fd":8,"\u00ff":8,C:5,G:5,O:5,Q:5,"\u00d8":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,X:5,j:1,'"':21,"'":21,")":3,"]":3,"}":3,U:10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,f:3,"\u00df":3,u:4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,z:-5}},B:{d:"175,-69v0,70,-85,76,-153,68r0,-238v57,-11,144,-10,144,55v0,25,-18,43,-41,54v23,5,50,25,50,61xm53,-218r0,78v42,4,81,-8,81,-41v0,-38,-47,-43,-81,-37xm53,-116r0,92v40,6,90,0,89,-45v0,-42,-43,-50,-89,-47",w:184,k:{T:3,V:-1,W:-1,",":5,".":5,"\u00ad":-2}},C:{d:"185,-33r6,25v-11,6,-34,12,-64,12v-68,0,-119,-43,-119,-123v0,-98,97,-150,184,-117r-8,26v-67,-29,-143,7,-143,90v0,79,75,116,144,87",w:198,k:{c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,v:7,w:7,y:7,"\u00fd":7,"\u00ff":7,")":-6,"]":-6,"}":-6,A:-1,"\u00c6":-1,"\u00c1":-1,"\u00c2":-1,"\u00c4":-1,"\u00c0":-1,"\u00c5":-1,"\u00c3":-1,C:8,G:8,O:8,Q:8,"\u00d8":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,J:-1,T:-10,V:-4,W:-4,a:3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,u:4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,z:-1,"\u00ab":4}},D:{d:"221,-127v0,106,-89,142,-199,126r0,-238v102,-18,199,7,199,112xm53,-216r0,192v81,9,135,-24,135,-102v0,-70,-62,-107,-135,-90",w:228,k:{Y:10,"\u00dd":10,c:-1,d:-1,e:-1,o:-1,q:-1,"\u00f8":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,v:-5,w:-5,y:-5,"\u00fd":-5,"\u00ff":-5,")":3,"]":3,"}":3,A:5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,T:9,"\u00ab":-5,",":12,".":12,"\u00ad":-5,X:10,f:-6,"\u00df":-6,g:-2,j:-2,t:-6,x:2}},E:{d:"147,-140r0,26r-94,0r0,88r105,0r0,26r-136,0r0,-243r131,0r0,27r-100,0r0,76r94,0",w:166,k:{c:1,d:1,e:1,o:1,q:1,"\u00f8":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,J:-6,T:-6,V:-3,W:-3,u:3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,",":1,".":1,g:2}},F:{d:"22,0r0,-243r130,0r0,27r-99,0r0,80r92,0r0,26r-92,0r0,110r-31,0",w:164,k:{"\u00ef":9,c:11,d:11,e:11,o:11,q:11,"\u00f8":11,"\u00e7":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00e8":11,"\u00f3":11,"\u00f4":11,"\u00f6":11,"\u00f2":11,"\u00f5":11,v:8,w:8,y:8,"\u00fd":8,"\u00ff":8,A:28,"\u00c6":28,"\u00c1":28,"\u00c2":28,"\u00c4":28,"\u00c0":28,"\u00c5":28,"\u00c3":28,J:31,a:16,"\u00e6":16,"\u00e1":16,"\u00e2":16,"\u00e4":16,"\u00e0":16,"\u00e5":16,"\u00e3":16,u:13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"\u00ab":5,",":35,".":35,g:6,":":5,";":5,M:6,b:6,h:6,k:6,l:6,i:9,m:9,n:9,p:9,r:9,"\u00ed":9,"\u00ee":9,"\u00ec":9,"\u00f1":9,"\u00bb":5}},G:{d:"132,3v-73,1,-124,-46,-124,-123v0,-94,102,-150,192,-114r-8,26v-66,-30,-151,4,-151,87v0,78,68,114,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,5,-42,14,-75,14",w:221,k:{c:-2,d:-2,e:-2,o:-2,q:-2,"\u00f8":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,a:-3,"\u00e6":-3,"\u00e1":-3,"\u00e2":-3,"\u00e4":-3,"\u00e0":-3,"\u00e5":-3,"\u00e3":-3}},H:{d:"22,-243r31,0r0,102r118,0r0,-102r31,0r0,243r-31,0r0,-114r-118,0r0,114r-31,0r0,-243",w:223,k:{Y:3,"\u00dd":3,v:-3,w:-3,y:-3,"\u00fd":-3,"\u00ff":-3,z:-4,f:-4,"\u00df":-4,j:-3,t:-6,x:-2,b:-4,h:-4,k:-4,l:-4,i:-4,m:-4,n:-4,p:-4,r:-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4}},I:{d:"22,-243r31,0r0,243r-31,0r0,-243",w:75,k:{Y:3,"\u00dd":3,v:-3,w:-3,y:-3,"\u00fd":-3,"\u00ff":-3,z:-4,f:-4,"\u00df":-4,j:-3,t:-6,x:-2,b:-4,h:-4,k:-4,l:-4,i:-4,m:-4,n:-4,p:-4,r:-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4}},J:{d:"71,-83r0,-160r32,0r0,163v1,79,-50,94,-107,78r4,-25v39,10,71,5,71,-56",w:122,k:{v:-4,w:-4,y:-4,"\u00fd":-4,"\u00ff":-4,")":-15,"]":-15,"}":-15,",":4,".":4}},K:{d:"22,0r0,-243r31,0r1,117v29,-42,63,-78,94,-117r38,0r-87,103r94,140r-37,0r-79,-119r-24,26r0,93r-31,0",w:184,k:{")":-8,"]":-8,"}":-8,",":-6,".":-6,"\u00ad":6}},L:{d:"22,0r0,-243r31,0r0,217r104,0r0,26r-135,0",w:159,k:{"\u00d8":14,C:14,G:14,O:14,Q:14,"\u00c7":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,J:-4,T:32,V:21,W:21,Y:30,"\u00dd":30,u:5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,v:10,w:10,y:10,"\u00fd":10,"\u00ff":10,"\u00ab":14,'"':35,"'":35,"\u00ad":15,U:13,"\u00da":13,"\u00db":13,"\u00dc":13,"\u00d9":13,c:5,d:5,e:5,o:5,q:5,"\u00f8":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,t:1}},M:{d:"232,0r-10,-211r-74,210r-23,0r-40,-116v-12,-34,-21,-65,-28,-94r-12,211r-30,0r17,-243r40,0r42,118v11,29,16,59,25,82v17,-63,47,-137,69,-200r40,0r15,243r-31,0",w:278,k:{A:4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,T:4,a:-2,"\u00e6":-2,"\u00e1":-2,"\u00e2":-2,"\u00e4":-2,"\u00e0":-2,"\u00e5":-2,"\u00e3":-2,i:-4,m:-4,n:-4,p:-4,r:-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,v:-3,w:-3,y:-3,"\u00fd":-3,"\u00ff":-3,"\u00b5":-1,"\u00ad":-2,c:-2,d:-2,e:-2,o:-2,q:-2,"\u00f8":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2,j:-4}},N:{d:"51,0r-29,0r0,-243r35,0v39,65,89,133,120,202r-2,-202r29,0r0,243r-32,0r-77,-123v-18,-27,-32,-57,-46,-81",w:226,k:{Y:3,"\u00dd":3,v:-3,w:-3,y:-3,"\u00fd":-3,"\u00ff":-3,z:-4,f:-4,"\u00df":-4,j:-3,t:-6,x:-2,b:-4,h:-4,k:-4,l:-4,i:-4,m:-4,n:-4,p:-4,r:-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4}},O:{d:"117,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,109,51,109,123v0,83,-50,128,-112,128xm118,-22v50,0,78,-45,78,-100v0,-48,-25,-99,-77,-99v-52,0,-78,48,-78,101v0,51,28,98,77,98",w:237,k:{Y:10,"\u00dd":10,c:-1,d:-1,e:-1,o:-1,q:-1,"\u00f8":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,v:-5,w:-5,y:-5,"\u00fd":-5,"\u00ff":-5,")":3,"]":3,"}":3,A:5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,T:9,"\u00ab":-5,",":12,".":12,"\u00ad":-5,X:10,f:-6,"\u00df":-6,g:-2,j:-2,t:-6,x:2}},P:{d:"172,-174v3,61,-58,88,-119,76r0,98r-31,0r0,-239v15,-3,35,-5,60,-5v55,0,88,22,90,70xm53,-217r0,94v44,9,87,-7,87,-49v0,-43,-48,-54,-87,-45",w:180,k:{":":4,";":4,A:30,"\u00c6":30,"\u00c1":30,"\u00c2":30,"\u00c4":30,"\u00c0":30,"\u00c5":30,"\u00c3":30,J:27,Y:3,"\u00dd":3,Z:11,a:9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e4":9,"\u00e0":9,"\u00e5":9,"\u00e3":9,b:2,h:2,k:2,l:2,g:9,i:6,m:6,n:6,p:6,r:6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"\u00f1":6,u:5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5,v:-1,w:-1,y:-1,"\u00fd":-1,"\u00ff":-1,"\u00ab":8,"\u00b5":4,"\u00ad":6,c:9,d:9,e:9,o:9,q:9,"\u00f8":9,"\u00e7":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,t:-2,",":50,".":50,M:4,X:5,s:8}},Q:{d:"222,35v-39,-9,-73,-22,-108,-31v-58,-2,-106,-45,-106,-123v0,-78,46,-128,112,-128v66,0,109,51,109,123v0,64,-32,99,-69,118v24,6,50,11,71,15xm118,-22v50,0,78,-45,78,-100v0,-49,-25,-99,-76,-99v-53,0,-79,48,-79,101v0,51,28,98,77,98",w:237,k:{Y:10,"\u00dd":10,c:-1,d:-1,e:-1,o:-1,q:-1,"\u00f8":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,v:-5,w:-5,y:-5,"\u00fd":-5,"\u00ff":-5,")":3,"]":3,"}":3,A:5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,T:9,"\u00ab":-5,",":12,".":12,"\u00ad":-5,X:10,f:-6,"\u00df":-6,g:-2,j:-2,t:-6,x:2}},R:{d:"22,-239v64,-11,150,-9,150,61v0,33,-23,51,-46,62v37,3,43,98,54,116r-32,0v-4,-7,-10,-28,-16,-58v-8,-44,-32,-49,-79,-47r0,105r-31,0r0,-239xm53,-217r0,88v46,4,87,-6,87,-46v0,-43,-51,-50,-87,-42",w:182,k:{A:-2,"\u00c6":-2,"\u00c1":-2,"\u00c2":-2,"\u00c4":-2,"\u00c0":-2,"\u00c5":-2,"\u00c3":-2,T:-3,V:-6,W:-6,Y:4,"\u00dd":4,a:-4,"\u00e6":-4,"\u00e1":-4,"\u00e2":-4,"\u00e4":-4,"\u00e0":-4,"\u00e5":-4,"\u00e3":-4,b:-3,h:-3,k:-3,l:-3,i:-4,m:-4,n:-4,p:-4,r:-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4,v:-5,w:-5,y:-5,"\u00fd":-5,"\u00ff":-5,c:-1,d:-1,e:-1,o:-1,q:-1,"\u00f8":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,t:-7,X:-2}},S:{d:"10,-12r8,-26v29,23,107,21,107,-26v0,-23,-13,-36,-46,-48v-40,-14,-64,-34,-64,-68v0,-59,86,-81,132,-55r-9,26v-8,-5,-24,-11,-46,-11v-33,0,-46,19,-46,36v0,22,15,36,49,46v87,26,82,142,-23,142v-23,0,-49,-7,-62,-16",w:166,k:{"\u00ad":-2,c:-2,d:-2,e:-2,o:-2,q:-2,"\u00f8":-2,"\u00e7":-2,"\u00e9":-2,"\u00ea":-2,"\u00eb":-2,"\u00e8":-2,"\u00f3":-2,"\u00f4":-2,"\u00f6":-2,"\u00f2":-2,"\u00f5":-2}},T:{d:"68,0r0,-216r-74,0r0,-27r180,0r0,27r-74,0r0,216r-32,0",w:168,k:{"\u00ec":16,"\u00ee":16,"\u00e8":26,i:16,"\u00ef":16,"\u00ed":16,"\u00e0":23,v:14,w:14,y:14,"\u00fd":14,"\u00ff":14,'"':-6,"'":-6,")":-22,"]":-22,"}":-22,",":22,".":22,"\u00ad":18,":":9,";":9,A:27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,C:10,G:10,O:10,Q:10,"\u00d8":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,J:15,S:2,T:-14,V:-14,W:-14,X:-8,Y:-10,"\u00dd":-10,a:23,"\u00e6":23,"\u00e1":23,"\u00e2":23,"\u00e4":23,"\u00e5":23,"\u00e3":23,b:3,h:3,k:3,l:3,c:26,d:26,e:26,o:26,q:26,"\u00f8":26,"\u00e7":26,"\u00e9":26,"\u00ea":26,"\u00eb":26,"\u00f3":26,"\u00f4":26,"\u00f6":26,"\u00f2":26,"\u00f5":26,g:23,m:16,n:16,p:16,r:16,"\u00f1":16,s:19,u:16,"\u00fa":16,"\u00fb":16,"\u00fc":16,"\u00f9":16,x:12,z:18,"\u00ab":18,"\u00bb":13,"\u00b5":12}},U:{d:"22,-243r31,0r0,144v0,54,25,77,57,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143",w:222,k:{",":10,".":10,A:12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,a:1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,s:2,x:3,z:2,f:-3,"\u00df":-3,t:-1}},V:{d:"110,0r-35,0r-79,-243r34,0r64,211v18,-69,47,-143,69,-211r34,0",w:190,k:{"\u00c6":21,"\u00ef":6,v:1,w:1,y:1,"\u00fd":1,"\u00ff":1,'"':-7,"'":-7,")":-20,"]":-20,"}":-20,",":20,".":20,"\u00ad":5,":":6,";":6,A:21,"\u00c1":21,"\u00c2":21,"\u00c4":21,"\u00c0":21,"\u00c5":21,"\u00c3":21,J:8,T:-12,V:-6,W:-6,a:12,"\u00e6":12,"\u00e1":12,"\u00e2":12,"\u00e4":12,"\u00e0":12,"\u00e5":12,"\u00e3":12,b:2,h:2,k:2,l:2,c:12,d:12,e:12,o:12,q:12,"\u00f8":12,"\u00e7":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00e8":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,g:3,i:6,m:6,n:6,p:6,r:6,"\u00ed":6,"\u00ee":6,"\u00ec":6,"\u00f1":6,s:9,u:6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u00ab":9,"\u00bb":4,t:-3}},W:{d:"94,0r-32,0r-62,-243r33,0r48,207v12,-65,35,-142,52,-207r33,0r47,207v13,-68,34,-140,51,-207r32,0r-68,243r-33,0r-31,-126v-8,-31,-13,-56,-16,-80v-12,65,-37,141,-54,206",w:293,k:{"\u00c6":21,"\u00ef":6,v:1,w:1,y:1,"\u00fd":1,"\u00ff":1,'"':-7,"'":-7,")":-20,"]":-20,"}":-20,",":20,".":20,"\u00ad":5,":":6,";":6,A:21,"\u00c1":21,"\u00c2":21,"\u00c4":21,"\u00c0":21,"\u00c5":21,"\u00c3":21,J:8,T:-12,V:-6,W:-6,a:12,"\u00e6":12,"\u00e1":12,"\u00e2":12,"\u00e4":12,"\u00e0":12,"\u00e5":12,"\u00e3":12,b:2,h:2,k:2,l:2,c:12,d:12,e:12,o:12,q:12,"\u00f8":12,"\u00e7":12,"\u00e9":12,"\u00ea":12,"\u00eb":12,"\u00e8":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,g:3,i:6,m:6,n:6,p:6,r:6,"\u00ed":6,"\u00ee":6,"\u00ec":6,"\u00f1":6,s:9,u:6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"\u00ab":9,"\u00bb":4,t:-3}},X:{d:"191,0r-36,0r-60,-102r-55,102r-36,0r74,-123r-72,-120r37,0r55,98v16,-33,37,-66,55,-98r36,0r-73,118",w:194,k:{v:7,w:7,y:7,"\u00fd":7,"\u00ff":7,"\u00ad":8,A:3,"\u00c6":3,"\u00c1":3,"\u00c2":3,"\u00c4":3,"\u00c0":3,"\u00c5":3,"\u00c3":3,C:10,G:10,O:10,Q:10,"\u00d8":10,"\u00c7":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,J:-1,T:-3,V:-3,W:-3,X:5,Y:-2,"\u00dd":-2,a:2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,u:3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,"\u00ab":6}},Y:{d:"108,0r-32,0r0,-103r-77,-140r36,0r59,117v16,-38,40,-79,59,-117r36,0r-81,140r0,103",w:183,k:{"\u00e4":17,"\u00ef":-19,"\u00f6":23,"\u00eb":23,'"':-3,"'":-3}},Z:{d:"5,0r0,-18r135,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-178,0",w:188,k:{"\u00ad":10,C:8,G:8,O:8,Q:8,"\u00d8":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,J:-3,c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,u:3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,X:2}},"[":{d:"90,40r-66,0r0,-287r66,0r0,20r-41,0r0,248r41,0r0,19",w:91,k:{J:-6,T:-17,V:-18,W:-18,Y:-15,"\u00dd":-15,A:4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,C:4,G:4,O:4,Q:4,"\u00d8":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,X:-4,j:-20}},"\\":{d:"118,14r-25,0r-98,-261r25,0",w:111},"]":{d:"2,-247r66,0r0,287r-66,0r0,-19r41,0r0,-248r-41,0r0,-20",w:91},"^":{d:"188,-68r-26,0r-60,-140r-61,140r-24,0r74,-166r22,0",w:203},_:{d:"-5,27r180,0r0,18r-180,0r0,-18",w:169},a:{d:"77,-178v96,3,58,95,69,178r-28,0v-2,-7,0,-17,-4,-22v-9,14,-29,26,-54,26v-35,0,-53,-25,-53,-50v0,-42,38,-65,105,-65v0,-18,-3,-42,-40,-44v-17,0,-33,5,-45,13r-8,-21v14,-9,36,-15,58,-15xm68,-19v38,-2,49,-28,45,-70v-35,-1,-74,5,-74,39v0,21,13,31,29,31",w:162},b:{d:"19,0r2,-256r32,0r0,109v36,-58,133,-29,133,57v0,95,-95,124,-137,61r-2,29r-28,0xm102,-153v-36,-1,-53,36,-49,83v3,30,22,48,48,49v33,0,53,-27,53,-67v0,-35,-18,-65,-52,-65",w:194,k:{",":9,".":9,"\u00ad":-5,T:14,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,x:5,z:3,'"':4,"'":4}},c:{d:"140,-30r5,24v-8,4,-27,10,-50,10v-53,0,-87,-36,-87,-89v0,-70,73,-113,138,-84r-7,24v-43,-23,-106,7,-99,58v-3,56,56,78,100,57",w:150,k:{",":4,".":4,"\u00ad":-2,T:4,c:2,d:2,e:2,o:2,q:2,"\u00f8":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,t:-5,v:-6,w:-6,y:-6,"\u00fd":-6,"\u00ff":-6,"\u00bb":-5}},d:{d:"140,-256r31,0r2,256r-29,0v-1,-9,1,-23,-2,-30v-34,62,-134,32,-134,-55v0,-86,91,-119,132,-67r0,-104xm40,-86v0,73,96,88,100,13v2,-45,-7,-79,-47,-80v-33,0,-53,29,-53,67",w:192,k:{",":4,".":4}},e:{d:"161,-81r-122,0v-3,64,66,69,108,51r5,22v-11,5,-30,12,-58,12v-53,0,-86,-36,-86,-88v0,-53,31,-94,82,-94v63,0,75,53,71,97xm39,-104r92,0v0,-20,-8,-52,-43,-52v-32,0,-46,30,-49,52",w:169,k:{",":4,".":4,"\u00ad":-10,T:12}},f:{d:"24,-174v-7,-58,35,-101,89,-81r-4,25v-36,-15,-60,13,-54,56r42,0r0,24r-42,0r0,150r-31,0r0,-150r-24,0r0,-24r24,0",w:94,k:{")":-37,"]":-37,"}":-37,'"':-20,"'":-20}},g:{d:"170,-26v10,95,-78,120,-147,87r8,-25v44,31,125,12,107,-66v-9,16,-29,29,-56,29v-43,0,-74,-36,-74,-85v0,-90,99,-118,134,-62r1,-26r28,0xm92,-25v36,0,50,-36,46,-81v-3,-28,-19,-48,-46,-48v-30,0,-52,26,-52,67v0,34,18,62,52,62",w:190,k:{",":5,".":5,T:12,f:-1,"\u00df":-1,i:2,m:2,n:2,p:2,r:2,"\u00ed":2,"\u00ee":2,"\u00ef":2,"\u00ec":2,"\u00f1":2}},h:{d:"97,-152v-62,0,-40,91,-44,152r-32,0r0,-256r32,0r0,109v30,-45,116,-51,116,43r0,104r-31,0v-6,-59,22,-152,-41,-152",w:189,k:{t:1,T:18,'"':3,"'":3,v:5,w:5,y:5,"\u00fd":5,"\u00ff":5}},i:{d:"53,0r-32,0r0,-174r32,0r0,174xm36,-204v-12,0,-19,-9,-19,-19v0,-11,8,-20,20,-20v12,0,19,9,19,20v0,10,-8,19,-20,19",w:73},j:{d:"-22,51v43,-7,47,-15,47,-79r0,-146r32,0v-8,98,36,248,-75,250xm40,-204v-12,0,-19,-9,-19,-19v0,-11,8,-20,20,-20v12,0,19,9,19,20v0,10,-7,19,-20,19",w:76,k:{",":4,".":4}},k:{d:"53,-256r0,162v20,-28,45,-53,67,-80r38,0r-68,71r77,103r-38,0r-60,-84r-16,18r0,66r-32,0r0,-256r32,0",w:158,k:{",":-5,".":-5,":":-4,";":-4,T:7,i:-6,m:-6,n:-6,p:-6,r:-6,"\u00ed":-6,"\u00ee":-6,"\u00ef":-6,"\u00ec":-6,"\u00f1":-6,v:-5,w:-5,y:-5,"\u00fd":-5,"\u00ff":-5,"\u00ad":4,a:-6,"\u00e6":-6,"\u00e1":-6,"\u00e2":-6,"\u00e4":-6,"\u00e0":-6,"\u00e5":-6,"\u00e3":-6,b:-6,h:-6,k:-6,l:-6,u:-1,"\u00fa":-1,"\u00fb":-1,"\u00fc":-1,"\u00f9":-1}},l:{d:"21,0r0,-256r32,0r0,256r-32,0",w:74,k:{",":4,".":4}},m:{d:"94,-152v-60,0,-38,92,-42,152r-31,0r-2,-174r28,0v2,9,0,21,3,28v14,-38,92,-45,104,3v28,-49,116,-57,116,40r0,103r-31,0v-4,-56,18,-153,-38,-152v-59,1,-36,94,-40,152r-31,0v-5,-56,20,-152,-36,-152",w:289,k:{t:1,T:18,'"':3,"'":3,v:5,w:5,y:5,"\u00fd":5,"\u00ff":5}},n:{d:"97,-152v-62,0,-40,92,-44,152r-32,0r-2,-174r29,0v1,9,-1,21,2,28v27,-44,119,-54,119,42r0,104r-31,0v-6,-59,22,-152,-41,-152",w:189,k:{t:1,T:18,'"':3,"'":3,v:5,w:5,y:5,"\u00fd":5,"\u00ff":5}},o:{d:"92,4v-47,0,-84,-35,-84,-90v0,-58,39,-92,87,-92v50,0,84,36,84,89v0,65,-46,93,-87,93xm93,-20v30,0,53,-28,53,-68v0,-30,-15,-66,-52,-66v-37,0,-53,34,-53,67v0,38,21,67,52,67",w:186,k:{",":9,".":9,"\u00ad":-5,T:14,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,x:5,z:3,'"':4,"'":4}},p:{d:"21,71r-2,-245r29,0r2,30v37,-63,136,-33,136,54v0,91,-89,121,-133,67r0,94r-32,0xm103,-153v-36,-1,-50,34,-50,82v0,31,22,49,48,50v33,0,53,-27,53,-67v0,-35,-18,-65,-51,-65",w:194,k:{",":9,".":9,"\u00ad":-5,T:14,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,x:5,z:3,'"':4,"'":4}},q:{d:"140,71r-1,-98v-34,58,-131,28,-131,-57v0,-94,96,-121,133,-64r2,-26r30,0r-2,245r-31,0xm92,-21v36,1,52,-37,48,-83v-3,-28,-18,-49,-47,-49v-33,0,-53,28,-53,67v0,35,17,65,52,65",w:191,k:{",":3,".":3,T:11}},r:{d:"107,-148v-71,-8,-52,83,-54,148r-32,0r-2,-174r28,0v2,11,0,25,3,34v10,-25,29,-42,57,-37r0,29",w:106,k:{",":19,".":19,":":-3,";":-3,c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,g:3,t:-9,"\u00bb":-4,T:5,f:-11,"\u00df":-11,i:-1,m:-1,n:-1,p:-1,r:-1,"\u00ed":-1,"\u00ee":-1,"\u00ef":-1,"\u00ec":-1,"\u00f1":-1,v:-9,w:-9,y:-9,"\u00fd":-9,"\u00ff":-9,"\u00ad":2,a:2,"\u00e6":2,"\u00e1":2,"\u00e2":2,"\u00e4":2,"\u00e0":2,"\u00e5":2,"\u00e3":2,b:-1,h:-1,k:-1,l:-1,x:-6,z:-3,"\u00ab":2}},s:{d:"9,-9r8,-23v18,15,75,19,75,-14v0,-15,-8,-25,-32,-32v-69,-20,-56,-98,14,-100v18,0,33,5,42,11r-7,22v-13,-13,-65,-16,-65,14v0,14,9,23,33,30v67,18,58,108,-19,105v-19,0,-37,-6,-49,-13",w:131,k:{",":4,".":4,T:9}},t:{d:"103,-1v-39,14,-75,-4,-75,-54r0,-95r-27,0r0,-24r27,0r0,-32r31,-10r0,42r45,0r0,24r-45,0r0,93v-3,31,18,38,42,32",w:108,k:{c:2,d:2,e:2,o:2,q:2,"\u00f8":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,g:2,v:-3,w:-3,y:-3,"\u00fd":-3,"\u00ff":-3,"\u00ad":2}},u:{d:"90,-22v64,0,41,-90,45,-152r32,0r1,174r-28,0r-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r31,0v4,57,-19,152,39,152",w:187,k:{",":3,".":3,T:11}},v:{d:"-1,-174r34,0r49,142r49,-142r33,0r-68,174r-30,0",w:162,k:{",":14,".":14,":":-9,";":-9,c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,g:4,s:2,T:11,v:-4,w:-4,y:-4,"\u00fd":-4,"\u00ff":-4,"\u00ad":1,a:1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1}},w:{d:"1,-174r32,0r24,88v7,18,6,42,14,56v11,-49,29,-97,43,-144r27,0r44,144v8,-48,26,-98,38,-144r31,0r-56,174r-29,0r-43,-141v-10,52,-29,95,-44,141r-28,0",w:254,k:{",":14,".":14,":":-9,";":-9,c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,g:4,s:2,T:11,v:-4,w:-4,y:-4,"\u00fd":-4,"\u00ff":-4,"\u00ad":1,a:1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1}},x:{d:"0,-174r36,0r43,66r42,-66r35,0r-60,84r61,90r-36,0r-45,-69r-44,69r-35,0r62,-89",w:155,k:{c:5,d:5,e:5,o:5,q:5,"\u00f8":5,"\u00e7":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,s:2,t:-5,T:8,v:-5,w:-5,y:-5,"\u00fd":-5,"\u00ff":-5,"\u00ad":2}},y:{d:"8,53v24,-10,46,-27,56,-58v-19,-59,-45,-112,-66,-169r34,0r50,138r46,-138r34,0v-42,85,-60,232,-147,253",w:158,k:{",":14,".":14,":":-9,";":-9,c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,g:4,s:2,T:11,v:-4,w:-4,y:-4,"\u00fd":-4,"\u00ff":-4,"\u00ad":1,a:1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1}},z:{d:"1,0r0,-18r102,-131r-95,0r0,-25r133,0r0,20r-100,129r102,0r0,25r-142,0",w:143,k:{c:3,d:3,e:3,o:3,q:3,"\u00f8":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,"\u00bb":-6,T:7,v:-9,w:-9,y:-9,"\u00fd":-9,"\u00ff":-9}},"{":{d:"28,-9v-2,-35,29,-82,-23,-86r0,-18v52,-3,21,-53,23,-87v2,-35,25,-49,60,-47r0,20v-73,-8,4,110,-56,123v59,7,-19,128,56,125r0,19v-36,1,-58,-10,-60,-49",w:91,k:{J:-6,T:-17,V:-18,W:-18,Y:-15,"\u00dd":-15,A:4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,C:4,G:4,O:4,Q:4,"\u00d8":4,"\u00c7":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,X:-4,j:-20}},"|":{d:"26,-270r24,0r0,360r-24,0r0,-360",w:75},"}":{d:"63,-200v2,35,-27,84,24,87r0,18v-51,3,-22,51,-24,86v-2,39,-24,50,-59,49r0,-19v73,7,-5,-112,55,-125v-60,-7,21,-125,-55,-123r0,-20v35,-1,57,12,59,47",w:91},"~":{d:"192,-129v-2,97,-91,35,-137,23v-13,0,-21,9,-21,30r-22,0v-1,-36,18,-54,43,-54v23,0,71,32,96,31v13,0,19,-10,19,-30r22,0",w:203},"\u00a1":{d:"53,70r-34,0r5,-172r24,0xm36,-176v13,0,21,10,21,23v0,13,-8,22,-21,22v-13,0,-21,-9,-21,-22v0,-13,9,-23,21,-23",w:72},"\u00a2":{d:"91,-31v-45,-7,-72,-35,-72,-86v0,-46,28,-82,72,-89r0,-37r23,0r0,36v16,0,30,5,39,9r-7,24v-39,-23,-96,3,-96,56v0,59,58,75,98,54r5,23v-7,4,-21,9,-39,10r0,36r-23,0r0,-36"},"\u00a3":{d:"83,-106v5,37,-7,62,-26,80r107,0r0,26r-150,0r0,-18v31,-16,46,-45,40,-88r-37,0r0,-23r33,0v-15,-55,11,-112,66,-109v19,0,31,4,39,9r-7,24v-28,-17,-72,-3,-72,38v0,15,2,26,4,38r52,0r0,23r-49,0"},"\u00a5":{d:"100,0r-30,0r0,-63r-56,0r0,-18r56,0r0,-26r-56,0r0,-18r47,0r-61,-109r34,0r53,107v14,-36,36,-73,53,-107r34,0r-65,109r47,0r0,18r-56,0r0,26r56,0r0,18r-56,0r0,63"},"\u00a7":{d:"58,-154v-28,24,-20,46,22,61v18,6,33,13,41,18v22,-21,17,-51,-19,-61v-14,-5,-32,-11,-44,-18xm145,-234r-8,21v-17,-16,-80,-19,-80,15v0,18,17,28,45,34v53,12,79,67,35,100v6,5,14,17,14,32v0,59,-86,66,-125,39r9,-20v16,16,87,24,87,-15v0,-17,-10,-28,-44,-38v-58,-17,-86,-61,-36,-99v-33,-33,2,-81,53,-81v20,0,38,5,50,12",w:176},"\u00a4":{d:"45,-177v19,-19,64,-20,84,-1r25,-27r16,17r-28,25v16,18,15,70,0,87r27,26r-16,16r-25,-27v-22,20,-61,20,-83,1r-24,26r-16,-16r26,-25v-17,-19,-17,-70,1,-88r-27,-25r16,-17xm86,-170v-26,0,-42,23,-42,51v2,68,83,68,85,-1v0,-25,-15,-50,-43,-50"},"'":{d:"13,-249r31,0r-6,86r-19,0",w:56,k:{",":41,".":41,A:22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,J:21,M:2,T:-6,V:-6,W:-6,c:3,d:3,e:3,o:3,q:3,"\u00f8":3,"\u00e7":3,"\u00e9":3,"\u00ea":3,"\u00eb":3,"\u00e8":3,"\u00f3":3,"\u00f4":3,"\u00f6":3,"\u00f2":3,"\u00f5":3,f:-9,"\u00df":-9,g:4,t:-9,v:-8,w:-8,y:-8,"\u00fd":-8,"\u00ff":-8}},"\u00ab":{d:"78,-157r-48,66r48,67r-25,0r-48,-67r48,-66r25,0xm137,-157r-48,66r49,67r-26,0r-48,-67r48,-66r25,0",w:140,k:{T:12,V:4,W:4,Y:13,"\u00dd":13}},"\u00b7":{d:"26,-72v-12,0,-21,-9,-21,-22v0,-13,9,-23,22,-23v13,0,21,10,21,23v0,13,-9,22,-22,22",w:52},"\u2219":{d:"26,-72v-12,0,-21,-9,-21,-22v0,-13,9,-23,22,-23v13,0,21,10,21,23v0,13,-9,22,-22,22",w:52},"\u00b6":{d:"100,17r-22,0r0,-112v-32,1,-71,-22,-71,-69v0,-37,20,-79,99,-79v19,0,33,1,42,3r0,257r-22,0r0,-239r-26,0r0,239"},"\u00bb":{d:"51,-91r-48,-66r25,0r48,66r-48,67r-25,0xm110,-91r-48,-66r25,0r48,66r-48,67r-25,0",w:140,k:{C:-4,G:-4,O:-4,Q:-4,"\u00d8":-4,"\u00c7":-4,"\u00d3":-4,"\u00d4":-4,"\u00d6":-4,"\u00d2":-4,"\u00d5":-4,J:6}},"\u00bf":{d:"80,-176v12,0,21,10,21,23v0,13,-8,22,-21,22v-13,0,-21,-9,-21,-22v0,-13,8,-23,21,-23xm14,22v-2,-45,62,-73,52,-125r28,0v13,46,-44,85,-47,121v-3,34,50,38,71,20r8,22v-35,30,-120,10,-112,-38",w:135},"`":{d:"3,-249r34,0r32,51r-23,0",w:97},"\u00b4":{d:"63,-249r34,0r-44,51r-22,0",w:97},"\u00af":{d:"3,-231r81,0r0,20r-81,0r0,-20",w:86},"\u02c9":{d:"3,-231r81,0r0,20r-81,0r0,-20",w:86},"\u00a8":{d:"15,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm82,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19",w:97},"\u00b8":{d:"43,-1r20,0r-12,19v13,1,25,11,25,25v1,30,-40,35,-62,23r5,-16v11,6,33,10,35,-6v0,-9,-11,-14,-28,-15",w:97},"\u00c6":{d:"27,0r-33,0r111,-243r152,0r0,27r-103,0r9,77r90,0r0,26r-86,0r11,87r88,0r0,26r-116,0r-10,-85r-74,0xm76,-111r60,0r-13,-109",w:272,k:{c:1,d:1,e:1,o:1,q:1,"\u00f8":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,J:-6,T:-6,V:-3,W:-3,u:3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,",":1,".":1,g:2}},"\u00aa":{d:"104,-96r-21,0v-1,-5,0,-12,-3,-15v-15,26,-74,20,-74,-18v0,-26,27,-41,73,-40v0,-12,-1,-26,-27,-26v-12,0,-23,3,-31,9r-6,-15v10,-8,27,-12,42,-12v62,1,39,65,47,117xm30,-130v0,29,49,19,49,-4r0,-20v-23,-1,-49,4,-49,24",w:113},"\u00d8":{d:"35,15r-18,-14r23,-31v-20,-22,-32,-54,-32,-90v0,-102,94,-159,172,-108r21,-29r19,13r-22,31v20,22,31,54,31,90v1,112,-94,156,-171,108xm57,-57r108,-147v-12,-10,-28,-17,-46,-17v-77,-2,-98,108,-62,164xm180,-185r-107,146v53,48,124,-8,124,-83v0,-21,-4,-42,-17,-63",w:237,k:{Y:10,"\u00dd":10,c:-1,d:-1,e:-1,o:-1,q:-1,"\u00f8":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,v:-5,w:-5,y:-5,"\u00fd":-5,"\u00ff":-5,")":3,"]":3,"}":3,A:5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,T:9,"\u00ab":-5,",":12,".":12,"\u00ad":-5,X:10,f:-6,"\u00df":-6,g:-2,j:-2,t:-6,x:2}},"\u00ba":{d:"59,-213v35,0,57,26,57,59v0,82,-115,76,-115,1v0,-37,27,-60,58,-60xm58,-195v-47,1,-40,85,1,83v19,0,33,-17,33,-42v0,-18,-10,-41,-34,-41",w:117},"\u00e6":{d:"259,-84r-117,0v-7,63,63,73,103,54r6,22v-39,21,-110,15,-125,-27v-11,24,-34,39,-64,39v-36,0,-54,-24,-54,-50v0,-40,37,-64,104,-63v0,-19,-2,-46,-40,-46v-17,0,-35,6,-45,13r-7,-21v37,-26,101,-17,111,22v12,-23,33,-37,61,-37v58,0,71,54,67,94xm69,-19v37,-1,47,-28,44,-68v-33,-1,-74,5,-74,39v0,18,13,29,30,29xm142,-107r88,0v1,-18,-9,-49,-41,-49v-32,0,-46,29,-47,49",w:267,k:{",":4,".":4,"\u00ad":-10,T:12}},"\u00f8":{d:"8,-86v-2,-76,70,-113,130,-80r15,-22r14,10r-15,22v17,17,27,40,27,67v-2,83,-71,112,-130,81r-16,22r-13,-11r15,-22v-17,-15,-27,-38,-27,-67xm52,-43v26,-32,47,-68,72,-101v-57,-39,-113,44,-72,101xm63,-30v55,40,112,-42,72,-100",w:186,k:{",":9,".":9,"\u00ad":-5,T:14,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,x:5,z:3,'"':4,"'":4}},"\u00df":{d:"145,-51v0,-35,-47,-50,-47,-85v0,-19,11,-34,32,-44v10,-27,-7,-55,-34,-55v-28,0,-43,20,-43,71r0,164r-32,0v7,-104,-32,-260,78,-260v47,0,80,50,56,91v-67,33,22,66,22,116v0,48,-60,70,-103,49r6,-24v23,15,65,6,65,-23",w:186,k:{",":4,".":4,T:9}},"\u00b9":{d:"58,-160r-25,0r-1,-118r-26,13r-3,-19v17,-7,28,-19,55,-16r0,140",w:77},"\u00ac":{d:"9,-144r186,0r0,100r-23,0r0,-78r-163,0r0,-22",w:203},"\u00b5":{d:"92,-22v64,0,40,-91,44,-152r32,0r0,126v0,19,3,26,16,27r-2,24v-24,5,-36,-5,-43,-30v-8,27,-70,46,-89,11v0,28,0,65,4,87r-28,0v-11,-64,-3,-170,-5,-245r32,0v6,58,-22,152,39,152",w:188,k:{"\u00ad":-2}},"\u00d0":{d:"223,-127v4,107,-89,143,-200,127r0,-111r-29,0r0,-25r29,0r0,-104v19,-3,42,-6,67,-6v87,0,130,38,133,119xm120,-136r0,25r-65,0r0,87v81,9,135,-24,135,-103v0,-71,-62,-107,-135,-90r0,81r65,0",w:230,k:{Y:10,"\u00dd":10,c:-1,d:-1,e:-1,o:-1,q:-1,"\u00f8":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,v:-5,w:-5,y:-5,"\u00fd":-5,"\u00ff":-5,")":3,"]":3,"}":3,A:5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,T:9,"\u00ab":-5,",":12,".":12,"\u00ad":-5,X:10,f:-6,"\u00df":-6,g:-2,j:-2,t:-6,x:2}},"\u00bd":{d:"61,-96r-25,0r-1,-118r-26,12r-4,-18v17,-7,29,-19,56,-16r0,140xm58,4r-21,0r137,-242r20,0xm153,0v-2,-22,15,-24,23,-35v30,-27,45,-44,45,-62v0,-29,-44,-30,-58,-14r-7,-16v23,-27,100,-13,92,25v2,31,-35,57,-59,82r61,0r0,20r-97,0",w:262},"\u00b1":{d:"90,-206r23,0r0,70r82,0r0,22r-82,0r0,72r-23,0r0,-72r-81,0r0,-22r81,0r0,-70xm9,-22r186,0r0,22r-186,0r0,-22",w:203},"\u00de":{d:"53,-195v58,-12,118,8,118,64v0,60,-55,85,-118,75r0,56r-31,0r0,-243r31,0r0,48xm53,-170r0,88v44,9,87,-7,87,-46v0,-43,-49,-50,-87,-42",w:180},"\u00bc":{d:"66,-96r-25,0r-1,-118r-26,12r-4,-18v17,-7,29,-19,56,-16r0,140xm65,4r-21,0r137,-242r20,0xm233,0r-23,0r0,-37r-72,0r0,-14r69,-91r26,0r0,87r22,0r0,18r-22,0r0,37xm210,-55v-1,-21,3,-46,0,-65v-12,25,-34,45,-46,65r46,0",w:262},"\u00f7":{d:"102,-139v-11,0,-19,-9,-19,-20v0,-12,8,-20,19,-20v12,0,19,8,19,20v0,11,-7,20,-19,20xm195,-85r-186,0r0,-22r186,0r0,22xm102,-13v-11,0,-19,-9,-19,-20v0,-12,8,-20,19,-20v12,0,19,8,19,20v0,11,-7,20,-19,20",w:203},"\u00a6":{d:"26,-63r24,0r0,126r-24,0r0,-126xm26,-243r24,0r0,126r-24,0r0,-126",w:75},"\u00b0":{d:"53,-247v30,0,47,23,47,47v0,29,-23,48,-48,48v-28,0,-47,-21,-47,-46v0,-27,21,-49,48,-49xm81,-199v0,-13,-7,-32,-29,-31v-39,1,-35,63,1,61v17,0,28,-12,28,-30",w:103},"\u00fe":{d:"21,-241r32,0r0,94v37,-59,133,-28,133,58v0,92,-89,119,-133,66r0,94r-32,0r0,-312xm103,-153v-37,-1,-54,37,-50,84v3,29,23,48,49,48v31,0,52,-26,52,-68v0,-35,-19,-64,-51,-64",w:194},"\u00be":{d:"19,-210r-7,-16v20,-21,94,-12,86,22v1,15,-13,25,-28,33v19,3,34,17,34,35v8,37,-69,53,-99,32r7,-18v15,14,68,10,65,-15v-3,-21,-24,-26,-48,-25r0,-17v20,1,41,-3,43,-23v0,-9,-6,-17,-23,-17v-13,0,-25,5,-30,9xm78,4r-20,0r136,-242r21,0xm237,0r-24,0r0,-37r-72,0r0,-14r70,-91r26,0r0,87r22,0r0,18r-22,0r0,37xm213,-55v0,-21,4,-46,1,-65v-14,26,-31,43,-47,65r46,0",w:262},"\u00b2":{d:"-1,-160v-3,-22,15,-23,23,-34v30,-27,45,-45,45,-63v0,-30,-45,-29,-58,-13r-7,-17v10,-8,26,-15,44,-15v81,0,46,81,0,112r-11,10r61,0r0,20r-97,0",w:101},"\u00ae":{d:"84,-156v-4,-8,-2,-30,-23,-24r0,24r-14,0r0,-59v16,-3,51,-6,49,15v1,8,-7,11,-12,15v10,0,11,25,15,29r-15,0xm69,-207v-13,-2,-7,10,-8,18v18,5,30,-16,8,-18xm9,-187v0,-33,27,-59,62,-59v33,0,60,26,60,59v0,33,-27,60,-61,60v-34,0,-61,-27,-61,-60xm70,-234v-26,0,-46,21,-46,47v0,26,21,47,47,47v26,0,45,-20,45,-46v0,-26,-20,-48,-46,-48",w:140},"\u00f0":{d:"143,-87v0,-42,-13,-66,-51,-66v-72,0,-63,135,-1,133v31,0,52,-27,52,-67xm114,-218v36,30,59,67,61,127v2,130,-168,120,-167,6v1,-75,71,-110,122,-75v-10,-17,-25,-32,-43,-46r-51,23r-6,-15r41,-20v-10,-8,-24,-15,-37,-21r14,-20v17,8,35,18,50,29r46,-22r8,16",w:183},"\u00d7":{d:"9,-174r16,-16r77,79r77,-79r16,16r-77,79r77,79r-16,16r-77,-79r-77,79r-16,-16r77,-79",w:203},"\u00b3":{d:"11,-274r-6,-17v20,-19,94,-11,85,23v0,14,-11,27,-28,33v19,3,34,17,34,35v8,37,-69,53,-99,32r7,-18v15,14,68,10,65,-15v-3,-21,-24,-26,-48,-25r0,-17v20,1,41,-2,43,-22v3,-22,-43,-20,-53,-9",w:99},"\u00a9":{d:"117,-233v60,0,108,50,108,111v0,62,-47,111,-108,111v-61,0,-109,-49,-109,-111v0,-61,48,-111,109,-111xm117,-219v-51,0,-91,43,-91,98v0,54,39,95,91,95v51,0,90,-41,90,-96v0,-54,-39,-97,-90,-97xm126,-187v26,0,46,4,35,24v-5,-3,-18,-9,-35,-9v-34,0,-50,22,-50,51v0,44,53,62,87,41r4,14v-47,28,-110,0,-110,-54v0,-41,33,-67,69,-67",w:232},"\u00c1":{d:"147,-76r-86,0r-25,76r-32,0r82,-243r38,0r83,243r-34,0xm68,-101r73,0r-38,-114v-8,39,-24,77,-35,114xm120,-298r38,0r-46,42r-26,0",w:209,k:{J:-7,M:1,T:28,V:19,W:19,Y:28,"\u00dd":28,a:-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,g:4,s:2,t:4,v:8,w:8,y:8,"\u00fd":8,"\u00ff":8,C:5,G:5,O:5,Q:5,"\u00d8":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,X:5,j:1,'"':21,"'":21,")":3,"]":3,"}":3,U:10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,f:3,"\u00df":3,u:4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,z:-5}},"\u00c2":{d:"147,-76r-86,0r-25,76r-32,0r82,-243r38,0r83,243r-34,0xm68,-101r73,0r-38,-114v-8,39,-24,77,-35,114xm94,-297r24,0r38,41r-27,0v-8,-8,-14,-17,-23,-24r-23,24r-26,0",w:209,k:{J:-7,M:1,T:28,V:19,W:19,Y:28,"\u00dd":28,a:-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,g:4,s:2,t:4,v:8,w:8,y:8,"\u00fd":8,"\u00ff":8,C:5,G:5,O:5,Q:5,"\u00d8":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,X:5,j:1,'"':21,"'":21,")":3,"]":3,"}":3,U:10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,f:3,"\u00df":3,u:4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,z:-5}},"\u00c4":{d:"147,-76r-86,0r-25,76r-32,0r82,-243r38,0r83,243r-34,0xm68,-101r73,0r-38,-114v-8,39,-24,77,-35,114xm90,-277v0,10,-7,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18xm139,-259v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-18,18",w:209,k:{J:-7,M:1,T:28,V:19,W:19,Y:28,"\u00dd":28,a:-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,g:4,s:2,t:4,v:8,w:8,y:8,"\u00fd":8,"\u00ff":8,C:5,G:5,O:5,Q:5,"\u00d8":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,X:5,j:1,'"':21,"'":21,")":3,"]":3,"}":3,U:10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,f:3,"\u00df":3,u:4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,z:-5}},"\u00c0":{d:"147,-76r-86,0r-25,76r-32,0r82,-243r38,0r83,243r-34,0xm68,-101r73,0r-38,-114v-8,39,-24,77,-35,114xm52,-298r38,0r34,42r-26,0",w:209,k:{J:-7,M:1,T:28,V:19,W:19,Y:28,"\u00dd":28,a:-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,g:4,s:2,t:4,v:8,w:8,y:8,"\u00fd":8,"\u00ff":8,C:5,G:5,O:5,Q:5,"\u00d8":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,X:5,j:1,'"':21,"'":21,")":3,"]":3,"}":3,U:10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,f:3,"\u00df":3,u:4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,z:-5}},"\u00c5":{d:"147,-76r-86,0r-25,76r-32,0r82,-243r38,0r83,243r-34,0xm68,-101r73,0r-38,-114v-8,39,-24,77,-35,114xm105,-316v22,0,36,14,36,32v0,18,-15,32,-36,32v-22,0,-36,-14,-36,-32v0,-18,14,-32,36,-32xm122,-284v0,-10,-6,-19,-18,-19v-10,0,-17,9,-17,19v0,9,8,19,18,19v11,0,17,-8,17,-19",w:209,k:{J:-7,M:1,T:28,V:19,W:19,Y:28,"\u00dd":28,a:-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,g:4,s:2,t:4,v:8,w:8,y:8,"\u00fd":8,"\u00ff":8,C:5,G:5,O:5,Q:5,"\u00d8":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,X:5,j:1,'"':21,"'":21,")":3,"]":3,"}":3,U:10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,f:3,"\u00df":3,u:4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,z:-5}},"\u00c3":{d:"147,-76r-86,0r-25,76r-32,0r82,-243r38,0r83,243r-34,0xm68,-101r73,0r-38,-114v-8,39,-24,77,-35,114xm150,-294v3,49,-42,32,-63,21v-6,0,-8,6,-9,16r-17,0v0,-22,10,-37,25,-37v18,0,42,33,48,0r16,0",w:209,k:{J:-7,M:1,T:28,V:19,W:19,Y:28,"\u00dd":28,a:-1,"\u00e6":-1,"\u00e1":-1,"\u00e2":-1,"\u00e4":-1,"\u00e0":-1,"\u00e5":-1,"\u00e3":-1,c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,g:4,s:2,t:4,v:8,w:8,y:8,"\u00fd":8,"\u00ff":8,C:5,G:5,O:5,Q:5,"\u00d8":5,"\u00c7":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,X:5,j:1,'"':21,"'":21,")":3,"]":3,"}":3,U:10,"\u00da":10,"\u00db":10,"\u00dc":10,"\u00d9":10,f:3,"\u00df":3,u:4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,z:-5}},"\u00c7":{d:"185,-33r7,25v-11,6,-33,12,-63,12r-9,14v14,3,25,12,25,27v1,31,-41,35,-63,23r5,-16v10,6,34,10,35,-6v0,-9,-11,-14,-28,-16r15,-27v-59,-7,-101,-49,-101,-122v0,-97,97,-150,184,-117r-8,26v-67,-29,-143,6,-143,90v0,79,75,116,144,87",w:199,k:{c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,v:7,w:7,y:7,"\u00fd":7,"\u00ff":7,")":-6,"]":-6,"}":-6,A:-1,"\u00c6":-1,"\u00c1":-1,"\u00c2":-1,"\u00c4":-1,"\u00c0":-1,"\u00c5":-1,"\u00c3":-1,C:8,G:8,O:8,Q:8,"\u00d8":8,"\u00c7":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,J:-1,T:-10,V:-4,W:-4,a:3,"\u00e6":3,"\u00e1":3,"\u00e2":3,"\u00e4":3,"\u00e0":3,"\u00e5":3,"\u00e3":3,u:4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,z:-1,"\u00ab":4}},"\u00c9":{d:"147,-140r0,26r-94,0r0,88r105,0r0,26r-136,0r0,-243r131,0r0,27r-100,0r0,76r94,0xm104,-298r38,0r-46,42r-26,0",w:166,k:{c:1,d:1,e:1,o:1,q:1,"\u00f8":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,J:-6,T:-6,V:-3,W:-3,u:3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,",":1,".":1,g:2}},"\u00ca":{d:"147,-140r0,26r-94,0r0,88r105,0r0,26r-136,0r0,-243r131,0r0,27r-100,0r0,76r94,0xm75,-297r24,0r38,41r-27,0r-23,-24r-23,24r-26,0",w:166,k:{c:1,d:1,e:1,o:1,q:1,"\u00f8":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,J:-6,T:-6,V:-3,W:-3,u:3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,",":1,".":1,g:2}},"\u00cb":{d:"147,-140r0,26r-94,0r0,88r105,0r0,26r-136,0r0,-243r131,0r0,27r-100,0r0,76r94,0xm53,-260v-10,0,-17,-8,-17,-18v0,-10,7,-18,17,-18v10,0,18,8,18,18v0,10,-8,18,-18,18xm120,-260v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-7,18,-18,18",w:166,k:{c:1,d:1,e:1,o:1,q:1,"\u00f8":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,J:-6,T:-6,V:-3,W:-3,u:3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,",":1,".":1,g:2}},"\u00c8":{d:"147,-140r0,26r-94,0r0,88r105,0r0,26r-136,0r0,-243r131,0r0,27r-100,0r0,76r94,0xm38,-298r38,0r33,42r-25,0",w:166,k:{c:1,d:1,e:1,o:1,q:1,"\u00f8":1,"\u00e7":1,"\u00e9":1,"\u00ea":1,"\u00eb":1,"\u00e8":1,"\u00f3":1,"\u00f4":1,"\u00f6":1,"\u00f2":1,"\u00f5":1,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,J:-6,T:-6,V:-3,W:-3,u:3,"\u00fa":3,"\u00fb":3,"\u00fc":3,"\u00f9":3,",":1,".":1,g:2}},"\u00cd":{d:"22,-243r31,0r0,243r-31,0r0,-243xm52,-298r38,0r-46,42r-26,0",w:75,k:{Y:3,"\u00dd":3,v:-3,w:-3,y:-3,"\u00fd":-3,"\u00ff":-3,z:-4,f:-4,"\u00df":-4,j:-3,t:-6,x:-2,b:-4,h:-4,k:-4,l:-4,i:-4,m:-4,n:-4,p:-4,r:-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4}},"\u00ce":{d:"22,-243r31,0r0,243r-31,0r0,-243xm25,-297r24,0r38,41r-27,0v-8,-8,-14,-17,-23,-24r-23,24r-26,0",w:75,k:{Y:3,"\u00dd":3,v:-3,w:-3,y:-3,"\u00fd":-3,"\u00ff":-3,z:-4,f:-4,"\u00df":-4,j:-3,t:-6,x:-2,b:-4,h:-4,k:-4,l:-4,i:-4,m:-4,n:-4,p:-4,r:-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4}},"\u00cf":{d:"22,-243r31,0r0,243r-31,0r0,-243xm22,-278v0,10,-7,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18xm71,-260v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-18,18",w:75,k:{Y:3,"\u00dd":3,v:-3,w:-3,y:-3,"\u00fd":-3,"\u00ff":-3,z:-4,f:-4,"\u00df":-4,j:-3,t:-6,x:-2,b:-4,h:-4,k:-4,l:-4,i:-4,m:-4,n:-4,p:-4,r:-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4}},"\u00cc":{d:"22,-243r31,0r0,243r-31,0r0,-243xm-15,-298r38,0r34,42r-26,0",w:75,k:{Y:3,"\u00dd":3,v:-3,w:-3,y:-3,"\u00fd":-3,"\u00ff":-3,z:-4,f:-4,"\u00df":-4,j:-3,t:-6,x:-2,b:-4,h:-4,k:-4,l:-4,i:-4,m:-4,n:-4,p:-4,r:-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4}},"\u00d1":{d:"51,0r-29,0r0,-243r35,0v39,65,89,133,120,202r-2,-202r29,0r0,243r-32,0r-77,-123v-18,-27,-32,-57,-46,-81xm159,-294v3,49,-42,32,-63,21v-6,0,-8,6,-9,16r-17,0v0,-22,10,-37,25,-37v18,0,42,33,48,0r16,0",w:226,k:{Y:3,"\u00dd":3,v:-3,w:-3,y:-3,"\u00fd":-3,"\u00ff":-3,z:-4,f:-4,"\u00df":-4,j:-3,t:-6,x:-2,b:-4,h:-4,k:-4,l:-4,i:-4,m:-4,n:-4,p:-4,r:-4,"\u00ed":-4,"\u00ee":-4,"\u00ef":-4,"\u00ec":-4,"\u00f1":-4}},"\u00d3":{d:"117,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,109,51,109,123v0,83,-50,128,-112,128xm118,-22v50,0,78,-45,78,-100v0,-48,-25,-99,-77,-99v-52,0,-78,48,-78,101v0,51,28,98,77,98xm133,-299r38,0r-46,42r-25,0",w:237,k:{Y:10,"\u00dd":10,c:-1,d:-1,e:-1,o:-1,q:-1,"\u00f8":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,v:-5,w:-5,y:-5,"\u00fd":-5,"\u00ff":-5,")":3,"]":3,"}":3,A:5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,T:9,"\u00ab":-5,",":12,".":12,"\u00ad":-5,X:10,f:-6,"\u00df":-6,g:-2,j:-2,t:-6,x:2}},"\u00d4":{d:"117,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,109,51,109,123v0,83,-50,128,-112,128xm118,-22v50,0,78,-45,78,-100v0,-48,-25,-99,-77,-99v-52,0,-78,48,-78,101v0,51,28,98,77,98xm106,-298r24,0r38,41r-27,0v-8,-8,-14,-18,-23,-25r-23,25r-26,0",w:237,k:{Y:10,"\u00dd":10,c:-1,d:-1,e:-1,o:-1,q:-1,"\u00f8":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,v:-5,w:-5,y:-5,"\u00fd":-5,"\u00ff":-5,")":3,"]":3,"}":3,A:5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,T:9,"\u00ab":-5,",":12,".":12,"\u00ad":-5,X:10,f:-6,"\u00df":-6,g:-2,j:-2,t:-6,x:2}},"\u00d6":{d:"117,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,109,51,109,123v0,83,-50,128,-112,128xm118,-22v50,0,78,-45,78,-100v0,-48,-25,-99,-77,-99v-52,0,-78,48,-78,101v0,51,28,98,77,98xm103,-278v0,10,-7,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18xm152,-260v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-18,18",w:237,k:{Y:10,"\u00dd":10,c:-1,d:-1,e:-1,o:-1,q:-1,"\u00f8":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,v:-5,w:-5,y:-5,"\u00fd":-5,"\u00ff":-5,")":3,"]":3,"}":3,A:5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,T:9,"\u00ab":-5,",":12,".":12,"\u00ad":-5,X:10,f:-6,"\u00df":-6,g:-2,j:-2,t:-6,x:2}},"\u00d2":{d:"117,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,109,51,109,123v0,83,-50,128,-112,128xm118,-22v50,0,78,-45,78,-100v0,-48,-25,-99,-77,-99v-52,0,-78,48,-78,101v0,51,28,98,77,98xm67,-299r38,0r33,42r-25,0",w:237,k:{Y:10,"\u00dd":10,c:-1,d:-1,e:-1,o:-1,q:-1,"\u00f8":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,v:-5,w:-5,y:-5,"\u00fd":-5,"\u00ff":-5,")":3,"]":3,"}":3,A:5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,T:9,"\u00ab":-5,",":12,".":12,"\u00ad":-5,X:10,f:-6,"\u00df":-6,g:-2,j:-2,t:-6,x:2}},"\u00d5":{d:"117,4v-64,0,-109,-50,-109,-123v0,-77,47,-128,112,-128v67,0,109,51,109,123v0,83,-50,128,-112,128xm118,-22v50,0,78,-45,78,-100v0,-48,-25,-99,-77,-99v-52,0,-78,48,-78,101v0,51,28,98,77,98xm163,-295v3,50,-41,32,-63,21v-6,0,-8,6,-9,16r-17,0v0,-22,10,-37,25,-37v18,0,42,33,48,0r16,0",w:237,k:{Y:10,"\u00dd":10,c:-1,d:-1,e:-1,o:-1,q:-1,"\u00f8":-1,"\u00e7":-1,"\u00e9":-1,"\u00ea":-1,"\u00eb":-1,"\u00e8":-1,"\u00f3":-1,"\u00f4":-1,"\u00f6":-1,"\u00f2":-1,"\u00f5":-1,v:-5,w:-5,y:-5,"\u00fd":-5,"\u00ff":-5,")":3,"]":3,"}":3,A:5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,T:9,"\u00ab":-5,",":12,".":12,"\u00ad":-5,X:10,f:-6,"\u00df":-6,g:-2,j:-2,t:-6,x:2}},"\u00da":{d:"22,-243r31,0r0,144v0,54,25,77,57,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143xm127,-298r38,0r-46,42r-26,0",w:222,k:{",":10,".":10,A:12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,a:1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,s:2,x:3,z:2,f:-3,"\u00df":-3,t:-1}},"\u00db":{d:"22,-243r31,0r0,144v0,54,25,77,57,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143xm101,-297r24,0r38,41r-27,0r-23,-24r-23,24r-26,0",w:222,k:{",":10,".":10,A:12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,a:1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,s:2,x:3,z:2,f:-3,"\u00df":-3,t:-1}},"\u00dc":{d:"22,-243r31,0r0,144v0,54,25,77,57,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143xm96,-278v0,10,-7,18,-18,18v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18xm145,-260v-10,0,-17,-8,-17,-18v0,-10,8,-18,18,-18v10,0,17,8,17,18v0,10,-7,18,-18,18",w:222,k:{",":10,".":10,A:12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,a:1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,s:2,x:3,z:2,f:-3,"\u00df":-3,t:-1}},"\u00d9":{d:"22,-243r31,0r0,144v0,54,25,77,57,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143xm61,-298r38,0r33,42r-25,0",w:222,k:{",":10,".":10,A:12,"\u00c6":12,"\u00c1":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,"\u00c5":12,"\u00c3":12,a:1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1,s:2,x:3,z:2,f:-3,"\u00df":-3,t:-1}},"\u00dd":{d:"108,0r-32,0r0,-103r-77,-140r36,0r59,117v16,-38,40,-79,59,-117r36,0r-81,140r0,103xm110,-296r38,0r-46,42r-25,0",w:183,k:{"\u00e4":17,"\u00ef":-19,"\u00f6":23,"\u00eb":23,'"':-3,"'":-3}},"\u00e1":{d:"77,-178v96,3,58,95,69,178r-28,0v-2,-7,0,-17,-4,-22v-9,14,-29,26,-54,26v-35,0,-53,-25,-53,-50v0,-42,38,-65,105,-65v0,-18,-3,-42,-40,-44v-17,0,-33,5,-45,13r-8,-21v14,-9,36,-15,58,-15xm68,-19v38,-2,49,-28,45,-70v-35,-1,-74,5,-74,39v0,21,13,31,29,31xm94,-249r34,0r-44,51r-22,0",w:162},"\u00e2":{d:"77,-178v96,3,58,95,69,178r-28,0v-2,-7,0,-17,-4,-22v-9,14,-29,26,-54,26v-35,0,-53,-25,-53,-50v0,-42,38,-65,105,-65v0,-18,-3,-42,-40,-44v-17,0,-33,5,-45,13r-8,-21v14,-9,36,-15,58,-15xm68,-19v38,-2,49,-28,45,-70v-35,-1,-74,5,-74,39v0,21,13,31,29,31xm69,-249r22,0r34,51r-24,0r-21,-34r-21,34r-24,0",w:162},"\u00e4":{d:"77,-178v96,3,58,95,69,178r-28,0v-2,-7,0,-17,-4,-22v-9,14,-29,26,-54,26v-35,0,-53,-25,-53,-50v0,-42,38,-65,105,-65v0,-18,-3,-42,-40,-44v-17,0,-33,5,-45,13r-8,-21v14,-9,36,-15,58,-15xm68,-19v38,-2,49,-28,45,-70v-35,-1,-74,5,-74,39v0,21,13,31,29,31xm48,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm132,-224v0,10,-7,19,-18,19v-10,0,-17,-9,-17,-19v0,-10,8,-18,18,-18v10,0,17,8,17,18",w:162},"\u00e0":{d:"77,-178v96,3,58,95,69,178r-28,0v-2,-7,0,-17,-4,-22v-9,14,-29,26,-54,26v-35,0,-53,-25,-53,-50v0,-42,38,-65,105,-65v0,-18,-3,-42,-40,-44v-17,0,-33,5,-45,13r-8,-21v14,-9,36,-15,58,-15xm68,-19v38,-2,49,-28,45,-70v-35,-1,-74,5,-74,39v0,21,13,31,29,31xm29,-249r34,0r32,51r-22,0",w:162},"\u00e5":{d:"77,-178v96,3,58,95,69,178r-28,0v-2,-7,0,-17,-4,-22v-9,14,-29,26,-54,26v-35,0,-53,-25,-53,-50v0,-42,38,-65,105,-65v0,-18,-3,-42,-40,-44v-17,0,-33,5,-45,13r-8,-21v14,-9,36,-15,58,-15xm68,-19v38,-2,49,-28,45,-70v-35,-1,-74,5,-74,39v0,21,13,31,29,31xm81,-260v22,0,36,15,36,34v0,19,-15,33,-36,33v-22,0,-37,-15,-37,-33v0,-19,15,-34,37,-34xm99,-227v0,-11,-6,-20,-19,-20v-11,0,-17,10,-17,21v0,10,7,19,18,19v12,0,18,-9,18,-20",w:162},"\u00e3":{d:"77,-178v96,3,58,95,69,178r-28,0v-2,-7,0,-17,-4,-22v-9,14,-29,26,-54,26v-35,0,-53,-25,-53,-50v0,-42,38,-65,105,-65v0,-18,-3,-42,-40,-44v-17,0,-33,5,-45,13r-8,-21v14,-9,36,-15,58,-15xm68,-19v38,-2,49,-28,45,-70v-35,-1,-74,5,-74,39v0,21,13,31,29,31xm125,-243v3,50,-39,36,-62,23v-6,0,-9,6,-10,16r-17,0v-3,-49,37,-39,62,-24v5,0,9,-3,10,-15r17,0",w:162},"\u00e7":{d:"140,-30r5,24v-7,4,-23,10,-45,10r-9,14v13,3,25,11,25,26v0,31,-39,36,-63,24r6,-16v10,6,34,10,35,-7v0,-9,-11,-13,-28,-15r15,-27v-44,-5,-73,-40,-73,-88v0,-70,73,-113,138,-84r-7,24v-43,-23,-106,7,-99,58v-3,56,56,78,100,57",w:150,k:{",":4,".":4,"\u00ad":-2,T:4,c:2,d:2,e:2,o:2,q:2,"\u00f8":2,"\u00e7":2,"\u00e9":2,"\u00ea":2,"\u00eb":2,"\u00e8":2,"\u00f3":2,"\u00f4":2,"\u00f6":2,"\u00f2":2,"\u00f5":2,t:-5,v:-6,w:-6,y:-6,"\u00fd":-6,"\u00ff":-6,"\u00bb":-5}},"\u00e9":{d:"161,-81r-122,0v-3,64,66,69,108,51r5,22v-11,5,-30,12,-58,12v-53,0,-86,-36,-86,-88v0,-53,31,-94,82,-94v63,0,75,53,71,97xm39,-104r92,0v0,-20,-8,-52,-43,-52v-32,0,-46,30,-49,52xm104,-249r35,0r-44,51r-23,0",w:169,k:{",":4,".":4,"\u00ad":-10,T:12}},"\u00ea":{d:"161,-81r-122,0v-3,64,66,69,108,51r5,22v-11,5,-30,12,-58,12v-53,0,-86,-36,-86,-88v0,-53,31,-94,82,-94v63,0,75,53,71,97xm39,-104r92,0v0,-20,-8,-52,-43,-52v-32,0,-46,30,-49,52xm78,-249r22,0r35,51r-24,0v-8,-11,-13,-24,-22,-34r-21,34r-23,0",w:169,k:{",":4,".":4,"\u00ad":-10,T:12}},"\u00eb":{d:"161,-81r-122,0v-3,64,66,69,108,51r5,22v-11,5,-30,12,-58,12v-53,0,-86,-36,-86,-88v0,-53,31,-94,82,-94v63,0,75,53,71,97xm39,-104r92,0v0,-20,-8,-52,-43,-52v-32,0,-46,30,-49,52xm58,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm125,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19",w:169,k:{",":4,".":4,"\u00ad":-10,T:12}},"\u00e8":{d:"161,-81r-122,0v-3,64,66,69,108,51r5,22v-11,5,-30,12,-58,12v-53,0,-86,-36,-86,-88v0,-53,31,-94,82,-94v63,0,75,53,71,97xm39,-104r92,0v0,-20,-8,-52,-43,-52v-32,0,-46,30,-49,52xm44,-249r34,0r32,51r-23,0",w:169,k:{",":4,".":4,"\u00ad":-10,T:12}},"\u00ed":{d:"53,0r-32,0r0,-174r32,0r0,174xm50,-249r35,0r-44,51r-22,0",w:73},"\u00ee":{d:"53,0r-32,0r0,-174r32,0r0,174xm26,-249r22,0r34,51r-24,0v-8,-11,-13,-24,-22,-34r-21,34r-23,0",w:73},"\u00ef":{d:"53,0r-32,0r0,-174r32,0r0,174xm3,-205v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,17,8,17,18v0,10,-8,19,-18,19xm70,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19",w:73},"\u00ec":{d:"53,0r-32,0r0,-174r32,0r0,174xm-15,-249r34,0r32,51r-23,0",w:73},"\u00f1":{d:"97,-152v-62,0,-40,92,-44,152r-32,0r-2,-174r29,0v1,9,-1,21,2,28v27,-44,119,-54,119,42r0,104r-31,0v-6,-59,22,-152,-41,-152xm139,-243v3,51,-38,35,-62,23v-6,0,-8,6,-9,16r-18,0v-1,-23,10,-38,25,-38v17,0,43,34,47,-1r17,0",w:189,k:{t:1,T:18,'"':3,"'":3,v:5,w:5,y:5,"\u00fd":5,"\u00ff":5}},"\u00f3":{d:"92,4v-47,0,-84,-35,-84,-90v0,-58,39,-92,87,-92v50,0,84,36,84,89v0,65,-46,93,-87,93xm93,-20v30,0,53,-28,53,-68v0,-30,-15,-66,-52,-66v-37,0,-53,34,-53,67v0,38,21,67,52,67xm106,-249r35,0r-44,51r-22,0",w:186,k:{",":9,".":9,"\u00ad":-5,T:14,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,x:5,z:3,'"':4,"'":4}},"\u00f4":{d:"92,4v-47,0,-84,-35,-84,-90v0,-58,39,-92,87,-92v50,0,84,36,84,89v0,65,-46,93,-87,93xm93,-20v30,0,53,-28,53,-68v0,-30,-15,-66,-52,-66v-37,0,-53,34,-53,67v0,38,21,67,52,67xm82,-249r22,0r35,51r-24,0v-8,-11,-13,-24,-22,-34r-21,34r-23,0",w:186,k:{",":9,".":9,"\u00ad":-5,T:14,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,x:5,z:3,'"':4,"'":4}},"\u00f6":{d:"92,4v-47,0,-84,-35,-84,-90v0,-58,39,-92,87,-92v50,0,84,36,84,89v0,65,-46,93,-87,93xm93,-20v30,0,53,-28,53,-68v0,-30,-15,-66,-52,-66v-37,0,-53,34,-53,67v0,38,21,67,52,67xm60,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19xm127,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19",w:186,k:{",":9,".":9,"\u00ad":-5,T:14,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,x:5,z:3,'"':4,"'":4}},"\u00f2":{d:"92,4v-47,0,-84,-35,-84,-90v0,-58,39,-92,87,-92v50,0,84,36,84,89v0,65,-46,93,-87,93xm93,-20v30,0,53,-28,53,-68v0,-30,-15,-66,-52,-66v-37,0,-53,34,-53,67v0,38,21,67,52,67xm47,-249r35,0r31,51r-22,0",w:186,k:{",":9,".":9,"\u00ad":-5,T:14,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,x:5,z:3,'"':4,"'":4}},"\u00f5":{d:"92,4v-47,0,-84,-35,-84,-90v0,-58,39,-92,87,-92v50,0,84,36,84,89v0,65,-46,93,-87,93xm93,-20v30,0,53,-28,53,-68v0,-30,-15,-66,-52,-66v-37,0,-53,34,-53,67v0,38,21,67,52,67xm138,-243v3,51,-39,36,-62,23v-6,0,-8,6,-9,16r-18,0v-1,-23,10,-38,25,-38v17,0,43,34,47,-1r17,0",w:186,k:{",":9,".":9,"\u00ad":-5,T:14,v:3,w:3,y:3,"\u00fd":3,"\u00ff":3,x:5,z:3,'"':4,"'":4}},"\u00fa":{d:"90,-22v64,0,41,-90,45,-152r32,0r1,174r-28,0r-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r31,0v4,57,-19,152,39,152xm111,-249r34,0r-44,51r-22,0",w:187,k:{",":3,".":3,T:11}},"\u00fb":{d:"90,-22v64,0,41,-90,45,-152r32,0r1,174r-28,0r-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r31,0v4,57,-19,152,39,152xm83,-249r22,0r34,51r-24,0r-21,-34r-21,34r-24,0",w:187,k:{",":3,".":3,T:11}},"\u00fc":{d:"90,-22v64,0,41,-90,45,-152r32,0r1,174r-28,0r-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r31,0v4,57,-19,152,39,152xm79,-224v0,10,-7,19,-18,19v-10,0,-17,-9,-17,-19v0,-10,8,-18,18,-18v10,0,17,8,17,18xm146,-224v0,10,-7,19,-18,19v-10,0,-17,-9,-17,-19v0,-10,8,-18,18,-18v10,0,17,8,17,18",w:187,k:{",":3,".":3,T:11}},"\u00f9":{d:"90,-22v64,0,41,-90,45,-152r32,0r1,174r-28,0r-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r31,0v4,57,-19,152,39,152xm45,-249r35,0r32,51r-23,0",w:187,k:{",":3,".":3,T:11}},"\u00fd":{d:"8,53v24,-10,46,-27,56,-58v-19,-59,-45,-112,-66,-169r34,0r50,138r46,-138r34,0v-42,85,-60,232,-147,253xm97,-249r35,0r-44,51r-22,0",w:158,k:{",":14,".":14,":":-9,";":-9,c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,g:4,s:2,T:11,v:-4,w:-4,y:-4,"\u00fd":-4,"\u00ff":-4,"\u00ad":1,a:1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1}},"\u00ff":{d:"8,53v24,-10,46,-27,56,-58v-19,-59,-45,-112,-66,-169r34,0r50,138r46,-138r34,0v-42,85,-60,232,-147,253xm50,-205v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18v10,0,17,8,17,18v0,10,-8,19,-18,19xm117,-205v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,19,-18,19",w:158,k:{",":14,".":14,":":-9,";":-9,c:4,d:4,e:4,o:4,q:4,"\u00f8":4,"\u00e7":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,g:4,s:2,T:11,v:-4,w:-4,y:-4,"\u00fd":-4,"\u00ff":-4,"\u00ad":1,a:1,"\u00e6":1,"\u00e1":1,"\u00e2":1,"\u00e4":1,"\u00e0":1,"\u00e5":1,"\u00e3":1}}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (C) 1996-2005, Hoefler & Frere-Jones, Inc. www.typography.com
 */
Cufon.registerFont({w:180,face:{"font-family":"Serif","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0",ascent:"288",descent:"-72","x-height":"6",bbox:"-25.7861 -321 348 96","underline-thickness":"10.08","underline-position":"-36",stemh:"8",stemv:"36","unicode-range":"U+0020-U+FB02"},glyphs:{" ":{w:82},"\u00d0":{d:"249,-115v0,65,-53,115,-128,115r-108,0r0,-6r36,-7r0,-100r-31,0r0,-12r31,0r0,-92r-36,-6r0,-6r110,0v78,0,126,49,126,114xm207,-115v0,-88,-47,-107,-122,-102r0,92r41,0r0,12r-41,0r0,101v78,5,122,-10,122,-103",w:263},"\u00f0":{d:"179,-104v0,63,-35,110,-88,110v-51,0,-78,-38,-78,-87v0,-64,69,-106,121,-75v-6,-20,-16,-39,-29,-56r-33,15r-4,-11r30,-13v-13,-15,-30,-29,-49,-40r3,-6v25,7,49,20,68,37r34,-14r4,10r-29,12v31,31,50,73,50,118xm100,-5v42,0,53,-92,37,-141v-48,-20,-89,5,-90,68v0,46,26,73,53,73",w:191},"\u0141":{d:"210,-70r-10,70r-187,0r0,-6r36,-7r0,-88r-26,7r-3,-11r29,-8r0,-104r-36,-6r0,-6r108,0r0,6r-36,6r0,94r44,-12r3,12r-47,12r0,99v36,-2,79,8,90,-19r31,-41",w:219},"\u0142":{d:"73,-127r0,116v7,4,24,0,24,11r-80,0v0,-12,18,-6,25,-11r0,-108r-29,8r-3,-12r32,-8r0,-103v-8,-7,-23,-7,-26,-19v19,-3,40,-12,57,-13r0,126r35,-9r3,11",w:111},"\u0160":{d:"96,-285r40,-36r5,4r-43,64r-6,0r-41,-64r4,-4xm141,-49v0,-58,-121,-50,-115,-119v6,-61,66,-82,109,-56v7,-4,9,-12,20,-12r6,69r-6,1v-21,-41,-41,-58,-65,-58v-20,0,-35,15,-35,39v0,55,122,49,116,116v-6,72,-74,88,-129,63v-7,4,-9,13,-20,12r-4,-78r6,-1v23,54,47,68,73,68v26,0,44,-17,44,-44",w:189},"\u0161":{d:"72,-218r41,-36r4,4r-43,64r-6,0r-41,-64r5,-4xm41,-134v0,43,86,32,86,85v0,52,-66,66,-112,45r0,-46r8,0v12,33,29,46,48,46v19,0,31,-11,31,-30v0,-43,-84,-31,-84,-83v0,-44,57,-60,99,-44r1,41r-6,2v-14,-29,-28,-40,-44,-40v-16,0,-27,9,-27,24",w:140},"\u00dd":{d:"166,-318v16,29,-22,40,-40,67r-4,-2v17,-29,15,-68,44,-65xm204,-213r-68,108r0,92r37,7r0,6r-110,0r0,-6r37,-7r0,-86r-69,-116r-32,-8r0,-6r105,0r0,6r-31,6r55,103r57,-101r-27,-8r0,-6r74,0r0,6",w:227},"\u00fd":{d:"133,-251v16,29,-22,40,-40,67r-5,-2v17,-30,15,-69,45,-65xm155,-145r-71,177v-12,30,-27,44,-47,44v-30,1,-31,-37,-6,-38v11,0,18,7,26,17v13,-11,21,-35,29,-52r-63,-152v-7,-5,-20,-2,-22,-12r82,0v-2,10,-18,7,-25,12v16,36,25,79,44,112r39,-109v-7,-6,-21,-5,-23,-15r62,0v-2,11,-18,10,-25,16",w:176},"\u00de":{d:"117,-179v109,-4,109,127,5,129v-12,0,-25,-2,-37,-3r0,41r35,6r0,6r-107,0r0,-6r36,-6r0,-204r-36,-7r0,-6r107,0r0,6r-35,7r0,40v10,-2,22,-3,32,-3xm159,-115v0,-44,-33,-63,-74,-52r0,105v41,8,74,-6,74,-53",w:213},"\u00fe":{d:"176,-85v0,57,-52,106,-119,87r0,60r27,9r0,5r-82,0v1,-12,17,-8,24,-14r0,-296v-8,-7,-23,-7,-26,-19v19,-3,39,-13,57,-13r1,123v40,-45,118,-22,118,58xm144,-78v2,-56,-48,-83,-87,-54r0,111v40,35,84,19,87,-57",w:189},"\u017d":{d:"120,-285r40,-36r5,4r-44,64r-5,0r-41,-64r4,-4xm214,-70r-10,70r-189,0r-1,-4r147,-213v-42,2,-89,-10,-105,21r-28,31v-7,-16,6,-44,6,-64r174,0r1,3r-147,214v42,-4,102,13,117,-19r32,-41",w:229},"\u017e":{d:"82,-218r40,-36r5,4r-43,64r-6,0r-41,-64r4,-4xm154,-159r-101,149r59,0r37,-40r5,2r-6,48r-137,0r-1,-3r102,-148r-54,0r-35,40r-4,-2r4,-48v42,2,93,-4,131,2",w:167},"\u00bd":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u00bc":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u00b9":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u00be":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u00b3":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u00b2":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u00a6":{d:"55,-104r-13,0r0,-148r13,0r0,148xm55,87r-13,0r0,-149r13,0r0,149",w:96},"\u2212":{d:"167,-102r-152,0r0,-17r152,0r0,17",w:181},"\u00d7":{d:"102,-110r51,52r-12,12r-50,-53r-51,53r-12,-12r52,-52r-51,-52r12,-12r50,52r50,-52r12,12",w:181},"!":{d:"69,-212v0,19,-8,87,-16,149r-8,0v-8,-62,-17,-130,-17,-149v0,-15,9,-23,21,-23v12,0,20,8,20,23xm70,-16v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-22,21,-22v12,0,22,10,22,22",w:96},'"':{d:"90,-235v9,0,18,10,12,20r-34,57r-5,-1r15,-66v3,-6,7,-10,12,-10xm44,-235v9,0,18,10,12,20r-34,57r-5,-1r15,-66v3,-6,7,-10,12,-10",w:112},"#":{d:"193,-134r-45,0r-14,50r48,0r0,12r-51,0r-15,55r-13,-3r15,-52r-49,0r-15,55r-12,-3r15,-52r-41,0r0,-12r44,0r15,-50r-48,0r0,-12r51,0r16,-58r13,4r-17,54r50,0r16,-58r12,4r-16,54r41,0r0,12xm136,-134r-49,0r-15,50r50,0",w:209},"$":{d:"172,-66v0,43,-31,69,-76,71r-2,31r-13,-2r2,-29v-21,-1,-39,-4,-58,-13r-4,-61r6,-1v13,36,35,57,57,63r7,-89v-30,-12,-63,-24,-63,-62v0,-37,28,-67,72,-68r2,-26r13,2r-2,24v17,1,37,5,48,9r1,54r-6,1v-14,-28,-29,-44,-44,-50r-7,80v31,13,67,26,67,66xm99,-215v-23,-3,-40,9,-40,36v0,21,15,33,35,42xm141,-50v0,-22,-18,-32,-39,-41r-6,86v28,1,45,-16,45,-45",w:196},"%":{d:"131,-166v0,32,-22,62,-61,62v-38,0,-58,-27,-58,-61v0,-32,23,-61,62,-61v38,0,57,26,57,60xm45,4r168,-235r10,7r-167,236xm256,-55v0,32,-22,61,-61,61v-38,0,-57,-27,-57,-61v0,-32,22,-61,61,-61v39,0,57,27,57,61xm103,-166v0,-35,-13,-53,-32,-53v-18,0,-31,18,-31,54v0,36,14,54,32,54v19,0,31,-19,31,-55xm165,-54v0,36,15,53,33,53v19,0,31,-18,31,-54v0,-35,-14,-54,-33,-54v-18,0,-31,19,-31,55",w:268},"&":{d:"246,-122v-2,10,-17,8,-24,13r-48,64v24,29,33,31,65,28r2,4v-31,24,-69,27,-92,-11v-40,48,-137,33,-137,-31v0,-35,29,-60,60,-72v-41,-40,-17,-103,38,-99v68,4,69,66,14,94r-11,6r55,73r31,-55v-6,-5,-17,-5,-19,-14r66,0xm133,-184v0,-19,-11,-33,-27,-33v-45,0,-17,68,3,85v18,-19,24,-34,24,-52xm144,-30r-68,-92v-14,14,-29,32,-30,58v-2,46,63,55,98,34",w:250},"'":{d:"44,-235v9,0,18,10,12,20r-34,57r-5,-1r15,-66v3,-6,7,-10,12,-10",w:66},"(":{d:"48,-102v0,75,35,137,86,160r-2,5v-55,-18,-111,-81,-111,-165v0,-84,56,-146,111,-165r2,6v-51,23,-86,83,-86,159",w:122},")":{d:"102,-102v0,84,-56,147,-111,165r-3,-5v51,-23,87,-85,87,-160v0,-76,-36,-136,-87,-159r3,-6v55,19,111,81,111,165",w:122},"*":{d:"109,-209v10,18,-20,22,-37,31v21,5,43,12,38,29v-19,4,-28,-7,-42,-22v-2,16,14,44,-8,48v-13,-10,-5,-29,-3,-48v-13,14,-24,26,-42,22v-8,-19,22,-21,38,-31v-22,-4,-44,-11,-38,-29v18,-5,30,13,43,21v-6,-21,-12,-42,6,-47v15,8,3,32,4,48v14,-14,23,-24,41,-22",w:124},"+":{d:"167,-102r-68,0r0,68r-16,0r0,-68r-68,0r0,-16r68,0r0,-68r16,0r0,68r68,0r0,16",w:181},",":{d:"67,-8v0,18,-14,39,-44,53r-3,-5v19,-17,30,-30,29,-39v-14,5,-29,0,-29,-16v0,-12,10,-22,22,-22v15,0,25,11,25,29",w:83},"-":{d:"103,-74r-85,0r0,-21r85,0r0,21",w:120},".":{d:"60,-16v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,22,9,22,21",w:75},"/":{d:"154,-262r-146,338r-12,-6r147,-337",w:138},"0":{d:"188,-110v0,65,-34,115,-88,115v-57,0,-86,-50,-86,-115v0,-65,34,-116,88,-116v57,0,86,51,86,116xm150,-110v0,-75,-25,-107,-52,-107v-24,0,-46,23,-46,107v0,84,25,107,52,107v24,0,46,-32,46,-107",w:202},"1":{d:"88,-18r40,12r0,6r-113,0r0,-6r40,-12r0,-175r-40,-14r0,-5v24,-2,52,-13,73,-10r0,204",w:138},"2":{d:"7,-4v53,-40,108,-84,111,-148v3,-56,-63,-58,-93,-20r-3,-4v24,-69,135,-65,133,14v0,33,-31,79,-102,132v20,6,54,0,78,2r32,-33r3,1r-14,60r-143,0",w:184},"3":{d:"100,-123v90,18,58,128,-23,128v-38,0,-63,-15,-63,-34v0,-12,8,-20,20,-20v15,0,26,14,22,36v28,21,67,3,67,-36v0,-31,-21,-52,-73,-56r0,-4v53,-18,65,-38,65,-59v0,-40,-62,-38,-90,-13r-3,-4v17,-22,41,-41,69,-41v37,0,55,24,55,46v0,26,-23,41,-46,57",w:173},"4":{d:"182,-69r-44,0r0,51r37,12r0,6r-107,0r0,-6r38,-12r0,-51r-91,0r-3,-7r121,-150r5,2r0,132r44,0r0,23xm106,-92r-1,-82r-65,82r66,0",w:196},"5":{d:"159,-71v0,42,-36,76,-80,76v-37,0,-62,-15,-62,-34v0,-12,7,-20,19,-20v15,0,26,14,22,36v31,21,69,5,69,-42v0,-46,-53,-62,-98,-50r13,-115r93,0v7,-4,10,-16,19,-14r-8,44r-96,0v0,17,-9,40,-5,54v59,-12,114,13,114,65",w:177},"6":{d:"171,-77v0,46,-30,82,-77,82v-40,0,-78,-26,-78,-83v0,-76,65,-140,137,-152r2,6v-42,18,-84,54,-95,96v43,-38,111,-2,111,51xm139,-62v0,-49,-41,-77,-83,-56v-16,42,1,115,42,115v26,0,41,-24,41,-59",w:186},"7":{d:"140,-190r-100,0v-8,6,-11,20,-22,20r10,-58v6,-3,8,6,12,8v41,2,90,-4,127,2r-110,223r-27,0r52,-87",w:169},"8":{d:"93,-226v79,0,84,83,18,107v35,20,50,37,50,60v0,39,-31,64,-74,64v-85,0,-83,-92,-19,-109v-27,-17,-43,-35,-43,-62v0,-35,34,-60,68,-60xm56,-181v0,25,14,39,48,58v16,-18,22,-34,22,-54v0,-21,-11,-40,-34,-40v-21,0,-36,14,-36,36xm129,-42v0,-23,-19,-41,-55,-59v-34,23,-31,99,21,98v19,0,34,-15,34,-39",w:178},"9":{d:"92,-226v94,-1,96,134,34,186v-29,24,-53,40,-96,49r-2,-5v51,-18,83,-53,101,-100v-42,33,-114,10,-114,-50v0,-44,30,-80,77,-80xm131,-105v14,-41,-3,-112,-41,-112v-26,0,-42,23,-42,58v0,48,41,72,83,54",w:185},":":{d:"59,-123v0,12,-9,22,-21,22v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,21,9,21,21xm59,-16v0,12,-9,22,-21,22v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,21,9,21,21",w:75},";":{d:"66,-123v0,12,-9,22,-21,22v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,21,9,21,21xm66,-8v0,18,-13,39,-43,53r-4,-5v20,-17,27,-29,30,-39v-14,5,-29,0,-29,-16v0,-12,9,-22,21,-22v15,0,25,11,25,29",w:83},"<":{d:"155,-56r-4,16r-126,-65r0,-10r126,-65r4,15r-107,55",w:181},"=":{d:"167,-149r0,16r-152,0r0,-16r152,0xm167,-71r-152,0r0,-16r152,0r0,16",w:181},">":{d:"27,-165r4,-15r126,65r0,10r-126,65r-4,-16r107,-55",w:181},"?":{d:"30,-97v0,-40,80,-52,75,-93v3,-28,-36,-48,-56,-28v11,16,4,39,-15,39v-11,0,-21,-9,-21,-22v0,-20,23,-34,54,-34v39,0,66,28,66,59v0,23,-13,38,-43,53v-24,12,-33,18,-33,31v0,19,27,22,42,16v4,10,-16,14,-27,14v-22,0,-42,-14,-42,-35xm86,-16v0,12,-10,21,-22,21v-12,0,-22,-9,-22,-21v0,-12,10,-22,22,-22v12,0,22,10,22,22",w:141},"@":{d:"260,-103v0,-52,-40,-103,-109,-103v-65,0,-112,50,-112,131v0,65,45,115,122,115v33,0,58,-6,81,-18r2,2v-80,69,-231,29,-231,-101v0,-76,66,-143,150,-143v74,0,119,55,119,111v0,55,-40,101,-84,101v-23,0,-32,-14,-34,-26v-25,34,-77,33,-77,-27v-1,-49,54,-110,109,-86v5,-3,8,-11,14,-10r-20,111v-3,13,-1,28,14,28v34,0,56,-34,56,-85xm181,-125v-31,-36,-69,1,-69,58v0,39,35,50,55,26",w:295},A:{d:"203,-14r29,8r0,6r-103,0r0,-6r36,-7r-27,-71r-79,0r-26,69v8,6,26,2,26,15r-65,0v0,-14,18,-10,26,-16r83,-215r17,0xm134,-96r-36,-93r-34,93r70,0",w:226},B:{d:"210,-66v0,35,-29,66,-81,66r-116,0r0,-6r36,-7r0,-204r-36,-6r0,-6v0,0,182,-12,182,51v0,26,-21,44,-52,56v46,5,67,30,67,56xm85,-125v44,4,73,-6,73,-49v-1,-45,-36,-50,-73,-44r0,93xm169,-63v3,-41,-34,-56,-84,-51r0,102v43,10,89,-6,84,-51",w:225},C:{d:"219,-61r-7,47v-79,47,-198,3,-198,-98v0,-85,91,-150,177,-112v7,-4,9,-11,19,-12r3,77r-6,1v-24,-48,-48,-66,-84,-66v-32,0,-67,31,-67,106v0,84,53,125,119,106r40,-51",w:235},D:{d:"49,-217r-36,-6r0,-6r110,0v78,0,126,49,126,114v0,65,-53,115,-128,115r-108,0r0,-6r36,-7r0,-204xm207,-115v0,-88,-47,-107,-122,-102r0,205v78,5,122,-10,122,-103",w:263},E:{d:"193,-229r9,61r-3,3v-21,-18,-32,-52,-68,-52r-46,0r0,96v39,5,53,-10,58,-45r6,0r0,101v-9,2,-7,-6,-9,-11v-7,-33,-21,-37,-55,-35r0,99v38,-2,87,10,99,-19r31,-41r4,2r-10,70r-196,0r0,-6r36,-7r0,-204r-36,-6r0,-6r180,0",w:230},F:{d:"202,-168r-3,3v-22,-18,-31,-52,-68,-52r-46,0r0,98v40,5,56,-10,61,-46r5,0r0,101v-8,2,-6,-7,-8,-11v-6,-33,-24,-35,-58,-34r0,96r38,7r0,6r-110,0r0,-6r36,-7r0,-204r-36,-6r0,-6r181,0",w:210},G:{d:"212,-159r-6,1v-24,-48,-49,-66,-81,-66v-35,0,-69,31,-69,106v-1,91,59,128,126,99r0,-67r-31,-6r0,-6r93,0r0,6r-26,6r0,89v-12,1,-20,-12,-30,-16v-74,48,-174,-6,-174,-99v0,-84,90,-150,175,-112v7,-4,10,-11,20,-12",w:246},H:{d:"208,-125r0,-92r-35,-6r0,-6r107,0r0,6r-36,6r0,204r36,7r0,6r-107,0r0,-6r35,-7r0,-100r-123,0r0,100r35,7r0,6r-107,0r0,-6r36,-7r0,-204r-36,-6r0,-6r107,0r0,6r-35,6r0,92r123,0",w:293},I:{d:"90,-13r37,7r0,6r-110,0r0,-6r37,-7r0,-204r-37,-6r0,-6r110,0r0,6r-37,6r0,204",w:144},J:{d:"135,-217v-6,96,29,223,-77,223v-37,0,-50,-16,-50,-31v0,-13,11,-21,23,-21v16,0,27,16,27,44v37,-8,41,-29,41,-63r0,-152r-37,-6r0,-6r109,0r0,6",w:179},K:{d:"131,-131r90,114r31,11r0,6r-98,0v0,-13,17,-9,25,-15r-74,-97r-20,0r0,99r36,7r0,6r-108,0r0,-6r36,-7r0,-204r-36,-6r0,-6r108,0r0,6r-36,6r0,93r24,0r80,-88v-8,-6,-26,-3,-27,-17r78,0r0,6r-33,13",w:248},L:{d:"210,-70r-10,70r-187,0r0,-6r36,-7r0,-204r-36,-6r0,-6r108,0r0,6r-36,6r0,205v36,-2,79,8,90,-19r31,-41",w:219},M:{d:"280,-13r36,7r0,6r-107,0r0,-6r35,-7r0,-198r-2,0r-84,211r-9,0r-88,-211r-2,0r0,195r28,10r0,6r-69,0r0,-6r29,-10r0,-200r-29,-7r0,-6r76,0r73,179r70,-179r79,0r0,6r-36,6r0,204",w:329},N:{d:"47,-16r0,-198r-29,-9r0,-6r68,0r123,163r2,0r0,-147r-28,-10r0,-6r69,0r0,6r-29,10r0,215r-10,0r-152,-201r-2,0r0,183r28,10r0,6r-69,0r0,-6",w:268},O:{d:"239,-115v0,65,-44,120,-113,120v-72,0,-112,-55,-112,-120v0,-65,45,-120,114,-120v72,0,111,55,111,120xm198,-115v0,-75,-39,-111,-75,-111v-33,0,-67,27,-67,111v0,84,39,112,75,112v33,0,67,-37,67,-112",w:254},P:{d:"117,-229v109,-4,109,127,5,129v-12,0,-25,-1,-37,-3r0,90r35,7r0,6r-107,0r0,-6r36,-7r0,-204r-36,-6r0,-6r104,0xm159,-165v0,-43,-31,-62,-74,-53r0,106v41,8,74,-6,74,-53",w:213},Q:{d:"145,4v25,39,42,56,85,66r-1,5v-61,0,-87,2,-108,-45r-15,-26v-60,-9,-92,-60,-92,-119v0,-65,45,-120,114,-120v72,0,111,55,111,120v0,59,-36,110,-94,119xm198,-115v0,-75,-39,-111,-75,-111v-33,0,-67,27,-67,111v0,84,39,112,75,112v33,0,67,-37,67,-112",w:254},R:{d:"139,-113v51,19,48,101,105,107r0,6v-48,1,-76,5,-88,-38v-16,-28,-25,-80,-71,-69r0,94r35,7r0,6r-107,0r0,-6r36,-7r0,-204r-36,-6r0,-6v76,-1,191,-10,191,58v0,27,-24,50,-65,58xm164,-169v0,-43,-39,-57,-79,-49r0,101v45,3,79,-9,79,-52",w:236},S:{d:"141,-49v0,-58,-121,-50,-115,-119v6,-61,66,-82,109,-56v7,-4,9,-12,20,-12r6,69r-6,1v-21,-41,-41,-58,-65,-58v-20,0,-35,15,-35,39v0,55,122,49,116,116v-6,72,-74,88,-129,63v-7,4,-9,13,-20,12r-4,-78r6,-1v23,54,47,68,73,68v26,0,44,-17,44,-44",w:189},T:{d:"232,-165r-4,3v-17,-18,-36,-60,-64,-55r-24,0r0,204r38,7r0,6r-112,0r0,-6r38,-7r0,-204v-51,-11,-67,26,-91,55r-4,-3r13,-64r197,0",w:239},U:{d:"213,-213r-28,-10r0,-6r68,0r0,6r-28,10r0,139v0,46,-38,80,-89,80v-57,0,-91,-26,-91,-79r0,-144r-36,-6r0,-6r108,0r0,6r-35,6r0,137v0,51,23,68,70,68v89,0,54,-119,61,-201",w:264},V:{d:"215,-213r-85,215r-12,0r-86,-217r-31,-8r0,-6r105,0r0,6r-36,6r66,175r65,-171v-8,-6,-25,-3,-25,-16r66,0v0,14,-19,10,-27,16",w:241},W:{d:"197,-217r56,171r49,-167v-8,-6,-25,-3,-25,-16r66,0v0,14,-19,10,-27,16r-69,215r-12,0r-60,-172r-62,172r-13,0r-68,-217r-31,-8r0,-6r103,0r0,6r-34,6r49,171r50,-144r-8,-25r-30,-8r0,-6r100,0r0,6",w:343},X:{d:"210,-213r-66,88r75,111r32,8r0,6r-105,0r0,-6r31,-7r-55,-86r-58,84v8,6,26,2,26,15r-76,0r0,-6r30,-10r70,-94r-70,-105r-32,-8r0,-6r105,0r0,6r-31,6r50,81r54,-79r-26,-8r0,-6r76,0r0,6",w:257},Y:{d:"204,-213r-68,108r0,92r37,7r0,6r-110,0r0,-6r37,-7r0,-86r-69,-116r-32,-8r0,-6r105,0r0,6r-31,6r55,103r57,-101r-27,-8r0,-6r74,0r0,6",w:227},Z:{d:"214,-70r-10,70r-189,0r-1,-4r147,-213v-42,2,-89,-10,-105,21r-28,31v-7,-16,6,-44,6,-64r174,0r1,3r-147,214v42,-4,102,13,117,-19r32,-41",w:229},"[":{d:"122,-257r-61,0r0,311r61,0r0,9r-90,0r0,-330r90,0r0,10",w:109},"\\":{d:"8,-267r146,337r-11,6r-147,-338",w:138},"]":{d:"48,-257r-61,0r0,-10r90,0r0,330r-90,0r0,-9r61,0r0,-311",w:109},"^":{d:"54,-217r-41,35r-4,-3r44,-64r5,0r41,64r-5,3",w:107},_:{d:"158,-12r0,12r-158,0r0,-12r158,0",w:158},"`":{d:"61,-186r-4,2v-16,-18,-37,-37,-43,-46v-12,-19,12,-31,22,-14v5,9,15,36,25,58",w:85},a:{d:"133,6v-16,2,-19,-13,-24,-28v-17,17,-35,28,-54,28v-23,0,-38,-14,-38,-36v0,-32,38,-50,92,-57v8,-49,-21,-78,-63,-58v17,11,14,38,-6,38v-11,0,-17,-9,-17,-18v0,-23,37,-42,71,-42v67,0,41,87,46,146v0,10,8,14,30,12v2,12,-25,13,-37,15xm109,-27r0,-50v-46,0,-61,17,-61,36v1,31,38,29,61,14",w:168},b:{d:"176,-83v0,69,-87,112,-150,75r0,-226v-8,-7,-23,-7,-26,-19v19,-3,39,-13,57,-13r1,123v40,-46,118,-22,118,60xm144,-77v0,-58,-45,-80,-87,-59r0,113v42,30,87,25,87,-54",w:189},c:{d:"151,-135v0,12,-9,22,-20,22v-23,0,-25,-31,-12,-43v-43,-6,-71,14,-74,71v-4,62,59,84,108,55r2,5v-45,57,-142,29,-142,-53v0,-50,37,-89,88,-89v30,0,50,14,50,32",w:163},d:{d:"162,-20v7,5,21,3,23,13v-16,3,-34,12,-50,12v-2,-8,-1,-18,-4,-24v-38,46,-117,26,-117,-57v0,-55,46,-103,117,-89r0,-69v-8,-7,-23,-7,-26,-19v19,-3,39,-13,57,-13r0,246xm46,-82v0,56,50,86,85,53r0,-107v-32,-41,-85,-24,-85,54",w:189},e:{d:"159,-97r-114,0v-5,75,53,98,110,66r2,4v-49,60,-144,33,-144,-51v0,-51,34,-89,79,-89v45,0,67,30,67,70xm46,-105r79,-2v-3,-31,-13,-52,-35,-52v-23,0,-42,21,-44,54",w:172},f:{d:"41,-160v-4,-63,22,-102,74,-106v33,-2,39,36,11,38v-11,0,-21,-7,-32,-26v-22,8,-23,56,-22,95r45,0r0,14r-45,0r0,134r29,6r0,5r-83,0v0,-11,16,-7,23,-11r0,-134r-32,0r0,-6",w:115},g:{d:"135,-148v42,44,-17,116,-78,86v-12,15,-14,40,19,38v42,-2,96,-2,96,39v0,28,-32,61,-92,61v-79,1,-96,-56,-34,-77r0,-2v-37,-15,-23,-40,5,-62v-54,-23,-28,-102,37,-102v17,0,32,4,42,12v17,-11,30,-16,41,-16v12,0,18,7,18,16v1,20,-31,23,-32,2v-7,2,-18,0,-22,5xm117,-111v0,-27,-11,-48,-33,-48v-19,0,-31,14,-31,48v0,36,12,48,34,48v19,0,30,-20,30,-48xm93,66v56,0,78,-63,20,-64r-59,-1v-30,23,-16,65,39,65",w:179},h:{d:"144,-11v-5,-50,19,-133,-37,-131v-15,0,-27,3,-41,11r0,120v7,4,22,0,22,11r-76,0v0,-11,16,-7,23,-11r0,-223v-8,-7,-23,-7,-26,-19v19,-3,39,-13,57,-13r1,128v36,-43,108,-38,108,21r0,106v7,4,23,0,23,11r-76,0v0,-11,15,-7,22,-11",w:204},i:{d:"33,-220v0,-11,9,-22,21,-22v11,0,19,9,19,20v0,12,-9,22,-21,22v-11,0,-19,-8,-19,-20xm38,-136v-7,-7,-20,-8,-24,-18v18,-3,38,-12,54,-12r0,155v7,4,24,0,24,11r-79,0v0,-12,18,-6,25,-11r0,-125",w:101},j:{d:"32,-220v0,-11,9,-22,21,-22v11,0,19,9,19,20v0,12,-9,22,-21,22v-11,0,-19,-8,-19,-20xm68,0v2,47,-24,74,-60,76v-28,2,-36,-37,-9,-39v12,0,21,12,23,29v12,-6,16,-16,16,-38r0,-164v-7,-7,-20,-8,-24,-18v18,-3,38,-12,54,-12r0,166",w:96},k:{d:"100,-95r63,83v6,5,21,1,21,12r-71,0v-1,-10,10,-8,14,-12r-47,-66r-14,0r0,67v6,4,20,1,20,11r-76,0v0,-12,18,-6,25,-11r0,-223v-8,-7,-23,-7,-26,-19v19,-3,39,-13,57,-13r0,177r16,0r47,-56v-6,-6,-16,-7,-19,-16r66,0v-2,11,-18,8,-24,14",w:186},l:{d:"66,-11v7,4,24,0,24,11r-80,0v0,-12,18,-6,25,-11r0,-223v-8,-7,-23,-7,-26,-19v19,-3,39,-13,57,-13r0,255",w:96},m:{d:"239,-11v-6,-48,20,-132,-33,-131v-15,0,-24,5,-38,13r0,118v7,4,24,0,24,11r-77,0v0,-11,15,-7,22,-11v-6,-47,21,-133,-33,-131v-15,0,-23,3,-37,11r0,120v7,4,22,0,22,11r-77,0v0,-11,17,-6,24,-11r0,-125v-7,-7,-19,-8,-23,-18v17,-3,36,-12,51,-12v1,9,-2,22,1,29v33,-38,85,-40,101,2v34,-44,105,-43,104,18r0,106v7,4,24,0,24,11r-77,0v0,-11,15,-7,22,-11",w:299},n:{d:"127,-167v68,3,37,94,44,156v7,4,24,0,24,11r-77,0v0,-11,16,-7,23,-11v-5,-49,20,-132,-34,-131v-15,0,-26,3,-40,11r0,120v7,4,22,0,22,11r-77,0v0,-11,17,-6,24,-11r0,-125v-7,-7,-19,-8,-23,-18v17,-3,36,-12,51,-12v1,9,-2,22,1,29v22,-20,43,-30,62,-30",w:200},o:{d:"174,-82v0,46,-30,88,-83,88v-51,0,-78,-38,-78,-87v0,-46,30,-86,83,-86v51,0,78,36,78,85xm139,-82v0,-53,-20,-77,-47,-77v-25,0,-44,25,-44,79v0,53,22,78,47,78v27,0,44,-26,44,-80",w:186},p:{d:"184,-85v0,57,-52,106,-119,87r0,60r27,9r0,5r-82,0v1,-12,17,-8,24,-14r0,-198v-7,-7,-19,-8,-23,-18v17,-3,36,-12,52,-12v0,9,-2,21,0,29v44,-55,121,-31,121,52xm152,-78v2,-57,-48,-82,-87,-54r0,111v40,34,84,18,87,-57",w:198},q:{d:"185,76r-81,0r0,-5r27,-9r-1,-79v-41,42,-116,25,-116,-58v0,-62,63,-113,129,-84v7,-5,9,-14,19,-15r0,236v7,5,22,2,23,14xm46,-82v0,56,50,88,85,54r0,-108v-32,-41,-85,-24,-85,54",w:185},r:{d:"112,-167v29,0,32,40,6,40v-10,0,-17,-7,-19,-19v-13,1,-27,12,-32,24r0,111v7,4,24,0,24,11r-79,0v0,-11,17,-6,24,-11r0,-125v-7,-7,-19,-8,-23,-18v17,-3,36,-12,51,-12v1,12,-2,26,1,36v12,-22,30,-37,47,-37",w:141},s:{d:"41,-134v0,43,86,32,86,85v0,52,-66,66,-112,45r0,-46r8,0v12,33,29,46,48,46v19,0,31,-11,31,-30v0,-43,-84,-31,-84,-83v0,-44,57,-60,99,-44r1,41r-6,2v-14,-29,-28,-40,-44,-40v-16,0,-27,9,-27,24",w:140},t:{d:"62,-47v-5,33,24,30,56,30r0,3v-28,21,-86,31,-86,-21r0,-110r-25,0v3,-14,22,-13,28,-23r21,-33r6,0r0,40r55,0r0,16r-55,0r0,98",w:119},u:{d:"167,-20v7,5,21,3,23,13r-51,12v-1,-9,2,-22,-1,-29v-36,42,-107,41,-106,-20r0,-95v-7,-6,-20,-6,-23,-15v18,-3,37,-12,54,-12r0,106v-4,49,44,48,73,29r0,-108v-7,-6,-20,-6,-23,-15v18,-3,37,-12,54,-12r0,146",w:195},v:{d:"58,-149r45,112r40,-109v-7,-6,-21,-5,-23,-15r64,0v-3,11,-19,10,-27,16r-61,149r-9,0r-64,-153v-7,-5,-20,-2,-22,-12r83,0r0,4",w:178},w:{d:"148,-149v13,35,19,77,35,109r37,-106v-7,-6,-20,-5,-22,-15r63,0v-3,11,-18,10,-26,16r-59,149r-9,0r-36,-106r-47,106r-9,0r-57,-153v-7,-5,-20,-2,-22,-12r81,0v-2,10,-17,7,-24,12r38,109r35,-78r-11,-31v-6,-4,-19,-3,-20,-12r77,0v-2,10,-17,7,-24,12",w:252},x:{d:"99,-97r36,-50v-6,-5,-18,-4,-19,-14r61,0v-3,11,-20,8,-26,16r-46,57r55,76v7,5,22,1,22,12r-84,0v0,-11,16,-7,23,-12r-34,-54r-36,52v6,5,18,3,18,14r-60,0v1,-12,18,-9,26,-15r46,-59r-53,-75v-7,-5,-20,-2,-22,-12r84,0v-2,10,-16,7,-23,12",w:185},y:{d:"155,-145r-71,177v-12,30,-27,44,-47,44v-30,1,-31,-37,-6,-38v11,0,18,7,26,17v13,-11,21,-35,29,-52r-63,-152v-7,-5,-20,-2,-22,-12r82,0v-2,10,-18,7,-25,12v16,36,25,79,44,112r39,-109v-7,-6,-21,-5,-23,-15r62,0v-2,11,-18,10,-25,16",w:176},z:{d:"154,-159r-101,149r59,0r37,-40r5,2r-6,48r-137,0r-1,-3r102,-148r-54,0r-35,40r-4,-2r4,-48v42,2,93,-4,131,2",w:167},"{":{d:"82,-169v0,52,-19,58,-50,67v49,-2,50,54,50,112v0,33,10,42,41,47r0,6v-44,-2,-71,-11,-71,-62v0,-52,7,-101,-48,-101r0,-5v54,-1,49,-46,48,-99v0,-51,27,-61,71,-63r0,7v-48,1,-41,44,-41,91",w:119},"|":{d:"55,87r-13,0r0,-339r13,0r0,339",w:96},"}":{d:"68,-204v-1,52,-6,99,48,99r0,5v-55,0,-49,48,-48,101v0,51,-27,60,-71,62r0,-6v49,-1,41,-46,41,-93v0,-51,20,-58,51,-67v-48,2,-51,-50,-51,-110v0,-33,-10,-42,-41,-47r0,-7v44,2,71,12,71,63",w:119},"~":{d:"14,-97v5,-55,48,-23,79,-23v7,0,14,-4,18,-15r5,2v-5,56,-49,29,-79,23v-7,0,-13,4,-18,15",w:129},"\u00c4":{d:"143,-267v-10,0,-18,-8,-18,-18v0,-10,9,-19,20,-19v10,0,17,7,17,17v0,10,-8,20,-19,20xm81,-267v-10,0,-17,-8,-17,-18v0,-10,9,-19,20,-19v10,0,17,7,17,17v0,10,-9,20,-20,20xm203,-14r29,8r0,6r-103,0r0,-6r36,-7r-27,-71r-79,0r-26,69v8,6,26,2,26,15r-65,0v0,-14,18,-10,26,-16r83,-215r17,0xm134,-96r-36,-93r-34,93r70,0",w:226},"\u00c5":{d:"203,-14r29,8r0,6r-103,0r0,-6r36,-7r-27,-71r-79,0r-26,69v8,6,26,2,26,15r-65,0v0,-14,18,-10,26,-16r82,-213v-36,-8,-29,-63,10,-63v39,0,42,54,8,62xm94,-260v0,17,7,26,17,26v11,0,16,-9,16,-26v0,-17,-6,-26,-17,-26v-10,0,-16,9,-16,26xm99,-189v-14,29,-23,63,-35,93r70,0",w:226},"\u00c7":{d:"56,-118v0,84,53,125,119,106r40,-51r4,2r-7,47v-19,10,-35,17,-59,19r-27,22v17,2,30,14,30,31v7,31,-63,47,-63,17v0,-6,4,-12,10,-12v10,0,13,14,6,19v13,7,27,1,27,-18v0,-18,-15,-26,-31,-20r-5,-6r39,-33v-74,0,-125,-45,-125,-117v0,-85,91,-150,177,-112v7,-4,9,-11,19,-12r3,77r-6,1v-24,-48,-48,-66,-84,-66v-32,0,-67,31,-67,106",w:235},"\u00c9":{d:"142,-318v16,29,-22,40,-40,67r-4,-2v17,-30,14,-69,44,-65xm193,-229r9,61r-3,3v-21,-18,-32,-52,-68,-52r-46,0r0,96v39,5,53,-10,58,-45r6,0r0,101v-9,2,-7,-6,-9,-11v-7,-33,-21,-37,-55,-35r0,99v38,-2,87,10,99,-19r31,-41r4,2r-10,70r-196,0r0,-6r36,-7r0,-204r-36,-6r0,-6r180,0",w:230},"\u00d1":{d:"86,-258v5,-56,48,-24,79,-24v7,0,14,-4,18,-15r4,3v-5,55,-47,23,-78,23v-7,0,-13,3,-18,14xm47,-16r0,-198r-29,-9r0,-6r68,0r123,163r2,0r0,-147r-28,-10r0,-6r69,0r0,6r-29,10r0,215r-10,0r-152,-201r-2,0r0,183r28,10r0,6r-69,0r0,-6",w:268},"\u00d6":{d:"152,-267v-10,0,-18,-8,-18,-18v0,-10,9,-19,20,-19v10,0,17,7,17,17v0,10,-8,20,-19,20xm90,-267v-10,0,-17,-8,-17,-18v0,-10,9,-19,20,-19v10,0,17,7,17,17v0,10,-9,20,-20,20xm239,-115v0,65,-44,120,-113,120v-72,0,-112,-55,-112,-120v0,-65,45,-120,114,-120v72,0,111,55,111,120xm198,-115v0,-75,-39,-111,-75,-111v-33,0,-67,27,-67,111v0,84,39,112,75,112v33,0,67,-37,67,-112",w:254},"\u00dc":{d:"176,-267v-10,0,-18,-8,-18,-18v0,-10,9,-19,20,-19v10,0,17,7,17,17v0,10,-8,20,-19,20xm114,-267v-10,0,-17,-8,-17,-18v0,-10,9,-19,20,-19v10,0,17,7,17,17v0,10,-9,20,-20,20xm213,-213r-28,-10r0,-6r68,0r0,6r-28,10r0,139v0,46,-38,80,-89,80v-57,0,-91,-26,-91,-79r0,-144r-36,-6r0,-6r108,0r0,6r-35,6r0,137v0,51,23,68,70,68v89,0,54,-119,61,-201",w:264},"\u00e1":{d:"117,-251v16,29,-23,40,-41,67r-4,-2v17,-30,15,-69,45,-65xm133,6v-16,2,-19,-13,-24,-28v-17,17,-35,28,-54,28v-23,0,-38,-14,-38,-36v0,-32,38,-50,92,-57v8,-49,-21,-78,-63,-58v17,11,14,38,-6,38v-11,0,-17,-9,-17,-18v0,-23,37,-42,71,-42v67,0,41,87,46,146v0,10,8,14,30,12v2,12,-25,13,-37,15xm109,-27r0,-50v-46,0,-61,17,-61,36v1,31,38,29,61,14",w:168},"\u00e0":{d:"97,-186r-5,2v-16,-18,-36,-37,-42,-46v-12,-19,12,-31,22,-14v5,9,15,36,25,58xm133,6v-16,2,-19,-13,-24,-28v-17,17,-35,28,-54,28v-23,0,-38,-14,-38,-36v0,-32,38,-50,92,-57v8,-49,-21,-78,-63,-58v17,11,14,38,-6,38v-11,0,-17,-9,-17,-18v0,-23,37,-42,71,-42v67,0,41,87,46,146v0,10,8,14,30,12v2,12,-25,13,-37,15xm109,-27r0,-50v-46,0,-61,17,-61,36v1,31,38,29,61,14",w:168},"\u00e2":{d:"87,-217r-40,35r-5,-3r44,-64r5,0r41,64r-4,3xm133,6v-16,2,-19,-13,-24,-28v-17,17,-35,28,-54,28v-23,0,-38,-14,-38,-36v0,-32,38,-50,92,-57v8,-49,-21,-78,-63,-58v17,11,14,38,-6,38v-11,0,-17,-9,-17,-18v0,-23,37,-42,71,-42v67,0,41,87,46,146v0,10,8,14,30,12v2,12,-25,13,-37,15xm109,-27r0,-50v-46,0,-61,17,-61,36v1,31,38,29,61,14",w:168},"\u00e4":{d:"110,-200v-10,0,-17,-8,-17,-18v0,-10,8,-19,19,-19v10,0,17,7,17,17v0,10,-8,20,-19,20xm49,-200v-10,0,-18,-8,-18,-18v0,-10,9,-19,20,-19v10,0,17,7,17,17v0,10,-8,20,-19,20xm133,6v-16,2,-19,-13,-24,-28v-17,17,-35,28,-54,28v-23,0,-38,-14,-38,-36v0,-32,38,-50,92,-57v8,-49,-21,-78,-63,-58v17,11,14,38,-6,38v-11,0,-17,-9,-17,-18v0,-23,37,-42,71,-42v67,0,41,87,46,146v0,10,8,14,30,12v2,12,-25,13,-37,15xm109,-27r0,-50v-46,0,-61,17,-61,36v1,31,38,29,61,14",w:168},"\u00e3":{d:"35,-192v5,-55,47,-23,78,-23v7,0,14,-4,18,-15r5,2v-5,56,-48,24,-79,24v-7,0,-13,3,-18,14xm133,6v-16,2,-19,-13,-24,-28v-17,17,-35,28,-54,28v-23,0,-38,-14,-38,-36v0,-32,38,-50,92,-57v8,-49,-21,-78,-63,-58v17,11,14,38,-6,38v-11,0,-17,-9,-17,-18v0,-23,37,-42,71,-42v67,0,41,87,46,146v0,10,8,14,30,12v2,12,-25,13,-37,15xm109,-27r0,-50v-46,0,-61,17,-61,36v1,31,38,29,61,14",w:168},"\u00e5":{d:"119,-213v0,16,-14,32,-34,32v-20,0,-32,-14,-32,-32v0,-16,14,-32,34,-32v20,0,32,14,32,32xm133,6v-16,2,-19,-13,-24,-28v-17,17,-35,28,-54,28v-23,0,-38,-14,-38,-36v0,-32,38,-50,92,-57v8,-49,-21,-78,-63,-58v17,11,14,38,-6,38v-11,0,-17,-9,-17,-18v0,-23,37,-42,71,-42v67,0,41,87,46,146v0,10,8,14,30,12v2,12,-25,13,-37,15xm103,-213v0,-17,-6,-26,-17,-26v-10,0,-17,9,-17,26v0,17,7,26,17,26v11,0,17,-9,17,-26xm109,-27r0,-50v-46,0,-61,17,-61,36v1,31,38,29,61,14",w:168},"\u00e7":{d:"45,-85v-4,62,59,84,108,55r2,5v-22,20,-46,31,-66,52v17,2,29,14,29,31v7,31,-63,47,-63,17v0,-6,4,-12,10,-12v10,0,13,14,6,19v13,7,28,1,28,-18v0,-17,-15,-26,-31,-20r-6,-6r40,-33v-52,6,-89,-30,-89,-83v0,-50,37,-89,88,-89v30,0,50,14,50,32v0,12,-9,22,-20,22v-23,0,-25,-31,-12,-43v-43,-6,-71,14,-74,71",w:163},"\u00e9":{d:"118,-251v16,29,-22,40,-40,67r-5,-2v17,-30,15,-69,45,-65xm159,-97r-114,0v-5,75,53,98,110,66r2,4v-49,60,-144,33,-144,-51v0,-51,34,-89,79,-89v45,0,67,30,67,70xm46,-105r79,-2v-3,-31,-13,-52,-35,-52v-23,0,-42,21,-44,54",w:172},"\u00e8":{d:"102,-186r-5,2v-16,-18,-36,-37,-42,-46v-12,-19,12,-31,22,-14v5,9,15,36,25,58xm159,-97r-114,0v-5,75,53,98,110,66r2,4v-49,60,-144,33,-144,-51v0,-51,34,-89,79,-89v45,0,67,30,67,70xm46,-105r79,-2v-3,-31,-13,-52,-35,-52v-23,0,-42,21,-44,54",w:172},"\u00ea":{d:"91,-217r-41,35r-4,-3r43,-64r6,0r40,64r-4,3xm159,-97r-114,0v-5,75,53,98,110,66r2,4v-49,60,-144,33,-144,-51v0,-51,34,-89,79,-89v45,0,67,30,67,70xm46,-105r79,-2v-3,-31,-13,-52,-35,-52v-23,0,-42,21,-44,54",w:172},"\u00eb":{d:"121,-200v-10,0,-17,-8,-17,-18v0,-10,8,-19,19,-19v10,0,18,7,18,17v0,10,-9,20,-20,20xm60,-200v-10,0,-17,-8,-17,-18v0,-10,8,-19,19,-19v10,0,18,7,18,17v0,10,-9,20,-20,20xm159,-97r-114,0v-5,75,53,98,110,66r2,4v-49,60,-144,33,-144,-51v0,-51,34,-89,79,-89v45,0,67,30,67,70xm46,-105r79,-2v-3,-31,-13,-52,-35,-52v-23,0,-42,21,-44,54",w:172},"\u00ed":{d:"81,-251v18,28,-22,40,-40,67r-4,-2v17,-29,15,-68,44,-65xm38,-11r0,-125v-7,-7,-20,-8,-24,-18v18,-3,38,-12,54,-12r0,155v7,4,24,0,24,11r-79,0v0,-12,18,-6,25,-11",w:101},"\u00ec":{d:"61,-186r-4,2v-16,-18,-37,-37,-43,-46v-12,-19,12,-31,22,-14v5,9,15,36,25,58xm38,-11r0,-125v-7,-7,-20,-8,-24,-18v18,-3,38,-12,54,-12r0,155v7,4,24,0,24,11r-79,0v0,-12,18,-6,25,-11",w:101},"\u00ee":{d:"51,-217r-41,35r-4,-3r43,-64r6,0r40,64r-4,3xm38,-11r0,-125v-7,-7,-20,-8,-24,-18v18,-3,38,-12,54,-12r0,155v7,4,24,0,24,11r-79,0v0,-12,18,-6,25,-11",w:101},"\u00ef":{d:"80,-200v-10,0,-18,-8,-18,-18v0,-10,9,-19,20,-19v10,0,17,7,17,17v0,10,-8,20,-19,20xm18,-200v-10,0,-17,-8,-17,-18v0,-10,9,-19,20,-19v10,0,17,7,17,17v0,10,-9,20,-20,20xm38,-11r0,-125v-7,-7,-20,-8,-24,-18v18,-3,38,-12,54,-12r0,155v7,4,24,0,24,11r-79,0v0,-12,18,-6,25,-11",w:101},"\u00f1":{d:"47,-192v5,-55,48,-23,79,-23v7,0,14,-4,18,-15r4,2v-4,56,-47,24,-78,24v-7,0,-13,3,-18,14xm127,-167v68,3,37,94,44,156v7,4,24,0,24,11r-77,0v0,-11,16,-7,23,-11v-5,-49,20,-132,-34,-131v-15,0,-26,3,-40,11r0,120v7,4,22,0,22,11r-77,0v0,-11,17,-6,24,-11r0,-125v-7,-7,-19,-8,-23,-18v17,-3,36,-12,51,-12v1,9,-2,22,1,29v22,-20,43,-30,62,-30",w:200},"\u00f3":{d:"122,-251v18,28,-22,40,-40,67r-4,-2v17,-29,15,-68,44,-65xm174,-82v0,46,-30,88,-83,88v-51,0,-78,-38,-78,-87v0,-46,30,-86,83,-86v51,0,78,36,78,85xm139,-82v0,-53,-20,-77,-47,-77v-25,0,-44,25,-44,79v0,53,22,78,47,78v27,0,44,-26,44,-80",w:186},"\u00f2":{d:"109,-186r-5,2v-16,-18,-36,-37,-42,-46v-12,-19,12,-31,22,-14v5,9,15,36,25,58xm174,-82v0,46,-30,88,-83,88v-51,0,-78,-38,-78,-87v0,-46,30,-86,83,-86v51,0,78,36,78,85xm139,-82v0,-53,-20,-77,-47,-77v-25,0,-44,25,-44,79v0,53,22,78,47,78v27,0,44,-26,44,-80",w:186},"\u00f4":{d:"93,-217r-41,35r-4,-3r43,-64r6,0r41,64r-5,3xm174,-82v0,46,-30,88,-83,88v-51,0,-78,-38,-78,-87v0,-46,30,-86,83,-86v51,0,78,36,78,85xm139,-82v0,-53,-20,-77,-47,-77v-25,0,-44,25,-44,79v0,53,22,78,47,78v27,0,44,-26,44,-80",w:186},"\u00f6":{d:"122,-200v-10,0,-17,-8,-17,-18v0,-10,9,-19,20,-19v10,0,17,7,17,17v0,10,-9,20,-20,20xm61,-200v-10,0,-17,-8,-17,-18v0,-10,8,-19,19,-19v10,0,18,7,18,17v0,10,-9,20,-20,20xm174,-82v0,46,-30,88,-83,88v-51,0,-78,-38,-78,-87v0,-46,30,-86,83,-86v51,0,78,36,78,85xm139,-82v0,-53,-20,-77,-47,-77v-25,0,-44,25,-44,79v0,53,22,78,47,78v27,0,44,-26,44,-80",w:186},"\u00f5":{d:"41,-192v5,-55,48,-23,79,-23v7,0,14,-4,18,-15r5,2v-5,56,-48,24,-79,24v-7,0,-13,3,-18,14xm174,-82v0,46,-30,88,-83,88v-51,0,-78,-38,-78,-87v0,-46,30,-86,83,-86v51,0,78,36,78,85xm139,-82v0,-53,-20,-77,-47,-77v-25,0,-44,25,-44,79v0,53,22,78,47,78v27,0,44,-26,44,-80",w:186},"\u00fa":{d:"127,-251v18,28,-22,40,-40,67r-4,-2v17,-29,15,-68,44,-65xm167,-20v7,5,21,3,23,13r-51,12v-1,-9,2,-22,-1,-29v-36,42,-107,41,-106,-20r0,-95v-7,-6,-20,-6,-23,-15v18,-3,37,-12,54,-12r0,106v-4,49,44,48,73,29r0,-108v-7,-6,-20,-6,-23,-15v18,-3,37,-12,54,-12r0,146",w:195},"\u00f9":{d:"108,-186r-5,2v-16,-18,-36,-37,-42,-46v-12,-19,12,-31,22,-14v5,9,15,36,25,58xm167,-20v7,5,21,3,23,13r-51,12v-1,-9,2,-22,-1,-29v-36,42,-107,41,-106,-20r0,-95v-7,-6,-20,-6,-23,-15v18,-3,37,-12,54,-12r0,106v-4,49,44,48,73,29r0,-108v-7,-6,-20,-6,-23,-15v18,-3,37,-12,54,-12r0,146",w:195},"\u00fb":{d:"96,-217r-41,35r-4,-3r44,-64r5,0r41,64r-5,3xm167,-20v7,5,21,3,23,13r-51,12v-1,-9,2,-22,-1,-29v-36,42,-107,41,-106,-20r0,-95v-7,-6,-20,-6,-23,-15v18,-3,37,-12,54,-12r0,106v-4,49,44,48,73,29r0,-108v-7,-6,-20,-6,-23,-15v18,-3,37,-12,54,-12r0,146",w:195},"\u00fc":{d:"122,-200v-10,0,-17,-8,-17,-18v0,-10,8,-19,19,-19v10,0,17,7,17,17v0,10,-8,20,-19,20xm61,-200v-10,0,-17,-8,-17,-18v0,-10,8,-19,19,-19v10,0,17,7,17,17v0,10,-8,20,-19,20xm167,-20v7,5,21,3,23,13r-51,12v-1,-9,2,-22,-1,-29v-36,42,-107,41,-106,-20r0,-95v-7,-6,-20,-6,-23,-15v18,-3,37,-12,54,-12r0,106v-4,49,44,48,73,29r0,-108v-7,-6,-20,-6,-23,-15v18,-3,37,-12,54,-12r0,146",w:195},"\u2020":{d:"153,-144r-66,-1r2,175r-14,0r1,-175r-65,1r0,-13r65,2r-1,-86r14,0r-2,86r66,-2r0,13",w:163},"\u00b0":{d:"125,-181v0,26,-21,54,-57,54v-35,0,-54,-26,-54,-54v0,-26,21,-54,57,-54v35,0,54,26,54,54xm100,-181v0,-27,-12,-45,-31,-45v-18,0,-30,19,-30,46v0,27,12,45,30,45v19,0,31,-19,31,-46",w:138},"\u00a2":{d:"93,-18v25,3,43,-1,64,-12r2,4v-18,20,-42,33,-68,31r-2,30r-13,-2r3,-29v-37,-7,-65,-38,-65,-82v0,-46,35,-83,79,-88r2,-27r13,1r-3,25v35,1,53,19,53,37v0,15,-7,23,-19,23v-21,0,-27,-25,-13,-42v-4,-4,-12,-8,-21,-9xm47,-85v0,28,12,53,34,63r12,-135v-21,5,-46,27,-46,72",w:169},"\u00a3":{d:"151,-118r0,14r-49,0v1,31,-12,52,-40,68v43,0,113,26,115,-29r8,1v-3,36,-19,69,-49,69v-17,0,-52,-12,-80,-26v-6,17,-19,26,-30,26v-12,0,-17,-6,-17,-15v0,-12,12,-24,41,-25v16,-21,23,-42,14,-69r-47,0r0,-14r40,0v-28,-55,21,-108,75,-108v35,0,44,17,44,26v0,12,-8,21,-20,21v-13,0,-28,-12,-33,-36v-44,10,-46,61,-25,97r53,0",w:197},"\u00a7":{d:"149,-53v0,50,-35,88,-76,88v-32,0,-52,-17,-52,-35v0,-12,8,-20,19,-20v18,1,24,21,14,35v24,25,64,6,73,-28v-68,-45,-105,-91,-105,-140v0,-51,35,-89,76,-89v32,0,52,17,52,35v0,26,-39,27,-38,3v0,-5,1,-11,4,-17v-23,-25,-66,-7,-73,29v69,44,106,91,106,139xm41,-182v-7,62,40,99,88,160v11,-63,-40,-100,-88,-160",w:171},"\u2022":{d:"133,-115v0,27,-22,49,-49,49v-27,0,-48,-22,-48,-49v0,-27,21,-48,48,-48v27,0,49,21,49,48",w:169},"\u00b6":{d:"210,17r39,7r0,6r-76,0v-100,0,-151,-56,-151,-137v0,-81,57,-137,153,-137r74,0r0,6r-39,7r0,248xm170,-232r0,250r28,-1r0,-248",w:258},"\u00df":{d:"42,-161v-3,-63,29,-106,82,-106v39,0,59,31,59,60v0,22,-17,50,-52,74r0,3v48,30,64,56,64,80v0,32,-21,55,-52,55v-27,0,-45,-11,-45,-27v0,-10,7,-17,16,-17v13,0,21,13,17,31v16,12,38,2,38,-23v0,-22,-16,-46,-69,-81r0,-3v36,-36,48,-58,48,-85v0,-27,-14,-51,-41,-51v-22,0,-35,14,-35,55r0,185v5,4,16,1,15,11r-69,0v0,-11,17,-6,24,-11r0,-134r-33,0r0,-6",w:208},"\u00ae":{d:"68,-127v-31,0,-54,-23,-54,-54v0,-31,23,-54,54,-54v31,0,54,23,54,54v0,31,-23,54,-54,54xm68,-132v27,0,47,-22,47,-49v0,-27,-20,-48,-47,-48v-27,0,-47,21,-47,48v0,27,20,49,47,49xm75,-181v12,4,11,23,25,24v-7,11,-26,-4,-26,-16v-2,-5,-6,-5,-13,-5r0,19v3,2,11,-1,10,5r-30,0v-1,-5,6,-3,9,-5r0,-44v-3,-2,-10,0,-9,-6v19,0,51,-3,50,14v0,6,-6,12,-16,14xm79,-194v0,-9,-8,-12,-18,-11r0,22v11,1,18,-3,18,-11",w:135},"\u00a9":{d:"252,-115v0,67,-54,120,-120,120v-66,0,-120,-53,-120,-120v0,-66,54,-120,120,-120v66,0,120,54,120,120xm243,-115v0,-62,-49,-111,-111,-111v-61,0,-111,49,-111,111v0,62,50,112,111,112v62,0,111,-50,111,-112xm97,-117v0,42,24,64,57,55v9,-9,12,-24,26,-28r-4,30v-44,23,-105,1,-105,-53v0,-45,48,-80,93,-59v4,-2,4,-8,11,-7r2,44r-5,0v-20,-49,-75,-54,-75,18",w:264},"\u2122":{d:"165,-223r0,51v3,2,9,1,9,7r-33,0v-1,-6,6,-5,9,-7v-1,-16,2,-35,-1,-49r-22,56r-7,0v-9,-18,-12,-41,-24,-56r0,49v3,2,9,1,8,7r-23,0v-1,-6,5,-5,8,-7r0,-50v-3,-2,-9,-1,-8,-7r29,0v7,14,10,31,18,44r16,-44r30,0v1,6,-6,4,-9,6xm71,-229v0,7,6,19,1,22v-7,-6,-10,-20,-23,-17r0,52v3,2,9,1,9,7r-34,0v0,-6,7,-4,10,-7r0,-52v-15,-4,-15,14,-26,17r4,-22r59,0",w:183},"\u00b4":{d:"65,-251v16,29,-23,40,-41,67r-4,-2v17,-30,15,-69,45,-65",w:85},"\u00a8":{d:"87,-200v-10,0,-17,-8,-17,-18v0,-10,9,-19,20,-19v10,0,17,7,17,17v0,10,-9,20,-20,20xm26,-200v-10,0,-17,-8,-17,-18v0,-10,8,-19,19,-19v10,0,18,7,18,17v0,10,-9,20,-20,20",w:115},"\u2260":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u00c6":{d:"81,-94r-50,79v8,6,26,2,26,15r-70,0v0,-14,18,-10,26,-16r131,-198r-35,-9r0,-6r186,0r8,61r-3,3v-21,-18,-32,-52,-68,-52r-46,0r0,96v39,5,53,-10,58,-45r6,0r0,101v-9,2,-7,-6,-9,-11v-7,-33,-21,-37,-55,-35r0,99v38,-2,87,10,99,-19r31,-41r4,2r-10,70r-196,0r0,-6r36,-7r0,-81r-69,0xm150,-106r-1,-95r-60,95r61,0",w:331},"\u00d8":{d:"212,-197v59,71,17,202,-86,202v-30,0,-54,-9,-72,-24r-27,31r-9,-8r28,-31v-65,-69,-25,-208,82,-208v32,0,57,11,76,29r22,-25r9,7xm66,-50r118,-133v-45,-73,-128,-58,-128,68v0,27,4,49,10,65xm189,-171r-117,132v49,70,126,36,126,-76v0,-22,-3,-41,-9,-56",w:254},"\u221e":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u00b1":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u2264":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u2265":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u00a5":{d:"37,-112r56,0r-56,-94r-30,-8r0,-6r102,0r0,6r-31,6r48,91r51,-89r-26,-8r0,-6r73,0r0,6r-28,10r-58,92r56,0r0,12r-61,0r0,24r61,0r0,12r-61,0r0,51r37,7r0,6r-109,0r0,-6r37,-7r0,-51r-61,0r0,-12r61,0r0,-24r-61,0r0,-12",w:231},"\u03bc":{d:"102,-110r51,52r-12,12r-50,-53r-51,53r-12,-12r52,-52r-51,-52r12,-12r50,52r50,-52r12,12",w:181},"\u2202":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u2211":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u220f":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u03c0":{d:"252,-114v0,67,-54,120,-120,120v-66,0,-120,-53,-120,-120v0,-66,54,-120,120,-120v66,0,120,54,120,120xm243,-114v0,-62,-49,-112,-111,-112v-61,0,-111,50,-111,112v0,62,50,111,111,111v62,0,111,-49,111,-111xm187,-140v2,24,-28,42,-62,35r0,42v6,3,20,-1,19,9r-61,0v-1,-10,12,-6,18,-9r0,-103v-6,-3,-19,1,-18,-9v43,-1,109,-5,104,35xm162,-140v0,-22,-15,-32,-37,-27r0,55v23,2,37,-5,37,-28",w:264},"\u222b":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u00aa":{d:"133,-121v-15,7,-45,14,-46,-11v-16,23,-66,27,-67,-7v0,-23,27,-35,67,-39v6,-34,-13,-54,-45,-42v12,9,13,27,-4,29v-9,0,-14,-6,-14,-13v0,-17,30,-31,54,-31v48,0,31,59,34,101v0,8,5,11,20,10xm45,-147v1,21,26,22,42,11r0,-35v-31,1,-42,10,-42,24",w:142},"\u00ba":{d:"132,-175v0,32,-22,61,-61,61v-38,0,-58,-26,-58,-60v0,-32,23,-61,62,-61v39,0,57,26,57,60xm104,-175v0,-35,-13,-53,-32,-53v-18,0,-31,18,-31,54v0,36,14,53,32,53v19,0,31,-18,31,-54",w:145},"\u03a9":{d:"162,-238v12,-28,91,-44,95,-4v0,10,-7,18,-18,18v-12,0,-24,-10,-31,-32v-30,6,-36,50,-34,97r45,0r0,14r-45,0r0,134r27,6r0,5r-81,0v0,-11,17,-6,24,-11r0,-134r-72,0r0,134r25,6r0,5r-79,0v0,-11,16,-7,23,-11r0,-134r-32,0r0,-6r32,-10v-6,-63,26,-106,82,-106v29,0,39,17,39,29xm72,-159r72,0v0,-24,-1,-48,8,-64v-13,5,-31,-3,-37,-33v-38,4,-46,45,-43,97",w:214},"\u00e6":{d:"254,-27v-40,45,-103,40,-134,-4v-20,20,-42,36,-65,36v-23,0,-38,-13,-38,-35v0,-32,38,-50,92,-57v8,-48,-19,-77,-63,-59v16,12,15,38,-6,38v-11,0,-17,-8,-17,-17v-2,-36,96,-63,112,-20v39,-43,130,-18,121,48r-114,0v-5,74,53,99,110,66xm186,-159v-23,0,-42,22,-44,54r79,-3v-3,-31,-13,-51,-35,-51xm119,-35v-6,-12,-10,-26,-10,-42v-46,0,-61,17,-61,36v0,39,51,25,71,6",w:268},"\u00f8":{d:"154,-143v42,51,16,152,-63,149v-20,0,-36,-6,-49,-16r-17,20r-9,-7r17,-21v-42,-51,-17,-149,63,-149v20,0,36,5,49,15r17,-19r9,8xm130,-133v-33,-49,-84,-28,-82,53v0,15,2,28,5,39xm95,-2v37,9,52,-72,40,-119r-78,93v9,18,23,26,38,26",w:186},"\u00bf":{d:"100,-123v0,12,-9,22,-21,22v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,21,9,21,21xm113,-43v8,40,-80,53,-75,94v-4,29,36,47,56,28v-11,-16,-4,-39,15,-39v11,0,21,9,21,22v0,20,-23,34,-54,34v-39,0,-66,-28,-66,-59v0,-23,13,-38,43,-53v24,-12,33,-18,33,-31v0,-19,-27,-22,-42,-16v-4,-10,16,-14,27,-14v22,0,42,13,42,34",w:132},"\u00a1":{d:"70,-123v0,12,-10,22,-22,22v-12,0,-21,-10,-21,-22v0,-12,9,-21,21,-21v12,0,22,9,22,21xm44,-76r8,0v8,62,16,130,16,149v0,15,-8,23,-20,23v-12,0,-20,-8,-20,-23v0,-19,8,-87,16,-149",w:96},"\u00ac":{d:"167,-102r-152,0r0,-17r152,0r0,17",w:181},"\u221a":{d:"162,-236v15,-21,59,-41,90,-25v8,-1,17,-7,24,-5r0,255v7,4,24,0,24,11r-79,0v0,-12,18,-6,25,-11r0,-134r-72,0r0,134v7,4,24,0,24,11r-78,0v0,-11,17,-6,24,-11r0,-134r-72,0r0,134r25,6r0,5r-79,0v0,-11,16,-7,23,-11r0,-134r-32,0r0,-6r32,-10v-6,-63,26,-106,82,-106v32,0,39,18,39,31xm174,-159r72,0r0,-62v-11,-2,-22,-13,-25,-35v-39,3,-50,42,-47,97xm72,-159r72,0v0,-24,-1,-48,8,-64v-13,5,-31,-3,-37,-33v-38,4,-46,45,-43,97",w:307},"\u0192":{d:"60,-126v4,-60,30,-94,82,-100v30,-4,46,38,14,38v-12,0,-27,-9,-32,-29v-19,9,-28,47,-35,94r41,0r-3,14r-40,0v-14,75,-9,172,-84,176v-34,2,-39,-34,-9,-36v12,0,24,8,31,23v22,-35,22,-113,32,-163r-37,0r1,-6",w:174},"\u2248":{d:"162,-236v13,-17,37,-30,65,-31v31,0,40,17,40,29v0,10,-7,18,-17,18v-13,0,-25,-11,-29,-36v-39,3,-50,42,-47,97v37,1,74,1,102,-8r0,156v7,4,24,0,24,11r-78,0v0,-11,17,-6,24,-11r0,-134r-72,0r0,134v7,4,24,0,24,11r-78,0v0,-11,17,-6,24,-11r0,-134r-72,0r0,134r25,6r0,5r-79,0v0,-11,16,-7,23,-11r0,-134r-32,0r0,-6r32,-10v-6,-63,26,-106,82,-106v32,0,39,18,39,31xm72,-159r72,0v0,-24,-1,-48,8,-64v-13,5,-31,-3,-37,-33v-38,4,-46,45,-43,97",w:309},"\u0394":{d:"9,72r0,-360r162,0r0,360r-162,0"},"\u00ab":{d:"109,-81r43,65r-7,5r-70,-68r0,-3r70,-68r7,5xm45,-81r43,65r-7,5r-70,-68r0,-3r70,-68r7,5",w:169},"\u00bb":{d:"159,-79r-71,68r-6,-5r43,-65r-43,-64r6,-5r71,68r0,3xm95,-79r-71,68r-6,-5r43,-65r-43,-64r6,-5r71,68r0,3",w:169},"\u2026":{d:"212,-16v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,22,9,22,21xm136,-16v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,22,9,22,21xm60,-16v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-21,22,-21v12,0,22,9,22,21",w:227},"\u00a0":{w:41},"\u00c0":{d:"117,-253r-5,2v-16,-18,-36,-37,-42,-46v-12,-19,12,-31,22,-14v5,9,15,36,25,58xm203,-14r29,8r0,6r-103,0r0,-6r36,-7r-27,-71r-79,0r-26,69v8,6,26,2,26,15r-65,0v0,-14,18,-10,26,-16r83,-215r17,0xm134,-96r-36,-93r-34,93r70,0",w:226},"\u00c3":{d:"62,-258v5,-55,47,-24,78,-24v7,0,14,-4,18,-15r5,3v-5,55,-48,23,-79,23v-7,0,-13,3,-18,14xm203,-14r29,8r0,6r-103,0r0,-6r36,-7r-27,-71r-79,0r-26,69v8,6,26,2,26,15r-65,0v0,-14,18,-10,26,-16r83,-215r17,0xm134,-96r-36,-93r-34,93r70,0",w:226},"\u00d5":{d:"76,-258v5,-56,48,-24,79,-24v7,0,14,-4,18,-15r4,3v-4,56,-47,23,-78,23v-7,0,-13,3,-18,14xm239,-115v0,65,-44,120,-113,120v-72,0,-112,-55,-112,-120v0,-65,45,-120,114,-120v72,0,111,55,111,120xm198,-115v0,-75,-39,-111,-75,-111v-33,0,-67,27,-67,111v0,84,39,112,75,112v33,0,67,-37,67,-112",w:254},"\u0152":{d:"348,-70r-9,70r-199,0v-78,0,-126,-50,-126,-115v0,-65,53,-114,128,-114r182,0r8,61r-3,3v-21,-18,-32,-52,-68,-52r-46,0r0,96v40,6,51,-11,59,-45r5,0r0,101v-9,2,-7,-6,-9,-11v-8,-33,-21,-37,-55,-35r0,99v38,-2,87,10,99,-19r31,-41xm56,-115v0,89,47,108,123,103r0,-205v-79,-4,-123,8,-123,102",w:360},"\u0153":{d:"174,-97v-5,74,53,99,110,66r2,4v-37,42,-100,42,-129,0v-14,19,-36,32,-66,32v-51,0,-78,-37,-78,-86v0,-46,30,-86,83,-86v30,0,50,12,63,32v32,-54,138,-35,129,38r-114,0xm174,-105r79,-3v-3,-31,-13,-51,-35,-51v-23,0,-42,22,-44,54xm139,-82v0,-52,-20,-77,-47,-77v-25,0,-44,25,-44,79v0,52,21,77,46,77v27,0,45,-25,45,-79",w:300},"\u2013":{d:"176,-83r-158,0r0,-12r158,0r0,12",w:194},"\u2014":{d:"266,-83r-248,0r0,-12r248,0r0,12",w:284},"\u201c":{d:"117,-180v0,12,-9,21,-21,21v-15,0,-24,-12,-24,-29v0,-17,13,-35,41,-49r4,4v-19,17,-25,26,-28,38v13,-6,29,0,28,15xm60,-180v0,12,-9,21,-21,21v-15,0,-24,-12,-24,-29v0,-17,14,-35,42,-49r3,4v-19,17,-25,26,-28,38v13,-6,29,0,28,15",w:133},"\u201d":{d:"118,-207v0,17,-13,36,-41,50r-3,-4v19,-17,25,-26,28,-38v-13,6,-29,0,-28,-15v0,-11,9,-21,21,-21v15,0,23,11,23,28xm61,-207v0,17,-13,36,-41,50r-3,-4v19,-17,25,-26,28,-38v-13,6,-28,1,-28,-15v0,-11,9,-21,21,-21v14,0,23,11,23,28",w:133},"\u2018":{d:"62,-177v0,12,-9,22,-21,22v-15,0,-26,-12,-26,-30v0,-18,15,-38,44,-52r3,4v-19,18,-30,29,-29,40v12,-6,30,1,29,16",w:79},"\u2019":{d:"63,-205v0,18,-13,37,-43,52r-3,-4v20,-18,26,-28,29,-40v-13,7,-30,0,-29,-16v0,-12,10,-22,22,-22v15,0,24,12,24,30",w:79},"\u00f7":{d:"91,-185v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm167,-102r-152,0r0,-16r152,0r0,16xm91,-75v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20",w:181},"\u25ca":{d:"157,-223r0,51v3,3,10,1,10,7r-33,0v-1,-6,6,-5,9,-7v-2,-15,4,-38,-2,-49r-21,56r-7,0v-9,-18,-14,-39,-24,-56r0,49v3,2,9,1,8,7r-23,0v-1,-6,5,-5,8,-7r0,-50v-3,-2,-9,-1,-8,-7r29,0v7,14,10,31,18,44r16,-44r30,0v1,6,-7,4,-10,6xm27,-217v-2,15,39,14,36,32v1,22,-25,26,-43,19v-2,2,-2,5,-7,4r0,-25v13,7,17,22,27,19v6,0,11,-4,11,-10v-1,-15,-36,-11,-36,-33v0,-19,22,-24,38,-17v2,-1,2,-4,6,-3v-1,7,4,20,-2,22v-8,-12,-15,-17,-21,-17v-5,0,-9,3,-9,9",w:176},"\u00ff":{d:"127,-200v-10,0,-17,-8,-17,-18v0,-10,8,-19,19,-19v10,0,18,7,18,17v0,10,-9,20,-20,20xm66,-200v-10,0,-17,-8,-17,-18v0,-10,8,-19,19,-19v10,0,17,7,17,17v0,10,-8,20,-19,20xm155,-145r-71,177v-12,30,-27,44,-47,44v-30,1,-31,-37,-6,-38v11,0,18,7,26,17v13,-11,21,-35,29,-52r-63,-152v-7,-5,-20,-2,-22,-12r82,0v-2,10,-18,7,-25,12v16,36,25,79,44,112r39,-109v-7,-6,-21,-5,-23,-15r62,0v-2,11,-18,10,-25,16",w:176},"\u0178":{d:"158,-267v-10,0,-17,-8,-17,-18v0,-10,8,-19,19,-19v10,0,17,7,17,17v0,10,-8,20,-19,20xm97,-267v-10,0,-17,-8,-17,-18v0,-10,8,-19,19,-19v10,0,17,7,17,17v0,10,-8,20,-19,20xm204,-213r-68,108r0,92r37,7r0,6r-110,0r0,-6r37,-7r0,-86r-69,-116r-32,-8r0,-6r105,0r0,6r-31,6r55,103r57,-101r-27,-8r0,-6r74,0r0,6",w:227},"\u2044":{d:"185,-224r-167,236r-10,-8r167,-235",w:192},"\u00a4":{d:"27,-126r-22,0r0,-12r24,0v13,-54,56,-88,101,-88v30,0,49,14,49,32v0,12,-8,22,-19,22v-21,0,-28,-25,-13,-43v-45,-6,-70,16,-83,77r95,0r0,12r-96,0v-1,10,-2,23,0,33r96,0r0,12r-93,0v13,57,63,81,115,57r2,5v-53,50,-145,18,-156,-62r-22,0r0,-12r20,0v0,-12,0,-23,2,-33",w:196},"\u2039":{d:"45,-81r43,65r-7,5r-70,-68r0,-3r70,-68r7,5",w:105},"\u203a":{d:"95,-82r0,3r-71,68r-6,-5r43,-65r-43,-64r6,-5",w:105},"\ufb01":{d:"41,-161v-7,-63,27,-106,84,-106v31,0,40,17,40,29v0,10,-7,18,-17,18v-13,0,-26,-11,-30,-36v-38,3,-49,43,-46,97v37,1,74,1,102,-8r0,156v7,4,24,0,24,11r-78,0v0,-11,17,-6,24,-11r0,-134r-72,0r0,134v7,4,24,0,24,11r-78,0v0,-11,16,-7,23,-11r0,-134r-32,0r0,-6",w:207},"\ufb02":{d:"41,-161v-10,-70,44,-120,109,-100v8,-1,17,-7,24,-5r0,255v7,4,24,0,24,11r-79,0v0,-12,18,-6,25,-11r0,-134r-72,0r0,134v7,4,24,0,24,11r-78,0v0,-11,16,-7,23,-11r0,-134r-32,0r0,-6xm144,-159r0,-62v-12,-2,-22,-13,-26,-35v-38,3,-49,43,-46,97r72,0",w:205},"\u2021":{d:"153,-55r-66,-1r2,86r-14,0r1,-86r-65,1r0,-12r65,1r0,-79r-65,1r0,-13r65,2r-1,-86r14,0r-2,86r66,-2r0,13r-66,-1r0,79r66,-1r0,12",w:163},"\u00b7":{d:"60,-114v0,12,-10,21,-22,21v-12,0,-22,-9,-22,-21v0,-12,10,-22,22,-22v12,0,22,10,22,22",w:75},"\u201a":{d:"63,-8v0,18,-13,38,-43,53r-3,-5v20,-17,26,-29,29,-39v-14,5,-29,0,-29,-16v0,-12,10,-22,22,-22v15,0,24,11,24,29",w:79},"\u201e":{d:"118,-9v0,17,-13,36,-41,50r-3,-5v19,-16,25,-27,28,-37v-14,5,-28,-1,-28,-16v0,-11,9,-20,21,-20v15,0,23,11,23,28xm61,-9v0,17,-13,36,-41,50r-3,-5v19,-16,25,-27,28,-37v-14,5,-28,0,-28,-16v0,-11,9,-20,21,-20v14,0,23,11,23,28",w:133},"\u2030":{d:"252,-115v0,67,-54,120,-120,120v-66,0,-120,-53,-120,-120v0,-66,54,-120,120,-120v66,0,120,54,120,120xm243,-115v0,-62,-49,-111,-111,-111v-61,0,-111,49,-111,111v0,62,50,112,111,112v62,0,111,-50,111,-112xm149,-114v31,7,25,50,54,54r0,6v-26,0,-42,3,-48,-21v-8,-15,-11,-39,-35,-34r0,45v6,3,20,-1,18,10r-60,0v-2,-11,12,-7,18,-10r0,-102v-6,-3,-19,1,-18,-9v41,0,109,-8,107,30v0,15,-12,27,-36,31xm159,-143v0,-22,-17,-27,-39,-25r0,52v23,2,39,-4,39,-27",w:264},"\u00c2":{d:"111,-277r-41,35r-4,-3r43,-64r5,0r41,64r-4,3xm203,-14r30,8r0,6r-103,0r0,-6r36,-7r-27,-71r-79,0r-26,69v8,6,26,2,26,15r-65,0v0,-14,18,-10,26,-16r82,-215r17,0xm134,-96r-35,-93r-35,93r70,0",w:226},"\u00ca":{d:"115,-284r-41,36r-4,-4r43,-63r6,0r40,63r-4,4xm193,-229r9,61r-3,3v-21,-18,-32,-52,-68,-52r-46,0r0,96v39,5,53,-10,58,-45r6,0r0,101v-9,2,-7,-6,-9,-11v-7,-33,-21,-37,-55,-35r0,99v38,-2,87,10,99,-19r31,-41r4,2r-10,70r-196,0r0,-6r36,-7r0,-204r-36,-6r0,-6r180,0",w:230},"\u00c1":{d:"139,-318v16,29,-23,40,-41,67r-4,-2v17,-30,15,-69,45,-65xm203,-14r29,8r0,6r-103,0r0,-6r36,-7r-27,-71r-79,0r-26,69v8,6,26,2,26,15r-65,0v0,-14,18,-10,26,-16r83,-215r17,0xm134,-96r-36,-93r-34,93r70,0",w:226},"\u00cb":{d:"143,-267v-10,0,-17,-8,-17,-18v0,-10,8,-19,19,-19v10,0,18,7,18,17v0,10,-9,20,-20,20xm82,-267v-10,0,-17,-8,-17,-18v0,-10,8,-19,19,-19v10,0,18,7,18,17v0,10,-9,20,-20,20xm193,-229r9,61r-3,3v-21,-18,-32,-52,-68,-52r-46,0r0,96v39,5,53,-10,58,-45r6,0r0,101v-9,2,-7,-6,-9,-11v-7,-33,-21,-37,-55,-35r0,99v38,-2,87,10,99,-19r31,-41r4,2r-10,70r-196,0r0,-6r36,-7r0,-204r-36,-6r0,-6r180,0",w:230},"\u00c8":{d:"130,-253r-5,2v-16,-18,-36,-37,-42,-46v-12,-19,12,-31,22,-14v5,9,15,36,25,58xm193,-229r9,61r-3,3v-21,-18,-32,-52,-68,-52r-46,0r0,96v39,5,53,-10,58,-45r6,0r0,101v-9,2,-7,-6,-9,-11v-7,-33,-21,-37,-55,-35r0,99v38,-2,87,10,99,-19r31,-41r4,2r-10,70r-196,0r0,-6r36,-7r0,-204r-36,-6r0,-6r180,0",w:230},"\u00cd":{d:"101,-318v16,29,-22,40,-40,67r-4,-2v17,-30,14,-69,44,-65xm90,-13r37,7r0,6r-110,0r0,-6r37,-7r0,-204r-37,-6r0,-6r110,0r0,6r-37,6r0,204",w:144},"\u00ce":{d:"73,-284r-41,35r-4,-3r43,-64r6,0r40,64r-4,3xm90,-13r37,7r0,6r-110,0r0,-6r37,-7r0,-204r-37,-6r0,-6r110,0r0,6r-37,6r0,204",w:144},"\u00cf":{d:"102,-267v-10,0,-17,-8,-17,-18v0,-10,8,-19,19,-19v10,0,18,7,18,17v0,10,-9,20,-20,20xm41,-267v-10,0,-17,-8,-17,-18v0,-10,8,-19,19,-19v10,0,17,7,17,17v0,10,-8,20,-19,20xm90,-13r37,7r0,6r-110,0r0,-6r37,-7r0,-204r-37,-6r0,-6r110,0r0,6r-37,6r0,204",w:144},"\u00cc":{d:"84,-253r-4,2v-16,-18,-37,-37,-43,-46v-12,-19,12,-31,22,-14v5,9,15,36,25,58xm90,-13r37,7r0,6r-110,0r0,-6r37,-7r0,-204r-37,-6r0,-6r110,0r0,6r-37,6r0,204",w:144},"\u00d3":{d:"154,-318v18,28,-22,40,-40,67r-4,-2v17,-29,15,-68,44,-65xm239,-115v0,65,-44,120,-113,120v-72,0,-112,-55,-112,-120v0,-65,45,-120,114,-120v72,0,111,55,111,120xm198,-115v0,-75,-39,-111,-75,-111v-33,0,-67,27,-67,111v0,84,39,112,75,112v33,0,67,-37,67,-112",w:254},"\u00d4":{d:"123,-284r-41,35r-4,-3r44,-64r5,0r41,64r-5,3xm239,-115v0,65,-44,120,-113,120v-72,0,-112,-55,-112,-120v0,-65,45,-120,114,-120v72,0,111,55,111,120xm198,-115v0,-75,-39,-111,-75,-111v-33,0,-67,27,-67,111v0,84,39,112,75,112v33,0,67,-37,67,-112",w:254},"\u00d2":{d:"134,-253r-5,2v-16,-18,-36,-37,-42,-46v-12,-19,11,-32,21,-14v5,9,16,36,26,58xm239,-115v0,65,-44,120,-113,120v-72,0,-112,-55,-112,-120v0,-65,45,-120,114,-120v72,0,111,55,111,120xm198,-115v0,-75,-39,-111,-75,-111v-33,0,-67,27,-67,111v0,84,39,112,75,112v33,0,67,-37,67,-112",w:254},"\u00da":{d:"180,-318v16,29,-23,40,-41,67r-4,-2v17,-30,15,-69,45,-65xm213,-213r-28,-10r0,-6r68,0r0,6r-28,10r0,139v0,46,-38,80,-89,80v-57,0,-91,-26,-91,-79r0,-144r-36,-6r0,-6r108,0r0,6r-35,6r0,137v0,51,23,68,70,68v89,0,54,-119,61,-201",w:264},"\u00db":{d:"150,-284r-41,35r-4,-3r44,-64r5,0r41,64r-5,3xm213,-213r-28,-10r0,-6r68,0r0,6r-28,10r0,139v0,46,-38,80,-89,80v-57,0,-91,-26,-91,-79r0,-144r-36,-6r0,-6r108,0r0,6r-35,6r0,137v0,51,23,68,70,68v89,0,54,-119,61,-201",w:264},"\u00d9":{d:"160,-253r-5,2v-16,-18,-36,-37,-42,-46v-12,-19,12,-31,22,-14v5,9,15,36,25,58xm213,-213r-28,-10r0,-6r68,0r0,6r-28,10r0,139v0,46,-38,80,-89,80v-57,0,-91,-26,-91,-79r0,-144r-36,-6r0,-6r108,0r0,6r-35,6r0,137v0,51,23,68,70,68v89,0,54,-119,61,-201",w:264},"\u0131":{d:"38,-11r0,-125v-7,-7,-20,-8,-24,-18v18,-3,38,-12,54,-12r0,155v7,4,24,0,24,11r-79,0v0,-12,18,-6,25,-11",w:101},"\u02c6":{d:"54,-217r-41,35r-4,-3r44,-64r5,0r41,64r-5,3",w:107},"\u02dc":{d:"9,-192v5,-55,47,-23,78,-23v7,0,14,-4,18,-15r5,2v-5,55,-47,24,-78,24v-7,0,-13,3,-18,14",w:119},"\u00af":{d:"103,-209r0,15r-90,0r0,-15r90,0",w:115},"\u02d8":{d:"19,-235v13,37,70,38,83,0r6,2v-4,29,-19,47,-47,47v-28,0,-44,-18,-48,-47",w:120},"\u02d9":{d:"53,-220v0,10,-9,20,-20,20v-10,0,-17,-8,-17,-18v0,-10,9,-19,20,-19v10,0,17,7,17,17",w:69},"\u02da":{d:"80,-213v0,16,-14,32,-34,32v-20,0,-32,-14,-32,-32v0,-16,14,-32,34,-32v20,0,32,14,32,32xm63,-213v0,-17,-6,-26,-17,-26v-10,0,-16,9,-16,26v0,17,7,26,17,26v11,0,16,-9,16,-26",w:93},"\u00b8":{d:"61,58v7,31,-64,46,-64,17v0,-6,5,-12,11,-12v10,0,13,14,6,19v13,7,27,1,27,-18v0,-18,-15,-26,-31,-20r-5,-6r64,-54r5,7r-43,36v17,2,30,14,30,31",w:101},"\u02dd":{d:"101,-251v16,29,-23,40,-41,67r-4,-3v17,-30,15,-68,45,-64xm54,-251v18,27,-22,42,-37,67r-4,-3v16,-28,12,-67,41,-64",w:115},"\u02db":{d:"74,-13v-28,22,-48,40,-48,64v0,25,28,32,43,20v6,9,-14,20,-29,20v-23,0,-37,-16,-37,-36v0,-26,27,-47,68,-71",w:96},"\u02c7":{d:"54,-218r40,-36r5,4r-44,64r-5,0r-41,-64r4,-4",w:107}}});krop={utils:{},profile:{},styles:{},jobs:{},employer:{},cdbsearch:{},dashboard:{}};var _gaq=_gaq||[];krop.analytics=(function(){function a(f){_gaq.push(["_setAccount",f]);_gaq.push(["_trackPageview"]);var e=document.createElement("script");e.type="text/javascript";e.async=true;e.src=("https:"===document.location.protocol?"https://ssl":"http://www")+".google-analytics.com/ga.js";var d=document.getElementsByTagName("script")[0];d.parentNode.insertBefore(e,d)}function b(d){d=d||window.location.pathname+window.location.hash;_gaq.push(["_trackPageview",d])}return{initialize:a,trackPageview:b}}());krop.styles=(function(){function a(d){var e=new Image();var b=new Date();e.src=d+"?x="+b.getTime()}return{stat:a}})();krop.styles.classic=(function(g){function f(l,o,q){var p=g(o).parents("div.inner").children(".large_view");var j=g(o).parents("div.inner").children(".vertical_shim");var k=g(o).children("img").attr("id");var m=p.find("img#"+k.replace("_small","_full"));if(typeof(q)==="undefined"){q=function(){}}g(o).parents(".scroller")[0].scrollTo("li:has(#"+g(o).attr("id")+")");if(g(o).parents("li").hasClass("selected")){g(o).parents("li").removeClass("selected");p.find(".wrapper").removeClass("loading");p.slideUp(500,function(){j.addClass("hidden");p.find("p").addClass("hidden")});return}j.removeClass("hidden");g(o).parents("ul.imagelist").children("li.selected").removeClass("selected");g(o).parents("li").addClass("selected");p.find("div.wrapper").addClass("hidden");var n=g("#"+k.replace("_small","_full_wrapper"));n.removeClass("hidden");var r=g(o).attr("title");p.find(".large_view_caption").html(r);if(r!==""){p.find("p").removeClass("hidden")}var s=g(o).parents("div.section").offset().top;if(l===-1){g("html").animate({scrollTop:s},250,"swing");g("body").animate({scrollTop:s},250,"swing",function(){p.slideDown(500,function(){if(!(g(o).hasClass("loaded"))){m.parents(".wrapper").addClass("loading")}q()})})}else{p.css("display","block")}m.load(function(){g(this).css("visibility","visible");g(this).parents(".wrapper").removeClass("loading");g(o).addClass("loaded")});m.attr("src",g(o).attr("href"));p.find("iframe").attr("src","");var h=n.find("iframe");if(h.length&&!h.attr("src")){h.attr("src",h.attr("data-src"))}}function e(){Cufon.replace("#name_type h1",{fontFamily:"Sans"});Cufon.replace("#content p.creative_type",{fontFamily:"Sans"});Cufon.replace(".portfolio_page .section h2",{fontFamily:"Sans"});Cufon.now()}function d(){Cufon.replace("#name_type h1",{fontFamily:"Serif"});Cufon.replace("#content p.creative_type",{fontFamily:"Serif"});Cufon.replace(".portfolio_page .section h2",{fontFamily:"Sans"});Cufon.now()}function a(){g(".scroller").jScrollHorizontalPane({scrollbarHeight:21,scrollbarMargin:0,wheelSpeed:0,showArrows:true,arrowSize:36,animateTo:true,dragMinWidth:120,dragMaxWidth:99999,animateInterval:100,animateStep:3,maintainPosition:true,resize:true,minimumWidth:200,reset:false});g(".scroller a").click(function(h){h.preventDefault();h.stopPropagation();f(-1,this)});g(".large_view img").click(function(k){var h=g(this).parents(".inner").find("li.selected");if(h.length===0){return}var i=h.next("li").children("a");var j;if(i.length===0){j=g(this).parents(".section").next(".section").find(".imagelist a")[0]}else{j=i[0]}if(j!==undefined){if(g(j).parents("li").hasClass("selected")){var l=g(j).parents("div.section").offset().top;g("html,body").animate({scrollTop:l},250)}else{f(-1,j)}}});g("#featureds a").click(function(k){k.preventDefault();k.stopPropagation();var j=g(this).attr("id").split("_")[2];var i=g(".image_"+j)[0];var h=g(i).parents("a")[0];if(!g(i).parents("li").hasClass("selected")){f(-1,h)}else{var l=g(i).parents("div.section").offset().top;g("html,body").animate({scrollTop:l},250)}});g(".open_first_image li:first-child a").each(f)}function b(){}return{setupSans:e,setupSerif:d,setupPortfolio:a,setupResume:b}}($));
