/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F);},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this;}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H);}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E);}var F=o(I||[]);F.context=document;F.selector=E;return F;}}else{return o(H).find(E);}}else{if(o.isFunction(E)){return o(document).ready(E);}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context;}return this.setArray(o.isArray(E)?E:o.makeArray(E));},selector:"",jquery:"1.3.2",size:function(){return this.length;},get:function(E){return E===g?Array.prototype.slice.call(this):this[E];},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E;}else{if(H){G.selector=this.selector+"."+H+"("+E+")";}}return G;},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this;},each:function(F,E){return o.each(this,F,E);},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this);},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F);}else{E={};E[F]=H;}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F));}});},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g;}return this.attr(E,F,"curCSS");},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F));}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this]);}});});return E;},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0]);}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild;}return G;}).append(this);}return this;},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E);});},wrap:function(E){return this.each(function(){o(this).wrapAll(E);});},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E);}});},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild);}});},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this);});},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling);});},end:function(){return this.prevObject||o([]);},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F;}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G);})),"find",E);}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML;}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0];}else{return this.cloneNode(true);}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return;}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data);}}F++;});}return E;},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F);})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1;})),"filter",E);},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H;}H=H.parentNode;F++;}});},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E);}else{E=o.multiFilter(E,this);}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E;});},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))));},is:function(E){return !!E&&o.multiFilter(E,this).length>0;},hasClass:function(E){return !!E&&this.is("."+E);},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text;}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null;}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K;}L.push(K);}}return L;}return(E.value||"").replace(/\r/g,"");}return g;}if(typeof K==="number"){K+="";}return this.each(function(){if(this.nodeType!=1){return;}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0);}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0);});if(!N.length){this.selectedIndex=-1;}}else{this.value=K;}}});},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E);},replaceWith:function(E){return this.after(E).remove();},eq:function(E){return this.slice(E,+E+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","));},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G);}));},andSelf:function(){return this.add(this.prevObject);},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I);}}if(F){o.each(F,z);}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N;}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"});}else{o.globalEval(F.text||F.textContent||F.innerHTML||"");}if(F.parentNode){F.parentNode.removeChild(F);}}function e(){return +new Date;}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2;}if(typeof J!=="object"&&!o.isFunction(J)){J={};}if(I==H){J=this;--H;}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue;}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L);}else{if(L!==g){J[F]=L;}}}}}return J;};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y;}return o;},isFunction:function(E){return s.call(E)==="[object Function]";},isArray:function(E){return s.call(E)==="[object Array]";},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument);},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G));}else{E.text=G;}F.insertBefore(E,F.firstChild);F.removeChild(E);}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase();},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break;}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break;}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break;}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G;},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F);}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I;},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H;}});},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G);}).join(" "):"";}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1;}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F];}I.call(H);for(var F in G){H.style[F]=E[F];}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return;}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0;}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0;}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0;}});}if(H.offsetWidth!==0){I();}else{o.swap(H,G,I);}return Math.max(0,Math.round(L));}return o.curCSS(H,F,J);},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L;}if(F.match(/float/i)){F=w;}if(!G&&E&&E[F]){L=E[F];}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float";}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F);}if(F=="opacity"&&L==""){L="1";}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase();});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K;}}}}return L;},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document;}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])];}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+="";}if(!S){return;}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">";});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild;}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M]);}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild);}S=o.makeArray(L.childNodes);}if(S.nodeType){G.push(S);}else{G=o.merge(G,S);}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J]);}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))));}I.appendChild(G[J]);}}return E;}return G;},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g;}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex;}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed";}J[G]=K;}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue;}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g;}return J[G];}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K);}if(L){J.setAttribute(G,""+K);}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E;}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")");}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":"";}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase();});if(L){J[G]=K;}return J[G];},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"");},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G;}else{while(F){E[--F]=G[F];}}}return E;},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E;}}return -1;},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G;}}}else{while((G=E[F++])!=null){H[I++]=G;}}return H;},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G]);}}}catch(I){F=K;}return F;},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H]);}}return G;},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I;}}return F.concat.apply([],F);}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode;},parents:function(E){return o.dir(E,"parentNode");},next:function(E){return o.nth(E,2,"nextSibling");},prev:function(E){return o.nth(E,2,"previousSibling");},nextAll:function(E){return o.dir(E,"nextSibling");},prevAll:function(E){return o.dir(E,"previousSibling");},siblings:function(E){return o.sibling(E.parentNode.firstChild,E);},children:function(E){return o.sibling(E.firstChild);},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes);}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H);}return this.pushStack(o.unique(H),E,G);};});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I);}return this.pushStack(J,E,G);};});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E);}},addClass:function(E){o.className.add(this,E);},removeClass:function(E){o.className.remove(this,E);},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F);}o.className[E?"add":"remove"](this,F);},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this);});if(this.parentNode){this.parentNode.removeChild(this);}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild);}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments);};});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0;}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v;}if(E&&!o.cache[H]){o.cache[H]={};}if(G!==g){o.cache[H][E]=G;}return E?o.cache[H][E]:H;},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break;}if(!E){o.removeData(F);}}}else{try{delete F[h];}catch(G){if(F.removeAttribute){F.removeAttribute(h);}}delete o.cache[H];}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H));}else{if(H){G.push(H);}}}return G;},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0];}if(F!==g){F.call(H);}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E);}return F===g&&H[1]?this.data(H[0]):F;}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G);});}},removeData:function(E){return this.each(function(){o.removeData(this,E);});},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx";}if(F===g){return o.queue(this[0],E);}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this);}});},dequeue:function(E){return this.each(function(){o.dequeue(this,E);});}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[];}if(!Y||typeof Y!=="string"){return ab;}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break;}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U);}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift();}af=J(Y,af);}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af);}else{X=false;}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah="";}else{ag=Z.pop();}if(ag==null){ag=U;}I.relative[ah](ai,ag,Q(U));}}if(!ai){ai=af;}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y);}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai);}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa]);}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa]);}}}}}else{E(ai,ab);}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1);}}}}}return ab;};F.matches=function(T,U){return F(T,null,null,U);};F.find=function(aa,T,ab){var Z,X;if(!aa){return[];}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break;}}}}if(!Z){Z=T.getElementsByTagName("*");}return{set:Z,expr:aa};};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[];}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true;}else{if(Y===true){continue;}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true;}else{aa[X]=false;}}else{if(ae){ai.push(af);T=true;}}}}}if(ah!==g){if(!ag){aa=ai;}ad=ad.replace(I.match[ab],"");if(!T){return[];}break;}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad;}else{break;}}V=ad;}return aa;};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href");}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase();}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T;}}if(Y){F.filter(T,aa,true);}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false;}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U;}}if(X){F.filter(U,Z,true);}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P;}T("parentNode",U,V,W,X,Y);},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P;}T("previousSibling",U,V,W,X,Y);}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[];}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W]);}}return U.length===0?null:U;}},TAG:function(T,U){return U.getElementsByTagName(T[1]);}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W;}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y);}}else{if(V){U[X]=false;}}}}return false;},ID:function(T){return T[1].replace(/\\/g,"");},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase();},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0;}T[0]=L++;return T;},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W];}if(X[2]==="~="){X[4]=" "+X[4]+" ";}return X;},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U);}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W);}return false;}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true;}}return X;},POS:function(T){T.unshift(true);return T;}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden";},disabled:function(T){return T.disabled===true;},checked:function(T){return T.checked===true;},selected:function(T){T.parentNode.selectedIndex;return T.selected===true;},parent:function(T){return !!T.firstChild;},empty:function(T){return !T.firstChild;},has:function(V,U,T){return !!F(T[3],V).length;},header:function(T){return/h\d/i.test(T.nodeName);},text:function(T){return"text"===T.type;},radio:function(T){return"radio"===T.type;},checkbox:function(T){return"checkbox"===T.type;},file:function(T){return"file"===T.type;},password:function(T){return"password"===T.type;},submit:function(T){return"submit"===T.type;},image:function(T){return"image"===T.type;},reset:function(T){return"reset"===T.type;},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON";},input:function(T){return/input|select|textarea|button/i.test(T.nodeName);}},setFilters:{first:function(U,T){return T===0;},last:function(V,U,T,W){return U===W.length-1;},even:function(U,T){return T%2===0;},odd:function(U,T){return T%2===1;},lt:function(V,U,T){return U<T[3]-0;},gt:function(V,U,T){return U>T[3]-0;},nth:function(V,U,T){return T[3]-0==U;},eq:function(V,U,T){return T[3]-0==U;}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa);}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0;}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false;}}return true;}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false;}}if(Z=="first"){return true;}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false;}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true;}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X;}}ab.sizcache=Y;}var aa=T.nodeIndex-ac;if(V==0){return aa==0;}else{return(aa%V==0&&aa/V>=0);}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T;},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T;},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1;},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false;},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y);}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source);}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T;}return U;};try{Array.prototype.slice.call(document.documentElement.childNodes);}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X);}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V]);}}else{for(var V=0;X[V];V++){U.push(X[V]);}}}return U;};}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true;}return V;};}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true;}return V;};}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true;}return X;};}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[];}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W;};}T.removeChild(U);})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V]);}}X=W;}return X;};}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2);};}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return;}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V);}catch(Z){}}return T(Y,X,V,W);};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches;})();}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return;}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return;}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1]);}};})();}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W;}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break;}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W;}if(T.nodeName===Z){X=T;break;}T=T[U];}ad[W]=X;}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W;}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break;}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W;}if(typeof Z!=="string"){if(T===Z){X=true;break;}}else{if(F.filter(Z,[T]).length>0){X=T;break;}}}T=T[U];}ad[W]=X;}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16;}:function(U,T){return U!==T&&(U.contains?U.contains(T):true);};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument);};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"");}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W);}return F.filter(X,W);};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0;};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0;};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem;}).length;};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")";}return F.matches(V,T);};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W);}W=W[U];}return T;};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break;}}return X;};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V);}}return T;};return;l.Sizzle=F;})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return;}if(I.setInterval&&I!=l){I=l;}if(!H.guid){H.guid=this.guid++;}if(K!==g){var G=H;H=this.proxy(G);H.data=K;}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g;});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O);}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false);}else{if(I.attachEvent){I.attachEvent("on"+N,J);}}}}L[H.guid]=H;o.event.global[N]=true;});I=null;},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return;}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""));}}else{if(H.type){J=H.handler;H=H.type;}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid];}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P];}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q);}for(F in G[O]){break;}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false);}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"));}}}F=null;delete G[O];}}});}for(F in G){break;}if(!F){var L=o.data(K,"handle");if(L){L.elem=null;}o.removeData(K,"events");o.removeData(K,"handle");}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true;}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem);}});}}if(!H||H.nodeType==3||H.nodeType==8){return g;}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I);}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K);}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false;}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]();}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true);}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation();}}if(K.isImmediatePropagationStopped()){break;}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H;}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J];}if(!H.target){H.target=H.srcElement||document;}if(H.target.nodeType==3){H.target=H.target.parentNode;}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement;}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0);}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode;}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey;}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)));}return H;},proxy:function(F,E){E=E||function(){return F.apply(this,arguments);};E.guid=F.guid=F.guid||E.guid||this.guid++;return E;},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c);},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++;}});if(E<1){o.event.remove(this,G[0],c);}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E);}if(E&&E.type){this.originalEvent=E;this.type=E.type;}else{this.type=E;}this.timeStamp=e();this[h]=true;};function k(){return false;}function u(){return true;}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return;}if(E.preventDefault){E.preventDefault();}E.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return;}if(E.stopPropagation){E.stopPropagation();}E.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation();},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode;}catch(G){E=this;}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments);}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E);},teardown:function(){o.event.remove(this,F,a);}};});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G);});},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments);});return this.each(function(){o.event.add(this,G,E,F&&H);});},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E);});},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this);});},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result;}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++]);}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false;}));},hover:function(E,F){return this.mouseenter(E).mouseleave(F);},ready:function(E){B();if(o.isReady){E.call(document,o);}else{o.readyList.push(E);}return this;},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this;},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this;}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J});}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest");});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false);}});return G;}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".");}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o);});o.readyList=null;}o(document).triggerHandler("ready");}}});var x=false;function B(){if(x){return;}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready();},false);}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready();}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return;}try{document.documentElement.doScroll("left");}catch(E){setTimeout(arguments.callee,0);return;}o.ready();})();}}}o.event.add(l,"load",o.ready);}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E);};});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem);}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return;}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"));}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J];}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee);});K.cloneNode(true).fireEvent("onclick");}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none";});})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G);}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I);}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null;}else{if(typeof J==="object"){J=o.param(J);H="POST";}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText);}if(K){F.each(K,[M.responseText,L,M]);}}});return this;},serialize:function(){return o.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type));}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I};}):{name:F.name,value:G};}).get();}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G);};});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null;}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F});},getScript:function(E,F){return o.get(E,null,F,"script");},getJSON:function(E,F,G){return o.get(E,F,G,"json");},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={};}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F});},ajaxSetup:function(E){o.extend(o.ajaxSettings,E);},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data);}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?";}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?";}}M.dataType="json";}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1");}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W];}catch(Y){}if(H){H.removeChild(T);}};}if(M.dataType=="script"&&M.cache==null){M.cache=false;}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"");}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null;}if(M.global&&!o.active++){o.event.trigger("ajaxStart");}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset;}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T);}};}H.appendChild(T);return g;}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password);}else{J.open(G,M.url,M.async);}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType);}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT");}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default);}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop");}J.abort();return false;}if(M.global){o.event.trigger("ajaxSend",[J,M]);}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop");}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null;}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M);}catch(Z){R="parsererror";}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified");}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y;}if(!W){I();}}else{o.handleError(M,J,R);}L();if(X){J.abort();}if(M.async){J=null;}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout");}},M.timeout);}}try{J.send(M.data);}catch(S){o.handleError(M,J,null,S);}if(!M.async){N();}function I(){if(M.success){M.success(V,R);}if(M.global){o.event.trigger("ajaxSuccess",[J,M]);}}function L(){if(M.complete){M.complete(J,R);}if(M.global){o.event.trigger("ajaxComplete",[J,M]);}if(M.global&&!--o.active){o.event.trigger("ajaxStop");}}return J;},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G);}if(F.global){o.event.trigger("ajaxError",[H,F,G]);}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223;}catch(E){}return false;},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E];}catch(F){}return false;},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror";}if(G&&G.dataFilter){I=G.dataFilter(I,H);}if(typeof I==="string"){if(H=="script"){o.globalEval(I);}if(H=="json"){I=l["eval"]("("+I+")");}}return I;},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J);}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value);});}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this);});}else{H(F,o.isFunction(E[F])?E[F]():E[F]);}}}return G.join("&").replace(/%20/g,"+");}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F;});return G;}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L);}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G];}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block";}I.remove();m[G]=K;}o.data(this[H],"olddisplay",K);}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||"";}return this;}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I);}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"));}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none";}return this;}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]();}):this.animate(t("toggle",3),G,F);},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F);},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this);}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow;}}if(K.overflow!=null){this.style.overflow="hidden";}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I);}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P;}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T;}R.custom(T,N,P);}else{R.custom(T,S,"");}}});return true;});},stop:function(F,E){var G=o.timers;if(F){this.queue([]);}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true);}G.splice(H,1);}}});if(!E){this.dequeue();}return this;}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H);};});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue();}if(o.isFunction(E.old)){E.old.call(this);}};return E;},easing:{linear:function(G,H,E,F){return E+F*G;},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E;}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={};}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this);}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block";}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop];}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0;},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J);}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1);}}if(!K.length){clearInterval(n);n=g;}},13);}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show();},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false;}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block";}}if(this.options.hide){o(this.elem).hide();}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I]);}}this.options.complete.call(this.elem);}return false;}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now);},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit;}else{E.elem[E.prop]=E.now;}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0};}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0]);}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H};};}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0};}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0]);}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0;}F=G,G=J.offsetParent;}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0;}E=M;}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft;}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft);}return{top:N,left:I};};}o.offset={initialize:function(){if(this.initialized){return;}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E];}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true;},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0;}return{top:G,left:F};}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left};}return F;},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent;}return o(E);}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null;}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H;}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G];};});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null;};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null;};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px");};});})();
/*
 * Flash (http://jquery.lukelutman.com/plugins/flash)
 * A jQuery plugin for embedding Flash movies.
 * 
 * Version 1.0
 * November 9th, 2006
 *
 * Copyright (c) 2006 Luke Lutman (http://www.lukelutman.com)
 * Dual licensed under the MIT and GPL licenses.
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.opensource.org/licenses/gpl-license.php
 * 
 * Inspired by:
 * SWFObject (http://blog.deconcept.com/swfobject/)
 * UFO (http://www.bobbyvandersluis.com/ufo/)
 * sIFR (http://www.mikeindustries.com/sifr/)
 * 
 * IMPORTANT: 
 * The packed version of jQuery breaks ActiveX control
 * activation in Internet Explorer. Use JSMin to minifiy
 * jQuery (see: http://jquery.lukelutman.com/plugins/flash#activex).
 *
 **/
(function(){var $$;$$=jQuery.fn.flash=function(htmlOptions,pluginOptions,replace,update){var block=replace||$$.replace;pluginOptions=$$.copy($$.pluginOptions,pluginOptions);if(!$$.hasFlash(pluginOptions.version)){if(pluginOptions.expressInstall&&$$.hasFlash(6,0,65)){var expressInstallOptions={flashvars:{MMredirectURL:location,MMplayerType:"PlugIn",MMdoctitle:jQuery("title").text()}};}else{if(pluginOptions.update){block=update||$$.update;}else{return this;}}}htmlOptions=$$.copy($$.htmlOptions,expressInstallOptions,htmlOptions);return this.each(function(){block.call(this,$$.copy(htmlOptions));});};$$.copy=function(){var options={},flashvars={};for(var i=0;i<arguments.length;i++){var arg=arguments[i];if(arg==undefined){continue;}jQuery.extend(options,arg);if(arg.flashvars==undefined){continue;}jQuery.extend(flashvars,arg.flashvars);}options.flashvars=flashvars;return options;};$$.hasFlash=function(){if(/hasFlash\=true/.test(location)){return true;}if(/hasFlash\=false/.test(location)){return false;}var pv=$$.hasFlash.playerVersion().match(/\d+/g);var rv=String([arguments[0],arguments[1],arguments[2]]).match(/\d+/g)||String($$.pluginOptions.version).match(/\d+/g);for(var i=0;i<3;i++){pv[i]=parseInt(pv[i]||0);rv[i]=parseInt(rv[i]||0);if(pv[i]<rv[i]){return false;}if(pv[i]>rv[i]){return true;}}return true;};$$.hasFlash.playerVersion=function(){try{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");try{axo.AllowScriptAccess="always";}catch(e){return"6,0,0";}}catch(e){}return new ActiveXObject("ShockwaveFlash.ShockwaveFlash").GetVariable("$version").replace(/\D+/g,",").match(/^,?(.+),?$/)[1];}catch(e){try{if(navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin){return(navigator.plugins["Shockwave Flash 2.0"]||navigator.plugins["Shockwave Flash"]).description.replace(/\D+/g,",").match(/^,?(.+),?$/)[1];}}catch(e){}}return"0,0,0";};$$.htmlOptions={height:240,flashvars:{},pluginspage:"http://www.adobe.com/go/getflashplayer",src:"#",type:"application/x-shockwave-flash",width:320};$$.pluginOptions={expressInstall:false,update:true,version:"6.0.65"};$$.replace=function(htmlOptions){this.innerHTML='<div class="alt">'+this.innerHTML+"</div>";jQuery(this).addClass("flash-replaced").prepend($$.transform(htmlOptions));};$$.update=function(htmlOptions){var url=String(location).split("?");url.splice(1,0,"?hasFlash=true&");url=url.join("");var msg='<p>This content requires the Flash Player. <a href="http://www.adobe.com/go/getflashplayer">Download Flash Player</a>. Already have Flash Player? <a href="'+url+'">Click here.</a></p>';this.innerHTML='<span class="alt">'+this.innerHTML+"</span>";jQuery(this).addClass("flash-update").prepend(msg);};function toAttributeString(){var s="";for(var key in this){if(typeof this[key]!="function"){s+=key+'="'+this[key]+'" ';}}return s;}function toFlashvarsString(){var s="";for(var key in this){if(typeof this[key]!="function"){s+=key+"="+encodeURIComponent(this[key])+"&";}}return s.replace(/&$/,"");}$$.transform=function(htmlOptions){htmlOptions.toString=toAttributeString;if(htmlOptions.flashvars){htmlOptions.flashvars.toString=toFlashvarsString;}return"<embed "+String(htmlOptions)+"/>";};if(window.attachEvent){window.attachEvent("onbeforeunload",function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};});}})();
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.01
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments);};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return;}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false);}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10);})();}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D();}catch(F){setTimeout(arguments.callee,1);}})();}q(window,"load",D);return function(F){if(!arguments.length){D();}else{C?F():B.push(F);}};})(),root:function(){return document.documentElement||document.body;}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value;};this.convertFrom=function(D){return D/this.value*B;};this.toString=function(){return this.value+this.unit;};},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C;},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")";});return B;}),fontStretch:j(function(B){if(typeof B=="number"){return B;}if(/%$/.test(B)){return parseFloat(B)/100;}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1;}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null));}if(C.currentStyle){return new a(C.currentStyle);}return new a(C.style);},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]]);}return G;}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1]);}return D;}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"));}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B;}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D;},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false;}B[D]=C;return B[D]===C;},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E;}}else{if(B<C-1){E+=" ";}}return E;},textDecoration:function(G,F){if(!F){F=this.getStyle(G);}var C={underline:null,overline:null,"line-through":null};for(var B=G;B.parentNode&&B.parentNode.nodeType==1;){var E=true;for(var D in C){if(!k(C,D)||C[D]){continue;}if(F.get("textDecoration").indexOf(D)!=-1){C[D]=F.get("color");}E=false;}if(E){break;}F=this.getStyle(B=B.parentNode);}return C;},textShadow:j(function(F){if(F=="none"){return null;}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0;}else{if(B[1]){G.color=B[1];}else{G[["offX","offY","blur"][C++]]=B[2];}}}E.push(G);return E;}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase();},lowercase:function(C){return C.toLowerCase();},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase();});}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E;};})(),whiteSpace:(function(){var B={inline:1,"inline-block":1,"run-in":1};return function(E,C,D){if(B[C.get("display")]){return E;}if(!D.previousSibling){E=E.replace(/^\s+/,"");}if(!D.nextSibling){E=E.replace(/\s+$/,"");}return E;};})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen");}function G(M,P){if(!n.recognizesMedia(P||"all")){return true;}if(!M||M.disabled){return false;}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false;}break;default:break search;}}}}catch(N){}return true;}function F(){if(document.createStyleSheet){return true;}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false;}}for(K=0;L=J[K];++K){if(!C(L)){return false;}}return true;}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable();}if(B||(E&&F())){H();}else{setTimeout(arguments.callee,10);}});return function(K){if(B){K();}else{D.push(K);}};})();function s(C){var B=this.face=C.face;this.glyphs=C.glyphs;this.w=C.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 D={minX:parseInt(E[0],10),minY:parseInt(E[1],10),maxX:parseInt(E[2],10),maxY:parseInt(E[3],10)};D.width=D.maxX-D.minX;D.height=D.maxY-D.minY;D.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ");};return D;})();this.ascent=-parseInt(B.ascent,10);this.descent=-parseInt(B.descent,10);this.height=-this.ascent+this.descent;}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D;};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null;}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I];}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400;}if(I==500){I=400;}for(var J in G){if(!k(G,J)){continue;}J=parseInt(J,10);if(!F||J<F){F=J;}if(!D||J>D){D=J;}K.push(J);}if(I<F){I=F;}if(I>D){I=D;}K.sort(function(M,L){return(E?(M>I&&L>I)?M<L:M>L:(M<I&&L<I)?M>L:M<L)?-1:1;});return G[K[0]];};}function r(){function D(F,G){if(F.contains){return F.contains(G);}return F.compareDocumentPosition(G)&16;}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return;}C(this);}function E(F){C(this);}function C(F){setTimeout(function(){m.replace(F,d.get(F).options,true);},10);}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B);}else{q(F,"mouseenter",E);q(F,"mouseleave",E);}};}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]];}return E;}this.add=function(F,E){D[F]=C.push(E)-1;};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true);}};}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B);}this.get=function(E){var F=C(E);return D[F]||(D[F]={});};}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F];}}return this;};this.get=function(E){return D[E]!=undefined?D[E]:B[E];};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E));};this.isUsable=function(){return !!B;};}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false);}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event);});}}}function v(C,B){var D=d.get(C);if(D.options){return C;}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C);}D.options=B;return C;}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments);}return C[D];};}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"));}}return null;}function g(B){return document.getElementsByTagName(B);}function k(C,B){return C.hasOwnProperty(B);}function h(){var B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E){for(F in D){if(k(D,F)){B[F]=D[F];}}}return B;}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K;}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("");}if(/\s$/.test(M)){I.push("");}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H);}}return K;}function l(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E);}else{F=E;}if(G){continue;}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,E),B,J,E,C),F);F=null;}if(H==1&&E.firstChild){if(/cufon/.test(E.className)){z[J.engine](D,null,B,J,E,C);}else{arguments.callee(E,J);}}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B);})||(window.dojo&&dojo.query)||(window.$$&&function(B){return $$(B);})||(window.$&&function(B){return $(B);})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B);})||(window.Ext&&Ext.query)||g),separate:"words",textShadow:"none"};var p={words:/[^\S\u00a0]+/,characters:"",none:/^/};m.now=function(){x.ready();return m;};m.refresh=function(){y.repeat.apply(y,arguments);return m;};m.registerEngine=function(C,B){if(!B){return m;}z[C]=B;return m.set("engine",C);};m.registerFont=function(D){var B=new s(D),C=B.family;if(!i[C]){i[C]=new f();}i[C].add(B);return m.set("fontFamily",'"'+C+'"');};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m;}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.removeClass(x.root(),"cufon-loading");});e=true;}if(C.hover){C.forceHitArea=true;}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow);}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color);}if(!B){y.add(D,arguments);}if(D.nodeType||typeof D=="string"){D=[D];}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true);}else{l(G,C);}}});return m;};m.set=function(B,C){w[B]=C;return m;};return m;})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return;}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode((".cufon-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate;}h[g[j].m].apply(h,g[j].a);}return g;}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a);}}return function(ah,H,Z,D,L,ai){var n=(H===null);if(n){H=L.alt;}var J=ah.viewBox;var p=Z.getSize("fontSize",ah.baseSize);var X=Z.get("letterSpacing");X=(X=="normal")?0:p.convertFrom(parseInt(X,10));var K=0,Y=0,W=0,F=0;var I=D.textShadow,U=[];if(I){for(var ag=I.length;ag--;){var O=I[ag];var T=p.convertFrom(parseFloat(O.offX));var R=p.convertFrom(parseFloat(O.offY));U[ag]=[T,R];if(R<K){K=R;}if(T>Y){Y=T;}if(R>W){W=R;}if(T<F){F=T;}}}var al=Cufon.CSS.textTransform(H,Z).split(""),B;var o=ah.glyphs,E,r,ac;var h=0,v,N=[];for(var ag=0,ae=0,ab=al.length;ag<ab;++ag){E=o[B=al[ag]]||ah.missingGlyph;if(!E){continue;}if(r){h-=ac=r[B]||0;N[ae-1]-=ac;}h+=v=N[ae++]=~~(E.w||ah.w)+X;r=E.k;}if(v===undefined){return null;}Y+=J.width-v;F+=J.minX;var C,q;if(n){C=L;q=L.firstChild;}else{C=document.createElement("span");C.className="cufon cufon-canvas";C.alt=H;q=document.createElement("canvas");C.appendChild(q);if(D.printable){var ad=document.createElement("span");ad.className="cufon-alt";ad.appendChild(document.createTextNode(H));C.appendChild(ad);}}var am=C.style;var Q=q.style;var m=p.convert(J.height);var ak=Math.ceil(m);var V=ak/m;var P=V*Cufon.CSS.fontStretch(Z.get("fontStretch"));var S=h*P;var aa=Math.ceil(p.convert(S+Y-F));var t=Math.ceil(p.convert(J.height-K+W));q.width=aa;q.height=t;Q.width=aa+"px";Q.height=t+"px";K+=J.minY;Q.top=Math.round(p.convert(K-ah.ascent))+"px";Q.left=Math.round(p.convert(F))+"px";var A=Math.ceil(p.convert(S))+"px";if(a){am.width=A;am.height=p.convert(ah.height)+"px";}else{am.paddingLeft=A;am.paddingBottom=(p.convert(ah.height)-1)+"px";}var aj=q.getContext("2d"),M=m/J.height;aj.scale(M,M*V);aj.translate(-F,-K);aj.lineWidth=ah.face["underline-thickness"];aj.save();function s(i,g){aj.strokeStyle=g;aj.beginPath();aj.moveTo(0,i);aj.lineTo(h,i);aj.stroke();}var u=D.enableTextDecoration?Cufon.CSS.textDecoration(ai,Z):{};if(u.underline){s(-ah.face["underline-position"],u.underline);}if(u.overline){s(ah.ascent,u.overline);}function af(){aj.scale(P,1);for(var x=0,k=0,g=al.length;x<g;++x){var y=o[al[x]]||ah.missingGlyph;if(!y){continue;}if(y.d){aj.beginPath();if(y.code){c(y.code,aj);}else{y.code=d("m"+y.d,aj);}aj.fill();}aj.translate(N[k++],0);}aj.restore();}if(I){for(var ag=I.length;ag--;){var O=I[ag];aj.save();aj.fillStyle=O.color;aj.translate.apply(aj,U[ag]);af();}}var z=D.textGradient;if(z){var G=z.stops,w=aj.createLinearGradient(0,J.minY,0,J.maxY);for(var ag=0,ab=G.length;ag<ab;++ag){w.addColorStop.apply(w,G[ag]);}aj.fillStyle=w;}else{aj.fillStyle=Z.get("color");}af();if(u["line-through"]){s(-ah.descent,u["line-through"]);}return C;};})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return;}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml");}var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return;}b=null;var f=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(f?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function c(g,h){return a(g,/(?:em|ex|%)$|^[a-z-]+$/i.test(h)?"1em":h);}function a(j,k){if(/px$/i.test(k)){return parseFloat(k);}var i=j.style.left,h=j.runtimeStyle.left;j.runtimeStyle.left=j.currentStyle.left;j.style.left=k.replace("%","em");var g=j.style.pixelLeft;j.style.left=i;j.runtimeStyle.left=h;return g;}var e={};function d(n){var o=n.id;if(!e[o]){var l=n.stops,m=document.createElement("cvml:fill"),g=[];m.type="gradient";m.angle=180;m.focus="0";m.method="sigma";m.color=l[0][1];for(var i=1,h=l.length-1;i<h;++i){g.push(l[i][0]*100+"% "+l[i][1]);}m.colors=g.join(",");m.color2=l[h][1];e[o]=m;}return e[o];}return function(ai,J,ac,F,N,aj,aa){var n=(J===null);if(n){J=N.alt;}var L=ai.viewBox;var p=ac.computedFontSize||(ac.computedFontSize=new Cufon.CSS.Size(c(aj,ac.get("fontSize"))+"px",ai.baseSize));var Z=ac.computedLSpacing;if(Z==undefined){Z=ac.get("letterSpacing");ac.computedLSpacing=Z=(Z=="normal")?0:~~p.convertFrom(a(aj,Z));}var B,q;if(n){B=N;q=N.firstChild;}else{B=document.createElement("span");B.className="cufon cufon-vml";B.alt=J;q=document.createElement("span");q.className="cufon-vml-canvas";B.appendChild(q);if(F.printable){var af=document.createElement("span");af.className="cufon-alt";af.appendChild(document.createTextNode(J));B.appendChild(af);}if(!aa){B.appendChild(document.createElement("cvml:shape"));}}var ao=B.style;var U=q.style;var h=p.convert(L.height),al=Math.ceil(h);var Y=al/h;var S=Y*Cufon.CSS.fontStretch(ac.get("fontStretch"));var X=L.minX,W=L.minY;U.height=al;U.top=Math.round(p.convert(W-ai.ascent));U.left=Math.round(p.convert(X));ao.height=p.convert(ai.height)+"px";var u=F.enableTextDecoration?Cufon.CSS.textDecoration(aj,ac):{};var I=ac.get("color");var an=Cufon.CSS.textTransform(J,ac).split(""),A;var o=ai.glyphs,G,r,ae;var g=0,O=[],V=0,w;var y,K=F.textShadow;for(var ah=0,ag=0,ad=an.length;ah<ad;++ah){G=o[A=an[ah]]||ai.missingGlyph;if(!G){continue;}if(r){g-=ae=r[A]||0;O[ag-1]-=ae;}g+=w=O[ag++]=~~(G.w||ai.w)+Z;r=G.k;}if(w===undefined){return null;}var z=-X+g+(L.width-w);var am=p.convert(z*S),ab=Math.round(am);var R=z+","+L.height,m;var M="r"+R+"ns";var x=F.textGradient&&d(F.textGradient);for(ah=0,ag=0;ah<ad;++ah){G=o[an[ah]]||ai.missingGlyph;if(!G){continue;}if(n){y=q.childNodes[ag];while(y.firstChild){y.removeChild(y.firstChild);}}else{y=document.createElement("cvml:shape");q.appendChild(y);}y.stroked="f";y.coordsize=R;y.coordorigin=m=(X-V)+","+W;y.path=(G.d?"m"+G.d+"xe":"")+"m"+m+M;y.fillcolor=I;if(x){y.appendChild(x.cloneNode(false));}var ak=y.style;ak.width=ab;ak.height=al;if(K){var t=K[0],s=K[1];var E=Cufon.CSS.color(t.color),C;var Q=document.createElement("cvml:shadow");Q.on="t";Q.color=E.color;Q.offset=t.offX+","+t.offY;if(s){C=Cufon.CSS.color(s.color);Q.type="double";Q.color2=C.color;Q.offset2=s.offX+","+s.offY;}Q.opacity=E.opacity||(C&&C.opacity)||1;y.appendChild(Q);}V+=O[ag++];}var P=y.nextSibling,v,D;if(F.forceHitArea){if(!P){P=document.createElement("cvml:rect");P.stroked="f";P.className="cufon-vml-cover";v=document.createElement("cvml:fill");v.opacity=0;P.appendChild(v);q.appendChild(P);}D=P.style;D.width=ab;D.height=al;}else{if(P){q.removeChild(P);}}ao.width=Math.max(Math.ceil(p.convert(g*S)),0);if(f){var T=ac.computedYAdjust;if(T===undefined){var H=ac.get("lineHeight");if(H=="normal"){H="1em";}else{if(!isNaN(H)){H+="em";}}ac.computedYAdjust=T=0.5*(a(aj,H)-parseFloat(ao.height));}if(T){ao.marginTop=Math.ceil(T)+"px";ao.marginBottom=T+"px";}}return B;};})());Cufon.registerFont({w:232,face:{"font-family":"Gotham","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 4 0 0 2 0 4",ascent:"288",descent:"-72","x-height":"4",bbox:"-8 -327 383 58.6664","underline-thickness":"7.2","underline-position":"-40.68","unicode-range":"U+0020-U+2122"},glyphs:{" ":{w:108},"!":{d:"32,-38r34,0r0,38r-34,0r0,-38xm41,-71r-8,-181r32,0r-8,181r-16,0",w:97},'"':{d:"34,-252v10,2,27,-3,34,2r-29,96r-16,0xm105,-252v10,2,27,-3,33,2r-29,96r-15,0",w:158},"#":{d:"154,-89r13,-76r-69,0r-13,76r69,0xm55,-64r-39,0r0,-25r44,0r13,-76r-43,0r0,-25r47,0r11,-62r25,0r-10,62r68,0r11,-62r25,0r-10,62r38,0r0,25r-43,0r-13,76r42,0r0,25r-46,0r-11,64r-25,0r10,-64r-68,0r-11,64r-25,0",w:252},"$":{d:"127,-24v46,5,71,-61,25,-78v-6,-3,-15,-6,-25,-8r0,86xm106,-228v-47,-6,-68,60,-24,77v6,3,14,6,24,8r0,-85xm205,-68v0,45,-33,65,-77,68r0,35r-23,0r0,-36v-37,-3,-62,-17,-85,-37r16,-21v21,17,39,31,70,34r0,-90v-45,-12,-76,-24,-76,-71v0,-44,33,-62,75,-66r0,-21r23,0r0,22v31,2,49,14,69,29r-16,21v-16,-13,-32,-21,-54,-26r0,89v45,11,78,25,78,70",w:228},"%":{d:"224,-106v-45,0,-41,91,1,89v22,-1,32,-20,32,-45v0,-25,-11,-44,-33,-44xm76,-235v-45,1,-42,89,0,89v45,-1,43,-87,0,-89xm281,-62v0,38,-19,65,-57,65v-37,0,-57,-29,-57,-65v0,-36,20,-64,58,-64v37,0,56,28,56,64xm230,-252r25,0r-184,252r-26,0xm133,-191v0,38,-20,65,-57,65v-38,0,-57,-27,-57,-64v0,-37,20,-65,57,-65v36,0,57,28,57,64",w:300},"&":{d:"45,-69v-3,44,50,59,86,40v10,-6,21,-14,30,-24r-68,-70v-27,11,-46,25,-48,54xm117,-233v-49,0,-43,65,-13,84v26,-10,48,-19,49,-49v1,-20,-16,-36,-36,-35xm231,-120v-11,23,-21,45,-36,63r44,45r-22,17r-39,-41v-22,21,-44,40,-83,40v-47,0,-79,-25,-79,-72v0,-40,29,-59,61,-72v-42,-35,-28,-120,41,-116v38,2,62,21,62,57v0,37,-30,55,-60,66r58,58v12,-17,21,-35,30,-56",w:250},"'":{d:"34,-252v10,2,27,-3,34,2r-29,96r-16,0",w:88},"(":{d:"53,-103v0,68,35,104,83,135r-12,19v-81,-35,-133,-152,-74,-243v17,-26,42,-47,74,-65r12,18v-48,31,-83,67,-83,136",w:156},")":{d:"32,-257v82,34,133,152,74,242v-17,26,-42,48,-74,66r-12,-19v48,-31,84,-66,84,-135v0,-69,-36,-105,-84,-136",w:156},"*":{d:"72,-188r-37,26r-10,-17r42,-19r-42,-19r10,-17r37,26r-4,-45r19,0r-4,45r37,-26r10,17r-42,19r42,19r-10,17r-37,-26r4,45r-19,0",w:154},"+":{d:"102,-114r-75,0r0,-26r75,0r0,-74r27,0r0,74r74,0r0,26r-74,0r0,74r-27,0r0,-74",w:230},",":{d:"17,31v15,-6,25,-13,24,-31r-13,0r0,-38r33,0v2,43,-1,77,-40,82",w:88},"-":{d:"23,-123r100,0r0,29r-100,0r0,-29",w:146},"\u00ad":{d:"23,-123r100,0r0,29r-100,0r0,-29",w:146},".":{d:"28,-38r33,0r0,38r-33,0r0,-38",w:88},"/":{d:"159,-287r26,0r-167,333r-26,0",w:182},"0":{d:"129,-230v-103,1,-103,207,0,208v103,-2,102,-206,0,-208xm235,-127v0,74,-35,131,-106,131v-73,0,-107,-57,-107,-130v0,-72,35,-130,107,-130v71,0,106,56,106,129",w:257},"1":{d:"64,-224r-47,14r-7,-23v28,-7,47,-23,83,-21r0,254r-29,0r0,-224",w:128},"2":{d:"113,-256v81,0,95,97,43,144r-96,86r133,0r0,26r-176,0r0,-22v46,-48,113,-79,141,-142v15,-34,-11,-66,-47,-66v-35,1,-50,19,-68,43r-21,-15v20,-29,42,-54,91,-54",w:215},"3":{d:"196,-72v4,94,-143,93,-178,31r21,-18v18,22,37,37,73,37v33,-1,55,-17,55,-49v0,-42,-40,-50,-86,-49r-6,-17r79,-89r-123,0r0,-26r161,0r0,21r-79,88v46,4,81,23,83,71",w:220},"4":{d:"156,-84r0,-129r-106,129r106,0xm156,-60r-133,0r-8,-20r143,-174r25,0r0,170r39,0r0,24r-39,0r0,60r-27,0r0,-60",w:241},"5":{d:"170,-77v2,-59,-78,-64,-115,-40r-19,-12r7,-123r145,0r0,26r-120,0r-6,81v57,-26,137,-3,137,67v0,70,-78,100,-140,71v-15,-7,-28,-17,-40,-29r19,-20v29,42,130,52,132,-21",w:220},"6":{d:"57,-78v0,38,26,57,63,57v37,0,61,-21,61,-58v0,-36,-25,-54,-61,-54v-37,0,-63,20,-63,55xm210,-80v-3,53,-36,84,-90,84v-70,0,-98,-49,-98,-124v0,-89,54,-159,145,-129v12,4,23,12,34,21r-16,22v-26,-31,-94,-32,-114,7v-11,21,-19,49,-20,80v31,-61,164,-46,159,39"},"7":{d:"163,-226r-139,0r0,-26r171,0r0,21r-114,231r-32,0",w:214},"8":{d:"48,-69v0,35,30,48,65,48v35,0,66,-13,66,-48v0,-64,-131,-64,-131,0xm56,-187v0,62,117,61,115,0v-1,-30,-26,-44,-58,-44v-31,0,-57,13,-57,44xm208,-69v0,94,-189,99,-189,1v-1,-35,25,-52,52,-62v-23,-11,-44,-26,-44,-59v0,-45,39,-67,86,-67v47,0,84,22,86,68v1,33,-21,47,-43,58v26,10,52,27,52,61",w:226},"9":{d:"52,-172v0,37,26,56,62,56v37,0,62,-21,62,-58v0,-37,-27,-57,-64,-57v-36,0,-60,22,-60,59xm211,-133v2,91,-57,161,-148,129v-13,-4,-24,-14,-35,-23r17,-22v26,34,94,35,117,-4v12,-20,19,-47,20,-79v-29,62,-165,49,-159,-39v4,-53,35,-85,90,-85v70,0,97,48,98,123"},":":{d:"30,-38r33,0r0,38r-33,0r0,-38xm30,-186r33,0r0,38r-33,0r0,-38",w:91},";":{d:"18,31v15,-5,26,-12,24,-31r-12,0r0,-38r33,0v2,43,-1,77,-40,82xm30,-186r33,0r0,38r-33,0r0,-38",w:91},"\u037e":{d:"18,31v15,-5,26,-12,24,-31r-12,0r0,-38r33,0v2,43,-1,77,-40,82xm30,-186r33,0r0,38r-33,0r0,-38",w:91},"<":{d:"26,-115r0,-24r169,-83r0,27r-139,68r139,68r0,28",w:230},"=":{d:"32,-98r166,0r0,27r-166,0r0,-27xm32,-182r166,0r0,26r-166,0r0,-26",w:230},">":{d:"36,-59r138,-67r-138,-68r0,-28r168,83r0,24r-168,84r0,-28",w:230},"?":{d:"72,-38r33,0r0,38r-33,0r0,-38xm74,-130v39,-3,73,-15,73,-53v-1,-31,-22,-47,-52,-47v-30,0,-50,15,-66,34r-18,-17v19,-23,42,-42,84,-42v86,0,109,112,35,137v-9,3,-19,7,-29,8r-3,39r-19,0",w:193},"@":{d:"177,-158v-62,-6,-85,109,-15,110v61,4,86,-108,15,-110xm275,31v-27,15,-54,28,-95,27v-97,-4,-156,-61,-161,-157v-8,-139,174,-204,269,-114v25,23,46,55,46,99v0,50,-21,85,-68,88v-25,1,-44,-13,-50,-30v-27,47,-124,37,-124,-35v0,-75,98,-122,136,-60r5,-25r24,4r-17,103v0,18,10,30,30,29v38,-2,51,-34,51,-74v0,-80,-61,-130,-144,-130v-89,0,-145,58,-145,145v0,89,57,145,148,145v39,0,63,-9,89,-24",w:352},A:{d:"199,-92r-57,-129r-58,129r115,0xm129,-254r27,0r114,254r-30,0r-30,-67r-137,0r-30,67r-29,0",w:284},B:{d:"210,-71v-1,-57,-87,-41,-146,-43r0,88v60,-3,147,16,146,-45xm196,-185v0,-54,-78,-39,-132,-41r0,86v57,-1,132,12,132,-45xm239,-69v-2,88,-116,66,-203,69r0,-252v80,2,188,-17,189,63v0,32,-18,49,-40,59v29,9,54,24,54,61",w:259},C:{d:"252,-40v-25,24,-52,44,-101,44v-79,0,-122,-52,-127,-130v-8,-119,150,-170,226,-90r-19,21v-21,-19,-42,-35,-79,-35v-61,0,-94,42,-98,104v-6,101,125,134,179,68",w:265},D:{d:"228,-125v0,-84,-69,-109,-164,-101r0,200v94,7,164,-16,164,-99xm257,-127v0,112,-97,136,-221,127r0,-252v122,-9,221,14,221,125",w:281},E:{d:"36,-252r182,0r0,26r-154,0r0,86r138,0r0,26r-138,0r0,88r156,0r0,26r-184,0r0,-252",w:241},F:{d:"36,-252r181,0r0,26r-153,0r0,90r137,0r0,26r-137,0r0,110r-28,0r0,-252",w:236},G:{d:"254,-34v-23,20,-58,39,-101,38v-81,-2,-125,-50,-129,-130v-6,-114,138,-169,221,-97r-19,22v-19,-17,-40,-30,-76,-29v-61,2,-92,43,-96,104v-7,96,108,132,172,80r0,-63r-76,0r0,-26r104,0r0,101",w:282},H:{d:"36,-252r28,0r0,112r146,0r0,-112r28,0r0,252r-28,0r0,-113r-146,0r0,113r-28,0r0,-252",w:273},I:{d:"38,-252r29,0r0,252r-29,0r0,-252",w:104},J:{d:"167,-252v-6,104,32,257,-78,256v-40,0,-62,-20,-78,-45r21,-18v14,21,26,36,57,36v32,0,51,-24,50,-60r0,-169r28,0",w:199},K:{d:"36,-252r28,0r0,150r145,-150r37,0r-108,110r112,142r-35,0r-97,-122r-54,54r0,68r-28,0r0,-252",w:258},L:{d:"36,-252r28,0r0,226r142,0r0,26r-170,0r0,-252",w:222},M:{d:"36,-252r28,0r92,138r92,-138r29,0r0,252r-29,0r0,-204r-91,135r-2,0r-92,-135r0,204r-27,0r0,-252",w:312},N:{d:"36,-252r26,0r159,202r0,-202r28,0r0,252r-23,0r-163,-207r0,207r-27,0r0,-252",w:284},O:{d:"54,-127v0,63,38,105,99,105v62,0,99,-41,99,-104v0,-62,-38,-104,-99,-104v-61,0,-99,41,-99,103xm282,-127v0,78,-49,131,-129,131v-81,0,-129,-53,-129,-130v0,-77,49,-130,129,-130v80,0,129,53,129,129",w:306},P:{d:"195,-170v0,-62,-68,-57,-131,-56r0,111v62,1,131,6,131,-55xm224,-172v-1,79,-75,87,-160,83r0,89r-28,0r0,-252v90,-1,190,-10,188,80",w:240},Q:{d:"54,-127v-4,84,90,133,157,86r-46,-40r19,-21r46,42v48,-62,10,-175,-77,-170v-61,3,-96,41,-99,103xm153,-256v114,-6,164,138,98,215r34,27r-20,22r-33,-31v-21,15,-44,28,-79,27v-81,-2,-129,-53,-129,-130v0,-77,49,-126,129,-130",w:306},R:{d:"206,-175v1,-63,-80,-50,-142,-51r0,103v64,-1,140,11,142,-52xm235,-177v-1,46,-29,66,-68,74r77,103r-35,0r-74,-98r-71,0r0,98r-28,0r0,-252v90,1,199,-16,199,75",w:260},S:{d:"208,-68v0,95,-146,84,-189,31r18,-21v25,21,45,32,86,36v55,5,78,-66,23,-82v-49,-14,-118,-17,-117,-83v1,-83,126,-83,172,-38r-17,22v-31,-37,-142,-41,-124,30v31,49,148,21,148,105",w:230},T:{d:"102,-226r-84,0r0,-26r198,0r0,26r-85,0r0,226r-29,0r0,-226",w:233},U:{d:"242,-108v-1,70,-36,112,-106,112v-68,0,-103,-39,-104,-109r0,-147r28,0r0,145v-1,52,27,86,77,85v48,0,76,-30,76,-83r0,-147r29,0r0,144",w:273},V:{d:"14,-252r32,0r89,217r90,-217r31,0r-108,254r-26,0",w:270},W:{d:"16,-252r31,0r72,210r69,-211r24,0r69,211r72,-210r30,0r-90,254r-24,0r-70,-205r-69,205r-24,0",w:398},X:{d:"113,-129r-93,-123r34,0r77,103r77,-103r33,0r-93,123r96,129r-33,0r-81,-108r-81,108r-32,0",w:261},Y:{d:"114,-100r-104,-152r34,0r85,126r86,-126r33,0r-105,152r0,100r-29,0r0,-100",w:257},Z:{d:"24,-19r163,-207r-157,0r0,-26r196,0r0,19r-163,207r163,0r0,26r-202,0r0,-19",w:249},"[":{d:"34,-252r103,0r0,22r-77,0r0,255r77,0r0,22r-103,0r0,-299",w:158},"\\":{d:"-2,-287r25,0r167,333r-25,0",w:182},"]":{d:"21,25r77,0r0,-255r-77,0r0,-22r103,0r0,299r-103,0r0,-22",w:158},"^":{d:"79,-253r22,0r56,76r-25,0r-42,-56r-43,56r-24,0",w:180},_:{d:"-1,35r218,0r0,23r-218,0r0,-23",w:216},"`":{d:"52,-253r29,-13r34,52r-22,0",w:180},a:{d:"45,-56v0,26,22,38,47,38v41,0,66,-21,62,-68v-37,-11,-109,-16,-109,30xm153,-28v-26,45,-136,44,-136,-27v0,-64,81,-69,136,-53v9,-63,-72,-65,-111,-42r-9,-23v53,-30,148,-20,148,59r0,114r-28,0r0,-28",w:208},b:{d:"58,-94v0,45,25,73,67,73v42,0,65,-28,65,-72v0,-43,-23,-72,-65,-72v-41,0,-67,28,-67,71xm219,-94v0,58,-34,95,-89,98v-37,2,-56,-19,-71,-40r0,36r-28,0r0,-263r28,0r0,114v15,-23,34,-41,71,-41v56,0,89,40,89,96",w:239},c:{d:"48,-94v-5,71,91,95,125,46r18,16v-18,20,-39,36,-76,36v-60,-2,-92,-40,-96,-97v-5,-88,116,-129,170,-64r-18,19v-14,-14,-30,-28,-57,-28v-41,0,-63,30,-66,72",w:205},d:{d:"49,-94v0,44,23,73,65,73v42,0,67,-29,67,-73v0,-43,-26,-71,-67,-71v-41,0,-65,28,-65,71xm180,-37v-16,22,-34,43,-71,41v-55,-2,-89,-39,-89,-97v0,-57,34,-97,89,-97v36,0,56,18,71,40r0,-113r28,0r0,263r-28,0r0,-37",w:239},e:{d:"167,-104v4,-66,-92,-85,-113,-25v-3,8,-5,16,-6,25r119,0xm48,-82v-2,65,91,79,124,36r17,15v-18,21,-39,36,-77,35v-58,-1,-93,-40,-93,-97v0,-56,32,-97,90,-97v60,0,88,43,86,108r-147,0",w:213},f:{d:"128,-235v-34,-15,-67,2,-59,50r59,0r0,23r-59,0r0,162r-28,0r0,-162r-25,0r0,-24r25,0v-8,-59,32,-90,87,-74r0,25",w:132},g:{d:"49,-103v0,40,26,64,64,64v40,0,68,-23,68,-64v0,-41,-29,-63,-68,-63v-38,0,-64,23,-64,63xm208,-32v9,95,-118,111,-179,64r12,-21v43,36,146,35,140,-43r0,-22v-16,20,-38,42,-73,40v-52,-2,-85,-35,-88,-88v-6,-89,122,-114,160,-51r0,-33r28,0r0,154",w:239},h:{d:"114,-165v-73,0,-52,95,-55,165r-28,0r0,-263r28,0r0,109v12,-19,31,-36,63,-36v90,0,71,105,72,190r-28,0v-4,-68,22,-165,-52,-165",w:221},i:{d:"33,-186r28,0r0,186r-28,0r0,-186xm32,-257r31,0r0,30r-31,0r0,-30",w:94},j:{d:"61,11v1,38,-26,53,-62,46r0,-23v20,3,34,-2,34,-24r0,-196r28,0r0,197xm32,-257r31,0r0,30r-31,0r0,-30",w:94},k:{d:"31,-263r28,0r0,182r100,-105r35,0r-78,80r80,106r-33,0r-67,-87r-37,38r0,49r-28,0r0,-263",w:204},l:{d:"33,-263r28,0r0,263r-28,0r0,-263",w:94},m:{d:"111,-165v-71,1,-49,96,-52,165r-28,0r0,-186r28,0r0,31v18,-44,105,-45,120,2v13,-20,32,-36,65,-37v88,-2,67,106,69,190r-28,0v-5,-66,21,-166,-48,-165v-71,1,-47,97,-51,165r-28,0v-5,-66,21,-165,-47,-165",w:342},n:{d:"114,-165v-73,0,-52,95,-55,165r-28,0r0,-186r28,0r0,32v12,-19,31,-36,63,-36v90,0,71,105,72,190r-28,0v-4,-68,22,-165,-52,-165",w:221},o:{d:"48,-94v0,43,25,73,69,73v43,0,68,-29,68,-72v0,-43,-27,-73,-69,-73v-42,0,-68,29,-68,72xm213,-94v0,60,-37,98,-97,98v-60,0,-97,-40,-97,-97v0,-58,39,-97,98,-97v57,0,96,38,96,96"},p:{d:"58,-94v0,45,25,73,67,73v42,0,65,-28,65,-72v0,-43,-23,-72,-65,-72v-41,0,-67,28,-67,71xm130,4v-37,2,-56,-19,-71,-40r0,94r-28,0r0,-244r28,0r0,37v15,-23,34,-41,71,-41v56,0,89,40,89,97v0,57,-34,94,-89,97",w:239},q:{d:"49,-94v0,44,23,73,65,73v42,0,67,-29,67,-73v0,-43,-26,-71,-67,-71v-41,0,-65,28,-65,71xm109,-190v36,0,56,18,71,40r0,-36r28,0r0,244r-28,0r0,-95v-16,22,-34,43,-71,41v-55,-2,-89,-39,-89,-97v0,-57,34,-97,89,-97",w:239},r:{d:"135,-159v-80,-3,-80,78,-76,159r-28,0r0,-186r28,0r0,48v13,-29,35,-51,76,-51r0,30",w:145},s:{d:"140,-89v42,32,7,98,-47,93v-29,-3,-59,-14,-78,-28r15,-20v17,14,37,21,64,24v32,3,53,-36,24,-51v-34,-19,-92,-14,-94,-65v-2,-64,92,-63,131,-33r-13,21v-24,-24,-106,-27,-87,21v20,21,61,21,85,38",w:179},t:{d:"68,-53v-3,33,37,36,59,25r0,23v-36,19,-86,4,-86,-44r0,-113r-26,0r0,-24r26,0r0,-56r27,0r0,56r59,0r0,24r-59,0r0,109",w:145},u:{d:"163,-32v-12,20,-32,36,-64,36v-90,0,-69,-105,-71,-190r28,0v5,67,-22,165,51,165v74,0,53,-94,56,-165r27,0r0,186r-27,0r0,-32",w:221},v:{d:"13,-186r30,0r63,154r63,-154r30,0r-81,187r-25,0",w:211},w:{d:"15,-186r30,0r49,149r50,-150r23,0r50,150r49,-149r29,0r-66,187r-24,0r-50,-146r-50,146r-25,0",w:309},x:{d:"87,-95r-70,-91r32,0r55,72r55,-72r31,0r-71,91r74,95r-32,0r-58,-76r-58,76r-31,0",w:206},y:{d:"30,27v28,17,61,2,67,-28r-85,-185r31,0r68,155r59,-155r30,0r-78,192v-13,45,-55,66,-102,43",w:212},z:{d:"20,-18r124,-145r-120,0r0,-23r157,0r0,18r-123,145r123,0r0,23r-161,0r0,-18",w:200},"{":{d:"98,-53v-4,56,11,79,56,85r-4,19v-56,-7,-83,-31,-78,-100v2,-33,-16,-46,-52,-44r0,-21v89,17,17,-109,90,-132v10,-4,24,-8,40,-11r4,18v-44,7,-60,28,-56,85v2,30,-14,43,-37,51v22,7,39,20,37,50",w:173},"|":{d:"43,-287r23,0r0,333r-23,0r0,-333",w:109},"}":{d:"153,-93v-87,-15,-16,108,-89,133v-10,4,-24,8,-40,11r-5,-19v45,-7,61,-28,57,-85v-2,-30,14,-43,37,-50v-33,-8,-39,-34,-37,-78v2,-42,-22,-49,-57,-58r5,-18v56,7,83,31,78,100v-2,33,15,45,51,43r0,21",w:173},"~":{d:"110,-89v-25,0,-58,-31,-67,4r-17,-5v8,-22,11,-38,34,-38v26,0,58,33,67,-3r17,4v-7,23,-10,38,-34,38",w:170},"\u00c4":{d:"94,-309r33,0r0,35r-33,0r0,-35xm158,-309r32,0r0,35r-32,0r0,-35xm199,-92r-57,-129r-58,129r115,0xm129,-254r27,0r114,254r-30,0r-30,-67r-137,0r-30,67r-29,0",w:284},"\u00c5":{d:"199,-92r-57,-129r-58,129r115,0xm120,-276v0,12,10,22,22,22v13,0,23,-10,23,-22v0,-12,-10,-22,-23,-22v-12,0,-23,9,-22,22xm142,-312v39,0,50,53,18,67r110,245r-30,0r-30,-67r-137,0r-30,67r-29,0r111,-245v-32,-12,-22,-67,17,-67",w:284},"\u00c7":{d:"252,-40v-23,23,-51,42,-95,44r-24,52r-27,-12r28,-41v-66,-11,-105,-56,-110,-129v-7,-119,150,-170,226,-90r-19,21v-21,-19,-42,-35,-79,-35v-61,0,-94,42,-98,104v-6,101,125,134,179,68",w:265},"\u00c9":{d:"141,-327r29,14r-41,39r-22,0xm36,-252r182,0r0,26r-154,0r0,86r138,0r0,26r-138,0r0,88r156,0r0,26r-184,0r0,-252",w:241},"\u00d1":{d:"117,-314v24,0,59,32,67,-3r17,5v-7,23,-11,38,-34,38v-26,0,-57,-32,-67,3r-17,-5v7,-23,11,-38,34,-38xm36,-252r26,0r159,202r0,-202r28,0r0,252r-23,0r-163,-207r0,207r-27,0r0,-252",w:284},"\u00d6":{d:"105,-309r33,0r0,35r-33,0r0,-35xm168,-309r33,0r0,35r-33,0r0,-35xm54,-127v0,63,38,105,99,105v62,0,99,-41,99,-104v0,-62,-38,-104,-99,-104v-61,0,-99,41,-99,103xm282,-127v0,78,-49,131,-129,131v-81,0,-129,-53,-129,-130v0,-77,49,-130,129,-130v80,0,129,53,129,129",w:306},"\u00dc":{d:"89,-307r32,0r0,34r-32,0r0,-34xm152,-307r32,0r0,34r-32,0r0,-34xm242,-108v-1,70,-36,112,-106,112v-68,0,-103,-39,-104,-109r0,-147r28,0r0,145v-1,52,27,86,77,85v48,0,76,-30,76,-83r0,-147r29,0r0,144",w:273},"\u00e1":{d:"123,-266r29,13r-40,39r-23,0xm45,-56v0,26,22,38,47,38v41,0,66,-21,62,-68v-37,-11,-109,-16,-109,30xm153,-28v-26,45,-136,44,-136,-27v0,-64,81,-69,136,-53v9,-63,-72,-65,-111,-42r-9,-23v53,-30,148,-20,148,59r0,114r-28,0r0,-28",w:208},"\u00e0":{d:"53,-253r29,-13r34,52r-22,0xm45,-56v0,26,22,38,47,38v41,0,66,-21,62,-68v-37,-11,-109,-16,-109,30xm153,-28v-26,45,-136,44,-136,-27v0,-64,81,-69,136,-53v9,-63,-72,-65,-111,-42r-9,-23v53,-30,148,-20,148,59r0,114r-28,0r0,-28",w:208},"\u00e2":{d:"93,-261r24,0r38,47r-24,0r-27,-24v-14,11,-21,29,-50,24xm45,-56v0,26,22,38,47,38v41,0,66,-21,62,-68v-37,-11,-109,-16,-109,30xm153,-28v-26,45,-136,44,-136,-27v0,-64,81,-69,136,-53v9,-63,-72,-65,-111,-42r-9,-23v53,-30,148,-20,148,59r0,114r-28,0r0,-28",w:208},"\u00e4":{d:"57,-248r32,0r0,34r-32,0r0,-34xm120,-248r33,0r0,34r-33,0r0,-34xm45,-56v0,26,22,38,47,38v41,0,66,-21,62,-68v-37,-11,-109,-16,-109,30xm153,-28v-26,45,-136,44,-136,-27v0,-64,81,-69,136,-53v9,-63,-72,-65,-111,-42r-9,-23v53,-30,148,-20,148,59r0,114r-28,0r0,-28",w:208},"\u00e3":{d:"130,-214v-26,0,-57,-32,-67,3r-17,-5v7,-22,10,-37,34,-37v25,0,58,31,67,-4r17,5v-7,23,-11,38,-34,38xm45,-56v0,26,22,38,47,38v41,0,66,-21,62,-68v-37,-11,-109,-16,-109,30xm153,-28v-26,45,-136,44,-136,-27v0,-64,81,-69,136,-53v9,-63,-72,-65,-111,-42r-9,-23v53,-30,148,-20,148,59r0,114r-28,0r0,-28",w:208},"\u00e5":{d:"82,-250v-1,32,45,27,45,1v1,-13,-10,-22,-22,-23v-12,0,-23,10,-23,22xm105,-285v41,-3,49,58,14,69v-26,9,-52,-7,-52,-34v0,-22,15,-33,38,-35xm45,-56v0,26,22,38,47,38v41,0,66,-21,62,-68v-37,-11,-109,-16,-109,30xm153,-28v-26,45,-136,44,-136,-27v0,-64,81,-69,136,-53v9,-63,-72,-65,-111,-42r-9,-23v53,-30,148,-20,148,59r0,114r-28,0r0,-28",w:208},"\u00e7":{d:"48,-94v-5,71,91,95,125,46r18,16v-18,20,-37,34,-71,36r-24,52r-27,-12r29,-41v-46,-10,-76,-42,-79,-96v-4,-88,116,-129,170,-64r-18,19v-14,-14,-30,-28,-57,-28v-41,0,-63,30,-66,72",w:205},"\u00e9":{d:"126,-266r28,13r-40,39r-23,0xm167,-104v4,-66,-92,-85,-113,-25v-3,8,-5,16,-6,25r119,0xm48,-82v-2,65,91,79,124,36r17,15v-18,21,-39,36,-77,35v-58,-1,-93,-40,-93,-97v0,-56,32,-97,90,-97v60,0,88,43,86,108r-147,0",w:213},"\u00e8":{d:"59,-253r28,-13r35,52r-23,0xm167,-104v4,-66,-92,-85,-113,-25v-3,8,-5,16,-6,25r119,0xm48,-82v-2,65,91,79,124,36r17,15v-18,21,-39,36,-77,35v-58,-1,-93,-40,-93,-97v0,-56,32,-97,90,-97v60,0,88,43,86,108r-147,0",w:213},"\u00ea":{d:"95,-261r25,0r38,47r-24,0r-27,-24v-14,11,-21,29,-50,24xm167,-104v4,-66,-92,-85,-113,-25v-3,8,-5,16,-6,25r119,0xm48,-82v-2,65,91,79,124,36r17,15v-18,21,-39,36,-77,35v-58,-1,-93,-40,-93,-97v0,-56,32,-97,90,-97v60,0,88,43,86,108r-147,0",w:213},"\u00eb":{d:"60,-248r32,0r0,34r-32,0r0,-34xm123,-248r33,0r0,34r-33,0r0,-34xm167,-104v4,-66,-92,-85,-113,-25v-3,8,-5,16,-6,25r119,0xm48,-82v-2,65,91,79,124,36r17,15v-18,21,-39,36,-77,35v-58,-1,-93,-40,-93,-97v0,-56,32,-97,90,-97v60,0,88,43,86,108r-147,0",w:213},"\u00ed":{d:"70,-266r29,13r-41,39r-22,0xm33,-186r28,0r0,186r-28,0r0,-186",w:94},"\u00ec":{d:"-4,-253r29,-13r34,52r-22,0xm33,-186r28,0r0,186r-28,0r0,-186",w:94},"\u00ee":{d:"35,-261r24,0r39,47r-24,0r-27,-24v-14,11,-21,29,-50,24xm33,-186r28,0r0,186r-28,0r0,-186",w:94},"\u00ef":{d:"-1,-248r33,0r0,34r-33,0r0,-34xm63,-248r32,0r0,34r-32,0r0,-34xm33,-186r28,0r0,186r-28,0r0,-186",w:94},"\u00f1":{d:"137,-214v-26,0,-57,-32,-67,3r-17,-5v8,-22,11,-37,34,-37v25,0,58,31,67,-4r17,5v-7,23,-11,38,-34,38xm114,-165v-73,0,-52,95,-55,165r-28,0r0,-186r28,0r0,32v12,-19,31,-36,63,-36v90,0,71,105,72,190r-28,0v-4,-68,22,-165,-52,-165",w:221},"\u00f3":{d:"140,-266r28,13r-40,39r-23,0xm48,-94v0,43,25,73,69,73v43,0,68,-29,68,-72v0,-43,-27,-73,-69,-73v-42,0,-68,29,-68,72xm213,-94v0,60,-37,98,-97,98v-60,0,-97,-40,-97,-97v0,-58,39,-97,98,-97v57,0,96,38,96,96"},"\u00f2":{d:"64,-253r29,-13r34,52r-22,0xm48,-94v0,43,25,73,69,73v43,0,68,-29,68,-72v0,-43,-27,-73,-69,-73v-42,0,-68,29,-68,72xm213,-94v0,60,-37,98,-97,98v-60,0,-97,-40,-97,-97v0,-58,39,-97,98,-97v57,0,96,38,96,96"},"\u00f4":{d:"104,-261r25,0r38,47r-24,0r-27,-24v-14,11,-21,29,-50,24xm48,-94v0,43,25,73,69,73v43,0,68,-29,68,-72v0,-43,-27,-73,-69,-73v-42,0,-68,29,-68,72xm213,-94v0,60,-37,98,-97,98v-60,0,-97,-40,-97,-97v0,-58,39,-97,98,-97v57,0,96,38,96,96"},"\u00f6":{d:"68,-248r33,0r0,34r-33,0r0,-34xm132,-248r32,0r0,34r-32,0r0,-34xm48,-94v0,43,25,73,69,73v43,0,68,-29,68,-72v0,-43,-27,-73,-69,-73v-42,0,-68,29,-68,72xm213,-94v0,60,-37,98,-97,98v-60,0,-97,-40,-97,-97v0,-58,39,-97,98,-97v57,0,96,38,96,96"},"\u00f5":{d:"141,-214v-26,0,-57,-32,-67,3r-17,-5v8,-22,11,-37,34,-37v25,0,58,31,67,-4r17,5v-7,23,-11,38,-34,38xm48,-94v0,43,25,73,69,73v43,0,68,-29,68,-72v0,-43,-27,-73,-69,-73v-42,0,-68,29,-68,72xm213,-94v0,60,-37,98,-97,98v-60,0,-97,-40,-97,-97v0,-58,39,-97,98,-97v57,0,96,38,96,96"},"\u00fa":{d:"130,-265r29,13r-41,39r-22,0xm163,-32v-12,20,-32,36,-64,36v-90,0,-69,-105,-71,-190r28,0v5,67,-22,165,51,165v74,0,53,-94,56,-165r27,0r0,186r-27,0r0,-32",w:221},"\u00f9":{d:"62,-252r28,-13r35,52r-23,0xm163,-32v-12,20,-32,36,-64,36v-90,0,-69,-105,-71,-190r28,0v5,67,-22,165,51,165v74,0,53,-94,56,-165r27,0r0,186r-27,0r0,-32",w:221},"\u00fb":{d:"99,-261r24,0r39,47r-24,0r-27,-24v-14,11,-21,29,-50,24xm163,-32v-12,20,-32,36,-64,36v-90,0,-69,-105,-71,-190r28,0v5,67,-22,165,51,165v74,0,53,-94,56,-165r27,0r0,186r-27,0r0,-32",w:221},"\u00fc":{d:"63,-248r33,0r0,34r-33,0r0,-34xm127,-248r32,0r0,34r-32,0r0,-34xm163,-32v-12,20,-32,36,-64,36v-90,0,-69,-105,-71,-190r28,0v5,67,-22,165,51,165v74,0,53,-94,56,-165r27,0r0,186r-27,0r0,-32",w:221},"\u00b0":{d:"47,-199v0,21,14,36,35,36v22,0,36,-14,36,-36v0,-22,-14,-36,-36,-36v-21,0,-35,15,-35,36xm139,-199v0,32,-23,55,-57,55v-33,0,-56,-24,-56,-55v0,-32,23,-55,56,-55v34,0,57,23,57,55",w:164},"\u00a2":{d:"117,-200v-77,-6,-90,116,-27,139xm192,-67v-19,22,-44,38,-86,36r-6,33r-24,0r8,-38v-36,-14,-63,-44,-63,-92v0,-59,39,-95,100,-97r5,-29r24,0r-7,32v20,6,36,16,48,30r-18,19v-9,-10,-21,-19,-35,-24r-28,141v29,4,50,-12,65,-27",w:209},"\u00a3":{d:"134,-229v-48,0,-55,46,-51,98r100,0r0,25r-100,0r0,81r128,0r0,25r-187,0r0,-17r30,-7r0,-82r-30,0r0,-25r30,0v-5,-73,14,-125,80,-125v38,0,60,18,77,39r-22,18v-14,-16,-26,-30,-55,-30",w:231},"\u00a7":{d:"49,-132v8,31,54,34,90,37v21,2,39,-9,40,-25v-9,-30,-55,-34,-91,-37v-20,-2,-38,9,-39,25xm158,-81v54,28,15,88,-40,85v-36,-2,-63,-16,-82,-35r18,-17v17,24,94,48,102,3v-20,-51,-134,-16,-134,-85v0,-25,24,-37,48,-41v-56,-26,-16,-88,39,-85v36,2,64,16,83,35r-18,17v-15,-15,-37,-28,-65,-28v-22,1,-36,6,-37,25v19,51,133,19,133,85v0,25,-24,37,-47,41",w:227},"\u00b6":{d:"17,-173v0,-67,59,-84,133,-79r0,252r-28,0r0,-95v-60,0,-105,-22,-105,-78",w:183},"\u00df":{d:"137,-134v57,2,89,81,39,117v-17,12,-42,17,-71,18r0,-23v38,0,70,-13,69,-48v-1,-33,-33,-46,-69,-49r0,-21v27,-10,52,-24,53,-59v1,-25,-21,-42,-47,-42v-32,0,-52,26,-52,60r0,181r-28,0v7,-108,-35,-267,82,-265v43,2,74,22,74,65v0,37,-25,54,-50,66",w:223},"\u00ae":{d:"188,-155v0,-30,-40,-24,-70,-24r0,48v30,-1,70,6,70,-24xm208,-157v1,24,-14,35,-34,40r41,54r-24,0r-39,-50r-34,0r0,50r-20,0r0,-134v49,1,110,-9,110,40xm31,-126v0,72,46,119,118,119v73,0,119,-48,119,-120v0,-71,-46,-118,-118,-118v-73,0,-119,48,-119,119xm280,-127v0,79,-52,131,-131,131v-78,0,-130,-52,-130,-130v0,-78,52,-130,131,-130v78,0,130,51,130,129",w:298},"\u00a9":{d:"204,-82v-35,43,-120,20,-120,-46v0,-63,80,-91,119,-47r-13,14v-26,-33,-86,-16,-86,33v0,48,60,66,87,33xm31,-126v0,72,46,119,118,119v73,0,119,-48,119,-120v0,-71,-46,-118,-118,-118v-73,0,-119,48,-119,119xm280,-127v0,79,-52,131,-131,131v-78,0,-130,-52,-130,-130v0,-78,52,-130,131,-130v78,0,130,51,130,129",w:298},"\u2122":{d:"45,-237r-36,0r0,-15r87,0r0,15r-35,0r0,96r-16,0r0,-96xm121,-252r17,0r39,61r40,-61r16,0r0,111r-15,0r0,-85v-15,19,-25,43,-42,60r-39,-60r0,85r-16,0r0,-111",w:248},"\u00b4":{d:"99,-266r29,13r-41,39r-22,0",w:180},"\u00a8":{d:"42,-248r33,0r0,34r-33,0r0,-34xm105,-248r33,0r0,34r-33,0r0,-34",w:180},"\u00c6":{d:"177,-92r0,-135r-9,0r-78,135r87,0xm154,-252r199,0r0,26r-147,0r0,86r131,0r0,26r-131,0r0,88r149,0r0,26r-178,0r0,-67r-102,0r-39,67r-30,0",w:376},"\u00d8":{d:"92,-44v15,13,34,22,61,22v88,0,126,-107,76,-171xm153,-230v-88,0,-126,107,-76,171r137,-149v-15,-13,-34,-22,-61,-22xm282,-127v0,78,-49,128,-129,131v-34,0,-59,-11,-79,-26r-23,24r-29,0r35,-39v-19,-22,-33,-51,-33,-89v0,-77,49,-127,129,-130v34,0,59,11,79,26r23,-24r29,0r-35,39v19,22,33,51,33,88",w:306},"\u00b1":{d:"146,-129v87,24,50,133,-36,133v-43,0,-75,-21,-95,-45r21,-18v22,42,132,58,132,-10v0,-41,-46,-49,-93,-46r0,-24v46,2,86,-6,86,-47v0,-28,-24,-45,-54,-44v-33,0,-49,15,-65,36r-21,-16v19,-25,44,-47,87,-46v47,2,82,22,82,68v0,33,-21,48,-44,59",w:217},"\u00a5":{d:"110,-42r-74,0r0,-22r74,0r0,-32r-74,0r0,-22r65,0r-91,-134r34,0r80,123r81,-123r32,0r-92,134r66,0r0,22r-74,0r0,32r74,0r0,22r-74,0r0,42r-27,0r0,-42",w:246},"\u00b5":{d:"54,-127v0,63,38,105,99,105v62,0,99,-41,99,-104v0,-62,-38,-104,-99,-104v-61,0,-99,41,-99,103xm282,-127v0,44,-20,80,-47,102v20,21,44,38,62,61r-42,0r-47,-44v-93,38,-188,-22,-184,-118v3,-77,49,-130,129,-130v80,0,129,53,129,129",w:306},"\u03bc":{d:"54,-127v0,63,38,105,99,105v62,0,99,-41,99,-104v0,-62,-38,-104,-99,-104v-61,0,-99,41,-99,103xm282,-127v0,44,-20,80,-47,102v20,21,44,38,62,61r-42,0r-47,-44v-93,38,-188,-22,-184,-118v3,-77,49,-130,129,-130v80,0,129,53,129,129",w:306},"\u00aa":{d:"41,-181v-1,13,12,18,23,19v19,0,35,-11,31,-34v-17,-6,-53,-7,-54,15xm21,-121r93,0r0,17r-93,0r0,-17xm95,-163v-15,24,-73,22,-73,-17v0,-36,45,-35,73,-31v3,-31,-40,-30,-59,-18r-5,-15v29,-17,82,-12,82,33r0,62r-18,0r0,-14",w:140},"\u00ba":{d:"37,-201v-1,21,13,37,34,37v20,0,34,-16,33,-36v-1,-21,-13,-36,-34,-37v-19,-1,-33,17,-33,36xm18,-121r104,0r0,17r-104,0r0,-17xm123,-201v0,33,-20,54,-53,54v-33,0,-53,-21,-53,-53v0,-33,22,-54,54,-54v31,0,52,22,52,53",w:140},"\u00e6":{d:"45,-56v0,49,77,44,99,18v4,-4,9,-8,13,-13v-4,-11,-6,-23,-7,-35v-36,-12,-105,-15,-105,30xm297,-104v4,-66,-92,-85,-113,-25v-3,8,-6,16,-7,25r120,0xm319,-31v-27,46,-125,45,-151,-2v-32,43,-149,58,-151,-22v-1,-63,79,-69,133,-53v8,-63,-69,-65,-108,-42r-9,-23v40,-23,123,-24,135,24v13,-22,37,-42,71,-41v60,3,88,43,86,108r-148,0v0,64,92,80,125,36",w:343},"\u00f8":{d:"75,-35v57,49,148,-32,96,-102xm158,-151v-57,-49,-146,30,-97,102xm190,-157v49,56,12,167,-74,161v-24,-2,-44,-7,-58,-19r-16,17r-28,0r28,-31v-49,-58,-10,-166,75,-161v24,0,44,8,58,19r16,-17r28,0"},"\u00bf":{d:"120,-122v-39,3,-75,15,-74,53v1,30,22,47,53,47v30,0,49,-16,65,-34r18,17v-19,23,-42,42,-84,42v-85,0,-109,-112,-35,-137v9,-3,19,-7,29,-8r3,-39r19,0xm89,-252r33,0r0,38r-33,0r0,-38",w:193},"\u00a1":{d:"33,0r8,-181r16,0r8,181r-32,0xm32,-252r34,0r0,38r-34,0r0,-38",w:97},"\u00ab":{d:"76,-15v-19,-28,-43,-50,-59,-80r59,-76r21,12r-49,65r49,67xm156,-15v-18,-28,-42,-50,-58,-80r58,-76r21,12r-49,65r49,67",w:198},"\u00bb":{d:"21,-27r49,-66r-49,-66r21,-12v18,27,42,49,58,79r-58,77xm101,-27r49,-66r-49,-66r21,-12v19,27,43,49,59,79r-59,77",w:198},"\u2026":{d:"28,-37r32,0r0,37r-32,0r0,-37xm114,-37r32,0r0,37r-32,0r0,-37xm201,-37r32,0r0,37r-32,0r0,-37",w:260},"\u00a0":{w:108},"\u00c0":{d:"90,-313r29,-14r34,53r-22,0xm199,-92r-57,-129r-58,129r115,0xm129,-254r27,0r114,254r-30,0r-30,-67r-137,0r-30,67r-29,0",w:284},"\u00c3":{d:"117,-314v24,0,59,32,67,-3r17,5v-7,23,-11,38,-34,38v-26,0,-57,-32,-67,3r-17,-5v7,-23,11,-38,34,-38xm199,-92r-57,-129r-58,129r115,0xm129,-254r27,0r114,254r-30,0r-30,-67r-137,0r-30,67r-29,0",w:284},"\u00d5":{d:"178,-274v-26,0,-57,-32,-67,3r-17,-5v7,-23,11,-36,34,-38v24,3,58,32,67,-3r17,5v-7,23,-11,38,-34,38xm54,-127v0,63,38,105,99,105v62,0,99,-41,99,-104v0,-62,-38,-104,-99,-104v-61,0,-99,41,-99,103xm282,-127v0,78,-49,131,-129,131v-81,0,-129,-53,-129,-130v0,-77,49,-130,129,-130v80,0,129,53,129,129",w:306},"\u2013":{d:"23,-122r144,0r0,28r-144,0r0,-28",w:190},"\u2014":{d:"23,-122r277,0r0,28r-277,0r0,-28",w:323},"\u201c":{d:"26,-172v-2,-43,0,-78,40,-82r4,13v-15,5,-24,12,-24,31r13,0r0,38r-33,0xm98,-172v-2,-43,0,-78,40,-82r4,13v-15,5,-24,12,-24,31r13,0r0,38r-33,0",w:160},"\u201d":{d:"18,-183v15,-5,26,-12,24,-31r-12,0r0,-38r33,0v2,43,-1,77,-40,82xm90,-183v15,-5,26,-12,24,-31r-12,0r0,-38r32,0v1,43,1,78,-39,82",w:160},"\u2018":{d:"26,-172v-2,-43,0,-78,40,-82r4,13v-15,5,-24,12,-24,31r13,0r0,38r-33,0",w:88},"\u2019":{d:"18,-183v15,-5,26,-12,24,-31r-12,0r0,-38r33,0v2,43,-1,77,-40,82",w:88},"\u00ff":{d:"59,-248r32,0r0,34r-32,0r0,-34xm122,-248r32,0r0,34r-32,0r0,-34xm30,27v28,17,61,2,67,-28r-85,-185r31,0r68,155r59,-155r30,0r-78,192v-13,45,-55,66,-102,43",w:212},"\u00a4":{d:"240,-48v-18,27,-40,52,-85,52v-60,0,-89,-40,-102,-89r-33,0r0,-23r29,0r1,-39r-30,0r0,-22r34,0v7,-86,144,-120,186,-38r-22,15v-17,-33,-74,-56,-108,-22v-12,11,-21,27,-27,45r93,0r0,22r-98,0v0,13,-2,27,0,39r98,0r0,23r-94,0v10,33,34,64,74,64v33,0,48,-19,64,-42",w:259},"\u00b7":{d:"28,-127r33,0r0,38r-33,0r0,-38",w:88},"\u2219":{d:"28,-127r33,0r0,38r-33,0r0,-38",w:88},"\u00c2":{d:"130,-320r24,0r39,47r-24,0r-27,-24v-14,11,-21,29,-50,24xm199,-92r-57,-129r-58,129r115,0xm129,-254r27,0r114,254r-30,0r-30,-67r-137,0r-30,67r-29,0",w:284},"\u00ca":{d:"113,-321r25,0r38,47r-24,0r-27,-24v-14,11,-21,29,-50,24xm36,-252r182,0r0,26r-154,0r0,86r138,0r0,26r-138,0r0,88r156,0r0,26r-184,0r0,-252",w:241},"\u00c1":{d:"166,-327r28,14r-40,39r-23,0xm199,-92r-57,-129r-58,129r115,0xm129,-254r27,0r114,254r-30,0r-30,-67r-137,0r-30,67r-29,0",w:284},"\u00cb":{d:"77,-309r33,0r0,35r-33,0r0,-35xm141,-309r32,0r0,35r-32,0r0,-35xm36,-252r182,0r0,26r-154,0r0,86r138,0r0,26r-138,0r0,88r156,0r0,26r-184,0r0,-252",w:241},"\u00c8":{d:"82,-313r29,-14r34,53r-23,0xm36,-252r182,0r0,26r-154,0r0,86r138,0r0,26r-138,0r0,88r156,0r0,26r-184,0r0,-252",w:241},"\u00cd":{d:"75,-327r29,14r-41,39r-22,0xm38,-252r29,0r0,252r-29,0r0,-252",w:104},"\u00ce":{d:"40,-321r25,0r38,47r-24,0r-27,-24v-14,11,-21,29,-50,24xm38,-252r29,0r0,252r-29,0r0,-252",w:104},"\u00cf":{d:"5,-309r32,0r0,35r-32,0r0,-35xm68,-309r32,0r0,35r-32,0r0,-35xm38,-252r29,0r0,252r-29,0r0,-252",w:104},"\u00cc":{d:"1,-313r29,-14r34,53r-23,0xm38,-252r29,0r0,252r-29,0r0,-252",w:104},"\u00d3":{d:"178,-327r29,14r-41,39r-22,0xm54,-127v0,63,38,105,99,105v62,0,99,-41,99,-104v0,-62,-38,-104,-99,-104v-61,0,-99,41,-99,103xm282,-127v0,78,-49,131,-129,131v-81,0,-129,-53,-129,-130v0,-77,49,-130,129,-130v80,0,129,53,129,129",w:306},"\u00d4":{d:"141,-321r24,0r38,47r-23,0r-27,-24v-14,11,-21,29,-50,24xm54,-127v0,63,38,105,99,105v62,0,99,-41,99,-104v0,-62,-38,-104,-99,-104v-61,0,-99,41,-99,103xm282,-127v0,78,-49,131,-129,131v-81,0,-129,-53,-129,-130v0,-77,49,-130,129,-130v80,0,129,53,129,129",w:306},"\u00d2":{d:"99,-313r29,-14r34,53r-22,0xm54,-127v0,63,38,105,99,105v62,0,99,-41,99,-104v0,-62,-38,-104,-99,-104v-61,0,-99,41,-99,103xm282,-127v0,78,-49,131,-129,131v-81,0,-129,-53,-129,-130v0,-77,49,-130,129,-130v80,0,129,53,129,129",w:306},"\u00da":{d:"158,-325r28,14r-40,38r-23,0xm242,-108v-1,70,-36,112,-106,112v-68,0,-103,-39,-104,-109r0,-147r28,0r0,145v-1,52,27,86,77,85v48,0,76,-30,76,-83r0,-147r29,0r0,144",w:273},"\u00db":{d:"124,-320r25,0r38,47r-24,0r-27,-24v-14,11,-21,29,-50,24xm242,-108v-1,70,-36,112,-106,112v-68,0,-103,-39,-104,-109r0,-147r28,0r0,145v-1,52,27,86,77,85v48,0,76,-30,76,-83r0,-147r29,0r0,144",w:273},"\u00d9":{d:"87,-311r29,-14r34,52r-23,0xm242,-108v-1,70,-36,112,-106,112v-68,0,-103,-39,-104,-109r0,-147r28,0r0,145v-1,52,27,86,77,85v48,0,76,-30,76,-83r0,-147r29,0r0,144",w:273},"\u00af":{d:"33,-240r114,0r0,24r-114,0r0,-24",w:180},"\u02c9":{d:"33,-240r114,0r0,24r-114,0r0,-24",w:180},"\u00b8":{d:"54,44r32,-48r22,0r-27,60",w:180},"\u00dd":{d:"153,-325r28,14r-40,38r-23,0xm114,-100r-104,-152r34,0r85,126r86,-126r33,0r-105,152r0,100r-29,0r0,-100",w:257},"\u00fd":{d:"130,-265r29,13r-41,39r-22,0xm30,27v28,17,61,2,67,-28r-85,-185r31,0r68,155r59,-155r30,0r-78,192v-13,45,-55,66,-102,43",w:212},"\u00de":{d:"195,-127v0,-62,-68,-57,-131,-56r0,112v63,1,131,6,131,-56xm224,-129v-1,80,-76,88,-160,84r0,45r-28,0r0,-252r28,0r0,43v82,-3,161,1,160,80",w:242},"\u00fe":{d:"58,-94v0,45,25,73,67,73v42,0,65,-28,65,-72v0,-43,-23,-72,-65,-72v-41,0,-67,28,-67,71xm130,4v-37,2,-56,-19,-71,-40r0,94r-28,0r0,-321r28,0r0,114v15,-23,34,-41,71,-41v56,0,89,40,89,97v0,57,-34,94,-89,97",w:239},"\u00f0":{d:"48,-88v0,42,26,68,66,68v41,0,66,-27,66,-68v0,-39,-27,-65,-69,-65v-40,0,-63,25,-63,65xm176,-179v56,61,35,190,-64,183v-57,-3,-90,-36,-93,-93v-4,-75,89,-110,144,-66r-47,-66r-46,22r-13,-17r47,-22r-18,-25r33,0r10,14r35,-17r13,17r-37,17",w:227},"\u00d0":{d:"238,-125v0,-85,-69,-109,-163,-101r0,86r75,0r0,26r-75,0r0,88v93,6,163,-14,163,-99xm268,-127v0,113,-98,136,-222,127r0,-114r-27,0r0,-26r27,0r0,-112v123,-9,222,14,222,125",w:292}}});Cufon.registerFont({w:224,face:{"font-family":"Gotham","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 3 0 0 2 0 4",ascent:"288",descent:"-72","x-height":"4",bbox:"-16 -336 393 62","underline-thickness":"7.2","underline-position":"-40.68","unicode-range":"U+0020-U+2122"},glyphs:{" ":{w:108},"!":{d:"29,-58r58,0r0,58r-58,0r0,-58xm43,-86r-17,-166r64,0r-17,166r-30,0",w:116},'"':{d:"27,-252v19,2,45,-4,60,2r-39,113r-27,0xm112,-252v19,2,45,-4,60,2r-39,113r-28,0",w:187},"#":{d:"148,-100r9,-53r-53,0r-9,53r53,0xm40,-54r-27,0r0,-46r35,0r9,-53r-32,0r0,-46r40,0r9,-53r47,0r-9,53r53,0r9,-53r47,0r-9,53r27,0r0,46r-35,0r-9,53r32,0r0,46r-40,0r-9,54r-48,0r10,-54r-53,0r-9,54r-47,0",w:252},"$":{d:"136,-45v24,-2,33,-22,21,-39v-3,-5,-11,-8,-21,-12r0,51xm103,-207v-21,0,-32,21,-20,37v3,4,10,8,20,12r0,-49xm215,-72v0,46,-34,66,-77,72r0,35r-37,0r0,-36v-33,-4,-63,-18,-85,-34r28,-41v19,13,34,24,59,29r0,-57v-41,-13,-78,-25,-78,-77v0,-45,33,-66,76,-71r0,-21r37,0r0,22v27,4,48,12,67,26r-24,42v-14,-8,-28,-16,-45,-21r0,55v46,13,79,28,79,77",w:232},"%":{d:"209,-62v-1,16,8,32,24,32v16,0,23,-16,23,-32v0,-15,-9,-31,-24,-31v-16,-1,-23,16,-23,31xm54,-191v-1,17,8,32,24,32v16,1,23,-16,23,-31v0,-15,-8,-32,-24,-32v-16,0,-23,16,-23,31xm293,-62v0,39,-23,65,-61,65v-39,0,-61,-25,-61,-65v0,-38,23,-64,62,-64v38,0,60,25,60,64xm225,-252r43,0r-184,252r-43,0xm139,-191v0,39,-23,65,-62,65v-39,0,-61,-26,-61,-64v0,-38,23,-65,62,-65v39,0,61,26,61,64",w:309},"&":{d:"68,-72v-1,36,52,36,72,16r-49,-49v-13,6,-23,17,-23,33xm119,-213v-31,-1,-30,42,-10,57v18,-7,33,-13,34,-34v0,-14,-10,-23,-24,-23xm237,-114v-10,18,-22,38,-34,54r37,37r-40,28r-29,-29v-44,45,-162,36,-159,-46v1,-37,21,-56,49,-69v-36,-46,-10,-123,59,-117v42,3,71,22,71,64v0,38,-25,54,-53,66r33,33v9,-14,17,-28,25,-43",w:250},"'":{d:"27,-252v19,2,46,-4,61,2r-39,113r-28,0",w:102},"(":{d:"76,-103v0,62,32,91,69,117r-24,37v-58,-33,-100,-73,-100,-154v0,-81,42,-122,100,-154r24,36v-37,27,-69,56,-69,118",w:160},")":{d:"39,-257v58,32,100,73,100,154v0,81,-43,121,-100,154r-24,-37v38,-26,69,-55,70,-117v0,-62,-33,-91,-70,-118",w:160},"*":{d:"68,-177r-35,27r-15,-26r41,-17r-41,-17r15,-26r35,26r-5,-43r29,0r-6,43r35,-26r15,26r-40,17r40,17r-15,26r-35,-27r6,43r-29,0",w:154},"+":{d:"90,-102r-66,0r0,-50r66,0r0,-64r51,0r0,64r65,0r0,50r-65,0r0,65r-51,0r0,-65",w:230},",":{d:"9,36v25,-3,38,-15,36,-36r-23,0r0,-58r59,0v4,64,-2,119,-67,116",w:102},"-":{d:"18,-138r111,0r0,53r-111,0r0,-53",w:146},"\u00ad":{d:"18,-138r111,0r0,53r-111,0r0,-53",w:146},".":{d:"22,-58r59,0r0,58r-59,0r0,-58",w:102},"/":{d:"149,-287r47,0r-160,333r-46,0",w:190},"0":{d:"131,-206v-76,1,-74,159,1,160v75,-1,73,-159,-1,-160xm243,-127v0,75,-38,131,-112,131v-74,0,-112,-55,-112,-130v0,-74,38,-130,113,-130v73,0,111,55,111,129",w:262},"1":{d:"64,-198r-44,11r-11,-45v35,-9,62,-26,110,-22r0,254r-55,0r0,-198",w:151},"2":{d:"115,-256v89,-6,110,105,50,152r-71,56r110,0r0,48r-186,0r0,-44v41,-39,95,-66,125,-115v8,-25,-6,-49,-32,-47v-26,2,-36,16,-51,34r-39,-31v21,-30,45,-50,94,-53"},"3":{d:"203,-79v4,99,-147,103,-189,40r38,-37v17,18,30,30,61,31v20,0,36,-13,35,-32v-1,-30,-37,-34,-72,-32r-9,-35r60,-60r-99,0r0,-48r171,0r0,42r-64,61v40,5,66,25,68,70",w:223},"4":{d:"143,-99r0,-79r-67,79r67,0xm143,-54r-123,0r-9,-40r138,-160r47,0r0,155r34,0r0,45r-34,0r0,54r-53,0r0,-54",w:248},"5":{d:"206,-84v0,100,-139,109,-191,51r34,-40v17,15,33,26,60,27v24,0,42,-12,42,-36v0,-40,-58,-39,-87,-25r-32,-21r8,-124r154,0r0,49r-107,0r-3,43v61,-14,122,10,122,76",w:226},"6":{d:"76,-81v0,23,19,38,44,38v25,0,44,-14,43,-38v0,-23,-19,-37,-44,-37v-25,-1,-43,13,-43,37xm218,-84v-3,57,-39,88,-96,88v-75,0,-97,-46,-103,-123v-8,-113,103,-176,190,-110r-29,43v-25,-27,-91,-26,-98,15v-2,7,-4,15,-5,23v51,-35,145,-10,141,64",w:238},"7":{d:"143,-204r-119,0r0,-48r182,0r0,42r-113,210r-63,0",w:222},"8":{d:"70,-74v0,22,19,32,43,32v24,0,44,-11,44,-32v0,-22,-21,-31,-44,-31v-23,0,-43,9,-43,31xm77,-181v0,20,15,32,36,32v21,1,36,-12,36,-31v0,-18,-15,-30,-36,-30v-21,0,-36,12,-36,29xm211,-71v0,53,-43,75,-98,75v-53,0,-95,-22,-97,-74v-1,-34,17,-49,41,-61v-19,-11,-33,-25,-32,-55v3,-48,40,-70,88,-70v49,0,89,21,89,70v0,29,-13,44,-32,55v23,13,41,26,41,60",w:226},"9":{d:"75,-171v0,24,19,39,44,39v25,0,43,-14,43,-38v1,-24,-18,-40,-44,-39v-26,0,-42,14,-43,38xm219,-134v10,117,-110,177,-193,108r29,-42v20,22,70,33,91,6v8,-11,13,-24,15,-41v-50,37,-147,10,-141,-65v5,-56,38,-88,96,-88v75,0,97,48,103,122",w:238},":":{d:"24,-58r58,0r0,58r-58,0r0,-58xm24,-193r58,0r0,58r-58,0r0,-58",w:106},";":{d:"11,36v25,-3,37,-15,35,-36r-22,0r0,-58r58,0v-1,38,4,84,-17,100v-12,9,-28,16,-49,16xm24,-193r58,0r0,58r-58,0r0,-58",w:106},"\u037e":{d:"11,36v25,-3,37,-15,35,-36r-22,0r0,-58r58,0v-1,38,4,84,-17,100v-12,9,-28,16,-49,16xm24,-193r58,0r0,58r-58,0r0,-58",w:106},"<":{d:"24,-102r0,-50r175,-76r0,51r-122,50r122,50r0,51",w:230},"=":{d:"30,-105r171,0r0,50r-171,0r0,-50xm30,-198r171,0r0,49r-171,0r0,-49",w:230},">":{d:"32,-76r121,-50r-121,-50r0,-52r174,76r0,50r-174,76r0,-50",w:230},"?":{d:"59,-58r58,0r0,58r-58,0r0,-58xm7,-216v37,-55,179,-57,176,36v-2,47,-32,63,-71,72r-4,22r-37,0r-8,-58v30,-7,64,-5,64,-35v0,-43,-73,-24,-87,-1",w:195},"@":{d:"176,-146v-47,-4,-63,85,-10,86v46,3,62,-86,10,-86xm88,-93v-8,-74,88,-119,130,-66r4,-19r43,7r-18,108v-1,14,12,23,26,23v35,0,46,-36,46,-74v0,-79,-61,-128,-142,-128v-87,0,-143,57,-143,143v0,88,57,143,146,143v39,0,62,-9,88,-24r7,11v-27,15,-54,28,-95,27v-97,-4,-161,-61,-161,-157v0,-95,63,-157,158,-157v90,0,157,55,157,142v0,53,-22,88,-72,91v-27,1,-44,-11,-55,-22v-37,40,-126,20,-119,-48",w:352},A:{d:"175,-105r-34,-82r-33,82r67,0xm117,-254r51,0r108,254r-58,0r-23,-57r-107,0r-23,57r-56,0",w:284},B:{d:"189,-76v0,-42,-65,-25,-105,-28r0,55v40,-4,104,14,105,-27xm175,-177v0,-37,-55,-23,-91,-26r0,53v37,-2,91,11,91,-27xm244,-70v0,94,-124,65,-214,70r0,-252v85,3,200,-20,200,66v0,29,-14,44,-33,54v28,12,47,24,47,62",w:259},C:{d:"252,-41v-24,26,-54,47,-104,45v-79,-2,-124,-52,-129,-130v-7,-120,153,-170,231,-91r-35,40v-42,-49,-138,-28,-138,51v0,80,99,101,139,50",w:265},D:{d:"204,-125v0,-64,-48,-83,-118,-77r0,152v69,6,118,-12,118,-75xm262,-127v0,82,-53,127,-133,127r-99,0r0,-252r99,0v79,4,133,45,133,125",w:281},E:{d:"30,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49r-192,0r0,-252",w:241},F:{d:"30,-252r192,0r0,50r-136,0r0,54r120,0r0,50r-120,0r0,98r-56,0r0,-252",w:236},G:{d:"259,-36v-25,21,-60,41,-107,40v-83,-2,-129,-49,-133,-130v-6,-118,148,-168,231,-96r-35,42v-17,-14,-36,-25,-66,-25v-45,0,-70,33,-72,79v-4,69,76,100,129,65r0,-36r-56,0r0,-48r109,0r0,109",w:282},H:{d:"30,-252r56,0r0,100r102,0r0,-100r55,0r0,252r-55,0r0,-101r-102,0r0,101r-56,0r0,-252",w:273},I:{d:"33,-252r55,0r0,252r-55,0r0,-252",w:120},J:{d:"177,-87v11,99,-126,115,-172,53r35,-39v18,30,80,39,80,-17r0,-162r57,0r0,165",w:203},K:{d:"30,-252r56,0r0,110r102,-110r67,0r-103,107r108,145r-67,0r-78,-107r-29,30r0,77r-56,0r0,-252",w:262},L:{d:"30,-252r56,0r0,202r125,0r0,50r-181,0r0,-252",w:222},M:{d:"30,-252r60,0r66,107r66,-107r60,0r0,252r-55,0r0,-165r-72,108r-70,-106r0,163r-55,0r0,-252",w:312},N:{d:"30,-252r51,0r118,155r0,-155r55,0r0,252r-47,0r-122,-160r0,160r-55,0r0,-252",w:284},O:{d:"77,-127v0,48,28,80,76,80v48,0,76,-32,76,-79v0,-47,-29,-79,-76,-79v-48,0,-76,32,-76,78xm287,-127v0,81,-53,131,-134,131v-81,0,-134,-50,-134,-130v0,-80,54,-130,134,-130v81,0,134,50,134,129",w:306},P:{d:"174,-163v0,-42,-45,-40,-88,-39r0,77v43,2,88,2,88,-38xm230,-165v0,76,-62,94,-144,89r0,76r-56,0r0,-252r103,0v60,0,97,30,97,87",w:240},Q:{d:"77,-127v-2,59,52,95,109,73r-41,-35r36,-39r41,37v21,-55,-11,-115,-69,-114v-48,2,-74,32,-76,78xm153,-256v108,-5,167,115,112,202r26,22r-36,40r-27,-25v-21,13,-43,22,-75,21v-81,-3,-134,-50,-134,-130v0,-80,54,-126,134,-130",w:306},R:{d:"184,-165v0,-46,-54,-36,-98,-37r0,72v43,-1,98,9,98,-35xm240,-169v0,43,-23,68,-54,79r62,90r-65,0r-54,-81r-43,0r0,81r-56,0r0,-252v96,0,210,-16,210,83",w:260},S:{d:"166,-140v81,31,43,154,-46,144v-45,-5,-81,-17,-107,-41r33,-39v21,15,42,28,75,31v39,3,48,-39,11,-49v-50,-13,-109,-20,-109,-86v0,-90,131,-91,182,-44r-29,42v-19,-13,-39,-22,-65,-25v-29,-3,-45,28,-22,42v19,11,55,17,77,25",w:230},T:{d:"89,-201r-77,0r0,-51r209,0r0,51r-77,0r0,201r-55,0r0,-201",w:233},U:{d:"246,-110v-1,74,-38,113,-111,114v-70,0,-110,-40,-109,-112r0,-144r56,0v8,78,-29,205,54,205v85,1,46,-128,54,-205r56,0r0,142",w:272},V:{d:"9,-252r61,0r66,177r66,-177r59,0r-102,254r-48,0",w:270},W:{d:"11,-252r59,0r52,171r57,-172r47,0r57,172r52,-171r58,0r-86,254r-48,0r-57,-165r-57,165r-48,0",w:403},X:{d:"99,-128r-84,-124r65,0r52,82r54,-82r63,0r-84,123r87,129r-64,0r-57,-86r-57,86r-63,0",w:263},Y:{d:"101,-99r-97,-153r65,0r60,101r61,-101r63,0r-96,152r0,100r-56,0r0,-99",w:257},Z:{d:"23,-42r138,-161r-134,0r0,-49r206,0r0,42r-139,161r139,0r0,49r-210,0r0,-42",w:254},"[":{d:"30,-252r116,0r0,43r-64,0r0,213r64,0r0,43r-116,0r0,-299",w:167},"\\":{d:"-5,-287r46,0r160,333r-47,0",w:190},"]":{d:"21,4r64,0r0,-213r-64,0r0,-43r117,0r0,299r-117,0r0,-43",w:167},"^":{d:"71,-252r38,0r53,75r-40,0r-32,-43r-33,43r-39,0",w:180},_:{d:"-1,16r218,0r0,42r-218,0r0,-42",w:216},"`":{d:"40,-257r47,-21r40,64r-41,0",w:180},a:{d:"66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-23,-11,-73,-12,-73,20xm138,-110v4,-49,-65,-41,-95,-28r-13,-42v22,-9,42,-15,74,-15v58,0,86,27,86,83r0,112r-52,0r0,-21v-31,39,-125,32,-125,-35v0,-62,74,-72,125,-54",w:213},b:{d:"78,-97v0,32,17,54,47,54v29,0,47,-21,47,-54v0,-32,-18,-53,-47,-53v-30,0,-47,22,-47,53xm227,-97v0,61,-32,98,-88,101v-30,2,-46,-14,-60,-29r0,25r-55,0r0,-263r55,0r0,98v14,-17,30,-34,60,-32v55,3,88,40,88,100",w:243},c:{d:"69,-97v0,55,67,69,93,34r32,32v-19,19,-40,36,-78,35v-61,-3,-97,-39,-101,-100v-6,-93,122,-134,178,-68r-33,36v-23,-36,-91,-22,-91,31",w:205},d:{d:"71,-97v0,33,18,54,47,54v30,0,47,-23,47,-54v0,-31,-17,-53,-47,-53v-29,0,-47,21,-47,53xm164,-28v-14,17,-30,34,-60,32v-56,-3,-88,-40,-88,-101v0,-60,32,-97,88,-100v30,-2,46,14,60,29r0,-95r55,0r0,263r-55,0r0,-28",w:243},e:{d:"151,-112v0,-34,-44,-55,-68,-29v-7,7,-12,17,-14,29r82,0xm195,-32v-17,22,-41,36,-79,36v-62,-2,-101,-38,-101,-100v0,-60,36,-101,96,-101v67,0,96,48,93,120r-135,0v5,42,70,47,94,18",w:220},f:{d:"132,-215v-19,-7,-50,-7,-44,24r44,0r0,45r-43,0r0,146r-55,0r0,-146r-23,0r0,-45r23,0v-10,-64,44,-86,98,-69r0,45",w:137},g:{d:"71,-107v-1,27,20,47,46,46v30,-1,48,-18,48,-46v0,-27,-19,-44,-48,-44v-28,0,-45,16,-46,44xm16,-106v-6,-85,104,-118,148,-62r0,-25r55,0r0,149v11,107,-115,121,-193,82r18,-41v40,27,132,29,121,-44v-15,18,-31,31,-63,31v-54,-2,-82,-35,-86,-90",w:243},h:{d:"113,-147v-57,0,-27,94,-34,147r-55,0r0,-263r55,0r0,97v13,-16,29,-30,57,-31v88,-1,61,114,65,197r-54,0v-7,-53,23,-147,-34,-147"},i:{d:"27,-193r55,0r0,193r-55,0r0,-193xm26,-263r57,0r0,49r-57,0r0,-49",w:108},j:{d:"82,-3v2,51,-35,68,-86,60r0,-43v19,4,31,-2,31,-22r0,-185r55,0r0,190xm26,-263r57,0r0,49r-57,0r0,-49",w:108},k:{d:"24,-263r55,0r0,140r64,-70r66,0r-74,76r76,117r-62,0r-51,-79r-19,20r0,59r-55,0r0,-263",w:213},l:{d:"27,-263r55,0r0,263r-55,0r0,-263",w:108},m:{d:"112,-147v-55,0,-26,95,-33,147r-55,0r0,-193r55,0r0,27v18,-36,96,-43,111,0v32,-49,129,-40,129,40r0,126r-55,0v-7,-53,22,-147,-32,-147v-55,0,-26,95,-33,147r-55,0v-7,-53,22,-147,-32,-147",w:342},n:{d:"113,-147v-57,0,-27,94,-34,147r-55,0r0,-193r55,0r0,27v13,-16,29,-30,57,-31v88,-1,61,114,65,197r-54,0v-7,-53,23,-147,-34,-147"},o:{d:"69,-97v0,32,18,54,51,54v33,0,50,-22,50,-53v0,-31,-19,-53,-51,-53v-33,0,-50,21,-50,52xm224,-97v0,63,-42,101,-105,101v-63,0,-104,-38,-104,-100v0,-62,42,-101,105,-101v62,0,104,38,104,100",w:239},p:{d:"78,-97v0,32,17,54,47,54v29,0,47,-21,47,-54v0,-32,-18,-53,-47,-53v-30,0,-47,22,-47,53xm139,4v-30,2,-46,-14,-60,-29r0,83r-55,0r0,-251r55,0r0,28v14,-17,30,-34,60,-32v56,3,88,40,88,101v0,60,-32,97,-88,100",w:243},q:{d:"71,-97v0,33,18,54,47,54v30,0,47,-23,47,-54v0,-31,-17,-53,-47,-53v-29,0,-47,21,-47,53xm104,-197v30,-2,46,14,60,29r0,-25r55,0r0,251r-55,0r0,-86v-14,17,-30,34,-60,32v-56,-3,-88,-40,-88,-101v0,-60,32,-97,88,-100",w:243},r:{d:"141,-139v-70,-5,-63,71,-62,139r-55,0r0,-193r55,0r0,39v11,-24,28,-45,62,-43r0,58",w:150},s:{d:"128,-109v65,22,36,121,-36,113v-34,-4,-61,-13,-83,-30r24,-36v18,13,35,23,61,23v24,0,30,-21,11,-28v-37,-14,-86,-17,-86,-68v-1,-71,98,-73,143,-39r-21,38v-16,-9,-33,-16,-52,-18v-22,-3,-28,20,-9,27",w:180},t:{d:"133,-8v-40,23,-100,11,-100,-47r0,-91r-23,0r0,-47r23,0r0,-49r55,0r0,49r46,0r0,47r-46,0r0,82v-2,24,30,22,45,12r0,44",w:149},u:{d:"145,-27v-13,15,-29,30,-56,31v-89,3,-62,-114,-66,-197r55,0v7,53,-23,147,33,147v57,0,27,-94,34,-147r55,0r0,193r-55,0r0,-27"},v:{d:"7,-193r58,0r43,129r44,-129r57,0r-76,194r-50,0",w:216},w:{d:"9,-193r55,0r31,117r36,-118r48,0r36,118r32,-117r54,0r-60,194r-49,0r-37,-118r-38,118r-49,0",w:309},x:{d:"76,-98r-65,-95r58,0r36,56r37,-56r57,0r-65,94r68,99r-59,0r-39,-60r-38,60r-58,0",w:210},y:{d:"40,6v12,7,38,13,43,-5r-76,-194r58,0r44,131r42,-131r57,0r-74,198v-9,47,-67,70,-112,40",w:216},z:{d:"18,-39r100,-110r-97,0r0,-44r165,0r0,39r-100,110r100,0r0,44r-168,0r0,-39",w:202},"{":{d:"117,-55v0,43,7,64,42,69r-9,37v-54,-8,-90,-29,-83,-96v3,-32,-16,-38,-49,-37r0,-42v85,15,13,-103,91,-123v11,-3,24,-7,41,-10r9,36v-34,6,-50,25,-42,69v-1,29,-15,40,-38,49v23,8,38,19,38,48",w:176},"|":{d:"41,-287r44,0r0,333r-44,0r0,-333",w:126},"}":{d:"159,-82v-86,-17,-13,101,-91,122v-11,3,-24,8,-41,11r-10,-37v35,-7,43,-24,43,-69v0,-29,14,-40,37,-48v-31,-8,-36,-34,-36,-75v0,-30,-19,-36,-44,-43r10,-36v56,7,89,29,83,96v-3,32,16,38,49,37r0,42",w:176},"~":{d:"121,-84v-28,0,-62,-32,-74,3r-29,-9v8,-23,14,-49,44,-49v30,0,63,31,75,-4r29,9v-7,26,-17,49,-45,50",w:183},"\u00c4":{d:"77,-320r53,0r0,48r-53,0r0,-48xm154,-320r53,0r0,48r-53,0r0,-48xm175,-105r-34,-82r-33,82r67,0xm117,-254r51,0r108,254r-58,0r-23,-57r-107,0r-23,57r-56,0",w:284},"\u00c5":{d:"175,-105r-34,-82r-33,82r67,0xm120,-279v0,12,9,23,22,22v13,0,23,-10,23,-22v0,-12,-10,-22,-23,-22v-12,0,-22,9,-22,22xm142,-321v41,0,58,52,29,74r105,247r-58,0r-23,-57r-107,0r-23,57r-56,0r105,-247v-28,-21,-13,-74,28,-74",w:284},"\u00c7":{d:"252,-41v-22,24,-49,44,-94,45r-24,58r-45,-19r28,-42v-56,-16,-94,-56,-98,-127v-6,-120,153,-170,231,-91r-35,40v-42,-49,-138,-28,-138,51v0,80,99,101,139,50",w:265},"\u00c9":{d:"136,-336r47,21r-46,43r-42,0xm30,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49r-192,0r0,-252",w:241},"\u00d1":{d:"172,-272v0,0,-63,-32,-75,4r-29,-9v7,-25,15,-49,45,-50v28,0,62,32,74,-3r29,9v-7,25,-16,48,-44,49xm30,-252r51,0r118,155r0,-155r55,0r0,252r-47,0r-122,-160r0,160r-55,0r0,-252",w:284},"\u00d6":{d:"88,-320r53,0r0,48r-53,0r0,-48xm165,-320r53,0r0,48r-53,0r0,-48xm77,-127v0,48,28,80,76,80v48,0,76,-32,76,-79v0,-47,-29,-79,-76,-79v-48,0,-76,32,-76,78xm287,-127v0,81,-53,131,-134,131v-81,0,-134,-50,-134,-130v0,-80,54,-130,134,-130v81,0,134,50,134,129",w:306},"\u00dc":{d:"71,-320r53,0r0,48r-53,0r0,-48xm148,-320r53,0r0,48r-53,0r0,-48xm246,-110v-1,74,-38,113,-111,114v-70,0,-110,-40,-109,-112r0,-144r56,0v8,78,-29,205,54,205v85,1,46,-128,54,-205r56,0r0,142",w:272},"\u00e1":{d:"122,-278r48,21r-47,43r-41,0xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-23,-11,-73,-12,-73,20xm138,-110v4,-49,-65,-41,-95,-28r-13,-42v22,-9,42,-15,74,-15v58,0,86,27,86,83r0,112r-52,0r0,-21v-31,39,-125,32,-125,-35v0,-62,74,-72,125,-54",w:213},"\u00e0":{d:"45,-257r48,-21r40,64r-42,0xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-23,-11,-73,-12,-73,20xm138,-110v4,-49,-65,-41,-95,-28r-13,-42v22,-9,42,-15,74,-15v58,0,86,27,86,83r0,112r-52,0r0,-21v-31,39,-125,32,-125,-35v0,-62,74,-72,125,-54",w:213},"\u00e2":{d:"80,-271r52,0r44,57r-42,0r-29,-24r-28,24r-41,0xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-23,-11,-73,-12,-73,20xm138,-110v4,-49,-65,-41,-95,-28r-13,-42v22,-9,42,-15,74,-15v58,0,86,27,86,83r0,112r-52,0r0,-21v-31,39,-125,32,-125,-35v0,-62,74,-72,125,-54",w:213},"\u00e4":{d:"41,-263r53,0r0,49r-53,0r0,-49xm118,-263r53,0r0,49r-53,0r0,-49xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-23,-11,-73,-12,-73,20xm138,-110v4,-49,-65,-41,-95,-28r-13,-42v22,-9,42,-15,74,-15v58,0,86,27,86,83r0,112r-52,0r0,-21v-31,39,-125,32,-125,-35v0,-62,74,-72,125,-54",w:213},"\u00e3":{d:"136,-214v-29,1,-62,-32,-74,3r-30,-9v8,-24,15,-49,45,-49v30,0,62,31,75,-4r29,9v-7,26,-17,49,-45,50xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-23,-11,-73,-12,-73,20xm138,-110v4,-49,-65,-41,-95,-28r-13,-42v22,-9,42,-15,74,-15v58,0,86,27,86,83r0,112r-52,0r0,-21v-31,39,-125,32,-125,-35v0,-62,74,-72,125,-54",w:213},"\u00e5":{d:"84,-256v-1,13,10,23,22,23v12,0,22,-10,22,-23v0,-12,-10,-22,-22,-22v-12,0,-22,10,-22,22xm149,-256v0,27,-19,40,-43,43v-25,-2,-44,-17,-44,-43v0,-25,19,-40,44,-42v24,3,43,16,43,42xm66,-58v0,16,14,25,30,24v26,-1,47,-14,43,-44v-23,-11,-73,-12,-73,20xm138,-110v4,-49,-65,-41,-95,-28r-13,-42v22,-9,42,-15,74,-15v58,0,86,27,86,83r0,112r-52,0r0,-21v-31,39,-125,32,-125,-35v0,-62,74,-72,125,-54",w:213},"\u00e7":{d:"69,-97v0,55,67,69,93,34r32,32v-18,18,-35,33,-69,35r-24,58r-46,-19r30,-43v-41,-13,-67,-44,-70,-96v-5,-93,122,-134,178,-68r-33,36v-23,-36,-91,-22,-91,31",w:205},"\u00e9":{d:"129,-278r47,21r-46,43r-41,0xm151,-112v0,-34,-44,-55,-68,-29v-7,7,-12,17,-14,29r82,0xm195,-32v-17,22,-41,36,-79,36v-62,-2,-101,-38,-101,-100v0,-60,36,-101,96,-101v67,0,96,48,93,120r-135,0v5,42,70,47,94,18",w:220},"\u00e8":{d:"44,-257r47,-21r41,64r-42,0xm151,-112v0,-34,-44,-55,-68,-29v-7,7,-12,17,-14,29r82,0xm195,-32v-17,22,-41,36,-79,36v-62,-2,-101,-38,-101,-100v0,-60,36,-101,96,-101v67,0,96,48,93,120r-135,0v5,42,70,47,94,18",w:220},"\u00ea":{d:"84,-271r52,0r44,57r-42,0r-28,-24r-29,24r-41,0xm151,-112v0,-34,-44,-55,-68,-29v-7,7,-12,17,-14,29r82,0xm195,-32v-17,22,-41,36,-79,36v-62,-2,-101,-38,-101,-100v0,-60,36,-101,96,-101v67,0,96,48,93,120r-135,0v5,42,70,47,94,18",w:220},"\u00eb":{d:"45,-263r53,0r0,49r-53,0r0,-49xm122,-263r53,0r0,49r-53,0r0,-49xm151,-112v0,-34,-44,-55,-68,-29v-7,7,-12,17,-14,29r82,0xm195,-32v-17,22,-41,36,-79,36v-62,-2,-101,-38,-101,-100v0,-60,36,-101,96,-101v67,0,96,48,93,120r-135,0v5,42,70,47,94,18",w:220},"\u00ed":{d:"71,-278r47,21r-46,43r-41,0xm27,-193r55,0r0,193r-55,0r0,-193",w:108},"\u00ec":{d:"-10,-257r47,-21r41,64r-42,0xm27,-193r55,0r0,193r-55,0r0,-193",w:108},"\u00ee":{d:"28,-271r52,0r45,57r-43,0r-28,-24r-28,24r-42,0xm27,-193r55,0r0,193r-55,0r0,-193",w:108},"\u00ef":{d:"-10,-263r52,0r0,49r-52,0r0,-49xm67,-263r52,0r0,49r-52,0r0,-49xm27,-193r55,0r0,193r-55,0r0,-193",w:108},"\u00f1":{d:"143,-214v-28,0,-62,-32,-74,3r-29,-9v8,-23,14,-49,44,-49v30,0,63,31,75,-4r29,9v-7,26,-17,49,-45,50xm113,-147v-57,0,-27,94,-34,147r-55,0r0,-193r55,0r0,27v13,-16,29,-30,57,-31v88,-1,61,114,65,197r-54,0v-7,-53,23,-147,-34,-147"},"\u00f3":{d:"139,-278r47,21r-46,43r-41,0xm69,-97v0,32,18,54,51,54v33,0,50,-22,50,-53v0,-31,-19,-53,-51,-53v-33,0,-50,21,-50,52xm224,-97v0,63,-42,101,-105,101v-63,0,-104,-38,-104,-100v0,-62,42,-101,105,-101v62,0,104,38,104,100",w:239},"\u00f2":{d:"53,-257r47,-21r40,64r-41,0xm69,-97v0,32,18,54,51,54v33,0,50,-22,50,-53v0,-31,-19,-53,-51,-53v-33,0,-50,21,-50,52xm224,-97v0,63,-42,101,-105,101v-63,0,-104,-38,-104,-100v0,-62,42,-101,105,-101v62,0,104,38,104,100",w:239},"\u00f4":{d:"94,-271r51,0r45,57r-42,0r-29,-24r-28,24r-42,0xm69,-97v0,32,18,54,51,54v33,0,50,-22,50,-53v0,-31,-19,-53,-51,-53v-33,0,-50,21,-50,52xm224,-97v0,63,-42,101,-105,101v-63,0,-104,-38,-104,-100v0,-62,42,-101,105,-101v62,0,104,38,104,100",w:239},"\u00f6":{d:"55,-263r52,0r0,49r-52,0r0,-49xm132,-263r52,0r0,49r-52,0r0,-49xm69,-97v0,32,18,54,51,54v33,0,50,-22,50,-53v0,-31,-19,-53,-51,-53v-33,0,-50,21,-50,52xm224,-97v0,63,-42,101,-105,101v-63,0,-104,-38,-104,-100v0,-62,42,-101,105,-101v62,0,104,38,104,100",w:239},"\u00f5":{d:"149,-214v-29,1,-62,-32,-74,3r-30,-9v8,-24,15,-49,45,-49v30,0,62,31,75,-4r29,9v-7,26,-17,49,-45,50xm69,-97v0,32,18,54,51,54v33,0,50,-22,50,-53v0,-31,-19,-53,-51,-53v-33,0,-50,21,-50,52xm224,-97v0,63,-42,101,-105,101v-63,0,-104,-38,-104,-100v0,-62,42,-101,105,-101v62,0,104,38,104,100",w:239},"\u00fa":{d:"126,-278r47,21r-46,43r-42,0xm145,-27v-13,15,-29,30,-56,31v-89,3,-62,-114,-66,-197r55,0v7,53,-23,147,33,147v57,0,27,-94,34,-147r55,0r0,193r-55,0r0,-27"},"\u00f9":{d:"51,-257r47,-21r41,64r-42,0xm145,-27v-13,15,-29,30,-56,31v-89,3,-62,-114,-66,-197r55,0v7,53,-23,147,33,147v57,0,27,-94,34,-147r55,0r0,193r-55,0r0,-27"},"\u00fb":{d:"86,-271r52,0r44,57r-42,0r-28,-24r-29,24r-41,0xm145,-27v-13,15,-29,30,-56,31v-89,3,-62,-114,-66,-197r55,0v7,53,-23,147,33,147v57,0,27,-94,34,-147r55,0r0,193r-55,0r0,-27"},"\u00fc":{d:"47,-263r53,0r0,49r-53,0r0,-49xm124,-263r53,0r0,49r-53,0r0,-49xm145,-27v-13,15,-29,30,-56,31v-89,3,-62,-114,-66,-197r55,0v7,53,-23,147,33,147v57,0,27,-94,34,-147r55,0r0,193r-55,0r0,-27"},"\u00b0":{d:"53,-194v0,18,14,35,33,35v20,0,34,-17,34,-35v-1,-17,-15,-33,-34,-33v-19,0,-32,16,-33,33xm149,-194v0,37,-26,62,-63,62v-36,0,-62,-25,-62,-62v0,-36,27,-60,62,-60v36,0,63,24,63,60",w:172},"\u00a2":{d:"112,-181v-46,1,-55,79,-19,100xm195,-64v-18,20,-40,37,-77,37r-6,29r-37,0r7,-35v-38,-15,-65,-45,-65,-95v0,-62,40,-98,103,-100r5,-26r37,0r-6,32v17,5,27,15,39,26r-32,35v-6,-6,-11,-10,-18,-14r-20,100v17,-3,27,-9,39,-20",w:209},"\u00a3":{d:"173,-180v-13,-29,-69,-34,-68,10r0,28r82,0r0,46r-82,0r0,48r110,0r0,48r-193,0r0,-36r27,-9r0,-51r-27,0r0,-46r27,0v-25,-113,111,-149,166,-72",w:231},"\u00a7":{d:"68,-132v4,22,47,25,72,28v11,2,20,-6,20,-17v-8,-20,-48,-24,-73,-27v-11,-1,-21,6,-19,16xm176,-86v37,37,-1,90,-59,90v-38,0,-65,-14,-84,-35r30,-29v15,14,28,22,53,24v18,2,33,-17,15,-24v-44,-17,-139,-21,-102,-92v6,-6,15,-10,23,-14v-38,-36,1,-90,59,-90v38,0,65,14,83,35r-29,29v-15,-14,-28,-22,-53,-24v-28,-2,-30,25,-5,29v39,14,101,11,101,59v0,24,-14,35,-32,42",w:227},"\u00b6":{d:"13,-167v-2,-84,81,-89,169,-85r0,252r-55,0r0,-83v-66,1,-113,-21,-114,-84",w:212},"\u00df":{d:"161,-136v47,10,65,91,20,119v-18,12,-43,19,-73,18r0,-41v26,-2,45,-10,46,-34v0,-23,-24,-32,-46,-35r0,-36v15,-11,31,-22,31,-45v1,-18,-10,-30,-28,-29v-20,0,-33,15,-32,36r0,183r-55,0r0,-181v2,-54,33,-84,89,-84v48,1,79,23,80,70v1,32,-14,46,-32,59",w:223},"\u00ae":{d:"181,-151v0,-26,-30,-21,-55,-21r0,41v25,0,55,4,55,-20xm212,-154v0,23,-14,37,-30,44r34,50r-36,0r-30,-45r-24,0r0,45r-30,0r0,-139v53,-1,116,-7,116,45xm34,-126v0,70,45,116,115,116v71,0,116,-46,116,-117v0,-69,-46,-115,-115,-115v-71,0,-116,46,-116,116xm280,-127v0,79,-52,131,-131,131v-78,0,-130,-52,-130,-130v0,-78,52,-130,131,-130v78,0,130,51,130,129",w:298},"\u00a9":{d:"112,-128v0,44,54,55,76,27r20,20v-36,46,-128,24,-128,-47v0,-66,85,-93,127,-50r-20,23v-23,-26,-75,-17,-75,27xm34,-126v0,70,45,116,115,116v71,0,116,-46,116,-117v0,-69,-46,-115,-115,-115v-71,0,-116,46,-116,116xm280,-127v0,79,-52,131,-131,131v-78,0,-130,-52,-130,-130v0,-78,52,-130,131,-130v78,0,130,51,130,129",w:298},"\u2122":{d:"42,-230r-33,0r0,-22r92,0r0,22r-33,0r0,89r-26,0r0,-89xm124,-252r27,0r29,47r29,-47r26,0r0,111r-24,0r0,-75v-11,16,-18,36,-32,49r-31,-49r0,75r-24,0r0,-111",w:248},"\u00b4":{d:"93,-278r47,21r-46,43r-41,0",w:180},"\u00a8":{d:"25,-263r53,0r0,49r-53,0r0,-49xm102,-263r53,0r0,49r-53,0r0,-49",w:180},"\u00c6":{d:"174,-105r0,-99r-6,0r-52,99r58,0xm139,-252r216,0r0,49r-126,0r0,51r110,0r0,50r-110,0r0,53r128,0r0,49r-183,0r0,-57r-84,0r-30,57r-57,0",w:376},"\u00d8":{d:"118,-54v70,35,142,-45,100,-116xm188,-198v-70,-35,-142,45,-100,116xm287,-127v4,106,-115,161,-204,113r-14,16r-53,0r35,-41v-18,-22,-31,-50,-32,-87v-3,-104,115,-160,204,-112r14,-16r53,0r-35,41v18,21,31,50,32,86",w:306},"\u00b1":{d:"205,-75v0,99,-150,96,-192,36r37,-36v16,28,101,50,101,-1v0,-30,-41,-29,-75,-28r0,-46v34,2,70,0,68,-30v-1,-17,-15,-27,-36,-27v-26,1,-38,14,-52,30r-38,-33v21,-25,43,-47,90,-46v50,2,89,19,90,68v1,31,-14,46,-33,58v21,11,40,23,40,55",w:221},"\u00a5":{d:"97,-33r-66,0r0,-39r66,0r0,-22r-66,0r0,-39r51,0r-77,-119r64,0r55,93r56,-93r62,0r-78,119r52,0r0,39r-66,0r0,22r66,0r0,39r-66,0r0,33r-53,0r0,-33",w:246},"\u00b5":{d:"77,-127v0,48,28,80,76,80v48,0,76,-32,76,-79v0,-47,-29,-79,-76,-79v-48,0,-76,32,-76,78xm287,-127v0,42,-18,74,-41,96r64,64r0,3r-81,0r-38,-37v-96,20,-172,-34,-172,-125v0,-80,54,-130,134,-130v81,0,134,50,134,129",w:306},"\u03bc":{d:"77,-127v0,48,28,80,76,80v48,0,76,-32,76,-79v0,-47,-29,-79,-76,-79v-48,0,-76,32,-76,78xm287,-127v0,42,-18,74,-41,96r64,64r0,3r-81,0r-38,-37v-96,20,-172,-34,-172,-125v0,-80,54,-130,134,-130v81,0,134,50,134,129",w:306},"\u00aa":{d:"48,-178v0,10,7,13,16,13v15,-1,26,-7,24,-24v-12,-6,-40,-8,-40,11xm18,-123r100,0r0,23r-100,0r0,-23xm87,-157v-16,22,-68,17,-68,-20v0,-33,41,-40,68,-29v3,-28,-34,-24,-52,-16r-7,-22v32,-17,88,-13,88,37r0,61r-29,0r0,-11",w:140},"\u00ba":{d:"44,-199v0,17,11,30,27,30v15,0,25,-14,25,-30v0,-15,-11,-29,-26,-29v-15,0,-26,14,-26,29xm18,-123r104,0r0,23r-104,0r0,-23xm126,-199v0,34,-23,56,-56,56v-33,0,-55,-21,-55,-56v0,-34,23,-55,56,-55v33,0,55,21,55,55",w:140},"\u00e6":{d:"66,-58v3,36,62,23,79,5v-3,-8,-6,-15,-7,-25v-23,-11,-74,-12,-72,20xm273,-112v0,-34,-45,-55,-69,-29v-7,7,-12,17,-14,29r83,0xm191,-77v5,42,70,47,94,18r31,27v-25,44,-121,47,-152,7v-37,38,-151,46,-151,-31v0,-62,74,-72,125,-54v4,-49,-65,-41,-95,-28r-13,-42v36,-19,116,-24,140,9v14,-14,36,-26,64,-26v65,2,97,51,91,120r-134,0",w:342},"\u00f8":{d:"99,-45v47,18,87,-27,67,-76xm140,-147v-48,-19,-87,27,-67,76xm224,-97v2,81,-85,122,-157,89v-7,16,-36,9,-57,10r29,-33v-13,-16,-24,-37,-24,-65v-2,-79,86,-123,156,-88r10,-11r48,0r-29,34v15,16,24,37,24,64",w:239},"\u00bf":{d:"189,-36v-38,54,-179,57,-176,-36v2,-47,32,-63,71,-72r4,-22r37,0r8,58v-31,7,-65,6,-65,35v0,43,73,25,88,1xm78,-252r59,0r0,58r-59,0r0,-58",w:195},"\u00a1":{d:"26,0r17,-166r30,0r17,166r-64,0xm29,-252r58,0r0,58r-58,0r0,-58",w:116},"\u00ab":{d:"75,-14v-19,-29,-43,-53,-60,-84r60,-81r42,21r-47,61r47,62xm173,-14v-19,-29,-43,-53,-60,-84r60,-81r42,21r-47,61r47,62",w:232},"\u00bb":{d:"17,-35r47,-61r-47,-62r42,-21v19,29,44,53,61,84r-61,81xm115,-35r47,-61r-47,-62r42,-21v19,29,43,53,60,84r-60,81",w:232},"\u2026":{d:"22,-56r57,0r0,56r-57,0r0,-56xm123,-56r57,0r0,56r-57,0r0,-56xm223,-56r57,0r0,56r-57,0r0,-56",w:302},"\u00a0":{w:108},"\u00c0":{d:"77,-315r48,-21r40,64r-42,0xm175,-105r-34,-82r-33,82r67,0xm117,-254r51,0r108,254r-58,0r-23,-57r-107,0r-23,57r-56,0",w:284},"\u00c3":{d:"172,-272v0,0,-63,-32,-75,4r-29,-9v7,-25,15,-49,45,-50v28,0,62,32,74,-3r29,9v-7,25,-16,48,-44,49xm175,-105r-34,-82r-33,82r67,0xm117,-254r51,0r108,254r-58,0r-23,-57r-107,0r-23,57r-56,0",w:284},"\u00d5":{d:"183,-272v-30,1,-63,-32,-75,4r-29,-9v7,-24,15,-48,44,-50v29,-1,63,32,75,-3r29,9v-7,25,-16,48,-44,49xm77,-127v0,48,28,80,76,80v48,0,76,-32,76,-79v0,-47,-29,-79,-76,-79v-48,0,-76,32,-76,78xm287,-127v0,81,-53,131,-134,131v-81,0,-134,-50,-134,-130v0,-80,54,-130,134,-130v81,0,134,50,134,129",w:306},"\u2013":{d:"18,-137r154,0r0,51r-154,0r0,-51",w:190},"\u2014":{d:"18,-137r287,0r0,51r-287,0r0,-51",w:323},"\u201c":{d:"21,-138v0,-38,-4,-84,17,-100v12,-9,28,-16,49,-16r5,23v-25,3,-37,15,-35,36r22,0r0,57r-58,0xm112,-138v0,-38,-4,-84,17,-100v12,-9,29,-16,50,-16r4,23v-25,3,-37,15,-35,36r22,0r0,57r-58,0",w:194},"\u201d":{d:"11,-159v25,-3,37,-14,35,-35r-22,0r0,-58r58,0v-1,38,4,84,-17,100v-12,9,-28,16,-49,16xm103,-159v25,-3,37,-14,35,-35r-22,0r0,-58r58,0v-1,38,4,84,-17,100v-12,9,-29,16,-50,16",w:194},"\u2018":{d:"21,-138v0,-38,-4,-84,17,-100v12,-9,28,-16,49,-16r5,23v-25,3,-37,15,-35,36r22,0r0,57r-58,0",w:102},"\u2019":{d:"11,-159v25,-3,37,-14,35,-35r-22,0r0,-58r58,0v-1,38,4,84,-17,100v-12,9,-28,16,-49,16",w:102},"\u00ff":{d:"43,-263r53,0r0,49r-53,0r0,-49xm120,-263r53,0r0,49r-53,0r0,-49xm40,6v12,7,38,13,43,-5r-76,-194r58,0r44,131r42,-131r57,0r-74,198v-9,47,-67,70,-112,40",w:216},"\u00a4":{d:"246,-45v-21,27,-43,49,-89,49v-60,-1,-91,-35,-106,-82r-33,0r0,-36r27,0v0,-8,-2,-17,0,-25r-27,0r0,-36r33,0v11,-82,151,-112,194,-35r-42,31v-17,-36,-81,-37,-94,4r67,0r0,36r-75,0v0,8,-2,18,0,25r75,0r0,36r-67,0v9,19,21,33,48,33v26,0,35,-14,49,-30",w:259},"\u00b7":{d:"22,-140r59,0r0,57r-59,0r0,-57",w:102},"\u2219":{d:"22,-140r59,0r0,57r-59,0r0,-57",w:102},"\u00c2":{d:"116,-328r52,0r44,56r-42,0r-28,-24r-29,24r-41,0xm175,-105r-34,-82r-33,82r67,0xm117,-254r51,0r108,254r-58,0r-23,-57r-107,0r-23,57r-56,0",w:284},"\u00ca":{d:"99,-328r51,0r45,56r-42,0r-29,-24r-28,24r-42,0xm30,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49r-192,0r0,-252",w:241},"\u00c1":{d:"160,-336r47,21r-46,43r-42,0xm175,-105r-34,-82r-33,82r67,0xm117,-254r51,0r108,254r-58,0r-23,-57r-107,0r-23,57r-56,0",w:284},"\u00cb":{d:"60,-320r52,0r0,48r-52,0r0,-48xm137,-320r52,0r0,48r-52,0r0,-48xm30,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49r-192,0r0,-252",w:241},"\u00c8":{d:"68,-315r47,-21r41,64r-42,0xm30,-252r190,0r0,49r-135,0r0,51r119,0r0,50r-119,0r0,53r137,0r0,49r-192,0r0,-252",w:241},"\u00cd":{d:"78,-336r47,21r-46,43r-42,0xm33,-252r55,0r0,252r-55,0r0,-252",w:120},"\u00ce":{d:"35,-328r51,0r45,56r-42,0r-29,-24r-28,24r-42,0xm33,-252r55,0r0,252r-55,0r0,-252",w:120},"\u00cf":{d:"-4,-320r52,0r0,48r-52,0r0,-48xm73,-320r52,0r0,48r-52,0r0,-48xm33,-252r55,0r0,252r-55,0r0,-252",w:120},"\u00cc":{d:"-4,-315r47,-21r41,64r-42,0xm33,-252r55,0r0,252r-55,0r0,-252",w:120},"\u00d3":{d:"174,-336r47,21r-46,43r-41,0xm77,-127v0,48,28,80,76,80v48,0,76,-32,76,-79v0,-47,-29,-79,-76,-79v-48,0,-76,32,-76,78xm287,-127v0,81,-53,131,-134,131v-81,0,-134,-50,-134,-130v0,-80,54,-130,134,-130v81,0,134,50,134,129",w:306},"\u00d4":{d:"127,-328r52,0r44,56r-42,0r-28,-24r-29,24r-41,0xm77,-127v0,48,28,80,76,80v48,0,76,-32,76,-79v0,-47,-29,-79,-76,-79v-48,0,-76,32,-76,78xm287,-127v0,81,-53,131,-134,131v-81,0,-134,-50,-134,-130v0,-80,54,-130,134,-130v81,0,134,50,134,129",w:306},"\u00d2":{d:"85,-315r47,-21r40,64r-41,0xm77,-127v0,48,28,80,76,80v48,0,76,-32,76,-79v0,-47,-29,-79,-76,-79v-48,0,-76,32,-76,78xm287,-127v0,81,-53,131,-134,131v-81,0,-134,-50,-134,-130v0,-80,54,-130,134,-130v81,0,134,50,134,129",w:306},"\u00da":{d:"152,-334r47,21r-46,43r-42,0xm246,-110v-1,74,-38,113,-111,114v-70,0,-110,-40,-109,-112r0,-144r56,0v8,78,-29,205,54,205v85,1,46,-128,54,-205r56,0r0,142",w:272},"\u00db":{d:"110,-328r52,0r44,56r-42,0r-28,-24r-29,24r-41,0xm246,-110v-1,74,-38,113,-111,114v-70,0,-110,-40,-109,-112r0,-144r56,0v8,78,-29,205,54,205v85,1,46,-128,54,-205r56,0r0,142",w:272},"\u00d9":{d:"73,-313r47,-21r41,64r-42,0xm246,-110v-1,74,-38,113,-111,114v-70,0,-110,-40,-109,-112r0,-144r56,0v8,78,-29,205,54,205v85,1,46,-128,54,-205r56,0r0,142",w:272},"\u00af":{d:"25,-254r130,0r0,38r-130,0r0,-38",w:180},"\u02c9":{d:"25,-254r130,0r0,38r-130,0r0,-38",w:180},"\u00b8":{d:"42,43r33,-47r40,0r-27,66",w:180},"\u00dd":{d:"148,-334r47,21r-46,43r-41,0xm101,-99r-97,-153r65,0r60,101r61,-101r63,0r-96,152r0,100r-56,0r0,-99",w:257},"\u00fd":{d:"123,-278r47,21r-46,43r-42,0xm40,6v12,7,38,13,43,-5r-76,-194r58,0r44,131r42,-131r57,0r-74,198v-9,47,-67,70,-112,40",w:216},"\u00de":{d:"174,-126v0,-42,-45,-40,-88,-39r0,77v43,2,88,2,88,-38xm230,-128v0,76,-62,94,-144,89r0,39r-56,0r0,-252r56,0r0,37v82,-6,144,12,144,87",w:242},"\u00fe":{d:"78,-97v0,32,17,54,47,54v29,0,47,-21,47,-54v0,-32,-18,-53,-47,-53v-30,0,-47,22,-47,53xm139,4v-30,2,-46,-14,-60,-29r0,83r-55,0r0,-321r55,0r0,98v14,-17,30,-34,60,-32v56,3,88,40,88,101v0,60,-32,97,-88,100",w:243},"\u00f0":{d:"68,-90v1,29,18,48,49,48v31,0,47,-18,47,-48v0,-29,-19,-44,-48,-46v-28,-1,-49,20,-48,46xm186,-183v58,68,31,192,-71,187v-60,-3,-97,-36,-100,-95v-4,-68,69,-103,127,-72r-31,-42r-42,17r-20,-27r42,-17r-23,-31r61,0r9,12r36,-15r19,27r-36,15",w:233},"\u00d0":{d:"215,-125v1,-65,-49,-83,-119,-77r0,51r54,0r0,49r-54,0r0,52v69,6,119,-12,119,-75xm273,-127v0,117,-105,136,-232,127r0,-102r-27,0r0,-49r27,0r0,-101r98,0v80,4,134,45,134,125",w:292}}});Cufon.registerFont({w:230,face:{"font-family":"Gotham","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 3 0 0 2 0 4",ascent:"288",descent:"-72","x-height":"4",bbox:"-6 -323 379 58.9631","underline-thickness":"7.2","underline-position":"-40.68","unicode-range":"U+0020-U+2122"},glyphs:{" ":{w:108},"!":{d:"33,-31r24,0r0,31r-24,0r0,-31xm40,-66r-5,-186r21,0r-6,186r-10,0",w:90},'"':{d:"37,-252v7,1,20,-3,23,2r-25,89r-11,0xm102,-252v7,1,20,-3,23,2r-25,89r-11,0",w:147},"#":{d:"156,-84r15,-85r-75,0r-15,85r75,0xm61,-67r-43,0r0,-17r46,0r15,-85r-47,0r0,-17r50,0r11,-66r17,0r-11,66r75,0r11,-66r17,0r-11,66r43,0r0,17r-46,0r-15,85r47,0r0,17r-50,0r-11,67r-18,0r12,-67r-75,0r-11,67r-17,0",w:252},"$":{d:"123,-16v57,8,83,-71,30,-91v-8,-3,-18,-6,-30,-9r0,100xm108,-236v-54,-7,-82,70,-29,89v7,3,17,6,29,9r0,-98xm201,-67v0,45,-34,63,-77,67r0,35r-17,0r0,-35v-37,-4,-61,-18,-85,-39r11,-14v21,19,41,33,75,36r0,-102v-45,-12,-77,-21,-77,-68v0,-42,33,-62,76,-65r0,-21r17,0r0,22v31,3,49,13,70,29r-12,14v-17,-15,-33,-24,-59,-27r0,101v45,11,78,22,78,67",w:227},"%":{d:"221,-111v-48,1,-48,98,1,98v50,-1,46,-97,-1,-98xm75,-239v-51,1,-46,99,1,98v48,-2,48,-97,-1,-98xm277,-62v0,37,-20,65,-56,65v-36,0,-55,-29,-55,-65v0,-36,20,-64,56,-64v36,0,55,28,55,64xm231,-252r20,0r-185,252r-20,0xm131,-191v0,37,-20,65,-56,65v-36,0,-55,-28,-55,-64v0,-37,21,-65,56,-65v35,0,55,28,55,64",w:296},"&":{d:"36,-68v-2,49,57,68,99,45v12,-7,22,-17,33,-29r-74,-77v-32,11,-56,28,-58,61xm117,-240v-43,0,-56,51,-28,77v5,4,8,10,14,16v36,-12,54,-29,54,-54v0,-22,-17,-39,-40,-39xm230,-122v-12,25,-23,47,-38,67r47,48r-15,12r-44,-45v-21,23,-46,44,-85,44v-45,0,-77,-25,-77,-71v0,-41,30,-60,65,-74v-15,-19,-28,-30,-28,-58v0,-37,26,-57,63,-57v35,0,58,22,58,55v0,38,-30,53,-62,65r66,68v13,-19,23,-38,33,-61",w:250},"'":{d:"37,-252v7,1,20,-3,23,2r-25,89r-11,0",w:82},"(":{d:"44,-103v0,70,39,111,89,142r-8,12v-81,-35,-131,-151,-74,-243v17,-26,42,-47,74,-65r8,11v-50,31,-89,72,-89,143",w:154},")":{d:"30,-257v81,35,132,152,73,242v-17,26,-41,48,-73,66r-8,-12v50,-31,89,-72,89,-142v0,-71,-39,-112,-89,-143",w:154},"*":{d:"73,-192r-38,26r-8,-13r42,-20r-42,-21r8,-13r38,26r-3,-46r15,0r-3,46r38,-26r8,13r-43,21r43,20r-8,13r-38,-26r3,46r-15,0",w:154},"+":{d:"106,-118r-78,0r0,-17r78,0r0,-78r18,0r0,78r78,0r0,17r-78,0r0,77r-18,0r0,-77"},",":{d:"19,30v13,-8,20,-12,20,-30r-9,0r0,-31r23,0v2,36,-1,62,-30,70",w:82},"-":{d:"25,-117r97,0r0,20r-97,0r0,-20",w:146},"\u00ad":{d:"25,-117r97,0r0,20r-97,0r0,-20",w:146},".":{d:"30,-31r23,0r0,31r-23,0r0,-31",w:82},"/":{d:"163,-287r18,0r-170,333r-17,0",w:180},"0":{d:"43,-127v0,61,26,114,85,114v59,0,85,-52,85,-113v0,-61,-26,-113,-86,-113v-59,0,-84,52,-84,112xm232,-127v0,73,-33,131,-105,131v-72,0,-104,-59,-104,-130v0,-71,34,-130,105,-130v71,0,104,58,104,129",w:255},"1":{d:"64,-234r-48,16r-5,-15v24,-7,41,-21,72,-21r0,254r-19,0r0,-234",w:120},"2":{d:"112,-256v62,-1,96,68,60,117v-33,46,-84,81,-125,121r142,0r0,18r-172,0r0,-14r120,-111v16,-17,30,-31,30,-60v0,-33,-23,-54,-57,-54v-39,0,-54,22,-74,47r-14,-10v20,-28,42,-53,90,-54",w:212},"3":{d:"194,-70v2,67,-80,90,-136,62v-15,-8,-29,-20,-39,-33r15,-12v18,23,40,40,78,40v36,0,63,-20,63,-56v0,-46,-44,-56,-93,-55r-4,-10r87,-100r-133,0r0,-18r158,0r0,13r-85,98v48,5,87,21,89,71",w:219},"4":{d:"160,-78r0,-149r-120,149r120,0xm160,-62r-136,0r-7,-14r144,-178r17,0r0,176r41,0r0,16r-41,0r0,62r-18,0r0,-62",w:239},"5":{d:"177,-76v4,-64,-84,-72,-126,-45r-14,-9r7,-122r141,0r0,18r-125,0r-6,94v54,-30,143,-8,143,63v0,69,-77,99,-137,69v-15,-8,-28,-17,-39,-28r13,-14v19,19,42,37,75,37v42,0,65,-24,68,-63",w:217},"6":{d:"49,-77v3,40,29,64,72,64v41,0,67,-25,67,-65v0,-40,-28,-61,-68,-61v-41,0,-66,25,-71,62xm207,-79v0,54,-36,83,-88,83v-68,0,-96,-49,-96,-124v0,-87,52,-158,142,-129v12,4,22,13,33,22r-12,14v-28,-36,-103,-33,-123,10v-12,24,-22,56,-21,94v16,-26,38,-47,79,-47v49,0,86,28,86,77",w:231},"7":{d:"171,-234r-147,0r0,-18r168,0r0,14r-115,238r-21,0",w:211},"8":{d:"39,-67v1,72,148,72,149,0v-2,-72,-147,-72,-149,0xm48,-190v0,70,130,70,131,1v0,-66,-130,-66,-131,-1xm207,-68v0,96,-188,95,-187,0v1,-36,28,-52,56,-62v-23,-11,-48,-26,-48,-60v0,-86,170,-87,170,1v0,33,-24,49,-47,59v28,11,56,25,56,62",w:226},"9":{d:"43,-172v0,40,28,61,69,61v42,0,70,-25,70,-64v0,-40,-30,-64,-72,-64v-42,0,-67,27,-67,67xm208,-132v0,88,-57,161,-144,127v-13,-5,-23,-13,-34,-22r11,-14v31,36,104,37,127,-8v12,-24,24,-55,21,-94v-15,27,-37,49,-78,49v-51,0,-87,-27,-87,-78v0,-52,34,-84,88,-84v69,0,96,50,96,124",w:231},":":{d:"31,-31r24,0r0,31r-24,0r0,-31xm31,-184r24,0r0,31r-24,0r0,-31",w:86},";":{d:"21,30v13,-8,20,-12,20,-30r-10,0r0,-31r24,0v2,36,-1,62,-30,70xm31,-184r24,0r0,31r-24,0r0,-31",w:86},"\u037e":{d:"21,30v13,-8,20,-12,20,-30r-10,0r0,-31r24,0v2,36,-1,62,-30,70xm31,-184r24,0r0,31r-24,0r0,-31",w:86},"<":{d:"26,-120r0,-14r167,-87r0,20r-145,74r145,75r0,19"},"=":{d:"33,-95r164,0r0,18r-164,0r0,-18xm33,-176r164,0r0,18r-164,0r0,-18"},">":{d:"37,-52r145,-74r-145,-75r0,-20r167,87r0,14r-167,87r0,-19"},"?":{d:"76,-31r24,0r0,31r-24,0r0,-31xm95,-255v86,-7,104,113,32,137v-9,4,-20,6,-30,7r-3,45r-12,0v0,-19,-7,-44,-2,-60v43,0,74,-19,74,-58v0,-35,-24,-55,-59,-55v-33,0,-53,17,-70,37r-13,-10v20,-24,42,-40,83,-43",w:192},"@":{d:"178,-163v-50,0,-85,65,-52,107v41,33,101,-6,99,-57v-1,-30,-18,-50,-47,-50xm275,31v-27,15,-54,28,-95,27v-97,-4,-161,-61,-161,-157v0,-95,63,-157,158,-157v91,0,157,54,157,142v0,50,-21,85,-66,88v-27,2,-42,-15,-49,-34v-13,18,-31,34,-61,34v-39,0,-61,-25,-64,-64v-6,-76,102,-122,137,-58r6,-27r17,2r-17,102v0,21,13,32,33,32v36,0,54,-33,51,-75v-5,-80,-61,-131,-144,-131v-88,0,-146,58,-146,146v0,90,59,143,149,146v40,1,64,-10,90,-25",w:352},A:{d:"208,-87r-66,-146r-67,146r133,0xm133,-254r18,0r118,254r-21,0r-32,-71r-149,0r-32,71r-19,0",w:284},B:{d:"218,-69v0,-65,-96,-46,-162,-49r0,101v68,-2,162,15,162,-52xm204,-188v0,-61,-86,-46,-148,-47r0,99v65,-2,148,14,148,-52xm237,-69v-2,87,-113,67,-200,69r0,-252v80,2,185,-17,186,63v-1,33,-19,50,-43,59v30,9,57,23,57,61",w:259},C:{d:"252,-40v-25,23,-52,45,-100,44v-78,-2,-122,-53,-126,-130v-7,-118,147,-170,224,-90r-13,14v-21,-20,-44,-38,-85,-37v-67,3,-106,46,-106,113v0,66,39,113,106,113v42,0,63,-16,87,-39",w:265},D:{d:"236,-125v0,-92,-76,-119,-180,-110r0,218v102,7,180,-16,180,-108xm255,-127v0,112,-96,136,-218,127r0,-252v121,-8,218,14,218,125",w:281},E:{d:"37,-252r180,0r0,17r-161,0r0,99r145,0r0,18r-145,0r0,101r163,0r0,17r-182,0r0,-252",w:241},F:{d:"37,-252r178,0r0,17r-159,0r0,104r143,0r0,17r-143,0r0,114r-19,0r0,-252",w:236},G:{d:"252,-33v-23,18,-57,38,-99,37v-80,-2,-122,-51,-127,-130v-7,-114,135,-169,217,-97r-12,14v-20,-17,-43,-32,-81,-30v-65,3,-104,46,-104,113v0,70,39,114,108,114v34,0,60,-13,80,-29r0,-72r-84,0r0,-18r102,0r0,98",w:282},H:{d:"37,-252r19,0r0,117r161,0r0,-117r19,0r0,252r-19,0r0,-118r-161,0r0,118r-19,0r0,-252",w:273},I:{d:"40,-252r19,0r0,252r-19,0r0,-252",w:98},J:{d:"164,-252v-7,102,33,254,-74,256v-40,0,-61,-22,-77,-48r16,-9v13,21,29,40,62,40v37,0,54,-28,54,-68r0,-171r19,0",w:197},K:{d:"37,-252r19,0r0,166r161,-166r25,0r-110,111r115,141r-25,0r-103,-127r-63,63r0,64r-19,0r0,-252",w:257},L:{d:"37,-252r19,0r0,235r148,0r0,17r-167,0r0,-252",w:222},M:{d:"37,-252r18,0r101,149r101,-149r18,0r0,252r-19,0r0,-219r-99,145r-2,0r-100,-145r0,219r-18,0r0,-252",w:312},N:{d:"37,-252r18,0r174,219r0,-219r18,0r0,252r-14,0r-178,-224r0,224r-18,0r0,-252",w:284},O:{d:"46,-127v0,68,40,114,107,114v68,0,107,-46,107,-113v0,-67,-40,-113,-107,-113v-68,0,-107,45,-107,112xm280,-127v0,78,-48,131,-127,131v-79,0,-127,-52,-127,-130v0,-77,48,-130,127,-130v79,0,127,52,127,129",w:306},P:{d:"204,-173v0,-69,-77,-63,-148,-62r0,124v71,2,148,5,148,-62xm222,-175v0,82,-82,84,-166,81r0,94r-19,0r0,-252v88,-1,185,-11,185,77",w:240},Q:{d:"46,-127v-6,94,102,145,174,91r-49,-42r14,-15r48,44v16,-19,28,-44,27,-77v-2,-67,-40,-113,-107,-113v-68,0,-103,46,-107,112xm153,-256v116,-6,162,143,94,219r36,30r-14,15r-35,-32v-20,16,-46,28,-81,28v-79,-3,-127,-52,-127,-130v0,-77,48,-126,127,-130",w:306},R:{d:"215,-179v2,-69,-90,-55,-159,-56r0,114v72,0,157,11,159,-58xm233,-180v0,47,-32,66,-74,72r84,108r-24,0r-81,-104r-82,0r0,104r-19,0r0,-252v88,1,196,-15,196,72",w:260},S:{d:"206,-66v0,67,-81,83,-138,60v-16,-7,-32,-18,-47,-31r12,-14v30,41,155,63,155,-13v0,-83,-159,-30,-157,-125v2,-80,124,-81,168,-36r-12,15v-32,-36,-137,-46,-137,20v0,82,156,33,156,124"},T:{d:"107,-235r-88,0r0,-17r195,0r0,17r-88,0r0,235r-19,0r0,-235",w:233},U:{d:"240,-107v0,70,-35,111,-103,111v-68,0,-104,-41,-104,-109r0,-147r19,0r0,145v0,58,30,94,86,94v110,0,79,-136,83,-239r19,0r0,145",w:273},V:{d:"16,-252r21,0r98,232r99,-232r20,0r-111,254r-16,0",w:270},W:{d:"18,-252r21,0r79,224r74,-225r14,0r74,225r79,-224r20,0r-92,254r-15,0r-74,-219r-73,219r-16,0",w:396},X:{d:"119,-129r-97,-123r22,0r86,111r86,-111r22,0r-97,123r101,129r-23,0r-89,-116r-90,116r-22,0",w:259},Y:{d:"120,-100r-108,-152r23,0r94,135r95,-135r22,0r-108,152r0,100r-18,0r0,-100",w:257},Z:{d:"24,-10r173,-225r-166,0r0,-17r193,0r0,10r-173,225r173,0r0,17r-200,0r0,-10",w:247},"[":{d:"35,-252r99,0r0,14r-82,0r0,271r82,0r0,14r-99,0r0,-299",w:154},"\\":{d:"-1,-287r18,0r169,333r-17,0",w:180},"]":{d:"21,33r82,0r0,-271r-82,0r0,-14r99,0r0,299r-99,0r0,-14",w:154},"^":{d:"82,-253r16,0r57,76r-19,0r-46,-61r-46,61r-19,0",w:180},_:{d:"-1,42r218,0r0,16r-218,0r0,-16",w:216},"`":{d:"57,-251r21,-11r32,48r-15,0",w:180},a:{d:"37,-55v1,30,24,43,53,43v46,0,75,-26,70,-78v-43,-11,-123,-17,-123,35xm159,-106v11,-71,-76,-75,-118,-49r-6,-16v52,-29,142,-18,142,57r0,114r-18,0r0,-31v-24,48,-141,49,-141,-23v0,-64,87,-68,141,-52",w:206},b:{d:"50,-92v0,48,28,79,75,79v47,0,72,-32,72,-79v0,-47,-27,-79,-72,-79v-45,0,-75,32,-75,79xm216,-93v0,57,-33,97,-89,97v-39,0,-60,-20,-76,-44r0,40r-18,0r0,-263r18,0r0,120v16,-24,38,-45,76,-45v54,0,89,38,89,95",w:237},c:{d:"189,-32v-17,20,-39,37,-75,36v-57,-2,-90,-39,-93,-96v-6,-89,115,-126,167,-62r-13,13v-15,-15,-32,-31,-61,-30v-46,2,-71,33,-74,79v-5,77,99,104,137,49",w:205},d:{d:"41,-93v0,48,26,80,72,80v47,0,75,-33,75,-79v0,-46,-29,-79,-75,-79v-47,0,-72,31,-72,78xm186,-41v-16,23,-35,47,-75,45v-55,-2,-89,-38,-89,-96v0,-58,35,-96,89,-96v38,0,60,20,75,44r0,-119r18,0r0,263r-18,0r0,-41",w:237},e:{d:"173,-100v6,-76,-103,-96,-127,-29v-4,9,-5,19,-6,29r133,0xm40,-85v-3,75,98,92,135,44r12,11v-18,19,-39,35,-76,34v-56,-2,-90,-38,-90,-96v0,-55,32,-96,87,-96v58,0,84,43,84,103r-152,0",w:210},f:{d:"126,-243v-39,-16,-73,6,-64,59r64,0r0,17r-64,0r0,167r-18,0r0,-167r-26,0r0,-17r26,0v-7,-58,27,-92,82,-76r0,17",w:130},g:{d:"41,-102v0,45,29,71,71,71v44,0,76,-26,76,-70v0,-44,-32,-70,-76,-70v-43,0,-71,25,-71,69xm204,-28v5,93,-115,107,-174,58r10,-14v48,42,151,35,146,-46r0,-26v-16,23,-37,43,-76,42v-52,-2,-88,-33,-88,-87v0,-54,36,-87,88,-87v37,0,60,19,76,41r0,-37r18,0r0,156",w:237},h:{d:"115,-172v-39,2,-64,26,-64,66r0,106r-18,0r0,-263r18,0r0,114v12,-22,32,-39,66,-39v47,2,73,28,74,76r0,112r-18,0v-3,-73,20,-175,-58,-172",w:220},i:{d:"36,-184r18,0r0,184r-18,0r0,-184xm34,-256r22,0r0,25r-22,0r0,-25",w:89},j:{d:"54,16v1,32,-23,49,-54,41r0,-15v21,4,36,-2,36,-25r0,-201r18,0r0,200xm34,-256r22,0r0,25r-22,0r0,-25",w:89},k:{d:"33,-263r18,0r0,197r114,-118r23,0r-80,82r83,102r-23,0r-72,-90r-45,45r0,45r-18,0r0,-263",w:201},l:{d:"36,-263r18,0r0,263r-18,0r0,-263",w:89},m:{d:"110,-172v-75,1,-58,97,-59,172r-18,0r0,-184r18,0r0,33v12,-20,29,-37,61,-37v33,0,51,18,62,40v14,-21,31,-40,66,-40v88,0,70,103,71,188r-18,0v-4,-71,20,-173,-54,-172v-75,1,-56,98,-58,172r-18,0v-4,-71,20,-173,-53,-172",w:342},n:{d:"115,-172v-39,2,-64,26,-64,66r0,106r-18,0r0,-184r18,0r0,35v12,-22,32,-39,66,-39v47,2,73,28,74,76r0,112r-18,0v-3,-73,20,-175,-58,-172",w:220},o:{d:"40,-93v0,48,28,81,76,81v46,0,74,-31,74,-80v0,-48,-28,-79,-75,-79v-47,0,-75,32,-75,78xm210,-93v0,57,-36,97,-95,97v-59,0,-94,-39,-94,-96v0,-58,38,-96,95,-96v57,0,94,40,94,95"},p:{d:"50,-92v0,48,28,79,75,79v47,0,72,-32,72,-79v0,-47,-27,-79,-72,-79v-45,0,-75,32,-75,79xm127,4v-39,0,-60,-20,-76,-44r0,98r-18,0r0,-242r18,0r0,41v16,-24,38,-45,76,-45v54,0,89,38,89,96v0,57,-33,96,-89,96",w:237},q:{d:"41,-93v0,48,26,80,72,80v47,0,75,-33,75,-79v0,-46,-29,-79,-75,-79v-47,0,-72,31,-72,78xm111,-188v38,0,60,20,75,44r0,-40r18,0r0,242r-18,0r0,-99v-16,23,-35,47,-75,45v-55,-2,-89,-38,-89,-96v0,-58,35,-96,89,-96",w:237},r:{d:"132,-167v-81,0,-85,81,-81,167r-18,0r0,-184r18,0r0,53v15,-30,37,-56,81,-55r0,19",w:144},s:{d:"156,-51v0,70,-102,63,-138,28r10,-14v25,26,107,41,110,-12v-11,-54,-110,-23,-111,-87v-1,-61,89,-60,125,-31r-9,15v-23,-22,-96,-32,-98,14v12,53,110,23,111,87",w:178},t:{d:"125,-3v-36,15,-82,1,-82,-44r0,-120r-26,0r0,-17r26,0r0,-58r18,0r0,58r64,0r0,17r-64,0r0,118v-4,37,38,42,64,29r0,17",w:144},u:{d:"170,-34v-13,21,-33,37,-67,38v-91,3,-72,-103,-73,-188r18,0v3,73,-20,175,58,172v39,-1,64,-25,64,-65r0,-107r17,0r0,184r-17,0r0,-34",w:220},v:{d:"15,-184r20,0r70,164r70,-164r20,0r-83,185r-15,0",w:209},w:{d:"18,-184r19,0r56,162r55,-162r14,0r56,162r55,-162r19,0r-67,185r-15,0r-55,-157r-55,157r-15,0",w:309},x:{d:"91,-94r-72,-90r22,0r62,78r62,-78r21,0r-72,90r75,94r-22,0r-65,-82r-65,82r-21,0",w:205},y:{d:"26,35v22,12,60,8,66,-16v3,-6,7,-12,10,-20r-88,-183r21,0r76,165r66,-165r20,0r-80,190v-13,43,-51,66,-98,45",w:211},z:{d:"21,-10r132,-158r-127,0r0,-16r154,0r0,10r-133,158r133,0r0,16r-159,0r0,-10",w:199},"{":{d:"91,-51v-5,59,14,82,61,90r-2,12v-55,-9,-82,-33,-76,-102v3,-34,-17,-48,-53,-45r0,-14v89,16,18,-111,90,-136v10,-4,23,-8,39,-11r2,11v-47,8,-66,31,-61,91v3,31,-15,44,-37,52v23,7,40,20,37,52",w:172},"|":{d:"44,-287r15,0r0,333r-15,0r0,-333",w:102},"}":{d:"152,-96v-90,-17,-18,110,-90,135v-10,4,-23,9,-39,12r-2,-12v36,-11,64,-16,60,-63v-3,-42,4,-73,38,-79v-32,-7,-41,-37,-38,-79v4,-47,-24,-53,-60,-64r2,-11v55,7,81,33,76,101v-3,34,17,49,53,46r0,14",w:172},"~":{d:"106,-90v-22,-4,-55,-31,-64,3r-12,-3v3,-40,40,-38,65,-21v16,6,24,-2,29,-16r12,3v-5,21,-10,33,-30,34",w:165},"\u00c4":{d:"100,-304r25,0r0,29r-25,0r0,-29xm159,-304r25,0r0,29r-25,0r0,-29xm208,-87r-66,-146r-67,146r133,0xm133,-254r18,0r118,254r-21,0r-32,-71r-149,0r-32,71r-19,0",w:284},"\u00c5":{d:"208,-87r-66,-146r-67,146r133,0xm120,-275v0,12,10,22,22,22v13,0,23,-10,23,-22v0,-12,-10,-22,-23,-22v-12,0,-23,9,-22,22xm142,-309v39,-3,46,55,14,65r113,244r-21,0r-32,-71r-149,0r-32,71r-19,0r113,-244v-11,-4,-22,-16,-22,-31v2,-20,15,-32,35,-34",w:284},"\u00c7":{d:"252,-40v-24,23,-50,44,-96,44r-24,49r-20,-9r28,-40v-70,-8,-110,-56,-114,-130v-7,-118,147,-170,224,-90r-13,14v-21,-20,-44,-38,-85,-37v-67,3,-106,46,-106,113v0,66,39,113,106,113v42,0,63,-16,87,-39",w:265},"\u00c9":{d:"143,-323r22,11r-39,37r-15,0xm37,-252r180,0r0,17r-161,0r0,99r145,0r0,18r-145,0r0,101r163,0r0,17r-182,0r0,-252",w:241},"\u00d1":{d:"165,-275v-22,-4,-55,-31,-64,3r-12,-3v5,-21,10,-34,30,-34v24,0,55,33,64,-3r12,3v-5,21,-10,33,-30,34xm37,-252r18,0r174,219r0,-219r18,0r0,252r-14,0r-178,-224r0,224r-18,0r0,-252",w:284},"\u00d6":{d:"111,-304r25,0r0,29r-25,0r0,-29xm170,-304r25,0r0,29r-25,0r0,-29xm46,-127v0,68,40,114,107,114v68,0,107,-46,107,-113v0,-67,-40,-113,-107,-113v-68,0,-107,45,-107,112xm280,-127v0,78,-48,131,-127,131v-79,0,-127,-52,-127,-130v0,-77,48,-130,127,-130v79,0,127,52,127,129",w:306},"\u00dc":{d:"95,-302r25,0r0,28r-25,0r0,-28xm154,-302r25,0r0,28r-25,0r0,-28xm240,-107v0,70,-35,111,-103,111v-68,0,-104,-41,-104,-109r0,-147r19,0r0,145v0,58,30,94,86,94v110,0,79,-136,83,-239r19,0r0,145",w:273},"\u00e1":{d:"124,-262r22,11r-39,37r-15,0xm37,-55v1,30,24,43,53,43v46,0,75,-26,70,-78v-43,-11,-123,-17,-123,35xm159,-106v11,-71,-76,-75,-118,-49r-6,-16v52,-29,142,-18,142,57r0,114r-18,0r0,-31v-24,48,-141,49,-141,-23v0,-64,87,-68,141,-52",w:206},"\u00e0":{d:"57,-251r21,-11r32,48r-15,0xm37,-55v1,30,24,43,53,43v46,0,75,-26,70,-78v-43,-11,-123,-17,-123,35xm159,-106v11,-71,-76,-75,-118,-49r-6,-16v52,-29,142,-18,142,57r0,114r-18,0r0,-31v-24,48,-141,49,-141,-23v0,-64,87,-68,141,-52",w:206},"\u00e2":{d:"97,-258r15,0r36,44v-26,3,-30,-16,-44,-25v-14,9,-17,28,-43,25xm37,-55v1,30,24,43,53,43v46,0,75,-26,70,-78v-43,-11,-123,-17,-123,35xm159,-106v11,-71,-76,-75,-118,-49r-6,-16v52,-29,142,-18,142,57r0,114r-18,0r0,-31v-24,48,-141,49,-141,-23v0,-64,87,-68,141,-52",w:206},"\u00e4":{d:"63,-243r24,0r0,29r-24,0r0,-29xm121,-243r25,0r0,29r-25,0r0,-29xm37,-55v1,30,24,43,53,43v46,0,75,-26,70,-78v-43,-11,-123,-17,-123,35xm159,-106v11,-71,-76,-75,-118,-49r-6,-16v52,-29,142,-18,142,57r0,114r-18,0r0,-31v-24,48,-141,49,-141,-23v0,-64,87,-68,141,-52",w:206},"\u00e3":{d:"127,-214v-22,-4,-55,-31,-64,3r-12,-3v5,-21,10,-33,30,-34v22,3,56,32,64,-3r13,3v-6,20,-11,33,-31,34xm37,-55v1,30,24,43,53,43v46,0,75,-26,70,-78v-43,-11,-123,-17,-123,35xm159,-106v11,-71,-76,-75,-118,-49r-6,-16v52,-29,142,-18,142,57r0,114r-18,0r0,-31v-24,48,-141,49,-141,-23v0,-64,87,-68,141,-52",w:206},"\u00e5":{d:"82,-248v0,13,9,23,22,23v13,0,23,-10,23,-23v0,-27,-45,-28,-45,0xm140,-248v0,22,-15,35,-36,35v-21,0,-35,-14,-35,-35v0,-44,71,-41,71,0xm37,-55v1,30,24,43,53,43v46,0,75,-26,70,-78v-43,-11,-123,-17,-123,35xm159,-106v11,-71,-76,-75,-118,-49r-6,-16v52,-29,142,-18,142,57r0,114r-18,0r0,-31v-24,48,-141,49,-141,-23v0,-64,87,-68,141,-52",w:206},"\u00e7":{d:"40,-93v-6,78,99,106,137,50r12,11v-18,18,-36,35,-70,36r-24,49r-20,-9r27,-40v-48,-9,-78,-42,-81,-96v-5,-89,115,-126,167,-62r-13,13v-15,-15,-32,-31,-61,-30v-46,2,-71,33,-74,78",w:205},"\u00e9":{d:"124,-262r22,11r-38,37r-15,0xm173,-100v6,-76,-103,-96,-127,-29v-4,9,-5,19,-6,29r133,0xm40,-85v-3,75,98,92,135,44r12,11v-18,19,-39,35,-76,34v-56,-2,-90,-38,-90,-96v0,-55,32,-96,87,-96v58,0,84,43,84,103r-152,0",w:210},"\u00e8":{d:"64,-251r22,-11r32,48r-15,0xm173,-100v6,-76,-103,-96,-127,-29v-4,9,-5,19,-6,29r133,0xm40,-85v-3,75,98,92,135,44r12,11v-18,19,-39,35,-76,34v-56,-2,-90,-38,-90,-96v0,-55,32,-96,87,-96v58,0,84,43,84,103r-152,0",w:210},"\u00ea":{d:"100,-258r14,0r36,44v-26,3,-30,-16,-43,-25v-14,9,-17,28,-43,25xm173,-100v6,-76,-103,-96,-127,-29v-4,9,-5,19,-6,29r133,0xm40,-85v-3,75,98,92,135,44r12,11v-18,19,-39,35,-76,34v-56,-2,-90,-38,-90,-96v0,-55,32,-96,87,-96v58,0,84,43,84,103r-152,0",w:210},"\u00eb":{d:"65,-243r25,0r0,29r-25,0r0,-29xm124,-243r25,0r0,29r-25,0r0,-29xm173,-100v6,-76,-103,-96,-127,-29v-4,9,-5,19,-6,29r133,0xm40,-85v-3,75,98,92,135,44r12,11v-18,19,-39,35,-76,34v-56,-2,-90,-38,-90,-96v0,-55,32,-96,87,-96v58,0,84,43,84,103r-152,0",w:210},"\u00ed":{d:"69,-262r22,11r-38,37r-15,0xm36,-184r18,0r0,184r-18,0r0,-184",w:89},"\u00ec":{d:"-2,-251r22,-11r32,48r-15,0xm36,-184r18,0r0,184r-18,0r0,-184",w:89},"\u00ee":{d:"37,-258r15,0r36,44v-26,3,-30,-16,-44,-25v-13,9,-17,28,-43,25xm36,-184r18,0r0,184r-18,0r0,-184",w:89},"\u00ef":{d:"3,-243r25,0r0,29r-25,0r0,-29xm62,-243r24,0r0,29r-24,0r0,-29xm36,-184r18,0r0,184r-18,0r0,-184",w:89},"\u00f1":{d:"135,-214v-22,-4,-55,-31,-64,3r-12,-3v5,-21,10,-33,30,-34v22,4,55,31,64,-3r12,3v-5,21,-10,33,-30,34xm115,-172v-39,2,-64,26,-64,66r0,106r-18,0r0,-184r18,0r0,35v12,-22,32,-39,66,-39v47,2,73,28,74,76r0,112r-18,0v-3,-73,20,-175,-58,-172",w:220},"\u00f3":{d:"140,-262r22,11r-39,37r-15,0xm40,-93v0,48,28,81,76,81v46,0,74,-31,74,-80v0,-48,-28,-79,-75,-79v-47,0,-75,32,-75,78xm210,-93v0,57,-36,97,-95,97v-59,0,-94,-39,-94,-96v0,-58,38,-96,95,-96v57,0,94,40,94,95"},"\u00f2":{d:"69,-251r22,-11r31,48r-15,0xm40,-93v0,48,28,81,76,81v46,0,74,-31,74,-80v0,-48,-28,-79,-75,-79v-47,0,-75,32,-75,78xm210,-93v0,57,-36,97,-95,97v-59,0,-94,-39,-94,-96v0,-58,38,-96,95,-96v57,0,94,40,94,95"},"\u00f4":{d:"108,-258r14,0r36,44v-26,3,-30,-16,-43,-25v-14,9,-17,28,-43,25xm40,-93v0,48,28,81,76,81v46,0,74,-31,74,-80v0,-48,-28,-79,-75,-79v-47,0,-75,32,-75,78xm210,-93v0,57,-36,97,-95,97v-59,0,-94,-39,-94,-96v0,-58,38,-96,95,-96v57,0,94,40,94,95"},"\u00f6":{d:"73,-243r25,0r0,29r-25,0r0,-29xm132,-243r25,0r0,29r-25,0r0,-29xm40,-93v0,48,28,81,76,81v46,0,74,-31,74,-80v0,-48,-28,-79,-75,-79v-47,0,-75,32,-75,78xm210,-93v0,57,-36,97,-95,97v-59,0,-94,-39,-94,-96v0,-58,38,-96,95,-96v57,0,94,40,94,95"},"\u00f5":{d:"138,-214v-22,-4,-55,-31,-64,3r-12,-3v5,-21,10,-33,30,-34v22,4,55,31,64,-3r12,3v-5,21,-10,33,-30,34xm40,-93v0,48,28,81,76,81v46,0,74,-31,74,-80v0,-48,-28,-79,-75,-79v-47,0,-75,32,-75,78xm210,-93v0,57,-36,97,-95,97v-59,0,-94,-39,-94,-96v0,-58,38,-96,95,-96v57,0,94,40,94,95"},"\u00fa":{d:"131,-260r22,11r-38,37r-15,0xm170,-34v-13,21,-33,37,-67,38v-91,3,-72,-103,-73,-188r18,0v3,73,-20,175,58,172v39,-1,64,-25,64,-65r0,-107r17,0r0,184r-17,0r0,-34",w:220},"\u00f9":{d:"66,-249r21,-11r32,48r-15,0xm170,-34v-13,21,-33,37,-67,38v-91,3,-72,-103,-73,-188r18,0v3,73,-20,175,58,172v39,-1,64,-25,64,-65r0,-107r17,0r0,184r-17,0r0,-34",w:220},"\u00fb":{d:"104,-258r14,0r36,44v-26,3,-30,-16,-43,-25v-14,9,-17,28,-43,25xm170,-34v-13,21,-33,37,-67,38v-91,3,-72,-103,-73,-188r18,0v3,73,-20,175,58,172v39,-1,64,-25,64,-65r0,-107r17,0r0,184r-17,0r0,-34",w:220},"\u00fc":{d:"69,-243r25,0r0,29r-25,0r0,-29xm128,-243r25,0r0,29r-25,0r0,-29xm170,-34v-13,21,-33,37,-67,38v-91,3,-72,-103,-73,-188r18,0v3,73,-20,175,58,172v39,-1,64,-25,64,-65r0,-107r17,0r0,184r-17,0r0,-34",w:220},"\u00b0":{d:"45,-202v0,24,14,38,36,38v22,0,36,-14,36,-38v-1,-22,-14,-36,-36,-36v-22,0,-35,14,-36,36xm135,-202v0,33,-23,51,-54,54v-31,-3,-54,-21,-54,-54v0,-31,23,-52,54,-52v31,0,54,21,54,52",w:162},"\u00a2":{d:"119,-207v-88,-7,-102,128,-30,153xm191,-68v-19,22,-47,41,-89,35r-7,35r-18,0r8,-39v-36,-14,-63,-44,-63,-91v0,-57,38,-95,99,-96r6,-30r18,0r-6,33v22,5,36,18,50,31r-12,13v-12,-12,-24,-24,-43,-28r-30,156v35,6,59,-12,75,-30",w:209},"\u00a3":{d:"133,-239v-54,0,-62,52,-58,112r107,0r0,17r-107,0r0,93r134,0r0,17r-184,0r0,-9r31,-7r0,-94r-31,0r0,-17r31,0v-27,-113,90,-171,153,-90r-14,11v-14,-18,-31,-33,-62,-33",w:231},"\u00a7":{d:"42,-133v9,34,57,42,97,42v24,0,44,-8,46,-29v-9,-34,-57,-41,-96,-41v-24,0,-44,8,-47,28xm182,-42v0,68,-120,50,-145,11r13,-13v15,15,40,30,70,30v36,0,57,-31,27,-49v-38,-23,-124,-14,-124,-68v0,-26,28,-37,54,-41v-15,-8,-33,-18,-31,-39v5,-67,119,-48,145,-10r-14,13v-15,-15,-40,-30,-70,-30v-23,0,-40,8,-41,28v16,57,138,23,138,89v0,26,-27,37,-53,41v15,7,31,19,31,38",w:227},"\u00b6":{d:"19,-176v0,-62,52,-79,120,-76r0,252r-19,0v-2,-32,4,-72,-2,-100v-55,-2,-99,-22,-99,-76",w:172},"\u00df":{d:"128,-133v61,-1,100,77,47,116v-17,12,-42,17,-71,18r0,-16v42,0,77,-14,77,-53v-1,-39,-37,-50,-77,-55r0,-15v31,-11,61,-24,61,-64v0,-30,-23,-47,-53,-47v-41,0,-61,28,-61,69r0,180r-18,0v7,-107,-35,-265,80,-265v42,0,71,22,71,63v0,39,-27,58,-56,69",w:223},"\u00ae":{d:"191,-156v0,-31,-44,-24,-76,-25r0,50v32,-1,76,6,76,-25xm207,-158v1,24,-16,35,-36,39r44,55r-20,0r-43,-53r-37,0r0,53r-16,0r0,-131v47,1,107,-10,108,37xm30,-126v0,73,46,120,119,120v74,0,120,-47,120,-121v0,-72,-47,-119,-119,-119v-73,0,-120,47,-120,120xm280,-127v0,79,-52,131,-131,131v-78,0,-130,-52,-130,-130v0,-78,52,-130,131,-130v78,0,130,51,130,129",w:298},"\u00a9":{d:"203,-83v-34,43,-118,20,-118,-45v0,-63,79,-89,117,-46r-11,11v-27,-34,-90,-17,-90,35v0,51,64,71,92,35xm30,-126v0,73,46,120,119,120v74,0,120,-47,120,-121v0,-72,-47,-119,-119,-119v-73,0,-120,47,-120,120xm280,-127v0,79,-52,131,-131,131v-78,0,-130,-52,-130,-130v0,-78,52,-130,131,-130v78,0,130,51,130,129",w:298},"\u2122":{d:"46,-240r-37,0r0,-12r86,0r0,12r-37,0r0,99r-12,0r0,-99xm120,-252r13,0r43,66r44,-66r13,0r0,111r-13,0r0,-89v-16,20,-27,46,-45,64r-43,-64r0,89r-12,0r0,-111",w:248},"\u00b4":{d:"102,-262r21,11r-38,37r-15,0",w:180},"\u00a8":{d:"48,-243r25,0r0,29r-25,0r0,-29xm107,-243r25,0r0,29r-25,0r0,-29",w:180},"\u00c6":{d:"178,-87r0,-148r-10,0r-88,148r98,0xm160,-252r192,0r0,17r-155,0r0,99r139,0r0,18r-139,0r0,101r157,0r0,17r-176,0r0,-71r-108,0r-43,71r-20,0",w:376},"\u00d8":{d:"83,-40v16,15,40,27,70,27v98,0,135,-119,81,-189xm153,-239v-98,0,-135,119,-81,189r151,-162v-16,-15,-40,-27,-70,-27xm280,-127v0,78,-48,131,-127,131v-35,0,-62,-12,-82,-29r-26,27r-22,0r36,-38v-19,-22,-33,-52,-33,-90v0,-77,48,-130,127,-130v36,0,62,12,82,30r26,-28r22,0r-36,38v19,22,33,51,33,89",w:306},"\u00b1":{d:"193,-67v1,67,-83,87,-138,58v-16,-9,-29,-20,-39,-33r15,-11v24,47,143,62,143,-14v0,-45,-48,-55,-100,-52r0,-16v51,2,93,-7,93,-54v0,-33,-25,-50,-60,-50v-36,-1,-54,17,-71,38r-14,-9v18,-25,43,-47,85,-46v45,2,78,21,79,67v0,35,-22,50,-47,60v29,9,53,25,54,62",w:216},"\u00a5":{d:"114,-45r-76,0r0,-16r76,0r0,-35r-76,0r0,-17r70,0r-96,-139r22,0r90,134r90,-134r21,0r-96,139r70,0r0,17r-77,0r0,35r77,0r0,16r-77,0r0,45r-18,0r0,-45",w:246},"\u00b5":{d:"46,-127v0,68,40,114,107,114v68,0,107,-46,107,-113v0,-67,-40,-113,-107,-113v-68,0,-107,45,-107,112xm280,-127v2,46,-22,83,-49,105r61,58r-27,0r-51,-47v-17,9,-36,15,-61,15v-79,-3,-127,-52,-127,-130v0,-77,48,-130,127,-130v79,0,124,52,127,129",w:306},"\u03bc":{d:"46,-127v0,68,40,114,107,114v68,0,107,-46,107,-113v0,-67,-40,-113,-107,-113v-68,0,-107,45,-107,112xm280,-127v2,46,-22,83,-49,105r61,58r-27,0r-51,-47v-17,9,-36,15,-61,15v-79,-3,-127,-52,-127,-130v0,-77,48,-130,127,-130v79,0,124,52,127,129",w:306},"\u00aa":{d:"38,-182v0,14,11,21,25,21v23,-1,37,-11,35,-37v-19,-6,-60,-9,-60,16xm22,-120r91,0r0,15r-91,0r0,-15xm98,-165v-14,26,-75,22,-75,-16v0,-36,46,-35,75,-31v2,-33,-43,-33,-62,-19r-4,-13v28,-17,79,-12,79,31r0,63r-13,0r0,-15",w:140},"\u00ba":{d:"34,-202v1,24,13,40,37,40v21,0,37,-17,36,-39v-2,-22,-14,-38,-37,-39v-21,-1,-37,17,-36,38xm18,-120r104,0r0,15r-104,0r0,-15xm122,-202v0,32,-20,54,-52,54v-32,0,-52,-21,-52,-53v0,-32,22,-53,53,-53v31,0,51,21,51,52",w:140},"\u00e6":{d:"37,-55v0,45,61,52,93,32v12,-7,23,-17,32,-28v-5,-11,-8,-23,-8,-39v-41,-12,-117,-17,-117,35xm306,-100v6,-76,-103,-97,-126,-29v-4,9,-6,19,-7,29r133,0xm320,-30v-28,44,-127,45,-150,-6v-19,20,-45,40,-83,40v-39,-1,-68,-18,-69,-58v-1,-63,83,-68,136,-52v11,-70,-73,-75,-113,-49r-6,-16v42,-24,125,-22,132,31v12,-25,38,-49,74,-48v58,2,85,41,84,103r-152,0v-3,74,98,93,135,44",w:343},"\u00f8":{d:"66,-31v53,47,150,-5,120,-88v-3,-9,-7,-17,-12,-24xm164,-152v-53,-48,-149,6,-120,88v3,9,7,16,13,23xm186,-156v49,55,14,160,-71,160v-26,0,-45,-8,-60,-21v-10,10,-16,23,-40,19r29,-30v-13,-15,-23,-37,-23,-64v0,-82,98,-123,155,-74r18,-20r21,0"},"\u00bf":{d:"180,-40v-18,24,-42,39,-83,43v-85,7,-104,-113,-32,-137v9,-4,19,-6,30,-7r3,-45r12,0v0,20,5,42,3,60v-43,0,-75,19,-75,58v0,35,25,55,60,55v33,0,52,-17,69,-37xm92,-252r24,0r0,31r-24,0r0,-31",w:192},"\u00a1":{d:"35,0r5,-186r10,0r6,186r-21,0xm33,-252r24,0r0,31r-24,0r0,-31",w:90},"\u00ab":{d:"76,-15v-18,-27,-42,-48,-58,-78r58,-75r13,8r-49,68r49,68xm149,-15v-18,-27,-41,-49,-57,-78r57,-75r14,8r-50,68r50,68",w:185},"\u00bb":{d:"23,-24r49,-67r-49,-69r13,-8v18,27,42,48,58,78r-58,75xm96,-24r49,-67r-49,-69r13,-8v18,27,42,48,58,78r-58,75",w:185},"\u2026":{d:"30,-30r23,0r0,30r-23,0r0,-30xm111,-30r23,0r0,30r-23,0r0,-30xm192,-30r23,0r0,30r-23,0r0,-30",w:244},"\u00a0":{w:108},"\u00c0":{d:"95,-312r22,-11r31,48r-15,0xm208,-87r-66,-146r-67,146r133,0xm133,-254r18,0r118,254r-21,0r-32,-71r-149,0r-32,71r-19,0",w:284},"\u00c3":{d:"165,-275v-22,-4,-55,-31,-64,3r-12,-3v5,-21,10,-34,30,-34v24,0,55,33,64,-3r12,3v-5,21,-10,33,-30,34xm208,-87r-66,-146r-67,146r133,0xm133,-254r18,0r118,254r-21,0r-32,-71r-149,0r-32,71r-19,0",w:284},"\u00d5":{d:"176,-275v-22,-4,-55,-31,-64,3r-12,-3v5,-21,10,-34,30,-34v24,0,54,32,64,-3r12,3v-5,21,-10,33,-30,34xm46,-127v0,68,40,114,107,114v68,0,107,-46,107,-113v0,-67,-40,-113,-107,-113v-68,0,-107,45,-107,112xm280,-127v0,78,-48,131,-127,131v-79,0,-127,-52,-127,-130v0,-77,48,-130,127,-130v79,0,127,52,127,129",w:306},"\u2013":{d:"25,-116r140,0r0,18r-140,0r0,-18",w:190},"\u2014":{d:"25,-116r273,0r0,18r-273,0r0,-18",w:323},"\u201c":{d:"28,-185v-2,-36,1,-61,30,-69r4,9v-13,8,-20,12,-20,30r9,0r0,30r-23,0xm93,-185v-1,-35,-1,-61,29,-69r5,9v-13,8,-20,12,-20,30r9,0r0,30r-23,0",w:147},"\u201d":{d:"21,-192v14,-7,20,-11,20,-29r-10,0r0,-31r24,0v2,36,-1,61,-30,69xm86,-192v14,-7,20,-11,20,-29r-10,0r0,-31r24,0v2,36,-1,61,-30,69",w:147},"\u2018":{d:"28,-185v-2,-36,1,-61,30,-69r4,9v-13,8,-20,12,-20,30r9,0r0,30r-23,0",w:82},"\u2019":{d:"21,-192v14,-7,20,-11,20,-29r-10,0r0,-31r24,0v2,36,-1,61,-30,69",w:82},"\u00ff":{d:"64,-243r25,0r0,29r-25,0r0,-29xm123,-243r25,0r0,29r-25,0r0,-29xm26,35v22,12,60,8,66,-16v3,-6,7,-12,10,-20r-88,-183r21,0r76,165r66,-165r20,0r-80,190v-13,43,-51,66,-98,45",w:211},"\u00a4":{d:"239,-49v-19,27,-40,53,-85,53v-60,0,-87,-42,-100,-92r-33,0r0,-17r30,0v-1,-15,-1,-31,1,-45r-31,0r0,-17r34,0v7,-74,111,-122,167,-59v6,6,11,13,16,20r-14,10v-17,-39,-84,-60,-121,-23v-13,13,-24,31,-30,52r103,0r0,17r-106,0v-1,15,-3,30,-1,45r107,0r0,17r-103,0v11,41,34,76,82,76v36,0,53,-23,70,-46",w:259},"\u00b7":{d:"30,-122r23,0r0,30r-23,0r0,-30",w:82},"\u2219":{d:"30,-122r23,0r0,30r-23,0r0,-30",w:82},"\u00c2":{d:"135,-318r14,0r36,44v-26,3,-30,-15,-43,-24v-14,9,-18,27,-43,24xm208,-87r-66,-146r-67,146r133,0xm133,-254r18,0r118,254r-21,0r-32,-71r-149,0r-32,71r-19,0",w:284},"\u00ca":{d:"118,-319r15,0r36,44v-26,3,-30,-16,-44,-25v-13,9,-17,28,-43,25xm37,-252r180,0r0,17r-161,0r0,99r145,0r0,18r-145,0r0,101r163,0r0,17r-182,0r0,-252",w:241},"\u00c1":{d:"168,-323r22,11r-39,37r-15,0xm208,-87r-66,-146r-67,146r133,0xm133,-254r18,0r118,254r-21,0r-32,-71r-149,0r-32,71r-19,0",w:284},"\u00cb":{d:"84,-304r25,0r0,29r-25,0r0,-29xm143,-304r24,0r0,29r-24,0r0,-29xm37,-252r180,0r0,17r-161,0r0,99r145,0r0,18r-145,0r0,101r163,0r0,17r-182,0r0,-252",w:241},"\u00c8":{d:"87,-312r22,-11r32,48r-15,0xm37,-252r180,0r0,17r-161,0r0,99r145,0r0,18r-145,0r0,101r163,0r0,17r-182,0r0,-252",w:241},"\u00cd":{d:"74,-323r22,11r-38,37r-16,0xm40,-252r19,0r0,252r-19,0r0,-252",w:98},"\u00ce":{d:"42,-319r15,0r36,44v-26,3,-30,-16,-44,-25v-13,9,-17,28,-43,25xm40,-252r19,0r0,252r-19,0r0,-252",w:98},"\u00cf":{d:"8,-304r25,0r0,29r-25,0r0,-29xm67,-304r24,0r0,29r-24,0r0,-29xm40,-252r19,0r0,252r-19,0r0,-252",w:98},"\u00cc":{d:"3,-312r21,-11r32,48r-15,0xm40,-252r19,0r0,252r-19,0r0,-252",w:98},"\u00d3":{d:"179,-323r22,11r-39,37r-15,0xm46,-127v0,68,40,114,107,114v68,0,107,-46,107,-113v0,-67,-40,-113,-107,-113v-68,0,-107,45,-107,112xm280,-127v0,78,-48,131,-127,131v-79,0,-127,-52,-127,-130v0,-77,48,-130,127,-130v79,0,127,52,127,129",w:306},"\u00d4":{d:"146,-319r14,0r36,44v-26,3,-30,-16,-43,-25v-14,9,-17,28,-43,25xm46,-127v0,68,40,114,107,114v68,0,107,-46,107,-113v0,-67,-40,-113,-107,-113v-68,0,-107,45,-107,112xm280,-127v0,78,-48,131,-127,131v-79,0,-127,-52,-127,-130v0,-77,48,-130,127,-130v79,0,127,52,127,129",w:306},"\u00d2":{d:"105,-312r22,-11r32,48r-15,0xm46,-127v0,68,40,114,107,114v68,0,107,-46,107,-113v0,-67,-40,-113,-107,-113v-68,0,-107,45,-107,112xm280,-127v0,78,-48,131,-127,131v-79,0,-127,-52,-127,-130v0,-77,48,-130,127,-130v79,0,127,52,127,129",w:306},"\u00da":{d:"159,-321r22,10r-38,37r-15,0xm240,-107v0,70,-35,111,-103,111v-68,0,-104,-41,-104,-109r0,-147r19,0r0,145v0,58,30,94,86,94v110,0,79,-136,83,-239r19,0r0,145",w:273},"\u00db":{d:"130,-318r14,0r36,44v-26,3,-30,-15,-44,-24v-13,9,-17,27,-42,24xm240,-107v0,70,-35,111,-103,111v-68,0,-104,-41,-104,-109r0,-147r19,0r0,145v0,58,30,94,86,94v110,0,79,-136,83,-239r19,0r0,145",w:273},"\u00d9":{d:"92,-311r22,-10r32,47r-15,0xm240,-107v0,70,-35,111,-103,111v-68,0,-104,-41,-104,-109r0,-147r19,0r0,145v0,58,30,94,86,94v110,0,79,-136,83,-239r19,0r0,145",w:273},"\u00af":{d:"36,-235r108,0r0,19r-108,0r0,-19",w:180},"\u02c9":{d:"36,-235r108,0r0,19r-108,0r0,-19",w:180},"\u00b8":{d:"58,44r33,-48r15,0r-28,57",w:180},"\u00dd":{d:"154,-321r22,10r-38,37r-16,0xm120,-100r-108,-152r23,0r94,135r95,-135r22,0r-108,152r0,100r-18,0r0,-100",w:257},"\u00fd":{d:"133,-260r22,11r-39,37r-15,0xm26,35v22,12,60,8,66,-16v3,-6,7,-12,10,-20r-88,-183r21,0r76,165r66,-165r20,0r-80,190v-13,43,-51,66,-98,45",w:211},"\u00de":{d:"204,-127v2,-70,-78,-63,-148,-62r0,124v71,2,147,5,148,-62xm222,-129v0,81,-81,84,-166,81r0,48r-19,0r0,-252r19,0r0,46v83,-2,167,-4,166,77",w:242},"\u00fe":{d:"50,-92v0,48,28,79,75,79v47,0,72,-32,72,-79v0,-47,-27,-79,-72,-79v-45,0,-75,32,-75,79xm127,4v-39,0,-60,-20,-76,-44r0,98r-18,0r0,-321r18,0r0,120v16,-24,38,-45,76,-45v54,0,89,38,89,96v0,57,-33,96,-89,96",w:237},"\u00f0":{d:"40,-87v0,45,30,75,73,75v46,0,72,-31,72,-76v0,-45,-32,-71,-76,-71v-45,0,-69,29,-69,72xm173,-177v53,60,35,187,-62,181v-55,-3,-87,-38,-90,-92v-5,-79,96,-111,150,-64r-53,-75r-48,24r-10,-13r49,-24r-16,-23r23,0r9,15r36,-18r10,13r-37,18",w:226},"\u00d0":{d:"247,-125v0,-91,-75,-120,-180,-110r0,100r83,0r0,17r-83,0r0,101v102,8,180,-17,180,-108xm266,-127v0,111,-95,136,-218,127r0,-118r-27,0r0,-17r27,0r0,-117v121,-8,218,15,218,125",w:292}}});