jQuery.easing['jswing']=jQuery.easing['swing'];jQuery.extend(jQuery.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return jQuery.easing[jQuery.easing.def](x,t,b,c,d);},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b;},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b;},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b;},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b;},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b;},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b;},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b;},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b;},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b;},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b;},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b;},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b;},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b;},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b;},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b;},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b;},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b;},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b;},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b;},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b;},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b;},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b;},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b;},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;},easeInBounce:function(x,t,b,c,d){return c-jQuery.easing.easeOutBounce(x,d-t,0,c,d)+b;},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b;}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return jQuery.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return jQuery.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b;}});;(function($){$.dimensions={version:'@VERSION'};$.each(['Height','Width'],function(i,name){$.fn['inner'+name]=function(){if(!this[0])return;var torl=name=='Height'?'Top':'Left',borr=name=='Height'?'Bottom':'Right';return num(this,name.toLowerCase())+num(this,'padding'+torl)+num(this,'padding'+borr);};$.fn['outer'+name]=function(options){if(!this[0])return;var torl=name=='Height'?'Top':'Left',borr=name=='Height'?'Bottom':'Right';options=$.extend({margin:false},options||{});return num(this,name.toLowerCase())
+num(this,'border'+torl+'Width')+num(this,'border'+borr+'Width')
+num(this,'padding'+torl)+num(this,'padding'+borr)
+(options.margin?(num(this,'margin'+torl)+num(this,'margin'+borr)):0);};});$.each(['Left','Top'],function(i,name){$.fn['scroll'+name]=function(val){if(!this[0])return;return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(name=='Left'?val:$(window)['scrollLeft'](),name=='Top'?val:$(window)['scrollTop']()):this['scroll'+name]=val;}):this[0]==window||this[0]==document?self[(name=='Left'?'pageXOffset':'pageYOffset')]||$.boxModel&&document.documentElement['scroll'+name]||document.body['scroll'+name]:this[0]['scroll'+name];};});$.fn.extend({position:function(){var left=0,top=0,elem=this[0],offset,parentOffset,offsetParent,results;if(elem){offsetParent=this.offsetParent();offset=this.offset();parentOffset=offsetParent.offset();offset.top-=num(elem,'marginTop');offset.left-=num(elem,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}
return results;},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&$.css(offsetParent,'position')=='static'))
offsetParent=offsetParent.offsetParent;return $(offsetParent);}});function num(el,prop){return parseInt($.css(el.jquery?el[0]:el,prop))||0;};})(jQuery);;eval(function(p,a,c,k,e,d){e=function(c){return(c<a?"":e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('0.C(0.1,{7:2(x,t,b,c,d){3 0.1.D(x,t,b,c,d)},5:2(x,t,b,c,d){3 0.1.6(x,t,b,c,d)},h:2(x,t,b,c,d){3 0.1.B(x,t,b,c,d)},A:2(x,t,b,c,d){3 0.1.m(x,t,b,c,d)},y:2(x,t,b,c,d){3 0.1.w(x,t,b,c,d)},v:2(x,t,b,c,d){3 0.1.u(x,t,b,c,d)},s:2(x,t,b,c,d){3 0.1.r(x,t,b,c,d)},q:2(x,t,b,c,d){3 0.1.p(x,t,b,c,d)},o:2(x,t,b,c,d){3 0.1.n(x,t,b,c,d)},8:2(x,t,b,c,d){3 0.1.l(x,t,b,c,d)},g:2(x,t,b,c,d){3 0.1.j(x,t,b,c,d)},i:2(x,t,b,c,d){3 0.1.k(x,t,b,c,d)},z:2(x,t,b,c,d){3 0.1.f(x,t,b,c,d)},e:2(x,t,b,c,d){3 0.1.a(x,t,b,c,d)},9:2(x,t,b,c,d){3 0.1.4(x,t,b,c,d)}});',40,40,'jQuery|easing|function|return|easeInOutBack|easeOut|easeOutQuad|easeIn|elasin|backinout|easeOutBack||||backout|easeInBack|elasout|easeInOut|elasinout|easeOutElastic|easeInOutElastic|easeInElastic|easeInExpo|easeInOutBounce|bounceinout|easeOutBounce|bounceout|easeInBounce|bouncein||easeInOutExpo|expoinout|easeOutExpo||expoout|backin|expoin|easeInOutQuad|extend|easeInQuad'.split('|'),0,{}));var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var V=L.DOM={ready:(function(){var a=false,c={loaded:1,complete:1};var Z=[],b=function(){if(a){return}a=true;for(var d;d=Z.shift();d()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",b,false);window.addEventListener("pageshow",b,false)}if(!window.opera&&document.readyState){(function(){c[document.readyState]?b():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");b()}catch(d){setTimeout(arguments.callee,1)}})()}P(window,"load",b);return function(d){if(!arguments.length){b()}else{a?d():Z.push(d)}}})()};var M=L.CSS={Size:function(a,Z){this.value=parseFloat(a);this.unit=String(a).match(/[a-z%]*$/)[0]||"px";this.convert=function(b){return b/Z*this.value};this.convertFrom=function(b){return b/this.value*Z};this.toString=function(){return this.value+this.unit}},getStyle:function(a){var Z=document.defaultView;if(Z&&Z.getComputedStyle){return new A(Z.getComputedStyle(a,null))}if(a.currentStyle){return new A(a.currentStyle)}return new A(a.style)},quotedList:I(function(c){var b=[],a=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,Z;while(Z=a.exec(c)){b.push(Z[3]||Z[1])}return b}),recognizesMedia:I(function(c){var b=document.createElement("style"),a,Z;b.type="text/css";b.media=c;a=F("head")[0];a.insertBefore(b,a.firstChild);Z=!!(b.sheet||b.styleSheet);a.removeChild(b);return Z}),supports:function(b,a){var Z=document.createElement("span").style;if(Z[b]===undefined){return false}Z[b]=a;return Z[b]===a},textAlign:function(c,b,Z,a){if(b.get("textAlign")=="right"){if(Z>0){c=" "+c}}else{if(Z<a-1){c+=" "}}return c},textDecoration:function(e,d){if(!d){d=this.getStyle(e)}var a={underline:null,overline:null,"line-through":null};for(var Z=e;Z.parentNode&&Z.parentNode.nodeType==1;){var c=true;for(var b in a){if(!J(a,b)||a[b]){continue}if(d.get("textDecoration").indexOf(b)!=-1){a[b]=d.get("color")}c=false}if(c){break}d=this.getStyle(Z=Z.parentNode)}return a},textShadow:I(function(d){if(d=="none"){return null}var c=[],e={},Z,a=0;var b=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Z=b.exec(d)){if(Z[0]==","){c.push(e);e={},a=0}else{if(Z[1]){e.color=Z[1]}else{e[["offX","offY","blur"][a++]]=Z[2]}}}c.push(e);return c}),color:I(function(a){var Z={};Z.color=a.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(c,b,d){Z.opacity=parseFloat(d);return"rgb("+b+")"});return Z}),textTransform:function(a,Z){return a[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Z.get("textTransform")]||"toString"]()}};M.ready=(function(){var a=!M.recognizesMedia("all");var Z=[],c=function(){a=true;for(var f;f=Z.shift();f()){}};var d=F("link"),e={stylesheet:1};function b(){var g,f,h;for(f=0;h=d[f];++f){if(h.disabled||!e[h.rel.toLowerCase()]||!M.recognizesMedia(h.media||"screen")){continue}g=h.sheet||h.styleSheet;if(!g||g.disabled){return false}}return true}V.ready(function(){if(a||b()){c()}else{setTimeout(arguments.callee,10)}});return function(f){if(a){f()}else{Z.push(f)}}})();function R(a){var Z=this.face=a.face;this.glyphs=a.glyphs;this.w=a.w;this.baseSize=parseInt(Z["units-per-em"],10);this.family=Z["font-family"].toLowerCase();this.weight=Z["font-weight"];this.style=Z["font-style"]||"normal";this.viewBox=(function(){var c=Z.bbox.split(/\s+/);var b={minX:parseInt(c[0],10),minY:parseInt(c[1],10),maxX:parseInt(c[2],10),maxY:parseInt(c[3],10)};b.width=b.maxX-b.minX,b.height=b.maxY-b.minY;b.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return b})();this.ascent=-parseInt(Z.ascent,10);this.descent=-parseInt(Z.descent,10);this.height=-this.ascent+this.descent}function E(){var a={},Z={oblique:"italic",italic:"oblique"};this.add=function(b){(a[b.style]||(a[b.style]={}))[b.weight]=b};this.get=function(f,g){var e=a[f]||a[Z[f]]||a.normal||a.italic||a.oblique;if(!e){return null}g={normal:400,bold:700}[g]||parseInt(g,10);if(e[g]){return e[g]}var c={1:1,99:0}[g%100],i=[],d,b;if(c===undefined){c=g>400}if(g==500){g=400}for(var h in e){if(!J(e,h)){continue}h=parseInt(h,10);if(!d||h<d){d=h}if(!b||h>b){b=h}i.push(h)}if(g<d){g=d}if(g>b){g=b}i.sort(function(k,j){return(c?(k>g&&j>g)?k<j:k>j:(k<g&&j<g)?k>j:k<j)?-1:1});return e[i[0]]}}function Q(){function b(d,e){if(d.contains){return d.contains(e)}return d.compareDocumentPosition(e)&16}function Z(f){var d=f.relatedTarget;if(!d||b(this,d)){return}a(this)}function c(d){a(this)}function a(d){setTimeout(function(){L.replace(d,D.get(d).options,true)},10)}this.attach=function(d){if(d.onmouseenter===undefined){P(d,"mouseover",Z);P(d,"mouseout",Z)}else{P(d,"mouseenter",c);P(d,"mouseleave",c)}}}function Y(){var b={},Z=0;function a(c){return c.cufid||(c.cufid=++Z)}this.get=function(c){var d=a(c);return b[d]||(b[d]={})}}function A(Z){var b={},a={};this.get=function(c){return b[c]!=undefined?b[c]:Z[c]};this.getSize=function(d,c){return a[d]||(a[d]=new M.Size(this.get(d),c))};this.extend=function(c){for(var d in c){if(J(c,d)){b[d]=c[d]}}return this}}function P(a,Z,b){if(a.addEventListener){a.addEventListener(Z,b,false)}else{if(a.attachEvent){a.attachEvent("on"+Z,function(){return b.call(a,window.event)})}}}function T(a,Z){var b=D.get(a);if(b.options){return a}if(Z.hover&&Z.hoverables[a.nodeName.toLowerCase()]){B.attach(a)}b.options=Z;return a}function I(Z){var a={};return function(b){if(!J(a,b)){a[b]=Z.apply(null,arguments)}return a[b]}}function C(e,d){if(!d){d=M.getStyle(e)}var a=M.quotedList(d.get("fontFamily").toLowerCase()),c;for(var b=0,Z=a.length;b<Z;++b){c=a[b];if(H[c]){return H[c].get(d.get("fontStyle"),d.get("fontWeight"))}}return null}function F(Z){return document.getElementsByTagName(Z)}function J(a,Z){return a.hasOwnProperty(Z)}function G(){var Z={},b,d;for(var c=0,a=arguments.length;b=arguments[c],c<a;++c){for(d in b){if(J(b,d)){Z[d]=b[d]}}}return Z}function N(c,m,a,n,d,b){var k=n.separate;if(k=="none"){return X[n.engine].apply(null,arguments)}var j=document.createDocumentFragment(),f;var g=m.split(O[k]),Z=(k=="words");if(Z&&S){if(/^\s/.test(m)){g.unshift("")}if(/\s$/.test(m)){g.push("")}}for(var h=0,e=g.length;h<e;++h){f=X[n.engine](c,Z?M.textAlign(g[h],a,h,e):g[h],a,n,d,b,h<e-1);if(f){j.appendChild(f)}}return j}function K(a,i){var b,Z,c,f,e,h;for(c=T(a,i).firstChild;c;c=e){f=c.nodeType;e=c.nextSibling;h=false;if(f==1){if(!c.firstChild){continue}if(!/cufon/.test(c.className)){arguments.callee(c,i);continue}else{h=true}}else{if(f!=3){continue}}if(!Z){Z=M.getStyle(a).extend(i)}if(!b){b=C(a,Z)}if(!b){continue}if(h){X[i.engine](b,null,Z,i,c,a);continue}var g=c.data;if(g===""){continue}var d=N(b,g,Z,i,c,a);if(d){c.parentNode.replaceChild(d,c)}else{c.parentNode.removeChild(c)}}}var S=" ".split(/\s+/).length==0;var D=new Y();var B=new Q();var W=[];var X={},H={},U={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(Z){return jQuery(Z)})||(window.dojo&&dojo.query)||(window.$$&&function(Z){return $$(Z)})||(window.$&&function(Z){return $(Z)})||(document.querySelectorAll&&function(Z){return document.querySelectorAll(Z)})||F),separate:"words",textShadow:"none"};var O={words:/\s+/,characters:""};L.now=function(){V.ready();return L};L.refresh=function(){var b=W.splice(0,W.length);for(var a=0,Z=b.length;a<Z;++a){L.replace.apply(null,b[a])}return L};L.registerEngine=function(a,Z){if(!Z){return L}X[a]=Z;return L.set("engine",a)};L.registerFont=function(b){var Z=new R(b),a=Z.family;if(!H[a]){H[a]=new E()}H[a].add(Z);return L.set("fontFamily",'"'+a+'"')};L.replace=function(b,a,Z){a=G(U,a);if(!a.engine){return L}if(typeof a.textShadow=="string"){a.textShadow=M.textShadow(a.textShadow)}if(!Z){W.push(arguments)}if(b.nodeType||typeof b=="string"){b=[b]}M.ready(function(){for(var d=0,c=b.length;d<c;++d){var e=b[d];if(typeof e=="string"){L.replace(a.selector(e),a,true)}else{K(e,a)}}});return L};L.set=function(Z,a){U[Z]=a;return L};return L})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode(".cufon-canvas{text-indent:0}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(q,T,k,P,X,r){var I=(T===null);var V=q.viewBox;var J=k.getSize("fontSize",q.baseSize);var h=k.get("letterSpacing");h=(h=="normal")?0:J.convertFrom(parseInt(h,10));var W=0,j=0,f=0,R=0;var U=P.textShadow,d=[];if(U){for(var p=U.length;p--;){var Z=U[p];var c=J.convertFrom(parseFloat(Z.offX));var b=J.convertFrom(parseFloat(Z.offY));d[p]=[c,b];if(b<W){W=b}if(c>j){j=c}if(b>f){f=b}if(c<R){R=c}}}var u=Cufon.CSS.textTransform(I?X.alt:T,k).split("");var G=0,S=null;for(var p=0,m=u.length;p<m;++p){var Q=q.glyphs[u[p]]||q.missingGlyph;if(!Q){continue}G+=S=Number(Q.w||q.w)+h}if(S===null){return null}j+=(V.width-S);R+=V.minX;var O,K;if(I){O=X;K=X.firstChild}else{O=document.createElement("span");O.className="cufon cufon-canvas";O.alt=T;K=document.createElement("canvas");O.appendChild(K);if(P.printable){var n=document.createElement("span");n.className="cufon-alt";n.appendChild(document.createTextNode(T));O.appendChild(n)}}var v=O.style;var a=K.style;var H=J.convert(V.height);var t=Math.ceil(H);var e=t/H;K.width=Math.ceil(J.convert(G*e+j-R));K.height=Math.ceil(J.convert(V.height-W+f));W+=V.minY;a.top=Math.round(J.convert(W-q.ascent))+"px";a.left=Math.round(J.convert(R))+"px";var N=Math.ceil(J.convert(G*e))+"px";if(A){v.width=N;v.height=J.convert(q.height)+"px"}else{v.paddingLeft=N;v.paddingBottom=(J.convert(q.height)-1)+"px"}var s=K.getContext("2d"),Y=H/V.height;s.scale(Y,Y*e);s.translate(-R,-W);s.lineWidth=q.face["underline-thickness"];s.save();function L(i,g){s.strokeStyle=g;s.beginPath();s.moveTo(0,i);s.lineTo(G,i);s.stroke()}var M=P.enableTextDecoration?Cufon.CSS.textDecoration(r,k):{};if(M.underline){L(-q.face["underline-position"],M.underline)}if(M.overline){L(q.ascent,M.overline)}s.fillStyle=k.get("color");function o(){s.scale(e,1);for(var w=0,g=u.length;w<g;++w){var x=q.glyphs[u[w]]||q.missingGlyph;if(!x){continue}s.beginPath();if(x.d){if(x.code){C(x.code,s)}else{x.code=D("m"+x.d,s)}}s.fill();s.translate(Number(x.w||q.w)+h,0)}s.restore()}if(U){for(var p=U.length;p--;){var Z=U[p];s.save();s.fillStyle=Z.color;s.translate.apply(s,d[p]);o()}}o();if(M["line-through"]){L(-q.descent,M["line-through"])}return O}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write('<style type="text/css">.cufon-vml-canvas{text-indent:0}@media screen{cvml\\:shape,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute}.cufon-vml-canvas{position:absolute;text-align:left}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>');function C(D,E){return A(D,/(?:em|ex|%)$/i.test(E)?"1em":E)}function A(G,H){if(/px$/i.test(H)){return parseFloat(H)}var F=G.style.left,E=G.runtimeStyle.left;G.runtimeStyle.left=G.currentStyle.left;G.style.left=H;var D=G.style.pixelLeft;G.style.left=F;G.runtimeStyle.left=E;return D}return function(s,V,n,S,Z,t,j){var G=(V===null);if(G){V=Z.alt}var X=s.viewBox;var H=n.computedFontSize||(n.computedFontSize=new Cufon.CSS.Size(C(t,n.get("fontSize"))+"px",s.baseSize));var h=n.computedLSpacing;if(h==undefined){h=n.get("letterSpacing");n.computedLSpacing=h=(h=="normal")?0:~~H.convertFrom(A(t,h))}var P,I;if(G){P=Z;I=Z.firstChild}else{P=document.createElement("span");P.className="cufon cufon-vml";P.alt=V;I=document.createElement("span");I.className="cufon-vml-canvas";P.appendChild(I);if(S.printable){var q=document.createElement("span");q.className="cufon-alt";q.appendChild(document.createTextNode(V));P.appendChild(q)}if(!j){P.appendChild(document.createElement("cvml:shape"))}}var y=P.style;var c=I.style;var E=H.convert(X.height),v=Math.ceil(E);var g=v/E;var f=X.minX,e=X.minY;c.height=v;c.top=Math.round(H.convert(e-s.ascent));c.left=Math.round(H.convert(f));y.height=H.convert(s.height)+"px";var L=S.enableTextDecoration?Cufon.CSS.textDecoration(t,n):{};var U=n.get("color");var w=Cufon.CSS.textTransform(V,n).split("");var D=0,d=0,M=null;var T,N,W=S.textShadow;for(var r=0,p=0,o=w.length;r<o;++r){T=s.glyphs[w[r]]||s.missingGlyph;if(T){D+=M=~~(T.w||s.w)+h}}if(M===null){return null}var O=-f+D+(X.width-M);var x=H.convert(O*g),m=Math.round(x);var b=O+","+X.height,F;var Y="r"+b+"nsnf";for(r=0;r<o;++r){T=s.glyphs[w[r]]||s.missingGlyph;if(!T){continue}if(G){N=I.childNodes[p];if(N.firstChild){N.removeChild(N.firstChild)}}else{N=document.createElement("cvml:shape");I.appendChild(N)}N.stroked="f";N.coordsize=b;N.coordorigin=F=(f-d)+","+e;N.path=(T.d?"m"+T.d+"xe":"")+"m"+F+Y;N.fillcolor=U;var u=N.style;u.width=m;u.height=v;if(W){var K=W[0],J=W[1];var R=Cufon.CSS.color(K.color),Q;var a=document.createElement("cvml:shadow");a.on="t";a.color=R.color;a.offset=K.offX+","+K.offY;if(J){Q=Cufon.CSS.color(J.color);a.type="double";a.color2=Q.color;a.offset2=J.offX+","+J.offY}a.opacity=R.opacity||(Q&&Q.opacity)||1;N.appendChild(a)}d+=~~(T.w||s.w)+h;++p}y.width=Math.max(Math.ceil(H.convert(D*g)),0);return P}})());;Cufon.registerFont({"w":556,"face":{"font-family":"cufonavenir","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"12","bbox":"-34 -786 957 240.231","underline-thickness":"50","underline-position":"-100","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":278},"A":{"d":"6,0r312,-708r79,0r301,708r-98,0r-72,-174r-354,0r-73,174r-95,0xm496,-252r-140,-348r-2,0r-147,348r289,0","w":704},"B":{"d":"88,0r0,-708v206,1,443,-33,451,174v3,84,-52,134,-124,162v91,8,160,81,160,174v0,231,-262,197,-487,198xm172,-630r0,222v130,-3,277,25,277,-115v0,-131,-151,-104,-277,-107xm172,-330r0,252v144,1,313,17,313,-123v0,-151,-166,-128,-313,-129","w":630},"C":{"d":"657,-615r-73,53v-42,-57,-109,-86,-177,-86v-158,0,-270,139,-270,294v0,164,111,294,270,294v86,0,155,-35,205,-99r63,53v-63,85,-155,124,-268,124v-203,0,-360,-157,-360,-372v0,-208,150,-372,360,-372v96,0,190,33,250,111","w":704},"D":{"d":"75,0r0,-708r272,0v139,0,347,93,347,354v0,261,-208,354,-347,354r-272,0xm159,-630r0,552r160,0v162,0,285,-82,285,-276v0,-194,-123,-276,-285,-276r-160,0","w":741},"E":{"d":"88,0r0,-708r445,0r0,78r-361,0r0,222r337,0r0,78r-337,0r0,252r379,0r0,78r-463,0","w":593},"F":{"d":"88,0r0,-708r439,0r0,78r-355,0r0,234r330,0r0,78r-330,0r0,318r-84,0"},"G":{"d":"690,-396r0,348v-81,45,-173,66,-265,66v-220,0,-378,-150,-378,-372v0,-223,169,-372,381,-372v93,0,183,25,250,93r-63,66v-48,-52,-121,-81,-193,-81v-162,0,-285,122,-285,294v0,169,119,294,293,294v57,0,124,-15,176,-41r0,-217r-163,0r0,-78r247,0","w":778},"H":{"d":"88,0r0,-708r84,0r0,300r378,0r0,-300r84,0r0,708r-84,0r0,-330r-378,0r0,330r-84,0","w":722},"I":{"d":"88,0r0,-708r84,0r0,708r-84,0","w":260},"J":{"d":"394,-708r0,525v0,95,-51,201,-202,201v-100,0,-171,-51,-189,-152r84,-17v11,56,47,91,106,91v96,0,117,-75,117,-152r0,-496r84,0","w":482},"K":{"d":"88,0r0,-708r84,0r0,306r12,0r322,-306r121,0r-350,323r367,385r-123,0r-337,-360r-12,0r0,360r-84,0","w":630},"L":{"d":"88,0r0,-708r84,0r0,630r324,0r0,78r-408,0","w":500},"M":{"d":"88,0r0,-708r125,0r240,555r2,0r242,-555r122,0r0,708r-84,0r0,-594r-2,0r-254,594r-51,0r-254,-594r-2,0r0,594r-84,0","w":907},"N":{"d":"88,0r0,-708r106,0r410,588r2,0r0,-588r84,0r0,708r-106,0r-410,-588r-2,0r0,588r-84,0","w":778},"O":{"d":"417,18v-215,0,-370,-158,-370,-372v0,-214,155,-372,370,-372v215,0,370,158,370,372v0,214,-155,372,-370,372xm417,-60v166,0,280,-131,280,-294v0,-163,-114,-294,-280,-294v-166,0,-280,131,-280,294v0,163,114,294,280,294","w":834},"P":{"d":"88,0r0,-708v217,0,458,-32,458,194v0,155,-132,196,-232,196r-142,0r0,318r-84,0xm172,-630r0,234r142,0v84,0,142,-38,142,-117v0,-79,-58,-117,-142,-117r-142,0","w":593},"Q":{"d":"822,-72r0,72r-411,0v-207,0,-364,-158,-364,-363v0,-205,157,-363,364,-363v207,0,364,158,364,363v0,122,-70,242,-172,291r219,0xm137,-363v0,160,118,285,274,285v156,0,274,-125,274,-285v0,-158,-115,-285,-274,-285v-159,0,-274,127,-274,285","w":834},"R":{"d":"88,0r0,-708v217,7,463,-46,463,195v0,103,-67,170,-177,187r201,326r-103,0r-192,-318r-108,0r0,318r-84,0xm172,-630r0,234v128,-4,289,26,289,-117v0,-144,-156,-113,-289,-117","w":611},"S":{"d":"493,-643r-69,60v-28,-45,-78,-65,-129,-65v-74,0,-151,35,-151,119v0,65,36,94,149,130v110,35,212,71,212,210v0,235,-352,271,-467,109r72,-59v30,52,90,79,151,79v72,0,154,-42,154,-123v0,-87,-59,-102,-185,-144v-100,-33,-176,-77,-176,-195v-1,-219,319,-268,439,-121"},"T":{"d":"563,-708r0,78r-234,0r0,630r-84,0r0,-630r-234,0r0,-78r552,0","w":574},"U":{"d":"619,-708r0,438v0,154,-72,288,-267,288v-195,0,-267,-134,-267,-288r0,-438r84,0r0,426v0,114,42,222,183,222v141,0,183,-108,183,-222r0,-426r84,0","w":704},"V":{"d":"262,0r-271,-708r95,0r218,582r2,0r225,-582r89,0r-277,708r-81,0","w":611},"W":{"d":"213,0r-207,-708r93,0r161,588r2,0r174,-588r94,0r173,588r2,0r164,-588r88,0r-208,708r-91,0r-175,-600r-2,0r-176,600r-92,0","w":963},"X":{"d":"-3,0r258,-373r-238,-335r108,0r191,277r189,-277r105,0r-238,335r261,373r-111,0r-210,-314r-211,314r-104,0","w":630},"Y":{"d":"255,0r0,-305r-264,-403r107,0r199,320r205,-320r101,0r-264,403r0,305r-84,0","w":594},"Z":{"d":"29,0r0,-75r409,-555r-403,0r0,-78r505,0r0,72r-409,558r414,0r0,78r-516,0","w":574},"a":{"d":"117,-357r-49,-51v48,-49,118,-72,186,-72v138,0,196,66,196,198v0,95,-6,198,7,282r-75,0v-7,-20,-1,-55,-7,-70v-31,48,-83,82,-154,82v-95,0,-174,-48,-174,-139v0,-165,191,-164,325,-164v16,-144,-180,-141,-255,-66xm372,-225v-110,-4,-241,3,-241,90v0,59,44,81,103,81v100,0,144,-73,138,-171","w":519},"&":{"d":"593,0r-96,-102v-57,72,-118,114,-212,114v-120,0,-225,-75,-225,-202v0,-100,72,-166,157,-205v-46,-47,-85,-96,-85,-164v0,-105,85,-162,183,-162v96,0,177,53,177,157v0,89,-79,143,-150,180r150,159r95,-159r95,0r-136,218r162,166r-115,0xm216,-554v1,52,45,87,74,119v53,-29,118,-61,118,-131v0,-52,-41,-83,-90,-83v-56,0,-102,37,-102,95xm446,-158r-177,-186v-60,33,-125,75,-125,151v0,76,64,133,138,133v73,0,119,-46,164,-98","w":722},"^":{"d":"80,-275r223,-433r60,0r223,433r-74,0r-179,-349r-179,349r-74,0","w":666},"~":{"d":"228,-370v79,1,140,67,217,68v44,0,68,-35,85,-70r33,48v-31,42,-64,88,-126,88v-79,-1,-140,-67,-217,-68v-44,0,-68,35,-84,70r-33,-48v30,-42,63,-88,125,-88","w":666},"*":{"d":"252,-708r0,149r142,-48r19,58r-141,48r89,119r-49,38r-90,-123r-87,123r-50,-38r87,-119r-141,-48r19,-58r142,48r0,-149r60,0","w":444},"@":{"d":"262,-293v0,55,37,96,87,96v87,0,155,-130,155,-212v0,-51,-39,-94,-81,-94v-94,0,-161,123,-161,210xm619,-550r-84,283v-6,26,-25,71,15,70v64,0,140,-107,140,-218v0,-157,-133,-257,-272,-257v-173,0,-308,146,-308,318v0,179,143,318,308,318v99,0,198,-48,252,-121r63,0v-64,109,-185,175,-315,175v-210,0,-374,-165,-374,-372v0,-208,168,-372,374,-372v183,0,338,127,338,306v0,173,-140,289,-234,289v-37,0,-59,-26,-66,-66v-31,36,-66,66,-125,66v-85,0,-141,-68,-141,-155v0,-139,92,-283,233,-283v48,0,87,27,113,82r18,-63r65,0","w":800},"b":{"d":"70,0r0,-756r78,0r0,356v47,-46,100,-80,170,-80v147,0,246,104,246,246v0,140,-103,246,-234,246v-86,0,-149,-45,-182,-95r0,83r-78,0xm148,-234v0,98,65,174,166,174v101,0,166,-76,166,-174v0,-98,-65,-174,-166,-174v-101,0,-166,76,-166,174","w":611},"\\":{"d":"304,43r-301,-769r63,-24r301,768","w":370},"|":{"d":"78,18r0,-774r66,0r0,774r-66,0","w":222},"{":{"d":"294,-732r0,60r-54,0v-42,0,-49,39,-49,79r0,176v1,93,-66,119,-86,130v23,3,86,30,86,129r0,175v0,39,7,79,49,79r54,0r0,60v-105,8,-175,-13,-175,-125r0,-175v0,-72,-44,-114,-86,-114r0,-60v42,0,86,-44,86,-113r0,-176v10,-111,71,-134,175,-125","w":333},"}":{"d":"39,-672r0,-60v105,-8,175,12,175,125r0,176v0,69,44,113,86,113r0,60v-42,0,-86,42,-86,114r0,175v-8,111,-70,134,-175,125r0,-60r54,0v42,0,49,-40,49,-79r0,-175v-1,-102,66,-122,86,-131v-23,-6,-86,-38,-86,-128r0,-176v0,-40,-7,-79,-49,-79r-54,0","w":333},"[":{"d":"193,-732r0,60r-93,0r0,768r93,0r0,60r-165,0r0,-888r165,0","w":259},"]":{"d":"66,-672r0,-60r165,0r0,888r-165,0r0,-60r93,0r0,-768r-93,0","w":259},"c":{"d":"469,-406r-62,55v-33,-40,-71,-57,-118,-57v-105,0,-158,78,-158,174v0,96,63,174,158,174v51,0,90,-18,119,-58r58,55v-45,52,-109,75,-177,75v-145,0,-242,-102,-242,-246v0,-142,98,-246,242,-246v69,0,133,23,180,74","w":482},":":{"d":"139,-480v33,0,60,27,60,60v0,33,-29,60,-60,60v-31,0,-60,-27,-60,-60v0,-33,27,-60,60,-60xm139,-114v33,0,60,27,60,60v0,33,-29,60,-60,60v-31,0,-60,-27,-60,-60v0,-33,27,-60,60,-60","w":278},",":{"d":"211,-102r-82,240r-77,0r68,-240r91,0","w":278},"d":{"d":"463,0v-2,-26,4,-61,-2,-83v-29,53,-96,95,-180,95v-131,0,-234,-106,-234,-246v0,-142,99,-246,246,-246v70,0,124,33,170,80r0,-356r78,0r0,756r-78,0xm463,-234v0,-98,-65,-174,-166,-174v-101,0,-166,76,-166,174v0,98,65,174,166,174v101,0,166,-76,166,-174","w":611},"$":{"d":"256,83r0,-71v-83,0,-164,-26,-214,-93r70,-61v29,45,87,74,144,76r0,-254v-105,-28,-198,-82,-198,-203v0,-112,93,-188,198,-197r0,-66r48,0r0,66v72,0,147,27,194,81r-66,60v-30,-40,-76,-63,-128,-63r0,249v108,34,210,72,210,203v0,119,-96,195,-210,202r0,71r-48,0xm256,-406r0,-236v-65,12,-108,57,-108,120v0,69,48,92,108,116xm304,-307r0,241v68,-8,120,-56,120,-120v0,-73,-59,-102,-120,-121"},"e":{"d":"433,-131r59,46v-55,71,-121,97,-208,97v-147,0,-237,-110,-237,-246v0,-145,102,-246,240,-246v140,0,230,101,222,270r-378,0v6,81,68,150,153,150v67,0,112,-24,149,-71xm131,-276r294,0v-3,-79,-55,-132,-141,-132v-86,0,-143,53,-153,132"},"8":{"d":"76,-535v0,-111,88,-185,202,-185v114,0,202,74,202,185v0,69,-48,134,-116,158v85,18,140,93,140,182v0,129,-100,207,-226,207v-126,0,-226,-78,-226,-207v0,-92,59,-161,140,-184v-72,-19,-116,-89,-116,-156xm160,-531v0,67,48,117,118,117v70,0,118,-50,118,-117v0,-67,-48,-117,-118,-117v-70,0,-118,50,-118,117xm136,-201v0,83,63,141,142,141v79,0,142,-58,142,-141v0,-83,-63,-141,-142,-141v-79,0,-142,58,-142,141"},"=":{"d":"72,-348r0,-66r522,0r0,66r-522,0xm72,-192r0,-66r522,0r0,66r-522,0","w":666},"!":{"d":"181,-708r0,510r-84,0r0,-510r84,0xm139,-114v33,0,60,27,60,60v0,33,-29,60,-60,60v-31,0,-60,-27,-60,-60v0,-33,27,-60,60,-60","w":278},"f":{"d":"114,0r0,-402r-102,0r0,-66r102,0v-5,-161,-1,-302,166,-300v20,0,45,4,60,12r-11,70v-17,-6,-35,-10,-53,-10v-111,-4,-78,126,-84,228r114,0r0,66r-114,0r0,402r-78,0","w":315},"5":{"d":"474,-708r0,78r-289,0r-3,191v164,-62,317,52,317,216v0,141,-105,235,-243,235v-107,0,-171,-51,-209,-129r84,-32v24,53,72,89,132,89v85,0,152,-65,152,-163v0,-167,-203,-198,-319,-117r7,-368r371,0"},"4":{"d":"419,-708r0,468r102,0r0,78r-102,0r0,162r-84,0r0,-162r-300,0r0,-93r281,-453r103,0xm335,-240r0,-370r-2,0r-226,370r228,0"},"g":{"d":"541,-468r0,447v0,169,-91,261,-255,261v-91,0,-164,-24,-230,-89r56,-64v49,53,102,81,174,81v163,0,187,-114,175,-249v-37,60,-103,87,-165,87v-147,0,-249,-102,-249,-240v0,-153,100,-246,249,-246v65,0,132,34,167,92r0,-80r78,0xm131,-234v0,95,74,168,165,168v107,0,167,-80,167,-170v0,-101,-68,-172,-167,-172v-98,0,-165,76,-165,174","w":611},"`":{"d":"85,-708r104,144r-71,0r-143,-144r110,0","w":240},">":{"d":"72,-42r0,-66r441,-195r-441,-195r0,-66r522,232r0,58","w":666},"h":{"d":"74,0r0,-756r78,0r0,353r2,0v21,-37,77,-77,150,-77v123,0,178,78,178,191r0,289r-78,0r0,-281v0,-78,-34,-127,-107,-127v-101,0,-145,73,-145,180r0,228r-78,0"},"-":{"d":"44,-204r0,-72r245,0r0,72r-245,0","w":333},"i":{"d":"81,0r0,-468r78,0r0,468r-78,0xm63,-651v0,-31,25,-57,57,-57v32,0,57,26,57,57v0,33,-24,57,-57,57v-33,0,-57,-24,-57,-57","w":240},"j":{"d":"159,-468r0,573v0,48,-23,135,-139,135v-18,0,-37,-2,-54,-10r9,-68v13,4,25,6,38,6v59,0,68,-45,68,-99r0,-537r78,0xm63,-651v0,-31,25,-57,57,-57v32,0,57,26,57,57v0,33,-24,57,-57,57v-33,0,-57,-24,-57,-57","w":240},"k":{"d":"74,0r0,-756r78,0r0,494r213,-206r111,0r-226,213r249,255r-115,0r-232,-246r0,246r-78,0","w":500},"l":{"d":"81,0r0,-756r78,0r0,756r-78,0","w":240},"<":{"d":"594,-564r0,66r-441,195r441,195r0,66r-522,-232r0,-58","w":666},"m":{"d":"74,0r0,-357v0,-43,-4,-80,-4,-111r74,0v2,24,-2,56,4,77v21,-46,79,-89,156,-89v101,0,133,57,148,89v34,-55,77,-89,148,-89v134,0,178,75,178,196r0,284r-78,0r0,-280v0,-65,-23,-128,-114,-128v-66,0,-121,54,-121,138r0,270r-78,0r0,-265v0,-103,-26,-143,-90,-143v-101,0,-145,73,-145,180r0,228r-78,0","w":852},"n":{"d":"74,0r0,-357v0,-43,-4,-80,-4,-111r74,0v2,24,-2,56,4,77v21,-46,79,-89,156,-89v123,0,178,78,178,191r0,289r-78,0r0,-281v0,-78,-34,-127,-107,-127v-101,0,-145,73,-145,180r0,228r-78,0"},"9":{"d":"162,0r190,-295r-2,-2v-152,67,-309,-35,-309,-201v0,-138,103,-222,237,-222v134,0,237,84,237,222v0,82,-29,138,-67,199r-188,299r-98,0xm278,-348v85,0,153,-58,153,-150v0,-92,-68,-150,-153,-150v-85,0,-153,58,-153,150v0,92,68,150,153,150"},"#":{"d":"98,0r30,-213r-98,0r0,-66r108,0r20,-152r-98,0r0,-66r108,0r30,-211r67,0r-30,211r126,0r30,-211r67,0r-30,211r98,0r0,66r-107,0r-21,152r98,0r0,66r-108,0r-30,213r-67,0r30,-213r-126,0r-30,213r-67,0xm331,-279r21,-152r-126,0r-21,152r126,0"},"o":{"d":"47,-234v0,-146,106,-246,250,-246v144,0,250,100,250,246v0,146,-106,246,-250,246v-144,0,-250,-100,-250,-246xm131,-234v0,98,65,174,166,174v101,0,166,-76,166,-174v0,-98,-65,-174,-166,-174v-101,0,-166,76,-166,174","w":594},"1":{"d":"360,-708r0,708r-84,0r0,-600v-46,33,-85,72,-129,107r-50,-61r190,-154r73,0"},"p":{"d":"70,228r0,-696r78,0v2,21,-4,51,2,68v43,-50,100,-80,168,-80v147,0,246,104,246,246v0,140,-103,246,-234,246v-86,0,-149,-45,-182,-95r0,311r-78,0xm148,-234v0,98,65,174,166,174v101,0,166,-76,166,-174v0,-98,-65,-174,-166,-174v-101,0,-166,76,-166,174","w":611},"(":{"d":"255,118r-54,38v-195,-260,-191,-637,0,-888r54,40v-85,117,-128,258,-128,404v0,161,42,271,128,406","w":278},")":{"d":"23,-694r54,-38v195,260,191,637,0,888r-54,-40v85,-117,128,-258,128,-404v0,-161,-42,-271,-128,-406","w":278},"%":{"d":"38,-545v0,-98,77,-175,175,-175v98,0,175,77,175,175v0,98,-77,175,-175,175v-98,0,-175,-77,-175,-175xm110,-545v0,56,48,103,103,103v55,0,103,-47,103,-103v0,-56,-48,-103,-103,-103v-55,0,-103,47,-103,103xm445,-163v0,-98,77,-175,175,-175v98,0,175,77,175,175v0,98,-77,175,-175,175v-98,0,-175,-77,-175,-175xm517,-163v0,56,48,103,103,103v55,0,103,-47,103,-103v0,-56,-48,-103,-103,-103v-55,0,-103,47,-103,103xm170,0r444,-740r55,32r-444,740","w":833},".":{"d":"139,-114v33,0,60,27,60,60v0,33,-29,60,-60,60v-31,0,-60,-27,-60,-60v0,-33,27,-60,60,-60","w":278},"+":{"d":"72,-270r0,-66r228,0r0,-228r66,0r0,228r228,0r0,66r-228,0r0,228r-66,0r0,-228r-228,0","w":666},"q":{"d":"541,-468r0,696r-78,0r0,-296v-47,46,-100,80,-170,80v-147,0,-246,-104,-246,-246v0,-140,103,-246,234,-246v86,0,149,45,182,95r0,-83r78,0xm463,-234v0,-98,-65,-174,-166,-174v-101,0,-166,76,-166,174v0,98,65,174,166,174v101,0,166,-76,166,-174","w":611},"?":{"d":"189,-261v-15,-132,157,-162,156,-284v0,-64,-40,-109,-106,-109v-67,0,-112,44,-122,109r-90,-10v18,-109,104,-171,213,-171v109,0,195,63,195,178v0,88,-53,139,-114,193v-53,47,-48,76,-48,157r-84,0r0,-63xm231,-114v33,0,60,27,60,60v0,33,-29,60,-60,60v-31,0,-60,-27,-60,-60v0,-33,27,-60,60,-60","w":482},"\"":{"d":"150,-468r0,-240r72,0r0,240r-72,0xm297,-468r0,-240r72,0r0,240r-72,0","w":519},"'":{"d":"103,-468r0,-240r72,0r0,240r-72,0","w":278},"r":{"d":"74,0r0,-357v0,-43,-4,-80,-4,-111r74,0v2,24,-2,56,4,77v22,-52,103,-105,188,-84r-5,79v-114,-27,-179,45,-179,168r0,228r-78,0","w":352},"s":{"d":"22,-75r62,-48v31,38,65,63,120,63v49,0,103,-21,103,-72v0,-50,-50,-63,-100,-74v-89,-20,-165,-39,-165,-136v0,-161,271,-186,334,-53r-65,43v-20,-33,-53,-56,-99,-56v-43,0,-92,21,-92,65v0,39,56,56,118,68v83,16,153,46,153,140v0,106,-94,147,-187,147v-79,0,-136,-21,-182,-87","w":426},";":{"d":"211,-102r-82,240r-77,0r68,-240r91,0xm139,-480v33,0,60,27,60,60v0,33,-29,60,-60,60v-31,0,-60,-27,-60,-60v0,-33,27,-60,60,-60","w":278},"7":{"d":"480,-708r0,78r-283,630r-95,0r288,-630r-342,0r0,-78r432,0"},"6":{"d":"394,-708r-190,295r2,2v152,-67,309,35,309,201v0,138,-103,222,-237,222v-134,0,-237,-84,-237,-222v0,-82,29,-138,67,-199r188,-299r98,0xm278,-360v-85,0,-153,58,-153,150v0,92,68,150,153,150v85,0,153,-58,153,-150v0,-92,-68,-150,-153,-150"},"\/":{"d":"367,-726r-301,769r-63,-25r301,-768","w":370},"t":{"d":"330,-468r0,66r-138,0r0,234v0,60,1,108,70,108v23,0,48,-5,69,-16r3,71v-27,12,-62,17,-91,17v-111,0,-129,-60,-129,-157r0,-257r-102,0r0,-66r102,0r0,-133r78,0r0,133r138,0","w":352},"3":{"d":"204,-336r0,-72v91,2,187,-6,187,-123v0,-72,-50,-117,-121,-117v-59,0,-105,27,-130,79r-81,-31v67,-178,416,-159,416,65v0,76,-54,138,-121,164v90,15,145,89,145,178v0,135,-108,205,-234,205v-107,0,-192,-44,-228,-149r85,-28v24,76,65,105,143,105v80,0,144,-57,144,-139v0,-113,-101,-141,-205,-137"},"2":{"d":"50,0r0,-96r267,-260v67,-65,100,-103,100,-172v0,-74,-58,-120,-129,-120v-71,0,-121,45,-134,113r-91,-8v19,-116,108,-177,222,-177v117,0,216,66,216,192v0,113,-67,176,-138,243r-218,205r0,2r361,0r0,78r-456,0"},"u":{"d":"482,-468r0,357v0,43,4,80,4,111r-74,0v-2,-24,2,-56,-4,-77v-21,46,-79,89,-156,89v-123,0,-178,-78,-178,-191r0,-289r78,0r0,281v0,78,34,127,107,127v101,0,145,-73,145,-180r0,-228r78,0"},"_":{"d":"0,125r0,-50r500,0r0,50r-500,0","w":500},"v":{"d":"472,-468r-185,468r-86,0r-191,-468r91,0r146,367r2,0r139,-367r84,0","w":482},"w":{"d":"727,-468r-151,468r-77,0r-133,-360r-2,0r-118,360r-80,0r-152,-468r86,0r107,360r2,0r121,-360r82,0r123,360r2,0r106,-360r84,0","w":741},"x":{"d":"3,0r192,-252r-168,-216r102,0r124,168r117,-168r95,0r-161,216r193,252r-103,0r-148,-202r-146,202r-97,0","w":500},"y":{"d":"472,-468r-226,575v-30,102,-107,160,-226,121r10,-68v16,6,33,8,55,8v86,1,89,-103,119,-165r-194,-471r91,0r145,367r2,0r139,-367r85,0","w":482},"z":{"d":"30,0r0,-61r275,-341r-263,0r0,-66r365,0r0,60r-275,342r282,0r0,66r-384,0","w":444},"0":{"d":"38,-354v0,-161,45,-366,240,-366v195,0,240,205,240,366v0,161,-45,366,-240,366v-195,0,-240,-205,-240,-366xm122,-354v0,104,16,294,156,294v140,0,156,-190,156,-294v0,-104,-16,-294,-156,-294v-140,0,-156,190,-156,294"},"\u00a0":{"w":278}}});Cufon.registerFont({"w":592,"face":{"font-family":"cufonavenir","font-weight":900,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 10 3 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"12","bbox":"-73 -790 1002 240","underline-thickness":"50","underline-position":"-100","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":296},"A":{"d":"-1,0r306,-708r129,0r308,708r-176,0r-61,-150r-275,0r-59,150r-172,0xm452,-282r-87,-220r-86,220r173,0","w":741},"B":{"d":"72,0r0,-708r264,0v124,0,259,26,259,180v0,81,-53,130,-122,158v93,12,155,81,155,173v0,250,-311,191,-556,197xm228,-576r0,151v94,-3,211,21,211,-77v0,-96,-119,-71,-211,-74xm228,-293r0,161v106,-5,244,29,244,-83v0,-67,-75,-78,-126,-78r-118,0","w":648},"C":{"d":"655,-622r-120,98v-31,-37,-76,-58,-134,-58v-118,0,-205,96,-205,228v0,132,87,228,200,228v63,0,114,-28,146,-76r130,97v-59,84,-159,123,-256,123v-221,0,-382,-145,-382,-372v0,-227,161,-372,382,-372v79,0,179,27,239,104","w":685},"D":{"d":"72,0r0,-708r234,0v228,0,419,97,419,356v0,229,-187,352,-398,352r-255,0xm228,-564r0,420v188,9,334,-24,335,-216v0,-139,-111,-204,-243,-204r-92,0","w":759},"E":{"d":"78,0r0,-708r481,0r0,144r-325,0r0,132r307,0r0,144r-307,0r0,144r343,0r0,144r-499,0","w":630},"F":{"d":"78,0r0,-708r475,0r0,144r-319,0r0,144r295,0r0,144r-295,0r0,276r-156,0","w":593},"G":{"d":"713,-420r0,370v-92,48,-193,68,-297,68v-221,0,-382,-145,-382,-372v0,-227,161,-372,382,-372v112,0,211,25,282,91r-110,120v-42,-44,-93,-67,-172,-67v-133,0,-220,96,-220,228v0,132,87,228,220,228v68,0,118,-19,147,-35r0,-115r-127,0r0,-144r277,0","w":778},"H":{"d":"72,0r0,-708r156,0r0,264r303,0r0,-264r156,0r0,708r-156,0r0,-306r-303,0r0,306r-156,0","w":759},"I":{"d":"70,0r0,-708r156,0r0,708r-156,0","w":296},"J":{"d":"438,-708r0,471v0,131,-34,255,-226,255v-112,0,-194,-52,-217,-165r143,-35v4,34,36,62,70,62v73,0,74,-81,74,-134r0,-454r156,0","w":500},"K":{"d":"78,0r0,-708r156,0r0,294r275,-294r204,0r-315,329r342,379r-218,0r-288,-336r0,336r-156,0","w":722},"L":{"d":"78,0r0,-708r156,0r0,564r289,0r0,144r-445,0","w":537},"M":{"d":"72,0r0,-708r236,0r163,462r2,0r164,-462r235,0r0,708r-156,0r0,-543r-2,0r-186,543r-119,0r-179,-543r-2,0r0,543r-156,0","w":944},"N":{"d":"72,0r0,-708r212,0r301,492r2,0r0,-492r156,0r0,708r-204,0r-309,-504r-2,0r0,504r-156,0","w":815},"O":{"d":"34,-354v0,-227,161,-372,382,-372v221,0,382,145,382,372v0,227,-161,372,-382,372v-221,0,-382,-145,-382,-372xm196,-354v0,132,87,228,220,228v133,0,220,-96,220,-228v0,-132,-87,-228,-220,-228v-133,0,-220,96,-220,228","w":832},"P":{"d":"72,0r0,-708v247,6,531,-51,532,215v0,209,-172,225,-376,217r0,276r-156,0xm228,-576r0,168v99,-2,214,19,214,-85v0,-100,-119,-81,-214,-83","w":630},"Q":{"d":"847,-120r0,120r-429,0v-221,0,-384,-135,-384,-363v0,-214,168,-363,378,-363v210,0,378,150,378,363v0,102,-48,196,-141,243r198,0xm196,-363v0,122,97,219,216,219v119,0,216,-97,216,-219v0,-122,-97,-219,-216,-219v-119,0,-216,97,-216,219","w":852},"R":{"d":"72,0r0,-708v250,5,539,-52,541,215v0,99,-53,176,-153,194r180,299r-187,0r-148,-283r-77,0r0,283r-156,0xm228,-576r0,161v97,-6,223,29,223,-79v0,-107,-124,-77,-223,-82","w":648},"S":{"d":"529,-652r-107,117v-25,-32,-75,-47,-113,-47v-44,0,-105,20,-105,73v0,129,326,46,326,294v0,259,-359,296,-511,144r111,-122v32,42,84,67,136,67v51,0,108,-24,108,-74v0,-130,-332,-60,-332,-296v0,-240,331,-294,487,-156","w":574},"T":{"d":"209,0r0,-570r-202,0r0,-138r560,0r0,138r-202,0r0,570r-156,0","w":574},"U":{"d":"669,-708r0,435v0,167,-102,291,-298,291v-197,0,-299,-124,-299,-291r0,-435r156,0r0,429v0,87,60,153,143,153v82,0,142,-66,142,-153r0,-429r156,0","w":741},"V":{"d":"285,0r-283,-708r178,0r175,464r2,0r178,-464r167,0r-292,708r-125,0","w":704},"W":{"d":"208,0r-210,-708r170,0r113,454r2,0r148,-454r145,0r147,466r2,0r119,-466r158,0r-207,708r-139,0r-156,-490r-2,0r-156,490r-134,0","w":1000},"X":{"d":"0,0r248,-370r-234,-338r196,0r151,248r145,-248r189,0r-229,335r256,373r-196,0r-173,-285r-168,285r-185,0","w":722},"Y":{"d":"246,0r0,-302r-266,-406r194,0r150,265r159,-265r185,0r-266,406r0,302r-156,0","w":648},"Z":{"d":"35,0r0,-144r359,-426r-346,0r0,-138r535,0r0,138r-352,426r364,0r0,144r-560,0","w":630},"a":{"d":"358,0v-2,-19,4,-46,-2,-61v-77,122,-327,90,-327,-77v0,-168,204,-171,329,-171v0,-53,-44,-87,-96,-87v-49,0,-90,22,-122,58r-80,-82v55,-52,135,-78,214,-78v175,0,222,89,222,251r0,247r-138,0xm358,-213r-37,0v-46,0,-148,4,-148,70v0,36,38,53,71,53v71,-1,125,-39,114,-123","w":537},"&":{"d":"744,-365r-149,198r158,167r-193,0r-59,-67v-130,149,-457,103,-459,-127v0,-91,66,-165,150,-193v-46,-50,-78,-89,-78,-159v0,-128,108,-180,221,-180v109,0,206,55,206,174v0,84,-60,147,-131,184r91,97r69,-94r174,0xm333,-606v-39,0,-69,26,-69,66v0,35,35,67,59,89v31,-18,80,-51,80,-91v0,-41,-32,-64,-70,-64xm410,-166r-125,-136v-39,24,-81,48,-81,101v0,52,46,87,95,87v46,0,78,-23,111,-52","w":759},"^":{"d":"80,-343r180,-365r146,0r180,365r-142,0r-111,-238r-112,238r-141,0","w":666},"~":{"d":"227,-400v66,0,155,68,213,68v40,0,65,-37,88,-68r36,108v-22,42,-58,86,-125,86v-66,0,-155,-68,-213,-68v-40,0,-65,37,-88,68r-36,-108v22,-42,58,-86,125,-86","w":666},"*":{"d":"293,-708r0,138r131,-43r30,95r-131,42r83,114r-83,61r-84,-115r-81,110r-81,-61r84,-109r-133,-46r32,-95r131,47r0,-138r102,0","w":482},"@":{"d":"475,-364v0,-53,-24,-92,-74,-92v-61,0,-100,55,-100,124v0,42,13,89,69,89v84,0,105,-66,105,-121xm605,-534r-37,197v-3,33,-29,94,18,94v42,0,86,-45,86,-149v0,-160,-109,-244,-261,-244v-166,0,-277,119,-277,283v0,175,125,281,294,281v75,0,140,-22,189,-61r110,0v-71,98,-185,151,-307,151v-213,0,-388,-154,-388,-371v0,-213,171,-373,382,-373v176,0,354,117,354,329v0,213,-162,244,-222,244v-59,0,-74,-31,-81,-54v-26,27,-65,54,-128,54v-86,0,-144,-69,-144,-168v0,-117,76,-225,200,-225v55,0,86,20,110,57r8,-45r94,0","w":800},"b":{"d":"67,0r0,-756r150,0r0,322r2,0v34,-47,92,-64,154,-64v138,0,222,124,222,259v0,147,-95,251,-239,251v-70,0,-124,-44,-151,-76r0,64r-138,0xm205,-243v0,73,45,123,120,123v75,0,120,-50,120,-123v0,-73,-45,-123,-120,-123v-75,0,-120,50,-120,123","w":630},"\\":{"d":"410,18r-113,35r-300,-779r114,-35","w":407},"|":{"d":"48,18r0,-774r126,0r0,774r-126,0","w":222},"{":{"d":"356,42r0,114v-135,5,-234,5,-234,-146r0,-172v0,-62,-83,-69,-108,-69r0,-114v25,0,108,-7,108,-69r0,-173v1,-150,99,-150,234,-145r0,114r-49,0v-61,0,-65,37,-65,64r0,161v0,96,-62,96,-100,106v42,3,100,10,100,103r0,162v0,27,4,64,65,64r49,0","w":370},"}":{"d":"14,-618r0,-114v135,-5,234,-7,234,146r0,172v0,62,80,69,108,69r0,114v-28,0,-108,7,-108,69r0,173v-1,150,-99,150,-234,145r0,-114r49,0v61,0,65,-37,65,-64r0,-161v0,-96,62,-96,100,-106v-42,-3,-100,-10,-100,-103r0,-162v0,-27,-4,-64,-65,-64r-49,0","w":370},"[":{"d":"276,-732r0,90r-90,0r0,708r90,0r0,90r-210,0r0,-888r210,0","w":296},"]":{"d":"20,156r0,-90r90,0r0,-708r-90,0r0,-90r210,0r0,888r-210,0","w":296},"c":{"d":"481,-433r-99,104v-15,-21,-43,-37,-74,-37v-75,0,-120,50,-120,123v0,73,45,123,120,123v33,0,57,-17,74,-37r99,104v-160,146,-443,34,-443,-190v0,-225,282,-335,443,-190","w":482},":":{"d":"56,-86v0,-51,41,-92,92,-92v51,0,92,41,92,92v0,51,-41,92,-92,92v-51,0,-92,-41,-92,-92xm56,-406v0,-51,41,-92,92,-92v51,0,92,41,92,92v0,51,-41,92,-92,92v-51,0,-92,-41,-92,-92","w":296},",":{"d":"17,120r74,-282r144,0r-90,282r-128,0","w":296},"d":{"d":"563,-756r0,756r-138,0v-2,-20,4,-48,-2,-64v-23,35,-81,76,-149,76v-144,0,-239,-104,-239,-251v0,-135,84,-259,222,-259v64,0,119,20,156,64r0,-322r150,0xm425,-243v0,-73,-45,-123,-120,-123v-75,0,-120,50,-120,123v0,73,45,123,120,123v75,0,120,-50,120,-123","w":630},"$":{"d":"328,-790r0,70v72,0,156,17,214,63r-96,117v-32,-28,-75,-40,-118,-42r0,159r96,28v88,26,145,88,145,181v0,140,-110,213,-241,226r0,70r-66,0r0,-70v-88,0,-181,-21,-247,-81r106,-119v35,43,87,58,141,62r0,-169v-117,-29,-228,-79,-228,-209v0,-126,110,-202,228,-216r0,-70r66,0xm262,-439r0,-140v-37,8,-72,26,-72,68v0,60,55,66,72,72xm328,-278r0,150v41,-8,85,-28,85,-74v1,-51,-46,-61,-85,-76"},"e":{"d":"408,-161r105,77v-48,61,-127,96,-205,96v-150,0,-270,-100,-270,-255v0,-155,120,-255,270,-255v155,0,241,120,228,302r-348,0v12,57,55,94,113,94v49,0,82,-25,107,-59xm188,-298r198,0v1,-50,-38,-92,-92,-92v-66,0,-102,45,-106,92","w":574},"8":{"d":"59,-525v0,-130,107,-195,237,-195v130,0,237,65,237,195v0,79,-48,132,-120,159v85,23,132,84,132,172v0,137,-118,206,-249,206v-131,0,-249,-69,-249,-206v0,-90,51,-146,132,-174v-76,-22,-120,-80,-120,-157xm209,-504v0,44,35,79,87,79v52,0,87,-35,87,-79v0,-43,-35,-78,-87,-78v-52,0,-87,35,-87,78xm197,-215v0,49,40,89,99,89v59,0,99,-40,99,-89v0,-50,-40,-90,-99,-90v-59,0,-99,40,-99,90"},"=":{"d":"59,-336r0,-126r548,0r0,126r-548,0xm59,-144r0,-126r548,0r0,126r-548,0","w":666},"!":{"d":"297,-708r0,474r-150,0r0,-474r150,0xm130,-86v0,-51,41,-92,92,-92v51,0,92,41,92,92v0,51,-41,92,-92,92v-51,0,-92,-41,-92,-92","w":444},"f":{"d":"105,0r0,-366r-99,0r0,-120r99,0v-2,-161,-11,-276,190,-282v30,0,60,2,88,9r-7,127v-58,-20,-127,-18,-121,69r0,77r111,0r0,120r-111,0r0,366r-150,0","w":370},"5":{"d":"517,-708r0,132r-281,0r-3,109v165,-37,308,61,308,226v0,160,-115,253,-270,253v-122,0,-208,-61,-239,-181r157,-36v8,51,45,85,97,85v64,0,105,-45,105,-106v0,-148,-197,-129,-310,-91r8,-391r428,0"},"4":{"d":"333,0r0,-142r-309,0r0,-126r289,-440r164,0r0,440r91,0r0,126r-91,0r0,142r-144,0xm333,-268r0,-244r-2,0r-157,244r159,0"},"g":{"d":"563,-486r0,445v0,183,-93,281,-281,281v-86,0,-174,-15,-244,-71r83,-124v46,39,97,63,158,63v109,-1,147,-68,132,-166v-34,47,-92,64,-137,64v-144,0,-239,-104,-239,-251v0,-129,84,-253,222,-253v87,-1,141,44,168,76r0,-64r138,0xm185,-246v0,63,52,120,120,120v68,0,120,-57,120,-120v0,-63,-52,-120,-120,-120v-68,0,-120,57,-120,120","w":630},"`":{"d":"131,-708r101,144r-132,0r-173,-144r204,0","w":260},">":{"d":"80,-42r0,-136r317,-124r0,-2r-317,-124r0,-136r506,198r0,126","w":666},"h":{"d":"53,-756r150,0r0,336r2,0v14,-38,63,-78,136,-78v152,0,180,100,180,230r0,268r-150,0r0,-238v0,-56,-1,-128,-78,-128v-78,0,-90,61,-90,124r0,242r-150,0r0,-756","w":574},"-":{"d":"271,-309r0,120r-246,0r0,-120r246,0","w":296},"i":{"d":"55,0r0,-486r150,0r0,486r-150,0xm43,-639v0,-48,39,-87,87,-87v48,0,87,39,87,87v0,48,-39,87,-87,87v-48,0,-87,-39,-87,-87","w":260},"j":{"d":"205,-486r0,522v0,124,-43,204,-180,204v-23,0,-48,-1,-70,-8r8,-133v12,6,26,9,39,9v52,0,53,-61,53,-98r0,-496r150,0xm43,-639v0,-48,39,-87,87,-87v48,0,87,39,87,87v0,48,-39,87,-87,87v-48,0,-87,-39,-87,-87","w":260},"k":{"d":"53,0r0,-756r150,0r0,462r166,-192r184,0r-193,219r198,267r-189,0r-164,-246r-2,0r0,246r-150,0","w":556},"l":{"d":"55,0r0,-756r150,0r0,756r-150,0","w":260},"<":{"d":"586,-564r0,136r-317,124r0,2r317,124r0,136r-506,-198r0,-126","w":666},"m":{"d":"53,0r0,-486r144,0v2,21,-4,49,2,66v20,-38,69,-78,142,-78v68,0,124,28,150,87v35,-62,82,-87,154,-87v132,0,172,93,172,211r0,287r-150,0r0,-283v0,-45,-17,-83,-66,-83v-69,0,-91,49,-91,109r0,257r-150,0r0,-257v0,-36,2,-109,-67,-109v-78,0,-90,61,-90,124r0,242r-150,0","w":870},"n":{"d":"53,0r0,-486r144,0v2,21,-4,49,2,66v20,-38,69,-78,142,-78v152,0,180,100,180,230r0,268r-150,0r0,-238v0,-56,-1,-128,-78,-128v-78,0,-90,61,-90,124r0,242r-150,0","w":574},"9":{"d":"139,0r166,-253v-155,35,-271,-81,-271,-224v0,-146,116,-243,264,-243v148,0,264,97,264,243v0,102,-40,164,-85,235r-155,242r-183,0xm184,-471v0,64,47,111,114,111v67,0,114,-47,114,-111v0,-64,-47,-111,-114,-111v-67,0,-114,47,-114,111"},"#":{"d":"101,0r28,-201r-84,0r0,-90r96,0r17,-126r-84,0r0,-90r96,0r28,-201r97,0r-28,201r99,0r28,-201r97,0r-28,201r84,0r0,90r-96,0r-17,126r84,0r0,90r-96,0r-28,201r-97,0r28,-201r-99,0r-28,201r-97,0xm337,-291r17,-126r-99,0r-17,126r99,0"},"o":{"d":"35,-243v0,-155,120,-255,270,-255v150,0,270,100,270,255v0,155,-120,255,-270,255v-150,0,-270,-100,-270,-255xm185,-243v0,73,45,123,120,123v75,0,120,-50,120,-123v0,-73,-45,-123,-120,-123v-75,0,-120,50,-120,123","w":610},"1":{"d":"288,0r0,-540r-142,125r-85,-98r231,-195r140,0r0,708r-144,0"},"p":{"d":"67,228r0,-714r138,0v2,20,-4,48,2,64v23,-35,81,-76,149,-76v144,0,239,104,239,251v0,135,-84,259,-222,259v-64,0,-119,-20,-156,-64r0,280r-150,0xm205,-243v0,73,45,123,120,123v75,0,120,-50,120,-123v0,-73,-45,-123,-120,-123v-75,0,-120,50,-120,123","w":630},"(":{"d":"190,156v-91,-137,-146,-279,-146,-444v0,-165,55,-307,146,-444r103,60v-81,127,-129,229,-129,384v0,155,48,257,129,384","w":314},")":{"d":"124,-732v91,137,146,279,146,444v0,165,-55,307,-146,444r-103,-60v81,-127,129,-229,129,-384v0,-155,-48,-257,-129,-384","w":314},"%":{"d":"508,-187v0,-110,88,-198,197,-198v109,0,197,88,197,198v0,110,-88,199,-197,199v-109,0,-197,-89,-197,-199xm800,-187v0,-53,-42,-96,-95,-96v-53,0,-95,43,-95,96v0,54,42,97,95,97v53,0,95,-43,95,-97xm5,-522v0,-110,88,-198,197,-198v109,0,197,88,197,198v0,110,-88,198,-197,198v-109,0,-197,-88,-197,-198xm297,-522v0,-53,-42,-96,-95,-96v-53,0,-95,43,-95,96v0,53,42,96,95,96v53,0,95,-43,95,-96xm210,-11r405,-729r84,47r-413,725","w":907},".":{"d":"56,-86v0,-51,41,-92,92,-92v51,0,92,41,92,92v0,51,-41,92,-92,92v-51,0,-92,-41,-92,-92","w":296},"+":{"d":"59,-240r0,-126r211,0r0,-211r126,0r0,211r211,0r0,126r-211,0r0,211r-126,0r0,-211r-211,0","w":666},"q":{"d":"563,-486r0,714r-150,0r0,-280r-2,0v-34,47,-92,64,-154,64v-138,0,-222,-124,-222,-259v0,-147,95,-251,239,-251v70,0,124,44,151,76r0,-64r138,0xm425,-243v0,-73,-45,-123,-120,-123v-75,0,-120,50,-120,123v0,73,45,123,120,123v75,0,120,-50,120,-123","w":630},"?":{"d":"216,-234v-1,-60,1,-102,35,-134v75,-70,128,-104,128,-150v0,-44,-31,-70,-72,-70v-62,0,-95,40,-99,89r-154,-10v14,-141,111,-217,250,-217v122,0,225,68,225,197v0,76,-30,121,-124,197v-41,33,-40,49,-39,98r-150,0xm199,-86v0,-51,41,-92,92,-92v51,0,92,41,92,92v0,51,-41,92,-92,92v-51,0,-92,-41,-92,-92","w":556},"\"":{"d":"313,-426r0,-282r126,0r0,282r-126,0xm81,-426r0,-282r126,0r0,282r-126,0","w":520},"'":{"d":"85,-426r0,-282r126,0r0,282r-126,0","w":296},"r":{"d":"53,0r0,-486r150,0v2,25,-4,57,2,78v38,-73,98,-103,190,-85r0,137v-21,-6,-42,-10,-64,-10v-114,0,-128,66,-128,163r0,203r-150,0","w":407},"s":{"d":"420,-434r-92,91v-22,-27,-51,-41,-87,-41v-25,0,-55,11,-55,40v0,72,253,11,253,196v0,124,-120,160,-224,160v-68,0,-143,-17,-191,-66r91,-101v28,34,61,53,106,53v34,0,68,-9,68,-35v0,-78,-253,-12,-253,-197v0,-186,273,-209,384,-100","w":463},";":{"d":"17,120r74,-282r144,0r-90,282r-128,0xm56,-406v0,-51,41,-92,92,-92v51,0,92,41,92,92v0,51,-41,92,-92,92v-51,0,-92,-41,-92,-92","w":296},"7":{"d":"97,0r290,-570r-350,0r0,-138r518,0r0,132r-283,576r-175,0"},"6":{"d":"453,-708r-166,253v155,-35,271,81,271,224v0,146,-116,243,-264,243v-148,0,-264,-97,-264,-243v0,-102,40,-164,85,-235r155,-242r183,0xm408,-237v0,-64,-47,-111,-114,-111v-67,0,-114,47,-114,111v0,64,47,111,114,111v67,0,114,-47,114,-111"},"\/":{"d":"-3,18r299,-779r114,35r-300,779","w":407},"t":{"d":"384,-486r0,120r-132,0r0,162v0,52,6,90,71,90v16,0,48,-2,61,-14r0,125v-126,37,-282,13,-282,-132r0,-231r-96,0r0,-120r96,0r0,-144r150,0r0,144r132,0","w":407},"3":{"d":"216,-299r0,-130v79,1,163,6,163,-79v0,-43,-39,-74,-88,-74v-47,0,-79,29,-88,66r-165,-34v31,-123,132,-170,252,-170v126,0,239,61,239,197v0,78,-43,139,-121,155r0,3v85,11,133,83,133,165v0,142,-116,212,-255,212v-126,0,-225,-56,-254,-183r158,-37v10,50,41,82,105,82v65,0,96,-38,96,-91v0,-93,-93,-81,-175,-82"},"2":{"d":"49,0r0,-159r275,-247v28,-26,63,-56,63,-99v0,-48,-41,-77,-87,-77v-55,0,-88,39,-92,90r-150,-11v9,-146,111,-217,250,-217v129,0,229,71,229,213v0,91,-39,143,-93,190r-215,185r314,0r0,132r-494,0"},"u":{"d":"521,-486r0,486r-144,0v-2,-21,4,-49,-2,-66v-20,38,-69,78,-142,78v-152,0,-180,-100,-180,-230r0,-268r150,0r0,238v0,56,1,128,78,128v78,0,90,-61,90,-124r0,-242r150,0","w":574},"_":{"d":"500,125r-500,0r0,-50r500,0r0,50","w":500},"v":{"d":"203,0r-201,-486r162,0r123,330r2,0r114,-330r151,0r-192,486r-159,0","w":556},"w":{"d":"173,0r-178,-486r160,0r99,305r2,0r83,-305r164,0r90,305r2,0r91,-305r152,0r-173,486r-148,0r-101,-323r-2,0r-90,323r-151,0","w":833},"x":{"d":"-8,0r192,-260r-162,-226r177,0r86,132r83,-132r167,0r-158,226r187,260r-177,0r-106,-162r-114,162r-175,0","w":556},"y":{"d":"553,-486r-220,565v-40,103,-63,161,-206,161v-38,0,-76,-6,-112,-18r20,-123v23,10,45,15,70,15v80,0,86,-54,111,-110r-213,-490r162,0r125,321r2,0r107,-321r154,0","w":556},"z":{"d":"34,0r0,-150r252,-216r-246,0r0,-120r420,0r0,144r-264,222r270,0r0,120r-432,0","w":500},"0":{"d":"33,-354v0,-168,53,-366,263,-366v210,0,263,198,263,366v0,168,-53,366,-263,366v-210,0,-263,-198,-263,-366xm183,-354v0,74,5,228,113,228v108,0,113,-154,113,-228v0,-74,-5,-228,-113,-228v-108,0,-113,154,-113,228"},"\u00a0":{"w":296}}});Cufon.registerFont({"w":556,"face":{"font-family":"cufonavenir","font-weight":400,"font-style":"oblique","font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"12","bbox":"-66 -786 1057 240.307","underline-thickness":"50","underline-position":"-100","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":278},"A":{"d":"6,0r412,-708r79,0r201,708r-98,0r-48,-174r-354,0r-97,174r-95,0xm531,-252r-91,-348r-2,0r-196,348r289,0","w":704},"B":{"d":"88,0r100,-708v201,2,448,-34,426,174v-9,84,-71,135,-147,162v90,8,153,82,136,174v-42,228,-275,198,-515,198xm261,-630r-32,222v138,-2,273,24,294,-115v19,-131,-139,-104,-262,-107xm218,-330r-35,252v152,2,309,15,330,-123v23,-151,-150,-128,-295,-129","w":630},"C":{"d":"743,-615r-80,53v-34,-57,-97,-86,-165,-86v-158,0,-289,139,-311,294v-23,164,69,294,228,294v86,0,160,-35,219,-99r56,53v-75,85,-173,124,-286,124v-203,0,-337,-157,-307,-372v29,-208,202,-372,412,-372v96,0,185,33,234,111","w":704},"D":{"d":"75,0r100,-708r272,0v139,0,333,93,297,354v-37,261,-258,354,-397,354r-272,0xm248,-630r-78,552r160,0v162,0,296,-82,324,-276v27,-194,-84,-276,-246,-276r-160,0","w":741},"E":{"d":"88,0r100,-708r445,0r-11,78r-361,0r-32,222r337,0r-11,78r-337,0r-35,252r379,0r-11,78r-463,0","w":593},"F":{"d":"88,0r100,-708r439,0r-11,78r-355,0r-33,234r330,0r-11,78r-330,0r-45,318r-84,0"},"G":{"d":"746,-396r-49,348v-88,45,-183,66,-275,66v-220,0,-356,-150,-325,-372v31,-223,221,-372,433,-372v93,0,180,25,237,93r-72,66v-41,-52,-110,-81,-182,-81v-162,0,-302,122,-326,294v-24,169,77,294,251,294v57,0,127,-15,182,-41r31,-217r-163,0r11,-78r247,0","w":778},"H":{"d":"88,0r100,-708r84,0r-43,300r378,0r43,-300r84,0r-100,708r-84,0r46,-330r-378,0r-46,330r-84,0","w":722},"I":{"d":"88,0r100,-708r84,0r-100,708r-84,0","w":260},"J":{"d":"494,-708r-74,525v-14,95,-80,201,-231,201v-100,0,-163,-51,-167,-152r86,-17v3,56,34,91,93,91v96,0,128,-75,139,-152r70,-496r84,0","w":482},"K":{"d":"88,0r100,-708r84,0r-44,306r12,0r366,-306r121,0r-396,323r313,385r-123,0r-286,-360r-12,0r-51,360r-84,0","w":630},"L":{"d":"88,0r100,-708r84,0r-89,630r324,0r-11,78r-408,0","w":500},"M":{"d":"88,0r100,-708r125,0r162,555r2,0r320,-555r122,0r-100,708r-84,0r83,-594r-2,0r-337,594r-51,0r-171,-594r-2,0r-83,594r-84,0","w":907},"N":{"d":"88,0r100,-708r106,0r327,588r2,0r83,-588r84,0r-100,708r-106,0r-327,-588r-2,0r-83,588r-84,0","w":778},"O":{"d":"414,18v-215,0,-347,-158,-317,-372v30,-214,207,-372,422,-372v215,0,348,158,318,372v-30,214,-208,372,-423,372xm425,-60v166,0,299,-131,322,-294v23,-163,-73,-294,-239,-294v-166,0,-298,131,-321,294v-23,163,72,294,238,294","w":834},"P":{"d":"88,0r100,-708v213,1,460,-33,430,194v-20,155,-159,196,-259,196r-142,0r-45,318r-84,0xm261,-630r-33,234r142,0v84,0,147,-38,158,-117v11,-79,-41,-117,-125,-117r-142,0","w":593},"Q":{"d":"832,-72r-10,72r-411,0v-207,0,-342,-158,-313,-363v29,-205,208,-363,415,-363v207,0,341,158,313,363v-16,122,-104,242,-213,291r219,0xm188,-363v-22,160,78,285,234,285v156,0,292,-125,314,-285v22,-158,-75,-285,-234,-285v-159,0,-292,127,-314,285","w":834},"R":{"d":"88,0r100,-708v214,7,462,-46,435,195v-11,103,-91,170,-203,187r155,326r-103,0r-147,-318r-108,0r-45,318r-84,0xm261,-630r-33,234r75,0v93,0,217,0,230,-117v17,-144,-141,-113,-272,-117","w":611},"S":{"d":"583,-643r-77,60v-59,-110,-270,-77,-288,54v-9,65,23,94,131,130v105,35,202,71,183,210v-20,141,-151,207,-279,207v-82,0,-166,-27,-204,-98r81,-59v55,124,289,97,311,-44v13,-87,-45,-102,-165,-144v-95,-33,-165,-77,-149,-195v19,-136,146,-204,270,-204v79,0,143,22,186,83"},"T":{"d":"663,-708r-11,78r-234,0r-89,630r-84,0r89,-630r-234,0r11,-78r552,0","w":574},"U":{"d":"719,-708r-62,438v-22,154,-113,288,-308,288v-195,0,-248,-134,-226,-288r62,-438r84,0r-60,426v-16,114,10,222,151,222v141,0,199,-108,215,-222r60,-426r84,0","w":704},"V":{"d":"262,0r-171,-708r95,0r136,582r2,0r307,-582r89,0r-377,708r-81,0","w":611},"W":{"d":"213,0r-107,-708r93,0r78,588r2,0r257,-588r94,0r90,588r2,0r247,-588r88,0r-308,708r-91,0r-91,-600r-2,0r-260,600r-92,0","w":963},"X":{"d":"-3,0r310,-373r-190,-335r108,0r152,277r228,-277r105,0r-286,335r209,373r-111,0r-166,-314r-255,314r-104,0","w":630},"Y":{"d":"255,0r43,-305r-207,-403r107,0r154,320r250,-320r101,0r-321,403r-43,305r-84,0","w":594},"Z":{"d":"29,0r11,-75r487,-555r-403,0r11,-78r505,0r-11,72r-487,558r414,0r-11,78r-516,0","w":574},"a":{"d":"167,-357r-42,-51v55,-49,128,-72,196,-72v138,0,186,66,169,198v-12,92,-32,182,-33,282r-75,0v-4,-20,7,-55,3,-70v-38,48,-95,82,-166,82v-95,0,-169,-48,-154,-139v28,-165,211,-164,348,-164v15,-73,-20,-119,-100,-117v-50,0,-104,17,-146,51xm404,-225v-116,-5,-246,5,-254,90v-5,59,33,81,92,81v101,0,155,-76,162,-171","w":519},"&":{"d":"593,0r-82,-102v-67,72,-134,114,-228,114v-120,0,-214,-75,-196,-202v14,-100,95,-166,186,-205v-40,-47,-72,-96,-62,-164v14,-105,107,-162,205,-162v96,0,170,53,155,157v-12,89,-99,143,-175,180r128,159r117,-159r95,0r-167,218r139,166r-115,0xm294,-554v-7,52,32,87,57,119v57,-29,127,-61,137,-131v7,-52,-30,-83,-79,-83v-56,0,-107,37,-115,95xm468,-158r-151,-186v-64,33,-135,75,-146,151v-11,76,45,133,119,133v73,0,126,-46,178,-98","w":722},"^":{"d":"119,-275r284,-433r60,0r162,433r-74,0r-130,-349r-228,349r-74,0","w":666},"~":{"d":"280,-370v79,0,130,67,207,68v44,0,73,-35,95,-70r27,48v-37,42,-77,88,-139,88v-79,0,-130,-67,-207,-68v-44,0,-73,35,-94,70r-26,-48v36,-42,75,-88,137,-88","w":666},"*":{"d":"352,-708r-21,149r148,-48r11,58r-148,48r73,119r-55,38r-72,-123r-105,123r-44,-38r103,-119r-134,-48r27,-58r136,48r21,-149r60,0","w":444},"@":{"d":"303,-293v-8,55,24,96,74,96v87,0,173,-130,184,-212v8,-51,-25,-94,-67,-94v-94,0,-179,123,-191,210xm696,-550r-123,283v-8,16,-14,35,-17,50v-1,14,5,20,22,20v64,0,155,-107,170,-218v22,-157,-97,-257,-236,-257v-173,0,-328,146,-352,318v-25,179,98,318,263,318v99,0,205,-48,269,-121r63,0v-79,109,-210,175,-340,175v-210,0,-350,-165,-321,-372v29,-208,220,-372,426,-372v183,0,320,127,295,306v-24,173,-181,289,-275,289v-37,0,-55,-26,-56,-66v-36,36,-76,66,-135,66v-85,0,-131,-68,-119,-155v20,-139,132,-283,273,-283v48,0,83,27,101,82r27,-63r65,0","w":800},"b":{"d":"70,0r106,-756r78,0r-50,356v53,-47,112,-80,181,-80v147,0,232,104,212,246v-20,140,-138,246,-269,246v-86,0,-142,-45,-168,-95r-12,83r-78,0xm181,-234v-14,98,40,174,141,174v101,0,177,-76,191,-174v14,-98,-41,-174,-142,-174v-101,0,-176,76,-190,174","w":611},"\\":{"d":"298,43r-193,-769r66,-24r193,768","w":370},"|":{"d":"75,18r109,-774r66,0r-109,774r-66,0","w":222},"{":{"d":"397,-732r-9,60r-54,0v-42,0,-54,39,-60,79r-24,176v-13,93,-83,119,-105,130v23,3,82,30,68,129r-24,175v-6,39,-4,79,38,79r54,0r-9,60v-104,8,-173,-13,-157,-125r24,-175v10,-72,-28,-114,-70,-114r9,-60v42,0,92,-44,102,-113r24,-176v26,-109,84,-135,193,-125","w":333},"}":{"d":"133,-672r9,-60v103,-8,173,13,157,125r-24,176v-10,69,28,113,70,113r-9,60v-42,0,-92,42,-102,114r-24,175v-25,109,-83,135,-193,125r9,-60r54,0v42,0,54,-40,60,-79r24,-175v14,-102,83,-122,105,-131v-23,-6,-81,-38,-68,-128r24,-176v6,-40,4,-79,-38,-79r-54,0","w":333},"[":{"d":"296,-732r-9,60r-93,0r-107,768r93,0r-9,60r-165,0r125,-888r165,0","w":259},"]":{"d":"160,-672r9,-60r165,0r-125,888r-165,0r9,-60r93,0r107,-768r-93,0","w":259},"c":{"d":"526,-406r-70,55v-27,-40,-63,-57,-110,-57v-105,0,-169,78,-182,174v-14,96,38,174,133,174v51,0,93,-18,128,-58r50,55v-52,52,-120,75,-188,75v-145,0,-227,-102,-207,-246v20,-142,132,-246,276,-246v69,0,130,23,170,74","w":482},":":{"d":"206,-480v33,0,57,27,52,60v-5,33,-37,60,-68,60v-31,0,-57,-27,-52,-60v5,-33,35,-60,68,-60xm155,-114v33,0,56,27,52,60v-5,33,-38,60,-69,60v-31,0,-56,-27,-51,-60v4,-33,35,-60,68,-60","w":278},",":{"d":"225,-102r-115,240r-77,0r101,-240r91,0","w":278},"d":{"d":"463,0v2,-26,13,-60,10,-83v-37,53,-110,95,-194,95v-131,0,-219,-106,-199,-246v20,-142,133,-246,280,-246v70,0,120,33,159,80r50,-356r78,0r-106,756r-78,0xm496,-234v14,-98,-41,-174,-142,-174v-101,0,-176,76,-190,174v-14,98,40,174,141,174v101,0,177,-76,191,-174","w":611},"$":{"d":"244,83r10,-71v-83,0,-160,-26,-201,-93r79,-61v23,45,77,74,133,76r36,-254v-101,-28,-187,-82,-169,-203v15,-112,119,-188,225,-197r9,-66r48,0r-9,66v72,0,143,27,183,81r-75,60v-24,-40,-67,-63,-119,-63r-35,249v103,34,200,72,182,203v-17,119,-124,195,-239,202r-10,71r-48,0xm313,-406r33,-236v-66,12,-116,57,-125,120v-9,69,35,92,92,116xm347,-307r-34,241v69,-8,128,-56,137,-120v10,-73,-45,-102,-103,-121"},"e":{"d":"451,-131r53,46v-65,71,-135,97,-222,97v-147,0,-221,-110,-202,-246v20,-145,136,-246,274,-246v142,0,216,110,185,270r-378,0v-6,81,46,150,131,150v67,0,116,-24,159,-71xm170,-276r294,0v8,-79,-37,-132,-123,-132v-86,0,-150,53,-171,132"},"8":{"d":"151,-535v16,-111,114,-185,228,-185v114,0,191,74,176,185v-9,69,-67,135,-138,158v82,18,127,93,114,182v-18,129,-129,207,-255,207v-126,0,-214,-78,-197,-207v12,-91,83,-161,166,-184v-69,-19,-103,-89,-94,-156xm235,-531v-10,67,31,117,101,117v70,0,125,-50,135,-117v9,-67,-32,-117,-102,-117v-70,0,-125,50,-134,117xm164,-201v-11,83,43,141,122,141v79,0,151,-58,162,-141v12,-83,-43,-141,-122,-141v-79,0,-150,58,-162,141"},"=":{"d":"121,-348r9,-66r522,0r-9,66r-522,0xm99,-192r9,-66r522,0r-9,66r-522,0","w":666},"!":{"d":"281,-708r-72,510r-84,0r72,-510r84,0xm155,-114v33,0,56,27,52,60v-5,33,-38,60,-69,60v-31,0,-56,-27,-51,-60v4,-33,35,-60,68,-60","w":278},"f":{"d":"114,0r56,-402r-102,0r10,-66r102,0v16,-152,39,-304,208,-300v20,0,44,4,58,12r-21,70v-16,-6,-33,-10,-51,-10v-112,-4,-97,132,-116,228r114,0r-10,66r-114,0r-56,402r-78,0","w":315},"5":{"d":"574,-708r-11,78r-289,0r-30,191v29,-13,64,-17,93,-17v136,0,212,100,193,233v-19,141,-138,235,-276,235v-107,0,-164,-51,-191,-129r89,-32v16,53,59,89,119,89v85,0,162,-65,175,-163v15,-104,-53,-161,-152,-161v-48,0,-105,19,-150,44r59,-368r371,0"},"4":{"d":"519,-708r-66,468r102,0r-11,78r-102,0r-23,162r-84,0r23,-162r-300,0r13,-93r345,-453r103,0xm369,-240r52,-370r-2,0r-278,370r228,0"},"g":{"d":"607,-468r-63,447v-24,169,-128,261,-292,261v-91,0,-160,-24,-217,-89r65,-64v41,53,90,81,162,81v167,0,199,-115,212,-249r-2,0v-45,60,-115,87,-177,87v-147,0,-235,-102,-215,-240v21,-153,134,-246,283,-246v66,0,128,34,155,92r11,-80r78,0xm164,-234v-13,95,50,168,141,168v107,0,179,-80,191,-170v14,-101,-44,-172,-143,-172v-98,0,-175,76,-189,174","w":611},"`":{"d":"185,-708r83,144r-71,0r-122,-144r110,0","w":240},">":{"d":"78,-42r9,-66r469,-195r-414,-195r9,-66r490,232r-8,58","w":666},"h":{"d":"74,0r106,-756r78,0r-49,353r2,0v26,-37,87,-77,160,-77v123,0,167,78,152,191r-41,289r-78,0r39,-281v11,-78,-16,-127,-89,-127v-101,0,-155,73,-170,180r-32,228r-78,0"},"-":{"d":"73,-204r10,-72r245,0r-10,72r-245,0","w":333},"i":{"d":"81,0r66,-468r78,0r-66,468r-78,0xm154,-651v5,-31,34,-57,66,-57v32,0,50,26,48,57v-4,68,-125,79,-114,0","w":240},"j":{"d":"225,-468r-81,573v-7,48,-42,135,-158,135v-18,0,-36,-2,-52,-10r18,-68v73,24,110,-25,119,-93r76,-537r78,0xm154,-651v5,-31,34,-57,66,-57v32,0,50,26,48,57v-4,68,-125,79,-114,0","w":240},"k":{"d":"74,0r106,-756r78,0r-69,494r242,-206r111,0r-256,213r213,255r-115,0r-197,-246r-35,246r-78,0","w":500},"l":{"d":"81,0r106,-756r78,0r-106,756r-78,0","w":240},"<":{"d":"673,-564r-9,66r-468,195r413,195r-9,66r-489,-232r8,-58","w":666},"m":{"d":"74,0r50,-357v6,-43,7,-80,12,-111r74,0v-2,24,-10,56,-7,77v27,-46,91,-89,168,-89v101,0,125,57,136,89v42,-55,89,-89,160,-89v134,0,168,75,151,196r-40,284r-78,0r39,-280v9,-65,-5,-128,-96,-128v-66,0,-128,54,-140,138r-38,270r-78,0r37,-265v15,-103,-6,-143,-70,-143v-101,0,-155,73,-170,180r-32,228r-78,0","w":852},"n":{"d":"74,0r50,-357v6,-43,7,-80,12,-111r74,0v-2,24,-10,56,-7,77v27,-46,91,-89,168,-89v123,0,167,78,152,191r-41,289r-78,0r39,-281v11,-78,-16,-127,-89,-127v-101,0,-155,73,-170,180r-32,228r-78,0"},"9":{"d":"162,0r231,-295r-1,-2v-153,67,-309,-31,-281,-201v22,-138,134,-222,268,-222v134,0,225,84,206,222v-12,82,-48,138,-95,199r-230,299r-98,0xm327,-348v85,0,161,-58,174,-150v13,-92,-47,-150,-132,-150v-85,0,-161,58,-174,150v-13,92,47,150,132,150"},"#":{"d":"98,0r60,-213r-98,0r9,-66r108,0r42,-152r-98,0r9,-66r108,0r60,-211r67,0r-60,211r126,0r60,-211r67,0r-60,211r98,0r-9,66r-107,0r-43,152r98,0r-9,66r-108,0r-60,213r-67,0r60,-213r-126,0r-60,213r-67,0xm370,-279r43,-152r-126,0r-43,152r126,0"},"o":{"d":"80,-234v20,-146,140,-246,284,-246v144,0,236,100,216,246v-21,146,-141,246,-285,246v-144,0,-236,-100,-215,-246xm164,-234v-14,98,40,174,141,174v101,0,177,-76,191,-174v14,-98,-41,-174,-142,-174v-101,0,-176,76,-190,174","w":594},"1":{"d":"460,-708r-100,708r-84,0r84,-600v-50,33,-95,72,-144,107r-41,-61r212,-154r73,0"},"p":{"d":"38,228r98,-696r78,0v-1,21,-11,50,-8,68v50,-50,111,-80,179,-80v147,0,232,104,212,246v-20,140,-138,246,-269,246v-86,0,-142,-45,-168,-95r-44,311r-78,0xm181,-234v-14,98,40,174,141,174v101,0,177,-76,191,-174v14,-98,-41,-174,-142,-174v-101,0,-176,76,-190,174","w":611},"(":{"d":"352,-692v-181,206,-264,532,-114,810r-59,38v-173,-305,-75,-671,125,-888","w":278},")":{"d":"7,116v181,-206,264,-532,114,-810r59,-38v173,305,75,671,-125,888","w":278},"%":{"d":"115,-545v13,-98,101,-175,199,-175v98,0,164,77,151,175v-14,98,-102,175,-200,175v-98,0,-164,-77,-150,-175xm187,-545v-8,56,33,103,88,103v55,0,110,-47,118,-103v7,-56,-34,-103,-89,-103v-55,0,-110,47,-117,103xm468,-163v14,-98,102,-175,200,-175v98,0,164,77,150,175v-14,98,-102,175,-200,175v-98,0,-164,-77,-150,-175xm540,-163v-8,56,33,103,88,103v55,0,110,-47,118,-103v8,-56,-34,-103,-89,-103v-55,0,-109,47,-117,103xm170,0r548,-740r51,32r-548,740","w":833},".":{"d":"155,-114v33,0,56,27,52,60v-5,33,-38,60,-69,60v-31,0,-56,-27,-51,-60v4,-33,35,-60,68,-60","w":278},"+":{"d":"110,-270r9,-66r228,0r32,-228r66,0r-32,228r228,0r-9,66r-228,0r-32,228r-66,0r32,-228r-228,0","w":666},"q":{"d":"607,-468r-98,696r-78,0r42,-296v-54,47,-112,80,-182,80v-147,0,-231,-104,-211,-246v20,-140,137,-246,268,-246v87,0,143,45,169,95r12,-83r78,0xm496,-234v14,-98,-41,-174,-142,-174v-101,0,-176,76,-190,174v-14,98,40,174,141,174v101,0,177,-76,191,-174","w":611},"?":{"d":"217,-198r9,-63v3,-132,179,-162,196,-284v9,-64,-25,-109,-91,-109v-67,0,-118,44,-137,109r-89,-10v33,-109,128,-171,237,-171v109,0,186,63,170,178v-12,88,-72,139,-141,193v-60,46,-59,80,-70,157r-84,0xm247,-114v33,0,56,27,52,60v-5,33,-38,60,-69,60v-31,0,-56,-27,-51,-60v4,-33,35,-60,68,-60","w":482},"\"":{"d":"216,-468r34,-240r72,0r-34,240r-72,0xm363,-468r34,-240r72,0r-34,240r-72,0","w":519},"'":{"d":"169,-468r34,-240r72,0r-34,240r-72,0","w":278},"r":{"d":"74,0r50,-357v6,-43,7,-80,12,-111r74,0v-2,24,-10,56,-7,77v30,-51,113,-104,200,-84r-16,79v-119,-27,-186,47,-203,168r-32,228r-78,0","w":352},"s":{"d":"33,-75r68,-48v26,38,56,63,111,63v49,0,106,-21,114,-72v7,-50,-42,-63,-90,-74v-86,-20,-160,-39,-146,-136v20,-150,282,-194,342,-53r-72,43v-23,-75,-177,-75,-192,9v-7,39,48,56,109,68v80,16,146,46,133,140v-15,106,-115,147,-208,147v-79,0,-133,-21,-169,-87","w":426},";":{"d":"225,-102r-115,240r-77,0r101,-240r91,0xm206,-480v33,0,57,27,52,60v-5,33,-37,60,-68,60v-31,0,-57,-27,-52,-60v5,-33,35,-60,68,-60","w":278},"7":{"d":"580,-708r-11,78r-372,630r-95,0r377,-630r-342,0r11,-78r432,0"},"6":{"d":"494,-708r-232,295r2,2v152,-67,308,31,281,201v-23,138,-135,222,-269,222v-134,0,-225,-84,-205,-222v11,-82,48,-138,94,-199r231,-299r98,0xm329,-360v-85,0,-162,58,-174,150v-13,92,46,150,131,150v85,0,162,-58,175,-150v12,-92,-47,-150,-132,-150"},"\/":{"d":"469,-726r-409,769r-60,-25r409,-768","w":370},"t":{"d":"396,-468r-10,66r-138,0r-32,234v-9,60,-15,108,54,108v23,0,49,-5,72,-16r-7,71v-29,12,-65,17,-94,17v-111,0,-120,-60,-107,-157r36,-257r-102,0r10,-66r102,0r18,-133r78,0r-18,133r138,0","w":352},"3":{"d":"251,-336r10,-72v94,2,184,-6,205,-123v12,-72,-34,-117,-105,-117v-59,0,-109,27,-141,79r-77,-31v46,-80,132,-120,222,-120v113,0,201,63,185,185v-10,76,-73,138,-144,164v88,15,133,89,120,178v-19,135,-137,205,-263,205v-107,0,-186,-44,-207,-149r89,-28v14,76,50,105,128,105v80,0,154,-57,164,-139v14,-113,-82,-141,-186,-137"},"2":{"d":"50,0r13,-96r304,-260v76,-65,115,-103,124,-172v11,-74,-41,-120,-112,-120v-71,0,-127,45,-150,113r-90,-8v36,-116,133,-177,247,-177v117,0,207,66,189,192v-16,113,-92,176,-172,243r-247,207r361,0r-11,78r-456,0"},"u":{"d":"548,-468r-50,357v-6,43,-8,80,-12,111r-74,0v1,-24,10,-56,7,-77v-28,46,-92,89,-169,89v-123,0,-167,-78,-151,-191r41,-289r78,0r-40,281v-11,78,16,127,89,127v101,0,156,-73,171,-180r32,-228r78,0"},"_":{"d":"-18,125r7,-50r500,0r-7,50r-500,0","w":500},"v":{"d":"538,-468r-251,468r-86,0r-125,-468r91,0r94,367r2,0r191,-367r84,0","w":482},"w":{"d":"793,-468r-217,468r-77,0r-82,-360r-2,0r-169,360r-80,0r-86,-468r86,0r56,360r2,0r172,-360r82,0r72,360r2,0r157,-360r84,0","w":741},"x":{"d":"3,0r227,-252r-137,-216r102,0r100,168r141,-168r95,0r-192,216r158,252r-103,0r-120,-202r-174,202r-97,0","w":500},"y":{"d":"538,-468r-307,575v-45,99,-120,161,-243,121r20,-68v71,24,120,-8,151,-69r45,-88r-128,-471r91,0r93,367r2,0r191,-367r85,0","w":482},"z":{"d":"30,0r9,-61r322,-341r-263,0r10,-66r365,0r-9,60r-323,342r282,0r-9,66r-384,0","w":444},"0":{"d":"88,-354v22,-161,96,-366,291,-366v195,0,211,205,189,366v-23,161,-97,366,-292,366v-195,0,-211,-205,-188,-366xm172,-354v-15,104,-26,294,114,294v140,0,183,-190,198,-294v14,-104,25,-294,-115,-294v-140,0,-183,190,-197,294"},"\u00a0":{"w":278}}});