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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
// ColorBox v1.3.17.2 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+
// Copyright (c) 2011 Jack Moore - jack@colorpowered.com
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
(function(a,b,c){function bc(b){if(!U){P=b,_(),y=a(P),Q=0,K.rel!=="nofollow"&&(y=a("."+g).filter(function(){var b=a.data(this,e).rel||this.rel;return b===K.rel}),Q=y.index(P),Q===-1&&(y=y.add(P),Q=y.length-1));if(!S){S=T=!0,r.show();if(K.returnFocus)try{P.blur(),a(P).one(l,function(){try{this.focus()}catch(a){}})}catch(c){}q.css({opacity:+K.opacity,cursor:K.overlayClose?"pointer":"auto"}).show(),K.w=Z(K.initialWidth,"x"),K.h=Z(K.initialHeight,"y"),X.position(),o&&z.bind("resize."+p+" scroll."+p,function(){q.css({width:z.width(),height:z.height(),top:z.scrollTop(),left:z.scrollLeft()})}).trigger("resize."+p),ba(h,K.onOpen),J.add(D).hide(),I.html(K.close).show()}X.load(!0)}}function bb(){var a,b=f+"Slideshow_",c="click."+f,d,e,g;K.slideshow&&y[1]?(d=function(){F.text(K.slideshowStop).unbind(c).bind(j,function(){if(Q<y.length-1||K.loop)a=setTimeout(X.next,K.slideshowSpeed)}).bind(i,function(){clearTimeout(a)}).one(c+" "+k,e),r.removeClass(b+"off").addClass(b+"on"),a=setTimeout(X.next,K.slideshowSpeed)},e=function(){clearTimeout(a),F.text(K.slideshowStart).unbind([j,i,k,c].join(" ")).one(c,d),r.removeClass(b+"on").addClass(b+"off")},K.slideshowAuto?d():e()):r.removeClass(b+"off "+b+"on")}function ba(b,c){c&&c.call(P),a.event.trigger(b)}function _(b){K=a.extend({},a.data(P,e));for(b in K)a.isFunction(K[b])&&b.substring(0,2)!=="on"&&(K[b]=K[b].call(P));K.rel=K.rel||P.rel||"nofollow",K.href=K.href||a(P).attr("href"),K.title=K.title||P.title,typeof K.href=="string"&&(K.href=a.trim(K.href))}function $(a){return K.photo||/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i.test(a)}function Z(a,b){return Math.round((/%/.test(a)?(b==="x"?z.width():z.height())/100:1)*parseInt(a,10))}function Y(c,d,e){e=b.createElement("div"),c&&(e.id=f+c),e.style.cssText=d||"";return a(e)}var d={transition:"elastic",speed:300,width:!1,initialWidth:"600",innerWidth:!1,maxWidth:!1,height:!1,initialHeight:"450",innerHeight:!1,maxHeight:!1,scalePhotos:!0,scrolling:!0,inline:!1,html:!1,iframe:!1,fastIframe:!0,photo:!1,href:!1,title:!1,rel:!1,opacity:.9,preloading:!0,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:!1,returnFocus:!0,loop:!0,slideshow:!1,slideshowAuto:!0,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",onOpen:!1,onLoad:!1,onComplete:!1,onCleanup:!1,onClosed:!1,overlayClose:!0,escKey:!0,arrowKey:!0,top:!1,bottom:!1,left:!1,right:!1,fixed:!1,data:!1},e="colorbox",f="cbox",g=f+"Element",h=f+"_open",i=f+"_load",j=f+"_complete",k=f+"_cleanup",l=f+"_closed",m=f+"_purge",n=a.browser.msie&&!a.support.opacity,o=n&&a.browser.version<7,p=f+"_IE6",q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X;X=a.fn[e]=a[e]=function(b,c){var f=this;b=b||{};if(!f[0]){if(f.selector)return f;f=a("<a/>"),b.open=!0}c&&(b.onComplete=c),f.each(function(){a.data(this,e,a.extend({},a.data(this,e)||d,b)),a(this).addClass(g)}),(a.isFunction(b.open)&&b.open.call(f)||b.open)&&bc(f[0]);return f},X.init=function(){z=a(c),r=Y().attr({id:e,"class":n?f+(o?"IE6":"IE"):""}),q=Y("Overlay",o?"position:absolute":"").hide(),s=Y("Wrapper"),t=Y("Content").append(A=Y("LoadedContent","width:0; height:0; overflow:hidden"),C=Y("LoadingOverlay").add(Y("LoadingGraphic")),D=Y("Title"),E=Y("Current"),G=Y("Next"),H=Y("Previous"),F=Y("Slideshow").bind(h,bb),I=Y("Close")),s.append(Y().append(Y("TopLeft"),u=Y("TopCenter"),Y("TopRight")),Y(!1,"clear:left").append(v=Y("MiddleLeft"),t,w=Y("MiddleRight")),Y(!1,"clear:left").append(Y("BottomLeft"),x=Y("BottomCenter"),Y("BottomRight"))).children().children().css({"float":"left"}),B=Y(!1,"position:absolute; width:9999px; visibility:hidden; display:none"),a("body").prepend(q,r.append(s,B)),t.children().hover(function(){a(this).addClass("hover")},function(){a(this).removeClass("hover")}).addClass("hover"),L=u.height()+x.height()+t.outerHeight(!0)-t.height(),M=v.width()+w.width()+t.outerWidth(!0)-t.width(),N=A.outerHeight(!0),O=A.outerWidth(!0),r.css({"padding-bottom":L,"padding-right":M}).hide(),G.click(function(){X.next()}),H.click(function(){X.prev()}),I.click(function(){X.close()}),J=G.add(H).add(E).add(F),t.children().removeClass("hover"),q.click(function(){K.overlayClose&&X.close()}),a(b).bind("keydown."+f,function(a){var b=a.keyCode;S&&K.escKey&&b===27&&(a.preventDefault(),X.close()),S&&K.arrowKey&&y[1]&&(b===37?(a.preventDefault(),H.click()):b===39&&(a.preventDefault(),G.click()))})},X.remove=function(){r.add(q).remove(),a("."+g).removeData(e).removeClass(g)},X.position=function(a,c){function g(a){u[0].style.width=x[0].style.width=t[0].style.width=a.style.width,C[0].style.height=C[1].style.height=t[0].style.height=v[0].style.height=w[0].style.height=a.style.height}var d=0,e=0;z.unbind("resize."+f),r.hide(),K.fixed&&!o?r.css({position:"fixed"}):(d=z.scrollTop(),e=z.scrollLeft(),r.css({position:"absolute"})),K.right!==!1?e+=Math.max(z.width()-K.w-O-M-Z(K.right,"x"),0):K.left!==!1?e+=Z(K.left,"x"):e+=Math.round(Math.max(z.width()-K.w-O-M,0)/2),K.bottom!==!1?d+=Math.max(b.documentElement.clientHeight-K.h-N-L-Z(K.bottom,"y"),0):K.top!==!1?d+=Z(K.top,"y"):d+=Math.round(Math.max(b.documentElement.clientHeight-K.h-N-L,0)/2),r.show(),a=r.width()===K.w+O&&r.height()===K.h+N?0:a||0,s[0].style.width=s[0].style.height="9999px",r.dequeue().animate({width:K.w+O,height:K.h+N,top:d,left:e},{duration:a,complete:function(){g(this),T=!1,s[0].style.width=K.w+O+M+"px",s[0].style.height=K.h+N+L+"px",c&&c(),setTimeout(function(){z.bind("resize."+f,X.position)},1)},step:function(){g(this)}})},X.resize=function(a){if(S){a=a||{},a.width&&(K.w=Z(a.width,"x")-O-M),a.innerWidth&&(K.w=Z(a.innerWidth,"x")),A.css({width:K.w}),a.height&&(K.h=Z(a.height,"y")-N-L),a.innerHeight&&(K.h=Z(a.innerHeight,"y"));if(!a.innerHeight&&!a.height){var b=A.wrapInner("<div style='overflow:auto'></div>").children();K.h=b.height(),b.replaceWith(b.children())}A.css({height:K.h}),X.position(K.transition==="none"?0:K.speed)}},X.prep=function(b){function h(){K.h=K.h||A.height(),K.h=K.mh&&K.mh<K.h?K.mh:K.h;return K.h}function g(){K.w=K.w||A.width(),K.w=K.mw&&K.mw<K.w?K.mw:K.w;return K.w}if(!!S){var c,d=K.transition==="none"?0:K.speed;A.remove(),A=Y("LoadedContent").append(b),A.hide().appendTo(B.show()).css({width:g(),overflow:K.scrolling?"auto":"hidden"}).css({height:h()}).prependTo(t),B.hide(),a(R).css({"float":"none"}),o&&a("select").not(r.find("select")).filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one(k,function(){this.style.visibility="inherit"}),c=function(){function o(){n&&r[0].style.removeAttribute("filter")}var b,c,g,h,i=y.length,k,l;!S||(l=function(){clearTimeout(W),C.hide(),ba(j,K.onComplete)},n&&R&&A.fadeIn(100),D.html(K.title).add(A).show(),i>1?(typeof K.current=="string"&&E.html(K.current.replace("{current}",Q+1).replace("{total}",i)).show(),G[K.loop||Q<i-1?"show":"hide"]().html(K.next),H[K.loop||Q?"show":"hide"]().html(K.previous),b=Q?y[Q-1]:y[i-1],g=Q<i-1?y[Q+1]:y[0],K.slideshow&&F.show(),K.preloading&&(h=a.data(g,e).href||g.href,c=a.data(b,e).href||b.href,h=a.isFunction(h)?h.call(g):h,c=a.isFunction(c)?c.call(b):c,$(h)&&(a("<img/>")[0].src=h),$(c)&&(a("<img/>")[0].src=c))):J.hide(),K.iframe?(k=a("<iframe/>").addClass(f+"Iframe")[0],K.fastIframe?l():a(k).one("load",l),k.name=f+ +(new Date),k.src=K.href,K.scrolling||(k.scrolling="no"),n&&(k.frameBorder=0,k.allowTransparency="true"),a(k).appendTo(A).one(m,function(){k.src="//about:blank"})):l(),K.transition==="fade"?r.fadeTo(d,1,o):o())},K.transition==="fade"?r.fadeTo(d,0,function(){X.position(0,c)}):X.position(d,c)}},X.load=function(b){var c,d,e=X.prep;T=!0,R=!1,P=y[Q],b||_(),ba(m),ba(i,K.onLoad),K.h=K.height?Z(K.height,"y")-N-L:K.innerHeight&&Z(K.innerHeight,"y"),K.w=K.width?Z(K.width,"x")-O-M:K.innerWidth&&Z(K.innerWidth,"x"),K.mw=K.w,K.mh=K.h,K.maxWidth&&(K.mw=Z(K.maxWidth,"x")-O-M,K.mw=K.w&&K.w<K.mw?K.w:K.mw),K.maxHeight&&(K.mh=Z(K.maxHeight,"y")-N-L,K.mh=K.h&&K.h<K.mh?K.h:K.mh),c=K.href,W=setTimeout(function(){C.show()},100),K.inline?(Y().hide().insertBefore(a(c)[0]).one(m,function(){a(this).replaceWith(A.children())}),e(a(c))):K.iframe?e(" "):K.html?e(K.html):$(c)?(a(R=new Image).addClass(f+"Photo").error(function(){K.title=!1,e(Y("Error").text("This image could not be loaded"))}).load(function(){var a;R.onload=null,K.scalePhotos&&(d=function(){R.height-=R.height*a,R.width-=R.width*a},K.mw&&R.width>K.mw&&(a=(R.width-K.mw)/R.width,d()),K.mh&&R.height>K.mh&&(a=(R.height-K.mh)/R.height,d())),K.h&&(R.style.marginTop=Math.max(K.h-R.height,0)/2+"px"),y[1]&&(Q<y.length-1||K.loop)&&(R.style.cursor="pointer",R.onclick=function(){X.next()}),n&&(R.style.msInterpolationMode="bicubic"),setTimeout(function(){e(R)},1)}),setTimeout(function(){R.src=c},1)):c&&B.load(c,K.data,function(b,c,d){e(c==="error"?Y("Error").text("Request unsuccessful: "+d.statusText):a(this).contents())})},X.next=function(){!T&&y[1]&&(Q<y.length-1||K.loop)&&(Q=Q<y.length-1?Q+1:0,X.load())},X.prev=function(){!T&&y[1]&&(Q||K.loop)&&(Q=Q?Q-1:y.length-1,X.load())},X.close=function(){S&&!U&&(U=!0,S=!1,ba(k,K.onCleanup),z.unbind("."+f+" ."+p),q.fadeTo(200,0),r.stop().fadeTo(300,0,function(){r.add(q).css({opacity:1,cursor:"auto"}).hide(),ba(m),A.remove(),setTimeout(function(){U=!1,ba(l,K.onClosed)},1)}))},X.element=function(){return a(P)},X.settings=d,V=function(a){a.button!==0&&typeof a.button!="undefined"||a.ctrlKey||a.shiftKey||a.altKey||(a.preventDefault(),bc(this))},a.fn.delegate?a(b).delegate("."+g,"click",V):a("."+g).live("click",V),a(X.init)})(jQuery,document,this);;
(function ($) {

Drupal.behaviors.initColorbox = function (context) {
  if (!$.isFunction($.colorbox)) {
    return;
  }
  $('a, area, input', context)
    .filter('.colorbox:not(.initColorbox-processed)')
    .addClass('initColorbox-processed')
    .colorbox(Drupal.settings.colorbox);
};

{
  $(document).bind('cbox_complete', function () {
    Drupal.attachBehaviors('#cboxLoadedContent');
  });
}

})(jQuery);
;

$(document).ready(function() {

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

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

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

/**
 * The Drupal behavior to add the $.hint() behavior to elements.
 */
Drupal.behaviors.hint = function(content) {
  // Even though it's unlikely that another class name would be used, we ensure
  // that the behavior uses the default class names used in the module.
  jQuery('input.hint-enabled:not(input.hint)', content).hint({
    hintClass: 'hint',
    triggerClass: 'hint-enabled'
  });
}

/**
 * The jQuery method $.hint().
 *
 * This method can be used on any text field or password element and is not
 * Drupal-specific. Any elements using hint must have a "title" attribute,
 * which will be used as the hint.
 */
jQuery.fn.hint = function(options) {
  var opts = jQuery.extend(false, jQuery.fn.hint.defaults, options);

  $(this).find('input').andSelf().filter('[type=text], [type=password]').each(function() {
    if (this.title) {
      var attributes = opts.keepAttributes;
      var $element = $(this);
      var $placeholder = $('<input type="textfield" value="" />');

      // Set the attributes on our placeholder.
      for (var key in attributes) {
        var attribute = attributes[key];
        $placeholder.attr(attribute, $element.get(0)[attribute]);
      }
      $placeholder.val($element.get(0).title);
      $placeholder.get(0).autocomplete = false;
      $placeholder.removeClass(opts.triggerClass).addClass(opts.hintClass);
      $element.after($placeholder);
      if ($element.val() == '') {
        $element.hide();
      }
      else {
        $placeholder.hide();
      }

      $placeholder.focus(function() {
        $placeholder.hide();
        $element.show().get(0).focus();
      });
      $element.blur(function() {
        if (this.value == '') {
          $element.hide();
          $placeholder.show();
        }
      });
    }
  });
};

jQuery.fn.hint.defaults = {
  // The class given the textfield containing the hint.
  hintClass: 'hint',

  // A class that will trigger the hint if $.hint() is used on multiple
  // elements or the entire page.
  triggerClass: 'hint-enabled',

  // A list of attributes that will be copied to the placeholder element.
  // Usually this list will be sufficient, but a special list may be specified
  // if needing to keep custom or obscure attributes.
  keepAttributes: ['style', 'className', 'title', 'size']
};

})(jQuery);
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1987, 1991, 1993, 1994, 1998 Adobe Systems Incorporated.  All
 * Rights Reserved.Univers is a trademark of Linotype-Hell AG and/or its
 * subsidiaries.
 * 
 * Description:
 *  The digitally encoded machine readable software for producing the  Typefaces
 * licensed to you is copyrighted (c) 1987, 1991, 1993, 1994, 1998  Adobe Systems.
 * All Rights Reserved. This software is the property of  Adobe Systems
 * Incorporated and its licensors, and may not be reproduced,  used, displayed,
 * modified, disclosed or transferred without the express   written approval of
 * Adobe.    The digitally encoded machine readable outline data for producing  the
 * Typefaces licensed to you is copyrighted (c) 1981, 1998 Linotype-Hell AG  and/or
 * its subsidiaries. All Rights Reserved.  This data is the property of
 * Linotype-Hell AG and/or its subsidiaries  and may not be reproduced, used,
 * displayed, modified, disclosed or   transferred without the express written
 * approval of Linotype-Hell AG   and/or its subsidiaries.
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Univers LT 55","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 4 0 0 2 0 3","ascent":"288","descent":"-72","x-height":"6","bbox":"-5 -341 357 90","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100,"k":{"Y":65,"W":36,"V":36,"T":65,"A":18}},"\u00a0":{"w":100},"\"":{"d":"117,-249r-6,88r-19,0r-5,-88r30,0xm57,-249r-5,88r-19,0r-6,-88r30,0","w":144},"#":{"d":"115,-96r10,-53r-44,0r-9,53r43,0xm2,-96r40,0r11,-53r-36,0r0,-25r40,0r14,-75r29,0r-14,75r44,0r14,-75r29,0r-14,75r36,0r0,25r-41,0r-10,53r36,0r0,25r-40,0r-14,71r-28,0r13,-71r-44,0r-13,71r-29,0r13,-71r-36,0r0,-25"},"$":{"d":"109,-29v49,7,59,-64,15,-74v-5,-2,-10,-4,-15,-5r0,79xm91,-221v-45,-3,-54,56,-14,66v5,2,10,3,14,4r0,-70xm15,-184v1,-44,30,-65,76,-65r0,-30r18,0r0,29v42,2,77,15,78,59r-38,0v0,-23,-19,-28,-40,-30r0,76v40,10,82,24,82,74v0,49,-35,70,-83,73r0,35r-18,0r0,-35v-47,-1,-80,-22,-80,-70r37,0v0,26,16,38,43,39r0,-84v-40,-13,-77,-20,-75,-71"},"%":{"d":"67,14r158,-277r24,0r-159,277r-23,0xm243,-104v-42,0,-44,89,0,87v28,-1,33,-28,30,-55v-2,-17,-10,-32,-30,-32xm184,-60v0,-42,24,-70,68,-64v31,4,49,24,49,62v0,39,-19,66,-58,66v-42,0,-59,-26,-59,-64xm47,-201v-3,27,2,53,30,53v23,-1,31,-19,30,-43v-1,-23,-6,-43,-30,-43v-21,0,-29,15,-30,33xm19,-190v0,-41,21,-65,61,-66v39,-1,56,27,56,64v0,40,-20,65,-59,65v-38,0,-58,-23,-58,-63","w":320},"&":{"d":"55,-70v-3,62,97,52,117,16r-77,-75v-23,18,-39,29,-40,59xm113,-240v-28,-1,-41,28,-24,49v5,7,11,14,19,22v27,-8,57,-68,5,-71xm195,-82v14,-22,20,-49,19,-86r35,0v1,50,-10,81,-32,108r62,60r-50,0r-34,-32v-47,64,-211,44,-173,-64v9,-25,30,-41,50,-56v-15,-13,-30,-31,-30,-59v0,-37,28,-59,70,-58v40,1,70,15,70,52v0,37,-28,57,-51,72","w":280},"'":{"d":"65,-249r-5,88r-20,0r-5,-88r30,0","w":100},"(":{"d":"90,-271v-38,91,-38,226,3,315r-24,0v-28,-67,-61,-158,-28,-244r26,-71r23,0","w":119},")":{"d":"30,44v26,-70,46,-187,11,-268r-14,-47r24,0v16,50,43,96,43,160v0,59,-24,115,-41,155r-23,0","w":119},"*":{"d":"173,-176r-62,-7r37,50r-24,15r-24,-57r-26,56r-24,-13r38,-51r-60,6r0,-27r61,8r-37,-50r24,-13r24,56r25,-57r24,14r-38,50r62,-7r0,27"},"+":{"d":"90,-77r-77,0r0,-27r77,0r0,-77r30,0r0,77r77,0r0,27r-77,0r0,77r-30,0r0,-77","w":210},",":{"d":"82,-43r-40,88r-24,0r23,-88r41,0","w":100},"-":{"d":"15,-108r90,0r0,27r-90,0r0,-27","w":119},"\u00ad":{"d":"15,-108r90,0r0,27r-90,0r0,-27","w":119},".":{"d":"29,-43r40,0r0,43r-40,0r0,-43","w":100},"\/":{"d":"81,-257r23,0r-83,263r-24,0","w":100},"0":{"d":"100,-225v-47,0,-50,55,-50,102v0,46,4,98,49,98v45,0,49,-53,49,-99v0,-49,-2,-101,-48,-101xm109,4v-80,10,-96,-65,-92,-148v4,-58,21,-110,82,-110v68,0,84,59,84,127v0,72,-15,124,-74,131","k":{"1":20,"0":-14}},"1":{"d":"40,-210v20,-11,44,-26,60,-39r32,0r0,249r-34,0r0,-210v-19,12,-37,26,-58,36r0,-36","k":{"9":22,"8":5,"7":5,"6":5,"5":5,"4":13,"3":5,"2":5,"1":49,"0":20,".":36,"-":14}},"2":{"d":"100,-254v77,-6,95,86,49,135r-46,49r-44,42r118,0r0,28r-158,0r0,-33v39,-43,92,-77,118,-131v13,-28,-3,-62,-36,-61v-28,1,-40,18,-41,44r-37,0v-2,-49,33,-70,77,-73"},"3":{"d":"183,-67v5,91,-164,99,-169,12r0,-9r38,0v-1,26,19,42,46,41v31,-1,49,-16,49,-45v0,-37,-31,-50,-70,-45r0,-30v35,3,66,-8,66,-43v0,-28,-18,-39,-44,-39v-26,0,-42,14,-45,39r-36,0v0,-47,36,-68,80,-68v48,0,82,22,82,68v0,32,-20,52,-50,58v34,4,51,26,53,61"},"4":{"d":"123,-83r0,-132r-86,132r86,0xm122,-54r-112,0r0,-43r108,-155r39,0r0,169r36,0r0,29r-36,0r0,54r-35,0r0,-54"},"5":{"d":"183,-80v6,84,-118,116,-156,49v-4,-8,-7,-17,-7,-28r38,0v1,24,18,34,41,35v35,0,46,-24,49,-57v7,-62,-82,-70,-92,-20r-33,0r7,-148r140,0r0,29r-109,0r-5,81v12,-12,27,-24,53,-23v49,1,70,33,74,82"},"6":{"d":"56,-78v0,31,16,56,48,56v32,0,48,-22,48,-56v0,-32,-13,-56,-46,-56v-33,0,-50,23,-50,56xm18,-113v0,-99,73,-185,152,-117v10,9,13,23,14,40r-37,0v2,-44,-62,-48,-78,-14v-8,17,-13,41,-15,74v11,-18,29,-32,58,-32v47,0,75,31,75,80v0,54,-31,87,-84,87v-64,0,-85,-52,-85,-118"},"7":{"d":"13,-249r164,0r0,30r-91,219r-41,0r96,-219r-128,0r0,-30","k":{"6":14,"4":20,".":68,"-":27,",":68}},"8":{"d":"100,-117v-30,0,-50,17,-50,47v0,29,19,46,50,46v31,-1,48,-17,49,-47v1,-29,-22,-46,-49,-46xm99,-147v27,0,49,-15,48,-41v0,-25,-19,-41,-47,-40v-27,1,-47,14,-47,40v0,26,19,40,46,41xm13,-67v0,-36,25,-57,55,-64v-30,-6,-50,-26,-50,-56v0,-43,32,-68,81,-68v48,0,83,21,83,67v0,33,-21,50,-51,56v29,7,55,24,54,63v-1,49,-34,73,-85,73v-49,0,-87,-23,-87,-71"},"9":{"d":"98,-122v29,0,47,-21,46,-51v0,-33,-19,-54,-48,-54v-30,0,-45,23,-45,54v-1,30,18,52,47,51xm183,-126v0,96,-55,161,-141,119v-14,-11,-26,-26,-25,-52r37,0v1,23,14,37,40,36v52,0,55,-50,54,-103v-11,18,-27,31,-56,31v-48,-2,-76,-29,-76,-79v0,-52,31,-80,80,-80v67,0,87,52,87,128"},":":{"d":"30,-42r40,0r0,42r-40,0r0,-42xm30,-183r40,0r0,43r-40,0r0,-43","w":100},";":{"d":"82,-43r-40,88r-24,0r23,-88r41,0xm34,-183r42,0r0,44r-42,0r0,-44","w":100},"\u037e":{"d":"82,-43r-40,88r-24,0r23,-88r41,0xm34,-183r42,0r0,44r-42,0r0,-44","w":100},"<":{"d":"13,-105r184,-72r0,31r-146,56r146,55r0,31r-184,-72r0,-29","w":210},"=":{"d":"13,-68r184,0r0,28r-184,0r0,-28xm13,-141r184,0r0,28r-184,0r0,-28","w":210},">":{"d":"13,-4r0,-31r146,-55r-146,-56r0,-31r184,72r0,29","w":210},"?":{"d":"62,-37r37,0r0,37r-37,0r0,-37xm124,-198v0,-46,-63,-42,-97,-27r0,-32v60,-21,154,-3,132,75v-10,35,-46,51,-64,79r0,44r-31,0r1,-47v11,-38,59,-47,59,-92","w":180},"@":{"d":"171,-81v34,-3,48,-44,48,-76v0,-17,-10,-28,-26,-28v-32,0,-48,35,-48,69v0,19,7,37,26,35xm187,-203v22,-1,37,11,42,28r6,-23r25,0r-28,102v0,10,7,14,16,15v35,-5,50,-40,50,-79v0,-61,-43,-91,-103,-91v-78,0,-128,48,-128,125v0,75,48,114,123,116v43,1,73,-16,99,-34r9,12v-30,22,-59,38,-109,38v-85,-2,-138,-48,-138,-133v0,-89,58,-140,144,-140v70,0,120,37,120,109v0,52,-26,95,-73,95v-18,0,-34,-14,-28,-36v-8,18,-24,35,-50,36v-29,0,-49,-23,-48,-55v3,-46,25,-81,71,-85","w":365},"A":{"d":"80,-97r98,0r-48,-127xm113,-260r38,0r105,260r-39,0r-28,-68r-121,0r-28,68r-37,0","w":259,"k":{"\u00bb":18,"\u00ab":27,"y":7,"w":14,"v":14,"Y":41,"W":14,"V":20,"U":7,"T":27,"S":7,"Q":7,"O":7,"G":7,"C":7}},"B":{"d":"182,-74v0,-51,-60,-47,-113,-45r0,90v52,0,113,8,113,-45xm174,-191v0,-51,-57,-38,-105,-39r0,80v47,-2,105,9,105,-41xm219,-71v-3,50,-35,71,-90,71r-95,0r0,-260v78,3,177,-17,177,66v0,34,-20,50,-44,58v29,8,54,26,52,65","w":240,"k":{"Y":7,"V":7}},"C":{"d":"20,-127v-5,-102,79,-169,172,-122v20,10,32,31,35,59r-39,0v-3,-26,-22,-46,-56,-45v-58,1,-74,52,-74,108v0,56,17,100,74,101v31,1,51,-16,54,-42r40,0v-6,48,-44,71,-97,72v-79,1,-105,-56,-109,-131","w":240},"D":{"d":"204,-111v3,-72,-19,-123,-93,-119r-43,0r0,200v79,7,133,-12,136,-81xm244,-128v0,87,-44,135,-139,128r-73,0r0,-260r102,1v76,1,110,58,110,131","w":259,"k":{"Y":20,"V":7,"J":9,"A":7}},"E":{"d":"27,-260r163,0r0,31r-127,0r0,81r121,0r0,30r-121,0r0,86r130,0r0,32r-166,0r0,-260","w":219,"k":{"Y":14,"G":14}},"F":{"d":"34,-260r155,0r0,31r-118,0r0,81r111,0r0,30r-111,0r0,118r-37,0r0,-260","k":{"\u00fc":7,"\u00f6":7,"\u00e4":7,"u":7,"r":7,"o":7,"e":7,"a":7,"J":54,"A":14,".":76,"-":27,",":76}},"G":{"d":"140,-264v60,-3,102,16,107,69r-39,0v-5,-26,-26,-41,-59,-41v-62,0,-86,45,-86,106v0,64,25,107,93,107v23,0,42,-4,56,-8r0,-77r-59,0r0,-30r95,0r0,128v-24,7,-57,16,-92,16v-89,1,-131,-49,-131,-132v0,-78,38,-134,115,-138","w":280},"H":{"d":"68,-260r0,112r123,0r0,-112r36,0r0,260r-36,0r0,-117r-123,0r0,117r-36,0r0,-260r36,0","w":259},"I":{"d":"32,-260r36,0r0,260r-36,0r0,-260","w":100},"J":{"d":"82,4v-45,0,-76,-25,-74,-75r38,0v-2,29,12,45,39,45v29,0,42,-21,42,-54r0,-180r36,0r0,190v-2,48,-33,74,-81,74","k":{"u":7,"o":7,"e":7,"a":7,"O":7,"A":14,".":9,",":9}},"K":{"d":"33,-260r36,0r0,114r108,-114r50,0r-116,116r128,144r-50,0r-120,-138r0,138r-36,0r0,-260","w":240,"k":{"y":14,"w":14,"u":7,"o":7,"e":7,"a":4,"O":7}},"L":{"d":"33,-260r36,0r0,228r121,0r0,32r-157,0r0,-260","k":{"y":27,"o":4,"e":4,"Y":49,"W":34,"V":43,"T":34,"O":18,"-":63}},"M":{"d":"32,-260r64,0r74,214r75,-214r59,0r0,260r-35,0r0,-234r-85,234r-35,0r-82,-233r0,233r-35,0r0,-260","w":339},"N":{"d":"34,-260r50,0r128,215r0,-215r33,0r0,260r-46,0r-132,-221r0,221r-33,0r0,-260","w":280,"k":{"T":9}},"O":{"d":"142,-237v-62,0,-82,46,-83,107v0,58,22,106,81,106v60,-1,80,-48,81,-109v0,-60,-19,-104,-79,-104xm139,6v-83,0,-117,-53,-118,-134v0,-84,40,-139,120,-139v80,0,119,52,118,135v-1,82,-36,138,-120,138","w":280,"k":{"e":4,"a":7,"Y":20,"X":14,"W":14,"V":14,"T":14,"A":18,".":9,",":9}},"P":{"d":"171,-190v0,-50,-55,-40,-103,-41r0,85v49,0,103,7,103,-44xm209,-189v0,65,-64,79,-141,73r0,116r-36,0r0,-260r109,1v44,1,68,28,68,70","w":219,"k":{"u":7,"r":7,"o":11,"e":11,"a":11,"A":34,".":76,"-":43,",":76}},"Q":{"d":"137,-236v-60,0,-78,50,-78,109v0,56,19,104,77,104v60,0,80,-46,80,-106v1,-61,-24,-107,-79,-107xm206,-23v15,-6,41,-5,65,-5r0,28r-138,5v-77,-3,-112,-53,-112,-133v0,-83,38,-133,119,-138v126,-7,144,182,66,243","w":280,"k":{"U":7}},"R":{"d":"175,-188v0,-52,-59,-41,-109,-42r0,82v48,-1,109,12,109,-40xm212,-195v1,35,-22,56,-49,63v54,9,36,86,56,132r-38,0v-18,-43,7,-125,-69,-117r-45,0r0,117r-36,0r0,-260v80,1,181,-16,181,65","w":240,"k":{"y":7,"u":7,"o":7,"e":7,"a":7,"Y":14,"W":11,"V":11,"T":11}},"S":{"d":"116,6v-57,0,-97,-23,-96,-82r38,0v0,37,23,48,62,52v59,6,85,-67,26,-84v-50,-14,-122,-15,-122,-81v0,-94,178,-104,187,-15v0,3,1,6,1,9r-38,0v-2,-29,-24,-36,-54,-40v-51,-6,-82,57,-32,75v52,19,131,14,131,85v0,56,-43,81,-103,81","w":240,"k":{"y":7,"w":4,"v":7,"o":7,"e":7,"c":7,"a":7,"Y":7,"V":7,"T":7,"A":7}},"T":{"d":"95,0r0,-229r-87,0r0,-31r209,0r0,31r-87,0r0,229r-35,0","w":219,"k":{"\u00fc":34,"\u00f8":41,"\u00f6":41,"\u00e9":41,"\u00e5":41,"\u00e4":41,"\u00bb":63,"\u00ab":63,"y":34,"w":34,"u":34,"r":34,"o":41,"i":-7,"e":41,"a":41,"O":14,"J":45,"A":27,";":49,":":49,".":61,"-":61,",":61}},"U":{"d":"140,5v-69,0,-108,-34,-107,-107r0,-158r36,0v8,93,-34,233,71,233v109,0,61,-140,71,-233r35,0r-1,173v-4,59,-44,92,-105,92","w":280,"k":{".":9,",":9}},"V":{"d":"137,0r-39,0r-93,-260r40,0r74,222r78,-222r36,0","w":240,"k":{"\u00fc":20,"\u00f6":27,"\u00e4":27,"\u00bb":36,"\u00ab":36,"u":20,"o":27,"i":9,"e":27,"a":27,"O":14,"G":14,"C":7,"A":20,";":27,":":27,".":34,"-":34,",":34}},"W":{"d":"41,-260r57,214r61,-214r45,0r59,216r59,-216r35,0r-77,260r-40,0r-60,-222r-64,222r-39,0r-74,-260r38,0","w":360,"k":{"\u00fc":9,"\u00f6":20,"\u00e4":20,"\u00bb":27,"\u00ab":27,"y":9,"u":9,"r":9,"o":20,"e":20,"a":20,"O":14,"A":14,";":14,":":14,".":20,"-":14,",":20}},"X":{"d":"64,-260r70,100r70,-100r44,0r-93,125r97,135r-45,0r-77,-112r-80,112r-43,0r101,-136r-90,-124r46,0","w":259,"k":{"O":7}},"Y":{"d":"104,-102r-101,-158r44,0r77,128r78,-128r40,0r-102,160r0,100r-36,0r0,-102","w":240,"k":{"\u00bb":45,"\u00ab":54,"u":20,"o":34,"i":13,"e":34,"a":34,"O":14,"C":14,"A":41,";":32,":":32,".":58,"-":59,",":58}},"Z":{"d":"13,-36r150,-192r-146,0r0,-32r189,0r0,36r-152,192r154,0r0,32r-195,0r0,-36","w":219},"[":{"d":"37,-270r62,0r0,19r-34,0r0,277r34,0r0,19r-62,0r0,-315","w":119},"\\":{"d":"81,6r-84,-263r24,0r83,263r-23,0","w":100},"]":{"d":"22,26r34,0r0,-277r-34,0r0,-19r62,0r0,315r-62,0r0,-19","w":119},"^":{"d":"91,-249r28,0r62,151r-31,0r-46,-114r-44,114r-30,0","w":210},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"`":{"d":"41,-266r31,51r-23,0r-48,-51r40,0","w":100},"a":{"d":"53,-52v0,48,82,37,83,-7r2,-29v-38,-2,-85,0,-85,36xm101,-186v38,1,70,14,70,54r1,132r-30,0v-3,-9,-3,-16,-3,-27v-18,49,-123,43,-120,-21v3,-57,58,-68,119,-63v2,-32,-7,-52,-38,-52v-23,0,-35,11,-36,31r-34,0v1,-38,31,-55,71,-54"},"b":{"d":"115,-22v38,-1,52,-32,52,-70v0,-37,-11,-70,-50,-70v-44,0,-54,37,-52,81v2,32,15,59,50,59xm122,3v-25,2,-49,-15,-58,-30r0,27r-33,0r1,-260r34,0r0,106v9,-20,29,-32,59,-31v53,1,78,35,78,91v1,62,-27,94,-81,97","w":219},"c":{"d":"16,-88v-6,-82,82,-127,138,-75v12,11,13,24,15,40r-34,0v-3,-20,-12,-38,-36,-38v-38,0,-47,33,-47,68v0,37,8,71,45,72v26,0,37,-16,39,-39r34,0v-3,44,-37,69,-85,64v-47,-5,-65,-39,-69,-92","w":180,"k":{"k":18,"h":18}},"d":{"d":"105,-20v41,0,53,-34,53,-73v0,-42,-15,-69,-53,-69v-38,0,-50,33,-50,73v0,38,11,69,50,69xm101,-187v29,0,46,13,56,31r0,-104r34,0r1,260r-34,0r0,-29v-9,19,-34,33,-61,33v-49,0,-79,-34,-78,-92v1,-59,27,-99,82,-99","w":219},"e":{"d":"148,-108v10,-55,-71,-73,-89,-25v-3,7,-5,15,-5,25r94,0xm94,-185v67,-5,92,34,88,101r-130,0v0,38,14,65,52,65v24,0,41,-14,43,-38r33,0v-3,40,-31,62,-77,62v-58,0,-84,-35,-84,-92v0,-57,23,-94,75,-98"},"f":{"d":"41,-181v-8,-65,21,-93,81,-81r0,27v-25,0,-52,-3,-47,26r0,28r42,0r0,25r-42,0r0,156r-34,0r0,-156r-35,0r0,-25r35,0","w":119,"k":{"t":9,"f":9,".":9,",":9}},"g":{"d":"54,-93v0,36,13,65,49,65v41,0,52,-28,52,-70v0,-40,-17,-61,-53,-61v-37,0,-47,30,-48,66xm104,72v-47,0,-76,-13,-76,-58r36,0v-4,43,73,46,84,12v6,-16,6,-38,6,-60v-10,20,-31,31,-59,31v-53,0,-76,-37,-76,-89v1,-55,26,-90,80,-91v29,-1,46,13,57,27r0,-25r33,0r-1,174v2,56,-29,79,-84,79","w":219,"k":{"a":7}},"h":{"d":"114,-158v-69,-2,-43,94,-48,158r-34,0r0,-260r34,0r0,106v16,-37,99,-41,115,-1v14,38,4,104,7,155r-35,0v-8,-58,24,-156,-39,-158","w":219,"k":{"y":7}},"i":{"d":"32,-181r34,0r0,181r-34,0r0,-181xm28,-259r41,0r0,37r-41,0r0,-37","w":100,"k":{"v":-7}},"j":{"d":"67,17v2,39,-24,62,-67,52r0,-24v26,3,33,-8,33,-32r0,-194r34,0r0,198xm30,-259r41,0r0,37r-41,0r0,-37","w":100},"k":{"d":"29,-262r34,0r0,155r67,-74r45,0r-77,77r81,104r-44,0r-72,-98r0,98r-34,0r0,-262","w":180,"k":{"y":-14,"g":-7,"e":-7,"a":-7}},"l":{"d":"32,-260r34,0r0,260r-34,0r0,-260","w":100},"m":{"d":"113,-159v-69,-1,-42,95,-47,159r-35,0r0,-181r34,0r0,27v15,-42,104,-41,116,2v22,-48,127,-46,127,31r0,121r-34,0v-7,-60,25,-159,-41,-159v-68,0,-41,95,-46,159r-34,0v-7,-60,25,-158,-40,-159","w":339,"k":{"y":7}},"n":{"d":"114,-158v-67,0,-42,95,-47,158r-34,0r-1,-181r34,0r1,29v20,-50,123,-41,123,29r0,123r-34,0v-7,-60,24,-158,-42,-158","w":219,"k":{"y":7,"w":7,"v":7}},"o":{"d":"110,-161v-38,0,-57,28,-56,71v1,39,14,71,54,71v38,0,55,-30,55,-73v1,-40,-18,-69,-53,-69xm107,6v-59,0,-89,-37,-89,-94v0,-58,30,-97,92,-97v60,0,89,38,89,94v0,59,-32,97,-92,97","w":219,"k":{"x":5,"v":5}},"p":{"d":"117,-158v-42,0,-54,34,-54,73v-1,40,16,71,59,66v60,-6,66,-139,-5,-139xm120,7v-26,0,-45,-12,-56,-27r0,89r-33,0r-1,-250r34,0r0,30v12,-20,33,-33,62,-33v52,0,76,38,76,94v0,58,-27,97,-82,97","w":219},"q":{"d":"107,-18v42,0,52,-37,49,-79v-2,-36,-16,-60,-54,-61v-42,0,-52,35,-49,77v2,34,16,63,54,63xm94,-184v30,0,49,15,61,33r1,-30r34,0r0,250r-34,0r0,-89v-11,15,-30,28,-56,27v-55,-2,-82,-38,-82,-98v0,-57,24,-93,76,-93","w":219},"r":{"d":"67,-146v7,-27,33,-39,66,-36r0,33v-41,-9,-65,11,-65,53r0,96r-35,0r-1,-181r34,0","w":140,"k":{"t":9,"s":-7,"r":9,".":20,"-":34,",":20}},"s":{"d":"142,-93v55,51,-6,117,-82,95v-26,-8,-45,-23,-45,-56r36,0v1,22,15,34,40,33v36,8,53,-42,15,-51v-38,-9,-85,-12,-87,-58v-3,-69,130,-74,140,-13r0,12r-34,0v1,-26,-18,-29,-43,-29v-27,0,-41,38,-11,46v25,7,51,11,71,21","w":180},"t":{"d":"110,0v-35,6,-74,6,-74,-36r0,-121r-32,0r0,-24r32,0r0,-38r33,-11r0,49r41,0r0,24r-41,0r1,116v1,17,23,19,40,15r0,26","w":119,"k":{"t":9}},"u":{"d":"151,-31v-19,51,-123,42,-123,-28r0,-122r35,0r0,117v0,25,11,40,38,40v70,0,47,-91,50,-157r35,0r1,181r-35,0","w":219},"v":{"d":"4,-181r38,0r58,144r56,-144r37,0r-79,181r-34,0","k":{"o":5,".":22,"-":9,",":22}},"w":{"d":"41,-181r44,144r46,-144r44,0r41,143r45,-143r35,0r-63,181r-39,0r-43,-149r-47,149r-40,0r-60,-181r37,0","w":299,"k":{"a":7,".":7,"-":9,",":7}},"x":{"d":"191,0r-44,0r-52,-72r-51,72r-40,0r72,-95r-68,-86r45,0r48,68r50,-68r40,0r-70,88","k":{"o":5,"-":18}},"y":{"d":"113,1r-26,67r-35,0r28,-69r-76,-180r38,0r57,143r58,-143r36,0","k":{".":20,"-":9,",":20}},"z":{"d":"11,-35r96,-120r-91,0r0,-26r130,0r0,29r-100,126r100,0r0,26r-135,0r0,-35","w":159,"k":{"o":7,"e":7}},"{":{"d":"47,-37v2,-41,-8,-65,-47,-66r0,-19v76,7,20,-113,78,-138v10,-5,25,-9,43,-10r0,18v-46,1,-45,42,-45,91v0,27,-17,46,-48,48v49,3,49,48,49,100v0,24,18,38,44,40r0,18v-53,-2,-77,-27,-74,-82","w":120},"|":{"d":"62,-270r0,360r-30,0r0,-360r30,0","w":93},"}":{"d":"73,-188v-2,42,9,65,48,66r0,19v-77,-8,-21,113,-79,138v-10,5,-24,9,-42,10r0,-18v46,-1,43,-45,45,-91v1,-28,17,-46,47,-49v-83,4,-12,-139,-92,-139r0,-18v54,1,76,28,73,82","w":120},"~":{"d":"61,-89v-17,-3,-30,9,-31,26r-20,0v4,-32,18,-57,56,-54v37,4,100,53,115,-1r20,0v-4,31,-17,54,-48,54v-35,0,-62,-20,-92,-25","w":210},"\u00a1":{"d":"80,-121r6,200r-40,0r7,-200r27,0xm48,-181r38,0r0,36r-38,0r0,-36","w":140},"\u00a2":{"d":"120,-158v-56,-20,-71,67,-48,117v3,5,7,10,11,13xm26,-88v-1,-62,34,-104,101,-96r12,-43r18,0r-14,49v20,9,35,26,36,55r-34,0v-2,-8,-4,-19,-10,-26r-36,127v27,5,47,-12,47,-38r34,0v-4,45,-37,68,-88,64r-14,49r-18,0r15,-54v-34,-12,-48,-44,-49,-87"},"\u00a3":{"d":"39,-149v-23,-93,78,-141,144,-86v10,9,11,20,11,35r-35,0v0,-20,-17,-35,-39,-35v-44,0,-49,39,-47,86r51,0r0,24r-51,0r0,101r115,0r0,24r-174,0r0,-24r24,0r0,-101r-26,0r0,-24r27,0"},"\u00a4":{"d":"150,-125v0,-30,-21,-50,-50,-50v-30,0,-50,20,-50,50v0,29,18,50,50,50v32,0,50,-20,50,-50xm145,-62v-24,16,-65,21,-89,0r-24,23r-18,-18r24,-23v-18,-22,-21,-65,0,-90r-24,-23r18,-18r23,24v18,-18,72,-18,90,0r23,-23r18,17r-24,24v20,20,18,69,0,89r24,23r-18,18"},"\u00a5":{"d":"16,-81r66,0r0,-20r-66,0r0,-22r55,0r-71,-137r45,0r57,128r57,-128r41,0r-70,137r54,0r0,22r-66,0r0,20r66,0r0,22r-66,0r0,59r-36,0r0,-59r-66,0r0,-22"},"\u00a6":{"d":"62,-63r0,126r-30,0r0,-126r30,0xm62,-243r0,126r-30,0r0,-126r30,0","w":93},"\u00a7":{"d":"69,-118v12,25,57,16,57,-15v0,-39,-62,-30,-60,3v0,5,1,9,3,12xm159,-47v0,55,-72,64,-119,47r0,-31v25,23,112,10,75,-34v-30,-18,-81,-11,-81,-58v0,-27,20,-39,39,-47v-17,-6,-33,-18,-33,-41v0,-50,62,-58,107,-44r0,28v-24,-19,-93,-11,-66,30v27,17,75,12,75,58v0,27,-14,40,-36,46v20,7,39,17,39,46"},"\u00a8":{"d":"67,-259r33,0r0,37r-33,0r0,-37xm-1,-259r33,0r0,37r-33,0r0,-37","w":100},"\u00a9":{"d":"87,-129v-5,-65,64,-112,107,-59v3,6,5,12,6,21r-21,0v-2,-16,-12,-27,-31,-27v-56,1,-55,125,0,126v17,-1,29,-10,30,-26r22,0v-4,27,-22,43,-53,43v-44,0,-56,-35,-60,-78xm149,-251v-72,0,-121,47,-121,121v0,73,50,120,121,120v71,0,120,-47,120,-120v0,-72,-48,-121,-120,-121xm149,6v-121,7,-179,-151,-97,-232v22,-22,55,-41,97,-41v82,0,136,55,136,137v0,82,-55,131,-136,136","w":288},"\u00aa":{"d":"30,-186v0,29,59,20,54,-8v0,-4,1,-8,1,-14v-25,0,-55,-2,-55,22xm15,-235v-2,-40,85,-44,91,-6v3,27,-3,59,2,86v-13,0,-26,4,-22,-16v-12,27,-79,26,-78,-13v1,-36,38,-39,77,-38v11,-34,-41,-42,-47,-17v-2,8,-16,2,-23,4","w":120},"\u00ab":{"d":"140,-19r-40,-71r40,-69r29,0r-35,69r35,71r-29,0xm70,-19r-40,-71r40,-69r28,0r-35,69r36,71r-29,0","k":{"Y":54,"W":27,"V":36,"T":72,"A":18,".":18,",":18}},"\u00ac":{"d":"13,-141r184,0r0,101r-29,0r0,-73r-155,0r0,-28","w":210},"\u00ae":{"d":"268,-131v0,-72,-49,-120,-120,-120v-71,0,-120,49,-120,120v0,72,48,121,120,121v74,0,120,-49,120,-121xm12,-131v0,-81,55,-136,136,-136v82,0,136,54,136,136v0,82,-53,137,-136,137v-82,0,-136,-55,-136,-137xm179,-165v0,-30,-34,-22,-61,-23r0,46v27,-1,61,7,61,-23xm183,-59v-11,-27,1,-71,-39,-66r-26,0r0,66r-20,0r0,-146v46,2,109,-10,101,43v-2,15,-12,26,-27,29v32,5,20,49,31,74r-20,0","w":288},"\u00af":{"d":"0,-250r99,0r0,19r-99,0r0,-19","w":100},"\u02c9":{"d":"0,-250r99,0r0,19r-99,0r0,-19","w":100},"\u00b0":{"d":"103,-198v0,-17,-14,-31,-31,-31v-19,0,-31,12,-31,31v0,17,14,31,31,31v19,0,31,-12,31,-31xm16,-198v0,-34,22,-56,56,-56v34,0,56,22,56,56v0,34,-22,56,-56,56v-34,0,-56,-22,-56,-56","w":144},"\u00b1":{"d":"13,-23r184,0r0,28r-184,0r0,-28xm90,-97r-77,0r0,-28r77,0r0,-60r30,0r0,60r77,0r0,28r-77,0r0,60r-30,0r0,-60","w":210},"\u00b2":{"d":"61,-254v48,-4,64,51,32,80v-19,17,-39,38,-58,55r77,0r0,17r-103,0r0,-20v26,-30,68,-46,79,-91v0,-15,-11,-24,-26,-24v-17,1,-26,10,-27,26r-24,0v1,-30,21,-41,50,-43","w":119},"\u00b3":{"d":"114,-149v9,59,-92,68,-108,21v-1,-5,-2,-9,-2,-12r25,0v-1,17,14,24,30,24v20,0,32,-11,32,-27v0,-24,-21,-28,-46,-27r0,-18v20,3,44,-4,44,-25v0,-17,-12,-24,-29,-24v-16,0,-29,8,-29,24r-24,0v1,-29,24,-38,52,-41v56,-7,72,67,21,75v20,1,32,14,34,30","w":119},"\u00b4":{"d":"96,-266r-44,51r-23,0r29,-51r38,0","w":100},"\u00b5":{"d":"156,-25v-11,32,-81,41,-95,6r0,94r-29,0r0,-256r29,0v7,61,-23,160,44,160v65,0,46,-93,49,-160r29,0r0,181r-27,0r0,-25","w":219},"\u03bc":{"d":"156,-25v-11,32,-81,41,-95,6r0,94r-29,0r0,-256r29,0v7,61,-23,160,44,160v65,0,46,-93,49,-160r29,0r0,181r-27,0r0,-25","w":219},"\u00b6":{"d":"-2,-175v0,-54,34,-85,93,-85r98,0r0,23r-19,0r0,297r-28,0r0,-297r-42,0r0,297r-29,0r0,-155v-48,-3,-73,-33,-73,-80","w":193},"\u00b7":{"d":"29,-127r40,0r0,44r-40,0r0,-44","w":100},"\u2219":{"d":"29,-127r40,0r0,44r-40,0r0,-44","w":100},"\u00b8":{"d":"86,45v1,33,-52,39,-78,25r7,-13v11,6,43,10,43,-10v0,-15,-19,-17,-31,-11r-5,-6r22,-32r15,0r-16,23v22,-6,43,2,43,24","w":100},"\u00b9":{"d":"21,-228v20,-7,28,-27,60,-24r0,150r-22,0r0,-126v-13,10,-26,17,-38,22r0,-22","w":119},"\u00ba":{"d":"39,-210v0,26,10,43,35,43v25,0,36,-17,36,-43v0,-23,-10,-41,-35,-41v-25,0,-35,18,-36,41xm16,-208v0,-37,20,-59,59,-58v38,0,58,21,58,57v0,36,-22,58,-58,58v-38,0,-59,-20,-59,-57","w":132},"\u00bb":{"d":"128,-159r40,70r-40,70r-28,0r35,-70r-35,-70r28,0xm58,-159r40,70r-40,70r-28,0r34,-70r-35,-70r29,0","k":{"Y":63,"W":27,"V":36,"T":72,"A":27,".":27,",":27}},"\u00bc":{"d":"9,-228v20,-7,28,-27,60,-24r0,150r-23,0r0,-126v-12,10,-25,17,-37,22r0,-22xm207,-257r23,0r-154,267r-23,0xm243,-50r0,-79r-56,79r56,0xm243,0r0,-32r-73,0r0,-26r70,-94r25,0r0,102r24,0r0,18r-24,0r0,32r-22,0","w":300},"\u00bd":{"d":"241,-152v56,0,58,57,26,87r-52,48r77,0r0,17r-103,0r0,-20v26,-31,72,-45,79,-91v5,-30,-50,-31,-52,-4r0,6r-25,0v2,-29,21,-43,50,-43xm9,-228v20,-7,28,-27,60,-24r0,150r-23,0r0,-126v-12,10,-25,17,-37,22r0,-22xm207,-257r23,0r-154,267r-23,0","w":300},"\u00be":{"d":"114,-149v9,59,-92,67,-108,21v-1,-5,-2,-9,-2,-12r25,0v-1,17,14,24,30,24v20,0,32,-11,32,-27v0,-24,-21,-29,-46,-27r0,-18v20,3,44,-4,44,-25v0,-17,-12,-24,-29,-24v-16,0,-29,8,-29,24r-24,0v1,-29,24,-38,52,-41v56,-7,72,67,21,75v20,1,32,14,34,30xm218,-257r23,0r-154,267r-24,0xm247,-50r0,-79r-55,79r55,0xm247,0r0,-32r-73,0r0,-26r70,-94r25,0r0,102r24,0r0,18r-24,0r0,32r-22,0","w":300},"\u00bf":{"d":"122,-144r-37,0r0,-37r37,0r0,37xm60,17v0,46,63,42,98,27r0,33v-61,19,-154,2,-132,-76v13,-48,76,-49,64,-123r30,0r-1,47v-12,36,-59,48,-59,92","w":180},"\u00c0":{"d":"121,-335r31,52r-23,0r-48,-52r40,0xm80,-97r98,0r-48,-127xm113,-260r38,0r105,260r-39,0r-28,-68r-121,0r-28,68r-37,0","w":259},"\u00c1":{"d":"176,-335r-44,52r-23,0r29,-52r38,0xm80,-97r98,0r-48,-127xm113,-260r38,0r105,260r-39,0r-28,-68r-121,0r-28,68r-37,0","w":259},"\u00c2":{"d":"75,-283r38,-52r33,0r37,52r-31,0r-23,-35r-26,35r-28,0xm80,-97r98,0r-48,-127xm113,-260r38,0r105,260r-39,0r-28,-68r-121,0r-28,68r-37,0","w":259},"\u00c3":{"d":"149,-292v-21,1,-48,-23,-55,3r-15,0v-1,-40,41,-38,72,-26v8,0,13,-5,13,-14r15,0v0,22,-10,36,-30,37xm80,-97r98,0r-48,-127xm113,-260r38,0r105,260r-39,0r-28,-68r-121,0r-28,68r-37,0","w":259},"\u00c4":{"d":"147,-324r33,0r0,37r-33,0r0,-37xm79,-324r33,0r0,37r-33,0r0,-37xm80,-97r98,0r-48,-127xm113,-260r38,0r105,260r-39,0r-28,-68r-121,0r-28,68r-37,0","w":259},"\u00c5":{"d":"130,-327v-11,0,-21,9,-21,21v0,12,9,21,21,21v12,0,21,-9,21,-21v0,-12,-10,-21,-21,-21xm130,-270v-19,0,-35,-17,-35,-36v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,19,-16,36,-35,36xm80,-97r98,0r-48,-127xm113,-260r38,0r105,260r-39,0r-28,-68r-121,0r-28,68r-37,0","w":259},"\u00c6":{"d":"192,-102r-21,-131r-73,131r94,0xm82,-72r-42,72r-39,0r151,-260r187,0r0,31r-133,0r14,80r114,0r0,31r-109,0r15,87r103,0r0,31r-134,0r-12,-72r-115,0","w":360},"\u00c7":{"d":"132,-26v31,1,51,-16,54,-42r40,0v-5,47,-42,67,-89,72r-12,17v23,-5,45,3,42,30v-4,27,-54,32,-78,19r7,-13v12,6,45,11,44,-10v0,-15,-20,-16,-32,-11v-11,-10,10,-21,14,-32v-72,-5,-99,-57,-102,-131v-5,-102,79,-169,172,-122v20,10,32,31,35,59r-39,0v-3,-26,-22,-46,-56,-45v-58,1,-74,52,-74,108v0,56,17,100,74,101","w":240},"\u00c8":{"d":"102,-335r30,52r-23,0r-48,-52r41,0xm27,-260r163,0r0,31r-127,0r0,81r121,0r0,30r-121,0r0,86r130,0r0,32r-166,0r0,-260","w":219},"\u00c9":{"d":"156,-335r-44,52r-23,0r29,-52r38,0xm27,-260r163,0r0,31r-127,0r0,81r121,0r0,30r-121,0r0,86r130,0r0,32r-166,0r0,-260","w":219},"\u00ca":{"d":"55,-283r39,-52r32,0r37,52r-31,0r-23,-35r-26,35r-28,0xm27,-260r163,0r0,31r-127,0r0,81r121,0r0,30r-121,0r0,86r130,0r0,32r-166,0r0,-260","w":219},"\u00cb":{"d":"127,-324r34,0r0,37r-34,0r0,-37xm59,-324r33,0r0,37r-33,0r0,-37xm27,-260r163,0r0,31r-127,0r0,81r121,0r0,30r-121,0r0,86r130,0r0,32r-166,0r0,-260","w":219},"\u00cc":{"d":"41,-335r31,52r-23,0r-48,-52r40,0xm32,-260r36,0r0,260r-36,0r0,-260","w":100},"\u00cd":{"d":"96,-335r-44,52r-23,0r29,-52r38,0xm32,-260r36,0r0,260r-36,0r0,-260","w":100},"\u00ce":{"d":"-5,-283r38,-52r33,0r37,52r-31,0r-23,-35r-26,35r-28,0xm32,-260r36,0r0,260r-36,0r0,-260","w":100},"\u00cf":{"d":"67,-324r33,0r0,37r-33,0r0,-37xm-1,-324r33,0r0,37r-33,0r0,-37xm32,-260r36,0r0,260r-36,0r0,-260","w":100},"\u00d0":{"d":"204,-111v3,-72,-19,-123,-93,-119r-43,0r0,75r69,0r0,22r-69,0r0,103v79,7,133,-12,136,-81xm244,-128v0,87,-44,135,-139,128r-73,0r0,-133r-26,0r0,-22r26,0r0,-105r102,1v76,1,110,58,110,131","w":259},"\u00d1":{"d":"159,-292v-21,1,-47,-22,-55,3r-15,0v-1,-40,41,-38,72,-26v8,0,13,-5,13,-14r15,0v0,22,-10,36,-30,37xm34,-260r50,0r128,215r0,-215r33,0r0,260r-46,0r-132,-221r0,221r-33,0r0,-260","w":280},"\u00d2":{"d":"131,-335r31,52r-23,0r-48,-52r40,0xm142,-237v-62,0,-82,46,-83,107v0,58,22,106,81,106v60,-1,80,-48,81,-109v0,-60,-19,-104,-79,-104xm139,6v-83,0,-117,-53,-118,-134v0,-84,40,-139,120,-139v80,0,119,52,118,135v-1,82,-36,138,-120,138","w":280},"\u00d3":{"d":"186,-335r-44,52r-23,0r29,-52r38,0xm142,-237v-62,0,-82,46,-83,107v0,58,22,106,81,106v60,-1,80,-48,81,-109v0,-60,-19,-104,-79,-104xm139,6v-83,0,-117,-53,-118,-134v0,-84,40,-139,120,-139v80,0,119,52,118,135v-1,82,-36,138,-120,138","w":280},"\u00d4":{"d":"85,-283r38,-52r33,0r37,52r-31,0r-23,-35r-26,35r-28,0xm142,-237v-62,0,-82,46,-83,107v0,58,22,106,81,106v60,-1,80,-48,81,-109v0,-60,-19,-104,-79,-104xm139,6v-83,0,-117,-53,-118,-134v0,-84,40,-139,120,-139v80,0,119,52,118,135v-1,82,-36,138,-120,138","w":280},"\u00d5":{"d":"159,-292v-21,1,-47,-22,-55,3r-15,0v-1,-40,41,-38,72,-26v8,0,13,-5,13,-14r15,0v0,22,-10,36,-30,37xm142,-237v-62,0,-82,46,-83,107v0,58,22,106,81,106v60,-1,80,-48,81,-109v0,-60,-19,-104,-79,-104xm139,6v-83,0,-117,-53,-118,-134v0,-84,40,-139,120,-139v80,0,119,52,118,135v-1,82,-36,138,-120,138","w":280},"\u00d6":{"d":"157,-324r33,0r0,37r-33,0r0,-37xm89,-324r33,0r0,37r-33,0r0,-37xm142,-237v-62,0,-82,46,-83,107v0,58,22,106,81,106v60,-1,80,-48,81,-109v0,-60,-19,-104,-79,-104xm139,6v-83,0,-117,-53,-118,-134v0,-84,40,-139,120,-139v80,0,119,52,118,135v-1,82,-36,138,-120,138","w":280},"\u00d7":{"d":"84,-90r-67,-67r20,-21r67,67r67,-67r21,21r-67,67r67,67r-21,20r-67,-67r-67,67r-20,-20","w":210},"\u00d8":{"d":"140,-24v89,5,98,-124,61,-184r-109,169v12,11,28,15,48,15xm141,-237v-89,-5,-99,123,-62,184r109,-170v-10,-9,-27,-13,-47,-14xm21,-129v0,-107,92,-169,185,-121r24,-38r22,0r-31,49v25,23,38,61,38,108v0,82,-35,137,-119,137v-27,0,-51,-5,-66,-16r-27,42r-23,0r35,-53v-24,-23,-38,-57,-38,-108","w":280},"\u00d9":{"d":"131,-335r31,52r-23,0r-48,-52r40,0xm140,5v-69,0,-108,-34,-107,-107r0,-158r36,0v8,93,-34,233,71,233v109,0,61,-140,71,-233r35,0r-1,173v-4,59,-44,92,-105,92","w":280},"\u00da":{"d":"186,-335r-44,52r-23,0r29,-52r38,0xm140,5v-69,0,-108,-34,-107,-107r0,-158r36,0v8,93,-34,233,71,233v109,0,61,-140,71,-233r35,0r-1,173v-4,59,-44,92,-105,92","w":280},"\u00db":{"d":"85,-283r38,-52r33,0r37,52r-31,0r-23,-35r-26,35r-28,0xm140,5v-69,0,-108,-34,-107,-107r0,-158r36,0v8,93,-34,233,71,233v109,0,61,-140,71,-233r35,0r-1,173v-4,59,-44,92,-105,92","w":280},"\u00dc":{"d":"157,-324r33,0r0,37r-33,0r0,-37xm89,-324r33,0r0,37r-33,0r0,-37xm140,5v-69,0,-108,-34,-107,-107r0,-158r36,0v8,93,-34,233,71,233v109,0,61,-140,71,-233r35,0r-1,173v-4,59,-44,92,-105,92","w":280},"\u00dd":{"d":"166,-335r-44,52r-23,0r30,-52r37,0xm104,-102r-101,-158r44,0r77,128r78,-128r40,0r-102,160r0,100r-36,0r0,-102","w":240},"\u00de":{"d":"171,-147v0,-50,-56,-39,-103,-40r0,85v0,0,103,7,103,-45xm209,-145v0,66,-65,79,-141,73r0,72r-36,0r0,-259r36,0r0,43v76,-4,141,0,141,71","w":219},"\u00df":{"d":"113,-242v-36,4,-46,16,-47,53r0,189r-34,0r0,-190v0,-52,29,-75,83,-75v67,0,104,69,44,100v-11,6,-16,25,-3,35v25,19,64,28,64,70v0,72,-121,87,-129,20v0,-4,-1,-8,-1,-12r33,0v-1,20,12,30,30,30v36,0,43,-49,17,-61v-39,-17,-86,-69,-28,-101v31,-17,11,-62,-29,-58","w":240},"\u00e0":{"d":"91,-266r31,51r-23,0r-48,-51r40,0xm53,-52v0,48,82,37,83,-7r2,-29v-38,-2,-85,0,-85,36xm101,-186v38,1,70,14,70,54r1,132r-30,0v-3,-9,-3,-16,-3,-27v-18,49,-123,43,-120,-21v3,-57,58,-68,119,-63v2,-32,-7,-52,-38,-52v-23,0,-35,11,-36,31r-34,0v1,-38,31,-55,71,-54"},"\u00e1":{"d":"146,-266r-44,51r-23,0r29,-51r38,0xm53,-52v0,48,82,37,83,-7r2,-29v-38,-2,-85,0,-85,36xm101,-186v38,1,70,14,70,54r1,132r-30,0v-3,-9,-3,-16,-3,-27v-18,49,-123,43,-120,-21v3,-57,58,-68,119,-63v2,-32,-7,-52,-38,-52v-23,0,-35,11,-36,31r-34,0v1,-38,31,-55,71,-54"},"\u00e2":{"d":"45,-215r39,-52r32,0r37,52r-31,0r-23,-34r-26,34r-28,0xm53,-52v0,48,82,37,83,-7r2,-29v-38,-2,-85,0,-85,36xm101,-186v38,1,70,14,70,54r1,132r-30,0v-3,-9,-3,-16,-3,-27v-18,49,-123,43,-120,-21v3,-57,58,-68,119,-63v2,-32,-7,-52,-38,-52v-23,0,-35,11,-36,31r-34,0v1,-38,31,-55,71,-54"},"\u00e3":{"d":"119,-224v-20,1,-48,-22,-55,4r-15,0v-1,-41,40,-39,72,-27v8,-1,13,-4,13,-13r15,0v1,23,-11,35,-30,36xm53,-52v0,48,82,37,83,-7r2,-29v-38,-2,-85,0,-85,36xm101,-186v38,1,70,14,70,54r1,132r-30,0v-3,-9,-3,-16,-3,-27v-18,49,-123,43,-120,-21v3,-57,58,-68,119,-63v2,-32,-7,-52,-38,-52v-23,0,-35,11,-36,31r-34,0v1,-38,31,-55,71,-54"},"\u00e4":{"d":"117,-259r33,0r0,37r-33,0r0,-37xm49,-259r33,0r0,37r-33,0r0,-37xm53,-52v0,48,82,37,83,-7r2,-29v-38,-2,-85,0,-85,36xm101,-186v38,1,70,14,70,54r1,132r-30,0v-3,-9,-3,-16,-3,-27v-18,49,-123,43,-120,-21v3,-57,58,-68,119,-63v2,-32,-7,-52,-38,-52v-23,0,-35,11,-36,31r-34,0v1,-38,31,-55,71,-54"},"\u00e5":{"d":"100,-262v-12,0,-21,9,-21,21v0,12,9,21,21,21v12,0,21,-9,21,-21v0,-12,-9,-21,-21,-21xm100,-206v-19,0,-35,-16,-35,-35v0,-19,16,-35,35,-35v19,0,35,16,35,35v0,19,-16,35,-35,35xm53,-52v0,48,82,37,83,-7r2,-29v-38,-2,-85,0,-85,36xm101,-186v38,1,70,14,70,54r1,132r-30,0v-3,-9,-3,-16,-3,-27v-18,49,-123,43,-120,-21v3,-57,58,-68,119,-63v2,-32,-7,-52,-38,-52v-23,0,-35,11,-36,31r-34,0v1,-38,31,-55,71,-54"},"\u00e6":{"d":"51,-51v0,43,73,38,84,9v8,-11,9,-28,9,-45v-41,1,-93,-5,-93,36xm265,-109v10,-58,-78,-68,-87,-15v-1,6,-2,11,-2,15r89,0xm28,-133v-3,-65,122,-68,135,-15v16,-50,110,-46,128,1v6,17,9,38,9,62r-125,0v0,35,15,66,49,66v24,0,39,-14,40,-37r35,0v-1,71,-118,82,-139,19v-10,25,-32,43,-70,42v-41,-1,-72,-18,-72,-57v0,-58,64,-60,126,-59v1,-31,-12,-51,-44,-50v-21,0,-37,7,-38,28r-34,0","w":320},"\u00e7":{"d":"97,-21v26,0,37,-16,39,-39r34,0v-2,39,-27,62,-67,64r-12,17v23,-6,46,5,42,30v-4,27,-53,32,-77,19r7,-13v11,6,43,10,43,-10v0,-15,-19,-17,-31,-11v-13,-9,9,-21,13,-32v-48,-6,-72,-37,-72,-90v0,-85,82,-128,138,-77v12,11,13,24,15,40r-34,0v-3,-20,-12,-38,-36,-38v-38,0,-47,33,-47,68v0,37,8,71,45,72","w":180},"\u00e8":{"d":"91,-266r31,51r-23,0r-48,-51r40,0xm148,-108v10,-55,-71,-73,-89,-25v-3,7,-5,15,-5,25r94,0xm94,-185v67,-5,92,34,88,101r-130,0v0,38,14,65,52,65v24,0,41,-14,43,-38r33,0v-3,40,-31,62,-77,62v-58,0,-84,-35,-84,-92v0,-57,23,-94,75,-98"},"\u00e9":{"d":"146,-266r-44,51r-23,0r29,-51r38,0xm148,-108v10,-55,-71,-73,-89,-25v-3,7,-5,15,-5,25r94,0xm94,-185v67,-5,92,34,88,101r-130,0v0,38,14,65,52,65v24,0,41,-14,43,-38r33,0v-3,40,-31,62,-77,62v-58,0,-84,-35,-84,-92v0,-57,23,-94,75,-98"},"\u00ea":{"d":"45,-215r39,-52r32,0r37,52r-31,0r-23,-34r-26,34r-28,0xm148,-108v10,-55,-71,-73,-89,-25v-3,7,-5,15,-5,25r94,0xm94,-185v67,-5,92,34,88,101r-130,0v0,38,14,65,52,65v24,0,41,-14,43,-38r33,0v-3,40,-31,62,-77,62v-58,0,-84,-35,-84,-92v0,-57,23,-94,75,-98"},"\u00eb":{"d":"117,-259r33,0r0,37r-33,0r0,-37xm49,-259r33,0r0,37r-33,0r0,-37xm148,-108v10,-55,-71,-73,-89,-25v-3,7,-5,15,-5,25r94,0xm94,-185v67,-5,92,34,88,101r-130,0v0,38,14,65,52,65v24,0,41,-14,43,-38r33,0v-3,40,-31,62,-77,62v-58,0,-84,-35,-84,-92v0,-57,23,-94,75,-98"},"\u00ec":{"d":"41,-266r31,51r-23,0r-48,-51r40,0xm33,-181r33,0r0,181r-33,0r0,-181","w":100},"\u00ed":{"d":"96,-266r-44,51r-23,0r29,-51r38,0xm33,-181r33,0r0,181r-33,0r0,-181","w":100},"\u00ee":{"d":"-5,-215r38,-52r33,0r37,52r-31,0r-23,-34r-26,34r-28,0xm33,-181r33,0r0,181r-33,0r0,-181","w":100},"\u00ef":{"d":"67,-259r33,0r0,37r-33,0r0,-37xm-1,-259r33,0r0,37r-33,0r0,-37xm33,-181r33,0r0,181r-33,0r0,-181","w":100},"\u00f0":{"d":"112,-159v-67,0,-73,111,-26,134v43,21,80,-16,79,-65v-1,-40,-15,-69,-53,-69xm158,-157v-16,-28,-38,-47,-66,-66r-34,20r-13,-12r31,-19r-31,-18v18,-28,41,-13,59,1r36,-21r13,13r-33,19v41,30,81,70,81,142v0,63,-29,104,-92,104v-58,0,-86,-34,-90,-94v-5,-81,88,-123,139,-69","w":219},"\u00f1":{"d":"129,-224v-19,1,-48,-22,-54,4r-16,0v-1,-41,40,-39,72,-27v8,-1,13,-4,13,-13r15,0v1,23,-11,34,-30,36xm114,-158v-67,0,-42,95,-47,158r-34,0r-1,-181r34,0r1,29v20,-50,123,-41,123,29r0,123r-34,0v-7,-60,24,-158,-42,-158","w":219},"\u00f2":{"d":"102,-266r30,51r-23,0r-48,-51r41,0xm110,-161v-38,0,-57,28,-56,71v1,39,14,71,54,71v38,0,55,-30,55,-73v1,-40,-18,-69,-53,-69xm107,6v-59,0,-89,-37,-89,-94v0,-58,30,-97,92,-97v60,0,89,38,89,94v0,59,-32,97,-92,97","w":219},"\u00f3":{"d":"156,-266r-44,51r-23,0r29,-51r38,0xm110,-161v-38,0,-57,28,-56,71v1,39,14,71,54,71v38,0,55,-30,55,-73v1,-40,-18,-69,-53,-69xm107,6v-59,0,-89,-37,-89,-94v0,-58,30,-97,92,-97v60,0,89,38,89,94v0,59,-32,97,-92,97","w":219},"\u00f4":{"d":"55,-215r39,-52r32,0r37,52r-31,0r-23,-34r-26,34r-28,0xm110,-161v-38,0,-57,28,-56,71v1,39,14,71,54,71v38,0,55,-30,55,-73v1,-40,-18,-69,-53,-69xm107,6v-59,0,-89,-37,-89,-94v0,-58,30,-97,92,-97v60,0,89,38,89,94v0,59,-32,97,-92,97","w":219},"\u00f5":{"d":"129,-224v-19,1,-48,-22,-54,4r-16,0v-1,-41,40,-39,72,-27v8,-1,13,-4,13,-13r15,0v1,23,-11,34,-30,36xm110,-161v-38,0,-57,28,-56,71v1,39,14,71,54,71v38,0,55,-30,55,-73v1,-40,-18,-69,-53,-69xm107,6v-59,0,-89,-37,-89,-94v0,-58,30,-97,92,-97v60,0,89,38,89,94v0,59,-32,97,-92,97","w":219},"\u00f6":{"d":"127,-259r34,0r0,37r-34,0r0,-37xm59,-259r33,0r0,37r-33,0r0,-37xm110,-161v-38,0,-57,28,-56,71v1,39,14,71,54,71v38,0,55,-30,55,-73v1,-40,-18,-69,-53,-69xm107,6v-59,0,-89,-37,-89,-94v0,-58,30,-97,92,-97v60,0,89,38,89,94v0,59,-32,97,-92,97","w":219},"\u00f7":{"d":"87,-177r36,0r0,43r-36,0r0,-43xm87,-46r36,0r0,42r-36,0r0,-42xm13,-104r184,0r0,28r-184,0r0,-28","w":210},"\u00f8":{"d":"81,-26v62,34,107,-57,68,-115xm136,-154v-65,-33,-105,56,-69,115xm18,-89v0,-73,60,-113,132,-89r22,-37r21,0r-27,47v22,16,31,43,33,78v3,73,-64,114,-132,88r-24,39r-21,0r29,-48v-20,-16,-33,-41,-33,-78","w":219},"\u00f9":{"d":"102,-266r30,51r-23,0r-48,-51r41,0xm151,-31v-19,51,-123,42,-123,-28r0,-122r35,0r0,117v0,25,11,40,38,40v70,0,47,-91,50,-157r35,0r1,181r-35,0","w":219},"\u00fa":{"d":"156,-266r-44,51r-23,0r29,-51r38,0xm151,-31v-19,51,-123,42,-123,-28r0,-122r35,0r0,117v0,25,11,40,38,40v70,0,47,-91,50,-157r35,0r1,181r-35,0","w":219},"\u00fb":{"d":"55,-215r39,-52r32,0r37,52r-31,0r-23,-34r-26,34r-28,0xm151,-31v-19,51,-123,42,-123,-28r0,-122r35,0r0,117v0,25,11,40,38,40v70,0,47,-91,50,-157r35,0r1,181r-35,0","w":219},"\u00fc":{"d":"127,-259r34,0r0,37r-34,0r0,-37xm59,-259r33,0r0,37r-33,0r0,-37xm151,-31v-19,51,-123,42,-123,-28r0,-122r35,0r0,117v0,25,11,40,38,40v70,0,47,-91,50,-157r35,0r1,181r-35,0","w":219},"\u00fd":{"d":"146,-266r-44,51r-23,0r29,-51r38,0xm113,1r-26,67r-35,0r28,-69r-76,-180r38,0r57,143r58,-143r36,0"},"\u00fe":{"d":"117,-158v-42,0,-54,34,-54,73v-1,40,16,71,59,66v60,-6,66,-139,-5,-139xm120,7v-26,0,-45,-12,-56,-27r0,89r-33,0r0,-329r33,0r0,109v12,-20,33,-33,62,-33v52,0,76,38,76,94v0,58,-27,97,-82,97","w":219},"\u00ff":{"d":"117,-259r33,0r0,37r-33,0r0,-37xm49,-259r33,0r0,37r-33,0r0,-37xm113,1r-26,67r-35,0r28,-69r-76,-180r38,0r57,143r58,-143r36,0"},"!":{"d":"54,-36r38,0r0,36r-38,0r0,-36xm86,-59r-25,0r-7,-201r40,0","w":140}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1987, 1991, 1993, 1994, 1998 Adobe Systems Incorporated.  All
 * Rights Reserved.Univers is a trademark of Linotype-Hell AG and/or its
 * subsidiaries.
 * 
 * Description:
 *  The digitally encoded machine readable software for producing the  Typefaces
 * licensed to you is copyrighted (c) 1987, 1991, 1993, 1994, 1998  Adobe Systems.
 * All Rights Reserved. This software is the property of  Adobe Systems
 * Incorporated and its licensors, and may not be reproduced,  used, displayed,
 * modified, disclosed or transferred without the express   written approval of
 * Adobe.    The digitally encoded machine readable outline data for producing  the
 * Typefaces licensed to you is copyrighted (c) 1981, 1998 Linotype-Hell AG  and/or
 * its subsidiaries. All Rights Reserved.  This data is the property of
 * Linotype-Hell AG and/or its subsidiaries  and may not be reproduced, used,
 * displayed, modified, disclosed or   transferred without the express written
 * approval of Linotype-Hell AG   and/or its subsidiaries.
 * 
 * Vendor URL:
 * www.linotypelibrary.com
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Univers LT 45 Light","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 5 0 0 2 0 3","ascent":"288","descent":"-72","x-height":"6","bbox":"-13 -338 358 90","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100,"k":{"Y":54,"W":45,"V":45,"T":54,"A":29}},"!":{"d":"46,-48r46,0r0,48r-46,0r0,-48xm51,-71r-7,-189r49,0r-5,189r-37,0","w":140},"\"":{"d":"143,-251r-9,89r-29,0r-10,-89r48,0xm74,-251r-10,89r-28,0r-10,-89r48,0","w":170},"#":{"d":"114,-103r8,-43r-34,0r-8,43r34,0xm-3,-103r37,0r8,-43r-30,0r0,-40r37,0r12,-65r46,0r-12,65r35,0r11,-65r47,0r-12,65r30,0r0,40r-38,0r-7,43r29,0r0,40r-37,0r-12,63r-46,0r12,-63r-34,0r-12,63r-46,0r11,-63r-29,0r0,-40"},"$":{"d":"108,-37v23,1,39,-30,22,-49v-4,-5,-11,-8,-22,-11r0,60xm90,-210v-31,-3,-37,47,-10,54v3,1,6,3,10,4r0,-58xm188,-73v-1,47,-36,72,-81,74r0,36r-19,0r0,-36v-50,-1,-80,-26,-79,-78r49,0v-1,25,10,37,30,40r0,-64v-39,-11,-74,-24,-74,-74v0,-45,34,-69,76,-73r0,-30r20,0r0,30v45,2,76,24,76,71r-48,0v0,-22,-10,-31,-29,-34r0,64v40,12,81,21,79,74"},"%":{"d":"240,-277r-136,281r-27,0r136,-281r27,0xm243,-107v-30,1,-31,81,-1,81v30,0,31,-78,1,-81xm241,3v-46,0,-60,-31,-57,-80v2,-36,20,-58,60,-58v46,0,61,30,58,78v-2,37,-21,60,-61,60xm78,-246v-30,0,-30,81,-1,80v23,-1,21,-30,20,-54v0,-13,-5,-26,-19,-26xm76,-136v-45,-1,-61,-32,-58,-81v2,-35,20,-57,60,-57v43,0,60,25,59,66v0,42,-17,73,-61,72","w":320},"&":{"d":"64,-76v-1,50,67,51,94,24r-65,-67v-15,10,-28,22,-29,43xm111,-233v-36,-1,-27,47,-6,57v3,3,5,4,6,5v23,-8,41,-61,0,-62xm191,-90v8,-21,11,-43,10,-72r54,0v0,47,-11,79,-30,108r53,55r-67,0r-20,-24v-47,47,-187,41,-183,-49v1,-38,28,-67,55,-81v-16,-11,-32,-29,-32,-55v0,-40,32,-59,80,-59v81,0,102,86,41,116r-14,8","w":280},"'":{"d":"18,-251r48,0r-9,89r-29,0","w":85},"(":{"d":"22,-112v0,-61,19,-114,37,-161r39,0v-27,70,-45,185,-14,268r14,49r-39,0v-18,-46,-37,-96,-37,-156","w":119},")":{"d":"98,-117v0,61,-19,114,-37,161r-39,0v28,-70,44,-185,14,-268r-14,-49r39,0v18,46,37,96,37,156","w":119},"*":{"d":"24,-206r55,8r-34,-42r33,-19r21,50r21,-51r33,20r-35,42r55,-6r-1,38r-53,-8r34,44r-34,18r-21,-50r-21,51r-32,-20r33,-44r-54,8r0,-39"},"+":{"d":"81,-73r-72,0r0,-46r72,0r0,-73r48,0r0,73r72,0r0,46r-72,0r0,73r-48,0r0,-73","w":210},",":{"d":"90,-48r-43,89r-37,0r27,-89r53,0","w":100,"k":{" ":9}},"-":{"d":"16,-116r89,0r0,41r-89,0r0,-41","w":119},".":{"d":"27,-48r45,0r0,48r-45,0r0,-48","w":100,"k":{" ":9}},"\/":{"d":"149,-258r-96,258r-43,0r98,-258r41,0","w":159},"0":{"d":"102,-39v40,-7,35,-69,32,-114v-2,-27,-4,-57,-32,-60v-37,5,-34,54,-34,92v0,35,0,79,34,82xm100,4v-67,0,-86,-59,-86,-129v0,-67,18,-130,87,-130v68,0,88,52,88,124v-1,71,-17,135,-89,135","k":{"1":20,"0":-7}},"1":{"d":"34,-213v24,-10,46,-23,67,-38r46,0r0,251r-54,0r0,-195v-16,10,-37,23,-59,32r0,-50","k":{"\u00ad":20,"9":7,"8":7,"7":11,"1":34,"0":22,".":18}},"2":{"d":"99,-255v70,-4,108,65,66,119v-27,34,-58,64,-100,97r120,-3r0,42r-176,0r0,-51r83,-76v13,-15,38,-31,37,-58v0,-19,-11,-32,-30,-32v-22,0,-30,17,-31,37r-55,0v-2,-53,36,-72,86,-75"},"3":{"d":"91,5v-51,0,-84,-22,-83,-73r55,0v1,19,10,34,32,33v19,0,32,-14,32,-34v0,-34,-27,-38,-61,-37r0,-42v32,-1,62,-5,62,-38v0,-18,-14,-30,-31,-30v-19,0,-30,13,-31,32r-55,0v1,-47,38,-71,85,-71v50,0,82,24,84,69v1,35,-24,48,-48,57v27,7,51,26,51,60v0,50,-40,74,-92,74"},"4":{"d":"46,-95r63,0r1,-94xm6,-55r0,-48r101,-148r53,0r0,155r34,0r0,41r-34,0r0,55r-53,0r0,-55r-101,0"},"5":{"d":"131,-81v5,-46,-57,-61,-65,-20r-53,-1r6,-149r152,0r0,41r-104,0r-4,62v43,-39,130,-7,122,62v9,86,-107,119,-160,64v-11,-11,-12,-24,-14,-40r53,0v1,16,11,28,30,28v26,-1,34,-20,37,-47"},"6":{"d":"69,-79v0,26,12,44,34,44v24,0,35,-18,35,-45v1,-25,-12,-43,-33,-43v-24,0,-36,18,-36,44xm14,-90v-8,-97,25,-186,125,-161v28,7,47,26,48,62r-53,0v1,-25,-33,-31,-48,-17v-14,13,-15,40,-17,63v11,-11,27,-20,50,-20v47,1,72,32,72,79v0,57,-34,88,-91,89v-60,1,-82,-40,-86,-95"},"7":{"d":"13,-251r171,0r0,45r-87,206r-60,0r92,-209r-116,0r0,-42","k":{"\u00ad":20,"6":7,"4":20,".":61,",":61}},"8":{"d":"65,-72v0,23,14,37,36,37v23,0,35,-15,36,-38v0,-22,-15,-36,-36,-36v-21,-1,-37,16,-36,37xm69,-185v0,19,13,33,32,33v18,0,35,-14,34,-33v-1,-19,-13,-30,-33,-31v-19,-1,-33,12,-33,31xm11,-69v0,-37,24,-54,52,-63v-25,-6,-48,-21,-48,-53v0,-47,37,-71,87,-71v47,0,85,22,85,68v0,33,-22,50,-49,56v29,5,52,28,52,63v0,50,-41,73,-92,73v-50,0,-87,-25,-87,-73"},"9":{"d":"62,-174v0,21,10,40,34,40v25,0,34,-19,35,-41v1,-21,-12,-38,-34,-38v-24,0,-35,16,-35,39xm186,-155v15,118,-60,199,-157,140v-10,-11,-17,-24,-17,-46r54,0v1,16,11,24,27,24v38,1,39,-36,39,-73v-13,10,-23,18,-46,17v-50,-1,-77,-32,-77,-79v0,-53,35,-82,89,-82v61,0,81,42,88,99"},":":{"d":"27,-182r46,0r0,49r-46,0r0,-49xm27,-48r46,0r0,48r-46,0r0,-48","w":100,"k":{" ":9}},";":{"d":"85,-48r-43,89r-37,0r26,-89r54,0xm29,-182r45,0r0,49r-45,0r0,-49","w":100,"k":{" ":9}},"<":{"d":"9,-120r192,-74r0,50r-134,48r134,48r0,51r-192,-75r0,-48","w":210},"=":{"d":"9,-77r192,0r0,46r-192,0r0,-46xm9,-161r192,0r0,47r-192,0r0,-47","w":210},">":{"d":"9,3r0,-51r134,-48r-134,-48r0,-50r192,74r0,48","w":210},"?":{"d":"50,-43r43,0r0,43r-43,0r0,-43xm17,-258v64,-17,161,-6,145,75v-10,53,-80,51,-70,125r-41,0v-13,-70,51,-79,57,-135v5,-43,-60,-40,-91,-27r0,-38","w":180},"@":{"d":"186,-177v-27,5,-38,36,-38,70v0,10,6,19,18,19v29,-7,37,-42,37,-72v0,-9,-7,-19,-17,-17xm66,-125v-6,113,145,139,212,76r13,17v-31,20,-61,38,-110,38v-86,0,-139,-50,-139,-133v0,-88,59,-139,145,-139v72,0,122,38,122,109v0,51,-26,93,-74,93v-17,0,-33,-10,-33,-29v-17,46,-103,38,-97,-24v4,-46,26,-83,72,-86v19,-1,33,8,38,22r5,-16r35,0v-8,32,-21,60,-26,96v-1,7,6,14,12,13v30,-5,43,-36,43,-71v0,-59,-42,-86,-98,-86v-74,0,-116,45,-120,120","w":351},"A":{"d":"163,-98r-36,-111r-38,111r74,0xm162,-260r90,260r-56,0r-19,-56r-102,0r-20,56r-53,0r94,-260r66,0","w":259,"k":{"\u00ad":18,"\u00ab":9,"y":20,"w":16,"v":20,"u":18,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"Y":49,"W":27,"V":36,"U":14,"T":40,"S":7,"Q":7,"O":7,"G":7,"C":7}},"B":{"d":"170,-77v0,-44,-50,-36,-92,-37r0,72v41,-1,92,10,92,-35xm161,-188v0,-40,-45,-31,-83,-32r0,66v38,-2,83,9,83,-34xm225,-72v0,90,-111,70,-201,72r0,-260v94,-4,221,-10,184,97v-9,13,-23,21,-38,28v33,7,55,26,55,63","w":240,"k":{"Y":20,"W":14,"V":14,".":7,",":7}},"C":{"d":"12,-125v-6,-109,105,-174,189,-113v17,12,27,35,27,63r-57,0v-1,-25,-14,-47,-42,-46v-50,2,-61,54,-58,109v2,39,12,77,54,77v30,0,45,-19,47,-49r58,0v-2,59,-39,90,-99,90v-82,0,-114,-52,-119,-131","w":240,"k":{"Y":11}},"D":{"d":"185,-120v5,-70,-30,-108,-105,-97r0,174v66,10,101,-20,105,-77xm243,-134v0,90,-46,137,-139,134r-81,0r0,-260r102,1v74,4,118,46,118,125","w":259,"k":{"a":9,"Y":25,"W":14,"V":20,"J":9,"A":14,".":9,",":9}},"E":{"d":"27,-260r174,0r0,42r-119,0r0,62r111,0r0,43r-111,0r0,70r123,0r0,43r-178,0r0,-260","w":219},"F":{"d":"25,-260r168,0r0,42r-112,0r0,64r104,0r0,43r-104,0r0,111r-56,0r0,-260","k":{"\u00fc":7,"\u00f6":7,"\u00e4":14,"\u00ad":9,"u":7,"r":7,"o":7,"e":7,"a":14,"J":63,"A":27,".":63,",":63}},"G":{"d":"150,-267v60,0,108,24,107,87r-58,0v0,-30,-20,-47,-50,-47v-62,1,-77,52,-76,115v1,62,58,90,125,71r0,-54r-50,0r0,-44r106,0r0,130v-25,10,-58,14,-95,15v-93,1,-145,-41,-145,-132v0,-89,49,-141,136,-141","w":280},"H":{"d":"24,-260r56,0r0,104r98,0r0,-104r57,0r0,260r-56,0r0,-114r-99,0r0,114r-56,0r0,-260","w":259},"I":{"d":"22,-261r55,0r0,261r-55,0r0,-261","w":100},"J":{"d":"89,-38v31,0,31,-31,30,-63r0,-159r57,0v-6,113,33,263,-91,263v-54,0,-81,-32,-82,-87r55,0v1,26,6,46,31,46","k":{"o":5,"e":5,"a":7,"A":14,".":11,",":11}},"K":{"d":"24,-260r56,0r0,112r87,-112r65,0r-95,116r103,144r-69,0r-91,-132r0,132r-56,0r0,-260","w":240,"k":{"y":14,"w":14,"u":5,"o":5,"e":5,"O":18}},"L":{"d":"25,-260r57,0r0,216r111,0r0,44r-168,0r0,-260","k":{"\u00ad":45,"y":14,"Y":49,"W":36,"V":49,"T":34,"O":18}},"M":{"d":"22,-260r91,0r55,189r59,-189r89,0r0,260r-56,0r0,-223r-71,223r-46,0r-69,-223r0,223r-52,0r0,-260","w":339},"N":{"d":"26,-260r81,0r97,205r0,-205r52,0r0,260r-77,0r-101,-216r0,216r-52,0r0,-260","w":280},"O":{"d":"140,-226v-52,0,-67,44,-67,98v0,49,13,93,67,93v51,-1,66,-43,66,-98v0,-51,-18,-93,-66,-93xm139,6v-81,0,-124,-50,-124,-132v0,-84,39,-140,125,-140v83,0,125,54,125,134v0,83,-41,138,-126,138","w":280,"k":{"e":9,"a":9,"Y":27,"X":25,"W":7,"V":20,"T":14,"A":11,".":7,",":7}},"P":{"d":"152,-182v0,-39,-36,-36,-74,-35r0,74v40,1,74,2,74,-39xm210,-183v0,70,-53,89,-130,82r0,101r-57,0r0,-260v87,0,187,-11,187,77","w":219,"k":{"\u00ad":20,"o":14,"e":14,"a":14,"Y":9,"A":36,".":85,",":85}},"Q":{"d":"135,-226v-50,0,-65,44,-65,95v0,49,15,95,64,95v51,0,63,-47,64,-99v0,-52,-15,-91,-63,-91xm138,-265v119,-7,150,159,78,228v13,-4,39,-3,58,-3r0,41r-147,3v-79,-2,-115,-55,-115,-132v0,-82,42,-132,126,-137","w":280},"R":{"d":"165,-184v1,-44,-46,-34,-88,-35r0,72v43,1,87,6,88,-37xm170,0v-14,-34,8,-107,-43,-105r-49,0r0,105r-56,0r0,-260v86,3,201,-21,201,67v0,39,-26,56,-55,64v65,0,37,87,63,129r-61,0","w":240,"k":{"Y":14,"W":7,"V":7,"T":7,"S":4,"O":4,"G":4,"C":4}},"S":{"d":"113,6v-64,0,-101,-25,-100,-89r56,0v0,31,14,49,48,49v47,0,70,-54,21,-66v-53,-14,-117,-20,-117,-84v0,-57,43,-81,103,-81v54,0,93,23,93,79r-54,0v0,-25,-15,-36,-42,-39v-36,-3,-60,42,-28,59v48,25,133,15,131,88v-2,59,-49,84,-111,84","w":240,"k":{"y":7,"w":7,"v":7,"Y":18,"V":9,"T":7,".":7,",":7}},"T":{"d":"82,-217r-77,0r0,-43r211,0r0,43r-77,0r0,217r-57,0r0,-217","w":219,"k":{"\u00fc":41,"\u00f8":54,"\u00f6":41,"\u00e9":54,"\u00e5":41,"\u00e4":32,"\u00bb":45,"\u00ad":54,"\u00ab":54,"y":54,"w":54,"u":54,"r":54,"o":54,"e":54,"a":54,"Y":7,"W":7,"V":7,"T":7,"O":14,"J":45,"A":34,";":49,":":49,".":54,",":54}},"U":{"d":"137,5v-70,0,-111,-34,-111,-109r0,-156r56,0r0,159v-15,68,83,86,110,35v11,-54,2,-131,5,-194r54,0r0,163v0,70,-47,102,-114,102","w":280,"k":{"A":14,".":9,",":9}},"V":{"d":"65,-259r68,204r69,-204r55,0r-96,259r-61,0r-96,-259r61,0","w":259,"k":{"\u00fc":20,"\u00f6":34,"\u00e4":34,"\u00bb":18,"\u00ad":32,"\u00ab":36,"u":20,"o":34,"i":7,"e":34,"a":34,"O":20,"G":20,"C":20,"A":36,";":14,":":14,".":49,",":49}},"W":{"d":"63,-259r40,195r51,-195r63,0r46,195r42,-195r53,0r-66,260r-62,0r-47,-199r-51,199r-63,0r-64,-260r58,0","w":360,"k":{"\u00fc":7,"\u00f6":14,"\u00e4":20,"\u00bb":9,"\u00ad":22,"\u00ab":22,"u":7,"r":7,"o":14,"e":14,"a":20,"O":7,"A":27,";":7,":":7,".":14,",":14}},"X":{"d":"80,-260r52,88r56,-88r60,0r-86,125r91,135r-68,0r-58,-98r-63,98r-59,0r91,-135r-85,-125r69,0","w":259,"k":{"y":27,"e":14,"O":25,"C":18}},"Y":{"d":"71,-259r54,118r54,-118r58,0r-88,164r0,95r-55,0r0,-95r-88,-164r65,0","w":240,"k":{"\u00bb":36,"\u00ad":63,"\u00ab":45,"u":36,"o":54,"i":13,"e":59,"a":54,"S":20,"O":27,"C":27,"A":49,";":20,":":20,".":47,",":47}},"Z":{"d":"10,-48r136,-170r-128,1r0,-42r188,0r0,49r-135,169r138,-2r0,43r-199,0r0,-48","w":219},"[":{"d":"103,-238r-39,0r0,249r39,0r0,33r-82,0r0,-315r82,0r0,33","w":119},"\\":{"d":"52,-258r97,258r-42,0r-97,-258r42,0","w":100},"]":{"d":"17,-271r82,0r0,315r-82,0r0,-33r39,0r0,-249r-39,0r0,-33","w":119},"^":{"d":"84,-251r42,0r65,156r-50,0r-37,-98r-36,98r-50,0","w":210},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"`":{"d":"76,-211r-30,0r-50,-52r50,0","w":100},"a":{"d":"102,-85v-35,-4,-49,55,-9,55v28,0,33,-26,33,-56v-9,-1,-17,0,-24,1xm176,-128v2,44,-4,92,5,128r-49,0r-1,-25v-21,45,-120,38,-116,-25v4,-56,53,-66,111,-67v9,-39,-43,-52,-50,-20v0,3,-1,5,-1,7r-52,0v1,-46,43,-60,90,-56v36,3,62,21,63,58","k":{"y":7,"w":7,"v":7}},"b":{"d":"114,-31v34,0,40,-35,36,-71v-2,-25,-11,-47,-38,-47v-30,0,-39,25,-39,56v0,36,12,62,41,62xm130,4v-26,0,-45,-11,-55,-30r-2,26r-51,0r0,-260r53,0r0,100v12,-15,26,-24,51,-24v55,2,80,41,80,96v0,55,-25,92,-76,92","w":219,"k":{"y":7,"v":7}},"c":{"d":"120,-117v-3,-14,-6,-35,-24,-34v-28,2,-28,39,-28,69v0,22,4,51,28,51v17,0,23,-16,24,-35r53,0v-2,46,-29,71,-75,71v-58,0,-85,-37,-85,-96v0,-93,111,-125,152,-58v5,9,7,20,7,32r-52,0","w":180,"k":{"k":7,"h":7}},"d":{"d":"106,-149v-53,0,-55,118,-3,118v32,0,42,-31,42,-63v0,-32,-11,-55,-39,-55xm93,-184v25,0,41,11,51,25r0,-101r53,0r2,260r-54,0r-2,-26v-7,18,-30,29,-53,30v-50,0,-79,-37,-78,-91v2,-57,26,-94,81,-97","w":219},"e":{"d":"134,-111v7,-42,-54,-56,-63,-15v-1,5,-3,10,-3,15r66,0xm184,-54v-4,45,-44,65,-95,60v-49,-4,-74,-40,-74,-93v0,-60,29,-101,89,-101v61,0,88,48,84,111r-122,0v1,26,9,48,37,48v18,-1,28,-8,32,-25r49,0","k":{"y":7}},"f":{"d":"118,-226v-20,-3,-41,0,-38,23r0,21r34,0r0,38r-34,0r0,144r-53,0r0,-144r-27,0r0,-38r27,0v-8,-65,25,-92,91,-81r0,37","w":119,"k":{"t":9,"o":7,"f":9,"e":14,"a":14,".":16,",":16}},"g":{"d":"105,-147v-29,0,-38,30,-36,66v2,21,11,41,35,41v29,0,37,-25,38,-52v0,-29,-8,-55,-37,-55xm93,-183v26,-1,41,12,51,26r2,-24r50,0v-6,54,-3,120,-3,179v0,84,-117,94,-160,48v-7,-7,-9,-19,-10,-33r51,0v0,34,61,33,65,2v2,-13,2,-28,2,-43v-12,14,-24,24,-49,24v-53,-1,-77,-39,-77,-89v0,-52,26,-87,78,-90","w":219,"k":{"y":7,"o":7,"e":7,"a":7}},"h":{"d":"112,-148v-57,3,-26,95,-34,148r-53,0r0,-260r53,0r0,103v9,-15,26,-27,52,-27v86,0,62,104,65,184r-53,0r0,-119v-3,-15,-9,-31,-30,-29","w":219,"k":{"y":14}},"i":{"d":"23,-182r54,0r0,182r-54,0r0,-182xm22,-260r56,0r0,47r-56,0r0,-47","w":100},"j":{"d":"22,-260r56,0r0,47r-56,0r0,-47xm77,16v2,45,-31,61,-78,54r0,-36v19,0,25,-12,24,-31r0,-186r54,0r0,199","w":100},"k":{"d":"24,-260r53,0r0,153r55,-76r60,0r-62,79r66,104r-63,0r-56,-99r0,99r-53,0r0,-260","k":{"o":13,"g":13,"e":13,"a":5}},"l":{"d":"23,-260r54,0r0,260r-54,0r0,-260","w":100},"m":{"d":"112,-148v-58,2,-26,95,-34,148r-54,0r-1,-182r51,0r2,24v16,-37,104,-37,113,6v11,-21,29,-33,59,-33v87,-3,60,104,64,185r-54,0r0,-107v2,-24,-6,-41,-30,-41v-56,0,-25,95,-33,148r-54,0r0,-120v-1,-17,-10,-28,-29,-28","w":339,"k":{"y":14}},"n":{"d":"112,-148v-57,3,-26,95,-34,148r-54,0r-1,-183r51,0r2,28v11,-36,88,-43,108,-8v21,36,7,108,11,163r-54,0r-1,-124v-2,-15,-11,-24,-28,-24","w":219,"k":{"y":14,"w":7,"v":7}},"o":{"d":"109,-150v-34,0,-38,30,-39,61v0,35,9,58,40,58v34,0,39,-28,39,-62v0,-31,-8,-57,-40,-57xm108,6v-61,0,-93,-35,-93,-95v0,-59,31,-97,94,-97v61,0,94,35,94,95v0,61,-32,97,-95,97","w":219,"k":{"y":7,"x":11,"w":7,"v":7,".":7,",":7}},"p":{"d":"115,-151v-54,0,-59,117,-2,119v51,1,55,-117,2,-119xm127,3v-25,0,-41,-11,-51,-24r0,91r-54,0r0,-252r51,0r2,26v10,-18,27,-30,55,-29v53,1,76,36,76,90v0,55,-25,95,-79,98","w":219,"k":{"y":7}},"q":{"d":"104,-151v-53,0,-51,118,3,118v31,0,39,-27,39,-58v0,-32,-11,-60,-42,-60xm90,-186v28,0,46,14,55,30r2,-26r52,0r-1,251r-55,0r0,-90v-11,12,-26,25,-50,24v-52,-3,-80,-38,-80,-96v0,-57,25,-93,77,-93","w":219},"r":{"d":"134,-135v-38,-4,-57,9,-57,45r0,90r-54,0r-2,-183r50,0r1,35v9,-23,28,-36,62,-35r0,48","w":140,"k":{"\u00ad":36,"u":14,"t":7,"r":14,"q":5,"p":14,"o":9,"n":14,"m":14,"l":14,"k":14,"i":14,"h":14,"g":9,"e":11,"d":7,"c":7,"a":7,".":36,",":36}},"s":{"d":"158,-89v42,56,-32,113,-106,90v-22,-7,-41,-27,-42,-54r50,0v2,16,12,25,31,25v35,1,36,-34,3,-42v-36,-8,-80,-13,-80,-59v-1,-74,150,-78,149,-3r-49,0v-1,-15,-9,-22,-25,-22v-19,0,-35,20,-19,31v26,11,73,14,88,34","w":180},"t":{"d":"88,-63v-3,26,16,29,42,26r0,34v-43,13,-95,8,-95,-43r0,-99r-35,0r0,-36r35,0r0,-35r53,-20r0,55r43,0r0,36r-43,0r0,82","w":140,"k":{"u":5,"t":9,"o":7,"e":7}},"u":{"d":"142,-24v-27,49,-120,33,-120,-45r0,-113r54,0r0,122v1,16,9,28,28,27v59,-2,26,-95,34,-149r55,0r2,182r-51,0","w":219},"v":{"d":"59,-182r41,124r42,-124r52,0r-66,182r-59,0r-66,-182r56,0","k":{"\u00ad":18,"o":7,"e":7,"c":7,"a":14,".":36,",":29}},"w":{"d":"58,-182r34,137r38,-137r59,0r38,137r36,-137r53,0r-63,182r-58,0r-37,-135r-38,135r-59,0r-59,-182r56,0","w":320,"k":{"\u00ad":5,"o":7,"e":7,"d":7,"c":7,"a":7,".":29,",":22}},"x":{"d":"69,-182r34,60r36,-60r55,0r-59,89r61,93r-63,0r-37,-67r-37,67r-56,0r61,-98r-58,-84r63,0","k":{"\u00ad":20,"o":7,"e":7,"c":7}},"y":{"d":"63,-182r40,126r40,-126r53,0r-69,179r-22,72r-53,0r23,-68r-70,-183r58,0","k":{"\u00ad":11,"o":7,"g":7,"e":7,"d":7,"c":7,"a":7,".":34,",":27}},"z":{"d":"12,-47r92,-99r-90,0r0,-36r149,0r0,46r-92,99r96,0r0,37r-155,0r0,-47","w":180,"k":{"o":7,"e":7}},"{":{"d":"-5,-113v71,0,15,-118,80,-138v12,-4,28,-8,50,-9r0,29v-36,2,-41,29,-40,68v1,41,-17,63,-57,65v50,2,58,41,58,97v0,23,15,36,39,37r0,29v-71,1,-89,-37,-89,-113v0,-23,-18,-29,-41,-34r0,-31","w":119},"|":{"d":"74,-270r0,360r-48,0r0,-360r48,0","w":100},"}":{"d":"125,-82v-73,1,-14,116,-80,138v-12,4,-28,8,-50,9r0,-29v41,1,40,-38,40,-79v0,-34,23,-52,56,-55v-49,-2,-57,-40,-57,-96v0,-23,-15,-35,-39,-37r0,-29v65,1,93,30,88,98v-2,32,15,46,42,49r0,31","w":119},"~":{"d":"84,-78v-19,-7,-47,-9,-47,16r-31,0v2,-52,41,-81,94,-60v23,9,69,28,74,-8r30,0v-3,36,-17,69,-56,69v-23,0,-41,-8,-64,-17","w":210},"\u00a0":{"w":100},"\u00a1":{"d":"95,-144r-46,0r0,-48r46,0r0,48xm91,-121r7,189r-49,0r5,-189r37,0","w":140},"\u00a2":{"d":"23,-90v0,-61,35,-100,98,-94r12,-45r25,0r-13,51v24,10,37,30,37,61r-52,0v-2,-16,-5,-34,-23,-34v-26,1,-29,33,-29,59v0,26,3,58,28,61v17,-2,24,-16,25,-35r52,0v-1,47,-34,74,-84,70r-13,49r-24,0r13,-53v-34,-12,-51,-44,-52,-90"},"\u00a3":{"d":"117,-225v-30,0,-24,37,-24,68r60,0r0,41r-60,0r0,74r95,0r0,42r-177,0r0,-42r26,0r0,-74r-30,0r0,-41r30,0v-14,-84,51,-123,123,-97v24,8,34,30,34,60r-54,0v1,-18,-6,-31,-23,-31"},"\u00a4":{"d":"138,-125v0,-23,-16,-37,-38,-38v-21,-1,-39,17,-38,38v1,22,15,38,38,38v23,0,38,-15,38,-38xm140,-57v-18,14,-63,14,-81,0r-24,24r-28,-28r24,-24v-14,-18,-14,-63,0,-81r-24,-24r28,-28r24,24v20,-15,60,-13,81,0r24,-24r28,28r-24,24v13,17,15,64,0,81r24,24r-28,28"},"\u00a5":{"d":"73,-49r-58,0r0,-27r58,0r0,-26r-58,0r0,-26r45,0r-60,-131r65,0r39,118r40,-118r58,0r-59,131r42,0r0,26r-57,0r0,26r57,0r0,26r-56,0r-1,50r-55,0r0,-49"},"\u00a6":{"d":"74,-63r0,126r-48,0r0,-126r48,0xm74,-243r0,126r-48,0r0,-126r48,0","w":100},"\u00a7":{"d":"118,-146v-13,-25,-62,-4,-46,25v5,8,14,13,24,16v17,-5,32,-22,22,-41xm166,-49v0,62,-85,65,-134,45r1,-40v16,7,30,14,52,16v30,2,41,-31,9,-39v-32,-8,-68,-17,-68,-59v1,-22,13,-39,33,-45v-15,-6,-27,-19,-28,-41v-3,-55,87,-59,125,-39r-1,37v-16,-7,-67,-30,-74,1v12,40,86,13,85,75v1,24,-14,37,-30,45v15,9,30,19,30,44"},"\u00a8":{"d":"0,-258r37,0r0,42r-37,0r0,-42xm62,-258r37,0r0,42r-37,0r0,-42","w":100},"\u00a9":{"d":"71,-127v-5,-69,68,-104,121,-69v12,9,17,22,17,38r-37,0v1,-16,-10,-28,-27,-28v-51,0,-52,113,-1,113v16,0,29,-12,29,-30r38,0v-3,35,-27,54,-64,54v-51,0,-73,-29,-76,-78xm257,-130v0,-68,-45,-113,-114,-113v-69,0,-113,46,-113,113v0,68,44,114,113,114v69,0,114,-45,114,-114xm8,-130v0,-83,55,-136,135,-136v80,0,136,53,136,136v0,83,-53,136,-136,136v-82,0,-135,-54,-135,-136","w":288},"\u00aa":{"d":"58,-159v18,0,20,-17,21,-34v-18,-1,-37,3,-38,18v-1,9,8,16,17,16xm61,-253v64,0,48,58,53,112r-31,0r-1,-15v-12,26,-75,23,-75,-15v0,-35,37,-41,72,-40v1,-15,-4,-23,-17,-24v-8,0,-17,6,-16,16r-34,0v1,-26,22,-34,49,-34","w":120},"\u00ab":{"d":"98,-91r39,-68r47,0r-34,68r34,71r-47,0xm10,-91r39,-68r48,0r-34,68r34,71r-48,0","k":{"Y":36,"W":9,"V":18,"T":45,".":9,",":9}},"\u00ac":{"d":"9,-161r192,0r0,130r-49,0r0,-83r-143,0r0,-47","w":210},"\u00ad":{"d":"16,-116r89,0r0,41r-89,0r0,-41","w":119},"\u2010":{"d":"16,-116r89,0r0,41r-89,0r0,-41","w":119},"\u00ae":{"d":"145,-139v27,5,32,-42,8,-42r-31,0r0,42r23,0xm171,-53v-8,-18,5,-62,-22,-61r-27,0r0,61r-29,0r0,-153v46,3,106,-11,106,40v0,23,-14,32,-29,38v35,1,20,52,33,75r-32,0xm258,-130v0,-68,-46,-114,-114,-114v-68,0,-114,45,-114,114v0,69,45,115,114,115v67,0,114,-46,114,-115xm8,-130v0,-81,55,-136,136,-136v81,0,136,54,136,136v0,81,-53,136,-136,136v-82,0,-136,-54,-136,-136","w":288},"\u00af":{"d":"-13,-225r0,-24r123,0r0,24r-123,0","w":100},"\u00b0":{"d":"95,-194v0,-12,-11,-24,-24,-24v-12,0,-23,11,-23,24v0,13,11,24,23,24v13,0,24,-11,24,-24xm10,-194v0,-36,25,-61,61,-61v36,0,61,25,61,61v0,36,-25,61,-61,61v-36,0,-61,-25,-61,-61","w":144},"\u00b1":{"d":"9,-35r192,0r0,47r-192,0r0,-47xm81,-101r-72,0r0,-47r72,0r0,-56r48,0r0,56r72,0r0,47r-72,0r0,54r-48,0r0,-54","w":210},"\u00b2":{"d":"62,-233v-14,0,-21,10,-22,22r-35,0v-2,-31,26,-42,56,-44v49,-4,71,46,38,77v-19,18,-37,37,-60,52r78,-1r0,24r-114,0r0,-30v26,-27,64,-42,78,-81v-1,-9,-8,-19,-19,-19","w":119},"\u00b3":{"d":"116,-143v3,54,-100,61,-113,14v-1,-5,-1,-10,-1,-13r36,0v1,12,8,20,21,20v11,0,22,-7,21,-21v-1,-20,-18,-23,-40,-22r0,-25v19,-1,39,-3,40,-22v0,-12,-8,-18,-20,-18v-11,0,-21,6,-20,18r-36,0v0,-55,109,-56,110,-1v-1,20,-14,31,-31,34v20,6,32,16,33,36","w":119},"\u00b4":{"d":"55,-211r-29,0r30,-52r48,0","w":100},"\u00b5":{"d":"148,-22v-7,27,-64,35,-77,7r0,91r-46,0r1,-258r46,0v7,54,-22,147,34,147v57,0,28,-93,35,-147r47,0r0,182r-40,0r0,-22","w":219},"\u00b6":{"d":"-8,-166v0,-58,36,-90,95,-90r119,0r0,37r-19,0r0,286r-45,0r0,-286r-34,0r0,286r-45,0r0,-153v-45,-1,-71,-34,-71,-80"},"\u00b7":{"d":"27,-125r45,0r0,48r-45,0r0,-48","w":100},"\u22c5":{"d":"27,-125r45,0r0,48r-45,0r0,-48","w":100},"\u2219":{"d":"27,-125r45,0r0,48r-45,0r0,-48","w":100},"\u00b8":{"d":"86,45v1,37,-55,39,-81,25r8,-15v13,8,44,13,45,-7v2,-15,-20,-15,-31,-10r-7,-8r23,-32r17,0r-17,23v22,-6,42,4,43,24","w":100},"\u00b9":{"d":"17,-229v25,-8,37,-29,74,-23r0,151r-36,0r0,-118v-10,8,-25,15,-38,20r0,-30","w":119},"\u00ba":{"d":"67,-231v-21,0,-27,16,-26,37v0,23,8,35,25,35v21,-1,26,-14,26,-37v0,-20,-6,-35,-25,-35xm66,-137v-39,0,-60,-21,-61,-58v-1,-36,25,-59,61,-58v37,1,62,19,61,58v0,38,-24,58,-61,58","w":132},"\u00bb":{"d":"99,-20r34,-68r-34,-71r48,0r39,71r-39,68r-48,0xm12,-20r34,-68r-34,-71r47,0r39,71r-39,68r-47,0","k":{"Y":45,"W":27,"V":41,"T":59,"A":9,".":9,",":9}},"\u00bc":{"d":"3,-229v25,-8,37,-29,74,-23r0,151r-36,0r0,-118v-10,8,-25,15,-38,20r0,-30xm201,-261r30,0r-150,271r-30,0xm201,-57r40,0r2,-56xm175,-33r0,-29r65,-89r36,0r-1,93r22,0r0,25r-22,0r0,33r-36,0r0,-33r-64,0","w":300},"\u00bd":{"d":"237,-130v-14,0,-21,10,-22,22r-35,0v-2,-31,26,-43,56,-45v48,-3,71,46,38,77v-19,18,-39,38,-60,53r78,-2r0,25r-115,0r0,-31v27,-27,66,-41,79,-81v-1,-9,-7,-19,-19,-18xm8,-229v25,-8,37,-29,73,-23r0,151r-35,0r0,-118v-11,8,-25,15,-38,20r0,-30xm201,-261r29,0r-150,271r-30,0","w":300},"\u00be":{"d":"122,-143v3,54,-101,60,-112,14v-1,-5,-1,-10,-1,-13r35,0v1,12,8,21,22,20v11,0,20,-7,20,-21v-1,-20,-18,-23,-40,-22r0,-25v20,-1,40,-3,41,-22v0,-12,-9,-19,-21,-18v-11,0,-20,7,-20,18r-35,0v1,-29,24,-42,55,-42v31,0,55,14,55,41v0,20,-15,31,-32,34v20,6,32,15,33,36xm217,-261r29,0r-150,271r-29,0xm194,-57r40,0r2,-56xm171,-33r0,-29r65,-89r36,0r-1,93r22,0r0,25r-22,0r0,33r-36,0r0,-33r-64,0","w":300},"\u00bf":{"d":"128,-147r-43,0r0,-43r43,0r0,43xm161,68v-64,17,-161,6,-145,-75v10,-54,80,-51,70,-125r41,0v12,70,-51,78,-57,135v-4,43,59,41,91,27r0,38","w":180},"\u00c0":{"d":"156,-278r-30,0r-50,-52r50,0xm163,-98r-36,-111r-38,111r74,0xm162,-260r90,260r-56,0r-19,-56r-102,0r-20,56r-53,0r94,-260r66,0","w":259},"\u00c1":{"d":"135,-278r-29,0r30,-52r48,0xm163,-98r-36,-111r-38,111r74,0xm162,-260r90,260r-56,0r-19,-56r-102,0r-20,56r-53,0r94,-260r66,0","w":259},"\u00c2":{"d":"112,-330r37,0r37,52r-32,0r-24,-31r-26,31r-32,0xm163,-98r-36,-111r-38,111r74,0xm162,-260r90,260r-56,0r-19,-56r-102,0r-20,56r-53,0r94,-260r66,0","w":259},"\u00c3":{"d":"153,-284v-25,-1,-57,-29,-69,3r-19,0v1,-44,51,-53,85,-31v13,3,24,-3,25,-16r18,0v-3,24,-13,44,-40,44xm163,-98r-36,-111r-38,111r74,0xm162,-260r90,260r-56,0r-19,-56r-102,0r-20,56r-53,0r94,-260r66,0","w":259},"\u00c4":{"d":"80,-322r37,0r0,42r-37,0r0,-42xm142,-322r37,0r0,42r-37,0r0,-42xm163,-98r-36,-111r-38,111r74,0xm162,-260r90,260r-56,0r-19,-56r-102,0r-20,56r-53,0r94,-260r66,0","w":259},"\u00c5":{"d":"149,-301v0,-10,-8,-19,-19,-19v-10,0,-20,8,-19,19v-1,10,9,20,19,19v11,1,19,-9,19,-19xm94,-301v0,-23,14,-37,36,-37v22,0,36,14,36,37v0,22,-14,37,-36,37v-21,0,-36,-14,-36,-37xm163,-98r-36,-111r-38,111r74,0xm162,-260r90,260r-56,0r-19,-56r-102,0r-20,56r-53,0r94,-260r66,0","w":259},"\u00c6":{"d":"178,-98r-15,-113r-55,113r70,0xm141,-260r197,0r0,43r-121,0r10,64r105,0r0,41r-99,0r10,69r98,0r0,43r-149,0r-8,-57r-98,0r-29,57r-60,0","w":360},"\u00c7":{"d":"125,-35v30,0,45,-19,47,-49r58,0v-2,59,-39,89,-99,90r-12,16v23,-4,43,3,43,25v-1,37,-53,37,-80,25r7,-15v14,7,46,11,46,-8v0,-13,-20,-16,-31,-10r-8,-7r19,-27v-71,-7,-98,-56,-103,-130v-7,-109,105,-174,189,-113v17,12,27,35,27,63r-57,0v-1,-25,-14,-47,-42,-46v-50,2,-61,54,-58,109v2,39,12,77,54,77","w":240},"\u00c8":{"d":"136,-278r-30,0r-50,-52r50,0xm27,-260r174,0r0,42r-119,0r0,62r111,0r0,43r-111,0r0,70r123,0r0,43r-178,0r0,-260","w":219},"\u00c9":{"d":"115,-278r-29,0r30,-52r48,0xm27,-260r174,0r0,42r-119,0r0,62r111,0r0,43r-111,0r0,70r123,0r0,43r-178,0r0,-260","w":219},"\u00ca":{"d":"92,-330r37,0r37,52r-32,0r-24,-31r-25,31r-33,0xm27,-260r174,0r0,42r-119,0r0,62r111,0r0,43r-111,0r0,70r123,0r0,43r-178,0r0,-260","w":219},"\u00cb":{"d":"60,-322r37,0r0,42r-37,0r0,-42xm122,-322r37,0r0,42r-37,0r0,-42xm27,-260r174,0r0,42r-119,0r0,62r111,0r0,43r-111,0r0,70r123,0r0,43r-178,0r0,-260","w":219},"\u00cc":{"d":"76,-278r-30,0r-50,-52r50,0xm22,-261r55,0r0,261r-55,0r0,-261","w":100},"\u00cd":{"d":"55,-278r-29,0r30,-52r48,0xm22,-261r55,0r0,261r-55,0r0,-261","w":100},"\u00ce":{"d":"32,-330r37,0r37,52r-32,0r-24,-31r-26,31r-32,0xm22,-261r55,0r0,261r-55,0r0,-261","w":100},"\u00cf":{"d":"0,-322r37,0r0,42r-37,0r0,-42xm62,-322r37,0r0,42r-37,0r0,-42xm22,-261r55,0r0,261r-55,0r0,-261","w":100},"\u00d0":{"d":"185,-120v5,-70,-30,-108,-105,-97r0,59r52,0r0,31r-52,0r0,84v66,10,101,-20,105,-77xm243,-134v0,90,-46,137,-139,134r-81,0r0,-127r-23,0r0,-31r23,0r0,-102r102,1v74,4,118,46,118,125","w":259},"\u00d1":{"d":"163,-284v-25,-1,-57,-29,-69,3r-19,0v1,-45,52,-52,86,-31v13,4,23,-4,24,-16r18,0v-3,24,-13,44,-40,44xm26,-260r81,0r97,205r0,-205r52,0r0,260r-77,0r-101,-216r0,216r-52,0r0,-260","w":280},"\u00d2":{"d":"166,-278r-30,0r-50,-52r50,0xm140,-226v-52,0,-67,44,-67,98v0,49,13,93,67,93v51,-1,66,-43,66,-98v0,-51,-18,-93,-66,-93xm139,6v-81,0,-124,-50,-124,-132v0,-84,39,-140,125,-140v83,0,125,54,125,134v0,83,-41,138,-126,138","w":280},"\u00d3":{"d":"145,-278r-29,0r30,-52r48,0xm140,-226v-52,0,-67,44,-67,98v0,49,13,93,67,93v51,-1,66,-43,66,-98v0,-51,-18,-93,-66,-93xm139,6v-81,0,-124,-50,-124,-132v0,-84,39,-140,125,-140v83,0,125,54,125,134v0,83,-41,138,-126,138","w":280},"\u00d4":{"d":"122,-330r37,0r37,52r-32,0r-24,-31r-26,31r-32,0xm140,-226v-52,0,-67,44,-67,98v0,49,13,93,67,93v51,-1,66,-43,66,-98v0,-51,-18,-93,-66,-93xm139,6v-81,0,-124,-50,-124,-132v0,-84,39,-140,125,-140v83,0,125,54,125,134v0,83,-41,138,-126,138","w":280},"\u00d5":{"d":"163,-284v-25,-1,-57,-29,-69,3r-19,0v1,-45,52,-52,86,-31v13,4,23,-4,24,-16r18,0v-3,24,-13,44,-40,44xm140,-226v-52,0,-67,44,-67,98v0,49,13,93,67,93v51,-1,66,-43,66,-98v0,-51,-18,-93,-66,-93xm139,6v-81,0,-124,-50,-124,-132v0,-84,39,-140,125,-140v83,0,125,54,125,134v0,83,-41,138,-126,138","w":280},"\u00d6":{"d":"90,-322r37,0r0,42r-37,0r0,-42xm152,-322r37,0r0,42r-37,0r0,-42xm140,-226v-52,0,-67,44,-67,98v0,49,13,93,67,93v51,-1,66,-43,66,-98v0,-51,-18,-93,-66,-93xm139,6v-81,0,-124,-50,-124,-132v0,-84,39,-140,125,-140v83,0,125,54,125,134v0,83,-41,138,-126,138","w":280},"\u00d7":{"d":"72,-96r-60,-60r33,-33r60,60r60,-60r33,33r-60,60r60,60r-33,33r-60,-60r-60,60r-33,-33","w":210},"\u00d8":{"d":"140,-34v68,0,72,-84,60,-146r-111,120v9,15,25,26,51,26xm148,-226v-70,-10,-85,74,-70,141r110,-118v-9,-13,-23,-21,-40,-23xm139,-266v35,0,62,9,83,27r34,-36r17,17r-35,37v18,23,26,53,26,90v0,85,-40,137,-124,137v-36,0,-65,-9,-86,-28r-36,39r-17,-17r37,-40v-17,-21,-24,-51,-24,-86v0,-84,39,-140,125,-140","w":280},"\u00d9":{"d":"166,-278r-30,0r-50,-52r50,0xm137,5v-70,0,-111,-34,-111,-109r0,-156r56,0r0,159v-15,68,83,86,110,35v11,-54,2,-131,5,-194r54,0r0,163v0,70,-47,102,-114,102","w":280},"\u00da":{"d":"145,-278r-29,0r30,-52r48,0xm137,5v-70,0,-111,-34,-111,-109r0,-156r56,0r0,159v-15,68,83,86,110,35v11,-54,2,-131,5,-194r54,0r0,163v0,70,-47,102,-114,102","w":280},"\u00db":{"d":"122,-330r37,0r37,52r-32,0r-24,-31r-26,31r-32,0xm137,5v-70,0,-111,-34,-111,-109r0,-156r56,0r0,159v-15,68,83,86,110,35v11,-54,2,-131,5,-194r54,0r0,163v0,70,-47,102,-114,102","w":280},"\u00dc":{"d":"90,-322r37,0r0,42r-37,0r0,-42xm152,-322r37,0r0,42r-37,0r0,-42xm137,5v-70,0,-111,-34,-111,-109r0,-156r56,0r0,159v-15,68,83,86,110,35v11,-54,2,-131,5,-194r54,0r0,163v0,70,-47,102,-114,102","w":280},"\u00dd":{"d":"125,-278r-29,0r30,-52r48,0xm71,-259r54,118r54,-118r58,0r-88,164r0,95r-55,0r0,-95r-88,-164r65,0","w":240},"\u00de":{"d":"152,-143v0,-38,-36,-35,-74,-34r0,74v40,3,74,-2,74,-40xm210,-142v0,68,-53,88,-130,81r0,61r-57,0r0,-260r55,0r0,40v72,-2,132,7,132,78","w":219},"\u00df":{"d":"140,-212v-6,-37,-66,-21,-66,9r-1,203r-52,0r0,-194v1,-53,36,-74,89,-73v42,2,79,12,83,54v4,41,-51,35,-41,71v24,26,75,29,75,82v0,72,-96,85,-128,40v-5,-8,-7,-18,-8,-32r47,0v0,12,6,22,19,22v18,0,25,-26,16,-42v-18,-28,-71,-27,-74,-71v-2,-34,35,-39,41,-69","w":240},"\u00e0":{"d":"126,-211r-30,0r-50,-52r50,0xm102,-85v-35,-4,-49,55,-9,55v28,0,33,-26,33,-56v-9,-1,-17,0,-24,1xm176,-128v2,44,-4,92,5,128r-49,0r-1,-25v-21,45,-120,38,-116,-25v4,-56,53,-66,111,-67v9,-39,-43,-52,-50,-20v0,3,-1,5,-1,7r-52,0v1,-46,43,-60,90,-56v36,3,62,21,63,58"},"\u00e1":{"d":"105,-211r-29,0r30,-52r48,0xm102,-85v-35,-4,-49,55,-9,55v28,0,33,-26,33,-56v-9,-1,-17,0,-24,1xm176,-128v2,44,-4,92,5,128r-49,0r-1,-25v-21,45,-120,38,-116,-25v4,-56,53,-66,111,-67v9,-39,-43,-52,-50,-20v0,3,-1,5,-1,7r-52,0v1,-46,43,-60,90,-56v36,3,62,21,63,58"},"\u00e2":{"d":"82,-263r37,0r37,52r-32,0r-24,-30r-25,30r-33,0xm102,-85v-35,-4,-49,55,-9,55v28,0,33,-26,33,-56v-9,-1,-17,0,-24,1xm176,-128v2,44,-4,92,5,128r-49,0r-1,-25v-21,45,-120,38,-116,-25v4,-56,53,-66,111,-67v9,-39,-43,-52,-50,-20v0,3,-1,5,-1,7r-52,0v1,-46,43,-60,90,-56v36,3,62,21,63,58"},"\u00e3":{"d":"123,-216v-26,0,-58,-31,-69,3r-19,0v2,-45,51,-54,86,-31v14,1,22,-4,24,-16r18,0v-3,24,-14,44,-40,44xm102,-85v-35,-4,-49,55,-9,55v28,0,33,-26,33,-56v-9,-1,-17,0,-24,1xm176,-128v2,44,-4,92,5,128r-49,0r-1,-25v-21,45,-120,38,-116,-25v4,-56,53,-66,111,-67v9,-39,-43,-52,-50,-20v0,3,-1,5,-1,7r-52,0v1,-46,43,-60,90,-56v36,3,62,21,63,58"},"\u00e4":{"d":"50,-258r37,0r0,42r-37,0r0,-42xm112,-258r37,0r0,42r-37,0r0,-42xm102,-85v-35,-4,-49,55,-9,55v28,0,33,-26,33,-56v-9,-1,-17,0,-24,1xm176,-128v2,44,-4,92,5,128r-49,0r-1,-25v-21,45,-120,38,-116,-25v4,-56,53,-66,111,-67v9,-39,-43,-52,-50,-20v0,3,-1,5,-1,7r-52,0v1,-46,43,-60,90,-56v36,3,62,21,63,58"},"\u00e5":{"d":"120,-237v0,-10,-9,-19,-20,-19v-10,0,-19,9,-19,19v0,9,9,20,19,19v11,1,20,-9,20,-19xm64,-237v0,-22,14,-37,36,-37v22,0,36,14,36,37v0,23,-14,37,-36,37v-22,0,-36,-15,-36,-37xm102,-85v-35,-4,-49,55,-9,55v28,0,33,-26,33,-56v-9,-1,-17,0,-24,1xm176,-128v2,44,-4,92,5,128r-49,0r-1,-25v-21,45,-120,38,-116,-25v4,-56,53,-66,111,-67v9,-39,-43,-52,-50,-20v0,3,-1,5,-1,7r-52,0v1,-46,43,-60,90,-56v36,3,62,21,63,58"},"\u00e6":{"d":"105,-83v-41,-7,-55,56,-12,56v28,0,41,-26,40,-56v-11,-1,-16,-1,-28,0xm251,-114v8,-41,-45,-55,-61,-24r-6,24r67,0xm23,-131v-1,-67,111,-70,138,-28v15,-16,32,-29,64,-28v58,1,85,41,81,104r-121,0v-1,30,9,54,37,54v19,1,26,-13,30,-27r50,0v2,69,-120,80,-146,28v-23,46,-145,53,-142,-22v2,-58,58,-65,119,-64v11,-44,-54,-58,-58,-17r-52,0","w":320},"\u00e7":{"d":"120,-117v-3,-14,-6,-35,-24,-34v-28,2,-28,39,-28,69v0,22,4,51,28,51v17,0,23,-16,24,-35r53,0v0,44,-30,68,-71,71r-13,17v23,-4,43,3,43,25v-1,37,-53,37,-80,25r7,-15v14,7,46,11,46,-8v0,-13,-20,-16,-31,-10v-15,-10,7,-23,12,-35v-50,-3,-68,-44,-73,-95v-9,-93,111,-125,152,-58v5,9,7,20,7,32r-52,0","w":180},"\u00e8":{"d":"126,-211r-30,0r-50,-52r50,0xm134,-111v7,-42,-54,-56,-63,-15v-1,5,-3,10,-3,15r66,0xm184,-54v-4,45,-44,65,-95,60v-49,-4,-74,-40,-74,-93v0,-60,29,-101,89,-101v61,0,88,48,84,111r-122,0v1,26,9,48,37,48v18,-1,28,-8,32,-25r49,0"},"\u00e9":{"d":"105,-211r-29,0r30,-52r48,0xm134,-111v7,-42,-54,-56,-63,-15v-1,5,-3,10,-3,15r66,0xm184,-54v-4,45,-44,65,-95,60v-49,-4,-74,-40,-74,-93v0,-60,29,-101,89,-101v61,0,88,48,84,111r-122,0v1,26,9,48,37,48v18,-1,28,-8,32,-25r49,0"},"\u00ea":{"d":"82,-263r37,0r37,52r-32,0r-24,-30r-25,30r-33,0xm134,-111v7,-42,-54,-56,-63,-15v-1,5,-3,10,-3,15r66,0xm184,-54v-4,45,-44,65,-95,60v-49,-4,-74,-40,-74,-93v0,-60,29,-101,89,-101v61,0,88,48,84,111r-122,0v1,26,9,48,37,48v18,-1,28,-8,32,-25r49,0"},"\u00eb":{"d":"50,-258r37,0r0,42r-37,0r0,-42xm112,-258r37,0r0,42r-37,0r0,-42xm134,-111v7,-42,-54,-56,-63,-15v-1,5,-3,10,-3,15r66,0xm184,-54v-4,45,-44,65,-95,60v-49,-4,-74,-40,-74,-93v0,-60,29,-101,89,-101v61,0,88,48,84,111r-122,0v1,26,9,48,37,48v18,-1,28,-8,32,-25r49,0"},"\u00ec":{"d":"76,-211r-30,0r-50,-52r50,0xm23,-182r54,0r0,182r-54,0r0,-182","w":100},"\u00ed":{"d":"55,-211r-29,0r30,-52r48,0xm23,-182r54,0r0,182r-54,0r0,-182","w":100},"\u00ee":{"d":"32,-263r37,0r37,52r-32,0r-24,-30r-26,30r-32,0xm23,-182r54,0r0,182r-54,0r0,-182","w":100},"\u00ef":{"d":"0,-258r37,0r0,42r-37,0r0,-42xm62,-258r37,0r0,42r-37,0r0,-42xm23,-182r54,0r0,182r-54,0r0,-182","w":100},"\u00f0":{"d":"111,-144v-55,0,-55,117,0,115v31,0,39,-29,39,-60v0,-29,-9,-55,-39,-55xm148,-158v-13,-23,-31,-40,-54,-55r-34,22r-15,-12r31,-21r-36,-16r29,-33r45,23r28,-19r16,12r-27,18v39,30,71,69,72,139v0,65,-29,104,-94,105v-58,1,-92,-33,-92,-90v0,-74,77,-113,131,-73","w":219},"\u00f1":{"d":"133,-216v-26,0,-58,-31,-69,3r-19,0v2,-45,51,-54,86,-31v14,1,22,-4,24,-16r19,0v-3,24,-15,44,-41,44xm112,-148v-57,3,-26,95,-34,148r-54,0r-1,-183r51,0r2,28v11,-36,88,-43,108,-8v21,36,7,108,11,163r-54,0r-1,-124v-2,-15,-11,-24,-28,-24","w":219},"\u00f2":{"d":"136,-211r-30,0r-50,-52r50,0xm109,-150v-34,0,-38,30,-39,61v0,35,9,58,40,58v34,0,39,-28,39,-62v0,-31,-8,-57,-40,-57xm108,6v-61,0,-93,-35,-93,-95v0,-59,31,-97,94,-97v61,0,94,35,94,95v0,61,-32,97,-95,97","w":219},"\u00f3":{"d":"115,-211r-29,0r30,-52r48,0xm109,-150v-34,0,-38,30,-39,61v0,35,9,58,40,58v34,0,39,-28,39,-62v0,-31,-8,-57,-40,-57xm108,6v-61,0,-93,-35,-93,-95v0,-59,31,-97,94,-97v61,0,94,35,94,95v0,61,-32,97,-95,97","w":219},"\u00f4":{"d":"92,-263r37,0r37,52r-32,0r-24,-30r-25,30r-33,0xm109,-150v-34,0,-38,30,-39,61v0,35,9,58,40,58v34,0,39,-28,39,-62v0,-31,-8,-57,-40,-57xm108,6v-61,0,-93,-35,-93,-95v0,-59,31,-97,94,-97v61,0,94,35,94,95v0,61,-32,97,-95,97","w":219},"\u00f5":{"d":"133,-216v-26,0,-58,-31,-69,3r-19,0v2,-45,51,-54,86,-31v14,1,22,-4,24,-16r19,0v-3,24,-15,44,-41,44xm109,-150v-34,0,-38,30,-39,61v0,35,9,58,40,58v34,0,39,-28,39,-62v0,-31,-8,-57,-40,-57xm108,6v-61,0,-93,-35,-93,-95v0,-59,31,-97,94,-97v61,0,94,35,94,95v0,61,-32,97,-95,97","w":219},"\u00f6":{"d":"60,-258r37,0r0,42r-37,0r0,-42xm122,-258r37,0r0,42r-37,0r0,-42xm109,-150v-34,0,-38,30,-39,61v0,35,9,58,40,58v34,0,39,-28,39,-62v0,-31,-8,-57,-40,-57xm108,6v-61,0,-93,-35,-93,-95v0,-59,31,-97,94,-97v61,0,94,35,94,95v0,61,-32,97,-95,97","w":219},"\u00f7":{"d":"77,-190r53,0r0,52r-53,0r0,-52xm77,-54r53,0r0,53r-53,0r0,-53xm8,-119r191,0r0,46r-191,0r0,-46","w":210},"\u00f8":{"d":"78,-49v24,40,83,8,70,-40v0,-10,0,-23,-2,-30xm138,-139v-25,-24,-67,-5,-67,33v0,12,-2,25,0,36xm15,-89v0,-86,89,-119,153,-81r26,-27r15,13r-27,28v12,14,22,36,21,66v-2,59,-33,95,-94,96v-30,1,-49,-8,-64,-21r-27,28r-15,-12r29,-31v-9,-15,-17,-33,-17,-59","w":219},"\u00f9":{"d":"136,-211r-30,0r-50,-52r50,0xm142,-24v-27,49,-120,33,-120,-45r0,-113r54,0r0,122v1,16,9,28,28,27v59,-2,26,-95,34,-149r55,0r2,182r-51,0","w":219},"\u00fa":{"d":"115,-211r-29,0r30,-52r48,0xm142,-24v-27,49,-120,33,-120,-45r0,-113r54,0r0,122v1,16,9,28,28,27v59,-2,26,-95,34,-149r55,0r2,182r-51,0","w":219},"\u00fb":{"d":"92,-263r37,0r37,52r-32,0r-24,-30r-25,30r-33,0xm142,-24v-27,49,-120,33,-120,-45r0,-113r54,0r0,122v1,16,9,28,28,27v59,-2,26,-95,34,-149r55,0r2,182r-51,0","w":219},"\u00fc":{"d":"60,-258r37,0r0,42r-37,0r0,-42xm122,-258r37,0r0,42r-37,0r0,-42xm142,-24v-27,49,-120,33,-120,-45r0,-113r54,0r0,122v1,16,9,28,28,27v59,-2,26,-95,34,-149r55,0r2,182r-51,0","w":219},"\u00fd":{"d":"105,-211r-29,0r30,-52r48,0xm63,-182r40,126r40,-126r53,0r-69,179r-22,72r-53,0r23,-68r-70,-183r58,0"},"\u00fe":{"d":"67,-89v0,31,9,57,40,57v51,0,54,-119,1,-119v-32,0,-41,28,-41,62xm121,3v-25,1,-42,-10,-52,-24r0,91r-54,0r0,-330r54,0r0,104v11,-18,26,-30,55,-29v53,1,75,38,75,91v0,55,-25,95,-78,97","w":219},"\u00ff":{"d":"50,-258r37,0r0,42r-37,0r0,-42xm112,-258r37,0r0,42r-37,0r0,-42xm63,-182r40,126r40,-126r53,0r-69,179r-22,72r-53,0r23,-68r-70,-183r58,0"}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1987, 1991, 1993, 1994, 1998 Adobe Systems Incorporated.  All
 * Rights Reserved.Univers is a trademark of Linotype-Hell AG and/or its
 * subsidiaries.
 * 
 * Description:
 *  The digitally encoded machine readable software for producing the  Typefaces
 * licensed to you is copyrighted (c) 1987, 1991, 1993, 1994, 1998  Adobe Systems.
 * All Rights Reserved. This software is the property of  Adobe Systems
 * Incorporated and its licensors, and may not be reproduced,  used, displayed,
 * modified, disclosed or transferred without the express   written approval of
 * Adobe.    The digitally encoded machine readable outline data for producing  the
 * Typefaces licensed to you is copyrighted (c) 1981, 1998 Linotype-Hell AG  and/or
 * its subsidiaries. All Rights Reserved.  This data is the property of
 * Linotype-Hell AG and/or its subsidiaries  and may not be reproduced, used,
 * displayed, modified, disclosed or   transferred without the express written
 * approval of Linotype-Hell AG   and/or its subsidiaries.
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Univers LT 55","font-weight":400,"font-style":"oblique","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 4 0 0 9 0 3","ascent":"288","descent":"-72","bbox":"-15 -340.756 412 90","underline-thickness":"18","underline-position":"-27","slope":"-12","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100,"k":{"Y":65,"W":36,"V":36,"T":65,"A":18}},"\u00a0":{"w":100},"\"":{"d":"170,-249r-25,88r-19,0r14,-88r30,0xm110,-249r-24,88r-19,0r13,-88r30,0","w":144},"#":{"d":"136,-96r21,-53r-44,0r-21,53r44,0xm23,-96r40,0r21,-53r-36,0r6,-25r40,0r30,-75r29,0r-30,75r44,0r30,-75r29,0r-30,75r36,0r-6,25r-40,0r-21,53r36,0r-6,25r-40,0r-29,71r-28,0r28,-71r-44,0r-28,71r-29,0r28,-71r-36,0"},"$":{"d":"115,-29v46,6,74,-56,31,-74v-5,-2,-10,-4,-14,-5xm138,-221v-49,-4,-67,64,-15,70xm90,2v-44,0,-76,-22,-66,-70r37,0v-5,25,9,39,35,39r18,-84v-75,-2,-77,-102,-18,-125v14,-6,28,-13,48,-11r6,-30r19,0r-6,29v38,2,73,14,65,59r-38,0v3,-23,-13,-29,-34,-30r-16,76v36,10,78,24,66,74v-11,45,-44,70,-98,73r-8,35r-18,0"},"%":{"d":"64,14r217,-277r24,0r-218,277r-23,0xm224,-56v-3,20,0,40,22,39v26,-1,37,-23,41,-44v4,-19,2,-44,-21,-43v-27,1,-37,25,-42,48xm195,-37v0,-54,29,-92,83,-87v24,2,39,17,38,45v-2,46,-27,82,-74,83v-31,1,-47,-14,-47,-41xm87,-190v-4,17,-3,45,22,42v29,-2,41,-29,41,-57v0,-16,-5,-29,-23,-29v-27,0,-35,24,-40,44xm179,-216v6,66,-61,113,-113,74v-24,-49,9,-114,68,-114v28,0,43,14,45,40","w":320},"&":{"d":"123,-129v-30,22,-59,37,-52,82v19,42,95,17,112,-7xm189,-215v6,-29,-33,-29,-50,-17v-24,16,-11,47,5,63v17,-10,41,-24,45,-46xm213,-82v19,-23,30,-49,37,-86r35,0v-10,47,-26,80,-55,108r49,60r-50,0r-27,-32v-41,46,-188,63,-170,-37v7,-42,42,-63,72,-83v-26,-22,-21,-80,10,-101v35,-24,128,-24,114,36v-8,36,-38,56,-66,72","w":280},"'":{"d":"118,-249r-24,88r-19,0r13,-88r30,0","w":100},"(":{"d":"148,-271v-48,80,-86,185,-65,315r-23,0v-13,-61,-22,-147,4,-202v19,-39,39,-78,60,-113r24,0","w":119},")":{"d":"91,-184r-6,-87r23,0v14,62,21,147,-4,203v-17,38,-41,80,-60,112r-24,0v31,-62,74,-130,71,-228","w":119},"*":{"d":"210,-176r-60,-7r26,50r-27,15r-11,-57r-39,56r-21,-13r49,-51r-61,6r5,-27r60,8r-27,-50r27,-13r12,56r37,-57r21,14r-48,50r63,-7"},"+":{"d":"106,-77r-76,0r6,-27r76,0r17,-77r30,0r-16,77r76,0r-6,27r-77,0r-16,77r-30,0","w":210},",":{"d":"92,-43r-60,88r-24,0r42,-88r42,0","w":100},"-":{"d":"38,-108r91,0r-6,27r-91,0","w":119},"\u00ad":{"d":"38,-108r91,0r-6,27r-91,0","w":119},".":{"d":"39,-43r39,0r-9,43r-40,0","w":100},"\/":{"d":"136,-257r23,0r-140,263r-23,0","w":100},"0":{"d":"169,-218v-78,-27,-100,85,-97,165v1,28,39,37,60,19v36,-32,52,-99,48,-163v-1,-9,-6,-16,-11,-21xm216,-181v-9,95,-29,175,-118,186v-121,-15,-45,-227,20,-252v52,-20,104,8,98,66","k":{"1":20,"0":-14}},"1":{"d":"142,-210v-19,14,-43,27,-65,36r7,-36v23,-11,50,-26,69,-39r32,0r-53,249r-34,0","k":{"9":22,"8":5,"7":5,"6":5,"5":5,"4":13,"3":5,"2":5,"1":49,"0":20,".":36,"-":14}},"2":{"d":"61,-181v3,-67,127,-105,155,-34v8,76,-55,110,-99,145r-52,42r119,0r-7,28r-158,0r7,-33v49,-42,107,-79,146,-131v15,-21,13,-63,-23,-61v-30,2,-45,20,-50,44r-38,0"},"3":{"d":"95,6v-44,0,-78,-22,-68,-70r39,0v-15,45,52,51,77,27v20,-11,29,-57,4,-70v-12,-7,-28,-8,-46,-6r6,-30v49,9,94,-32,70,-73v-29,-20,-79,-4,-83,30r-37,0v8,-62,105,-90,152,-47v31,42,-6,100,-52,105v32,4,49,28,41,61v-10,44,-47,72,-103,73"},"4":{"d":"141,-83r28,-132r-114,132r86,0xm134,-54r-112,0r9,-43r141,-155r39,0r-36,169r36,0r-6,29r-37,0r-11,54r-35,0"},"5":{"d":"86,-139v19,-26,93,-36,108,2v31,80,-38,163,-128,139v-23,-6,-40,-26,-33,-61r37,0v-7,47,65,41,80,13v23,-24,29,-92,-20,-89v-26,1,-45,14,-52,34r-33,0r38,-148r140,0r-6,29r-109,0"},"6":{"d":"171,-94v3,-61,-76,-41,-91,-5v-12,30,-10,81,29,77v40,-4,60,-31,62,-72xm100,-230v37,-35,144,-32,124,40r-37,0v7,-48,-54,-45,-75,-14v-11,17,-22,41,-31,74v18,-29,90,-49,113,-11v37,61,-16,150,-92,146v-118,-6,-48,-192,-2,-235"},"7":{"d":"66,-249r164,0r-6,30r-138,219r-41,0r142,-219r-128,0","k":{"6":14,"4":20,".":68,"-":27,",":68}},"8":{"d":"86,-103v-31,20,-31,85,19,79v58,7,90,-93,20,-93v-16,0,-29,7,-39,14xm93,-171v12,44,92,22,94,-17v11,-42,-46,-49,-74,-29v-13,8,-26,24,-20,46xm96,-131v-51,-6,-46,-75,-13,-98v34,-40,158,-38,139,41v-8,30,-30,50,-63,56v54,4,50,89,11,113v-40,39,-164,31,-143,-48v9,-33,34,-57,69,-64"},"9":{"d":"93,-135v41,41,114,-22,81,-78v-43,-42,-110,26,-81,78xm217,-193v0,104,-34,216,-152,196v-27,-5,-42,-25,-36,-62r38,0v-12,40,43,44,66,26v24,-19,37,-56,41,-93v-21,43,-117,41,-122,-13v-6,-67,33,-115,98,-115v39,0,67,21,67,61"},":":{"d":"39,-42r40,0r-9,42r-40,0xm69,-183r40,0r-9,43r-40,0","w":100},";":{"d":"92,-43r-60,88r-24,0r42,-88r42,0xm73,-183r42,0r-10,44r-41,0","w":100},"\u037e":{"d":"92,-43r-60,88r-24,0r42,-88r42,0xm73,-183r42,0r-10,44r-41,0","w":100},"<":{"d":"36,-105r199,-72r-7,31r-158,56r134,55r-6,31r-168,-72","w":210},"=":{"d":"28,-68r183,0r-5,28r-184,0xm43,-141r184,0r-6,28r-184,0","w":210},">":{"d":"14,-4r7,-31r158,-55r-135,-56r7,-31r168,72r-6,29","w":210},"?":{"d":"69,-37r38,0r-8,37r-37,0xm81,-257v47,-15,139,-15,123,56v-14,65,-95,65,-97,142r-30,0v6,-32,10,-61,35,-75v21,-23,63,-41,52,-85v-16,-24,-60,-18,-89,-6","w":180},"@":{"d":"188,-81v39,-6,60,-49,64,-90v-30,-39,-77,20,-83,55v-3,19,1,38,19,35xm172,-175v18,-23,88,-47,94,0r11,-23r25,0v-15,37,-42,66,-49,110v47,21,91,-51,79,-112v-13,-69,-138,-60,-180,-18v-58,31,-93,171,-7,200v54,19,117,-1,153,-26r7,12v-61,54,-221,54,-229,-40v-9,-116,64,-195,176,-195v64,0,113,35,97,109v-11,50,-42,89,-94,95v-19,2,-32,-19,-20,-36v-12,39,-113,58,-94,-19v5,-22,19,-41,31,-57","w":365},"A":{"d":"100,-97r99,0r-21,-127xm168,-260r38,0r50,260r-39,0r-14,-68r-120,0r-43,68r-37,0","w":259,"k":{"\u00bb":18,"\u00ab":27,"y":7,"w":14,"v":14,"Y":41,"W":14,"V":20,"U":7,"T":27,"S":7,"Q":7,"O":7,"G":7,"C":7}},"B":{"d":"75,-29v55,1,113,6,123,-45v11,-52,-53,-46,-104,-45xm101,-150v56,2,123,3,113,-64v-12,-25,-60,-13,-96,-16xm89,-260v67,7,176,-27,163,66v-6,33,-29,49,-56,58v58,6,42,100,4,117v-33,31,-106,15,-166,19","w":240,"k":{"Y":7,"V":7}},"C":{"d":"42,-85v0,-107,61,-193,176,-175v32,5,55,28,49,70r-38,0v0,-29,-15,-47,-47,-45v-73,5,-96,72,-101,144v-3,41,15,64,56,65v33,1,56,-18,64,-42r39,0v-16,45,-54,70,-112,72v-60,1,-86,-34,-86,-89","w":240},"D":{"d":"74,-30v108,11,158,-37,162,-130v3,-65,-48,-76,-119,-70xm87,-260v84,1,186,-15,187,80v1,110,-49,186,-169,180r-73,0","w":259,"k":{"Y":20,"V":7,"J":9,"A":7}},"E":{"d":"82,-260r164,0r-7,31r-127,0r-17,81r121,0r-6,30r-121,0r-19,86r130,0r-7,32r-166,0","w":219,"k":{"Y":14,"G":14}},"F":{"d":"89,-260r155,0r-6,31r-118,0r-17,81r111,0r-7,30r-111,0r-25,118r-37,0","k":{"\u00fc":7,"\u00f6":7,"\u00e4":7,"u":7,"r":7,"o":7,"e":7,"a":7,"J":54,"A":14,".":76,"-":27,",":76}},"G":{"d":"133,-246v50,-28,170,-30,155,51r-39,0v5,-54,-86,-47,-113,-19v-28,30,-49,67,-49,124v0,70,73,77,132,59r16,-77r-59,0r6,-30r96,0r-28,128v-52,19,-155,28,-183,-17v-48,-78,6,-185,66,-219","w":280},"H":{"d":"123,-260r-24,112r124,0r23,-112r36,0r-55,260r-36,0r25,-117r-123,0r-25,117r-36,0r55,-260r36,0","w":259},"I":{"d":"87,-260r36,0r-55,260r-36,0","w":100},"J":{"d":"165,-38v-26,55,-170,61,-142,-33r38,0v-13,34,20,56,51,40v18,-8,27,-26,32,-49r38,-180r36,0r-40,190v-2,12,-8,22,-13,32","k":{"u":7,"o":7,"e":7,"a":7,"O":7,"A":14,".":9,",":9}},"K":{"d":"89,-260r35,0r-24,114r133,-114r49,0r-141,116r98,144r-50,0r-91,-138r-29,138r-36,0","w":240,"k":{"y":14,"w":14,"u":7,"o":7,"e":7,"a":4,"O":7}},"L":{"d":"89,-260r35,0r-48,228r121,0r-7,32r-157,0","k":{"y":27,"o":4,"e":4,"Y":49,"W":34,"V":43,"T":34,"O":18,"-":63}},"M":{"d":"87,-260r64,0r28,214r121,-214r59,0r-55,260r-35,0r50,-234r-135,234r-35,0r-32,-233r-50,233r-35,0","w":339},"N":{"d":"89,-260r50,0r83,215r45,-215r33,0r-55,260r-46,0r-85,-221r-47,221r-33,0","w":280,"k":{"T":9}},"O":{"d":"192,-237v-81,0,-105,71,-110,150v-2,40,25,63,63,63v78,0,109,-74,109,-150v0,-42,-20,-63,-62,-63xm44,-77v0,-121,79,-221,201,-181v80,26,43,181,-4,221v-42,58,-197,66,-197,-40","w":280,"k":{"e":4,"a":7,"Y":20,"X":14,"W":14,"V":14,"T":14,"A":18,".":9,",":9}},"P":{"d":"99,-146v58,3,128,-1,111,-67v-7,-28,-58,-15,-93,-18xm87,-260r127,3v50,12,44,95,3,119v-24,24,-74,23,-125,22r-24,116r-36,0","w":219,"k":{"u":7,"r":7,"o":11,"e":11,"a":11,"A":34,".":76,"-":43,",":76}},"Q":{"d":"187,-236v-76,5,-96,70,-105,143v-11,86,109,86,136,27v33,-43,57,-175,-31,-170xm211,-23v16,-6,43,-5,67,-5r-7,28v-92,-1,-221,34,-227,-68v-6,-105,45,-193,153,-198v119,-6,101,160,46,214v-9,10,-19,20,-32,29","w":280,"k":{"U":7}},"R":{"d":"97,-148v57,3,132,5,116,-64v-13,-27,-61,-15,-98,-18xm192,-132v49,10,17,82,27,132r-38,0v-9,-46,33,-124,-44,-117r-46,0r-24,117r-36,0r55,-260v67,8,180,-27,168,65v-4,33,-31,55,-62,63","w":240,"k":{"y":7,"u":7,"o":7,"e":7,"a":7,"Y":14,"W":11,"V":11,"T":11}},"S":{"d":"114,6v-53,2,-93,-27,-78,-82r38,0v-16,48,43,59,85,46v34,-10,56,-65,10,-78v-46,-14,-118,-13,-105,-81v11,-54,64,-79,131,-75v38,2,68,25,58,69r-37,0v8,-48,-61,-45,-91,-28v-22,12,-33,52,-3,63v44,17,120,12,114,75v-6,60,-53,89,-122,91","w":240,"k":{"y":7,"w":4,"v":7,"o":7,"e":7,"c":7,"a":7,"Y":7,"V":7,"T":7,"A":7}},"T":{"d":"95,0r48,-229r-87,0r7,-31r210,0r-7,31r-87,0r-49,229r-35,0","w":219,"k":{"\u00fc":34,"\u00f8":41,"\u00f6":41,"\u00e9":41,"\u00e5":41,"\u00e4":41,"\u00bb":63,"\u00ab":63,"y":34,"w":34,"u":34,"r":34,"o":41,"i":-7,"e":41,"a":41,"O":14,"J":45,"A":27,";":49,":":49,".":61,"-":61,",":61}},"U":{"d":"231,-31v-44,50,-194,55,-180,-45v10,-63,26,-123,38,-184r36,0r-37,179v-11,72,103,64,126,24v32,-55,33,-136,52,-203r35,0r-37,173v-6,22,-19,40,-33,56","w":280,"k":{".":9,",":9}},"V":{"d":"137,0r-39,0r-38,-260r40,0r27,222r125,-222r36,0","w":240,"k":{"\u00fc":20,"\u00f6":27,"\u00e4":27,"\u00bb":36,"\u00ab":36,"u":20,"o":27,"i":9,"e":27,"a":27,"O":14,"G":14,"C":7,"A":20,";":27,":":27,".":34,"-":34,",":34}},"W":{"d":"96,-260r11,214r108,-214r44,0r13,216r105,-216r35,0r-132,260r-40,0r-13,-222r-111,222r-39,0r-19,-260r38,0","w":360,"k":{"\u00fc":9,"\u00f6":20,"\u00e4":20,"\u00bb":27,"\u00ab":27,"y":9,"u":9,"r":9,"o":20,"e":20,"a":20,"O":14,"A":14,";":14,":":14,".":20,"-":14,",":20}},"X":{"d":"119,-260r49,100r91,-100r44,0r-119,125r68,135r-45,0r-54,-112r-103,112r-43,0r129,-136r-63,-124r46,0","w":259,"k":{"O":7}},"Y":{"d":"126,-102r-68,-158r44,0r50,128r105,-128r40,0r-135,160r-22,100r-36,0","w":240,"k":{"\u00bb":45,"\u00ab":54,"u":20,"o":34,"i":13,"e":34,"a":34,"O":14,"C":14,"A":41,";":32,":":32,".":58,"-":59,",":58}},"Z":{"d":"20,-36r191,-192r-146,0r7,-32r189,0r-8,36r-192,192r154,0r-7,32r-195,0","w":219},"[":{"d":"94,-270r62,0r-4,19r-34,0r-58,277r34,0r-5,19r-62,0","w":119},"\\":{"d":"80,6r-29,-263r24,0r28,263r-23,0","w":100},"]":{"d":"16,26r34,0r59,-277r-34,0r4,-19r62,0r-66,315r-63,0","w":119},"^":{"d":"144,-249r28,0r30,151r-31,0r-22,-114r-68,114r-31,0","w":210},"_":{"d":"-6,27r180,0r-4,18r-180,0","w":180},"`":{"d":"98,-266r19,51r-22,0r-38,-51r41,0","w":100},"a":{"d":"64,-42v15,44,92,11,88,-29v2,-7,2,-8,5,-17v-45,-3,-94,2,-93,46xm166,-145v-9,-31,-74,-19,-74,13r-34,0v8,-35,38,-54,82,-54v36,-1,68,14,59,54r-21,92r-6,40r-30,0v0,-10,0,-18,2,-27v-22,52,-143,40,-111,-33v18,-41,67,-57,129,-51v2,-12,5,-20,4,-34"},"b":{"d":"177,-154v-56,-29,-96,33,-96,87v0,55,64,54,86,21v17,-26,36,-79,10,-108xm122,3v-24,1,-45,-14,-52,-30r-6,27r-33,0r56,-260r34,0r-23,106v25,-45,137,-45,128,34v-8,70,-36,118,-104,123","w":219},"c":{"d":"138,-185v39,-2,63,23,57,62r-34,0v1,-23,-5,-39,-28,-38v-49,2,-61,50,-65,95v-2,27,7,45,33,45v28,0,41,-19,48,-39r34,0v-11,41,-47,69,-99,64v-34,-3,-55,-26,-52,-67v6,-69,37,-119,106,-122","w":180,"k":{"k":18,"h":18}},"d":{"d":"162,-156v-56,-26,-86,37,-91,91v-5,61,73,51,91,14v14,-29,34,-89,0,-105xm79,-163v25,-28,100,-36,111,7r22,-104r34,0r-54,260r-34,0r6,-29v-23,41,-119,46,-128,-11v-7,-47,14,-102,43,-123","w":219},"e":{"d":"171,-108v16,-45,-34,-69,-69,-42v-12,9,-22,24,-25,42r94,0xm91,-172v70,-41,143,13,109,88r-130,0v-9,34,2,66,38,65v26,-1,43,-15,50,-38r34,0v-11,36,-40,62,-90,62v-84,0,-77,-90,-47,-141v8,-15,20,-26,36,-36"},"f":{"d":"172,-235v-27,-2,-48,1,-53,26r-6,28r43,0r-6,25r-42,0r-33,156r-34,0r34,-156r-36,0r5,-25r36,0v6,-54,29,-95,98,-81","w":119,"k":{"t":9,"f":9,".":9,",":9}},"g":{"d":"71,-71v-5,54,72,52,88,17v22,-28,35,-110,-23,-105v-47,3,-60,42,-65,88xm152,57v-41,25,-148,27,-127,-43r36,0v-10,37,37,42,63,29v25,-13,30,-45,37,-77v-14,20,-35,31,-66,31v-37,1,-60,-20,-60,-54v0,-72,33,-123,103,-126v27,-1,43,12,51,27r6,-25r33,0r-45,195v-6,19,-15,34,-31,43","w":219,"k":{"a":7}},"h":{"d":"99,-154v21,-40,131,-46,116,24r-27,130r-35,0v8,-46,22,-88,25,-138v-4,-29,-60,-22,-71,-3v-29,32,-27,94,-41,141r-34,0r55,-260r34,0","w":219,"k":{"y":7}},"i":{"d":"71,-181r33,0r-38,181r-34,0xm84,-259r40,0r-8,37r-40,0","w":100,"k":{"v":-7}},"j":{"d":"-10,45v27,3,36,-9,40,-32r41,-194r34,0r-46,214v-8,27,-36,45,-74,36xm85,-259r41,0r-8,37r-41,0","w":100},"k":{"d":"85,-262r33,0r-33,155r84,-74r44,0r-93,77r59,104r-44,0r-51,-98r-21,98r-34,0","w":180,"k":{"y":-14,"g":-7,"e":-7,"a":-7}},"l":{"d":"87,-260r34,0r-55,260r-34,0","w":100},"m":{"d":"267,-159v-75,0,-60,99,-80,159r-34,0r25,-120v12,-42,-45,-49,-69,-25v-32,32,-29,96,-43,145r-35,0r38,-181r34,0r-5,27v17,-36,107,-47,115,2v20,-42,139,-53,121,31r-26,121r-34,0r26,-134v-2,-18,-14,-25,-33,-25","w":339,"k":{"y":7}},"n":{"d":"180,-115v16,-42,-42,-55,-68,-30v-33,30,-31,96,-45,145r-34,0r38,-181r34,0r-6,29v19,-44,134,-49,117,29r-26,123r-34,0","w":219,"k":{"y":7,"w":7,"v":7}},"o":{"d":"144,-161v-50,0,-70,44,-74,97v-3,46,54,57,82,29v30,-19,59,-126,-8,-126xm221,-121v-3,87,-66,149,-153,120v-56,-19,-32,-124,2,-152v32,-44,154,-49,151,32","w":219,"k":{"x":5,"v":5}},"p":{"d":"189,-116v6,-58,-77,-48,-92,-12v-22,33,-37,120,29,109v44,-8,58,-50,63,-97xm181,-16v-28,24,-97,34,-113,-4r-19,89r-33,0r52,-250r34,0r-6,30v21,-32,91,-49,117,-11v30,43,-3,121,-32,146","w":219},"q":{"d":"111,-18v50,-3,64,-46,67,-94v2,-29,-12,-47,-42,-46v-50,2,-63,44,-66,92v-1,29,11,49,41,48xm76,-162v26,-30,100,-30,111,11r8,-30r34,0r-54,250r-34,0r19,-89v-20,30,-91,38,-114,3v-28,-43,-3,-125,30,-145","w":219},"r":{"d":"98,-146v11,-26,39,-39,74,-36r-7,33v-88,-17,-79,84,-97,149r-35,0r37,-181r34,0","w":140,"k":{"t":9,"s":-7,"r":9,".":20,"-":34,",":20}},"s":{"d":"57,-153v21,-41,148,-51,130,22r-34,0v10,-29,-25,-32,-50,-26v-17,4,-33,35,-8,43v38,12,88,9,80,61v-7,52,-88,76,-136,45v-13,-8,-16,-24,-12,-46r36,0v-8,30,23,37,51,31v21,-4,39,-41,8,-49v-34,-9,-83,-10,-75,-58v2,-8,6,-15,10,-23","w":180},"t":{"d":"80,-48v-9,20,13,29,35,22r-5,26v-31,5,-75,9,-66,-36r25,-121r-32,0r5,-24r33,0r7,-38r36,-11r-10,49r40,0r-5,24r-40,0","w":119,"k":{"t":9}},"u":{"d":"158,-31v-20,46,-133,48,-117,-28r26,-122r34,0r-26,130v7,50,81,20,88,-11v9,-38,17,-79,27,-119r35,0r-38,181r-35,0","w":219},"v":{"d":"43,-181r38,0r27,144r86,-144r38,0r-118,181r-34,0","k":{"o":5,".":22,"-":9,",":22}},"w":{"d":"80,-181r13,144r76,-144r44,0r11,143r76,-143r35,0r-102,181r-39,0r-11,-149r-79,149r-40,0r-21,-181r37,0","w":299,"k":{"a":7,".":7,"-":9,",":7}},"x":{"d":"191,0r-44,0r-36,-72r-67,72r-40,0r92,-95r-49,-86r44,0r34,68r65,-68r40,0r-90,88","k":{"o":5,"-":18}},"y":{"d":"113,1r-40,67r-35,0r42,-69r-37,-180r38,0r26,143r88,-143r37,0","k":{".":20,"-":9,",":20}},"z":{"d":"18,-35r122,-120r-91,0r5,-26r130,0r-6,29r-126,126r100,0r-6,26r-135,0","w":159,"k":{"o":7,"e":7}},"{":{"d":"111,45v-69,3,-67,-58,-50,-112v2,-24,-14,-34,-39,-36r4,-19v36,-2,56,-25,60,-63v5,-51,33,-83,92,-85r-4,18v-85,3,-30,131,-121,139v59,4,25,74,28,118v5,14,15,20,34,22","w":120},"|":{"d":"119,-270r-76,360r-30,0r76,-360r30,0","w":93},"}":{"d":"57,-270v68,-4,67,59,50,112v-2,25,14,34,40,36r-4,19v-83,-1,-43,115,-109,138v-11,4,-26,9,-44,10r4,-18v85,-3,31,-132,122,-140v-61,-3,-26,-73,-29,-117v-5,-14,-15,-20,-34,-22","w":120},"~":{"d":"166,-64v-46,0,-102,-53,-123,1r-20,0v12,-28,26,-58,67,-54v38,4,97,51,116,-1r20,0v-11,30,-25,54,-60,54","w":210},"\u00a1":{"d":"105,-121r-36,200r-40,0r50,-200r26,0xm87,-181r38,0r-8,36r-38,0","w":140},"\u00a2":{"d":"154,-158v-57,-15,-83,59,-73,117v2,5,4,10,8,13xm75,-1v-60,-25,-26,-133,10,-160v19,-14,46,-29,81,-23r22,-43r17,0r-24,49v18,8,28,26,24,55r-34,0v0,-11,0,-18,-5,-26r-63,127v29,5,51,-14,56,-38r34,0v-12,42,-48,68,-102,64r-24,49r-18,0"},"\u00a3":{"d":"174,-258v38,-1,73,18,63,58r-35,0v9,-38,-48,-44,-71,-20v-16,17,-19,44,-26,71r51,0r-5,24r-51,0r-22,101r115,0r-5,24r-174,0r5,-24r24,0r22,-101r-27,0r5,-24r28,0v7,-62,34,-107,103,-109"},"\u00a4":{"d":"136,-78v59,-16,50,-118,-19,-93v-33,12,-61,73,-20,93v12,6,26,4,39,0xm55,-80v-15,-29,-2,-70,19,-90r-19,-23r22,-18r18,24v19,-16,72,-19,90,0r28,-23r14,17r-29,24v17,28,0,73,-19,89r19,23r-22,18r-18,-23v-24,15,-67,21,-89,0r-29,23r-14,-18"},"\u00a5":{"d":"33,-81r66,0r4,-20r-66,0r5,-22r56,0r-43,-137r45,0r30,128r85,-128r40,0r-99,137r54,0r-4,22r-66,0r-5,20r66,0r-4,22r-66,0r-13,59r-36,0r12,-59r-66,0"},"\u00a6":{"d":"75,-63r-26,126r-30,0r26,-126r30,0xm113,-243r-26,126r-30,0r27,-126r29,0","w":93},"\u00a7":{"d":"108,-151v-27,14,-12,60,19,46v21,-4,42,-39,13,-52v-13,-6,-24,2,-32,6xm195,-227v-25,-19,-91,-10,-72,30v23,17,72,11,63,58v-5,25,-23,40,-47,46v59,17,19,96,-23,96v-23,8,-56,6,-76,-3r6,-31v26,23,111,10,82,-34v-24,-19,-77,-10,-68,-58v5,-26,27,-39,49,-47v-36,-7,-28,-62,1,-78v24,-14,61,-16,91,-7"},"\u00a8":{"d":"122,-259r34,0r-8,37r-34,0xm54,-259r33,0r-8,37r-33,0","w":100},"\u00a9":{"d":"112,-104v0,-66,46,-128,112,-98v8,6,14,18,11,35r-21,0v4,-16,-7,-28,-25,-27v-42,3,-50,46,-56,86v-8,49,58,49,65,14r22,0v-9,26,-29,43,-63,43v-33,0,-45,-21,-45,-53xm247,-241v-91,-34,-172,34,-191,111v-28,114,117,153,188,84v57,-34,82,-166,3,-195xm59,-34v-72,-119,56,-270,197,-222v60,20,76,120,35,179v-36,52,-114,105,-195,72v-15,-6,-29,-16,-37,-29","w":288},"\u00aa":{"d":"70,-186v5,32,54,15,56,-8v1,-4,3,-8,4,-14v-27,-1,-56,0,-60,22xm158,-241v-4,29,-14,53,-17,86r-20,0r1,-16v-12,24,-82,30,-74,-13v6,-34,44,-40,84,-38v6,-15,4,-31,-17,-31v-16,0,-24,7,-28,18r-22,0v7,-22,24,-32,53,-32v20,0,43,6,40,26","w":120},"\u00ab":{"d":"144,-19r-24,-71r54,-69r29,0r-50,69r20,71r-29,0xm74,-19r-25,-71r55,-69r28,0r-50,69r21,71r-29,0","k":{"Y":54,"W":27,"V":36,"T":72,"A":18,".":18,",":18}},"\u00ac":{"d":"43,-141r184,0r-21,101r-29,0r15,-73r-155,0","w":210},"\u00ae":{"d":"296,-131v28,-120,-117,-149,-187,-84v-58,33,-83,168,-3,196v95,33,172,-33,190,-112xm40,-131v21,-90,110,-160,215,-125v60,19,76,120,35,179v-36,52,-112,108,-194,73v-41,-17,-71,-64,-56,-127xm149,-142v32,1,70,4,65,-36v-7,-15,-35,-8,-56,-10xm195,-59v-4,-31,14,-72,-25,-66r-25,0r-14,66r-20,0r31,-146v42,3,102,-11,93,37v-3,18,-17,30,-34,35v30,5,8,47,15,74r-21,0","w":288},"\u00af":{"d":"53,-250r99,0r-4,19r-99,0","w":100},"\u02c9":{"d":"53,-250r99,0r-4,19r-99,0","w":100},"\u00b0":{"d":"120,-169v36,-10,32,-73,-12,-58v-24,8,-40,58,-1,60v4,0,9,0,13,-2xm81,-146v-58,-39,4,-131,66,-104v55,35,1,133,-66,104","w":144},"\u00b1":{"d":"18,-23r184,0r-6,28r-184,0xm111,-97r-77,0r6,-28r77,0r12,-60r30,0r-12,60r77,0r-7,28r-76,0r-13,60r-30,0","w":210},"\u00b2":{"d":"115,-254v41,-3,54,42,28,68v-25,25,-55,45,-83,67r77,0r-4,17r-103,0r5,-20v32,-30,80,-47,98,-91v2,-16,-6,-24,-21,-24v-18,0,-29,12,-32,26r-24,0v7,-28,27,-41,59,-43","w":119},"\u00b3":{"d":"78,-98v-25,0,-51,-13,-44,-42r25,0v-5,17,9,24,25,24v32,0,53,-40,24,-52v-8,-3,-17,-2,-27,-2v4,-8,-1,-22,14,-17v24,1,52,-24,33,-46v-20,-10,-49,0,-52,20r-24,0v4,-44,90,-58,106,-16v3,29,-16,44,-40,50v20,2,32,17,27,36v-7,28,-32,44,-67,45","w":119},"\u00b4":{"d":"152,-266r-54,51r-23,0r40,-51r37,0","w":100},"\u00b5":{"d":"162,-25v-15,26,-83,46,-97,6r-20,94r-29,0r55,-256r28,0v-7,43,-21,81,-23,128v-2,43,61,36,78,9v22,-35,26,-91,38,-137r29,0r-38,181r-27,0","w":219},"\u03bc":{"d":"162,-25v-15,26,-83,46,-97,6r-20,94r-29,0r55,-256r28,0v-7,43,-21,81,-23,128v-2,43,61,36,78,9v22,-35,26,-91,38,-137r29,0r-38,181r-27,0","w":219},"\u00b6":{"d":"33,-148v0,-70,41,-112,114,-112r97,0r-4,23r-20,0r-63,297r-28,0r63,-297r-42,0r-63,297r-29,0r33,-155v-36,-2,-58,-21,-58,-53","w":193},"\u00b7":{"d":"56,-127r40,0r-9,44r-40,0","w":100},"\u2219":{"d":"56,-127r40,0r-9,44r-40,0","w":100},"\u00b8":{"d":"76,36v3,40,-52,49,-83,34r10,-13v18,19,72,-13,30,-24v-7,2,-16,5,-18,-3v15,-10,17,-34,45,-32r-21,23v16,-4,36,-2,37,15","w":100},"\u00b9":{"d":"80,-102r27,-126v-15,10,-28,17,-42,22r4,-22v23,-7,32,-26,66,-24r-32,150r-23,0","w":119},"\u00ba":{"d":"82,-195v0,17,8,28,27,28v32,-1,45,-26,47,-57v1,-17,-9,-27,-27,-27v-33,0,-47,26,-47,56xm179,-227v4,63,-73,99,-114,58v-19,-46,11,-99,66,-97v29,0,46,12,48,39","w":132},"\u00bb":{"d":"162,-159r26,70r-56,70r-28,0r50,-70r-20,-70r28,0xm92,-159r25,70r-55,70r-29,0r51,-70r-21,-70r29,0","k":{"Y":63,"W":27,"V":36,"T":72,"A":27,".":27,",":27}},"\u00bc":{"d":"68,-102r27,-126v-15,10,-28,17,-42,22r4,-22v23,-7,32,-26,65,-24r-32,150r-22,0xm262,-257r23,0r-211,267r-24,0xm254,-50r16,-79r-72,79r56,0xm243,0r6,-32r-73,0r6,-26r90,-94r25,0r-21,102r24,0r-4,18r-24,0r-7,32r-22,0","w":300},"\u00bd":{"d":"274,-152v42,-4,55,45,27,68r-82,67r77,0r-4,17r-103,0r4,-20v33,-30,83,-46,99,-91v6,-15,-7,-24,-22,-24v-17,0,-29,11,-31,26r-25,0v8,-27,27,-40,60,-43xm68,-102r27,-126v-15,10,-28,17,-42,22r4,-22v23,-7,32,-26,65,-24r-32,150r-22,0xm262,-257r23,0r-211,267r-24,0","w":300},"\u00be":{"d":"78,-98v-27,0,-50,-13,-44,-42r25,0v-5,17,9,24,25,24v38,0,56,-55,10,-54r-13,0v4,-8,-1,-22,14,-17v24,1,51,-23,34,-46v-20,-10,-50,0,-53,20r-24,0v4,-44,90,-58,106,-16v3,29,-16,44,-40,50v20,2,32,17,27,36v-7,28,-32,45,-67,45xm273,-257r23,0r-211,267r-24,0xm258,-50r16,-79r-72,79r56,0xm247,0r6,-32r-73,0r6,-26r90,-94r25,0r-21,102r23,0r-3,18r-24,0r-7,32r-22,0","w":300},"\u00bf":{"d":"153,-144r-37,0r7,-37r38,0xm141,77v-50,14,-137,13,-122,-57v12,-53,67,-61,88,-104r9,-38r29,0v-5,33,-10,60,-34,74v-21,24,-62,40,-53,86v17,24,60,18,90,6","w":180},"\u00c0":{"d":"193,-335r19,52r-23,0r-37,-52r41,0xm100,-97r99,0r-21,-127xm168,-260r38,0r50,260r-39,0r-14,-68r-120,0r-43,68r-37,0","w":259},"\u00c1":{"d":"247,-335r-55,52r-23,0r41,-52r37,0xm100,-97r99,0r-21,-127xm168,-260r38,0r50,260r-39,0r-14,-68r-120,0r-43,68r-37,0","w":259},"\u00c2":{"d":"135,-283r50,-52r32,0r26,52r-31,0r-16,-35r-33,35r-28,0xm100,-97r99,0r-21,-127xm168,-260r38,0r50,260r-39,0r-14,-68r-120,0r-43,68r-37,0","w":259},"\u00c3":{"d":"249,-329v-3,39,-47,43,-77,27v-8,1,-12,6,-16,13r-16,0v6,-36,45,-40,78,-26v8,-1,14,-6,16,-14r15,0xm100,-97r99,0r-21,-127xm168,-260r38,0r50,260r-39,0r-14,-68r-120,0r-43,68r-37,0","w":259},"\u00c4":{"d":"216,-324r33,0r-8,37r-33,0xm148,-324r33,0r-8,37r-33,0xm100,-97r99,0r-21,-127xm168,-260r38,0r50,260r-39,0r-14,-68r-120,0r-43,68r-37,0","w":259},"\u00c5":{"d":"213,-320v-11,-15,-36,-1,-39,14v-4,20,18,26,32,15v8,-7,14,-19,7,-29xm188,-270v-34,1,-37,-47,-13,-61v22,-21,63,-6,55,25v-4,18,-22,36,-42,36xm100,-97r99,0r-21,-127xm168,-260r38,0r50,260r-39,0r-14,-68r-120,0r-43,68r-37,0","w":259},"\u00c6":{"d":"213,-102r8,-131r-101,131r93,0xm97,-72r-57,72r-39,0r206,-260r188,0r-7,31r-133,0r-4,80r115,0r-6,31r-110,0r-3,87r103,0r-7,31r-134,0r3,-72r-115,0","w":360},"\u00c7":{"d":"137,-26v33,1,56,-18,64,-42r39,0v-14,44,-53,66,-104,72r-15,17v19,-5,41,0,37,24v-4,28,-54,41,-83,25r10,-13v20,19,72,-14,29,-24v-8,2,-15,4,-18,-3r25,-26v-52,-3,-79,-34,-79,-86v0,-108,59,-197,176,-178v32,5,55,28,49,70r-38,0v0,-29,-15,-47,-47,-45v-73,5,-96,72,-101,144v-3,41,15,64,56,65","w":240},"\u00c8":{"d":"173,-335r19,52r-22,0r-38,-52r41,0xm82,-260r164,0r-7,31r-127,0r-17,81r121,0r-6,30r-121,0r-19,86r130,0r-7,32r-166,0","w":219},"\u00c9":{"d":"227,-335r-55,52r-23,0r41,-52r37,0xm82,-260r164,0r-7,31r-127,0r-17,81r121,0r-6,30r-121,0r-19,86r130,0r-7,32r-166,0","w":219},"\u00ca":{"d":"116,-283r49,-52r32,0r27,52r-31,0r-17,-35r-33,35r-27,0xm82,-260r164,0r-7,31r-127,0r-17,81r121,0r-6,30r-121,0r-19,86r130,0r-7,32r-166,0","w":219},"\u00cb":{"d":"196,-324r33,0r-8,37r-33,0xm128,-324r33,0r-8,37r-33,0xm82,-260r164,0r-7,31r-127,0r-17,81r121,0r-6,30r-121,0r-19,86r130,0r-7,32r-166,0","w":219},"\u00cc":{"d":"113,-335r19,52r-23,0r-37,-52r41,0xm87,-260r36,0r-55,260r-36,0","w":100},"\u00cd":{"d":"167,-335r-55,52r-23,0r41,-52r37,0xm87,-260r36,0r-55,260r-36,0","w":100},"\u00ce":{"d":"55,-283r50,-52r32,0r26,52r-31,0r-16,-35r-33,35r-28,0xm87,-260r36,0r-55,260r-36,0","w":100},"\u00cf":{"d":"136,-324r33,0r-8,37r-33,0xm68,-324r33,0r-8,37r-33,0xm87,-260r36,0r-55,260r-36,0","w":100},"\u00d0":{"d":"74,-30v108,11,158,-37,162,-130v3,-65,-48,-76,-119,-70r-17,75r70,0r-5,22r-69,0xm60,-133r-25,0r4,-22r25,0r23,-105v84,1,186,-15,187,80v1,110,-49,186,-169,180r-73,0","w":259},"\u00d1":{"d":"259,-329v-3,39,-47,43,-77,27v-8,1,-12,6,-16,13r-16,0v7,-35,44,-41,78,-26v8,-1,14,-6,16,-14r15,0xm89,-260r50,0r83,215r45,-215r33,0r-55,260r-46,0r-85,-221r-47,221r-33,0","w":280},"\u00d2":{"d":"203,-335r19,52r-23,0r-37,-52r41,0xm192,-237v-81,0,-105,71,-110,150v-2,40,25,63,63,63v78,0,109,-74,109,-150v0,-42,-20,-63,-62,-63xm44,-77v0,-121,79,-221,201,-181v80,26,43,181,-4,221v-42,58,-197,66,-197,-40","w":280},"\u00d3":{"d":"257,-335r-55,52r-23,0r41,-52r37,0xm192,-237v-81,0,-105,71,-110,150v-2,40,25,63,63,63v78,0,109,-74,109,-150v0,-42,-20,-63,-62,-63xm44,-77v0,-121,79,-221,201,-181v80,26,43,181,-4,221v-42,58,-197,66,-197,-40","w":280},"\u00d4":{"d":"145,-283r50,-52r32,0r26,52r-31,0r-16,-35r-33,35r-28,0xm192,-237v-81,0,-105,71,-110,150v-2,40,25,63,63,63v78,0,109,-74,109,-150v0,-42,-20,-63,-62,-63xm44,-77v0,-121,79,-221,201,-181v80,26,43,181,-4,221v-42,58,-197,66,-197,-40","w":280},"\u00d5":{"d":"259,-329v-3,39,-47,43,-77,27v-8,1,-12,6,-16,13r-16,0v7,-35,44,-41,78,-26v8,-1,14,-6,16,-14r15,0xm192,-237v-81,0,-105,71,-110,150v-2,40,25,63,63,63v78,0,109,-74,109,-150v0,-42,-20,-63,-62,-63xm44,-77v0,-121,79,-221,201,-181v80,26,43,181,-4,221v-42,58,-197,66,-197,-40","w":280},"\u00d6":{"d":"226,-324r33,0r-8,37r-33,0xm158,-324r33,0r-8,37r-33,0xm192,-237v-81,0,-105,71,-110,150v-2,40,25,63,63,63v78,0,109,-74,109,-150v0,-42,-20,-63,-62,-63xm44,-77v0,-121,79,-221,201,-181v80,26,43,181,-4,221v-42,58,-197,66,-197,-40","w":280},"\u00d7":{"d":"103,-90r-53,-67r25,-21r53,67r81,-67r17,21r-82,67r53,67r-25,20r-53,-67r-81,67r-16,-20","w":210},"\u00d8":{"d":"145,-24v80,0,103,-71,108,-148v0,-13,-2,-25,-7,-36r-146,169v10,11,26,15,45,15xm191,-237v-79,0,-103,70,-109,147v0,13,2,26,8,37r146,-170v-10,-9,-25,-14,-45,-14xm198,-267v26,0,47,7,61,17r32,-38r22,0r-41,49v51,101,-10,249,-134,245v-26,-1,-48,-4,-62,-16r-36,42r-22,0r45,-53v-11,-15,-21,-35,-20,-63v5,-99,52,-180,155,-183","w":280},"\u00d9":{"d":"203,-335r19,52r-23,0r-37,-52r41,0xm231,-31v-44,50,-194,55,-180,-45v10,-63,26,-123,38,-184r36,0r-37,179v-11,72,103,64,126,24v32,-55,33,-136,52,-203r35,0r-37,173v-6,22,-19,40,-33,56","w":280},"\u00da":{"d":"257,-335r-55,52r-23,0r41,-52r37,0xm231,-31v-44,50,-194,55,-180,-45v10,-63,26,-123,38,-184r36,0r-37,179v-11,72,103,64,126,24v32,-55,33,-136,52,-203r35,0r-37,173v-6,22,-19,40,-33,56","w":280},"\u00db":{"d":"145,-283r50,-52r32,0r26,52r-31,0r-16,-35r-33,35r-28,0xm231,-31v-44,50,-194,55,-180,-45v10,-63,26,-123,38,-184r36,0r-37,179v-11,72,103,64,126,24v32,-55,33,-136,52,-203r35,0r-37,173v-6,22,-19,40,-33,56","w":280},"\u00dc":{"d":"226,-324r33,0r-8,37r-33,0xm158,-324r33,0r-8,37r-33,0xm231,-31v-44,50,-194,55,-180,-45v10,-63,26,-123,38,-184r36,0r-37,179v-11,72,103,64,126,24v32,-55,33,-136,52,-203r35,0r-37,173v-6,22,-19,40,-33,56","w":280},"\u00dd":{"d":"237,-335r-54,52r-24,0r41,-52r37,0xm126,-102r-68,-158r44,0r50,128r105,-128r40,0r-135,160r-22,100r-36,0","w":240},"\u00de":{"d":"89,-102v59,3,124,-1,112,-68v-12,-26,-59,-14,-93,-17xm123,-259r-9,43v62,0,141,-10,126,71v-11,60,-75,80,-157,73r-15,72r-36,0r55,-259r36,0","w":219},"\u00df":{"d":"138,-29v30,27,83,-23,50,-54v-35,-16,-68,-64,-20,-92v31,-7,55,-67,-3,-67v-38,1,-51,18,-58,53r-41,189r-34,0r48,-214v11,-52,122,-72,154,-23v15,46,-31,63,-54,85v-8,44,66,37,53,92v-10,38,-39,60,-84,63v-35,2,-59,-21,-47,-55r33,0v-2,10,-2,19,3,23","w":240},"\u00e0":{"d":"148,-266r19,51r-22,0r-38,-51r41,0xm64,-42v15,44,92,11,88,-29v2,-7,2,-8,5,-17v-45,-3,-94,2,-93,46xm166,-145v-9,-31,-74,-19,-74,13r-34,0v8,-35,38,-54,82,-54v36,-1,68,14,59,54r-21,92r-6,40r-30,0v0,-10,0,-18,2,-27v-22,52,-143,40,-111,-33v18,-41,67,-57,129,-51v2,-12,5,-20,4,-34"},"\u00e1":{"d":"202,-266r-54,51r-23,0r40,-51r37,0xm64,-42v15,44,92,11,88,-29v2,-7,2,-8,5,-17v-45,-3,-94,2,-93,46xm166,-145v-9,-31,-74,-19,-74,13r-34,0v8,-35,38,-54,82,-54v36,-1,68,14,59,54r-21,92r-6,40r-30,0v0,-10,0,-18,2,-27v-22,52,-143,40,-111,-33v18,-41,67,-57,129,-51v2,-12,5,-20,4,-34"},"\u00e2":{"d":"91,-215r49,-52r33,0r26,52r-31,0r-16,-34r-33,34r-28,0xm64,-42v15,44,92,11,88,-29v2,-7,2,-8,5,-17v-45,-3,-94,2,-93,46xm166,-145v-9,-31,-74,-19,-74,13r-34,0v8,-35,38,-54,82,-54v36,-1,68,14,59,54r-21,92r-6,40r-30,0v0,-10,0,-18,2,-27v-22,52,-143,40,-111,-33v18,-41,67,-57,129,-51v2,-12,5,-20,4,-34"},"\u00e3":{"d":"204,-260v-4,38,-45,40,-76,27v-9,0,-12,6,-17,13r-15,0v5,-37,44,-41,78,-27v8,-1,14,-6,16,-13r14,0xm64,-42v15,44,92,11,88,-29v2,-7,2,-8,5,-17v-45,-3,-94,2,-93,46xm166,-145v-9,-31,-74,-19,-74,13r-34,0v8,-35,38,-54,82,-54v36,-1,68,14,59,54r-21,92r-6,40r-30,0v0,-10,0,-18,2,-27v-22,52,-143,40,-111,-33v18,-41,67,-57,129,-51v2,-12,5,-20,4,-34"},"\u00e4":{"d":"172,-259r34,0r-8,37r-34,0xm104,-259r33,0r-8,37r-33,0xm64,-42v15,44,92,11,88,-29v2,-7,2,-8,5,-17v-45,-3,-94,2,-93,46xm166,-145v-9,-31,-74,-19,-74,13r-34,0v8,-35,38,-54,82,-54v36,-1,68,14,59,54r-21,92r-6,40r-30,0v0,-10,0,-18,2,-27v-22,52,-143,40,-111,-33v18,-41,67,-57,129,-51v2,-12,5,-20,4,-34"},"\u00e5":{"d":"169,-256v-16,-18,-51,8,-36,30v18,18,51,-8,36,-30xm144,-206v-35,0,-35,-47,-12,-60v21,-21,63,-8,54,25v-5,18,-21,35,-42,35xm64,-42v15,44,92,11,88,-29v2,-7,2,-8,5,-17v-45,-3,-94,2,-93,46xm166,-145v-9,-31,-74,-19,-74,13r-34,0v8,-35,38,-54,82,-54v36,-1,68,14,59,54r-21,92r-6,40r-30,0v0,-10,0,-18,2,-27v-22,52,-143,40,-111,-33v18,-41,67,-57,129,-51v2,-12,5,-20,4,-34"},"\u00e6":{"d":"162,-87v-47,1,-106,-3,-99,51v25,38,90,4,94,-29v1,-8,4,-16,5,-22xm288,-109v19,-49,-44,-66,-73,-32v-8,9,-13,21,-16,32r89,0xm193,-44v12,41,80,24,83,-12r35,0v-15,38,-44,65,-96,60v-25,-2,-43,-16,-47,-41v-16,43,-124,64,-140,5v-2,-70,64,-82,139,-79v8,-26,-1,-52,-32,-50v-24,1,-40,9,-45,28r-34,0v11,-33,36,-52,82,-52v32,1,53,10,56,37v16,-21,36,-37,71,-37v55,0,69,51,53,100r-125,0v-2,11,-6,31,0,41","w":320},"\u00e7":{"d":"101,-21v28,0,41,-19,48,-39r34,0v-10,36,-37,61,-81,64r-15,17v19,-5,40,0,37,24v-4,29,-54,41,-83,25r10,-13v19,18,72,-14,30,-24v-7,2,-16,5,-18,-3r24,-26v-36,-4,-56,-23,-56,-59v0,-76,37,-133,118,-130v31,1,53,27,46,62r-34,0v1,-23,-5,-39,-28,-38v-49,2,-61,50,-65,95v-2,27,7,45,33,45","w":180},"\u00e8":{"d":"148,-266r19,51r-22,0r-38,-51r41,0xm171,-108v16,-45,-34,-69,-69,-42v-12,9,-22,24,-25,42r94,0xm91,-172v70,-41,143,13,109,88r-130,0v-9,34,2,66,38,65v26,-1,43,-15,50,-38r34,0v-11,36,-40,62,-90,62v-84,0,-77,-90,-47,-141v8,-15,20,-26,36,-36"},"\u00e9":{"d":"202,-266r-54,51r-23,0r40,-51r37,0xm171,-108v16,-45,-34,-69,-69,-42v-12,9,-22,24,-25,42r94,0xm91,-172v70,-41,143,13,109,88r-130,0v-9,34,2,66,38,65v26,-1,43,-15,50,-38r34,0v-11,36,-40,62,-90,62v-84,0,-77,-90,-47,-141v8,-15,20,-26,36,-36"},"\u00ea":{"d":"91,-215r49,-52r33,0r26,52r-31,0r-16,-34r-33,34r-28,0xm171,-108v16,-45,-34,-69,-69,-42v-12,9,-22,24,-25,42r94,0xm91,-172v70,-41,143,13,109,88r-130,0v-9,34,2,66,38,65v26,-1,43,-15,50,-38r34,0v-11,36,-40,62,-90,62v-84,0,-77,-90,-47,-141v8,-15,20,-26,36,-36"},"\u00eb":{"d":"172,-259r34,0r-8,37r-34,0xm104,-259r33,0r-8,37r-33,0xm171,-108v16,-45,-34,-69,-69,-42v-12,9,-22,24,-25,42r94,0xm91,-172v70,-41,143,13,109,88r-130,0v-9,34,2,66,38,65v26,-1,43,-15,50,-38r34,0v-11,36,-40,62,-90,62v-84,0,-77,-90,-47,-141v8,-15,20,-26,36,-36"},"\u00ec":{"d":"98,-266r19,51r-22,0r-38,-51r41,0xm72,-181r32,0r-38,181r-33,0","w":100},"\u00ed":{"d":"152,-266r-54,51r-23,0r40,-51r37,0xm72,-181r32,0r-38,181r-33,0","w":100},"\u00ee":{"d":"41,-215r49,-52r33,0r26,52r-31,0r-16,-34r-33,34r-28,0xm72,-181r32,0r-38,181r-33,0","w":100},"\u00ef":{"d":"122,-259r34,0r-8,37r-34,0xm54,-259r33,0r-8,37r-33,0xm72,-181r32,0r-38,181r-33,0","w":100},"\u00f0":{"d":"73,-63v-2,46,50,52,80,29v28,-21,61,-127,-8,-125v-51,2,-69,43,-72,96xm126,-273r31,22r40,-21r11,13r-37,19v64,33,67,166,11,218v-38,36,-140,39,-146,-24v-7,-85,57,-159,141,-127v7,5,10,11,14,16v-10,-28,-28,-47,-51,-66r-39,20r-11,-12r35,-19r-26,-18","w":219},"\u00f1":{"d":"215,-260v-5,37,-45,41,-77,27v-9,0,-12,6,-17,13r-15,0v5,-37,44,-41,78,-27v8,-1,14,-6,16,-13r15,0xm180,-115v16,-42,-42,-55,-68,-30v-33,30,-31,96,-45,145r-34,0r38,-181r34,0r-6,29v19,-44,134,-49,117,29r-26,123r-34,0","w":219},"\u00f2":{"d":"158,-266r19,51r-22,0r-38,-51r41,0xm144,-161v-50,0,-70,44,-74,97v-3,46,54,57,82,29v30,-19,59,-126,-8,-126xm221,-121v-3,87,-66,149,-153,120v-56,-19,-32,-124,2,-152v32,-44,154,-49,151,32","w":219},"\u00f3":{"d":"212,-266r-54,51r-23,0r40,-51r37,0xm144,-161v-50,0,-70,44,-74,97v-3,46,54,57,82,29v30,-19,59,-126,-8,-126xm221,-121v-3,87,-66,149,-153,120v-56,-19,-32,-124,2,-152v32,-44,154,-49,151,32","w":219},"\u00f4":{"d":"101,-215r49,-52r33,0r26,52r-31,0r-16,-34r-33,34r-28,0xm144,-161v-50,0,-70,44,-74,97v-3,46,54,57,82,29v30,-19,59,-126,-8,-126xm221,-121v-3,87,-66,149,-153,120v-56,-19,-32,-124,2,-152v32,-44,154,-49,151,32","w":219},"\u00f5":{"d":"215,-260v-5,37,-45,41,-77,27v-9,0,-12,6,-17,13r-15,0v5,-37,44,-41,78,-27v8,-1,14,-6,16,-13r15,0xm144,-161v-50,0,-70,44,-74,97v-3,46,54,57,82,29v30,-19,59,-126,-8,-126xm221,-121v-3,87,-66,149,-153,120v-56,-19,-32,-124,2,-152v32,-44,154,-49,151,32","w":219},"\u00f6":{"d":"182,-259r34,0r-8,37r-34,0xm114,-259r33,0r-8,37r-33,0xm144,-161v-50,0,-70,44,-74,97v-3,46,54,57,82,29v30,-19,59,-126,-8,-126xm221,-121v-3,87,-66,149,-153,120v-56,-19,-32,-124,2,-152v32,-44,154,-49,151,32","w":219},"\u00f7":{"d":"125,-177r36,0r-9,43r-36,0xm97,-46r36,0r-9,42r-36,0xm36,-104r183,0r-6,28r-183,0","w":210},"\u00f8":{"d":"87,-26v63,28,114,-48,93,-115xm168,-154v-64,-27,-113,47,-92,115xm221,-110v-4,79,-70,136,-154,108r-32,39r-21,0r39,-48v-55,-80,25,-209,135,-167r29,-37r22,0r-38,47v15,13,21,31,20,58","w":219},"\u00f9":{"d":"158,-266r19,51r-22,0r-38,-51r41,0xm158,-31v-20,46,-133,48,-117,-28r26,-122r34,0r-26,130v7,50,81,20,88,-11v9,-38,17,-79,27,-119r35,0r-38,181r-35,0","w":219},"\u00fa":{"d":"212,-266r-54,51r-23,0r40,-51r37,0xm158,-31v-20,46,-133,48,-117,-28r26,-122r34,0r-26,130v7,50,81,20,88,-11v9,-38,17,-79,27,-119r35,0r-38,181r-35,0","w":219},"\u00fb":{"d":"101,-215r49,-52r33,0r26,52r-31,0r-16,-34r-33,34r-28,0xm158,-31v-20,46,-133,48,-117,-28r26,-122r34,0r-26,130v7,50,81,20,88,-11v9,-38,17,-79,27,-119r35,0r-38,181r-35,0","w":219},"\u00fc":{"d":"182,-259r34,0r-8,37r-34,0xm114,-259r33,0r-8,37r-33,0xm158,-31v-20,46,-133,48,-117,-28r26,-122r34,0r-26,130v7,50,81,20,88,-11v9,-38,17,-79,27,-119r35,0r-38,181r-35,0","w":219},"\u00fd":{"d":"202,-266r-54,51r-23,0r40,-51r37,0xm113,1r-40,67r-35,0r42,-69r-37,-180r38,0r26,143r88,-143r37,0"},"\u00fe":{"d":"189,-116v6,-58,-77,-48,-92,-12v-22,33,-37,120,29,109v44,-8,58,-50,63,-97xm181,-16v-28,24,-97,34,-113,-4r-19,89r-33,0r70,-329r34,0r-24,109v21,-32,91,-49,117,-11v30,43,-3,121,-32,146","w":219},"\u00ff":{"d":"172,-259r34,0r-8,37r-34,0xm104,-259r33,0r-8,37r-33,0xm113,1r-40,67r-35,0r42,-69r-37,-180r38,0r26,143r88,-143r37,0"},"!":{"d":"61,-36r38,0r-7,36r-38,0xm99,-59r-26,0r36,-201r40,0","w":140}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1987, 1991, 1993, 1994, 1998 Adobe Systems Incorporated.  All
 * Rights Reserved.Univers is a trademark of Linotype-Hell AG and/or its
 * subsidiaries.
 * 
 * Description:
 *  The digitally encoded machine readable software for producing the  Typefaces
 * licensed to you is copyrighted (c) 1987, 1991, 1993, 1994, 1998  Adobe Systems.
 * All Rights Reserved. This software is the property of  Adobe Systems
 * Incorporated and its licensors, and may not be reproduced,  used, displayed,
 * modified, disclosed or transferred without the express   written approval of
 * Adobe.    The digitally encoded machine readable outline data for producing  the
 * Typefaces licensed to you is copyrighted (c) 1981, 1998 Linotype-Hell AG  and/or
 * its subsidiaries. All Rights Reserved.  This data is the property of
 * Linotype-Hell AG and/or its subsidiaries  and may not be reproduced, used,
 * displayed, modified, disclosed or   transferred without the express written
 * approval of Linotype-Hell AG   and/or its subsidiaries.
 * 
 * Vendor URL:
 * www.linotypelibrary.com
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Univers LT 45 Light","font-weight":700,"font-style":"oblique","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 5 0 0 9 0 3","ascent":"288","descent":"-72","x-height":"6","bbox":"-19 -337.754 413 90","underline-thickness":"18","underline-position":"-27","slope":"-12","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100,"k":{"Y":54,"W":45,"V":45,"T":54,"A":29}},"!":{"d":"57,-48r45,0r-10,48r-46,0xm66,-71r34,-189r48,0r-45,189r-37,0","w":140},"\"":{"d":"196,-251r-28,89r-29,0r10,-89r47,0xm127,-251r-28,89r-29,0r10,-89r47,0","w":170},"#":{"d":"136,-103r17,-43r-34,0r-17,43r34,0xm19,-103r37,0r17,-43r-30,0r9,-40r37,0r25,-65r47,0r-26,65r34,0r26,-65r46,0r-26,65r30,0r-8,40r-38,0r-16,43r29,0r-9,40r-37,0r-25,63r-46,0r26,-63r-35,0r-25,63r-46,0r25,-63r-30,0"},"$":{"d":"116,-37v33,2,54,-54,12,-60xm135,-210v-28,-3,-49,40,-22,54v3,1,6,3,9,4xm163,-248v44,-1,70,26,61,71r-49,0v5,-21,-3,-32,-21,-34r-13,64v36,11,75,21,63,74v-10,44,-47,71,-97,74r-8,36r-19,0r8,-36v-48,1,-76,-29,-63,-78r49,0v-6,24,3,38,22,40r14,-64v-44,-7,-79,-45,-51,-96v14,-27,45,-49,84,-51r6,-30r20,0"},"%":{"d":"299,-277r-196,281r-27,0r196,-281r27,0xm276,-103v-31,-17,-46,37,-42,67v8,21,37,4,38,-11v4,-13,14,-41,4,-56xm195,-38v0,-53,21,-96,77,-97v30,0,49,13,48,42v-3,52,-22,96,-80,96v-30,0,-45,-14,-45,-41xm140,-242v-32,-18,-43,37,-42,66v7,20,38,5,38,-11v4,-12,14,-41,4,-55xm59,-178v0,-52,20,-96,77,-96v31,0,49,12,48,41v-3,52,-22,97,-79,97v-29,0,-46,-14,-46,-42","w":320},"&":{"d":"118,-119v-36,9,-61,85,-1,86v22,0,38,-10,52,-19xm140,-226v-23,11,-3,67,15,49v19,-7,45,-53,5,-56v-8,0,-14,4,-20,7xm210,-90v13,-21,20,-43,25,-72r54,0v-9,46,-27,78,-52,108r41,55r-67,0r-15,-24v-45,43,-194,47,-173,-49v8,-35,42,-67,72,-81v-26,-16,-27,-72,1,-90v28,-33,154,-41,137,33v-7,36,-36,54,-65,67","w":280},"'":{"d":"72,-251r48,0r-29,89r-29,0","w":85},"(":{"d":"156,-273v-48,81,-87,185,-67,317r-40,0v-30,-126,16,-240,68,-317r39,0","w":119},")":{"d":"12,44v49,-78,87,-186,68,-317r39,0v31,126,-16,240,-68,317r-39,0","w":119},"*":{"d":"68,-206r53,8r-25,-42r38,-19r9,50r32,-51r29,20r-44,42r57,-6r-9,38r-52,-8r24,44r-37,18r-10,-50r-32,51r-28,-20r43,-44r-56,8"},"+":{"d":"96,-73r-71,0r10,-46r71,0r16,-73r48,0r-16,73r72,0r-10,46r-71,0r-16,73r-48,0","w":210},",":{"d":"100,-48r-61,89r-38,0r46,-89r53,0","w":100,"k":{" ":9}},"-":{"d":"40,-116r90,0r-9,41r-89,0","w":119},".":{"d":"37,-48r45,0r-10,48r-45,0","w":100,"k":{" ":9}},"\/":{"d":"204,-258r-151,258r-43,0r153,-258r41,0","w":159},"0":{"d":"110,-39v51,-17,54,-87,58,-152v-2,-11,-6,-23,-21,-22v-51,17,-54,88,-58,149v2,14,5,26,21,25xm100,4v-124,-14,-50,-229,19,-252v52,-18,105,6,103,61v-4,94,-29,183,-122,191","k":{"1":20,"0":-7}},"1":{"d":"80,-213v25,-10,50,-23,74,-38r47,0r-54,251r-54,0r41,-195v-18,10,-41,23,-65,32","k":{"\u00ad":20,"9":7,"8":7,"7":11,"1":34,"0":22,".":18}},"2":{"d":"51,-180v5,-67,108,-98,161,-55v41,71,-38,120,-84,156v-23,17,-23,18,-55,40r121,-3r-9,42r-176,0r11,-51r100,-76v21,-18,59,-42,45,-81v-21,-23,-57,3,-59,28r-55,0"},"3":{"d":"90,5v-48,2,-79,-23,-68,-73r55,0v-10,31,32,43,51,23v15,-10,24,-49,0,-57v-11,-4,-25,-4,-40,-4r9,-42v42,4,84,-21,66,-60v-21,-19,-55,0,-58,24r-55,0v8,-62,114,-97,161,-47v27,45,-9,96,-52,102v22,6,43,22,40,50v-6,54,-49,82,-109,84"},"4":{"d":"66,-95r64,0r20,-94xm17,-55r11,-48r132,-148r53,0r-33,155r35,0r-9,41r-35,0r-11,55r-53,0r11,-55r-101,0"},"5":{"d":"169,-24v-35,41,-161,44,-145,-38r54,0v-3,16,5,29,23,28v34,-2,49,-29,49,-64v0,-17,-9,-28,-26,-28v-20,0,-30,13,-37,25r-52,-1r37,-149r153,0r-9,41r-105,0r-16,62v30,-29,109,-21,109,29v0,41,-15,72,-35,95"},"6":{"d":"109,-116v-31,17,-36,96,14,79v23,-8,43,-48,29,-75v-7,-15,-29,-12,-43,-4xm31,-66v7,-104,45,-204,162,-185v23,9,42,26,34,62r-53,0v-2,-42,-49,-22,-59,1v-6,13,-11,31,-15,45v28,-31,108,-25,110,24v3,73,-37,121,-111,124v-47,2,-71,-25,-68,-71"},"7":{"d":"67,-251r170,0r-9,45r-131,206r-60,0r136,-209r-115,0","k":{"\u00ad":20,"6":7,"4":20,".":61,",":61}},"8":{"d":"96,-99v-28,21,-17,79,25,62v27,-3,46,-56,16,-70v-14,-6,-30,0,-41,8xm113,-198v-22,31,19,62,46,37v28,-16,13,-69,-25,-53v-8,3,-17,9,-21,16xm206,-88v4,82,-109,116,-167,71v-36,-44,6,-110,52,-115v-34,-3,-50,-48,-26,-77v20,-50,146,-71,162,-6v11,45,-22,75,-61,83v22,4,38,20,40,44"},"9":{"d":"99,-174v-12,37,34,52,56,26v14,-17,25,-65,-12,-65v-27,0,-38,18,-44,39xm221,-181v-4,111,-57,217,-175,177v-19,-7,-27,-28,-21,-57r54,0v-6,27,29,28,45,18v20,-12,26,-41,31,-67v-44,37,-131,12,-110,-62v13,-48,48,-81,107,-82v48,-1,70,25,69,73"},":":{"d":"66,-182r45,0r-10,49r-45,0xm37,-48r46,0r-10,48r-46,0","w":100,"k":{" ":9}},";":{"d":"95,-48r-62,89r-37,0r45,-89r54,0xm67,-182r46,0r-10,49r-46,0","w":100,"k":{" ":9}},"<":{"d":"35,-120r207,-74r-11,50r-144,48r124,48r-10,51r-176,-75","w":210},"=":{"d":"26,-77r191,0r-10,46r-191,0xm44,-161r191,0r-10,47r-191,0","w":210},">":{"d":"9,3r10,-51r145,-48r-124,-48r11,-50r176,74r-10,48","w":210},"?":{"d":"59,-43r44,0r-10,43r-43,0xm135,-166v21,-23,21,-63,-22,-63v-21,0,-31,4,-50,9r8,-38v60,-18,163,-5,130,75v-22,52,-93,55,-97,125r-41,0v3,-56,43,-77,72,-108","w":180},"@":{"d":"223,-177v-30,8,-47,38,-52,70v-4,28,29,18,37,4v11,-20,32,-41,27,-68v-2,-4,-6,-6,-12,-6xm93,-125v-26,119,131,136,196,76r8,17v-49,38,-164,58,-209,1v-48,-61,-3,-171,46,-198v63,-58,239,-51,208,72v-12,49,-41,86,-93,93v-16,-1,-31,-8,-28,-29v-18,41,-108,43,-91,-24v12,-44,40,-86,90,-86v17,0,31,6,33,22r8,-16r36,0v-14,36,-43,64,-45,106v53,13,92,-96,48,-135v-86,-50,-188,14,-207,101","w":351},"A":{"d":"184,-98r-12,-111r-62,111r74,0xm217,-260r35,260r-56,0r-7,-56r-103,0r-31,56r-53,0r149,-260r66,0","w":259,"k":{"\u00ad":18,"\u00ab":9,"y":20,"w":16,"v":20,"u":18,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"Y":49,"W":27,"V":36,"U":14,"T":40,"S":7,"Q":7,"O":7,"G":7,"C":7}},"B":{"d":"87,-42v50,3,110,4,98,-56v-12,-22,-51,-14,-83,-16xm111,-154v45,1,98,3,90,-52v-10,-20,-48,-12,-76,-14xm257,-205v-1,41,-28,57,-58,70v50,3,50,70,22,102v-37,42,-120,31,-197,33r56,-260v73,5,179,-23,177,55","w":240,"k":{"Y":20,"W":14,"V":14,".":7,",":7}},"C":{"d":"248,-84v-5,102,-214,131,-214,7v0,-104,52,-185,153,-185v52,0,90,28,79,87r-57,0v2,-28,-7,-48,-33,-46v-60,6,-77,65,-83,127v-3,32,6,60,39,59v33,-1,50,-22,58,-49r58,0","w":240,"k":{"Y":11}},"D":{"d":"217,-160v2,-51,-39,-62,-91,-57r-37,174v87,12,124,-43,128,-117xm275,-162v-10,100,-60,164,-171,162r-81,0r55,-260v101,-1,207,-7,197,98","w":259,"k":{"a":9,"Y":25,"W":14,"V":20,"J":9,"A":14,".":9,",":9}},"E":{"d":"82,-260r174,0r-9,42r-118,0r-13,62r110,0r-9,43r-110,0r-15,70r122,0r-9,43r-178,0","w":219},"F":{"d":"80,-260r168,0r-9,42r-112,0r-14,64r105,0r-10,43r-104,0r-23,111r-56,0","k":{"\u00fc":7,"\u00f6":7,"\u00e4":14,"\u00ad":9,"u":7,"r":7,"o":7,"e":7,"a":14,"J":63,"A":27,".":63,",":63}},"G":{"d":"102,-231v57,-53,220,-55,194,51r-58,0v6,-29,-12,-49,-41,-47v-72,4,-96,63,-101,133v-4,55,58,69,111,53r11,-54r-50,0r9,-44r106,0r-27,130v-77,26,-219,28,-219,-69v0,-71,28,-119,65,-153","w":280},"H":{"d":"80,-260r55,0r-22,104r98,0r23,-104r56,0r-55,260r-56,0r24,-114r-99,0r-24,114r-56,0","w":259},"I":{"d":"77,-261r56,0r-56,261r-55,0","w":100},"J":{"d":"137,-9v-62,32,-141,-1,-116,-75r55,0v-18,49,41,61,54,24v22,-62,29,-133,45,-200r56,0v-27,89,-18,211,-94,251","k":{"o":5,"e":5,"a":7,"A":14,".":11,",":11}},"K":{"d":"79,-260r56,0r-24,112r111,-112r66,0r-121,116r73,144r-69,0r-63,-132r-28,132r-56,0","w":240,"k":{"y":14,"w":14,"u":5,"o":5,"e":5,"O":18}},"L":{"d":"80,-260r57,0r-46,216r112,0r-10,44r-168,0","k":{"\u00ad":45,"y":14,"Y":49,"W":36,"V":49,"T":34,"O":18}},"M":{"d":"77,-260r91,0r15,189r100,-189r88,0r-55,260r-56,0r48,-223r-119,223r-46,0r-22,-223r-47,223r-52,0","w":339},"N":{"d":"81,-260r81,0r54,205r44,-205r51,0r-55,260r-77,0r-54,-216r-47,216r-52,0","w":280},"O":{"d":"222,-215v-77,-39,-127,46,-125,125v1,33,12,57,50,55v68,-4,93,-72,91,-145v0,-16,-7,-28,-16,-35xm238,-31v-52,57,-203,53,-200,-49v4,-122,77,-209,204,-179v80,19,57,163,15,208","w":280,"k":{"e":9,"a":9,"Y":27,"X":25,"W":7,"V":20,"T":14,"A":11,".":7,",":7}},"P":{"d":"109,-143v49,6,94,-10,81,-60v-5,-20,-39,-13,-65,-14xm251,-206v0,81,-57,113,-149,105r-22,101r-57,0r55,-260v72,3,173,-16,173,54","w":219,"k":{"\u00ad":20,"o":14,"e":14,"a":14,"Y":9,"A":36,".":85,",":85}},"Q":{"d":"231,-178v2,-59,-80,-56,-105,-18v-22,34,-50,112,-15,150v6,7,17,10,30,10v68,0,87,-72,90,-142xm274,1v-105,-2,-252,38,-238,-105v11,-103,87,-187,203,-153v79,23,48,176,-2,208v-6,5,-9,9,-13,12v13,-4,40,-3,59,-3","w":280},"R":{"d":"108,-147v51,5,109,-2,95,-57v-6,-24,-49,-13,-80,-15xm174,-74v11,-44,-39,-28,-73,-31r-23,105r-56,0r55,-260v72,11,199,-33,187,67v-4,37,-34,55,-68,64v61,1,20,83,35,129r-61,0","w":240,"k":{"Y":14,"W":7,"V":7,"T":7,"S":4,"O":4,"G":4,"C":4}},"S":{"d":"227,-46v-40,70,-233,80,-197,-37r57,0v-7,28,5,52,37,49v42,7,84,-50,35,-66v-46,-15,-111,-18,-99,-84v10,-54,56,-81,120,-81v50,0,89,24,77,79r-54,0v11,-39,-40,-47,-67,-30v-14,9,-27,40,-8,50v42,24,126,13,113,88v-2,12,-8,21,-14,32","w":240,"k":{"y":7,"w":7,"v":7,"Y":18,"V":9,"T":7,".":7,",":7}},"T":{"d":"129,-217r-78,0r9,-43r211,0r-9,43r-77,0r-46,217r-57,0","w":219,"k":{"\u00fc":41,"\u00f8":54,"\u00f6":41,"\u00e9":54,"\u00e5":41,"\u00e4":32,"\u00bb":45,"\u00ad":54,"\u00ab":54,"y":54,"w":54,"u":54,"r":54,"o":54,"e":54,"a":54,"Y":7,"W":7,"V":7,"T":7,"O":14,"J":45,"A":34,";":49,":":49,".":54,",":54}},"U":{"d":"218,-17v-58,36,-183,31,-175,-53v6,-66,26,-127,38,-190r56,0r-37,181v-7,60,89,49,106,13v25,-55,29,-131,46,-194r54,0v-24,86,-20,201,-88,243","w":280,"k":{"A":14,".":9,",":9}},"V":{"d":"120,-259r25,204r112,-204r55,0r-151,259r-61,0r-41,-259r61,0","w":259,"k":{"\u00fc":20,"\u00f6":34,"\u00e4":34,"\u00bb":18,"\u00ad":32,"\u00ab":36,"u":20,"o":34,"i":7,"e":34,"a":34,"O":20,"G":20,"C":20,"A":36,";":14,":":14,".":49,",":49}},"W":{"d":"118,-259r-1,195r92,-195r63,0r4,195r84,-195r53,0r-121,260r-62,0r-5,-199r-93,199r-63,0r-9,-260r58,0","w":360,"k":{"\u00fc":7,"\u00f6":14,"\u00e4":20,"\u00bb":9,"\u00ad":22,"\u00ab":22,"u":7,"r":7,"o":14,"e":14,"a":20,"O":7,"A":27,";":7,":":7,".":14,",":14}},"X":{"d":"135,-260r33,88r76,-88r59,0r-112,125r62,135r-68,0r-37,-98r-84,98r-59,0r120,-135r-59,-125r69,0","w":259,"k":{"y":27,"e":14,"O":25,"C":18}},"Y":{"d":"126,-259r28,118r80,-118r58,0r-123,164r-20,95r-55,0r20,-95r-53,-164r65,0","w":240,"k":{"\u00bb":36,"\u00ad":63,"\u00ab":45,"u":36,"o":54,"i":13,"e":59,"a":54,"S":20,"O":27,"C":27,"A":49,";":20,":":20,".":47,",":47}},"Z":{"d":"20,-48r172,-170r-128,1r9,-42r188,0r-10,49r-172,169r139,-2r-9,43r-199,0","w":219},"[":{"d":"154,-238r-40,0r-52,249r39,0r-7,33r-82,0r66,-315r83,0","w":119},"\\":{"d":"107,-258r42,258r-42,0r-41,-258r41,0","w":100},"]":{"d":"74,-271r83,0r-67,315r-83,0r7,-33r40,0r52,-249r-39,0","w":119},"^":{"d":"137,-251r42,0r32,156r-50,0r-16,-98r-57,98r-49,0","w":210},"_":{"d":"-6,27r180,0r-4,18r-180,0","w":180},"`":{"d":"121,-211r-31,0r-39,-52r51,0","w":100},"a":{"d":"78,-47v9,33,58,8,59,-13v3,-7,5,-16,7,-26v-34,-2,-66,6,-66,39xm139,-187v44,-1,73,24,62,68v-9,39,-19,74,-20,119r-49,0r4,-25v-21,40,-127,44,-110,-25v12,-50,61,-67,124,-67v7,-19,4,-40,-18,-39v-15,1,-27,12,-29,26r-52,0v7,-38,44,-56,88,-57","k":{"y":7,"w":7,"v":7}},"b":{"d":"94,-46v40,40,88,-18,78,-77v-3,-14,-9,-26,-28,-26v-46,-1,-62,64,-50,103xm80,-26v-1,8,-3,16,-7,26r-51,0r55,-260r53,0r-21,100v30,-41,118,-25,118,31v0,74,-32,136,-108,132v-20,-1,-32,-13,-39,-29","w":219,"k":{"y":7,"v":7}},"c":{"d":"187,-66v-10,50,-62,84,-123,66v-56,-17,-35,-126,-2,-152v29,-46,154,-49,135,35r-53,0v2,-14,1,-37,-16,-34v-35,5,-44,48,-44,85v0,17,1,36,18,35v20,-1,27,-17,32,-35r53,0","w":180,"k":{"k":7,"h":7}},"d":{"d":"138,-149v-42,0,-52,44,-56,83v-5,43,49,40,66,15v17,-25,39,-98,-10,-98xm68,-158v21,-25,94,-41,109,-1r22,-101r53,0r-53,260r-54,0r4,-26v-18,32,-91,44,-112,6v-23,-42,3,-116,31,-138","w":219},"e":{"d":"157,-111v14,-34,-28,-55,-51,-28v-7,8,-12,18,-15,28r66,0xm115,-184v74,-24,113,41,90,107r-122,0v-6,22,-2,51,26,48v19,-1,30,-8,38,-25r48,0v-6,66,-158,92,-164,7v-5,-69,29,-120,84,-137","k":{"y":7}},"f":{"d":"166,-226v-34,-7,-45,16,-48,44r34,0r-8,38r-33,0r-31,144r-53,0r31,-144r-27,0r8,-38r27,0v4,-59,38,-94,108,-81","w":119,"k":{"t":9,"o":7,"f":9,"e":14,"a":14,".":16,",":16}},"g":{"d":"113,-40v41,-3,54,-46,50,-87v-3,-24,-38,-25,-55,-8v-8,9,-15,23,-19,42v-5,21,-4,56,24,53xm68,-155v21,-26,94,-43,109,-2r7,-24r50,0v-24,68,-23,162,-58,219v-24,39,-124,50,-153,8v-5,-7,-5,-19,-3,-33r51,0v-4,28,30,31,49,20v19,-11,21,-36,27,-61v-30,41,-114,25,-114,-32v0,-42,16,-72,35,-95","w":219,"k":{"y":7,"o":7,"e":7,"a":7}},"h":{"d":"165,-109v14,-30,-22,-54,-46,-31v-31,29,-26,95,-41,140r-53,0r55,-260r53,0r-22,103v21,-35,112,-39,111,16v-1,48,-19,95,-27,141r-53,0","w":219,"k":{"y":14}},"i":{"d":"62,-182r54,0r-39,182r-54,0xm77,-260r57,0r-10,47r-57,0","w":100},"j":{"d":"77,-260r57,0r-10,47r-57,0xm-8,34v21,1,28,-14,31,-31r39,-186r54,0r-43,199v-7,40,-37,61,-88,54","w":100},"k":{"d":"80,-260r52,0r-32,153r71,-76r60,0r-79,79r44,104r-63,0r-35,-99r-21,99r-53,0","k":{"o":13,"g":13,"e":13,"a":5}},"l":{"d":"79,-260r53,0r-55,260r-54,0","w":100},"m":{"d":"281,-107v12,-31,-17,-54,-41,-36v-36,26,-29,96,-45,143r-54,0v8,-45,22,-86,25,-133v-10,-29,-62,-10,-62,14r-26,119r-54,0r32,-148v3,-12,4,-23,5,-34r52,0r-3,24v17,-32,106,-44,111,6v16,-35,104,-51,115,-4v12,54,-18,105,-24,156r-54,0","w":339,"k":{"y":14}},"n":{"d":"165,-113v10,-25,-13,-45,-38,-32v-41,22,-33,96,-49,145r-54,0r38,-183r51,0r-4,28v23,-47,128,-45,111,35r-25,120r-54,0","w":219,"k":{"y":14,"w":7,"v":7}},"o":{"d":"161,-145v-53,-25,-85,49,-72,101v47,41,94,-29,81,-87v-2,-6,-5,-10,-9,-14xm107,6v-93,8,-90,-117,-39,-160v33,-44,157,-47,157,27v0,77,-39,127,-118,133","w":219,"k":{"y":7,"x":11,"w":7,"v":7,".":7,",":7}},"p":{"d":"93,-89v-20,43,31,78,59,40v14,-19,34,-70,13,-96v-37,-19,-67,18,-72,56xm192,-27v-21,28,-94,44,-112,6r-19,91r-54,0r53,-252r52,0r-4,26v24,-44,121,-37,121,24v0,43,-18,80,-37,105","w":219,"k":{"y":7}},"q":{"d":"157,-144v-44,-24,-73,28,-73,75v0,44,50,43,67,15v13,-22,26,-68,6,-90xm73,-166v28,-24,94,-28,105,10r7,-26r53,0r-55,251r-54,0r19,-90v-29,38,-117,27,-117,-28v0,-48,16,-95,42,-117","w":219},"r":{"d":"53,-137r7,-46r50,0r-7,35v13,-21,34,-36,70,-35r-10,48v-82,-11,-67,78,-86,135r-54,0","w":140,"k":{"\u00ad":36,"u":14,"t":7,"r":14,"q":5,"p":14,"o":9,"n":14,"m":14,"l":14,"k":14,"i":14,"h":14,"g":9,"e":11,"d":7,"c":7,"a":7,".":36,",":36}},"s":{"d":"152,-14v-35,28,-145,34,-130,-39r50,0v-6,28,31,30,47,19v16,-11,13,-33,-11,-36v-30,-11,-74,-11,-66,-59v9,-51,91,-74,137,-44v11,7,15,23,12,41r-48,0v5,-24,-24,-26,-41,-17v-18,9,-10,32,11,32v33,10,79,15,69,60v-4,19,-16,32,-30,43","w":180},"t":{"d":"102,-63v-9,24,10,31,36,26r-7,34v-39,12,-98,12,-86,-43r21,-99r-35,0r8,-36r35,0r7,-35r57,-20r-11,55r43,0r-8,36r-43,0","w":140,"k":{"u":5,"t":9,"o":7,"e":7}},"u":{"d":"147,-24v-29,48,-128,36,-111,-45r24,-113r54,0v-8,45,-21,87,-25,134v13,31,65,8,63,-20r25,-114r54,0r-36,182r-51,0","w":219},"v":{"d":"98,-182r15,124r68,-124r51,0r-104,182r-59,0r-28,-182r57,0","k":{"\u00ad":18,"o":7,"e":7,"c":7,"a":14,".":36,",":29}},"w":{"d":"97,-182r4,137r68,-137r59,0r9,137r64,-137r53,0r-101,182r-58,0r-9,-135r-66,135r-59,0r-21,-182r57,0","w":320,"k":{"\u00ad":5,"o":7,"e":7,"d":7,"c":7,"a":7,".":29,",":22}},"x":{"d":"107,-182r22,60r48,-60r56,0r-78,89r41,93r-63,0r-23,-67r-51,67r-56,0r82,-98r-41,-84r63,0","k":{"\u00ad":20,"o":7,"e":7,"c":7}},"y":{"d":"101,-182r13,126r68,-126r53,0r-107,179r-37,72r-54,0r38,-68r-31,-183r57,0","k":{"\u00ad":11,"o":7,"g":7,"e":7,"d":7,"c":7,"a":7,".":34,",":27}},"z":{"d":"22,-47r113,-99r-90,0r8,-36r149,0r-10,46r-113,99r96,0r-8,37r-155,0","w":180,"k":{"o":7,"e":7}},"{":{"d":"112,65v-73,6,-87,-50,-65,-113v1,-22,-14,-30,-35,-34r7,-31v77,-5,38,-119,109,-138v13,-4,31,-8,53,-9r-7,29v-81,6,-25,132,-125,133v51,-1,48,53,37,97v-6,23,9,36,32,37","w":119},"|":{"d":"131,-270r-76,360r-48,0r77,-360r47,0","w":100},"}":{"d":"124,-204v-4,38,-22,90,25,91r-6,31v-79,6,-37,117,-110,138v-13,4,-30,8,-52,9r6,-29v81,-4,25,-132,125,-134v-51,3,-47,-52,-37,-96v5,-23,-9,-35,-31,-37r6,-29v45,2,78,12,74,56","w":119},"~":{"d":"161,-61v-35,1,-93,-48,-111,-1r-30,0v11,-35,29,-69,70,-69v37,0,94,48,111,1r31,0v-11,33,-29,68,-71,69","w":210},"\u00a0":{"w":100},"\u00a1":{"d":"126,-144r-46,0r10,-48r46,0xm117,-121r-34,189r-48,0r45,-189r37,0","w":140},"\u00a2":{"d":"100,-37v20,17,41,-9,45,-29r52,0v-10,43,-45,74,-99,70r-23,49r-24,0r24,-53v-59,-20,-32,-130,3,-158v20,-16,48,-31,83,-26r20,-45r25,0r-23,51v22,8,31,34,24,61r-52,0v2,-14,1,-37,-16,-34v-41,7,-51,75,-39,114"},"\u00a3":{"d":"182,-194v2,-15,0,-32,-17,-31v-33,3,-31,40,-39,68r60,0r-8,41r-61,0r-15,74r95,0r-9,42r-177,0r9,-42r26,0r16,-74r-30,0r8,-41r31,0v8,-62,34,-104,105,-104v46,0,67,22,60,67r-54,0"},"\u00a4":{"d":"134,-90v44,-13,38,-91,-15,-70v-32,5,-49,72,-1,73v5,0,11,-1,16,-3xm152,-57v-20,13,-64,15,-81,0r-29,24r-22,-28r29,-24v-12,-27,3,-66,18,-81r-20,-24r34,-28r19,24v20,-14,63,-14,81,0r30,-24r21,28r-29,24v12,26,-2,67,-17,81r19,24r-34,28"},"\u00a5":{"d":"84,-49r-59,0r6,-27r59,0r5,-26r-59,0r6,-26r45,0r-32,-131r65,0r14,118r65,-118r58,0r-87,131r43,0r-6,26r-57,0r-6,26r58,0r-6,26r-57,0r-11,50r-55,0"},"\u00a6":{"d":"87,-63r-27,126r-47,0r27,-126r47,0xm125,-243r-26,126r-48,0r27,-126r47,0","w":100},"\u00a7":{"d":"149,-146v-15,-25,-60,-5,-52,25v2,9,13,13,21,16v18,-6,34,-19,31,-41xm156,-93v44,25,7,95,-33,96v-29,8,-67,3,-90,-7r10,-40v18,16,83,29,82,-11v-19,-25,-73,-14,-73,-57v0,-31,18,-49,43,-59v-30,-11,-22,-67,8,-78v26,-18,80,-16,106,-2r-9,37v-18,-22,-103,-14,-61,20v27,10,64,15,56,56v-5,23,-22,37,-39,45"},"\u00a8":{"d":"55,-258r36,0r-9,42r-36,0xm117,-258r36,0r-9,42r-36,0","w":100},"\u00a9":{"d":"233,-103v-4,59,-138,81,-138,5v0,-64,33,-110,97,-112v34,-1,57,18,51,52r-37,0v2,-18,-4,-28,-21,-28v-31,0,-45,31,-50,57v-5,22,-4,58,24,56v19,-1,32,-13,36,-30r38,0xm285,-130v25,-114,-112,-141,-177,-80v-55,30,-79,158,-4,185v88,31,164,-29,181,-105xm35,-130v23,-90,110,-160,215,-125v61,20,78,120,35,178v-34,88,-228,125,-250,0v-3,-17,-4,-34,0,-53","w":288},"\u00aa":{"d":"120,-193v-22,-2,-50,7,-40,29v20,14,39,-7,40,-29xm125,-226v-4,-15,-32,-10,-32,7r-34,0v3,-39,89,-49,99,-10v0,31,-13,56,-14,88r-31,0r2,-15v-10,19,-70,28,-72,-4v-3,-42,38,-52,81,-51","w":120},"\u00ab":{"d":"117,-91r54,-68r47,0r-48,68r19,71r-48,0xm30,-91r53,-68r48,0r-49,68r19,71r-47,0","k":{"Y":36,"W":9,"V":18,"T":45,".":9,",":9}},"\u00ac":{"d":"43,-161r192,0r-28,130r-48,0r18,-83r-144,0","w":210},"\u00ad":{"d":"40,-116r90,0r-9,41r-89,0","w":119},"\u2010":{"d":"40,-116r90,0r-9,41r-89,0","w":119},"\u00ae":{"d":"151,-139v34,6,65,-13,47,-40v-9,-4,-26,-1,-38,-2xm182,-53v-2,-22,17,-61,-8,-61r-27,0r-13,61r-30,0r33,-153v40,5,106,-17,97,40v-4,22,-18,32,-37,38v34,1,11,45,17,75r-32,0xm286,-130v27,-114,-110,-141,-178,-81v-55,32,-79,160,-3,187v88,31,164,-31,181,-106xm36,-130v21,-90,109,-159,214,-125v61,19,76,119,36,178v-36,53,-111,106,-194,73v-42,-17,-71,-63,-56,-126","w":288},"\u00af":{"d":"35,-225r5,-24r123,0r-5,24r-123,0","w":100},"\u00b0":{"d":"137,-194v5,-20,-22,-33,-37,-17v-17,9,-15,41,8,41v14,0,27,-13,29,-24xm60,-151v-38,-62,52,-139,105,-86v40,59,-49,139,-105,86","w":144},"\u00b1":{"d":"17,-35r191,0r-10,47r-191,0xm103,-101r-72,0r10,-47r71,0r12,-56r48,0r-11,56r71,0r-10,47r-71,0r-12,54r-48,0","w":210},"\u00b2":{"d":"124,-227v-13,-14,-37,0,-39,16r-36,0v3,-39,72,-58,104,-33v31,59,-50,89,-87,118r78,-1r-5,24r-115,0r7,-30r68,-50v11,-11,34,-23,25,-44","w":119},"\u00b3":{"d":"146,-143v-2,43,-105,69,-115,14v0,-5,0,-10,1,-13r36,0v-4,20,18,24,32,15v15,-9,12,-41,-11,-38r-14,0r5,-25v25,2,55,-11,42,-36v-12,-9,-36,-1,-37,14r-36,0v5,-42,94,-61,110,-15v4,28,-15,43,-38,48v20,6,26,15,25,36","w":119},"\u00b4":{"d":"99,-211r-28,0r41,-52r48,0","w":100},"\u00b5":{"d":"153,-22v-10,22,-65,39,-79,7r-20,91r-45,0r55,-258r46,0v-6,44,-21,82,-22,130v6,27,55,18,60,-3v18,-36,21,-85,32,-127r46,0r-38,182r-40,0","w":219},"\u00b6":{"d":"25,-152v7,-62,46,-104,116,-104r119,0r-8,37r-18,0r-61,286r-45,0r61,-286r-35,0r-60,286r-45,0r32,-153v-39,-1,-60,-27,-56,-66"},"\u00b7":{"d":"53,-125r46,0r-10,48r-46,0","w":100},"\u22c5":{"d":"53,-125r46,0r-10,48r-46,0","w":100},"\u2219":{"d":"53,-125r46,0r-10,48r-46,0","w":100},"\u00b8":{"d":"76,37v3,42,-54,49,-85,33r10,-15v14,10,48,11,47,-11v-1,-19,-32,2,-34,-14v15,-11,17,-35,46,-32r-21,23v17,-5,36,0,37,16","w":100},"\u00b9":{"d":"66,-229v24,-10,40,-27,78,-23r-32,151r-35,0r25,-118v-13,8,-28,15,-42,20","w":119},"\u00ba":{"d":"91,-218v-12,16,-19,59,9,59v29,0,39,-36,34,-63v-7,-15,-38,-10,-43,4xm95,-137v-61,6,-59,-74,-24,-100v37,-28,116,-17,98,42v-10,33,-33,54,-74,58","w":132},"\u00bb":{"d":"103,-20r49,-68r-19,-71r47,0r24,71r-53,68r-48,0xm16,-20r48,-68r-19,-71r48,0r24,71r-54,68r-47,0","k":{"Y":45,"W":27,"V":41,"T":59,"A":9,".":9,",":9}},"\u00bc":{"d":"52,-229v24,-10,40,-27,78,-23r-32,151r-35,0r25,-118v-13,8,-28,15,-42,20xm256,-261r30,0r-208,271r-29,0xm213,-57r40,0r14,-56xm182,-33r6,-29r85,-89r35,0r-21,93r23,0r-6,25r-22,0r-7,33r-36,0r7,-33r-64,0","w":300},"\u00bd":{"d":"277,-125v-14,-13,-37,2,-39,17r-35,0v2,-41,73,-59,103,-33v33,59,-52,87,-87,118r78,-2r-5,25r-115,0r7,-31v32,-27,76,-42,95,-81v1,-5,1,-9,-2,-13xm57,-229v24,-10,40,-27,78,-23r-32,151r-35,0r25,-118v-13,8,-28,15,-43,20xm256,-261r29,0r-207,271r-30,0","w":300},"\u00be":{"d":"152,-143v-3,44,-105,69,-115,14v0,-5,1,-10,2,-13r35,0v-4,20,19,25,32,15v20,-13,7,-48,-25,-38r5,-25v26,2,55,-11,43,-36v-13,-9,-36,-1,-38,14r-35,0v4,-43,94,-60,110,-15v3,28,-15,43,-39,48v20,6,26,14,25,36xm272,-261r30,0r-208,271r-29,0xm207,-57r40,0r13,-56xm177,-33r7,-29r84,-89r36,0r-21,93r22,0r-5,25r-22,0r-7,33r-36,0r7,-33r-65,0","w":300},"\u00bf":{"d":"159,-147r-43,0r9,-43r43,0xm83,-23v-20,22,-20,62,22,62v21,0,31,-4,50,-9r-8,38v-60,18,-163,6,-129,-75v22,-53,93,-55,96,-125r41,0v-3,57,-43,78,-72,109","w":180},"\u00c0":{"d":"215,-278r-30,0r-39,-52r50,0xm184,-98r-12,-111r-62,111r74,0xm217,-260r35,260r-56,0r-7,-56r-103,0r-31,56r-53,0r149,-260r66,0","w":259},"\u00c1":{"d":"194,-278r-29,0r41,-52r48,0xm184,-98r-12,-111r-62,111r74,0xm217,-260r35,260r-56,0r-7,-56r-103,0r-31,56r-53,0r149,-260r66,0","w":259},"\u00c2":{"d":"182,-330r37,0r26,52r-32,0r-18,-31r-32,31r-32,0xm184,-98r-12,-111r-62,111r74,0xm217,-260r35,260r-56,0r-7,-56r-103,0r-31,56r-53,0r149,-260r66,0","w":259},"\u00c3":{"d":"213,-284v-26,0,-55,-28,-70,3r-18,0v9,-38,55,-56,92,-31v14,4,24,-5,28,-16r18,0v-8,22,-20,44,-50,44xm184,-98r-12,-111r-62,111r74,0xm217,-260r35,260r-56,0r-7,-56r-103,0r-31,56r-53,0r149,-260r66,0","w":259},"\u00c4":{"d":"148,-322r37,0r-9,42r-37,0xm210,-322r37,0r-9,42r-37,0xm184,-98r-12,-111r-62,111r74,0xm217,-260r35,260r-56,0r-7,-56r-103,0r-31,56r-53,0r149,-260r66,0","w":259},"\u00c5":{"d":"213,-301v6,-18,-17,-24,-30,-14v-10,8,-13,33,7,33v12,0,22,-10,23,-19xm163,-275v-24,-38,31,-84,62,-52v23,36,-31,85,-62,52xm184,-98r-12,-111r-62,111r74,0xm217,-260r35,260r-56,0r-7,-56r-103,0r-31,56r-53,0r149,-260r66,0","w":259},"\u00c6":{"d":"199,-98r9,-113r-79,113r70,0xm196,-260r197,0r-9,43r-120,0r-4,64r104,0r-9,41r-99,0r-4,69r99,0r-10,43r-149,0r3,-57r-97,0r-41,57r-60,0","w":360},"\u00c7":{"d":"132,-35v33,-1,50,-22,58,-49r58,0v-14,53,-51,89,-118,90r-16,16v21,-3,42,0,38,25v-6,32,-56,40,-85,25r10,-15v15,8,49,11,47,-12v-1,-18,-31,1,-34,-13r24,-27v-121,-4,-81,-189,-22,-229v43,-54,198,-55,174,49r-57,0v2,-28,-7,-48,-33,-46v-60,6,-77,65,-83,127v-3,32,6,60,39,59","w":240},"\u00c8":{"d":"195,-278r-30,0r-39,-52r50,0xm82,-260r174,0r-9,42r-118,0r-13,62r110,0r-9,43r-110,0r-15,70r122,0r-9,43r-178,0","w":219},"\u00c9":{"d":"174,-278r-29,0r41,-52r48,0xm82,-260r174,0r-9,42r-118,0r-13,62r110,0r-9,43r-110,0r-15,70r122,0r-9,43r-178,0","w":219},"\u00ca":{"d":"162,-330r37,0r26,52r-32,0r-18,-31r-31,31r-33,0xm82,-260r174,0r-9,42r-118,0r-13,62r110,0r-9,43r-110,0r-15,70r122,0r-9,43r-178,0","w":219},"\u00cb":{"d":"129,-322r36,0r-9,42r-36,0xm190,-322r37,0r-9,42r-37,0xm82,-260r174,0r-9,42r-118,0r-13,62r110,0r-9,43r-110,0r-15,70r122,0r-9,43r-178,0","w":219},"\u00cc":{"d":"135,-278r-30,0r-39,-52r50,0xm77,-261r56,0r-56,261r-55,0","w":100},"\u00cd":{"d":"114,-278r-29,0r41,-52r48,0xm77,-261r56,0r-56,261r-55,0","w":100},"\u00ce":{"d":"102,-330r37,0r26,52r-32,0r-18,-31r-31,31r-33,0xm77,-261r56,0r-56,261r-55,0","w":100},"\u00cf":{"d":"68,-322r37,0r-9,42r-37,0xm130,-322r37,0r-9,42r-37,0xm77,-261r56,0r-56,261r-55,0","w":100},"\u00d0":{"d":"217,-160v2,-51,-39,-62,-91,-57r-12,59r52,0r-7,31r-52,0r-18,84v87,12,124,-43,128,-117xm275,-162v-10,100,-60,164,-171,162r-81,0r27,-127r-23,0r7,-31r23,0r21,-102v101,-1,207,-7,197,98","w":259},"\u00d1":{"d":"224,-284v-26,0,-56,-28,-71,3r-18,0v9,-38,55,-56,92,-31v14,4,24,-5,28,-16r18,0v-8,22,-19,44,-49,44xm81,-260r81,0r54,205r44,-205r51,0r-55,260r-77,0r-54,-216r-47,216r-52,0","w":280},"\u00d2":{"d":"225,-278r-30,0r-39,-52r50,0xm222,-215v-77,-39,-127,46,-125,125v1,33,12,57,50,55v68,-4,93,-72,91,-145v0,-16,-7,-28,-16,-35xm238,-31v-52,57,-203,53,-200,-49v4,-122,77,-209,204,-179v80,19,57,163,15,208","w":280},"\u00d3":{"d":"204,-278r-29,0r41,-52r48,0xm222,-215v-77,-39,-127,46,-125,125v1,33,12,57,50,55v68,-4,93,-72,91,-145v0,-16,-7,-28,-16,-35xm238,-31v-52,57,-203,53,-200,-49v4,-122,77,-209,204,-179v80,19,57,163,15,208","w":280},"\u00d4":{"d":"192,-330r37,0r26,52r-32,0r-18,-31r-31,31r-33,0xm222,-215v-77,-39,-127,46,-125,125v1,33,12,57,50,55v68,-4,93,-72,91,-145v0,-16,-7,-28,-16,-35xm238,-31v-52,57,-203,53,-200,-49v4,-122,77,-209,204,-179v80,19,57,163,15,208","w":280},"\u00d5":{"d":"224,-284v-26,0,-56,-28,-71,3r-18,0v9,-38,55,-56,92,-31v14,4,24,-5,28,-16r18,0v-8,22,-19,44,-49,44xm222,-215v-77,-39,-127,46,-125,125v1,33,12,57,50,55v68,-4,93,-72,91,-145v0,-16,-7,-28,-16,-35xm238,-31v-52,57,-203,53,-200,-49v4,-122,77,-209,204,-179v80,19,57,163,15,208","w":280},"\u00d6":{"d":"158,-322r37,0r-9,42r-37,0xm220,-322r37,0r-9,42r-37,0xm222,-215v-77,-39,-127,46,-125,125v1,33,12,57,50,55v68,-4,93,-72,91,-145v0,-16,-7,-28,-16,-35xm238,-31v-52,57,-203,53,-200,-49v4,-122,77,-209,204,-179v80,19,57,163,15,208","w":280},"\u00d7":{"d":"93,-96r-48,-60r40,-33r47,60r74,-60r25,33r-72,60r47,60r-40,33r-48,-60r-73,60r-26,-33","w":210},"\u00d8":{"d":"102,-60v13,41,89,28,103,-4v20,-28,35,-68,33,-116xm196,-226v-74,-5,-97,69,-100,141r135,-118v-7,-14,-19,-22,-35,-23xm196,-266v33,0,60,8,77,27r41,-36r14,17r-43,37v7,13,11,27,11,42v-4,109,-52,185,-158,185v-35,0,-62,-9,-79,-28r-45,39r-13,-17r45,-40v-6,-12,-9,-26,-9,-41v5,-107,52,-185,159,-185","w":280},"\u00d9":{"d":"225,-278r-30,0r-39,-52r50,0xm218,-17v-58,36,-183,31,-175,-53v6,-66,26,-127,38,-190r56,0r-37,181v-7,60,89,49,106,13v25,-55,29,-131,46,-194r54,0v-24,86,-20,201,-88,243","w":280},"\u00da":{"d":"204,-278r-29,0r41,-52r48,0xm218,-17v-58,36,-183,31,-175,-53v6,-66,26,-127,38,-190r56,0r-37,181v-7,60,89,49,106,13v25,-55,29,-131,46,-194r54,0v-24,86,-20,201,-88,243","w":280},"\u00db":{"d":"192,-330r37,0r26,52r-32,0r-18,-31r-31,31r-33,0xm218,-17v-58,36,-183,31,-175,-53v6,-66,26,-127,38,-190r56,0r-37,181v-7,60,89,49,106,13v25,-55,29,-131,46,-194r54,0v-24,86,-20,201,-88,243","w":280},"\u00dc":{"d":"158,-322r37,0r-9,42r-37,0xm220,-322r37,0r-9,42r-37,0xm218,-17v-58,36,-183,31,-175,-53v6,-66,26,-127,38,-190r56,0r-37,181v-7,60,89,49,106,13v25,-55,29,-131,46,-194r54,0v-24,86,-20,201,-88,243","w":280},"\u00dd":{"d":"184,-278r-29,0r41,-52r48,0xm126,-259r28,118r80,-118r58,0r-123,164r-20,95r-55,0r20,-95r-53,-164r65,0","w":240},"\u00de":{"d":"100,-103v49,6,94,-12,82,-60v-5,-20,-40,-13,-66,-14xm78,-260r56,0r-9,40v64,-3,131,5,115,78v-14,62,-63,89,-147,81r-13,61r-57,0","w":219},"\u00df":{"d":"63,-194v6,-67,94,-89,158,-61v30,13,18,65,-6,76v-17,8,-52,29,-21,48v23,15,52,28,45,71v-9,56,-72,82,-123,57v-14,-7,-18,-24,-14,-49r47,0v-7,20,15,28,29,16v13,-11,17,-41,-3,-51v-25,-13,-63,-37,-37,-77v13,-20,59,-30,43,-63v-28,-19,-68,6,-67,38r-41,189r-52,0","w":240},"\u00e0":{"d":"171,-211r-31,0r-38,-52r50,0xm78,-47v9,33,58,8,59,-13v3,-7,5,-16,7,-26v-34,-2,-66,6,-66,39xm139,-187v44,-1,73,24,62,68v-9,39,-19,74,-20,119r-49,0r4,-25v-21,40,-127,44,-110,-25v12,-50,61,-67,124,-67v7,-19,4,-40,-18,-39v-15,1,-27,12,-29,26r-52,0v7,-38,44,-56,88,-57"},"\u00e1":{"d":"149,-211r-28,0r41,-52r48,0xm78,-47v9,33,58,8,59,-13v3,-7,5,-16,7,-26v-34,-2,-66,6,-66,39xm139,-187v44,-1,73,24,62,68v-9,39,-19,74,-20,119r-49,0r4,-25v-21,40,-127,44,-110,-25v12,-50,61,-67,124,-67v7,-19,4,-40,-18,-39v-15,1,-27,12,-29,26r-52,0v7,-38,44,-56,88,-57"},"\u00e2":{"d":"138,-263r37,0r26,52r-32,0r-18,-30r-32,30r-32,0xm78,-47v9,33,58,8,59,-13v3,-7,5,-16,7,-26v-34,-2,-66,6,-66,39xm139,-187v44,-1,73,24,62,68v-9,39,-19,74,-20,119r-49,0r4,-25v-21,40,-127,44,-110,-25v12,-50,61,-67,124,-67v7,-19,4,-40,-18,-39v-15,1,-27,12,-29,26r-52,0v7,-38,44,-56,88,-57"},"\u00e3":{"d":"169,-216v-25,-3,-56,-29,-70,3r-19,0v10,-39,56,-57,93,-31v16,1,23,-6,28,-16r18,0v-7,23,-22,41,-50,44xm78,-47v9,33,58,8,59,-13v3,-7,5,-16,7,-26v-34,-2,-66,6,-66,39xm139,-187v44,-1,73,24,62,68v-9,39,-19,74,-20,119r-49,0r4,-25v-21,40,-127,44,-110,-25v12,-50,61,-67,124,-67v7,-19,4,-40,-18,-39v-15,1,-27,12,-29,26r-52,0v7,-38,44,-56,88,-57"},"\u00e4":{"d":"105,-258r36,0r-9,42r-36,0xm167,-258r36,0r-9,42r-36,0xm78,-47v9,33,58,8,59,-13v3,-7,5,-16,7,-26v-34,-2,-66,6,-66,39xm139,-187v44,-1,73,24,62,68v-9,39,-19,74,-20,119r-49,0r4,-25v-21,40,-127,44,-110,-25v12,-50,61,-67,124,-67v7,-19,4,-40,-18,-39v-15,1,-27,12,-29,26r-52,0v7,-38,44,-56,88,-57"},"\u00e5":{"d":"170,-237v5,-16,-18,-26,-30,-14v-13,7,-13,33,7,33v12,0,20,-10,23,-19xm119,-211v-24,-38,31,-84,63,-52v23,37,-31,85,-63,52xm78,-47v9,33,58,8,59,-13v3,-7,5,-16,7,-26v-34,-2,-66,6,-66,39xm139,-187v44,-1,73,24,62,68v-9,39,-19,74,-20,119r-49,0r4,-25v-21,40,-127,44,-110,-25v12,-50,61,-67,124,-67v7,-19,4,-40,-18,-39v-15,1,-27,12,-29,26r-52,0v7,-38,44,-56,88,-57"},"\u00e6":{"d":"145,-65v10,-18,0,-22,-23,-18v-31,-4,-65,35,-33,54v27,7,49,-14,56,-36xm275,-114v5,-19,2,-44,-22,-42v-27,1,-37,22,-45,42r67,0xm51,-131v6,-58,116,-77,144,-28v27,-36,134,-43,134,25v0,17,-2,38,-5,51r-122,0v-6,26,-2,55,26,54v20,0,30,-13,36,-27r50,0v-11,34,-42,61,-89,61v-33,0,-54,-12,-63,-33v-25,41,-154,59,-138,-22v10,-52,66,-67,133,-64v7,-20,3,-44,-21,-42v-18,0,-29,9,-33,25r-52,0","w":320},"\u00e7":{"d":"94,49v3,-24,-30,-2,-34,-17r25,-28v-78,2,-62,-124,-23,-156v29,-46,154,-49,135,35r-53,0v2,-14,1,-37,-16,-34v-35,5,-44,48,-44,85v0,17,1,36,18,35v20,-1,27,-17,32,-35r53,0v-10,40,-40,69,-86,71r-16,17v20,-3,41,1,37,25v-6,32,-56,40,-85,25r11,-15v14,8,43,10,46,-8","w":180},"\u00e8":{"d":"171,-211r-31,0r-38,-52r50,0xm157,-111v14,-34,-28,-55,-51,-28v-7,8,-12,18,-15,28r66,0xm115,-184v74,-24,113,41,90,107r-122,0v-6,22,-2,51,26,48v19,-1,30,-8,38,-25r48,0v-6,66,-158,92,-164,7v-5,-69,29,-120,84,-137"},"\u00e9":{"d":"149,-211r-28,0r41,-52r48,0xm157,-111v14,-34,-28,-55,-51,-28v-7,8,-12,18,-15,28r66,0xm115,-184v74,-24,113,41,90,107r-122,0v-6,22,-2,51,26,48v19,-1,30,-8,38,-25r48,0v-6,66,-158,92,-164,7v-5,-69,29,-120,84,-137"},"\u00ea":{"d":"138,-263r37,0r26,52r-32,0r-18,-30r-32,30r-32,0xm157,-111v14,-34,-28,-55,-51,-28v-7,8,-12,18,-15,28r66,0xm115,-184v74,-24,113,41,90,107r-122,0v-6,22,-2,51,26,48v19,-1,30,-8,38,-25r48,0v-6,66,-158,92,-164,7v-5,-69,29,-120,84,-137"},"\u00eb":{"d":"105,-258r36,0r-9,42r-36,0xm167,-258r36,0r-9,42r-36,0xm157,-111v14,-34,-28,-55,-51,-28v-7,8,-12,18,-15,28r66,0xm115,-184v74,-24,113,41,90,107r-122,0v-6,22,-2,51,26,48v19,-1,30,-8,38,-25r48,0v-6,66,-158,92,-164,7v-5,-69,29,-120,84,-137"},"\u00ec":{"d":"121,-211r-31,0r-39,-52r51,0xm62,-182r54,0r-39,182r-54,0","w":100},"\u00ed":{"d":"99,-211r-28,0r41,-52r48,0xm62,-182r54,0r-39,182r-54,0","w":100},"\u00ee":{"d":"87,-263r38,0r26,52r-32,0r-18,-30r-32,30r-32,0xm62,-182r54,0r-39,182r-54,0","w":100},"\u00ef":{"d":"55,-258r36,0r-9,42r-36,0xm117,-258r36,0r-9,42r-36,0xm62,-182r54,0r-39,182r-54,0","w":100},"\u00f0":{"d":"87,-64v-5,44,52,42,67,14v13,-24,36,-94,-12,-94v-40,0,-51,41,-55,80xm182,-158v-9,-23,-23,-40,-43,-55r-38,22r-13,-12r35,-21r-32,-16r36,-33r40,23r32,-19r14,12r-32,18v61,35,55,164,6,214v-35,35,-144,46,-153,-19v-12,-88,74,-162,148,-114","w":219},"\u00f1":{"d":"179,-216v-25,-3,-56,-29,-70,3r-19,0v10,-39,56,-57,93,-31v16,1,23,-6,28,-16r18,0v-7,23,-22,41,-50,44xm165,-113v10,-25,-13,-45,-38,-32v-41,22,-33,96,-49,145r-54,0r38,-183r51,0r-4,28v23,-47,128,-45,111,35r-25,120r-54,0","w":219},"\u00f2":{"d":"181,-211r-31,0r-38,-52r50,0xm161,-145v-53,-25,-85,49,-72,101v47,41,94,-29,81,-87v-2,-6,-5,-10,-9,-14xm107,6v-93,8,-90,-117,-39,-160v33,-44,157,-47,157,27v0,77,-39,127,-118,133","w":219},"\u00f3":{"d":"159,-211r-28,0r41,-52r48,0xm161,-145v-53,-25,-85,49,-72,101v47,41,94,-29,81,-87v-2,-6,-5,-10,-9,-14xm107,6v-93,8,-90,-117,-39,-160v33,-44,157,-47,157,27v0,77,-39,127,-118,133","w":219},"\u00f4":{"d":"148,-263r37,0r26,52r-32,0r-18,-30r-32,30r-32,0xm161,-145v-53,-25,-85,49,-72,101v47,41,94,-29,81,-87v-2,-6,-5,-10,-9,-14xm107,6v-93,8,-90,-117,-39,-160v33,-44,157,-47,157,27v0,77,-39,127,-118,133","w":219},"\u00f5":{"d":"179,-216v-25,-3,-56,-29,-70,3r-19,0v10,-39,56,-57,93,-31v16,1,23,-6,28,-16r18,0v-7,23,-22,41,-50,44xm161,-145v-53,-25,-85,49,-72,101v47,41,94,-29,81,-87v-2,-6,-5,-10,-9,-14xm107,6v-93,8,-90,-117,-39,-160v33,-44,157,-47,157,27v0,77,-39,127,-118,133","w":219},"\u00f6":{"d":"115,-258r37,0r-9,42r-37,0xm177,-258r36,0r-9,42r-36,0xm161,-145v-53,-25,-85,49,-72,101v47,41,94,-29,81,-87v-2,-6,-5,-10,-9,-14xm107,6v-93,8,-90,-117,-39,-160v33,-44,157,-47,157,27v0,77,-39,127,-118,133","w":219},"\u00f7":{"d":"117,-190r54,0r-12,52r-53,0xm88,-54r54,0r-11,53r-54,0xm33,-119r192,0r-10,46r-192,0","w":210},"\u00f8":{"d":"88,-49v14,37,75,9,74,-20v5,-16,8,-32,9,-50xm146,-150v-46,-1,-54,41,-60,80r81,-69v-5,-6,-12,-10,-21,-11xm39,-30v-38,-102,76,-193,165,-140r32,-27r12,13r-33,28v7,9,11,22,10,40v-6,71,-42,119,-117,122v-29,1,-47,-8,-60,-21r-33,28r-12,-12","w":219},"\u00f9":{"d":"181,-211r-31,0r-38,-52r50,0xm147,-24v-29,48,-128,36,-111,-45r24,-113r54,0v-8,45,-21,87,-25,134v13,31,65,8,63,-20r25,-114r54,0r-36,182r-51,0","w":219},"\u00fa":{"d":"159,-211r-28,0r41,-52r48,0xm147,-24v-29,48,-128,36,-111,-45r24,-113r54,0v-8,45,-21,87,-25,134v13,31,65,8,63,-20r25,-114r54,0r-36,182r-51,0","w":219},"\u00fb":{"d":"148,-263r37,0r26,52r-32,0r-18,-30r-32,30r-32,0xm147,-24v-29,48,-128,36,-111,-45r24,-113r54,0v-8,45,-21,87,-25,134v13,31,65,8,63,-20r25,-114r54,0r-36,182r-51,0","w":219},"\u00fc":{"d":"115,-258r37,0r-9,42r-37,0xm177,-258r36,0r-9,42r-36,0xm147,-24v-29,48,-128,36,-111,-45r24,-113r54,0v-8,45,-21,87,-25,134v13,31,65,8,63,-20r25,-114r54,0r-36,182r-51,0","w":219},"\u00fd":{"d":"149,-211r-28,0r41,-52r48,0xm101,-182r13,126r68,-126r53,0r-107,179r-37,72r-54,0r38,-68r-31,-183r57,0"},"\u00fe":{"d":"108,-136v-36,30,-32,134,27,97v26,-16,43,-70,24,-105v-13,-15,-44,-3,-51,8xm206,-57v-10,44,-97,87,-133,36r-19,91r-54,0r71,-330r54,0r-23,104v25,-44,120,-37,120,25v0,28,-6,55,-16,74","w":219},"\u00ff":{"d":"105,-258r36,0r-9,42r-36,0xm167,-258r36,0r-9,42r-36,0xm101,-182r13,126r68,-126r53,0r-107,179r-37,72r-54,0r38,-68r-31,-183r57,0"}}});
;
;

