// Prototype indexOf
if(!Array.indexOf){
	Array.prototype.indexOf = function(obj){
		for(var i=0; i<this.length; i++){
			if(this[i]==obj){
				return i;
			}
		}
		return -1;
	}
}
	
	
// remap jQuery to $
(function($){
})(window.jQuery);


/*
 * jqModal - Minimalist Modaling with jQuery
 *   (http://dev.iceburg.net/jquery/jqmodal/)
 *
 * Copyright (c) 2007,2008 Brice Burgess <bhb@iceburg.net>
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 * 
 * $Version: 07/06/2008 +r13
 */
(function($) {
$.fn.jqm=function(o){
var p={
overlay: 50,
overlayClass: 'jqmOverlay',
closeClass: 'jqmClose',
trigger: '.jqModal',
ajax: F,
ajaxText: '',
target: F,
modal: F,
toTop: F,
onShow: F,
onHide: F,
onLoad: F
};
return this.each(function(){if(this._jqm)return H[this._jqm].c=$.extend({},H[this._jqm].c,o);s++;this._jqm=s;
H[s]={c:$.extend(p,$.jqm.params,o),a:F,w:$(this).addClass('jqmID'+s),s:s};
if(p.trigger)$(this).jqmAddTrigger(p.trigger);
});};

$.fn.jqmAddClose=function(e){return hs(this,e,'jqmHide');};
$.fn.jqmAddTrigger=function(e){return hs(this,e,'jqmShow');};
$.fn.jqmShow=function(t){return this.each(function(){$.jqm.open(this._jqm,t);});};
$.fn.jqmHide=function(t){return this.each(function(){$.jqm.close(this._jqm,t)});};

$.jqm = {
hash:{},
open:function(s,t){var h=H[s],c=h.c,cc='.'+c.closeClass,z=(parseInt(h.w.css('z-index'))),z=(z>0)?z:3000,o=$('<div></div>').css({height:'100%',width:'100%',position:'fixed',left:0,top:0,'z-index':z-1,opacity:c.overlay/100});if(h.a)return F;h.t=t;h.a=true;h.w.css('z-index',z);
 if(c.modal) {if(!A[0])L('bind');A.push(s);}
 else if(c.overlay > 0)h.w.jqmAddClose(o);
 else o=F;

 h.o=(o)?o.addClass(c.overlayClass).prependTo('body'):F;
 if(ie6){$('html,body').css({height:'100%',width:'100%'});if(o){o=o.css({position:'absolute'})[0];for(var y in {Top:1,Left:1})o.style.setExpression(y.toLowerCase(),"(_=(document.documentElement.scroll"+y+" || document.body.scroll"+y+"))+'px'");}}

 if(c.ajax) {var r=c.target||h.w,u=c.ajax,r=(typeof r == 'string')?$(r,h.w):$(r),u=(u.substr(0,1) == '@')?$(t).attr(u.substring(1)):u;
  r.html(c.ajaxText).load(u,function(){if(c.onLoad)c.onLoad.call(this,h);if(cc)h.w.jqmAddClose($(cc,h.w));e(h);});}
 else if(cc)h.w.jqmAddClose($(cc,h.w));

 if(c.toTop&&h.o)h.w.before('<span id="jqmP'+h.w[0]._jqm+'"></span>').insertAfter(h.o);	
 (c.onShow)?c.onShow(h):h.w.show();e(h);return F;
},
close:function(s){var h=H[s];if(!h.a)return F;h.a=F;
 if(A[0]){A.pop();if(!A[0])L('unbind');}
 if(h.c.toTop&&h.o)$('#jqmP'+h.w[0]._jqm).after(h.w).remove();
 if(h.c.onHide)h.c.onHide(h);else{h.w.hide();if(h.o)h.o.remove();} return F;
},
params:{}};
var s=0,H=$.jqm.hash,A=[],ie6=$.browser.msie&&($.browser.version == "6.0"),F=false,
i=$('<iframe src="javascript:false;document.write(\'\');" class="jqm"></iframe>').css({opacity:0}),
e=function(h){if(ie6)if(h.o)h.o.html('<p style="width:100%;height:100%"/>').prepend(i);else if(!$('iframe.jqm',h.w)[0])h.w.prepend(i); f(h);},
f=function(h){try{$(':input:visible',h.w)[0].focus();}catch(_){}},
L=function(t){$()[t]("keypress",m)[t]("keydown",m)[t]("mousedown",m);},
m=function(e){var h=H[A[A.length-1]],r=(!$(e.target).parents('.jqmID'+h.s)[0]);if(r)f(h);return !r;},
hs=function(w,t,c){return w.each(function(){var s=this._jqm;$(t).each(function() {
 if(!this[c]){this[c]=[];$(this).click(function(){for(var i in {jqmShow:1,jqmHide:1})for(var s in this[i])if(H[this[i][s]])H[this[i][s]].w[i](this);return F;});}this[c].push(s);});});};
})(jQuery);


/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - jQuery Easing
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2008 George McGinley Smith
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
*/

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

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

/*
 *
 * TERMS OF USE - EASING EQUATIONS
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2001 Robert Penner
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
 */
 
 /* jquery css transform */
 (function ($) {
    // Monkey patch jQuery 1.3.1+ css() method to support CSS 'transform'
    // property uniformly across Webkit/Safari/Chrome and Firefox 3.5.
    // 2009 Zachary Johnson www.zachstronaut.com
    function getTransformProperty(element)
    {
        // Try transform first for forward compatibility
        var properties = ['transform', 'WebkitTransform', 'MozTransform'];
        var p;
        while (p = properties.shift())
        {
            if (typeof element.style[p] != 'undefined')
            {
                return p;
            }
        }
        
        // Default to transform also
        return 'transform';
    }
    
    var proxied = $.fn.css;
    $.fn.css = function (arg)
    {
        // Find the correct browser specific property and setup the mapping using
        // $.props which is used internally by jQuery.attr() when setting CSS
        // properties via either the css(name, value) or css(properties) method.
        // The problem with doing this once outside of css() method is that you
        // need a DOM node to find the right CSS property, and there is some risk
        // that somebody would call the css() method before body has loaded or any
        // DOM-is-ready events have fired.
        if
        (
            typeof $.props['transform'] == 'undefined'
            &&
            (
                arg == 'transform'
                ||
                (
                    typeof arg == 'object'
                    && typeof arg['transform'] != 'undefined'
                )
            )
        )
        {
            $.props['transform'] = getTransformProperty(this.get(0));
        }
        
        // We force the property mapping here because jQuery.attr() does
        // property mapping with jQuery.props when setting a CSS property,
        // but curCSS() does *not* do property mapping when *getting* a
        // CSS property.  (It probably should since it manually does it
        // for 'float' now anyway... but that'd require more testing.)
        if (arg == 'transform')
        {
            arg = $.props['transform'];
        }
        
        return proxied.apply(this, arguments);
    };
})(jQuery);


/* jquery animate css rotate scale */
(function ($) {
    // Monkey patch jQuery 1.3.1+ to add support for setting or animating CSS
    // scale and rotation independently.
    // 2009 Zachary Johnson www.zachstronaut.com
    var rotateUnits = 'deg';
    
    $.fn.rotate = function (val)
    {
        var style = $(this).css('transform') || 'none';
        
        if (typeof val == 'undefined')
        {
            if (style)
            {
                var m = style.match(/rotate\(([^)]+)\)/);
                if (m && m[1])
                {
                    return m[1];
                }
            }
            
            return 0;
        }
        
        var m = val.toString().match(/^(-?\d+(\.\d+)?)(.+)?$/);
        if (m)
        {
            if (m[3])
            {
                rotateUnits = m[3];
            }
            
            $(this).css(
                'transform',
                style.replace(/none|rotate\([^)]*\)/, '') + 'rotate(' + m[1] + rotateUnits + ')'
            );
        }
    }
    
    // Note that scale is unitless.
    $.fn.scale = function (val, duration, options)
    {
        var style = $(this).css('transform');
        
        if (typeof val == 'undefined')
        {
            if (style)
            {
                var m = style.match(/scale\(([^)]+)\)/);
                if (m && m[1])
                {
                    return m[1];
                }
            }
            
            return 1;
        }
        
        $(this).css(
            'transform',
            style.replace(/none|scale\([^)]*\)/, '') + 'scale(' + val + ')'
        );
    }

    // fx.cur() must be monkey patched because otherwise it would always
    // return 0 for current rotate and scale values
    var curProxied = $.fx.prototype.cur;
    $.fx.prototype.cur = function ()
    {
        if (this.prop == 'rotate')
        {
            return parseFloat($(this.elem).rotate());
        }
        else if (this.prop == 'scale')
        {
            return parseFloat($(this.elem).scale());
        }
        
        return curProxied.apply(this, arguments);
    }
    
    $.fx.step.rotate = function (fx)
    {
        $(fx.elem).rotate(fx.now + rotateUnits);
    }
    
    $.fx.step.scale = function (fx)
    {
        $(fx.elem).scale(fx.now);
    }
    
    /*
    
    Starting on line 3905 of jquery-1.3.2.js we have this code:
    
    // We need to compute starting value
    if ( unit != "px" ) {
        self.style[ name ] = (end || 1) + unit;
        start = ((end || 1) / e.cur(true)) * start;
        self.style[ name ] = start + unit;
    }
    
    This creates a problem where we cannot give units to our custom animation
    because if we do then this code will execute and because self.style[name]
    does not exist where name is our custom animation's name then e.cur(true)
    will likely return zero and create a divide by zero bug which will set
    start to NaN.
    
    The following monkey patch for animate() gets around this by storing the
    units used in the rotation definition and then stripping the units off.
    
    */
    
    var animateProxied = $.fn.animate;
    $.fn.animate = function (prop)
    {
        if (typeof prop['rotate'] != 'undefined')
        {
            var m = prop['rotate'].toString().match(/^(([+-]=)?(-?\d+(\.\d+)?))(.+)?$/);
            if (m && m[5])
            {
                rotateUnits = m[5];
            }
            
            prop['rotate'] = m[1];
        }
        
        return animateProxied.apply(this, arguments);
    }
})(jQuery);



/*quicksand */
(function(a){a.fn.quicksand=function(y,r,t){var b={duration:750,easing:"swing",attribute:"data-id",adjustHeight:"auto",useScaling:true,enhancement:function(){},selector:"> *"};a.extend(b,r);if(a.browser.msie||typeof a.fn.scale=="undefined")b.useScaling=false;var o;if(typeof r=="function")o=r;else if(typeof(t=="function"))o=t;return this.each(function(k){var m,i=[],l=a(y).clone(),g=a(this);k=a(this).css("height");var p,u=false,v=a(g).offset(),s=[],n=a(this).find(b.selector);if(a.browser.msie&&a.browser.version.substr(0,
1)<7)g.html("").append(l);else{var w=0,z=function(){if(!w){g.html(j.html());typeof o=="function"&&o.call(this);u&&g.css("height",p);b.enhancement(g);w=1}},c=g.offsetParent(),e=c.offset();if(c.css("position")=="relative"){if(c.get(0).nodeName.toLowerCase()!="body"){e.top+=parseFloat(c.css("border-top-width"));e.left+=parseFloat(c.css("border-left-width"))}}else{e.top-=parseFloat(c.css("border-top-width"));e.left-=parseFloat(c.css("border-left-width"));e.top-=parseFloat(c.css("margin-top"));e.left-=
parseFloat(c.css("margin-left"))}g.css("height",a(this).height());n.each(function(f){s[f]=a(this).offset()});a(this).stop();n.each(function(f){a(this).stop();var h=a(this).get(0);h.style.position="absolute";h.style.margin="0";h.style.top=s[f].top-parseFloat(h.style.marginTop)-e.top+"px";h.style.left=s[f].left-parseFloat(h.style.marginLeft)-e.left+"px"});var j=a(g).clone();c=j.get(0);c.innerHTML="";c.setAttribute("id","");c.style.height="auto";c.style.width=g.width()+"px";j.append(l);j.insertBefore(g);
j.css("opacity",0);c.style.zIndex=-1;c.style.margin="0";c.style.position="absolute";c.style.top=v.top-e.top+"px";c.style.left=v.left-e.left+"px";if(b.adjustHeight==="dynamic")g.animate({height:j.height()},b.duration,b.easing);else if(b.adjustHeight==="auto"){p=j.height();if(parseFloat(k)<parseFloat(p))g.css("height",p);else u=true}n.each(function(){var f=[];if(typeof b.attribute=="function"){m=b.attribute(a(this));l.each(function(){if(b.attribute(this)==m){f=a(this);return false}})}else f=l.filter("["+
b.attribute+"="+a(this).attr(b.attribute)+"]");if(f.length)b.useScaling?i.push({element:a(this),animation:{top:f.offset().top-e.top,left:f.offset().left-e.left,opacity:1,scale:"1.0"}}):i.push({element:a(this),animation:{top:f.offset().top-e.top,left:f.offset().left-e.left,opacity:1}});else b.useScaling?i.push({element:a(this),animation:{opacity:"0.0",scale:"0.0"}}):i.push({element:a(this),animation:{opacity:"0.0"}})});l.each(function(){var f=[],h=[];if(typeof b.attribute=="function"){m=b.attribute(a(this));
n.each(function(){if(b.attribute(this)==m){f=a(this);return false}});l.each(function(){if(b.attribute(this)==m){h=a(this);return false}})}else{f=n.filter("["+b.attribute+"="+a(this).attr(b.attribute)+"]");h=l.filter("["+b.attribute+"="+a(this).attr(b.attribute)+"]")}var x;if(f.length===0){x=b.useScaling?{opacity:"1.0",scale:"1.0"}:{opacity:"1.0"};d=h.clone();var q=d.get(0);q.style.position="absolute";q.style.margin="0";q.style.top=h.offset().top-e.top+"px";q.style.left=h.offset().left-e.left+"px";
d.css("opacity",0);b.useScaling&&d.css("transform","scale(0.0)");d.appendTo(g);i.push({element:a(d),animation:x})}});j.remove();b.enhancement(g);for(k=0;k<i.length;k++)i[k].element.animate(i[k].animation,b.duration,b.easing,z)}})}})(jQuery);


// custom sorting plugin for use with quicksand
(function($) {
  $.fn.sorted = function(customOptions) {
    var options = {
      reversed: false,
      by: function(a) { return a.text(); }
    };
    $.extend(options, customOptions);
    $data = $(this);
    arr = $data.get();
    arr.sort(function(a, b) {
      var valA = options.by($(a));
      var valB = options.by($(b));
      if (options.reversed) {
        return (valA < valB) ? 1 : (valA > valB) ? -1 : 0;				
      } else {		
        return (valA < valB) ? -1 : (valA > valB) ? 1 : 0;	
      }
    });
    return $(arr);
  };
})(jQuery);




// usage: log('inside coolFunc',this,arguments);
// paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
window.log = function(){
  log.history = log.history || [];   // store logs to an array for reference
  log.history.push(arguments);
  if(this.console){
    console.log( Array.prototype.slice.call(arguments) );
  }
};



// catch all document.write() calls
(function(doc){
  var write = doc.write;
  doc.write = function(q){ 
    log('document.write(): ',arguments); 
    if (/docwriteregexwhitelist/.test(q)) write.apply(doc,arguments);  
  };
})(document);




// tablesorter

(function($){$.extend({tablesorter:new
function(){var parsers=[],widgets=[];this.defaults={cssHeader:"header",cssAsc:"headerSortUp",cssDesc:"headerSortDown",cssChildRow:"expand-child",sortInitialOrder:"asc",sortMultiSortKey:"shiftKey",sortForce:null,sortAppend:null,sortLocaleCompare:true,textExtraction:"simple",parsers:{},widgets:[],widgetZebra:{css:["even","odd"]},headers:{},widthFixed:false,cancelSelection:true,sortList:[],headerList:[],dateFormat:"us",decimal:'/\.|\,/g',onRenderHeader:null,selectorHeaders:'thead th',debug:false};function benchmark(s,d){log(s+","+(new Date().getTime()-d.getTime())+"ms");}this.benchmark=benchmark;function log(s){if(typeof console!="undefined"&&typeof console.debug!="undefined"){console.log(s);}else{alert(s);}}function buildParserCache(table,$headers){if(table.config.debug){var parsersDebug="";}if(table.tBodies.length==0)return;var rows=table.tBodies[0].rows;if(rows[0]){var list=[],cells=rows[0].cells,l=cells.length;for(var i=0;i<l;i++){var p=false;if($.metadata&&($($headers[i]).metadata()&&$($headers[i]).metadata().sorter)){p=getParserById($($headers[i]).metadata().sorter);}else if((table.config.headers[i]&&table.config.headers[i].sorter)){p=getParserById(table.config.headers[i].sorter);}if(!p){p=detectParserForColumn(table,rows,-1,i);}if(table.config.debug){parsersDebug+="column:"+i+" parser:"+p.id+"\n";}list.push(p);}}if(table.config.debug){log(parsersDebug);}return list;};function detectParserForColumn(table,rows,rowIndex,cellIndex){var l=parsers.length,node=false,nodeValue=false,keepLooking=true;while(nodeValue==''&&keepLooking){rowIndex++;if(rows[rowIndex]){node=getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex);nodeValue=trimAndGetNodeText(table.config,node);if(table.config.debug){log('Checking if value was empty on row:'+rowIndex);}}else{keepLooking=false;}}for(var i=1;i<l;i++){if(parsers[i].is(nodeValue,table,node)){return parsers[i];}}return parsers[0];}function getNodeFromRowAndCellIndex(rows,rowIndex,cellIndex){return rows[rowIndex].cells[cellIndex];}function trimAndGetNodeText(config,node){return $.trim(getElementText(config,node));}function getParserById(name){var l=parsers.length;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==name.toLowerCase()){return parsers[i];}}return false;}function buildCache(table){if(table.config.debug){var cacheTime=new Date();}var totalRows=(table.tBodies[0]&&table.tBodies[0].rows.length)||0,totalCells=(table.tBodies[0].rows[0]&&table.tBodies[0].rows[0].cells.length)||0,parsers=table.config.parsers,cache={row:[],normalized:[]};for(var i=0;i<totalRows;++i){var c=$(table.tBodies[0].rows[i]),cols=[];if(c.hasClass(table.config.cssChildRow)){cache.row[cache.row.length-1]=cache.row[cache.row.length-1].add(c);continue;}cache.row.push(c);for(var j=0;j<totalCells;++j){cols.push(parsers[j].format(getElementText(table.config,c[0].cells[j]),table,c[0].cells[j]));}cols.push(cache.normalized.length);cache.normalized.push(cols);cols=null;};if(table.config.debug){benchmark("Building cache for "+totalRows+" rows:",cacheTime);}return cache;};function getElementText(config,node){var text="";if(!node)return"";if(!config.supportsTextContent)config.supportsTextContent=node.textContent||false;if(config.textExtraction=="simple"){if(config.supportsTextContent){text=node.textContent;}else{if(node.childNodes[0]&&node.childNodes[0].hasChildNodes()){text=node.childNodes[0].innerHTML;}else{text=node.innerHTML;}}}else{if(typeof(config.textExtraction)=="function"){text=config.textExtraction(node);}else{text=$(node).text();}}return text;}function appendToTable(table,cache){if(table.config.debug){var appendTime=new Date()}var c=cache,r=c.row,n=c.normalized,totalRows=n.length,checkCell=(n[0].length-1),tableBody=$(table.tBodies[0]),rows=[];for(var i=0;i<totalRows;i++){var pos=n[i][checkCell];rows.push(r[pos]);if(!table.config.appender){var l=r[pos].length;for(var j=0;j<l;j++){tableBody[0].appendChild(r[pos][j]);}}}if(table.config.appender){table.config.appender(table,rows);}rows=null;if(table.config.debug){benchmark("Rebuilt table:",appendTime);}applyWidget(table);setTimeout(function(){$(table).trigger("sortEnd");},0);};function buildHeaders(table){if(table.config.debug){var time=new Date();}var meta=($.metadata)?true:false;var header_index=computeTableHeaderCellIndexes(table);$tableHeaders=$(table.config.selectorHeaders,table).each(function(index){this.column=header_index[this.parentNode.rowIndex+"-"+this.cellIndex];this.order=formatSortingOrder(table.config.sortInitialOrder);this.count=this.order;if(checkHeaderMetadata(this)||checkHeaderOptions(table,index))this.sortDisabled=true;if(checkHeaderOptionsSortingLocked(table,index))this.order=this.lockedOrder=checkHeaderOptionsSortingLocked(table,index);if(!this.sortDisabled){var $th=$(this).addClass(table.config.cssHeader);if(table.config.onRenderHeader)table.config.onRenderHeader.apply($th);}table.config.headerList[index]=this;});if(table.config.debug){benchmark("Built headers:",time);log($tableHeaders);}return $tableHeaders;};function computeTableHeaderCellIndexes(t){var matrix=[];var lookup={};var thead=t.getElementsByTagName('THEAD')[0];var trs=thead.getElementsByTagName('TR');for(var i=0;i<trs.length;i++){var cells=trs[i].cells;for(var j=0;j<cells.length;j++){var c=cells[j];var rowIndex=c.parentNode.rowIndex;var cellId=rowIndex+"-"+c.cellIndex;var rowSpan=c.rowSpan||1;var colSpan=c.colSpan||1
var firstAvailCol;if(typeof(matrix[rowIndex])=="undefined"){matrix[rowIndex]=[];}for(var k=0;k<matrix[rowIndex].length+1;k++){if(typeof(matrix[rowIndex][k])=="undefined"){firstAvailCol=k;break;}}lookup[cellId]=firstAvailCol;for(var k=rowIndex;k<rowIndex+rowSpan;k++){if(typeof(matrix[k])=="undefined"){matrix[k]=[];}var matrixrow=matrix[k];for(var l=firstAvailCol;l<firstAvailCol+colSpan;l++){matrixrow[l]="x";}}}}return lookup;}function checkCellColSpan(table,rows,row){var arr=[],r=table.tHead.rows,c=r[row].cells;for(var i=0;i<c.length;i++){var cell=c[i];if(cell.colSpan>1){arr=arr.concat(checkCellColSpan(table,headerArr,row++));}else{if(table.tHead.length==1||(cell.rowSpan>1||!r[row+1])){arr.push(cell);}}}return arr;};function checkHeaderMetadata(cell){if(($.metadata)&&($(cell).metadata().sorter===false)){return true;};return false;}function checkHeaderOptions(table,i){if((table.config.headers[i])&&(table.config.headers[i].sorter===false)){return true;};return false;}function checkHeaderOptionsSortingLocked(table,i){if((table.config.headers[i])&&(table.config.headers[i].lockedOrder))return table.config.headers[i].lockedOrder;return false;}function applyWidget(table){var c=table.config.widgets;var l=c.length;for(var i=0;i<l;i++){getWidgetById(c[i]).format(table);}}function getWidgetById(name){var l=widgets.length;for(var i=0;i<l;i++){if(widgets[i].id.toLowerCase()==name.toLowerCase()){return widgets[i];}}};function formatSortingOrder(v){if(typeof(v)!="Number"){return(v.toLowerCase()=="desc")?1:0;}else{return(v==1)?1:0;}}function isValueInArray(v,a){var l=a.length;for(var i=0;i<l;i++){if(a[i][0]==v){return true;}}return false;}function setHeadersCss(table,$headers,list,css){$headers.removeClass(css[0]).removeClass(css[1]);var h=[];$headers.each(function(offset){if(!this.sortDisabled){h[this.column]=$(this);}});var l=list.length;for(var i=0;i<l;i++){h[list[i][0]].addClass(css[list[i][1]]);}}function fixColumnWidth(table,$headers){var c=table.config;if(c.widthFixed){var colgroup=$('<colgroup>');$("tr:first td",table.tBodies[0]).each(function(){colgroup.append($('<col>').css('width',$(this).width()));});$(table).prepend(colgroup);};}function updateHeaderSortCount(table,sortList){var c=table.config,l=sortList.length;for(var i=0;i<l;i++){var s=sortList[i],o=c.headerList[s[0]];o.count=s[1];o.count++;}}function multisort(table,sortList,cache){if(table.config.debug){var sortTime=new Date();}var dynamicExp="var sortWrapper = function(a,b) {",l=sortList.length;for(var i=0;i<l;i++){var c=sortList[i][0];var order=sortList[i][1];var s=(table.config.parsers[c].type=="text")?((order==0)?makeSortFunction("text","asc",c):makeSortFunction("text","desc",c)):((order==0)?makeSortFunction("numeric","asc",c):makeSortFunction("numeric","desc",c));var e="e"+i;dynamicExp+="var "+e+" = "+s;dynamicExp+="if("+e+") { return "+e+"; } ";dynamicExp+="else { ";}var orgOrderCol=cache.normalized[0].length-1;dynamicExp+="return a["+orgOrderCol+"]-b["+orgOrderCol+"];";for(var i=0;i<l;i++){dynamicExp+="}; ";}dynamicExp+="return 0; ";dynamicExp+="}; ";if(table.config.debug){benchmark("Evaling expression:"+dynamicExp,new Date());}eval(dynamicExp);cache.normalized.sort(sortWrapper);if(table.config.debug){benchmark("Sorting on "+sortList.toString()+" and dir "+order+" time:",sortTime);}return cache;};function makeSortFunction(type,direction,index){var a="a["+index+"]",b="b["+index+"]";if(type=='text'&&direction=='asc'){return"("+a+" == "+b+" ? 0 : ("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : ("+a+" < "+b+") ? -1 : 1 )));";}else if(type=='text'&&direction=='desc'){return"("+a+" == "+b+" ? 0 : ("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : ("+b+" < "+a+") ? -1 : 1 )));";}else if(type=='numeric'&&direction=='asc'){return"("+a+" === null && "+b+" === null) ? 0 :("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : "+a+" - "+b+"));";}else if(type=='numeric'&&direction=='desc'){return"("+a+" === null && "+b+" === null) ? 0 :("+a+" === null ? Number.POSITIVE_INFINITY : ("+b+" === null ? Number.NEGATIVE_INFINITY : "+b+" - "+a+"));";}};function makeSortText(i){return"((a["+i+"] < b["+i+"]) ? -1 : ((a["+i+"] > b["+i+"]) ? 1 : 0));";};function makeSortTextDesc(i){return"((b["+i+"] < a["+i+"]) ? -1 : ((b["+i+"] > a["+i+"]) ? 1 : 0));";};function makeSortNumeric(i){return"a["+i+"]-b["+i+"];";};function makeSortNumericDesc(i){return"b["+i+"]-a["+i+"];";};function sortText(a,b){if(table.config.sortLocaleCompare)return a.localeCompare(b);return((a<b)?-1:((a>b)?1:0));};function sortTextDesc(a,b){if(table.config.sortLocaleCompare)return b.localeCompare(a);return((b<a)?-1:((b>a)?1:0));};function sortNumeric(a,b){return a-b;};function sortNumericDesc(a,b){return b-a;};function getCachedSortType(parsers,i){return parsers[i].type;};this.construct=function(settings){return this.each(function(){if(!this.tHead||!this.tBodies)return;var $this,$document,$headers,cache,config,shiftDown=0,sortOrder;this.config={};config=$.extend(this.config,$.tablesorter.defaults,settings);$this=$(this);$.data(this,"tablesorter",config);$headers=buildHeaders(this);this.config.parsers=buildParserCache(this,$headers);cache=buildCache(this);var sortCSS=[config.cssDesc,config.cssAsc];fixColumnWidth(this);$headers.click(function(e){var totalRows=($this[0].tBodies[0]&&$this[0].tBodies[0].rows.length)||0;if(!this.sortDisabled&&totalRows>0){$this.trigger("sortStart");var $cell=$(this);var i=this.column;this.order=this.count++%2;if(this.lockedOrder)this.order=this.lockedOrder;if(!e[config.sortMultiSortKey]){config.sortList=[];if(config.sortForce!=null){var a=config.sortForce;for(var j=0;j<a.length;j++){if(a[j][0]!=i){config.sortList.push(a[j]);}}}config.sortList.push([i,this.order]);}else{if(isValueInArray(i,config.sortList)){for(var j=0;j<config.sortList.length;j++){var s=config.sortList[j],o=config.headerList[s[0]];if(s[0]==i){o.count=s[1];o.count++;s[1]=o.count%2;}}}else{config.sortList.push([i,this.order]);}};setTimeout(function(){setHeadersCss($this[0],$headers,config.sortList,sortCSS);appendToTable($this[0],multisort($this[0],config.sortList,cache));},1);return false;}}).mousedown(function(){if(config.cancelSelection){this.onselectstart=function(){return false};return false;}});$this.bind("update",function(){var me=this;setTimeout(function(){me.config.parsers=buildParserCache(me,$headers);cache=buildCache(me);},1);}).bind("updateCell",function(e,cell){var config=this.config;var pos=[(cell.parentNode.rowIndex-1),cell.cellIndex];cache.normalized[pos[0]][pos[1]]=config.parsers[pos[1]].format(getElementText(config,cell),cell);}).bind("sorton",function(e,list){$(this).trigger("sortStart");config.sortList=list;var sortList=config.sortList;updateHeaderSortCount(this,sortList);setHeadersCss(this,$headers,sortList,sortCSS);appendToTable(this,multisort(this,sortList,cache));}).bind("appendCache",function(){appendToTable(this,cache);}).bind("applyWidgetId",function(e,id){getWidgetById(id).format(this);}).bind("applyWidgets",function(){applyWidget(this);});if($.metadata&&($(this).metadata()&&$(this).metadata().sortlist)){config.sortList=$(this).metadata().sortlist;}if(config.sortList.length>0){$this.trigger("sorton",[config.sortList]);}applyWidget(this);});};this.addParser=function(parser){var l=parsers.length,a=true;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==parser.id.toLowerCase()){a=false;}}if(a){parsers.push(parser);};};this.addWidget=function(widget){widgets.push(widget);};this.formatFloat=function(s){var i=parseFloat(s);return(isNaN(i))?0:i;};this.formatInt=function(s){var i=parseInt(s);return(isNaN(i))?0:i;};this.isDigit=function(s,config){return/^[-+]?\d*$/.test($.trim(s.replace(/[,.']/g,'')));};this.clearTableBody=function(table){if($.browser.msie){function empty(){while(this.firstChild)this.removeChild(this.firstChild);}empty.apply(table.tBodies[0]);}else{table.tBodies[0].innerHTML="";}};}});$.fn.extend({tablesorter:$.tablesorter.construct});var ts=$.tablesorter;ts.addParser({id:"text",is:function(s){return true;},format:function(s){return $.trim(s.toLocaleLowerCase());},type:"text"});ts.addParser({id:"digit",is:function(s,table){var c=table.config;return $.tablesorter.isDigit(s,c);},format:function(s){return $.tablesorter.formatFloat(s);},type:"numeric"});ts.addParser({id:"currency",is:function(s){return/^[£$€?.]/.test(s);},format:function(s){return $.tablesorter.formatFloat(s.replace(new RegExp(/[£$€]/g),""));},type:"numeric"});ts.addParser({id:"ipAddress",is:function(s){return/^\d{2,3}[\.]\d{2,3}[\.]\d{2,3}[\.]\d{2,3}$/.test(s);},format:function(s){var a=s.split("."),r="",l=a.length;for(var i=0;i<l;i++){var item=a[i];if(item.length==2){r+="0"+item;}else{r+=item;}}return $.tablesorter.formatFloat(r);},type:"numeric"});ts.addParser({id:"url",is:function(s){return/^(https?|ftp|file):\/\/$/.test(s);},format:function(s){return jQuery.trim(s.replace(new RegExp(/(https?|ftp|file):\/\//),''));},type:"text"});ts.addParser({id:"isoDate",is:function(s){return/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(s);},format:function(s){return $.tablesorter.formatFloat((s!="")?new Date(s.replace(new RegExp(/-/g),"/")).getTime():"0");},type:"numeric"});ts.addParser({id:"percent",is:function(s){return/\%$/.test($.trim(s));},format:function(s){return $.tablesorter.formatFloat(s.replace(new RegExp(/%/g),""));},type:"numeric"});ts.addParser({id:"usLongDate",is:function(s){return s.match(new RegExp(/^[A-Za-z]{3,10}\.? [0-9]{1,2}, ([0-9]{4}|'?[0-9]{2}) (([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(AM|PM)))$/));},format:function(s){return $.tablesorter.formatFloat(new Date(s).getTime());},type:"numeric"});ts.addParser({id:"shortDate",is:function(s){return/\d{1,2}[\/\-]\d{1,2}[\/\-]\d{2,4}/.test(s);},format:function(s,table){var c=table.config;s=s.replace(/\-/g,"/");if(c.dateFormat=="us"){s=s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/,"$3/$1/$2");}else if(c.dateFormat=="uk"){s=s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{4})/,"$3/$2/$1");}else if(c.dateFormat=="dd/mm/yy"||c.dateFormat=="dd-mm-yy"){s=s.replace(/(\d{1,2})[\/\-](\d{1,2})[\/\-](\d{2})/,"$1/$2/$3");}return $.tablesorter.formatFloat(new Date(s).getTime());},type:"numeric"});ts.addParser({id:"time",is:function(s){return/^(([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(am|pm)))$/.test(s);},format:function(s){return $.tablesorter.formatFloat(new Date("2000/01/01 "+s).getTime());},type:"numeric"});ts.addParser({id:"metadata",is:function(s){return false;},format:function(s,table,cell){var c=table.config,p=(!c.parserMetadataName)?'sortValue':c.parserMetadataName;return $(cell).metadata()[p];},type:"numeric"});ts.addWidget({id:"zebra",format:function(table){if(table.config.debug){var time=new Date();}var $tr,row=-1,odd;$("tr:visible",table.tBodies[0]).each(function(i){$tr=$(this);if(!$tr.hasClass(table.config.cssChildRow))row++;odd=(row%2==0);$tr.removeClass(table.config.widgetZebra.css[odd?0:1]).addClass(table.config.widgetZebra.css[odd?1:0])});if(table.config.debug){$.tablesorter.benchmark("Applying Zebra widget",time);}}});})(jQuery);

$( function() { 
	$.tablesorter.addParser({ 
		// set a unique id 
		id: 'commadigit', 
		is: function(s) { 
			// return false so this parser is not auto detected 
			return /^[0-9]?[0-9,\.]*$/.test(s);
		}, 
		format: function(s) { 
			// format your data for normalization 
			 return $.tablesorter.formatFloat(s.replace(/,/g, ''));
		}, 
		// set type, either numeric or text 
		type: 'numeric' 
	}); 
});


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

/* Gothic_720 font */
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990 as an unpublished work by Bitstream Inc.  All rights reserved. 
 * Confidential.
 */
Cufon.registerFont({"w":183,"face":{"font-family":"Gothic 720","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-15 -347 360 85","underline-thickness":"23.4","underline-position":"-32.4","stemh":"24","stemv":"30","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":91},"!":{"d":"43,-261r34,0r-6,191r-22,0xm43,-46r34,0r0,46r-34,0r0,-46","w":119},"\"":{"d":"40,-252r0,97r-24,0r0,-97r24,0xm92,-252r0,97r-24,0r0,-97r24,0","w":108},"#":{"d":"162,-256r-28,80r45,0r29,-80r29,0r-29,80r53,0r-9,25r-53,0r-16,47r56,0r-9,25r-56,0r-29,80r-29,0r29,-80r-46,0r-28,80r-29,0r28,-80r-55,0r10,-25r54,0r16,-47r-58,0r9,-25r59,0r28,-80r29,0xm170,-151r-45,0r-17,47r46,0","w":276},"$":{"d":"81,-274r20,0r0,22v38,3,62,25,67,63r-27,0v-4,-24,-17,-37,-40,-40r0,84v91,18,93,138,0,147r0,29r-20,0r0,-29v-41,-3,-65,-25,-71,-69r27,0v5,27,19,41,44,44r0,-99v-45,-17,-66,-36,-66,-68v0,-35,24,-58,66,-61r0,-23xm81,-229v-25,3,-39,15,-39,36v0,20,12,31,39,40r0,-76xm101,-114r0,91v28,-4,42,-18,42,-43v0,-25,-13,-38,-42,-48"},"%":{"d":"65,-256v32,0,54,27,54,75v0,48,-22,74,-54,74v-33,0,-53,-26,-53,-74v0,-48,20,-75,53,-75xm201,-256r21,0r-132,261r-21,0xm65,-239v-19,0,-29,20,-29,58v0,38,10,56,29,56v19,0,29,-18,29,-56v0,-38,-10,-58,-29,-58xm226,-143v32,0,53,26,53,74v0,48,-21,74,-53,74v-33,0,-54,-26,-54,-74v0,-48,21,-74,54,-74xm226,-126v-19,0,-29,19,-29,57v0,38,10,57,29,57v19,0,29,-19,29,-57v0,-38,-10,-57,-29,-57","w":290},"&":{"d":"105,-176v22,-14,34,-27,34,-44v0,-15,-9,-25,-22,-25v-30,0,-24,42,-12,69xm116,-153v13,32,29,63,48,94v10,-13,18,-31,25,-53r24,8v-6,24,-17,47,-32,66v10,13,24,17,44,14r3,24v-28,10,-52,4,-69,-15v-50,44,-141,15,-141,-60v0,-36,20,-63,60,-85v-24,-45,-12,-107,39,-106v29,0,48,19,48,47v0,25,-16,47,-49,66xm90,-135v-57,23,-52,115,15,114v14,0,27,-5,38,-15v-21,-32,-39,-65,-53,-99","w":230},"\u2019":{"d":"29,-261r34,0v0,43,3,68,-21,95r-11,-9v9,-15,13,-28,13,-42r-15,0r0,-44","w":91},"(":{"d":"111,-267r0,28v-65,53,-65,213,0,266r0,28v-106,-58,-106,-264,0,-322","w":122},")":{"d":"11,-267v106,58,106,264,0,322r0,-28v65,-53,65,-213,0,-266r0,-28","w":122},"*":{"d":"75,-261r30,0r-9,56r51,-26r9,29r-56,9r40,39r-24,18r-26,-50r-25,50r-25,-18r41,-39r-57,-9r9,-29r51,26","w":180},"+":{"d":"162,-215r0,95r93,0r0,25r-93,0r0,95r-24,0r0,-95r-93,0r0,-25r93,0r0,-95r24,0","w":299},",":{"d":"29,-46r34,0v0,44,3,74,-21,101r-11,-10v9,-15,13,-30,13,-45r-15,0r0,-46","w":91},"-":{"d":"15,-107r72,0r0,29r-72,0r0,-29","w":102},".":{"d":"29,-46r34,0r0,46r-34,0r0,-46","w":91},"\/":{"d":"101,-261r20,0r-116,294r-20,0","w":118},"0":{"d":"92,-256v46,0,75,45,75,130v0,85,-29,131,-75,131v-46,0,-76,-46,-76,-131v0,-85,30,-130,76,-130xm92,-231v-29,0,-44,35,-44,105v0,70,15,106,44,106v30,0,43,-35,43,-106v0,-71,-13,-105,-43,-105"},"1":{"d":"94,-251r23,0r0,251r-29,0r0,-202v-16,14,-33,25,-53,32r0,-30v25,-11,44,-27,59,-51"},"2":{"d":"161,-185v0,69,-107,103,-116,157r116,0r0,28r-144,0v-5,-67,57,-97,97,-136v30,-28,22,-95,-25,-95v-37,0,-53,36,-36,66r-24,13v-24,-51,6,-104,63,-104v40,0,69,30,69,71"},"3":{"d":"114,-135v77,16,55,140,-25,140v-52,0,-79,-32,-72,-84r27,8v-2,32,14,53,41,53v27,0,45,-21,45,-52v0,-36,-21,-54,-63,-53r0,-23v36,2,57,-13,57,-44v0,-27,-15,-44,-39,-44v-25,-1,-40,20,-35,47r-27,6v-7,-45,18,-73,64,-75v74,-3,93,100,27,121"},"4":{"d":"113,-251r25,0r0,168r33,0r0,26r-33,0r0,57r-29,0r0,-57r-97,0r0,-29xm109,-202r-74,119r74,0r0,-119"},"5":{"d":"33,-251r117,0r0,27r-95,0r-4,76v43,-44,114,-8,114,61v0,58,-30,92,-78,92v-40,0,-64,-24,-70,-69r25,-7v4,32,21,50,46,50v27,0,46,-24,46,-61v0,-68,-70,-84,-86,-29r-24,-6"},"6":{"d":"164,-202r-26,6v-7,-25,-22,-37,-41,-37v-32,0,-47,32,-50,100v38,-63,121,-34,121,51v0,55,-28,87,-73,87v-51,0,-79,-41,-79,-121v0,-93,28,-140,82,-140v33,0,56,19,66,54xm94,-142v-25,0,-44,24,-44,63v0,37,19,61,43,61v27,0,44,-22,44,-61v0,-40,-17,-63,-43,-63"},"7":{"d":"14,-251r139,0r0,24v-34,74,-54,149,-59,227r-33,0v8,-73,31,-146,69,-222r-116,0r0,-29"},"8":{"d":"122,-137v30,13,45,36,45,68v0,44,-29,74,-75,74v-85,0,-102,-118,-30,-142v-66,-22,-45,-119,29,-119v76,0,98,95,31,119xm93,-124v-26,0,-45,20,-45,53v0,32,19,54,45,54v25,0,43,-22,43,-54v0,-32,-20,-53,-43,-53xm92,-235v-23,0,-41,18,-41,44v0,26,18,44,41,44v23,0,40,-18,40,-44v0,-26,-17,-44,-40,-44"},"9":{"d":"18,-50r26,-6v6,25,21,39,41,39v32,0,49,-34,50,-102v-37,63,-120,34,-120,-50v0,-54,30,-87,72,-87v51,0,78,44,78,129v0,88,-28,132,-83,132v-34,0,-56,-19,-64,-55xm89,-232v-26,0,-44,21,-44,59v0,80,88,84,87,5v0,-39,-20,-64,-43,-64"},":":{"d":"33,-46r34,0r0,46r-34,0r0,-46xm33,-181r34,0r0,46r-34,0r0,-46","w":100},";":{"d":"33,-46r34,0v0,44,3,74,-21,101r-11,-10v9,-15,13,-30,13,-45r-15,0r0,-46xm33,-181r34,0r0,46r-34,0r0,-46","w":100},"<":{"d":"253,-177r-170,70r170,69r0,27r-207,-85r0,-23r207,-85r0,27","w":299},"=":{"d":"255,-154r0,24r-210,0r0,-24r210,0xm255,-85r0,25r-210,0r0,-25r210,0","w":299},">":{"d":"253,-119r0,23r-207,85r0,-27r171,-69r-171,-70r0,-27","w":299},"?":{"d":"154,-203v0,60,-72,67,-63,135r-24,0v-10,-68,54,-83,54,-133v0,-26,-15,-42,-37,-42v-27,-1,-43,23,-41,62r-29,-13v1,-46,26,-73,69,-73v41,0,71,27,71,64xm62,-46r34,0r0,46r-34,0r0,-46","w":172},"@":{"d":"160,-40v39,1,53,-49,60,-85v-4,-21,-17,-32,-35,-32v-32,0,-58,35,-58,79v0,25,12,38,33,38xm342,-137v1,60,-39,114,-99,116v-24,0,-37,-9,-36,-30v-25,48,-108,38,-108,-28v0,-56,37,-97,84,-97v20,0,35,9,43,26r10,-20r23,0r-27,111v0,11,5,17,17,17v37,0,67,-48,67,-92v0,-60,-47,-102,-121,-102v-90,0,-151,66,-151,145v0,119,161,155,246,89r10,14v-99,81,-281,30,-281,-104v0,-99,81,-166,177,-166v81,0,145,49,146,121","w":360},"A":{"d":"103,-261r41,0r102,261r-35,0r-23,-63r-128,0r-24,63r-34,0xm123,-231r-52,138r106,0","w":247},"B":{"d":"35,-261v79,0,191,-11,191,62v0,29,-21,49,-58,57v45,7,69,32,69,69v0,49,-34,73,-103,73r-99,0r0,-261xm69,-232r0,78v53,1,129,3,123,-42v5,-44,-75,-36,-123,-36xm69,-126r0,97v57,0,139,8,133,-47v6,-50,-73,-53,-133,-50","w":253},"C":{"d":"231,-208r-27,18v-41,-81,-151,-50,-151,59v0,111,116,140,157,54r26,19v-23,43,-56,64,-103,64v-71,0,-116,-51,-116,-137v0,-85,44,-136,117,-136v45,0,78,20,97,59","w":245},"D":{"d":"35,-261r95,0v76,0,120,49,120,131v0,85,-42,130,-123,130r-92,0r0,-261xm70,-229r0,197v85,6,143,-10,143,-94v0,-93,-53,-111,-143,-103","w":266},"E":{"d":"35,-261r159,0r-8,29r-116,0r0,82r105,0r0,29r-105,0r0,91r119,0r8,30r-162,0r0,-261","w":210},"F":{"d":"35,-261r158,0r-9,29r-114,0r0,87r101,0r0,29r-101,0r0,116r-35,0r0,-261","w":196},"G":{"d":"226,-214r-23,22v-41,-79,-150,-43,-150,62v0,97,90,134,139,74r0,-47r-76,0r0,-31r112,0r0,89v-22,34,-53,51,-94,51v-70,0,-117,-51,-117,-136v0,-84,45,-136,120,-136v39,0,70,17,89,52","w":249},"H":{"d":"35,-261r35,0r0,111r136,0r0,-111r35,0r0,261r-35,0r0,-121r-136,0r0,121r-35,0r0,-261","w":275},"I":{"d":"38,-261r34,0r0,261r-34,0r0,-261","w":110},"J":{"d":"114,-261r35,0r0,186v0,52,-25,81,-71,81v-46,0,-71,-34,-65,-88r30,-16v-7,37,2,74,36,74v24,0,35,-17,35,-53r0,-184","w":187},"K":{"d":"35,-261r35,0r0,128r129,-128r43,0r-90,89r105,172r-39,0r-90,-147r-58,56r0,91r-35,0r0,-261","w":255},"L":{"d":"36,-261r35,0r0,230r116,0r0,31r-151,0r0,-261","w":192},"M":{"d":"36,-261r53,0r72,203r69,-203r54,0r0,261r-31,0r0,-237r-79,237r-25,0r-82,-237r0,237r-31,0r0,-261","w":319},"N":{"d":"35,-261r41,0r126,203r0,-203r33,0r0,261r-37,0r-129,-209r0,209r-34,0r0,-261","w":271},"O":{"d":"17,-130v0,-75,47,-137,119,-137v72,0,119,63,119,137v0,74,-47,136,-119,136v-71,0,-119,-61,-119,-136xm136,-235v-47,0,-83,42,-83,105v0,63,36,104,83,104v47,0,82,-41,82,-104v0,-63,-35,-105,-82,-105","w":271},"P":{"d":"35,-261v88,-2,191,-7,191,77v0,50,-31,79,-90,79r-66,0r0,105r-35,0r0,-261xm70,-231r0,97v56,1,120,6,120,-49v0,-54,-65,-49,-120,-48","w":240},"Q":{"d":"168,-35v31,-16,50,-50,50,-95v0,-63,-36,-105,-82,-105v-47,0,-83,41,-83,105v1,63,35,106,88,104v-8,-13,-18,-23,-28,-32r21,-14v12,9,24,22,34,37xm135,-266v133,0,161,213,51,260v12,14,23,23,35,30r-22,17v-15,-10,-28,-22,-40,-37v-89,15,-142,-53,-142,-135v0,-74,47,-135,118,-135","w":271},"R":{"d":"35,-261v86,-1,196,-12,196,72v0,35,-22,59,-59,67r65,122r-39,0r-62,-117r-66,0r0,117r-35,0r0,-261xm70,-232r0,86v52,-1,129,10,124,-42v5,-52,-71,-44,-124,-44","w":252},"S":{"d":"175,-69v0,-65,-145,-48,-145,-132v0,-38,33,-66,83,-66v39,0,70,15,92,45r-21,25v-20,-27,-44,-39,-72,-39v-28,0,-44,12,-44,32v-9,38,95,56,116,74v57,50,20,136,-68,136v-51,0,-86,-23,-102,-64r24,-22v15,37,42,56,80,56v36,0,57,-18,57,-45","w":235},"T":{"d":"1,-261r205,0r0,32r-85,0r0,229r-35,0r0,-229r-85,0r0,-32","w":207},"U":{"d":"30,-261r35,0r0,166v0,46,22,69,67,69v48,0,68,-23,68,-73r0,-162r34,0r0,166v0,67,-34,101,-102,101v-67,0,-102,-33,-102,-96r0,-171","w":264},"V":{"d":"3,-261r35,0r78,215r74,-215r35,0r-93,261r-33,0","w":228},"W":{"d":"6,-261r33,0r56,209r56,-209r35,0r57,209r55,-209r33,0r-70,261r-35,0r-58,-212r-56,212r-35,0","w":337},"X":{"d":"12,-261r37,0r62,94r60,-94r37,0r-78,122r92,139r-38,0r-73,-111r-68,111r-37,0r87,-139","w":227},"Y":{"d":"-4,-261r37,0r67,114r68,-114r37,0r-88,146r0,115r-35,0r0,-115","w":201},"Z":{"d":"17,-261r175,0r0,14r-134,218r137,0r0,29r-186,0r0,-14r135,-218r-127,0r0,-29","w":205},"[":{"d":"41,-261r77,0r0,25r-49,0r0,261r49,0r0,25r-77,0r0,-311","w":122},"\\":{"d":"-5,-261r20,0r117,294r-21,0","w":118},"]":{"d":"4,-261r77,0r0,311r-77,0r0,-25r49,0r0,-261r-49,0r0,-25","w":122},"^":{"d":"196,-256r90,98r-32,0r-74,-74r-75,74r-31,0r89,-98r33,0","w":360},"_":{"d":"180,60r0,25r-180,0r0,-25r180,0","w":180},"\u2018":{"d":"50,-261r11,10v-9,15,-13,27,-13,42r15,0r0,43r-34,0v0,-43,-3,-68,21,-95","w":91},"a":{"d":"16,-51v0,-58,71,-57,117,-76v3,-50,-74,-46,-87,-7r-23,-12v16,-28,40,-40,76,-40v77,0,64,71,64,140v0,20,3,26,20,25r0,22v-24,10,-49,0,-49,-29v-31,50,-118,42,-118,-23xm133,-107v-38,18,-86,8,-88,54v0,22,13,34,35,34v47,1,58,-38,53,-88","w":194},"b":{"d":"62,-31r0,31r-30,0r0,-261r30,0r0,111v41,-68,131,-34,131,60v0,95,-90,127,-131,59xm111,-163v-36,0,-49,37,-49,73v0,37,14,72,49,72v30,0,50,-26,50,-72v0,-47,-20,-73,-50,-73","w":208},"c":{"d":"173,-137r-26,13v-23,-65,-99,-43,-99,34v0,77,77,96,99,33r26,13v-15,33,-40,49,-75,49v-48,0,-82,-37,-82,-96v0,-100,124,-129,157,-46","w":187},"d":{"d":"147,-31v-41,68,-131,36,-131,-59v0,-95,90,-128,131,-60r0,-111r30,0r0,261r-30,0r0,-31xm147,-90v0,-38,-13,-73,-49,-73v-30,0,-50,26,-50,73v0,46,20,72,50,72v34,0,49,-35,49,-72","w":208},"e":{"d":"143,-104v0,-38,-18,-59,-48,-59v-30,0,-47,21,-48,59r96,0xm174,-81r-127,0v-6,69,78,84,100,29r22,13v-15,31,-38,44,-73,44v-51,0,-81,-33,-81,-95v0,-60,31,-96,79,-96v53,-1,82,38,80,105","w":190},"f":{"d":"106,-263r0,24v-37,-13,-40,21,-37,58r37,0r0,25r-37,0r0,156r-30,0r0,-156r-35,0r0,-25r35,0v-2,-44,-1,-89,43,-86v8,0,16,1,24,4","w":113},"g":{"d":"147,-31v-41,67,-131,37,-131,-59v0,-96,89,-128,131,-60r0,-31r30,0r0,184v0,42,-30,67,-83,67v-46,0,-71,-22,-71,-60r30,5v5,23,19,34,43,34v47,1,55,-33,51,-80xm147,-84v4,-44,-16,-79,-49,-79v-31,0,-50,27,-50,73v0,46,20,72,50,72v29,0,53,-35,49,-66","w":208},"h":{"d":"32,-261r30,0r0,115v13,-27,33,-40,61,-40v81,0,54,112,58,186r-31,0v-7,-57,23,-162,-37,-163v-67,-2,-49,97,-51,163r-30,0r0,-261","w":211},"i":{"d":"34,-257r30,0r0,39r-30,0r0,-39xm34,-181r30,0r0,181r-30,0r0,-181","w":98},"j":{"d":"34,-257r30,0r0,39r-30,0r0,-39xm34,-181r30,0r0,204v1,40,-26,53,-64,45r0,-25v23,4,34,-1,34,-28r0,-196","w":97},"k":{"d":"32,-261r30,0r0,159r77,-79r38,0r-57,58r64,123r-32,0r-53,-103r-37,36r0,67r-30,0r0,-261","w":190},"l":{"d":"34,-261r31,0r0,261r-31,0r0,-261","w":99},"m":{"d":"174,-143v24,-63,116,-59,116,25r0,118r-30,0v-6,-57,22,-162,-36,-163v-26,0,-48,24,-48,60r0,103r-31,0v-6,-57,22,-162,-36,-163v-25,0,-47,23,-47,60r0,103r-30,0r0,-181r30,0r0,35v21,-53,101,-54,112,3","w":320},"n":{"d":"123,-186v81,0,54,112,58,186r-31,0v-7,-57,23,-162,-37,-163v-67,-2,-49,97,-51,163r-30,0r0,-181r30,0r0,35v14,-27,33,-40,61,-40","w":211},"o":{"d":"100,-186v50,0,85,38,85,96v0,58,-36,95,-85,95v-50,0,-84,-37,-84,-95v0,-58,34,-96,84,-96xm100,-162v-32,0,-52,26,-52,72v0,46,20,71,52,71v31,0,53,-25,53,-71v0,-46,-21,-72,-53,-72","w":200},"p":{"d":"111,-163v-30,0,-49,25,-49,71v0,48,18,74,48,74v32,0,51,-26,51,-72v0,-48,-19,-73,-50,-73xm62,-31r0,96r-30,0r0,-246r30,0r0,31v41,-68,131,-34,131,60v0,95,-90,127,-131,59","w":208},"q":{"d":"147,-31v-41,68,-131,36,-131,-59v0,-95,90,-128,131,-60r0,-31r30,0r0,246r-30,0r0,-96xm147,-90v0,-38,-13,-73,-49,-73v-30,0,-50,26,-50,73v0,46,20,72,50,72v34,0,49,-35,49,-72","w":208},"r":{"d":"126,-184r0,32v-67,-17,-64,81,-62,152r-31,0r0,-181r29,0v2,16,-4,39,2,51v14,-41,28,-62,62,-54","w":129},"s":{"d":"159,-142r-25,8v-9,-39,-82,-42,-82,-5v0,18,17,22,47,31v41,13,63,25,63,57v0,33,-27,56,-73,56v-39,0,-63,-18,-75,-55r25,-11v8,29,25,44,53,44v25,0,41,-14,41,-31v0,-22,-20,-29,-57,-37v-75,-16,-65,-102,12,-101v35,0,57,14,71,44","w":177},"t":{"d":"67,-259r0,78r36,0r0,25r-36,0r0,109v-2,26,16,29,38,24r0,24v-35,10,-68,4,-68,-39r0,-118r-31,0r0,-25r31,0r0,-61","w":119},"u":{"d":"31,-181r30,0v7,58,-24,163,38,163v66,0,49,-97,51,-163r30,0r0,181r-30,0r0,-35v-14,27,-33,40,-61,40v-81,0,-54,-112,-58,-186","w":211},"v":{"d":"4,-181r31,0r51,145r52,-145r30,0r-66,181r-31,0","w":172},"w":{"d":"6,-181r30,0r42,144r45,-144r29,0r44,143r42,-143r29,0r-55,181r-30,0r-45,-143r-45,143r-30,0","w":273},"x":{"d":"11,-181r32,0r45,66r46,-66r32,0r-60,86r67,95r-32,0r-53,-75r-52,75r-32,0r66,-95","w":176},"y":{"d":"6,-181r30,0r57,151r47,-151r30,0r-67,205v-12,38,-41,52,-86,44r0,-27v36,7,55,-8,60,-38","w":176},"z":{"d":"22,-181r120,0r0,22r-91,133r94,0r0,26r-130,0r0,-23r90,-133r-83,0r0,-25","w":159},"{":{"d":"79,-153v-4,-68,0,-117,73,-107r0,27v-86,-17,-3,129,-78,140v44,8,35,52,35,99v0,34,9,42,43,41r0,26v-51,2,-76,-11,-73,-63v3,-48,4,-101,-49,-90r0,-27v33,4,51,-9,49,-46","w":180},"|":{"d":"103,-275r0,360r-26,0r0,-360r26,0","w":180},"}":{"d":"28,-260v51,-2,76,10,73,63v-3,48,-5,102,50,90r0,27v-53,-11,-53,39,-50,90v4,53,-22,65,-73,63r0,-26v85,17,3,-130,78,-140v-43,-8,-35,-53,-35,-100v0,-34,-10,-41,-43,-40r0,-27","w":180},"~":{"d":"31,-107v54,-47,111,-1,170,-1v22,0,43,-9,68,-27r0,27v-24,17,-45,25,-68,25v-35,0,-67,-24,-102,-24v-21,0,-42,10,-68,28r0,-28","w":299},"\u00a1":{"d":"43,-261r34,0r0,46r-34,0r0,-46xm49,-191r22,0r6,191r-34,0","w":119},"\u00a2":{"d":"126,-225r18,0r-15,46v17,8,31,19,41,42r-26,13v-8,-18,-15,-27,-23,-31r-43,132v31,11,54,-2,66,-34r26,13v-18,40,-53,57,-100,45r-15,48r-18,0r18,-54v-75,-40,-42,-207,58,-179xm105,-161v-60,-16,-80,89,-41,127"},"\u00a3":{"d":"170,-187r-27,-3v1,-26,-10,-42,-30,-42v-38,-1,-42,54,-30,96r58,0r0,22r-55,0v3,26,3,48,-5,69v20,16,35,25,47,25v18,0,27,-15,27,-43r22,-2v4,77,-63,89,-106,42v-12,35,-68,39,-70,-2v-2,-29,33,-44,59,-29v2,-23,1,-36,-3,-60r-47,0r0,-22r43,0v-16,-60,5,-120,60,-120v37,0,58,25,57,69xm54,-35v-13,-12,-38,-8,-38,9v0,8,5,13,14,13v10,0,18,-7,24,-22"},"\u00a5":{"d":"7,-98r0,-18r77,0r-21,-34r-56,0r0,-18r46,0r-49,-83r31,0r65,116r66,-116r30,0r-50,83r46,0r0,18r-57,0r-20,34r77,0r0,18r-80,0r0,98r-27,0r0,-98r-78,0","w":199},"\u00a7":{"d":"120,6v0,-47,-109,-99,-99,-142v0,-24,15,-40,41,-42v-38,-31,-22,-90,33,-89v24,0,43,12,57,36r-18,14v-10,-19,-23,-28,-40,-28v-17,0,-28,10,-28,24v2,38,111,96,99,135v0,25,-16,40,-44,41v40,35,28,101,-30,102v-27,0,-45,-13,-60,-40r20,-14v11,22,23,32,40,32v17,0,29,-12,29,-29xm140,-84v1,-24,-53,-76,-74,-76v-12,0,-20,9,-20,22v-2,24,54,76,74,76v12,0,20,-9,20,-22","w":185},"\u00a4":{"d":"64,-214v25,-20,65,-20,90,0r36,-36r14,14r-36,36v20,25,20,63,0,89r36,36r-14,14r-36,-36v-24,19,-65,21,-90,0r-36,36r-14,-14r36,-36v-17,-20,-20,-67,0,-89r-36,-36r14,-14xm163,-156v0,-29,-24,-53,-54,-53v-30,0,-53,24,-53,53v0,30,23,54,53,54v30,0,54,-24,54,-54","w":218},"'":{"d":"40,-252r0,97r-24,0r0,-97r24,0","w":55},"\u201c":{"d":"50,-261r11,10v-9,15,-13,27,-13,42r15,0r0,43r-34,0v0,-43,-3,-68,21,-95xm117,-261r11,10v-9,15,-13,27,-13,42r15,0r0,43r-34,0v0,-43,-3,-68,21,-95","w":155},"\u00ab":{"d":"69,-145r29,0r-44,55r44,54r-29,0r-43,-54xm130,-145r29,0r-43,55r43,54r-29,0r-43,-54"},"\u2013":{"d":"0,-105r180,0r0,24r-180,0r0,-24","w":180},"\u00b7":{"d":"46,-150v12,0,21,10,21,22v0,12,-9,21,-21,21v-11,0,-22,-10,-22,-21v0,-12,10,-22,22,-22","w":91},"\u00b6":{"d":"168,-245r-21,0r0,245r-19,0r0,-245r-32,0r0,245r-19,0r0,-138v-41,-2,-65,-26,-65,-61v0,-36,27,-61,69,-61r87,0r0,15","w":180},"\u201d":{"d":"29,-261r34,0v0,43,3,68,-21,95r-11,-9v9,-16,13,-28,13,-42r-15,0r0,-44xm96,-261r34,0v0,43,3,68,-21,95r-11,-9v9,-15,13,-28,13,-42r-15,0r0,-44","w":155},"\u00bb":{"d":"24,-145r29,0r44,55r-44,54r-29,0r44,-54xm86,-145r29,0r43,55r-43,54r-29,0r44,-54"},"\u2026":{"d":"43,-46r34,0r0,46r-34,0r0,-46xm163,-46r34,0r0,46r-34,0r0,-46xm283,-46r34,0r0,46r-34,0r0,-46","w":360},"\u00bf":{"d":"76,-260r34,0r0,46r-34,0r0,-46xm18,-58v-1,-63,73,-68,63,-135r24,0v11,69,-54,82,-54,134v0,24,17,41,38,41v28,1,41,-23,40,-61r29,12v-1,46,-27,73,-69,73v-41,0,-71,-27,-71,-64","w":172},"`":{"d":"46,-267r30,0r37,61r-18,0","w":180},"\u00b4":{"d":"104,-267r30,0r-49,61r-18,0","w":180},"\u00af":{"d":"45,-244r90,0r0,21r-90,0r0,-21","w":180},"\u00a8":{"d":"46,-249r29,0r0,32r-29,0r0,-32xm105,-249r29,0r0,32r-29,0r0,-32","w":180},"\u00b8":{"d":"84,0r12,0r0,19v26,-1,42,9,42,29v0,38,-50,37,-84,27r0,-16v26,5,60,15,64,-9v1,-14,-15,-18,-34,-17r0,-33","w":180},"\u2014":{"d":"0,-105r360,0r0,24r-360,0r0,-24","w":360},"\u00c6":{"d":"121,-261r187,0r-9,29r-113,0r0,82r102,0r0,29r-102,0r0,91r115,0r7,30r-157,0r0,-66r-91,0r-32,66r-34,0xm140,-232r-65,136r76,0r0,-136r-11,0","w":327},"\u00aa":{"d":"12,-170v0,-42,55,-39,88,-53v1,-35,-55,-33,-66,-5r-16,-8v12,-20,29,-28,56,-28v57,0,48,47,48,97v0,15,3,19,16,18r0,16v-19,6,-37,0,-38,-21v-22,35,-88,30,-88,-16xm100,-210v-27,13,-64,7,-66,39v0,15,9,24,26,24v34,0,44,-26,40,-63","w":145},"\u00d8":{"d":"42,-43v-57,-80,-12,-223,93,-223v32,0,59,11,80,32r37,-42r16,15r-39,43v58,81,15,223,-93,223v-31,0,-58,-11,-80,-32r-35,40r-16,-14xm193,-210v-55,-58,-143,-13,-140,78v0,26,5,48,14,62xm205,-192r-127,140v54,60,141,14,141,-79v0,-22,-5,-43,-14,-61","w":271},"\u00ba":{"d":"75,-264v37,0,64,26,64,66v0,40,-27,67,-64,67v-37,0,-63,-27,-63,-67v0,-40,26,-66,63,-66xm75,-248v-24,0,-39,18,-39,50v0,32,15,50,39,50v24,0,40,-18,40,-50v0,-32,-16,-50,-40,-50","w":150},"\u00e6":{"d":"15,-50v-1,-63,73,-57,118,-77v3,-50,-74,-46,-87,-7r-23,-12v18,-46,104,-55,132,-13v52,-56,148,-18,136,78r-128,1v-5,68,79,82,101,28r22,13v-25,59,-119,58,-144,2v-23,58,-126,58,-127,-13xm133,-107v-38,18,-86,8,-88,54v0,22,13,34,35,34v47,1,58,-38,53,-88xm163,-104r96,0v0,-38,-17,-59,-47,-59v-30,0,-49,21,-49,59","w":304},"\u00f8":{"d":"181,-193r13,12r-26,29v41,57,5,157,-68,157v-22,0,-41,-8,-56,-22r-26,29r-14,-12r28,-30v-38,-58,-5,-156,68,-156v22,0,41,7,56,21xm147,-130r-84,93v33,39,91,12,91,-51v0,-14,-2,-29,-7,-42xm137,-146v-37,-36,-95,-9,-90,56v0,13,3,25,7,37","w":200},"\u00df":{"d":"143,-151v37,11,53,36,53,78v0,88,-121,110,-119,20r27,0v-1,22,8,34,26,34v23,0,36,-19,36,-54v0,-42,-17,-61,-57,-64r0,-27v30,-2,45,-14,45,-39v0,-24,-17,-40,-45,-40v-31,0,-47,17,-47,47r0,196r-30,0r0,-192v0,-49,26,-75,76,-75v78,0,104,95,35,116","w":211},"\u00c1":{"d":"103,-261r41,0r102,261r-35,0r-23,-63r-128,0r-24,63r-34,0xm123,-231r-52,138r106,0xm138,-347r30,0r-49,61r-18,0","w":247},"\u00c2":{"d":"109,-347r29,0r36,62r-18,0r-32,-44r-32,44r-18,0xm103,-261r41,0r102,261r-35,0r-23,-63r-128,0r-24,63r-34,0xm123,-231r-52,138r106,0","w":247},"\u00c4":{"d":"103,-261r41,0r102,261r-35,0r-23,-63r-128,0r-24,63r-34,0xm123,-231r-52,138r106,0xm80,-329r29,0r0,32r-29,0r0,-32xm139,-329r29,0r0,32r-29,0r0,-32","w":247},"\u00c0":{"d":"103,-261r41,0r102,261r-35,0r-23,-63r-128,0r-24,63r-34,0xm123,-231r-52,138r106,0xm80,-347r30,0r37,61r-18,0","w":247},"\u00c5":{"d":"129,-257r17,0r100,257r-35,0r-23,-63r-128,0r-24,63r-34,0r101,-257r15,0v-51,-7,-47,-86,5,-86v52,0,58,76,6,86xm123,-231r-52,138r106,0xm123,-326v-14,0,-25,11,-25,25v0,14,11,25,25,25v14,0,26,-11,26,-25v0,-14,-12,-25,-26,-25","w":247},"\u00c3":{"d":"160,-333r15,0v-8,41,-39,36,-71,26v-8,0,-13,4,-17,12r-14,0v6,-41,38,-34,70,-25v8,0,13,-5,17,-13xm103,-261r41,0r102,261r-35,0r-23,-63r-128,0r-24,63r-34,0xm123,-231r-52,138r106,0","w":247},"\u00c7":{"d":"231,-208r-27,18v-41,-81,-151,-50,-151,59v0,111,116,140,157,54r26,19v-23,43,-56,64,-103,64v-71,0,-116,-51,-116,-137v0,-85,44,-136,117,-136v45,0,78,20,97,59xm117,0r12,0r0,19v26,-1,42,9,42,29v0,38,-50,37,-84,27r0,-16v26,5,60,15,64,-9v1,-14,-15,-18,-34,-17r0,-33","w":245},"\u00c9":{"d":"35,-261r159,0r-8,29r-116,0r0,82r105,0r0,29r-105,0r0,91r119,0r8,30r-162,0r0,-261xm119,-347r30,0r-49,61r-18,0","w":210},"\u00ca":{"d":"91,-347r29,0r35,62r-17,0r-33,-44r-32,44r-17,0xm35,-261r159,0r-8,29r-116,0r0,82r105,0r0,29r-105,0r0,91r119,0r8,30r-162,0r0,-261","w":210},"\u00cb":{"d":"35,-261r159,0r-8,29r-116,0r0,82r105,0r0,29r-105,0r0,91r119,0r8,30r-162,0r0,-261xm61,-329r29,0r0,32r-29,0r0,-32xm120,-329r29,0r0,32r-29,0r0,-32","w":210},"\u00c8":{"d":"35,-261r159,0r-8,29r-116,0r0,82r105,0r0,29r-105,0r0,91r119,0r8,30r-162,0r0,-261xm61,-347r30,0r37,61r-18,0","w":210},"\u00cd":{"d":"38,-261r34,0r0,261r-34,0r0,-261xm69,-347r30,0r-49,61r-18,0","w":110},"\u00ce":{"d":"41,-347r29,0r35,62r-18,0r-32,-44r-32,44r-17,0xm38,-261r34,0r0,261r-34,0r0,-261","w":110},"\u00cf":{"d":"38,-261r34,0r0,261r-34,0r0,-261xm11,-329r29,0r0,32r-29,0r0,-32xm70,-329r29,0r0,32r-29,0r0,-32","w":110},"\u00cc":{"d":"38,-261r34,0r0,261r-34,0r0,-261xm11,-347r30,0r37,61r-18,0","w":110},"\u00d1":{"d":"172,-333r14,0v-8,41,-38,36,-70,26v-8,0,-13,4,-17,12r-14,0v6,-41,38,-34,70,-25v8,0,13,-5,17,-13xm35,-261r41,0r126,203r0,-203r33,0r0,261r-37,0r-129,-209r0,209r-34,0r0,-261","w":271},"\u00d3":{"d":"17,-130v0,-75,47,-137,119,-137v72,0,119,63,119,137v0,74,-47,136,-119,136v-71,0,-119,-61,-119,-136xm136,-235v-47,0,-83,42,-83,105v0,63,36,104,83,104v47,0,82,-41,82,-104v0,-63,-35,-105,-82,-105xm150,-347r30,0r-49,61r-18,0","w":271},"\u00d4":{"d":"121,-347r29,0r35,62r-17,0r-32,-44r-32,44r-18,0xm17,-130v0,-75,47,-137,119,-137v72,0,119,63,119,137v0,74,-47,136,-119,136v-71,0,-119,-61,-119,-136xm136,-235v-47,0,-83,42,-83,105v0,63,36,104,83,104v47,0,82,-41,82,-104v0,-63,-35,-105,-82,-105","w":271},"\u00d6":{"d":"17,-130v0,-75,47,-137,119,-137v72,0,119,63,119,137v0,74,-47,136,-119,136v-71,0,-119,-61,-119,-136xm136,-235v-47,0,-83,42,-83,105v0,63,36,104,83,104v47,0,82,-41,82,-104v0,-63,-35,-105,-82,-105xm92,-329r29,0r0,32r-29,0r0,-32xm151,-329r29,0r0,32r-29,0r0,-32","w":271},"\u00d2":{"d":"17,-130v0,-75,47,-137,119,-137v72,0,119,63,119,137v0,74,-47,136,-119,136v-71,0,-119,-61,-119,-136xm136,-235v-47,0,-83,42,-83,105v0,63,36,104,83,104v47,0,82,-41,82,-104v0,-63,-35,-105,-82,-105xm92,-347r30,0r37,61r-18,0","w":271},"\u00d5":{"d":"172,-333r14,0v-8,41,-38,36,-70,26v-8,0,-13,4,-17,12r-14,0v6,-41,38,-34,70,-25v8,0,13,-5,17,-13xm17,-130v0,-75,47,-137,119,-137v72,0,119,63,119,137v0,74,-47,136,-119,136v-71,0,-119,-61,-119,-136xm136,-235v-47,0,-83,42,-83,105v0,63,36,104,83,104v47,0,82,-41,82,-104v0,-63,-35,-105,-82,-105","w":271},"\u00da":{"d":"30,-261r35,0r0,166v0,46,22,69,67,69v48,0,68,-23,68,-73r0,-162r34,0r0,166v0,67,-34,101,-102,101v-67,0,-102,-33,-102,-96r0,-171xm146,-347r30,0r-49,61r-18,0","w":264},"\u00db":{"d":"118,-347r29,0r35,62r-17,0r-33,-44r-32,44r-17,0xm30,-261r35,0r0,166v0,46,22,69,67,69v48,0,68,-23,68,-73r0,-162r34,0r0,166v0,67,-34,101,-102,101v-67,0,-102,-33,-102,-96r0,-171","w":264},"\u00dc":{"d":"30,-261r35,0r0,166v0,46,22,69,67,69v48,0,68,-23,68,-73r0,-162r34,0r0,166v0,67,-34,101,-102,101v-67,0,-102,-33,-102,-96r0,-171xm88,-329r29,0r0,32r-29,0r0,-32xm147,-329r29,0r0,32r-29,0r0,-32","w":264},"\u00d9":{"d":"30,-261r35,0r0,166v0,46,22,69,67,69v48,0,68,-23,68,-73r0,-162r34,0r0,166v0,67,-34,101,-102,101v-67,0,-102,-33,-102,-96r0,-171xm88,-347r30,0r37,61r-18,0","w":264},"\u00e1":{"d":"16,-51v0,-58,71,-57,117,-76v3,-50,-74,-46,-87,-7r-23,-12v16,-28,40,-40,76,-40v77,0,64,71,64,140v0,20,3,26,20,25r0,22v-24,10,-49,0,-49,-29v-31,50,-118,42,-118,-23xm133,-107v-38,18,-86,8,-88,54v0,22,13,34,35,34v47,1,58,-38,53,-88xm111,-267r30,0r-49,61r-18,0","w":194},"\u00e2":{"d":"83,-267r29,0r35,62r-18,0r-32,-44r-32,44r-17,0xm16,-51v0,-58,71,-57,117,-76v3,-50,-74,-46,-87,-7r-23,-12v16,-28,40,-40,76,-40v77,0,64,71,64,140v0,20,3,26,20,25r0,22v-24,10,-49,0,-49,-29v-31,50,-118,42,-118,-23xm133,-107v-38,18,-86,8,-88,54v0,22,13,34,35,34v47,1,58,-38,53,-88","w":194},"\u00e4":{"d":"16,-51v0,-58,71,-57,117,-76v3,-50,-74,-46,-87,-7r-23,-12v16,-28,40,-40,76,-40v77,0,64,71,64,140v0,20,3,26,20,25r0,22v-24,10,-49,0,-49,-29v-31,50,-118,42,-118,-23xm133,-107v-38,18,-86,8,-88,54v0,22,13,34,35,34v47,1,58,-38,53,-88xm53,-249r29,0r0,32r-29,0r0,-32xm112,-249r29,0r0,32r-29,0r0,-32","w":194},"\u00e0":{"d":"16,-51v0,-58,71,-57,117,-76v3,-50,-74,-46,-87,-7r-23,-12v16,-28,40,-40,76,-40v77,0,64,71,64,140v0,20,3,26,20,25r0,22v-24,10,-49,0,-49,-29v-31,50,-118,42,-118,-23xm133,-107v-38,18,-86,8,-88,54v0,22,13,34,35,34v47,1,58,-38,53,-88xm53,-267r30,0r37,61r-18,0","w":194},"\u00e5":{"d":"94,-285v24,0,43,19,43,43v0,24,-19,43,-43,43v-24,0,-43,-19,-43,-43v0,-24,19,-43,43,-43xm94,-267v-14,0,-25,11,-25,25v0,14,11,25,25,25v14,0,26,-11,26,-25v0,-14,-12,-25,-26,-25xm16,-51v0,-58,71,-57,117,-76v3,-50,-74,-46,-87,-7r-23,-12v16,-28,40,-40,76,-40v77,0,64,71,64,140v0,20,3,26,20,25r0,22v-24,10,-49,0,-49,-29v-31,50,-118,42,-118,-23xm133,-107v-38,18,-86,8,-88,54v0,22,13,34,35,34v47,1,58,-38,53,-88","w":194},"\u00e3":{"d":"134,-253r14,0v-7,41,-39,37,-71,26v-8,0,-12,4,-16,12r-15,0v7,-41,39,-34,71,-25v8,0,13,-5,17,-13xm16,-51v0,-58,71,-57,117,-76v3,-50,-74,-46,-87,-7r-23,-12v16,-28,40,-40,76,-40v77,0,64,71,64,140v0,20,3,26,20,25r0,22v-24,10,-49,0,-49,-29v-31,50,-118,42,-118,-23xm133,-107v-38,18,-86,8,-88,54v0,22,13,34,35,34v47,1,58,-38,53,-88","w":194},"\u00e7":{"d":"173,-137r-26,13v-23,-65,-99,-43,-99,34v0,77,77,96,99,33r26,13v-15,33,-40,49,-75,49v-48,0,-82,-37,-82,-96v0,-100,124,-129,157,-46xm88,0r12,0r0,19v26,-1,42,9,42,29v0,38,-50,37,-84,27r0,-16v26,5,60,15,64,-9v1,-14,-15,-18,-34,-17r0,-33","w":187},"\u00e9":{"d":"143,-104v0,-38,-18,-59,-48,-59v-30,0,-47,21,-48,59r96,0xm174,-81r-127,0v-6,69,78,84,100,29r22,13v-15,31,-38,44,-73,44v-51,0,-81,-33,-81,-95v0,-60,31,-96,79,-96v53,-1,82,38,80,105xm109,-267r30,0r-49,61r-18,0","w":190},"\u00ea":{"d":"81,-267r28,0r36,62r-18,0r-32,-44r-32,44r-18,0xm143,-104v0,-38,-18,-59,-48,-59v-30,0,-47,21,-48,59r96,0xm174,-81r-127,0v-6,69,78,84,100,29r22,13v-15,31,-38,44,-73,44v-51,0,-81,-33,-81,-95v0,-60,31,-96,79,-96v53,-1,82,38,80,105","w":190},"\u00eb":{"d":"143,-104v0,-38,-18,-59,-48,-59v-30,0,-47,21,-48,59r96,0xm174,-81r-127,0v-6,69,78,84,100,29r22,13v-15,31,-38,44,-73,44v-51,0,-81,-33,-81,-95v0,-60,31,-96,79,-96v53,-1,82,38,80,105xm51,-249r29,0r0,32r-29,0r0,-32xm110,-249r29,0r0,32r-29,0r0,-32","w":190},"\u00e8":{"d":"143,-104v0,-38,-18,-59,-48,-59v-30,0,-47,21,-48,59r96,0xm174,-81r-127,0v-6,69,78,84,100,29r22,13v-15,31,-38,44,-73,44v-51,0,-81,-33,-81,-95v0,-60,31,-96,79,-96v53,-1,82,38,80,105xm51,-267r30,0r37,61r-18,0","w":190},"\u00ed":{"d":"34,-181r30,0r0,181r-30,0r0,-181xm63,-267r30,0r-49,61r-18,0","w":98},"\u00ee":{"d":"35,-267r29,0r35,62r-18,0r-32,-44r-32,44r-17,0xm34,-181r30,0r0,181r-30,0r0,-181","w":98},"\u00ef":{"d":"34,-181r30,0r0,181r-30,0r0,-181xm5,-249r29,0r0,32r-29,0r0,-32xm64,-249r29,0r0,32r-29,0r0,-32","w":98},"\u00ec":{"d":"34,-181r30,0r0,181r-30,0r0,-181xm5,-267r30,0r37,61r-18,0","w":98},"\u00f1":{"d":"142,-253r15,0v-8,40,-39,37,-71,26v-8,0,-13,4,-17,12r-14,0v6,-41,38,-34,70,-25v8,0,13,-5,17,-13xm123,-186v81,0,54,112,58,186r-31,0v-7,-57,23,-162,-37,-163v-67,-2,-49,97,-51,163r-30,0r0,-181r30,0r0,35v14,-27,33,-40,61,-40","w":211},"\u00f3":{"d":"100,-186v50,0,85,38,85,96v0,58,-36,95,-85,95v-50,0,-84,-37,-84,-95v0,-58,34,-96,84,-96xm100,-162v-32,0,-52,26,-52,72v0,46,20,71,52,71v31,0,53,-25,53,-71v0,-46,-21,-72,-53,-72xm114,-267r30,0r-49,61r-18,0","w":200},"\u00f4":{"d":"86,-267r28,0r36,62r-18,0r-32,-44r-32,44r-18,0xm100,-186v50,0,85,38,85,96v0,58,-36,95,-85,95v-50,0,-84,-37,-84,-95v0,-58,34,-96,84,-96xm100,-162v-32,0,-52,26,-52,72v0,46,20,71,52,71v31,0,53,-25,53,-71v0,-46,-21,-72,-53,-72","w":200},"\u00f6":{"d":"100,-186v50,0,85,38,85,96v0,58,-36,95,-85,95v-50,0,-84,-37,-84,-95v0,-58,34,-96,84,-96xm100,-162v-32,0,-52,26,-52,72v0,46,20,71,52,71v31,0,53,-25,53,-71v0,-46,-21,-72,-53,-72xm56,-249r29,0r0,32r-29,0r0,-32xm115,-249r29,0r0,32r-29,0r0,-32","w":200},"\u00f2":{"d":"100,-186v50,0,85,38,85,96v0,58,-36,95,-85,95v-50,0,-84,-37,-84,-95v0,-58,34,-96,84,-96xm100,-162v-32,0,-52,26,-52,72v0,46,20,71,52,71v31,0,53,-25,53,-71v0,-46,-21,-72,-53,-72xm56,-267r30,0r37,61r-18,0","w":200},"\u00f5":{"d":"136,-253r15,0v-7,41,-39,37,-71,26v-8,0,-12,4,-16,12r-15,0v7,-41,39,-34,71,-25v8,0,12,-5,16,-13xm100,-186v50,0,85,38,85,96v0,58,-36,95,-85,95v-50,0,-84,-37,-84,-95v0,-58,34,-96,84,-96xm100,-162v-32,0,-52,26,-52,72v0,46,20,71,52,71v31,0,53,-25,53,-71v0,-46,-21,-72,-53,-72","w":200},"\u00fa":{"d":"31,-181r30,0v7,58,-24,163,38,163v66,0,49,-97,51,-163r30,0r0,181r-30,0r0,-35v-14,27,-33,40,-61,40v-81,0,-54,-112,-58,-186xm120,-267r30,0r-49,61r-18,0","w":211},"\u00fb":{"d":"91,-267r29,0r36,62r-18,0r-32,-44r-32,44r-18,0xm31,-181r30,0v7,58,-24,163,38,163v66,0,49,-97,51,-163r30,0r0,181r-30,0r0,-35v-14,27,-33,40,-61,40v-81,0,-54,-112,-58,-186","w":211},"\u00fc":{"d":"31,-181r30,0v7,58,-24,163,38,163v66,0,49,-97,51,-163r30,0r0,181r-30,0r0,-35v-14,27,-33,40,-61,40v-81,0,-54,-112,-58,-186xm62,-249r29,0r0,32r-29,0r0,-32xm121,-249r29,0r0,32r-29,0r0,-32","w":211},"\u00f9":{"d":"31,-181r30,0v7,58,-24,163,38,163v66,0,49,-97,51,-163r30,0r0,181r-30,0r0,-35v-14,27,-33,40,-61,40v-81,0,-54,-112,-58,-186xm62,-267r30,0r37,61r-18,0","w":211},"\u00ff":{"d":"6,-181r30,0r57,151r47,-151r30,0r-67,205v-12,38,-41,52,-86,44r0,-27v36,7,55,-8,60,-38xm44,-249r29,0r0,32r-29,0r0,-32xm103,-249r29,0r0,32r-29,0r0,-32","w":176},"\u2122":{"d":"122,-256r0,14r-30,0r0,80r-19,0r0,-80r-31,0r0,-14r80,0xm169,-256r27,67r25,-67r26,0r0,94r-17,0r0,-78r-29,78r-10,0r-31,-78r0,78r-17,0r0,-94r26,0","w":299},"\u00a9":{"d":"21,-128v0,-67,59,-129,129,-129v70,0,130,59,130,129v0,70,-63,130,-130,130v-67,0,-129,-62,-129,-130xm150,-15v59,0,112,-51,112,-113v0,-62,-52,-112,-112,-112v-62,0,-113,53,-113,112v0,59,54,113,113,113xm185,-159v-3,-18,-16,-29,-36,-29v-24,0,-40,21,-40,60v0,63,66,80,78,28r25,0v-2,31,-27,51,-62,51v-42,0,-69,-29,-69,-80v0,-87,119,-105,130,-30r-26,0","w":299},"\u00ac":{"d":"255,-151r0,88r-24,0r0,-64r-186,0r0,-24r210,0","w":299},"\u00ae":{"d":"21,-128v0,-66,58,-129,129,-129v69,0,130,59,130,129v0,71,-63,130,-130,130v-69,0,-129,-61,-129,-130xm149,-15v60,0,113,-51,113,-112v0,-62,-51,-113,-112,-113v-61,0,-113,54,-113,112v0,58,54,113,112,113xm98,-204v50,-1,117,-4,117,41v0,21,-13,35,-34,39r33,67r-31,0r-30,-63r-27,0r0,63r-28,0r0,-147xm186,-161v3,-25,-31,-26,-60,-25r0,49v28,1,63,1,60,-24","w":299},"\u00d0":{"d":"39,-261r95,0v76,0,119,49,119,131v0,85,-42,130,-123,130r-91,0r0,-123r-38,0r0,-25r38,0r0,-113xm74,-229r0,81r58,0r0,25r-58,0r0,91v85,6,142,-10,142,-94v0,-92,-53,-111,-142,-103","w":268},"\u00de":{"d":"35,-261r35,0r0,50v81,-6,158,7,158,77v0,49,-33,79,-87,79r-71,0r0,55r-35,0r0,-261xm70,-181r0,96v56,1,121,7,121,-50v0,-50,-67,-48,-121,-46","w":243},"\u00dd":{"d":"-4,-261r37,0r67,114r68,-114r37,0r-88,146r0,115r-35,0r0,-115xm115,-347r30,0r-49,61r-18,0","w":201},"\u00a6":{"d":"103,-252r0,134r-26,0r0,-134r26,0xm103,-72r0,134r-26,0r0,-134r26,0","w":180},"\u00b0":{"d":"59,-256v28,0,51,23,51,51v0,27,-22,50,-51,50v-28,0,-50,-22,-50,-50v0,-28,22,-51,50,-51xm93,-206v0,-19,-15,-33,-34,-33v-19,0,-34,14,-34,33v0,19,15,35,34,35v19,0,34,-16,34,-35","w":118},"\u00f7":{"d":"150,-194v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22xm255,-120r0,25r-210,0r0,-25r210,0xm150,-64v12,0,22,10,22,22v0,12,-10,21,-22,21v-13,0,-22,-9,-22,-21v0,-12,10,-22,22,-22","w":299},"\u00f0":{"d":"100,-157v-32,0,-52,24,-52,68v0,44,20,70,52,70v32,0,53,-25,53,-69v0,-44,-21,-69,-53,-69xm102,-226v-9,-10,-18,-18,-26,-26r17,-15v13,10,25,22,35,32r49,-17r7,14r-45,17v31,44,46,87,46,129v0,61,-34,97,-85,97v-50,0,-84,-37,-84,-94v0,-73,69,-116,123,-76v-7,-18,-16,-33,-27,-48r-54,19r-6,-15","w":200},"\u00d7":{"d":"151,-125r83,-82r17,17r-83,83r83,82r-17,17r-83,-82r-82,82r-18,-17r83,-82r-83,-83r18,-17","w":299},"\u00bd":{"d":"59,-251r15,0r0,140r-19,0r0,-113v-10,8,-20,14,-33,18r0,-16v15,-6,28,-16,37,-29xm214,-254r21,0r-159,257r-21,0xm277,-104v0,39,-66,58,-73,88r73,0r0,16r-91,0v-7,-51,73,-56,73,-103v0,-16,-11,-26,-27,-26v-22,-1,-34,18,-23,36r-15,8v-15,-30,5,-59,40,-58v25,0,43,16,43,39","w":291},"\u00bc":{"d":"59,-251r15,0r0,140r-19,0r0,-113v-10,8,-20,14,-33,18r0,-16v15,-6,28,-16,37,-29xm214,-254r21,0r-159,257r-21,0xm247,-140r15,0r0,94r21,0r0,14r-21,0r0,32r-18,0r0,-32r-61,0r0,-16xm244,-113r-46,67r46,0r0,-67","w":291},"\u00b9":{"d":"62,-251r15,0r0,151r-19,0r0,-122v-10,9,-22,15,-35,19r0,-17v16,-6,29,-17,39,-31","w":120},"\u00b1":{"d":"162,-210r0,60r93,0r0,25r-93,0r0,59r-24,0r0,-59r-93,0r0,-25r93,0r0,-60r24,0xm255,-30r0,25r-210,0r0,-25r210,0","w":299},"\u00fe":{"d":"62,-31r0,96r-31,0r0,-326r31,0r0,111v41,-68,131,-34,131,60v0,95,-90,127,-131,59xm111,-163v-36,0,-49,37,-49,73v0,37,14,72,49,72v30,0,50,-26,50,-72v0,-47,-20,-73,-50,-73","w":208},"\u00be":{"d":"72,-186v49,11,34,78,-16,78v-34,0,-50,-17,-45,-47v5,3,17,0,17,9v0,16,10,25,25,25v17,0,29,-11,29,-29v0,-21,-13,-31,-40,-30v0,-6,-2,-14,6,-12v19,0,30,-9,30,-25v0,-15,-10,-25,-25,-25v-16,0,-25,12,-21,27r-18,3v-3,-26,12,-41,41,-42v46,-2,60,56,17,68xm214,-254r21,0r-159,257r-21,0xm247,-140r15,0r0,94r21,0r0,14r-21,0r0,32r-18,0r0,-32r-61,0r0,-16xm244,-113r-46,67r46,0r0,-67","w":290},"\u00b3":{"d":"75,-181v52,11,37,83,-16,83v-35,0,-53,-18,-48,-50v6,3,18,0,18,9v0,17,11,28,27,28v18,0,30,-13,30,-31v0,-22,-14,-34,-42,-33v1,-6,-3,-16,6,-13v20,0,32,-9,32,-26v0,-16,-10,-27,-26,-27v-16,0,-27,12,-23,29r-18,3v-6,-28,13,-44,43,-45v50,-2,59,60,17,73","w":120},"\u00b2":{"d":"107,-211v0,41,-70,62,-77,94r77,0r0,17r-96,0v-6,-55,76,-60,76,-110v0,-18,-11,-29,-28,-29v-24,-1,-35,21,-24,40r-16,7v-16,-31,6,-63,42,-62v26,0,46,19,46,43","w":120},"\u00fd":{"d":"6,-181r30,0r57,151r47,-151r30,0r-67,205v-12,38,-41,52,-86,44r0,-27v36,7,55,-8,60,-38xm102,-267r30,0r-49,61r-18,0","w":176},"\u00a0":{"w":91}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990 as an unpublished work by Bitstream Inc.  All rights reserved. 
 * Confidential.
 */
Cufon.registerFont({"w":185,"face":{"font-family":"Gothic 720","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-15 -348 360 85","underline-thickness":"33.12","underline-position":"-33.84","stemh":"37","stemv":"51","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":92},"!":{"d":"45,-261r53,0r-8,177r-37,0xm45,-57r53,0r0,57r-53,0r0,-57","w":142},"\"":{"d":"14,-253r34,0r0,99r-34,0r0,-99xm71,-253r34,0r0,99r-34,0r0,-99","w":119},"#":{"d":"125,-257r38,0r-25,73r42,0r26,-73r39,0r-26,73r50,0r-13,35r-49,0r-15,42r51,0r-13,36r-51,0r-26,73r-39,0r26,-73r-42,0r-27,73r-38,0r25,-73r-50,0r13,-36r50,0r15,-42r-53,0r13,-35r53,0xm125,-149r-16,42r44,0r15,-42r-43,0","w":276},"$":{"d":"78,-275r27,0r0,24v39,2,64,26,67,67r-43,0v-2,-19,-9,-29,-24,-32r0,67v46,21,69,44,69,79v0,40,-25,65,-69,70r0,32r-27,0r0,-32v-46,-4,-69,-27,-70,-71r45,0v1,20,8,30,25,33r0,-73v-45,-22,-66,-42,-66,-76v0,-35,24,-60,66,-63r0,-25xm78,-216v-33,7,-31,45,0,55r0,-55xm105,-100r0,62v35,-7,32,-48,0,-62"},"%":{"d":"63,-256v35,0,53,25,53,76v0,51,-18,76,-53,76v-34,0,-52,-25,-52,-76v0,-51,18,-76,52,-76xm199,-256r30,0r-143,261r-30,0xm63,-233v-14,0,-14,18,-14,53v0,35,0,53,14,53v15,0,15,-18,15,-53v0,-35,0,-53,-15,-53xm222,-147v35,0,52,25,52,76v0,51,-17,76,-52,76v-34,0,-53,-25,-53,-76v0,-51,19,-76,53,-76xm222,-124v-14,0,-15,18,-15,53v0,35,1,53,15,53v16,3,14,-29,14,-58v0,-32,0,-48,-14,-48","w":285},"&":{"d":"117,-180v16,-8,23,-19,23,-32v0,-12,-7,-21,-18,-21v-27,0,-17,31,-5,53xm135,-143v10,21,22,41,37,59v11,-13,18,-28,26,-45r40,15v-8,23,-19,44,-36,63v9,9,26,10,43,8r6,42v-32,9,-65,7,-86,-14v-56,43,-153,17,-153,-63v0,-33,19,-58,58,-76v-29,-51,-12,-113,53,-113v38,0,62,23,62,56v0,26,-17,51,-50,68xm92,-114v-40,14,-31,78,15,75v10,0,20,-3,28,-9v-17,-22,-31,-44,-43,-66","w":257},"\u2019":{"d":"20,-261r52,0v1,53,3,81,-31,111r-19,-14v11,-16,17,-29,17,-47r-19,0r0,-50","w":92},"(":{"d":"129,-267r0,45v-32,15,-48,52,-48,116v0,63,15,101,48,117r0,44v-64,-17,-98,-71,-98,-161v0,-90,34,-144,98,-161","w":138},")":{"d":"10,-267v65,17,98,71,98,161v0,90,-34,144,-98,161r0,-44v64,-19,63,-215,0,-233r0,-45","w":138},"*":{"d":"69,-261r42,0r-13,59r52,-31r12,40r-60,5r46,40r-34,25r-24,-56r-24,56r-34,-25r46,-40r-60,-5r12,-40r52,31","w":180},"+":{"d":"132,-215r36,0r0,90r87,0r0,35r-87,0r0,90r-36,0r0,-90r-87,0r0,-35r87,0r0,-90","w":299},",":{"d":"20,-57r52,0v0,57,4,96,-31,126r-19,-16v11,-17,16,-34,17,-53r-19,0r0,-57","w":92},"-":{"d":"13,-116r89,0r0,45r-89,0r0,-45","w":114},".":{"d":"20,-57r52,0r0,57r-52,0r0,-57","w":92},"\/":{"d":"101,-261r29,0r-116,294r-29,0","w":128},"0":{"d":"93,-256v51,0,77,43,77,130v0,87,-26,131,-77,131v-50,0,-78,-44,-78,-131v0,-87,27,-130,78,-130xm93,-216v-26,0,-24,44,-24,96v0,57,1,85,24,85v23,0,23,-31,23,-91v0,-60,0,-90,-23,-90"},"1":{"d":"89,-251r41,0r0,251r-51,0r0,-177v-16,15,-31,26,-45,32r0,-52v21,-13,39,-30,55,-54"},"2":{"d":"166,-181v0,63,-90,94,-104,133r107,0r0,48r-154,0v-2,-48,11,-73,46,-103v28,-25,52,-43,52,-75v0,-39,-43,-46,-45,-13v0,3,1,8,3,14r-47,20v-18,-51,15,-99,67,-99v44,0,75,31,75,75"},"3":{"d":"115,-135v34,9,50,30,50,66v0,48,-26,74,-73,74v-56,0,-83,-39,-71,-91r45,14v-1,23,2,42,21,42v16,0,23,-13,23,-41v0,-33,-11,-46,-43,-46r0,-36v27,2,40,-6,39,-36v0,-22,-6,-34,-19,-34v-12,0,-18,11,-18,33r-45,8v-10,-43,21,-72,66,-74v75,-3,98,102,25,121"},"4":{"d":"99,-251r45,0r0,163r27,0r0,39r-27,0r0,49r-48,0r0,-49r-81,0r0,-47xm95,-175r-48,87r48,0r0,-87"},"5":{"d":"30,-251r119,0r0,44r-83,0r-3,51v44,-36,104,2,104,69v0,60,-28,92,-77,92v-44,0,-67,-21,-73,-68r44,-9v1,22,11,34,27,34v18,0,24,-15,24,-47v0,-52,-37,-63,-53,-26r-37,-10"},"6":{"d":"165,-198r-46,6v-3,-20,-11,-30,-24,-30v-19,0,-26,25,-26,78v41,-52,101,-15,101,62v0,56,-27,87,-73,87v-52,0,-82,-43,-82,-126v0,-91,25,-135,81,-135v37,0,65,23,69,58xm93,-127v-16,0,-23,18,-23,53v0,30,9,44,23,44v17,0,23,-18,23,-54v0,-29,-5,-43,-23,-43"},"7":{"d":"15,-251r142,0r0,39v-35,69,-47,139,-49,212r-52,0v8,-75,28,-142,64,-205r-105,0r0,-46"},"8":{"d":"92,-224v-13,0,-22,12,-22,35v0,26,7,38,22,38v15,0,21,-12,21,-38v0,-23,-8,-35,-21,-35xm126,-137v68,28,50,142,-35,142v-80,0,-102,-115,-33,-142v-66,-25,-42,-119,33,-119v78,0,101,94,35,119xm92,-119v-15,0,-22,15,-22,44v0,31,6,47,22,47v16,0,22,-16,22,-47v0,-29,-7,-44,-22,-44"},"9":{"d":"112,-168v4,-63,-46,-71,-44,-10v-6,65,45,70,44,10xm18,-58r45,-4v2,22,11,34,25,34v24,5,26,-41,25,-83v-37,52,-98,19,-98,-58v0,-54,30,-87,70,-87v50,0,83,46,83,130v0,89,-23,131,-83,131v-41,0,-66,-23,-67,-63"},":":{"d":"38,-181r53,0r0,57r-53,0r0,-57xm38,-57r53,0r0,57r-53,0r0,-57","w":129},";":{"d":"38,-181r53,0r0,57r-53,0r0,-57xm38,-57r53,0v0,57,4,96,-31,126r-20,-16v11,-17,17,-34,18,-53r-20,0r0,-57","w":129},"<":{"d":"253,-210r0,39r-157,64r157,64r0,38r-207,-85r0,-35","w":299},"=":{"d":"45,-163r210,0r0,35r-210,0r0,-35xm45,-87r210,0r0,35r-210,0r0,-35","w":299},">":{"d":"46,-210r207,85r0,35r-207,85r0,-38r158,-64r-158,-64r0,-39","w":299},"?":{"d":"180,-200v0,53,-76,63,-70,118r-38,0v-10,-62,53,-70,53,-119v0,-21,-11,-32,-27,-32v-26,0,-33,26,-31,58r-50,-21v5,-46,32,-71,80,-71v52,0,83,26,83,67xm65,-57r52,0r0,57r-52,0r0,-57","w":207},"@":{"d":"214,-123v-3,-19,-14,-29,-31,-29v-26,0,-49,33,-49,74v0,22,9,33,27,33v34,0,47,-45,53,-78xm345,-134v0,58,-41,113,-102,115v-25,0,-38,-10,-38,-29v-26,48,-109,36,-109,-31v0,-57,38,-99,85,-99v19,0,32,8,41,23r10,-17r31,0r-27,112v0,8,6,12,17,12v37,0,60,-49,59,-87v0,-55,-46,-96,-117,-96v-87,0,-147,63,-147,139v0,116,157,152,240,85r14,21v-100,83,-286,32,-286,-105v0,-100,82,-169,180,-169v84,0,149,50,149,126","w":360},"A":{"d":"91,-261r77,0r97,261r-63,0r-18,-50r-105,0r-16,50r-62,0xm130,-211r-35,108r71,0","w":264},"B":{"d":"33,-261v85,1,214,-14,214,64v0,29,-19,48,-56,56v46,10,66,31,66,70v0,88,-133,69,-224,71r0,-261xm93,-213r0,51v37,-1,96,8,96,-27v0,-33,-61,-22,-96,-24xm93,-114r0,66v42,-1,105,9,100,-34v4,-38,-59,-32,-100,-32","w":268},"C":{"d":"255,-195r-49,27v-28,-74,-127,-54,-127,38v0,89,93,104,131,38r48,32v-28,45,-63,66,-115,66v-78,0,-129,-55,-129,-136v0,-84,49,-137,129,-137v54,0,95,27,112,72","w":265},"D":{"d":"265,-130v0,78,-40,130,-118,130r-114,0r0,-261r115,0v75,0,117,50,117,131xm95,-206r0,151v66,5,108,-5,106,-75v-1,-73,-39,-81,-106,-76","w":279},"E":{"d":"33,-261r172,0r-10,48r-100,0r0,53r93,0r0,48r-93,0r0,62r104,0r11,50r-177,0r0,-261","w":214},"F":{"d":"33,-261r180,0r-9,48r-109,0r0,60r95,0r0,50r-95,0r0,103r-62,0r0,-261","w":216},"G":{"d":"247,-215r-40,38v-39,-59,-128,-46,-128,49v0,74,58,95,107,64r0,-32r-57,0r0,-48r119,0r0,100v-75,91,-234,52,-234,-85v0,-85,49,-138,127,-138v45,0,80,17,106,52","w":266},"H":{"d":"32,-261r61,0r0,101r106,0r0,-101r62,0r0,261r-62,0r0,-110r-106,0r0,110r-61,0r0,-261","w":292},"I":{"d":"34,-261r64,0r0,261r-64,0r0,-261","w":131},"J":{"d":"123,-261r63,0r0,179v0,58,-31,88,-87,88v-61,0,-90,-33,-87,-96r48,-27v-4,41,-1,76,33,75v21,0,30,-13,30,-40r0,-179","w":221},"K":{"d":"33,-261r62,0r0,111r100,-111r72,0r-80,88r98,173r-69,0r-71,-129r-50,54r0,75r-62,0r0,-261","w":280},"L":{"d":"35,-261r63,0r0,208r113,0r0,53r-176,0r0,-261","w":213},"M":{"d":"35,-261r92,0r40,166r39,-166r91,0r0,261r-53,0r0,-219r-53,219r-50,0r-53,-222r0,222r-53,0r0,-261","w":332},"N":{"d":"33,-261r62,0r100,158r0,-158r58,0r0,261r-58,0r-103,-165r0,165r-59,0r0,-261","w":286},"O":{"d":"144,-267v76,0,130,57,130,137v0,80,-54,136,-130,136v-76,0,-130,-56,-130,-136v0,-80,54,-137,130,-137xm144,-213v-37,0,-65,34,-65,83v0,49,28,81,65,81v37,0,66,-32,66,-81v0,-49,-29,-83,-66,-83","w":288},"P":{"d":"33,-261r102,0v80,0,119,24,119,80v0,76,-73,88,-159,83r0,98r-62,0r0,-261xm95,-212r0,66v41,0,99,6,95,-34v4,-36,-55,-33,-95,-32","w":262},"Q":{"d":"184,-64v47,-36,25,-149,-40,-149v-37,0,-65,34,-65,83v0,49,28,81,66,81v-6,-11,-15,-23,-28,-38r35,-19v14,14,24,28,32,42xm213,-13v10,13,22,25,35,35r-39,24v-18,-16,-29,-30,-36,-43v-92,17,-159,-44,-159,-133v0,-80,54,-137,130,-137v76,0,130,57,130,137v0,51,-23,94,-61,117","w":288},"R":{"d":"33,-261r115,0v71,0,107,25,107,75v0,37,-21,61,-58,69r68,117r-68,0r-62,-108r-41,0r0,108r-61,0r0,-261xm94,-213r0,57v38,-1,100,9,96,-29v3,-35,-58,-27,-96,-28","w":274},"S":{"d":"243,-212r-39,33v-18,-26,-43,-40,-74,-40v-27,0,-44,10,-44,24v0,20,26,23,78,36v55,14,83,35,83,81v0,50,-41,84,-115,84v-63,0,-102,-22,-120,-67r41,-34v17,34,43,51,81,51v32,0,50,-12,50,-28v0,-22,-23,-26,-66,-36v-60,-14,-91,-31,-91,-78v0,-49,37,-80,103,-80v50,0,84,15,113,54","w":263},"T":{"d":"10,-261r242,0r0,54r-90,0r0,207r-63,0r0,-207r-89,0r0,-54","w":261},"U":{"d":"28,-261r62,0r0,163v0,32,15,47,49,47v34,0,49,-15,49,-47r0,-163r61,0r0,176v0,60,-38,91,-110,91v-72,0,-111,-31,-111,-91r0,-176","w":277},"V":{"d":"-3,-261r65,0r74,184r68,-184r64,0r-102,261r-62,0","w":265},"W":{"d":"2,-261r58,0r40,169r40,-169r63,0r40,169r40,-169r59,0r-66,261r-62,0r-43,-180r-42,180r-62,0","w":343},"X":{"d":"4,-261r67,0r57,81r56,-81r65,0r-88,128r95,133r-67,0r-61,-85r-57,85r-67,0r91,-133","w":260},"Y":{"d":"-4,-261r65,0r58,106r60,-106r65,0r-94,161r0,100r-63,0r0,-100","w":239},"Z":{"d":"26,-261r185,0r0,34r-120,177r121,0r0,50r-201,0r0,-34r121,-178r-106,0r0,-49","w":227},"[":{"d":"39,-261r93,0r0,43r-44,0r0,226r44,0r0,42r-93,0r0,-311","w":138},"\\":{"d":"-3,-261r29,0r117,294r-29,0","w":128},"]":{"d":"6,-261r94,0r0,311r-94,0r0,-42r45,0r0,-226r-45,0r0,-43","w":138},"^":{"d":"158,-257r44,0r85,99r-42,0r-65,-65r-66,65r-41,0","w":360},"_":{"d":"0,49r180,0r0,36r-180,0r0,-36","w":180},"\u2018":{"d":"51,-261r19,14v-11,16,-16,29,-16,47r18,0r0,50r-52,0v-1,-52,-3,-82,31,-111","w":92},"a":{"d":"98,-186v86,0,74,55,74,127v0,17,5,26,21,22r0,36v-33,11,-69,9,-69,-29v-26,56,-113,40,-112,-21v0,-26,15,-49,39,-56v23,-7,47,-6,70,-15v8,-40,-47,-41,-60,-12r-38,-16v14,-26,38,-36,75,-36xm121,-99v-36,13,-60,14,-60,43v0,14,9,25,24,25v30,2,39,-32,36,-68","w":202},"b":{"d":"79,-24r0,24r-51,0r0,-261r51,0r0,104v48,-59,129,-23,129,67v0,90,-82,125,-129,66xm79,-55v26,45,75,31,75,-35v0,-66,-48,-81,-75,-36r0,71","w":221},"c":{"d":"182,-138r-42,22v-6,-22,-17,-32,-36,-32v-23,0,-37,19,-37,58v0,64,59,79,73,26r42,21v-15,32,-41,48,-78,48v-55,0,-91,-38,-91,-95v0,-99,135,-131,169,-48","w":188},"d":{"d":"143,-24v-48,58,-129,25,-129,-66v0,-91,81,-126,129,-67r0,-104r50,0r0,261r-50,0r0,-24xm143,-55r0,-71v-27,-44,-75,-31,-75,36v0,67,48,79,75,35","w":221},"e":{"d":"66,-110v18,2,50,4,66,-1v0,-27,-10,-41,-33,-41v-21,0,-33,15,-33,42xm187,-74r-121,0v1,52,62,53,81,14r35,21v-17,31,-43,44,-82,44v-55,0,-87,-36,-87,-95v0,-59,35,-96,87,-96v58,-1,89,40,87,112","w":200},"f":{"d":"37,0r0,-143r-32,0r0,-38r32,0v-3,-52,1,-88,57,-86v7,0,16,2,26,5r0,38v-16,-5,-33,-1,-33,17r0,26r33,0r0,38r-33,0r0,143r-50,0","w":128},"g":{"d":"143,-24v-48,58,-129,25,-129,-66v0,-91,81,-126,129,-67r0,-24r50,0r0,191v0,40,-28,60,-86,60v-59,-1,-86,-16,-85,-58r50,8v11,30,76,24,71,-14r0,-30xm143,-55r0,-71v-27,-44,-75,-31,-75,36v0,67,48,79,75,35","w":221},"h":{"d":"28,-261r51,0r0,111v23,-56,113,-48,113,27r0,123r-51,0r0,-113v0,-25,-8,-38,-27,-38v-55,1,-29,98,-35,151r-51,0r0,-261","w":219},"i":{"d":"30,-261r52,0r0,47r-52,0r0,-47xm30,-181r52,0r0,181r-52,0r0,-181","w":111},"j":{"d":"29,-261r52,0r0,47r-52,0r0,-47xm29,-181r52,0r0,197v2,49,-32,59,-79,52r0,-40v18,0,27,1,27,-20r0,-189","w":109},"k":{"d":"28,-261r51,0r0,142r62,-62r67,0r-60,55r66,126r-54,0r-47,-93r-34,31r0,62r-51,0r0,-261","w":216},"l":{"d":"31,-261r51,0r0,261r-51,0r0,-261","w":113},"m":{"d":"190,-145v21,-59,114,-57,114,22r0,123r-51,0r0,-113v0,-25,-8,-38,-27,-38v-54,2,-28,98,-34,151r-51,0r0,-113v0,-25,-8,-38,-27,-38v-55,1,-29,98,-35,151r-51,0r0,-181r51,0r0,31v20,-49,100,-49,111,5","w":331},"n":{"d":"136,-186v79,0,51,113,56,186r-51,0r0,-113v0,-25,-8,-38,-27,-38v-55,1,-29,98,-35,151r-51,0r0,-181r51,0r0,31v13,-25,31,-36,57,-36","w":219},"o":{"d":"107,-186v55,0,93,38,93,96v0,58,-37,95,-93,95v-56,0,-94,-36,-94,-95v0,-58,39,-96,94,-96xm107,-148v-26,0,-40,19,-40,58v0,39,13,57,40,57v26,0,39,-18,39,-57v0,-39,-13,-58,-39,-58","w":213},"p":{"d":"79,-55v26,45,75,31,75,-35v0,-66,-48,-81,-75,-36r0,71xm79,-24r0,89r-51,0r0,-246r51,0r0,24v48,-59,129,-23,129,67v0,90,-82,125,-129,66","w":221},"q":{"d":"143,-24v-48,58,-129,25,-129,-66v0,-91,81,-126,129,-67r0,-24r50,0r0,246r-50,0r0,-89xm143,-55r0,-71v-27,-44,-75,-31,-75,36v0,67,48,79,75,35","w":221},"r":{"d":"125,-186r0,54v-64,-9,-41,77,-45,132r-52,0r0,-181r46,0v2,17,-4,42,2,56v5,-43,18,-62,49,-61","w":136},"s":{"d":"166,-139r-41,8v-3,-32,-63,-36,-63,-9v0,15,20,16,51,25v38,11,59,25,59,58v0,36,-28,62,-77,62v-44,0,-70,-16,-82,-51r40,-16v9,26,21,36,45,36v19,0,29,-7,29,-20v0,-17,-18,-19,-46,-27v-41,-12,-60,-27,-60,-57v0,-35,25,-56,72,-56v38,0,62,16,73,47"},"t":{"d":"116,-1v-39,13,-81,8,-81,-40r0,-102r-27,0r0,-38r27,0r0,-53r50,-25r0,78r29,0r0,38r-29,0r0,81v-1,24,11,28,31,23r0,38","w":132},"u":{"d":"27,-181r51,0r0,113v0,25,8,37,27,37v55,-1,29,-97,35,-150r51,0r0,181r-51,0r0,-32v-23,57,-113,49,-113,-27r0,-122","w":219},"v":{"d":"3,-181r53,0r43,125r44,-125r52,0r-68,181r-55,0","w":198},"w":{"d":"8,-181r50,0r29,127r38,-127r52,0r36,125r29,-125r50,0r-51,181r-54,0r-37,-125r-38,125r-53,0","w":299},"x":{"d":"9,-181r55,0r39,49r38,-49r55,0r-64,87r70,94r-55,0r-44,-58r-45,58r-55,0r70,-94","w":204},"y":{"d":"6,-181r53,0r49,133r41,-133r52,0r-69,202v-13,45,-64,57,-116,44r0,-46v25,9,60,8,64,-15","w":209},"z":{"d":"21,-181r133,0r0,38r-77,102r80,0r0,41r-140,0r0,-39r76,-102r-72,0r0,-40","w":173},"{":{"d":"74,-200v-3,-53,28,-62,81,-60r0,37v-79,-15,2,124,-75,130v45,6,37,47,37,94v0,29,8,36,38,35r0,37v-52,2,-84,-7,-81,-60v2,-45,7,-97,-46,-88r0,-37v49,11,49,-40,46,-88","w":180},"|":{"d":"72,-275r36,0r0,360r-36,0r0,-360","w":180},"}":{"d":"106,13v3,54,-28,62,-81,60r0,-37v80,16,-1,-123,75,-129v-45,-6,-36,-49,-36,-95v0,-29,-9,-36,-39,-35r0,-37v52,-2,85,6,81,60v-3,46,-6,100,47,88r0,37v-52,-8,-50,40,-47,88","w":180},"~":{"d":"31,-112v55,-48,111,-2,172,-2v21,0,42,-9,66,-27r0,39v-23,16,-45,24,-67,24v-66,0,-117,-45,-171,5r0,-39","w":299},"\u00a1":{"d":"45,-261r53,0r0,57r-53,0r0,-57xm53,-177r37,0r8,177r-53,0","w":142},"\u00a2":{"d":"123,-228r25,0r-16,48v17,6,32,18,44,42r-42,22v-4,-14,-9,-22,-15,-25r-33,105v22,12,43,-3,48,-28r42,21v-18,39,-53,53,-103,46r-15,47r-24,0r18,-55v-79,-42,-47,-201,57,-180xm98,-148v-37,-8,-49,63,-31,95"},"\u00a3":{"d":"168,-187r-42,-6v-2,-18,-7,-25,-19,-25v-28,-1,-23,55,-13,76r46,0r0,32r-42,0v3,22,1,39,-9,55v25,23,64,32,66,-11r32,0v4,77,-70,90,-116,46v-17,35,-72,35,-73,-8v-1,-29,28,-49,57,-38v0,-17,0,-19,-5,-44r-42,0r0,-32r35,0v-21,-54,5,-114,61,-114v39,0,63,25,64,69xm47,-37v-10,-11,-32,-9,-32,7v6,20,24,13,32,-7"},"\u00a5":{"d":"4,-251r54,0r55,110r59,-110r52,0r-45,79r35,0r0,25r-50,0r-23,39r73,0r0,26r-78,0r0,82r-46,0r0,-82r-75,0r0,-26r70,0r-22,-39r-48,0r0,-25r34,0","w":229},"\u00a7":{"d":"117,10v0,-41,-109,-101,-96,-141v0,-25,14,-40,41,-45v-35,-34,-22,-92,35,-91v26,0,46,10,60,32r-26,22v-12,-15,-21,-24,-33,-24v-12,0,-20,8,-20,18v0,15,17,28,40,50v37,35,57,58,57,87v0,25,-14,39,-43,43v37,38,28,103,-38,101v-27,0,-45,-11,-61,-35r27,-23v12,17,22,26,36,26v13,0,21,-8,21,-20xm139,-80v0,-16,-51,-74,-66,-70v-9,0,-16,5,-16,15v0,16,52,75,66,72v9,0,16,-7,16,-17","w":193},"\u00a4":{"d":"30,-253r36,36v23,-19,62,-18,87,0r35,-36r19,19r-36,36v18,24,17,60,0,85r36,36r-19,18r-35,-35v-23,17,-64,18,-87,0r-36,35r-18,-18r36,-36v-18,-24,-19,-61,0,-85r-36,-36xm109,-204v-27,0,-48,22,-48,48v0,27,21,49,48,49v27,0,49,-22,49,-49v0,-26,-22,-48,-49,-48","w":218},"'":{"d":"14,-253r34,0r0,99r-34,0r0,-99","w":61},"\u201c":{"d":"51,-261r19,14v-11,16,-16,29,-16,47r18,0r0,50r-52,0v-1,-52,-3,-82,31,-111xm141,-261r19,14v-12,18,-16,31,-16,47r18,0r0,50r-52,0v-1,-52,-3,-82,31,-111","w":182},"\u00ab":{"d":"60,-145r40,0r-42,55r42,54r-40,0r-42,-54xm135,-145r40,0r-42,55r42,54r-40,0r-42,-54","w":193},"\u2013":{"d":"0,-109r180,0r0,33r-180,0r0,-33","w":180},"\u00b7":{"d":"46,-159v17,0,30,13,30,30v0,17,-14,30,-30,30v-15,0,-31,-14,-31,-30v0,-16,14,-30,31,-30","w":91},"\u00b6":{"d":"173,-260r0,20r-20,0r0,240r-27,0r0,-240r-28,0r0,240r-26,0r0,-138v-40,-1,-65,-26,-65,-61v0,-36,27,-61,69,-61r97,0","w":180},"\u201d":{"d":"20,-261r52,0v1,53,3,81,-31,111r-19,-14v11,-16,17,-29,17,-47r-19,0r0,-50xm110,-261r52,0v1,53,3,81,-31,111r-19,-14v11,-16,17,-29,17,-47r-19,0r0,-50","w":182},"\u00bb":{"d":"18,-145r40,0r42,55r-42,54r-40,0r42,-54xm93,-145r40,0r42,55r-42,54r-40,0r42,-54","w":193},"\u2026":{"d":"34,-57r52,0r0,57r-52,0r0,-57xm154,-57r52,0r0,57r-52,0r0,-57xm274,-57r52,0r0,57r-52,0r0,-57","w":360},"\u00bf":{"d":"90,-261r53,0r0,57r-53,0r0,-57xm28,-60v0,-54,76,-64,70,-119r37,0v11,62,-52,70,-52,119v0,21,11,32,28,32v25,1,34,-25,29,-58r50,21v-5,46,-31,71,-79,71v-52,0,-83,-25,-83,-66","w":207},"`":{"d":"41,-267r39,0r36,61r-23,0","w":180},"\u00b4":{"d":"100,-267r39,0r-52,61r-23,0","w":180},"\u00af":{"d":"41,-247r98,0r0,26r-98,0r0,-26","w":180},"\u00a8":{"d":"42,-254r36,0r0,40r-36,0r0,-40xm102,-254r36,0r0,40r-36,0r0,-40","w":180},"\u00b8":{"d":"82,0r16,0r0,17v29,-1,45,9,44,33v-2,38,-48,40,-92,26r0,-21v19,5,34,8,45,8v13,0,19,-5,19,-14v0,-13,-15,-13,-32,-13r0,-36","w":180},"\u2014":{"d":"0,-109r360,0r0,33r-360,0r0,-33","w":360},"\u00c6":{"d":"111,-261r221,0r-10,48r-96,0r0,53r87,0r0,48r-87,0r0,62r94,0r11,50r-166,0r0,-51r-86,0r-21,51r-61,0xm148,-213r-46,110r63,0r0,-110r-17,0","w":349},"\u00aa":{"d":"9,-170v0,-40,48,-42,82,-50v5,-28,-36,-28,-45,-8r-29,-11v11,-18,29,-25,57,-25v64,0,55,36,55,88v0,13,5,19,16,15r0,26v-24,8,-52,6,-52,-21v-18,40,-84,29,-84,-14xm91,-203v-27,9,-45,10,-45,30v0,10,7,17,18,17v23,1,29,-21,27,-47","w":151},"\u00d8":{"d":"264,-284r24,23r-41,43v63,85,9,224,-103,224v-32,0,-58,-9,-82,-28r-37,40r-24,-23r39,-41v-62,-84,-6,-220,104,-220v30,0,57,8,80,25xm185,-199v-60,-49,-131,27,-102,106xm204,-172r-103,107v59,56,139,-28,103,-107","w":288},"\u00ba":{"d":"80,-264v42,0,70,25,70,66v0,41,-28,67,-70,67v-42,0,-70,-26,-70,-67v0,-41,29,-66,70,-66xm80,-238v-20,0,-30,13,-30,40v0,27,10,41,30,41v20,0,29,-14,29,-41v0,-27,-9,-40,-29,-40","w":160},"\u00e6":{"d":"12,-51v-2,-56,62,-58,109,-71v4,-20,-5,-33,-27,-32v-14,0,-24,6,-33,20r-38,-16v18,-41,96,-48,131,-18v64,-45,147,-1,137,94r-121,0v1,52,62,53,81,14r35,21v-25,57,-130,60,-156,3v-23,59,-116,53,-118,-15xm121,-99v-36,13,-60,14,-60,43v0,14,9,25,24,25v30,2,39,-32,36,-68xm170,-110v19,3,45,0,66,1v1,-28,-9,-43,-33,-43v-21,0,-33,15,-33,42","w":303},"\u00f8":{"d":"191,-195r18,17r-27,28v43,60,5,155,-75,155v-23,0,-43,-6,-59,-18r-27,27r-18,-17r27,-28v-42,-61,-3,-155,77,-155v23,0,41,6,58,18xm135,-138v-38,-35,-84,9,-68,69xm147,-114r-69,70v38,34,84,-6,69,-70","w":213},"\u00df":{"d":"160,-151v47,9,63,29,63,74v0,52,-26,82,-70,82v-38,0,-60,-23,-60,-64r45,0v0,17,5,25,15,25v14,0,18,-13,18,-43v0,-35,-12,-49,-49,-49r0,-45v23,1,37,-10,37,-28v0,-18,-15,-30,-40,-30v-26,0,-42,14,-42,36r0,193r-49,0r0,-187v0,-53,31,-80,90,-80v92,0,119,93,42,116","w":236},"\u00c1":{"d":"91,-261r77,0r97,261r-63,0r-18,-50r-105,0r-16,50r-62,0xm130,-211r-35,108r71,0xm142,-348r39,0r-52,61r-23,0","w":264},"\u00c2":{"d":"113,-348r38,0r33,62r-23,0r-29,-37r-29,37r-23,0xm91,-261r77,0r97,261r-63,0r-18,-50r-105,0r-16,50r-62,0xm130,-211r-35,108r71,0","w":264},"\u00c4":{"d":"91,-261r77,0r97,261r-63,0r-18,-50r-105,0r-16,50r-62,0xm130,-211r-35,108r71,0xm84,-335r36,0r0,40r-36,0r0,-40xm144,-335r36,0r0,40r-36,0r0,-40","w":264},"\u00c0":{"d":"91,-261r77,0r97,261r-63,0r-18,-50r-105,0r-16,50r-62,0xm130,-211r-35,108r71,0xm83,-348r39,0r36,61r-23,0","w":264},"\u00c5":{"d":"130,-324v-13,0,-23,10,-23,23v0,13,10,22,23,22v13,0,22,-10,22,-22v0,-13,-9,-23,-22,-23xm143,-258r25,0r97,258r-63,0r-18,-50r-105,0r-16,50r-62,0r89,-258r26,0v-47,-11,-38,-89,13,-89v51,0,62,78,14,89xm130,-211r-35,108r71,0","w":264},"\u00c3":{"d":"167,-337r18,0v-5,46,-38,44,-73,32v-8,0,-12,4,-15,12r-18,0v6,-45,38,-41,73,-30v7,0,13,-5,15,-14xm91,-261r77,0r97,261r-63,0r-18,-50r-105,0r-16,50r-62,0xm130,-211r-35,108r71,0","w":264},"\u00c7":{"d":"255,-195r-49,27v-28,-74,-127,-54,-127,38v0,89,93,104,131,38r48,32v-28,45,-63,66,-115,66v-78,0,-129,-55,-129,-136v0,-84,49,-137,129,-137v54,0,95,27,112,72xm125,0r16,0r0,17v29,-1,45,9,44,33v-2,38,-48,40,-92,26r0,-21v19,5,34,8,45,8v13,0,19,-5,19,-14v0,-13,-15,-13,-32,-13r0,-36","w":265},"\u00c9":{"d":"33,-261r172,0r-10,48r-100,0r0,53r93,0r0,48r-93,0r0,62r104,0r11,50r-177,0r0,-261xm118,-348r39,0r-52,61r-23,0","w":214},"\u00ca":{"d":"89,-348r38,0r33,62r-23,0r-29,-37r-30,37r-23,0xm33,-261r172,0r-10,48r-100,0r0,53r93,0r0,48r-93,0r0,62r104,0r11,50r-177,0r0,-261","w":214},"\u00cb":{"d":"33,-261r172,0r-10,48r-100,0r0,53r93,0r0,48r-93,0r0,62r104,0r11,50r-177,0r0,-261xm60,-335r36,0r0,40r-36,0r0,-40xm120,-335r36,0r0,40r-36,0r0,-40","w":214},"\u00c8":{"d":"33,-261r172,0r-10,48r-100,0r0,53r93,0r0,48r-93,0r0,62r104,0r11,50r-177,0r0,-261xm59,-348r39,0r36,61r-23,0","w":214},"\u00cd":{"d":"34,-261r64,0r0,261r-64,0r0,-261xm76,-348r39,0r-52,61r-23,0","w":131},"\u00ce":{"d":"47,-348r38,0r33,62r-23,0r-29,-37r-30,37r-22,0xm34,-261r64,0r0,261r-64,0r0,-261","w":131},"\u00cf":{"d":"34,-261r64,0r0,261r-64,0r0,-261xm18,-335r36,0r0,40r-36,0r0,-40xm78,-335r36,0r0,40r-36,0r0,-40","w":131},"\u00cc":{"d":"34,-261r64,0r0,261r-64,0r0,-261xm17,-348r39,0r36,61r-23,0","w":131},"\u00d1":{"d":"179,-337r17,0v-5,46,-38,44,-73,32v-8,0,-12,4,-15,12r-18,0v6,-45,38,-41,73,-30v7,0,14,-5,16,-14xm33,-261r62,0r100,158r0,-158r58,0r0,261r-58,0r-103,-165r0,165r-59,0r0,-261","w":286},"\u00d3":{"d":"144,-267v76,0,130,57,130,137v0,80,-54,136,-130,136v-76,0,-130,-56,-130,-136v0,-80,54,-137,130,-137xm144,-213v-37,0,-65,34,-65,83v0,49,28,81,65,81v37,0,66,-32,66,-81v0,-49,-29,-83,-66,-83xm154,-348r39,0r-52,61r-23,0","w":288},"\u00d4":{"d":"125,-348r38,0r34,62r-23,0r-30,-37r-29,37r-23,0xm144,-267v76,0,130,57,130,137v0,80,-54,136,-130,136v-76,0,-130,-56,-130,-136v0,-80,54,-137,130,-137xm144,-213v-37,0,-65,34,-65,83v0,49,28,81,65,81v37,0,66,-32,66,-81v0,-49,-29,-83,-66,-83","w":288},"\u00d6":{"d":"144,-267v76,0,130,57,130,137v0,80,-54,136,-130,136v-76,0,-130,-56,-130,-136v0,-80,54,-137,130,-137xm144,-213v-37,0,-65,34,-65,83v0,49,28,81,65,81v37,0,66,-32,66,-81v0,-49,-29,-83,-66,-83xm96,-335r36,0r0,40r-36,0r0,-40xm156,-335r36,0r0,40r-36,0r0,-40","w":288},"\u00d2":{"d":"144,-267v76,0,130,57,130,137v0,80,-54,136,-130,136v-76,0,-130,-56,-130,-136v0,-80,54,-137,130,-137xm144,-213v-37,0,-65,34,-65,83v0,49,28,81,65,81v37,0,66,-32,66,-81v0,-49,-29,-83,-66,-83xm95,-348r39,0r36,61r-23,0","w":288},"\u00d5":{"d":"180,-337r17,0v-5,46,-38,44,-73,32v-8,0,-12,4,-15,12r-18,0v6,-46,39,-41,74,-30v7,0,13,-5,15,-14xm144,-267v76,0,130,57,130,137v0,80,-54,136,-130,136v-76,0,-130,-56,-130,-136v0,-80,54,-137,130,-137xm144,-213v-37,0,-65,34,-65,83v0,49,28,81,65,81v37,0,66,-32,66,-81v0,-49,-29,-83,-66,-83","w":288},"\u00da":{"d":"28,-261r62,0r0,163v0,32,15,47,49,47v34,0,49,-15,49,-47r0,-163r61,0r0,176v0,60,-38,91,-110,91v-72,0,-111,-31,-111,-91r0,-176xm149,-348r39,0r-52,61r-23,0","w":277},"\u00db":{"d":"120,-348r38,0r33,62r-23,0r-29,-37r-30,37r-22,0xm28,-261r62,0r0,163v0,32,15,47,49,47v34,0,49,-15,49,-47r0,-163r61,0r0,176v0,60,-38,91,-110,91v-72,0,-111,-31,-111,-91r0,-176","w":277},"\u00dc":{"d":"28,-261r62,0r0,163v0,32,15,47,49,47v34,0,49,-15,49,-47r0,-163r61,0r0,176v0,60,-38,91,-110,91v-72,0,-111,-31,-111,-91r0,-176xm91,-335r36,0r0,40r-36,0r0,-40xm151,-335r36,0r0,40r-36,0r0,-40","w":277},"\u00d9":{"d":"28,-261r62,0r0,163v0,32,15,47,49,47v34,0,49,-15,49,-47r0,-163r61,0r0,176v0,60,-38,91,-110,91v-72,0,-111,-31,-111,-91r0,-176xm90,-348r39,0r36,61r-23,0","w":277},"\u00e1":{"d":"98,-186v86,0,74,55,74,127v0,17,5,26,21,22r0,36v-33,11,-69,9,-69,-29v-26,56,-113,40,-112,-21v0,-26,15,-49,39,-56v23,-7,47,-6,70,-15v8,-40,-47,-41,-60,-12r-38,-16v14,-26,38,-36,75,-36xm121,-99v-36,13,-60,14,-60,43v0,14,9,25,24,25v30,2,39,-32,36,-68xm111,-267r39,0r-52,61r-23,0","w":202},"\u00e2":{"d":"82,-267r38,0r33,62r-23,0r-29,-37r-29,37r-23,0xm98,-186v86,0,74,55,74,127v0,17,5,26,21,22r0,36v-33,11,-69,9,-69,-29v-26,56,-113,40,-112,-21v0,-26,15,-49,39,-56v23,-7,47,-6,70,-15v8,-40,-47,-41,-60,-12r-38,-16v14,-26,38,-36,75,-36xm121,-99v-36,13,-60,14,-60,43v0,14,9,25,24,25v30,2,39,-32,36,-68","w":202},"\u00e4":{"d":"98,-186v86,0,74,55,74,127v0,17,5,26,21,22r0,36v-33,11,-69,9,-69,-29v-26,56,-113,40,-112,-21v0,-26,15,-49,39,-56v23,-7,47,-6,70,-15v8,-40,-47,-41,-60,-12r-38,-16v14,-26,38,-36,75,-36xm121,-99v-36,13,-60,14,-60,43v0,14,9,25,24,25v30,2,39,-32,36,-68xm53,-254r36,0r0,40r-36,0r0,-40xm113,-254r36,0r0,40r-36,0r0,-40","w":202},"\u00e0":{"d":"98,-186v86,0,74,55,74,127v0,17,5,26,21,22r0,36v-33,11,-69,9,-69,-29v-26,56,-113,40,-112,-21v0,-26,15,-49,39,-56v23,-7,47,-6,70,-15v8,-40,-47,-41,-60,-12r-38,-16v14,-26,38,-36,75,-36xm121,-99v-36,13,-60,14,-60,43v0,14,9,25,24,25v30,2,39,-32,36,-68xm52,-267r39,0r36,61r-23,0","w":202},"\u00e5":{"d":"101,-293v25,0,45,21,45,46v0,25,-20,45,-45,45v-25,0,-46,-19,-46,-45v0,-25,21,-46,46,-46xm101,-270v-13,0,-23,10,-23,23v0,13,10,22,23,22v13,0,22,-10,22,-22v0,-13,-9,-23,-22,-23xm98,-186v86,0,74,55,74,127v0,17,5,26,21,22r0,36v-33,11,-69,9,-69,-29v-26,56,-113,40,-112,-21v0,-27,14,-48,39,-56v23,-7,48,-6,70,-15v8,-40,-47,-41,-60,-12r-38,-16v14,-26,38,-36,75,-36xm121,-99v-36,13,-60,14,-60,43v0,14,9,25,24,25v30,2,39,-32,36,-68","w":202},"\u00e3":{"d":"136,-256r18,0v-5,46,-38,44,-73,32v-8,0,-12,4,-15,12r-18,0v6,-45,38,-41,73,-30v7,0,13,-5,15,-14xm98,-186v86,0,74,55,74,127v0,17,5,26,21,22r0,36v-33,11,-69,9,-69,-29v-26,56,-113,40,-112,-21v0,-26,15,-49,39,-56v23,-7,47,-6,70,-15v8,-40,-47,-41,-60,-12r-38,-16v14,-26,38,-36,75,-36xm121,-99v-36,13,-60,14,-60,43v0,14,9,25,24,25v30,2,39,-32,36,-68","w":202},"\u00e7":{"d":"182,-138r-42,22v-6,-22,-17,-32,-36,-32v-23,0,-37,19,-37,58v0,64,59,79,73,26r42,21v-15,32,-41,48,-78,48v-55,0,-91,-38,-91,-95v0,-99,135,-131,169,-48xm86,0r16,0r0,17v29,-1,45,9,44,33v-2,38,-48,40,-92,26r0,-21v19,5,34,8,45,8v13,0,19,-5,19,-14v0,-13,-15,-13,-32,-13r0,-36","w":188},"\u00e9":{"d":"66,-110v18,2,50,4,66,-1v0,-27,-10,-41,-33,-41v-21,0,-33,15,-33,42xm187,-74r-121,0v1,52,62,53,81,14r35,21v-17,31,-43,44,-82,44v-55,0,-87,-36,-87,-95v0,-59,35,-96,87,-96v58,-1,89,40,87,112xm110,-267r39,0r-52,61r-23,0","w":200},"\u00ea":{"d":"81,-267r38,0r33,62r-23,0r-29,-37r-29,37r-23,0xm66,-110v18,2,50,4,66,-1v0,-27,-10,-41,-33,-41v-21,0,-33,15,-33,42xm187,-74r-121,0v1,52,62,53,81,14r35,21v-17,31,-43,44,-82,44v-55,0,-87,-36,-87,-95v0,-59,35,-96,87,-96v58,-1,89,40,87,112","w":200},"\u00eb":{"d":"66,-110v18,2,50,4,66,-1v0,-27,-10,-41,-33,-41v-21,0,-33,15,-33,42xm187,-74r-121,0v1,52,62,53,81,14r35,21v-17,31,-43,44,-82,44v-55,0,-87,-36,-87,-95v0,-59,35,-96,87,-96v58,-1,89,40,87,112xm52,-254r36,0r0,40r-36,0r0,-40xm112,-254r36,0r0,40r-36,0r0,-40","w":200},"\u00e8":{"d":"66,-110v18,2,50,4,66,-1v0,-27,-10,-41,-33,-41v-21,0,-33,15,-33,42xm187,-74r-121,0v1,52,62,53,81,14r35,21v-17,31,-43,44,-82,44v-55,0,-87,-36,-87,-95v0,-59,35,-96,87,-96v58,-1,89,40,87,112xm51,-267r39,0r36,61r-23,0","w":200},"\u00ed":{"d":"30,-181r52,0r0,181r-52,0r0,-181xm66,-267r39,0r-52,61r-23,0","w":111},"\u00ee":{"d":"37,-267r38,0r33,62r-23,0r-29,-37r-30,37r-22,0xm30,-181r52,0r0,181r-52,0r0,-181","w":111},"\u00ef":{"d":"30,-181r52,0r0,181r-52,0r0,-181xm8,-254r36,0r0,40r-36,0r0,-40xm68,-254r36,0r0,40r-36,0r0,-40","w":111},"\u00ec":{"d":"30,-181r52,0r0,181r-52,0r0,-181xm7,-267r39,0r36,61r-23,0","w":111},"\u00f1":{"d":"145,-256r18,0v-6,45,-38,44,-73,32v-8,0,-12,4,-15,12r-18,0v6,-45,39,-41,73,-30v7,0,13,-5,15,-14xm136,-186v79,0,51,113,56,186r-51,0r0,-113v0,-25,-8,-38,-27,-38v-55,1,-29,98,-35,151r-51,0r0,-181r51,0r0,31v13,-25,31,-36,57,-36","w":219},"\u00f3":{"d":"107,-186v55,0,93,38,93,96v0,58,-37,95,-93,95v-56,0,-94,-36,-94,-95v0,-58,39,-96,94,-96xm107,-148v-26,0,-40,19,-40,58v0,39,13,57,40,57v26,0,39,-18,39,-57v0,-39,-13,-58,-39,-58xm117,-267r39,0r-52,61r-23,0","w":213},"\u00f4":{"d":"88,-267r38,0r33,62r-23,0r-29,-37r-30,37r-22,0xm107,-186v55,0,93,38,93,96v0,58,-37,95,-93,95v-56,0,-94,-36,-94,-95v0,-58,39,-96,94,-96xm107,-148v-26,0,-40,19,-40,58v0,39,13,57,40,57v26,0,39,-18,39,-57v0,-39,-13,-58,-39,-58","w":213},"\u00f6":{"d":"107,-186v55,0,93,38,93,96v0,58,-37,95,-93,95v-56,0,-94,-36,-94,-95v0,-58,39,-96,94,-96xm107,-148v-26,0,-40,19,-40,58v0,39,13,57,40,57v26,0,39,-18,39,-57v0,-39,-13,-58,-39,-58xm59,-254r36,0r0,40r-36,0r0,-40xm119,-254r36,0r0,40r-36,0r0,-40","w":213},"\u00f2":{"d":"107,-186v55,0,93,38,93,96v0,58,-37,95,-93,95v-56,0,-94,-36,-94,-95v0,-58,39,-96,94,-96xm107,-148v-26,0,-40,19,-40,58v0,39,13,57,40,57v26,0,39,-18,39,-57v0,-39,-13,-58,-39,-58xm58,-267r39,0r36,61r-23,0","w":213},"\u00f5":{"d":"142,-256r18,0v-5,46,-38,44,-73,32v-8,0,-12,4,-15,12r-18,0v6,-45,38,-41,73,-30v7,0,13,-5,15,-14xm107,-186v55,0,93,38,93,96v0,58,-37,95,-93,95v-56,0,-94,-36,-94,-95v0,-58,39,-96,94,-96xm107,-148v-26,0,-40,19,-40,58v0,39,13,57,40,57v26,0,39,-18,39,-57v0,-39,-13,-58,-39,-58","w":213},"\u00fa":{"d":"27,-181r51,0r0,113v0,25,8,37,27,37v55,-1,29,-97,35,-150r51,0r0,181r-51,0r0,-32v-23,57,-113,49,-113,-27r0,-122xm120,-267r39,0r-52,61r-23,0","w":219},"\u00fb":{"d":"91,-267r38,0r33,62r-23,0r-29,-37r-30,37r-22,0xm27,-181r51,0r0,113v0,25,8,37,27,37v55,-1,29,-97,35,-150r51,0r0,181r-51,0r0,-32v-23,57,-113,49,-113,-27r0,-122","w":219},"\u00fc":{"d":"27,-181r51,0r0,113v0,25,8,37,27,37v55,-1,29,-97,35,-150r51,0r0,181r-51,0r0,-32v-23,57,-113,49,-113,-27r0,-122xm62,-254r36,0r0,40r-36,0r0,-40xm122,-254r36,0r0,40r-36,0r0,-40","w":219},"\u00f9":{"d":"27,-181r51,0r0,113v0,25,8,37,27,37v55,-1,29,-97,35,-150r51,0r0,181r-51,0r0,-32v-23,57,-113,49,-113,-27r0,-122xm61,-267r39,0r36,61r-23,0","w":219},"\u00ff":{"d":"6,-181r53,0r49,133r41,-133r52,0r-69,202v-13,45,-64,57,-116,44r0,-46v25,9,60,8,64,-15xm57,-254r36,0r0,40r-36,0r0,-40xm117,-254r36,0r0,40r-36,0r0,-40","w":209},"\u2122":{"d":"36,-257r86,0r0,20r-30,0r0,76r-26,0r0,-76r-30,0r0,-20xm141,-257r35,0r22,58r22,-58r34,0r0,96r-24,0r0,-72r-27,72r-10,0r-28,-72r0,72r-24,0r0,-96","w":299},"\u00a9":{"d":"19,-129v0,-69,59,-131,131,-131v71,0,131,60,131,131v0,72,-63,131,-131,131v-69,0,-131,-62,-131,-131xm259,-129v0,-60,-50,-109,-109,-109v-60,0,-109,51,-109,109v0,58,51,109,109,109v56,0,109,-49,109,-109xm213,-158r-33,0v-2,-17,-13,-26,-30,-26v-21,0,-34,20,-34,55v0,59,57,71,65,24r34,0v-2,32,-28,54,-65,54v-43,0,-70,-29,-70,-77v0,-49,28,-79,70,-79v36,0,61,19,63,49","w":299},"\u00ac":{"d":"45,-152r210,0r0,88r-35,0r0,-53r-175,0r0,-35","w":299},"\u00ae":{"d":"19,-129v2,-72,61,-131,131,-131v71,0,131,59,131,131v0,71,-63,131,-131,131v-69,0,-132,-62,-131,-131xm259,-127v0,-61,-49,-111,-109,-111v-59,0,-109,52,-109,109v0,58,52,109,109,109v55,0,109,-50,109,-107xm96,-204v51,-1,119,-5,119,42v0,19,-12,33,-32,38r32,65r-39,0r-28,-59r-17,0r0,59r-35,0r0,-145xm131,-182r0,42v23,1,49,0,47,-20v2,-20,-23,-23,-47,-22","w":299},"\u00d0":{"d":"269,-130v0,78,-40,130,-119,130r-113,0r0,-117r-34,0r0,-36r34,0r0,-108r114,0v75,0,118,50,118,131xm98,-206r0,53r49,0r0,36r-49,0r0,62v66,5,108,-4,106,-75v-1,-73,-39,-81,-106,-76","w":282},"\u00de":{"d":"33,-261r62,0r0,46v87,-5,162,10,162,80v0,77,-75,90,-162,84r0,51r-62,0r0,-261xm95,-166r0,66v42,0,98,7,98,-34v0,-37,-58,-33,-98,-32","w":264},"\u00dd":{"d":"-4,-261r65,0r58,106r60,-106r65,0r-94,161r0,100r-63,0r0,-100xm130,-348r39,0r-52,61r-23,0","w":239},"\u00a6":{"d":"72,-252r36,0r0,134r-36,0r0,-134xm72,-72r36,0r0,134r-36,0r0,-134","w":180},"\u00b0":{"d":"59,-257v30,0,54,23,54,53v0,29,-24,54,-54,54v-30,0,-53,-24,-53,-54v0,-30,23,-53,53,-53xm59,-235v-17,0,-31,14,-31,31v0,17,14,31,31,31v17,0,31,-14,31,-31v0,-17,-14,-31,-31,-31","w":118},"\u00f7":{"d":"150,-203v14,0,27,12,27,27v0,14,-12,26,-27,26v-15,0,-27,-11,-27,-26v0,-15,13,-27,27,-27xm45,-125r210,0r0,35r-210,0r0,-35xm150,-65v14,0,27,12,27,27v0,14,-12,26,-27,26v-15,0,-27,-11,-27,-26v0,-15,13,-27,27,-27","w":299},"\u00f0":{"d":"137,-167v-10,-20,-16,-33,-21,-40r-54,18r-8,-19r49,-16v-2,-3,-8,-9,-19,-22r30,-21v10,9,20,20,31,32r47,-15r9,19r-43,13v60,74,64,224,-51,223v-56,0,-94,-36,-94,-93v0,-74,66,-112,124,-79xm107,-143v-26,0,-40,18,-40,55v0,37,14,55,40,55v26,0,39,-18,39,-55v0,-37,-13,-55,-39,-55","w":213},"\u00d7":{"d":"73,-211r79,79r79,-79r25,24r-79,80r79,79r-25,24r-79,-79r-79,79r-24,-24r79,-79r-79,-80","w":299},"\u00bd":{"d":"56,-251r26,0r0,140r-32,0r0,-99v-10,8,-19,14,-28,18r0,-29v13,-7,24,-17,34,-30xm208,-251r29,0r-152,251r-28,0xm281,-102v0,36,-57,53,-65,75r67,0r0,27r-97,0v-10,-50,58,-63,62,-100v2,-20,-27,-25,-28,-7v0,2,0,4,1,8r-29,11v-11,-29,10,-56,42,-55v28,0,47,17,47,41","w":293},"\u00bc":{"d":"56,-251r26,0r0,140r-32,0r0,-99v-10,8,-19,14,-28,18r0,-29v13,-7,24,-17,34,-30xm208,-251r29,0r-152,251r-28,0xm239,-140r29,0r0,91r16,0r0,22r-16,0r0,27r-31,0r0,-27r-51,0r0,-27xm237,-98r-30,49r30,0r0,-49","w":293},"\u00b9":{"d":"59,-251r27,0r0,151r-33,0r0,-107v-11,9,-21,15,-31,19r0,-31v14,-8,26,-18,37,-32","w":122},"\u00b1":{"d":"132,-215r36,0r0,57r87,0r0,35r-87,0r0,57r-36,0r0,-57r-87,0r0,-35r87,0r0,-57xm45,-35r210,0r0,35r-210,0r0,-35","w":299},"\u00fe":{"d":"79,-24r0,89r-51,0r0,-326r51,0r0,104v48,-59,129,-23,129,67v0,90,-82,125,-129,66xm79,-55v26,45,75,31,75,-35v0,-66,-48,-81,-75,-36r0,71","w":221},"\u00be":{"d":"72,-186v21,5,32,17,32,37v0,27,-16,41,-46,41v-35,0,-53,-20,-45,-50r28,8v-1,13,2,24,14,23v10,0,14,-8,14,-23v0,-18,-7,-26,-27,-26r0,-20v17,1,26,-3,25,-21v0,-12,-4,-18,-12,-18v-8,0,-11,6,-11,18r-29,5v-6,-26,14,-41,42,-42v48,-2,61,57,15,68xm208,-251r29,0r-152,251r-28,0xm239,-140r29,0r0,91r16,0r0,22r-16,0r0,27r-31,0r0,-27r-51,0r0,-27xm237,-98r-30,49r30,0r0,-49","w":293},"\u00b3":{"d":"76,-181v22,5,33,17,33,39v0,28,-18,44,-49,44v-37,0,-54,-22,-46,-54r30,9v-3,12,1,26,13,25v11,0,16,-8,16,-25v0,-20,-8,-28,-29,-28r0,-21v17,1,26,-3,26,-22v0,-13,-5,-20,-13,-20v-8,0,-11,6,-11,19r-30,5v-8,-25,14,-43,43,-44v50,-2,65,60,17,73","w":122},"\u00b2":{"d":"109,-209v0,39,-59,56,-68,80r71,0r0,29r-102,0v-11,-53,61,-68,65,-107v2,-23,-29,-29,-30,-8v0,2,1,4,2,8r-31,13v-11,-32,10,-61,44,-60v30,0,49,19,49,45","w":122},"\u00fd":{"d":"6,-181r53,0r49,133r41,-133r52,0r-69,202v-13,45,-64,57,-116,44r0,-46v25,9,60,8,64,-15xm115,-267r39,0r-52,61r-23,0","w":209},"\u00a0":{"w":92}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990 as an unpublished work by Bitstream Inc.  All rights reserved. 
 * Confidential.
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Gothic 720","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-45 -348 357 85","underline-thickness":"23.76","underline-position":"-32.4","slope":"14.5","stemh":"23","stemv":"28","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":90},"!":{"d":"67,-261r34,0r-54,189r-21,0xm13,-45r35,0r-12,45r-35,0","w":103},"\"":{"d":"40,-252r0,97r-24,0r0,-97r24,0xm92,-252r0,97r-24,0r0,-97r24,0","w":108},"#":{"d":"162,-256r-28,80r45,0r29,-80r29,0r-29,80r53,0r-9,25r-53,0r-16,47r56,0r-9,25r-56,0r-29,80r-29,0r29,-80r-46,0r-28,80r-29,0r28,-80r-55,0r10,-25r54,0r16,-47r-58,0r9,-25r59,0r28,-80r29,0xm170,-151r-45,0r-17,47r46,0","w":276},"$":{"d":"116,-268r17,0r-5,19v33,8,50,27,49,61v-8,-1,-21,3,-25,-2v0,-18,-11,-33,-30,-37r-20,82v33,21,49,42,49,71v0,44,-33,77,-85,74r-7,27r-17,0r7,-30v-32,-8,-52,-33,-47,-68r25,0v0,24,10,40,29,46r25,-100v-76,-31,-57,-128,30,-126xm107,-229v-50,0,-66,57,-19,75xm94,-116r-23,93v54,7,74,-73,23,-93","w":181},"%":{"d":"64,-256v32,0,53,27,53,75v0,48,-21,73,-53,73v-32,0,-54,-25,-54,-73v0,-48,22,-75,54,-75xm199,-254r21,0r-130,257r-21,0xm64,-239v-18,0,-27,20,-27,58v0,38,9,56,27,56v18,0,27,-18,27,-56v0,-38,-9,-58,-27,-58xm224,-143v32,0,54,26,54,74v0,48,-22,74,-54,74v-32,0,-53,-26,-53,-74v0,-48,21,-74,53,-74xm225,-126v-18,0,-28,19,-28,57v0,38,10,57,28,57v18,0,27,-19,27,-57v0,-38,-9,-57,-27,-57","w":290},"&":{"d":"111,-175v30,-16,45,-34,45,-51v0,-12,-8,-20,-20,-20v-25,0,-29,41,-25,71xm114,-151v4,40,11,72,20,98v12,-14,23,-32,32,-56r18,15v-9,25,-22,46,-39,63v7,10,22,12,36,8r8,20v-19,13,-52,11,-66,-8v-50,39,-124,7,-124,-59v0,-39,30,-73,85,-93v-8,-54,7,-104,52,-104v27,0,45,19,45,41v0,31,-22,53,-67,75xm86,-138v-39,17,-58,38,-58,66v0,46,50,67,82,40v-12,-30,-19,-65,-24,-106","w":211},"\u2019":{"d":"59,-261r34,0v-10,38,-17,97,-59,96r3,-16v15,-3,22,-14,26,-34r-16,0","w":91},"(":{"d":"119,-273r27,0v-90,111,-116,207,-58,338r-26,0v-62,-129,-41,-235,57,-338","w":127},")":{"d":"32,-273r26,0v63,129,39,236,-57,338r-27,0v90,-112,115,-210,58,-338","w":127},"*":{"d":"86,-261r30,0r-8,64r57,-29r10,31r-63,11r45,45r-26,19r-30,-56r-29,56r-26,-19r44,-45r-62,-12r9,-30r58,29"},"+":{"d":"162,-215r0,95r93,0r0,25r-93,0r0,95r-24,0r0,-95r-93,0r0,-25r93,0r0,-95r24,0","w":299},",":{"d":"16,-48r34,0v-11,41,-16,105,-62,104r3,-16v17,-4,23,-16,28,-40r-15,0","w":90},"-":{"d":"16,-107r72,0r-7,27r-72,0","w":105},".":{"d":"13,-45r35,0r-12,45r-34,0","w":90},"\/":{"d":"108,-261r22,0r-134,294r-22,0","w":118},"0":{"d":"171,-176v-1,70,-34,181,-106,181v-34,0,-55,-27,-55,-77v1,-77,35,-184,107,-184v35,0,54,27,54,80xm113,-232v-50,0,-72,117,-73,167v0,31,10,46,28,46v51,0,73,-118,73,-167v0,-31,-11,-46,-28,-46","w":181},"1":{"d":"119,-251r22,0r-63,251r-28,0r53,-209v-20,17,-42,29,-66,34r7,-26v27,-9,51,-26,75,-50","w":181},"2":{"d":"167,-190v0,70,-118,99,-145,163r104,0r-8,27r-122,0v-5,-39,20,-65,64,-97v46,-34,76,-49,76,-94v0,-26,-14,-42,-37,-42v-32,-1,-45,33,-32,62r-26,16v-25,-45,6,-101,59,-101v42,0,67,25,67,66","w":181},"3":{"d":"117,-136v63,36,26,141,-49,141v-49,0,-73,-38,-59,-82r25,10v-7,27,7,49,33,49v30,0,52,-31,52,-66v-1,-31,-21,-45,-53,-42v3,-6,1,-18,8,-20v44,0,66,-19,66,-52v0,-22,-12,-36,-33,-36v-25,0,-40,17,-38,44r-26,7v-3,-44,24,-72,63,-73v39,0,62,24,62,57v0,30,-17,52,-51,63","w":181},"4":{"d":"140,-251r24,0r-41,169r33,0r-6,23r-33,0r-13,59r-29,0r15,-59r-90,0r7,-30xm126,-203r-98,121r67,0","w":181},"5":{"d":"67,-251r110,0r-7,26r-87,0r-24,72v38,-31,95,-8,95,49v0,60,-40,109,-92,109v-39,-1,-61,-26,-58,-69r24,-4v-2,29,11,50,34,50v30,0,63,-40,63,-88v-1,-57,-67,-50,-80,-3r-21,-9","w":181},"6":{"d":"11,-69v-1,-76,48,-187,114,-187v30,0,49,17,53,48r-23,9v-3,-24,-14,-35,-34,-35v-25,0,-53,33,-70,98v34,-50,107,-39,107,33v0,59,-40,108,-86,108v-37,0,-61,-30,-61,-74xm129,-105v0,-27,-13,-42,-32,-42v-28,0,-57,39,-57,87v0,27,13,43,33,43v30,0,56,-41,56,-88","w":181},"7":{"d":"44,-251r137,0r-2,21v-60,80,-99,155,-114,230r-34,0v14,-75,56,-145,122,-225r-116,0","w":181},"8":{"d":"145,-199v0,-22,-13,-36,-32,-36v-22,0,-42,21,-42,49v0,22,14,37,33,37v23,0,41,-22,41,-50xm121,-134v62,36,24,139,-50,139v-41,0,-66,-24,-66,-64v0,-41,25,-73,66,-82v-55,-28,-23,-115,41,-115v39,0,63,23,63,59v0,30,-21,56,-54,63xm122,-86v0,-25,-13,-40,-34,-40v-26,0,-52,28,-52,67v0,26,14,42,35,42v28,0,51,-32,51,-69","w":181},"9":{"d":"109,-234v-30,0,-56,41,-56,86v0,27,14,43,32,43v27,0,56,-35,56,-84v0,-28,-14,-45,-32,-45xm169,-179v1,68,-43,187,-112,184v-32,-1,-53,-19,-53,-50r24,-8v-1,22,12,36,30,36v30,0,53,-33,70,-98v-35,51,-104,35,-104,-34v0,-59,41,-107,85,-107v36,0,60,28,60,77","w":181},":":{"d":"45,-181r34,0r-11,45r-35,0xm13,-45r34,0r-11,45r-35,0","w":91},";":{"d":"46,-181r35,0r-12,45r-35,0xm12,-48r34,0v-12,40,-17,104,-63,104r4,-16v17,-4,23,-16,28,-40r-15,0","w":91},"<":{"d":"253,-177r-170,70r170,69r0,27r-207,-85r0,-23r207,-85r0,27","w":299},"=":{"d":"255,-154r0,24r-210,0r0,-24r210,0xm255,-85r0,25r-210,0r0,-25r210,0","w":299},">":{"d":"253,-119r0,23r-207,85r0,-27r171,-69r-171,-70r0,-27","w":299},"?":{"d":"158,-208v1,62,-84,84,-94,139r-23,0v3,-67,82,-80,84,-139v0,-22,-15,-37,-33,-37v-22,0,-38,18,-39,51r-27,-8v1,-80,130,-88,132,-6xm30,-45r34,0r-11,45r-35,0","w":156},"@":{"d":"160,-40v39,1,53,-49,60,-85v-4,-21,-17,-32,-35,-32v-32,0,-58,35,-58,79v0,25,12,38,33,38xm342,-137v1,60,-39,114,-99,116v-24,0,-37,-9,-36,-30v-25,48,-108,38,-108,-28v0,-56,37,-97,84,-97v20,0,35,9,43,26r10,-20r23,0r-27,111v0,11,5,17,17,17v37,0,67,-48,67,-92v0,-60,-47,-102,-121,-102v-90,0,-151,66,-151,145v0,119,161,155,246,89r10,14v-99,81,-281,30,-281,-104v0,-99,81,-166,177,-166v81,0,145,49,146,121","w":360},"A":{"d":"129,-261r32,0r33,261r-32,0r-8,-66r-103,0r-38,66r-33,0xm138,-219r-71,124r85,0","w":226},"B":{"d":"70,-261v68,-1,153,-8,153,58v0,34,-23,56,-68,65v37,11,55,32,55,64v0,42,-35,74,-99,74r-108,0xm97,-233r-20,80v51,3,117,-1,113,-44v4,-41,-51,-36,-93,-36xm69,-125r-25,97v60,3,131,2,131,-52v0,-45,-55,-48,-106,-45","w":234},"C":{"d":"14,-103v0,-82,58,-165,137,-164v37,0,66,13,92,41r-20,24v-22,-23,-43,-34,-70,-34v-64,0,-104,71,-104,133v1,99,107,97,151,29r18,25v-58,87,-204,70,-204,-54","w":243},"D":{"d":"3,0r67,-261r65,0v73,0,114,43,114,112v0,89,-55,149,-142,149r-104,0xm100,-30v71,3,112,-52,114,-118v2,-68,-45,-89,-117,-83r-51,201r54,0","w":264},"E":{"d":"70,-261r143,0r-8,30r-108,0r-21,81r105,0r-7,30r-106,0r-23,91r138,0r-7,29r-173,0","w":212},"F":{"d":"70,-261r121,0r-7,30r-87,0r-22,84r85,0r-7,30r-86,0r-30,117r-34,0","w":182},"G":{"d":"14,-104v0,-81,59,-165,138,-163v35,0,63,14,88,41r-20,25v-21,-23,-42,-35,-68,-35v-63,-1,-103,74,-103,136v0,77,82,96,129,49r13,-54r-82,0r7,-27r116,0r-24,99v-68,68,-194,47,-194,-71","w":249},"H":{"d":"3,0r67,-261r35,0r-29,111r137,0r29,-111r35,0r-66,261r-36,0r31,-120r-137,0r-31,120r-35,0","w":280},"I":{"d":"70,-261r34,0r-67,261r-34,0","w":107},"J":{"d":"138,-261r34,0r-51,198v-12,46,-30,69,-71,69v-43,0,-67,-41,-51,-81r31,-12v-11,26,-11,63,19,63v24,0,32,-19,41,-52","w":174},"K":{"d":"70,-261r34,0r-32,126r141,-126r43,0r-106,93r67,168r-35,0r-58,-145r-65,56r-23,89r-33,0","w":238},"L":{"d":"70,-261r34,0r-59,232r113,0r-7,29r-148,0","w":183},"M":{"d":"70,-261r42,0r29,208r135,-208r44,0r-67,261r-32,0r59,-221r-142,221r-18,0r-31,-221r-56,221r-30,0","w":322},"N":{"d":"70,-261r35,0r86,212r55,-212r30,0r-68,261r-32,0r-87,-216r-56,216r-30,0","w":278},"O":{"d":"243,-162v0,84,-53,169,-135,168v-55,0,-94,-40,-94,-105v0,-84,53,-169,135,-168v55,0,94,40,94,105xm146,-235v-61,0,-96,74,-96,137v0,46,23,72,61,72v58,0,97,-75,96,-136v0,-46,-24,-73,-61,-73","w":257},"P":{"d":"70,-261v76,-5,151,2,151,71v0,70,-72,92,-157,84r-27,106r-34,0xm97,-233r-25,99v58,5,114,-7,114,-55v0,-43,-43,-47,-89,-44","w":223},"Q":{"d":"145,-236v-58,1,-96,74,-96,138v0,47,25,74,61,73v-4,-13,-11,-23,-23,-31r16,-17v16,11,26,24,31,43v40,-13,73,-70,73,-133v0,-46,-23,-73,-62,-73xm15,-102v0,-82,48,-163,132,-164v56,0,95,42,95,109v0,72,-40,137,-97,157v7,14,18,22,34,27r-13,20v-24,-5,-37,-18,-46,-42v-63,7,-105,-36,-105,-107","w":257},"R":{"d":"70,-261v75,-2,158,-7,158,67v0,32,-20,57,-57,69r26,125r-34,0r-24,-119v-25,2,-46,1,-71,1r-31,118r-34,0xm97,-233r-22,86v55,2,118,3,118,-48v0,-43,-52,-39,-96,-38","w":235},"S":{"d":"137,-68v0,-54,-98,-72,-98,-129v0,-40,31,-69,81,-69v37,0,63,15,81,44r-24,18v-15,-43,-96,-47,-100,0v6,48,97,66,97,129v0,48,-35,80,-95,80v-45,0,-79,-25,-87,-64r28,-14v0,62,117,70,117,5","w":204},"T":{"d":"37,-261r188,0r-8,30r-74,0r-60,231r-34,0r59,-231r-78,0","w":200},"U":{"d":"70,-261r34,0r-42,164v-12,43,9,72,54,72v45,0,66,-25,78,-73r43,-163r34,0r-47,181v-15,57,-52,86,-108,86v-67,-1,-102,-46,-86,-110","w":273},"V":{"d":"28,-261r32,0r13,216r114,-216r32,0r-137,261r-36,0","w":191},"W":{"d":"30,-261r30,0r-4,204r102,-204r25,0r2,204r98,-204r31,0r-129,261r-25,0r-3,-202r-103,202r-24,0r0,-261","w":285},"X":{"d":"44,-261r32,0r25,88r65,-88r35,0r-90,120r41,141r-32,0r-32,-111r-82,111r-35,0r107,-143","w":182},"Y":{"d":"28,-261r34,0r35,114r85,-114r35,0r-108,144r-30,117r-34,0r31,-119","w":189},"Z":{"d":"46,-261r157,0r-5,14r-168,218r121,0r-7,29r-168,0r6,-15r166,-216r-109,0","w":176},"[":{"d":"82,-267r70,0r-5,22r-42,0r-73,282r46,0r-6,21r-74,0","w":127},"\\":{"d":"26,-261r20,0r49,294r-20,0","w":118},"]":{"d":"42,-267r75,0r-85,325r-70,0r5,-21r42,0r73,-282r-45,0","w":127},"^":{"d":"196,-256r90,98r-32,0r-74,-74r-75,74r-31,0r89,-98r33,0","w":360},"_":{"d":"180,60r0,25r-180,0r0,-25r180,0"},"\u2018":{"d":"93,-261r-3,17v-15,3,-22,13,-26,33r16,0r-12,46r-34,0v10,-38,17,-96,59,-96","w":91},"a":{"d":"157,-141v-3,39,-19,76,-26,113v0,11,8,15,19,12r0,17v-21,9,-45,3,-47,-22v-26,41,-104,34,-101,-24v3,-62,63,-61,123,-77v7,-23,0,-43,-29,-43v-18,0,-32,7,-44,23r-21,-12v19,-43,131,-44,126,13xm121,-105v-58,16,-90,21,-90,59v0,19,12,31,31,31v40,0,49,-52,59,-90","w":185},"b":{"d":"72,-261r30,0r-28,105v34,-51,105,-35,105,39v0,66,-41,122,-87,122v-25,0,-45,-15,-50,-39r-9,34r-29,0xm115,-165v-38,0,-65,65,-65,111v0,23,15,36,35,36v35,0,64,-49,64,-102v0,-29,-12,-45,-34,-45","w":198},"c":{"d":"168,-131r-24,8v-5,-27,-19,-40,-41,-40v-35,0,-66,43,-66,96v0,58,64,63,88,24r20,14v-35,56,-137,43,-137,-40v0,-102,132,-169,160,-62","w":174},"d":{"d":"175,-261r29,0r-68,261r-29,0r6,-25v-33,50,-105,36,-105,-38v0,-67,41,-123,87,-123v25,0,45,15,50,39xm72,-16v38,0,65,-64,65,-110v0,-23,-13,-37,-34,-37v-35,0,-65,49,-65,102v0,29,12,45,34,45","w":198},"e":{"d":"134,-103v5,-35,-4,-61,-32,-61v-27,0,-47,21,-58,61r90,0xm158,-82r-119,0v-8,33,8,65,40,64v18,0,32,-7,43,-24r18,14v-35,56,-131,39,-131,-41v0,-65,41,-117,94,-117v49,0,69,50,55,104"},"f":{"d":"145,-264r-2,23v-29,-5,-45,-2,-52,26r-9,34r31,0r-6,23r-30,0r-54,210r-29,0r54,-210r-29,0r5,-23r30,0v11,-56,28,-102,91,-83","w":105},"g":{"d":"8,-64v0,-54,36,-121,87,-122v25,0,45,15,50,39r9,-34r29,0r-45,174v-13,51,-30,77,-85,77v-31,0,-54,-12,-67,-33r22,-15v12,18,27,27,48,27v41,0,49,-38,57,-76v-32,52,-105,37,-105,-37xm72,-17v39,0,65,-63,65,-109v0,-23,-13,-37,-34,-37v-35,0,-65,50,-65,101v0,29,13,45,34,45","w":198},"h":{"d":"72,-261r29,0r-27,105v35,-54,126,-30,108,42r-29,114r-30,0r34,-135v0,-19,-13,-30,-32,-30v-69,1,-72,107,-92,165r-29,0","w":213},"i":{"d":"72,-261r29,0r-10,39r-29,0xm51,-181r29,0r-46,181r-30,0","w":94},"j":{"d":"72,-261r29,0r-10,39r-29,0xm51,-181r29,0r-52,201v-8,42,-32,58,-73,46r7,-22v24,7,32,-5,39,-33","w":94},"k":{"d":"72,-261r28,0r-42,163r92,-83r37,0r-69,60r37,121r-28,0r-31,-102r-48,42r-15,60r-29,0"},"l":{"d":"72,-261r29,0r-67,261r-30,0","w":94},"m":{"d":"179,-148v20,-25,42,-38,64,-38v37,0,57,32,47,72r-29,114r-30,0r34,-137v0,-17,-11,-27,-28,-27v-26,0,-53,20,-62,55r-28,109r-29,0r31,-120v6,-23,-2,-44,-26,-44v-25,0,-52,20,-61,55r-29,109r-29,0r47,-181r29,0r-6,25v30,-41,93,-41,105,8","w":321},"n":{"d":"4,0r46,-181r30,0r-6,25v35,-53,128,-32,109,40r-30,116r-30,0r33,-135v0,-18,-12,-30,-31,-30v-69,1,-72,107,-91,165r-30,0","w":213},"o":{"d":"79,5v-44,0,-71,-28,-71,-77v0,-62,41,-114,98,-114v44,0,71,28,71,77v0,62,-41,114,-98,114xm79,-18v36,0,67,-43,67,-96v0,-31,-16,-49,-40,-49v-36,0,-67,43,-67,96v0,31,15,49,40,49","w":196},"p":{"d":"180,-117v0,55,-37,123,-90,122v-24,0,-42,-14,-48,-38r-24,98r-30,0r62,-246r30,0r-7,27v33,-54,107,-37,107,37xm84,-17v39,0,66,-60,66,-103v0,-28,-14,-45,-34,-45v-38,-1,-63,62,-65,111v0,22,14,37,33,37","w":198},"q":{"d":"145,-147r9,-34r29,0r-65,246r-29,0r24,-90v-33,50,-105,36,-105,-38v0,-67,41,-123,87,-123v25,0,45,15,50,39xm72,-16v38,0,65,-64,65,-110v0,-23,-13,-37,-34,-37v-35,0,-65,49,-65,102v0,29,12,45,34,45","w":198},"r":{"d":"136,-183r-8,31v-55,-30,-78,92,-95,152r-29,0r47,-181r26,0r-13,52v29,-42,35,-65,72,-54","w":120},"s":{"d":"117,-45v2,-37,-101,-40,-89,-87v-6,-62,114,-71,133,-17r-25,13v-10,-33,-77,-40,-77,-3v0,20,17,26,44,36v67,24,56,108,-26,108v-38,0,-65,-17,-78,-50r25,-11v11,27,30,40,57,40v23,0,36,-12,36,-29","w":179},"t":{"d":"102,-258r-19,77r32,0r-5,23r-33,0r-31,125v1,22,31,17,47,8r-4,22v-39,19,-83,5,-70,-44r29,-111r-29,0r5,-23r30,0r16,-67","w":123},"u":{"d":"49,-181r29,0r-33,137v0,17,13,28,32,28v69,-1,72,-106,91,-165r29,0r-46,181r-30,0r7,-25v-35,54,-128,30,-109,-41","w":213},"v":{"d":"23,-181r27,0r11,151r86,-151r30,0r-107,182r-33,0","w":176},"w":{"d":"23,-181r27,0r8,151r75,-151r28,0r8,151r76,-151r28,0r-96,182r-29,0r-9,-144r-73,144r-29,0","w":273},"x":{"d":"31,-181r28,0r22,64r48,-64r30,0r-69,89r32,92r-29,0r-23,-68r-52,68r-31,0r74,-94","w":159},"y":{"d":"21,-181r28,0r20,152r77,-152r29,0r-106,202v-22,41,-43,56,-89,46r5,-24v38,10,50,-14,62,-36","w":176},"z":{"d":"33,-181r126,0r-4,17r-120,140r94,0r-6,24r-135,0r3,-12r124,-145r-88,0","w":166},"{":{"d":"79,-153v-4,-68,0,-117,73,-107r0,27v-86,-17,-3,129,-78,140v44,8,35,52,35,99v0,34,9,42,43,41r0,26v-51,2,-76,-11,-73,-63v3,-48,4,-101,-49,-90r0,-27v33,4,51,-9,49,-46"},"|":{"d":"103,-275r0,360r-26,0r0,-360r26,0"},"}":{"d":"28,-260v51,-2,76,10,73,63v-3,48,-5,102,50,90r0,27v-53,-11,-53,39,-50,90v4,53,-22,65,-73,63r0,-26v85,17,3,-130,78,-140v-43,-8,-35,-53,-35,-100v0,-34,-10,-41,-43,-40r0,-27"},"~":{"d":"31,-107v54,-47,111,-1,170,-1v22,0,43,-9,68,-27r0,27v-24,17,-45,25,-68,25v-35,0,-67,-24,-102,-24v-21,0,-42,10,-68,28r0,-28","w":299},"\u00a1":{"d":"67,-261r35,0r-12,45r-35,0xm56,-189r21,0r-41,189r-34,0","w":103},"\u00a2":{"d":"116,-230r16,0r-11,41v25,6,41,24,47,53r-25,8v-4,-20,-12,-33,-27,-38r-38,143v20,1,34,-7,47,-25r20,14v-19,23,-41,35,-73,34r-11,45r-16,0r12,-47v-31,-8,-49,-34,-49,-73v1,-65,43,-117,98,-116xm100,-168v-47,-7,-93,117,-37,143","w":181},"\u00a3":{"d":"184,-188r-25,-6v4,-22,-6,-40,-28,-39v-30,0,-42,32,-46,99r58,0r-5,18r-55,0v-3,26,-9,51,-19,74v18,15,31,22,43,22v16,0,29,-12,31,-34r23,-4v-4,70,-66,80,-108,37v-18,32,-70,36,-72,-5v-2,-33,40,-48,66,-28v5,-17,7,-38,8,-62r-47,0r5,-18r43,0v3,-81,27,-122,75,-122v38,0,60,28,53,68xm39,-34v-15,-15,-40,-16,-42,7v6,24,32,14,42,-7","w":181},"\u00a5":{"d":"32,-251r29,0r35,111r81,-111r30,0r-62,84r50,0r-4,17r-59,0r-27,35r77,0r-4,17r-78,0r-25,98r-27,0r25,-98r-81,0r5,-17r81,0r-12,-35r-60,0r4,-17r50,0","w":186},"\u00a7":{"d":"164,-236r-19,14v-11,-14,-20,-21,-32,-21v-54,15,11,76,20,100v32,38,23,97,-32,86v27,34,13,90,-34,89v-23,0,-40,-11,-55,-34r19,-14v11,16,23,24,35,24v31,0,25,-39,9,-63v-16,-24,-48,-65,-48,-94v1,-27,21,-42,49,-37v-23,-36,-12,-80,37,-81v21,0,37,10,51,31xm127,-92v0,-10,-33,-77,-56,-77v-11,0,-18,7,-18,19v0,16,32,77,55,76v11,0,19,-8,19,-18"},"\u00a4":{"d":"64,-214v25,-20,65,-20,90,0r36,-36r14,14r-36,36v20,25,20,63,0,89r36,36r-14,14r-36,-36v-24,19,-65,21,-90,0r-36,36r-14,-14r36,-36v-17,-20,-20,-67,0,-89r-36,-36r14,-14xm163,-156v0,-29,-24,-53,-54,-53v-30,0,-53,24,-53,53v0,30,23,54,53,54v30,0,54,-24,54,-54","w":218},"'":{"d":"40,-252r0,97r-24,0r0,-97r24,0","w":55},"\u201c":{"d":"93,-261r-3,17v-15,3,-22,13,-26,33r16,0r-12,46r-34,0v10,-38,17,-96,59,-96xm156,-261r-3,17v-14,3,-22,12,-26,33r16,0r-12,46r-34,0v11,-37,17,-96,59,-96","w":154},"\u00ab":{"d":"55,-145r27,0r-47,55r36,54r-27,0r-35,-55xm115,-145r27,0r-47,55r36,54r-27,0r-36,-55","w":153},"\u2013":{"d":"-3,-105r180,0r-5,23r-180,0"},"\u00b7":{"d":"44,-147v12,0,21,10,21,22v0,12,-10,21,-21,21v-11,0,-21,-10,-21,-21v0,-11,9,-22,21,-22","w":90},"\u00b6":{"d":"168,-245r-21,0r0,245r-19,0r0,-245r-32,0r0,245r-19,0r0,-138v-41,-2,-65,-26,-65,-61v0,-36,27,-61,69,-61r87,0r0,15"},"\u201d":{"d":"59,-261r34,0v-10,38,-17,96,-59,96r3,-16v15,-3,22,-13,26,-33r-16,0xm122,-261r34,0v-10,38,-17,97,-59,96r3,-16v14,-3,22,-12,26,-33r-16,0","w":154},"\u00bb":{"d":"4,-144r27,0r43,54r-40,54r-27,0r40,-54xm64,-144r27,0r42,54r-40,54r-27,0r41,-54","w":153},"\u2026":{"d":"28,-45r35,0r-12,45r-34,0xm148,-45r35,0r-12,45r-35,0xm268,-45r35,0r-12,45r-34,0","w":360},"\u00bf":{"d":"105,-261r35,0r-12,45r-34,0xm0,-53v0,-64,83,-81,93,-139r23,0v-1,65,-82,81,-83,139v0,22,15,38,33,38v22,0,37,-19,38,-52r27,8v0,81,-131,87,-131,6","w":156},"`":{"d":"60,-268r30,0r37,63r-17,0"},"\u00b4":{"d":"122,-268r32,0r-56,63r-18,0"},"\u00af":{"d":"66,-245r91,0r-4,21r-92,0"},"\u00a8":{"d":"68,-251r30,0r-7,33r-29,0xm128,-251r29,0r-7,33r-29,0"},"\u00b8":{"d":"57,0r13,0v-1,6,-6,14,-5,18v26,0,38,10,38,30v0,39,-52,39,-88,26r6,-16v24,9,58,15,61,-10v2,-14,-15,-15,-36,-15"},"\u2014":{"d":"-3,-105r360,0r-5,23r-360,0","w":360},"\u00c6":{"d":"144,-261r175,0r-8,30r-102,0r-21,81r100,0r-8,30r-100,0r-23,91r133,0r-8,29r-165,0r17,-66r-82,0r-43,66r-35,0xm160,-231r-91,136r72,0r36,-136r-17,0","w":318},"\u00aa":{"d":"73,-264v73,1,26,66,26,110v0,9,6,10,14,9r0,11v-16,6,-34,3,-36,-15v-19,28,-77,23,-75,-17v2,-45,48,-42,92,-54v6,-15,-3,-30,-22,-30v-14,0,-24,5,-33,16r-16,-8v10,-14,28,-22,50,-22xm91,-208v-44,11,-68,14,-68,41v0,13,9,22,23,22v30,0,38,-36,45,-63","w":139},"\u00d8":{"d":"37,-26v-74,-101,40,-305,168,-222r18,-25r17,11r-20,27v75,104,-41,304,-168,222r-25,33r-16,-12xm185,-222v-82,-56,-164,75,-126,167xm72,-39v82,55,164,-75,126,-167","w":257},"\u00ba":{"d":"59,-131v-33,0,-53,-20,-53,-54v0,-78,124,-116,126,-25v0,44,-30,79,-73,79xm59,-147v27,0,51,-30,51,-67v0,-22,-12,-34,-30,-34v-27,0,-51,30,-51,67v0,22,12,34,30,34","w":147},"\u00e6":{"d":"119,-41v-17,31,-38,46,-66,46v-32,0,-51,-20,-51,-50v-2,-60,70,-63,123,-77v7,-23,0,-43,-29,-43v-18,0,-32,7,-44,23r-21,-12v18,-39,101,-44,119,-6v38,-43,119,-31,116,40v0,10,-1,23,-4,38r-117,0v-8,33,8,66,39,64v17,0,32,-7,43,-24r17,14v-27,48,-113,43,-125,-13xm121,-105v-58,16,-90,21,-90,59v0,19,12,31,31,31v38,0,50,-52,59,-90xm149,-103r89,0v5,-32,-5,-62,-32,-61v-26,0,-46,21,-57,61","w":284},"\u00f8":{"d":"162,-195r13,9r-16,21v53,76,-27,213,-120,159r-19,25r-13,-9r19,-26v-54,-76,29,-214,120,-158xm132,-155v-54,-37,-113,50,-88,117xm141,-142r-87,117v57,35,109,-49,87,-117","w":196},"\u00df":{"d":"139,-150v31,10,47,30,47,62v0,54,-30,93,-76,93v-34,0,-52,-24,-46,-60r25,0v-2,21,5,36,23,36v24,0,45,-33,45,-71v0,-28,-16,-45,-48,-48v5,-8,-1,-26,13,-25v61,7,72,-82,11,-81v-27,0,-40,16,-49,50r-51,194r-29,0r48,-186v14,-54,33,-80,81,-80v90,0,91,112,6,116","w":211},"\u00c1":{"d":"129,-261r32,0r33,261r-32,0r-8,-66r-103,0r-38,66r-33,0xm138,-219r-71,124r85,0xm163,-348r32,0r-56,63r-18,0","w":226},"\u00c2":{"d":"141,-348r27,0r27,63r-16,0r-26,-42r-42,42r-18,0xm129,-261r32,0r33,261r-32,0r-8,-66r-103,0r-38,66r-33,0xm138,-219r-71,124r85,0","w":226},"\u00c4":{"d":"129,-261r32,0r33,261r-32,0r-8,-66r-103,0r-38,66r-33,0xm138,-219r-71,124r85,0xm109,-331r30,0r-7,33r-29,0xm169,-331r29,0r-7,33r-29,0","w":226},"\u00c0":{"d":"129,-261r32,0r33,261r-32,0r-8,-66r-103,0r-38,66r-33,0xm138,-219r-71,124r85,0xm101,-348r30,0r37,63r-17,0","w":226},"\u00c5":{"d":"147,-327v-14,0,-26,12,-26,26v0,14,11,25,26,25v14,0,26,-11,26,-25v0,-14,-12,-26,-26,-26xm152,-259r9,0r33,259r-32,0r-8,-66r-103,0r-38,66r-33,0r148,-259r12,0v-52,-7,-44,-86,7,-85v24,0,43,19,43,43v0,22,-14,38,-38,42xm138,-219r-71,124r85,0","w":226},"\u00c3":{"d":"186,-334r16,0v-10,40,-37,37,-71,27v-9,0,-14,4,-18,14r-15,0v10,-43,37,-39,72,-28v8,0,12,-4,16,-13xm129,-261r32,0r33,261r-32,0r-8,-66r-103,0r-38,66r-33,0xm138,-219r-71,124r85,0","w":226},"\u00c7":{"d":"14,-103v0,-82,58,-165,137,-164v37,0,66,13,92,41r-20,24v-22,-23,-43,-34,-70,-34v-64,0,-104,71,-104,133v1,99,107,97,151,29r18,25v-58,87,-204,70,-204,-54xm106,0r13,0v-1,6,-6,14,-5,18v26,0,38,10,38,30v0,39,-52,39,-88,26r6,-16v24,9,58,15,61,-10v2,-14,-15,-15,-36,-15","w":243},"\u00c9":{"d":"70,-261r143,0r-8,30r-108,0r-21,81r105,0r-7,30r-106,0r-23,91r138,0r-7,29r-173,0xm162,-348r32,0r-56,63r-18,0","w":212},"\u00ca":{"d":"140,-348r27,0r27,63r-17,0r-25,-42r-42,42r-18,0xm70,-261r143,0r-8,30r-108,0r-21,81r105,0r-7,30r-106,0r-23,91r138,0r-7,29r-173,0","w":212},"\u00cb":{"d":"70,-261r143,0r-8,30r-108,0r-21,81r105,0r-7,30r-106,0r-23,91r138,0r-7,29r-173,0xm108,-331r30,0r-7,33r-29,0xm168,-331r29,0r-7,33r-29,0","w":212},"\u00c8":{"d":"70,-261r143,0r-8,30r-108,0r-21,81r105,0r-7,30r-106,0r-23,91r138,0r-7,29r-173,0xm100,-348r30,0r37,63r-17,0","w":212},"\u00cd":{"d":"70,-261r34,0r-67,261r-34,0xm109,-348r32,0r-56,63r-18,0","w":107},"\u00ce":{"d":"87,-348r27,0r27,63r-16,0r-26,-42r-42,42r-18,0xm70,-261r34,0r-67,261r-34,0","w":107},"\u00cf":{"d":"70,-261r34,0r-67,261r-34,0xm55,-331r30,0r-7,33r-29,0xm115,-331r29,0r-7,33r-29,0","w":107},"\u00cc":{"d":"70,-261r34,0r-67,261r-34,0xm47,-348r30,0r37,63r-17,0","w":107},"\u00d1":{"d":"218,-334r15,0v-10,40,-36,37,-70,27v-9,0,-14,4,-18,14r-15,0v10,-42,37,-39,71,-28v8,0,13,-4,17,-13xm70,-261r35,0r86,212r55,-212r30,0r-68,261r-32,0r-87,-216r-56,216r-30,0","w":278},"\u00d3":{"d":"243,-162v0,84,-53,169,-135,168v-55,0,-94,-40,-94,-105v0,-84,53,-169,135,-168v55,0,94,40,94,105xm146,-235v-61,0,-96,74,-96,137v0,46,23,72,61,72v58,0,97,-75,96,-136v0,-46,-24,-73,-61,-73xm175,-348r32,0r-56,63r-18,0","w":257},"\u00d4":{"d":"154,-348r27,0r26,63r-16,0r-25,-42r-42,42r-18,0xm243,-162v0,84,-53,169,-135,168v-55,0,-94,-40,-94,-105v0,-84,53,-169,135,-168v55,0,94,40,94,105xm146,-235v-61,0,-96,74,-96,137v0,46,23,72,61,72v58,0,97,-75,96,-136v0,-46,-24,-73,-61,-73","w":257},"\u00d6":{"d":"243,-162v0,84,-53,169,-135,168v-55,0,-94,-40,-94,-105v0,-84,53,-169,135,-168v55,0,94,40,94,105xm146,-235v-61,0,-96,74,-96,137v0,46,23,72,61,72v58,0,97,-75,96,-136v0,-46,-24,-73,-61,-73xm121,-331r30,0r-7,33r-29,0xm181,-331r29,0r-7,33r-29,0","w":257},"\u00d2":{"d":"243,-162v0,84,-53,169,-135,168v-55,0,-94,-40,-94,-105v0,-84,53,-169,135,-168v55,0,94,40,94,105xm146,-235v-61,0,-96,74,-96,137v0,46,23,72,61,72v58,0,97,-75,96,-136v0,-46,-24,-73,-61,-73xm113,-348r30,0r37,63r-17,0","w":257},"\u00d5":{"d":"199,-334r15,0v-10,40,-36,37,-70,27v-9,0,-14,4,-18,14r-15,0v10,-42,37,-39,71,-28v8,0,13,-4,17,-13xm243,-162v0,84,-53,169,-135,168v-55,0,-94,-40,-94,-105v0,-84,53,-169,135,-168v55,0,94,40,94,105xm146,-235v-61,0,-96,74,-96,137v0,46,23,72,61,72v58,0,97,-75,96,-136v0,-46,-24,-73,-61,-73","w":257},"\u00da":{"d":"70,-261r34,0r-42,164v-12,43,9,72,54,72v45,0,66,-25,78,-73r43,-163r34,0r-47,181v-15,57,-52,86,-108,86v-67,-1,-102,-46,-86,-110xm192,-348r32,0r-56,63r-18,0","w":273},"\u00db":{"d":"171,-348r26,0r27,63r-16,0r-26,-42r-42,42r-18,0xm70,-261r34,0r-42,164v-12,43,9,72,54,72v45,0,66,-25,78,-73r43,-163r34,0r-47,181v-15,57,-52,86,-108,86v-67,-1,-102,-46,-86,-110","w":273},"\u00dc":{"d":"70,-261r34,0r-42,164v-12,43,9,72,54,72v45,0,66,-25,78,-73r43,-163r34,0r-47,181v-15,57,-52,86,-108,86v-67,-1,-102,-46,-86,-110xm138,-331r30,0r-7,33r-29,0xm198,-331r29,0r-7,33r-29,0","w":273},"\u00d9":{"d":"70,-261r34,0r-42,164v-12,43,9,72,54,72v45,0,66,-25,78,-73r43,-163r34,0r-47,181v-15,57,-52,86,-108,86v-67,-1,-102,-46,-86,-110xm130,-348r30,0r37,63r-17,0","w":273},"\u00e1":{"d":"157,-141v-3,39,-19,76,-26,113v0,11,8,15,19,12r0,17v-21,9,-45,3,-47,-22v-26,41,-104,34,-101,-24v3,-62,63,-61,123,-77v7,-23,0,-43,-29,-43v-18,0,-32,7,-44,23r-21,-12v19,-43,131,-44,126,13xm121,-105v-58,16,-90,21,-90,59v0,19,12,31,31,31v40,0,49,-52,59,-90xm125,-268r32,0r-56,63r-18,0","w":185},"\u00e2":{"d":"104,-268r26,0r27,63r-16,0r-26,-42r-42,42r-18,0xm157,-141v-3,39,-19,76,-26,113v0,11,8,15,19,12r0,17v-21,9,-45,3,-47,-22v-26,41,-104,34,-101,-24v3,-62,63,-61,123,-77v7,-23,0,-43,-29,-43v-18,0,-32,7,-44,23r-21,-12v19,-43,131,-44,126,13xm121,-105v-58,16,-90,21,-90,59v0,19,12,31,31,31v40,0,49,-52,59,-90","w":185},"\u00e4":{"d":"157,-141v-3,39,-19,76,-26,113v0,11,8,15,19,12r0,17v-21,9,-45,3,-47,-22v-26,41,-104,34,-101,-24v3,-62,63,-61,123,-77v7,-23,0,-43,-29,-43v-18,0,-32,7,-44,23r-21,-12v19,-43,131,-44,126,13xm121,-105v-58,16,-90,21,-90,59v0,19,12,31,31,31v40,0,49,-52,59,-90xm71,-251r30,0r-7,33r-29,0xm131,-251r29,0r-7,33r-29,0","w":185},"\u00e0":{"d":"157,-141v-3,39,-19,76,-26,113v0,11,8,15,19,12r0,17v-21,9,-45,3,-47,-22v-26,41,-104,34,-101,-24v3,-62,63,-61,123,-77v7,-23,0,-43,-29,-43v-18,0,-32,7,-44,23r-21,-12v19,-43,131,-44,126,13xm121,-105v-58,16,-90,21,-90,59v0,19,12,31,31,31v40,0,49,-52,59,-90xm63,-268r30,0r37,63r-17,0","w":185},"\u00e5":{"d":"114,-284v24,0,43,19,43,43v0,24,-19,43,-43,43v-24,0,-43,-19,-43,-43v0,-24,19,-43,43,-43xm114,-266v-14,0,-26,11,-26,25v0,15,12,26,26,26v15,0,26,-11,26,-25v0,-15,-12,-26,-26,-26xm157,-141v-3,39,-19,76,-26,113v0,11,8,15,19,12r0,17v-21,9,-45,3,-47,-22v-26,41,-101,34,-101,-24v0,-60,76,-63,123,-77v7,-23,0,-43,-29,-43v-18,0,-32,7,-44,23r-21,-12v19,-43,131,-44,126,13xm121,-105v-58,16,-90,21,-90,59v0,19,12,31,31,31v40,0,49,-52,59,-90","w":185},"\u00e3":{"d":"149,-255r15,0v-10,39,-36,39,-70,28v-9,0,-15,4,-19,14r-15,0v10,-42,37,-39,72,-28v8,0,13,-5,17,-14xm157,-141v-3,39,-19,76,-26,113v0,11,8,15,19,12r0,17v-21,9,-45,3,-47,-22v-26,41,-104,34,-101,-24v3,-62,63,-61,123,-77v7,-23,0,-43,-29,-43v-18,0,-32,7,-44,23r-21,-12v19,-43,131,-44,126,13xm121,-105v-58,16,-90,21,-90,59v0,19,12,31,31,31v40,0,49,-52,59,-90","w":185},"\u00e7":{"d":"168,-131r-24,8v-5,-27,-19,-40,-41,-40v-35,0,-66,43,-66,96v0,58,64,63,88,24r20,14v-35,56,-137,43,-137,-40v0,-102,132,-169,160,-62xm70,0r13,0v-1,6,-6,14,-5,18v26,0,38,10,38,30v0,39,-52,39,-88,26r6,-16v24,9,58,15,61,-10v2,-14,-15,-15,-36,-15","w":174},"\u00e9":{"d":"134,-103v5,-35,-4,-61,-32,-61v-27,0,-47,21,-58,61r90,0xm158,-82r-119,0v-8,33,8,65,40,64v18,0,32,-7,43,-24r18,14v-35,56,-131,39,-131,-41v0,-65,41,-117,94,-117v49,0,69,50,55,104xm122,-268r32,0r-56,63r-18,0"},"\u00ea":{"d":"101,-268r27,0r26,63r-16,0r-25,-42r-42,42r-18,0xm134,-103v5,-35,-4,-61,-32,-61v-27,0,-47,21,-58,61r90,0xm158,-82r-119,0v-8,33,8,65,40,64v18,0,32,-7,43,-24r18,14v-35,56,-131,39,-131,-41v0,-65,41,-117,94,-117v49,0,69,50,55,104"},"\u00eb":{"d":"134,-103v5,-35,-4,-61,-32,-61v-27,0,-47,21,-58,61r90,0xm158,-82r-119,0v-8,33,8,65,40,64v18,0,32,-7,43,-24r18,14v-35,56,-131,39,-131,-41v0,-65,41,-117,94,-117v49,0,69,50,55,104xm68,-251r30,0r-7,33r-29,0xm128,-251r29,0r-7,33r-29,0"},"\u00e8":{"d":"134,-103v5,-35,-4,-61,-32,-61v-27,0,-47,21,-58,61r90,0xm158,-82r-119,0v-8,33,8,65,40,64v18,0,32,-7,43,-24r18,14v-35,56,-131,39,-131,-41v0,-65,41,-117,94,-117v49,0,69,50,55,104xm60,-268r30,0r37,63r-17,0"},"\u00ed":{"d":"51,-181r29,0r-46,181r-30,0xm89,-268r32,0r-56,63r-18,0","w":94},"\u00ee":{"d":"68,-268r27,0r26,63r-16,0r-25,-42r-42,42r-18,0xm51,-181r29,0r-46,181r-30,0","w":94},"\u00ef":{"d":"51,-181r29,0r-46,181r-30,0xm35,-251r30,0r-7,33r-29,0xm95,-251r29,0r-7,33r-29,0","w":94},"\u00ec":{"d":"51,-181r29,0r-46,181r-30,0xm27,-268r30,0r37,63r-17,0","w":94},"\u00f1":{"d":"163,-255r15,0v-10,39,-36,39,-70,28v-9,0,-15,4,-19,14r-15,0v10,-42,37,-39,72,-28v8,0,13,-5,17,-14xm4,0r46,-181r30,0r-6,25v35,-53,128,-32,109,40r-30,116r-30,0r33,-135v0,-18,-12,-30,-31,-30v-69,1,-72,107,-91,165r-30,0","w":213},"\u00f3":{"d":"79,5v-44,0,-71,-28,-71,-77v0,-62,41,-114,98,-114v44,0,71,28,71,77v0,62,-41,114,-98,114xm79,-18v36,0,67,-43,67,-96v0,-31,-16,-49,-40,-49v-36,0,-67,43,-67,96v0,31,15,49,40,49xm130,-268r32,0r-56,63r-18,0","w":196},"\u00f4":{"d":"109,-268r27,0r26,63r-16,0r-25,-42r-42,42r-18,0xm79,5v-44,0,-71,-28,-71,-77v0,-62,41,-114,98,-114v44,0,71,28,71,77v0,62,-41,114,-98,114xm79,-18v36,0,67,-43,67,-96v0,-31,-16,-49,-40,-49v-36,0,-67,43,-67,96v0,31,15,49,40,49","w":196},"\u00f6":{"d":"79,5v-44,0,-71,-28,-71,-77v0,-62,41,-114,98,-114v44,0,71,28,71,77v0,62,-41,114,-98,114xm79,-18v36,0,67,-43,67,-96v0,-31,-16,-49,-40,-49v-36,0,-67,43,-67,96v0,31,15,49,40,49xm76,-251r30,0r-7,33r-29,0xm136,-251r29,0r-7,33r-29,0","w":196},"\u00f2":{"d":"79,5v-44,0,-71,-28,-71,-77v0,-62,41,-114,98,-114v44,0,71,28,71,77v0,62,-41,114,-98,114xm79,-18v36,0,67,-43,67,-96v0,-31,-16,-49,-40,-49v-36,0,-67,43,-67,96v0,31,15,49,40,49xm68,-268r30,0r37,63r-17,0","w":196},"\u00f5":{"d":"154,-255r15,0v-10,40,-36,38,-70,28v-9,0,-14,4,-18,14r-15,0v10,-42,37,-39,71,-28v8,0,13,-5,17,-14xm79,5v-44,0,-71,-28,-71,-77v0,-62,41,-114,98,-114v44,0,71,28,71,77v0,62,-41,114,-98,114xm79,-18v36,0,67,-43,67,-96v0,-31,-16,-49,-40,-49v-36,0,-67,43,-67,96v0,31,15,49,40,49","w":196},"\u00fa":{"d":"49,-181r29,0r-33,137v0,17,13,28,32,28v69,-1,72,-106,91,-165r29,0r-46,181r-30,0r7,-25v-35,54,-128,30,-109,-41xm146,-268r32,0r-56,63r-18,0","w":213},"\u00fb":{"d":"125,-268r26,0r27,63r-16,0r-26,-42r-42,42r-18,0xm49,-181r29,0r-33,137v0,17,13,28,32,28v69,-1,72,-106,91,-165r29,0r-46,181r-30,0r7,-25v-35,54,-128,30,-109,-41","w":213},"\u00fc":{"d":"49,-181r29,0r-33,137v0,17,13,28,32,28v69,-1,72,-106,91,-165r29,0r-46,181r-30,0r7,-25v-35,54,-128,30,-109,-41xm92,-251r30,0r-7,33r-29,0xm152,-251r29,0r-7,33r-29,0","w":213},"\u00f9":{"d":"49,-181r29,0r-33,137v0,17,13,28,32,28v69,-1,72,-106,91,-165r29,0r-46,181r-30,0r7,-25v-35,54,-128,30,-109,-41xm84,-268r30,0r37,63r-17,0","w":213},"\u00ff":{"d":"21,-181r28,0r20,152r77,-152r29,0r-106,202v-22,41,-43,56,-89,46r5,-24v38,10,50,-14,62,-36xm66,-251r30,0r-7,33r-29,0xm126,-251r29,0r-7,33r-29,0","w":176},"\u2122":{"d":"122,-256r0,14r-30,0r0,80r-19,0r0,-80r-31,0r0,-14r80,0xm169,-256r27,67r25,-67r26,0r0,94r-17,0r0,-78r-29,78r-10,0r-31,-78r0,78r-17,0r0,-94r26,0","w":299},"\u00a9":{"d":"21,-128v0,-67,59,-129,129,-129v70,0,130,59,130,129v0,70,-63,130,-130,130v-67,0,-129,-62,-129,-130xm150,-15v59,0,112,-51,112,-113v0,-62,-52,-112,-112,-112v-62,0,-113,53,-113,112v0,59,54,113,113,113xm185,-159v-3,-18,-16,-29,-36,-29v-24,0,-40,21,-40,60v0,63,66,80,78,28r25,0v-2,31,-27,51,-62,51v-42,0,-69,-29,-69,-80v0,-87,119,-105,130,-30r-26,0","w":299},"\u00ac":{"d":"255,-151r0,88r-24,0r0,-64r-186,0r0,-24r210,0","w":299},"\u00ae":{"d":"21,-128v0,-66,58,-129,129,-129v69,0,130,59,130,129v0,71,-63,130,-130,130v-69,0,-129,-61,-129,-130xm149,-15v60,0,113,-51,113,-112v0,-62,-51,-113,-112,-113v-61,0,-113,54,-113,112v0,58,54,113,112,113xm98,-204v50,-1,117,-4,117,41v0,21,-13,35,-34,39r33,67r-31,0r-30,-63r-27,0r0,63r-28,0r0,-147xm186,-161v3,-25,-31,-26,-60,-25r0,49v28,1,63,1,60,-24","w":299},"\u00d0":{"d":"71,-261v104,-9,177,17,177,115v0,85,-55,146,-142,146r-102,0r32,-124r-37,0r5,-22r37,0xm98,-231r-22,85r67,0r-6,22r-67,0r-24,95v103,10,167,-27,167,-122v0,-63,-44,-87,-115,-80","w":264},"\u00de":{"d":"70,-261r34,0r-13,51v67,-5,117,15,117,71v0,70,-72,92,-157,84r-14,55r-34,0xm84,-182r-25,98v58,5,114,-8,114,-54v0,-43,-43,-47,-89,-44","w":223},"\u00dd":{"d":"28,-261r34,0r35,114r85,-114r35,0r-108,144r-30,117r-34,0r31,-119xm149,-348r32,0r-56,63r-18,0","w":189},"\u00a6":{"d":"103,-252r0,134r-26,0r0,-134r26,0xm103,-72r0,134r-26,0r0,-134r26,0"},"\u00b0":{"d":"59,-256v28,0,51,23,51,51v0,27,-22,50,-51,50v-28,0,-50,-22,-50,-50v0,-28,22,-51,50,-51xm93,-206v0,-19,-15,-33,-34,-33v-19,0,-34,14,-34,33v0,19,15,35,34,35v19,0,34,-16,34,-35","w":118},"\u00f7":{"d":"150,-194v12,0,22,10,22,22v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22xm255,-120r0,25r-210,0r0,-25r210,0xm150,-64v12,0,22,10,22,22v0,12,-10,21,-22,21v-13,0,-22,-9,-22,-21v0,-12,10,-22,22,-22","w":299},"\u00f0":{"d":"92,-266v15,10,28,20,38,29r47,-19r7,14r-42,18v23,32,34,68,34,108v0,75,-42,121,-96,121v-45,0,-71,-30,-71,-76v-1,-77,74,-139,132,-91v-6,-21,-14,-39,-25,-52r-55,22r-6,-15r50,-20v-8,-9,-17,-17,-27,-25xm105,-157v-36,0,-67,41,-67,92v0,30,15,47,41,47v36,0,67,-41,67,-92v0,-30,-15,-47,-41,-47","w":195},"\u00d7":{"d":"151,-125r83,-82r17,17r-83,83r83,82r-17,17r-83,-82r-82,82r-18,-17r83,-82r-83,-83r18,-17","w":299},"\u00bd":{"d":"75,-251r14,0r-40,141r-18,0r33,-117v-12,10,-26,16,-41,19r5,-15v17,-5,32,-15,47,-28xm213,-254r21,0r-159,257r-21,0xm280,-107v0,40,-74,58,-92,92r66,0r-5,15r-77,0v-9,-47,88,-64,88,-107v0,-15,-9,-23,-23,-23v-20,-1,-30,19,-20,35r-16,8v-17,-26,4,-56,37,-56v27,0,42,13,42,36","w":289},"\u00bc":{"d":"75,-251r14,0r-40,141r-18,0r33,-117v-12,10,-26,16,-41,19r5,-15v17,-5,32,-15,47,-28xm213,-254r21,0r-159,257r-21,0xm263,-140r15,0r-26,94r21,0r-4,13r-21,0r-8,33r-18,0r9,-33r-56,0r4,-17xm254,-113r-62,67r43,0","w":289},"\u00b9":{"d":"78,-251r15,0r-42,151r-18,0r35,-126v-13,10,-28,18,-44,21r5,-16v18,-5,33,-16,49,-30","w":119},"\u00b1":{"d":"162,-210r0,60r93,0r0,25r-93,0r0,59r-24,0r0,-59r-93,0r0,-25r93,0r0,-60r24,0xm255,-30r0,25r-210,0r0,-25r210,0","w":299},"\u00fe":{"d":"72,-261r29,0r-27,105v34,-51,105,-35,105,39v0,66,-41,122,-87,122v-25,0,-45,-15,-50,-39r-25,99r-30,0xm115,-165v-38,0,-65,65,-65,111v0,23,15,36,35,36v35,0,64,-49,64,-102v0,-29,-12,-45,-34,-45","w":198},"\u00be":{"d":"73,-186v41,21,17,78,-30,78v-30,0,-46,-18,-38,-45v7,3,20,1,16,13v0,12,8,20,21,20v34,3,49,-62,6,-61v-1,0,-3,1,-6,1v2,-4,1,-10,4,-12v27,0,42,-11,42,-29v0,-13,-8,-20,-21,-20v-15,0,-27,11,-23,25r-17,3v-2,-25,16,-39,40,-40v52,-2,49,59,6,67xm213,-254r21,0r-159,257r-21,0xm263,-140r15,0r-26,94r21,0r-4,13r-21,0r-8,33r-18,0r9,-33r-56,0r4,-17xm254,-113r-62,67r43,0","w":289},"\u00b3":{"d":"77,-182v43,23,18,85,-32,85v-31,0,-49,-22,-39,-49v7,3,21,3,15,14v0,13,9,21,23,21v20,0,34,-18,34,-39v0,-18,-16,-29,-34,-25v2,-4,0,-12,5,-13v29,0,44,-12,44,-31v0,-14,-9,-21,-23,-21v-16,0,-28,11,-24,26r-18,4v-2,-27,17,-43,42,-44v53,-1,53,64,7,72","w":119},"\u00b2":{"d":"110,-214v0,42,-78,60,-96,97r69,0r-5,17r-81,0v-9,-50,93,-69,93,-115v0,-15,-9,-25,-24,-25v-21,-1,-31,19,-22,38r-17,9v-17,-27,5,-60,39,-60v28,0,44,14,44,39","w":119},"\u00fd":{"d":"21,-181r28,0r20,152r77,-152r29,0r-106,202v-22,41,-43,56,-89,46r5,-24v38,10,50,-14,62,-36xm120,-268r32,0r-56,63r-18,0","w":176},"\u00a0":{"w":90}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990 as an unpublished work by Bitstream Inc.  All rights reserved. 
 * Confidential.
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Gothic 720","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-42 -351 359 85","underline-thickness":"38.52","underline-position":"-36.36","slope":"14.5","stemh":"35","stemv":"50","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":90},"!":{"d":"66,-261r54,0r-54,176r-38,0xm14,-53r53,0r-14,53r-53,0","w":123},"\"":{"d":"14,-253r34,0r0,99r-34,0r0,-99xm71,-253r34,0r0,99r-34,0r0,-99","w":119},"#":{"d":"125,-257r38,0r-25,73r42,0r26,-73r39,0r-26,73r50,0r-13,35r-49,0r-15,42r51,0r-13,36r-51,0r-26,73r-39,0r26,-73r-42,0r-27,73r-38,0r25,-73r-50,0r13,-36r50,0r15,-42r-53,0r13,-35r53,0xm125,-149r-16,42r44,0r15,-42r-43,0","w":276},"$":{"d":"114,-268r23,0r-5,20v39,5,55,30,45,67r-37,0v4,-19,2,-32,-17,-35r-16,65v77,39,63,156,-36,151r-8,27r-23,0r8,-30v-37,-7,-54,-33,-49,-73r42,0v-4,19,1,36,17,39r20,-80v-32,-21,-48,-41,-48,-67v0,-41,30,-67,80,-66xm103,-217v-34,1,-40,40,-13,53xm95,-103r-17,68v41,3,48,-52,17,-68","w":181},"%":{"d":"61,-256v35,0,53,25,53,76v0,50,-18,76,-53,76v-34,0,-52,-26,-52,-76v0,-51,18,-76,52,-76xm194,-251r30,0r-136,251r-30,0xm61,-233v-14,0,-14,18,-14,53v0,35,0,53,14,53v14,0,15,-17,15,-53v0,-36,-1,-53,-15,-53xm220,-147v35,0,52,25,52,76v0,50,-17,76,-52,76v-34,0,-53,-26,-53,-76v0,-51,19,-76,53,-76xm220,-124v-14,0,-15,18,-15,53v0,35,1,53,15,53v14,0,14,-17,14,-53v0,-36,0,-53,-14,-53","w":283},"&":{"d":"125,-172v25,-15,37,-31,37,-49v0,-9,-6,-15,-16,-15v-25,-1,-27,36,-21,64xm129,-137v3,21,7,41,14,61v13,-15,23,-30,32,-44r27,24v-11,19,-25,37,-40,53v9,9,29,7,41,3r12,32v-19,17,-73,20,-90,-1v-49,34,-130,7,-130,-57v0,-39,28,-69,82,-89v-8,-62,12,-112,66,-112v37,0,60,20,60,50v0,32,-25,59,-74,80xm82,-114v-26,13,-39,29,-39,47v-1,33,37,42,60,24v-10,-22,-17,-45,-21,-71","w":232},"\u2019":{"d":"52,-261r52,0v-12,49,-25,117,-81,111r6,-24v18,-3,28,-13,32,-31r-24,0","w":92},"(":{"d":"124,-273r43,0v-81,122,-108,196,-64,338r-43,0v-53,-134,-34,-242,64,-338","w":152},")":{"d":"43,-273r43,0v53,134,34,242,-64,338r-43,0v80,-122,108,-196,64,-338","w":152},"*":{"d":"78,-261r44,0r-13,64r56,-32r14,41r-65,7r48,44r-35,26r-27,-60r-27,60r-35,-26r48,-44r-64,-7r13,-41r56,32"},"+":{"d":"132,-215r36,0r0,90r87,0r0,35r-87,0r0,90r-36,0r0,-90r-87,0r0,-35r87,0r0,-90","w":299},",":{"d":"9,-56r52,0v-13,52,-23,129,-84,124r6,-24v19,-3,29,-17,35,-44r-23,0","w":90},"-":{"d":"18,-116r89,0r-11,44r-89,0","w":121},".":{"d":"8,-53r53,0r-14,53r-53,0","w":90},"\/":{"d":"106,-261r34,0r-135,294r-33,0","w":127},"0":{"d":"6,-68v-1,-71,41,-190,110,-188v38,0,57,25,57,76v0,70,-37,184,-110,185v-37,0,-57,-25,-57,-73xm112,-219v-9,0,-17,9,-23,27v-4,12,-36,98,-36,141v0,13,5,19,14,19v10,0,17,-9,23,-27v3,-8,36,-98,36,-142v0,-12,-4,-18,-14,-18","w":181},"1":{"d":"117,-251r38,0r-62,251r-48,0r45,-188v-21,16,-41,26,-63,30r12,-44v24,-8,50,-25,78,-49","w":181},"2":{"d":"169,-189v0,59,-83,103,-125,142r90,0r-12,47r-120,0v-11,-68,58,-103,94,-140v14,-14,21,-33,21,-52v0,-32,-44,-37,-43,-5v0,4,1,9,3,14r-41,22v-19,-49,6,-96,64,-95v44,0,69,25,69,67","w":181},"3":{"d":"119,-135v60,39,32,140,-52,140v-51,0,-76,-41,-60,-89r44,15v-7,18,-4,40,16,39v18,0,33,-25,33,-56v0,-25,-13,-32,-42,-32r7,-30v34,-8,52,-28,52,-54v0,-13,-6,-19,-18,-19v-12,-1,-22,14,-18,30r-44,8v-2,-46,25,-73,70,-73v37,0,59,21,59,55v0,28,-15,51,-47,66","w":181},"4":{"d":"123,-251r50,0r-40,162r23,0r-9,35r-22,0r-13,54r-48,0r14,-54r-73,0r13,-52xm111,-186r-70,97r46,0","w":181},"5":{"d":"60,-31v27,0,44,-56,43,-79v0,-18,-8,-28,-21,-28v-14,0,-21,10,-28,29r-35,-17r44,-125r110,0r-11,43r-75,0r-16,46v43,-18,86,6,85,54v-1,60,-36,114,-96,113v-43,-1,-63,-22,-61,-64r39,-7v-4,19,6,35,22,35","w":181},"6":{"d":"8,-69v1,-75,43,-190,118,-187v30,1,47,16,46,45r-39,13v3,-13,-2,-23,-16,-23v-17,0,-27,23,-39,72v30,-35,83,-21,83,36v0,57,-38,119,-93,118v-39,0,-60,-25,-60,-74xm71,-28v24,0,39,-80,38,-90v0,-11,-5,-17,-14,-17v-25,-2,-40,73,-40,87v0,13,6,20,16,20","w":181},"7":{"d":"43,-251r134,0r-7,43v-53,79,-81,148,-85,208r-55,0v1,-55,39,-119,103,-208r-101,0","w":181},"8":{"d":"102,-154v19,4,25,-55,25,-59v0,-7,-5,-12,-12,-12v-20,2,-25,48,-26,59v0,8,5,12,13,12xm122,-131v58,40,19,136,-53,136v-39,0,-63,-24,-63,-64v0,-40,22,-70,61,-83v-53,-31,-15,-114,46,-114v40,0,63,22,63,57v0,34,-20,60,-54,68xm70,-31v24,5,31,-74,32,-74v0,-8,-6,-15,-14,-15v-25,2,-30,60,-32,76v0,8,5,13,14,13","w":181},"9":{"d":"82,-116v26,2,42,-70,41,-86v0,-13,-6,-20,-16,-20v-25,0,-39,81,-38,90v0,11,4,16,13,16xm170,-182v0,74,-43,191,-118,187v-29,-2,-48,-16,-47,-44r40,-14v-3,13,3,25,16,24v17,0,27,-24,39,-73v-30,36,-82,22,-82,-35v0,-60,40,-119,92,-119v39,0,60,25,60,74","w":181},":":{"d":"37,-181r53,0r-14,53r-52,0xm6,-53r53,0r-14,53r-53,0","w":92},";":{"d":"39,-181r52,0r-13,53r-53,0xm8,-56r52,0v-13,52,-23,129,-84,124r6,-24v19,-3,29,-17,35,-44r-23,0","w":92},"<":{"d":"253,-210r0,39r-157,64r157,64r0,38r-207,-85r0,-35","w":299},"=":{"d":"45,-163r210,0r0,35r-210,0r0,-35xm45,-87r210,0r0,35r-210,0r0,-35","w":299},">":{"d":"46,-210r207,85r0,35r-207,85r0,-38r158,-64r-158,-64r0,-39","w":299},"?":{"d":"170,-212v0,52,-73,89,-92,130r-36,0v1,-48,75,-90,74,-132v0,-14,-7,-23,-19,-23v-17,0,-24,17,-24,39r-43,-13v6,-36,32,-56,73,-56v43,0,67,21,67,55xm24,-53r52,0r-13,53r-53,0","w":171},"@":{"d":"214,-123v-3,-19,-14,-29,-31,-29v-26,0,-49,33,-49,74v0,22,9,33,27,33v34,0,47,-45,53,-78xm345,-134v0,58,-41,113,-102,115v-25,0,-38,-10,-38,-29v-26,48,-109,36,-109,-31v0,-57,38,-99,85,-99v19,0,32,8,41,23r10,-17r31,0r-27,112v0,8,6,12,17,12v37,0,60,-49,59,-87v0,-55,-46,-96,-117,-96v-87,0,-147,63,-147,139v0,116,157,152,240,85r14,21v-100,83,-286,32,-286,-105v0,-100,82,-169,180,-169v84,0,149,50,149,126","w":360},"A":{"d":"120,-261r55,0r37,261r-54,0r-8,-56r-85,0r-30,56r-57,0xm135,-190r-44,86r54,0","w":236},"B":{"d":"68,-261v73,2,186,-17,186,56v0,37,-27,61,-79,67v44,7,68,30,68,63v0,50,-38,75,-113,75r-129,0xm117,-214r-14,55v40,2,96,1,92,-33v3,-27,-48,-22,-78,-22xm91,-112r-17,65v46,1,106,5,106,-38v0,-32,-54,-27,-89,-27","w":259},"C":{"d":"13,-108v0,-86,62,-159,148,-159v46,0,83,15,115,47r-36,39v-24,-21,-48,-32,-75,-32v-58,-1,-89,51,-89,101v0,90,97,74,141,21r32,40v-35,38,-74,57,-122,57v-70,0,-114,-44,-114,-114","w":266},"D":{"d":"68,-261r80,0v74,0,118,43,118,112v0,91,-55,149,-142,149r-123,0xm75,-50v83,11,127,-30,129,-102v1,-49,-35,-63,-87,-59","w":279},"E":{"d":"68,-261r167,0r-13,50r-105,0r-13,51r103,0r-13,50r-103,0r-16,60r137,0r-13,50r-198,0","w":233},"F":{"d":"68,-261r152,0r-13,50r-90,0r-15,59r88,0r-13,50r-88,0r-27,102r-61,0","w":208},"G":{"d":"13,-107v0,-84,60,-160,150,-160v43,0,78,17,109,50r-36,39v-25,-23,-47,-34,-73,-34v-59,-1,-84,56,-87,107v-4,56,59,69,100,47r10,-39r-65,0r11,-44r128,0r-30,116v-80,58,-217,36,-217,-82","w":276},"H":{"d":"68,-261r62,0r-27,102r110,0r26,-102r62,0r-67,261r-62,0r28,-109r-109,0r-29,109r-61,0","w":302},"I":{"d":"68,-261r62,0r-68,261r-61,0","w":130},"J":{"d":"132,-261r62,0r-50,195v-13,49,-35,72,-80,72v-50,0,-77,-33,-67,-81r53,-19v-6,23,-13,49,9,49v15,0,21,-12,27,-36","w":195},"K":{"d":"68,-261r60,0r-27,107r112,-107r71,0r-105,95r67,166r-64,0r-50,-125r-51,47r-20,78r-60,0","w":270},"L":{"d":"68,-261r62,0r-55,211r103,0r-13,50r-164,0","w":200},"M":{"d":"68,-261r69,0r20,180r108,-180r76,0r-68,261r-56,0r51,-185r-110,185r-37,0r-21,-185r-48,185r-51,0","w":341},"N":{"d":"68,-261r63,0r68,185r48,-185r52,0r-68,261r-62,0r-69,-185r-48,185r-51,0","w":299},"O":{"d":"13,-106v0,-82,61,-161,141,-161v67,0,111,45,111,112v0,82,-61,161,-144,161v-63,0,-108,-45,-108,-112xm126,-48v51,0,75,-59,75,-108v0,-36,-20,-57,-51,-57v-44,0,-74,62,-73,109v0,36,19,56,49,56","w":277},"P":{"d":"68,-261r95,0v59,0,89,26,89,74v0,78,-74,100,-165,92r-25,95r-61,0xm117,-213r-18,70v44,3,90,-4,90,-41v0,-35,-39,-29,-72,-29","w":254},"Q":{"d":"150,-213v-44,0,-74,62,-73,109v0,33,15,53,43,56v-3,-10,-8,-19,-17,-25r22,-27v18,9,26,21,30,43v47,-25,75,-156,-5,-156xm13,-106v0,-83,62,-161,144,-161v63,0,108,45,108,112v0,66,-35,124,-89,150v7,9,18,14,33,19r-16,31v-27,-3,-44,-16,-53,-40v-77,8,-127,-38,-127,-111","w":277},"R":{"d":"68,-261r108,0v111,-8,121,120,31,144r24,117r-62,0r-21,-107r-58,0r-28,107r-61,0xm117,-213r-15,59v44,1,102,5,102,-36v0,-34,-55,-20,-87,-23","w":270},"S":{"d":"131,-68v2,-33,-110,-77,-98,-126v-8,-87,158,-93,195,-32r-43,31v-12,-15,-31,-25,-51,-25v-22,0,-34,8,-34,21v-2,29,110,69,97,121v0,50,-39,84,-104,84v-57,0,-92,-20,-107,-61r51,-22v2,39,91,51,94,9","w":226},"T":{"d":"37,-261r233,0r-13,50r-83,0r-54,211r-62,0r54,-211r-88,0","w":241},"U":{"d":"68,-261r62,0r-43,164v-7,30,3,49,37,49v35,0,50,-19,60,-59r40,-154r62,0r-47,181v-14,56,-54,86,-116,86v-78,0,-111,-51,-92,-124","w":286},"V":{"d":"30,-261r57,0r9,195r102,-195r57,0r-137,261r-71,0","w":225},"W":{"d":"32,-261r52,0r-4,162r82,-162r41,0r2,162r85,-162r52,0r-138,261r-43,0r-2,-162r-81,162r-43,0","w":311},"X":{"d":"39,-261r58,0r26,72r58,-72r63,0r-102,125r50,136r-58,0r-31,-86r-70,86r-63,0r113,-139","w":221},"Y":{"d":"26,-261r58,0r32,106r77,-106r63,0r-118,156r-27,105r-62,0r29,-110","w":230},"Z":{"d":"45,-261r181,0r-5,23r-153,188r113,0r-12,50r-192,0r8,-29r147,-182r-100,0","w":200},"[":{"d":"83,-267r85,0r-9,35r-35,0r-67,255r40,0r-9,35r-89,0","w":152},"\\":{"d":"25,-261r32,0r49,294r-31,0","w":127},"]":{"d":"52,-267r89,0r-84,325r-85,0r9,-35r35,0r66,-254r-39,0","w":152},"^":{"d":"158,-257r44,0r85,99r-42,0r-65,-65r-66,65r-41,0","w":360},"_":{"d":"0,49r180,0r0,36r-180,0r0,-36"},"\u2018":{"d":"104,-261r-6,24v-18,3,-28,13,-32,31r24,0r-15,56r-52,0v12,-49,26,-116,81,-111","w":92},"a":{"d":"173,-137v-4,35,-16,69,-23,102v-1,8,9,10,19,9r-7,26v-24,11,-53,4,-58,-22v-22,40,-105,37,-101,-21v4,-59,59,-59,117,-77v6,-16,5,-36,-18,-34v-12,0,-24,5,-33,14r-37,-18v27,-40,147,-40,141,21xm115,-99v-42,17,-63,32,-63,54v0,13,8,21,20,21v29,0,36,-47,43,-75","w":198},"b":{"d":"196,-115v0,56,-43,120,-87,120v-25,0,-44,-14,-49,-38r-8,33r-50,0r68,-261r50,0r-27,103v35,-50,103,-30,103,43xm93,-28v32,0,53,-60,52,-96v0,-20,-9,-31,-23,-31v-35,-2,-54,59,-54,98v0,17,10,29,25,29","w":212},"c":{"d":"7,-69v4,-58,45,-117,105,-117v40,0,67,22,73,59r-41,12v-4,-24,-16,-36,-35,-36v-36,1,-50,51,-52,85v-2,45,53,45,69,14r35,24v-36,53,-159,42,-154,-41","w":186},"d":{"d":"7,-66v0,-56,43,-120,87,-120v25,0,44,15,49,39r29,-114r49,0r-67,261r-50,0r5,-22v-35,50,-102,28,-102,-44xm110,-152v-32,0,-53,59,-52,95v0,20,9,31,23,31v35,2,54,-59,54,-98v0,-17,-10,-28,-25,-28","w":212},"e":{"d":"131,-106v7,-23,2,-48,-22,-47v-19,0,-35,17,-43,47r65,0xm8,-75v0,-60,44,-111,100,-111v61,0,84,51,64,110r-114,0v-11,49,44,60,69,27r30,24v-42,53,-149,34,-149,-50","w":195},"f":{"d":"165,-262r-7,36v-27,-7,-47,-4,-52,25r-5,20r30,0r-9,35r-30,0r-51,198r-49,0r51,-198r-27,0r9,-35r27,0v11,-66,43,-101,113,-81","w":119},"g":{"d":"7,-68v0,-53,44,-118,87,-118v25,0,44,15,49,39r8,-34r50,0v-23,72,-30,167,-69,223v-27,38,-118,38,-150,3r33,-26v32,30,82,32,90,-21r4,-24v-34,50,-102,30,-102,-42xm110,-152v-30,-1,-52,57,-51,90v0,21,7,32,22,32v35,0,54,-55,54,-94v0,-17,-10,-28,-25,-28","w":212},"h":{"d":"68,-261r51,0r-27,107v34,-56,121,-34,103,36r-30,118r-51,0r35,-139v0,-10,-7,-16,-17,-16v-53,1,-65,103,-80,155r-51,0","w":221},"i":{"d":"69,-261r51,0r-12,47r-51,0xm48,-181r51,0r-47,181r-51,0","w":110},"j":{"d":"69,-261r51,0r-12,47r-51,0xm49,-181r50,0r-48,186v-11,58,-36,72,-93,62r10,-38v25,5,28,-7,35,-35","w":110},"k":{"d":"69,-261r49,0r-41,157r88,-77r60,0r-75,63r34,118r-48,0r-24,-87r-51,42r-11,45r-49,0","w":210},"l":{"d":"69,-261r51,0r-68,261r-51,0","w":110},"m":{"d":"195,-147v21,-26,43,-39,62,-39v37,-1,53,31,44,68r-30,118r-50,0r34,-139v0,-10,-6,-15,-16,-15v-17,0,-43,20,-53,57r-24,97r-51,0r34,-139v0,-10,-5,-15,-15,-15v-17,0,-43,20,-53,57r-25,97r-51,0r47,-181r51,0r-7,27v29,-41,93,-46,103,7","w":328},"n":{"d":"199,-141v-8,49,-23,94,-34,141r-51,0r35,-139v0,-10,-7,-16,-17,-16v-53,1,-65,103,-80,155r-51,0r47,-181r51,0r-7,27v28,-43,103,-45,107,13","w":221},"o":{"d":"197,-106v0,60,-42,111,-107,111v-52,0,-83,-30,-83,-80v1,-58,43,-111,106,-111v53,0,84,30,84,80xm91,-30v38,0,53,-47,54,-82v0,-26,-11,-39,-31,-39v-28,0,-55,37,-55,84v0,24,13,37,32,37","w":214},"p":{"d":"93,-28v32,0,53,-60,52,-96v0,-20,-9,-31,-23,-31v-35,-2,-54,59,-54,98v0,17,10,29,25,29xm196,-115v0,56,-43,120,-87,120v-25,0,-44,-14,-49,-38r-25,98r-51,0r64,-246r50,0r-8,27v34,-54,106,-37,106,39","w":212},"q":{"d":"7,-66v0,-56,43,-120,87,-120v25,0,44,15,49,39r8,-34r50,0r-64,246r-50,0r22,-87v-35,50,-102,28,-102,-44xm110,-152v-32,0,-53,59,-52,95v0,20,9,31,23,31v35,2,54,-59,54,-98v0,-17,-10,-28,-25,-28","w":212},"r":{"d":"145,-184r-13,52v-49,-25,-65,78,-80,132r-51,0r47,-181r43,0v-4,22,-17,50,-16,68v30,-52,37,-80,70,-71","w":138},"s":{"d":"168,-149r-33,18v-8,-16,-23,-26,-39,-26v-17,0,-27,6,-27,18v0,15,13,20,35,27v78,25,63,117,-29,117v-38,0,-66,-14,-84,-42r39,-21v14,22,32,33,51,33v15,0,24,-7,24,-20v0,-15,-14,-20,-38,-30v-31,-14,-46,-26,-46,-51v0,-39,27,-60,80,-60v34,0,57,13,67,37"},"t":{"d":"123,-258r-20,77r27,0r-9,35r-27,0r-26,104v3,20,29,13,48,6r-9,33v-48,17,-105,11,-88,-52r24,-91r-22,0r9,-35r22,0r16,-61","w":134},"u":{"d":"47,-181r51,0r-35,139v0,10,7,16,17,16v53,-1,65,-103,80,-155r51,0r-47,181r-50,0r6,-26v-34,55,-121,32,-103,-37","w":221},"v":{"d":"19,-181r46,0r9,136r78,-136r51,0r-112,181r-58,0","w":193},"w":{"d":"18,-181r44,0r10,135r64,-135r44,0r10,135r67,-135r47,0r-98,181r-51,0r-11,-117r-57,117r-51,0","w":298},"x":{"d":"28,-181r48,0r15,50r35,-50r51,0r-69,88r32,93r-47,0r-19,-54r-41,54r-51,0r77,-95","w":174},"y":{"d":"17,-181r47,0r17,139r68,-139r48,0r-98,190v-26,53,-62,71,-121,56r9,-40v24,10,49,3,58,-11","w":191},"z":{"d":"31,-181r136,0r-9,34r-95,108r82,0r-10,39r-148,0r7,-25r102,-117r-75,0","w":174},"{":{"d":"74,-200v-3,-53,28,-62,81,-60r0,37v-79,-15,2,124,-75,130v45,6,37,47,37,94v0,29,8,36,38,35r0,37v-52,2,-84,-7,-81,-60v2,-45,7,-97,-46,-88r0,-37v49,11,49,-40,46,-88"},"|":{"d":"72,-275r36,0r0,360r-36,0r0,-360"},"}":{"d":"106,13v3,54,-28,62,-81,60r0,-37v80,16,-1,-123,75,-129v-45,-6,-36,-49,-36,-95v0,-29,-9,-36,-39,-35r0,-37v52,-2,85,6,81,60v-3,46,-6,100,47,88r0,37v-52,-8,-50,40,-47,88"},"~":{"d":"31,-112v55,-48,111,-2,172,-2v21,0,42,-9,66,-27r0,39v-23,16,-45,24,-67,24v-66,0,-117,-45,-171,5r0,-39","w":299},"\u00a1":{"d":"67,-261r53,0r-14,53r-53,0xm54,-176r37,0r-37,176r-54,0","w":123},"\u00a2":{"d":"1,-74v0,-61,42,-119,107,-117r10,-39r22,0r-10,42v28,9,45,27,49,56r-41,12v-3,-15,-8,-25,-18,-31r-30,115v13,-2,22,-9,29,-21r35,24v-17,22,-41,32,-73,33r-12,45r-22,0r12,-46v-37,-8,-58,-33,-58,-73xm99,-156v-32,4,-48,53,-48,86v0,17,5,27,17,32","w":181},"\u00a3":{"d":"183,-186r-43,-13v4,-13,-4,-23,-16,-23v-22,0,-31,27,-32,84r51,0r-8,31r-45,0v-1,20,-5,39,-13,57v24,23,56,20,58,-17r35,-8v4,78,-65,102,-112,57v-22,32,-80,31,-81,-15v-1,-36,35,-54,67,-38r1,-36r-42,0r7,-31r34,0v0,-77,30,-118,80,-118v45,0,67,26,59,70xm41,-37v-10,-11,-20,-16,-28,-16v-10,0,-16,6,-16,17v0,28,31,20,44,-1","w":181},"\u00a5":{"d":"21,-251r49,0r31,105r76,-105r50,0r-61,81r37,0r-6,23r-49,0r-31,41r69,0r-6,24r-71,0r-21,82r-44,0r22,-82r-76,0r6,-24r75,0r-14,-41r-51,0r6,-23r37,0","w":195},"\u00a7":{"d":"81,-18v0,-33,-62,-96,-62,-125v0,-27,16,-43,47,-45v-21,-40,0,-79,48,-79v23,0,40,10,55,33r-30,22v-10,-13,-16,-19,-26,-19v-10,0,-16,6,-16,15v0,27,66,92,60,122v0,30,-18,46,-50,44v27,36,6,86,-43,86v-24,0,-45,-13,-58,-36r29,-22v11,14,19,22,29,22v10,0,17,-7,17,-18xm60,-145v1,13,31,67,46,66v8,0,12,-5,12,-12v1,-10,-31,-70,-46,-67v-8,0,-12,5,-12,13"},"\u00a4":{"d":"30,-253r36,36v23,-19,62,-18,87,0r35,-36r19,19r-36,36v18,24,17,60,0,85r36,36r-19,18r-35,-35v-23,17,-64,18,-87,0r-36,35r-18,-18r36,-36v-18,-24,-19,-61,0,-85r-36,-36xm109,-204v-27,0,-48,22,-48,48v0,27,21,49,48,49v27,0,49,-22,49,-49v0,-26,-22,-48,-49,-48","w":218},"'":{"d":"14,-253r34,0r0,99r-34,0r0,-99","w":61},"\u201c":{"d":"104,-261r-6,24v-18,3,-28,13,-32,31r24,0r-15,56r-52,0v12,-49,26,-116,81,-111xm183,-261r-7,24v-18,3,-27,13,-31,31r23,0r-14,56r-53,0v11,-50,27,-116,82,-111","w":171},"\u00ab":{"d":"54,-145r38,0r-47,55r36,54r-38,0r-36,-55xm125,-145r38,0r-47,55r36,54r-38,0r-36,-55","w":172},"\u2013":{"d":"-1,-113r180,0r-8,38r-180,0"},"\u00b7":{"d":"44,-156v17,0,30,14,30,31v0,17,-14,30,-30,30v-16,0,-31,-14,-31,-30v0,-16,14,-31,31,-31","w":90},"\u00b6":{"d":"173,-260r0,20r-20,0r0,240r-27,0r0,-240r-28,0r0,240r-26,0r0,-138v-40,-1,-65,-26,-65,-61v0,-36,27,-61,69,-61r97,0"},"\u201d":{"d":"52,-261r52,0v-12,49,-25,117,-81,111r6,-24v18,-3,28,-13,32,-31r-24,0xm130,-261r53,0v-11,50,-26,117,-82,111r7,-24v18,-3,27,-13,31,-31r-23,0","w":171},"\u00bb":{"d":"10,-144r38,0r36,55r-47,53r-38,0r47,-54xm81,-144r37,0r36,55r-46,53r-38,0r47,-54","w":172},"\u2026":{"d":"23,-53r53,0r-14,53r-53,0xm143,-53r52,0r-13,53r-53,0xm263,-53r53,0r-14,53r-53,0","w":360},"\u00bf":{"d":"107,-261r52,0r-13,53r-53,0xm127,-179v0,49,-75,90,-74,132v0,14,7,23,19,23v16,0,24,-13,24,-39r43,13v-6,36,-31,56,-72,56v-43,0,-68,-20,-68,-54v0,-36,22,-61,58,-92v16,-14,31,-23,35,-39r35,0","w":171},"`":{"d":"59,-270r44,0r30,65r-23,0"},"\u00b4":{"d":"115,-270r51,0r-68,65r-25,0"},"\u00af":{"d":"64,-251r102,0r-6,27r-101,0"},"\u00a8":{"d":"66,-259r40,0r-10,43r-39,0xm127,-259r40,0r-9,43r-40,0"},"\u00b8":{"d":"55,0r17,0v-1,5,-6,13,-4,16v26,0,40,11,40,30v-1,43,-54,46,-98,30r8,-22v21,7,54,19,59,-5v0,-12,-10,-13,-35,-13"},"\u2014":{"d":"-1,-113r360,0r-8,38r-360,0","w":360},"\u00c6":{"d":"120,-261r216,0r-13,50r-90,0r-13,51r87,0r-13,50r-87,0r-16,60r121,0r-13,50r-178,0r15,-56r-71,0r-30,56r-57,0xm148,-211r-57,107r57,0r28,-107r-28,0","w":333},"\u00aa":{"d":"130,-230v-3,24,-12,49,-18,71v0,7,7,7,15,7r-5,18v-18,6,-40,4,-44,-15v-16,27,-79,25,-76,-16v3,-42,46,-41,88,-54v5,-11,3,-24,-14,-23v-9,0,-18,3,-25,9r-27,-12v19,-27,111,-27,106,15xm86,-203v-31,12,-47,22,-47,37v0,9,6,15,15,15v21,2,27,-31,32,-52","w":148},"\u00d8":{"d":"41,-27v-83,-100,33,-299,170,-226r19,-25r26,19r-19,25v83,101,-34,298,-170,226r-26,34r-25,-19xm177,-207v-68,-29,-112,60,-96,127xm101,-54v69,26,112,-61,96,-127","w":277},"\u00ba":{"d":"148,-208v-1,42,-32,77,-80,77v-39,0,-63,-21,-63,-56v0,-42,33,-77,80,-77v40,0,63,21,63,56xm68,-155v27,-1,40,-33,41,-58v0,-18,-9,-27,-24,-27v-21,0,-41,26,-41,59v0,17,10,26,24,26","w":161},"\u00e6":{"d":"118,-37v-20,52,-115,62,-115,-6v0,-59,59,-59,117,-77v6,-16,5,-36,-18,-34v-12,0,-24,5,-33,14r-37,-18v22,-30,95,-38,126,-13v45,-33,124,-10,119,53v0,11,-2,25,-6,42r-111,0v-11,49,42,60,67,27r29,24v-30,42,-122,40,-138,-12xm115,-99v-42,17,-63,32,-63,54v0,13,8,21,20,21v29,0,36,-47,43,-75xm167,-106r64,0v5,-23,0,-48,-22,-47v-18,0,-34,17,-42,47","w":292},"\u00f8":{"d":"31,-15v-68,-69,19,-213,123,-162r18,-24r19,15r-16,21v62,73,-16,208,-124,163r-21,29r-19,-15xm132,-148v-48,-22,-83,49,-73,97xm74,-32v47,22,80,-48,72,-95","w":214},"\u00df":{"d":"138,-33v22,0,31,-44,32,-66v2,-21,-20,-30,-45,-26r11,-44v51,6,68,-64,12,-63v-27,0,-40,15,-49,48r-47,184r-51,0r44,-170v17,-67,42,-97,107,-97v103,0,104,109,19,117v32,8,47,26,47,57v0,62,-30,98,-82,98v-42,0,-61,-26,-52,-64r43,0v-2,14,-2,26,11,26","w":242},"\u00c1":{"d":"120,-261r55,0r37,261r-54,0r-8,-56r-85,0r-30,56r-57,0xm135,-190r-44,86r54,0xm159,-351r51,0r-68,65r-25,0","w":236},"\u00c2":{"d":"139,-351r42,0r22,65r-22,0r-23,-37r-41,37r-24,0xm120,-261r55,0r37,261r-54,0r-8,-56r-85,0r-30,56r-57,0xm135,-190r-44,86r54,0","w":236},"\u00c4":{"d":"120,-261r55,0r37,261r-54,0r-8,-56r-85,0r-30,56r-57,0xm135,-190r-44,86r54,0xm110,-340r40,0r-10,43r-39,0xm171,-340r40,0r-9,43r-40,0","w":236},"\u00c0":{"d":"120,-261r55,0r37,261r-54,0r-8,-56r-85,0r-30,56r-57,0xm135,-190r-44,86r54,0xm103,-351r44,0r30,65r-23,0","w":236},"\u00c5":{"d":"149,-323v-13,0,-22,9,-22,22v0,13,9,22,22,22v13,0,23,-9,23,-22v0,-12,-11,-22,-23,-22xm160,-256r15,0r37,256r-54,0r-8,-56r-85,0r-30,56r-57,0r140,-256r20,0v-52,-10,-40,-91,12,-91v52,0,62,81,10,91xm135,-190r-44,86r54,0","w":236},"\u00c3":{"d":"193,-344r20,0v-9,46,-39,47,-76,34v-8,0,-14,6,-17,16r-20,0v9,-47,38,-48,76,-35v8,0,14,-5,17,-15xm120,-261r55,0r37,261r-54,0r-8,-56r-85,0r-30,56r-57,0xm135,-190r-44,86r54,0","w":236},"\u00c7":{"d":"13,-108v0,-86,62,-159,148,-159v46,0,83,15,115,47r-36,39v-24,-21,-48,-32,-75,-32v-58,-1,-89,51,-89,101v0,90,97,74,141,21r32,40v-35,38,-74,57,-122,57v-70,0,-114,-44,-114,-114xm118,0r17,0v-1,5,-6,13,-4,16v26,0,40,11,40,30v-1,43,-54,46,-98,30r8,-22v21,7,54,19,59,-5v0,-12,-10,-13,-35,-13","w":266},"\u00c9":{"d":"68,-261r167,0r-13,50r-105,0r-13,51r103,0r-13,50r-103,0r-16,60r137,0r-13,50r-198,0xm164,-351r51,0r-68,65r-25,0","w":233},"\u00ca":{"d":"144,-351r41,0r23,65r-23,0r-23,-37r-40,37r-25,0xm68,-261r167,0r-13,50r-105,0r-13,51r103,0r-13,50r-103,0r-16,60r137,0r-13,50r-198,0","w":233},"\u00cb":{"d":"68,-261r167,0r-13,50r-105,0r-13,51r103,0r-13,50r-103,0r-16,60r137,0r-13,50r-198,0xm115,-340r40,0r-10,43r-39,0xm176,-340r40,0r-9,43r-40,0","w":233},"\u00c8":{"d":"68,-261r167,0r-13,50r-105,0r-13,51r103,0r-13,50r-103,0r-16,60r137,0r-13,50r-198,0xm108,-351r44,0r30,65r-23,0","w":233},"\u00cd":{"d":"68,-261r62,0r-68,261r-61,0xm112,-351r51,0r-68,65r-25,0","w":130},"\u00ce":{"d":"92,-351r41,0r23,65r-23,0r-23,-37r-40,37r-25,0xm68,-261r62,0r-68,261r-61,0","w":130},"\u00cf":{"d":"68,-261r62,0r-68,261r-61,0xm63,-340r40,0r-10,43r-39,0xm124,-340r40,0r-9,43r-40,0","w":130},"\u00cc":{"d":"68,-261r62,0r-68,261r-61,0xm56,-351r44,0r30,65r-23,0","w":130},"\u00d1":{"d":"230,-344r21,0v-9,46,-40,47,-77,34v-8,0,-14,6,-17,16r-20,0v9,-47,38,-48,76,-35v8,0,14,-5,17,-15xm68,-261r63,0r68,185r48,-185r52,0r-68,261r-62,0r-69,-185r-48,185r-51,0","w":299},"\u00d3":{"d":"13,-106v0,-82,61,-161,141,-161v67,0,111,45,111,112v0,82,-61,161,-144,161v-63,0,-108,-45,-108,-112xm126,-48v51,0,75,-59,75,-108v0,-36,-20,-57,-51,-57v-44,0,-74,62,-73,109v0,36,19,56,49,56xm179,-351r51,0r-68,65r-25,0","w":277},"\u00d4":{"d":"159,-351r42,0r22,65r-22,0r-24,-37r-40,37r-25,0xm13,-106v0,-82,61,-161,141,-161v67,0,111,45,111,112v0,82,-61,161,-144,161v-63,0,-108,-45,-108,-112xm126,-48v51,0,75,-59,75,-108v0,-36,-20,-57,-51,-57v-44,0,-74,62,-73,109v0,36,19,56,49,56","w":277},"\u00d6":{"d":"13,-106v0,-82,61,-161,141,-161v67,0,111,45,111,112v0,82,-61,161,-144,161v-63,0,-108,-45,-108,-112xm126,-48v51,0,75,-59,75,-108v0,-36,-20,-57,-51,-57v-44,0,-74,62,-73,109v0,36,19,56,49,56xm130,-340r40,0r-10,43r-39,0xm191,-340r40,0r-9,43r-40,0","w":277},"\u00d2":{"d":"13,-106v0,-82,61,-161,141,-161v67,0,111,45,111,112v0,82,-61,161,-144,161v-63,0,-108,-45,-108,-112xm126,-48v51,0,75,-59,75,-108v0,-36,-20,-57,-51,-57v-44,0,-74,62,-73,109v0,36,19,56,49,56xm123,-351r44,0r30,65r-23,0","w":277},"\u00d5":{"d":"213,-344r20,0v-9,46,-39,47,-76,34v-8,0,-14,6,-17,16r-20,0v9,-47,37,-48,76,-35v8,0,14,-5,17,-15xm13,-106v0,-82,61,-161,141,-161v67,0,111,45,111,112v0,82,-61,161,-144,161v-63,0,-108,-45,-108,-112xm126,-48v51,0,75,-59,75,-108v0,-36,-20,-57,-51,-57v-44,0,-74,62,-73,109v0,36,19,56,49,56","w":277},"\u00da":{"d":"68,-261r62,0r-43,164v-7,30,3,49,37,49v35,0,50,-19,60,-59r40,-154r62,0r-47,181v-14,56,-54,86,-116,86v-78,0,-111,-51,-92,-124xm191,-351r51,0r-68,65r-25,0","w":286},"\u00db":{"d":"171,-351r42,0r22,65r-22,0r-23,-37r-41,37r-24,0xm68,-261r62,0r-43,164v-7,30,3,49,37,49v35,0,50,-19,60,-59r40,-154r62,0r-47,181v-14,56,-54,86,-116,86v-78,0,-111,-51,-92,-124","w":286},"\u00dc":{"d":"68,-261r62,0r-43,164v-7,30,3,49,37,49v35,0,50,-19,60,-59r40,-154r62,0r-47,181v-14,56,-54,86,-116,86v-78,0,-111,-51,-92,-124xm142,-340r40,0r-10,43r-39,0xm203,-340r40,0r-9,43r-40,0","w":286},"\u00d9":{"d":"68,-261r62,0r-43,164v-7,30,3,49,37,49v35,0,50,-19,60,-59r40,-154r62,0r-47,181v-14,56,-54,86,-116,86v-78,0,-111,-51,-92,-124xm135,-351r44,0r30,65r-23,0","w":286},"\u00e1":{"d":"173,-137v-4,35,-16,69,-23,102v-1,8,9,10,19,9r-7,26v-24,11,-53,4,-58,-22v-22,40,-105,37,-101,-21v4,-59,59,-59,117,-77v6,-16,5,-36,-18,-34v-12,0,-24,5,-33,14r-37,-18v27,-40,147,-40,141,21xm115,-99v-42,17,-63,32,-63,54v0,13,8,21,20,21v29,0,36,-47,43,-75xm124,-270r51,0r-68,65r-25,0","w":198},"\u00e2":{"d":"104,-270r42,0r22,65r-22,0r-23,-37r-41,37r-24,0xm173,-137v-4,35,-16,69,-23,102v-1,8,9,10,19,9r-7,26v-24,11,-53,4,-58,-22v-22,40,-105,37,-101,-21v4,-59,59,-59,117,-77v6,-16,5,-36,-18,-34v-12,0,-24,5,-33,14r-37,-18v27,-40,147,-40,141,21xm115,-99v-42,17,-63,32,-63,54v0,13,8,21,20,21v29,0,36,-47,43,-75","w":198},"\u00e4":{"d":"173,-137v-4,35,-16,69,-23,102v-1,8,9,10,19,9r-7,26v-24,11,-53,4,-58,-22v-22,40,-105,37,-101,-21v4,-59,59,-59,117,-77v6,-16,5,-36,-18,-34v-12,0,-24,5,-33,14r-37,-18v27,-40,147,-40,141,21xm115,-99v-42,17,-63,32,-63,54v0,13,8,21,20,21v29,0,36,-47,43,-75xm75,-259r40,0r-10,43r-39,0xm136,-259r40,0r-9,43r-40,0","w":198},"\u00e0":{"d":"173,-137v-4,35,-16,69,-23,102v-1,8,9,10,19,9r-7,26v-24,11,-53,4,-58,-22v-22,40,-105,37,-101,-21v4,-59,59,-59,117,-77v6,-16,5,-36,-18,-34v-12,0,-24,5,-33,14r-37,-18v27,-40,147,-40,141,21xm115,-99v-42,17,-63,32,-63,54v0,13,8,21,20,21v29,0,36,-47,43,-75xm68,-270r44,0r30,65r-23,0","w":198},"\u00e5":{"d":"121,-291v26,0,47,21,47,47v0,26,-21,46,-47,46v-26,0,-47,-20,-47,-46v0,-26,21,-47,47,-47xm121,-267v-13,0,-23,10,-23,23v0,13,10,23,23,23v13,0,23,-10,23,-23v0,-13,-10,-23,-23,-23xm173,-137v-4,35,-16,69,-23,102v-1,8,9,10,19,9r-7,26v-24,11,-53,4,-58,-22v-22,40,-105,37,-101,-21v4,-59,59,-59,117,-77v6,-16,5,-36,-18,-34v-12,0,-24,5,-33,14r-37,-18v27,-40,147,-40,141,21xm115,-99v-42,17,-63,32,-63,54v0,13,8,21,20,21v29,0,36,-47,43,-75","w":198},"\u00e3":{"d":"158,-263r21,0v-9,46,-40,47,-77,34v-8,0,-14,6,-17,16r-20,0v9,-47,38,-48,76,-35v8,0,14,-5,17,-15xm173,-137v-4,35,-16,69,-23,102v-1,8,9,10,19,9r-7,26v-24,11,-53,4,-58,-22v-22,40,-105,37,-101,-21v4,-59,59,-59,117,-77v6,-16,5,-36,-18,-34v-12,0,-24,5,-33,14r-37,-18v27,-40,147,-40,141,21xm115,-99v-42,17,-63,32,-63,54v0,13,8,21,20,21v29,0,36,-47,43,-75","w":198},"\u00e7":{"d":"7,-69v4,-58,45,-117,105,-117v40,0,67,22,73,59r-41,12v-4,-24,-16,-36,-35,-36v-36,1,-50,51,-52,85v-2,45,53,45,69,14r35,24v-36,53,-159,42,-154,-41xm70,0r17,0v-1,5,-6,13,-4,16v26,0,40,11,40,30v-1,43,-54,46,-98,30r8,-22v21,7,54,19,59,-5v0,-12,-10,-13,-35,-13","w":186},"\u00e9":{"d":"131,-106v7,-23,2,-48,-22,-47v-19,0,-35,17,-43,47r65,0xm8,-75v0,-60,44,-111,100,-111v61,0,84,51,64,110r-114,0v-11,49,44,60,69,27r30,24v-42,53,-149,34,-149,-50xm123,-270r51,0r-68,65r-25,0","w":195},"\u00ea":{"d":"103,-270r41,0r23,65r-23,0r-23,-37r-40,37r-25,0xm131,-106v7,-23,2,-48,-22,-47v-19,0,-35,17,-43,47r65,0xm8,-75v0,-60,44,-111,100,-111v61,0,84,51,64,110r-114,0v-11,49,44,60,69,27r30,24v-42,53,-149,34,-149,-50","w":195},"\u00eb":{"d":"131,-106v7,-23,2,-48,-22,-47v-19,0,-35,17,-43,47r65,0xm8,-75v0,-60,44,-111,100,-111v61,0,84,51,64,110r-114,0v-11,49,44,60,69,27r30,24v-42,53,-149,34,-149,-50xm74,-259r40,0r-10,43r-39,0xm135,-259r40,0r-9,43r-40,0","w":195},"\u00e8":{"d":"131,-106v7,-23,2,-48,-22,-47v-19,0,-35,17,-43,47r65,0xm8,-75v0,-60,44,-111,100,-111v61,0,84,51,64,110r-114,0v-11,49,44,60,69,27r30,24v-42,53,-149,34,-149,-50xm67,-270r44,0r30,65r-23,0","w":195},"\u00ed":{"d":"48,-181r51,0r-47,181r-51,0xm90,-270r51,0r-68,65r-25,0","w":110},"\u00ee":{"d":"70,-270r41,0r23,65r-23,0r-23,-37r-40,37r-25,0xm48,-181r51,0r-47,181r-51,0","w":110},"\u00ef":{"d":"48,-181r51,0r-47,181r-51,0xm41,-259r40,0r-10,43r-39,0xm102,-259r40,0r-9,43r-40,0","w":110},"\u00ec":{"d":"48,-181r51,0r-47,181r-51,0xm34,-270r44,0r30,65r-23,0","w":110},"\u00f1":{"d":"176,-263r20,0v-9,46,-38,48,-76,34v-8,0,-14,6,-17,16r-21,0v9,-47,38,-48,77,-35v8,0,14,-5,17,-15xm199,-141v-8,49,-23,94,-34,141r-51,0r35,-139v0,-10,-7,-16,-17,-16v-53,1,-65,103,-80,155r-51,0r47,-181r51,0r-7,27v28,-43,103,-45,107,13","w":221},"\u00f3":{"d":"197,-106v0,60,-42,111,-107,111v-52,0,-83,-30,-83,-80v1,-58,43,-111,106,-111v53,0,84,30,84,80xm91,-30v38,0,53,-47,54,-82v0,-26,-11,-39,-31,-39v-28,0,-55,37,-55,84v0,24,13,37,32,37xm133,-270r51,0r-68,65r-25,0","w":214},"\u00f4":{"d":"113,-270r41,0r23,65r-23,0r-23,-37r-40,37r-25,0xm197,-106v0,60,-42,111,-107,111v-52,0,-83,-30,-83,-80v1,-58,43,-111,106,-111v53,0,84,30,84,80xm91,-30v38,0,53,-47,54,-82v0,-26,-11,-39,-31,-39v-28,0,-55,37,-55,84v0,24,13,37,32,37","w":214},"\u00f6":{"d":"197,-106v0,60,-42,111,-107,111v-52,0,-83,-30,-83,-80v1,-58,43,-111,106,-111v53,0,84,30,84,80xm91,-30v38,0,53,-47,54,-82v0,-26,-11,-39,-31,-39v-28,0,-55,37,-55,84v0,24,13,37,32,37xm84,-259r40,0r-10,43r-39,0xm145,-259r40,0r-9,43r-40,0","w":214},"\u00f2":{"d":"197,-106v0,60,-42,111,-107,111v-52,0,-83,-30,-83,-80v1,-58,43,-111,106,-111v53,0,84,30,84,80xm91,-30v38,0,53,-47,54,-82v0,-26,-11,-39,-31,-39v-28,0,-55,37,-55,84v0,24,13,37,32,37xm77,-270r44,0r30,65r-23,0","w":214},"\u00f5":{"d":"167,-263r20,0v-9,46,-40,47,-77,34v-8,0,-14,6,-17,16r-20,0v9,-46,38,-49,76,-35v8,0,15,-5,18,-15xm197,-106v0,60,-42,111,-107,111v-52,0,-83,-30,-83,-80v1,-58,43,-111,106,-111v53,0,84,30,84,80xm91,-30v38,0,53,-47,54,-82v0,-26,-11,-39,-31,-39v-28,0,-55,37,-55,84v0,24,13,37,32,37","w":214},"\u00fa":{"d":"47,-181r51,0r-35,139v0,10,7,16,17,16v53,-1,65,-103,80,-155r51,0r-47,181r-50,0r6,-26v-34,55,-121,32,-103,-37xm145,-270r51,0r-68,65r-25,0","w":221},"\u00fb":{"d":"125,-270r41,0r23,65r-23,0r-23,-37r-40,37r-25,0xm47,-181r51,0r-35,139v0,10,7,16,17,16v53,-1,65,-103,80,-155r51,0r-47,181r-50,0r6,-26v-34,55,-121,32,-103,-37","w":221},"\u00fc":{"d":"47,-181r51,0r-35,139v0,10,7,16,17,16v53,-1,65,-103,80,-155r51,0r-47,181r-50,0r6,-26v-34,55,-121,32,-103,-37xm96,-259r40,0r-10,43r-39,0xm157,-259r40,0r-9,43r-40,0","w":221},"\u00f9":{"d":"47,-181r51,0r-35,139v0,10,7,16,17,16v53,-1,65,-103,80,-155r51,0r-47,181r-50,0r6,-26v-34,55,-121,32,-103,-37xm89,-270r44,0r30,65r-23,0","w":221},"\u00ff":{"d":"17,-181r47,0r17,139r68,-139r48,0r-98,190v-26,53,-62,71,-121,56r9,-40v24,10,49,3,58,-11xm72,-259r40,0r-10,43r-39,0xm133,-259r40,0r-9,43r-40,0","w":191},"\u2122":{"d":"36,-257r86,0r0,20r-30,0r0,76r-26,0r0,-76r-30,0r0,-20xm141,-257r35,0r22,58r22,-58r34,0r0,96r-24,0r0,-72r-27,72r-10,0r-28,-72r0,72r-24,0r0,-96","w":299},"\u00a9":{"d":"19,-129v0,-69,59,-131,131,-131v71,0,131,60,131,131v0,72,-63,131,-131,131v-69,0,-131,-62,-131,-131xm259,-129v0,-60,-50,-109,-109,-109v-60,0,-109,51,-109,109v0,58,51,109,109,109v56,0,109,-49,109,-109xm213,-158r-33,0v-2,-17,-13,-26,-30,-26v-21,0,-34,20,-34,55v0,59,57,71,65,24r34,0v-2,32,-28,54,-65,54v-43,0,-70,-29,-70,-77v0,-49,28,-79,70,-79v36,0,61,19,63,49","w":299},"\u00ac":{"d":"45,-152r210,0r0,88r-35,0r0,-53r-175,0r0,-35","w":299},"\u00ae":{"d":"19,-129v2,-72,61,-131,131,-131v71,0,131,59,131,131v0,71,-63,131,-131,131v-69,0,-132,-62,-131,-131xm259,-127v0,-61,-49,-111,-109,-111v-59,0,-109,52,-109,109v0,58,52,109,109,109v55,0,109,-50,109,-107xm96,-204v51,-1,119,-5,119,42v0,19,-12,33,-32,38r32,65r-39,0r-28,-59r-17,0r0,59r-35,0r0,-145xm131,-182r0,42v23,1,49,0,47,-20v2,-20,-23,-23,-47,-22","w":299},"\u00d0":{"d":"70,-261r81,0v74,0,118,43,118,112v0,91,-56,149,-143,149r-123,0r30,-117r-37,0r9,-36r37,0xm78,-50v83,12,126,-32,128,-102v2,-50,-34,-63,-87,-59r-15,58r54,0r-9,36r-54,0","w":282},"\u00de":{"d":"68,-261r62,0r-12,45v71,-6,122,15,122,75v0,77,-74,99,-165,91r-13,50r-61,0xm105,-168r-18,70v45,3,90,-4,90,-42v0,-32,-39,-29,-72,-28","w":254},"\u00dd":{"d":"26,-261r58,0r32,106r77,-106r63,0r-118,156r-27,105r-62,0r29,-110xm161,-351r51,0r-68,65r-25,0","w":230},"\u00a6":{"d":"72,-252r36,0r0,134r-36,0r0,-134xm72,-72r36,0r0,134r-36,0r0,-134"},"\u00b0":{"d":"59,-257v30,0,54,23,54,53v0,29,-24,54,-54,54v-30,0,-53,-24,-53,-54v0,-30,23,-53,53,-53xm59,-235v-17,0,-31,14,-31,31v0,17,14,31,31,31v17,0,31,-14,31,-31v0,-17,-14,-31,-31,-31","w":118},"\u00f7":{"d":"150,-203v14,0,27,12,27,27v0,14,-12,26,-27,26v-15,0,-27,-11,-27,-26v0,-15,13,-27,27,-27xm45,-125r210,0r0,35r-210,0r0,-35xm150,-65v14,0,27,12,27,27v0,14,-12,26,-27,26v-15,0,-27,-11,-27,-26v0,-15,13,-27,27,-27","w":299},"\u00f0":{"d":"7,-71v-1,-63,63,-127,132,-98v-5,-15,-11,-29,-21,-39r-59,24r-8,-22r52,-19v-6,-6,-15,-14,-25,-22r23,-20v15,7,29,16,43,27r48,-20r9,21r-40,15v65,73,45,229,-71,229v-52,0,-83,-28,-83,-76xm91,-30v37,-1,53,-45,54,-77v0,-24,-11,-36,-31,-36v-29,0,-55,35,-55,79v0,22,13,34,32,34","w":214},"\u00d7":{"d":"73,-211r79,79r79,-79r25,24r-79,80r79,79r-25,24r-79,-79r-79,79r-24,-24r79,-79r-79,-80","w":299},"\u00bd":{"d":"74,-251r24,0r-39,141r-31,0r29,-106v-13,9,-26,14,-40,17r7,-25v15,-4,32,-14,50,-27xm206,-251r28,0r-151,251r-29,0xm281,-105v0,33,-53,56,-79,79r57,0r-8,26r-75,0v-10,-54,69,-59,72,-107v0,-9,-5,-16,-14,-16v-11,0,-16,11,-11,21r-25,12v-14,-28,3,-54,40,-53v27,0,43,15,43,38","w":289},"\u00bc":{"d":"74,-251r24,0r-39,141r-31,0r29,-106v-13,9,-26,14,-40,17r7,-25v15,-4,32,-14,50,-27xm206,-251r28,0r-151,251r-29,0xm252,-140r31,0r-25,90r15,0r-6,20r-14,0r-7,30r-31,0r9,-30r-46,0r8,-29xm245,-104r-45,54r29,0","w":289},"\u00b9":{"d":"77,-251r25,0r-40,151r-32,0r29,-113v-14,10,-27,15,-41,18r8,-26v16,-5,33,-16,51,-30","w":119},"\u00b1":{"d":"132,-215r36,0r0,57r87,0r0,35r-87,0r0,57r-36,0r0,-57r-87,0r0,-35r87,0r0,-57xm45,-35r210,0r0,35r-210,0r0,-35","w":299},"\u00fe":{"d":"196,-115v0,56,-43,120,-87,120v-25,0,-44,-14,-49,-38r-25,98r-51,0r85,-326r50,0r-26,102v36,-49,103,-29,103,44xm93,-28v32,0,53,-60,52,-96v0,-20,-9,-31,-23,-31v-35,-2,-54,59,-54,98v0,17,10,29,25,29","w":212},"\u00be":{"d":"75,-186v38,23,19,79,-33,79v-32,0,-48,-23,-38,-50r28,8v-4,10,-2,23,10,22v11,0,21,-14,21,-31v1,-14,-9,-18,-27,-18r5,-17v22,-4,33,-15,33,-30v0,-7,-3,-11,-11,-11v-8,-1,-16,8,-12,17r-28,4v-1,-26,16,-40,44,-40v49,-1,49,55,8,67xm206,-251r28,0r-151,251r-29,0xm252,-140r31,0r-25,90r15,0r-6,20r-14,0r-7,30r-31,0r9,-30r-46,0r8,-29xm245,-104r-45,54r29,0","w":289},"\u00b3":{"d":"78,-181v41,24,22,84,-34,84v-33,0,-51,-25,-39,-53r29,8v-4,11,-3,24,10,24v12,0,22,-15,22,-34v1,-15,-9,-19,-28,-19r5,-18v22,-5,34,-16,34,-32v0,-8,-3,-12,-11,-12v-8,0,-14,7,-13,18r-29,5v-1,-28,17,-44,46,-44v51,-1,52,61,8,73","w":119},"\u00b2":{"d":"112,-213v0,36,-56,61,-83,85r60,0r-9,28r-79,0v-6,-60,71,-63,76,-115v0,-10,-5,-16,-14,-16v-12,-1,-17,11,-12,21r-27,13v-15,-29,5,-58,42,-57v29,0,46,16,46,41","w":119},"\u00fd":{"d":"17,-181r47,0r17,139r68,-139r48,0r-98,190v-26,53,-62,71,-121,56r9,-40v24,10,49,3,58,-11xm121,-270r51,0r-68,65r-25,0","w":191},"\u00a0":{"w":90}}});

