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

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

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

})(jQuery);
;
(function ($) {

Drupal.behaviors.initColorboxLoad = function (context) {
  if (!$.isFunction($.colorbox)) {
    return;
  }
  var settings = Drupal.settings.colorbox;
  $.urlParam = function(name, url){
    var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(url);
    if (!results) { return ''; }
    return results[1] || '';
  };
  $('a, area, input', context).filter('.colorbox-load:not(.initColorboxLoad-processed)').addClass('initColorboxLoad-processed').colorbox({
    transition:settings.transition,
    speed:settings.speed,
    opacity:settings.opacity,
    close:settings.close,
    overlayClose:settings.overlayClose,
    maxWidth:settings.maxWidth,
    maxHeight:settings.maxHeight,
    innerWidth:function(){
      return $.urlParam('width', $(this).attr('href'));
    },
    innerHeight:function(){
      return $.urlParam('height', $(this).attr('href'));
    },
    iframe:function(){
      return $.urlParam('iframe', $(this).attr('href'));
    },
    slideshow:function(){
      return $.urlParam('slideshow', $(this).attr('href'));
    }
  });
};

})(jQuery);
;
(function ($) {

Drupal.behaviors.initColorboxInline = function (context) {
  if (!$.isFunction($.colorbox)) {
    return;
  }
  var settings = Drupal.settings.colorbox;
  $.urlParam = function(name, url){
    if (name == 'fragment') {
      var results = new RegExp('(#[^&#]*)').exec(url);
    }
    else {
      var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(url);
    }
    if (!results) { return ''; }
    return results[1] || '';
  };
  $('a, area, input', context).filter('.colorbox-inline:not(.initColorboxInline-processed)').addClass('initColorboxInline-processed').colorbox({
    transition:settings.transition,
    speed:settings.speed,
    opacity:settings.opacity,
    close:settings.close,
    overlayClose:settings.overlayClose,
    maxWidth:settings.maxWidth,
    maxHeight:settings.maxHeight,
    innerWidth:function(){
      return $.urlParam('width', $(this).attr('href'));
    },
    innerHeight:function(){
      return $.urlParam('height', $(this).attr('href'));
    },
    title:function(){
      return $.urlParam('title', $(this).attr('href'));
    },
    iframe:function(){
      return $.urlParam('iframe', $(this).attr('href'));
    },
    inline:function(){
      return $.urlParam('inline', $(this).attr('href'));
    },
    href:function(){
      return $.urlParam('fragment', $(this).attr('href'));
    }
  });
};

})(jQuery);
;
// $Id: dhtml_menu.js,v 1.18.2.10 2009/01/12 10:13:30 arancaytar Exp $

/**
 * @file dhtml_menu.js
 * The Javascript code for DHTML Menu
 */
 
Drupal.dhtmlMenu = {};

/**
 * Initialize the module's JS functions
 */
Drupal.behaviors.dhtmlMenu = function() {
  // Do not run this function more than once.
  if (Drupal.dhtmlMenu.init) {
    return;
  }
  else {
    Drupal.dhtmlMenu.init = true;
  }

  // Get the settings.
  var effects = Drupal.settings.dhtmlMenu;

  $('.collapsed').removeClass('expanded');

  // Get cookie
  if (!effects.siblings) {
    var cookie = Drupal.dhtmlMenu.cookieGet();
    for (var i in cookie) {
      // If the cookie was not applied to the HTML code yet, do so now.
      var li = $('#dhtml_menu-' + cookie[i]).parents('li:first');
      if ($(li).hasClass('collapsed')) {
        Drupal.dhtmlMenu.toggleMenu(li);
      }
    }
  }

  /* Add jQuery effects and listeners to all menu items.
   * The ~ (sibling) selector is unidirectional and selects 
   * only the latter element, so we must use siblings() to get 
   * back to the link element.
   */
   $('ul.menu li.dhtml-menu:not(.leaf,.no-dhtml)').each(function() {
    var li = this;
    if (effects.clone) {
      var ul = $(li).find('ul:first');
      if (ul.length) {
        $(li).find('a:first').clone().prependTo(ul).wrap('<li class="leaf fake-leaf"></li>');
      }
    }

    if (effects.doubleclick) {
      $(li).find('a:first').dblclick(function(e) {
        window.location = this.href;
      });
    }

    $(li).find('a:first').click(function(e) {
      Drupal.dhtmlMenu.toggleMenu($(li));
      return false;
    });
  });
}

/**
 * Toggles the menu's state between open and closed.
 *
 * @param li
 *   Object. The <li> element that will be expanded or collapsed.
 */
Drupal.dhtmlMenu.toggleMenu = function(li) {
  var effects = Drupal.settings.dhtmlMenu;

  // If the menu is expanded, collapse it.
  if($(li).hasClass('expanded')) {
    if (effects.slide) {
      $(li).find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000');
    }
    else $(li).find('ul:first').css('display', 'none');

    // If children are closed automatically, find and close them now.
    if (effects.children) {
      if (effects.slide) {
        $(li).find('li.expanded').find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000');
      }
      else $(li).find('li.expanded').find('ul:first').css('display', 'none');

      $(li).find('li.expanded').removeClass('expanded').addClass('collapsed')
    }

    $(li).removeClass('expanded').addClass('collapsed');
  }

  // Otherwise, expand it.
  else {
    if (effects.slide) {
      $(li).find('ul:first').animate({height: 'show', opacity: 'show'}, '1000');
    }
    else $(li).find('ul:first').css('display', 'block');
    $(li).removeClass('collapsed').addClass('expanded');

    // If the siblings effect is on, close all sibling menus.
    if (effects.siblings) {
      var id = $(li).find('a:first').attr('id');

      // Siblings are all open menus that are neither parents nor children of this menu.
      $(li).find('li').addClass('own-children-temp');
	  
      // If the relativity option is on, select only the siblings that have the same parent
      if (effects.relativity) {
        var siblings = $(li).parent().find('li.expanded').not('.own-children-temp').not(':has(#' + id + ')');
      }
      // Otherwise, select all menus of the same level
      else {
        var siblings = $('ul.menu li.expanded').not('.own-children-temp').not(':has(#' + id + ')');
      }

      // If children should not get closed automatically...
      if (!effects.children) {
        // Remove items that are currently hidden from view (do not close these).
        $('li.collapsed li.expanded').addClass('sibling-children-temp');
        // Only close the top-most open sibling, not its children.
        $(siblings).find('li.expanded').addClass('sibling-children-temp');
        siblings = $(siblings).not('.sibling-children-temp');
      }

      $('.own-children-temp, .sibling-children-temp').removeClass('own-children-temp').removeClass('sibling-children-temp');

      if (effects.slide) {
        $(siblings).find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000');
      }
      else $(siblings).find('ul:first').css('display', 'none');

      $(siblings).removeClass('expanded').addClass('collapsed');
    }
  }

  // Save the current state of the menus in the cookie.
  Drupal.dhtmlMenu.cookieSet();
}

/**
 * Reads the dhtml_menu cookie.
 */
Drupal.dhtmlMenu.cookieGet = function() {
  var c = /dhtml_menu=(.*?)(;|$)/.exec(document.cookie);
  if (c) {
    return c[1];
  }
  else return '';
}

/**
 * Saves the dhtml_menu cooki.
 */
Drupal.dhtmlMenu.cookieSet = function() {
  var expanded = new Array();
  $('li.expanded').each(function() {
    expanded.push($(this).find('a:first').attr('id').substr(5));
  });
  document.cookie = 'dhtml_menu=' + expanded.join(',') + ';path=/';
}

;
// $Id: googleanalytics.js,v 1.9.2.8 2011/02/05 19:53:32 hass Exp $

$(document).ready(function() {

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

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

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
          setTimeout('document.location = "' + this.href + '"', 100);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
            setTimeout('document.location = "' + this.href + '"', 100);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
  
            // First, delay the outbound click by a fraction of a second.
            // This delay will hardly be noticeable by the user, but it will provide the
            // browser more time load the tracking code. Without this method, it's possible
            // that a user can click on the outbound link before the tracking code loads,
            // in which case the event will not be recorded.
            // See http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=55527
            setTimeout('document.location = "' + this.href + '"', 100);
          }
        }
      }
    });
  });
});
;
// $Id: poormanscron.js,v 1.1.2.3 2010/01/17 00:27:52 davereid Exp $
(function ($) {

/**
 * Checks to see if the cron should be automatically run.
 */
Drupal.behaviors.cronCheck = function(context) {
  if (Drupal.settings.cron.runNext || false) {
    $('body:not(.cron-check-processed)', context).addClass('cron-check-processed').each(function() {
      // Only execute the cron check if its the right time.
      if (Math.round(new Date().getTime() / 1000.0) >= Drupal.settings.cron.runNext) {
        $.get(Drupal.settings.cron.basePath + '/run-cron-check');
      }
    });
  }
};

})(jQuery);
;
/**
* hoverIntent r6 // 2011.02.26 // jQuery 1.5.1+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne brian(at)cherne(dot)net
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev])}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev])};var handleHover=function(e){var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t)}if(e.type=="mouseenter"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob)},cfg.timeout)}}};return this.bind('mouseenter',handleHover).bind('mouseleave',handleHover)}})(jQuery);;
/* Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net)
 * Licensed under the MIT License (LICENSE.txt).
 *
 * Version 2.1.2
 */
(function(a){a.fn.bgiframe=(a.browser.msie&&/msie 6\.0/i.test(navigator.userAgent)?function(d){d=a.extend({top:"auto",left:"auto",width:"auto",height:"auto",opacity:true,src:"javascript:false;"},d);var c='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+d.src+'"style="display:block;position:absolute;z-index:-1;'+(d.opacity!==false?"filter:Alpha(Opacity='0');":"")+"top:"+(d.top=="auto"?"expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+'px')":b(d.top))+";left:"+(d.left=="auto"?"expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+'px')":b(d.left))+";width:"+(d.width=="auto"?"expression(this.parentNode.offsetWidth+'px')":b(d.width))+";height:"+(d.height=="auto"?"expression(this.parentNode.offsetHeight+'px')":b(d.height))+';"/>';return this.each(function(){if(a(this).children("iframe.bgiframe").length===0){this.insertBefore(document.createElement(c),this.firstChild)}})}:function(){return this});a.fn.bgIframe=a.fn.bgiframe;function b(c){return c&&c.constructor===Number?c+"px":c}})(jQuery);;
/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

(function($){
  $.fn.superfish = function(op){
    var sf = $.fn.superfish,
      c = sf.c,
      $arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
      over = function(){
        var $$ = $(this), menu = getMenu($$);
        clearTimeout(menu.sfTimer);
        $$.showSuperfishUl().siblings().hideSuperfishUl();
      },
      out = function(){
        var $$ = $(this), menu = getMenu($$), o = sf.op;
        clearTimeout(menu.sfTimer);
        menu.sfTimer=setTimeout(function(){
          o.retainPath=($.inArray($$[0],o.$path)>-1);
          $$.hideSuperfishUl();
          if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
        },o.delay);
      },
      getMenu = function($menu){
        var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
        sf.op = sf.o[menu.serial];
        return menu;
      },
      addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };

    return this.each(function() {
      var s = this.serial = sf.o.length;
      var o = $.extend({},sf.defaults,op);
      o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
        $(this).addClass([o.hoverClass,c.bcClass].join(' '))
          .filter('li:has(ul)').removeClass(o.pathClass);
      });
      sf.o[s] = sf.op = o;

      $('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
        if (o.autoArrows) addArrow( $('>a:first-child',this) );
      })
      .not('.'+c.bcClass)
        .hideSuperfishUl();

      var $a = $('a',this);
      $a.each(function(i){
        var $li = $a.eq(i).parents('li');
        $a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
      });
      o.onInit.call(this);

    }).each(function() {
      var menuClasses = [c.menuClass];
      if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
      $(this).addClass(menuClasses.join(' '));
    });
  };

  var sf = $.fn.superfish;
  sf.o = [];
  sf.op = {};
  sf.IE7fix = function(){
    var o = sf.op;
    if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
      this.toggleClass(sf.c.shadowClass+'-off');
    };
  sf.c = {
    bcClass: 'sf-breadcrumb',
    menuClass: 'sf-js-enabled',
    anchorClass: 'sf-with-ul',
    arrowClass: 'sf-sub-indicator',
    shadowClass: 'sf-shadow'
  };
  sf.defaults = {
    hoverClass: 'sfHover',
    pathClass: 'overideThisToUse',
    pathLevels: 1,
    delay: 800,
    animation: {opacity:'show'},
    speed: 'normal',
    autoArrows: true,
    dropShadows: true,
    disableHI: false, // true disables hoverIntent detection
    onInit: function(){}, // callback functions
    onBeforeShow: function(){},
    onShow: function(){},
    onHide: function(){}
  };
  $.fn.extend({
    hideSuperfishUl : function(){
      var o = sf.op,
        not = (o.retainPath===true) ? o.$path : '';
      o.retainPath = false;
      var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
          .find('>ul').hide().css('visibility','hidden');
      o.onHide.call($ul);
      return this;
    },
    showSuperfishUl : function(){
      var o = sf.op,
        sh = sf.c.shadowClass+'-off',
        $ul = this.addClass(o.hoverClass)
          .find('>ul:hidden').css('visibility','visible');
      sf.IE7fix.call($ul);
      o.onBeforeShow.call($ul);
      $ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
      return this;
    }
  });
})(jQuery);;
/*
 * Supersubs v0.2b - jQuery plugin - LAST UPDATE: MARCH 23rd, 2011
 * Copyright (c) 2008 Joel Birch
 *
 * Jan 16th, 2011 - Modified a little in order to work with NavBar menus as well.
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * This plugin automatically adjusts submenu widths of suckerfish-style menus to that of
 * their longest list item children. If you use this, please expect bugs and report them
 * to the jQuery Google Group with the word 'Superfish' in the subject line.
 *
 */

(function($){ // $ will refer to jQuery within this closure

  $.fn.supersubs = function(options){
    var opts = $.extend({}, $.fn.supersubs.defaults, options);
	// return original object to support chaining
    return this.each(function() {
      // cache selections
      var $$ = $(this);
      // support metadata
      var o = $.meta ? $.extend({}, opts, $$.data()) : opts;
      // get the font size of menu.
      // .css('fontSize') returns various results cross-browser, so measure an em dash instead
      var fontsize = $('<li id="menu-fontsize">&#8212;</li>').css({
        'padding' : 0,
        'position' : 'absolute',
        'top' : '-99999em',
        'width' : 'auto'
      }).appendTo($$).width(); //clientWidth is faster, but was incorrect here
      // remove em dash
      $('#menu-fontsize').remove();

      // Jump on level if it's a "NavBar"
      if ($$.hasClass('sf-navbar')) {
        $$ = $('li > ul', $$);
      }
      // cache all ul elements 
      $ULs = $$.find('ul:not(.sf-megamenu)');
      // loop through each ul in menu
      $ULs.each(function(i) {
        // cache this ul
        var $ul = $ULs.eq(i);
        // get all (li) children of this ul
        var $LIs = $ul.children();
        // get all anchor grand-children
        var $As = $LIs.children('a');
        // force content to one line and save current float property
        var liFloat = $LIs.css('white-space','nowrap').css('float');
        // remove width restrictions and floats so elements remain vertically stacked
        var emWidth = $ul.add($LIs).add($As).css({
          'float' : 'none',
          'width'  : 'auto'
        })
        // this ul will now be shrink-wrapped to longest li due to position:absolute
        // so save its width as ems. Clientwidth is 2 times faster than .width() - thanks Dan Switzer
        .end().end()[0].clientWidth / fontsize;
        // add more width to ensure lines don't turn over at certain sizes in various browsers
        emWidth += o.extraWidth;
        // restrict to at least minWidth and at most maxWidth
        if (emWidth > o.maxWidth)    { emWidth = o.maxWidth; }
        else if (emWidth < o.minWidth)  { emWidth = o.minWidth; }
        emWidth += 'em';
        // set ul to width in ems
        $ul.css('width',emWidth);
        // restore li floats to avoid IE bugs
        // set li width to full width of this ul
        // revert white-space to normal
        $LIs.css({
          'float' : liFloat,
          'width' : '100%',
          'white-space' : 'normal'
        })
        // update offset position of descendant ul to reflect new width of parent
        .each(function(){
          var $childUl = $('>ul',this);
          var offsetDirection = $childUl.css('left')!==undefined ? 'left' : 'right';
          $childUl.css(offsetDirection,emWidth);
        });
      });

    });
  };
  // expose defaults
  $.fn.supersubs.defaults = {
    minWidth: 9, // requires em unit.
    maxWidth: 25, // requires em unit.
    extraWidth: 0 // extra width can ensure lines don't sometimes turn over due to slight browser differences in how they round-off values
  };

})(jQuery); // plugin code ends;
/*
* Supposition v0.2 - an optional enhancer for Superfish jQuery menu widget - LAST UPDATE: MARCH 23rd, 2011
*
* Copyright (c) 2008 Joel Birch - based mostly on work by Jesse Klaasse and credit goes largely to him.
* Special thanks to Karl Swedberg for valuable input.
* 
* Dec 28th, 2010 - Modified for the Superfish project for Drupal (http://drupal.org/project/superfish)
*
* jQuery version: 1.3.x or higher.
*
* Dual licensed under the MIT and GPL licenses:
* 	http://www.opensource.org/licenses/mit-license.php
* 	http://www.gnu.org/licenses/gpl.html
*/

(function($){
  $.fn.supposition = function(){
    var $w = $(window), /*do this once instead of every onBeforeShow call*/
    _offset = function(dir) {
      return window[dir == 'y' ? 'pageYOffset' : 'pageXOffset']
      || document.documentElement && document.documentElement[dir=='y' ? 'scrollTop' : 'scrollLeft']
      || document.body[dir=='y' ? 'scrollTop' : 'scrollLeft'];
    },
    onHide = function(){
      this.css({Top:'',Right:'',Bottom:'',Left:''});
    },
    onBeforeShow = function(){
      this.each(function(){
        var $u = $(this);
        $u.css('display','block');
        var menuWidth = $u.width(),
        menuParentWidth = $u.closest('li').outerWidth(true),
        menuParentLeft = $u.closest('li').offset().left,
        totalRight = $w.width() + _offset('x'),
        menuRight = $u.offset().left + menuWidth,
        exactMenuWidth = (menuRight > (menuParentWidth + menuParentLeft)) ? menuWidth - (menuRight - (menuParentWidth + menuParentLeft)) : menuWidth;  
        if ($u.parents('.sf-js-enabled').hasClass('rtl')) {
          if (menuParentLeft < exactMenuWidth) {
            $u.css('left', menuParentWidth + 'px');
            $u.css('right', 'auto');
          }
        }
        else {
          if (menuRight > totalRight && menuParentLeft > menuWidth) {
            $u.css('right', menuParentWidth + 'px');
            $u.css('left', 'auto');
          }
        }
        var windowHeight = $w.height(),
        offsetTop = $u.offset().top,
        menuParentHeight = $u.parent().outerHeight(true),
        menuHeight = $u.height(),
        baseline = windowHeight + _offset('y');
        var expandUp = ((offsetTop + menuHeight > baseline) && (offsetTop > menuHeight));
        if (expandUp) {
          $u.css('bottom', menuParentHeight + 'px');
          $u.css('top', 'auto');
        }
        $u.css('display','none');
      });
    };

    return this.each(function() {
    var o = $.fn.superfish.o[this.serial]; /* get this menu's options */

    /* if callbacks already set, store them */
    var _onBeforeShow = o.onBeforeShow,
    _onHide = o.onHide;

    $.extend($.fn.superfish.o[this.serial],{
    onBeforeShow: function() {
    onBeforeShow.call(this); /* fire our Supposition callback */
    _onBeforeShow.call(this); /* fire stored callbacks */
    },
    onHide: function() {
    onHide.call(this); /* fire our Supposition callback */
    _onHide.call(this); /* fire stored callbacks */
    }
    });
    });
  };
})(jQuery);;
/*
 * sf-Touchscreen v1.0b - Provides touchscreen compatibility for the jQuery Superfish plugin. - LAST UPDATE: MARCH 23rd, 2011
 *
 * Developer's notes:
 * Built as a part of the Superfish project for Drupal (http://drupal.org/project/superfish) 
 * Found any bug? have any cool ideas? contact me right away! http://drupal.org/user/619294/contact
 *
 * jQuery version: 1.3.x or higher.
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
*/

(function($){
  $.fn.sftouchscreen = function() {
    // Return original object to support chaining.
    return this.each( function() {
      // Select hyperlinks from parent menu items.
      $(this).find('li > ul').closest('li').children('a').each( function() {
	    var $item = $(this);
        // No .toggle() here as it's not possible to reset it.
        $item.click( function(event){
	      // Already clicked? proceed to the URI.
          if ($item.hasClass('sf-clicked')) {
            var $uri = $item.attr('href');
            window.location = $uri;
          }
          else {
            event.preventDefault();
            $item.addClass('sf-clicked');
          }
        }).closest('li').mouseleave( function(){
          // So, we reset everything.
          $item.removeClass('sf-clicked');
        });
	  });
    });
  };
})(jQuery);;
// $Id: uc_roles.js,v 1.1.2.4 2009/07/21 14:37:19 islandusurper Exp $

/**
 * @file
 * Enable and disable expiration fields to prevent invalid configurations.
 */

/**
 * Disable duration amount when its type is "never".
 */
function _uc_role_expiration_disable_check(granularity, quantity) {
  // 'never' means there's no point in setting a duration.
  if ($(granularity).val() == 'never') {
    $(quantity).attr('disabled', 'disabled').val('');
  }
  // Anything besides 'never' should enable setting a duration.
  else {
    $(quantity).removeAttr('disabled');
  }
}

/**
 * Switch between relative and absolute expiration durations.
 */
function expiration_switcher() {
  if ($('#edit-expiration').val() == 'abs') {
    $("#edit-uc-roles-expire-relative-duration-wrapper").hide();
    $("#edit-uc-roles-expire-relative-granularity-wrapper").hide();
    $("#edit-uc-roles-by-quantity-wrapper").hide();
    $("#edit-uc-roles-expire-absolute-wrapper").show();
  }
  else {
    $("#edit-uc-roles-expire-absolute-wrapper").hide();
    $("#edit-uc-roles-expire-relative-duration-wrapper").show();
    $("#edit-uc-roles-expire-relative-granularity-wrapper").show();
    $("#edit-uc-roles-by-quantity-wrapper").show();
  }
}

/**
 * Set the default state for expiration duration.
 */
function expiration_switcher_default() {
  if ($('#edit-uc-roles-default-end-expiration').val() == 'abs') {
    $("#edit-uc-roles-default-length-wrapper").attr('style', 'display:none;');
    $("#edit-uc-roles-default-granularity-wrapper").attr('style', 'display:none;');
    $("#edit-uc-roles-default-by-quantity-wrapper").attr('style', 'display:none;');
    $("#edit-uc-roles-default-end-time-wrapper").removeAttr('style');
  }
  else {
    $("#edit-uc-roles-default-length-wrapper").removeAttr('style');
    $("#edit-uc-roles-default-granularity-wrapper").removeAttr('style');
    $("#edit-uc-roles-default-by-quantity-wrapper").removeAttr('style');
    $("#edit-uc-roles-default-end-time-wrapper").attr('style', 'display:none;');
  }
}

/**
 * Override the expiration duration default state.
 */
function uc_roles_expiration_default_override() {
  if ($('#edit-end-override').length == 0) {
    return;
  }

  if ($('#edit-end-override').attr('checked')) {
    $('#edit-expiration-wrapper').removeAttr('style');
    $('#edit-uc-roles-expire-absolute-wrapper').removeAttr('style');
    $('#edit-uc-roles-expire-relative-duration-wrapper').removeAttr('style');
    $('#edit-uc-roles-expire-relative-granularity-wrapper').removeAttr('style');
    $('#edit-uc-roles-by-quantity-wrapper').removeAttr('style');
    expiration_switcher();
  }
  else {
    $('#edit-expiration-wrapper').attr('style', 'display:none;');
    $('#edit-uc-roles-expire-relative-duration-wrapper').attr('style', 'display:none;');
    $('#edit-uc-roles-expire-relative-granularity-wrapper').attr('style', 'display:none;');
    $('#edit-uc-roles-by-quantity-wrapper').attr('style', 'display:none;');
    $('#edit-uc-roles-expire-absolute-wrapper').attr('style', 'display:none;');
  }
}

$(document).ready(
  function() {
    _uc_role_expiration_disable_check('#edit-uc-roles-expire-relative-granularity', '#edit-uc-roles-expire-relative-duration');
    _uc_role_expiration_disable_check('#edit-uc-roles-default-granularity', '#edit-uc-roles-default-length');
    _uc_role_expiration_disable_check('#edit-uc-roles-reminder-granularity', '#edit-uc-roles-reminder-length');
    uc_roles_expiration_default_override();
    expiration_switcher_default();
  }
);

// When you change the role expiration time select.
Drupal.behaviors.ucRoleExpirationTime = function(context) {
  $("#edit-expiration:not(.ucRoleExpirationTime-processed)", context).addClass('ucRoleExpirationTime-processed').change(
    function() {
      expiration_switcher();
    }
  );
}

// When you change the default role expiration time select.
Drupal.behaviors.ucRoleDefaultExpirationTimeDefault = function(context) {
  $("#edit-uc-roles-default-end-expiration:not(.ucRoleDefaultExpirationTimeDefault-processed)", context).addClass('ucRoleDefaultExpirationTimeDefault-processed').change(
    function() {
      expiration_switcher_default();
    }
  );
}

// When you change the role expiration time select.
Drupal.behaviors.ucRoleExpirationTimeDefault = function(context) {
  $("#edit-uc-roles-end-expiration:not(.ucRoleExpirationTimeDefault-processed)", context).addClass('ucRoleExpirationTimeDefault-processed').change(
    function() {
      expiration_switcher_default();
    }
  );
}

// When you change the role expiration granularity select.
Drupal.behaviors.ucRoleExpirationGranularity = function(context) {
  $('#edit-uc-roles-expire-relative-granularity:not(.ucRoleExpirationGranularity-processed)', context).addClass('ucRoleExpirationGranularity-processed').change(
    function() {
      _uc_role_expiration_disable_check('#edit-uc-roles-expire-relative-granularity', '#edit-uc-roles-expire-relative-duration');
    }
  );
}

// When you change the default role expiration granularity select.
Drupal.behaviors.ucRoleDefaultExpirationGranularity = function(context) {
  $('#edit-uc-roles-default-granularity:not(.ucRoleDefaultExpirationGranularity-processed)', context).addClass('ucRoleDefaultExpirationGranularity-processed').change(
    function() {
      _uc_role_expiration_disable_check('#edit-uc-roles-default-granularity', '#edit-uc-roles-default-length');
    }
  );
}

// When you change the default role expiration granularity select.
Drupal.behaviors.ucRoleReminderExpirationGranularity = function(context) {
  $('#edit-uc-roles-reminder-granularity:not(.ucRoleReminderExpirationGranularity-processed)', context).addClass('ucRoleReminderExpirationGranularity-processed').change(
    function() {
      _uc_role_expiration_disable_check('#edit-uc-roles-reminder-granularity', '#edit-uc-roles-reminder-length');
    }
  );
}

// When you change the default role expiration granularity select.
Drupal.behaviors.ucRoleExpirationEndOverride = function(context) {
  $('#edit-end-override:not(.ucRoleExpirationEndOverride-processed)', context).addClass('ucRoleExpirationEndOverride-processed').click(
    function() {
      uc_roles_expiration_default_override();
    }
  );
}

;
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.88 (08-JUN-2010)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.2.6 or later
 */
(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:	 2.72
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;
// $Id: views_slideshow.js,v 1.1.2.1.2.39 2010/07/01 03:29:08 redndahead Exp $

/**
 *  @file
 *  A simple jQuery SingleFrame Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowSingleFrame = function (context) {
  $('.views_slideshow_singleframe_main:not(.viewsSlideshowSingleFrame-processed)', context).addClass('viewsSlideshowSingleFrame-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowSingleFrame[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
    settings.paused = false;

    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_hover==1 || settings.pager_click_to_page),
      prev:(settings.controls > 0)?'#views_slideshow_singleframe_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_singleframe_next_' + settings.vss_id:null,
      pager:(settings.pager > 0)?'#views_slideshow_singleframe_pager_' + settings.vss_id:null,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder: function(idx, slide) {
        var classes = 'pager-item pager-num-' + (idx+1);
        if (idx == 0) {
          classes += ' first';
        }
        if ($(slide).siblings().length == idx) {
          classes += ' last';
        }

        if (idx % 2) {
          classes += ' odd';
        }
        else {
          classes += ' even';
        }
        
        var theme = 'viewsSlideshowPager' + settings.pager_type;
        return Drupal.theme.prototype[theme] ? Drupal.theme(theme, classes, idx, slide, settings) : '';
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(curr, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.vss_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
      },
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    }
    
    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.vss_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.pager_hover == 1) {
      settings.opts.pagerEvent = 'mouseover';
      settings.opts.pauseOnPagerHover = true;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowSingleFramePause(settings);
      });
    }

    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }
    
    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowSingleFramePause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowSingleFrameIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowSingleFrameResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowSingleFramePause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when the window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_singleframe_image_count_' + settings.vss_id).show();

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_singleframe_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_singleframe_playpause_' + settings.vss_id).click(function(e) {
      	if (settings.paused) {
      	  viewsSlideshowSingleFrameResume(settings);
      	}
      	else {
      	  viewsSlideshowSingleFramePause(settings);
      	}
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowSingleFramePause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_singleframe_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowSingleFrameResume = function (settings) {
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_singleframe_play')
      .removeClass('views_slideshow_play')
      .text('Pause');
  }
  settings.paused = false;
}

Drupal.theme.prototype.viewsSlideshowPagerThumbnails = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '"><img src="' + $(slide).find('img').attr('src') + '" /></a></div>';
}

Drupal.theme.prototype.viewsSlideshowPagerNumbered = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '">' + (idx+1) + '</a></div>';
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * type = The way to calculate how much is visible.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowSingleFrameIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}

;
// $Id: views_slideshow.js,v 1.1.2.2.2.35 2010/07/01 03:29:08 redndahead Exp $

/**
 * @file
 * A simple jQuery ThumbnailHover Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowThumbnailHover = function (context) {
  $('.views_slideshow_thumbnailhover_main:not(.viewsSlideshowThumbnailHover-processed)', context).addClass('viewsSlideshowThumbnailHover-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowThumbnailHover[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
		settings.paused = false;
		
    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_event=='click')? false : true,
      pager:(settings.pager_event == 'hoverIntent') ? null : '#views_slideshow_breakout_teasers_' + settings.vss_id,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder:(settings.pager_event == 'hoverIntent') ? null : function(idx, slide) { 
        return '#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + idx; 
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(current, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.view_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
        
        var currId = (currId=$(current).attr('id')).substring(currId.lastIndexOf('_')+1)
        var nextId = (nextId=$(next).attr('id')).substring(nextId.lastIndexOf('_')+1)
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + currId).removeClass('activeSlide');
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + nextId).addClass('activeSlide');
      },
      pagerEvent: (settings.pager_event == 'hoverIntent') ? null : settings.pager_event,
      prev:(settings.controls > 0)?'#views_slideshow_thumbnailhover_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_thumbnailhover_next_' + settings.vss_id:null,
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    };

    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.view_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowThumbnailHoverPause(settings);
      });
    }
    
    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }

    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowThumbnailHoverPause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowThumbnailHoverIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowThumbnailHoverPause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id).show();
    
    if (settings.pager_event == 'hoverIntent') {
      $('#views_slideshow_thumbnailhover_breakout_teasers_' + settings.vss_id + ' .views_slideshow_thumbnailhover_div_breakout_teaser').each(function(i,obj) {
        $(obj).hoverIntent(
          function() {
            $('.views_slideshow_thumbnailhover_div_breakout_teaser').removeClass('activeSlide');
            var id = $(this).attr('id');
            id = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(id);
            $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + id).addClass('activeSlide');
            $(settings.targetId).cycle('stop');
          },
          function() {
            var id = $(this).attr('id');
            settings.opts.startingSlide = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(settings.opts);
          }
        );
      });
    }

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_thumbnailhover_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id).click(function(e) {
        if (settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else {
          viewsSlideshowThumbnailHoverPause(settings);
        }
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowThumbnailHoverPause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_thumbnailhover_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowThumbnailHoverResume = function (settings) {
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_thumbnailhover_play')
      .removeClass('views_slideshow_play')
      .text('Pause');
  }
  settings.paused = false;
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowThumbnailHoverIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
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("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}})());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}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * \251 M Klein   9.03
 */
Cufon.registerFont({"w":196,"face":{"font-family":"GeosansLight","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 2 0 0 2 0 3","ascent":"288","descent":"-72","x-height":"3","bbox":"0 -277 317 76","underline-thickness":"6.84","underline-position":"-44.64","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":91},"!":{"d":"44,-53r0,-204r-14,0r0,204r14,0xm37,1v19,0,15,-27,0,-25v-9,1,-13,5,-13,12v0,9,4,13,13,13","w":73},"\"":{"d":"77,-262r-15,0r4,58r7,0xm37,-262r-15,0r4,58r7,0","w":97},"#":{"d":"188,-186r-47,0r11,-45r-9,0r-11,45r-50,0r11,-45r-9,0r-11,45r-50,0r-3,9r51,0r-11,41r-46,0r-2,9r46,0r-10,46r8,0r11,-46r51,0r-12,47r9,0r11,-47r49,0r2,-9r-48,0r10,-41r46,0xm130,-177r-10,41r-51,0r10,-41r51,0","w":194},"$":{"d":"98,3v40,0,64,-31,63,-73v0,-33,-21,-59,-63,-75r0,-99v18,2,30,11,38,25r14,-6v-11,-22,-29,-33,-52,-33r0,-19r-14,0r0,19v-33,-1,-58,26,-57,59v1,40,22,51,57,64r0,123v-29,0,-48,-16,-56,-46r-15,5v7,33,33,56,71,56r0,19r14,0r0,-19xm84,-150v-51,-8,-57,-89,0,-94r0,94xm98,-129v47,16,60,60,37,99v-8,12,-21,18,-37,18r0,-117","w":170},"%":{"d":"60,-162v23,0,45,-19,45,-44v0,-24,-21,-45,-45,-45v-24,0,-45,21,-45,45v0,23,22,44,45,44xm176,-257r-14,0r-140,257r15,0xm132,3v23,0,45,-19,45,-44v0,-24,-21,-45,-45,-45v-24,0,-45,21,-45,45v0,23,22,44,45,44xm60,-236v15,0,30,15,30,30v0,16,-16,30,-30,30v-15,0,-30,-15,-30,-30v0,-15,15,-30,30,-30xm132,-72v16,0,30,15,30,31v0,15,-15,29,-30,29v-15,0,-30,-14,-30,-29v0,-16,14,-31,30,-31","w":191},"&":{"d":"42,-112v-48,35,-33,115,30,113v25,0,52,-11,81,-35r23,34r17,0r-28,-43r38,-31r-8,-10r-38,30r-56,-85v22,-15,58,-38,58,-65v0,-32,-22,-50,-55,-50v-47,0,-69,59,-36,91r14,22xm104,-241v47,0,53,57,17,73r-27,19v-9,-18,-26,-30,-28,-55v-1,-20,19,-37,38,-37xm146,-45v-28,32,-118,54,-118,-10v0,-34,34,-59,61,-76","w":216},"'":{"d":"37,-257r-15,0r4,57r7,0","w":59},"(":{"d":"41,-271v-37,90,-34,213,0,293r12,0v-38,-91,-32,-207,0,-293r-12,0","w":66},")":{"d":"19,-271v37,93,34,208,0,293r13,0v37,-87,34,-210,0,-293r-13,0","w":69},"*":{"d":"98,-201v-2,-14,-25,-19,-43,-22v14,-3,43,-12,43,-23v0,-6,-3,-8,-8,-8v-12,3,-25,11,-37,27v6,-12,15,-45,-2,-49v-17,5,-5,36,-2,49v-10,-8,-22,-27,-36,-27v-15,7,-7,19,9,24v8,3,17,5,26,7v-29,7,-43,14,-43,22v2,18,21,5,27,-2r17,-16v-3,13,-18,44,2,48v17,-4,5,-36,2,-48v10,8,22,25,37,26v6,0,8,-3,8,-8","w":104},"+":{"d":"114,-88r0,-15r-37,0r0,-36r-17,0r0,36r-36,0r0,15r36,0r0,37r17,0r0,-37r37,0","w":136},",":{"d":"56,-19r-13,-6r-26,59r4,3","w":64},"-":{"d":"82,-88r0,-15r-76,0r0,15r76,0","w":97},".":{"d":"18,-22v-17,1,-14,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12","w":40},"\/":{"d":"98,-262r-14,0r-76,262r15,0","w":103},"0":{"d":"101,4v62,0,94,-67,94,-135v0,-67,-33,-134,-94,-134v-61,0,-95,68,-95,134v0,67,34,135,95,135xm101,-251v106,0,106,237,0,239v-53,1,-79,-60,-79,-119v0,-58,28,-120,79,-120","w":200,"k":{"{":-33,"`":10,"_":138,"]":8,"Z":22,"Y":14,"X":13,"W":20,"V":20,"T":17,"J":9,"A":9,"7":15,"4":21,"3":12,"2":9,"1":62}},"1":{"d":"121,0r0,-257r-49,0r-9,15r43,0r0,242r15,0","k":{"~":42,"}":40,"|":47,"{":33,"z":53,"y":44,"x":38,"w":45,"v":44,"u":50,"t":42,"s":43,"r":51,"q":41,"p":51,"o":43,"n":51,"m":51,"l":55,"k":52,"j":51,"i":51,"h":54,"g":43,"f":47,"e":42,"d":56,"c":47,"b":48,"a":43,"`":64,"_":134,"^":46,"]":75,"\\":43,"[":49,"Z":55,"Y":50,"X":47,"W":48,"V":49,"U":55,"T":54,"S":51,"R":55,"Q":53,"P":55,"O":50,"N":55,"M":42,"L":55,"K":51,"J":50,"I":55,"H":55,"G":50,"F":55,"E":53,"D":55,"C":50,"B":55,"A":49,"9":47,"8":54,"7":50,"6":43,"5":53,"4":60,"3":67,"2":63,"1":98,"0":37}},"2":{"d":"44,-198v7,-65,120,-58,119,7v0,16,-4,32,-15,45r-126,146r155,0r0,-15r-123,0r100,-114v48,-50,18,-130,-51,-130v-39,0,-70,30,-76,61r17,0","k":{"~":9,"}":9,"z":23,"y":21,"w":22,"v":21,"u":12,"t":16,"s":20,"r":21,"q":15,"p":21,"o":17,"n":21,"m":21,"l":21,"k":18,"j":18,"i":18,"h":20,"g":17,"f":21,"e":16,"d":27,"c":21,"a":17,"`":10,"_":151,"^":18,"]":25,"\\":21,"Z":22,"Y":19,"W":11,"V":12,"U":21,"T":24,"S":13,"R":21,"Q":9,"P":21,"O":22,"N":21,"L":21,"K":17,"J":18,"I":21,"H":21,"G":22,"F":21,"E":19,"D":21,"C":22,"B":21,"8":12,"7":16,"6":15,"5":22,"4":71,"3":21,"2":13,"1":68}},"3":{"d":"97,2v41,0,75,-29,74,-71v0,-36,-17,-60,-51,-70v80,-14,52,-124,-21,-124v-39,0,-65,24,-69,60r17,0v6,-30,23,-45,52,-45v29,-1,52,21,52,51v0,37,-26,50,-65,48r0,21v41,-4,68,23,68,59v0,31,-26,57,-57,56v-25,0,-50,-20,-55,-41r-15,0v7,33,32,56,70,56","k":{"~":11,"}":17,"z":27,"y":14,"x":9,"w":15,"v":14,"u":19,"t":11,"s":19,"r":20,"p":19,"n":20,"m":20,"l":8,"k":20,"j":21,"i":21,"h":8,"f":15,"d":9,"c":16,"b":16,"`":18,"_":158,"^":15,"]":28,"\\":7,"[":18,"Z":28,"Y":21,"X":19,"W":14,"V":14,"U":8,"T":22,"S":21,"R":8,"Q":11,"P":8,"O":8,"N":9,"M":22,"L":8,"K":20,"J":15,"I":8,"H":8,"G":8,"F":8,"E":22,"D":8,"C":8,"B":8,"A":17,"9":19,"8":7,"7":20,"5":23,"4":15,"3":21,"2":21,"1":66}},"4":{"d":"194,-49r0,-14r-30,0r0,-198r-147,212r132,0r0,49r15,0r0,-49r30,0xm149,-63r-106,0r106,-152r0,152","k":{"z":9,"y":16,"w":17,"f":17,"`":21,"_":135,"^":19,"]":8,"Z":10,"Y":23,"X":19,"W":21,"V":21,"T":11,"J":23,"A":17,"9":20,"7":23,"3":22,"2":19,"1":55}},"5":{"d":"94,4v54,1,91,-42,91,-96v0,-60,-57,-100,-121,-84r16,-66r87,0r0,-15r-99,0r-26,100v60,-22,128,3,128,65v0,45,-32,82,-76,81v-39,0,-57,-17,-71,-45r-13,6v15,36,43,54,84,54","k":{"z":17,"`":90,"_":144,"^":22,"]":19,"\\":17,"Z":21,"Y":9,"X":9,"W":22,"V":7,"T":13,"M":17,"J":13,"A":12,"9":18,"7":10,"5":17,"4":9,"3":15,"2":39,"1":57}},"6":{"d":"99,6v77,0,116,-97,63,-151v-27,-27,-78,-34,-110,-12r55,-100r-17,0v-25,60,-76,97,-80,175v-3,51,37,88,89,88xm99,-156v41,0,74,36,74,74v1,41,-33,74,-74,74v-41,0,-74,-33,-74,-74v0,-40,33,-74,74,-74","k":{"}":23,"z":19,"`":99,"_":141,"^":10,"]":18,"\\":21,"Z":22,"Y":51,"X":13,"W":30,"V":30,"T":42,"J":9,"A":9,"9":20,"7":15,"4":22,"3":13,"2":35,"1":76}},"7":{"d":"192,-257r-181,0r0,15r154,0r-156,236r12,10","k":{"~":55,"z":65,"y":52,"x":46,"w":53,"v":52,"u":58,"t":26,"s":71,"r":59,"q":75,"p":59,"o":77,"n":59,"m":59,"l":17,"j":32,"i":32,"h":16,"g":77,"f":12,"e":76,"d":82,"c":80,"a":77,"`":19,"_":137,"^":27,"]":21,"Z":8,"U":17,"S":27,"R":16,"Q":41,"P":16,"O":38,"N":18,"M":40,"L":16,"J":49,"I":17,"H":16,"G":38,"F":16,"D":16,"C":38,"B":16,"A":72,"9":21,"8":25,"6":50,"5":44,"4":112,"3":34,"2":35,"1":49,"0":17}},"8":{"d":"99,5v42,0,76,-31,75,-73v0,-35,-21,-58,-50,-68v24,-6,40,-31,41,-59v0,-39,-27,-66,-67,-66v-73,0,-87,108,-26,125v-28,10,-48,32,-48,68v-1,43,32,73,75,73xm98,-247v29,-1,53,23,52,52v0,30,-21,53,-52,53v-29,0,-50,-25,-51,-53v0,-29,22,-52,51,-52xm98,-130v34,0,60,29,61,62v0,33,-26,58,-61,58v-32,0,-61,-26,-60,-58v0,-33,27,-62,60,-62","k":{"~":12,"}":15,"z":25,"y":14,"x":9,"w":15,"v":14,"u":16,"t":8,"r":17,"p":17,"n":17,"m":17,"l":22,"k":18,"j":21,"i":20,"h":21,"f":13,"d":23,"`":22,"_":155,"^":18,"]":26,"\\":11,"Z":25,"Y":24,"X":16,"W":17,"V":18,"U":22,"T":26,"S":19,"R":21,"Q":9,"P":21,"O":22,"N":23,"M":20,"L":21,"K":17,"J":12,"I":21,"H":21,"G":22,"F":21,"E":19,"D":21,"C":22,"B":21,"A":14,"9":22,"8":21,"7":18,"5":20,"4":13,"3":18,"2":25,"1":70}},"9":{"d":"99,-259v-77,0,-116,98,-63,152v27,27,77,31,110,12r-51,92r14,7r70,-128v28,-63,-13,-135,-80,-135xm99,-244v41,0,74,33,74,74v0,41,-33,74,-74,74v-41,0,-74,-34,-74,-74v0,-41,33,-74,74,-74","k":{"}":19,"o":17,"g":16,"d":12,"c":20,"a":16,"`":22,"_":141,"]":14,"Z":28,"Y":14,"X":14,"W":20,"V":20,"T":21,"S":19,"M":12,"J":40,"A":31,"8":17,"7":18,"5":18,"4":36,"3":13,"2":9,"1":64}},":":{"d":"30,-128v-17,1,-14,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm30,-22v-17,1,-14,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12","w":58},";":{"d":"37,-128v-17,1,-14,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm54,-19r-13,-6r-26,59r4,3","w":73},"<":{"d":"102,-40r0,-16r-64,-39r64,-39r0,-16r-90,55","w":113},"=":{"d":"95,-110r0,-15r-82,0r0,15r82,0xm95,-66r0,-14r-82,0r0,14r82,0","w":106},">":{"d":"107,-95r-90,-55r0,16r63,39r-63,39r0,16","w":113},"?":{"d":"105,-77v-13,11,-47,10,-44,-12v8,-54,94,-55,95,-117v0,-35,-29,-56,-67,-55v-35,0,-59,16,-72,48r13,6v13,-24,29,-37,59,-39v51,-4,69,55,29,79v-23,22,-71,40,-73,78v-3,35,48,44,69,23xm93,-12v-1,-8,-5,-12,-12,-12v-8,0,-13,5,-13,12v0,17,26,18,25,0","w":168},"@":{"d":"163,-19v27,0,40,-27,40,-56v1,-49,-44,-88,-95,-88v-53,0,-96,41,-96,92v0,83,102,120,161,71r-7,-7v-47,44,-144,11,-144,-64v0,-47,39,-83,86,-83v47,0,86,34,86,79v0,22,-12,46,-30,46v-30,-6,-9,-55,-11,-83r-9,0r-1,19v-19,-40,-92,-18,-87,28v-6,49,64,61,83,25v2,11,11,21,24,21xm105,-105v19,0,33,14,33,34v0,24,-15,42,-40,42v-22,0,-32,-12,-32,-36v0,-21,18,-41,39,-40","w":214},"A":{"d":"217,0r-103,-265r-103,265r15,0r29,-77r117,0r30,77r15,0xm166,-92r-105,0r53,-136","w":227,"k":{"~":25,"}":20,"y":30,"w":31,"v":30,"u":18,"t":18,"o":17,"l":17,"h":16,"g":17,"f":9,"d":19,"c":21,"a":17,"`":81,"_":144,"^":39,"]":21,"\\":46,"Z":17,"Y":54,"W":58,"V":58,"U":15,"T":46,"S":12,"R":17,"Q":28,"P":17,"O":26,"N":17,"L":17,"J":17,"I":17,"H":17,"G":26,"F":17,"D":17,"C":26,"B":17,"9":39,"8":15,"6":22,"5":13,"4":21,"3":27,"2":9,"1":79,"0":11}},"B":{"d":"108,0v43,1,80,-31,80,-75v0,-38,-26,-65,-59,-71v50,-28,26,-121,-39,-111r-63,0r0,257r81,0xm42,-242v50,-3,99,-1,99,47v0,47,-49,49,-99,46r0,-93xm42,-134v65,-4,132,-1,132,59v0,60,-66,64,-132,60r0,-119","w":201,"k":{"}":7,"z":18,"y":19,"x":19,"w":19,"v":19,"t":16,"f":22,"`":36,"_":145,"^":17,"]":18,"\\":22,"Z":21,"Y":36,"X":12,"W":27,"V":28,"T":38,"J":8,"A":8,"9":10,"7":14,"4":21,"3":12,"2":34,"1":76}},"C":{"d":"18,-129v0,114,141,174,222,101r0,-17v-28,21,-48,33,-90,34v-67,1,-117,-51,-117,-118v0,-67,50,-118,117,-117v36,0,69,13,90,31r0,-18v-22,-19,-52,-27,-90,-28v-76,-1,-132,55,-132,132","w":252,"k":{"~":186,"}":26,"|":10,"{":9,"z":32,"y":48,"x":16,"w":46,"v":46,"u":16,"t":26,"s":8,"r":17,"q":10,"p":15,"o":12,"n":17,"m":17,"l":18,"k":15,"j":22,"i":22,"h":17,"g":12,"f":26,"e":12,"d":23,"c":17,"b":10,"a":12,"`":28,"_":145,"^":39,"]":37,"\\":11,"[":12,"Z":30,"Y":23,"X":21,"W":16,"V":17,"U":19,"T":28,"S":17,"R":18,"Q":15,"P":18,"O":35,"N":19,"M":10,"L":18,"K":15,"J":15,"I":19,"H":18,"G":35,"F":18,"E":17,"D":18,"C":35,"B":18,"A":19,"9":18,"8":20,"7":22,"6":12,"5":18,"4":115,"3":32,"2":34,"1":72,"0":15}},"D":{"d":"113,0v68,1,115,-58,115,-129v0,-69,-48,-128,-115,-128r-86,0r0,257r86,0xm113,-243v58,-1,100,52,100,114v0,63,-42,115,-100,114r-71,0r0,-228r71,0","w":247,"k":{"}":15,"z":22,"l":20,"k":16,"j":18,"i":18,"h":19,"d":9,"`":33,"_":152,"]":24,"\\":15,"Z":43,"Y":37,"X":33,"W":21,"V":22,"U":20,"T":49,"S":15,"R":19,"P":19,"N":20,"M":12,"L":19,"J":34,"I":20,"H":19,"F":19,"E":18,"D":19,"B":19,"A":26,"8":8,"7":37,"5":17,"4":24,"3":31,"2":29,"1":82}},"E":{"d":"149,0r0,-15r-109,0r0,-118r109,0r0,-16r-109,0r0,-93r109,0r0,-15r-123,0r0,257r123,0","w":170,"k":{"~":21,"}":18,"|":10,"z":15,"y":22,"w":23,"v":22,"u":12,"t":22,"s":12,"r":13,"q":22,"p":13,"o":23,"n":13,"m":13,"l":18,"k":15,"j":18,"i":18,"h":17,"g":23,"f":10,"e":22,"d":37,"c":27,"b":10,"a":23,"`":118,"_":145,"^":11,"]":38,"\\":22,"[":12,"Z":18,"Y":13,"X":10,"W":11,"V":12,"U":18,"T":17,"S":31,"R":18,"Q":16,"P":18,"O":13,"N":18,"M":21,"L":18,"K":14,"J":15,"I":18,"H":18,"G":13,"F":18,"E":16,"D":18,"C":13,"B":18,"A":12,"9":11,"8":33,"7":13,"6":13,"5":34,"4":68,"3":46,"2":26,"1":62}},"F":{"d":"139,-134r0,-15r-97,0r0,-93r97,0r0,-15r-112,0r0,257r15,0r0,-134r97,0","w":155,"k":{"|":21,"z":16,"y":18,"w":19,"v":18,"u":8,"t":17,"s":12,"r":9,"q":18,"p":9,"o":19,"n":9,"m":9,"l":13,"k":10,"j":13,"i":13,"h":12,"g":19,"f":21,"e":18,"d":32,"c":23,"b":21,"a":19,"`":103,"_":129,"^":21,"]":33,"\\":17,"[":23,"Z":20,"Y":8,"X":8,"W":22,"V":23,"U":14,"T":13,"S":36,"R":13,"Q":11,"P":13,"O":8,"N":13,"M":27,"L":13,"K":9,"J":61,"I":13,"H":13,"G":8,"F":13,"E":11,"D":13,"C":8,"B":13,"A":47,"9":22,"8":32,"7":10,"6":8,"5":54,"4":63,"3":42,"2":45,"1":57}},"G":{"d":"18,-129v0,77,55,133,132,133v75,0,133,-55,133,-128r-102,0r0,15r85,0v-5,55,-56,98,-116,98v-67,0,-118,-51,-118,-118v0,-66,51,-118,118,-117v42,0,74,15,97,47r12,-9v-26,-35,-63,-53,-109,-53v-74,-1,-132,57,-132,132","w":295,"k":{"~":18,"}":21,"|":18,"z":48,"y":17,"w":18,"t":14,"s":17,"r":16,"n":16,"m":16,"l":10,"k":23,"j":12,"i":12,"h":10,"f":18,"d":15,"b":19,"`":48,"_":146,"^":58,"]":30,"\\":27,"[":20,"Z":49,"Y":44,"X":40,"W":34,"V":34,"U":11,"T":55,"S":21,"R":10,"Q":9,"P":10,"O":22,"N":11,"M":18,"L":10,"K":22,"J":41,"I":10,"H":10,"G":22,"F":10,"E":8,"D":10,"C":22,"B":10,"A":32,"9":10,"8":14,"7":43,"5":23,"4":31,"3":37,"2":42,"1":88}},"H":{"d":"198,0r0,-257r-15,0r0,108r-141,0r0,-108r-15,0r0,257r15,0r0,-134r141,0r0,134r15,0","w":221,"k":{"z":17,"l":19,"h":18,"d":20,"`":12,"_":156,"]":23,"Z":19,"U":19,"T":18,"R":19,"P":19,"N":19,"L":19,"I":19,"H":19,"F":19,"E":17,"D":19,"B":19,"8":18,"5":17,"4":8,"3":15,"2":11,"1":46}},"I":{"d":"42,0r0,-257r-14,0r0,257r14,0","w":69,"k":{"z":20,"u":18,"r":19,"p":18,"n":19,"m":19,"l":23,"k":19,"j":18,"i":18,"h":22,"d":8,"`":15,"_":41,"]":66,"[":17,"Z":23,"Y":18,"V":16,"U":7,"T":22,"S":19,"R":23,"Q":18,"P":23,"O":18,"N":23,"L":23,"K":19,"J":18,"I":23,"H":23,"G":18,"F":23,"E":21,"D":23,"C":18,"B":23,"8":22,"7":18,"5":21,"4":12,"3":19,"2":14,"1":50}},"J":{"d":"92,-51r0,-206r-15,0r0,205v4,44,-38,51,-54,24r-12,7v20,40,81,30,81,-30","w":113,"k":{"z":20,"l":18,"h":17,"d":18,"`":10,"_":103,"]":21,"Z":9,"U":18,"T":17,"R":17,"P":17,"N":19,"L":17,"I":18,"H":17,"F":17,"D":17,"B":17,"A":19,"8":17,"4":23,"3":14,"2":14,"1":45}},"K":{"d":"185,0r-134,-134r123,-123r-21,0r-114,114r0,-114r-15,0r0,257r15,0v2,-40,-4,-88,2,-124r124,124r20,0","w":188,"k":{"~":89,"y":32,"w":36,"v":38,"u":10,"t":17,"s":17,"q":13,"o":14,"g":14,"f":20,"e":13,"d":27,"c":18,"a":14,"`":41,"_":136,"^":46,"]":17,"Y":16,"U":22,"T":21,"S":19,"Q":46,"O":43,"J":17,"G":43,"C":43,"9":32,"8":21,"6":15,"5":22,"4":38,"3":34,"2":20,"1":54,"0":20}},"L":{"d":"114,0r0,-15r-72,0r0,-242r-15,0r0,257r87,0","w":128,"k":{"~":53,"}":11,"z":20,"y":41,"w":41,"v":43,"u":10,"t":10,"s":17,"r":19,"q":13,"p":18,"o":15,"n":19,"m":19,"l":8,"k":20,"j":22,"i":22,"h":22,"g":15,"f":15,"e":13,"d":28,"c":18,"a":15,"`":75,"_":101,"^":58,"]":27,"\\":50,"[":17,"Z":8,"Y":60,"W":58,"V":59,"U":23,"T":52,"S":21,"R":7,"Q":51,"P":7,"O":48,"N":8,"L":7,"K":19,"J":20,"I":8,"H":7,"G":48,"F":7,"E":21,"D":7,"C":48,"B":7,"A":17,"9":57,"8":23,"7":18,"6":17,"5":24,"4":71,"3":36,"2":15,"1":86,"0":22}},"M":{"d":"317,0r-67,-265r-87,230r-88,-230r-67,265r15,0r55,-216r85,222r84,-222r55,216r15,0","w":324,"k":{"~":21,"y":12,"w":12,"v":11,"f":18,"d":8,"`":49,"_":140,"^":15,"]":15,"\\":33,"Y":40,"W":39,"V":39,"U":21,"T":39,"S":17,"Q":15,"O":11,"G":11,"C":11,"9":17,"8":20,"5":17,"4":8,"3":17,"2":17,"1":72}},"N":{"d":"234,4r0,-261r-14,0r0,223r-192,-225r0,259r14,0r0,-218","w":257,"k":{"z":16,"l":20,"k":16,"h":19,"d":21,"`":12,"_":156,"]":19,"Z":19,"U":19,"T":18,"R":19,"P":19,"N":21,"L":19,"I":19,"H":19,"F":19,"E":17,"D":19,"B":19,"8":19,"5":16,"4":9,"3":16,"2":12,"1":46}},"O":{"d":"150,4v77,0,133,-56,133,-133v0,-77,-57,-132,-133,-132v-76,0,-132,55,-132,132v0,77,55,133,132,133xm150,-246v68,0,118,49,118,117v0,68,-50,118,-118,118v-67,0,-117,-51,-117,-118v0,-67,50,-117,117,-117","w":295,"k":{"}":9,"d":19,"`":27,"_":146,"]":18,"\\":9,"Z":37,"Y":31,"X":28,"W":17,"V":17,"T":42,"S":10,"O":10,"M":23,"J":30,"A":21,"8":19,"7":31,"5":11,"4":19,"3":26,"2":23,"1":76}},"P":{"d":"42,-129v63,5,118,-7,118,-64v1,-62,-64,-70,-133,-64r0,257r15,0r0,-129xm42,-242v52,-3,103,-1,103,49v0,49,-50,54,-103,50r0,-99","w":176,"k":{"~":31,"}":19,"|":17,"{":16,"z":31,"y":18,"x":12,"w":17,"v":17,"u":23,"t":10,"s":39,"r":25,"q":48,"p":24,"o":50,"n":25,"m":25,"l":9,"k":22,"j":8,"i":8,"h":8,"g":50,"f":13,"e":49,"d":55,"c":54,"b":17,"a":50,"`":8,"_":149,"^":18,"]":29,"\\":8,"[":19,"Z":34,"Y":22,"X":23,"W":14,"V":15,"U":9,"T":27,"S":17,"R":9,"Q":13,"P":9,"O":10,"N":9,"M":32,"L":9,"K":21,"J":57,"I":9,"H":9,"G":10,"F":9,"E":7,"D":9,"C":10,"B":9,"A":57,"9":18,"8":15,"7":24,"6":22,"5":37,"4":80,"3":25,"2":21,"1":71}},"Q":{"d":"153,4v76,0,132,-56,132,-133v0,-76,-56,-132,-132,-132v-76,0,-132,55,-132,132v0,77,55,133,132,133xm153,-246v68,0,118,49,118,117v0,68,-50,118,-118,118v-67,0,-117,-50,-117,-118v0,-67,49,-117,117,-117xm229,35r0,-15r-76,0r0,15r76,0","w":295,"k":{"d":18,"`":24,"]":17,"\\":24,"Z":35,"Y":28,"X":25,"W":14,"V":14,"T":40,"S":24,"M":22,"J":27,"A":18,"8":18,"7":28,"5":8,"4":17,"3":23,"2":21,"1":73}},"R":{"d":"157,-193v0,-64,-62,-68,-130,-64r0,257r15,0r0,-129r27,0r82,129r17,0r-82,-129v44,0,71,-20,71,-64xm42,-242v51,-2,100,-2,100,48v0,51,-47,55,-100,51r0,-99","w":174,"k":{"~":24,"}":17,"y":17,"w":18,"v":17,"u":8,"s":18,"q":12,"o":14,"g":14,"f":18,"e":13,"d":24,"c":17,"a":14,"`":21,"_":145,"]":18,"Y":12,"W":19,"V":20,"T":16,"S":23,"J":18,"8":21,"6":11,"5":19,"4":30,"3":14,"2":22,"1":60}},"S":{"d":"90,3v86,0,95,-105,34,-136v-30,-16,-81,-26,-81,-66v0,-52,83,-58,101,-20r14,-6v-24,-53,-130,-40,-130,26v0,77,122,55,122,132v1,37,-24,55,-60,55v-32,0,-53,-15,-61,-46r-15,5v11,37,37,56,76,56","w":179,"k":{"~":21,"}":11,"z":16,"y":9,"w":9,"v":8,"t":22,"l":18,"j":17,"i":17,"h":17,"f":10,"d":19,"`":28,"_":147,"^":35,"]":22,"\\":18,"Z":20,"Y":15,"X":11,"W":8,"V":8,"U":18,"T":18,"R":18,"Q":18,"P":18,"O":18,"N":19,"L":18,"J":22,"I":18,"H":18,"G":18,"F":18,"D":18,"C":18,"B":18,"A":9,"9":11,"8":17,"7":13,"5":17,"4":8,"3":15,"2":25,"1":62}},"T":{"d":"145,-242r0,-15r-129,0r0,15r57,0r0,242r15,0r0,-242r57,0","w":158,"k":{"~":38,"z":48,"y":40,"x":33,"w":40,"v":39,"u":46,"t":38,"s":39,"r":47,"q":37,"p":46,"o":39,"n":47,"m":47,"l":21,"k":17,"j":46,"i":46,"h":19,"g":39,"f":13,"e":38,"d":51,"c":43,"a":39,"`":59,"_":143,"^":42,"]":24,"Z":12,"U":21,"T":20,"S":27,"R":20,"Q":48,"P":20,"O":45,"N":21,"M":37,"L":20,"K":17,"J":45,"I":21,"H":20,"G":45,"F":20,"E":18,"D":20,"C":45,"B":20,"A":44,"9":24,"8":24,"7":17,"6":38,"5":46,"4":55,"3":33,"2":37,"1":48,"0":17}},"U":{"d":"102,3v43,0,74,-26,74,-67r0,-193r-14,0r0,193v0,30,-27,52,-60,52v-34,0,-60,-19,-60,-52r0,-193r-15,0r0,193v-1,42,33,67,75,67","w":199,"k":{"z":22,"r":16,"n":16,"m":16,"l":20,"k":16,"h":19,"d":21,"`":12,"_":156,"]":24,"Z":11,"U":21,"T":19,"S":17,"R":19,"P":19,"N":21,"M":17,"L":19,"J":9,"I":20,"H":19,"F":19,"E":18,"D":19,"B":19,"A":11,"8":19,"7":17,"5":18,"4":10,"3":17,"2":15,"1":47}},"V":{"d":"179,-257r-16,0r-67,212r-68,-212r-15,0r83,261","w":189,"k":{"~":18,"z":31,"y":18,"x":12,"w":18,"v":17,"u":24,"t":13,"s":32,"r":24,"q":30,"p":24,"o":32,"n":24,"m":24,"j":12,"i":12,"g":32,"f":9,"e":31,"d":41,"c":36,"a":32,"`":12,"_":143,"^":15,"]":18,"Z":21,"S":17,"Q":22,"O":19,"M":37,"J":46,"G":19,"C":19,"A":56,"9":7,"8":16,"6":24,"5":42,"4":55,"3":25,"2":23,"1":44,"0":19}},"W":{"d":"306,-257r-15,0r-67,210r-65,-215r-65,215r-67,-210r-15,0r83,261r64,-216r64,216","w":315,"k":{"~":17,"z":30,"y":16,"x":11,"w":17,"v":16,"u":22,"t":11,"s":30,"r":23,"q":29,"p":23,"o":31,"n":23,"m":23,"j":10,"i":10,"g":31,"f":8,"e":30,"d":41,"c":35,"a":31,"`":10,"_":141,"^":14,"]":17,"Z":19,"S":15,"Q":21,"O":18,"M":36,"J":45,"G":18,"C":18,"A":55,"9":22,"8":15,"6":23,"5":40,"4":55,"3":24,"2":22,"1":42,"0":18}},"X":{"d":"181,0r-75,-132r71,-125r-17,0r-64,111r-63,-111r-17,0r71,124r-75,133r16,0r68,-119r69,119r16,0","w":190,"k":{"~":45,"y":31,"w":36,"v":37,"u":22,"t":17,"q":21,"o":23,"g":23,"f":20,"e":22,"d":19,"c":11,"a":23,"`":25,"_":142,"^":34,"]":17,"U":16,"S":13,"Q":33,"O":30,"G":30,"C":30,"9":17,"8":15,"6":8,"5":14,"4":22,"3":28,"2":20,"1":48,"0":13}},"Y":{"d":"173,-257r-17,0r-64,111r-63,-111r-17,0r73,128r0,129r15,0r0,-129","w":183,"k":{"~":50,"z":55,"y":42,"x":37,"w":42,"v":42,"u":48,"t":24,"s":52,"r":49,"q":50,"p":49,"o":51,"n":49,"m":49,"l":17,"j":27,"i":27,"h":16,"g":51,"f":13,"e":51,"d":61,"c":56,"a":51,"`":22,"_":143,"^":31,"]":21,"Z":8,"U":18,"T":17,"S":26,"R":17,"Q":37,"P":17,"O":35,"N":17,"M":40,"L":17,"J":49,"I":17,"H":17,"G":35,"F":17,"D":17,"C":35,"B":17,"A":54,"9":19,"8":24,"6":48,"5":45,"4":65,"3":33,"2":34,"1":49,"0":15}},"Z":{"d":"188,-257r-165,0r0,15r138,0r-147,242r173,0r0,-15r-147,0","w":199,"k":{"~":56,"z":8,"y":44,"w":45,"v":46,"u":14,"t":11,"s":21,"r":22,"q":17,"p":22,"o":18,"n":22,"m":22,"l":21,"k":17,"j":8,"i":7,"h":19,"g":18,"f":13,"e":17,"d":26,"c":22,"a":18,"`":24,"_":144,"^":33,"]":24,"Z":21,"U":21,"T":20,"S":18,"R":20,"Q":42,"P":20,"O":39,"N":21,"L":20,"K":17,"J":18,"I":21,"H":20,"G":40,"F":20,"E":18,"D":20,"C":39,"B":20,"9":23,"8":20,"6":14,"5":22,"4":109,"3":33,"2":13,"1":53,"0":19}},"[":{"d":"61,17r0,-13r-25,0r0,-263r24,0r0,-13r-39,0r0,289r40,0","w":77,"k":{"~":8,"z":18,"y":10,"x":19,"w":10,"v":10,"u":16,"t":8,"s":9,"r":17,"q":8,"o":9,"n":17,"m":17,"l":17,"i":17,"h":17,"g":10,"f":13,"e":8,"d":22,"c":13,"a":9,"`":30,"^":12,"\\":9,"Z":21,"Y":16,"X":13,"W":14,"V":15,"U":21,"T":20,"S":17,"R":21,"Q":21,"P":21,"O":16,"N":18,"M":9,"L":21,"K":17,"J":13,"I":21,"H":21,"G":16,"F":21,"E":19,"D":21,"C":16,"B":21,"A":14,"9":13,"8":20,"7":17,"6":9,"5":18,"4":26,"3":33,"2":28,"1":64,"0":19}},"\\":{"d":"96,0r-73,-257r-15,0r74,257r14,0","w":101,"k":{"~":23,"y":11,"w":12,"v":10,"d":22,"`":54,"_":93,"^":18,"]":12,"\\":37,"Y":45,"W":42,"V":43,"U":19,"T":37,"Q":13,"O":10,"G":10,"C":10,"9":18,"8":19,"4":8,"3":15,"1":70}},"]":{"d":"62,17r0,-289r-39,0r0,13r25,0r0,263r-26,0r0,13r40,0","w":77,"k":{"`":19,"_":55,"4":16,"3":7,"2":18,"1":38}},"^":{"d":"114,-136r-44,-101r-12,0r-43,101r9,0r40,-74r40,74r10,0","w":126,"k":{"}":10,"q":8,"o":10,"g":9,"e":8,"d":33,"c":13,"a":9,"`":33,"_":112,"]":17,"\\":8,"Z":72,"Y":31,"X":35,"W":15,"V":17,"T":42,"S":15,"M":14,"J":46,"A":37,"8":17,"7":70,"5":22,"4":53,"3":36,"2":33,"1":76}},"_":{"d":"132,76r0,-13r-132,0r0,13r132,0","w":128,"k":{"~":139,"}":63,"z":145,"y":-17,"x":121,"w":139,"v":138,"u":129,"t":77,"s":107,"r":98,"q":140,"o":141,"n":135,"m":152,"l":38,"k":140,"i":42,"h":140,"f":86,"e":141,"d":144,"c":135,"b":148,"a":141,"`":85,"_":-51,"^":110,"\\":92,"Z":143,"Y":140,"X":140,"W":141,"V":142,"U":156,"T":141,"S":143,"R":156,"Q":149,"P":156,"O":147,"N":156,"M":137,"L":110,"K":152,"J":88,"I":38,"H":156,"G":147,"F":135,"E":145,"D":156,"C":147,"B":156,"A":140,"9":139,"8":152,"7":137,"6":139,"5":138,"4":145,"3":155,"2":150,"1":117,"0":135}},"`":{"d":"89,-177r-48,-48r-8,8r47,48","w":119,"k":{"~":98,"}":24,"|":22,"{":22,"z":103,"y":97,"x":93,"w":97,"v":96,"u":109,"t":17,"s":97,"r":111,"q":98,"p":110,"o":99,"n":111,"m":111,"l":15,"k":11,"j":10,"i":10,"h":14,"g":99,"f":23,"e":99,"d":122,"c":104,"b":23,"a":99,"`":50,"_":87,"^":21,"]":35,"\\":16,"[":8,"Z":118,"Y":40,"X":45,"W":22,"V":23,"U":14,"T":107,"S":18,"R":14,"Q":17,"P":14,"O":14,"N":15,"M":41,"L":14,"K":11,"J":104,"I":15,"H":14,"G":15,"F":14,"E":13,"D":14,"C":14,"B":14,"A":106,"8":21,"7":113,"6":33,"5":35,"4":117,"3":51,"2":43,"1":93}},"a":{"d":"13,-74v0,71,95,105,136,48r0,26r14,0r0,-149r-14,0r0,26v-42,-56,-136,-22,-136,49xm89,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":183,"k":{"}":19,"`":109,"_":153,"]":20,"\\":15,"Y":46,"W":23,"V":24,"U":17,"T":46,"S":16,"N":18,"5":18,"4":17,"3":13,"2":7,"1":79}},"b":{"d":"35,-27v39,58,137,24,137,-47v0,-71,-97,-106,-137,-47r0,-145r-15,0r0,266r15,0r0,-27xm95,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":186,"k":{"}":17,"z":17,"y":21,"x":19,"w":21,"v":20,"t":8,"l":8,"k":20,"j":18,"i":18,"h":23,"f":15,"d":9,"`":140,"_":147,"^":33,"]":27,"\\":33,"[":17,"Z":30,"Y":60,"X":20,"W":42,"V":42,"U":7,"T":51,"S":21,"R":22,"Q":9,"P":22,"O":22,"N":8,"M":7,"L":22,"K":19,"J":16,"I":23,"H":22,"G":22,"F":22,"E":21,"D":22,"C":22,"B":22,"A":18,"9":20,"8":22,"7":22,"5":22,"4":15,"3":21,"2":42,"1":85}},"c":{"d":"17,-74v0,60,70,99,122,64r0,-19v-39,37,-108,10,-108,-45v0,-55,67,-82,108,-47r0,-17v-49,-35,-122,3,-122,64","w":157,"k":{"}":13,"|":17,"z":11,"y":17,"w":17,"v":17,"u":21,"r":22,"q":21,"p":21,"o":22,"n":22,"m":22,"l":10,"k":22,"j":9,"i":9,"h":9,"g":22,"f":17,"e":21,"d":9,"c":10,"b":18,"a":22,"`":107,"_":141,"]":28,"\\":27,"[":19,"Z":8,"Y":62,"X":21,"W":35,"V":36,"U":10,"T":55,"S":16,"R":10,"Q":7,"P":10,"O":20,"N":11,"L":10,"K":22,"J":19,"I":10,"H":10,"G":20,"F":10,"E":8,"D":10,"C":20,"B":10,"A":17,"9":9,"8":15,"5":19,"4":50,"3":28,"2":21,"1":89}},"d":{"d":"15,-74v0,71,97,105,138,47r0,27r14,0r0,-266r-14,0r0,144v-42,-56,-138,-24,-138,48xm92,-136v33,0,62,29,62,62v0,33,-29,62,-62,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":187,"k":{"d":18,"`":9,"_":153,"]":16,"U":17,"N":17,"4":21,"3":12,"2":8,"1":43}},"e":{"d":"144,-43v-25,55,-128,31,-117,-34r139,0v1,-43,-33,-74,-77,-74v-43,0,-77,34,-77,77v0,51,48,90,102,73v19,-6,35,-18,44,-36xm149,-91r-120,0v11,-62,112,-59,120,0","w":176,"k":{"}":8,"z":17,"y":21,"x":19,"w":20,"v":20,"t":17,"f":21,"e":-14,"`":99,"_":143,"^":23,"]":18,"\\":26,"Z":15,"Y":55,"X":11,"W":35,"V":36,"T":43,"S":9,"J":21,"A":19,"9":13,"7":7,"5":11,"4":13,"3":21,"2":31,"1":76}},"f":{"d":"90,-249r0,-15v-25,-9,-54,0,-54,31r0,84r-21,0r0,15r21,0r0,134r14,0r0,-134r36,0r0,-15r-36,0v4,-41,-19,-122,40,-100","w":97,"k":{"t":11,"q":18,"o":20,"l":14,"i":17,"g":19,"f":12,"e":18,"d":17,"c":8,"a":19,"`":36,"_":82,"Z":17,"S":22,"M":11,"J":21,"A":19,"8":16,"5":24,"4":31,"3":28,"2":32,"1":40}},"g":{"d":"90,70v44,0,73,-29,73,-73r0,-146r-14,0r0,26v-42,-56,-136,-22,-136,49v0,71,95,105,136,48v4,49,-13,82,-59,81v-29,0,-52,-11,-58,-33r-14,0v8,32,31,48,72,48xm89,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":183,"k":{"`":109,"\\":15,"Y":46,"W":23,"V":24,"U":17,"T":46,"Q":18,"N":18,"5":18,"4":17,"3":13,"2":7,"1":79}},"h":{"d":"41,-97v-1,-23,21,-39,45,-39v62,0,40,80,44,136r14,0v-2,-67,17,-151,-58,-151v-21,0,-36,7,-45,22r0,-137r-14,0r0,266r14,0r0,-97","w":164,"k":{"|":17,"y":18,"w":18,"v":17,"t":17,"l":9,"k":22,"j":21,"i":20,"h":8,"f":9,"d":10,"b":17,"`":111,"_":138,"^":21,"]":8,"\\":30,"[":18,"Z":9,"Y":62,"X":16,"W":39,"V":39,"U":9,"T":53,"S":21,"R":8,"Q":9,"P":8,"O":22,"N":10,"L":8,"K":21,"J":19,"I":9,"H":8,"G":22,"F":8,"E":22,"D":8,"C":22,"B":8,"A":19,"9":13,"8":8,"7":19,"5":22,"4":14,"3":21,"2":17,"1":87}},"i":{"d":"34,-199v-17,1,-13,23,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm41,0r0,-149r-15,0r0,149r15,0","w":66,"k":{"}":53,"z":18,"r":17,"p":17,"n":17,"m":17,"l":18,"h":17,"d":18,"`":28,"_":44,"]":68,"\\":22,"Z":20,"Y":66,"W":12,"V":13,"U":18,"T":68,"S":19,"R":17,"P":17,"N":18,"L":17,"I":18,"H":17,"F":17,"D":17,"B":17,"8":20,"5":21,"4":8,"3":21,"2":15,"1":112}},"j":{"d":"34,-199v-17,1,-13,23,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm41,65r0,-214r-14,0r0,214r14,0","w":66,"k":{"z":18,"r":17,"p":17,"n":17,"m":17,"l":18,"h":17,"d":18,"`":28,"]":21,"\\":22,"Z":20,"Y":66,"W":13,"V":14,"U":18,"T":68,"S":19,"R":18,"Q":21,"P":18,"N":19,"L":18,"I":18,"H":18,"F":18,"D":18,"B":18,"8":20,"5":20,"4":8,"3":21,"2":15,"1":112}},"k":{"d":"144,0r-87,-87r67,-67r-21,0r-64,64r0,-176r-15,0r0,266r15,0r0,-69r8,-8r78,77r19,0","w":150,"k":{"~":18,"}":18,"y":18,"w":18,"v":17,"u":23,"t":17,"q":10,"o":12,"g":12,"f":8,"e":10,"d":30,"c":15,"a":12,"`":100,"_":126,"^":17,"]":19,"\\":26,"Y":53,"W":34,"V":34,"U":16,"T":44,"S":21,"Q":15,"O":12,"J":20,"G":12,"C":12,"9":8,"8":24,"6":17,"5":24,"4":41,"3":37,"2":7,"1":77}},"l":{"d":"42,0r0,-266r-14,0r0,266r14,0","w":69,"k":{"z":20,"u":18,"r":19,"p":18,"n":19,"m":19,"l":23,"k":19,"j":18,"i":18,"h":22,"d":8,"`":15,"_":41,"]":7,"[":17,"Z":23,"Y":18,"V":16,"U":7,"T":22,"S":19,"R":23,"Q":18,"P":23,"O":18,"N":23,"L":23,"K":19,"J":18,"I":23,"H":23,"G":18,"F":23,"E":21,"D":23,"C":18,"B":23,"A":17,"8":22,"7":18,"5":21,"4":12,"3":19,"2":14,"1":50}},"m":{"d":"158,-136v56,0,29,85,35,136r15,0v-3,-63,19,-153,-50,-151v-19,0,-33,8,-42,24v-12,-28,-61,-33,-77,-7r0,-15r-15,0r0,149r15,0v6,-51,-21,-136,34,-136v55,0,29,85,35,136r15,0v7,-50,-23,-137,35,-136","w":231,"k":{"}":8,"z":17,"y":19,"w":18,"v":18,"r":16,"n":16,"m":16,"l":20,"k":17,"j":19,"i":19,"h":19,"f":17,"`":113,"_":156,"^":19,"]":24,"\\":27,"Y":61,"W":35,"V":36,"U":21,"T":50,"S":20,"R":20,"P":20,"N":20,"L":20,"K":16,"I":20,"H":20,"F":20,"E":18,"D":20,"B":20,"9":10,"8":19,"5":22,"4":21,"3":17,"2":11,"1":83}},"n":{"d":"39,0v4,-55,-18,-136,42,-136v60,0,40,81,43,136r15,0v-1,-68,15,-150,-58,-150v-22,0,-35,6,-42,19r0,-18r-15,0r0,149r15,0","w":162,"k":{"}":8,"z":18,"y":22,"w":21,"v":22,"r":16,"n":16,"m":16,"l":20,"k":17,"j":19,"i":19,"h":19,"f":20,"`":113,"_":139,"^":8,"]":24,"\\":30,"Y":62,"W":38,"V":39,"U":21,"T":50,"S":20,"R":20,"P":20,"N":20,"L":20,"K":16,"I":20,"H":20,"F":20,"E":18,"D":20,"B":20,"9":13,"8":19,"5":23,"4":22,"3":17,"2":12,"1":83}},"o":{"d":"89,3v42,0,77,-35,77,-77v0,-43,-35,-77,-77,-77v-42,0,-76,36,-76,77v0,42,34,77,76,77xm89,-137v34,0,64,28,63,63v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-63,62,-63","w":179,"k":{"}":22,"z":17,"y":20,"x":19,"w":19,"v":19,"o":-15,"f":19,"`":102,"_":146,"^":12,"]":16,"\\":25,"Z":14,"Y":53,"X":10,"W":34,"V":35,"T":41,"J":20,"A":17,"9":13,"7":22,"5":16,"3":10,"2":30,"1":75}},"p":{"d":"38,-28v39,59,138,26,138,-46v0,-71,-99,-106,-138,-47r0,-28r-15,0r0,219r15,0r0,-98xm99,-136v33,0,62,29,62,62v0,33,-29,62,-62,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":184,"k":{"}":19,"z":12,"y":8,"v":16,"`":98,"_":99,"^":8,"]":13,"\\":21,"Z":9,"Y":49,"X":21,"W":30,"V":31,"T":37,"Q":18,"9":9,"7":18,"3":22,"2":26,"1":70}},"q":{"d":"11,-74v0,72,96,105,137,47r0,97r15,0r0,-219r-15,0r0,27v-42,-56,-137,-24,-137,48xm87,-136v34,0,63,29,63,62v0,33,-29,62,-63,62v-33,0,-62,-29,-62,-62v0,-33,29,-62,62,-62","w":180,"k":{"`":107,"\\":13,"Y":44,"W":21,"V":22,"T":44,"3":10,"2":21,"1":77}},"r":{"d":"39,-98v-2,-31,34,-49,55,-29r8,-12v-17,-17,-56,-14,-63,10r0,-20r-15,0r0,149r15,0r0,-98","w":111,"k":{"}":13,"z":18,"s":17,"q":21,"o":23,"g":7,"e":21,"d":10,"c":10,"a":7,"`":99,"_":88,"]":20,"\\":18,"Z":46,"Y":51,"X":43,"W":25,"V":26,"U":17,"T":45,"S":40,"M":12,"J":44,"A":31,"8":24,"7":41,"5":53,"4":48,"3":60,"2":58,"1":78}},"s":{"d":"10,-28v19,46,99,40,101,-13v2,-48,-71,-34,-76,-73v-4,-29,44,-26,57,-10r11,-10v-23,-29,-82,-20,-83,20v-2,48,73,31,76,73v3,41,-65,34,-73,5","w":119,"k":{"}":17,"z":17,"`":97,"_":109,"]":13,"\\":18,"Y":50,"W":26,"V":27,"T":39,"9":16,"3":22,"2":13,"1":72}},"t":{"d":"81,-134r0,-15r-35,0r0,-65r-15,0r0,65r-20,0r0,15r20,0r0,134r15,0r0,-134r35,0","w":90,"k":{"}":22,"o":17,"g":17,"d":12,"c":21,"a":17,"`":33,"_":79,"]":15,"\\":9,"Z":23,"Y":37,"X":15,"W":16,"V":17,"T":41,"S":20,"M":8,"J":18,"A":15,"8":14,"7":18,"5":22,"4":26,"3":37,"2":32,"1":74}},"u":{"d":"77,3v71,0,55,-85,56,-152r-15,0v-5,54,20,137,-41,137v-61,0,-34,-83,-40,-137r-15,0v2,67,-16,152,55,152","w":154,"k":{"}":12,"z":20,"l":18,"j":17,"i":17,"h":18,"`":111,"_":132,"]":22,"\\":17,"Z":12,"Y":49,"X":8,"W":25,"V":26,"U":19,"T":48,"S":18,"R":18,"P":18,"N":20,"L":18,"J":18,"I":18,"H":18,"F":18,"D":18,"B":18,"A":18,"8":17,"7":19,"5":20,"4":19,"3":15,"2":26,"1":81}},"v":{"d":"150,-149r-16,0r-54,119r-54,-119r-16,0r70,155","w":156,"k":{"}":18,"g":16,"d":18,"c":19,"`":95,"_":139,"]":13,"\\":8,"Z":40,"Y":39,"X":36,"W":15,"V":16,"T":38,"S":23,"M":9,"J":32,"A":26,"8":11,"7":32,"5":29,"4":28,"3":39,"2":51,"1":71}},"w":{"d":"238,-149r-17,0r-49,115r-48,-119r-48,120r-50,-116r-16,0r67,155r47,-118r47,118","w":246,"k":{"}":21,"o":17,"g":17,"d":21,"c":21,"a":17,"`":97,"_":141,"]":15,"\\":10,"Z":40,"Y":41,"X":37,"W":18,"V":19,"T":40,"S":26,"M":11,"J":32,"A":29,"8":14,"7":33,"5":29,"4":29,"3":40,"2":52,"1":73,".":31}},"x":{"d":"125,0r-50,-75r49,-74r-17,0r-41,62r-42,-62r-17,0r50,74r-51,75r17,0r43,-62r42,62r17,0","w":129,"k":{"o":17,"g":17,"d":20,"c":21,"a":17,"`":94,"_":124,"]":9,"\\":21,"Y":37,"W":13,"V":14,"T":35,"S":11,"8":9,"5":14,"4":15,"3":23,"1":68}},"y":{"d":"152,-149r-16,0r-55,118r-55,-118r-16,0r63,135r-39,84r17,0","w":160,"k":{"}":21,"q":10,"o":18,"g":22,"e":17,"d":20,"c":21,"a":17,"`":97,"_":58,"]":14,"\\":9,"Z":43,"Y":41,"X":39,"W":17,"V":18,"T":40,"S":25,"M":10,"J":35,"A":28,"8":13,"7":35,"5":31,"4":31,"3":41,"2":54,"1":73}},"z":{"d":"153,-149r-130,0r0,14r100,0r-106,135r134,0r0,-15r-104,0","w":164,"k":{"}":21,"q":8,"o":10,"l":17,"g":10,"e":8,"d":13,"c":13,"a":10,"`":101,"_":144,"]":21,"\\":15,"Y":47,"W":23,"V":24,"U":17,"T":46,"S":18,"N":17,"I":17,"8":17,"5":23,"4":54,"3":31,"2":9,"1":79}},"{":{"d":"3,-128v35,23,-2,105,27,138v6,7,18,8,34,8r0,-13v-65,5,-7,-99,-46,-133v24,-18,11,-62,14,-98v1,-22,9,-31,32,-31r0,-13v-79,-10,-19,104,-61,142","w":69,"k":{"~":12,"z":8,"y":22,"w":7,"v":22,"u":12,"t":21,"s":21,"r":7,"q":21,"o":21,"n":7,"m":7,"i":10,"f":19,"e":20,"d":18,"c":9,"a":21,"`":26,"_":67,"^":12,"S":13,"Q":18,"O":14,"J":20,"G":14,"C":14,"A":20,"9":9,"8":16,"6":21,"5":14,"4":22,"3":29,"2":18,"1":41}},"|":{"d":"32,17r0,-289r-13,0r0,289r13,0","w":47,"k":{"`":20,"4":17,"3":8,"2":19,"1":39}},"}":{"d":"5,18v85,9,17,-123,62,-146v-46,-22,24,-142,-61,-142r0,13v63,-4,5,99,46,129v-25,23,-13,63,-15,104v-1,24,-7,29,-32,29r0,13","w":69,"k":{"{":-35,"`":8,"]":17,"Z":16,"4":20,"3":11,"2":8,"1":43}},"~":{"d":"145,-129r-12,-10v-24,28,-52,-4,-80,-4v-16,0,-30,6,-42,18v15,24,32,-19,57,0v22,15,57,21,77,-4","w":154,"k":{"}":10,"`":99,"_":142,"]":13,"\\":10,"Z":55,"Y":48,"X":48,"W":17,"V":18,"T":39,"S":48,"M":21,"J":43,"A":25,"8":15,"7":52,"5":160,"4":35,"3":55,"2":95,"1":72}},"\u00a0":{"w":91}}});
;
// #### Generated By: http://www.cufonfonts.com ####
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Caviar Dreams © Lauren Thompson (Nymphont) 2010. All rights reserved.
 * 
 * Description:
 * A geometric sans serif wirh a dastardly angled lowercase letter e, and those w's
 * with those lovely letter lumps. Extreme round overshoot may be disturbing to
 * some viewers. Viewer discretin is advised.
 * 
 * Designer:
 * Lauren Thompson
 */
Cufon.registerFont({"w":1154,"face":{"font-family":"Caviar Dreams Bold Italic","font-weight":500,"font-style":"italic","font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 6 2 2 2 4 9 5 4","ascent":"1638","descent":"-410","x-height":"26","bbox":"-50 -1893 2343 345.169","underline-thickness":"150","underline-position":"-142","slope":"-11","unicode-range":"U+0020-U+1EF3"},"glyphs":{" ":{"w":708,"k":{"Y":60,"W":25,"V":80,"T":25,"A":20}},"\u00a0":{"w":708},"!":{"d":"188,-166v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148xm585,-1516r-245,1262r-126,0r245,-1262r126,0","w":460},"\"":{"d":"303,-917r116,-596r127,0r-116,596r-127,0xm519,-917r116,-596r127,0r-116,596r-127,0","w":593},"#":{"d":"953,-950r167,0r182,-410r128,0r-182,410r409,0r-57,127r-409,0r-74,167r410,0r-58,127r-409,0r-182,409r-128,0r182,-409r-166,0r-182,409r-129,0r183,-409r-410,0r57,-127r410,0r73,-167r-409,0r57,-127r409,0r182,-410r129,0xm1063,-823r-167,0r-73,167r166,0","w":1598},"$":{"d":"717,-775r-108,554v167,-32,354,-282,214,-462v-35,-43,-70,-74,-106,-92xm691,-1296v-53,15,-130,95,-142,161v-14,77,38,144,78,170xm600,-827v-106,-50,-202,-153,-175,-308v22,-129,164,-269,291,-286r29,-152r127,0r-30,155v85,17,160,96,170,205r-120,45v-8,-60,-41,-106,-75,-123r-74,384v144,59,284,209,246,418v-33,182,-223,369,-404,393r-25,131r-127,0r25,-130v-154,-11,-286,-164,-271,-351r128,-43v-21,144,63,255,167,271","w":992},"%":{"d":"1318,-1236r-1111,1242r-91,-72r1111,-1242xm541,-1162v124,0,212,104,188,235v-22,118,-146,234,-279,234v-125,0,-214,-104,-190,-234v22,-119,146,-235,281,-235xm588,-1006v-91,-96,-267,47,-187,157v92,94,267,-46,187,-157xm986,-610v124,0,213,105,188,235v-22,118,-145,234,-279,234v-125,0,-214,-104,-190,-234v22,-119,146,-235,281,-235xm1033,-454v-91,-96,-267,47,-187,157v92,94,267,-46,187,-157","w":1180},"&":{"d":"1002,-1253v-14,-96,-76,-155,-174,-156v-168,-1,-326,203,-216,358v62,88,98,100,242,104r-23,120r-87,3v-236,38,-412,175,-458,382v-41,184,92,334,268,334v136,0,297,-110,349,-206v-40,-19,-106,-120,-150,-149v-59,-39,-138,53,-84,103v29,12,49,6,100,1r-36,118v-128,40,-235,-38,-206,-170v22,-99,105,-184,223,-184v89,0,111,46,168,110v42,47,49,67,105,72v93,8,164,-121,87,-182v-41,-19,-60,-11,-119,3r23,-127v152,-48,285,51,252,209v-24,114,-120,205,-242,220v-73,147,-293,307,-494,307v-242,0,-415,-205,-369,-459v35,-193,229,-397,400,-456v-11,-5,-36,-33,-75,-86v-39,-53,-48,-125,-32,-217v28,-167,209,-332,398,-332v146,0,256,90,273,235","w":1257},"'":{"d":"303,-917r116,-596r127,0r-116,596r-127,0","w":377},"(":{"d":"900,-1506v-286,127,-466,384,-537,748v-74,378,22,630,245,752r-24,123v-303,-115,-425,-428,-337,-875v85,-432,307,-746,677,-875","w":707},")":{"d":"417,-1633v303,115,425,429,337,875v-85,432,-306,745,-677,875r24,-123v285,-132,466,-385,537,-752v73,-376,-19,-630,-246,-748","w":707},"*":{"d":"472,-1338r144,-100r73,104r-170,119r170,119r-73,104r-144,-101r0,176r-126,0r0,-177r-145,102r-73,-104r170,-119r-170,-119r73,-104r145,101r0,-176r126,0r0,175","w":818},"+":{"d":"452,-503r-327,0r0,-127r327,0r0,-327r126,0r0,327r327,0r0,127r-327,0r0,326r-126,0r0,-326","w":1030},",":{"d":"359,-197r-268,398r-120,0r184,-398r204,0","w":421,"k":{" ":70}},"-":{"d":"248,-630r587,0r-25,127r-587,0","w":837},"\u00ad":{"d":"248,-630r587,0r-25,127r-587,0","w":837},".":{"d":"163,-166v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148","w":410,"k":{" ":70}},"\/":{"d":"931,-1516r143,0r-982,1516r-142,0","w":729},"0":{"d":"1191,-989v47,-218,-110,-395,-319,-395v-225,0,-434,196,-473,395r-95,488v-48,218,111,394,320,394v225,0,433,-195,472,-394xm1227,-501v-41,267,-328,527,-629,527v-278,0,-482,-236,-425,-527r95,-488v42,-266,330,-527,630,-527v279,0,481,236,424,527","w":1206},"1":{"d":"1064,-1516r-295,1516r-127,0r258,-1327r-110,0r184,-189r90,0","w":1302},"2":{"d":"370,-1129v67,-213,289,-407,538,-407v244,0,424,207,371,462v-26,126,-91,236,-197,331v-155,139,-362,260,-542,380v-106,70,-178,148,-214,236r769,0r-25,127r-915,0v73,-213,169,-357,287,-436v192,-128,395,-243,562,-396v78,-70,125,-152,144,-242v39,-183,-91,-335,-266,-331v-191,4,-349,148,-393,322","w":1220},"3":{"d":"363,-433v-22,193,95,322,268,322v188,0,368,-163,394,-331v34,-221,-101,-345,-307,-380r-88,-2r24,-126v157,-4,189,-25,284,-103v80,-66,130,-197,56,-293v-31,-41,-76,-60,-132,-60v-106,2,-188,69,-233,157r-110,-47v63,-133,208,-237,368,-240v177,-4,309,152,271,335v-19,92,-57,166,-117,219v-60,53,-94,81,-101,84v51,18,100,60,149,125v69,95,88,204,67,331v-39,234,-287,462,-550,462v-226,0,-393,-168,-379,-407","w":1220},"4":{"d":"1101,-1516r117,0r-187,959r141,0r-24,126r-141,0r-84,431r-127,0r84,-431r-623,0xm1036,-1236r-535,679r403,0","w":1238},"5":{"d":"268,-316v58,121,156,195,316,195v262,0,448,-186,493,-418v40,-202,-68,-350,-218,-400v-141,-47,-262,-23,-425,24r-73,-76r266,-477r10,-48r504,0r-25,127r-397,0r-178,318v97,-28,278,-34,381,8v133,54,224,140,269,272v51,148,19,299,-40,415v-73,143,-181,251,-328,322v-138,67,-272,85,-422,38v-108,-35,-189,-102,-242,-201","w":1219},"6":{"d":"780,-897v-225,0,-435,197,-472,396v-41,219,110,394,319,394v225,0,435,-195,472,-394v41,-219,-110,-396,-319,-396xm601,26v-265,0,-476,-229,-431,-490r-7,0v53,-236,143,-423,269,-563v133,-148,312,-321,494,-489r170,0r-84,83v-196,179,-354,336,-474,470v47,-44,137,-66,268,-66v279,0,479,235,424,528v-50,265,-328,527,-629,527","w":1207},"7":{"d":"1004,-973v-198,182,-355,339,-474,471v-119,132,-201,299,-247,502r-130,0v53,-236,142,-424,269,-564v127,-140,277,-289,452,-450v175,-161,281,-286,318,-375r-768,0r25,-127r912,0v-40,180,-159,361,-357,543","w":1220},"8":{"d":"323,-442v-42,199,108,355,307,329v213,22,399,-150,430,-329v37,-214,-97,-341,-294,-377v-227,39,-401,176,-443,377xm1190,-442v-50,259,-302,462,-625,462v-244,0,-425,-207,-372,-462v26,-126,90,-236,197,-331v73,-65,139,-107,197,-125v-7,-3,-30,-31,-69,-84v-39,-53,-50,-126,-32,-219v33,-178,213,-335,435,-335v179,0,309,151,272,335v-19,93,-57,166,-117,219v-60,53,-94,81,-102,84v51,18,101,60,149,125v69,95,92,205,67,331xm1060,-1201v25,-128,-66,-205,-197,-205v-167,0,-321,200,-214,353v43,61,73,83,143,96v80,-15,112,-38,180,-96v48,-41,77,-91,88,-148","w":1211},"9":{"d":"716,-593v225,0,437,-197,473,-396v40,-219,-111,-395,-320,-395v-225,0,-436,196,-472,395v-40,219,110,396,319,396xm895,-1516v264,0,476,227,432,489r6,0v-53,237,-143,424,-269,564v-133,148,-312,321,-494,489r-170,0r84,-83v196,-179,354,-336,474,-470v-47,44,-137,66,-268,66v-279,0,-479,-235,-424,-528v50,-265,328,-527,629,-527","w":1207},":":{"d":"188,-166v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148xm298,-733v68,-58,181,-23,165,73v-13,78,-132,147,-193,75v-39,-46,-11,-114,28,-148","w":460},";":{"d":"432,-197r-268,398r-120,0r184,-398r204,0xm302,-733v67,-58,180,-23,164,73v-13,78,-133,146,-193,75v-39,-46,-10,-114,29,-148","w":519},"\u037e":{"d":"432,-197r-268,398r-120,0r184,-398r204,0xm302,-733v67,-58,180,-23,164,73v-13,78,-133,146,-193,75v-39,-46,-10,-114,29,-148","w":519},"<":{"d":"1243,-124r-1143,-416r1143,-416r0,135r-772,281r772,281r0,135","w":1343},"=":{"d":"125,-777r780,0r0,127r-780,0r0,-127xm125,-483r780,0r0,127r-780,0r0,-127","w":1030},">":{"d":"100,-259r773,-281r-773,-281r0,-135r1143,416r-1143,416r0,-135","w":1343},"?":{"d":"719,-1336v-142,0,-225,94,-252,228r-124,-6v26,-161,148,-284,287,-327v226,-70,435,68,384,314v-36,172,-158,263,-299,369v-120,90,-222,193,-259,347v-9,36,-7,81,1,132r-126,41v-24,-172,14,-262,85,-370v70,-107,171,-190,281,-273v98,-74,164,-133,189,-247v27,-122,-51,-208,-167,-208xm290,-166v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148","w":946},"@":{"d":"1125,-585v-4,-101,-89,-179,-193,-179v-136,0,-260,118,-282,238v-24,130,65,235,190,235v112,0,243,-85,262,-178xm1059,-255v-123,112,-377,118,-477,-21v-190,-263,87,-608,371,-608v99,0,169,28,212,84r14,-72r119,0r-120,614v3,15,11,22,24,22v19,0,55,-33,114,-94v143,-147,153,-409,20,-575v-181,-225,-540,-192,-758,0v-123,108,-200,232,-231,380v-62,295,149,535,432,535v101,0,183,-17,244,-51r67,88v-103,55,-215,82,-334,82v-344,0,-596,-295,-529,-654v62,-329,411,-656,784,-656v346,0,597,295,526,656v-27,136,-216,411,-373,405v-85,-3,-125,-58,-105,-135","w":1560},"A":{"d":"957,-691r-89,-531r-297,531r386,0xm979,-564r-479,0r-315,564r-135,0r889,-1592r270,1592r-135,0","w":1259,"k":{"y":50,"w":65,"v":70,"u":20,"Y":80,"W":60,"V":102,"U":40,"T":25,"Q":40,"O":50,"G":40,"C":40}},"B":{"d":"445,-1516r283,-1v157,-5,272,133,238,296v-17,83,-59,150,-129,200v43,9,87,51,139,119v80,104,104,226,81,373v-39,250,-313,529,-578,529r-329,0xm457,-925r-155,798r202,0v274,-26,570,-406,360,-682v-60,-79,-148,-116,-257,-116r-150,0xm547,-1389r-65,332v115,-2,222,10,289,-46v61,-51,105,-163,47,-239v-50,-65,-165,-43,-271,-47","w":1044,"k":{"A":10}},"C":{"d":"1401,-286r78,85v-187,145,-381,218,-582,218v-410,0,-714,-347,-624,-775v45,-213,155,-394,333,-548v318,-275,809,-324,1090,-10r-112,87v-236,-256,-642,-215,-904,13v-148,129,-240,280,-278,458v-76,357,179,648,520,648v165,0,324,-59,479,-176","w":1540,"k":{"A":40}},"D":{"d":"546,-1386r-244,1256v417,10,720,-295,783,-628v35,-179,1,-331,-100,-458v-91,-113,-237,-170,-439,-170xm571,-1514v240,3,415,72,523,207v122,152,161,335,120,549v-77,401,-440,762,-937,756r0,2r-127,0r295,-1516r127,0","w":1167,"k":{"Y":45,"W":30,"V":50,"A":50,".":50,",":50}},"E":{"d":"1225,-1516r-25,127r-653,0r-110,568r653,0r-25,126r-653,0r-110,568r653,0r-25,127r-780,0r295,-1516r780,0","w":1055},"F":{"d":"1133,-1516r-25,127r-561,0r-110,568r561,0r-25,126r-561,0r-135,695r-127,0r295,-1516r688,0","w":963,"k":{"e":20,"a":20,"A":75,".":175,",":175}},"G":{"d":"1462,-196v-176,142,-364,213,-565,213v-410,0,-714,-347,-624,-775v45,-213,155,-394,333,-548v318,-275,809,-324,1090,-10r-112,87v-236,-256,-642,-215,-904,13v-148,129,-240,280,-278,458v-76,357,179,648,520,648v153,0,294,-45,423,-135r89,-460r127,0","w":1565,"k":{"Y":15,".":40,",":40}},"H":{"d":"405,-660r-128,660r-127,0r295,-1516r127,0r-142,730r572,0r142,-730r127,0r-295,1516r-127,0r128,-660r-572,0","w":1126},"I":{"d":"592,-1516r-295,1516r-127,0r295,-1516r127,0","w":467},"J":{"d":"331,-162v94,111,272,9,298,-125r239,-1229r127,0r-241,1242v-23,151,-178,287,-341,287v-154,0,-268,-130,-234,-290r133,-33v-13,67,-8,117,19,148","w":855,"k":{"a":20,"A":30,".":15}},"K":{"d":"418,-727r-141,727r-127,0r295,-1516r127,0r-114,583r551,-583r161,0r-578,615r409,901r-155,0r-357,-798","w":1090,"k":{"y":25,"u":35,"o":45,"e":20,"O":30}},"L":{"d":"150,0r295,-1516r127,0r-270,1389r570,0r-25,127r-697,0","w":937,"k":{"y":23,"Y":80,"W":55,"V":113,"T":46}},"M":{"d":"590,-1516r359,935r721,-935r145,0r-26,34r-288,1482r-127,0r245,-1262r-719,932r-359,-932r-245,1262r-126,0r288,-1482r-13,-34r145,0","w":1670},"N":{"d":"445,-1516r126,0r478,1249r243,-1249r127,0r-295,1516r-117,0r-485,-1262r-245,1262r-127,0","w":1274},"O":{"d":"1201,-1537v411,0,716,349,627,777v-45,214,-154,398,-335,550v-181,152,-379,227,-594,227v-411,0,-716,-349,-626,-777v45,-214,153,-398,334,-550v181,-152,379,-227,594,-227xm1176,-1409v-368,0,-713,323,-774,649v-67,359,179,650,521,650v370,0,715,-324,776,-650v67,-359,-180,-649,-523,-649","w":1805,"k":{"Y":40,"X":30,"W":20,"V":45,"T":15,"A":60,".":50,",":50}},"P":{"d":"855,-1516v233,26,398,238,349,502v-47,254,-313,506,-600,503r-228,0r-99,511r-127,0r295,-1516r410,0xm547,-1388r-146,750r228,0v213,3,413,-187,448,-376v38,-207,-104,-374,-302,-374r-228,0","w":1062,"k":{"o":20,"e":20,"a":20,"A":100,".":240,",":240}},"Q":{"d":"1176,-1409v-368,0,-713,323,-774,649v-67,359,179,650,521,650v370,0,715,-324,776,-650v67,-359,-180,-649,-523,-649xm989,75v-101,0,-167,70,-192,159r-127,0v34,-124,95,-193,198,-249r-69,32v-149,-1,-284,-78,-405,-228v-122,-152,-163,-334,-121,-549v41,-215,153,-398,334,-550v181,-152,379,-227,594,-227v411,0,716,349,627,777v-45,214,-154,397,-335,549v-131,110,-246,175,-345,195v71,37,157,112,237,121v77,-10,124,-51,138,-128r128,0v-26,114,-79,175,-168,223v-40,21,-80,31,-120,31v-139,0,-238,-156,-374,-156","w":1805},"R":{"d":"547,-1388r-146,750r228,0v213,3,413,-187,448,-376v38,-207,-104,-374,-302,-374r-228,0xm855,-1516v233,26,403,239,349,502v-29,139,-99,258,-216,356v-81,68,-158,110,-229,127r242,531r-155,0r-242,-511r-228,0r-99,511r-127,0r295,-1516r410,0","w":1062,"k":{"Y":10,"W":-10,"V":10,"T":-15}},"S":{"d":"255,-429v-20,191,98,321,271,321v190,0,369,-165,398,-334v34,-198,-99,-316,-240,-374v-99,-41,-181,-83,-229,-150v-176,-242,82,-567,348,-567v146,0,256,90,273,235r-124,45v-14,-95,-75,-155,-173,-156v-167,-2,-326,202,-215,354v30,41,77,82,144,108v200,76,388,234,341,505v-41,232,-286,459,-547,459v-224,0,-390,-167,-377,-402","w":1013},"T":{"d":"819,-1389r-270,1389r-126,0r270,-1389r-373,0r25,-127r872,0r-25,127r-373,0","w":972,"k":{"y":30,"w":55,"u":46,"r":30,"o":49,"e":49,"a":70,"O":15,"A":25,";":29,":":15,".":91,"-":75,",":82}},"U":{"d":"1323,-1516r127,0r-210,1081v-69,230,-316,448,-589,448v-266,0,-460,-225,-406,-502r200,-1027r128,0r-200,1027v-45,205,106,374,303,374v213,0,411,-187,447,-374","w":1305,"k":{"A":40,".":20,",":20}},"V":{"d":"479,-1516r207,1222r682,-1222r136,0r-889,1592r-270,-1592r134,0","w":1259,"k":{"u":55,"o":101,"i":35,"e":101,"a":104,"O":45,"G":20,"A":102,";":33,":":18,".":145,"-":90,",":145}},"W":{"d":"913,-248v27,78,106,134,201,134v144,0,283,-128,308,-256r223,-1146r127,0r-224,1154v-34,189,-242,375,-458,375v-115,0,-205,-50,-266,-129v-88,74,-202,129,-316,129v-200,0,-352,-170,-312,-375r224,-1154r127,0r-223,1146v-31,140,74,256,208,256v97,0,205,-64,254,-134r247,-1268r127,0","w":1602,"k":{"y":20,"u":30,"o":46,"i":10,"e":47,"a":50,"O":20,"A":58,";":33,":":15,".":106,"-":50,",":106}},"X":{"d":"50,0r641,-831r-262,-685r145,0r213,559r433,-559r146,0r-530,685r319,831r-146,0r-271,-705r-543,705r-145,0","w":1205},"Y":{"d":"691,-611r-346,-905r146,0r292,763r588,-763r146,0r-699,905r-119,611r-127,0","w":1272,"k":{"u":85,"o":89,"i":15,"e":89,"a":93,"O":40,"A":80,";":23,":":10,".":145,"-":105,",":145}},"Z":{"d":"1222,-1389r-786,0r25,-127r1005,0r-1073,1389r787,0r-25,127r-1005,0","w":1321},"[":{"d":"210,218r202,0r-25,127r-329,0r362,-1861r329,0r-25,127r-202,0","w":579},"\\":{"d":"779,0r-142,0r-392,-1516r143,0","w":729},"]":{"d":"597,-1389r-202,0r25,-127r329,0r-362,1861r-329,0r25,-127r202,0","w":579},"^":{"d":"531,-1516r309,535r-147,0r-223,-385r-223,385r-147,0r310,-535r121,0","w":939},"_":{"d":"28,-16r964,0r-24,126r-964,0","w":1014},"`":{"d":"617,-1228r146,216r-133,0r-241,-216r228,0","w":716},"a":{"d":"1167,0r-127,0r27,-139v-134,110,-274,165,-420,165v-278,0,-479,-236,-425,-527v50,-266,330,-528,630,-528v146,0,265,55,356,165r16,-83r127,0xm673,-107v197,0,394,-158,449,-315r31,-159v1,-181,-146,-316,-327,-316v-225,0,-436,197,-473,396v-41,219,111,394,320,394","w":1317,"k":{"t":-5,"p":-20,"b":-5}},"b":{"d":"445,-1516r127,0r-127,650v134,-109,274,-163,419,-163v279,0,479,235,424,528v-50,265,-328,527,-629,527v-145,0,-264,-55,-355,-164r-27,138r-127,0xm358,-417v2,177,147,310,327,310v225,0,435,-195,472,-394v40,-219,-110,-396,-319,-396v-195,0,-415,149,-447,311","w":1316,"k":{"y":20,"v":20,"u":10}},"c":{"d":"638,-107v130,0,262,-68,349,-158r120,46v-117,139,-303,245,-495,245v-278,0,-479,-236,-424,-528v50,-265,329,-527,629,-527v189,0,328,93,400,243r-139,48v-55,-100,-157,-159,-287,-159v-224,0,-435,196,-471,395v-40,219,110,395,318,395","k":{"y":20,"k":15}},"d":{"d":"1167,0r-127,0r27,-139v-134,110,-274,165,-420,165v-278,0,-479,-236,-425,-527v50,-266,330,-528,630,-528v146,0,265,55,356,165r127,-652r127,0xm673,-107v197,0,394,-158,449,-315r31,-159v1,-181,-146,-316,-327,-316v-225,0,-436,197,-473,396v-41,219,111,394,320,394","w":1317},"e":{"d":"1107,-219v-117,139,-303,245,-495,245v-278,0,-479,-236,-424,-528v50,-265,329,-527,629,-527v164,0,297,74,368,187r-777,650v52,57,129,85,230,85v130,0,262,-68,349,-158xm996,-834v-47,-42,-115,-63,-205,-63v-224,0,-439,196,-471,395v-15,91,-11,162,20,217","k":{"y":20,"w":20,"v":20}},"f":{"d":"469,-821r-238,1162r-127,0r238,-1162r-92,0r24,-126r92,0r44,-224v39,-171,247,-335,457,-239r-64,117v-119,-71,-249,30,-268,129r-42,217r184,0r-24,126r-184,0","w":534,"k":{"\u0131":30,"o":20,"l":30,"i":30,"f":15,"a":20,".":50,",":50}},"g":{"d":"1153,-586v-2,-178,-147,-311,-327,-311v-225,0,-436,197,-473,396v-41,219,111,395,320,395v195,0,416,-147,447,-309xm325,4v58,97,158,158,288,158v109,0,209,-39,301,-116v83,-70,131,-129,144,-177r-7,2v-213,191,-569,222,-747,1v-83,-103,-107,-227,-82,-373v45,-267,330,-527,630,-527v146,0,265,55,356,164r16,-83r127,0r-141,724v-40,263,-328,517,-623,517v-189,0,-329,-93,-400,-244","w":1321,"k":{"a":15}},"h":{"d":"445,-1516r127,0r-114,586v59,-48,140,-72,244,-72v215,0,354,157,312,375r-122,627r-127,0r120,-619v31,-140,-74,-256,-208,-256v-98,0,-211,70,-257,139r-143,736r-127,0","w":1042,"k":{"y":30}},"i":{"d":"477,-947r-184,947r-127,0r184,-947r127,0xm396,-1238v67,-60,181,-22,165,74v-13,77,-133,147,-193,74v-39,-47,-11,-113,28,-148","w":460},"j":{"d":"33,85v75,-9,119,-44,131,-105r180,-927r127,0r-180,925v-27,143,-122,221,-283,234xm391,-1238v68,-60,180,-22,164,74v-13,77,-133,147,-193,74v-39,-47,-10,-113,29,-148","w":479},"k":{"d":"843,-947r-300,300r240,647r-154,0r-191,-544r-69,69r-92,475r-127,0r259,-1332r127,0r-127,654r270,-269r164,0","w":833,"k":{"y":25,"o":45,"e":35}},"l":{"d":"572,-1516r-295,1516r-127,0r295,-1516r127,0","w":427,"k":{"w":20}},"m":{"d":"334,-947r127,0r2,-9v37,-30,94,-45,172,-45v91,0,161,42,205,106v65,-59,158,-106,248,-106v152,0,265,126,235,281r-140,720r-127,0r144,-741v7,-65,-62,-133,-137,-133v-95,0,-180,82,-197,168r-137,706r-126,0r143,-741v8,-65,-62,-133,-136,-133v-89,0,-177,72,-192,148r-141,726r-127,0","w":1333,"k":{"y":20,"u":20}},"n":{"d":"688,-875v-106,0,-226,82,-271,156r-140,719r-127,0r184,-947r127,0r-5,27v124,-112,413,-112,512,25v54,74,78,161,57,268r-122,627r-126,0r120,-619v32,-140,-75,-256,-209,-256","w":1053,"k":{"y":15,"v":30,"u":15}},"o":{"d":"414,-874v215,-189,569,-221,746,0v83,103,106,226,81,373v-45,266,-328,527,-629,527v-278,0,-486,-237,-425,-527v30,-146,106,-267,227,-373xm791,-897v-225,0,-436,197,-473,396v-41,219,111,394,320,394v225,0,435,-195,472,-394v41,-219,-110,-396,-319,-396","w":1234,"k":{"y":20,"x":15,"w":20,"v":30,".":25,",":25}},"p":{"d":"334,-947r127,0r-16,81v134,-108,274,-162,419,-162v279,0,479,234,424,527v-50,265,-328,527,-629,527v-145,0,-264,-55,-355,-164r-94,483r-127,0xm358,-417v2,178,147,311,327,311v225,0,436,-196,472,-395v40,-219,-110,-396,-319,-396v-195,0,-415,149,-447,311","w":1291,"k":{"y":20,".":25,",":25}},"q":{"d":"1075,345r-127,0r94,-484v-134,110,-274,165,-420,165v-278,0,-479,-236,-425,-527v50,-266,330,-527,630,-527v146,0,265,55,356,164r16,-83r127,0xm648,-106v197,0,394,-158,449,-316r31,-159v1,-181,-146,-316,-327,-316v-225,0,-436,197,-473,396v-41,219,111,395,320,395","w":1292},"r":{"d":"334,-947r127,0r-22,116v109,-88,212,-134,311,-139r-27,135v-167,14,-322,196,-351,347r-95,488r-127,0","w":611,"k":{"y":-40,"v":-40,"u":-20,"t":-40,"s":-20,"q":8,"p":-20,"o":20,"n":-21,"m":-28,"l":-20,"k":-20,"i":-20,"g":-1,"e":4,"d":6,"c":7,".":73,"-":60,",":75}},"s":{"d":"676,-700v6,-102,-6,-146,-87,-149v-90,-3,-177,109,-116,191v38,51,199,141,229,184v148,217,-69,496,-301,496v-154,0,-268,-130,-234,-290r133,-33v-28,122,26,194,126,196v132,3,259,-160,170,-280v-14,-19,-47,-48,-99,-83v-62,-41,-108,-72,-130,-101v-129,-173,57,-408,247,-408v127,0,218,106,183,232","w":799,"k":{"t":-15,".":-20,",":-20}},"t":{"d":"458,-947r75,-385r127,0r-75,385r184,0r-24,126r-184,0r-160,821r-127,0r160,-821r-184,0r24,-126r184,0","w":675},"u":{"d":"838,-94v-145,132,-441,149,-560,0v-57,-71,-79,-160,-58,-268r115,-587r127,0r-113,579v-30,144,75,256,217,256v144,0,283,-128,308,-256r113,-579r127,0r-115,587v-23,108,-79,194,-161,268","w":1079,"k":{"z":-15}},"v":{"d":"572,-225r474,-722r145,0r-674,1001r-283,-1001r145,0","w":1057,"k":{"o":20,"e":20,"a":30,".":90,",":90}},"w":{"d":"357,-162v88,108,275,13,297,-100r133,-685r126,0r-129,666v-21,93,44,167,131,167v79,0,178,-74,189,-133r136,-700r127,0r-132,679v-28,143,-181,282,-344,281v-80,0,-149,-35,-206,-106v-85,71,-167,106,-247,106v-151,0,-266,-125,-236,-281r132,-679r127,0r-136,700v-4,27,7,55,32,85","w":1333,"k":{"o":30,"h":-15,"e":20,"a":30,".":90,",":90}},"x":{"d":"948,-947r-331,429r198,518r-147,0r-148,-386r-298,386r-147,0r401,-518r-165,-429r146,0r114,297r230,-297r147,0","w":889,"k":{"i":-15}},"y":{"d":"246,345r-129,0r358,-534r-216,-758r143,0r166,617r406,-617r141,0","w":1007,"k":{"o":30,"e":20,"a":30,".":85,",":100}},"z":{"d":"773,-808r-450,0r25,-127r669,0r-624,808r486,0r-25,127r-704,0","w":1004},"{":{"d":"726,-1114v-10,256,-109,437,-280,529v113,71,150,215,117,387v-22,115,-135,325,-5,407v43,27,70,27,133,18r-22,112v-201,35,-324,-113,-278,-324v21,-99,68,-212,68,-340v0,-105,-102,-193,-191,-204r22,-113v108,-16,230,-106,271,-204v26,-64,50,-130,52,-213v5,-207,74,-348,216,-419v69,-35,118,-47,200,-32r-22,114v-26,-5,-44,-7,-54,-7v-153,13,-221,134,-227,289","w":861},"|":{"d":"277,-1516r0,1861r-127,0r0,-1861r127,0","w":427},"}":{"d":"403,-57v12,-257,110,-437,280,-528v-113,-73,-150,-216,-117,-388v23,-117,133,-326,4,-408v-43,-27,-71,-27,-134,-15r22,-114v201,-34,326,112,279,323v-22,99,-69,213,-69,341v0,104,102,193,192,204r-22,113v-107,16,-232,106,-271,204v-26,64,-50,131,-52,213v-6,207,-74,348,-217,419v-69,34,-117,47,-199,32r22,-112v192,28,274,-117,282,-284","w":861},"~":{"d":"369,-803v-85,0,-114,71,-117,169r-127,-20v7,-142,72,-235,181,-265v118,-33,186,12,325,86v114,61,192,97,240,97v84,0,116,-68,116,-169r129,20v-9,141,-71,235,-181,265v-119,33,-186,-12,-325,-86v-115,-62,-194,-97,-241,-97","w":1241},"\u00a1":{"d":"568,-1354v-68,59,-181,23,-165,-74v13,-77,133,-147,193,-74v39,47,11,114,-28,148xm169,-4r245,-1262r127,0r-245,1262r-127,0","w":460},"\u00a2":{"d":"544,-577v-161,-28,-290,-219,-251,-422v37,-190,228,-386,415,-422r29,-152r127,0r-27,142v137,0,246,88,304,208r-131,47v-41,-74,-115,-130,-198,-129r-119,612v82,3,185,-60,248,-129r114,45v-96,114,-243,210,-386,210r-28,142r-127,0xm683,-1292v-111,31,-240,170,-264,293v-25,132,57,266,150,292","w":1005},"\u00a3":{"d":"786,-1518v234,-20,386,163,343,392v-9,42,-27,86,-56,132r-112,-40v58,-95,64,-219,-14,-297v-98,-97,-270,-61,-363,31v-104,103,-127,238,-70,413v29,89,58,169,61,250r186,0r-24,126r-162,0v-18,168,-79,281,-179,383v29,-10,81,-15,158,-15v102,0,201,36,298,36v47,0,101,-7,161,-22r-1,125v-68,16,-129,24,-184,24v-138,2,-290,-69,-423,-25v-67,23,-139,52,-216,87r-81,-125v101,-76,163,-126,186,-149v93,-93,142,-177,152,-319r-213,0r24,-126r186,0v-3,-39,-9,-87,-31,-141v-97,-237,-69,-460,87,-605v84,-78,178,-126,287,-135","w":1112},"\u00a4":{"d":"393,-844v-85,-145,-11,-376,90,-463r-104,-129r108,-90r104,129v118,-93,359,-105,463,0r154,-129r72,90r-154,129v85,144,12,376,-90,463r104,129r-107,90r-104,-129v-119,93,-360,105,-463,0r-154,129r-73,-90xm1028,-1075v30,-157,-71,-271,-216,-269v-164,2,-293,124,-321,269v-29,152,67,268,217,268v162,0,292,-125,320,-268","w":1101},"\u00a5":{"d":"781,-754r589,-762r146,0r-601,777r254,0r-24,127r-327,0r-14,67r327,0r-24,126r-327,0r-81,419r-127,0r81,-419r-326,0r24,-126r326,0r14,-67r-326,0r24,-127r253,0r-298,-777r146,0","w":1272},"\u00a6":{"d":"277,-1516r0,825r-127,0r0,-825r127,0xm277,-480r0,825r-127,0r0,-825r127,0","w":427},"\u00a7":{"d":"919,-381v48,-31,73,-97,92,-190v40,-197,-98,-318,-240,-375v-122,-49,-216,-112,-266,-209r-4,0v-41,35,-70,98,-88,190v-38,197,98,318,240,375v123,49,217,112,266,209xm385,-154v13,97,75,155,173,156v118,2,229,-102,247,-207v10,-58,1,-106,-32,-146v-32,-39,-77,-83,-144,-109v-200,-76,-392,-235,-341,-505v29,-155,99,-260,198,-321v11,-203,199,-375,404,-377v146,-2,257,90,273,235r-123,46v-14,-97,-76,-155,-174,-156v-166,-2,-326,202,-214,353v30,41,77,82,144,108v200,77,390,235,340,506v-29,156,-100,258,-197,321v-13,202,-200,375,-406,377v-147,2,-256,-91,-272,-236","w":1125},"\u00a8":{"d":"397,-1238v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148xm673,-1238v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148","w":736},"\u00a9":{"d":"684,-358v76,0,142,-38,182,-97r105,39v-65,101,-158,163,-287,166v-175,4,-326,-152,-326,-327v0,-175,151,-329,326,-326v128,2,224,65,287,166r-105,38v-41,-60,-104,-96,-182,-97v-117,-2,-219,101,-219,219v0,117,102,219,219,219xm674,-1152v308,0,574,267,574,575v0,308,-266,575,-574,575v-309,0,-575,-266,-575,-575v0,-309,266,-575,575,-575xm1139,-577v0,-250,-216,-465,-465,-465v-250,0,-466,215,-466,465v0,250,216,466,466,466v249,0,465,-216,465,-466","w":1353},"\u00ab":{"d":"503,-447r547,-478r-31,159r-359,319r235,319r-31,160xm187,-447r540,-479r-31,160r-359,319r235,319r-31,161","w":970},"\u00ae":{"d":"718,-1109v0,-82,-70,-152,-152,-152r-84,0r0,303r84,0v81,2,152,-70,152,-151xm565,-1420v-199,0,-369,171,-369,369v0,169,121,313,270,355v56,16,155,17,202,-1r-105,-164r-81,0r0,102r-95,0r0,-596r206,0v119,14,220,119,220,246v0,97,-84,208,-148,232r92,140v91,-55,175,-187,175,-314v0,-198,-171,-369,-367,-369xm565,-1516v249,0,463,216,463,465v0,191,-111,343,-269,419v-313,151,-659,-102,-659,-419v0,-251,214,-465,465,-465","w":1128},"\u00af":{"d":"371,-1265r587,0r-25,127r-587,0","w":837},"\u00b0":{"d":"385,-1516v126,0,234,108,234,235v0,126,-108,234,-234,234v-127,0,-235,-108,-235,-234v0,-127,108,-235,235,-235xm510,-1281v0,-67,-59,-126,-125,-126v-67,0,-126,59,-126,126v0,66,59,125,126,125v66,0,125,-59,125,-125","w":769},"\u00b1":{"d":"452,-503r-327,0r0,-127r327,0r0,-327r126,0r0,327r327,0r0,127r-327,0r0,326r-126,0r0,-326xm125,-127r780,0r0,127r-780,0r0,-127","w":1030},"\u00b4":{"d":"805,-1228r-325,216r-133,0r230,-216r228,0","w":716},"\u00b5":{"d":"327,-258v23,79,107,139,203,139v117,0,243,-91,284,-182r125,-646r125,0r-184,947r-125,0r14,-71v-93,95,-394,113,-480,8r-79,408r-127,0r251,-1292r127,0","w":1030},"\u00b6":{"d":"1085,-1474r-354,1819r-127,0r183,-939v-207,10,-344,-20,-445,-148v-78,-99,-103,-216,-78,-355v44,-245,280,-503,545,-503r549,-1r-24,127r-81,0r-354,1819r-127,0r354,-1819r-41,0","w":1096},"\u00b7":{"d":"312,-824v59,-52,160,-19,146,66v-11,68,-118,129,-171,66v-34,-41,-9,-102,25,-132","w":435},"\u2219":{"d":"312,-824v59,-52,160,-19,146,66v-11,68,-118,129,-171,66v-34,-41,-9,-102,25,-132","w":435},"\u00b8":{"d":"207,130v32,15,90,13,105,-17v3,-24,-23,-30,-53,-30v-17,0,-54,2,-110,7r107,-134r108,0r-17,32v73,0,118,31,103,99v-21,93,-103,152,-221,146v-36,-2,-70,-16,-103,-41","w":619},"\u00bb":{"d":"94,32r31,-160r358,-319r-234,-319r31,-159r360,478xm417,33r31,-161r358,-319r-234,-319r31,-160r354,479","w":970},"\u00bf":{"d":"522,-184v143,0,225,-93,252,-227r124,5v-25,163,-147,285,-286,328v-227,70,-436,-68,-384,-315v37,-173,157,-263,299,-369v119,-89,222,-194,259,-347v9,-36,7,-81,-2,-132r126,-41v26,172,-14,262,-85,371v-70,106,-170,189,-280,273v-96,73,-164,132,-189,246v-27,122,50,208,166,208xm952,-1354v-67,59,-181,23,-165,-74v13,-77,133,-147,193,-74v38,47,11,114,-28,148","w":946},"\u00c0":{"d":"957,-691r-89,-531r-297,531r386,0xm979,-564r-479,0r-315,564r-135,0r889,-1592r270,1592r-135,0xm891,-1879r146,216r-133,0r-241,-216r228,0","w":1259},"\u00c1":{"d":"957,-691r-89,-531r-297,531r386,0xm979,-564r-479,0r-315,564r-135,0r889,-1592r270,1592r-135,0xm1326,-1879r-325,216r-133,0r230,-216r228,0","w":1259},"\u00c2":{"d":"957,-691r-89,-531r-297,531r386,0xm979,-564r-479,0r-315,564r-135,0r889,-1592r270,1592r-135,0xm1040,-1839r214,260r-157,0r-140,-126r-178,126r-157,0r304,-260r114,0","w":1259},"\u00c3":{"d":"957,-691r-89,-531r-297,531r386,0xm979,-564r-479,0r-315,564r-135,0r889,-1592r270,1592r-135,0xm982,-1770v74,65,114,77,157,-27r107,0v-37,105,-86,167,-146,183v-65,17,-109,-1,-156,-41v-75,-64,-115,-78,-159,28r-107,0v39,-105,88,-166,148,-183v64,-18,110,-1,156,40","w":1259},"\u00c4":{"d":"957,-691r-89,-531r-297,531r386,0xm979,-564r-479,0r-315,564r-135,0r889,-1592r270,1592r-135,0xm769,-1804v68,-60,180,-23,164,73v-13,77,-133,148,-193,75v-39,-47,-10,-113,29,-148xm1045,-1804v68,-60,180,-23,164,73v-13,77,-133,148,-193,75v-39,-47,-10,-113,29,-148","w":1259},"\u00c5":{"d":"957,-691r-89,-531r-297,531r386,0xm914,-1578v-24,16,-16,58,20,52v28,-4,44,-59,4,-61v-9,0,-17,3,-24,9xm966,-1432r243,1432r-135,0r-95,-564r-479,0r-315,564r-135,0r799,-1432v-28,-14,-68,-75,-52,-124v10,-99,172,-190,249,-96v64,79,-13,192,-80,220","w":1259},"\u00c6":{"d":"1728,-821r-25,126r-653,0r-110,568r653,0r-25,127r-780,0r110,-564r-276,0r-361,564r-136,0r954,-1516r784,0r-25,127r-653,0r-110,568r653,0xm922,-691r103,-526r-329,526r226,0","w":1693},"\u00c7":{"d":"935,115v-10,-22,-28,-23,-57,-23v-17,0,-54,2,-111,7r67,-83v-177,-5,-324,-81,-441,-226v-122,-151,-162,-333,-120,-548v41,-214,155,-394,333,-548v318,-275,809,-324,1090,-10r-112,87v-236,-256,-642,-215,-904,13v-148,129,-240,280,-278,458v-76,357,179,648,520,648v165,0,324,-59,479,-176r78,85v-175,136,-349,208,-524,217r10,-19v73,0,120,31,105,99v-20,93,-103,153,-223,146v-35,-2,-69,-16,-102,-41r80,-61v38,15,98,11,110,-25","w":1540},"\u00c8":{"d":"1225,-1516r-25,127r-653,0r-110,568r653,0r-25,126r-653,0r-110,568r653,0r-25,127r-780,0r295,-1516r780,0xm861,-1851r147,216r-134,0r-241,-216r228,0","w":1055},"\u00c9":{"d":"1225,-1516r-25,127r-653,0r-110,568r653,0r-25,126r-653,0r-110,568r653,0r-25,127r-780,0r295,-1516r780,0xm1167,-1851r-325,216r-134,0r231,-216r228,0","w":1055},"\u00ca":{"d":"1225,-1516r-25,127r-653,0r-110,568r653,0r-25,126r-653,0r-110,568r653,0r-25,127r-780,0r295,-1516r780,0xm951,-1835r213,260r-157,0r-138,-126r-180,126r-157,0r305,-260r114,0","w":1055},"\u00cb":{"d":"1225,-1516r-25,127r-653,0r-110,568r653,0r-25,126r-653,0r-110,568r653,0r-25,127r-780,0r295,-1516r780,0xm680,-1814v68,-59,181,-23,165,74v-13,77,-133,147,-193,74v-39,-47,-11,-114,28,-148xm956,-1814v68,-59,181,-23,165,74v-13,77,-133,147,-193,74v-39,-47,-11,-114,28,-148","w":1055},"\u00cc":{"d":"615,-1516r-295,1516r-126,0r295,-1516r126,0xm514,-1851r146,216r-133,0r-241,-216r228,0","w":512},"\u00cd":{"d":"614,-1516r-295,1516r-127,0r295,-1516r127,0xm946,-1851r-325,216r-133,0r230,-216r228,0","w":512},"\u00ce":{"d":"603,-1516r-295,1516r-127,0r295,-1516r127,0xm655,-1839r213,260r-157,0r-139,-126r-178,126r-157,0r304,-260r114,0","w":490},"\u00cf":{"d":"576,-1516r-295,1516r-127,0r295,-1516r127,0xm358,-1814v68,-59,181,-23,165,74v-13,77,-133,147,-193,74v-39,-47,-11,-114,28,-148xm634,-1814v68,-59,181,-23,165,74v-13,77,-133,147,-193,74v-39,-47,-11,-114,28,-148","w":436},"\u00d0":{"d":"356,-821r136,-695r127,0r-1,2v240,3,415,72,523,207v122,152,161,335,120,549v-77,401,-440,762,-937,756r0,2r-127,0r135,-695r-147,0r24,-126r147,0xm483,-821r340,0r-24,126r-340,0r-110,565v417,9,721,-295,784,-628v35,-179,1,-331,-101,-458v-91,-113,-237,-170,-439,-170","w":1239},"\u00d1":{"d":"445,-1516r126,0r478,1249r243,-1249r127,0r-295,1516r-117,0r-485,-1262r-245,1262r-127,0xm990,-1770v74,65,114,77,157,-27r106,0v-37,105,-85,168,-145,183v-66,17,-110,-1,-157,-41v-75,-64,-114,-77,-158,28r-108,0v39,-105,88,-166,148,-183v65,-18,110,-1,157,40","w":1274},"\u00d2":{"d":"1201,-1537v411,0,716,349,627,777v-45,214,-154,398,-335,550v-181,152,-379,227,-594,227v-411,0,-716,-349,-626,-777v45,-214,153,-398,334,-550v181,-152,379,-227,594,-227xm1176,-1409v-368,0,-713,323,-774,649v-67,359,179,650,521,650v370,0,715,-324,776,-650v67,-359,-180,-649,-523,-649xm1224,-1851r146,216r-133,0r-241,-216r228,0","w":1805},"\u00d3":{"d":"1201,-1537v411,0,716,349,627,777v-45,214,-154,398,-335,550v-181,152,-379,227,-594,227v-411,0,-716,-349,-626,-777v45,-214,153,-398,334,-550v181,-152,379,-227,594,-227xm1176,-1409v-368,0,-713,323,-774,649v-67,359,179,650,521,650v370,0,715,-324,776,-650v67,-359,-180,-649,-523,-649xm1529,-1851r-325,216r-133,0r230,-216r228,0","w":1805},"\u00d4":{"d":"1201,-1537v411,0,716,349,627,777v-45,214,-154,398,-335,550v-181,152,-379,227,-594,227v-411,0,-716,-349,-626,-777v45,-214,153,-398,334,-550v181,-152,379,-227,594,-227xm1176,-1409v-368,0,-713,323,-774,649v-67,359,179,650,521,650v370,0,715,-324,776,-650v67,-359,-180,-649,-523,-649xm1322,-1885r214,260r-157,0r-139,-126r-179,126r-156,0r303,-260r114,0","w":1805},"\u00d5":{"d":"1201,-1537v411,0,716,349,627,777v-45,214,-154,398,-335,550v-181,152,-379,227,-594,227v-411,0,-716,-349,-626,-777v45,-214,153,-398,334,-550v181,-152,379,-227,594,-227xm1176,-1409v-368,0,-713,323,-774,649v-67,359,179,650,521,650v370,0,715,-324,776,-650v67,-359,-180,-649,-523,-649xm1259,-1789v75,66,114,79,158,-27r106,0v-38,105,-87,166,-147,183v-64,18,-111,1,-156,-40v-74,-65,-114,-77,-157,27r-108,0v39,-105,87,-168,147,-183v66,-17,111,-1,157,40","w":1805},"\u00d6":{"d":"1201,-1537v411,0,716,349,627,777v-45,214,-154,398,-335,550v-181,152,-379,227,-594,227v-411,0,-716,-349,-626,-777v45,-214,153,-398,334,-550v181,-152,379,-227,594,-227xm1176,-1409v-368,0,-713,323,-774,649v-67,359,179,650,521,650v370,0,715,-324,776,-650v67,-359,-180,-649,-523,-649xm1043,-1814v67,-59,180,-22,164,74v-13,77,-134,147,-193,74v-38,-47,-9,-114,29,-148xm1319,-1814v67,-59,180,-22,164,74v-13,77,-134,147,-193,74v-38,-47,-9,-114,29,-148","w":1805},"\u00d7":{"d":"531,-477r-231,231r-90,-90r231,-231r-231,-231r90,-90r231,231r231,-231r89,91r-231,230r231,231r-89,90","w":1062},"\u00d8":{"d":"1385,-1374v-53,-23,-123,-35,-209,-35v-368,0,-720,322,-774,649v-30,180,-2,332,100,459v37,46,73,80,108,102xm714,-145v54,23,124,35,209,35v370,0,713,-325,776,-650v45,-236,-57,-463,-210,-560xm1567,-1437v47,29,94,71,139,127v123,152,163,335,122,550v-42,215,-154,398,-335,550v-181,152,-379,227,-594,227v-104,0,-191,-15,-262,-46r-113,171r-104,-54r113,-170v-48,-29,-94,-73,-139,-129v-122,-152,-163,-334,-121,-549v41,-215,153,-398,334,-550v181,-152,379,-227,594,-227v104,0,191,15,262,46r112,-170r105,53","w":1805},"\u00d9":{"d":"1323,-1516r127,0r-210,1081v-69,230,-316,448,-589,448v-266,0,-460,-225,-406,-502r200,-1027r128,0r-200,1027v-45,205,106,374,303,374v213,0,411,-187,447,-374xm973,-1851r147,216r-133,0r-241,-216r227,0","w":1305},"\u00da":{"d":"1323,-1516r127,0r-210,1081v-69,230,-316,448,-589,448v-266,0,-460,-225,-406,-502r200,-1027r128,0r-200,1027v-45,205,106,374,303,374v213,0,411,-187,447,-374xm1280,-1851r-325,216r-133,0r230,-216r228,0","w":1305},"\u00db":{"d":"1323,-1516r127,0r-210,1081v-69,230,-316,448,-589,448v-266,0,-460,-225,-406,-502r200,-1027r128,0r-200,1027v-45,205,106,374,303,374v213,0,411,-187,447,-374xm1064,-1839r213,260r-157,0r-138,-126r-180,126r-156,0r304,-260r114,0","w":1305},"\u00dc":{"d":"1323,-1516r127,0r-210,1081v-69,230,-316,448,-589,448v-266,0,-460,-225,-406,-502r200,-1027r128,0r-200,1027v-45,205,106,374,303,374v213,0,411,-187,447,-374xm792,-1804v68,-60,181,-23,165,73v-13,77,-134,148,-194,75v-38,-47,-10,-114,29,-148xm1068,-1804v68,-60,181,-23,165,73v-13,77,-134,148,-194,75v-38,-47,-10,-114,29,-148","w":1305},"\u00dd":{"d":"691,-611r-346,-905r146,0r292,763r588,-763r146,0r-699,905r-119,611r-127,0xm1263,-1851r-325,216r-133,0r230,-216r228,0","w":1272},"\u00de":{"d":"805,-1261v233,26,399,238,350,502v-47,254,-313,506,-600,503r-228,0r-50,256r-127,0r295,-1516r127,0r-50,255r283,0xm351,-383r228,0v213,3,414,-188,449,-376v39,-207,-106,-374,-303,-374r-228,0","w":1097},"\u00e0":{"d":"1167,0r-127,0r27,-139v-134,110,-274,165,-420,165v-278,0,-479,-236,-425,-527v50,-266,330,-528,630,-528v146,0,265,55,356,165r16,-83r127,0xm673,-107v197,0,394,-158,449,-315r31,-159v1,-181,-146,-316,-327,-316v-225,0,-436,197,-473,396v-41,219,111,394,320,394xm855,-1328r146,216r-133,0r-241,-216r228,0","w":1317},"\u00e1":{"d":"1167,0r-127,0r27,-139v-134,110,-274,165,-420,165v-278,0,-479,-236,-425,-527v50,-266,330,-528,630,-528v146,0,265,55,356,165r16,-83r127,0xm673,-107v197,0,394,-158,449,-315r31,-159v1,-181,-146,-316,-327,-316v-225,0,-436,197,-473,396v-41,219,111,394,320,394xm1181,-1328r-325,216r-133,0r230,-216r228,0","w":1317},"\u00e2":{"d":"1167,0r-127,0r27,-139v-134,110,-274,165,-420,165v-278,0,-479,-236,-425,-527v50,-266,330,-528,630,-528v146,0,265,55,356,165r16,-83r127,0xm673,-107v197,0,394,-158,449,-315r31,-159v1,-181,-146,-316,-327,-316v-225,0,-436,197,-473,396v-41,219,111,394,320,394xm963,-1362r212,259r-157,0r-138,-125r-179,125r-157,0r305,-259r114,0","w":1317},"\u00e3":{"d":"1167,0r-127,0r27,-139v-134,110,-274,165,-420,165v-278,0,-479,-236,-425,-527v50,-266,330,-528,630,-528v146,0,265,55,356,165r16,-83r127,0xm673,-107v197,0,394,-158,449,-315r31,-159v1,-181,-146,-316,-327,-316v-225,0,-436,197,-473,396v-41,219,111,394,320,394xm907,-1294v74,66,114,79,157,-27r107,0v-38,105,-87,166,-147,183v-64,18,-111,1,-156,-40v-74,-65,-115,-77,-157,27r-108,0v38,-105,87,-167,147,-183v64,-17,111,0,157,40","w":1317},"\u00e4":{"d":"1167,0r-127,0r27,-139v-134,110,-274,165,-420,165v-278,0,-479,-236,-425,-527v50,-266,330,-528,630,-528v146,0,265,55,356,165r16,-83r127,0xm673,-107v197,0,394,-158,449,-315r31,-159v1,-181,-146,-316,-327,-316v-225,0,-436,197,-473,396v-41,219,111,394,320,394xm694,-1338v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148xm970,-1338v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148","w":1317},"\u00e5":{"d":"673,-107v197,0,394,-158,449,-315r31,-159v1,-181,-146,-316,-327,-316v-225,0,-436,197,-473,396v-41,219,111,394,320,394xm892,-1107v6,-27,-29,-41,-48,-22v-21,12,-18,54,12,53v16,0,33,-17,36,-31xm1074,-147v-117,101,-275,173,-427,173v-278,0,-486,-237,-425,-527v30,-146,105,-271,228,-374v107,-89,206,-135,298,-137v-97,-126,116,-315,227,-190v52,59,16,149,-37,190v99,0,183,45,258,137r12,11r16,-83r127,0r-184,947r-127,0r27,-139v4,-5,6,-7,7,-8","w":1317},"\u00e6":{"d":"1118,-581v-4,-193,-143,-316,-327,-316v-225,0,-436,197,-473,396v-41,219,111,394,320,394v199,0,386,-147,449,-314xm1941,-654v-21,-132,-162,-243,-317,-243v-127,0,-265,71,-348,158r-17,85r682,0xm1951,-232v-104,132,-315,258,-506,258v-137,0,-237,-35,-298,-104r-15,78r-127,0r27,-139v-134,110,-274,165,-420,165v-278,0,-479,-236,-425,-527v50,-266,330,-528,630,-528v146,0,265,55,356,165r16,-83r127,0r-4,21v88,-69,201,-103,338,-103v270,0,473,210,418,503r-834,-1r-50,262v53,95,160,158,287,158v136,0,274,-76,360,-170","w":2057},"\u00e7":{"d":"1107,-219v-107,118,-249,229,-421,214v101,10,125,87,76,157v-59,86,-206,118,-298,47r82,-62v36,17,116,11,103,-35v-7,-10,-28,-14,-50,-13v-17,0,-54,3,-111,8r59,-74v-224,-8,-413,-260,-359,-525v53,-264,329,-527,629,-527v189,0,328,93,400,243r-139,48v-55,-100,-157,-159,-287,-159v-224,0,-435,196,-471,395v-40,219,110,395,318,395v130,0,262,-68,349,-158"},"\u00e8":{"d":"1107,-219v-117,139,-303,245,-495,245v-278,0,-479,-236,-424,-528v50,-265,329,-527,629,-527v164,0,297,74,368,187r-777,650v52,57,129,85,230,85v130,0,262,-68,349,-158xm996,-834v-47,-42,-115,-63,-205,-63v-224,0,-439,196,-471,395v-15,91,-11,162,20,217xm831,-1328r146,216r-133,0r-241,-216r228,0","w":1243},"\u00e9":{"d":"1107,-219v-117,139,-303,245,-495,245v-278,0,-479,-236,-424,-528v50,-265,329,-527,629,-527v164,0,297,74,368,187r-777,650v52,57,129,85,230,85v130,0,262,-68,349,-158xm996,-834v-47,-42,-115,-63,-205,-63v-224,0,-439,196,-471,395v-15,91,-11,162,20,217xm1136,-1328r-325,216r-133,0r230,-216r228,0","w":1243},"\u00ea":{"d":"1107,-219v-117,139,-303,245,-495,245v-278,0,-479,-236,-424,-528v50,-265,329,-527,629,-527v164,0,297,74,368,187r-777,650v52,57,129,85,230,85v130,0,262,-68,349,-158xm996,-834v-47,-42,-115,-63,-205,-63v-224,0,-439,196,-471,395v-15,91,-11,162,20,217xm931,-1362r212,259r-157,0r-138,-125r-179,125r-157,0r305,-259r114,0","w":1243},"\u00eb":{"d":"1107,-219v-117,139,-303,245,-495,245v-278,0,-479,-236,-424,-528v50,-265,329,-527,629,-527v164,0,297,74,368,187r-777,650v52,57,129,85,230,85v130,0,262,-68,349,-158xm996,-834v-47,-42,-115,-63,-205,-63v-224,0,-439,196,-471,395v-15,91,-11,162,20,217xm740,-1368v55,0,93,46,84,104v-12,77,-135,148,-193,74v-58,-74,25,-178,109,-178xm1016,-1368v55,0,93,46,84,104v-12,77,-135,148,-193,74v-58,-74,25,-178,109,-178","w":1243},"\u00ec":{"d":"504,-947r-184,947r-126,0r184,-947r126,0xm412,-1328r146,216r-133,0r-241,-216r228,0","w":512},"\u00ed":{"d":"503,-947r-184,947r-127,0r184,-947r127,0xm844,-1328r-325,216r-133,0r230,-216r228,0","w":512},"\u00ee":{"d":"492,-947r-184,947r-127,0r184,-947r127,0xm562,-1362r213,259r-157,0r-139,-125r-178,125r-157,0r304,-259r114,0","w":490},"\u00ef":{"d":"465,-947r-184,947r-127,0r184,-947r127,0xm266,-1338v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148xm542,-1338v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148","w":436},"\u00f1":{"d":"688,-875v-106,0,-226,82,-271,156r-140,719r-127,0r184,-947r127,0r-5,27v124,-112,413,-112,512,25v54,74,78,161,57,268r-122,627r-126,0r120,-619v32,-140,-75,-256,-209,-256xm787,-1294v74,66,114,79,157,-27r107,0v-38,105,-87,166,-147,183v-64,18,-111,1,-156,-40v-74,-65,-115,-77,-157,27r-108,0v38,-105,87,-167,147,-183v64,-17,111,0,157,40","w":1053},"\u00f2":{"d":"414,-874v215,-189,569,-221,746,0v83,103,106,226,81,373v-45,266,-328,527,-629,527v-278,0,-486,-237,-425,-527v30,-146,106,-267,227,-373xm791,-897v-225,0,-436,197,-473,396v-41,219,111,394,320,394v225,0,435,-195,472,-394v41,-219,-110,-396,-319,-396xm836,-1328r147,216r-133,0r-241,-216r227,0","w":1234},"\u00f3":{"d":"414,-874v215,-189,569,-221,746,0v83,103,106,226,81,373v-45,266,-328,527,-629,527v-278,0,-486,-237,-425,-527v30,-146,106,-267,227,-373xm791,-897v-225,0,-436,197,-473,396v-41,219,111,394,320,394v225,0,435,-195,472,-394v41,-219,-110,-396,-319,-396xm1142,-1328r-325,216r-133,0r230,-216r228,0","w":1234},"\u00f4":{"d":"414,-874v215,-189,569,-221,746,0v83,103,106,226,81,373v-45,266,-328,527,-629,527v-278,0,-486,-237,-425,-527v30,-146,106,-267,227,-373xm791,-897v-225,0,-436,197,-473,396v-41,219,111,394,320,394v225,0,435,-195,472,-394v41,-219,-110,-396,-319,-396xm936,-1362r213,259r-157,0r-138,-125r-180,125r-157,0r305,-259r114,0","w":1234},"\u00f5":{"d":"414,-874v215,-189,569,-221,746,0v83,103,106,226,81,373v-45,266,-328,527,-629,527v-278,0,-486,-237,-425,-527v30,-146,106,-267,227,-373xm791,-897v-225,0,-436,197,-473,396v-41,219,111,394,320,394v225,0,435,-195,472,-394v41,-219,-110,-396,-319,-396xm878,-1294v74,66,114,79,157,-27r107,0v-38,105,-87,166,-147,183v-64,18,-110,1,-156,-40v-73,-65,-116,-78,-157,27r-108,0v38,-105,87,-167,147,-183v64,-17,111,0,157,40","w":1234},"\u00f6":{"d":"414,-874v215,-189,569,-221,746,0v83,103,106,226,81,373v-45,266,-328,527,-629,527v-278,0,-486,-237,-425,-527v30,-146,106,-267,227,-373xm791,-897v-225,0,-436,197,-473,396v-41,219,111,394,320,394v225,0,435,-195,472,-394v41,-219,-110,-396,-319,-396xm665,-1338v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148xm941,-1338v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148","w":1234},"\u00f7":{"d":"125,-650r780,0r0,127r-780,0r0,-127xm515,-925v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104xm515,-457v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":1030},"\u00f8":{"d":"929,-874v-277,-101,-568,134,-611,372v-22,123,15,237,87,307xm1025,-810r-525,679v276,101,567,-132,610,-371v22,-122,-15,-237,-85,-308xm316,-80v-101,-90,-161,-253,-129,-422v50,-266,330,-532,630,-528v83,0,150,14,201,41r151,-196r101,58r-156,202v103,88,159,253,127,423v-50,265,-328,527,-629,527v-83,0,-149,-14,-200,-41r-151,196r-103,-54","w":1234},"\u00f9":{"d":"838,-94v-145,132,-441,149,-560,0v-57,-71,-79,-160,-58,-268r115,-587r127,0r-113,579v-30,144,75,256,217,256v144,0,283,-128,308,-256r113,-579r127,0r-115,587v-23,108,-79,194,-161,268xm758,-1328r147,216r-133,0r-241,-216r227,0","w":1079},"\u00fa":{"d":"838,-94v-145,132,-441,149,-560,0v-57,-71,-79,-160,-58,-268r115,-587r127,0r-113,579v-30,144,75,256,217,256v144,0,283,-128,308,-256r113,-579r127,0r-115,587v-23,108,-79,194,-161,268xm1065,-1328r-325,216r-134,0r231,-216r228,0","w":1079},"\u00fb":{"d":"838,-94v-145,132,-441,149,-560,0v-57,-71,-79,-160,-58,-268r115,-587r127,0r-113,579v-30,144,75,256,217,256v144,0,283,-128,308,-256r113,-579r127,0r-115,587v-23,108,-79,194,-161,268xm858,-1362r214,259r-157,0r-139,-125r-179,125r-157,0r304,-259r114,0","w":1079},"\u00fc":{"d":"838,-94v-145,132,-441,149,-560,0v-57,-71,-79,-160,-58,-268r115,-587r127,0r-113,579v-30,144,75,256,217,256v144,0,283,-128,308,-256r113,-579r127,0r-115,587v-23,108,-79,194,-161,268xm588,-1338v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148xm864,-1338v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148","w":1079},"\u00fd":{"d":"483,-6r-237,351r-129,0r358,-534r-216,-758r143,0r166,617r406,-617r141,0r-632,942r0,-1xm1028,-1328r-325,216r-133,0r230,-216r228,0","w":1007},"\u00fe":{"d":"334,-401v8,168,152,295,327,295v224,0,434,-197,471,-395v41,-219,-110,-396,-318,-396v-188,0,-411,139,-441,295xm425,-869v131,-106,270,-159,415,-159v278,0,479,235,424,527v-50,265,-329,527,-629,527v-145,0,-263,-53,-353,-160r-90,463r-127,0r323,-1661r127,0","w":1292},"\u00ff":{"d":"483,-6r-237,351r-129,0r358,-534r-216,-758r143,0r166,617r406,-617r141,0r-632,942r0,-1xm632,-1368v55,0,93,46,84,104v-12,77,-135,148,-193,74v-58,-74,25,-178,109,-178xm908,-1368v55,0,93,46,84,104v-12,77,-135,148,-193,74v-58,-74,25,-178,109,-178","w":1007},"\u0131":{"d":"481,-947r-184,947r-127,0r184,-947r127,0","w":467},"\u00aa":{"d":"350,-912r529,0r-14,72r-602,0r121,-622r73,0xm959,-985r-95,0r6,-28v-44,27,-103,40,-178,40v-144,0,-246,-122,-218,-272v25,-137,168,-271,323,-271v75,0,127,21,158,62r5,-22r95,0xm711,-1071v85,0,182,-67,196,-136r15,-74v1,-77,-63,-138,-143,-138v-141,0,-275,169,-182,297v26,35,65,51,114,51","w":868},"\u00ba":{"d":"597,-1121v51,68,212,56,275,0v64,-57,109,-166,48,-247v-24,-32,-68,-51,-127,-51v-120,0,-203,78,-223,174v-9,49,1,89,27,124xm926,-1053v-113,101,-324,120,-410,0v-145,-203,61,-463,308,-463v144,0,250,122,219,271v-15,75,-55,137,-117,192xm350,-912r529,0r-14,72r-602,0r121,-622r73,0","w":901},"\u00f0":{"d":"791,-897v-225,0,-436,197,-473,396v-41,219,111,394,320,394v225,0,435,-195,472,-394v41,-219,-110,-396,-319,-396xm1105,-932v109,90,169,255,136,431v-49,265,-328,527,-629,527v-278,0,-480,-236,-425,-527v51,-270,331,-531,637,-531r-5,-6r-166,0r24,-127r52,0r-75,-105r177,0r85,105r163,0r-24,127r-35,0","w":1234},"\u0100":{"d":"957,-691r-89,-531r-297,531r386,0xm979,-564r-479,0r-315,564r-135,0r889,-1592r270,1592r-135,0xm684,-1791r587,0r-21,109r-587,0","w":1259},"\u0101":{"d":"1167,0r-127,0r27,-139v-134,110,-274,165,-420,165v-278,0,-479,-236,-425,-527v50,-266,330,-528,630,-528v146,0,265,55,356,165r16,-83r127,0xm673,-107v197,0,394,-158,449,-315r31,-159v1,-181,-146,-316,-327,-316v-225,0,-436,197,-473,396v-41,219,111,394,320,394xm600,-1273r587,0r-21,109r-587,0","w":1317},"\u0102":{"d":"957,-691r-89,-531r-297,531r386,0xm979,-564r-479,0r-315,564r-135,0r889,-1592r270,1592r-135,0xm1237,-1893v-35,131,-142,236,-286,239v-128,3,-217,-103,-194,-239r110,0v-7,81,36,128,105,128v77,0,133,-55,154,-128r111,0","w":1259},"\u0103":{"d":"1167,0r-127,0r27,-139v-134,110,-274,165,-420,165v-278,0,-479,-236,-425,-527v50,-266,330,-528,630,-528v146,0,265,55,356,165r16,-83r127,0xm673,-107v197,0,394,-158,449,-315r31,-159v1,-181,-146,-316,-327,-316v-225,0,-436,197,-473,396v-41,219,111,394,320,394xm1153,-1375v-35,131,-142,236,-286,239v-128,3,-217,-103,-194,-239r110,0v-5,80,36,128,105,128v76,0,134,-55,154,-128r111,0","w":1317},"\u0106":{"d":"1401,-286r78,85v-187,145,-381,218,-582,218v-410,0,-714,-347,-624,-775v45,-213,155,-394,333,-548v318,-275,809,-324,1090,-10r-112,87v-236,-256,-642,-215,-904,13v-148,129,-240,280,-278,458v-76,357,179,648,520,648v165,0,324,-59,479,-176xm1419,-1846r-325,216r-133,0r230,-216r228,0","w":1540},"\u0107":{"d":"638,-107v130,0,262,-68,349,-158r120,46v-117,139,-303,245,-495,245v-278,0,-479,-236,-424,-528v50,-265,329,-527,629,-527v189,0,328,93,400,243r-139,48v-55,-100,-157,-159,-287,-159v-224,0,-435,196,-471,395v-40,219,110,395,318,395xm1113,-1328r-325,216r-133,0r230,-216r228,0"},"\u0108":{"d":"1401,-286r78,85v-187,145,-381,218,-582,218v-410,0,-714,-347,-624,-775v45,-213,155,-394,333,-548v318,-275,809,-324,1090,-10r-112,87v-236,-256,-642,-215,-904,13v-148,129,-240,280,-278,458v-76,357,179,648,520,648v165,0,324,-59,479,-176xm1301,-1880r212,259r-157,0r-138,-125r-179,125r-157,0r305,-259r114,0","w":1540},"\u0109":{"d":"638,-107v130,0,262,-68,349,-158r120,46v-117,139,-303,245,-495,245v-278,0,-479,-236,-424,-528v50,-265,329,-527,629,-527v189,0,328,93,400,243r-139,48v-55,-100,-157,-159,-287,-159v-224,0,-435,196,-471,395v-40,219,110,395,318,395xm925,-1362r212,259r-157,0r-138,-125r-179,125r-157,0r305,-259r114,0"},"\u010a":{"d":"1401,-286r78,85v-187,145,-381,218,-582,218v-410,0,-714,-347,-624,-775v45,-213,155,-394,333,-548v318,-275,809,-324,1090,-10r-112,87v-236,-256,-642,-215,-904,13v-148,129,-240,280,-278,458v-76,357,179,648,520,648v165,0,324,-59,479,-176xm1164,-1784v59,-52,160,-21,145,65v-12,68,-117,128,-170,65v-34,-41,-9,-100,25,-130","w":1540},"\u010b":{"d":"638,-107v130,0,262,-68,349,-158r120,46v-117,139,-303,245,-495,245v-278,0,-479,-236,-424,-528v50,-265,329,-527,629,-527v189,0,328,93,400,243r-139,48v-55,-100,-157,-159,-287,-159v-224,0,-435,196,-471,395v-40,219,110,395,318,395xm768,-1316v59,-52,160,-21,145,65v-12,68,-119,128,-171,65v-34,-41,-8,-100,26,-130"},"\u010c":{"d":"1401,-286r78,85v-187,145,-381,218,-582,218v-410,0,-714,-347,-624,-775v45,-213,155,-394,333,-548v318,-275,809,-324,1090,-10r-112,87v-236,-256,-642,-215,-904,13v-148,129,-240,280,-278,458v-76,357,179,648,520,648v165,0,324,-59,479,-176xm1136,-1621r-203,-259r157,0r129,125r188,-125r157,0r-314,259r-114,0","w":1540},"\u010d":{"d":"638,-107v130,0,262,-68,349,-158r120,46v-117,139,-303,245,-495,245v-278,0,-479,-236,-424,-528v50,-265,329,-527,629,-527v189,0,328,93,400,243r-139,48v-55,-100,-157,-159,-287,-159v-224,0,-435,196,-471,395v-40,219,110,395,318,395xm770,-1103r-203,-259r157,0r129,125r188,-125r157,0r-314,259r-114,0"},"\u0110":{"d":"356,-821r136,-695r127,0r-1,2v240,3,415,72,523,207v122,152,161,335,120,549v-77,401,-440,762,-937,756r0,2r-127,0r135,-695r-147,0r24,-126r147,0xm483,-821r340,0r-24,126r-340,0r-110,565v417,9,721,-295,784,-628v35,-179,1,-331,-101,-458v-91,-113,-237,-170,-439,-170","w":1239},"\u0111":{"d":"673,-107v197,0,394,-158,449,-315r31,-159v1,-181,-146,-316,-327,-316v-225,0,-436,197,-473,396v-41,219,111,394,320,394xm1396,-1180r-229,1180r-127,0r27,-139r-16,10v-213,191,-569,222,-747,1v-83,-103,-107,-227,-82,-373v45,-267,330,-528,630,-528v146,0,261,51,344,154r12,11r61,-316r-267,0r25,-127r267,0r41,-209r127,0r-41,209r91,0r-25,127r-91,0","w":1309},"\u0112":{"d":"1225,-1516r-25,127r-653,0r-110,568r653,0r-25,126r-653,0r-110,568r653,0r-25,127r-780,0r295,-1516r780,0xm576,-1691r587,0r-21,109r-587,0","w":1055},"\u0113":{"d":"1107,-219v-117,139,-303,245,-495,245v-278,0,-479,-236,-424,-528v50,-265,329,-527,629,-527v164,0,297,74,368,187r-777,650v52,57,129,85,230,85v130,0,262,-68,349,-158xm996,-834v-47,-42,-115,-63,-205,-63v-224,0,-439,196,-471,395v-15,91,-11,162,20,217xm531,-1273r587,0r-21,109r-587,0"},"\u0114":{"d":"1225,-1516r-25,127r-653,0r-110,568r653,0r-25,126r-653,0r-110,568r653,0r-25,127r-780,0r295,-1516r780,0xm1132,-1813v-34,132,-142,236,-286,239v-129,3,-215,-103,-194,-239r110,0v-5,81,37,128,106,128v76,0,133,-55,153,-128r111,0","w":1055},"\u0115":{"d":"1107,-219v-117,139,-303,245,-495,245v-278,0,-479,-236,-424,-528v50,-265,329,-527,629,-527v164,0,297,74,368,187r-777,650v52,57,129,85,230,85v130,0,262,-68,349,-158xm996,-834v-47,-42,-115,-63,-205,-63v-224,0,-439,196,-471,395v-15,91,-11,162,20,217xm1084,-1375v-35,131,-142,236,-286,239v-128,3,-217,-103,-194,-239r110,0v-5,80,36,128,105,128v76,0,134,-55,154,-128r111,0"},"\u0116":{"d":"1225,-1516r-25,127r-653,0r-110,568r653,0r-25,126r-653,0r-110,568r653,0r-25,127r-780,0r295,-1516r780,0xm818,-1764v59,-52,160,-21,145,65v-12,68,-119,128,-171,65v-34,-41,-8,-100,26,-130","w":1055},"\u0117":{"d":"1107,-219v-117,139,-303,245,-495,245v-278,0,-479,-236,-424,-528v50,-265,329,-527,629,-527v164,0,297,74,368,187r-777,650v52,57,129,85,230,85v130,0,262,-68,349,-158xm996,-834v-47,-42,-115,-63,-205,-63v-224,0,-439,196,-471,395v-15,91,-11,162,20,217xm768,-1316v59,-52,160,-21,145,65v-12,68,-119,128,-171,65v-34,-41,-8,-100,26,-130"},"\u011a":{"d":"1225,-1516r-25,127r-653,0r-110,568r653,0r-25,126r-653,0r-110,568r653,0r-25,127r-780,0r295,-1516r780,0xm791,-1611r-204,-259r157,0r130,125r187,-125r157,0r-313,259r-114,0","w":1055},"\u011b":{"d":"1107,-219v-117,139,-303,245,-495,245v-278,0,-479,-236,-424,-528v50,-265,329,-527,629,-527v164,0,297,74,368,187r-777,650v52,57,129,85,230,85v130,0,262,-68,349,-158xm996,-834v-47,-42,-115,-63,-205,-63v-224,0,-439,196,-471,395v-15,91,-11,162,20,217xm729,-1103r-203,-259r157,0r129,125r188,-125r157,0r-314,259r-114,0"},"\u011c":{"d":"1462,-196v-176,142,-364,213,-565,213v-410,0,-714,-347,-624,-775v45,-213,155,-394,333,-548v318,-275,809,-324,1090,-10r-112,87v-236,-256,-642,-215,-904,13v-148,129,-240,280,-278,458v-76,357,179,648,520,648v153,0,294,-45,423,-135r89,-460r127,0xm1301,-1880r212,259r-157,0r-138,-125r-179,125r-157,0r305,-259r114,0","w":1565},"\u011d":{"d":"1153,-586v-2,-178,-147,-311,-327,-311v-225,0,-436,197,-473,396v-41,219,111,395,320,395v195,0,416,-147,447,-309xm325,4v58,97,158,158,288,158v109,0,209,-39,301,-116v83,-70,131,-129,144,-177r-7,2v-213,191,-569,222,-747,1v-83,-103,-107,-227,-82,-373v45,-267,330,-527,630,-527v146,0,265,55,356,164r16,-83r127,0r-141,724v-40,263,-328,517,-623,517v-189,0,-329,-93,-400,-244xm963,-1362r212,259r-157,0r-138,-125r-179,125r-157,0r305,-259r114,0","w":1321},"\u011e":{"d":"1462,-196v-176,142,-364,213,-565,213v-410,0,-714,-347,-624,-775v45,-213,155,-394,333,-548v318,-275,809,-324,1090,-10r-112,87v-236,-256,-642,-215,-904,13v-148,129,-240,280,-278,458v-76,357,179,648,520,648v153,0,294,-45,423,-135r89,-460r127,0xm1491,-1893v-35,131,-142,236,-286,239v-128,3,-217,-103,-194,-239r110,0v-5,80,36,128,105,128v76,0,134,-55,154,-128r111,0","w":1565},"\u011f":{"d":"1153,-586v-2,-178,-147,-311,-327,-311v-225,0,-436,197,-473,396v-41,219,111,395,320,395v195,0,416,-147,447,-309xm325,4v58,97,158,158,288,158v109,0,209,-39,301,-116v83,-70,131,-129,144,-177r-7,2v-213,191,-569,222,-747,1v-83,-103,-107,-227,-82,-373v45,-267,330,-527,630,-527v146,0,265,55,356,164r16,-83r127,0r-141,724v-40,263,-328,517,-623,517v-189,0,-329,-93,-400,-244xm1143,-1375v-35,131,-142,236,-286,239v-128,3,-217,-103,-194,-239r110,0v-5,80,36,128,105,128v76,0,134,-55,154,-128r111,0","w":1321},"\u0120":{"d":"1462,-196v-176,142,-364,213,-565,213v-410,0,-714,-347,-624,-775v45,-213,155,-394,333,-548v318,-275,809,-324,1090,-10r-112,87v-236,-256,-642,-215,-904,13v-148,129,-240,280,-278,458v-76,357,179,648,520,648v153,0,294,-45,423,-135r89,-460r127,0xm1172,-1824v59,-52,160,-21,145,65v-12,68,-119,128,-171,65v-34,-41,-8,-100,26,-130","w":1565},"\u0121":{"d":"1153,-586v-2,-178,-147,-311,-327,-311v-225,0,-436,197,-473,396v-41,219,111,395,320,395v195,0,416,-147,447,-309xm325,4v58,97,158,158,288,158v109,0,209,-39,301,-116v83,-70,131,-129,144,-177r-7,2v-213,191,-569,222,-747,1v-83,-103,-107,-227,-82,-373v45,-267,330,-527,630,-527v146,0,265,55,356,164r16,-83r127,0r-141,724v-40,263,-328,517,-623,517v-189,0,-329,-93,-400,-244xm837,-1316v59,-52,160,-21,145,65v-12,68,-118,128,-170,65v-34,-41,-9,-100,25,-130","w":1321},"\u012c":{"d":"592,-1516r-295,1516r-127,0r295,-1516r127,0xm842,-1893v-35,131,-142,236,-286,239v-128,3,-217,-103,-194,-239r110,0v-7,81,36,128,105,128v77,0,133,-55,154,-128r111,0","w":467},"\u012d":{"d":"481,-947r-184,947r-127,0r184,-947r127,0xm741,-1375v-35,131,-142,236,-286,239v-128,3,-217,-103,-194,-239r110,0v-5,80,36,128,105,128v76,0,134,-55,154,-128r111,0","w":467},"\u013f":{"d":"150,0r295,-1516r127,0r-270,1389r570,0r-25,127r-697,0xm794,-824v59,-52,160,-20,145,66v-12,68,-119,129,-171,66v-34,-41,-8,-102,26,-132","w":937},"\u0140":{"d":"572,-1516r-295,1516r-127,0r295,-1516r127,0xm564,-824v59,-52,160,-20,145,66v-12,68,-119,129,-171,66v-34,-41,-8,-102,26,-132","w":612},"\u0143":{"d":"445,-1516r126,0r478,1249r243,-1249r127,0r-295,1516r-117,0r-485,-1262r-245,1262r-127,0xm1273,-1846r-325,216r-133,0r230,-216r228,0","w":1274},"\u0144":{"d":"688,-875v-106,0,-226,82,-271,156r-140,719r-127,0r184,-947r127,0r-5,27v124,-112,413,-112,512,25v54,74,78,161,57,268r-122,627r-126,0r120,-619v32,-140,-75,-256,-209,-256xm1062,-1328r-325,216r-133,0r230,-216r228,0","w":1053},"\u0147":{"d":"445,-1516r126,0r478,1249r243,-1249r127,0r-295,1516r-117,0r-485,-1262r-245,1262r-127,0xm890,-1621r-204,-259r157,0r130,125r187,-125r157,0r-313,259r-114,0","w":1274},"\u0148":{"d":"688,-875v-106,0,-226,82,-271,156r-140,719r-127,0r184,-947r127,0r-5,27v124,-112,413,-112,512,25v54,74,78,161,57,268r-122,627r-126,0r120,-619v32,-140,-75,-256,-209,-256xm679,-1103r-203,-259r157,0r129,125r188,-125r157,0r-314,259r-114,0","w":1053},"\u014c":{"d":"1201,-1537v411,0,716,349,627,777v-45,214,-154,398,-335,550v-181,152,-379,227,-594,227v-411,0,-716,-349,-626,-777v45,-214,153,-398,334,-550v181,-152,379,-227,594,-227xm1176,-1409v-368,0,-713,323,-774,649v-67,359,179,650,521,650v370,0,715,-324,776,-650v67,-359,-180,-649,-523,-649xm957,-1791r587,0r-21,109r-587,0","w":1805},"\u014d":{"d":"414,-874v215,-189,569,-221,746,0v83,103,106,226,81,373v-45,266,-328,527,-629,527v-278,0,-486,-237,-425,-527v30,-146,106,-267,227,-373xm791,-897v-225,0,-436,197,-473,396v-41,219,111,394,320,394v225,0,435,-195,472,-394v41,-219,-110,-396,-319,-396xm571,-1273r587,0r-21,109r-587,0","w":1234},"\u014e":{"d":"1201,-1537v411,0,716,349,627,777v-45,214,-154,398,-335,550v-181,152,-379,227,-594,227v-411,0,-716,-349,-626,-777v45,-214,153,-398,334,-550v181,-152,379,-227,594,-227xm1176,-1409v-368,0,-713,323,-774,649v-67,359,179,650,521,650v370,0,715,-324,776,-650v67,-359,-180,-649,-523,-649xm1510,-1893v-34,132,-143,236,-287,239v-128,3,-216,-103,-193,-239r110,0v-7,81,36,128,105,128v77,0,133,-55,154,-128r111,0","w":1805},"\u014f":{"d":"414,-874v215,-189,569,-221,746,0v83,103,106,226,81,373v-45,266,-328,527,-629,527v-278,0,-486,-237,-425,-527v30,-146,106,-267,227,-373xm791,-897v-225,0,-436,197,-473,396v-41,219,111,394,320,394v225,0,435,-195,472,-394v41,-219,-110,-396,-319,-396xm1124,-1375v-35,131,-142,236,-286,239v-128,3,-217,-103,-194,-239r110,0v-5,80,36,128,105,128v76,0,134,-55,154,-128r111,0","w":1234},"\u0150":{"d":"1201,-1537v411,0,716,349,627,777v-45,214,-154,398,-335,550v-181,152,-379,227,-594,227v-411,0,-716,-349,-626,-777v45,-214,153,-398,334,-550v181,-152,379,-227,594,-227xm1176,-1409v-368,0,-713,323,-774,649v-67,359,179,650,521,650v370,0,715,-324,776,-650v67,-359,-180,-649,-523,-649xm1445,-1829r-325,216r-133,0r230,-216r228,0xm1686,-1829r-325,216r-133,0r230,-216r228,0","w":1805},"\u0151":{"d":"414,-874v215,-189,569,-221,746,0v83,103,106,226,81,373v-45,266,-328,527,-629,527v-278,0,-486,-237,-425,-527v30,-146,106,-267,227,-373xm791,-897v-225,0,-436,197,-473,396v-41,219,111,394,320,394v225,0,435,-195,472,-394v41,-219,-110,-396,-319,-396xm1060,-1311r-325,216r-133,0r230,-216r228,0xm1301,-1311r-325,216r-133,0r230,-216r228,0","w":1234},"\u0152":{"d":"1602,-1389v8,5,31,32,69,79v115,143,158,306,131,489r405,0r-24,126r-405,0v-45,182,-151,343,-320,484v-59,50,-95,78,-106,84r721,0r-25,127r-941,0v-76,11,-157,17,-243,17v-411,0,-716,-349,-626,-777v45,-214,152,-399,334,-550v241,-200,485,-206,831,-206r940,0r-25,127r-716,0xm1654,-718v47,-182,22,-367,-90,-501v-94,-114,-224,-188,-423,-190v-368,-4,-713,323,-774,649v-67,359,179,659,521,650v214,-5,370,-85,496,-191v139,-117,229,-256,270,-417","w":2173},"\u0153":{"d":"791,-897v-225,0,-436,197,-473,396v-41,219,111,394,320,394v225,0,435,-195,472,-394v41,-219,-110,-396,-319,-396xm1901,-654v-22,-132,-162,-243,-318,-243v-127,0,-269,73,-349,160v9,27,14,55,16,83r651,0xm1178,-851v114,-103,278,-178,431,-178v270,0,473,209,419,503r-782,0v-18,102,-50,188,-104,260v52,94,160,159,288,159v137,0,274,-76,361,-170r119,45v-103,133,-315,258,-506,258v-157,0,-281,-67,-361,-179v-112,105,-279,179,-431,179v-278,0,-479,-236,-425,-527v50,-266,330,-528,630,-528v156,0,284,64,361,178","w":2016},"\u0178":{"d":"691,-611r-346,-905r146,0r292,763r588,-763r146,0r-699,905r-119,611r-127,0xm785,-1856v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148xm1061,-1856v68,-60,181,-22,165,74v-13,77,-134,147,-194,74v-38,-47,-10,-114,29,-148","w":1272},"\u1ef2":{"d":"691,-611r-346,-905r146,0r292,763r588,-763r146,0r-699,905r-119,611r-127,0xm946,-1846r146,216r-133,0r-241,-216r228,0","w":1272},"\u1ef3":{"d":"246,345r-129,0r358,-534r-216,-758r143,0r166,617r406,-617r141,0xm693,-1228r146,216r-133,0r-241,-216r228,0","w":1007}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Caviar Dreams Bold © Lauren Thompson (Nymphont) 2009. All rights reserved.
 * http://www.nymphont.com/
 * 
 * Description:
 * This font was created using FontCreator 5.6 from High-Logic.com
 * 
 * Designer:
 * Lauren Thompson
 * 
 * License information:
 * http://novelhunter.com.googlepages.com/nymphont.html
 */
Cufon.registerFont({"w":1154,"face":{"font-family":"Caviar Dreams Bold","font-weight":500,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 6 2 2 2 4 2 5 4","ascent":"1638","descent":"-410","x-height":"26","bbox":"-74 -1893 2048 345","underline-thickness":"150","underline-position":"-142","unicode-range":"U+0020-U+1EF3"},"glyphs":{" ":{"w":708},"\u00a0":{"w":708},"!":{"d":"230,-196v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104xm291,-1516r0,1262r-126,0r0,-1262r126,0","w":460},"\"":{"d":"125,-917r0,-596r127,0r0,596r-127,0xm341,-917r0,-596r127,0r0,596r-127,0","w":593},"#":{"d":"768,-950r167,0r102,-410r128,0r-102,410r409,0r-32,127r-409,0r-42,167r410,0r-33,127r-409,0r-102,409r-128,0r102,-409r-166,0r-102,409r-129,0r103,-409r-410,0r32,-127r410,0r41,-167r-409,0r32,-127r409,0r102,-410r129,0xm903,-823r-167,0r-41,167r166,0","w":1598},"$":{"d":"566,-221v97,-17,204,-145,204,-268v0,-133,-117,-245,-204,-286r0,554xm439,-1296v-47,12,-120,93,-111,161v-7,76,66,144,111,170r0,-331xm893,-489v0,192,-162,373,-327,393r0,131r-127,0r0,-130v-165,-14,-321,-172,-339,-351r119,-43v7,141,109,253,220,271r0,-609v-116,-51,-235,-155,-235,-308v0,-136,119,-272,235,-286r0,-152r127,0r0,155v92,19,181,101,210,205r-112,45v-18,-59,-60,-105,-98,-123r0,384v157,59,327,211,327,418","w":992},"%":{"d":"1078,-1236r-870,1242r-105,-72r870,-1242xm315,-1162v126,0,234,108,234,235v0,126,-108,234,-234,234v-127,0,-235,-108,-235,-234v0,-127,108,-235,235,-235xm425,-927v0,-59,-51,-111,-110,-111v-61,0,-111,51,-111,111v0,60,50,110,111,110v59,0,110,-51,110,-110xm867,-610v126,0,234,108,234,235v0,126,-108,234,-234,234v-127,0,-235,-108,-235,-234v0,-127,108,-235,235,-235xm977,-375v0,-59,-51,-111,-110,-111v-61,0,-111,51,-111,111v0,60,50,110,111,110v59,0,110,-51,110,-110","w":1180},"&":{"d":"200,-442v-6,180,154,334,333,334v134,0,271,-104,309,-206v-44,-19,-129,-119,-179,-149v-42,-25,-92,9,-92,52v0,63,54,65,128,52r-13,118v-133,40,-239,-43,-239,-170v0,-136,147,-226,276,-159v36,19,134,123,174,144v68,36,149,-12,146,-84v-3,-83,-77,-118,-167,-82r-2,-127v196,-65,360,135,263,317v-35,63,-92,99,-170,112v-48,157,-238,307,-434,307v-246,0,-458,-212,-458,-459v0,-200,161,-403,311,-456v-12,-5,-43,-33,-92,-86v-49,-53,-74,-125,-74,-217v0,-177,155,-332,334,-332v152,0,279,99,318,235r-114,45v-30,-90,-102,-154,-204,-156v-111,-2,-207,96,-207,208v0,107,103,206,171,233v34,13,85,20,152,21r0,120r-86,3v-219,37,-376,163,-384,382","w":1257},"'":{"d":"125,-917r0,-596r127,0r0,596r-127,0","w":377},"(":{"d":"607,117v-327,-116,-507,-429,-507,-875v0,-445,180,-759,507,-875r0,127v-248,118,-391,374,-391,748v0,377,144,630,391,752r0,123","w":707},")":{"d":"491,-758v0,-375,-142,-630,-391,-748r0,-127v327,116,507,431,507,875v0,445,-180,758,-507,875r0,-123v247,-122,391,-375,391,-752","w":707},"*":{"d":"472,-1338r144,-100r73,104r-170,119r170,119r-73,104r-144,-101r0,176r-126,0r0,-177r-145,102r-73,-104r170,-119r-170,-119r73,-104r145,101r0,-176r126,0r0,175","w":818},"+":{"d":"452,-503r-327,0r0,-127r327,0r0,-327r126,0r0,327r327,0r0,127r-327,0r0,326r-126,0r0,-326","w":1030},",":{"d":"321,-197r-191,398r-120,0r107,-398r204,0","w":421},"-":{"d":"125,-630r587,0r0,127r-587,0r0,-127","w":837},"\u00ad":{"d":"125,-630r587,0r0,127r-587,0r0,-127","w":837},".":{"d":"205,-196v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":410},"\/":{"d":"636,-1516r143,0r-687,1516r-142,0","w":729},"0":{"d":"603,-107v213,0,396,-181,396,-394r0,-488v6,-213,-183,-395,-396,-395v-213,0,-396,182,-396,395r0,488v-6,213,183,394,396,394xm603,-1516v284,0,527,244,527,527r0,488v8,283,-243,527,-527,527v-283,0,-527,-244,-527,-527r0,-488v-8,-283,244,-527,527,-527","w":1206},"1":{"d":"769,-1516r0,1516r-127,0r0,-1327r-110,0r147,-189r90,0","w":1302},"2":{"d":"609,-1536v248,0,461,213,461,462v0,126,-44,236,-132,331v-129,140,-313,260,-469,380v-92,70,-149,148,-168,236r769,0r0,127r-915,0v31,-213,100,-357,203,-436v166,-127,345,-242,484,-396v64,-70,97,-151,97,-242v0,-179,-152,-334,-330,-331v-180,3,-318,138,-331,322r-127,-46v28,-225,221,-407,458,-407","w":1220},"3":{"d":"609,-111v178,3,336,-152,330,-331v-7,-216,-164,-344,-381,-380r-89,-2r0,-126v151,-3,183,-21,263,-103v40,-41,60,-91,60,-148v0,-111,-94,-207,-204,-205v-102,2,-172,64,-202,157r-119,-47v40,-140,167,-237,321,-240v181,-3,336,156,336,335v0,93,-24,166,-74,219v-50,53,-78,81,-85,84v54,18,112,60,173,125v88,95,132,205,132,331v0,249,-213,462,-461,462v-236,0,-430,-182,-458,-407r127,-46v14,185,150,319,331,322","w":1220},"4":{"d":"806,-1516r117,0r0,959r141,0r0,126r-141,0r0,431r-127,0r0,-431r-623,0xm796,-1236r-403,679r403,0r0,-679","w":1238},"5":{"d":"207,-316v82,119,183,195,354,195v241,0,411,-171,411,-418v0,-201,-134,-349,-295,-400v-143,-45,-263,-24,-421,24r-87,-76r173,-477r0,-48r504,0r0,127r-397,0r-116,318v100,-30,273,-31,383,8v211,75,387,261,387,525v0,239,-118,391,-290,484v-128,70,-266,84,-415,38v-115,-35,-208,-102,-281,-201","w":1219},"6":{"d":"606,-897v-213,0,-395,183,-395,396v0,213,182,394,395,394v213,0,396,-181,396,-394v0,-213,-183,-396,-396,-396xm606,26v-269,0,-524,-238,-526,-490r-7,0v7,-236,60,-423,159,-563v105,-148,251,-321,399,-489r170,0v-31,39,-54,67,-68,83v-161,179,-288,336,-382,470v39,-44,124,-66,255,-66v284,0,527,244,527,528v0,283,-243,527,-527,527","w":1207},"7":{"d":"816,-973v-162,182,-291,339,-384,471v-93,132,-142,299,-149,502r-130,0v7,-236,59,-424,159,-564v100,-140,222,-289,366,-450v144,-161,225,-286,244,-375r-768,0r0,-127r912,0v-5,180,-88,361,-250,543","w":1220},"8":{"d":"237,-442v-4,191,162,354,371,329v206,24,369,-140,366,-329v-3,-211,-161,-341,-368,-377v-209,37,-365,165,-369,377xm1104,-442v1,260,-217,461,-498,461v-282,0,-499,-201,-499,-461v0,-126,44,-236,132,-331v61,-65,118,-107,173,-125v-7,-3,-36,-31,-86,-84v-50,-53,-74,-126,-74,-219v1,-189,159,-335,370,-335v182,0,337,156,337,335v0,93,-25,166,-75,219v-50,53,-78,81,-85,84v55,18,112,60,173,125v88,95,132,205,132,331xm826,-1201v0,-117,-97,-204,-223,-204v-122,0,-218,89,-218,204v0,105,101,204,168,230v17,6,34,11,53,14v75,-14,104,-37,161,-96v40,-41,59,-91,59,-148","w":1211},"9":{"d":"600,-593v213,0,396,-183,396,-396v0,-213,-183,-395,-396,-395v-213,0,-396,182,-396,395v0,213,183,396,396,396xm600,-1516v269,0,524,237,527,489r6,0v-7,237,-60,424,-159,564v-105,148,-251,321,-399,489r-170,0r68,-83v161,-179,288,-336,382,-470v-39,44,-124,66,-255,66v-284,0,-527,-244,-527,-528v0,-283,243,-527,527,-527","w":1207},":":{"d":"230,-196v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104xm230,-763v56,0,105,47,105,103v0,58,-48,105,-105,105v-57,0,-105,-47,-105,-105v0,-56,49,-103,105,-103","w":460},";":{"d":"394,-197r-191,398r-120,0r107,-398r204,0xm233,-763v56,0,105,47,105,103v0,58,-48,105,-105,105v-57,0,-105,-47,-105,-105v0,-56,49,-103,105,-103","w":519},"\u037e":{"d":"394,-197r-191,398r-120,0r107,-398r204,0xm233,-763v56,0,105,47,105,103v0,58,-48,105,-105,105v-57,0,-105,-47,-105,-105v0,-56,49,-103,105,-103","w":519},"<":{"d":"1243,-124r-1143,-416r1143,-416r0,135r-772,281r772,281r0,135","w":1343},"=":{"d":"125,-777r780,0r0,127r-780,0r0,-127xm125,-483r780,0r0,127r-780,0r0,-127","w":1030},">":{"d":"100,-259r773,-281r-773,-281r0,-135r1143,416r-1143,416r0,-135","w":1343},"?":{"d":"462,-1461v195,0,333,136,333,334v0,49,-12,97,-35,144v-39,81,-107,151,-192,225v-125,108,-245,266,-165,479r-118,41v-49,-139,-45,-246,13,-370v50,-106,134,-189,228,-273v82,-73,141,-130,141,-247v0,-124,-86,-208,-207,-208v-130,0,-208,85,-208,228r-125,-6v-4,-171,97,-282,223,-327v38,-13,75,-20,112,-20xm332,-196v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":946},"@":{"d":"783,-291v109,0,208,-83,228,-178r0,-116v-20,-95,-120,-179,-228,-179v-128,0,-235,110,-235,238v0,126,108,235,235,235xm1140,-120v-87,-6,-133,-49,-131,-135v-53,56,-129,84,-228,84v-190,0,-357,-167,-357,-355v0,-192,166,-358,357,-358v99,0,175,28,228,84r0,-72r119,0r0,614v6,15,15,22,28,22v19,0,52,-31,96,-94v44,-63,66,-128,66,-195v0,-288,-249,-538,-537,-538v-288,0,-536,250,-536,538v0,288,248,535,536,535v101,0,179,-17,234,-51r84,88v-93,55,-199,82,-318,82v-350,0,-656,-305,-656,-654v0,-351,305,-656,656,-656v352,0,654,305,654,656v0,147,-144,416,-295,405","w":1560},"A":{"d":"823,-691r-193,-531r-193,531r386,0xm869,-564r-479,0r-205,564r-135,0r580,-1592r579,1592r-135,0","w":1259,"k":{"Y":259,"V":290,"T":101}},"B":{"d":"954,-529v0,264,-229,529,-475,529r-329,0r0,-1516r283,-1v159,-5,296,137,296,296v0,83,-30,150,-90,200v44,9,96,51,162,119v100,104,153,227,153,373xm823,-529v0,-213,-183,-402,-396,-396r-150,0r0,798r202,0v173,-10,344,-209,344,-402xm606,-1221v0,-96,-77,-168,-173,-168r-156,0r0,332r176,0v84,-7,153,-73,153,-164","w":1044},"C":{"d":"254,-758v0,348,299,648,646,648v165,0,313,-59,445,-176r95,85v-159,145,-339,218,-540,218v-417,0,-775,-358,-775,-775v0,-417,359,-775,775,-775v201,0,381,72,540,217r-95,87v-132,-117,-280,-176,-445,-176v-347,0,-646,300,-646,647","w":1540},"D":{"d":"277,-130v395,14,659,-273,661,-628v0,-179,-63,-331,-189,-458v-113,-113,-270,-170,-472,-170r0,1256xm840,-1307v298,292,299,808,0,1098v-162,157,-384,218,-690,209r0,-1516v294,-9,530,52,690,209","w":1167},"E":{"d":"930,-1516r0,127r-653,0r0,568r653,0r0,126r-653,0r0,568r653,0r0,127r-780,0r0,-1516r780,0","w":1055},"F":{"d":"838,-1516r0,127r-561,0r0,568r561,0r0,126r-561,0r0,695r-127,0r0,-1516r688,0","w":963,"k":{".":417,",":390}},"G":{"d":"254,-758v0,348,299,648,646,648v153,0,286,-45,397,-135r0,-460r127,0r0,509v-149,142,-323,213,-524,213v-417,0,-775,-358,-775,-775v0,-417,359,-775,775,-775v201,0,381,72,540,217r-95,87v-132,-117,-280,-176,-445,-176v-347,0,-646,300,-646,647","w":1565},"H":{"d":"277,-660r0,660r-127,0r0,-1516r127,0r0,730r572,0r0,-730r127,0r0,1516r-127,0r0,-660r-572,0","w":1126},"I":{"d":"297,-1516r0,1516r-127,0r0,-1516r127,0","w":467},"J":{"d":"415,-114v89,2,158,-72,158,-173r0,-1229r127,0r0,1242v5,160,-132,287,-285,287v-157,0,-294,-134,-290,-290r126,-33v-4,119,61,194,164,196","w":855},"K":{"d":"277,-727r0,727r-127,0r0,-1516r127,0r0,583r437,-583r161,0r-458,615r584,901r-155,0r-512,-798","w":1090},"L":{"d":"150,0r0,-1516r127,0r0,1389r570,0r0,127r-697,0","w":937,"k":{"Y":278,"V":278,"T":120}},"M":{"d":"295,-1516r541,935r539,-935r145,0r-19,34r0,1482r-127,0r0,-1262r-538,932r-540,-932r0,1262r-126,0r0,-1482r-20,-34r145,0","w":1670},"N":{"d":"150,-1516r126,0r721,1249r0,-1249r127,0r0,1516r-117,0r-730,-1262r0,1262r-127,0r0,-1516","w":1274},"O":{"d":"902,-1537v418,0,778,359,778,777v0,418,-360,777,-778,777v-418,0,-777,-359,-777,-777v0,-418,359,-777,777,-777xm1551,-760v0,-349,-300,-649,-649,-649v-348,0,-648,301,-648,649v0,349,300,650,648,650v349,0,649,-301,649,-650","w":1805},"P":{"d":"1007,-1014v0,271,-232,511,-502,503r-228,0r0,511r-127,0r0,-1516r410,0v243,27,447,244,447,502xm880,-1014v0,-201,-174,-374,-375,-374r-228,0r0,750r228,0v201,6,375,-174,375,-376","w":1062,"k":{".":516,",":489}},"Q":{"d":"1551,-760v0,-349,-300,-649,-649,-649v-348,0,-648,301,-648,649v0,349,300,650,648,650v349,0,649,-301,649,-650xm1004,75v-93,0,-155,64,-161,159r-127,0v9,-130,59,-192,149,-249r-63,32v-149,-1,-299,-78,-449,-228v-152,-152,-228,-334,-228,-549v0,-418,359,-777,777,-777v418,0,778,359,778,777v0,215,-76,397,-228,549v-110,110,-212,175,-307,195r126,68v69,34,80,47,135,53v70,-8,113,-48,113,-128r128,0v-5,119,-47,174,-125,223v-35,22,-74,31,-114,31v-142,0,-264,-156,-404,-156","w":1805},"R":{"d":"880,-1014v0,-201,-174,-374,-375,-374r-228,0r0,750r228,0v201,6,375,-174,375,-376xm560,-1516v243,27,447,244,447,502v0,139,-49,258,-147,356v-68,68,-136,110,-204,127r345,531r-155,0r-341,-511r-228,0r0,511r-127,0r0,-1516r410,0","w":1062},"S":{"d":"505,-108v179,2,336,-154,333,-334v-3,-196,-159,-316,-313,-374v-182,-68,-348,-169,-354,-385v-5,-177,155,-332,334,-332v152,0,279,99,318,235r-115,45v-30,-90,-101,-154,-203,-156v-112,-2,-211,96,-207,208v5,141,107,209,226,254v213,81,439,238,439,505v0,247,-212,459,-458,459v-234,0,-428,-181,-455,-402r121,-44v15,182,153,318,334,321","w":1013},"T":{"d":"549,-1389r0,1389r-126,0r0,-1389r-373,0r0,-127r872,0r0,127r-373,0","w":972,"k":{"\u0150":141,"y":154,"w":229,"u":229,"s":194,"r":229,"o":169,"i":204,"e":169,"c":169,"a":204,"O":141,"A":129,";":194,":":204,".":179,"-":204,",":152}},"U":{"d":"653,-115v202,0,375,-174,375,-374r0,-1027r127,0r0,1081v-27,244,-243,448,-502,448v-270,0,-503,-233,-503,-502r0,-1027r128,0r0,1027v-6,200,175,374,375,374","w":1305},"V":{"d":"184,-1516r445,1222r444,-1222r136,0r-580,1592r-579,-1592r134,0","w":1259,"k":{"o":110,"e":110,"a":145,"A":290,";":103,":":113,".":309,"-":145,",":313}},"W":{"d":"510,-114v97,0,189,-61,228,-134r0,-1268r127,0r0,1268v38,74,132,134,227,134v136,0,258,-119,258,-256r0,-1146r127,0r0,1154v1,201,-181,375,-385,375v-115,0,-216,-52,-291,-129v-75,76,-176,129,-291,129v-205,0,-386,-175,-385,-375r0,-1154r127,0r0,1146v-4,137,122,256,258,256","w":1602},"X":{"d":"50,0r479,-831r-395,-685r145,0r322,559r324,-559r146,0r-397,685r481,831r-146,0r-408,-705r-406,705r-145,0","w":1205},"Y":{"d":"572,-611r-522,-905r146,0r440,763r440,-763r146,0r-523,905r0,611r-127,0r0,-611","w":1272,"k":{"u":183,"q":290,"p":183,"o":280,"e":249,"a":315,"A":272,";":273,":":284,".":322,"-":315,",":295}},"Z":{"d":"952,-1389r-786,0r0,-127r1005,0r-803,1389r787,0r0,127r-1005,0","w":1321},"[":{"d":"252,218r202,0r0,127r-329,0r0,-1861r329,0r0,127r-202,0r0,1607","w":579},"\\":{"d":"779,0r-142,0r-687,-1516r143,0","w":729},"]":{"d":"327,-1389r-202,0r0,-127r329,0r0,1861r-329,0r0,-127r202,0r0,-1607","w":579},"^":{"d":"531,-1516r309,535r-147,0r-223,-385r-223,385r-147,0r310,-535r121,0","w":939},"_":{"d":"25,-16r964,0r0,126r-964,0r0,-126","w":1014},"`":{"d":"378,-1228r188,216r-133,0r-283,-216r228,0","w":716},"a":{"d":"125,-501v0,-284,244,-528,527,-528v146,0,275,55,388,165r0,-83r127,0r0,947r-127,0r0,-139v-113,110,-242,165,-388,165v-283,0,-527,-244,-527,-527xm652,-107v190,0,360,-148,388,-315r0,-159v-28,-168,-199,-316,-388,-316v-213,0,-396,183,-396,396v0,213,183,394,396,394","w":1317},"b":{"d":"1191,-501v0,283,-243,527,-527,527v-145,0,-274,-55,-387,-164r0,138r-127,0r0,-1516r127,0r0,650v113,-109,242,-163,387,-163v284,0,527,244,527,528xm664,-897v-188,0,-387,143,-387,311r0,169v30,165,199,310,387,310v213,0,396,-181,396,-394v0,-213,-183,-396,-396,-396","w":1316},"c":{"d":"617,-107v129,0,247,-64,318,-158r129,46v-95,146,-256,245,-447,245v-283,0,-527,-244,-527,-528v0,-283,244,-527,527,-527v190,0,353,100,447,243r-129,48v-71,-95,-188,-159,-318,-159v-212,0,-395,183,-395,395v0,212,183,395,395,395"},"d":{"d":"125,-501v0,-284,244,-528,527,-528v146,0,275,55,388,165r0,-652r127,0r0,1516r-127,0r0,-139v-113,110,-242,165,-388,165v-283,0,-527,-244,-527,-527xm652,-107v190,0,360,-148,388,-315r0,-159v-28,-168,-199,-316,-388,-316v-213,0,-396,183,-396,396v0,213,183,394,396,394","w":1317},"e":{"d":"90,-502v0,-283,244,-527,527,-527v164,0,318,79,404,187r-650,650v63,57,145,85,246,85v129,0,247,-64,318,-158r129,46v-95,146,-256,245,-447,245v-283,0,-527,-244,-527,-528xm617,-897v-212,0,-395,183,-395,395v0,90,21,162,63,217r549,-549v-55,-42,-127,-63,-217,-63"},"f":{"d":"464,-1317v-73,-2,-155,72,-155,153r0,217r184,0r0,126r-184,0r0,821r-127,0r0,-821r-92,0r0,-126r92,0r0,-224v2,-141,130,-267,274,-267v37,0,82,9,137,28r-41,117v-37,-16,-67,-24,-88,-24","w":534},"g":{"d":"652,-106v188,0,387,-141,387,-309r0,-171v-30,-166,-199,-311,-387,-311v-213,0,-396,183,-396,396v0,213,183,395,396,395xm326,4v73,93,188,158,318,158v109,0,202,-39,279,-116v70,-70,107,-129,110,-177r-7,2v-103,103,-228,155,-374,155v-283,0,-527,-244,-527,-527v0,-284,244,-527,527,-527v146,0,275,55,388,164r0,-83r127,0r0,724v8,279,-244,517,-523,517v-190,0,-354,-100,-447,-244","w":1321},"h":{"d":"507,-875v-97,0,-195,66,-230,139r0,736r-127,0r0,-1516r127,0r0,586v49,-48,126,-72,230,-72v220,0,384,163,385,375r0,627r-127,0r0,-619v4,-137,-122,-256,-258,-256","w":1042},"i":{"d":"293,-947r0,947r-127,0r0,-947r127,0xm230,-1268v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":460},"j":{"d":"49,85v74,-9,111,-44,111,-105r0,-927r127,0r0,925v0,143,-79,221,-238,234r0,-127xm224,-1268v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":479},"k":{"d":"659,-947r-242,300r366,647r-154,0r-297,-544r-55,69r0,475r-127,0r0,-1332r127,0r0,654r218,-269r164,0","w":833},"l":{"d":"277,-1516r0,1516r-127,0r0,-1516r127,0","w":427},"m":{"d":"440,-874v-84,0,-163,68,-163,148r0,726r-127,0r0,-947r127,0r0,-9v31,-30,85,-45,163,-45v90,0,172,44,226,106v56,-60,136,-106,227,-106v155,0,290,130,290,281r0,720r-127,0r0,-741v-4,-62,-87,-133,-163,-133v-89,0,-164,76,-164,168r0,706r-126,0r-1,-741v-4,-62,-87,-133,-162,-133","w":1333},"n":{"d":"518,-875v-104,0,-208,78,-241,156r0,719r-127,0r0,-947r127,0r0,27v55,-55,135,-82,241,-82v220,0,384,163,385,375r0,627r-126,0r0,-619v4,-137,-123,-256,-259,-256","w":1053},"o":{"d":"90,-501v0,-284,244,-528,527,-528v284,0,527,244,527,528v0,283,-243,527,-527,527v-283,0,-527,-244,-527,-527xm617,-897v-213,0,-396,183,-396,396v0,213,183,394,396,394v213,0,396,-181,396,-394v0,-213,-183,-396,-396,-396","w":1234},"p":{"d":"1191,-501v0,283,-243,527,-527,527v-145,0,-274,-55,-387,-164r0,483r-127,0r0,-1292r127,0r0,81v113,-108,242,-162,387,-162v284,0,527,243,527,527xm664,-897v-188,0,-387,143,-387,311r0,169v30,166,199,311,387,311v213,0,396,-182,396,-395v0,-213,-183,-396,-396,-396","w":1291},"q":{"d":"100,-501v0,-284,244,-527,527,-527v146,0,275,55,388,164r0,-83r127,0r0,1292r-127,0r0,-484v-113,110,-242,165,-388,165v-283,0,-527,-244,-527,-527xm627,-106v189,0,360,-148,388,-316r0,-159v-28,-168,-199,-316,-388,-316v-213,0,-396,183,-396,396v0,213,183,395,396,395","w":1292},"r":{"d":"561,-835v-155,10,-284,189,-284,347r0,488r-127,0r0,-947r127,0r0,116v92,-88,187,-134,284,-139r0,135","w":611},"s":{"d":"405,-105v88,2,170,-75,164,-164v-8,-114,-62,-137,-163,-199v-126,-76,-212,-119,-220,-269v-7,-128,111,-240,238,-240v127,0,237,99,228,232r-112,45v-15,-99,-30,-143,-116,-149v-94,-6,-150,124,-79,191v50,48,228,141,265,184v52,60,84,126,84,205v0,157,-133,291,-289,291v-157,0,-294,-134,-290,-290r126,-33v-4,120,61,193,164,196","w":799},"t":{"d":"274,-947r0,-385r127,0r0,385r184,0r0,126r-184,0r0,821r-127,0r0,-821r-184,0r0,-126r184,0","w":675},"u":{"d":"929,-362v0,213,-166,375,-384,375v-230,0,-395,-157,-395,-375r0,-587r127,0r0,579v-2,141,123,256,267,256v136,0,258,-119,258,-256r0,-579r127,0r0,587","w":1079},"v":{"d":"528,-225r334,-722r145,0r-479,1001r-478,-1001r145,0","w":1057,"k":{".":170,",":174}},"w":{"d":"440,-114v83,0,163,-67,163,-148r0,-685r126,0r0,666v-3,91,76,167,164,167v76,0,163,-71,163,-133r0,-700r127,0r0,679v-2,152,-136,281,-290,281v-80,0,-155,-35,-226,-106v-71,71,-147,106,-227,106v-154,0,-290,-130,-290,-281r0,-679r127,0r0,700v5,61,87,133,163,133","w":1333},"x":{"d":"764,-947r-248,429r299,518r-147,0r-223,-386r-223,386r-147,0r300,-518r-248,-429r146,0r172,297r172,-297r147,0","w":889},"y":{"d":"313,345r-129,0r254,-534r-363,-758r143,0r286,617r286,-617r141,0","w":1007,"k":{".":189,",":194}},"z":{"d":"616,-808r-450,0r0,-127r669,0r-467,808r486,0r0,127r-704,0","w":1004},"{":{"d":"394,15v2,-107,31,-233,2,-340v-27,-100,-130,-189,-231,-204r0,-113v98,-14,205,-105,231,-204v28,-107,0,-234,-2,-341v-4,-192,105,-317,284,-329v13,0,32,2,57,6r0,114v-158,-32,-232,75,-229,227v2,67,19,132,18,196v-4,186,-69,316,-192,388v123,71,189,201,192,387v1,64,-16,128,-18,196v-5,154,74,254,229,229r0,112v-25,4,-44,6,-57,6v-179,-12,-288,-138,-284,-330","w":861},"|":{"d":"277,-1516r0,1861r-127,0r0,-1861r127,0","w":427},"}":{"d":"506,-1187v-3,105,-30,234,-2,341v26,101,130,189,231,204r0,113v-98,14,-206,104,-231,204v-27,107,-1,235,2,340v5,194,-105,317,-284,330v-13,0,-32,-2,-57,-6r0,-112v158,26,229,-76,229,-229v0,-69,-18,-132,-17,-196v3,-186,69,-316,192,-387v-123,-73,-188,-201,-192,-388v-1,-64,17,-127,17,-196v0,-153,-73,-259,-229,-227r0,-114v25,-4,44,-6,57,-6v178,13,289,135,284,329","w":861},"~":{"d":"369,-803v-85,0,-114,71,-117,169r-127,-20v7,-142,72,-235,181,-265v118,-33,186,12,325,86v114,61,192,97,240,97v84,0,116,-68,116,-169r129,20v-9,141,-71,235,-181,265v-119,33,-186,-12,-325,-86v-115,-62,-194,-97,-241,-97","w":1241},"\u00a1":{"d":"230,-1324v-56,0,-105,-47,-105,-104v0,-57,49,-105,105,-105v56,0,105,48,105,105v0,57,-49,104,-105,104xm168,-4r0,-1262r127,0r0,1262r-127,0","w":460},"\u00a2":{"d":"99,-999v0,-199,164,-392,333,-422r0,-152r127,0r0,142v139,-1,268,94,345,208r-122,47v-53,-71,-140,-131,-223,-129r0,612v82,2,170,-58,223,-129r122,45v-77,118,-204,210,-345,210r0,142r-127,0r0,-152v-168,-29,-333,-223,-333,-422xm432,-1292v-98,27,-207,164,-207,293v0,130,109,265,207,292r0,-585","w":1005},"\u00a3":{"d":"528,-1390v-152,-2,-266,120,-255,276v5,67,24,145,69,227v49,89,91,169,110,250r186,0r0,126r-162,0v14,162,-23,283,-105,383v27,-10,79,-15,156,-15v102,0,209,36,305,36v47,0,99,-7,156,-22r24,125v-65,16,-125,24,-180,24v-138,0,-297,-71,-428,-25v-63,22,-129,52,-199,87r-105,-125v86,-76,138,-126,157,-149v76,-91,108,-187,90,-319r-213,0r0,-126r186,0v-11,-39,-28,-87,-59,-141v-74,-131,-120,-226,-120,-362v0,-209,166,-381,386,-379v255,3,461,262,353,525r-120,-40v72,-183,-59,-354,-232,-356","w":1112},"\u00a4":{"d":"319,-1397v111,-98,352,-99,463,0r129,-129r90,90r-129,129v98,111,99,352,0,463r129,129r-90,90r-129,-129v-111,99,-352,98,-463,0r-129,129r-90,-90r129,-129v-99,-111,-98,-352,0,-463r-129,-129r90,-90xm819,-1075v0,-153,-116,-269,-268,-269v-153,0,-269,116,-269,269v0,152,115,268,269,268v152,0,268,-116,268,-268","w":1101},"\u00a5":{"d":"635,-754r441,-762r146,0r-450,777r254,0r0,127r-327,0r0,67r327,0r0,126r-327,0r0,419r-127,0r0,-419r-326,0r0,-126r326,0r0,-67r-326,0r0,-127r253,0r-449,-777r146,0","w":1272},"\u00a6":{"d":"277,-1516r0,825r-127,0r0,-825r127,0xm277,-480r0,825r-127,0r0,-825r127,0","w":427},"\u00a7":{"d":"845,-381r4,-1v34,-34,51,-97,51,-189v0,-196,-158,-318,-313,-375v-132,-49,-241,-116,-307,-209r-4,0v-34,35,-51,98,-51,190v0,196,158,318,313,375v133,49,241,116,307,209xm100,-965v0,-156,52,-264,136,-321v-29,-209,139,-377,331,-377v152,0,279,100,318,235r-114,46v-30,-91,-102,-154,-204,-156v-111,-2,-211,95,-207,207v5,141,108,209,226,254v215,83,436,237,439,506v2,157,-54,262,-135,321v26,211,-139,377,-332,377v-152,0,-279,-100,-318,-236r115,-45v30,91,101,154,203,156v112,2,211,-95,207,-207v-5,-143,-107,-209,-226,-255v-214,-82,-439,-238,-439,-505","w":1125},"\u00a8":{"d":"230,-1268v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104xm506,-1268v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":736},"\u00a9":{"d":"684,-358v76,0,142,-38,182,-97r105,39v-65,101,-158,163,-287,166v-175,4,-326,-152,-326,-327v0,-175,151,-329,326,-326v128,2,224,65,287,166r-105,38v-41,-60,-104,-96,-182,-97v-117,-2,-219,101,-219,219v0,117,102,219,219,219xm674,-1152v308,0,574,267,574,575v0,308,-266,575,-574,575v-309,0,-575,-266,-575,-575v0,-309,266,-575,575,-575xm1139,-577v0,-250,-216,-465,-465,-465v-250,0,-466,215,-466,465v0,250,216,466,466,466v249,0,465,-216,465,-466","w":1353},"\u00ab":{"d":"416,-447r454,-478r0,159r-297,319r297,319r0,160xm100,-447r447,-479r0,160r-297,319r297,319r0,161","w":970},"\u00ae":{"d":"718,-1109v0,-82,-70,-152,-152,-152r-84,0r0,303r84,0v81,2,152,-70,152,-151xm565,-1420v-199,0,-369,171,-369,369v0,169,121,313,270,355v56,16,155,17,202,-1r-105,-164r-81,0r0,102r-95,0r0,-596r206,0v119,14,220,119,220,246v0,97,-84,208,-148,232r92,140v91,-55,175,-187,175,-314v0,-198,-171,-369,-367,-369xm565,-1516v249,0,463,216,463,465v0,191,-111,343,-269,419v-313,151,-659,-102,-659,-419v0,-251,214,-465,465,-465","w":1128},"\u00af":{"d":"125,-1265r587,0r0,127r-587,0r0,-127","w":837},"\u00b0":{"d":"385,-1516v126,0,234,108,234,235v0,126,-108,234,-234,234v-127,0,-235,-108,-235,-234v0,-127,108,-235,235,-235xm510,-1281v0,-67,-59,-126,-125,-126v-67,0,-126,59,-126,126v0,66,59,125,126,125v66,0,125,-59,125,-125","w":769},"\u00b1":{"d":"452,-503r-327,0r0,-127r327,0r0,-327r126,0r0,327r327,0r0,127r-327,0r0,326r-126,0r0,-326xm125,-127r780,0r0,127r-780,0r0,-127","w":1030},"\u00b4":{"d":"566,-1228r-283,216r-133,0r188,-216r228,0","w":716},"\u00b5":{"d":"507,-119v114,0,222,-86,248,-182r0,-646r125,0r0,947r-125,0r0,-71v-84,101,-388,107,-478,8r0,408r-127,0r0,-1292r127,0r0,689v34,74,133,139,230,139","w":1030},"\u00b6":{"d":"51,-1097v0,-258,203,-503,447,-503r549,-1r0,127r-81,0r0,1819r-127,0r0,-1819r-41,0r0,1819r-127,0r0,-939r-118,0v-270,8,-502,-233,-502,-503","w":1096},"\u00b7":{"d":"218,-850v49,0,92,42,92,92v0,50,-43,92,-92,92v-51,0,-93,-41,-93,-92v0,-51,42,-92,93,-92","w":435},"\u2219":{"d":"218,-850v49,0,92,42,92,92v0,50,-43,92,-92,92v-51,0,-93,-41,-93,-92v0,-51,42,-92,93,-92","w":435},"\u00b8":{"d":"334,113v-3,-24,-27,-30,-59,-30v-17,0,-54,2,-109,7r81,-134r108,0r-11,32v74,-1,123,33,123,99v0,143,-194,188,-304,105r69,-62v32,14,89,14,102,-17","w":619},"\u00bb":{"d":"100,32r0,-160r296,-319r-296,-319r0,-159r453,478xm423,33r0,-161r296,-319r-296,-319r0,-160r447,479","w":970},"\u00bf":{"d":"484,-59v-197,0,-333,-136,-333,-334v0,-49,11,-97,34,-144v39,-81,107,-151,193,-225v125,-107,246,-268,164,-479r118,-41v51,139,46,246,-13,371v-51,105,-133,189,-227,273v-81,73,-141,129,-141,246v0,125,86,208,207,208v131,0,207,-84,208,-227r125,5v4,172,-97,283,-223,328v-38,13,-75,19,-112,19xm614,-1324v-56,0,-105,-47,-105,-104v0,-57,49,-105,105,-105v56,0,104,48,104,105v0,57,-48,104,-104,104","w":946},"\u00c0":{"d":"823,-691r-193,-531r-193,531r386,0xm869,-564r-479,0r-205,564r-135,0r580,-1592r579,1592r-135,0xm526,-1879r188,216r-133,0r-283,-216r228,0","w":1259},"\u00c1":{"d":"823,-691r-193,-531r-193,531r386,0xm869,-564r-479,0r-205,564r-135,0r580,-1592r579,1592r-135,0xm961,-1879r-283,216r-133,0r188,-216r228,0","w":1259},"\u00c2":{"d":"823,-691r-193,-531r-193,531r386,0xm869,-564r-479,0r-205,564r-135,0r580,-1592r579,1592r-135,0xm683,-1839r264,260r-157,0r-164,-126r-154,126r-157,0r254,-260r114,0","w":1259},"\u00c3":{"d":"823,-691r-193,-531r-193,531r386,0xm869,-564r-479,0r-205,564r-135,0r580,-1592r579,1592r-135,0xm362,-1627v27,-124,54,-190,156,-190v40,0,79,17,120,47v77,57,125,88,152,-27r107,0v-27,124,-52,180,-156,189v-74,7,-162,-101,-224,-96v-19,2,-35,26,-48,77r-107,0","w":1259},"\u00c4":{"d":"823,-691r-193,-531r-193,531r386,0xm869,-564r-479,0r-205,564r-135,0r580,-1592r579,1592r-135,0xm492,-1835v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104xm768,-1835v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":1259},"\u00c5":{"d":"823,-691r-193,-531r-193,531r386,0xm630,-1587v-37,0,-42,55,-8,61v24,4,37,-12,38,-30v1,-16,-14,-31,-30,-31xm764,-1556v0,50,-45,108,-76,124r521,1432r-135,0r-205,-564r-479,0r-205,564r-135,0r521,-1432v-31,-13,-76,-75,-76,-124v0,-73,62,-135,135,-135v72,0,134,63,134,135","w":1259},"\u00c6":{"d":"1568,-821r0,126r-653,0r0,568r653,0r0,127r-780,0r0,-564r-276,0r-251,564r-136,0r659,-1516r784,0r0,127r-653,0r0,568r653,0xm788,-691r0,-526r-226,526r226,0","w":1693},"\u00c7":{"d":"957,115v-14,-21,-31,-23,-61,-23v-17,0,-54,2,-110,7r51,-83v-179,-5,-340,-81,-485,-226v-151,-151,-227,-333,-227,-548v0,-417,359,-775,775,-775v201,0,381,72,540,217r-95,87v-132,-117,-280,-176,-445,-176v-347,0,-646,300,-646,647v0,348,299,648,646,648v165,0,313,-59,445,-176r95,85v-149,136,-309,208,-482,217r6,-19v73,-1,124,32,124,99v0,143,-194,188,-304,105r68,-61v36,13,98,14,105,-25","w":1540},"\u00c8":{"d":"930,-1516r0,127r-653,0r0,568r653,0r0,126r-653,0r0,568r653,0r0,127r-780,0r0,-1516r780,0xm501,-1851r189,216r-134,0r-283,-216r228,0","w":1055},"\u00c9":{"d":"930,-1516r0,127r-653,0r0,568r653,0r0,126r-653,0r0,568r653,0r0,127r-780,0r0,-1516r780,0xm807,-1851r-283,216r-134,0r189,-216r228,0","w":1055},"\u00ca":{"d":"930,-1516r0,127r-653,0r0,568r653,0r0,126r-653,0r0,568r653,0r0,127r-780,0r0,-1516r780,0xm594,-1835r264,260r-157,0r-163,-126r-155,126r-157,0r254,-260r114,0","w":1055},"\u00cb":{"d":"930,-1516r0,127r-653,0r0,568r653,0r0,126r-653,0r0,568r653,0r0,127r-780,0r0,-1516r780,0xm402,-1844v56,0,105,47,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-57,49,-104,105,-104xm678,-1844v56,0,105,47,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-57,49,-104,105,-104","w":1055},"\u00cc":{"d":"320,-1516r0,1516r-126,0r0,-1516r126,0xm154,-1851r188,216r-133,0r-283,-216r228,0","w":512},"\u00cd":{"d":"319,-1516r0,1516r-127,0r0,-1516r127,0xm586,-1851r-283,216r-133,0r188,-216r228,0","w":512},"\u00ce":{"d":"308,-1516r0,1516r-127,0r0,-1516r127,0xm298,-1839r263,260r-157,0r-163,-126r-154,126r-157,0r254,-260r114,0","w":490},"\u00cf":{"d":"281,-1516r0,1516r-127,0r0,-1516r127,0xm80,-1844v56,0,105,47,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-57,49,-104,105,-104xm356,-1844v56,0,105,47,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-57,49,-104,105,-104","w":436},"\u00d0":{"d":"197,-821r0,-695v294,-9,530,52,690,209v298,292,299,808,0,1098v-162,157,-384,218,-690,209r0,-695r-147,0r0,-126r147,0xm324,-130v395,14,662,-273,662,-628v0,-179,-63,-331,-190,-458v-113,-113,-270,-170,-472,-170r0,565r340,0r0,126r-340,0r0,565","w":1239},"\u00d1":{"d":"150,-1516r126,0r721,1249r0,-1249r127,0r0,1516r-117,0r-730,-1262r0,1262r-127,0r0,-1516xm369,-1627v27,-125,54,-190,157,-190v40,0,79,17,120,47v77,57,125,88,152,-27r106,0v-26,124,-52,180,-155,189v-74,7,-163,-101,-224,-96v-19,1,-35,26,-48,77r-108,0","w":1274},"\u00d2":{"d":"902,-1537v418,0,778,359,778,777v0,418,-360,777,-778,777v-418,0,-777,-359,-777,-777v0,-418,359,-777,777,-777xm1551,-760v0,-349,-300,-649,-649,-649v-348,0,-648,301,-648,649v0,349,300,650,648,650v349,0,649,-301,649,-650xm864,-1851r188,216r-133,0r-283,-216r228,0","w":1805},"\u00d3":{"d":"902,-1537v418,0,778,359,778,777v0,418,-360,777,-778,777v-418,0,-777,-359,-777,-777v0,-418,359,-777,777,-777xm1551,-760v0,-349,-300,-649,-649,-649v-348,0,-648,301,-648,649v0,349,300,650,648,650v349,0,649,-301,649,-650xm1169,-1851r-283,216r-133,0r188,-216r228,0","w":1805},"\u00d4":{"d":"902,-1537v418,0,778,359,778,777v0,418,-360,777,-778,777v-418,0,-777,-359,-777,-777v0,-418,359,-777,777,-777xm1551,-760v0,-349,-300,-649,-649,-649v-348,0,-648,301,-648,649v0,349,300,650,648,650v349,0,649,-301,649,-650xm956,-1885r264,260r-157,0r-163,-126r-155,126r-156,0r253,-260r114,0","w":1805},"\u00d5":{"d":"902,-1537v418,0,778,359,778,777v0,418,-360,777,-778,777v-418,0,-777,-359,-777,-777v0,-418,359,-777,777,-777xm1551,-760v0,-349,-300,-649,-649,-649v-348,0,-648,301,-648,649v0,349,300,650,648,650v349,0,649,-301,649,-650xm635,-1646v28,-124,53,-189,157,-189v40,0,79,16,119,46v77,58,126,89,153,-27r106,0v-26,125,-53,179,-155,190v-75,8,-163,-102,-224,-97v-19,1,-35,27,-48,77r-108,0","w":1805},"\u00d6":{"d":"902,-1537v418,0,778,359,778,777v0,418,-360,777,-778,777v-418,0,-777,-359,-777,-777v0,-418,359,-777,777,-777xm1551,-760v0,-349,-300,-649,-649,-649v-348,0,-648,301,-648,649v0,349,300,650,648,650v349,0,649,-301,649,-650xm764,-1844v56,0,105,47,105,104v0,57,-49,105,-105,105v-56,0,-104,-48,-104,-105v0,-57,48,-104,104,-104xm1040,-1844v56,0,105,47,105,104v0,57,-49,105,-105,105v-56,0,-104,-48,-104,-105v0,-57,48,-104,104,-104","w":1805},"\u00d7":{"d":"531,-477r-231,231r-90,-90r231,-231r-231,-231r90,-90r231,231r231,-231r89,91r-231,230r231,231r-89,90","w":1062},"\u00d8":{"d":"1118,-1374v-441,-152,-864,195,-864,614v0,179,63,332,190,459v46,46,88,80,127,102xm686,-145v442,153,865,-196,865,-615v0,-234,-147,-463,-318,-560xm125,-760v0,-418,359,-777,777,-777v104,0,194,15,271,46r79,-170r116,53r-80,171v53,29,107,71,164,127v152,152,228,335,228,550v0,418,-360,777,-778,777v-104,0,-194,-15,-270,-46r-80,171r-115,-54r80,-170v-53,-29,-108,-72,-164,-129v-152,-151,-228,-334,-228,-549","w":1805},"\u00d9":{"d":"653,-115v202,0,375,-174,375,-374r0,-1027r127,0r0,1081v-27,244,-243,448,-502,448v-270,0,-503,-233,-503,-502r0,-1027r128,0r0,1027v-6,200,175,374,375,374xm613,-1851r189,216r-133,0r-283,-216r227,0","w":1305},"\u00da":{"d":"653,-115v202,0,375,-174,375,-374r0,-1027r127,0r0,1081v-27,244,-243,448,-502,448v-270,0,-503,-233,-503,-502r0,-1027r128,0r0,1027v-6,200,175,374,375,374xm920,-1851r-283,216r-133,0r188,-216r228,0","w":1305},"\u00db":{"d":"653,-115v202,0,375,-174,375,-374r0,-1027r127,0r0,1081v-27,244,-243,448,-502,448v-270,0,-503,-233,-503,-502r0,-1027r128,0r0,1027v-6,200,175,374,375,374xm706,-1839r264,260r-157,0r-163,-126r-155,126r-156,0r253,-260r114,0","w":1305},"\u00dc":{"d":"653,-115v202,0,375,-174,375,-374r0,-1027r127,0r0,1081v-27,244,-243,448,-502,448v-270,0,-503,-233,-503,-502r0,-1027r128,0r0,1027v-6,200,175,374,375,374xm515,-1835v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104xm791,-1835v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":1305},"\u00dd":{"d":"572,-611r-522,-905r146,0r440,763r440,-763r146,0r-523,905r0,611r-127,0r0,-611xm903,-1851r-283,216r-133,0r188,-216r228,0","w":1272},"\u00de":{"d":"1007,-759v0,271,-232,511,-502,503r-228,0r0,256r-127,0r0,-1516r127,0r0,255r283,0v243,27,447,244,447,502xm880,-759v0,-201,-174,-374,-375,-374r-228,0r0,750r228,0v201,6,375,-174,375,-376","w":1097},"\u00e0":{"d":"125,-501v0,-284,244,-528,527,-528v146,0,275,55,388,165r0,-83r127,0r0,947r-127,0r0,-139v-113,110,-242,165,-388,165v-283,0,-527,-244,-527,-527xm652,-107v190,0,360,-148,388,-315r0,-159v-28,-168,-199,-316,-388,-316v-213,0,-396,183,-396,396v0,213,183,394,396,394xm597,-1328r188,216r-133,0r-283,-216r228,0","w":1317},"\u00e1":{"d":"125,-501v0,-284,244,-528,527,-528v146,0,275,55,388,165r0,-83r127,0r0,947r-127,0r0,-139v-113,110,-242,165,-388,165v-283,0,-527,-244,-527,-527xm652,-107v190,0,360,-148,388,-315r0,-159v-28,-168,-199,-316,-388,-316v-213,0,-396,183,-396,396v0,213,183,394,396,394xm923,-1328r-283,216r-133,0r188,-216r228,0","w":1317},"\u00e2":{"d":"125,-501v0,-284,244,-528,527,-528v146,0,275,55,388,165r0,-83r127,0r0,947r-127,0r0,-139v-113,110,-242,165,-388,165v-283,0,-527,-244,-527,-527xm652,-107v190,0,360,-148,388,-315r0,-159v-28,-168,-199,-316,-388,-316v-213,0,-396,183,-396,396v0,213,183,394,396,394xm698,-1362r263,259r-157,0r-163,-125r-154,125r-157,0r254,-259r114,0","w":1317},"\u00e3":{"d":"125,-501v0,-284,244,-528,527,-528v146,0,275,55,388,165r0,-83r127,0r0,947r-127,0r0,-139v-113,110,-242,165,-388,165v-283,0,-527,-244,-527,-527xm652,-107v190,0,360,-148,388,-315r0,-159v-28,-168,-199,-316,-388,-316v-213,0,-396,183,-396,396v0,213,183,394,396,394xm758,-1131v-74,7,-163,-103,-223,-97v-20,1,-36,27,-48,77r-108,0v18,-105,55,-168,112,-183v66,-17,111,1,164,40v77,57,126,90,152,-27r107,0v-27,125,-53,180,-156,190","w":1317},"\u00e4":{"d":"125,-501v0,-284,244,-528,527,-528v146,0,275,55,388,165r0,-83r127,0r0,947r-127,0r0,-139v-113,110,-242,165,-388,165v-283,0,-527,-244,-527,-527xm652,-107v190,0,360,-148,388,-315r0,-159v-28,-168,-199,-316,-388,-316v-213,0,-396,183,-396,396v0,213,183,394,396,394xm508,-1368v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104xm784,-1368v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":1317},"\u00e5":{"d":"652,-107v190,0,360,-148,388,-315r0,-159v-28,-168,-199,-316,-388,-316v-213,0,-396,183,-396,396v0,213,183,394,396,394xm677,-1107v0,-16,-14,-31,-30,-31v-17,0,-33,14,-32,31v0,16,16,31,32,31v15,0,30,-16,30,-31xm647,-1242v113,0,182,152,94,230v99,0,192,45,285,137r14,11r0,-83r127,0r0,947r-127,0r0,-139v3,-5,5,-7,5,-8v-99,103,-240,173,-393,173v-283,0,-527,-244,-527,-527v0,-146,52,-271,155,-374v89,-89,180,-135,271,-137v-27,-27,-40,-58,-40,-95v0,-73,63,-135,136,-135","w":1317},"\u00e6":{"d":"1005,-581v-35,-178,-196,-316,-388,-316v-213,0,-396,183,-396,396v0,213,183,394,396,394v192,0,353,-137,388,-314r0,-160xm1450,-897v-128,0,-248,68,-318,158r0,85r682,0v-41,-123,-206,-243,-364,-243xm90,-501v0,-284,244,-528,527,-528v146,0,275,55,388,165r0,-83r127,0r0,21v75,-69,181,-103,318,-103v277,0,517,219,516,503r-834,-1r0,262v69,90,191,158,318,158v136,0,256,-72,327,-170r129,45v-84,139,-265,258,-456,258v-137,0,-243,-35,-318,-104r0,78r-127,0r0,-139v-113,110,-242,165,-388,165v-283,0,-527,-244,-527,-527","w":2057},"\u00e7":{"d":"674,115v-2,-23,-29,-26,-58,-26v-17,0,-54,3,-109,8r44,-74v-108,-5,-210,-56,-306,-152v-103,-103,-155,-227,-155,-373v0,-283,244,-527,527,-527v190,0,353,100,447,243r-129,48v-71,-95,-188,-159,-318,-159v-212,0,-395,183,-395,395v0,212,183,395,395,395v129,0,247,-64,318,-158r129,46v-86,125,-211,228,-379,214v75,14,123,39,123,99v0,142,-193,186,-305,105r70,-62v32,13,94,16,101,-22"},"\u00e8":{"d":"90,-502v0,-283,244,-527,527,-527v164,0,318,79,404,187r-650,650v63,57,145,85,246,85v129,0,247,-64,318,-158r129,46v-95,146,-256,245,-447,245v-283,0,-527,-244,-527,-528xm617,-897v-212,0,-395,183,-395,395v0,90,21,162,63,217r549,-549v-55,-42,-127,-63,-217,-63xm573,-1328r188,216r-133,0r-283,-216r228,0","w":1243},"\u00e9":{"d":"90,-502v0,-283,244,-527,527,-527v164,0,318,79,404,187r-650,650v63,57,145,85,246,85v129,0,247,-64,318,-158r129,46v-95,146,-256,245,-447,245v-283,0,-527,-244,-527,-528xm617,-897v-212,0,-395,183,-395,395v0,90,21,162,63,217r549,-549v-55,-42,-127,-63,-217,-63xm878,-1328r-283,216r-133,0r188,-216r228,0","w":1243},"\u00ea":{"d":"90,-502v0,-283,244,-527,527,-527v164,0,318,79,404,187r-650,650v63,57,145,85,246,85v129,0,247,-64,318,-158r129,46v-95,146,-256,245,-447,245v-283,0,-527,-244,-527,-528xm617,-897v-212,0,-395,183,-395,395v0,90,21,162,63,217r549,-549v-55,-42,-127,-63,-217,-63xm666,-1362r263,259r-157,0r-163,-125r-154,125r-157,0r254,-259r114,0","w":1243},"\u00eb":{"d":"90,-502v0,-283,244,-527,527,-527v164,0,318,79,404,187r-650,650v63,57,145,85,246,85v129,0,247,-64,318,-158r129,46v-95,146,-256,245,-447,245v-283,0,-527,-244,-527,-528xm617,-897v-212,0,-395,183,-395,395v0,90,21,162,63,217r549,-549v-55,-42,-127,-63,-217,-63xm474,-1368v56,0,104,48,104,104v0,57,-48,105,-104,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104xm750,-1368v56,0,104,48,104,104v0,57,-48,105,-104,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":1243},"\u00ec":{"d":"320,-947r0,947r-126,0r0,-947r126,0xm154,-1328r188,216r-133,0r-283,-216r228,0","w":512},"\u00ed":{"d":"319,-947r0,947r-127,0r0,-947r127,0xm586,-1328r-283,216r-133,0r188,-216r228,0","w":512},"\u00ee":{"d":"308,-947r0,947r-127,0r0,-947r127,0xm298,-1362r263,259r-157,0r-163,-125r-154,125r-157,0r254,-259r114,0","w":490},"\u00ef":{"d":"281,-947r0,947r-127,0r0,-947r127,0xm80,-1368v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104xm356,-1368v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":436},"\u00f1":{"d":"518,-875v-104,0,-208,78,-241,156r0,719r-127,0r0,-947r127,0r0,27v55,-55,135,-82,241,-82v220,0,384,163,385,375r0,627r-126,0r0,-619v4,-137,-123,-256,-259,-256xm638,-1131v-74,7,-162,-103,-223,-97v-20,1,-36,27,-48,77r-108,0v18,-105,55,-168,112,-183v66,-17,111,1,164,40v77,57,126,90,152,-27r107,0v-27,125,-53,180,-156,190","w":1053},"\u00f2":{"d":"90,-501v0,-284,244,-528,527,-528v284,0,527,244,527,528v0,283,-243,527,-527,527v-283,0,-527,-244,-527,-527xm617,-897v-213,0,-396,183,-396,396v0,213,183,394,396,394v213,0,396,-181,396,-394v0,-213,-183,-396,-396,-396xm578,-1328r189,216r-133,0r-283,-216r227,0","w":1234},"\u00f3":{"d":"90,-501v0,-284,244,-528,527,-528v284,0,527,244,527,528v0,283,-243,527,-527,527v-283,0,-527,-244,-527,-527xm617,-897v-213,0,-396,183,-396,396v0,213,183,394,396,394v213,0,396,-181,396,-394v0,-213,-183,-396,-396,-396xm884,-1328r-283,216r-133,0r188,-216r228,0","w":1234},"\u00f4":{"d":"90,-501v0,-284,244,-528,527,-528v284,0,527,244,527,528v0,283,-243,527,-527,527v-283,0,-527,-244,-527,-527xm617,-897v-213,0,-396,183,-396,396v0,213,183,394,396,394v213,0,396,-181,396,-394v0,-213,-183,-396,-396,-396xm671,-1362r264,259r-157,0r-163,-125r-155,125r-157,0r254,-259r114,0","w":1234},"\u00f5":{"d":"90,-501v0,-284,244,-528,527,-528v284,0,527,244,527,528v0,283,-243,527,-527,527v-283,0,-527,-244,-527,-527xm617,-897v-213,0,-396,183,-396,396v0,213,183,394,396,394v213,0,396,-181,396,-394v0,-213,-183,-396,-396,-396xm729,-1131v-75,7,-163,-103,-224,-97v-19,1,-35,27,-47,77r-108,0v18,-105,55,-168,112,-183v66,-17,111,1,164,40v77,57,126,90,152,-27r107,0v-27,125,-53,180,-156,190","w":1234},"\u00f6":{"d":"90,-501v0,-284,244,-528,527,-528v284,0,527,244,527,528v0,283,-243,527,-527,527v-283,0,-527,-244,-527,-527xm617,-897v-213,0,-396,183,-396,396v0,213,183,394,396,394v213,0,396,-181,396,-394v0,-213,-183,-396,-396,-396xm479,-1368v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104xm755,-1368v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":1234},"\u00f7":{"d":"125,-650r780,0r0,127r-780,0r0,-127xm515,-925v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104xm515,-457v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":1030},"\u00f8":{"d":"759,-874v-269,-100,-538,112,-538,372v0,121,62,238,146,307xm475,-131v268,99,538,-111,538,-371v0,-121,-62,-237,-145,-308xm1144,-502v0,283,-243,527,-527,527v-83,0,-152,-14,-208,-41r-113,196r-113,-54r118,-206v-118,-89,-211,-254,-211,-422v0,-284,244,-528,527,-528v83,0,152,14,209,41r113,-196r112,58r-117,202v120,87,210,255,210,423","w":1234},"\u00f9":{"d":"929,-362v0,213,-166,375,-384,375v-230,0,-395,-157,-395,-375r0,-587r127,0r0,579v-2,141,123,256,267,256v136,0,258,-119,258,-256r0,-579r127,0r0,587xm500,-1328r189,216r-133,0r-283,-216r227,0","w":1079},"\u00fa":{"d":"929,-362v0,213,-166,375,-384,375v-230,0,-395,-157,-395,-375r0,-587r127,0r0,579v-2,141,123,256,267,256v136,0,258,-119,258,-256r0,-579r127,0r0,587xm807,-1328r-283,216r-134,0r189,-216r228,0","w":1079},"\u00fb":{"d":"929,-362v0,213,-166,375,-384,375v-230,0,-395,-157,-395,-375r0,-587r127,0r0,579v-2,141,123,256,267,256v136,0,258,-119,258,-256r0,-579r127,0r0,587xm593,-1362r264,259r-157,0r-163,-125r-155,125r-157,0r254,-259r114,0","w":1079},"\u00fc":{"d":"929,-362v0,213,-166,375,-384,375v-230,0,-395,-157,-395,-375r0,-587r127,0r0,579v-2,141,123,256,267,256v136,0,258,-119,258,-256r0,-579r127,0r0,587xm402,-1368v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104xm678,-1368v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":1079},"\u00fd":{"d":"931,-947r-618,1292r-129,0r254,-534r-363,-758r143,0r286,617r286,-617r141,0xm770,-1328r-283,216r-133,0r188,-216r228,0","w":1007},"\u00fe":{"d":"640,-897v-182,0,-348,138,-384,295r0,201v36,157,202,295,384,295v212,0,395,-183,395,-395v0,-212,-183,-396,-395,-396xm1167,-501v0,283,-244,527,-527,527v-145,0,-273,-53,-384,-160r0,463r-127,0r0,-1661r127,0r0,463v111,-106,239,-159,384,-159v283,0,527,243,527,527","w":1292},"\u00ff":{"d":"931,-947r-618,1292r-129,0r254,-534r-363,-758r143,0r286,617r286,-617r141,0xm366,-1368v56,0,104,48,104,104v0,57,-48,105,-104,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104xm642,-1368v56,0,104,48,104,104v0,57,-48,105,-104,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":1007},"\u0131":{"d":"297,-947r0,947r-127,0r0,-947r127,0","w":467},"\u00aa":{"d":"173,-912r529,0r0,72r-602,0r0,-622r73,0r0,550xm232,-1245v0,-146,125,-271,271,-271v75,0,131,21,170,62r0,-22r95,0r0,491r-95,0r0,-28v-39,27,-95,40,-170,40v-146,0,-271,-126,-271,-272xm503,-1071v82,0,170,-65,170,-136r0,-74v-12,-73,-88,-138,-170,-138v-94,0,-175,80,-175,174v0,95,80,174,175,174","w":868},"\u00ba":{"d":"328,-1245v0,103,76,174,189,174v113,0,187,-71,187,-174v0,-102,-76,-174,-187,-174v-113,0,-189,72,-189,174xm801,-1245v-2,154,-128,272,-298,272v-146,0,-273,-126,-271,-272v2,-154,128,-271,298,-271v146,0,273,125,271,271xm173,-912r529,0r0,72r-602,0r0,-622r73,0r0,550","w":901},"\u00f0":{"d":"617,-897v-213,0,-396,183,-396,396v0,213,183,394,396,394v213,0,396,-181,396,-394v0,-213,-183,-396,-396,-396xm90,-501v0,-288,246,-536,533,-531r-6,-6r-166,0r0,-127r52,0r-96,-105r177,0r106,105r163,0r0,127r-35,0r106,106v126,89,220,256,220,431v0,283,-243,527,-527,527v-283,0,-527,-244,-527,-527","w":1234},"\u0100":{"d":"823,-691r-193,-531r-193,531r386,0xm869,-564r-479,0r-205,564r-135,0r580,-1592r579,1592r-135,0xm336,-1791r587,0r0,109r-587,0r0,-109","w":1259},"\u0101":{"d":"125,-501v0,-284,244,-528,527,-528v146,0,275,55,388,165r0,-83r127,0r0,947r-127,0r0,-139v-113,110,-242,165,-388,165v-283,0,-527,-244,-527,-527xm652,-107v190,0,360,-148,388,-315r0,-159v-28,-168,-199,-316,-388,-316v-213,0,-396,183,-396,396v0,213,183,394,396,394xm353,-1273r587,0r0,109r-587,0r0,-109","w":1317},"\u0102":{"d":"823,-691r-193,-531r-193,531r386,0xm869,-564r-479,0r-205,564r-135,0r580,-1592r579,1592r-135,0xm869,-1893v-10,139,-105,238,-240,239v-132,2,-237,-108,-240,-239r110,0v9,77,57,128,130,128v72,0,122,-51,129,-128r111,0","w":1259},"\u0103":{"d":"125,-501v0,-284,244,-528,527,-528v146,0,275,55,388,165r0,-83r127,0r0,947r-127,0r0,-139v-113,110,-242,165,-388,165v-283,0,-527,-244,-527,-527xm652,-107v190,0,360,-148,388,-315r0,-159v-28,-168,-199,-316,-388,-316v-213,0,-396,183,-396,396v0,213,183,394,396,394xm886,-1375v-10,139,-105,238,-240,239v-132,2,-237,-108,-240,-239r110,0v9,77,57,128,130,128v72,0,122,-51,129,-128r111,0","w":1317},"\u0106":{"d":"254,-758v0,348,299,648,646,648v165,0,313,-59,445,-176r95,85v-159,145,-339,218,-540,218v-417,0,-775,-358,-775,-775v0,-417,359,-775,775,-775v201,0,381,72,540,217r-95,87v-132,-117,-280,-176,-445,-176v-347,0,-646,300,-646,647xm1060,-1846r-283,216r-133,0r188,-216r228,0","w":1540},"\u0107":{"d":"617,-107v129,0,247,-64,318,-158r129,46v-95,146,-256,245,-447,245v-283,0,-527,-244,-527,-528v0,-283,244,-527,527,-527v190,0,353,100,447,243r-129,48v-71,-95,-188,-159,-318,-159v-212,0,-395,183,-395,395v0,212,183,395,395,395xm855,-1328r-283,216r-133,0r188,-216r228,0"},"\u0108":{"d":"254,-758v0,348,299,648,646,648v165,0,313,-59,445,-176r95,85v-159,145,-339,218,-540,218v-417,0,-775,-358,-775,-775v0,-417,359,-775,775,-775v201,0,381,72,540,217r-95,87v-132,-117,-280,-176,-445,-176v-347,0,-646,300,-646,647xm935,-1880r263,259r-157,0r-163,-125r-154,125r-157,0r254,-259r114,0","w":1540},"\u0109":{"d":"617,-107v129,0,247,-64,318,-158r129,46v-95,146,-256,245,-447,245v-283,0,-527,-244,-527,-528v0,-283,244,-527,527,-527v190,0,353,100,447,243r-129,48v-71,-95,-188,-159,-318,-159v-212,0,-395,183,-395,395v0,212,183,395,395,395xm660,-1362r263,259r-157,0r-163,-125r-154,125r-157,0r254,-259r114,0"},"\u010a":{"d":"254,-758v0,348,299,648,646,648v165,0,313,-59,445,-176r95,85v-159,145,-339,218,-540,218v-417,0,-775,-358,-775,-775v0,-417,359,-775,775,-775v201,0,381,72,540,217r-95,87v-132,-117,-280,-176,-445,-176v-347,0,-646,300,-646,647xm883,-1811v49,0,92,42,92,92v0,50,-43,92,-92,92v-51,0,-93,-41,-93,-92v0,-51,42,-92,93,-92","w":1540},"\u010b":{"d":"617,-107v129,0,247,-64,318,-158r129,46v-95,146,-256,245,-447,245v-283,0,-527,-244,-527,-528v0,-283,244,-527,527,-527v190,0,353,100,447,243r-129,48v-71,-95,-188,-159,-318,-159v-212,0,-395,183,-395,395v0,212,183,395,395,395xm578,-1343v49,0,92,42,92,92v0,50,-43,92,-92,92v-51,0,-93,-41,-93,-92v0,-51,42,-92,93,-92"},"\u010c":{"d":"254,-758v0,348,299,648,646,648v165,0,313,-59,445,-176r95,85v-159,145,-339,218,-540,218v-417,0,-775,-358,-775,-775v0,-417,359,-775,775,-775v201,0,381,72,540,217r-95,87v-132,-117,-280,-176,-445,-176v-347,0,-646,300,-646,647xm821,-1621r-254,-259r157,0r154,125r163,-125r157,0r-263,259r-114,0","w":1540},"\u010d":{"d":"617,-107v129,0,247,-64,318,-158r129,46v-95,146,-256,245,-447,245v-283,0,-527,-244,-527,-528v0,-283,244,-527,527,-527v190,0,353,100,447,243r-129,48v-71,-95,-188,-159,-318,-159v-212,0,-395,183,-395,395v0,212,183,395,395,395xm556,-1103r-254,-259r157,0r154,125r163,-125r157,0r-263,259r-114,0"},"\u0110":{"d":"197,-821r0,-695v294,-9,530,52,690,209v298,292,299,808,0,1098v-162,157,-384,218,-690,209r0,-695r-147,0r0,-126r147,0xm324,-130v395,14,662,-273,662,-628v0,-179,-63,-331,-190,-458v-113,-113,-270,-170,-472,-170r0,565r340,0r0,126r-340,0r0,565","w":1239},"\u0111":{"d":"652,-107v190,0,360,-148,388,-315r0,-159v-28,-168,-199,-316,-388,-316v-213,0,-396,183,-396,396v0,213,183,394,396,394xm125,-501v0,-284,244,-528,527,-528v146,0,271,51,374,154r14,11r0,-316r-267,0r0,-127r267,0r0,-209r127,0r0,209r91,0r0,127r-91,0r0,1180r-127,0r0,-139r-14,10v-103,103,-228,155,-374,155v-283,0,-527,-244,-527,-527","w":1309},"\u0112":{"d":"930,-1516r0,127r-653,0r0,568r653,0r0,126r-653,0r0,568r653,0r0,127r-780,0r0,-1516r780,0xm247,-1691r587,0r0,109r-587,0r0,-109","w":1055},"\u0113":{"d":"90,-502v0,-283,244,-527,527,-527v164,0,318,79,404,187r-650,650v63,57,145,85,246,85v129,0,247,-64,318,-158r129,46v-95,146,-256,245,-447,245v-283,0,-527,-244,-527,-528xm617,-897v-212,0,-395,183,-395,395v0,90,21,162,63,217r549,-549v-55,-42,-127,-63,-217,-63xm284,-1273r587,0r0,109r-587,0r0,-109"},"\u0114":{"d":"930,-1516r0,127r-653,0r0,568r653,0r0,126r-653,0r0,568r653,0r0,127r-780,0r0,-1516r780,0xm780,-1813v-10,139,-105,238,-240,239v-132,2,-237,-108,-240,-239r110,0v9,77,57,128,130,128v72,0,122,-51,129,-128r111,0","w":1055},"\u0115":{"d":"90,-502v0,-283,244,-527,527,-527v164,0,318,79,404,187r-650,650v63,57,145,85,246,85v129,0,247,-64,318,-158r129,46v-95,146,-256,245,-447,245v-283,0,-527,-244,-527,-528xm617,-897v-212,0,-395,183,-395,395v0,90,21,162,63,217r549,-549v-55,-42,-127,-63,-217,-63xm817,-1375v-10,139,-105,238,-240,239v-132,2,-237,-108,-240,-239r110,0v9,77,57,128,130,128v72,0,122,-51,129,-128r111,0"},"\u0116":{"d":"930,-1516r0,127r-653,0r0,568r653,0r0,126r-653,0r0,568r653,0r0,127r-780,0r0,-1516r780,0xm541,-1791v49,0,92,42,92,92v0,50,-43,92,-92,92v-51,0,-93,-41,-93,-92v0,-51,42,-92,93,-92","w":1055},"\u0117":{"d":"90,-502v0,-283,244,-527,527,-527v164,0,318,79,404,187r-650,650v63,57,145,85,246,85v129,0,247,-64,318,-158r129,46v-95,146,-256,245,-447,245v-283,0,-527,-244,-527,-528xm617,-897v-212,0,-395,183,-395,395v0,90,21,162,63,217r549,-549v-55,-42,-127,-63,-217,-63xm578,-1343v49,0,92,42,92,92v0,50,-43,92,-92,92v-51,0,-93,-41,-93,-92v0,-51,42,-92,93,-92"},"\u011a":{"d":"930,-1516r0,127r-653,0r0,568r653,0r0,126r-653,0r0,568r653,0r0,127r-780,0r0,-1516r780,0xm478,-1611r-254,-259r157,0r154,125r163,-125r157,0r-263,259r-114,0","w":1055},"\u011b":{"d":"90,-502v0,-283,244,-527,527,-527v164,0,318,79,404,187r-650,650v63,57,145,85,246,85v129,0,247,-64,318,-158r129,46v-95,146,-256,245,-447,245v-283,0,-527,-244,-527,-528xm617,-897v-212,0,-395,183,-395,395v0,90,21,162,63,217r549,-549v-55,-42,-127,-63,-217,-63xm515,-1103r-254,-259r157,0r154,125r163,-125r157,0r-263,259r-114,0"},"\u011c":{"d":"254,-758v0,348,299,648,646,648v153,0,286,-45,397,-135r0,-460r127,0r0,509v-149,142,-323,213,-524,213v-417,0,-775,-358,-775,-775v0,-417,359,-775,775,-775v201,0,381,72,540,217r-95,87v-132,-117,-280,-176,-445,-176v-347,0,-646,300,-646,647xm935,-1880r263,259r-157,0r-163,-125r-154,125r-157,0r254,-259r114,0","w":1565},"\u011d":{"d":"652,-106v188,0,387,-141,387,-309r0,-171v-30,-166,-199,-311,-387,-311v-213,0,-396,183,-396,396v0,213,183,395,396,395xm326,4v73,93,188,158,318,158v109,0,202,-39,279,-116v70,-70,107,-129,110,-177r-7,2v-103,103,-228,155,-374,155v-283,0,-527,-244,-527,-527v0,-284,244,-527,527,-527v146,0,275,55,388,164r0,-83r127,0r0,724v8,279,-244,517,-523,517v-190,0,-354,-100,-447,-244xm698,-1362r263,259r-157,0r-163,-125r-154,125r-157,0r254,-259r114,0","w":1321},"\u011e":{"d":"254,-758v0,348,299,648,646,648v153,0,286,-45,397,-135r0,-460r127,0r0,509v-149,142,-323,213,-524,213v-417,0,-775,-358,-775,-775v0,-417,359,-775,775,-775v201,0,381,72,540,217r-95,87v-132,-117,-280,-176,-445,-176v-347,0,-646,300,-646,647xm1123,-1893v-10,139,-105,238,-240,239v-132,2,-237,-108,-240,-239r110,0v9,77,57,128,130,128v72,0,122,-51,129,-128r111,0","w":1565},"\u011f":{"d":"652,-106v188,0,387,-141,387,-309r0,-171v-30,-166,-199,-311,-387,-311v-213,0,-396,183,-396,396v0,213,183,395,396,395xm326,4v73,93,188,158,318,158v109,0,202,-39,279,-116v70,-70,107,-129,110,-177r-7,2v-103,103,-228,155,-374,155v-283,0,-527,-244,-527,-527v0,-284,244,-527,527,-527v146,0,275,55,388,164r0,-83r127,0r0,724v8,279,-244,517,-523,517v-190,0,-354,-100,-447,-244xm876,-1375v-10,139,-105,238,-240,239v-132,2,-237,-108,-240,-239r110,0v9,77,57,128,130,128v72,0,122,-51,129,-128r111,0","w":1321},"\u0120":{"d":"254,-758v0,348,299,648,646,648v153,0,286,-45,397,-135r0,-460r127,0r0,509v-149,142,-323,213,-524,213v-417,0,-775,-358,-775,-775v0,-417,359,-775,775,-775v201,0,381,72,540,217r-95,87v-132,-117,-280,-176,-445,-176v-347,0,-646,300,-646,647xm883,-1851v49,0,92,42,92,92v0,50,-43,92,-92,92v-51,0,-93,-41,-93,-92v0,-51,42,-92,93,-92","w":1565},"\u0121":{"d":"652,-106v188,0,387,-141,387,-309r0,-171v-30,-166,-199,-311,-387,-311v-213,0,-396,183,-396,396v0,213,183,395,396,395xm326,4v73,93,188,158,318,158v109,0,202,-39,279,-116v70,-70,107,-129,110,-177r-7,2v-103,103,-228,155,-374,155v-283,0,-527,-244,-527,-527v0,-284,244,-527,527,-527v146,0,275,55,388,164r0,-83r127,0r0,724v8,279,-244,517,-523,517v-190,0,-354,-100,-447,-244xm647,-1343v49,0,92,42,92,92v0,50,-43,92,-92,92v-51,0,-93,-41,-93,-92v0,-51,42,-92,93,-92","w":1321},"\u012c":{"d":"297,-1516r0,1516r-127,0r0,-1516r127,0xm474,-1893v-10,139,-105,238,-240,239v-132,2,-237,-108,-240,-239r110,0v9,77,57,128,130,128v72,0,122,-51,129,-128r111,0","w":467},"\u012d":{"d":"297,-947r0,947r-127,0r0,-947r127,0xm474,-1375v-10,139,-105,238,-240,239v-132,2,-237,-108,-240,-239r110,0v9,77,57,128,130,128v72,0,122,-51,129,-128r111,0","w":467},"\u013f":{"d":"150,0r0,-1516r127,0r0,1389r570,0r0,127r-697,0xm700,-850v49,0,92,42,92,92v0,50,-43,92,-92,92v-51,0,-93,-41,-93,-92v0,-51,42,-92,93,-92","w":937},"\u0140":{"d":"277,-1516r0,1516r-127,0r0,-1516r127,0xm470,-850v49,0,92,42,92,92v0,50,-43,92,-92,92v-51,0,-93,-41,-93,-92v0,-51,42,-92,93,-92","w":612},"\u0143":{"d":"150,-1516r126,0r721,1249r0,-1249r127,0r0,1516r-117,0r-730,-1262r0,1262r-127,0r0,-1516xm914,-1846r-283,216r-133,0r188,-216r228,0","w":1274},"\u0144":{"d":"518,-875v-104,0,-208,78,-241,156r0,719r-127,0r0,-947r127,0r0,27v55,-55,135,-82,241,-82v220,0,384,163,385,375r0,627r-126,0r0,-619v4,-137,-123,-256,-259,-256xm804,-1328r-283,216r-133,0r188,-216r228,0","w":1053},"\u0147":{"d":"150,-1516r126,0r721,1249r0,-1249r127,0r0,1516r-117,0r-730,-1262r0,1262r-127,0r0,-1516xm575,-1621r-254,-259r157,0r154,125r163,-125r157,0r-263,259r-114,0","w":1274},"\u0148":{"d":"518,-875v-104,0,-208,78,-241,156r0,719r-127,0r0,-947r127,0r0,27v55,-55,135,-82,241,-82v220,0,384,163,385,375r0,627r-126,0r0,-619v4,-137,-123,-256,-259,-256xm465,-1103r-254,-259r157,0r154,125r163,-125r157,0r-263,259r-114,0","w":1053},"\u014c":{"d":"902,-1537v418,0,778,359,778,777v0,418,-360,777,-778,777v-418,0,-777,-359,-777,-777v0,-418,359,-777,777,-777xm1551,-760v0,-349,-300,-649,-649,-649v-348,0,-648,301,-648,649v0,349,300,650,648,650v349,0,649,-301,649,-650xm609,-1791r587,0r0,109r-587,0r0,-109","w":1805},"\u014d":{"d":"90,-501v0,-284,244,-528,527,-528v284,0,527,244,527,528v0,283,-243,527,-527,527v-283,0,-527,-244,-527,-527xm617,-897v-213,0,-396,183,-396,396v0,213,183,394,396,394v213,0,396,-181,396,-394v0,-213,-183,-396,-396,-396xm324,-1273r587,0r0,109r-587,0r0,-109","w":1234},"\u014e":{"d":"902,-1537v418,0,778,359,778,777v0,418,-360,777,-778,777v-418,0,-777,-359,-777,-777v0,-418,359,-777,777,-777xm1551,-760v0,-349,-300,-649,-649,-649v-348,0,-648,301,-648,649v0,349,300,650,648,650v349,0,649,-301,649,-650xm1142,-1893v-10,139,-105,238,-240,239v-132,2,-237,-108,-240,-239r110,0v9,77,57,128,130,128v72,0,122,-51,129,-128r111,0","w":1805},"\u014f":{"d":"90,-501v0,-284,244,-528,527,-528v284,0,527,244,527,528v0,283,-243,527,-527,527v-283,0,-527,-244,-527,-527xm617,-897v-213,0,-396,183,-396,396v0,213,183,394,396,394v213,0,396,-181,396,-394v0,-213,-183,-396,-396,-396xm857,-1375v-10,139,-105,238,-240,239v-132,2,-237,-108,-240,-239r110,0v9,77,57,128,130,128v72,0,122,-51,129,-128r111,0","w":1234},"\u0150":{"d":"902,-1537v418,0,778,359,778,777v0,418,-360,777,-778,777v-418,0,-777,-359,-777,-777v0,-418,359,-777,777,-777xm1551,-760v0,-349,-300,-649,-649,-649v-348,0,-648,301,-648,649v0,349,300,650,648,650v349,0,649,-301,649,-650xm1090,-1829r-283,216r-133,0r188,-216r228,0xm1331,-1829r-283,216r-133,0r188,-216r228,0","w":1805},"\u0151":{"d":"90,-501v0,-284,244,-528,527,-528v284,0,527,244,527,528v0,283,-243,527,-527,527v-283,0,-527,-244,-527,-527xm617,-897v-213,0,-396,183,-396,396v0,213,183,394,396,394v213,0,396,-181,396,-394v0,-213,-183,-396,-396,-396xm805,-1311r-283,216r-133,0r188,-216r228,0xm1046,-1311r-283,216r-133,0r188,-216r228,0","w":1234},"\u0152":{"d":"90,-760v0,-418,359,-777,777,-777v86,0,165,21,241,21r940,0r0,127r-716,0v9,5,38,32,85,79v142,143,217,306,226,489r405,0r0,126r-405,0v-9,182,-85,343,-226,484v-49,50,-79,78,-90,84r721,0r0,127r-941,0v-74,11,-154,17,-240,17v-418,0,-777,-359,-777,-777xm219,-760v0,424,432,784,879,610v242,-94,431,-324,417,-648v-11,-260,-196,-489,-417,-571v-448,-166,-879,184,-879,609","w":2173},"\u0153":{"d":"617,-897v-213,0,-396,183,-396,396v0,213,183,394,396,394v213,0,396,-181,396,-394v0,-213,-183,-396,-396,-396xm1774,-654v-42,-123,-206,-243,-365,-243v-128,0,-251,67,-318,160v14,27,25,55,32,83r651,0xm617,-1029v156,0,299,67,396,178v99,-108,240,-178,396,-178v277,0,517,219,517,503r-782,0v2,104,-15,187,-54,260v67,89,192,159,319,159v136,0,256,-72,328,-170r128,45v-83,140,-265,258,-456,258v-156,0,-297,-70,-396,-179v-94,108,-243,179,-396,179v-283,0,-527,-244,-527,-527v0,-284,244,-528,527,-528","w":2016},"\u0178":{"d":"572,-611r-522,-905r146,0r440,763r440,-763r146,0r-523,905r0,611r-127,0r0,-611xm498,-1886v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104xm774,-1886v56,0,105,48,105,104v0,57,-49,105,-105,105v-56,0,-105,-48,-105,-105v0,-56,49,-104,105,-104","w":1272},"\u1ef2":{"d":"572,-611r-522,-905r146,0r440,763r440,-763r146,0r-523,905r0,611r-127,0r0,-611xm587,-1846r188,216r-133,0r-283,-216r228,0","w":1272},"\u1ef3":{"d":"313,345r-129,0r254,-534r-363,-758r143,0r286,617r286,-617r141,0xm454,-1228r188,216r-133,0r-283,-216r228,0","w":1007}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Caviar Dreams © Lauren Thompson (Nymphont) 2010. All rights reserved.
 * 
 * Description:
 * A geometric sans serif wirh a dastardly angled lowercase letter e, and those w's
 * with those lovely letter lumps. Extreme round overshoot may be disturbing to
 * some viewers. Viewer discretin is advised.
 * 
 * Designer:
 * Lauren Thompson
 */
Cufon.registerFont({"w":1291,"face":{"font-family":"Caviar Dreams Italic","font-weight":300,"font-style":"italic","font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 2 2 2 2 4 9 5 4","ascent":"1638","descent":"-410","x-height":"27","bbox":"-50 -1892 2481 375","underline-thickness":"150","underline-position":"-142","slope":"-11","unicode-range":"U+0020-U+1EF3"},"glyphs":{" ":{"w":708},"\u00a0":{"w":708},"!":{"d":"178,-139v58,-51,155,-20,141,63v-12,66,-114,126,-165,64v-34,-40,-9,-98,24,-127xm569,-1600r-258,1324r-90,0r258,-1324r90,0","w":430},"\"":{"d":"319,-997r117,-600r90,0r-117,600r-90,0xm554,-997r117,-600r90,0r-117,600r-90,0","w":575},"#":{"d":"955,-985r230,0r197,-445r90,0r-197,445r445,0r-41,90r-445,0r-102,230r445,0r-40,90r-445,0r-197,445r-90,0r197,-445r-230,0r-197,445r-90,0r197,-445r-445,0r40,-90r445,0r102,-230r-445,0r41,-90r445,0r197,-445r90,0xm1144,-895r-230,0r-102,230r230,0","w":1653},"$":{"d":"722,-856r-129,667v156,-23,305,-168,332,-319v32,-177,-83,-288,-203,-348xm740,-1413v-144,21,-279,207,-176,349v21,29,53,54,93,79xm639,-891v-120,-57,-223,-152,-194,-319v24,-137,165,-274,312,-289r32,-163r90,0r-32,165v94,15,172,89,185,189r-84,31v-10,-67,-58,-118,-118,-133r-90,464v161,67,311,212,270,438v-36,195,-228,382,-434,406r-28,140r-90,0r27,-139v-170,-8,-309,-159,-299,-344r88,-30v-16,153,91,277,228,288","w":1011},"%":{"d":"1362,-1314r-1173,1311r-64,-51r1173,-1311xm547,-1215v123,0,210,103,186,231v-22,117,-144,231,-276,231v-122,0,-210,-103,-186,-231v22,-117,144,-231,276,-231xm623,-1086v-48,-61,-143,-49,-203,0v-55,46,-91,138,-40,204v47,61,144,50,204,0v55,-46,91,-137,39,-204xm1030,-615v122,0,211,103,186,231v-22,117,-144,231,-276,231v-122,0,-211,-103,-186,-231v22,-117,144,-231,276,-231xm1106,-486v-48,-61,-144,-50,-203,0v-55,46,-92,138,-40,204v47,61,143,50,203,0v55,-46,92,-138,40,-204","w":1221},"&":{"d":"1073,-1369v-17,-92,-99,-162,-204,-162v-201,0,-391,241,-261,427v66,94,115,118,257,122r-17,84r-72,2v-271,44,-473,202,-525,440v-46,212,107,386,311,386v173,0,351,-130,417,-261v-61,-18,-122,-135,-180,-169v-70,-41,-155,22,-152,102v2,57,57,69,121,59r-25,82v-114,30,-205,-45,-182,-166v22,-116,164,-221,294,-152v35,19,121,137,159,157v95,50,199,-25,216,-112v18,-95,-62,-151,-159,-121r16,-89v140,-34,262,61,230,210v-25,115,-121,207,-253,215v-79,167,-301,334,-519,334v-251,0,-435,-213,-382,-475v47,-231,243,-424,477,-493v-93,-48,-195,-159,-158,-333v35,-168,211,-337,404,-337v138,0,255,91,274,218","w":1304},"'":{"d":"319,-997r117,-600r90,0r-117,600r-90,0","w":340},"(":{"d":"919,-1628v-304,139,-508,432,-585,828v-80,412,24,699,263,832r-17,85v-104,-39,-189,-113,-255,-223v-103,-170,-126,-401,-69,-694v57,-293,169,-524,338,-694v109,-110,224,-184,343,-223","w":703},")":{"d":"433,-1717v291,118,419,465,325,917v-60,293,-170,524,-339,694v-109,110,-223,184,-342,223r17,-85v304,-143,508,-433,586,-832v80,-410,-23,-700,-264,-828","w":703},"*":{"d":"445,-1384r174,-122r52,74r-193,135r193,135r-52,74r-174,-122r0,213r-90,0r0,-214r-175,123r-52,-74r193,-135r-193,-135r52,-74r175,123r0,-214r90,0r0,213","w":800},"+":{"d":"480,-547r-355,0r0,-90r355,0r0,-355r90,0r0,355r355,0r0,90r-355,0r0,355r-90,0r0,-355","w":1050},",":{"d":"311,-166r-260,385r-84,0r178,-385r166,0","w":379},"-":{"d":"248,-637r590,0r-17,90r-590,0","w":840,"k":{"\u0153":-38,"\u0152":-75,"\u00f8":-38,"\u00d8":-75,"\u00d0":-57,"\u00c5":-38,"o":-38,"f":-38,"Y":131,"X":73,"W":55,"V":83,"T":149,"R":-57,"P":-57,"O":-75,"L":-57,"K":-57,"J":-114,"H":-57,"G":-75,"F":-57,"D":-57,"C":-38,"B":-57,"A":-38}},"\u00ad":{"d":"248,-637r590,0r-17,90r-590,0","w":840},".":{"d":"154,-139v58,-51,154,-20,140,63v-12,66,-115,126,-166,64v-34,-40,-7,-98,26,-127","w":380},"\/":{"d":"985,-1600r103,0r-1036,1600r-102,0","w":727},"0":{"d":"1283,-1051v55,-250,-127,-453,-366,-453v-258,0,-498,225,-542,453r-103,530v-53,250,126,453,366,453v258,0,498,-225,542,-453xm1275,-521v-43,278,-343,549,-656,549v-290,0,-501,-246,-442,-549r103,-530v43,-278,344,-549,656,-549v291,0,501,246,442,549","w":1250},"1":{"d":"1028,-1600r-311,1600r-90,0r280,-1442r-95,0r154,-158r62,0","w":1250},"2":{"d":"388,-1219v63,-202,304,-403,549,-403v253,0,439,215,384,478v-28,131,-93,246,-203,344v-167,150,-391,280,-586,410v-121,80,-207,179,-257,300r841,0r-17,90r-943,0v71,-207,170,-351,296,-434v211,-140,426,-264,612,-433v88,-80,141,-172,163,-277v44,-212,-105,-383,-308,-383v-202,0,-402,168,-446,341","w":1250},"3":{"d":"323,-414v-20,192,127,341,313,341v218,0,428,-189,458,-383v39,-254,-114,-396,-351,-437r-75,-2r18,-90v156,-5,203,-36,304,-121v94,-78,154,-236,66,-350v-38,-49,-92,-72,-160,-72v-109,0,-222,80,-265,163r-79,-34v57,-116,214,-223,362,-223v181,0,314,154,276,340v-19,94,-58,170,-119,224v-61,54,-116,90,-163,108v190,61,323,252,280,494v-43,241,-297,478,-570,478v-226,0,-403,-174,-393,-403","w":1250},"4":{"d":"1144,-1600r90,0r-203,1042r153,0r-17,90r-153,0r-91,468r-90,0r91,-468r-660,0xm1106,-1406r-670,848r505,0","w":1250},"5":{"d":"236,-281v73,179,365,252,578,141v165,-86,297,-221,335,-422v43,-230,-77,-398,-248,-457v-151,-52,-293,-28,-464,21r-60,-63r283,-507r6,-32r500,0r-17,90r-425,0r-227,407v125,-43,315,-58,448,-6v139,55,234,146,281,284v52,155,20,312,-42,433v-76,149,-188,263,-341,336v-146,70,-283,90,-441,40v-113,-36,-194,-101,-244,-194","w":1250},"6":{"d":"818,-975v-258,0,-501,226,-543,454v-46,251,126,453,366,453v258,0,500,-225,542,-453v47,-251,-125,-454,-365,-454xm623,28v-284,0,-501,-239,-446,-532r-6,0v53,-235,147,-428,283,-577v141,-156,328,-339,523,-519r124,0r-52,50v-213,196,-385,367,-516,513v-28,31,-54,63,-78,97v219,-174,571,-185,739,30v85,108,110,236,84,389v-47,277,-342,549,-655,549","w":1250},"7":{"d":"1030,-1046v-213,196,-385,367,-516,513v-131,146,-220,324,-267,533r-94,0v53,-235,147,-428,283,-577v136,-149,299,-312,490,-488v191,-176,312,-324,362,-445r-841,0r17,-90r943,0v-38,173,-164,358,-377,554","w":1250},"8":{"d":"289,-456v-47,228,122,410,351,381v246,25,462,-174,497,-381v42,-249,-110,-393,-339,-435v-262,46,-461,201,-509,435xm621,20v-280,0,-480,-195,-426,-476v44,-230,244,-427,473,-494v-41,-18,-82,-54,-122,-108v-40,-54,-51,-129,-32,-224v35,-181,217,-340,444,-340v181,0,315,154,276,340v-20,94,-59,170,-120,224v-61,54,-115,90,-162,108v190,62,325,253,279,494v-48,251,-304,476,-610,476xm1138,-1282v30,-152,-79,-246,-234,-246v-141,0,-268,122,-294,246v-27,128,72,241,145,273v19,7,40,13,63,17v99,-17,134,-44,216,-114v57,-48,91,-108,104,-176","w":1250},"9":{"d":"738,-597v258,0,500,-226,542,-454v47,-251,-127,-453,-366,-453v-258,0,-500,225,-542,453v-47,251,126,454,366,454xm933,-1600v284,0,501,239,446,532r6,0v-53,235,-147,428,-283,577v-141,156,-328,339,-523,519r-124,0v16,-17,33,-33,51,-50v213,-196,386,-367,517,-513v28,-31,54,-63,78,-97v-220,173,-571,185,-739,-30v-85,-108,-111,-236,-85,-389v47,-277,343,-549,656,-549","w":1250},":":{"d":"178,-139v58,-51,155,-20,141,63v-12,66,-114,126,-165,64v-34,-40,-9,-98,24,-127xm298,-756v58,-51,155,-20,141,63v-12,66,-114,126,-165,64v-34,-40,-9,-98,24,-127","w":430},";":{"d":"384,-166r-260,385r-84,0r178,-385r166,0xm298,-756v58,-50,155,-20,141,63v-11,67,-114,126,-165,64v-33,-40,-10,-98,24,-127","w":477},"\u037e":{"d":"384,-166r-260,385r-84,0r178,-385r166,0xm298,-756v58,-50,155,-20,141,63v-11,67,-114,126,-165,64v-33,-40,-10,-98,24,-127","w":477},"<":{"d":"1249,-145r-1149,-418r1149,-418r0,96r-886,322r886,322r0,96","w":1349},"=":{"d":"125,-797r800,0r0,90r-800,0r0,-90xm125,-477r800,0r0,90r-800,0r0,-90","w":1050},">":{"d":"100,-241r886,-322r-886,-322r0,-96r1149,418r-1149,418r0,-96","w":1349},"?":{"d":"747,-1452v-158,0,-264,110,-298,246r-87,-4v30,-151,153,-269,286,-310v230,-71,435,68,390,319v-9,49,-30,98,-63,146v-57,85,-143,159,-249,237v-136,100,-253,220,-294,395v-10,42,-9,86,-2,129r-89,29v-19,-158,22,-258,91,-362v74,-112,181,-200,298,-289v112,-85,189,-154,217,-286v31,-147,-60,-250,-200,-250xm290,-139v58,-51,154,-20,140,63v-12,66,-115,126,-166,64v-34,-40,-7,-98,26,-127","w":956},"@":{"d":"1207,-615v-4,-124,-105,-215,-230,-215v-160,0,-308,141,-334,282v-28,154,77,279,225,279v136,0,292,-100,314,-214xm1147,-313v-97,85,-196,127,-297,127v-190,0,-332,-164,-294,-362v35,-183,228,-365,435,-365v101,0,183,42,247,127r23,-114r81,0r-126,648v6,29,21,43,46,43v29,0,78,-37,144,-111v66,-74,105,-149,122,-227v71,-333,-170,-608,-490,-608v-345,0,-667,304,-724,608v-63,335,168,606,488,606v115,0,202,-16,261,-49r45,60v-89,47,-197,70,-322,70v-362,0,-625,-309,-555,-687v64,-345,433,-689,823,-689v364,0,626,310,553,689v-27,138,-222,423,-378,417v-69,-2,-110,-41,-98,-102","w":1626},"A":{"d":"1027,-703r-114,-671r-374,671r488,0xm1042,-613r-554,0r-342,613r-96,0r914,-1637r277,1637r-95,0","k":{"\u00bb":73,"\u00ab":55,"t":-38,"f":-38,"Y":36,"W":36,"V":36,"T":131,";":-38,":":-38,".":-65,",":-65}},"B":{"d":"461,-1600r284,-1v157,-5,274,134,240,298v-17,82,-73,160,-172,231v72,15,132,61,186,132v83,109,109,236,84,389v-44,267,-326,551,-623,551r-310,0xm435,-1005r-178,915r220,1v241,-13,470,-241,511,-462v47,-251,-127,-462,-366,-454r-187,0xm534,-1510r-80,409r217,0v112,-10,208,-96,228,-202v23,-121,-56,-207,-171,-207r-194,0","w":1066,"k":{"\u00bb":55,"\u00ab":45,"Y":36,"-":-57}},"C":{"d":"1476,-255r56,61v-183,142,-381,213,-592,213v-434,0,-755,-367,-660,-819v47,-225,161,-419,352,-579v191,-160,399,-240,626,-240v211,0,381,71,510,213r-80,62v-114,-122,-263,-183,-448,-183v-201,0,-386,71,-555,213v-169,142,-271,314,-313,514v-85,401,202,728,586,728v185,0,357,-61,518,-183","w":1595,"k":{"\u00ab":36,"Y":36,"-":-47}},"D":{"d":"533,-1506r-275,1413v488,15,830,-325,905,-707v40,-200,1,-372,-113,-515v-104,-129,-276,-192,-517,-191xm461,-1600v31,1,74,2,97,2v263,0,453,73,569,218v129,161,171,354,128,580v-84,429,-472,814,-1015,798r0,2r-90,0","w":1199,"k":{"\u00c5":36,"\u00bb":73,"\u00ab":63,"Y":55,"W":36,"V":36,"A":36,"-":-65}},"E":{"d":"1261,-1600r-17,90r-710,0r-130,665r710,0r-17,90r-710,0r-130,665r710,0r-17,90r-800,0r311,-1600r800,0","w":1075},"F":{"d":"1161,-1600r-17,90r-610,0r-130,665r610,0r-17,90r-610,0r-147,755r-90,0r311,-1600r700,0","w":975,"k":{"\u0153":36,"\u00f8":36,"\u00e6":36,"\u00c5":112,"\u00bb":36,"\u00ab":73,"u":73,"r":73,"o":36,"i":36,"e":36,"a":36,"A":112,";":83,":":83,".":405,"-":63,",":405}},"G":{"d":"1527,-199v-180,145,-376,218,-587,218v-434,0,-755,-367,-660,-819v47,-225,161,-419,352,-579v191,-160,399,-240,626,-240v211,0,381,71,510,213r-80,62v-114,-122,-263,-183,-448,-183v-201,0,-386,71,-555,213v-169,142,-271,314,-313,514v-85,401,202,728,586,728v172,0,334,-53,485,-159r95,-488r90,0","w":1620,"k":{"\u00bb":73,"\u00ab":55,"Y":55,"T":36,"-":-47}},"H":{"d":"379,-717r-139,717r-90,0r311,-1600r90,0r-154,793r670,0r154,-793r90,0r-311,1600r-90,0r139,-717r-670,0","w":1150,"k":{"\u00bb":73,"\u00ab":112,".":36,",":36}},"I":{"d":"571,-1600r-311,1600r-90,0r311,-1600r90,0","w":430},"J":{"d":"756,-274v-24,152,-177,288,-342,288v-147,0,-267,-131,-238,-273r93,-23v-25,115,54,208,162,206v118,-2,216,-97,238,-213r254,-1311r90,0","w":857,"k":{"\u00bb":73,"\u00ab":92}},"K":{"d":"391,-775r-151,775r-90,0r311,-1600r90,0r-132,681r643,-681r116,0r-605,644r434,956r-111,0r-396,-884","w":1097,"k":{"\u00c5":-75,"\u00bb":36,"\u00ab":131,"Y":-75,"T":-38,"A":-75}},"L":{"d":"150,0r311,-1600r90,0r-294,1510r620,0r-17,90r-710,0","w":950,"k":{"\u0153":73,"\u0152":112,"\u00f8":73,"\u00e6":73,"\u00d8":112,"\u00c5":-75,"\u00bb":36,"\u00ab":112,"y":36,"o":73,"e":73,"a":73,"Y":112,"W":112,"V":112,"U":36,"T":73,"O":112,"A":-75,"-":36}},"M":{"d":"564,-1600r399,1040r802,-1040r103,0r-5,7r-310,1593r-90,0r279,-1437r-814,1054r-405,-1054r-279,1437r-90,0r310,-1593r-3,-7r103,0","w":1707},"N":{"d":"461,-1600r99,0r545,1423r277,-1423r90,0r-311,1600r-90,0r-552,-1437r-279,1437r-90,0","w":1311},"O":{"d":"1262,-1623v434,0,755,369,661,821v-47,226,-162,420,-353,580v-191,160,-400,241,-627,241v-434,0,-757,-369,-662,-821v47,-226,161,-420,353,-580v192,-160,401,-241,628,-241xm1244,-1531v-201,0,-387,71,-557,213v-170,142,-272,315,-314,516v-85,401,202,730,587,730v201,0,387,-71,557,-214v170,-143,272,-315,314,-516v85,-402,-202,-729,-587,-729","w":1892,"k":{"\u00bb":63,"\u00ab":63,"Y":63,"X":36,"V":36,";":-38,":":-38,".":83,"-":-38,",":83}},"P":{"d":"881,-1600v241,27,414,249,363,522v-49,264,-326,526,-624,523r-272,0r-108,555r-90,0r311,-1600r420,0xm533,-1509r-167,863r272,0v245,3,475,-215,515,-432v44,-238,-121,-431,-348,-431r-272,0","w":1089,"k":{"\u0153":73,"\u00f8":73,"\u00e6":73,"\u00c5":149,"\u00bb":102,"\u00ab":206,"u":73,"s":36,"r":73,"o":73,"n":73,"i":73,"e":73,"a":73,"W":36,"A":149,";":92,":":92,".":491,"-":159,",":491}},"Q":{"d":"1244,-1531v-201,0,-387,71,-557,213v-170,142,-272,315,-314,516v-85,401,202,730,587,730v201,0,387,-71,557,-214v170,-143,272,-315,314,-516v85,-402,-202,-729,-587,-729xm1097,89v-140,-33,-251,60,-286,165r-91,0v34,-113,110,-188,214,-235v-428,10,-747,-372,-653,-821v47,-226,161,-420,353,-580v192,-160,401,-241,628,-241v434,0,748,367,661,821v-71,372,-418,725,-795,802v70,9,217,136,295,156v106,28,188,-50,212,-133r91,0v-35,124,-134,228,-279,228v-100,0,-123,-36,-218,-96v-60,-38,-104,-59,-132,-66","w":1892},"R":{"d":"533,-1509r-167,863r272,0v245,3,475,-215,515,-432v44,-238,-121,-431,-348,-431r-272,0xm881,-1600v241,27,415,249,363,522v-44,235,-260,455,-495,509r258,569r-111,0r-249,-556r-299,1r-108,555r-90,0r311,-1600r420,0","w":1089,"k":{"\u0153":36,"\u00f8":36,"\u00e6":36,"\u00c5":55,"\u00bb":92,"\u00ab":112,"u":36,"o":36,"e":36,"a":36,"W":36,"T":36,"A":55,";":36,":":36,".":73,"-":55,",":73}},"S":{"d":"215,-410v-20,190,130,340,317,340v220,0,427,-192,461,-386v39,-225,-111,-364,-273,-430v-105,-43,-190,-88,-240,-156v-181,-247,82,-577,353,-577v139,0,254,91,273,218r-87,32v-16,-93,-99,-162,-203,-162v-142,0,-279,122,-298,249v-25,166,79,244,203,299v115,52,215,106,285,193v75,92,97,203,75,334v-41,240,-297,475,-567,475v-223,0,-401,-173,-390,-398","w":1042,"k":{"\u00c5":-57,"A":-57}},"T":{"d":"839,-1510r-294,1510r-90,0r294,-1510r-405,0r17,-90r900,0r-17,90r-405,0","w":1000,"k":{"\u0153":167,"\u00f8":167,"\u00e6":167,"\u00c5":149,"\u00bb":167,"\u00ab":225,"y":131,"w":167,"u":167,"s":149,"r":131,"o":167,"e":167,"c":167,"a":167,"C":73,"A":149,";":131,":":131,".":264,"-":188,",":264}},"U":{"d":"1415,-1600r91,0r-223,1150v-71,237,-330,464,-612,464v-277,0,-478,-233,-422,-522r212,-1092r91,0r-212,1092v-52,237,120,431,348,431v245,0,473,-215,515,-431","w":1345},"V":{"d":"456,-1600r233,1374r767,-1374r96,0r-914,1637r-277,-1637r95,0","k":{"\u0153":112,"\u00f8":112,"\u00e6":112,"\u00c5":73,"\u00bb":167,"\u00ab":225,"y":36,"u":112,"o":112,"e":112,"a":112,"A":73,";":63,":":63,".":339,"-":167,",":339}},"W":{"d":"864,-142v-83,87,-220,156,-346,156v-205,0,-361,-173,-321,-384r239,-1230r90,0r-237,1222v-36,165,88,302,246,302v118,0,244,-78,303,-164r264,-1360r90,0r-264,1360v32,97,124,164,239,164v170,0,335,-151,364,-302r237,-1222r90,0r-239,1230v-34,194,-248,384,-469,384v-127,0,-230,-62,-286,-156","w":1672,"k":{"\u0153":73,"\u00f8":73,"\u00e6":73,"\u00c5":36,"\u00bb":149,"\u00ab":188,"y":36,"u":73,"r":83,"o":73,"e":73,"a":73,"A":36,";":45,":":45,".":253,"-":92,",":253}},"X":{"d":"50,0r678,-879r-276,-721r103,0r241,632r489,-632r103,0r-558,721r338,879r-103,0r-303,-790r-610,790r-102,0","w":1218,"k":{"\u0152":36,"\u00d8":36,"\u00bb":92,"\u00ab":188,"e":36,"O":36,"C":36,"-":102}},"Y":{"d":"726,-647r-365,-953r103,0r326,853r659,-853r103,0r-736,953r-126,647r-90,0","k":{"\u0153":139,"\u00f8":139,"\u00e6":149,"\u00c5":112,"\u00bb":264,"\u00ab":339,"u":139,"o":139,"i":36,"e":139,"a":149,"A":112,";":102,":":102,".":311,"-":243,",":311}},"Z":{"d":"1316,-1510r-872,0r17,-90r1027,0r-1167,1510r873,0r-17,90r-1027,0","w":1327,"k":{"\u00bb":112,"\u00ab":149,"-":112}},"[":{"d":"159,285r220,0r-17,90r-310,0r384,-1975r310,0r-18,90r-220,0","w":560},"\\":{"d":"777,0r-102,0r-414,-1600r103,0","w":727},"]":{"d":"638,-1510r-220,0r18,-90r310,0r-384,1975r-310,0r17,-90r220,0","w":560},"^":{"d":"513,-1600r308,534r-104,0r-256,-443r-256,443r-105,0r309,-534r104,0","w":921},"_":{"d":"19,30r1000,0r-17,90r-1000,0","w":1050},"`":{"d":"566,-1287r127,187r-84,0r-209,-187r166,0","w":629},"a":{"d":"882,-1071v181,0,329,90,402,228r27,-139r90,0r-191,982r-90,0r39,-200v-113,126,-311,228,-491,228v-290,0,-498,-246,-442,-549v51,-277,344,-550,656,-550xm687,-68v227,0,452,-182,517,-364r34,-178v2,-210,-166,-365,-375,-365v-258,0,-500,226,-542,454v-47,251,126,453,366,453","w":1360},"b":{"d":"680,28v-180,0,-328,-91,-401,-227r-39,199r-90,0r311,-1600r90,0r-147,756v113,-124,310,-227,489,-227v291,0,499,245,442,550v-52,276,-342,549,-655,549xm323,-427v2,205,167,359,375,359v258,0,500,-225,542,-453v47,-251,-125,-454,-365,-454v-225,0,-450,179,-515,360","w":1359},"c":{"d":"652,-68v140,0,288,-71,386,-168r88,34v-113,127,-312,230,-493,230v-290,0,-499,-246,-442,-550v51,-276,344,-549,656,-549v183,0,329,92,404,229r-102,35v-64,-105,-180,-168,-321,-168v-257,0,-499,226,-541,453v-46,250,126,454,365,454","w":1177},"d":{"d":"882,-1071v181,0,329,90,402,228r147,-757r90,0r-311,1600r-90,0r39,-200v-113,126,-311,228,-491,228v-290,0,-498,-246,-442,-549v51,-277,344,-550,656,-550xm687,-68v227,0,452,-182,517,-364r34,-178v2,-210,-166,-365,-375,-365v-258,0,-500,226,-542,454v-47,251,126,453,366,453","w":1360},"e":{"d":"1126,-202v-113,127,-312,230,-493,230v-290,0,-499,-246,-442,-550v51,-276,344,-549,656,-549v162,0,296,70,371,179r-845,708v69,77,162,116,279,116v140,0,288,-71,386,-168xm1083,-885v-168,-144,-434,-103,-601,43v-104,91,-170,195,-195,320v-20,103,-8,194,37,272","w":1177},"f":{"d":"453,-892r-238,1220r-90,0r238,-1220r-100,0r18,-90r100,0r52,-266v36,-164,234,-327,439,-246r-43,80v-135,-65,-286,57,-308,172r-50,260r200,0r-18,90r-200,0","w":523,"k":{"\u00bb":36,"\u00ab":73,".":112,"-":45,",":112}},"g":{"d":"1238,-615v-1,-207,-167,-360,-375,-360v-258,0,-500,226,-542,454v-47,251,126,454,366,454v224,0,477,-169,514,-358xm301,56v65,104,179,168,320,168v245,0,488,-209,534,-419v-114,123,-309,223,-487,223v-290,0,-498,-246,-442,-549v51,-277,344,-549,656,-549v181,0,329,89,402,227r27,-139r90,0r-149,763v-42,274,-342,539,-649,539v-183,0,-330,-92,-404,-230","w":1364},"h":{"d":"461,-1600r90,0r-130,669v153,-139,432,-154,557,-1v59,73,80,165,59,275r-128,657r-90,0r126,-649v36,-165,-88,-302,-246,-302v-119,0,-253,84,-307,170r-152,781r-90,0","w":1059},"i":{"d":"451,-982r-191,982r-90,0r191,-982r90,0xm405,-1304v58,-50,155,-20,141,63v-11,67,-115,126,-166,64v-33,-40,-9,-98,25,-127","w":430},"j":{"d":"22,138v83,-9,132,-55,148,-136r191,-984r90,0r-191,982v-27,141,-112,217,-255,228xm406,-1304v58,-51,155,-19,141,63v-11,66,-115,126,-167,64v-33,-40,-7,-98,26,-127","w":455},"k":{"d":"820,-982r-300,300r253,682r-112,0r-214,-610r-110,109r-97,501r-90,0r272,-1400r90,0r-147,755r339,-337r116,0","w":823,"k":{"\u0153":73,"\u00f8":73,"\u00e6":73,"u":55,"o":73,"e":73,"a":73}},"l":{"d":"551,-1600r-311,1600r-90,0r311,-1600r90,0","w":390},"m":{"d":"863,-905v59,-71,170,-135,273,-135v151,0,266,125,236,282r-147,758r-90,0r148,-758v19,-107,-61,-192,-164,-192v-116,0,-222,101,-242,206r-145,744r-90,0r148,-758v19,-107,-61,-192,-164,-192v-109,0,-218,89,-237,184r-149,766r-90,0r191,-982r90,0r-5,23v67,-54,139,-81,217,-81v102,0,185,54,220,135","w":1375},"n":{"d":"711,-951v-129,0,-268,98,-323,188r-148,763r-90,0r191,-982r90,0r-12,63v97,-81,200,-122,309,-122v221,0,365,159,321,384r-128,657r-90,0r126,-649v36,-165,-88,-302,-246,-302","w":1071,"k":{"\u00ab":36}},"o":{"d":"428,-910v224,-196,591,-230,776,0v86,107,111,236,85,389v-47,277,-343,549,-656,549v-290,0,-505,-247,-442,-549v32,-152,111,-279,237,-389xm828,-975v-258,0,-500,226,-542,454v-47,251,126,453,366,453v258,0,500,-225,542,-453v47,-251,-127,-454,-366,-454","w":1278,"k":{"\u00ab":36,"-":-38}},"p":{"d":"679,28v-180,0,-327,-91,-400,-227r-112,574r-90,0r264,-1357r90,0r-27,138v113,-124,310,-226,489,-226v291,0,499,245,442,549v-51,276,-343,549,-656,549xm323,-427v2,206,167,360,375,360v258,0,500,-226,542,-454v47,-251,-127,-454,-366,-454v-226,0,-448,180,-515,360","w":1334},"q":{"d":"857,-1070v181,0,329,89,402,227r27,-139r90,0r-264,1357r-90,0r112,-575v-113,126,-311,228,-491,228v-290,0,-498,-246,-442,-549v51,-277,344,-549,656,-549xm662,-67v227,0,452,-182,517,-365r34,-178v2,-210,-166,-365,-375,-365v-258,0,-500,226,-542,454v-47,251,126,454,366,454","w":1335},"r":{"d":"341,-982r90,0r-35,179v77,-90,238,-206,348,-202r-19,98v-57,3,-121,34,-194,95v-102,85,-169,186,-192,305r-99,507r-90,0","w":599,"k":{"\u00bb":55,"\u00ab":149,"y":-75,"w":-65,"v":-75,"t":-57,"g":36,"f":-75,".":206,"-":112,",":206}},"s":{"d":"723,-771v7,-95,-29,-151,-116,-152v-117,-1,-232,142,-152,249v40,54,218,153,250,200v149,218,-69,498,-303,498v-147,0,-267,-131,-238,-273r93,-23v-25,115,54,206,162,206v162,0,318,-196,210,-345v-16,-22,-52,-55,-110,-94v-67,-44,-117,-75,-139,-106v-126,-172,57,-403,245,-403v120,0,208,95,182,212","w":802},"t":{"d":"480,-982r82,-418r90,0r-82,418r200,0r-17,90r-200,0r-173,892r-90,0r173,-892r-200,0r17,-90r200,0","w":670},"u":{"d":"856,-95v-148,135,-454,153,-575,0v-59,-73,-81,-165,-59,-275r120,-614r90,0r-118,606v-35,170,89,302,255,302v170,0,335,-151,364,-302r118,-606r90,0r-120,614v-23,111,-81,199,-165,275","w":1099},"v":{"d":"564,-164r537,-818r104,0r-678,1009r-286,-1009r104,0","w":1064,"k":{".":196,",":196}},"w":{"d":"712,-120v-61,69,-170,134,-273,134v-151,0,-267,-125,-237,-282r139,-714r90,0r-140,714v-16,106,62,192,165,192v109,0,218,-88,237,-184r140,-722r90,0r-136,700v-25,115,54,206,162,206v110,0,219,-96,238,-192r139,-714r90,0r-139,714v-27,143,-182,282,-345,282v-102,0,-183,-55,-220,-134","w":1375,"k":{"\u00bb":73,"\u00ab":73,".":188,"-":55,",":188}},"x":{"d":"932,-982r-342,443r206,539r-104,0r-170,-443r-342,443r-105,0r417,-539r-170,-443r104,0r133,347r268,-347r105,0","w":871},"y":{"d":"520,-88r-312,463r-88,0r373,-556r-227,-801r102,0r189,704r463,-704r101,0r-601,895r0,-1","w":1005,"k":{"\u00bb":73,"\u00ab":112,".":215,"-":63,",":215}},"z":{"d":"828,-878r-507,0r17,-90r662,0r-679,878r546,0r-17,90r-700,0","w":1000},"{":{"d":"725,-1183v-13,290,-124,481,-336,570v142,69,201,224,159,422v-28,132,-146,371,3,463v40,25,79,32,132,26r-14,74v-192,22,-306,-128,-259,-332v25,-109,74,-234,74,-376v0,-123,-118,-227,-227,-239v-7,0,-14,1,-21,3r16,-81v50,10,83,-8,151,-41v154,-75,239,-228,249,-437v10,-213,72,-357,218,-431v62,-30,112,-44,181,-35r-14,75v-12,-2,-24,-3,-36,-3v-183,14,-268,158,-276,342","w":866},"|":{"d":"240,-1600r0,1975r-90,0r0,-1975r90,0","w":390},"}":{"d":"67,298v210,10,303,-146,312,-340v13,-290,126,-480,336,-571v-143,-67,-201,-224,-159,-421v28,-132,145,-370,-3,-464v-39,-24,-80,-32,-132,-24r15,-75v145,-20,259,77,267,205v11,182,-99,310,-83,503v7,86,44,153,113,195v55,34,86,51,135,41r-16,81v-50,-10,-82,8,-150,41v-153,76,-240,226,-249,437v-9,213,-73,358,-219,431v-61,31,-112,44,-181,35","w":866},"~":{"d":"365,-873v-97,0,-142,84,-150,180r-90,-14v15,-140,89,-253,234,-253v71,0,164,33,279,99v126,72,216,109,273,109v97,0,144,-82,150,-180r91,14v-19,139,-88,253,-235,253v-70,0,-163,-33,-278,-99v-127,-73,-218,-109,-274,-109","w":1277},"\u00a1":{"d":"564,-1465v-58,51,-156,19,-142,-63v11,-66,114,-126,166,-64v33,40,9,98,-24,127xm173,-4r257,-1324r90,0r-257,1324r-90,0","w":430},"\u00a2":{"d":"582,-623v-184,-30,-319,-220,-277,-439v39,-205,237,-402,447,-439r32,-161r90,0r-30,154v147,-2,264,78,323,192r-93,33v-49,-82,-139,-137,-248,-136r-138,714v108,2,225,-59,300,-136r81,32v-93,106,-251,197,-399,193r-30,154r-90,0xm735,-1410v-162,35,-310,188,-341,348v-33,170,69,317,205,348","w":1013},"\u00a3":{"d":"805,-1602v241,-21,398,167,351,402v-8,42,-23,80,-44,114r-80,-29v54,-98,54,-246,-30,-326v-119,-113,-320,-72,-429,37v-118,119,-149,274,-83,475v31,95,61,187,66,284r197,0r-17,90r-180,0v-1,30,-5,60,-10,87v-27,136,-110,271,-249,405v89,-30,174,-45,255,-45v110,0,219,39,324,39v53,0,105,-6,154,-18r0,89v-57,13,-114,20,-172,20v-111,0,-243,-46,-348,-43v-145,3,-229,62,-339,104r-67,-103v97,-73,158,-123,185,-149v109,-111,166,-210,175,-386r-228,0r17,-90r209,0v-5,-63,-13,-128,-38,-189v-100,-247,-75,-479,88,-630v86,-80,182,-128,293,-138","w":1130},"\u00a4":{"d":"412,-892v-102,-173,-25,-394,98,-506r-112,-139r77,-64r112,139v147,-111,378,-126,506,0r166,-139r51,64r-166,139v102,173,25,394,-98,506r112,139r-76,64r-112,-139v-148,111,-378,127,-506,0r-166,139r-52,-64xm1094,-1145v35,-184,-83,-316,-254,-316v-191,0,-345,147,-378,316v-35,180,80,316,255,316v192,0,345,-148,377,-316","w":1112},"\u00a5":{"d":"796,-755r653,-845r103,0r-654,845r294,0r-17,90r-346,0r-14,18r-20,102r356,0r-17,90r-356,0r-88,455r-90,0r88,-455r-354,0r17,-90r354,0r20,-102r-6,-18r-344,0r17,-90r292,0r-323,-845r103,0r322,845r10,0"},"\u00a6":{"d":"240,-1600r0,849r-90,0r0,-849r90,0xm240,-474r0,849r-90,0r0,-849r90,0","w":390},"\u00a7":{"d":"948,-345v70,-56,113,-121,138,-252v43,-225,-111,-362,-273,-430v-141,-59,-242,-117,-288,-250v-70,56,-113,121,-138,252v-43,225,111,362,273,430v141,59,242,117,288,250xm361,-112v16,93,99,162,203,162v142,0,278,-123,298,-249v25,-166,-78,-247,-203,-299v-208,-87,-413,-243,-360,-527v31,-170,103,-273,216,-337v6,-138,59,-215,151,-298v137,-123,366,-143,481,-1v29,35,47,75,53,119r-88,32v-16,-93,-99,-162,-203,-162v-142,0,-278,123,-298,249v-25,166,78,247,203,299v208,87,413,243,360,527v-31,170,-103,273,-216,337v-6,138,-60,215,-152,298v-137,123,-365,143,-480,1v-29,-35,-47,-75,-53,-119","w":1158},"\u00a8":{"d":"406,-1304v58,-51,154,-20,140,63v-12,66,-115,126,-166,64v-34,-40,-7,-98,26,-127xm706,-1304v58,-51,154,-20,140,63v-12,66,-115,126,-166,64v-34,-40,-7,-98,26,-127","w":730},"\u00a9":{"d":"711,-341v82,0,160,-41,206,-101r68,25v-57,84,-161,145,-274,145v-178,0,-331,-153,-331,-331v0,-178,153,-331,331,-331v113,0,217,61,274,145r-68,25v-45,-61,-124,-101,-206,-101v-140,0,-262,121,-262,262v0,140,122,262,262,262xm700,-1204v322,0,600,279,600,601v0,323,-278,601,-600,601v-323,0,-601,-278,-601,-601v0,-323,278,-601,601,-601xm1229,-603v0,-285,-245,-530,-529,-530v-286,0,-530,245,-530,530v0,284,245,530,530,530v284,0,529,-246,529,-530","w":1405},"\u00ab":{"d":"534,-462r525,-460r-20,104r-400,356r262,356r-21,105xm190,-462r518,-460r-20,104r-400,356r262,356r-21,105","w":980,"k":{"\u00c6":-38,"Y":149,"W":112,"V":112,"T":112}},"\u00ae":{"d":"772,-1182v0,-101,-88,-189,-189,-189r-116,0r0,378r116,0v101,3,189,-88,189,-189xm581,-1543v-228,0,-424,196,-424,424v0,196,138,364,311,410v86,22,183,18,262,-12r-138,-215r-125,0r0,155r-55,0r0,-644r198,0v117,14,217,118,217,244v0,110,-85,215,-175,236r130,200v122,-66,222,-214,222,-374v0,-228,-196,-424,-423,-424xm581,-1600v257,0,480,223,480,481v0,198,-115,356,-279,435v-324,156,-682,-107,-682,-435v0,-259,222,-481,481,-481","w":1161},"\u00af":{"d":"382,-1327r590,0r-17,90r-590,0","w":840},"\u00b0":{"d":"381,-1600v125,0,231,106,231,231v0,125,-106,231,-231,231v-125,0,-231,-106,-231,-231v0,-125,106,-231,231,-231xm541,-1369v0,-86,-74,-160,-160,-160v-86,0,-160,74,-160,160v0,86,74,160,160,160v86,0,160,-74,160,-160","w":762},"\u00b1":{"d":"480,-547r-355,0r0,-90r355,0r0,-355r90,0r0,355r355,0r0,90r-355,0r0,355r-90,0r0,-355xm125,-90r800,0r0,90r-800,0r0,-90","w":1050},"\u00b4":{"d":"729,-1287r-281,187r-84,0r199,-187r166,0","w":629},"\u00b5":{"d":"289,-251v27,97,125,170,241,170v140,0,287,-109,336,-219r133,-682r88,0r-191,982r-88,0r21,-111v-142,139,-437,176,-569,10r-93,476r-90,0r264,-1357r90,0","w":1046},"\u00b6":{"d":"1126,-1602r-384,1977r-90,0r199,-1021r-152,0v-276,9,-477,-234,-421,-523v49,-254,291,-522,566,-522r571,-1r-18,90r-88,0r-384,1977r-90,0r384,-1977r-93,0","w":1135},"\u00b7":{"d":"313,-854v49,-43,132,-17,120,54v-9,56,-98,107,-141,54v-28,-34,-8,-83,21,-108","w":403},"\u2219":{"d":"313,-854v49,-43,132,-17,120,54v-9,56,-98,107,-141,54v-28,-34,-8,-83,21,-108","w":403},"\u00b8":{"d":"299,0r-19,35v92,4,135,11,128,83v-27,86,-99,142,-212,135v-35,-2,-61,-10,-78,-23r48,-37v60,16,150,-2,142,-70v-30,-45,-85,-33,-155,-29r76,-94r70,0","w":582},"\u00bb":{"d":"100,-1r20,-105r401,-356r-262,-356r20,-104r347,460xm451,-1r20,-105r401,-356r-262,-356r20,-104r340,460","w":980,"k":{"\u00c6":36,"Y":206,"X":83,"W":120,"V":131,"T":188,"J":36}},"\u00bf":{"d":"520,-152v158,0,264,-110,298,-246r87,4v-30,151,-153,269,-286,310v-230,70,-436,-68,-390,-319v9,-49,30,-98,63,-146v57,-85,143,-159,249,-237v136,-100,253,-220,294,-395v10,-42,9,-86,2,-129r89,-29v19,158,-22,257,-92,362v-75,111,-180,200,-297,289v-112,85,-189,154,-217,286v-31,147,60,250,200,250xm978,-1465v-58,51,-155,20,-141,-63v12,-66,114,-126,165,-64v34,40,9,98,-24,127","w":956},"\u00c0":{"d":"1027,-703r-114,-671r-374,671r488,0xm1042,-613r-554,0r-342,613r-96,0r914,-1637r277,1637r-95,0xm889,-1886r126,187r-84,0r-208,-187r166,0"},"\u00c1":{"d":"1027,-703r-114,-671r-374,671r488,0xm1042,-613r-554,0r-342,613r-96,0r914,-1637r277,1637r-95,0xm1302,-1886r-282,187r-84,0r200,-187r166,0"},"\u00c2":{"d":"1027,-703r-114,-671r-374,671r488,0xm1042,-613r-554,0r-342,613r-96,0r914,-1637r277,1637r-95,0xm1052,-1842r193,234r-104,0r-159,-143r-203,143r-105,0r274,-234r104,0"},"\u00c3":{"d":"1027,-703r-114,-671r-374,671r488,0xm1042,-613r-554,0r-342,613r-96,0r914,-1637r277,1637r-95,0xm706,-1660v43,-101,74,-158,172,-158v38,0,74,14,107,45v83,78,155,89,203,-24r69,0v-42,101,-73,158,-171,158v-38,0,-73,-15,-106,-46v-83,-77,-156,-88,-204,25r-70,0"},"\u00c4":{"d":"1027,-703r-114,-671r-374,671r488,0xm1042,-613r-554,0r-342,613r-96,0r914,-1637r277,1637r-95,0xm784,-1812v58,-51,155,-19,142,63v-11,66,-115,126,-166,64v-33,-40,-10,-98,24,-127xm1084,-1812v58,-51,155,-19,142,63v-11,66,-115,126,-166,64v-33,-40,-10,-98,24,-127"},"\u00c5":{"d":"1027,-703r-114,-671r-374,671r488,0xm937,-1708v-40,30,-31,108,32,97v40,-7,79,-58,49,-97v-19,-25,-56,-19,-81,0xm979,-1549r262,1549r-95,0r-104,-613r-554,0r-342,613r-96,0r865,-1549v-45,-11,-77,-61,-68,-118v14,-90,158,-174,226,-87v62,79,-16,188,-94,205","k":{"\u00bb":73,"\u00ab":55,"t":-38,"f":-38,"Y":36,"W":36,"V":36,"T":131,";":-38,":":-38,".":-65,",":-65}},"\u00c6":{"d":"1797,-845r-17,90r-710,0r-130,665r710,0r-17,90r-800,0r119,-613r-339,0r-392,613r-96,0r1007,-1600r812,0r-17,90r-710,0r-130,665r710,0xm970,-703r138,-712r-444,712r306,0","w":1758,"k":{"\u00bb":73,"\u00ab":112,"-":36}},"\u00c7":{"d":"913,19v-417,-1,-726,-375,-633,-819v47,-225,161,-419,352,-579v191,-160,399,-240,626,-240v211,0,381,71,510,213r-80,62v-114,-122,-263,-183,-448,-183v-201,0,-386,71,-555,213v-169,142,-271,314,-313,514v-85,401,202,728,586,728v185,0,357,-61,518,-183r56,61v-170,132,-352,203,-547,212r-14,27v92,4,135,11,128,83v-27,86,-100,142,-213,135v-34,-2,-60,-10,-77,-23r48,-37v60,16,150,-2,142,-70v-30,-45,-85,-33,-155,-29","w":1595},"\u00c8":{"d":"1261,-1600r-17,90r-710,0r-130,665r710,0r-17,90r-710,0r-130,665r710,0r-17,90r-800,0r311,-1600r800,0xm858,-1855r126,187r-84,0r-208,-187r166,0","w":1075},"\u00c9":{"d":"1261,-1600r-17,90r-710,0r-130,665r710,0r-17,90r-710,0r-130,665r710,0r-17,90r-800,0r311,-1600r800,0xm1130,-1855r-282,187r-84,0r200,-187r166,0","w":1075},"\u00ca":{"d":"1261,-1600r-17,90r-710,0r-130,665r710,0r-17,90r-710,0r-130,665r710,0r-17,90r-800,0r311,-1600r800,0xm967,-1892r192,234r-104,0r-158,-143r-204,143r-105,0r275,-234r104,0","w":1075},"\u00cb":{"d":"1261,-1600r-17,90r-710,0r-130,665r710,0r-17,90r-710,0r-130,665r710,0r-17,90r-800,0r311,-1600r800,0xm690,-1822v58,-51,155,-19,142,63v-11,66,-115,126,-166,64v-33,-40,-10,-98,24,-127xm990,-1822v58,-51,155,-19,142,63v-11,66,-115,126,-166,64v-33,-40,-10,-98,24,-127","w":1075},"\u00cc":{"d":"571,-1600r-311,1600r-90,0r311,-1600r90,0xm453,-1855r126,187r-84,0r-208,-187r166,0","w":430},"\u00cd":{"d":"571,-1600r-311,1600r-90,0r311,-1600r90,0xm865,-1855r-282,187r-84,0r200,-187r166,0","w":430},"\u00ce":{"d":"571,-1600r-311,1600r-90,0r311,-1600r90,0xm621,-1842r193,234r-104,0r-159,-143r-203,143r-105,0r274,-234r104,0","w":430},"\u00cf":{"d":"571,-1600r-311,1600r-90,0r311,-1600r90,0xm356,-1822v58,-51,154,-19,141,63v-11,66,-115,126,-166,64v-33,-40,-9,-98,25,-127xm656,-1822v58,-51,154,-19,141,63v-11,66,-115,126,-166,64v-33,-40,-9,-98,25,-127","w":430},"\u00d0":{"d":"374,-845r147,-755v32,1,67,2,97,2v263,0,453,73,569,218v129,161,172,354,128,580v-83,429,-472,814,-1014,798v-25,6,-62,0,-91,2r147,-755r-160,0r17,-90r160,0xm464,-845r370,0r-17,90r-370,0r-129,662v488,15,830,-324,905,-707v39,-201,1,-372,-113,-515v-104,-129,-276,-192,-517,-191","w":1284,"k":{"\u00c5":36,"\u00bb":73,"\u00ab":63,"Y":55,"W":36,"V":36,"A":36,"-":-65}},"\u00d1":{"d":"461,-1600r99,0r545,1423r277,-1423r90,0r-311,1600r-90,0r-552,-1437r-279,1437r-90,0xm716,-1660v43,-101,74,-158,172,-158v38,0,74,14,107,45v83,78,155,89,203,-24r69,0v-42,101,-73,158,-171,158v-38,0,-73,-15,-106,-46v-83,-77,-156,-88,-204,25r-70,0","w":1311},"\u00d2":{"d":"1262,-1623v434,0,755,369,661,821v-47,226,-162,420,-353,580v-191,160,-400,241,-627,241v-434,0,-757,-369,-662,-821v47,-226,161,-420,353,-580v192,-160,401,-241,628,-241xm1244,-1531v-201,0,-387,71,-557,213v-170,142,-272,315,-314,516v-85,401,202,730,587,730v201,0,387,-71,557,-214v170,-143,272,-315,314,-516v85,-402,-202,-729,-587,-729xm1254,-1855r126,187r-84,0r-208,-187r166,0","w":1892},"\u00d3":{"d":"1262,-1623v434,0,755,369,661,821v-47,226,-162,420,-353,580v-191,160,-400,241,-627,241v-434,0,-757,-369,-662,-821v47,-226,161,-420,353,-580v192,-160,401,-241,628,-241xm1244,-1531v-201,0,-387,71,-557,213v-170,142,-272,315,-314,516v-85,401,202,730,587,730v201,0,387,-71,557,-214v170,-143,272,-315,314,-516v85,-402,-202,-729,-587,-729xm1526,-1855r-282,187r-84,0r200,-187r166,0","w":1892},"\u00d4":{"d":"1262,-1623v434,0,755,369,661,821v-47,226,-162,420,-353,580v-191,160,-400,241,-627,241v-434,0,-757,-369,-662,-821v47,-226,161,-420,353,-580v192,-160,401,-241,628,-241xm1244,-1531v-201,0,-387,71,-557,213v-170,142,-272,315,-314,516v-85,401,202,730,587,730v201,0,387,-71,557,-214v170,-143,272,-315,314,-516v85,-402,-202,-729,-587,-729xm1363,-1892r192,234r-104,0r-158,-143r-204,143r-105,0r275,-234r104,0","w":1892},"\u00d5":{"d":"1262,-1623v434,0,755,369,661,821v-47,226,-162,420,-353,580v-191,160,-400,241,-627,241v-434,0,-757,-369,-662,-821v47,-226,161,-420,353,-580v192,-160,401,-241,628,-241xm1244,-1531v-201,0,-387,71,-557,213v-170,142,-272,315,-314,516v-85,401,202,730,587,730v201,0,387,-71,557,-214v170,-143,272,-315,314,-516v85,-402,-202,-729,-587,-729xm1011,-1680v43,-101,74,-158,172,-158v38,0,74,14,107,45v83,78,155,89,203,-24r69,0v-42,101,-73,158,-171,158v-38,0,-73,-15,-106,-46v-84,-77,-155,-88,-204,25r-70,0","w":1892},"\u00d6":{"d":"1262,-1623v434,0,755,369,661,821v-47,226,-162,420,-353,580v-191,160,-400,241,-627,241v-434,0,-757,-369,-662,-821v47,-226,161,-420,353,-580v192,-160,401,-241,628,-241xm1244,-1531v-201,0,-387,71,-557,213v-170,142,-272,315,-314,516v-85,401,202,730,587,730v201,0,387,-71,557,-214v170,-143,272,-315,314,-516v85,-402,-202,-729,-587,-729xm1086,-1822v58,-51,155,-19,142,63v-11,67,-115,126,-166,64v-33,-40,-10,-98,24,-127xm1386,-1822v58,-51,155,-19,142,63v-11,67,-115,126,-166,64v-33,-40,-10,-98,24,-127","w":1892},"\u00d7":{"d":"525,-528r-251,251r-64,-64r251,-251r-251,-251r64,-64r251,251r251,-251r63,64r-251,251r251,251r-63,64","w":1050},"\u00d8":{"d":"1501,-1483v-75,-32,-161,-48,-257,-48v-201,0,-387,71,-557,213v-170,142,-270,316,-314,516v-60,276,70,529,255,643xm702,-121v76,33,162,49,258,49v201,0,387,-71,557,-214v170,-143,270,-316,314,-516v60,-275,-69,-530,-255,-642xm1631,-1528v61,37,117,85,165,145v129,160,171,354,127,581v-44,227,-162,420,-353,580v-191,160,-400,241,-627,241v-110,0,-208,-19,-295,-57r-122,184r-75,-38r122,-184v-61,-37,-116,-86,-164,-146v-129,-160,-172,-353,-128,-580v44,-227,161,-420,353,-580v192,-160,401,-241,628,-241v110,0,208,19,295,57r121,-184r75,38","w":1892,"k":{"\u00bb":63,"\u00ab":63,"Y":63,"X":36,"V":36,";":-38,":":-38,".":83,"-":-38,",":83}},"\u00d9":{"d":"1415,-1600r91,0r-223,1150v-71,237,-330,464,-612,464v-277,0,-478,-233,-422,-522r212,-1092r91,0r-212,1092v-52,237,120,431,348,431v245,0,473,-215,515,-431xm980,-1855r126,187r-84,0r-208,-187r166,0","w":1345},"\u00da":{"d":"1415,-1600r91,0r-223,1150v-71,237,-330,464,-612,464v-277,0,-478,-233,-422,-522r212,-1092r91,0r-212,1092v-52,237,120,431,348,431v245,0,473,-215,515,-431xm1253,-1855r-282,187r-84,0r200,-187r166,0","w":1345},"\u00db":{"d":"1415,-1600r91,0r-223,1150v-71,237,-330,464,-612,464v-277,0,-478,-233,-422,-522r212,-1092r91,0r-212,1092v-52,237,120,431,348,431v245,0,473,-215,515,-431xm1079,-1842r193,234r-104,0r-158,-143r-204,143r-105,0r274,-234r104,0","w":1345},"\u00dc":{"d":"1415,-1600r91,0r-223,1150v-71,237,-330,464,-612,464v-277,0,-478,-233,-422,-522r212,-1092r91,0r-212,1092v-52,237,120,431,348,431v245,0,473,-215,515,-431xm812,-1812v58,-50,155,-20,141,63v-11,67,-114,126,-165,64v-33,-40,-10,-98,24,-127xm1112,-1812v58,-50,155,-20,141,63v-11,67,-114,126,-165,64v-33,-40,-10,-98,24,-127","w":1345},"\u00dd":{"d":"726,-647r-365,-953r103,0r326,853r659,-853r103,0r-736,953r-126,647r-90,0xm1226,-1855r-282,187r-84,0r200,-187r166,0"},"\u00de":{"d":"827,-1323v241,27,413,249,363,522v-48,264,-327,527,-624,523r-272,0r-54,278r-90,0r311,-1600r90,0r-54,277r330,0xm312,-369r272,0v245,3,475,-215,515,-432v44,-238,-121,-431,-348,-431r-272,0","w":1124},"\u00e0":{"d":"882,-1071v181,0,329,90,402,228r27,-139r90,0r-191,982r-90,0r39,-200v-113,126,-311,228,-491,228v-290,0,-498,-246,-442,-549v51,-277,344,-550,656,-550xm687,-68v227,0,452,-182,517,-364r34,-178v2,-210,-166,-365,-375,-365v-258,0,-500,226,-542,454v-47,251,126,453,366,453xm864,-1287r127,187r-84,0r-209,-187r166,0","w":1360},"\u00e1":{"d":"882,-1071v181,0,329,90,402,228r27,-139r90,0r-191,982r-90,0r39,-200v-113,126,-311,228,-491,228v-290,0,-498,-246,-442,-549v51,-277,344,-550,656,-550xm687,-68v227,0,452,-182,517,-364r34,-178v2,-210,-166,-365,-375,-365v-258,0,-500,226,-542,454v-47,251,126,453,366,453xm1137,-1287r-281,187r-84,0r199,-187r166,0","w":1360},"\u00e2":{"d":"882,-1071v181,0,329,90,402,228r27,-139r90,0r-191,982r-90,0r39,-200v-113,126,-311,228,-491,228v-290,0,-498,-246,-442,-549v51,-277,344,-550,656,-550xm687,-68v227,0,452,-182,517,-364r34,-178v2,-210,-166,-365,-375,-365v-258,0,-500,226,-542,454v-47,251,126,453,366,453xm973,-1324r193,234r-104,0r-158,-143r-204,143r-105,0r274,-234r104,0","w":1360},"\u00e3":{"d":"882,-1071v181,0,329,90,402,228r27,-139r90,0r-191,982r-90,0r39,-200v-113,126,-311,228,-491,228v-290,0,-498,-246,-442,-549v51,-277,344,-550,656,-550xm687,-68v227,0,452,-182,517,-364r34,-178v2,-210,-166,-365,-375,-365v-258,0,-500,226,-542,454v-47,251,126,453,366,453xm627,-1142v43,-102,74,-158,173,-158v38,0,74,14,106,45v83,78,155,89,203,-24r69,0v-42,101,-73,158,-171,158v-38,0,-73,-15,-106,-46v-84,-77,-155,-88,-204,25r-70,0","w":1360},"\u00e4":{"d":"882,-1071v181,0,329,90,402,228r27,-139r90,0r-191,982r-90,0r39,-200v-113,126,-311,228,-491,228v-290,0,-498,-246,-442,-549v51,-277,344,-550,656,-550xm687,-68v227,0,452,-182,517,-364r34,-178v2,-210,-166,-365,-375,-365v-258,0,-500,226,-542,454v-47,251,126,453,366,453xm708,-1304v58,-51,154,-19,141,63v-11,67,-114,126,-165,64v-33,-40,-10,-98,24,-127xm1008,-1304v58,-51,154,-19,141,63v-11,67,-114,126,-165,64v-33,-40,-10,-98,24,-127","w":1360},"\u00e5":{"d":"687,-68v227,0,452,-182,517,-364r34,-178v2,-210,-166,-365,-375,-365v-258,0,-500,226,-542,454v-47,251,126,453,366,453xm954,-1179v11,-50,-55,-78,-90,-41v-38,23,-33,98,22,98v31,0,62,-29,68,-57xm1159,-200v-113,126,-311,228,-491,228v-290,0,-499,-246,-442,-549v50,-264,314,-522,597,-547v-34,-17,-57,-62,-49,-111v14,-90,157,-174,226,-87v57,72,-5,170,-71,197v158,9,288,100,355,226r27,-139r90,0r-191,982r-90,0","w":1360},"\u00e6":{"d":"1203,-610v-3,-224,-164,-365,-375,-365v-258,0,-500,226,-542,454v-47,251,126,453,366,453v230,0,444,-169,517,-364xm2102,-663v-21,-185,-175,-312,-369,-312v-149,0,-311,85,-405,188r-24,124r798,0xm847,-1071v181,0,329,90,402,228r27,-139r90,0r-11,54v220,-184,580,-203,755,18v76,95,103,208,82,338r-906,-1r-61,317v61,112,183,188,332,188v146,0,303,-79,399,-181r90,34v-15,19,-45,45,-87,82v-216,191,-570,230,-762,18r-22,115r-90,0r39,-200v-113,126,-311,228,-491,228v-290,0,-498,-246,-442,-549v51,-277,344,-550,656,-550","w":2171},"\u00e7":{"d":"652,-68v140,0,288,-71,386,-168r88,34v-105,117,-283,223,-447,228r-9,16v93,4,143,13,128,84v-19,87,-100,141,-212,134v-34,-2,-60,-10,-78,-23r49,-37v59,16,150,-3,142,-70v-31,-44,-84,-33,-155,-29r59,-74v-270,-5,-467,-255,-412,-549v52,-276,344,-549,656,-549v183,0,329,92,404,229r-102,35v-64,-105,-180,-168,-321,-168v-257,0,-499,226,-541,453v-46,250,126,454,365,454","w":1177},"\u00e8":{"d":"1126,-202v-113,127,-312,230,-493,230v-290,0,-499,-246,-442,-550v51,-276,344,-549,656,-549v162,0,296,70,371,179r-845,708v69,77,162,116,279,116v140,0,288,-71,386,-168xm1083,-885v-168,-144,-434,-103,-601,43v-104,91,-170,195,-195,320v-20,103,-8,194,37,272xm830,-1287r127,187r-84,0r-209,-187r166,0","w":1266},"\u00e9":{"d":"1126,-202v-113,127,-312,230,-493,230v-290,0,-499,-246,-442,-550v51,-276,344,-549,656,-549v162,0,296,70,371,179r-845,708v69,77,162,116,279,116v140,0,288,-71,386,-168xm1083,-885v-168,-144,-434,-103,-601,43v-104,91,-170,195,-195,320v-20,103,-8,194,37,272xm1102,-1287r-281,187r-84,0r199,-187r166,0","w":1266},"\u00ea":{"d":"1126,-202v-113,127,-312,230,-493,230v-290,0,-499,-246,-442,-550v51,-276,344,-549,656,-549v162,0,296,70,371,179r-845,708v69,77,162,116,279,116v140,0,288,-71,386,-168xm1083,-885v-168,-144,-434,-103,-601,43v-104,91,-170,195,-195,320v-20,103,-8,194,37,272xm939,-1324r193,234r-104,0r-158,-143r-204,143r-105,0r274,-234r104,0","w":1266},"\u00eb":{"d":"1126,-202v-113,127,-312,230,-493,230v-290,0,-499,-246,-442,-550v51,-276,344,-549,656,-549v162,0,296,70,371,179r-845,708v69,77,162,116,279,116v140,0,288,-71,386,-168xm1083,-885v-168,-144,-434,-103,-601,43v-104,91,-170,195,-195,320v-20,103,-8,194,37,272xm672,-1304v58,-51,155,-19,142,63v-11,67,-115,126,-166,64v-33,-40,-10,-98,24,-127xm972,-1304v58,-51,155,-19,142,63v-11,67,-115,126,-166,64v-33,-40,-10,-98,24,-127","w":1266},"\u00ec":{"d":"451,-982r-191,982r-90,0r191,-982r90,0xm342,-1287r127,187r-84,0r-209,-187r166,0","w":430},"\u00ed":{"d":"451,-982r-191,982r-90,0r191,-982r90,0xm754,-1287r-281,187r-84,0r199,-187r166,0","w":430},"\u00ee":{"d":"451,-982r-191,982r-90,0r191,-982r90,0xm520,-1324r193,234r-104,0r-158,-143r-204,143r-105,0r274,-234r104,0","w":430},"\u00ef":{"d":"451,-982r-191,982r-90,0r191,-982r90,0xm255,-1304v58,-50,155,-20,141,63v-11,67,-115,126,-166,64v-33,-40,-9,-98,25,-127xm555,-1304v58,-50,155,-20,141,63v-11,67,-115,126,-166,64v-33,-40,-9,-98,25,-127","w":430},"\u00f1":{"d":"711,-951v-129,0,-268,98,-323,188r-148,763r-90,0r191,-982r90,0r-12,63v97,-81,200,-122,309,-122v221,0,365,159,321,384r-128,657r-90,0r126,-649v36,-165,-88,-302,-246,-302xm495,-1142v43,-101,75,-158,173,-158v38,0,73,15,106,45v83,79,155,88,204,-24r69,0v-42,101,-74,158,-172,158v-38,0,-73,-15,-106,-46v-84,-77,-155,-88,-204,25r-70,0","w":1071},"\u00f2":{"d":"428,-910v224,-196,591,-230,776,0v86,107,111,236,85,389v-47,277,-343,549,-656,549v-290,0,-505,-247,-442,-549v32,-152,111,-279,237,-389xm828,-975v-258,0,-500,226,-542,454v-47,251,126,453,366,453v258,0,500,-225,542,-453v47,-251,-127,-454,-366,-454xm836,-1287r127,187r-84,0r-209,-187r166,0","w":1278},"\u00f3":{"d":"428,-910v224,-196,591,-230,776,0v86,107,111,236,85,389v-47,277,-343,549,-656,549v-290,0,-505,-247,-442,-549v32,-152,111,-279,237,-389xm828,-975v-258,0,-500,226,-542,454v-47,251,126,453,366,453v258,0,500,-225,542,-453v47,-251,-127,-454,-366,-454xm1108,-1287r-281,187r-84,0r199,-187r166,0","w":1278},"\u00f4":{"d":"428,-910v224,-196,591,-230,776,0v86,107,111,236,85,389v-47,277,-343,549,-656,549v-290,0,-505,-247,-442,-549v32,-152,111,-279,237,-389xm828,-975v-258,0,-500,226,-542,454v-47,251,126,453,366,453v258,0,500,-225,542,-453v47,-251,-127,-454,-366,-454xm945,-1324r193,234r-104,0r-158,-143r-204,143r-105,0r274,-234r104,0","w":1278},"\u00f5":{"d":"428,-910v224,-196,591,-230,776,0v86,107,111,236,85,389v-47,277,-343,549,-656,549v-290,0,-505,-247,-442,-549v32,-152,111,-279,237,-389xm828,-975v-258,0,-500,226,-542,454v-47,251,126,453,366,453v258,0,500,-225,542,-453v47,-251,-127,-454,-366,-454xm599,-1142v43,-102,74,-158,173,-158v38,0,74,14,106,45v83,78,155,89,203,-24r69,0v-42,101,-73,158,-171,158v-38,0,-73,-15,-106,-46v-84,-77,-155,-88,-204,25r-70,0","w":1278},"\u00f6":{"d":"428,-910v224,-196,591,-230,776,0v86,107,111,236,85,389v-47,277,-343,549,-656,549v-290,0,-505,-247,-442,-549v32,-152,111,-279,237,-389xm828,-975v-258,0,-500,226,-542,454v-47,251,126,453,366,453v258,0,500,-225,542,-453v47,-251,-127,-454,-366,-454xm678,-1304v58,-51,155,-19,142,63v-11,67,-115,126,-166,64v-33,-40,-10,-98,24,-127xm978,-1304v58,-51,155,-19,142,63v-11,67,-115,126,-166,64v-33,-40,-10,-98,24,-127","w":1278},"\u00f7":{"d":"125,-659r800,0r0,90r-800,0r0,-90xm525,-903v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm525,-503v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":1050},"\u00f8":{"d":"1009,-937v-323,-144,-673,136,-723,415v-27,152,24,290,118,369xm1077,-891r-605,783v321,144,672,-135,722,-414v27,-151,-23,-291,-117,-369xm340,-70v-116,-94,-183,-266,-149,-452v62,-340,490,-683,883,-498r163,-212r71,41r-167,216v118,93,182,266,148,453v-51,276,-343,549,-656,549v-86,0,-161,-17,-225,-52r-165,213r-71,-38","w":1278,"k":{"\u00ab":36,"-":-38}},"\u00f9":{"d":"856,-95v-148,135,-454,153,-575,0v-59,-73,-81,-165,-59,-275r120,-614r90,0r-118,606v-35,170,89,302,255,302v170,0,335,-151,364,-302r118,-606r90,0r-120,614v-23,111,-81,199,-165,275xm747,-1287r126,187r-84,0r-208,-187r166,0","w":1099},"\u00fa":{"d":"856,-95v-148,135,-454,153,-575,0v-59,-73,-81,-165,-59,-275r120,-614r90,0r-118,606v-35,170,89,302,255,302v170,0,335,-151,364,-302r118,-606r90,0r-120,614v-23,111,-81,199,-165,275xm1020,-1287r-282,187r-84,0r200,-187r166,0","w":1099},"\u00fb":{"d":"856,-95v-148,135,-454,153,-575,0v-59,-73,-81,-165,-59,-275r120,-614r90,0r-118,606v-35,170,89,302,255,302v170,0,335,-151,364,-302r118,-606r90,0r-120,614v-23,111,-81,199,-165,275xm856,-1324r192,234r-104,0r-158,-143r-204,143r-105,0r275,-234r104,0","w":1099},"\u00fc":{"d":"856,-95v-148,135,-454,153,-575,0v-59,-73,-81,-165,-59,-275r120,-614r90,0r-118,606v-35,170,89,302,255,302v170,0,335,-151,364,-302r118,-606r90,0r-120,614v-23,111,-81,199,-165,275xm590,-1304v58,-51,156,-19,142,63v-11,66,-114,126,-166,64v-33,-40,-9,-98,24,-127xm890,-1304v58,-51,156,-19,142,63v-11,66,-114,126,-166,64v-33,-40,-9,-98,24,-127","w":1099},"\u00fd":{"d":"520,-88r-312,463r-88,0r373,-556r-227,-801r102,0r189,704r463,-704r101,0r-601,895r0,-1xm972,-1287r-281,187r-84,0r199,-187r166,0","w":1005},"\u00fe":{"d":"298,-409v10,196,172,342,375,342v258,0,500,-226,542,-454v47,-251,-126,-454,-366,-454v-218,0,-471,159,-507,342xm654,28v-178,0,-323,-87,-398,-222r-107,552r-90,0r342,-1758r90,0r-107,551v113,-124,308,-221,484,-221v291,0,499,245,442,549v-51,276,-343,549,-656,549","w":1334},"\u00ff":{"d":"520,-88r-312,463r-88,0r373,-556r-227,-801r102,0r189,704r463,-704r101,0r-601,895r0,-1xm542,-1304v58,-51,155,-19,142,63v-11,67,-115,126,-166,64v-33,-40,-10,-98,24,-127xm842,-1304v58,-51,155,-19,142,63v-11,67,-115,126,-166,64v-33,-40,-10,-98,24,-127","w":1005},"\u0131":{"d":"451,-982r-191,982r-90,0r191,-982r90,0","w":430},"\u00aa":{"d":"314,-944r575,0r-6,31r-606,0r122,-628r31,0xm618,-1520v118,-101,318,-112,396,18r11,-55r55,0r-94,486r-55,0r16,-85v-97,106,-309,144,-405,18v-95,-126,-26,-295,76,-382xm730,-1116v106,0,214,-85,243,-170r16,-85v1,-97,-78,-171,-176,-171v-172,0,-336,208,-222,364v31,43,80,62,139,62","w":878},"\u00ba":{"d":"745,-1116v143,0,248,-95,270,-213v23,-127,-56,-213,-187,-213v-144,0,-249,97,-270,213v-23,126,54,213,187,213xm956,-1138v-113,101,-326,118,-414,0v-146,-197,66,-462,283,-462v166,0,278,109,247,271v-15,75,-54,136,-116,191xm314,-944r575,0r-6,31r-606,0r122,-628r31,0","w":914},"\u00f0":{"d":"828,-975v-258,0,-500,226,-542,454v-47,251,126,453,366,453v258,0,500,-225,542,-453v47,-251,-127,-454,-366,-454xm1146,-971v114,95,177,265,143,450v-51,276,-343,549,-656,549v-290,0,-498,-246,-442,-549v51,-277,344,-554,656,-550v22,0,43,1,64,3r-42,-60r-168,0r18,-90r87,0r-82,-115r128,0r93,115r164,0r-18,90r-73,0","w":1278},"\u0100":{"d":"1027,-703r-114,-671r-374,671r488,0xm1042,-613r-554,0r-342,613r-96,0r914,-1637r277,1637r-95,0xm690,-1745r590,0r-13,70r-590,0"},"\u0101":{"d":"882,-1071v181,0,329,90,402,228r27,-139r90,0r-191,982r-90,0r39,-200v-113,126,-311,228,-491,228v-290,0,-498,-246,-442,-549v51,-277,344,-550,656,-550xm687,-68v227,0,452,-182,517,-364r34,-178v2,-210,-166,-365,-375,-365v-258,0,-500,226,-542,454v-47,251,126,453,366,453xm611,-1227r590,0r-13,70r-590,0","w":1360},"\u0102":{"d":"1027,-703r-114,-671r-374,671r488,0xm1042,-613r-554,0r-342,613r-96,0r914,-1637r277,1637r-95,0xm1241,-1856v-28,107,-148,212,-275,212v-118,0,-211,-100,-195,-212r74,0v-5,80,57,139,135,139v84,0,167,-69,188,-139r73,0"},"\u0103":{"d":"882,-1071v181,0,329,90,402,228r27,-139r90,0r-191,982r-90,0r39,-200v-113,126,-311,228,-491,228v-290,0,-498,-246,-442,-549v51,-277,344,-550,656,-550xm687,-68v227,0,452,-182,517,-364r34,-178v2,-210,-166,-365,-375,-365v-258,0,-500,226,-542,454v-47,251,126,453,366,453xm1162,-1338v-28,107,-148,212,-275,212v-118,0,-211,-100,-195,-212r74,0v-4,80,57,139,135,139v84,0,168,-69,188,-139r73,0","w":1360},"\u0106":{"d":"1476,-255r56,61v-183,142,-381,213,-592,213v-434,0,-755,-367,-660,-819v47,-225,161,-419,352,-579v191,-160,399,-240,626,-240v211,0,381,71,510,213r-80,62v-114,-122,-263,-183,-448,-183v-201,0,-386,71,-555,213v-169,142,-271,314,-313,514v-85,401,202,728,586,728v185,0,357,-61,518,-183xm1539,-1855r-281,187r-84,0r199,-187r166,0","w":1595},"\u0107":{"d":"652,-68v140,0,288,-71,386,-168r88,34v-113,127,-312,230,-493,230v-290,0,-499,-246,-442,-550v51,-276,344,-549,656,-549v183,0,329,92,404,229r-102,35v-64,-105,-180,-168,-321,-168v-257,0,-499,226,-541,453v-46,250,126,454,365,454xm1128,-1287r-281,187r-84,0r199,-187r166,0","w":1177},"\u0108":{"d":"1476,-255r56,61v-183,142,-381,213,-592,213v-434,0,-755,-367,-660,-819v47,-225,161,-419,352,-579v191,-160,399,-240,626,-240v211,0,381,71,510,213r-80,62v-114,-122,-263,-183,-448,-183v-201,0,-386,71,-555,213v-169,142,-271,314,-313,514v-85,401,202,728,586,728v185,0,357,-61,518,-183xm1366,-1892r193,234r-104,0r-158,-143r-204,143r-105,0r274,-234r104,0","w":1595},"\u0109":{"d":"652,-68v140,0,288,-71,386,-168r88,34v-113,127,-312,230,-493,230v-290,0,-499,-246,-442,-550v51,-276,344,-549,656,-549v183,0,329,92,404,229r-102,35v-64,-105,-180,-168,-321,-168v-257,0,-499,226,-541,453v-46,250,126,454,365,454xm944,-1324r193,234r-104,0r-158,-143r-204,143r-105,0r274,-234r104,0","w":1177},"\u010a":{"d":"1476,-255r56,61v-183,142,-381,213,-592,213v-434,0,-755,-367,-660,-819v47,-225,161,-419,352,-579v191,-160,399,-240,626,-240v211,0,381,71,510,213r-80,62v-114,-122,-263,-183,-448,-183v-201,0,-386,71,-555,213v-169,142,-271,314,-313,514v-85,401,202,728,586,728v185,0,357,-61,518,-183xm1242,-1802v49,-43,133,-17,120,54v-10,56,-96,106,-140,54v-29,-34,-8,-83,20,-108","w":1595},"\u010b":{"d":"652,-68v140,0,288,-71,386,-168r88,34v-113,127,-312,230,-493,230v-290,0,-499,-246,-442,-550v51,-276,344,-549,656,-549v183,0,329,92,404,229r-102,35v-64,-105,-180,-168,-321,-168v-257,0,-499,226,-541,453v-46,250,126,454,365,454xm824,-1281v49,-43,132,-16,120,53v-10,56,-98,108,-142,54v-28,-34,-6,-82,22,-107","w":1177},"\u010c":{"d":"1476,-255r56,61v-183,142,-381,213,-592,213v-434,0,-755,-367,-660,-819v47,-225,161,-419,352,-579v191,-160,399,-240,626,-240v211,0,381,71,510,213r-80,62v-114,-122,-263,-183,-448,-183v-201,0,-386,71,-555,213v-169,142,-271,314,-313,514v-85,401,202,728,586,728v185,0,357,-61,518,-183xm1197,-1658r-184,-234r105,0r149,143r213,-143r104,0r-283,234r-104,0","w":1595},"\u010d":{"d":"652,-68v140,0,288,-71,386,-168r88,34v-113,127,-312,230,-493,230v-290,0,-499,-246,-442,-550v51,-276,344,-549,656,-549v183,0,329,92,404,229r-102,35v-64,-105,-180,-168,-321,-168v-257,0,-499,226,-541,453v-46,250,126,454,365,454xm795,-1090r-184,-234r105,0r148,143r214,-143r104,0r-283,234r-104,0","w":1177},"\u0110":{"d":"374,-845r147,-755v32,1,67,2,97,2v263,0,453,73,569,218v129,161,172,354,128,580v-83,429,-472,814,-1014,798v-25,6,-62,0,-91,2r147,-755r-160,0r17,-90r160,0xm464,-845r370,0r-17,90r-370,0r-129,662v488,15,830,-324,905,-707v39,-201,1,-372,-113,-515v-104,-129,-276,-192,-517,-191","w":1284},"\u0111":{"d":"687,-68v227,0,452,-182,517,-364r34,-178v2,-210,-166,-365,-375,-365v-258,0,-500,226,-542,454v-47,251,126,453,366,453xm882,-1071v181,0,329,90,402,228r85,-440r-291,0r18,-90r291,0r44,-227r90,0r-44,227r99,0r-18,90r-99,0r-249,1283r-90,0r39,-200v-113,126,-311,228,-491,228v-290,0,-498,-246,-442,-549v51,-277,344,-550,656,-550","w":1360},"\u0112":{"d":"1261,-1600r-17,90r-710,0r-130,665r710,0r-17,90r-710,0r-130,665r710,0r-17,90r-800,0r311,-1600r800,0xm596,-1755r590,0r-13,70r-590,0","w":1075},"\u0113":{"d":"1126,-202v-113,127,-312,230,-493,230v-290,0,-499,-246,-442,-550v51,-276,344,-549,656,-549v162,0,296,70,371,179r-845,708v69,77,162,116,279,116v140,0,288,-71,386,-168xm1083,-885v-168,-144,-434,-103,-601,43v-104,91,-170,195,-195,320v-20,103,-8,194,37,272xm576,-1227r590,0r-13,70r-590,0","w":1266},"\u0114":{"d":"1261,-1600r-17,90r-710,0r-130,665r710,0r-17,90r-710,0r-130,665r710,0r-17,90r-800,0r311,-1600r800,0xm1146,-1856v-28,107,-148,212,-275,212v-118,0,-211,-100,-195,-212r74,0v-5,80,57,139,135,139v84,0,167,-69,188,-139r73,0","w":1075},"\u0115":{"d":"1126,-202v-113,127,-312,230,-493,230v-290,0,-499,-246,-442,-550v51,-276,344,-549,656,-549v162,0,296,70,371,179r-845,708v69,77,162,116,279,116v140,0,288,-71,386,-168xm1083,-885v-168,-144,-434,-103,-601,43v-104,91,-170,195,-195,320v-20,103,-8,194,37,272xm1128,-1338v-28,107,-148,212,-275,212v-118,0,-211,-100,-195,-212r74,0v-4,80,57,139,135,139v84,0,168,-69,188,-139r73,0","w":1266},"\u0116":{"d":"1261,-1600r-17,90r-710,0r-130,665r710,0r-17,90r-710,0r-130,665r710,0r-17,90r-800,0r311,-1600r800,0xm847,-1802v49,-43,132,-17,120,54v-9,56,-98,107,-141,54v-28,-34,-8,-83,21,-108","w":1075},"\u0117":{"d":"1126,-202v-113,127,-312,230,-493,230v-290,0,-499,-246,-442,-550v51,-276,344,-549,656,-549v162,0,296,70,371,179r-845,708v69,77,162,116,279,116v140,0,288,-71,386,-168xm1083,-885v-168,-144,-434,-103,-601,43v-104,91,-170,195,-195,320v-20,103,-8,194,37,272xm828,-1281v49,-43,133,-17,120,54v-10,56,-96,106,-140,54v-29,-34,-8,-83,20,-108","w":1266},"\u0118":{"d":"835,85v-11,115,-203,209,-291,100v-42,-52,-33,-137,2,-185r-396,0r311,-1600r800,0r-17,90r-710,0r-130,665r710,0r-17,90r-710,0r-130,665r710,0r-17,90r-344,0v-25,48,-44,96,-10,140v16,20,38,30,66,30v69,-2,103,-46,123,-106","w":1075},"\u0119":{"d":"1197,-663v-21,-185,-175,-312,-369,-312v-206,0,-417,156,-493,312r862,0xm878,86v-10,116,-204,207,-292,100v-35,-43,-36,-112,-11,-161v-253,-18,-437,-262,-384,-546v52,-277,344,-550,656,-550v271,0,490,217,440,499r-988,-1v-41,132,-24,275,58,373v73,87,170,132,295,132v146,0,303,-79,399,-181r90,34v-15,19,-44,46,-87,82v-127,107,-267,160,-418,161v-38,62,-1,147,69,143v69,-4,103,-46,122,-107","w":1266},"\u011a":{"d":"1261,-1600r-17,90r-710,0r-130,665r710,0r-17,90r-710,0r-130,665r710,0r-17,90r-800,0r311,-1600r800,0xm817,-1658r-183,-234r105,0r148,143r214,-143r104,0r-284,234r-104,0","w":1075},"\u011b":{"d":"1126,-202v-113,127,-312,230,-493,230v-290,0,-499,-246,-442,-550v51,-276,344,-549,656,-549v162,0,296,70,371,179r-845,708v69,77,162,116,279,116v140,0,288,-71,386,-168xm1083,-885v-168,-144,-434,-103,-601,43v-104,91,-170,195,-195,320v-20,103,-8,194,37,272xm790,-1090r-184,-234r105,0r148,143r214,-143r104,0r-283,234r-104,0","w":1266},"\u011c":{"d":"1527,-199v-180,145,-376,218,-587,218v-434,0,-755,-367,-660,-819v47,-225,161,-419,352,-579v191,-160,399,-240,626,-240v211,0,381,71,510,213r-80,62v-114,-122,-263,-183,-448,-183v-201,0,-386,71,-555,213v-169,142,-271,314,-313,514v-85,401,202,728,586,728v172,0,334,-53,485,-159r95,-488r90,0xm1346,-1892r193,234r-104,0r-158,-143r-204,143r-105,0r274,-234r104,0","w":1620},"\u011d":{"d":"1238,-615v-1,-207,-167,-360,-375,-360v-258,0,-500,226,-542,454v-47,251,126,454,366,454v224,0,477,-169,514,-358xm301,56v65,104,179,168,320,168v245,0,488,-209,534,-419v-114,123,-309,223,-487,223v-290,0,-498,-246,-442,-549v51,-277,344,-549,656,-549v181,0,329,89,402,227r27,-139r90,0r-149,763v-42,274,-342,539,-649,539v-183,0,-330,-92,-404,-230xm973,-1324r193,234r-104,0r-158,-143r-204,143r-105,0r274,-234r104,0","w":1364},"\u011e":{"d":"1527,-199v-180,145,-376,218,-587,218v-434,0,-755,-367,-660,-819v47,-225,161,-419,352,-579v191,-160,399,-240,626,-240v211,0,381,71,510,213r-80,62v-114,-122,-263,-183,-448,-183v-201,0,-386,71,-555,213v-169,142,-271,314,-313,514v-85,401,202,728,586,728v172,0,334,-53,485,-159r95,-488r90,0xm1535,-1856v-27,108,-148,212,-275,212v-118,0,-210,-101,-195,-212r74,0v-3,79,56,139,135,139v83,0,168,-68,188,-139r73,0","w":1620},"\u011f":{"d":"1238,-615v-1,-207,-167,-360,-375,-360v-258,0,-500,226,-542,454v-47,251,126,454,366,454v224,0,477,-169,514,-358xm301,56v65,104,179,168,320,168v245,0,488,-209,534,-419v-114,123,-309,223,-487,223v-290,0,-498,-246,-442,-549v51,-277,344,-549,656,-549v181,0,329,89,402,227r27,-139r90,0r-149,763v-42,274,-342,539,-649,539v-183,0,-330,-92,-404,-230xm1163,-1338v-28,107,-148,212,-275,212v-118,0,-211,-100,-195,-212r74,0v-4,80,57,139,135,139v84,0,168,-69,188,-139r73,0","w":1364},"\u0120":{"d":"1527,-199v-180,145,-376,218,-587,218v-434,0,-755,-367,-660,-819v47,-225,161,-419,352,-579v191,-160,399,-240,626,-240v211,0,381,71,510,213r-80,62v-114,-122,-263,-183,-448,-183v-201,0,-386,71,-555,213v-169,142,-271,314,-313,514v-85,401,202,728,586,728v172,0,334,-53,485,-159r95,-488r90,0xm1236,-1802v49,-43,133,-17,120,54v-10,56,-96,106,-140,54v-29,-34,-8,-83,20,-108","w":1620},"\u0121":{"d":"1238,-615v-1,-207,-167,-360,-375,-360v-258,0,-500,226,-542,454v-47,251,126,454,366,454v224,0,477,-169,514,-358xm301,56v65,104,179,168,320,168v245,0,488,-209,534,-419v-114,123,-309,223,-487,223v-290,0,-498,-246,-442,-549v51,-277,344,-549,656,-549v181,0,329,89,402,227r27,-139r90,0r-149,763v-42,274,-342,539,-649,539v-183,0,-330,-92,-404,-230xm862,-1281v49,-43,133,-17,120,54v-10,56,-96,106,-140,54v-29,-34,-8,-83,20,-108","w":1364},"\u012c":{"d":"566,-1600r-311,1600r-90,0r311,-1600r90,0xm806,-1856v-28,107,-148,212,-275,212v-118,0,-211,-100,-195,-212r74,0v-5,80,57,139,135,139v84,0,167,-69,188,-139r73,0","w":420},"\u012d":{"d":"446,-982r-191,982r-90,0r191,-982r90,0xm686,-1238v-28,107,-149,212,-276,212v-118,0,-209,-101,-194,-212r74,0v-5,80,57,139,135,139v84,0,167,-69,188,-139r73,0","w":420},"\u013f":{"d":"150,0r311,-1600r90,0r-294,1510r620,0r-17,90r-710,0xm850,-854v49,-43,132,-16,120,54v-10,56,-98,107,-142,54v-28,-34,-6,-83,22,-108","w":950},"\u0140":{"d":"551,-1600r-311,1600r-90,0r311,-1600r90,0xm528,-854v49,-43,133,-16,121,54v-10,56,-97,107,-141,54v-28,-34,-8,-83,20,-108","w":593},"\u0143":{"d":"461,-1600r99,0r545,1423r277,-1423r90,0r-311,1600r-90,0r-552,-1437r-279,1437r-90,0xm1226,-1805r-281,187r-84,0r199,-187r166,0","w":1311},"\u0144":{"d":"711,-951v-129,0,-268,98,-323,188r-148,763r-90,0r191,-982r90,0r-12,63v97,-81,200,-122,309,-122v221,0,365,159,321,384r-128,657r-90,0r126,-649v36,-165,-88,-302,-246,-302xm1005,-1287r-281,187r-84,0r199,-187r166,0","w":1071},"\u0147":{"d":"461,-1600r99,0r545,1423r277,-1423r90,0r-311,1600r-90,0r-552,-1437r-279,1437r-90,0xm913,-1608r-184,-234r105,0r148,143r214,-143r104,0r-283,234r-104,0","w":1311},"\u0148":{"d":"711,-951v-129,0,-268,98,-323,188r-148,763r-90,0r191,-982r90,0r-12,63v97,-81,200,-122,309,-122v221,0,365,159,321,384r-128,657r-90,0r126,-649v36,-165,-88,-302,-246,-302xm692,-1090r-184,-234r105,0r149,143r213,-143r104,0r-283,234r-104,0","w":1071},"\u014c":{"d":"1262,-1623v434,0,755,369,661,821v-47,226,-162,420,-353,580v-191,160,-400,241,-627,241v-434,0,-757,-369,-662,-821v47,-226,161,-420,353,-580v192,-160,401,-241,628,-241xm1244,-1531v-201,0,-387,71,-557,213v-170,142,-272,315,-314,516v-85,401,202,730,587,730v201,0,387,-71,557,-214v170,-143,272,-315,314,-516v85,-402,-202,-729,-587,-729xm990,-1745r590,0r-13,70r-590,0","w":1892},"\u014d":{"d":"428,-910v224,-196,591,-230,776,0v86,107,111,236,85,389v-47,277,-343,549,-656,549v-290,0,-505,-247,-442,-549v32,-152,111,-279,237,-389xm828,-975v-258,0,-500,226,-542,454v-47,251,126,453,366,453v258,0,500,-225,542,-453v47,-251,-127,-454,-366,-454xm577,-1199r590,0r-14,70r-590,0","w":1278},"\u014e":{"d":"1262,-1623v434,0,755,369,661,821v-47,226,-162,420,-353,580v-191,160,-400,241,-627,241v-434,0,-757,-369,-662,-821v47,-226,161,-420,353,-580v192,-160,401,-241,628,-241xm1244,-1531v-201,0,-387,71,-557,213v-170,142,-272,315,-314,516v-85,401,202,730,587,730v201,0,387,-71,557,-214v170,-143,272,-315,314,-516v85,-402,-202,-729,-587,-729xm1542,-1856v-28,107,-148,212,-275,212v-118,0,-211,-100,-195,-212r74,0v-4,80,57,139,135,139v84,0,168,-69,188,-139r73,0","w":1892},"\u014f":{"d":"428,-910v224,-196,591,-230,776,0v86,107,111,236,85,389v-47,277,-343,549,-656,549v-290,0,-505,-247,-442,-549v32,-152,111,-279,237,-389xm828,-975v-258,0,-500,226,-542,454v-47,251,126,453,366,453v258,0,500,-225,542,-453v47,-251,-127,-454,-366,-454xm1134,-1338v-28,107,-148,212,-275,212v-118,0,-211,-100,-195,-212r74,0v-4,80,57,139,135,139v84,0,168,-69,188,-139r73,0","w":1278},"\u0150":{"d":"1262,-1623v434,0,755,369,661,821v-47,226,-162,420,-353,580v-191,160,-400,241,-627,241v-434,0,-757,-369,-662,-821v47,-226,161,-420,353,-580v192,-160,401,-241,628,-241xm1244,-1531v-201,0,-387,71,-557,213v-170,142,-272,315,-314,516v-85,401,202,730,587,730v201,0,387,-71,557,-214v170,-143,272,-315,314,-516v85,-402,-202,-729,-587,-729xm1413,-1836r-281,187r-84,0r199,-187r166,0xm1642,-1836r-281,187r-84,0r199,-187r166,0","w":1892},"\u0151":{"d":"428,-910v224,-196,591,-230,776,0v86,107,111,236,85,389v-47,277,-343,549,-656,549v-290,0,-505,-247,-442,-549v32,-152,111,-279,237,-389xm828,-975v-258,0,-500,226,-542,454v-47,251,126,453,366,453v258,0,500,-225,542,-453v47,-251,-127,-454,-366,-454xm995,-1268r-281,187r-84,0r199,-187r166,0xm1224,-1268r-281,187r-84,0r199,-187r166,0","w":1278},"\u0152":{"d":"1624,-1510v187,124,324,387,271,665r439,0r-17,90r-439,0v-60,277,-286,531,-536,665r846,0r-18,90r-1000,0v-83,13,-170,19,-262,19v-434,0,-757,-369,-662,-821v47,-226,162,-420,354,-580v255,-213,514,-218,881,-218r1000,0r-17,90r-840,0xm1786,-755v52,-207,23,-411,-103,-563v-105,-126,-252,-212,-474,-213v-201,0,-387,71,-557,213v-170,142,-272,315,-314,516v-85,401,202,740,587,730v240,-6,417,-95,558,-214v156,-131,258,-288,303,-469","w":2295},"\u0153":{"d":"828,-975v-258,0,-500,226,-542,454v-47,251,126,453,366,453v258,0,500,-225,542,-453v47,-251,-127,-454,-366,-454xm2058,-663v-21,-185,-175,-312,-369,-312v-153,0,-318,89,-412,196v13,37,20,75,23,116r758,0xm1297,-573v-15,125,-54,217,-121,310v62,114,183,195,337,195v146,0,303,-79,399,-181r90,34v-15,19,-44,46,-87,82v-129,107,-269,161,-421,161v-172,0,-312,-80,-389,-208v-117,119,-301,208,-472,208v-290,0,-498,-246,-442,-549v51,-277,344,-550,656,-550v173,0,313,80,391,208v115,-119,301,-208,470,-208v271,0,490,217,440,499","w":2127},"\u0178":{"d":"726,-647r-365,-953r103,0r326,853r659,-853r103,0r-736,953r-126,647r-90,0xm786,-1822v58,-51,155,-19,142,63v-11,66,-115,126,-166,64v-33,-40,-10,-98,24,-127xm1086,-1822v58,-51,155,-19,142,63v-11,66,-115,126,-166,64v-33,-40,-10,-98,24,-127"},"\u1ef2":{"d":"726,-647r-365,-953r103,0r326,853r659,-853r103,0r-736,953r-126,647r-90,0xm943,-1805r126,187r-84,0r-208,-187r166,0"},"\u1ef3":{"d":"520,-88r-312,463r-88,0r373,-556r-227,-801r102,0r189,704r463,-704r101,0r-601,895r0,-1xm699,-1287r127,187r-84,0r-209,-187r166,0","w":1005}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Caviar Dreams © Lauren Thompson (Nymphont) 2009. All rights reserved.
 * 
 * Description:
 * This font was created using FontCreator 5.6 from High-Logic.com
 * 
 * Designer:
 * Lauren Thompson
 * 
 * License information:
 * http://novelhunter.com.googlepages.com/nymphont.html
 */
Cufon.registerFont({"w":1291,"face":{"font-family":"Caviar Dreams","font-weight":300,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 2 2 2 2 4 2 5 4","ascent":"1638","descent":"-410","x-height":"27","bbox":"-74 -1892 2170 375","underline-thickness":"150","underline-position":"-142","unicode-range":"U+0020-U+1EF3"},"glyphs":{" ":{"w":708},"\u00a0":{"w":708},"!":{"d":"215,-165v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm258,-1600r0,1324r-90,0r0,-1324r90,0","w":430},"\"":{"d":"125,-997r0,-600r90,0r0,600r-90,0xm360,-997r0,-600r90,0r0,600r-90,0","w":575},"#":{"d":"763,-985r230,0r111,-445r90,0r-111,445r445,0r-23,90r-445,0r-57,230r445,0r-23,90r-445,0r-111,445r-90,0r111,-445r-230,0r-111,445r-90,0r111,-445r-445,0r23,-90r445,0r57,-230r-445,0r23,-90r445,0r111,-445r90,0xm970,-895r-230,0r-57,230r230,0","w":1653},"$":{"d":"556,-189v144,-19,270,-160,270,-319v0,-175,-138,-288,-270,-348r0,667xm466,-1413v-91,13,-171,103,-169,203v2,115,83,177,169,225r0,-428xm911,-508v0,206,-166,387,-355,406r0,140r-90,0r0,-139v-181,-10,-343,-169,-366,-344r82,-30v12,147,139,276,284,288r0,-704v-132,-57,-253,-153,-256,-319v-3,-145,120,-277,256,-289r0,-163r90,0r0,165v100,16,193,94,222,189r-78,31v-22,-63,-78,-117,-144,-133r0,464v176,67,355,214,355,438","w":1011},"%":{"d":"1107,-1314r-918,1311r-74,-51r918,-1311xm311,-1215v125,0,231,106,231,231v0,125,-106,231,-231,231v-125,0,-231,-106,-231,-231v0,-125,106,-231,231,-231xm455,-984v0,-78,-67,-144,-144,-144v-78,0,-144,66,-144,144v0,78,66,144,144,144v77,0,144,-67,144,-144xm911,-615v125,0,231,106,231,231v0,125,-106,231,-231,231v-125,0,-231,-106,-231,-231v0,-125,106,-231,231,-231xm1055,-384v0,-78,-67,-144,-144,-144v-78,0,-144,66,-144,144v0,78,66,144,144,144v77,0,144,-67,144,-144","w":1221},"&":{"d":"163,-456v0,208,178,386,386,386v169,0,321,-122,366,-261v-66,-19,-149,-132,-213,-169v-63,-36,-136,11,-136,77v0,71,57,98,136,84r-9,82v-121,29,-214,-50,-214,-166v0,-130,142,-217,265,-152v38,20,148,136,189,157v90,47,195,-16,194,-112v-1,-94,-83,-150,-182,-121r-1,-89v186,-47,335,145,241,315v-36,65,-94,103,-182,110v-52,177,-243,334,-454,334v-255,0,-474,-220,-474,-475v0,-241,172,-430,381,-493v-103,-48,-223,-160,-223,-333v0,-180,157,-337,339,-337v142,0,278,99,316,218r-81,32v-30,-86,-128,-162,-235,-162v-134,0,-249,114,-249,249v0,127,121,244,201,276v40,15,90,23,150,24r0,84r-72,2v-146,27,-256,81,-329,161v-73,80,-110,173,-110,279","w":1304},"'":{"d":"125,-997r0,-600r90,0r0,600r-90,0","w":340},"(":{"d":"603,117v-315,-120,-503,-465,-503,-917v0,-293,68,-524,204,-694v87,-110,187,-184,299,-223r0,89v-264,128,-425,421,-425,828v0,411,161,699,425,832r0,85","w":703},")":{"d":"525,-800v0,-408,-160,-699,-425,-828r0,-89v315,119,503,466,503,917v0,293,-68,524,-204,694v-88,110,-187,184,-299,223r0,-85v263,-132,425,-422,425,-832","w":703},"*":{"d":"445,-1384r174,-122r52,74r-193,135r193,135r-52,74r-174,-122r0,213r-90,0r0,-214r-175,123r-52,-74r193,-135r-193,-135r52,-74r175,123r0,-214r90,0r0,213","w":800},"+":{"d":"480,-547r-355,0r0,-90r355,0r0,-355r90,0r0,355r355,0r0,90r-355,0r0,355r-90,0r0,-355","w":1050},",":{"d":"279,-166r-185,385r-84,0r103,-385r166,0","w":379},"-":{"d":"125,-637r590,0r0,90r-590,0r0,-90","w":840},"\u00ad":{"d":"125,-637r590,0r0,90r-590,0r0,-90","w":840},".":{"d":"190,-165v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":380},"\/":{"d":"674,-1600r103,0r-725,1600r-102,0","w":727},"0":{"d":"625,-68v244,0,454,-209,454,-453r0,-530v7,-244,-210,-453,-454,-453v-244,0,-454,209,-454,453r0,530v-7,244,210,453,454,453xm625,-1600v296,0,549,254,549,549r0,530v8,295,-254,549,-549,549v-294,0,-549,-255,-549,-549r0,-530v-8,-294,255,-549,549,-549","w":1250},"1":{"d":"717,-1600r0,1600r-90,0r0,-1442r-95,0r123,-158r62,0","w":1250},"2":{"d":"622,-1622v257,0,477,221,477,478v0,131,-46,245,-137,344v-139,151,-338,281,-506,410v-105,80,-172,179,-198,300r841,0r0,90r-943,0v31,-207,103,-351,212,-434v183,-139,374,-263,528,-433v72,-80,109,-172,109,-277v0,-206,-177,-383,-383,-383v-193,0,-366,158,-380,341r-91,-33v28,-215,236,-403,471,-403","w":1250},"3":{"d":"622,-73v206,0,389,-177,383,-383v-8,-249,-188,-396,-436,-437r-75,-2r0,-90v150,-4,197,-32,282,-121v47,-49,69,-108,69,-176v0,-133,-113,-246,-246,-246v-107,0,-203,75,-233,163r-86,-34v38,-124,175,-223,319,-223v184,0,342,158,342,340v0,95,-25,170,-76,224v-51,54,-98,90,-142,108v205,62,376,255,376,494v0,257,-220,478,-477,478v-235,0,-443,-188,-471,-403r91,-33v15,183,187,341,380,341","w":1250},"4":{"d":"833,-1600r90,0r0,1042r153,0r0,90r-153,0r0,468r-90,0r0,-468r-660,0xm833,-1406r-505,848r505,0r0,-848","w":1250},"5":{"d":"181,-281v99,165,388,262,606,141v149,-83,253,-213,253,-422v0,-228,-153,-397,-337,-457v-152,-49,-295,-30,-460,21r-72,-63r184,-507r0,-32r500,0r0,90r-425,0r-148,407v125,-45,310,-56,447,-6v149,55,263,146,336,284v72,136,87,275,43,433v-74,263,-368,477,-709,376v-120,-36,-214,-101,-282,-194","w":1250},"6":{"d":"628,-975v-244,0,-454,210,-454,454v0,244,210,453,454,453v244,0,454,-209,454,-453v0,-244,-210,-454,-454,-454xm628,28v-290,0,-549,-248,-549,-532r-6,0v7,-235,63,-428,170,-577v110,-156,263,-340,423,-519r124,0r-42,50v-175,196,-314,367,-417,513v-22,31,-42,63,-59,97v101,-87,219,-131,356,-131v296,0,549,254,549,550v0,295,-254,549,-549,549","w":1250},"7":{"d":"828,-1046v-175,196,-314,367,-417,513v-103,146,-157,324,-164,533r-94,0v7,-235,63,-428,170,-577v107,-149,239,-312,396,-488v157,-176,249,-324,275,-445r-841,0r0,-90r943,0v-4,173,-93,358,-268,554","w":1250},"8":{"d":"201,-456v-4,219,186,408,425,381v238,26,423,-163,423,-381v0,-245,-183,-392,-424,-435v-242,44,-419,189,-424,435xm1143,-456v0,269,-229,505,-518,476v-291,29,-518,-208,-518,-476v0,-238,172,-432,376,-494v-44,-18,-91,-54,-142,-108v-51,-54,-76,-129,-76,-224v1,-193,162,-340,378,-340v184,0,342,158,342,340v0,95,-25,170,-76,224v-51,54,-98,90,-142,108v205,62,376,255,376,494xm889,-1282v1,-139,-117,-245,-265,-245v-147,0,-263,107,-263,245v0,126,119,241,198,273v20,7,42,13,66,17v93,-16,126,-44,195,-114v47,-48,69,-108,69,-176","w":1250},"9":{"d":"622,-597v244,0,454,-210,454,-454v0,-244,-210,-453,-454,-453v-244,0,-454,209,-454,453v0,244,210,454,454,454xm622,-1600v290,0,549,248,549,532r6,0v-7,235,-63,428,-170,577v-110,156,-263,340,-423,519r-124,0r42,-50v175,-196,314,-367,417,-513v22,-31,42,-63,59,-97v-101,87,-219,131,-356,131v-296,0,-549,-254,-549,-550v0,-295,254,-549,549,-549","w":1250},":":{"d":"215,-165v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm215,-782v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":430},";":{"d":"352,-166r-185,385r-84,0r103,-385r166,0xm215,-782v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":477},"\u037e":{"d":"352,-166r-185,385r-84,0r103,-385r166,0xm215,-782v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":477},"<":{"d":"1249,-145r-1149,-418r1149,-418r0,96r-886,322r886,322r0,96","w":1349},"=":{"d":"125,-797r800,0r0,90r-800,0r0,-90xm125,-477r800,0r0,90r-800,0r0,-90","w":1050},">":{"d":"100,-241r886,-322r-886,-322r0,-96r1149,418r-1149,418r0,-96","w":1349},"?":{"d":"467,-1540v199,0,338,138,338,339v0,49,-12,98,-35,146v-41,85,-112,159,-203,237v-115,99,-217,213,-217,395v0,43,8,86,23,129r-83,29v-44,-127,-35,-247,21,-362v53,-111,141,-200,241,-289v94,-84,162,-150,162,-286v0,-149,-103,-250,-249,-250v-147,0,-241,101,-250,246r-88,-4v12,-197,142,-330,340,-330xm326,-165v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":956},"@":{"d":"816,-269v131,0,248,-99,272,-214r0,-132v-24,-115,-141,-215,-272,-215v-151,0,-279,131,-279,282v0,150,129,279,279,279xm1204,-130v-103,-6,-128,-73,-118,-183v-81,85,-171,127,-272,127v-194,0,-364,-170,-364,-362v0,-195,169,-365,364,-365v101,0,191,42,272,127r0,-114r81,0r0,648v12,29,30,43,55,43v29,0,70,-37,122,-111v52,-74,78,-149,78,-227v0,-326,-283,-608,-608,-608v-326,0,-606,283,-606,608v0,326,281,606,606,606v115,0,198,-16,251,-49r57,60v-80,47,-183,70,-308,70v-368,0,-689,-320,-689,-687v0,-368,321,-689,689,-689v369,0,687,321,687,689v0,148,-148,426,-297,417","w":1626},"A":{"d":"890,-703r-244,-671r-244,671r488,0xm923,-613r-554,0r-223,613r-96,0r596,-1637r595,1637r-95,0","k":{"Y":291,"V":291,"T":133}},"B":{"d":"976,-551v0,283,-238,551,-516,551r-310,0r0,-1600r284,-1v159,-5,298,139,298,298v0,83,-42,160,-127,231v75,15,143,61,211,132v105,109,160,237,160,389xm881,-551v0,-244,-210,-461,-454,-454r-187,0r0,915r220,1v225,-9,421,-228,421,-462xm646,-1303v0,-118,-95,-207,-212,-207r-194,0r0,409r217,0v104,-8,189,-90,189,-202","w":1066},"C":{"d":"217,-800v0,392,336,728,727,728v185,0,346,-61,483,-183r68,61v-156,142,-340,213,-551,213v-441,0,-819,-378,-819,-819v0,-440,378,-819,819,-819v211,0,395,71,551,213r-68,62v-137,-122,-298,-183,-483,-183v-391,0,-727,337,-727,727","w":1595},"D":{"d":"240,-1506r0,1413v241,1,423,-65,554,-192v282,-271,282,-758,0,-1030v-131,-126,-313,-192,-554,-191xm150,-1600v31,1,74,2,97,2v263,0,465,76,612,218v317,307,316,853,0,1160v-166,161,-398,227,-709,220r0,-1600","w":1199},"E":{"d":"950,-1600r0,90r-710,0r0,665r710,0r0,90r-710,0r0,665r710,0r0,90r-800,0r0,-1600r800,0","w":1075},"F":{"d":"850,-1600r0,90r-610,0r0,665r610,0r0,90r-610,0r0,755r-90,0r0,-1600r700,0","w":975,"k":{".":460,",":433}},"G":{"d":"217,-800v0,392,336,728,727,728v172,0,324,-53,455,-159r0,-488r90,0r0,520v-152,145,-334,218,-545,218v-441,0,-819,-378,-819,-819v0,-440,378,-819,819,-819v211,0,395,71,551,213r-68,62v-137,-122,-298,-183,-483,-183v-391,0,-727,337,-727,727","w":1620},"H":{"d":"240,-717r0,717r-90,0r0,-1600r90,0r0,793r670,0r0,-793r90,0r0,1600r-90,0r0,-717r-670,0","w":1150},"I":{"d":"260,-1600r0,1600r-90,0r0,-1600r90,0","w":430},"J":{"d":"416,-76v110,0,196,-89,196,-213r0,-1311r90,0r0,1326v5,161,-131,288,-286,288v-149,0,-293,-135,-291,-273r89,-23v-4,113,92,206,202,206","w":857},"K":{"d":"240,-775r0,775r-90,0r0,-1600r90,0r0,681r511,-681r116,0r-480,644r620,956r-111,0r-568,-884","w":1097},"L":{"d":"150,0r0,-1600r90,0r0,1510r620,0r0,90r-710,0","w":950,"k":{"y":127,"Y":322,"V":322,"T":165}},"M":{"d":"253,-1600r601,1040r600,-1040r103,0r-4,7r0,1593r-90,0r0,-1437r-609,1054r-610,-1054r0,1437r-90,0r0,-1593r-4,-7r103,0","w":1707},"N":{"d":"150,-1600r99,0r822,1423r0,-1423r90,0r0,1600r-90,0r-831,-1437r0,1437r-90,0r0,-1600","w":1311},"O":{"d":"946,-1623v441,0,821,380,821,821v0,441,-380,821,-821,821v-441,0,-821,-380,-821,-821v0,-441,380,-821,821,-821xm1675,-802v0,-392,-337,-729,-729,-729v-392,0,-729,337,-729,729v0,392,337,730,729,730v392,0,729,-338,729,-730","w":1892},"P":{"d":"1034,-1078v0,281,-242,531,-522,523r-272,0r0,555r-90,0r0,-1600r420,0v251,28,464,254,464,522xm943,-1078v0,-232,-200,-431,-431,-431r-272,0r0,863r272,0v231,6,431,-200,431,-432","w":1089,"k":{".":574,",":547}},"Q":{"d":"1675,-802v0,-392,-337,-729,-729,-729v-392,0,-729,337,-729,729v0,392,337,730,729,730v392,0,729,-338,729,-730xm1057,81v-107,0,-183,76,-197,173r-91,0v14,-116,75,-189,168,-235v-435,8,-812,-383,-812,-821v0,-441,380,-821,821,-821v441,0,821,380,821,821v0,389,-299,735,-639,802v91,11,249,162,366,162v82,0,139,-59,145,-139r91,0v-11,131,-101,222,-234,228v-150,7,-287,-170,-439,-170","w":1892},"R":{"d":"943,-1078v0,-232,-200,-431,-431,-431r-272,0r0,863r272,0v231,6,431,-200,431,-432xm1034,-1078v0,245,-184,461,-396,509r369,569r-111,0r-357,-556r-299,1r0,555r-90,0r0,-1600r420,0v251,28,464,254,464,522","w":1089},"S":{"d":"518,-70v208,0,389,-179,386,-386v-3,-223,-179,-364,-356,-430v-190,-72,-362,-172,-369,-396v-6,-180,157,-337,339,-337v142,0,278,99,316,218r-81,32v-30,-86,-128,-162,-235,-162v-134,0,-254,114,-249,249v6,165,123,246,261,299v225,87,458,246,462,527v4,255,-219,475,-474,475v-232,0,-440,-187,-468,-398r85,-31v16,181,189,340,383,340","w":1042},"T":{"d":"545,-1510r0,1510r-90,0r0,-1510r-405,0r0,-90r900,0r0,90r-405,0","w":1000,"k":{"\u0150":201,"\u0119":197,"y":182,"w":257,"u":257,"s":222,"r":257,"o":197,"i":232,"e":197,"c":197,"a":232,"O":201,"A":157,";":222,":":232,".":207,"-":232,",":180}},"U":{"d":"673,-77v232,0,431,-200,431,-431r0,-1092r91,0r0,1150v-28,251,-254,464,-522,464v-281,0,-523,-241,-523,-522r0,-1092r91,0r0,1092v-6,231,200,431,432,431","w":1345},"V":{"d":"145,-1600r500,1374r500,-1374r96,0r-596,1637r-595,-1637r95,0","k":{"\u0119":142,"o":142,"e":142,"a":177,"A":322,";":135,":":145,".":372,"-":177,",":377}},"W":{"d":"520,-76v117,0,225,-73,271,-164r0,-1360r90,0r0,1360v46,91,154,164,271,164v161,0,305,-140,305,-302r0,-1222r90,0r0,1230v1,206,-186,384,-395,384v-127,0,-246,-65,-316,-156v-69,90,-190,156,-316,156v-209,0,-395,-179,-395,-384r0,-1230r90,0r0,1222v-5,162,144,302,305,302","w":1672},"X":{"d":"50,0r507,-879r-416,-721r103,0r364,632r366,-632r103,0r-418,721r509,879r-103,0r-457,-790r-456,790r-102,0","w":1218},"Y":{"d":"600,-647r-550,-953r103,0r492,853r493,-853r103,0r-551,953r0,647r-90,0r0,-647","k":{"\u0119":299,"v":102,"u":202,"q":341,"p":202,"o":299,"e":299,"a":366,"A":291,";":292,":":303,".":341,"-":366,",":314}},"Z":{"d":"1022,-1510r-872,0r0,-90r1027,0r-873,1510r873,0r0,90r-1027,0","w":1327},"[":{"d":"215,285r220,0r0,90r-310,0r0,-1975r310,0r0,90r-220,0r0,1795","w":560},"\\":{"d":"777,0r-102,0r-725,-1600r103,0","w":727},"]":{"d":"345,-1510r-220,0r0,-90r310,0r0,1975r-310,0r0,-90r220,0r0,-1795","w":560},"^":{"d":"513,-1600r308,534r-104,0r-256,-443r-256,443r-105,0r309,-534r104,0","w":921},"_":{"d":"25,30r1000,0r0,90r-1000,0r0,-90","w":1050},"`":{"d":"316,-1287r163,187r-84,0r-245,-187r166,0","w":629},"a":{"d":"674,-1071v181,0,352,96,446,228r0,-139r90,0r0,982r-90,0r0,-200v-94,131,-265,228,-446,228v-294,0,-549,-255,-549,-549v0,-295,254,-550,549,-550xm674,-68v218,0,412,-170,446,-364r0,-178v-33,-195,-227,-365,-446,-365v-244,0,-454,210,-454,454v0,244,210,453,454,453","w":1360},"b":{"d":"685,28v-180,0,-351,-97,-445,-227r0,199r-90,0r0,-1600r90,0r0,756v94,-130,265,-227,445,-227v296,0,549,254,549,550v0,295,-254,549,-549,549xm685,-975v-217,0,-410,168,-445,360r0,188v36,191,228,359,445,359v244,0,454,-209,454,-453v0,-244,-210,-454,-454,-454","w":1359},"c":{"d":"639,-68v141,0,271,-68,353,-168r95,34v-94,132,-266,230,-448,230v-295,0,-549,-255,-549,-550v0,-294,255,-549,549,-549v182,0,353,98,448,229r-95,35v-80,-100,-213,-168,-353,-168v-243,0,-453,210,-453,453v0,243,210,454,453,454","w":1177},"d":{"d":"674,-1071v181,0,352,96,446,228r0,-757r90,0r0,1600r-90,0r0,-200v-94,131,-265,228,-446,228v-294,0,-549,-255,-549,-549v0,-295,254,-550,549,-550xm674,-68v218,0,412,-170,446,-364r0,-178v-33,-195,-227,-365,-446,-365v-244,0,-454,210,-454,454v0,244,210,453,454,453","w":1360},"e":{"d":"90,-522v0,-294,255,-549,549,-549v163,0,316,75,406,179r-708,708v85,77,185,116,302,116v141,0,271,-68,353,-168r95,34v-94,132,-266,230,-448,230v-295,0,-549,-255,-549,-550xm639,-975v-243,0,-453,210,-453,453v0,103,30,194,90,272r635,-635v-78,-60,-169,-90,-272,-90","w":1177},"f":{"d":"554,-1414v-130,-63,-274,45,-274,172r0,260r200,0r0,90r-200,0r0,892r-90,0r0,-892r-100,0r0,-90r100,0r0,-266v5,-181,196,-325,392,-246","w":523},"g":{"d":"674,-67v217,0,408,-167,445,-358r0,-190v-35,-192,-228,-360,-445,-360v-244,0,-454,210,-454,454v0,244,210,454,454,454xm312,56v81,99,213,168,353,168v233,0,443,-196,452,-419v-96,129,-264,223,-443,223v-294,0,-549,-255,-549,-549v0,-296,254,-549,549,-549v181,0,352,95,446,227r0,-139r90,0r0,763v8,291,-255,539,-545,539v-182,0,-354,-98,-448,-230","w":1364},"h":{"d":"514,-951v-118,0,-232,79,-274,170r0,781r-90,0r0,-1600r90,0r0,669v76,-73,167,-110,274,-110v226,0,394,165,395,384r0,657r-90,0r0,-649v5,-162,-144,-302,-305,-302","w":1059},"i":{"d":"260,-982r0,982r-90,0r0,-982r90,0xm215,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":430},"j":{"d":"49,138v81,-9,121,-55,121,-136r0,-984r90,0r0,982v0,141,-70,217,-211,228r0,-90xm215,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":455},"k":{"d":"629,-982r-242,300r386,682r-112,0r-333,-610r-88,109r0,501r-90,0r0,-1400r90,0r0,755r273,-337r116,0","w":823},"l":{"d":"240,-1600r0,1600r-90,0r0,-1600r90,0","w":390},"m":{"d":"441,-950v-104,0,-201,84,-201,184r0,766r-90,0r0,-982r90,0r0,23v56,-54,123,-81,201,-81v103,0,199,58,246,135v48,-75,144,-135,247,-135v155,0,291,130,291,282r0,758r-90,0r1,-758v-2,-104,-96,-192,-202,-192v-110,0,-202,94,-202,206r0,744r-90,0r1,-758v-2,-104,-96,-192,-202,-192","w":1375},"n":{"d":"526,-951v-127,0,-245,92,-286,188r0,763r-90,0r0,-982r90,0r0,63v82,-81,177,-122,286,-122v226,0,394,165,395,384r0,657r-90,0r0,-649v5,-162,-144,-302,-305,-302","w":1071},"o":{"d":"90,-521v0,-295,254,-550,549,-550v296,0,549,254,549,550v0,295,-254,549,-549,549v-294,0,-549,-255,-549,-549xm639,-975v-244,0,-454,210,-454,454v0,244,210,453,454,453v244,0,454,-209,454,-453v0,-244,-210,-454,-454,-454","w":1278},"p":{"d":"685,28v-180,0,-351,-97,-445,-227r0,574r-90,0r0,-1357r90,0r0,138v94,-129,265,-226,445,-226v296,0,549,253,549,549v0,295,-254,549,-549,549xm685,-975v-217,0,-410,168,-445,360r0,188v35,192,228,360,445,360v244,0,454,-210,454,-454v0,-244,-210,-454,-454,-454","w":1334},"q":{"d":"649,-1070v181,0,352,95,446,227r0,-139r90,0r0,1357r-90,0r0,-575v-94,131,-265,228,-446,228v-294,0,-549,-255,-549,-549v0,-296,254,-549,549,-549xm649,-67v219,0,413,-170,446,-365r0,-178v-33,-195,-227,-365,-446,-365v-244,0,-454,210,-454,454v0,244,210,454,454,454","w":1335},"r":{"d":"150,-982r90,0r0,179v63,-94,200,-205,309,-202r0,98v-57,3,-115,34,-176,95v-85,85,-133,186,-133,305r0,507r-90,0r0,-982","w":599,"k":{"-":109}},"s":{"d":"406,-66v108,0,202,-93,202,-203v0,-55,-20,-103,-59,-142v-21,-21,-63,-55,-129,-94v-75,-44,-130,-77,-159,-106v-46,-46,-69,-101,-69,-166v0,-127,109,-237,235,-237v121,0,227,95,224,212r-78,31v-11,-91,-54,-150,-146,-152v-78,-2,-152,67,-146,146v7,103,56,122,149,179v83,51,146,88,182,124v57,57,85,126,85,205v0,158,-134,293,-291,293v-149,0,-293,-135,-291,-273r89,-23v-4,113,92,206,202,206","w":802},"t":{"d":"290,-982r0,-418r90,0r0,418r200,0r0,90r-200,0r0,892r-90,0r0,-892r-200,0r0,-90r200,0","w":670},"u":{"d":"949,-370v-1,219,-169,384,-394,384v-236,0,-405,-161,-405,-384r0,-614r90,0r0,606v-3,165,145,302,314,302v161,0,305,-140,305,-302r0,-606r90,0r0,614","w":1099},"v":{"d":"532,-164r378,-818r104,0r-482,1009r-482,-1009r104,0","w":1064,"k":{".":208,",":213}},"w":{"d":"441,-76v104,0,201,-83,201,-184r0,-722r90,0r0,700v-4,113,92,206,202,206v105,0,201,-91,201,-192r0,-714r90,0r0,714v-1,152,-137,282,-291,282v-102,0,-197,-60,-246,-134v-49,73,-145,134,-247,134v-154,0,-291,-130,-291,-282r0,-714r90,0r-1,714v3,103,96,192,202,192","w":1375},"x":{"d":"741,-982r-256,443r311,539r-104,0r-256,-443r-256,443r-105,0r312,-539r-256,-443r104,0r201,347r200,-347r105,0","w":871},"y":{"d":"930,-982r-649,1357r-88,0r265,-556r-383,-801r102,0r326,704r326,-704r101,0","w":1005,"k":{".":219,",":223}},"z":{"d":"657,-878r-507,0r0,-90r662,0r-508,878r546,0r0,90r-700,0","w":1000},"{":{"d":"418,40v0,-68,21,-149,20,-224v-2,-168,-55,-284,-170,-347v-62,-34,-94,-50,-143,-41r0,-81v50,10,81,-7,143,-41v116,-63,170,-178,170,-347v0,-120,-37,-239,-4,-351v35,-120,149,-222,307,-205r0,75v-171,-16,-249,104,-249,275v0,73,20,145,19,213v-4,213,-85,351,-241,421v155,72,238,208,241,422v1,68,-19,140,-19,213v0,173,78,288,249,276r0,74v-13,2,-25,3,-38,3v-181,-13,-285,-139,-285,-335","w":866},"|":{"d":"240,-1600r0,1975r-90,0r0,-1975r90,0","w":390},"}":{"d":"448,-1266v0,68,-21,150,-20,225v2,168,55,284,170,347v62,34,94,50,143,41r0,81v-50,-10,-81,7,-143,41v-116,63,-168,178,-170,347v-1,75,20,156,20,224v0,197,-103,322,-285,335v-13,0,-25,-1,-38,-3r0,-74v171,12,249,-104,249,-276v0,-73,-20,-145,-19,-213v3,-213,86,-351,241,-422v-156,-70,-238,-208,-241,-421v-1,-68,19,-140,19,-213v0,-172,-77,-290,-249,-275r0,-75v13,-2,25,-3,38,-3v181,13,285,138,285,334","w":866},"~":{"d":"365,-873v-97,0,-142,84,-150,180r-90,-14v15,-140,89,-253,234,-253v71,0,164,33,279,99v126,72,216,109,273,109v97,0,144,-82,150,-180r91,14v-19,139,-88,253,-235,253v-70,0,-163,-33,-278,-99v-127,-73,-218,-109,-274,-109","w":1277},"\u00a1":{"d":"215,-1439v-48,0,-90,-41,-90,-89v0,-49,42,-90,90,-90v48,0,90,41,90,90v0,48,-42,89,-90,89xm172,-4r0,-1324r90,0r0,1324r-90,0","w":430},"\u00a2":{"d":"99,-1062v0,-215,170,-407,362,-439r0,-161r90,0r0,154v148,-3,284,83,361,192r-87,33v-62,-80,-165,-137,-274,-136r0,714v109,1,211,-57,274,-136r87,32v-76,110,-213,196,-361,193r0,154r-90,0r0,-161v-192,-31,-362,-224,-362,-439xm461,-1410v-146,31,-273,181,-273,348v0,167,128,316,273,348r0,-696","w":1013},"\u00a3":{"d":"532,-1511v-179,0,-314,140,-301,326v5,75,27,164,78,256v52,95,98,187,122,284r197,0r0,90r-180,0v27,203,-33,326,-163,492v83,-30,165,-45,246,-45v110,0,227,39,331,39v53,0,104,-6,151,-18r17,89v-54,13,-110,20,-168,20v-110,0,-252,-45,-356,-43v-140,3,-217,61,-319,104r-87,-103v83,-73,135,-123,156,-149v90,-109,125,-227,100,-386r-228,0r0,-90r209,0v-17,-63,-40,-128,-75,-189v-78,-138,-127,-238,-127,-381v0,-213,171,-391,396,-388v252,3,460,249,370,517r-86,-29v66,-209,-89,-396,-283,-396","w":1130},"\u00a4":{"d":"303,-1462v138,-119,369,-119,506,0r139,-139r64,64r-139,139v119,138,119,369,0,506r139,139r-64,64r-139,-139v-138,119,-369,119,-506,0r-139,139r-64,-64r139,-139v-119,-138,-119,-369,0,-506r-139,-139r64,-64xm872,-1145v0,-179,-137,-316,-316,-316v-179,0,-316,137,-316,316v0,178,136,316,316,316v179,0,316,-137,316,-316","w":1112},"\u00a5":{"d":"650,-755r488,-845r103,0r-489,845r294,0r0,90r-346,0r-10,18r0,102r356,0r0,90r-356,0r0,455r-90,0r0,-455r-354,0r0,-90r354,0r0,-102r-10,-18r-344,0r0,-90r292,0r-488,-845r103,0r487,845r10,0"},"\u00a6":{"d":"240,-1600r0,849r-90,0r0,-849r90,0xm240,-474r0,849r-90,0r0,-849r90,0","w":390},"\u00a7":{"d":"881,-345v7,-9,16,-19,26,-29v42,-42,63,-116,63,-223v0,-223,-180,-362,-356,-430v-154,-59,-270,-122,-337,-250v-7,9,-16,19,-26,29v-42,42,-63,116,-63,223v0,223,180,362,356,430v154,59,270,122,337,250xm100,-1025v-2,-171,56,-278,150,-337v-39,-221,134,-395,334,-398v142,-2,278,99,316,218r-81,32v-30,-86,-128,-162,-235,-162v-134,0,-254,114,-249,249v6,165,123,246,261,299v225,87,459,246,462,527v2,171,-56,278,-150,337v39,221,-134,395,-334,398v-142,2,-278,-99,-316,-218r81,-32v30,86,128,162,235,162v134,0,254,-114,249,-249v-6,-165,-123,-246,-261,-299v-225,-87,-459,-246,-462,-527","w":1158},"\u00a8":{"d":"215,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm515,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":730},"\u00a9":{"d":"711,-341v82,0,160,-41,206,-101r68,25v-57,84,-161,145,-274,145v-178,0,-331,-153,-331,-331v0,-178,153,-331,331,-331v113,0,217,61,274,145r-68,25v-45,-61,-124,-101,-206,-101v-140,0,-262,121,-262,262v0,140,122,262,262,262xm700,-1204v322,0,600,279,600,601v0,323,-278,601,-600,601v-323,0,-601,-278,-601,-601v0,-323,278,-601,601,-601xm1229,-603v0,-285,-245,-530,-529,-530v-286,0,-530,245,-530,530v0,284,245,530,530,530v284,0,529,-246,529,-530","w":1405},"\u00ab":{"d":"444,-462r436,-460r0,104r-331,356r331,356r0,105xm100,-462r429,-460r0,104r-331,356r331,356r0,105","w":980},"\u00ae":{"d":"772,-1182v0,-101,-88,-189,-189,-189r-116,0r0,378r116,0v101,3,189,-88,189,-189xm581,-1543v-228,0,-424,196,-424,424v0,196,138,364,311,410v86,22,183,18,262,-12r-138,-215r-125,0r0,155r-55,0r0,-644r198,0v117,14,217,118,217,244v0,110,-85,215,-175,236r130,200v122,-66,222,-214,222,-374v0,-228,-196,-424,-423,-424xm581,-1600v257,0,480,223,480,481v0,198,-115,356,-279,435v-324,156,-682,-107,-682,-435v0,-259,222,-481,481,-481","w":1161},"\u00af":{"d":"125,-1327r590,0r0,90r-590,0r0,-90","w":840},"\u00b0":{"d":"381,-1600v125,0,231,106,231,231v0,125,-106,231,-231,231v-125,0,-231,-106,-231,-231v0,-125,106,-231,231,-231xm541,-1369v0,-86,-74,-160,-160,-160v-86,0,-160,74,-160,160v0,86,74,160,160,160v86,0,160,-74,160,-160","w":762},"\u00b1":{"d":"480,-547r-355,0r0,-90r355,0r0,-355r90,0r0,355r355,0r0,90r-355,0r0,355r-90,0r0,-355xm125,-90r800,0r0,90r-800,0r0,-90","w":1050},"\u00b4":{"d":"479,-1287r-245,187r-84,0r163,-187r166,0","w":629},"\u00b5":{"d":"514,-81v136,0,263,-102,294,-219r0,-682r88,0r0,982r-88,0r0,-111v-131,151,-424,165,-568,10r0,476r-90,0r0,-1357r90,0r0,731v41,91,156,170,274,170","w":1046},"\u00b6":{"d":"51,-1169v0,-268,212,-522,464,-522r571,-1r0,90r-88,0r0,1977r-90,0r0,-1977r-93,0r0,1977r-90,0r0,-1021r-152,0v-281,8,-522,-242,-522,-523","w":1135},"\u00b7":{"d":"202,-876v41,0,76,35,76,76v0,41,-35,76,-76,76v-42,0,-77,-34,-77,-76v0,-42,35,-76,77,-76","w":403},"\u2219":{"d":"202,-876v41,0,76,35,76,76v0,41,-35,76,-76,76v-42,0,-77,-34,-77,-76v0,-42,35,-76,77,-76","w":403},"\u00b8":{"d":"204,193v55,18,150,-3,128,-70v-35,-43,-87,-34,-160,-29r57,-94r70,0r-12,35v94,3,144,14,144,83v0,94,-80,141,-186,135v-35,-2,-62,-10,-82,-23","w":582},"\u00bb":{"d":"100,-1r0,-105r331,-356r-331,-356r0,-104r436,460xm451,-1r0,-105r331,-356r-331,-356r0,-104r429,460","w":980},"\u00bf":{"d":"489,-64v-199,0,-338,-138,-338,-339v0,-49,12,-98,35,-146v41,-85,112,-159,203,-237v115,-99,217,-213,217,-395v0,-43,-8,-86,-23,-129r83,-29v44,127,35,247,-21,362v-53,111,-141,200,-241,289v-94,84,-162,150,-162,286v0,149,103,250,249,250v147,0,241,-101,250,-246r88,4v-12,197,-142,330,-340,330xm630,-1439v-48,0,-90,-41,-90,-89v0,-49,42,-90,90,-90v48,0,90,41,90,90v0,48,-42,89,-90,89","w":956},"\u00c0":{"d":"890,-703r-244,-671r-244,671r488,0xm923,-613r-554,0r-223,613r-96,0r596,-1637r595,1637r-95,0xm522,-1886r163,187r-84,0r-245,-187r166,0"},"\u00c1":{"d":"890,-703r-244,-671r-244,671r488,0xm923,-613r-554,0r-223,613r-96,0r596,-1637r595,1637r-95,0xm935,-1886r-245,187r-84,0r163,-187r166,0"},"\u00c2":{"d":"890,-703r-244,-671r-244,671r488,0xm923,-613r-554,0r-223,613r-96,0r596,-1637r595,1637r-95,0xm694,-1842r238,234r-104,0r-186,-143r-176,143r-105,0r229,-234r104,0"},"\u00c3":{"d":"890,-703r-244,-671r-244,671r488,0xm923,-613r-554,0r-223,613r-96,0r596,-1637r595,1637r-95,0xm525,-1818v81,-6,176,114,244,105v33,-5,57,-30,70,-84r69,0v-21,103,-50,151,-141,158v-80,6,-175,-115,-244,-105v-33,5,-57,30,-70,84r-70,0v22,-103,50,-151,142,-158"},"\u00c4":{"d":"890,-703r-244,-671r-244,671r488,0xm923,-613r-554,0r-223,613r-96,0r596,-1637r595,1637r-95,0xm496,-1838v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm796,-1838v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89"},"\u00c5":{"d":"890,-703r-244,-671r-244,671r488,0xm588,-1667v1,33,27,62,68,56v25,-4,47,-29,47,-56v0,-31,-27,-58,-57,-58v-31,0,-59,27,-58,58xm768,-1667v0,55,-43,106,-90,118r563,1549r-95,0r-223,-613r-554,0r-223,613r-96,0r564,-1549v-48,-12,-91,-62,-91,-118v0,-66,57,-123,123,-123v65,0,122,57,122,123"},"\u00c6":{"d":"1633,-845r0,90r-710,0r0,665r710,0r0,90r-800,0r0,-613r-339,0r-273,613r-96,0r696,-1600r812,0r0,90r-710,0r0,665r710,0xm833,-703r0,-712r-306,712r306,0","w":1758},"\u00c7":{"d":"897,203v55,18,150,-3,128,-70v-35,-43,-87,-34,-160,-29r52,-85v-426,-2,-792,-385,-792,-819v0,-440,378,-819,819,-819v211,0,395,71,551,213r-68,62v-137,-122,-298,-183,-483,-183v-391,0,-727,337,-727,727v0,392,336,728,727,728v185,0,346,-61,483,-183r68,61v-145,132,-313,203,-506,212r-9,27v94,3,144,14,144,83v0,94,-80,141,-186,135v-35,-2,-62,-10,-82,-23","w":1595},"\u00c8":{"d":"950,-1600r0,90r-710,0r0,665r710,0r0,90r-710,0r0,665r710,0r0,90r-800,0r0,-1600r800,0xm497,-1855r163,187r-84,0r-245,-187r166,0","w":1075},"\u00c9":{"d":"950,-1600r0,90r-710,0r0,665r710,0r0,90r-710,0r0,665r710,0r0,90r-800,0r0,-1600r800,0xm769,-1855r-245,187r-84,0r163,-187r166,0","w":1075},"\u00ca":{"d":"950,-1600r0,90r-710,0r0,665r710,0r0,90r-710,0r0,665r710,0r0,90r-800,0r0,-1600r800,0xm599,-1892r238,234r-104,0r-186,-143r-176,143r-105,0r229,-234r104,0","w":1075},"\u00cb":{"d":"950,-1600r0,90r-710,0r0,665r710,0r0,90r-710,0r0,665r710,0r0,90r-800,0r0,-1600r800,0xm400,-1848v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm700,-1848v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":1075},"\u00cc":{"d":"260,-1600r0,1600r-90,0r0,-1600r90,0xm92,-1855r163,187r-84,0r-245,-187r166,0","w":430},"\u00cd":{"d":"260,-1600r0,1600r-90,0r0,-1600r90,0xm504,-1855r-245,187r-84,0r163,-187r166,0","w":430},"\u00ce":{"d":"260,-1600r0,1600r-90,0r0,-1600r90,0xm263,-1842r238,234r-104,0r-186,-143r-176,143r-105,0r229,-234r104,0","w":430},"\u00cf":{"d":"260,-1600r0,1600r-90,0r0,-1600r90,0xm65,-1848v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm365,-1848v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":430},"\u00d0":{"d":"210,-845r0,-755v32,1,67,2,97,2v263,0,465,76,612,218v317,307,316,853,0,1160v-166,161,-398,227,-709,220r0,-755r-160,0r0,-90r160,0xm300,-845r370,0r0,90r-370,0r0,662v241,1,423,-65,554,-192v282,-271,282,-758,0,-1030v-131,-126,-313,-192,-554,-191r0,661","w":1284},"\u00d1":{"d":"150,-1600r99,0r822,1423r0,-1423r90,0r0,1600r-90,0r-831,-1437r0,1437r-90,0r0,-1600xm535,-1818v81,-6,176,114,244,105v33,-5,57,-30,70,-84r69,0v-21,103,-50,151,-141,158v-80,6,-175,-115,-244,-105v-33,5,-57,30,-70,84r-70,0v22,-103,50,-151,142,-158","w":1311},"\u00d2":{"d":"946,-1623v441,0,821,380,821,821v0,441,-380,821,-821,821v-441,0,-821,-380,-821,-821v0,-441,380,-821,821,-821xm1675,-802v0,-392,-337,-729,-729,-729v-392,0,-729,337,-729,729v0,392,337,730,729,730v392,0,729,-338,729,-730xm893,-1855r163,187r-84,0r-245,-187r166,0","w":1892},"\u00d3":{"d":"946,-1623v441,0,821,380,821,821v0,441,-380,821,-821,821v-441,0,-821,-380,-821,-821v0,-441,380,-821,821,-821xm1675,-802v0,-392,-337,-729,-729,-729v-392,0,-729,337,-729,729v0,392,337,730,729,730v392,0,729,-338,729,-730xm1165,-1855r-245,187r-84,0r163,-187r166,0","w":1892},"\u00d4":{"d":"946,-1623v441,0,821,380,821,821v0,441,-380,821,-821,821v-441,0,-821,-380,-821,-821v0,-441,380,-821,821,-821xm1675,-802v0,-392,-337,-729,-729,-729v-392,0,-729,337,-729,729v0,392,337,730,729,730v392,0,729,-338,729,-730xm995,-1892r238,234r-104,0r-186,-143r-176,143r-105,0r229,-234r104,0","w":1892},"\u00d5":{"d":"946,-1623v441,0,821,380,821,821v0,441,-380,821,-821,821v-441,0,-821,-380,-821,-821v0,-441,380,-821,821,-821xm1675,-802v0,-392,-337,-729,-729,-729v-392,0,-729,337,-729,729v0,392,337,730,729,730v392,0,729,-338,729,-730xm826,-1838v81,-6,176,114,244,105v33,-5,57,-30,70,-84r69,0v-21,103,-50,151,-141,158v-80,6,-175,-115,-244,-105v-33,5,-57,30,-70,84r-70,0v22,-103,50,-151,142,-158","w":1892},"\u00d6":{"d":"946,-1623v441,0,821,380,821,821v0,441,-380,821,-821,821v-441,0,-821,-380,-821,-821v0,-441,380,-821,821,-821xm1675,-802v0,-392,-337,-729,-729,-729v-392,0,-729,337,-729,729v0,392,337,730,729,730v392,0,729,-338,729,-730xm796,-1848v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm1096,-1848v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":1892},"\u00d7":{"d":"525,-528r-251,251r-64,-64r251,-251r-251,-251r64,-64r251,251r251,-251r63,64r-251,251r251,251r-63,64","w":1050},"\u00d8":{"d":"1213,-1483v-502,-192,-996,200,-996,681v0,275,172,530,380,643xm678,-121v502,194,997,-200,997,-681v0,-275,-171,-531,-380,-642xm125,-802v0,-441,380,-821,821,-821v110,0,212,19,306,57r86,-184r82,38r-86,184v69,37,133,86,193,145v160,161,240,354,240,581v0,441,-380,821,-821,821v-110,0,-212,-19,-306,-57r-86,184r-82,-38r86,-184v-69,-37,-133,-86,-192,-146v-161,-160,-241,-353,-241,-580","w":1892},"\u00d9":{"d":"673,-77v232,0,431,-200,431,-431r0,-1092r91,0r0,1150v-28,251,-254,464,-522,464v-281,0,-523,-241,-523,-522r0,-1092r91,0r0,1092v-6,231,200,431,432,431xm619,-1855r163,187r-84,0r-245,-187r166,0","w":1345},"\u00da":{"d":"673,-77v232,0,431,-200,431,-431r0,-1092r91,0r0,1150v-28,251,-254,464,-522,464v-281,0,-523,-241,-523,-522r0,-1092r91,0r0,1092v-6,231,200,431,432,431xm892,-1855r-245,187r-84,0r163,-187r166,0","w":1345},"\u00db":{"d":"673,-77v232,0,431,-200,431,-431r0,-1092r91,0r0,1150v-28,251,-254,464,-522,464v-281,0,-523,-241,-523,-522r0,-1092r91,0r0,1092v-6,231,200,431,432,431xm721,-1842r238,234r-104,0r-186,-143r-176,143r-105,0r229,-234r104,0","w":1345},"\u00dc":{"d":"673,-77v232,0,431,-200,431,-431r0,-1092r91,0r0,1150v-28,251,-254,464,-522,464v-281,0,-523,-241,-523,-522r0,-1092r91,0r0,1092v-6,231,200,431,432,431xm523,-1838v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm823,-1838v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":1345},"\u00dd":{"d":"600,-647r-550,-953r103,0r492,853r493,-853r103,0r-551,953r0,647r-90,0r0,-647xm865,-1855r-245,187r-84,0r163,-187r166,0"},"\u00de":{"d":"1034,-801v0,281,-242,531,-522,523r-272,0r0,278r-90,0r0,-1600r90,0r0,277r330,0v251,28,464,254,464,522xm943,-801v0,-232,-200,-431,-431,-431r-272,0r0,863r272,0v231,6,431,-200,431,-432","w":1124},"\u00e0":{"d":"674,-1071v181,0,352,96,446,228r0,-139r90,0r0,982r-90,0r0,-200v-94,131,-265,228,-446,228v-294,0,-549,-255,-549,-549v0,-295,254,-550,549,-550xm674,-68v218,0,412,-170,446,-364r0,-178v-33,-195,-227,-365,-446,-365v-244,0,-454,210,-454,454v0,244,210,453,454,453xm614,-1287r163,187r-84,0r-245,-187r166,0","w":1360},"\u00e1":{"d":"674,-1071v181,0,352,96,446,228r0,-139r90,0r0,982r-90,0r0,-200v-94,131,-265,228,-446,228v-294,0,-549,-255,-549,-549v0,-295,254,-550,549,-550xm674,-68v218,0,412,-170,446,-364r0,-178v-33,-195,-227,-365,-446,-365v-244,0,-454,210,-454,454v0,244,210,453,454,453xm887,-1287r-245,187r-84,0r163,-187r166,0","w":1360},"\u00e2":{"d":"674,-1071v181,0,352,96,446,228r0,-139r90,0r0,982r-90,0r0,-200v-94,131,-265,228,-446,228v-294,0,-549,-255,-549,-549v0,-295,254,-550,549,-550xm674,-68v218,0,412,-170,446,-364r0,-178v-33,-195,-227,-365,-446,-365v-244,0,-454,210,-454,454v0,244,210,453,454,453xm716,-1324r238,234r-104,0r-186,-143r-176,143r-105,0r229,-234r104,0","w":1360},"\u00e3":{"d":"674,-1071v181,0,352,96,446,228r0,-139r90,0r0,982r-90,0r0,-200v-94,131,-265,228,-446,228v-294,0,-549,-255,-549,-549v0,-295,254,-550,549,-550xm674,-68v218,0,412,-170,446,-364r0,-178v-33,-195,-227,-365,-446,-365v-244,0,-454,210,-454,454v0,244,210,453,454,453xm547,-1300v81,-6,176,114,244,105v33,-5,57,-30,70,-84r69,0v-21,103,-50,151,-141,158v-80,6,-175,-115,-244,-105v-33,5,-57,30,-70,84r-70,0v22,-103,50,-151,142,-158","w":1360},"\u00e4":{"d":"674,-1071v181,0,352,96,446,228r0,-139r90,0r0,982r-90,0r0,-200v-94,131,-265,228,-446,228v-294,0,-549,-255,-549,-549v0,-295,254,-550,549,-550xm674,-68v218,0,412,-170,446,-364r0,-178v-33,-195,-227,-365,-446,-365v-244,0,-454,210,-454,454v0,244,210,453,454,453xm518,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm818,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":1360},"\u00e5":{"d":"674,-68v218,0,412,-170,446,-364r0,-178v-33,-195,-227,-365,-446,-365v-244,0,-454,210,-454,454v0,244,210,453,454,453xm725,-1179v0,-31,-27,-58,-57,-58v-31,0,-58,27,-58,58v0,30,27,57,58,57v30,0,57,-27,57,-57xm790,-1179v0,48,-32,92,-69,110v161,8,312,105,399,226r0,-139r90,0r0,982r-90,0r0,-200v-94,131,-265,228,-446,228v-294,0,-549,-255,-549,-549v0,-280,229,-528,491,-547v-38,-17,-71,-63,-71,-111v0,-66,57,-123,123,-123v65,0,122,57,122,123","w":1360},"\u00e6":{"d":"1085,-610v-40,-207,-224,-365,-446,-365v-244,0,-454,210,-454,454v0,244,210,453,454,453v221,0,406,-158,446,-364r0,-178xm1544,-975v-150,0,-290,81,-369,188r0,124r798,0v-50,-172,-229,-312,-429,-312xm639,-1071v181,0,352,96,446,228r0,-139r90,0r0,54v205,-198,562,-187,758,18v93,97,144,208,148,338r-906,-1r0,317v78,107,220,188,369,188v147,0,283,-76,364,-181r96,34v-11,19,-36,45,-71,82v-195,206,-553,216,-758,18r0,115r-90,0r0,-200v-94,131,-265,228,-446,228v-294,0,-549,-255,-549,-549v0,-295,254,-550,549,-550","w":2171},"\u00e7":{"d":"596,200v55,18,150,-4,128,-70v-36,-43,-87,-34,-160,-29r44,-74v-277,-7,-518,-262,-518,-549v0,-294,255,-549,549,-549v182,0,353,98,448,229r-95,35v-80,-100,-213,-168,-353,-168v-243,0,-453,210,-453,453v0,243,210,454,453,454v141,0,271,-68,353,-168r95,34v-87,122,-241,222,-403,228r-6,16v96,3,139,15,145,84v-12,92,-81,140,-186,134v-35,-2,-62,-10,-83,-23","w":1177},"\u00e8":{"d":"90,-522v0,-294,255,-549,549,-549v163,0,316,75,406,179r-708,708v85,77,185,116,302,116v141,0,271,-68,353,-168r95,34v-94,132,-266,230,-448,230v-295,0,-549,-255,-549,-550xm639,-975v-243,0,-453,210,-453,453v0,103,30,194,90,272r635,-635v-78,-60,-169,-90,-272,-90xm580,-1287r163,187r-84,0r-245,-187r166,0","w":1266},"\u00e9":{"d":"90,-522v0,-294,255,-549,549,-549v163,0,316,75,406,179r-708,708v85,77,185,116,302,116v141,0,271,-68,353,-168r95,34v-94,132,-266,230,-448,230v-295,0,-549,-255,-549,-550xm639,-975v-243,0,-453,210,-453,453v0,103,30,194,90,272r635,-635v-78,-60,-169,-90,-272,-90xm852,-1287r-245,187r-84,0r163,-187r166,0","w":1266},"\u00ea":{"d":"90,-522v0,-294,255,-549,549,-549v163,0,316,75,406,179r-708,708v85,77,185,116,302,116v141,0,271,-68,353,-168r95,34v-94,132,-266,230,-448,230v-295,0,-549,-255,-549,-550xm639,-975v-243,0,-453,210,-453,453v0,103,30,194,90,272r635,-635v-78,-60,-169,-90,-272,-90xm682,-1324r238,234r-104,0r-186,-143r-176,143r-105,0r229,-234r104,0","w":1266},"\u00eb":{"d":"90,-522v0,-294,255,-549,549,-549v163,0,316,75,406,179r-708,708v85,77,185,116,302,116v141,0,271,-68,353,-168r95,34v-94,132,-266,230,-448,230v-295,0,-549,-255,-549,-550xm639,-975v-243,0,-453,210,-453,453v0,103,30,194,90,272r635,-635v-78,-60,-169,-90,-272,-90xm483,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm783,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":1266},"\u00ec":{"d":"260,-982r0,982r-90,0r0,-982r90,0xm92,-1287r163,187r-84,0r-245,-187r166,0","w":430},"\u00ed":{"d":"260,-982r0,982r-90,0r0,-982r90,0xm504,-1287r-245,187r-84,0r163,-187r166,0","w":430},"\u00ee":{"d":"260,-982r0,982r-90,0r0,-982r90,0xm263,-1324r238,234r-104,0r-186,-143r-176,143r-105,0r229,-234r104,0","w":430},"\u00ef":{"d":"260,-982r0,982r-90,0r0,-982r90,0xm65,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm365,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":430},"\u00f1":{"d":"526,-951v-127,0,-245,92,-286,188r0,763r-90,0r0,-982r90,0r0,63v82,-81,177,-122,286,-122v226,0,394,165,395,384r0,657r-90,0r0,-649v5,-162,-144,-302,-305,-302xm415,-1300v81,-6,176,114,244,105v33,-5,57,-30,70,-84r69,0v-21,103,-50,151,-141,158v-80,6,-175,-115,-244,-105v-33,5,-57,30,-70,84r-70,0v22,-103,50,-151,142,-158","w":1071},"\u00f2":{"d":"90,-521v0,-295,254,-550,549,-550v296,0,549,254,549,550v0,295,-254,549,-549,549v-294,0,-549,-255,-549,-549xm639,-975v-244,0,-454,210,-454,454v0,244,210,453,454,453v244,0,454,-209,454,-453v0,-244,-210,-454,-454,-454xm586,-1287r163,187r-84,0r-245,-187r166,0","w":1278},"\u00f3":{"d":"90,-521v0,-295,254,-550,549,-550v296,0,549,254,549,550v0,295,-254,549,-549,549v-294,0,-549,-255,-549,-549xm639,-975v-244,0,-454,210,-454,454v0,244,210,453,454,453v244,0,454,-209,454,-453v0,-244,-210,-454,-454,-454xm858,-1287r-245,187r-84,0r163,-187r166,0","w":1278},"\u00f4":{"d":"90,-521v0,-295,254,-550,549,-550v296,0,549,254,549,550v0,295,-254,549,-549,549v-294,0,-549,-255,-549,-549xm639,-975v-244,0,-454,210,-454,454v0,244,210,453,454,453v244,0,454,-209,454,-453v0,-244,-210,-454,-454,-454xm688,-1324r238,234r-104,0r-186,-143r-176,143r-105,0r229,-234r104,0","w":1278},"\u00f5":{"d":"90,-521v0,-295,254,-550,549,-550v296,0,549,254,549,550v0,295,-254,549,-549,549v-294,0,-549,-255,-549,-549xm639,-975v-244,0,-454,210,-454,454v0,244,210,453,454,453v244,0,454,-209,454,-453v0,-244,-210,-454,-454,-454xm519,-1300v81,-6,176,114,244,105v33,-5,57,-30,70,-84r69,0v-21,103,-50,151,-141,158v-80,6,-175,-115,-244,-105v-33,5,-57,30,-70,84r-70,0v22,-103,50,-151,142,-158","w":1278},"\u00f6":{"d":"90,-521v0,-295,254,-550,549,-550v296,0,549,254,549,550v0,295,-254,549,-549,549v-294,0,-549,-255,-549,-549xm639,-975v-244,0,-454,210,-454,454v0,244,210,453,454,453v244,0,454,-209,454,-453v0,-244,-210,-454,-454,-454xm489,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm789,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":1278},"\u00f7":{"d":"125,-659r800,0r0,90r-800,0r0,-90xm525,-903v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm525,-503v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":1050},"\u00f8":{"d":"827,-937v-312,-140,-642,106,-642,415v0,151,81,292,190,369xm451,-108v311,139,642,-105,642,-414v0,-150,-80,-291,-189,-369xm1188,-522v0,295,-254,549,-549,549v-86,0,-165,-17,-236,-52r-123,213r-79,-38r126,-220v-135,-93,-237,-268,-237,-452v0,-295,254,-550,549,-550v86,0,165,17,237,52r122,-212r79,41r-125,216v135,92,236,268,236,453","w":1278},"\u00f9":{"d":"949,-370v-1,219,-169,384,-394,384v-236,0,-405,-161,-405,-384r0,-614r90,0r0,606v-3,165,145,302,314,302v161,0,305,-140,305,-302r0,-606r90,0r0,614xm496,-1287r163,187r-84,0r-245,-187r166,0","w":1099},"\u00fa":{"d":"949,-370v-1,219,-169,384,-394,384v-236,0,-405,-161,-405,-384r0,-614r90,0r0,606v-3,165,145,302,314,302v161,0,305,-140,305,-302r0,-606r90,0r0,614xm769,-1287r-245,187r-84,0r163,-187r166,0","w":1099},"\u00fb":{"d":"949,-370v-1,219,-169,384,-394,384v-236,0,-405,-161,-405,-384r0,-614r90,0r0,606v-3,165,145,302,314,302v161,0,305,-140,305,-302r0,-606r90,0r0,614xm598,-1324r238,234r-104,0r-186,-143r-176,143r-105,0r229,-234r104,0","w":1099},"\u00fc":{"d":"949,-370v-1,219,-169,384,-394,384v-236,0,-405,-161,-405,-384r0,-614r90,0r0,606v-3,165,145,302,314,302v161,0,305,-140,305,-302r0,-606r90,0r0,614xm400,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm700,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":1099},"\u00fd":{"d":"930,-982r-649,1357r-88,0r265,-556r-383,-801r102,0r326,704r326,-704r101,0xm722,-1287r-245,187r-84,0r163,-187r166,0","w":1005},"\u00fe":{"d":"660,-975v-211,0,-399,159,-441,342r0,224v42,183,230,342,441,342v244,0,454,-210,454,-454v0,-244,-210,-454,-454,-454xm660,28v-178,0,-345,-92,-441,-222r0,552r-90,0r0,-1758r90,0r0,551v95,-129,263,-221,441,-221v296,0,549,253,549,549v0,295,-254,549,-549,549","w":1334},"\u00ff":{"d":"930,-982r-649,1357r-88,0r265,-556r-383,-801r102,0r326,704r326,-704r101,0xm353,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm653,-1330v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89","w":1005},"\u0131":{"d":"260,-982r0,982r-90,0r0,-982r90,0","w":430},"\u00aa":{"d":"131,-944r575,0r0,31r-606,0r0,-628r31,0r0,597xm514,-1600v83,0,160,38,209,98r0,-55r55,0r0,486r-55,0r0,-85v-47,58,-128,98,-209,98v-146,0,-271,-125,-271,-271v0,-146,125,-271,271,-271xm514,-1116v102,0,194,-80,209,-170r0,-85v-15,-91,-107,-171,-209,-171v-115,0,-214,98,-214,213v0,116,99,213,214,213","w":878},"\u00ba":{"d":"300,-1329v0,124,93,213,229,213v135,0,228,-88,228,-213v0,-123,-93,-213,-228,-213v-136,0,-229,90,-229,213xm814,-1329v-2,155,-128,271,-300,271v-146,0,-273,-125,-271,-271v2,-155,128,-271,300,-271v146,0,273,125,271,271xm131,-944r575,0r0,31r-606,0r0,-628r31,0r0,597","w":914},"\u00f0":{"d":"639,-975v-244,0,-454,210,-454,454v0,244,210,453,454,453v244,0,454,-209,454,-453v0,-244,-210,-454,-454,-454xm90,-521v0,-315,269,-588,614,-547r-54,-60r-168,0r0,-90r87,0r-104,-115r128,0r115,115r164,0r0,90r-73,0r158,157v132,94,231,267,231,450v0,295,-254,549,-549,549v-294,0,-549,-255,-549,-549","w":1278},"\u0100":{"d":"890,-703r-244,-671r-244,671r488,0xm923,-613r-554,0r-223,613r-96,0r596,-1637r595,1637r-95,0xm351,-1745r590,0r0,70r-590,0r0,-70"},"\u0101":{"d":"674,-1071v181,0,352,96,446,228r0,-139r90,0r0,982r-90,0r0,-200v-94,131,-265,228,-446,228v-294,0,-549,-255,-549,-549v0,-295,254,-550,549,-550xm674,-68v218,0,412,-170,446,-364r0,-178v-33,-195,-227,-365,-446,-365v-244,0,-454,210,-454,454v0,244,210,453,454,453xm373,-1227r590,0r0,70r-590,0r0,-70","w":1360},"\u0102":{"d":"890,-703r-244,-671r-244,671r488,0xm923,-613r-554,0r-223,613r-96,0r596,-1637r595,1637r-95,0xm880,-1856v-9,114,-113,212,-234,212v-120,0,-231,-105,-236,-212r74,0v10,75,80,139,162,139v80,0,153,-64,161,-139r73,0"},"\u0103":{"d":"674,-1071v181,0,352,96,446,228r0,-139r90,0r0,982r-90,0r0,-200v-94,131,-265,228,-446,228v-294,0,-549,-255,-549,-549v0,-295,254,-550,549,-550xm674,-68v218,0,412,-170,446,-364r0,-178v-33,-195,-227,-365,-446,-365v-244,0,-454,210,-454,454v0,244,210,453,454,453xm902,-1338v-9,114,-113,212,-234,212v-120,0,-231,-105,-236,-212r74,0v10,75,80,139,162,139v80,0,153,-64,161,-139r73,0","w":1360},"\u0106":{"d":"217,-800v0,392,336,728,727,728v185,0,346,-61,483,-183r68,61v-156,142,-340,213,-551,213v-441,0,-819,-378,-819,-819v0,-440,378,-819,819,-819v211,0,395,71,551,213r-68,62v-137,-122,-298,-183,-483,-183v-391,0,-727,337,-727,727xm1179,-1855r-245,187r-84,0r163,-187r166,0","w":1595},"\u0107":{"d":"639,-68v141,0,271,-68,353,-168r95,34v-94,132,-266,230,-448,230v-295,0,-549,-255,-549,-550v0,-294,255,-549,549,-549v182,0,353,98,448,229r-95,35v-80,-100,-213,-168,-353,-168v-243,0,-453,210,-453,453v0,243,210,454,453,454xm878,-1287r-245,187r-84,0r163,-187r166,0","w":1177},"\u0108":{"d":"217,-800v0,392,336,728,727,728v185,0,346,-61,483,-183r68,61v-156,142,-340,213,-551,213v-441,0,-819,-378,-819,-819v0,-440,378,-819,819,-819v211,0,395,71,551,213r-68,62v-137,-122,-298,-183,-483,-183v-391,0,-727,337,-727,727xm999,-1892r238,234r-104,0r-186,-143r-176,143r-105,0r229,-234r104,0","w":1595},"\u0109":{"d":"639,-68v141,0,271,-68,353,-168r95,34v-94,132,-266,230,-448,230v-295,0,-549,-255,-549,-550v0,-294,255,-549,549,-549v182,0,353,98,448,229r-95,35v-80,-100,-213,-168,-353,-168v-243,0,-453,210,-453,453v0,243,210,454,453,454xm687,-1324r238,234r-104,0r-186,-143r-176,143r-105,0r229,-234r104,0","w":1177},"\u010a":{"d":"217,-800v0,392,336,728,727,728v185,0,346,-61,483,-183r68,61v-156,142,-340,213,-551,213v-441,0,-819,-378,-819,-819v0,-440,378,-819,819,-819v211,0,395,71,551,213r-68,62v-137,-122,-298,-183,-483,-183v-391,0,-727,337,-727,727xm947,-1824v41,0,76,35,76,76v0,41,-35,76,-76,76v-42,0,-77,-34,-77,-76v0,-42,35,-76,77,-76","w":1595},"\u010b":{"d":"639,-68v141,0,271,-68,353,-168r95,34v-94,132,-266,230,-448,230v-295,0,-549,-255,-549,-550v0,-294,255,-549,549,-549v182,0,353,98,448,229r-95,35v-80,-100,-213,-168,-353,-168v-243,0,-453,210,-453,453v0,243,210,454,453,454xm629,-1303v40,0,76,35,76,75v0,41,-35,77,-76,77v-42,0,-77,-35,-77,-77v0,-41,36,-75,77,-75","w":1177},"\u010c":{"d":"217,-800v0,392,336,728,727,728v185,0,346,-61,483,-183r68,61v-156,142,-340,213,-551,213v-441,0,-819,-378,-819,-819v0,-440,378,-819,819,-819v211,0,395,71,551,213r-68,62v-137,-122,-298,-183,-483,-183v-391,0,-727,337,-727,727xm875,-1658r-229,-234r105,0r176,143r186,-143r104,0r-238,234r-104,0","w":1595},"\u010d":{"d":"639,-68v141,0,271,-68,353,-168r95,34v-94,132,-266,230,-448,230v-295,0,-549,-255,-549,-550v0,-294,255,-549,549,-549v182,0,353,98,448,229r-95,35v-80,-100,-213,-168,-353,-168v-243,0,-453,210,-453,453v0,243,210,454,453,454xm583,-1090r-229,-234r105,0r176,143r186,-143r104,0r-238,234r-104,0","w":1177},"\u0110":{"d":"210,-845r0,-755v32,1,67,2,97,2v263,0,465,76,612,218v317,307,316,853,0,1160v-166,161,-398,227,-709,220r0,-755r-160,0r0,-90r160,0xm300,-845r370,0r0,90r-370,0r0,662v241,1,423,-65,554,-192v282,-271,282,-758,0,-1030v-131,-126,-313,-192,-554,-191r0,661","w":1284},"\u0111":{"d":"674,-68v218,0,412,-170,446,-364r0,-178v-33,-195,-227,-365,-446,-365v-244,0,-454,210,-454,454v0,244,210,453,454,453xm674,-1071v181,0,352,96,446,228r0,-440r-291,0r0,-90r291,0r0,-227r90,0r0,227r99,0r0,90r-99,0r0,1283r-90,0r0,-200v-94,131,-265,228,-446,228v-294,0,-549,-255,-549,-549v0,-295,254,-550,549,-550","w":1360},"\u0112":{"d":"950,-1600r0,90r-710,0r0,665r710,0r0,90r-710,0r0,665r710,0r0,90r-800,0r0,-1600r800,0xm255,-1755r590,0r0,70r-590,0r0,-70","w":1075},"\u0113":{"d":"90,-522v0,-294,255,-549,549,-549v163,0,316,75,406,179r-708,708v85,77,185,116,302,116v141,0,271,-68,353,-168r95,34v-94,132,-266,230,-448,230v-295,0,-549,-255,-549,-550xm639,-975v-243,0,-453,210,-453,453v0,103,30,194,90,272r635,-635v-78,-60,-169,-90,-272,-90xm338,-1227r590,0r0,70r-590,0r0,-70","w":1266},"\u0114":{"d":"950,-1600r0,90r-710,0r0,665r710,0r0,90r-710,0r0,665r710,0r0,90r-800,0r0,-1600r800,0xm785,-1856v-9,114,-113,212,-234,212v-120,0,-231,-105,-236,-212r74,0v10,75,80,139,162,139v80,0,153,-64,161,-139r73,0","w":1075},"\u0115":{"d":"90,-522v0,-294,255,-549,549,-549v163,0,316,75,406,179r-708,708v85,77,185,116,302,116v141,0,271,-68,353,-168r95,34v-94,132,-266,230,-448,230v-295,0,-549,-255,-549,-550xm639,-975v-243,0,-453,210,-453,453v0,103,30,194,90,272r635,-635v-78,-60,-169,-90,-272,-90xm868,-1338v-9,114,-113,212,-234,212v-120,0,-231,-105,-236,-212r74,0v10,75,80,139,162,139v80,0,153,-64,161,-139r73,0","w":1266},"\u0116":{"d":"950,-1600r0,90r-710,0r0,665r710,0r0,90r-710,0r0,665r710,0r0,90r-800,0r0,-1600r800,0xm551,-1824v41,0,76,35,76,76v0,41,-35,76,-76,76v-42,0,-77,-34,-77,-76v0,-42,35,-76,77,-76","w":1075},"\u0117":{"d":"90,-522v0,-294,255,-549,549,-549v163,0,316,75,406,179r-708,708v85,77,185,116,302,116v141,0,271,-68,353,-168r95,34v-94,132,-266,230,-448,230v-295,0,-549,-255,-549,-550xm639,-975v-243,0,-453,210,-453,453v0,103,30,194,90,272r635,-635v-78,-60,-169,-90,-272,-90xm634,-1303v41,0,76,35,76,76v0,41,-35,76,-76,76v-42,0,-77,-34,-77,-76v0,-42,35,-76,77,-76","w":1266},"\u0118":{"d":"695,234v-111,0,-202,-122,-149,-234r-396,0r0,-1600r800,0r0,90r-710,0r0,665r710,0r0,90r-710,0r0,665r710,0r0,90r-344,0v-37,85,7,170,89,170v64,0,94,-43,102,-106v17,9,41,11,55,23v1,79,-73,147,-157,147","w":1075},"\u0119":{"d":"1068,-663v-50,-172,-229,-312,-429,-312v-201,0,-382,146,-433,312r862,0xm738,234v-102,0,-189,-98,-158,-209v-261,-19,-490,-268,-490,-546v0,-295,254,-550,549,-550v277,0,535,227,537,499r-988,-1v-35,284,192,502,451,505v147,2,283,-76,364,-181r96,34v-11,19,-35,46,-71,82v-107,107,-235,160,-386,161v-25,76,27,143,96,143v65,0,94,-43,102,-107v17,9,40,12,55,24v1,79,-73,146,-157,146","w":1266},"\u011a":{"d":"950,-1600r0,90r-710,0r0,665r710,0r0,90r-710,0r0,665r710,0r0,90r-800,0r0,-1600r800,0xm495,-1658r-229,-234r105,0r176,143r186,-143r104,0r-238,234r-104,0","w":1075},"\u011b":{"d":"90,-522v0,-294,255,-549,549,-549v163,0,316,75,406,179r-708,708v85,77,185,116,302,116v141,0,271,-68,353,-168r95,34v-94,132,-266,230,-448,230v-295,0,-549,-255,-549,-550xm639,-975v-243,0,-453,210,-453,453v0,103,30,194,90,272r635,-635v-78,-60,-169,-90,-272,-90xm578,-1090r-229,-234r105,0r176,143r186,-143r104,0r-238,234r-104,0","w":1266},"\u011c":{"d":"217,-800v0,392,336,728,727,728v172,0,324,-53,455,-159r0,-488r90,0r0,520v-152,145,-334,218,-545,218v-441,0,-819,-378,-819,-819v0,-440,378,-819,819,-819v211,0,395,71,551,213r-68,62v-137,-122,-298,-183,-483,-183v-391,0,-727,337,-727,727xm979,-1892r238,234r-104,0r-186,-143r-176,143r-105,0r229,-234r104,0","w":1620},"\u011d":{"d":"674,-67v217,0,408,-167,445,-358r0,-190v-35,-192,-228,-360,-445,-360v-244,0,-454,210,-454,454v0,244,210,454,454,454xm312,56v81,99,213,168,353,168v233,0,443,-196,452,-419v-96,129,-264,223,-443,223v-294,0,-549,-255,-549,-549v0,-296,254,-549,549,-549v181,0,352,95,446,227r0,-139r90,0r0,763v8,291,-255,539,-545,539v-182,0,-354,-98,-448,-230xm716,-1324r238,234r-104,0r-186,-143r-176,143r-105,0r229,-234r104,0","w":1364},"\u011e":{"d":"217,-800v0,392,336,728,727,728v172,0,324,-53,455,-159r0,-488r90,0r0,520v-152,145,-334,218,-545,218v-441,0,-819,-378,-819,-819v0,-440,378,-819,819,-819v211,0,395,71,551,213r-68,62v-137,-122,-298,-183,-483,-183v-391,0,-727,337,-727,727xm1175,-1856v-9,114,-113,212,-234,212v-120,0,-231,-105,-236,-212r74,0v10,75,80,139,162,139v80,0,153,-64,161,-139r73,0","w":1620},"\u011f":{"d":"674,-67v217,0,408,-167,445,-358r0,-190v-35,-192,-228,-360,-445,-360v-244,0,-454,210,-454,454v0,244,210,454,454,454xm312,56v81,99,213,168,353,168v233,0,443,-196,452,-419v-96,129,-264,223,-443,223v-294,0,-549,-255,-549,-549v0,-296,254,-549,549,-549v181,0,352,95,446,227r0,-139r90,0r0,763v8,291,-255,539,-545,539v-182,0,-354,-98,-448,-230xm903,-1338v-9,114,-113,212,-234,212v-120,0,-231,-105,-236,-212r74,0v10,75,80,139,162,139v80,0,153,-64,161,-139r73,0","w":1364},"\u0120":{"d":"217,-800v0,392,336,728,727,728v172,0,324,-53,455,-159r0,-488r90,0r0,520v-152,145,-334,218,-545,218v-441,0,-819,-378,-819,-819v0,-440,378,-819,819,-819v211,0,395,71,551,213r-68,62v-137,-122,-298,-183,-483,-183v-391,0,-727,337,-727,727xm941,-1824v41,0,76,35,76,76v0,41,-35,76,-76,76v-42,0,-77,-34,-77,-76v0,-42,35,-76,77,-76","w":1620},"\u0121":{"d":"674,-67v217,0,408,-167,445,-358r0,-190v-35,-192,-228,-360,-445,-360v-244,0,-454,210,-454,454v0,244,210,454,454,454xm312,56v81,99,213,168,353,168v233,0,443,-196,452,-419v-96,129,-264,223,-443,223v-294,0,-549,-255,-549,-549v0,-296,254,-549,549,-549v181,0,352,95,446,227r0,-139r90,0r0,763v8,291,-255,539,-545,539v-182,0,-354,-98,-448,-230xm668,-1303v41,0,76,35,76,76v0,41,-35,76,-76,76v-42,0,-77,-34,-77,-76v0,-42,35,-76,77,-76","w":1364},"\u012c":{"d":"255,-1600r0,1600r-90,0r0,-1600r90,0xm445,-1856v-9,114,-113,212,-234,212v-120,0,-231,-105,-236,-212r74,0v10,75,80,139,162,139v80,0,153,-64,161,-139r73,0","w":420},"\u012d":{"d":"255,-982r0,982r-90,0r0,-982r90,0xm445,-1238v-9,114,-113,212,-234,212v-120,0,-231,-105,-236,-212r74,0v10,75,80,139,162,139v80,0,153,-64,161,-139r73,0","w":420},"\u013f":{"d":"150,0r0,-1600r90,0r0,1510r620,0r0,90r-710,0xm738,-876v41,0,76,35,76,76v0,41,-35,76,-76,76v-42,0,-77,-34,-77,-76v0,-42,35,-76,77,-76","w":950},"\u0140":{"d":"240,-1600r0,1600r-90,0r0,-1600r90,0xm417,-876v41,0,76,35,76,76v0,41,-35,76,-76,76v-42,0,-77,-34,-77,-76v0,-42,35,-76,77,-76","w":593},"\u0143":{"d":"150,-1600r99,0r822,1423r0,-1423r90,0r0,1600r-90,0r-831,-1437r0,1437r-90,0r0,-1600xm875,-1805r-245,187r-84,0r163,-187r166,0","w":1311},"\u0144":{"d":"526,-951v-127,0,-245,92,-286,188r0,763r-90,0r0,-982r90,0r0,63v82,-81,177,-122,286,-122v226,0,394,165,395,384r0,657r-90,0r0,-649v5,-162,-144,-302,-305,-302xm755,-1287r-245,187r-84,0r163,-187r166,0","w":1071},"\u0147":{"d":"150,-1600r99,0r822,1423r0,-1423r90,0r0,1600r-90,0r-831,-1437r0,1437r-90,0r0,-1600xm600,-1608r-229,-234r105,0r176,143r186,-143r104,0r-238,234r-104,0","w":1311},"\u0148":{"d":"526,-951v-127,0,-245,92,-286,188r0,763r-90,0r0,-982r90,0r0,63v82,-81,177,-122,286,-122v226,0,394,165,395,384r0,657r-90,0r0,-649v5,-162,-144,-302,-305,-302xm480,-1090r-229,-234r105,0r176,143r186,-143r104,0r-238,234r-104,0","w":1071},"\u014c":{"d":"946,-1623v441,0,821,380,821,821v0,441,-380,821,-821,821v-441,0,-821,-380,-821,-821v0,-441,380,-821,821,-821xm1675,-802v0,-392,-337,-729,-729,-729v-392,0,-729,337,-729,729v0,392,337,730,729,730v392,0,729,-338,729,-730xm651,-1745r590,0r0,70r-590,0r0,-70","w":1892},"\u014d":{"d":"90,-521v0,-295,254,-550,549,-550v296,0,549,254,549,550v0,295,-254,549,-549,549v-294,0,-549,-255,-549,-549xm639,-975v-244,0,-454,210,-454,454v0,244,210,453,454,453v244,0,454,-209,454,-453v0,-244,-210,-454,-454,-454xm344,-1199r590,0r0,70r-590,0r0,-70","w":1278},"\u014e":{"d":"946,-1623v441,0,821,380,821,821v0,441,-380,821,-821,821v-441,0,-821,-380,-821,-821v0,-441,380,-821,821,-821xm1675,-802v0,-392,-337,-729,-729,-729v-392,0,-729,337,-729,729v0,392,337,730,729,730v392,0,729,-338,729,-730xm1181,-1856v-9,114,-113,212,-234,212v-120,0,-231,-105,-236,-212r74,0v10,75,80,139,162,139v80,0,153,-64,161,-139r73,0","w":1892},"\u014f":{"d":"90,-521v0,-295,254,-550,549,-550v296,0,549,254,549,550v0,295,-254,549,-549,549v-294,0,-549,-255,-549,-549xm639,-975v-244,0,-454,210,-454,454v0,244,210,453,454,453v244,0,454,-209,454,-453v0,-244,-210,-454,-454,-454xm874,-1338v-9,114,-113,212,-234,212v-120,0,-231,-105,-236,-212r74,0v10,75,80,139,162,139v80,0,153,-64,161,-139r73,0","w":1278},"\u0150":{"d":"946,-1623v441,0,821,380,821,821v0,441,-380,821,-821,821v-441,0,-821,-380,-821,-821v0,-441,380,-821,821,-821xm1675,-802v0,-392,-337,-729,-729,-729v-392,0,-729,337,-729,729v0,392,337,730,729,730v392,0,729,-338,729,-730xm1056,-1836r-245,187r-84,0r163,-187r166,0xm1285,-1836r-245,187r-84,0r163,-187r166,0","w":1892},"\u0151":{"d":"90,-521v0,-295,254,-550,549,-550v296,0,549,254,549,550v0,295,-254,549,-549,549v-294,0,-549,-255,-549,-549xm639,-975v-244,0,-454,210,-454,454v0,244,210,453,454,453v244,0,454,-209,454,-453v0,-244,-210,-454,-454,-454xm749,-1268r-245,187r-84,0r163,-187r166,0xm978,-1268r-245,187r-84,0r163,-187r166,0","w":1278},"\u0152":{"d":"90,-802v0,-441,380,-821,821,-821v92,0,177,23,259,23r1000,0r0,90r-840,0v213,125,399,387,401,665r439,0r0,90r-439,0v-4,280,-193,540,-407,665r846,0r0,90r-1000,0v-81,13,-167,19,-259,19v-441,0,-821,-380,-821,-821xm182,-802v0,392,337,738,729,730v231,-5,395,-89,516,-214v150,-156,220,-311,212,-559v-10,-292,-220,-549,-469,-641v-504,-185,-988,207,-988,684","w":2295},"\u0153":{"d":"639,-975v-244,0,-454,210,-454,454v0,244,210,453,454,453v244,0,454,-209,454,-453v0,-244,-210,-454,-454,-454xm1929,-663v-50,-172,-229,-312,-429,-312v-153,0,-297,84,-374,196v19,37,34,75,45,116r758,0xm1070,-863v97,-123,259,-208,430,-208v277,0,535,227,537,499r-851,-1v9,122,-12,218,-61,310v79,109,222,195,375,195v147,0,283,-76,364,-181r96,34v-11,19,-35,46,-71,82v-107,107,-237,161,-389,161v-171,0,-333,-84,-430,-208v-97,123,-259,208,-431,208v-294,0,-549,-255,-549,-549v0,-295,254,-550,549,-550v172,0,333,84,431,208","w":2127},"\u0178":{"d":"600,-647r-550,-953r103,0r492,853r493,-853r103,0r-551,953r0,647r-90,0r0,-647xm496,-1848v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89xm796,-1848v48,0,90,41,90,89v0,49,-42,90,-90,90v-48,0,-90,-41,-90,-90v0,-48,42,-89,90,-89"},"\u1ef2":{"d":"600,-647r-550,-953r103,0r492,853r493,-853r103,0r-551,953r0,647r-90,0r0,-647xm592,-1805r163,187r-84,0r-245,-187r166,0"},"\u1ef3":{"d":"930,-982r-649,1357r-88,0r265,-556r-383,-801r102,0r326,704r326,-704r101,0xm449,-1287r163,187r-84,0r-245,-187r166,0","w":1005}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1992, 1994, 1997, 2000, 2004 Adobe Systems Incorporated. All rights reserved.
 * Protected by U.S. Patents D454,582.
 * 
 * Trademark:
 * Myriad is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * MyriadPro-Regular
 * 
 * Designer:
 * Robert Slimbach and Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":184,"face":{"font-family":"myriad","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 3 4 3 2 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-17 -270 302 90","underline-thickness":"18","underline-position":"-18","stemh":"24","stemv":"32","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":76,"k":{"T":15,"V":13,"W":13,"Y":17}},"!":{"d":"54,-69r-25,0r-5,-174r35,0xm41,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,22,-23v13,0,21,10,21,23v0,13,-9,22,-22,22","w":82},"\"":{"d":"18,-249r32,0r-6,86r-20,0xm72,-249r31,0r-6,86r-19,0","w":121,"k":{"T":-6,"J":21,"M":2,"C":1,"G":1,"O":1,"Q":1,"V":-6,"W":-6,"Y":-1,"A":22,"f":-9,"g":4,"c":3,"d":3,"e":3,"o":3,"q":3,"t":-9,"v":-8,"w":-8,"y":-8,",":41,".":41}},"#":{"d":"68,-92r37,0r7,-52r-37,0xm55,0r-21,0r9,-71r-30,0r0,-21r33,0r7,-52r-31,0r0,-21r34,0r10,-69r21,0r-10,69r38,0r9,-69r21,0r-9,69r30,0r0,21r-33,0r-6,52r31,0r0,21r-35,0r-9,71r-21,0r9,-71r-38,0","w":178},"$":{"d":"101,31r-23,0r0,-36v-21,0,-41,-7,-54,-16r8,-24v25,20,97,24,95,-20v0,-20,-14,-32,-41,-43v-37,-14,-59,-32,-59,-63v0,-30,21,-53,54,-58r0,-36r22,0r0,35v21,1,36,7,47,13r-9,24v-8,-4,-22,-13,-45,-13v-28,0,-38,16,-38,31v0,18,12,31,44,41v72,23,76,113,-1,127r0,38"},"%":{"d":"68,-238v32,0,53,26,53,70v0,49,-25,73,-55,73v-30,0,-55,-23,-55,-70v0,-47,25,-73,57,-73xm66,-219v-19,0,-30,24,-30,53v0,30,10,52,30,52v21,0,30,-22,30,-53v0,-29,-8,-52,-30,-52xm83,4r-20,0r138,-242r20,0xm220,-141v32,0,54,25,54,70v0,49,-26,74,-56,74v-30,0,-55,-24,-55,-71v0,-47,25,-73,57,-73xm219,-122v-19,0,-31,23,-31,53v0,30,11,52,31,52v21,0,30,-22,30,-53v0,-28,-8,-52,-30,-52","w":285},"&":{"d":"217,0r-38,0r-22,-23v-44,49,-146,26,-146,-41v0,-34,22,-55,48,-72v-36,-40,-23,-109,41,-111v30,0,54,20,54,52v0,28,-20,43,-54,66r59,67v11,-17,19,-40,24,-71r29,0v-6,38,-17,69,-35,90xm41,-69v0,53,74,63,100,27r-68,-76v-13,9,-32,23,-32,49xm98,-225v-42,2,-35,59,-12,79v24,-14,40,-27,40,-48v0,-15,-8,-31,-28,-31","w":217},"(":{"d":"70,-250r25,0v-26,36,-45,82,-45,148v0,64,20,110,45,146r-25,0v-23,-30,-47,-77,-47,-147v0,-71,24,-117,47,-147","w":102,"k":{"T":-17,"J":-6,"C":4,"G":4,"O":4,"Q":4,"V":-18,"W":-18,"X":-4,"Y":-15,"A":4,"j":-20}},")":{"d":"32,44r-25,0v57,-62,59,-232,0,-294r25,0v23,30,47,76,47,147v0,71,-24,117,-47,147","w":102},"*":{"d":"97,-247r21,13r-34,45r55,-7r0,25v-18,-1,-39,-7,-55,-6r35,43r-23,13v-8,-16,-13,-35,-23,-50r-23,50r-20,-13v11,-16,25,-28,34,-45r-53,8r0,-25v17,1,38,7,53,6r-34,-44r22,-13v8,16,13,36,23,51","w":149},"+":{"d":"96,-192r23,0r0,85r81,0r0,22r-81,0r0,85r-23,0r0,-85r-82,0r0,-22r82,0r0,-85","w":214},",":{"d":"28,42r-22,3v8,-22,17,-61,21,-87r36,-3v-9,31,-25,70,-35,87","w":74,"k":{"\"":37,"'":37}},"-":{"d":"11,-109r89,0r0,23r-89,0r0,-23","w":110,"k":{"T":18,"J":7,"C":-5,"G":-5,"O":-5,"Q":-5,"V":4,"W":4,"X":8,"Y":18,"A":1,"g":-5,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"v":2,"w":2,"y":2}},".":{"d":"40,4v-12,0,-21,-10,-21,-23v0,-13,8,-22,21,-22v13,0,22,9,22,22v0,13,-9,23,-22,23","w":74,"k":{"\"":37,"'":37}},"\/":{"d":"24,14r-24,0r100,-261r25,0","w":123},"0":{"d":"95,-238v49,0,77,43,77,118v0,80,-30,124,-81,124v-46,0,-78,-43,-78,-120v0,-79,34,-122,82,-122xm93,-213v-27,0,-48,33,-48,97v0,61,19,95,48,95v32,0,47,-37,47,-97v0,-58,-14,-95,-47,-95"},"1":{"d":"85,0r-1,-204r-40,21r-7,-24v25,-10,40,-31,79,-27r0,234r-31,0"},"2":{"d":"166,0r-150,0v-4,-27,13,-32,25,-44v58,-58,87,-87,87,-122v0,-24,-11,-46,-46,-46v-21,0,-39,11,-50,20r-10,-22v16,-13,39,-24,66,-24v50,0,72,35,72,68v0,47,-56,99,-99,144r105,0r0,26"},"3":{"d":"15,-12r9,-24v9,5,30,14,52,14v40,0,53,-25,53,-45v-1,-39,-38,-50,-79,-47r0,-24v35,2,66,-5,70,-39v5,-40,-68,-42,-88,-20r-8,-23v13,-9,36,-18,61,-18v82,0,87,90,24,111v27,8,52,26,52,61v0,37,-29,70,-85,70v-26,0,-49,-8,-61,-16"},"4":{"d":"144,0r-30,0r0,-64r-109,0r0,-21r105,-149r34,0r0,145r33,0r0,25r-33,0r0,64xm114,-89r0,-114v-22,44,-50,75,-77,114r77,0"},"5":{"d":"58,-147v56,-6,99,17,103,71v5,69,-93,99,-146,66r8,-25v31,22,110,16,106,-37v7,-41,-52,-59,-100,-50r15,-112r112,0r0,27r-89,0"},"6":{"d":"150,-238r0,26v-62,-1,-101,39,-105,85v34,-49,128,-27,128,48v0,43,-29,83,-78,83v-50,0,-83,-39,-83,-100v0,-89,51,-139,138,-142xm141,-77v0,-66,-97,-70,-97,-11v0,39,18,67,51,67v27,0,46,-23,46,-56"},"7":{"d":"21,-234r147,0r0,21r-102,213r-33,0r102,-208r-114,0r0,-26"},"8":{"d":"60,-122v-66,-28,-39,-118,35,-116v77,2,93,84,29,112v27,14,47,33,47,62v0,41,-34,68,-79,68v-91,0,-104,-102,-32,-126xm93,-19v28,0,46,-18,46,-42v0,-28,-19,-42,-51,-51v-55,12,-58,91,5,93xm93,-215v-26,0,-41,17,-41,37v0,23,18,36,45,43v42,-9,52,-78,-4,-80"},"9":{"d":"35,4r0,-26v59,3,99,-34,104,-86v-36,49,-124,20,-124,-47v0,-44,32,-83,80,-83v95,0,90,167,37,208v-27,21,-56,34,-97,34xm46,-157v0,60,94,67,94,14v0,-40,-15,-71,-48,-71v-27,0,-46,24,-46,57"},":":{"d":"40,-123v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22xm40,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22","w":74},";":{"d":"28,42r-22,2v8,-22,18,-59,22,-86r35,-4v-9,31,-25,71,-35,88xm42,-123v-12,0,-20,-9,-20,-22v0,-13,9,-23,21,-23v13,0,21,10,21,23v0,13,-9,22,-22,22","w":74},"<":{"d":"24,-86r0,-19r167,-87r0,25r-141,72r141,70r0,25","w":214},"=":{"d":"200,-121r-186,0r0,-22r186,0r0,22xm200,-51r-186,0r0,-21r186,0r0,21","w":214},">":{"d":"191,-106r0,20r-167,86r0,-25r142,-71r-142,-71r0,-25","w":214},"?":{"d":"79,-69r-28,0v-17,-43,45,-87,47,-121v2,-34,-50,-39,-71,-20r-9,-23v36,-29,121,-9,112,39v3,44,-64,75,-51,125xm64,4v-12,0,-21,-9,-21,-22v0,-13,9,-23,21,-23v13,0,22,10,22,23v0,13,-9,22,-22,22","w":146},"@":{"d":"117,-43v36,0,47,-52,52,-89v-40,-13,-76,21,-75,62v0,16,7,27,23,27xm183,8r6,15v-78,40,-174,-3,-174,-98v0,-74,52,-138,132,-138v63,0,104,44,104,104v0,54,-30,86,-63,86v-17,0,-25,-15,-29,-32v-20,43,-87,45,-89,-14v-2,-58,63,-103,124,-78r-13,66v-5,27,-1,40,11,40v18,1,39,-25,39,-66v0,-53,-31,-90,-87,-90v-59,0,-108,47,-108,120v0,82,81,120,147,85","w":265},"A":{"d":"153,-76r-86,0r-26,76r-32,0r83,-243r37,0r83,243r-33,0xm73,-101r74,0r-25,-70v-6,-15,-6,-32,-13,-44v-9,39,-24,77,-36,114","w":220,"k":{"T":28,"J":-7,"M":1,"C":5,"G":5,"O":5,"Q":5,"U":10,"V":19,"W":19,"X":5,"Y":28,"a":-1,"f":3,"g":4,"b":1,"h":1,"k":1,"l":1,"j":1,"i":1,"m":1,"n":1,"p":1,"r":1,"c":4,"d":4,"e":4,"o":4,"q":4,"s":2,"t":4,"u":4,"v":8,"w":8,"y":8,"z":-5,"-":1,")":3,"]":3,"}":3,"\"":21,"'":21}},"B":{"d":"180,-69v0,70,-85,76,-153,68r0,-238v57,-10,144,-11,144,55v0,25,-18,43,-41,54v23,5,50,25,50,61xm59,-218r0,78v42,4,80,-8,80,-41v0,-38,-46,-43,-80,-37xm59,-116r0,92v40,6,89,-1,88,-45v0,-42,-42,-50,-88,-47","w":195,"k":{"T":3,"V":-1,"W":-1,"Y":5,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":-1,"w":-1,"y":-1,"-":-2,",":5,".":5}},"C":{"d":"190,-33r7,25v-11,6,-35,12,-65,12v-68,0,-119,-43,-119,-123v0,-97,99,-152,184,-117r-8,26v-67,-29,-143,7,-143,90v0,81,75,116,144,87","w":208,"k":{"T":-10,"J":-1,"C":8,"G":8,"O":8,"Q":8,"V":-4,"W":-4,"Y":-1,"A":-1,"a":3,"i":1,"m":1,"n":1,"p":1,"r":1,"c":4,"d":4,"e":4,"o":4,"q":4,"u":4,"v":7,"w":7,"y":7,"z":-1,")":-6,"]":-6,"}":-6}},"D":{"d":"227,-127v0,107,-90,142,-200,126r0,-238v103,-18,200,8,200,112xm59,-216r0,192v81,9,135,-25,135,-102v0,-69,-60,-107,-135,-90","w":239,"k":{"T":9,"X":10,"Y":10,"A":5,"f":-6,"g":-2,"j":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"t":-6,"u":-1,"v":-5,"w":-5,"y":-5,"z":1,"x":2,"-":-5,")":3,"]":3,"}":3,",":12,".":12}},"E":{"d":"153,-140r0,26r-94,0r0,88r105,0r0,26r-137,0r0,-243r131,0r0,27r-99,0r0,76r94,0","w":177,"k":{"T":-6,"J":-6,"V":-3,"W":-3,"Y":-1,"g":2,"c":1,"d":1,"e":1,"o":1,"q":1,"t":1,"u":3,"v":3,"w":3,"y":3,"z":-1,",":1,".":1}},"F":{"d":"27,0r0,-243r131,0r0,27r-99,0r0,80r91,0r0,26r-91,0r0,110r-32,0","w":175,"k":{"J":31,"M":6,"A":28,"a":16,"g":6,"b":6,"h":6,"k":6,"l":6,"i":9,"m":9,"n":9,"p":9,"r":9,"c":11,"d":11,"e":11,"o":11,"q":11,"u":13,"v":8,"w":8,"y":8,":":5,";":5,",":35,".":35}},"G":{"d":"138,3v-73,1,-125,-46,-125,-123v0,-94,102,-150,192,-114r-8,26v-66,-30,-151,5,-151,87v0,78,68,114,135,91r0,-72r-49,0r0,-25r80,0r0,116v-14,5,-41,14,-74,14","w":232,"k":{"a":-3,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2}},"H":{"d":"27,-243r32,0r0,102r117,0r0,-102r32,0r0,243r-32,0r0,-114r-117,0r0,114r-32,0r0,-243","w":234,"k":{"Y":3,"f":-4,"b":-4,"h":-4,"k":-4,"l":-4,"j":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"t":-6,"v":-3,"w":-3,"y":-3,"z":-4,"x":-2}},"I":{"d":"27,-243r32,0r0,243r-32,0r0,-243","w":86,"k":{"Y":3,"f":-4,"b":-4,"h":-4,"k":-4,"l":-4,"j":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"t":-6,"v":-3,"w":-3,"y":-3,"z":-4,"x":-2}},"J":{"d":"77,-83r0,-160r31,0r0,163v1,79,-50,94,-107,78r5,-25v39,10,71,5,71,-56","w":133,"k":{"v":-4,"w":-4,"y":-4,")":-15,"]":-15,"}":-15,",":4,".":4}},"K":{"d":"27,0r0,-243r32,0r1,117v29,-41,62,-78,93,-117r39,0r-88,103r95,140r-37,0r-80,-119r-23,26r0,93r-32,0","w":195,"k":{"T":-8,"J":-14,"C":6,"G":6,"O":6,"Q":6,"V":-5,"W":-5,"Y":3,"A":-4,"Z":-7,"a":-6,"g":2,"b":-4,"h":-4,"k":-4,"l":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"u":2,"v":6,"w":6,"y":6,":":-8,";":-8,"-":6,")":-8,"]":-8,"}":-8,",":-6,".":-6}},"L":{"d":"27,0r0,-243r32,0r0,217r103,0r0,26r-135,0","w":169,"k":{"T":32,"J":-4,"C":14,"G":14,"O":14,"Q":14,"U":13,"V":21,"W":21,"Y":30,"c":5,"d":5,"e":5,"o":5,"q":5,"t":1,"u":5,"v":10,"w":10,"y":10,"-":15,"\"":35,"'":35}},"M":{"d":"238,0r-11,-211v-9,28,-18,59,-30,92r-43,118r-24,0r-40,-116v-13,-34,-18,-67,-28,-94r-11,211r-30,0r17,-243r40,0r66,199v17,-63,47,-137,69,-199r40,0r16,243r-31,0","w":289,"k":{"T":4,"A":4,"a":-2,"j":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"u":-1,"v":-3,"w":-3,"y":-3,"-":-2}},"N":{"d":"57,0r-30,0r0,-243r35,0r77,123v19,28,32,56,45,79v-6,-60,-3,-135,-4,-202r30,0r0,243r-32,0r-77,-123v-18,-27,-32,-57,-46,-81","w":236,"k":{"Y":3,"f":-4,"b":-4,"h":-4,"k":-4,"l":-4,"j":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"t":-6,"v":-3,"w":-3,"y":-3,"z":-4,"x":-2}},"O":{"d":"125,-247v67,0,110,51,110,123v0,83,-51,128,-113,128v-64,0,-109,-51,-109,-124v0,-77,47,-127,112,-127xm124,-221v-52,0,-78,48,-78,101v0,52,28,98,78,98v50,0,78,-45,78,-100v0,-49,-26,-99,-78,-99","w":248,"k":{"T":9,"X":10,"Y":10,"A":5,"f":-6,"g":-2,"j":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"t":-6,"u":-1,"v":-5,"w":-5,"y":-5,"z":1,"x":2,"-":-5,")":3,"]":3,"}":3,",":12,".":12}},"P":{"d":"177,-174v0,61,-55,87,-118,77r0,97r-32,0r0,-240v64,-11,150,-6,150,66xm59,-217r0,94v42,11,86,-7,86,-49v0,-43,-48,-54,-86,-45","w":191,"k":{"J":27,"M":4,"X":5,"Y":3,"A":30,"Z":11,"a":9,"g":9,"b":2,"h":2,"k":2,"l":2,"i":6,"m":6,"n":6,"p":6,"r":6,"c":9,"d":9,"e":9,"o":9,"q":9,"s":8,"t":-2,"u":5,"v":-1,"w":-1,"y":-1,":":4,";":4,"-":6,",":50,".":50}},"Q":{"d":"228,36r-108,-32v-58,-2,-107,-45,-107,-123v0,-78,47,-128,113,-128v66,0,109,51,109,123v0,65,-32,99,-69,118v24,6,50,11,71,15xm124,-22v50,0,78,-45,78,-100v0,-49,-26,-99,-77,-99v-53,0,-79,48,-79,101v0,52,28,98,78,98","w":248,"k":{"T":9,"X":10,"Y":10,"A":5,"f":-6,"g":-2,"j":-2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"t":-6,"u":-1,"v":-5,"w":-5,"y":-5,"z":1,"x":2,"-":-5,")":3,"]":3,"}":3,",":12,".":12}},"R":{"d":"27,-239v64,-11,150,-9,150,61v0,33,-23,51,-46,62v37,3,43,98,54,116r-32,0v-4,-7,-10,-28,-16,-58v-8,-44,-32,-49,-78,-47r0,105r-32,0r0,-239xm59,-217r0,88v46,4,86,-6,86,-46v0,-43,-50,-50,-86,-42","w":193,"k":{"T":-3,"C":-1,"G":-1,"O":-1,"Q":-1,"V":-6,"W":-6,"X":-2,"Y":4,"A":-2,"a":-4,"b":-3,"h":-3,"k":-3,"l":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"t":-7,"v":-5,"w":-5,"y":-5}},"S":{"d":"15,-12r8,-26v29,24,107,22,107,-26v0,-22,-12,-40,-46,-48v-88,-22,-82,-136,15,-135v24,0,43,6,53,12r-9,26v-8,-5,-23,-12,-45,-12v-33,0,-46,20,-46,37v0,23,14,36,48,46v88,26,83,142,-23,142v-23,0,-49,-7,-62,-16","w":177,"k":{"a":-1,"j":1,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"t":1,"v":3,"w":3,"y":3,"-":-2}},"T":{"d":"73,0r0,-216r-73,0r0,-27r179,0r0,27r-74,0r0,216r-32,0","w":178,"k":{"i":16,"T":-14,"J":15,"C":10,"G":10,"O":10,"Q":10,"V":-14,"W":-14,"X":-8,"Y":-10,"A":27,"S":2,"a":23,"g":23,"b":3,"h":3,"k":3,"l":3,"m":16,"n":16,"p":16,"r":16,"c":26,"d":26,"e":26,"o":26,"q":26,"s":19,"u":16,"v":14,"w":14,"y":14,"z":18,"x":12,":":9,";":9,"-":18,")":-22,"]":-22,"}":-22,"\"":-6,"'":-6,",":22,".":22}},"U":{"d":"27,-243r32,0r0,144v0,54,24,77,56,77v36,0,59,-24,59,-77r0,-144r32,0r0,142v0,75,-39,105,-92,105v-50,0,-87,-28,-87,-104r0,-143","w":232,"k":{"A":12,"a":1,"f":-3,"s":2,"t":-1,"v":1,"w":1,"y":1,"z":2,"x":3,",":10,".":10}},"V":{"d":"115,0r-34,0r-80,-243r34,0r65,211v17,-69,46,-144,68,-211r34,0","w":200,"k":{"T":-12,"J":8,"V":-6,"W":-6,"A":21,"a":12,"g":3,"b":2,"h":2,"k":2,"l":2,"i":6,"m":6,"n":6,"p":6,"r":6,"c":12,"d":12,"e":12,"o":12,"q":12,"s":9,"t":-3,"u":6,"v":1,"w":1,"y":1,"z":1,":":6,";":6,"-":5,")":-20,"]":-20,"}":-20,"\"":-7,"'":-7,",":20,".":20}},"W":{"d":"100,0r-33,0r-62,-243r34,0r47,207r52,-207r33,0r30,123v8,28,10,60,17,84r52,-207r32,0r-69,243r-33,0r-30,-126v-9,-30,-11,-58,-17,-80v-12,65,-37,141,-53,206","w":304,"k":{"T":-12,"J":8,"V":-6,"W":-6,"A":21,"a":12,"g":3,"b":2,"h":2,"k":2,"l":2,"i":6,"m":6,"n":6,"p":6,"r":6,"c":12,"d":12,"e":12,"o":12,"q":12,"s":9,"t":-3,"u":6,"v":1,"w":1,"y":1,"z":1,":":6,";":6,"-":5,")":-20,"]":-20,"}":-20,"\"":-7,"'":-7,",":20,".":20}},"X":{"d":"197,0r-37,0r-60,-102r-55,102r-36,0r74,-123r-71,-120r36,0r56,98r54,-98r37,0r-74,118","w":205,"k":{"T":-3,"J":-1,"C":10,"G":10,"O":10,"Q":10,"V":-3,"W":-3,"X":5,"Y":-2,"A":3,"a":2,"c":4,"d":4,"e":4,"o":4,"q":4,"u":3,"v":7,"w":7,"y":7,"-":8}},"Y":{"d":"113,0r-32,0r0,-103r-77,-140r36,0r59,117v17,-38,41,-79,60,-117r35,0r-81,140r0,103","w":194,"k":{"T":-12,"J":19,"M":4,"C":13,"G":13,"O":13,"Q":13,"V":-10,"W":-10,"X":1,"Y":-1,"A":29,"S":5,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"a":25,"g":14,"b":3,"h":3,"k":3,"l":3,"i":5,"m":5,"n":5,"p":5,"r":5,"c":27,"d":27,"e":27,"o":27,"q":27,"s":19,"t":7,"u":19,"v":10,"w":10,"y":10,"z":9,"x":9,":":12,";":12,"-":18,")":-20,"]":-20,"}":-20,"\"":-3,"'":-3,",":34,".":34}},"Z":{"d":"11,0r0,-18r134,-198r-123,0r0,-27r164,0r0,19r-134,198r136,0r0,26r-177,0","w":199,"k":{"J":-3,"C":8,"G":8,"O":8,"Q":8,"X":2,"c":4,"d":4,"e":4,"o":4,"q":4,"u":3,"v":3,"w":3,"y":3,"-":10}},"[":{"d":"95,40r-66,0r0,-287r66,0r0,20r-41,0r0,248r41,0r0,19","w":102,"k":{"T":-17,"J":-6,"C":4,"G":4,"O":4,"Q":4,"V":-18,"W":-18,"X":-4,"Y":-15,"A":4,"j":-20}},"\\":{"d":"123,14r-24,0r-98,-261r24,0","w":122},"]":{"d":"7,-247r66,0r0,287r-66,0r0,-19r41,0r0,-248r-41,0r0,-20","w":102},"^":{"d":"193,-68r-25,0r-61,-140r-60,140r-25,0r74,-166r23,0","w":214},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"82,-178v95,3,58,96,69,178r-28,0v-2,-7,0,-17,-4,-22v-10,14,-28,26,-53,26v-35,0,-53,-25,-53,-50v0,-42,37,-65,104,-65v0,-18,-2,-41,-39,-43v-17,0,-34,5,-46,13r-7,-22v14,-9,35,-15,57,-15xm74,-19v38,-2,48,-28,44,-70v-35,-1,-74,5,-74,39v0,21,14,31,30,31","w":173},"b":{"d":"25,0r1,-256r32,0r0,110v36,-60,134,-30,134,57v0,93,-96,123,-138,61r-2,28r-27,0xm107,-153v-35,-1,-53,36,-49,83v3,31,23,48,49,49v33,0,52,-27,52,-67v0,-35,-18,-65,-52,-65","w":204,"k":{"T":14,"v":3,"w":3,"y":3,"z":3,"x":5,"-":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"c":{"d":"145,-30r5,24v-8,4,-27,10,-50,10v-53,0,-86,-36,-86,-89v0,-70,73,-113,137,-83r-7,24v-42,-24,-106,5,-98,57v-4,57,55,78,99,57","w":161,"k":{"T":4,"f":-1,"c":2,"d":2,"e":2,"o":2,"q":2,"t":-5,"v":-6,"w":-6,"y":-6,"-":-2,",":4,".":4}},"d":{"d":"145,-256r31,0r2,256r-28,0v-2,-9,0,-22,-3,-30v-32,62,-133,31,-133,-55v0,-86,90,-120,131,-67r0,-104xm97,-22v35,1,48,-34,48,-81v0,-31,-19,-50,-47,-50v-33,0,-52,29,-52,67v0,35,17,64,51,64","w":203,"k":{",":4,".":4}},"e":{"d":"166,-81r-122,0v-2,64,66,69,108,51r6,23v-11,5,-31,11,-59,11v-54,0,-85,-35,-85,-88v0,-53,30,-94,81,-94v63,0,75,53,71,97xm44,-104r93,0v0,-20,-8,-51,-44,-51v-32,0,-46,29,-49,51","w":180,"k":{"T":12,"x":1,"-":-10,",":4,".":4}},"f":{"d":"30,-174v-6,-58,35,-101,89,-81r-4,25v-36,-15,-60,13,-54,56r42,0r0,24r-42,0r0,150r-31,0r0,-150r-25,0r0,-24r25,0","w":105,"k":{"g":4,"c":5,"d":5,"e":5,"o":5,"q":5,"s":3,"t":-4,":":-12,";":-12,")":-37,"]":-37,"}":-37,"\"":-20,"'":-20,",":12,".":12}},"g":{"d":"175,-26v0,95,-78,120,-146,87r8,-25v44,31,124,12,106,-66v-9,16,-28,29,-55,29v-43,0,-74,-37,-74,-85v0,-90,99,-117,134,-62r1,-26r28,0v-4,41,-2,102,-2,148xm97,-25v37,1,51,-35,47,-80v-3,-29,-18,-47,-46,-48v-30,0,-52,26,-52,66v0,34,17,62,51,62","w":201,"k":{"T":12,"f":-1,"i":2,"m":2,"n":2,"p":2,"r":2,",":5,".":5}},"h":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r0,-256r32,0r1,109v29,-45,116,-51,116,43r0,104r-32,0v-6,-59,22,-152,-40,-152","w":199,"k":{"T":18,"t":1,"v":5,"w":5,"y":5,"\"":3,"'":3}},"i":{"d":"58,0r-32,0r0,-174r32,0r0,174xm42,-243v12,0,20,9,20,20v0,11,-8,19,-21,19v-12,0,-19,-8,-19,-19v0,-11,8,-20,20,-20","w":84},"j":{"d":"-17,51v42,-8,47,-15,47,-79r0,-146r32,0v-8,98,36,248,-75,250xm46,-243v12,0,20,9,20,20v0,10,-8,19,-21,19v-12,0,-19,-9,-19,-19v0,-11,8,-20,20,-20","w":87,"k":{",":4,".":4}},"k":{"d":"58,-256r0,162v20,-28,45,-53,67,-80r38,0r-67,71r76,103r-38,0r-60,-84r-16,18r0,66r-32,0r0,-256r32,0","w":168,"k":{"T":7,"a":-6,"b":-6,"h":-6,"k":-6,"l":-6,"i":-6,"m":-6,"n":-6,"p":-6,"r":-6,"u":-1,"v":-5,"w":-5,"y":-5,":":-4,";":-4,"-":4,",":-5,".":-5}},"l":{"d":"26,0r0,-256r32,0r0,256r-32,0","w":84,"k":{",":4,".":4}},"m":{"d":"99,-152v-59,0,-39,92,-42,152r-31,0r-1,-174r28,0v1,9,-1,21,2,28v15,-39,91,-43,105,3v28,-50,114,-57,115,41r0,102r-31,0v-4,-55,18,-152,-37,-152v-59,0,-37,93,-41,152r-31,0v-5,-56,20,-152,-36,-152","w":300,"k":{"T":18,"t":1,"v":5,"w":5,"y":5,"\"":3,"'":3}},"n":{"d":"103,-152v-63,0,-42,91,-45,152r-32,0r-1,-174r28,0r2,29v27,-45,119,-55,120,41r0,104r-32,0v-6,-59,22,-152,-40,-152","w":199,"k":{"T":18,"t":1,"v":5,"w":5,"y":5,"\"":3,"'":3}},"o":{"d":"100,-178v50,0,84,36,84,89v0,64,-45,93,-87,93v-47,0,-83,-35,-83,-90v0,-58,38,-92,86,-92xm99,-154v-37,0,-53,34,-53,67v0,38,22,67,53,67v30,0,53,-28,53,-67v0,-30,-16,-67,-53,-67","w":197,"k":{"T":14,"v":3,"w":3,"y":3,"z":3,"x":5,"-":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"p":{"d":"26,71r-1,-245r28,0r2,30v37,-62,137,-33,137,54v0,91,-90,121,-134,67r0,94r-32,0xm108,-153v-36,0,-50,35,-50,82v0,32,23,50,49,50v33,0,52,-27,52,-67v0,-35,-18,-65,-51,-65","w":204,"k":{"T":14,"v":3,"w":3,"y":3,"z":3,"x":5,"-":-5,")":1,"]":1,"}":1,"\"":4,"'":4,",":9,".":9}},"q":{"d":"145,71r-1,-98v-34,58,-130,28,-130,-57v0,-96,94,-119,133,-64r1,-26r30,0r-2,245r-31,0xm97,-21v37,0,48,-36,48,-83v0,-30,-19,-49,-47,-49v-33,0,-52,28,-52,67v0,35,16,65,51,65","w":202,"k":{"T":11,",":3,".":3}},"r":{"d":"112,-147v-68,-12,-53,82,-54,147r-32,0r-1,-174r28,0v1,11,-1,25,2,34v10,-25,30,-42,57,-37r0,30","w":117,"k":{"T":5,"a":2,"f":-11,"g":3,"b":-1,"h":-1,"k":-1,"l":-1,"i":-1,"m":-1,"n":-1,"p":-1,"r":-1,"c":4,"d":4,"e":4,"o":4,"q":4,"t":-9,"v":-9,"w":-9,"y":-9,"z":-3,"x":-6,":":-3,";":-3,"-":2,",":19,".":19}},"s":{"d":"14,-8r8,-24v18,15,76,19,76,-14v0,-15,-8,-24,-32,-31v-69,-20,-59,-99,13,-101v18,0,34,5,43,11r-8,23v-13,-12,-64,-17,-64,13v0,14,8,23,32,30v67,18,58,108,-19,105v-19,0,-37,-5,-49,-12","w":142,"k":{"T":9,",":4,".":4}},"t":{"d":"108,0v-40,13,-75,-6,-75,-55r0,-95r-27,0r0,-24r27,0r0,-33r31,-9r0,42r46,0r0,24r-46,0r0,94v-3,31,19,38,43,32","w":119,"k":{"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,"v":-3,"w":-3,"y":-3,"-":2,",":1,".":1}},"u":{"d":"96,-22v64,0,40,-91,44,-152r32,0r2,174r-29,0v-1,-9,1,-21,-2,-28v-8,14,-27,32,-58,32v-27,0,-60,-15,-60,-76r0,-102r32,0v4,57,-19,152,39,152","w":198,"k":{"T":11,",":3,".":3}},"v":{"d":"5,-174r34,0r49,142r48,-142r34,0r-69,174r-30,0","w":173,"k":{"T":11,"a":1,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,"s":2,"v":-4,"w":-4,"y":-4,":":-9,";":-9,"-":1,",":14,".":14}},"w":{"d":"6,-174r33,0r37,144v11,-49,29,-97,44,-144r27,0r43,144v8,-48,26,-98,38,-144r32,0r-57,174r-28,0r-43,-140v-11,50,-29,93,-44,140r-29,0","w":264,"k":{"T":11,"a":1,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,"s":2,"v":-4,"w":-4,"y":-4,":":-9,";":-9,"-":1,",":14,".":14}},"x":{"d":"6,-174r35,0r44,65r41,-65r35,0r-59,84r60,90r-35,0r-46,-69v-13,24,-29,46,-43,69r-35,0r62,-89","w":166,"k":{"T":8,"c":5,"d":5,"e":5,"o":5,"q":5,"s":2,"t":-5,"v":-5,"w":-5,"y":-5,"-":2}},"y":{"d":"13,53v25,-9,45,-29,57,-58r-67,-169r35,0r50,138r46,-138r33,0v-41,86,-59,232,-146,253","w":169,"k":{"T":11,"a":1,"g":4,"c":4,"d":4,"e":4,"o":4,"q":4,"s":2,"v":-4,"w":-4,"y":-4,":":-9,";":-9,"-":1,",":14,".":14}},"z":{"d":"6,0r0,-18r102,-131r-94,0r0,-25r132,0r0,20r-100,129r102,0r0,25r-142,0","w":154,"k":{"T":7,"c":3,"d":3,"e":3,"o":3,"q":3,"v":-9,"w":-9,"y":-9}},"{":{"d":"33,-9v-1,-33,28,-83,-23,-86r0,-18v51,-3,22,-53,23,-87v1,-35,25,-49,60,-47r0,20v-74,-7,6,111,-56,123v61,7,-19,127,56,125r0,19v-35,1,-59,-10,-60,-49","w":102,"k":{"T":-17,"J":-6,"C":4,"G":4,"O":4,"Q":4,"V":-18,"W":-18,"X":-4,"Y":-15,"A":4,"j":-20}},"|":{"d":"31,-270r24,0r0,360r-24,0r0,-360","w":86},"}":{"d":"69,-200v1,35,-28,84,23,87r0,18v-50,3,-22,52,-23,86v-1,39,-25,51,-60,49r0,-19v72,8,-3,-112,56,-125v-60,-7,19,-126,-56,-123r0,-20v35,-1,59,12,60,47","w":102},"~":{"d":"197,-129v-1,98,-90,33,-137,23v-13,0,-21,8,-21,30r-21,0v-1,-36,17,-54,42,-54v24,0,72,32,96,31v13,0,20,-10,20,-30r21,0","w":214},"'":{"d":"18,-249r32,0r-6,86r-20,0","w":67,"k":{"T":-6,"J":21,"M":2,"C":1,"G":1,"O":1,"Q":1,"V":-6,"W":-6,"Y":-1,"A":22,"f":-9,"g":4,"c":3,"d":3,"e":3,"o":3,"q":3,"t":-9,"v":-8,"w":-8,"y":-8,",":41,".":41}},"`":{"d":"8,-249r34,0r32,51r-22,0","w":108},"\u00a0":{"w":76,"k":{"T":15,"V":13,"W":13,"Y":17}}}});
;
// initialise custom font settings
			var h1Cufon = 'h1:not("#appWrap h1")';
			var h2Cufon = 'h2:not("#appWrap h2")';
			var h3Cufon = 'h3:not("#appWrap h3")';
			var h4Cufon = 'h4:not("#appWrap h4")';
			Cufon.replace(h1Cufon, { fontFamily: 'Caviar Dreams' });
			Cufon.replace(h2Cufon, { fontFamily: 'Caviar Dreams' });
			Cufon.replace(h3Cufon, { fontFamily: 'Caviar Dreams' });
			Cufon.replace('.portfolio .h4', { fontFamily: 'Caviar Dreams' });
			//Cufon.replace('.portfolio p', { fontFamily: 'ftra' });
			Cufon.replace(h4Cufon, { fontFamily: 'myriad' });
			Cufon.replace('.inquire-button', { fontFamily: 'myriad' });
			Cufon.replace('.button-1', { fontFamily: 'myriad' });
			Cufon.replace('.button-2', { fontFamily: 'myriad' });
			
$(document).ready(function() {			
	$('#block-views-music-block_1 object').css('opacity', 0.5);	
});
			;
// JavaScript Document;

