/*!
 * jQuery corner plugin: simple corner rounding
 * Examples and documentation at: http://jquery.malsup.com/corner/
 * version 2.12 (23-MAY-2011)
 * Requires jQuery v1.3.2 or later
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Authors: Dave Methvin and Mike Alsup
 */
;(function($){var style=document.createElement('div').style,moz=style['MozBorderRadius']!==undefined,webkit=style['WebkitBorderRadius']!==undefined,radius=style['borderRadius']!==undefined||style['BorderRadius']!==undefined,mode=document.documentMode||0,noBottomFold=$.browser.msie&&(($.browser.version<8&&!mode)||mode<8),expr=$.browser.msie&&(function(){var div=document.createElement('div');try{div.style.setExpression('width','0+0');div.style.removeExpression('width')}catch(e){return false}return true})();$.support=$.support||{};$.support.borderRadius=moz||webkit||radius;function sz(el,p){return parseInt($.css(el,p))||0};function hex2(s){s=parseInt(s).toString(16);return(s.length<2)?'0'+s:s};function gpc(node){while(node){var v=$.css(node,'backgroundColor'),rgb;if(v&&v!='transparent'&&v!='rgba(0, 0, 0, 0)'){if(v.indexOf('rgb')>=0){rgb=v.match(/\d+/g);return'#'+hex2(rgb[0])+hex2(rgb[1])+hex2(rgb[2])}return v}if(node.nodeName.toLowerCase()=='html')break;node=node.parentNode}return'#ffffff'};function getWidth(fx,i,width){switch(fx){case'round':return Math.round(width*(1-Math.cos(Math.asin(i/width))));case'cool':return Math.round(width*(1+Math.cos(Math.asin(i/width))));case'sharp':return width-i;case'bite':return Math.round(width*(Math.cos(Math.asin((width-i-1)/width))));case'slide':return Math.round(width*(Math.atan2(i,width/i)));case'jut':return Math.round(width*(Math.atan2(width,(width-i-1))));case'curl':return Math.round(width*(Math.atan(i)));case'tear':return Math.round(width*(Math.cos(i)));case'wicked':return Math.round(width*(Math.tan(i)));case'long':return Math.round(width*(Math.sqrt(i)));case'sculpt':return Math.round(width*(Math.log((width-i-1),width)));case'dogfold':case'dog':return(i&1)?(i+1):width;case'dog2':return(i&2)?(i+1):width;case'dog3':return(i&3)?(i+1):width;case'fray':return(i%2)*width;case'notch':return width;case'bevelfold':case'bevel':return i+1;case'steep':return i/2+1;case'invsteep':return(width-i)/2+1}};$.fn.corner=function(options){if(this.length==0){if(!$.isReady&&this.selector){var s=this.selector,c=this.context;$(function(){$(s,c).corner(options)})}return this}return this.each(function(index){var $this=$(this),o=[$this.attr($.fn.corner.defaults.metaAttr)||'',options||''].join(' ').toLowerCase(),keep=/keep/.test(o),cc=((o.match(/cc:(#[0-9a-f]+)/)||[])[1]),sc=((o.match(/sc:(#[0-9a-f]+)/)||[])[1]),width=parseInt((o.match(/(\d+)px/)||[])[1])||10,re=/round|bevelfold|bevel|notch|bite|cool|sharp|slide|jut|curl|tear|fray|wicked|sculpt|long|dog3|dog2|dogfold|dog|invsteep|steep/,fx=((o.match(re)||['round'])[0]),fold=/dogfold|bevelfold/.test(o),edges={T:0,B:1},opts={TL:/top|tl|left/.test(o),TR:/top|tr|right/.test(o),BL:/bottom|bl|left/.test(o),BR:/bottom|br|right/.test(o)},strip,pad,cssHeight,j,bot,d,ds,bw,i,w,e,c,common,$horz;if(!opts.TL&&!opts.TR&&!opts.BL&&!opts.BR)opts={TL:1,TR:1,BL:1,BR:1};if($.fn.corner.defaults.useNative&&fx=='round'&&(radius||moz||webkit)&&!cc&&!sc){if(opts.TL)$this.css(radius?'border-top-left-radius':moz?'-moz-border-radius-topleft':'-webkit-border-top-left-radius',width+'px');if(opts.TR)$this.css(radius?'border-top-right-radius':moz?'-moz-border-radius-topright':'-webkit-border-top-right-radius',width+'px');if(opts.BL)$this.css(radius?'border-bottom-left-radius':moz?'-moz-border-radius-bottomleft':'-webkit-border-bottom-left-radius',width+'px');if(opts.BR)$this.css(radius?'border-bottom-right-radius':moz?'-moz-border-radius-bottomright':'-webkit-border-bottom-right-radius',width+'px');return}strip=document.createElement('div');$(strip).css({overflow:'hidden',height:'1px',minHeight:'1px',fontSize:'1px',backgroundColor:sc||'transparent',borderStyle:'solid'});pad={T:parseInt($.css(this,'paddingTop'))||0,R:parseInt($.css(this,'paddingRight'))||0,B:parseInt($.css(this,'paddingBottom'))||0,L:parseInt($.css(this,'paddingLeft'))||0};if(typeof this.style.zoom!=undefined)this.style.zoom=1;if(!keep)this.style.border='none';strip.style.borderColor=cc||gpc(this.parentNode);cssHeight=$(this).outerHeight();for(j in edges){bot=edges[j];if((bot&&(opts.BL||opts.BR))||(!bot&&(opts.TL||opts.TR))){strip.style.borderStyle='none '+(opts[j+'R']?'solid':'none')+' none '+(opts[j+'L']?'solid':'none');d=document.createElement('div');$(d).addClass('jquery-corner');ds=d.style;bot?this.appendChild(d):this.insertBefore(d,this.firstChild);if(bot&&cssHeight!='auto'){if($.css(this,'position')=='static')this.style.position='relative';ds.position='absolute';ds.bottom=ds.left=ds.padding=ds.margin='0';if(expr)ds.setExpression('width','this.parentNode.offsetWidth');else ds.width='100%'}else if(!bot&&$.browser.msie){if($.css(this,'position')=='static')this.style.position='relative';ds.position='absolute';ds.top=ds.left=ds.right=ds.padding=ds.margin='0';if(expr){bw=sz(this,'borderLeftWidth')+sz(this,'borderRightWidth');ds.setExpression('width','this.parentNode.offsetWidth - '+bw+'+ "px"')}else ds.width='100%'}else{ds.position='relative';ds.margin=!bot?'-'+pad.T+'px -'+pad.R+'px '+(pad.T-width)+'px -'+pad.L+'px':(pad.B-width)+'px -'+pad.R+'px -'+pad.B+'px -'+pad.L+'px'}for(i=0;i<width;i++){w=Math.max(0,getWidth(fx,i,width));e=strip.cloneNode(false);e.style.borderWidth='0 '+(opts[j+'R']?w:0)+'px 0 '+(opts[j+'L']?w:0)+'px';bot?d.appendChild(e):d.insertBefore(e,d.firstChild)}if(fold&&$.support.boxModel){if(bot&&noBottomFold)continue;for(c in opts){if(!opts[c])continue;if(bot&&(c=='TL'||c=='TR'))continue;if(!bot&&(c=='BL'||c=='BR'))continue;common={position:'absolute',border:'none',margin:0,padding:0,overflow:'hidden',backgroundColor:strip.style.borderColor};$horz=$('<div/>').css(common).css({width:width+'px',height:'1px'});switch(c){case'TL':$horz.css({bottom:0,left:0});break;case'TR':$horz.css({bottom:0,right:0});break;case'BL':$horz.css({top:0,left:0});break;case'BR':$horz.css({top:0,right:0});break}d.appendChild($horz[0]);var $vert=$('<div/>').css(common).css({top:0,bottom:0,width:'1px',height:width+'px'});switch(c){case'TL':$vert.css({left:width});break;case'TR':$vert.css({right:width});break;case'BL':$vert.css({left:width});break;case'BR':$vert.css({right:width});break}d.appendChild($vert[0])}}}}})};$.fn.uncorner=function(){if(radius||moz||webkit)this.css(radius?'border-radius':moz?'-moz-border-radius':'-webkit-border-radius',0);$('div.jquery-corner',this).remove();return this};$.fn.corner.defaults={useNative:true,metaAttr:'data-corner'}})(jQuery);

var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2009 by Andy Chung. All rights reserved.
 * 
 * Trademark:
 * Neighbourhood is a trademark of Andy Chung.
 * 
 * Description:
 * Copyright (c) 2009 by Andy Chung. All rights reserved.
 * 
 * Manufacturer:
 * Andy Chung
 */
Cufon.registerFont({"w":462,"face":{"font-family":"Neighbourhood","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"750","descent":"-250","x-height":"7","bbox":"-33.0763 -752.382 710.111 189","underline-thickness":"50","underline-position":"-50","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":203},"!":{"d":"87,0v28,-4,77,13,81,-16v-4,-28,13,-77,-16,-81v-28,4,-77,-13,-81,16v4,28,-13,77,16,81xm103,-650v21,1,49,-6,49,16r0,455v0,22,-28,17,-49,17v-9,0,-16,-8,-16,-17r0,-455v0,-9,7,-16,16,-16","w":239},"\"":{"d":"111,-465v0,22,-28,17,-49,17v-9,0,-16,-8,-16,-17r0,-169v0,-21,28,-15,49,-16v9,0,16,7,16,16r0,169xm234,-465v0,21,-27,17,-48,17v-9,0,-17,-8,-17,-17r0,-169v0,-21,28,-16,49,-16v9,0,16,7,16,16r0,169","w":280},"#":{"d":"585,-471v-1,21,5,49,-16,49r-116,0r-27,195r111,0v21,0,15,28,16,48v0,9,-7,17,-16,17r-121,0r-21,146v-2,21,-29,16,-51,16v-9,0,-16,-7,-14,-16r21,-146r-130,0r-21,146v-2,21,-29,16,-51,16v-9,0,-16,-7,-14,-16r21,-146r-107,0v-21,0,-16,-28,-16,-49v0,-9,7,-16,16,-16r116,0r28,-195r-111,0v-21,0,-17,-28,-17,-49v0,-9,8,-16,17,-16r120,0r21,-147v3,-20,30,-16,52,-16v9,0,15,7,14,16r-21,147r129,0r21,-147v3,-20,30,-16,52,-16v9,0,15,7,14,16r-21,147r106,0v9,0,16,7,16,16xm360,-227r28,-195r-130,0r-27,195r129,0","w":617},"$":{"d":"385,-189v0,95,-56,149,-148,156v-2,30,13,73,-32,66v-25,-4,-13,-42,-16,-66v-90,-5,-145,-54,-151,-140v-1,-21,28,-16,48,-16v9,0,16,7,17,16v3,37,20,69,86,75r0,-209v-61,-37,-143,-57,-143,-154v0,-96,48,-149,143,-156v2,-30,-13,-71,32,-65v26,4,13,42,16,66v87,7,134,54,139,139v1,21,-28,16,-48,16v-9,0,-16,-7,-17,-16v-3,-42,-19,-68,-74,-74r0,197v64,39,148,62,148,165xm111,-461v0,65,45,54,78,80r0,-170v-65,5,-78,38,-78,90xm237,-99v72,-7,83,-47,83,-90v10,-34,-44,-72,-83,-90r0,180","w":424},"%":{"d":"421,-642v10,-19,39,-13,66,-14v9,0,13,6,8,14r-346,634v-9,20,-38,15,-65,15v-9,0,-13,-7,-9,-15xm522,-81v9,0,17,-7,17,-16r0,-130v0,-9,-8,-17,-17,-17r-130,0v-9,0,-16,8,-16,17r0,130v0,9,7,16,16,16r130,0xm181,-406v9,0,16,-7,16,-16r0,-130v0,-9,-7,-17,-16,-17r-130,0v-9,0,-16,8,-16,17r0,130v0,9,7,16,16,16r130,0","w":577},"&":{"d":"220,-591v-69,0,-96,15,-97,81v0,41,9,58,25,77r209,257v30,-38,78,-64,130,-68v21,-2,15,28,16,48v0,9,-7,16,-16,17v-37,5,-70,26,-88,55v27,25,27,60,88,59v21,0,15,28,16,49v0,16,-16,17,-33,16v-59,-3,-82,-33,-103,-61v-29,40,-83,69,-150,68v-111,-2,-169,-89,-169,-215v0,-69,29,-125,72,-156v-32,-38,-64,-80,-62,-146v3,-101,57,-146,162,-146v117,0,170,56,163,178v-1,21,-28,17,-49,17v-21,0,-16,-28,-16,-49v-1,-66,-29,-81,-98,-81xm217,-58v53,0,91,-21,106,-57r-162,-198v-29,12,-48,70,-48,138v0,86,54,117,104,117","w":533},"'":{"d":"111,-465v0,22,-28,17,-49,17v-9,0,-16,-8,-16,-17r0,-169v0,-21,28,-15,49,-16v9,0,16,7,16,16r0,169","w":157},"(":{"d":"111,-299v0,123,12,190,12,193v1,1,19,108,105,211v17,20,-16,34,-25,45v-5,6,-17,6,-23,-1v-100,-113,-119,-233,-121,-246v-1,-9,-13,-79,-13,-202v0,-123,12,-193,13,-202v2,-13,21,-133,121,-246v21,-16,35,14,47,21v6,6,7,17,1,23v-90,102,-104,210,-105,213v0,1,-12,69,-12,191","w":263,"k":{"y":9,"x":7,"w":11,"v":9,"t":16,"r":13,"q":20,"p":12,"m":13,"k":7,"j":-25,"h":7,"g":6,"f":15,"d":18,"b":7,"R":8,"Q":16,"P":8,"M":8,"K":8,"J":12,"H":8,"G":16,"F":8,"B":8,"9":12,"8":13,"6":15,"5":9,"4":8,"3":11,"2":6,"0":17,"A":5,"a":16,"c":20,"e":20,"o":20,"C":16,"D":8,"E":8,"L":8,"N":8,"O":16,"S":11,"U":9,"i":13,"l":9,"n":13,"s":17,"u":16,"z":8}},")":{"d":"152,-299v0,-122,-12,-190,-12,-191v-1,-3,-18,-109,-105,-213v-16,-20,16,-34,25,-45v6,-6,17,-6,22,1v101,113,120,233,122,246v1,9,13,79,13,202v0,123,-12,193,-13,202v-2,13,-19,136,-122,246v-18,19,-34,-14,-46,-21v-6,-6,-7,-16,-1,-23v89,-101,104,-210,104,-211v1,-3,13,-70,13,-193","w":263},"*":{"d":"334,-553v4,18,23,44,-1,51r-104,29r67,85v13,22,-19,31,-29,42v-8,5,-18,3,-22,-4r-61,-91r-60,91v-18,18,-35,-9,-48,-16v-8,-5,-9,-15,-3,-22r67,-85r-105,-29v-21,-9,-4,-34,0,-51v3,-9,12,-13,20,-10r102,38r-5,-109v0,-21,28,-15,49,-16v9,0,16,7,15,16r-4,109r102,-38v8,-3,17,1,20,10","w":369,"k":{"q":5,"d":5,"J":27,"A":16,"a":5,"c":5,"e":5,"o":5,"Z":5}},"+":{"d":"469,-309v21,0,16,28,16,49v0,9,-7,16,-16,16r-179,0r0,195v0,22,-28,17,-49,17v-9,0,-16,-8,-16,-17r0,-195r-179,0v-21,0,-15,-28,-16,-48v0,-9,7,-17,16,-17r179,0r0,-195v0,-21,28,-15,49,-16v9,0,16,7,16,16r0,195r179,0","w":515,"k":{"7":14,"3":18,"2":9,"1":13}},",":{"d":"56,114v-12,0,-12,-32,0,-34v14,-4,41,-20,41,-80v-21,-1,-51,5,-49,-16v2,-28,-13,-77,16,-81v28,4,81,-13,81,16r0,81v0,0,0,114,-89,114","w":193,"k":{"\u201c":69,"\u2018":76,"9":5,"8":6,"6":8,"5":5,"4":14,"0":9,"\"":71,"'":71}},"-":{"d":"333,-244r-258,0v-21,0,-15,-28,-16,-48v0,-9,7,-17,16,-17r258,0v21,0,16,28,16,49v0,9,-7,16,-16,16","w":408,"k":{"9":12,"8":7,"7":20,"5":8,"3":30,"2":23,"1":19,"A":8,"J":29,"D":9,"E":9,"L":9,"N":9,"S":31,"U":7,"z":15,"Z":24,"B":9,"F":9,"H":9,"I":17,"K":9,"M":9,"P":9,"R":9,"T":27,"V":15,"W":11,"X":26,"Y":25,"x":7}},".":{"d":"145,-16v-3,29,-53,12,-81,16v-29,-3,-12,-53,-16,-81v3,-29,53,-12,81,-16v29,3,12,53,16,81","w":193,"k":{"\u201c":69,"\u2018":76,"w":5,"v":8,"t":5,"W":15,"V":24,"T":23,"R":5,"Q":9,"P":5,"M":5,"K":5,"H":5,"G":9,"F":5,"B":5,"9":5,"8":6,"6":8,"5":5,"4":14,"0":9,"C":9,"D":5,"E":5,"L":5,"N":5,"O":9,"U":12,"\"":71,"'":71,"Y":27,"y":8}},"\/":{"d":"318,-642v8,-20,36,-15,62,-15v9,0,13,7,10,15r-288,634v-9,19,-37,13,-62,14v-9,0,-13,-6,-10,-14","w":422,"k":{"x":10,"w":8,"v":6,"t":7,"r":19,"q":30,"p":19,"m":19,"j":8,"g":29,"f":8,"d":30,"R":5,"Q":12,"P":5,"M":5,"K":5,"J":28,"H":5,"G":12,"F":5,"B":5,"9":6,"8":8,"6":11,"5":5,"4":33,"3":6,"2":6,"0":12,"A":32,"a":29,"c":30,"e":30,"o":30,"C":12,"D":5,"E":5,"L":5,"N":5,"O":12,"S":6,"i":7,"n":19,"s":27,"u":17,"z":10,"y":6}},"0":{"d":"256,-656v111,0,187,91,201,196v0,6,19,137,0,270v-15,106,-90,197,-201,197v-112,0,-187,-91,-202,-197v-19,-133,0,-264,0,-270v15,-106,89,-196,202,-196xm119,-450v-1,1,-20,127,0,250r3,18r237,-355v-74,-101,-229,-50,-240,87xm392,-200v16,-145,3,-239,-3,-266r-236,354v76,101,224,49,239,-88","w":513,"k":{"]":14,")":16,"7":4}},"1":{"d":"129,-634v3,-23,66,-26,66,0r0,569r82,0v21,0,15,28,16,49v0,9,-7,16,-16,16r-228,0v-21,0,-15,-28,-16,-49v6,-31,65,-10,97,-16r0,-451v-22,16,-49,26,-81,28v-21,1,-16,-28,-16,-48v0,-9,7,-16,16,-17v45,-3,75,-39,80,-81","w":306,"k":[3]},"2":{"d":"226,-656v121,0,179,51,179,169v0,75,-60,133,-69,141v-73,75,-223,169,-233,281r292,0v22,0,17,28,17,49v0,9,-8,16,-17,16r-341,0v-26,-1,-16,-41,-16,-65v0,-63,40,-134,108,-196r146,-133v14,-13,48,-55,48,-93v-1,-84,-29,-104,-114,-104v-84,0,-113,21,-113,104v0,21,-28,16,-49,16v-9,0,-16,-7,-16,-16v0,-118,58,-169,178,-169","w":448,"k":{")":6,"4":14}},"3":{"d":"405,-484v2,54,-21,127,-67,148v44,28,74,79,74,145v1,124,-67,199,-189,198v-124,-1,-185,-53,-185,-176v0,-21,28,-15,49,-16v9,0,16,7,16,16v0,73,19,111,120,111v89,0,123,-45,124,-134v0,-47,-21,-80,-63,-100v-32,-15,-65,-17,-68,-17v-20,0,-16,-28,-16,-48v0,-9,8,-17,17,-17v114,0,123,-50,123,-110v0,-70,-18,-107,-114,-107v-84,0,-113,21,-113,104v0,21,-28,16,-49,16v-9,0,-16,-7,-16,-16v0,-118,58,-169,178,-169v122,-1,176,54,179,172","w":460,"k":{"]":10,")":13}},"4":{"d":"375,-439r0,228r82,0v21,0,15,28,16,49v0,9,-7,16,-16,16r-82,0r0,130v0,21,-28,15,-48,16v-9,0,-17,-7,-17,-16r0,-130r-276,0v-28,-4,-20,-66,-7,-88v43,-71,135,-221,185,-400v6,-20,31,-16,55,-16v9,0,14,7,12,16v-53,185,-116,303,-189,423r220,0r0,-228v0,-21,28,-16,49,-16v9,0,16,7,16,16","w":487,"k":{"]":12,")":15,"1":14,"9":4}},"5":{"d":"361,-208v0,-93,-38,-150,-130,-149v-46,0,-78,19,-113,42v6,32,-25,25,-50,23v-9,0,-16,-8,-15,-17r19,-325v1,-9,9,-16,18,-16r287,0v21,0,15,28,16,49v0,9,-7,16,-16,16r-242,0r-12,191v30,-16,64,-28,108,-28v86,0,130,38,155,70v52,67,52,221,0,288v-25,32,-69,71,-155,71v-101,0,-179,-58,-188,-147v-2,-21,28,-15,48,-16v9,0,16,7,18,16v7,41,41,82,122,82v91,0,130,-57,130,-150","k":{")":8,"1":3}},"6":{"d":"251,-422v86,0,130,38,155,70v52,67,52,221,0,288v-25,32,-69,71,-155,71v-118,0,-186,-79,-195,-193v-13,-156,-1,-266,0,-273v10,-115,84,-196,204,-197v95,0,154,42,162,113v2,22,-27,17,-48,17v-9,0,-16,-8,-18,-17v-4,-20,-22,-48,-96,-48v-46,0,-126,18,-140,140v0,0,-3,27,-4,73v34,-29,80,-44,135,-44xm251,-58v91,0,130,-57,130,-150v0,-93,-38,-149,-130,-149v-99,0,-142,65,-130,166v10,88,51,133,130,133","w":483,"k":{"]":9,")":12}},"7":{"d":"67,-16v-18,-196,128,-317,208,-440v1,-1,52,-61,52,-129r-293,0v-21,0,-15,-28,-16,-49v0,-9,7,-16,16,-16r341,0v26,1,17,40,17,65v0,88,-59,159,-66,170v-73,113,-194,217,-194,399v0,21,-28,16,-49,16v-9,0,-16,-7,-16,-16","w":409,"k":{"4":40}},"8":{"d":"373,-340v46,30,74,87,74,156v0,127,-73,191,-200,191v-127,0,-200,-64,-200,-191v0,-69,28,-126,74,-156v-42,-29,-67,-76,-66,-144v1,-119,68,-172,192,-172v124,0,192,53,192,172v0,74,-27,118,-66,144xm247,-591v-88,0,-127,23,-127,107v0,84,39,110,127,110v87,0,127,-26,127,-110v0,-85,-40,-107,-127,-107xm247,-309v-85,0,-135,55,-135,125v0,88,40,126,135,126v95,0,135,-38,135,-126v0,-26,-5,-63,-29,-89v-23,-24,-58,-36,-106,-36","w":494,"k":{"]":10,")":13}},"9":{"d":"428,-191v-11,116,-85,198,-205,198v-95,0,-154,-43,-161,-114v-2,-21,27,-15,47,-16v9,0,16,7,18,16v4,20,22,49,96,49v47,0,128,-20,140,-141v0,0,3,-27,5,-73v-34,29,-80,45,-135,45v-86,0,-131,-40,-155,-71v-52,-68,-52,-221,0,-288v24,-31,69,-70,155,-70v116,0,185,79,194,192v12,156,1,266,1,273xm233,-591v-92,0,-130,55,-130,149v0,94,39,150,130,150v91,1,135,-55,131,-145v-4,-96,-45,-154,-131,-154","w":483,"k":{"]":12,")":15,"7":3}},":":{"d":"166,-16v-3,29,-53,12,-81,16v-29,-3,-12,-53,-16,-81v3,-29,53,-12,81,-16v29,3,12,53,16,81xm166,-399v-3,29,-53,12,-81,16v-29,-3,-12,-53,-16,-81v3,-29,53,-12,81,-16v29,3,12,53,16,81","w":235},";":{"d":"77,114v-12,0,-12,-32,0,-34v14,-4,41,-20,41,-80v-21,-1,-51,5,-49,-16v2,-28,-13,-77,16,-81v28,4,81,-13,81,16r0,81v0,0,0,114,-89,114xm166,-399v-3,29,-53,12,-81,16v-29,-3,-12,-53,-16,-81v3,-29,53,-12,81,-16v29,3,12,53,16,81","w":235},"?":{"d":"293,-487v0,-71,-29,-105,-101,-104v-63,0,-92,28,-97,87v-1,21,-27,17,-49,17v-9,0,-17,-8,-16,-17v6,-98,65,-152,165,-152v104,0,163,61,163,169v0,4,-1,101,-98,172v-57,41,-58,97,-58,97v-1,22,6,56,-16,56v-21,0,-49,5,-49,-17r0,-39v0,-3,1,-88,85,-149v69,-51,71,-120,71,-120xm218,-16v-3,29,-53,12,-81,16v-29,-3,-12,-53,-16,-81v3,-29,53,-12,81,-16v29,3,12,53,16,81","w":391},"@":{"d":"491,-197v3,17,10,39,43,38v19,0,33,-5,42,-14v16,-16,17,-41,17,-41r0,-176v0,-2,-2,-51,-33,-99v-41,-64,-113,-96,-214,-96v-96,0,-167,34,-203,104v-57,112,-22,145,-31,268v0,2,2,55,31,109v49,92,152,111,291,104v21,-1,15,28,16,49v0,9,-7,16,-16,16r-88,0v-153,0,-230,-75,-261,-140v-67,-138,-29,-155,-38,-297v0,-3,1,-70,38,-138v34,-64,108,-140,261,-140v158,0,234,70,271,129v40,64,41,128,41,131r0,176v0,5,-1,52,-36,87v-15,15,-42,33,-88,33v-39,0,-70,-16,-89,-44v-77,72,-235,56,-235,-73v0,-38,15,-88,84,-108r116,-33v3,-1,16,-6,16,-17v-3,-61,-14,-49,-69,-56v-47,4,-63,-1,-69,40v-3,21,-28,16,-49,16v-9,0,-17,-7,-16,-16v3,-63,51,-105,134,-105v48,0,81,9,103,30v28,27,31,65,31,91r0,172xm382,-173v39,-20,47,-59,44,-116r-114,33v-64,13,-41,106,19,96v1,0,27,-1,51,-13","w":703,"k":{"T":7}},"A":{"d":"25,-85r161,-549v12,-29,66,-16,102,-16v9,0,18,7,21,16r161,549v7,19,5,44,5,69v0,21,-28,16,-49,16v-24,0,-9,-38,-16,-60r-40,-135r-245,0r-40,135v-2,23,8,60,-16,60v-21,0,-49,6,-49,-16v0,-25,-1,-49,5,-69xm256,-585r-17,0r-95,325r207,0","w":495,"k":{"\"":12,"'":12,"T":38,"V":20,"W":9,"Y":36,"y":7,"*":16,"-":8,"\u2013":8,"\u2014":8,"?":8,"\\":32,"f":3,"j":3,"t":6,"v":7,"w":3,"\u2019":10,"\u201d":10}},"B":{"d":"460,-182v0,131,-100,182,-182,182r-192,0v-9,0,-16,-7,-16,-16r0,-618v0,-9,7,-16,16,-16r184,0v5,0,45,1,86,21v54,26,89,79,90,155v0,63,-27,111,-66,139v39,24,80,69,80,153xm135,-585r0,221v79,-5,126,14,194,-15v70,-29,69,-161,0,-191v-71,-30,-113,-9,-194,-15xm340,-81v74,-31,73,-173,-2,-203v-74,-30,-118,-8,-203,-15r0,234v84,-6,131,15,205,-16","w":504,"k":{"]":13,"\\":10,"\/":7,",":6,")":15,".":6,"\u2026":6,"T":3,"-":7,"\u2013":7,"\u2014":7}},"C":{"d":"122,-193v14,85,65,135,140,135v63,0,118,-44,126,-98v3,-21,29,-15,50,-16v9,0,16,7,15,16v-7,88,-96,164,-191,163v-115,-1,-188,-84,-204,-190v-21,-141,-1,-278,0,-283v15,-108,87,-188,204,-190v95,-1,184,74,191,162v2,21,-28,15,-48,16v-9,0,-16,-7,-17,-16v-9,-54,-63,-97,-126,-97v-75,0,-126,49,-140,135v0,1,-20,133,0,263","w":490,"k":{".":5,"\u2026":5,"\/":6,"-":32,"\u2013":32,"\u2014":32,"\\":6,")":12,",":5,"]":10}},"D":{"d":"393,-50v-70,64,-184,48,-307,50v-9,0,-16,-7,-16,-16r0,-618v0,-9,7,-16,16,-16v123,2,239,-14,308,50v38,35,66,82,75,140v1,6,21,137,0,270v-9,58,-37,104,-76,140xm135,-585r0,520r114,0v83,0,143,-52,156,-135v19,-123,0,-249,0,-250v-13,-84,-72,-135,-156,-135r-114,0","w":524,"k":{".":10,"\u2026":10,"\/":13,"Z":3,"I":6,"T":6,"X":3,"Y":3,"\\":13,")":17,",":10,"]":14}},"E":{"d":"427,-634v-1,21,6,49,-16,49r-276,0r0,211r244,0v21,0,16,28,16,49v0,9,-7,16,-16,16r-244,0r0,244r276,0v21,0,15,28,16,49v0,9,-7,16,-16,16r-325,0v-9,0,-16,-7,-16,-16r0,-618v0,-9,7,-16,16,-16r325,0v9,0,16,7,16,16","w":469,"k":{"c":3,"d":3,"e":3,"o":3,"q":3,"i":7,"u":4,"y":5,"*":5,"-":15,"\u2013":15,"\u2014":15,"f":6,"j":8,"t":9,"v":5,"w":5}},"F":{"d":"395,-650v21,0,15,28,16,49v0,9,-7,16,-16,16r-260,0r0,211r227,0v21,0,17,28,17,49v0,9,-8,16,-17,16r-227,0r0,293v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-618v0,-9,7,-16,16,-16r309,0","w":432,"k":{";":13,":":13,"\/":31,",":40,".":40,"\u2026":40,"A":15,"J":22,"a":11,"c":3,"d":3,"e":3,"g":3,"o":3,"q":3,"i":4,"n":7,"s":3,"u":5,"z":47,"x":9,"-":9,"\u2013":9,"\u2014":9,"f":5,"j":5,"t":4,"w":3,"m":7,"p":7,"r":7}},"G":{"d":"454,-172v1,95,-93,181,-192,179v-115,-2,-188,-84,-204,-190v-21,-141,-1,-278,0,-283v15,-108,87,-188,204,-190v95,-1,184,74,191,162v2,21,-28,15,-48,16v-9,0,-16,-7,-17,-16v-9,-54,-63,-97,-126,-97v-75,0,-126,49,-140,135v0,1,-20,133,0,263v14,85,65,135,140,135v69,0,127,-53,127,-114r0,-55v-33,-5,-91,15,-98,-17v0,-21,-5,-48,17,-48r195,0v21,0,16,28,16,48v0,26,-40,15,-65,17r0,55","w":538,"k":{"]":14,"\\":19,"?":5,";":12,":":12,"\/":13,",":11,"*":5,")":18,".":11,"\u2026":11,"S":3,"z":9,"Z":6,"\"":6,"'":6,"I":8,"T":16,"V":4,"X":6,"Y":9,"x":6,"\u2019":7,"\u201d":7}},"H":{"d":"411,-634v0,-21,28,-15,49,-16v9,0,16,7,16,16r0,618v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-293r-276,0r0,293v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-618v0,-21,28,-15,49,-16v9,0,16,7,16,16r0,260r276,0r0,-260","w":546,"k":{"\\":5,"\/":5,",":5,")":8,".":5,"\u2026":5,"-":9,"\u2013":9,"\u2014":9}},"I":{"d":"288,-634v-1,21,6,49,-16,49r-82,0r0,520r82,0v21,0,15,28,16,49v0,9,-7,16,-16,16r-228,0v-21,0,-15,-28,-16,-49v6,-31,65,-10,97,-16r0,-520r-81,0v-21,0,-15,-28,-16,-49v0,-9,7,-16,16,-16r228,0v9,0,16,7,16,16","w":316,"k":{"c":8,"d":8,"e":8,"o":8,"q":8,"C":5,"O":5,"i":6,"u":10,"y":11,"-":17,"\u2013":17,"\u2014":17,"f":4,"j":6,"t":9,"v":11,"w":12,"G":5,"Q":5}},"J":{"d":"170,7v-94,2,-152,-68,-161,-147v-2,-21,28,-16,48,-16v25,0,16,32,30,52v25,63,143,60,168,-1v11,-26,13,-51,13,-51r0,-429r-114,0v-21,0,-15,-28,-16,-49v0,-9,7,-16,16,-16r163,0v9,0,16,7,16,16r0,478v0,4,-1,41,-20,80v-24,50,-73,81,-143,83","w":400,"k":{"]":5,"\/":11,",":10,")":10,".":10,"\u2026":10,"-":9,"\u2013":9,"\u2014":9}},"K":{"d":"455,-622r-180,228r186,306v12,18,9,44,9,72v0,21,-28,16,-49,16v-23,0,-14,-34,-16,-56r-173,-283r-97,123r0,200v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-618v0,-21,28,-15,49,-16v9,0,16,7,16,16r0,313r249,-316v12,-16,35,-13,60,-13v17,0,20,16,11,28","w":492,"k":{"C":3,"O":3,"i":4,"u":3,"y":16,"-":18,"\u2013":18,"\u2014":18,"f":5,"j":7,"t":12,"v":16,"w":12,"G":3,"Q":3}},"L":{"d":"411,0r-325,0v-9,0,-16,-7,-16,-16r0,-618v0,-21,28,-15,49,-16v9,0,16,7,16,16r0,569r276,0v21,0,15,28,16,49v0,9,-7,16,-16,16","w":432,"k":{"C":4,"O":4,"U":6,"i":4,"\"":35,"'":35,"T":68,"V":47,"W":20,"Y":84,"y":18,"*":40,"-":39,"\u2013":39,"\u2014":39,"?":10,"\\":46,"f":5,"j":5,"t":20,"v":18,"w":6,"\u2019":34,"\u201d":34,"G":4,"Q":4}},"M":{"d":"622,-16v0,21,-28,15,-48,16v-9,0,-17,-7,-17,-16r0,-569r-8,0r-158,505v-6,22,-43,13,-69,15v-9,0,-18,-7,-21,-15r-157,-505r-9,0r0,569v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-618v0,-9,7,-16,16,-16v38,0,100,-15,110,16r150,480r150,-480v13,-31,72,-16,110,-16v9,0,16,7,16,16r0,618","w":692,"k":{"\\":5,"\/":5,",":5,")":8,".":5,"\u2026":5,"-":9,"\u2013":9,"\u2014":9}},"N":{"d":"476,0v-38,0,-98,14,-109,-15r-222,-570r-10,0r0,569v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-618v0,-9,7,-16,16,-16v39,0,98,-15,110,15r221,570r10,0r0,-569v0,-21,28,-16,49,-16v9,0,16,7,16,16r0,618v0,9,-7,16,-16,16","w":562,"k":{".":5,"\u2026":5,"\/":5,"-":9,"\u2013":9,"\u2014":9,"\\":5,")":8,",":5}},"O":{"d":"261,-656v116,0,190,83,205,190v1,5,21,142,0,283v-16,106,-89,189,-205,190v-115,0,-188,-84,-204,-190v-21,-141,-1,-278,0,-283v15,-108,87,-190,204,-190xm401,-193v21,-131,1,-262,0,-263v-13,-86,-64,-135,-140,-135v-75,0,-126,49,-140,135v0,1,-20,133,0,263v14,85,65,135,140,135v76,0,127,-50,140,-135","w":523,"k":{".":9,"\u2026":9,"\/":12,"Z":3,"I":5,"T":5,"\\":12,")":16,",":9,"]":13}},"P":{"d":"70,-634v0,-9,7,-16,16,-16r172,0v2,0,49,0,96,24v46,23,100,71,100,171v0,87,-48,148,-116,173v-105,39,-108,19,-203,23r0,243v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-618xm314,-343v97,-32,99,-188,11,-225v-75,-32,-107,-11,-190,-17r0,261v83,-4,93,10,179,-19","w":476,"k":{"]":9,"\/":37,",":44,")":14,".":44,"\u2026":44,"A":18,"J":35,"Z":4,"I":3,"-":12,"\u2013":12,"\u2014":12}},"Q":{"d":"492,0v-26,2,-92,-13,-110,-31v-71,56,-194,49,-256,-13v-35,-34,-59,-82,-68,-139v-22,-141,-1,-278,0,-283v15,-108,87,-190,204,-190v116,0,190,83,205,190v1,5,22,142,0,283v-7,39,-20,75,-39,104v25,12,45,14,64,14v21,0,15,28,16,49v0,9,-7,16,-16,16xm122,-456v0,1,-20,133,0,263r4,19v48,-37,105,-37,115,-37v6,0,35,0,68,12v33,13,59,33,78,60v38,-74,20,-331,15,-317v-13,-86,-64,-135,-140,-135v-75,0,-126,49,-140,135xm154,-111v37,57,133,71,190,27v-33,-64,-92,-62,-107,-62v-3,0,-52,0,-83,35","w":540,"k":{"\\":18,")":6,"\"":5,"'":5,"T":11,"V":4,"Y":7,"-":8,"\u2013":8,"\u2014":8}},"R":{"d":"471,-465v0,120,-62,157,-138,179r125,198v12,17,9,45,9,72v0,21,-28,16,-49,16v-23,0,-14,-34,-16,-56r-142,-223r-125,0r0,263v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-617v0,-9,7,-17,16,-17r200,0v5,0,47,1,91,23v43,21,94,67,94,162xm135,-585r0,241v88,-6,138,16,214,-17v76,-33,76,-176,-1,-208v-78,-32,-125,-9,-213,-16","w":513,"k":{"]":6,"\\":7,")":8,"-":20,"\u2013":20,"\u2014":20}},"S":{"d":"47,-481v0,-118,64,-175,185,-175v117,0,179,51,185,159v1,21,-28,16,-48,16v-9,0,-16,-7,-17,-16v-3,-59,-28,-94,-120,-94v-100,0,-120,42,-120,110v0,44,38,64,44,68v80,49,190,90,245,159v19,23,26,52,26,85v0,118,-73,176,-195,176v-116,0,-187,-53,-194,-160v-1,-21,28,-16,48,-16v9,0,16,7,17,16v4,49,26,95,129,95v115,0,130,-56,130,-111v0,-33,-9,-58,-64,-89r-172,-97v-15,-7,-79,-45,-79,-126","w":466,"k":{"\/":5,"-":10,"\u2013":10,"\u2014":10,"\\":7,")":12,"]":9}},"T":{"d":"22,-650r390,0v21,0,15,28,16,49v0,9,-7,16,-16,16r-162,0r0,569v0,21,-28,16,-49,16v-9,0,-16,-7,-16,-16r0,-569r-163,0v-21,0,-15,-28,-16,-49v0,-9,7,-16,16,-16","w":434,"k":{"@":7,";":23,":":23,"\/":37,",":23,".":23,"\u2026":23,"A":38,"J":28,"a":59,"c":64,"d":64,"e":64,"g":62,"o":64,"q":64,"C":5,"O":5,"n":56,"s":47,"u":44,"z":29,"T":-14,"Y":-8,"x":29,"y":23,"-":27,"\u2013":27,"\u2014":27,"f":4,"v":23,"w":29,"m":56,"p":56,"r":56,"G":5,"Q":5}},"U":{"d":"273,-58v111,0,146,-76,146,-195r0,-381v0,-21,28,-16,49,-16v9,0,16,7,16,16r0,381v0,214,-114,260,-211,260v-96,0,-211,-46,-211,-260r0,-381v0,-21,28,-15,49,-16v9,0,16,7,16,16r0,381v0,119,35,195,146,195","w":546,"k":{".":12,"\u2026":12,"\/":15,"-":7,"\u2013":7,"\u2014":7,")":9,",":12}},"V":{"d":"324,-15v-12,27,-66,15,-101,15v-9,0,-19,-7,-21,-15r-178,-549v-7,-20,-5,-45,-5,-70v0,-21,28,-16,49,-16v24,0,14,37,16,60r170,525r18,0r169,-525v2,-24,-8,-60,17,-60v20,1,48,-5,48,16v0,26,2,50,-5,70","w":525,"k":{";":6,":":6,"\/":34,",":24,".":24,"\u2026":24,"A":19,"J":24,"a":15,"c":17,"d":17,"e":17,"g":15,"o":17,"q":17,"n":8,"s":10,"u":6,"-":15,"\u2013":15,"\u2014":15,"m":8,"p":8,"r":7}},"W":{"d":"415,-569r110,504r13,0r107,-523v2,-24,-9,-62,17,-62v20,0,48,-5,48,16v0,24,1,47,-3,68r-113,550v-11,30,-69,16,-105,16v-9,0,-18,-7,-19,-16r-101,-459r-100,459v-11,30,-69,16,-105,16v-9,0,-18,-7,-20,-16r-113,-550v-4,-21,-3,-44,-3,-68v0,-21,28,-16,49,-16v25,0,11,39,16,62r108,523r12,0r110,-504v6,-25,45,-14,72,-16v9,0,18,7,20,16","w":738,"k":{"\/":24,",":15,".":15,"\u2026":15,"A":9,"J":9,"a":5,"c":5,"d":5,"e":5,"g":5,"o":5,"q":5,"n":3,"s":3,"-":11,"\u2013":11,"\u2014":11,"m":3,"p":3,"r":3}},"X":{"d":"410,-650v20,1,48,-5,48,16v-1,28,3,55,-9,73r-162,236r162,237v12,17,8,45,9,72v0,21,-28,15,-48,16v-24,0,-16,-33,-17,-55r-146,-213r-146,213v-2,22,7,55,-16,55v-21,0,-49,6,-49,-16v1,-27,-4,-55,9,-72r163,-237r-163,-236v-12,-18,-8,-45,-9,-73v0,-21,28,-15,49,-16v23,0,15,33,16,55r146,213r146,-213v1,-23,-7,-55,17,-55","w":494,"k":{"c":5,"d":5,"e":5,"o":5,"q":5,"u":5,"y":6,"-":26,"\u2013":26,"\u2014":26,"v":6,"w":7}},"Y":{"d":"272,-219r0,203v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-203r-187,-343v-11,-18,-7,-45,-8,-72v0,-21,28,-16,49,-16v24,0,14,35,16,57r162,298r163,-298v2,-22,-8,-57,16,-57v21,0,49,-6,49,16v0,27,2,53,-8,72","w":479,"k":{"@":5,".":27,"\u2026":27,"\/":40,"A":36,"J":32,"a":32,"c":52,"d":52,"e":52,"g":36,"o":52,"q":52,"n":15,"s":29,"u":11,"z":3,"T":-8,"x":3,"-":25,"\u2013":25,"\u2014":25,"w":3,",":27,"m":15,"p":15,"r":14,":":9,";":9}},"Z":{"d":"411,0r-358,0v-30,-5,-16,-61,-16,-92v0,-9,4,-22,9,-29r316,-442r0,-22r-309,0v-21,0,-15,-28,-16,-49v0,-9,7,-16,16,-16r358,0v30,5,16,61,16,92v0,9,-4,22,-10,29r-315,442r0,22r309,0v21,0,15,28,16,49v0,9,-7,16,-16,16","w":464,"k":{"c":10,"d":10,"e":10,"o":10,"q":10,"C":3,"O":3,"s":3,"u":7,"y":3,"-":33,"\u2013":33,"\u2014":33,"v":3,"w":5,"G":3,"Q":3}},"\\":{"d":"102,-642r288,634v6,23,-29,13,-49,15v-9,0,-19,-7,-23,-15r-288,-634v-5,-22,30,-12,49,-14v9,0,19,6,23,14","w":422,"k":{"w":13,"v":23,"t":18,"q":6,"j":10,"f":9,"d":5,"W":24,"V":34,"T":37,"R":5,"Q":12,"P":5,"M":5,"K":5,"H":5,"G":12,"F":5,"B":5,"9":8,"8":7,"7":5,"6":10,"5":6,"0":12,"c":6,"e":6,"o":6,"C":12,"D":5,"E":5,"L":5,"N":5,"O":12,"S":5,"U":15,"i":10,"l":5,"u":7,"\"":34,"'":34,"Y":40,"y":23}},"^":{"d":"417,-390v0,21,-28,15,-48,16v-24,0,-16,-33,-17,-55r-99,-156r-29,0r-99,156v-2,22,7,55,-16,55v-21,0,-49,6,-49,-16v0,-28,-3,-54,9,-72r111,-174v14,-24,59,-11,93,-14v9,0,20,6,25,14r111,174v12,18,7,45,8,72","w":477},"a":{"d":"311,-39v-32,30,-121,53,-146,46v-75,-2,-130,-60,-130,-140v0,-66,34,-109,101,-129r148,-42v6,0,34,-17,27,-44v0,-56,-14,-81,-97,-81v-75,0,-94,20,-97,65v-1,21,-29,15,-50,16v-9,0,-16,-7,-15,-16v6,-93,59,-130,162,-130v108,0,162,43,162,146r0,332v0,21,-28,15,-49,16v-18,0,-17,-21,-16,-39xm250,-76v57,-28,65,-87,61,-169r-157,46v-93,20,-60,154,27,141v0,0,35,-1,69,-18","w":435,"k":{"Y":49,"W":8,"V":20,"T":60,"\"":7,"'":7,"*":5,"?":10,"\\":28,"\u2019":5,"\u201d":5,")":13,"]":10}},"b":{"d":"238,-494v88,0,154,54,172,140v1,4,23,111,0,221v-18,86,-84,140,-172,140v-47,0,-82,-17,-111,-38v7,33,-20,33,-49,31v-9,0,-16,-7,-16,-16r0,-618v0,-21,28,-15,49,-16v9,0,16,7,16,16r0,178v29,-22,64,-38,111,-38xm238,-58v27,0,92,-9,108,-88v20,-97,1,-194,0,-195v-16,-79,-81,-88,-108,-88v-42,0,-71,21,-99,48v-7,7,-12,19,-12,28r0,218v0,9,5,22,12,28v28,28,57,49,99,49","k":{"]":15,"\\":30,"Y":52,"X":5,"W":5,"V":17,"T":64,"I":8,"?":10,"\/":5,"*":5,")":18,"\"":7,"'":7,"\u2019":5,"\u201d":5}},"c":{"d":"224,-58v45,0,83,-22,95,-66v5,-19,28,-16,51,-16v9,0,16,8,15,17v-7,70,-84,130,-161,130v-88,0,-154,-54,-172,-140v-24,-109,-1,-217,0,-222v19,-128,182,-182,282,-99v29,24,47,56,51,90v3,21,-27,16,-47,16v-25,0,-27,-51,-45,-56v-19,-16,-44,-25,-69,-25v-27,0,-92,9,-109,88v0,1,-20,99,0,194v17,80,82,89,109,89","w":422,"k":{"Y":30,"W":3,"V":10,"T":46,"\"":6,"'":6,"-":5,"\u2013":5,"\u2014":5,"?":7,"\\":27,")":18,"]":13}},"d":{"d":"52,-354v18,-86,84,-140,172,-140v47,0,82,16,111,38r0,-178v0,-21,28,-16,49,-16v9,0,16,7,16,16r0,618v0,21,-28,15,-48,16v-15,0,-19,-14,-17,-31v-29,21,-64,38,-111,38v-88,0,-154,-54,-172,-140v-23,-110,-1,-217,0,-221xm224,-429v-27,0,-92,9,-108,88v0,1,-20,98,0,195v16,79,81,88,108,88v42,0,71,-21,100,-49v6,-6,11,-19,11,-28r0,-218v0,-9,-4,-22,-11,-28v-28,-28,-58,-48,-100,-48","k":{")":7}},"e":{"d":"408,-234v0,9,-8,16,-17,16r-284,0v1,23,4,47,9,72v17,79,82,88,109,88v23,0,74,-6,98,-57v9,-18,32,-15,57,-15v9,0,15,7,12,16v-23,75,-86,121,-167,121v-88,0,-155,-54,-173,-140v-24,-110,-1,-216,0,-222v19,-86,85,-139,173,-139v87,0,154,53,172,140v1,3,11,53,11,120xm116,-341v0,2,-5,25,-7,58r232,0v-2,-33,-7,-56,-7,-58v-18,-79,-82,-88,-109,-88v-27,0,-92,9,-109,88","w":443,"k":{"Y":34,"X":4,"W":4,"V":14,"T":64,"I":6,"\/":5,"\"":7,"'":7,"?":10,"\\":29,"\u2019":5,"\u201d":5,")":19,"]":15}},"f":{"d":"97,-487v3,-93,70,-163,179,-163v21,0,15,28,16,49v0,21,-28,14,-49,16v-57,4,-77,49,-81,98r114,0v21,0,15,28,16,48v0,9,-7,17,-16,17r-114,0r0,406v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-406v-29,-4,-81,13,-81,-17v0,-20,-5,-48,16,-48r65,0","w":304,"k":{"q":3,"d":3,"T":-5,"J":27,"\/":24,",":8,".":8,"\u2026":8,"A":15,"c":3,"e":3,"o":3,"-":9,"\u2013":9,"\u2014":9}},"g":{"d":"47,-331v0,-140,153,-200,270,-140v28,-7,54,-16,90,-16v21,0,17,27,17,48v0,25,-37,13,-54,21v14,24,21,53,21,87v0,123,-113,187,-238,153v-48,10,-35,71,1,78r167,33v46,7,98,55,93,126v-6,93,-85,130,-195,130v-111,0,-192,-36,-195,-130v-2,-55,28,-96,73,-115v-48,-27,-55,-120,-8,-160v-27,-28,-42,-67,-42,-115xm89,59v0,58,41,65,130,65v62,0,93,-13,108,-23v15,-10,22,-24,22,-42v0,-47,-14,-57,-43,-63r-95,-19v-113,21,-122,48,-122,82xm219,-234v68,0,108,-31,107,-97v0,-65,-36,-98,-107,-98v-71,0,-107,33,-107,98v-1,66,39,97,107,97","w":450,"k":{"]":5,"j":-15,"\\":8,"Z":4,"T":27,"J":8,")":6}},"h":{"d":"127,-457v59,-35,111,-58,197,-16v36,18,79,60,79,145r0,312v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-312v0,-42,-13,-72,-43,-87v-71,-36,-111,-5,-156,34v-7,6,-12,18,-12,27r0,338v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-618v0,-21,28,-15,49,-16v9,0,16,7,16,15r0,178","w":461,"k":{"]":9,"\\":30,"Y":52,"W":9,"V":23,"T":61,"?":10,"*":6,")":12,"\"":7,"'":7,"\u2019":6,"\u201d":6}},"i":{"d":"145,-487v9,0,16,7,16,16r0,455v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-406v-29,-4,-81,13,-81,-17v0,-20,-5,-48,16,-48r114,0xm112,-617v21,1,49,-6,49,16v-1,21,5,49,-16,49v-21,0,-49,5,-49,-17v1,-20,-5,-48,16,-48","w":223,"k":{"\\":6,")":10,"]":7}},"j":{"d":"-17,95v78,9,114,-39,114,-97r0,-420v-28,-4,-81,13,-81,-16v0,-21,-5,-49,16,-49r114,0v9,0,16,8,16,17r0,468v-3,91,-71,162,-179,162v-21,0,-15,-28,-16,-49v0,-9,7,-16,16,-16xm162,-568v0,21,-28,15,-49,16v-21,0,-15,-28,-16,-48v0,-22,28,-17,49,-17v21,0,16,28,16,49","w":224,"k":{"]":6,"\\":6,")":9}},"k":{"d":"253,-311r142,223v11,17,8,45,8,72v0,21,-28,15,-49,16v-23,0,-14,-34,-16,-56r-129,-204r-82,94r0,150v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-618v0,-21,28,-15,49,-16v9,0,16,7,16,16r0,369r184,-210v12,-15,35,-12,60,-12v0,0,16,0,16,16v0,5,-1,8,-5,13","w":430,"k":{"\\":13,"Y":6,"V":3,"T":31,")":5,"-":9,"\u2013":9,"\u2014":9}},"l":{"d":"124,-634r0,511v2,33,23,63,65,58v21,-2,15,28,16,49v0,16,-17,16,-34,16v-67,0,-112,-64,-112,-123r0,-511v0,-21,28,-15,49,-16v9,0,16,7,16,16","w":221,"k":{"Y":8,"W":6,"V":7,"U":7,"T":7,"Q":3,"G":3,"C":3,"O":3,"y":6,"*":5,"?":5,"\\":13,"t":5,"v":6,"w":5}},"m":{"d":"449,-429v-45,-2,-83,35,-95,80r0,333v0,21,-28,15,-48,16v-9,0,-17,-7,-17,-16r0,-338v5,-47,-35,-76,-74,-75v-36,1,-88,35,-88,80r0,333v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-455v0,-21,28,-15,49,-16v13,0,18,12,16,27v49,-34,86,-52,160,-17v19,9,33,23,44,39v47,-47,99,-81,184,-39v44,22,67,67,67,123r0,338v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-338v7,-45,-37,-74,-68,-75","w":641,"k":{"]":10,"\\":29,"Y":49,"W":8,"V":20,"T":60,"?":10,"*":5,")":13,"\"":7,"'":7,"\u2019":5,"\u201d":5}},"n":{"d":"127,-457v59,-35,111,-58,197,-16v36,18,79,60,79,145r0,312v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-312v0,-42,-13,-72,-43,-87v-71,-36,-111,-5,-156,34v-7,6,-12,18,-12,27r0,338v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-455v0,-21,28,-15,49,-16v15,0,17,14,16,30","w":461,"k":{"Y":52,"W":9,"V":23,"T":61,"\"":8,"'":8,"*":6,"?":11,"\\":30,"\u2019":6,"\u201d":6,")":13,"]":10}},"o":{"d":"397,-355v1,7,23,111,0,222v-18,86,-84,140,-172,140v-88,0,-155,-54,-173,-140v-24,-110,-1,-216,0,-222v19,-86,85,-139,173,-139v87,0,153,53,172,139xm334,-146v20,-95,0,-191,0,-195v-18,-79,-82,-88,-109,-88v-27,0,-92,9,-109,88v-1,3,-20,100,0,195v17,79,82,88,109,88v27,0,92,-9,109,-88","w":449,"k":{"Y":51,"X":5,"W":5,"V":17,"T":64,"I":8,"\/":6,"\"":7,"'":7,"*":5,"?":11,"\\":30,"\u2019":5,"\u201d":5,")":19,"]":17}},"p":{"d":"410,-133v-18,86,-84,140,-172,140v-47,0,-82,-17,-111,-38r0,177v0,22,-28,17,-49,17v-9,0,-16,-8,-16,-17r0,-617v0,-21,28,-15,49,-16v16,0,17,15,16,31v29,-22,64,-38,111,-38v88,0,154,54,172,140v23,109,1,216,0,221xm238,-58v27,0,92,-9,108,-88v1,-1,20,-99,0,-195v-16,-79,-81,-88,-108,-88v-42,0,-71,21,-99,48v-7,7,-12,19,-12,28r0,218v0,9,5,22,12,28v28,28,57,49,99,49","k":{"]":17,"\\":30,"Y":52,"X":5,"W":5,"V":17,"T":64,"I":8,"?":11,"\/":6,"*":5,")":19,"\"":7,"'":7,"\u2019":5,"\u201d":5}},"q":{"d":"52,-133v-1,-5,-23,-112,0,-221v18,-86,84,-140,172,-140v47,0,82,16,111,38v-1,-16,0,-31,16,-31v21,1,49,-6,49,16r0,617v0,22,-28,17,-49,17v-9,0,-16,-8,-16,-17r0,-177v-29,21,-64,38,-111,38v-88,0,-154,-54,-172,-140xm335,-353v-12,-47,-63,-76,-111,-76v-27,0,-92,9,-108,88v-20,96,-1,194,0,195v16,79,81,88,108,88v42,0,71,-21,99,-49v7,-6,12,-19,12,-28r0,-218","k":{"]":9,"\\":16,"Y":15,"W":3,"V":8,"T":57,")":12}},"r":{"d":"127,-455v28,-19,66,-37,114,-39v21,-1,15,28,16,48v0,9,-7,16,-16,17v-45,4,-75,23,-102,48v-7,6,-12,18,-12,27r0,338v0,21,-28,15,-49,16v-9,0,-16,-7,-16,-16r0,-456v0,-21,28,-15,49,-16v16,0,17,16,16,33","w":268,"k":{"]":9,"q":4,"d":4,"Z":18,"T":17,"J":30,"I":7,"\/":25,",":8,")":7,".":8,"\u2026":8,"A":15,"c":3,"e":3,"o":3,"-":9,"\u2013":9,"\u2014":9}},"s":{"d":"199,-58v62,-1,97,-21,97,-82v0,-16,-3,-41,-38,-54r-143,-52v-45,-18,-72,-56,-72,-102v-1,-67,28,-146,156,-146v116,0,148,67,152,130v1,21,-28,16,-48,16v-9,0,-16,-7,-17,-16v-4,-48,-31,-66,-90,-65v-64,0,-88,22,-88,81v12,56,42,44,102,67v96,36,151,49,151,141v0,62,-27,96,-49,114v-51,43,-174,43,-226,0v-20,-17,-45,-46,-49,-97v-2,-21,27,-17,48,-17v27,7,17,53,41,63v16,12,41,19,73,19","w":398,"k":{"Y":31,"W":4,"V":12,"T":57,"?":8,"\\":28,")":17,"]":12}},"t":{"d":"275,7v-109,0,-179,-69,-179,-163r0,-266v-29,-4,-81,13,-81,-17v0,-20,-5,-48,16,-48r65,0r0,-114v0,-21,28,-15,49,-16v9,0,16,7,16,16r0,114r114,0v21,0,15,28,16,48v0,9,-7,17,-16,17r-114,0r0,266v3,59,36,105,114,98v21,-2,15,28,16,48v0,9,-7,17,-16,17","w":314,"k":{"T":30,"-":6,"\u2013":6,"\u2014":6}},"u":{"d":"333,-31v-58,37,-112,59,-197,17v-37,-18,-79,-60,-79,-145r0,-312v0,-21,28,-15,49,-16v9,0,16,7,16,16r0,312v0,42,13,72,43,87v71,36,111,5,157,-34v6,-6,11,-19,11,-28r0,-337v0,-21,28,-15,49,-16v9,0,16,7,16,16r0,455v0,21,-28,15,-49,16v-16,0,-17,-15,-16,-31","w":460,"k":{"Y":15,"W":3,"V":8,"T":57,"\\":17,")":13,"]":11}},"v":{"d":"284,-15v-12,27,-65,15,-100,15v-9,0,-19,-7,-21,-15r-136,-387v-7,-19,-5,-44,-5,-69v0,-21,28,-16,49,-16v24,0,14,36,16,59r127,363r19,0r127,-363v2,-23,-8,-59,16,-59v21,0,49,-6,49,16v0,25,2,50,-5,69","w":447,"k":{"]":8,"\\":6,"Z":17,"X":6,"T":24,"J":8,"I":10,"\/":23,",":8,")":9,".":8,"\u2026":8,"A":7}},"w":{"d":"513,-16v-11,31,-71,16,-108,16v-9,0,-18,-7,-20,-16r-69,-332r-69,332v-12,31,-72,16,-109,16v-8,0,-17,-7,-19,-16r-81,-390v-1,-25,-15,-76,13,-81v21,1,49,-6,49,16r0,42r75,364r16,0r71,-342v9,-26,58,-15,89,-15v9,0,17,7,19,15r72,342r15,0r75,-364v2,-23,-8,-58,16,-58v21,0,49,-6,49,16v0,23,1,45,-3,65","w":632,"k":{"]":9,"\\":9,"Z":11,"Y":3,"X":7,"T":30,"J":3,"I":11,"\/":13,",":5,")":11,".":5,"\u2026":5,"A":3}},"x":{"d":"347,-487v20,1,48,-5,48,16v-1,28,4,57,-10,73r-126,154r126,155v14,16,9,45,10,73v0,21,-28,15,-48,16v-23,0,-16,-31,-17,-53r-113,-139r-114,139v-1,22,7,53,-16,53v-21,-1,-49,6,-49,-16v0,-28,-3,-57,10,-73r127,-155r-127,-154v-13,-16,-10,-45,-10,-73v0,-21,28,-15,49,-16v23,0,15,32,16,53r114,139r113,-139v1,-22,-6,-53,17,-53","w":433,"k":{"]":5,"\\":11,"Y":3,"T":29,")":7,"-":7,"\u2013":7,"\u2014":7}},"y":{"d":"321,-427v2,-23,-8,-60,16,-60v21,0,49,-6,49,16v0,26,2,50,-5,70r-133,379v-3,14,-69,196,-213,185v-20,-6,-24,-75,13,-65v59,0,98,-57,120,-98r-141,-401v-7,-20,-5,-45,-5,-70v0,-21,28,-16,49,-16v24,0,14,37,16,60r117,334","w":408,"k":{"Z":17,"X":6,"T":24,"J":7,"I":10,")":9,".":8,"\u2026":8,"\/":23,"A":7,"\\":6,",":8,"]":8}},"z":{"d":"348,0r-293,0v-31,-6,-16,-63,-16,-94v0,-9,5,-21,11,-28r249,-280r0,-20r-244,0v-21,0,-16,-28,-16,-49v0,-9,7,-16,16,-16r293,0v31,6,16,62,16,93v0,9,-5,22,-11,29r-249,280r0,20r244,0v21,0,15,28,16,49v0,9,-7,16,-16,16","w":403,"k":{"Y":3,"T":29,"-":6,"\u2013":6,"\u2014":6,"\\":11,")":7,"]":5}},"~":{"d":"154,-283v-58,-1,-22,60,-95,47v-26,-5,-13,-34,-3,-54v17,-37,53,-58,98,-58v5,0,45,2,82,37v37,36,71,15,81,-14v2,-19,30,-14,50,-14v27,0,13,33,3,54v-17,37,-53,57,-98,57v-4,0,-46,-1,-82,-37v-16,-16,-34,-18,-36,-18","w":425},"\u2018":{"d":"126,-439v-89,-6,-89,-113,-89,-113r0,-82v3,-29,53,-12,81,-16v29,3,13,53,16,81v2,21,-27,17,-48,17v0,60,27,76,40,79v11,3,13,32,0,34","w":179,"k":{"q":5,"d":5,"J":13,".":69,"A":10,"c":5,"e":5,"o":5}},"\u2019":{"d":"53,-439v-12,0,-12,-31,0,-34v14,-4,41,-19,41,-79v-21,0,-51,5,-49,-17v3,-28,-13,-77,16,-81v28,4,81,-13,81,16r0,82v0,0,0,107,-89,113","w":179},"\u201c":{"d":"278,-650v12,0,12,31,0,34v-14,4,-41,19,-41,79v21,0,49,-4,49,17v0,29,13,78,-17,81v-28,-4,-81,13,-81,-16r0,-82v0,0,0,-107,90,-113xm131,-650v10,0,14,30,0,34v-13,4,-40,19,-40,79v21,0,50,-5,48,17v-3,28,13,77,-16,81v-28,-4,-81,13,-81,-16r0,-82v0,0,0,-113,89,-113","w":329,"k":{"q":5,"d":5,"J":14,".":69,"A":10,"c":5,"e":5,"o":5}},"\u201d":{"d":"53,-439v-12,0,-12,-31,0,-34v14,-4,41,-19,41,-79v-21,0,-51,5,-49,-17v3,-28,-13,-77,16,-81v28,4,81,-13,81,16r0,82v0,0,0,107,-89,113xm199,-439v-12,0,-12,-31,0,-34v14,-4,41,-19,41,-79v-21,0,-51,5,-49,-17v3,-28,-13,-77,16,-81v29,4,82,-13,82,16r0,82v0,0,0,107,-90,113","w":326},"\u2013":{"d":"353,-244r-278,0v-21,0,-15,-28,-16,-48v0,-9,7,-17,16,-17r278,0v21,0,16,28,16,49v0,9,-7,16,-16,16","w":428,"k":{"A":8,"J":29,"D":9,"E":9,"L":9,"N":9,"S":31,"U":7,"z":15,"Z":24,"B":9,"F":9,"H":9,"I":17,"K":9,"M":9,"P":9,"R":9,"T":27,"V":15,"W":11,"X":26,"Y":25,"x":7}},"\u2014":{"d":"473,-244r-398,0v-21,0,-15,-28,-16,-48v0,-9,7,-17,16,-17r398,0v21,0,16,28,16,49v0,9,-7,16,-16,16","w":548,"k":{"A":8,"J":29,"D":9,"E":9,"L":9,"N":9,"S":31,"U":7,"z":15,"Z":24,"B":9,"F":9,"H":9,"I":17,"K":9,"M":9,"P":9,"R":9,"T":27,"V":15,"W":11,"X":26,"Y":25,"x":7}},"`":{"d":"70,-654v-6,-7,-3,-12,6,-12v27,0,54,-4,66,13r78,110v5,7,2,13,-7,13v-21,1,-38,0,-49,-12","w":310},"=":{"d":"429,-325r-341,0v-21,0,-15,-28,-16,-49v0,-9,7,-16,16,-16r341,0v22,0,17,28,17,49v0,9,-8,16,-17,16xm429,-146r-341,0v-21,0,-15,-28,-16,-49v0,-9,7,-16,16,-16r341,0v22,0,17,28,17,49v0,9,-8,16,-17,16","w":518,"k":{"9":5,"7":15,"3":5,"2":10,"1":17}},">":{"d":"82,0v-24,14,-34,-15,-46,-24v-8,-6,-7,-17,0,-23r251,-252r-251,-251v-16,-23,15,-34,23,-46v5,-8,16,-7,23,0r286,286v6,6,6,16,0,23","w":403},"<":{"d":"366,-24v-12,10,-22,38,-46,24r-286,-287v-6,-7,-6,-17,0,-23r286,-286v23,-16,34,15,46,23v8,5,7,16,0,23r-251,251r251,252v7,6,8,17,0,23","w":403},"[":{"d":"235,98r-146,0v-9,0,-16,-8,-16,-17r0,-780v0,-9,7,-16,16,-16r146,0v22,0,17,28,17,49v0,9,-8,16,-17,16r-97,0r0,683r97,0v21,0,17,27,17,48v0,9,-8,17,-17,17","w":282,"k":{"y":7,"x":6,"w":9,"v":7,"t":13,"r":11,"q":17,"p":9,"m":11,"j":-31,"g":5,"f":12,"d":15,"Q":13,"J":8,"G":13,"9":9,"8":11,"6":13,"5":5,"4":7,"3":8,"0":13,"A":5,"a":11,"c":17,"e":17,"o":17,"C":13,"O":13,"S":9,"i":11,"n":11,"s":12,"u":14,"z":6}},"]":{"d":"47,98v-21,0,-17,-28,-17,-49v0,-9,8,-16,17,-16r97,0r0,-683r-97,0v-22,0,-17,-28,-17,-49v0,-9,8,-16,17,-16r146,0v9,0,16,7,16,16r0,780v0,9,-7,17,-16,17r-146,0","w":282},"_":{"d":"444,65r-398,0v-21,0,-15,-28,-16,-48v0,-9,7,-17,16,-17r398,0v21,0,16,28,16,49v0,9,-7,16,-16,16","w":490},"|":{"d":"138,81v0,22,-28,17,-49,17v-9,0,-16,-8,-16,-17r0,-780v0,-21,28,-15,49,-16v9,0,16,7,16,16r0,780","w":211},"{":{"d":"176,-196v1,64,-15,102,-16,162v-1,36,19,57,49,63v20,3,16,29,16,51v-6,28,-40,12,-63,1v-44,-20,-67,-62,-67,-115v1,-95,54,-217,-49,-241v-23,-5,-25,-64,0,-70v34,-9,67,-36,65,-79v-2,-62,-16,-98,-16,-162v0,-70,50,-121,114,-129v21,-3,16,28,16,48v0,18,-22,18,-36,25v-20,10,-29,29,-29,56v1,60,17,97,16,162v0,59,-28,94,-55,114v27,20,55,55,55,114","w":258},"}":{"d":"181,-261v-67,44,-18,144,-18,227v0,70,-49,121,-114,129v-21,2,-16,-27,-16,-47v0,-19,21,-19,36,-26v20,-11,29,-28,29,-56v-1,-60,-17,-98,-16,-162v0,-59,28,-94,55,-114v-27,-20,-55,-55,-55,-114v-1,-65,15,-102,16,-162v1,-35,-19,-57,-49,-63v-21,-4,-16,-29,-16,-51v7,-29,40,-11,63,0v44,20,67,62,67,114v-1,95,-55,218,49,241v23,5,25,64,0,70v-9,3,-20,7,-31,14","w":258},"\u2122":{"d":"154,-650v10,0,8,14,8,24v-4,18,-37,6,-55,9r0,186v0,12,-14,9,-25,9v-4,0,-8,-4,-8,-9r0,-186v-23,-4,-63,14,-55,-25v0,-4,4,-8,8,-8r127,0xm361,-431v1,14,34,13,33,0r0,-211v-4,-13,-45,-13,-53,0r-47,150r-47,-150v-4,-14,-28,-6,-44,-8v-5,0,-9,4,-9,8r0,211v0,11,14,9,25,9v4,0,8,-4,8,-9r0,-167r47,151v3,10,36,11,40,0r47,-151r0,167","w":443},"\u00d7":{"d":"50,-415v-16,-23,15,-34,23,-46v5,-8,16,-7,23,0r138,138r137,-138v23,-16,34,15,46,23v8,5,7,16,0,23r-137,138r140,140v14,22,-15,35,-23,46v-7,6,-17,6,-23,0r-140,-140r-138,138v-23,14,-34,-15,-46,-23v-7,-7,-7,-17,0,-23r138,-138","w":468},"\u2026":{"d":"145,-16v-3,29,-53,12,-81,16v-29,-3,-12,-53,-16,-81v3,-29,53,-12,81,-16v29,3,12,53,16,81xm357,-16v-4,28,-54,12,-82,16v-29,-3,-12,-53,-16,-81v3,-29,53,-12,81,-16v30,3,13,53,17,81xm568,-16v-3,29,-53,12,-81,16v-30,-3,-13,-53,-17,-81v4,-28,54,-12,82,-16v29,3,12,53,16,81","w":616},"\u00a0":{"w":203}}});
Cufon.replace('h1,h2,h3,#respond label', { fontFamily: 'Neighbourhood' })
