/*
 * 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. 
 *
 */;
/*
    Kwicks for jQuery (version 1.5.1)
    Copyright (c) 2008 Jeremy Martin
    http://www.jeremymartin.name/projects.php?project=kwicks
    
    Licensed under the MIT license:
        http://www.opensource.org/licenses/mit-license.php

    Any and all use of this script must be accompanied by this copyright/license notice in its present form.
*/

(function($){
    $.fn.kwicks = function(options) {
        var defaults = {
            isVertical: false,
            sticky: false,
            defaultKwick: 0,
            event: 'mouseover',
            spacing: 0,
            duration: 300
        };
        var o = $.extend(defaults, options);
        var WoH = (o.isVertical ? 'height' : 'width'); // WoH = Width or Height
        var LoT = (o.isVertical ? 'top' : 'left'); // LoT = Left or Top
        
        return this.each(function() {
            container = $(this);
            var kwicks = container.children('li');
            var normWoH = kwicks.eq(0).css(WoH).replace(/px/,''); // normWoH = Normal Width or Height
            if(!o.max) {
                o.max = (normWoH * kwicks.size()) - (o.min * (kwicks.size() - 1));
            } else {
                o.min = ((normWoH * kwicks.size()) - o.max) / (kwicks.size() - 1);
            }
            // set width of container ul
            if(o.isVertical) {
                container.css({
                    width : kwicks.eq(0).css('width'),
                    height : (normWoH * kwicks.size()) + (o.spacing * (kwicks.size() - 1)) + 'px'
                });                
            } else {
                container.css({
                    width : (normWoH * kwicks.size()) + (o.spacing * (kwicks.size() - 1)) + 'px',
                    height : kwicks.eq(0).css('height')
                });                
            }

            // pre calculate left or top values for all kwicks but the first and last
            // i = index of currently hovered kwick, j = index of kwick we're calculating
            var preCalcLoTs = []; // preCalcLoTs = pre-calculated Left or Top's
            for(i = 0; i < kwicks.size(); i++) {
                preCalcLoTs[i] = [];
                // don't need to calculate values for first or last kwick
                for(j = 1; j < kwicks.size() - 1; j++) {
                    if(i == j) {
                        preCalcLoTs[i][j] = o.isVertical ? j * o.min + (j * o.spacing) : j * o.min + (j * o.spacing);
                    } else {
                        preCalcLoTs[i][j] = (j <= i ? (j * o.min) : (j-1) * o.min + o.max) + (j * o.spacing);
                    }
                }
            }
            
            // loop through all kwick elements
            kwicks.each(function(i) {
                var kwick = $(this);
                // set initial width or height and left or top values
                // set first kwick
                if(i === 0) {
                    kwick.css(LoT, '0px');
                } 
                // set last kwick
                else if(i == kwicks.size() - 1) {
                    kwick.css(o.isVertical ? 'bottom' : 'right', '0px');
                }
                // set all other kwicks
                else {
                    if(o.sticky) {
                        kwick.css(LoT, preCalcLoTs[o.defaultKwick][i]);
                    } else {
                        kwick.css(LoT, (i * normWoH) + (i * o.spacing));
                    }
                }
                // correct size in sticky mode
                if(o.sticky) {
                    if(o.defaultKwick == i) {
                        kwick.css(WoH, o.max + 'px');
                        kwick.addClass('active');
                        kwick.find(".small-img").css("display","none");
                    } else {
                        kwick.css(WoH, o.min + 'px');
                    }
                }
                kwick.css({
                    margin: 0,
                    position: 'absolute'
                });
                
                kwick.bind(o.event, function() {
                    // calculate previous width or heights and left or top values
                    var prevWoHs = []; // prevWoHs = previous Widths or Heights
                    var prevLoTs = []; // prevLoTs = previous Left or Tops
                    kwicks.stop().removeClass('active');
                    for(j = 0; j < kwicks.size(); j++) {
                        prevWoHs[j] = kwicks.eq(j).css(WoH).replace(/px/, '');
                        prevLoTs[j] = kwicks.eq(j).css(LoT).replace(/px/, '');
                    }
                    var aniObj = {};
                    aniObj[WoH] = o.max;
                    var maxDif = o.max - prevWoHs[i];
                    var prevWoHsMaxDifRatio = prevWoHs[i]/maxDif;

                    //kwick.find(".small-img").fadeOut(function() {
                        kwick.addClass('active').animate(aniObj, {
                            step: function(now) {
                                // calculate animation completeness as percentage
                                var percentage = maxDif != 0 ? now/maxDif - prevWoHsMaxDifRatio : 1;
                                // adjsut other elements based on percentage
                                kwicks.each(function(j) {
                                    if(j != i) {
                                        kwicks.eq(j).css(WoH, prevWoHs[j] - ((prevWoHs[j] - o.min) * percentage) + 'px');
                                    }
                                    if(j > 0 && j < kwicks.size() - 1) { // if not the first or last kwick
                                        kwicks.eq(j).css(LoT, prevLoTs[j] - ((prevLoTs[j] - preCalcLoTs[i][j]) * percentage) + 'px');
                                    }
                                });
                            },
                            duration: o.duration,
                            easing: o.easing
                        });
                    //});
                });
            });
            if(!o.sticky) {
                container.bind("mouseleave", function() {
                    
                    var prevWoHs = [];
                    var prevLoTs = [];
                    kwicks.removeClass('active').stop();
                    for(i = 0; i < kwicks.size(); i++) {
                        prevWoHs[i] = kwicks.eq(i).css(WoH).replace(/px/, '');
                        prevLoTs[i] = kwicks.eq(i).css(LoT).replace(/px/, '');
                    }
                    var aniObj = {};
                    aniObj[WoH] = normWoH;
                    var normDif = normWoH - prevWoHs[0];
                    kwicks.eq(0).animate(aniObj, {
                        step: function(now) {
                            var percentage = normDif != 0 ? (now - prevWoHs[0])/normDif : 1;
                            for(i = 1; i < kwicks.size(); i++) {
                                kwicks.eq(i).css(WoH, prevWoHs[i] - ((prevWoHs[i] - normWoH) * percentage) + 'px');
                                if(i < kwicks.size() - 1) {
                                    kwicks.eq(i).css(LoT, prevLoTs[i] - ((prevLoTs[i] - ((i * normWoH) + (i * o.spacing))) * percentage) + 'px');
                                }
                            }
                        },
                        duration: o.duration,
                        easing: o.easing
                    });
                });
            }
        });
    };
})(jQuery);;
/*jslint browser: true */ /*global jQuery: true */

/**
 * jQuery Cookie plugin
 *
 * Copyright (c) 2010 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */

// TODO JsDoc

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

/**
 * Get the value of a cookie with the given key.
 *
 * @example $.cookie('the_cookie');
 * @desc Get the value of a cookie.
 *
 * @param String key The key of the cookie.
 * @return The value of the cookie.
 * @type String
 *
 * @name $.cookie
 * @cat Plugins/Cookie
 * @author Klaus Hartl/klaus.hartl@stilbuero.de
 */
jQuery.cookie = function (key, value, options) {
    
    // key and at least value given, set cookie...
    if (arguments.length > 1 && String(value) !== "[object Object]") {
        options = jQuery.extend({}, options);

        if (value === null || value === undefined) {
            options.expires = -1;
        }

        if (typeof options.expires === 'number') {
            var days = options.expires, t = options.expires = new Date();
            t.setDate(t.getDate() + days);
        }
        
        value = String(value);
        
        return (document.cookie = [
            encodeURIComponent(key), '=',
            options.raw ? value : encodeURIComponent(value),
            options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
            options.path ? '; path=' + options.path : '',
            options.domain ? '; domain=' + options.domain : '',
            options.secure ? '; secure' : ''
        ].join(''));
    }

    // key and possibly options given, get cookie...
    options = value || {};
    var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent;
    return (result = new RegExp('(?:^|; )' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null;
};
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1990-99 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc.
 * 
 * Trademark:
 * Helvetica is a registered trademark of Linotype AG
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Helvetica","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"277","descent":"-83","x-height":"7","bbox":"-60 -342 358 80.5289","underline-thickness":"17.7539","underline-position":"-18.457","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":100,"k":{"Y":6,"T":6,"A":20}},"\uf001":{"d":"31,-187v-5,-52,9,-83,63,-74r0,29v-31,-4,-32,7,-31,45r31,0r0,25r-32,0r0,162r-31,0r0,-162r-26,0r0,-25r26,0xm124,-222r0,-36r32,0r0,36r-32,0xm124,-187r32,0r0,187r-32,0r0,-187","w":180},"\uf002":{"d":"155,0r-31,0r0,-258r31,0r0,258xm94,-232v-30,-8,-35,15,-32,45r32,0r0,25r-32,0r0,162r-31,0r0,-162r-26,0r0,-25r26,0v-7,-51,11,-83,63,-74r0,29","w":180},"!":{"d":"42,-258r35,0v2,70,-3,133,-8,196r-18,0r-9,-111r0,-85xm42,-37r35,0r0,37r-35,0r0,-37","w":100},"\"":{"d":"110,-258r-5,103r-21,0r-6,-103r32,0xm50,-258r-5,103r-21,0r-6,-103r32,0","w":127},"#":{"d":"5,-99r41,0r17,-60r-41,0r5,-20r41,0r21,-79r26,0r-21,79r39,0r22,-79r25,0r-21,79r41,0r-6,20r-40,0r-17,60r41,0r-6,21r-40,0r-22,78r-25,0r21,-78r-39,0r-21,78r-26,0r21,-78r-41,0xm111,-99r16,-60r-38,0r-17,60r39,0"},"$":{"d":"107,-18v44,5,64,-56,32,-80v-6,-4,-17,-9,-32,-13r0,93xm90,-230v-37,-2,-55,46,-31,69v8,7,18,11,31,14r0,-83xm16,-186v0,-38,32,-71,75,-70r0,-23r16,0r0,23v44,3,71,26,74,69r-31,0v-2,-26,-18,-41,-43,-42r0,85v49,15,80,21,80,71v0,52,-29,76,-80,81r0,34r-16,0r0,-34v-53,-4,-80,-29,-80,-85r31,0v2,38,13,53,48,58r0,-96v-44,-9,-74,-24,-74,-71"},"%":{"d":"245,-122v33,0,62,28,62,61v0,33,-29,61,-62,61v-33,0,-61,-28,-61,-61v0,-33,28,-61,61,-61xm220,-251r19,0r-140,258r-20,0xm73,-147v20,0,36,-16,36,-36v0,-20,-17,-36,-36,-36v-19,0,-36,16,-36,36v0,20,16,36,36,36xm73,-244v33,0,61,28,61,61v0,33,-28,61,-61,61v-33,0,-61,-28,-61,-61v0,-33,28,-61,61,-61xm245,-25v19,0,37,-17,37,-36v0,-20,-17,-36,-37,-36v-20,0,-36,17,-36,36v0,19,17,36,36,36","w":320},"&":{"d":"103,-158v19,-14,31,-22,33,-46v0,-16,-12,-28,-28,-28v-45,2,-32,55,-5,74xm48,-65v-2,55,84,51,102,14r-58,-71v-28,19,-43,23,-44,57xm74,-144v-45,-34,-31,-114,35,-114v34,0,57,22,57,52v0,35,-20,50,-46,69r47,56v6,-18,7,-22,10,-41r30,0v0,19,-16,62,-21,66r46,56r-41,0r-24,-30v-20,22,-40,35,-75,36v-48,2,-76,-30,-76,-71v0,-45,22,-57,58,-79","w":240},"'":{"d":"50,-258r-6,103r-20,0r-6,-103r32,0","w":68},"(":{"d":"25,-92v0,-83,20,-107,60,-170r22,0v-64,100,-64,236,0,335r-21,0v-39,-60,-61,-82,-61,-165","w":119},")":{"d":"94,-97v0,83,-20,107,-60,170r-22,0v67,-99,63,-237,0,-335r21,0v40,61,61,84,61,165","w":119},"*":{"d":"79,-258r0,39r38,-13r7,19r-38,13r24,33r-18,12r-23,-34r-23,34r-18,-12r24,-33r-38,-13r7,-19r38,13r0,-39r20,0","w":140},"+":{"d":"13,-77r0,-30r77,0r0,-77r30,0r0,77r77,0r0,30r-77,0r0,77r-30,0r0,-77r-77,0","w":210},",":{"d":"30,37v13,-1,22,-21,19,-37r-19,0r0,-38r38,0v1,43,1,86,-38,91r0,-16","w":100},"-":{"d":"15,-117r88,0r0,33r-88,0r0,-33","w":119},"\u00ad":{"d":"15,-117r88,0r0,33r-88,0r0,-33","w":119},".":{"d":"31,-38r37,0r0,38r-37,0r0,-38","w":100},"\/":{"d":"82,-258r27,0r-82,258r-27,0","w":100},"0":{"d":"97,-252v64,1,88,54,88,126v0,72,-25,134,-88,133v-61,-1,-86,-58,-86,-128v0,-70,26,-132,86,-131xm97,-22v45,0,54,-41,54,-103v0,-50,-6,-98,-52,-98v-46,0,-53,48,-53,103v0,50,11,98,51,98"},"1":{"d":"34,-202v46,-6,58,-8,68,-49r25,0r0,251r-33,0r0,-178r-60,0r0,-24","k":{"1":27}},"2":{"d":"102,-253v73,-4,107,79,62,127v-27,29,-106,48,-117,96r137,0r0,30r-173,0v-3,-86,79,-102,125,-142v31,-27,10,-85,-34,-82v-36,2,-52,23,-52,62r-33,0v1,-57,29,-88,85,-91"},"3":{"d":"142,-134v79,29,39,141,-48,141v-56,0,-84,-34,-85,-84r33,0v2,38,17,53,53,55v32,1,55,-19,55,-48v0,-41,-33,-49,-73,-46r0,-28v35,5,65,-7,65,-40v0,-25,-21,-39,-44,-39v-35,0,-50,19,-52,54r-31,0v-1,-52,29,-83,79,-83v49,0,81,20,81,67v0,25,-13,44,-33,51"},"4":{"d":"119,-89r0,-114r-81,114r81,0xm120,0r0,-62r-111,0r0,-30r115,-160r27,0r0,163r37,0r0,27r-37,0r0,62r-31,0"},"5":{"d":"185,-84v0,75,-87,116,-147,73v-16,-12,-24,-29,-26,-53r32,0v3,27,23,42,52,43v35,2,52,-27,55,-58v5,-57,-79,-72,-103,-31r-27,-2r19,-136r131,0r0,31r-107,0r-11,70v48,-39,132,-2,132,63"},"6":{"d":"14,-111v0,-76,27,-142,91,-142v49,0,74,30,76,67r-32,0v-3,-45,-65,-51,-85,-14v-9,17,-17,40,-18,70v35,-56,140,-32,140,49v0,47,-34,90,-86,88v-58,-3,-86,-46,-86,-118xm103,-22v34,0,50,-26,50,-56v0,-29,-16,-56,-52,-54v-30,1,-51,22,-51,54v0,31,20,56,53,56"},"7":{"d":"188,-220v-48,56,-89,127,-104,220r-35,0v12,-75,58,-164,103,-216r-139,0r0,-32r175,0r0,28"},"8":{"d":"98,-146v25,0,45,-16,44,-40v0,-21,-19,-37,-45,-37v-28,0,-43,15,-43,39v-1,23,21,38,44,38xm100,-22v30,0,52,-17,51,-47v0,-32,-22,-49,-53,-50v-29,-1,-53,20,-52,49v0,29,21,48,54,48xm55,-134v-67,-27,-28,-126,44,-118v72,-9,105,91,44,118v25,11,42,30,42,62v0,46,-36,80,-86,79v-48,-1,-87,-28,-87,-78v0,-34,17,-53,43,-63"},"9":{"d":"183,-134v0,71,-28,141,-92,141v-46,0,-75,-27,-75,-68r32,0v-1,43,56,56,80,23v10,-14,19,-38,23,-77v-34,58,-145,26,-138,-51v4,-47,31,-86,82,-86v61,0,88,51,88,118xm96,-112v30,-1,50,-19,50,-56v0,-35,-18,-55,-50,-55v-32,-1,-51,24,-50,57v1,32,16,56,50,54"},":":{"d":"40,-186r37,0r0,39r-37,0r0,-39xm40,-38r37,0r0,38r-37,0r0,-38","w":100},";":{"d":"40,37v13,-3,21,-18,19,-37r-19,0r0,-38r37,0v2,43,2,87,-37,91r0,-16xm40,-186r37,0r0,39r-37,0r0,-39","w":100},"\u037e":{"d":"40,37v13,-3,21,-18,19,-37r-19,0r0,-38r37,0v2,43,2,87,-37,91r0,-16xm40,-186r37,0r0,39r-37,0r0,-39","w":100},"<":{"d":"2,-107r206,-80r0,32r-168,63r168,64r0,31r-206,-80r0,-30","w":210},"=":{"d":"197,-144r0,29r-184,0r0,-29r184,0xm197,-69r0,30r-184,0r0,-30r184,0","w":210},">":{"d":"208,-77r-206,80r0,-31r168,-64r-168,-63r0,-32r206,80r0,30","w":210},"?":{"d":"87,-37r35,0r0,37r-35,0r0,-37xm27,-177v0,-50,31,-85,81,-85v44,0,76,28,76,71v1,57,-70,60,-65,125r-32,0v-7,-68,64,-69,64,-126v0,-25,-16,-43,-44,-42v-34,0,-47,21,-48,57r-32,0"},"@":{"d":"220,-157v0,-14,-11,-28,-28,-28v-27,0,-49,42,-49,70v0,20,8,35,26,36v31,2,51,-50,51,-78xm185,8v-83,0,-144,-53,-145,-131v-1,-83,67,-142,153,-142v76,0,131,38,132,109v1,47,-35,96,-77,97v-23,1,-38,-15,-33,-37v-10,21,-27,37,-53,37v-29,0,-48,-25,-48,-56v0,-42,34,-90,72,-89v22,0,41,16,42,36r9,-30r25,0r-28,101v0,10,7,15,16,15v31,0,53,-38,52,-75v-2,-56,-46,-88,-105,-88v-78,0,-133,46,-133,123v0,67,52,109,125,109v42,0,75,-15,101,-34r11,16v-23,19,-71,39,-116,39","w":365},"A":{"d":"160,-106r-39,-114r-42,114r81,0xm102,-258r40,0r94,258r-39,0r-26,-77r-102,0r-28,77r-36,0","w":240,"k":{"y":6,"w":6,"v":6,"Y":27,"W":13,"V":27,"T":27," ":20}},"B":{"d":"178,-190v0,-52,-68,-37,-117,-39r0,80v50,-2,117,12,117,-41xm191,-77v0,-55,-75,-43,-130,-44r0,91v58,-1,130,11,130,-47xm179,-139v82,26,46,139,-43,139r-109,0r0,-258v80,2,187,-19,186,64v0,27,-13,45,-34,55","w":240},"C":{"d":"16,-132v0,-77,46,-133,120,-133v59,0,100,36,106,84r-34,0v-8,-33,-30,-55,-71,-54v-57,1,-85,43,-85,109v0,58,26,102,84,102v44,0,67,-30,75,-71r34,0v-6,58,-50,103,-113,102v-76,-2,-116,-57,-116,-139","w":259},"D":{"d":"207,-127v2,-61,-22,-102,-81,-101r-62,0r0,198r63,0v59,1,78,-42,80,-97xm242,-133v0,74,-39,133,-109,133r-104,0r0,-258r105,0v69,-1,108,54,108,125","w":259},"E":{"d":"31,-258r188,0r0,31r-154,0r0,79r142,0r0,30r-142,0r0,87r157,0r0,31r-191,0r0,-258","w":240},"F":{"d":"31,-258r179,0r0,31r-144,0r0,79r126,0r0,31r-126,0r0,117r-35,0r0,-258","w":219,"k":{"A":20,".":40,",":40}},"G":{"d":"17,-125v0,-103,92,-171,185,-126v26,13,41,37,47,71r-35,0v-8,-36,-34,-54,-76,-54v-54,0,-86,44,-85,107v1,61,24,105,86,104v50,-1,83,-31,82,-86r-81,0r0,-29r113,0r0,138r-22,0r-9,-33v-25,28,-43,39,-90,40v-71,1,-115,-57,-115,-132","w":280},"H":{"d":"28,-258r36,0r0,106r134,0r0,-106r35,0r0,258r-35,0r0,-121r-134,0r0,121r-36,0r0,-258","w":259},"I":{"d":"35,-258r36,0r0,258r-36,0r0,-258","w":100},"J":{"d":"78,-22v37,-2,42,-20,42,-64r0,-172r34,0r0,181v0,57,-23,84,-78,84v-48,0,-76,-30,-70,-90r33,0v-2,36,5,63,39,61","w":180},"K":{"d":"27,-258r35,0r0,126r125,-126r49,0r-108,104r111,154r-46,0r-90,-130r-41,40r0,90r-35,0r0,-258","w":240},"L":{"d":"27,-258r35,0r0,227r131,0r0,31r-166,0r0,-258","k":{"y":13,"Y":27,"W":27,"V":27,"T":27," ":13}},"M":{"d":"27,-258r50,0r74,218r73,-218r50,0r0,258r-33,0r1,-218r-74,218r-35,0r-74,-218r1,218r-33,0r0,-258","w":299},"N":{"d":"27,-258r42,0r130,209r0,-209r33,0r0,258r-39,0r-132,-209r0,209r-34,0r0,-258","w":259},"O":{"d":"139,-265v81,0,126,50,127,131v0,81,-48,142,-128,142v-77,0,-125,-57,-124,-136v1,-78,47,-137,125,-137xm142,-24v61,0,87,-52,88,-109v0,-57,-33,-102,-89,-101v-59,1,-92,43,-91,108v1,58,29,102,92,102","w":280},"P":{"d":"224,-184v0,43,-30,75,-77,75r-81,0r0,109r-35,0r0,-258r116,0v46,-1,77,29,77,74xm188,-184v0,-57,-68,-43,-122,-44r0,89v54,-2,122,14,122,-45","w":240,"k":{"A":27,".":46,",":46," ":6}},"Q":{"d":"266,-134v0,46,-14,82,-38,106r36,27r-18,22r-40,-31v-19,10,-40,18,-68,18v-77,2,-125,-58,-124,-136v1,-78,47,-137,125,-137v81,0,126,50,127,131xm50,-126v0,74,58,121,129,95r-28,-22r18,-22r33,26v52,-56,31,-190,-61,-185v-62,3,-91,41,-91,108","w":280},"R":{"d":"201,-185v0,-60,-78,-40,-134,-43r0,88v57,-3,134,17,134,-45xm203,0v-14,-39,16,-111,-57,-111r-79,0r0,111r-35,0r0,-258v87,3,204,-22,204,69v0,32,-14,51,-36,62v49,5,16,97,46,121r0,6r-43,0","w":259,"k":{"Y":6,"W":6,"V":6,"T":6}},"S":{"d":"223,-72v0,86,-128,100,-179,55v-18,-16,-27,-38,-27,-66r33,0v3,42,28,58,72,61v49,3,90,-41,54,-75v-45,-28,-150,-15,-150,-88v0,-78,105,-101,161,-60v19,13,29,34,29,63r-33,0v-4,-38,-25,-48,-66,-52v-48,-4,-79,49,-42,71v43,25,148,14,148,91","w":240},"T":{"d":"215,-258r0,31r-87,0r0,227r-35,0r0,-227r-87,0r0,-31r209,0","w":219,"k":{"y":20,"w":20,"u":13,"s":40,"r":13,"o":40,"i":13,"e":40,"c":40,"a":40,"O":6,"A":27,";":40,":":40,".":40,"-":20,",":40," ":6}},"U":{"d":"131,7v-72,0,-101,-41,-101,-120r0,-145r35,0v8,91,-32,232,64,234v104,2,60,-142,69,-234r35,0r0,145v1,79,-30,120,-102,120","w":259},"V":{"d":"48,-258r74,220r73,-220r39,0r-94,258r-37,0r-94,-258r39,0","w":240,"k":{"y":13,"u":13,"r":13,"o":20,"i":6,"e":20,"a":27,"A":27,";":13,":":13,".":33,"-":20,",":33}},"W":{"d":"44,-258r49,210r59,-210r37,0r59,210r49,-210r38,0r-68,258r-37,0r-59,-214r-60,214r-37,0r-67,-258r37,0","w":339,"k":{"y":3,"u":6,"r":6,"o":6,"e":6,"a":13,"A":13,";":6,":":6,".":20,"-":6,",":20}},"X":{"d":"50,0r-43,0r93,-132r-87,-126r44,0r66,99r65,-99r42,0r-87,126r91,132r-43,0r-70,-106","w":240},"Y":{"d":"7,-258r41,0r74,124r75,-124r40,0r-97,154r0,104r-35,0r0,-104","w":240,"k":{"v":20,"u":20,"q":33,"p":27,"o":33,"i":13,"e":33,"a":27,"A":27,";":23,":":20,".":46,"-":33,",":46," ":6}},"Z":{"d":"8,-29r159,-198r-147,0r0,-31r192,0r0,30r-160,197r160,0r0,31r-204,0r0,-29","w":219},"[":{"d":"22,-260r68,0r0,26r-38,0r0,279r38,0r0,26r-68,0r0,-331","w":100},"\\":{"d":"15,-258r101,258r-28,0r-100,-258r27,0","w":100},"]":{"d":"8,45r38,0r0,-279r-38,0r0,-26r68,0r0,331r-68,0r0,-26","w":100},"^":{"d":"98,-258r62,151r-29,0r-47,-116r-46,116r-29,0r62,-151r27,0","w":168},"_":{"d":"0,45r0,-18r200,0r0,18r-200,0"},"`":{"d":"81,-213r-24,0r-47,-51r39,0","w":119},"a":{"d":"62,-76v-28,14,-14,57,19,55v42,-3,67,-26,59,-75v-19,12,-59,9,-78,20xm142,-25v-25,42,-128,43,-128,-24v0,-56,58,-61,110,-65v12,-2,17,-7,17,-21v0,-24,-19,-31,-45,-31v-27,0,-40,9,-42,35r-30,0v1,-44,32,-62,73,-62v40,0,75,13,75,52r0,109v-1,12,8,12,20,10r0,23v-23,8,-50,1,-50,-26"},"b":{"d":"105,6v-28,0,-42,-11,-55,-30r0,24r-29,0r0,-259r31,0r0,94v11,-16,31,-28,56,-28v50,1,80,38,79,95v-1,55,-28,104,-82,104xm103,-22v38,1,51,-35,51,-74v0,-36,-15,-69,-50,-69v-34,0,-54,27,-54,69v0,44,14,74,53,74"},"c":{"d":"10,-89v0,-83,75,-132,138,-89v14,9,21,28,24,53r-31,0v-4,-23,-16,-40,-45,-40v-36,0,-53,36,-52,76v0,36,14,68,50,67v28,0,42,-20,47,-45r31,0v-7,45,-32,72,-81,72v-50,1,-81,-43,-81,-94","w":180},"d":{"d":"43,-92v0,38,15,73,54,71v35,-1,50,-33,50,-73v0,-42,-16,-70,-50,-70v-36,0,-55,30,-54,72xm91,-192v27,1,41,10,55,28r0,-95r31,0r0,259r-29,0r0,-26v-13,21,-31,33,-61,33v-46,0,-77,-46,-77,-97v0,-52,29,-103,81,-102"},"e":{"d":"13,-91v0,-107,149,-141,169,-35v2,9,3,23,3,42r-138,0v2,36,14,63,52,63v27,0,47,-16,52,-38r31,0v-9,39,-37,66,-85,66v-50,-1,-84,-41,-84,-98xm152,-109v3,-52,-58,-73,-89,-40v-10,10,-15,24,-16,40r105,0"},"f":{"d":"31,-187v-5,-52,9,-83,63,-74r0,29v-31,-4,-32,7,-31,45r31,0r0,25r-32,0r0,162r-31,0r0,-162r-26,0r0,-25r26,0","w":100,"k":{"f":6}},"g":{"d":"11,-91v0,-85,89,-135,136,-72r0,-24r29,0v-7,109,35,271,-85,267v-40,-1,-72,-19,-74,-57r32,0v2,41,80,38,90,5v4,-10,6,-28,6,-54v-12,19,-27,29,-58,28v-48,-1,-76,-35,-76,-93xm147,-95v1,-41,-17,-69,-52,-69v-37,0,-52,33,-52,75v-1,37,14,64,48,65v38,1,56,-32,56,-71"},"h":{"d":"107,-165v-32,0,-52,22,-52,65r0,100r-32,0r0,-259r32,0r0,96v30,-50,122,-38,122,42r0,121r-33,0r0,-119v1,-32,-9,-46,-37,-46"},"i":{"d":"23,-187r32,0r0,187r-32,0r0,-187xm23,-258r32,0r0,36r-32,0r0,-36","w":79},"j":{"d":"55,-222r-32,0r0,-36r32,0r0,36xm55,28v1,39,-23,51,-62,47r0,-27v26,-2,30,2,30,-23r0,-212r32,0r0,215","w":79},"k":{"d":"22,-258r31,0r0,150r81,-80r41,0r-73,70r77,118r-41,0r-59,-95r-26,24r0,71r-31,0r0,-258","w":180},"l":{"d":"24,-258r32,0r0,258r-32,0r0,-258","w":79},"m":{"d":"102,-164v-64,1,-44,98,-47,164r-32,0r0,-188r31,0r0,26v20,-36,90,-42,107,-1v27,-47,116,-37,116,38r0,125r-33,0r0,-131v0,-23,-12,-32,-33,-33v-65,0,-41,100,-45,164r-32,0r0,-123v0,-28,-7,-40,-32,-41","w":299},"n":{"d":"109,-164v-75,0,-50,95,-54,164r-32,0r0,-188r30,0r0,26v32,-47,124,-42,124,41r0,121r-33,0r0,-119v0,-27,-10,-45,-35,-45"},"o":{"d":"98,-20v42,0,54,-39,55,-77v0,-41,-17,-69,-55,-69v-39,-1,-55,36,-55,75v0,39,16,71,55,71xm99,-194v51,1,87,38,87,96v0,60,-30,105,-91,105v-54,0,-85,-41,-85,-97v0,-60,32,-104,89,-104"},"p":{"d":"103,-21v34,-1,51,-32,51,-74v0,-39,-16,-70,-51,-70v-37,0,-52,35,-52,77v0,39,16,69,52,67xm107,6v-27,0,-41,-9,-55,-27r0,96r-31,0r0,-262r31,0r0,25v40,-62,142,-20,135,64v-5,60,-25,104,-80,104"},"q":{"d":"44,-92v0,40,15,71,50,71v37,0,52,-32,52,-75v0,-40,-16,-70,-52,-69v-34,2,-50,31,-50,73xm90,-192v28,0,46,11,57,30r0,-26r30,0r0,263r-32,0r0,-97v-39,58,-134,18,-134,-67v0,-55,29,-102,79,-103"},"r":{"d":"116,-158v-36,-7,-60,19,-60,50r0,108r-32,0r0,-188r30,0r0,32v7,-16,31,-42,62,-36r0,34","w":119,"k":{".":20,",":20}},"s":{"d":"149,-93v42,37,4,100,-59,100v-51,0,-76,-23,-78,-66r30,0v3,29,18,36,49,39v32,3,63,-31,34,-49v-32,-20,-108,-15,-108,-64v0,-65,101,-78,132,-35v8,11,12,22,12,34r-30,0v-3,-22,-18,-32,-46,-32v-32,0,-50,31,-24,45v21,11,75,18,88,28","w":180},"t":{"d":"92,0v-35,9,-62,-1,-62,-38r0,-124r-26,0r0,-26r26,0r0,-53r32,0r0,53r30,0r0,26r-30,0r0,122v-1,18,13,16,30,15r0,25","w":100},"u":{"d":"85,5v-90,0,-57,-114,-63,-193r33,0r0,125v-1,27,13,39,36,40v69,2,48,-97,51,-165r32,0r0,188r-30,0r0,-28v-10,19,-32,33,-59,33"},"v":{"d":"39,-188r50,153r53,-153r34,0r-71,188r-34,0r-69,-188r37,0","w":180,"k":{".":27,",":27}},"w":{"d":"38,-188r36,148r37,-148r35,0r37,147r39,-147r31,0r-54,188r-33,0r-39,-146r-37,146r-33,0r-54,-188r35,0","w":259,"k":{".":20,",":20}},"x":{"d":"5,-188r41,0r43,66r44,-66r39,1r-64,90r67,97r-41,0r-47,-71r-45,71r-40,0r66,-97","w":180},"y":{"d":"141,-188r35,0r-59,161v-18,48,-30,77,-38,88v-10,15,-35,20,-58,14r0,-29v35,16,44,-19,52,-41r-69,-193r36,0r50,153","w":180,"k":{".":27,",":27}},"z":{"d":"9,-25r112,-135r-104,0r0,-28r146,0r0,26r-111,134r115,0r0,28r-158,0r0,-25","w":180},"{":{"d":"17,-95v45,3,55,43,52,96v-2,32,19,48,43,52r0,20v-55,-3,-72,-37,-72,-104v0,-36,-15,-49,-48,-54r0,-20v72,4,32,-97,63,-135v10,-13,28,-21,57,-23r0,20v-38,3,-43,34,-43,79v0,44,-14,64,-52,69","w":120},"|":{"d":"62,0r-30,0r0,-262r30,0r0,262","w":93},"}":{"d":"103,-95v-44,-3,-55,-37,-52,-89v2,-38,-12,-55,-44,-59r0,-20v61,3,75,36,72,104v-2,36,15,50,48,54r0,20v-75,-5,-26,111,-68,140v-14,10,-31,16,-52,18r0,-20v36,-4,44,-34,44,-79v0,-42,16,-65,52,-69","w":120},"~":{"d":"0,-56v5,-43,35,-79,85,-60v23,9,43,24,70,24v19,0,30,-18,34,-35r21,0v-5,46,-44,83,-95,56v-29,-16,-88,-37,-94,15r-21,0","w":210},"\u00c4":{"d":"160,-106r-39,-114r-42,114r81,0xm102,-258r40,0r94,258r-39,0r-26,-77r-102,0r-28,77r-36,0xm153,-319r33,0r0,37r-33,0r0,-37xm95,-319r33,0r0,37r-33,0r0,-37","w":240},"\u00c5":{"d":"160,-106r-39,-114r-42,114r81,0xm102,-258r40,0r94,258r-39,0r-26,-77r-102,0r-28,77r-36,0xm122,-305v0,12,9,23,22,22v12,0,22,-10,22,-22v0,-12,-10,-22,-22,-22v-12,0,-22,9,-22,22xm107,-305v0,-20,17,-37,37,-37v20,0,36,17,36,37v0,20,-16,37,-36,37v-20,0,-37,-17,-37,-37","w":240},"\u00c7":{"d":"16,-132v0,-77,46,-133,120,-133v59,0,100,36,106,84r-34,0v-8,-33,-30,-55,-71,-54v-57,1,-85,43,-85,109v0,58,26,102,84,102v44,0,67,-30,75,-71r34,0v-5,57,-51,102,-110,102r-11,15v21,-5,41,4,41,26v0,35,-49,39,-77,25r6,-14v14,8,44,10,44,-10v0,-12,-19,-16,-31,-11v-14,-9,6,-21,11,-31v-64,-4,-102,-65,-102,-139","w":259},"\u00c9":{"d":"31,-258r188,0r0,31r-154,0r0,79r142,0r0,30r-142,0r0,87r157,0r0,31r-191,0r0,-258xm193,-329r-47,51r-24,0r32,-51r39,0","w":240},"\u00d1":{"d":"27,-258r42,0r130,209r0,-209r33,0r0,258r-39,0r-132,-209r0,209r-34,0r0,-258xm123,-320v24,0,59,31,68,-3r18,0v-2,52,-56,37,-90,25v-9,0,-14,7,-16,16r-17,0v4,-21,15,-38,37,-38","w":259},"\u00d6":{"d":"139,-265v81,0,126,50,127,131v0,81,-48,142,-128,142v-77,0,-125,-57,-124,-136v1,-78,47,-137,125,-137xm142,-24v61,0,87,-52,88,-109v0,-57,-33,-102,-89,-101v-59,1,-92,43,-91,108v1,58,29,102,92,102xm173,-326r33,0r0,37r-33,0r0,-37xm115,-326r33,0r0,37r-33,0r0,-37","w":280},"\u00dc":{"d":"131,7v-72,0,-101,-41,-101,-120r0,-145r35,0v8,91,-32,232,64,234v104,2,60,-142,69,-234r35,0r0,145v1,79,-30,120,-102,120xm164,-319r33,0r0,37r-33,0r0,-37xm106,-319r33,0r0,37r-33,0r0,-37","w":259},"\u00e1":{"d":"62,-76v-28,14,-14,57,19,55v42,-3,67,-26,59,-75v-19,12,-59,9,-78,20xm142,-25v-25,42,-128,43,-128,-24v0,-56,58,-61,110,-65v12,-2,17,-7,17,-21v0,-24,-19,-31,-45,-31v-27,0,-40,9,-42,35r-30,0v1,-44,32,-62,73,-62v40,0,75,13,75,52r0,109v-1,12,8,12,20,10r0,23v-23,8,-50,1,-50,-26xm165,-264r-47,51r-24,0r32,-51r39,0"},"\u00e0":{"d":"62,-76v-28,14,-14,57,19,55v42,-3,67,-26,59,-75v-19,12,-59,9,-78,20xm142,-25v-25,42,-128,43,-128,-24v0,-56,58,-61,110,-65v12,-2,17,-7,17,-21v0,-24,-19,-31,-45,-31v-27,0,-40,9,-42,35r-30,0v1,-44,32,-62,73,-62v40,0,75,13,75,52r0,109v-1,12,8,12,20,10r0,23v-23,8,-50,1,-50,-26xm141,-213r-24,0r-47,-51r39,0"},"\u00e2":{"d":"62,-76v-28,14,-14,57,19,55v42,-3,67,-26,59,-75v-19,12,-59,9,-78,20xm142,-25v-25,42,-128,43,-128,-24v0,-56,58,-61,110,-65v12,-2,17,-7,17,-21v0,-24,-19,-31,-45,-31v-27,0,-40,9,-42,35r-30,0v1,-44,32,-62,73,-62v40,0,75,13,75,52r0,109v-1,12,8,12,20,10r0,23v-23,8,-50,1,-50,-26xm134,-264r36,51r-29,0r-23,-34r-24,34r-29,0r36,-51r33,0"},"\u00e4":{"d":"62,-76v-28,14,-14,57,19,55v42,-3,67,-26,59,-75v-19,12,-59,9,-78,20xm142,-25v-25,42,-128,43,-128,-24v0,-56,58,-61,110,-65v12,-2,17,-7,17,-21v0,-24,-19,-31,-45,-31v-27,0,-40,9,-42,35r-30,0v1,-44,32,-62,73,-62v40,0,75,13,75,52r0,109v-1,12,8,12,20,10r0,23v-23,8,-50,1,-50,-26xm131,-254r33,0r0,37r-33,0r0,-37xm73,-254r33,0r0,37r-33,0r0,-37"},"\u00e3":{"d":"62,-76v-28,14,-14,57,19,55v42,-3,67,-26,59,-75v-19,12,-59,9,-78,20xm142,-25v-25,42,-128,43,-128,-24v0,-56,58,-61,110,-65v12,-2,17,-7,17,-21v0,-24,-19,-31,-45,-31v-27,0,-40,9,-42,35r-30,0v1,-44,32,-62,73,-62v40,0,75,13,75,52r0,109v-1,12,8,12,20,10r0,23v-23,8,-50,1,-50,-26xm93,-255v24,0,59,31,68,-3r18,0v-2,52,-56,37,-90,25v-9,0,-14,7,-16,16r-17,0v4,-21,15,-38,37,-38"},"\u00e5":{"d":"62,-76v-28,14,-14,57,19,55v42,-3,67,-26,59,-75v-19,12,-59,9,-78,20xm142,-25v-25,42,-128,43,-128,-24v0,-56,58,-61,110,-65v12,-2,17,-7,17,-21v0,-24,-19,-31,-45,-31v-27,0,-40,9,-42,35r-30,0v1,-44,32,-62,73,-62v40,0,75,13,75,52r0,109v-1,12,8,12,20,10r0,23v-23,8,-50,1,-50,-26xm96,-249v0,12,9,23,22,22v12,0,22,-10,22,-22v0,-12,-10,-22,-22,-22v-12,0,-22,9,-22,22xm81,-249v0,-20,17,-37,37,-37v20,0,36,17,36,37v0,20,-16,37,-36,37v-20,0,-37,-17,-37,-37"},"\u00e7":{"d":"10,-89v0,-83,75,-132,138,-89v14,9,21,28,24,53r-31,0v-4,-23,-16,-40,-45,-40v-36,0,-53,36,-52,76v0,36,14,68,50,67v28,0,42,-20,47,-45r31,0v-6,43,-32,71,-76,72r-12,17v21,-5,41,4,41,26v0,35,-49,39,-77,25r6,-14v14,8,44,10,44,-10v-1,-13,-19,-16,-32,-11v-13,-10,8,-22,13,-33v-45,-1,-69,-48,-69,-94","w":180},"\u00e9":{"d":"13,-91v0,-107,149,-141,169,-35v2,9,3,23,3,42r-138,0v2,36,14,63,52,63v27,0,47,-16,52,-38r31,0v-9,39,-37,66,-85,66v-50,-1,-84,-41,-84,-98xm152,-109v3,-52,-58,-73,-89,-40v-10,10,-15,24,-16,40r105,0xm165,-264r-47,51r-24,0r32,-51r39,0"},"\u00e8":{"d":"13,-91v0,-107,149,-141,169,-35v2,9,3,23,3,42r-138,0v2,36,14,63,52,63v27,0,47,-16,52,-38r31,0v-9,39,-37,66,-85,66v-50,-1,-84,-41,-84,-98xm152,-109v3,-52,-58,-73,-89,-40v-10,10,-15,24,-16,40r105,0xm142,-213r-24,0r-47,-51r39,0"},"\u00ea":{"d":"13,-91v0,-107,149,-141,169,-35v2,9,3,23,3,42r-138,0v2,36,14,63,52,63v27,0,47,-16,52,-38r31,0v-9,39,-37,66,-85,66v-50,-1,-84,-41,-84,-98xm152,-109v3,-52,-58,-73,-89,-40v-10,10,-15,24,-16,40r105,0xm135,-264r36,51r-29,0r-23,-34r-24,34r-29,0r36,-51r33,0"},"\u00eb":{"d":"13,-91v0,-107,149,-141,169,-35v2,9,3,23,3,42r-138,0v2,36,14,63,52,63v27,0,47,-16,52,-38r31,0v-9,39,-37,66,-85,66v-50,-1,-84,-41,-84,-98xm152,-109v3,-52,-58,-73,-89,-40v-10,10,-15,24,-16,40r105,0xm131,-254r33,0r0,37r-33,0r0,-37xm73,-254r33,0r0,37r-33,0r0,-37"},"\u00ed":{"d":"33,-187r32,0r0,187r-32,0r0,-187xm116,-264r-47,51r-24,0r32,-51r39,0","w":100},"\u00ec":{"d":"33,-187r32,0r0,187r-32,0r0,-187xm93,-213r-24,0r-47,-51r39,0","w":100},"\u00ee":{"d":"33,-187r32,0r0,187r-32,0r0,-187xm86,-264r36,51r-29,0r-23,-34r-24,34r-29,0r36,-51r33,0","w":100},"\u00ef":{"d":"33,-187r32,0r0,187r-32,0r0,-187xm82,-254r33,0r0,37r-33,0r0,-37xm24,-254r33,0r0,37r-33,0r0,-37","w":100},"\u00f1":{"d":"109,-164v-75,0,-50,95,-54,164r-32,0r0,-188r30,0r0,26v32,-47,124,-42,124,41r0,121r-33,0r0,-119v0,-27,-10,-45,-35,-45xm93,-255v24,0,59,31,68,-3r18,0v-2,52,-56,37,-90,25v-9,0,-14,7,-16,16r-17,0v4,-21,15,-38,37,-38"},"\u00f3":{"d":"98,-20v42,0,54,-39,55,-77v0,-41,-17,-69,-55,-69v-39,-1,-55,36,-55,75v0,39,16,71,55,71xm99,-194v51,1,87,38,87,96v0,60,-30,105,-91,105v-54,0,-85,-41,-85,-97v0,-60,32,-104,89,-104xm165,-264r-47,51r-24,0r32,-51r39,0"},"\u00f2":{"d":"98,-20v42,0,54,-39,55,-77v0,-41,-17,-69,-55,-69v-39,-1,-55,36,-55,75v0,39,16,71,55,71xm99,-194v51,1,87,38,87,96v0,60,-30,105,-91,105v-54,0,-85,-41,-85,-97v0,-60,32,-104,89,-104xm142,-213r-24,0r-47,-51r39,0"},"\u00f4":{"d":"98,-20v42,0,54,-39,55,-77v0,-41,-17,-69,-55,-69v-39,-1,-55,36,-55,75v0,39,16,71,55,71xm99,-194v51,1,87,38,87,96v0,60,-30,105,-91,105v-54,0,-85,-41,-85,-97v0,-60,32,-104,89,-104xm134,-264r36,51r-29,0r-23,-34r-24,34r-29,0r36,-51r33,0"},"\u00f6":{"d":"98,-20v42,0,54,-39,55,-77v0,-41,-17,-69,-55,-69v-39,-1,-55,36,-55,75v0,39,16,71,55,71xm99,-194v51,1,87,38,87,96v0,60,-30,105,-91,105v-54,0,-85,-41,-85,-97v0,-60,32,-104,89,-104xm131,-254r33,0r0,37r-33,0r0,-37xm73,-254r33,0r0,37r-33,0r0,-37"},"\u00f5":{"d":"98,-20v42,0,54,-39,55,-77v0,-41,-17,-69,-55,-69v-39,-1,-55,36,-55,75v0,39,16,71,55,71xm99,-194v51,1,87,38,87,96v0,60,-30,105,-91,105v-54,0,-85,-41,-85,-97v0,-60,32,-104,89,-104xm93,-255v24,0,59,31,68,-3r18,0v-2,52,-56,37,-90,25v-9,0,-14,7,-16,16r-17,0v4,-21,15,-38,37,-38"},"\u00fa":{"d":"85,5v-90,0,-57,-114,-63,-193r33,0r0,125v-1,27,13,39,36,40v69,2,48,-97,51,-165r32,0r0,188r-30,0r0,-28v-10,19,-32,33,-59,33xm165,-264r-47,51r-24,0r32,-51r39,0"},"\u00f9":{"d":"85,5v-90,0,-57,-114,-63,-193r33,0r0,125v-1,27,13,39,36,40v69,2,48,-97,51,-165r32,0r0,188r-30,0r0,-28v-10,19,-32,33,-59,33xm142,-213r-24,0r-47,-51r39,0"},"\u00fb":{"d":"85,5v-90,0,-57,-114,-63,-193r33,0r0,125v-1,27,13,39,36,40v69,2,48,-97,51,-165r32,0r0,188r-30,0r0,-28v-10,19,-32,33,-59,33xm134,-264r36,51r-29,0r-23,-34r-24,34r-29,0r36,-51r33,0"},"\u00fc":{"d":"85,5v-90,0,-57,-114,-63,-193r33,0r0,125v-1,27,13,39,36,40v69,2,48,-97,51,-165r32,0r0,188r-30,0r0,-28v-10,19,-32,33,-59,33xm131,-254r33,0r0,37r-33,0r0,-37xm73,-254r33,0r0,37r-33,0r0,-37"},"\u2020":{"d":"14,-155r0,-27r68,0r0,-76r34,0r0,76r68,0r0,27r-68,0r0,213r-34,0r0,-213r-68,0"},"\u00b0":{"d":"73,-252v29,0,52,24,53,53v1,29,-26,53,-53,54v-30,1,-53,-24,-53,-53v0,-30,24,-54,53,-54xm39,-198v0,17,17,33,34,33v18,0,34,-17,34,-34v0,-17,-17,-33,-34,-33v-17,0,-34,17,-34,34","w":143},"\u00a2":{"d":"115,-164v-68,-19,-86,101,-39,136xm18,-92v-1,-62,40,-111,104,-100r10,-32r14,0r-9,35v26,11,43,32,46,65r-29,0v-2,-16,-10,-31,-25,-36r-40,138v36,9,59,-11,65,-44r31,0v-8,48,-47,84,-103,71r-11,37r-15,0r12,-41v-33,-14,-49,-49,-50,-93"},"\u00a3":{"d":"192,-12v-40,46,-119,-24,-163,16r-17,-25v28,-18,56,-53,37,-93r-39,0r0,-18r27,0v-6,-14,-17,-33,-17,-55v0,-66,103,-94,145,-49v13,14,21,34,21,60r-33,0v0,-36,-15,-53,-50,-54v-30,-1,-50,18,-50,44v0,24,9,27,21,54r58,0r0,18r-50,0v10,44,-12,71,-40,91v37,-35,102,17,135,-12"},"\u00a7":{"d":"51,-161v-38,-32,-6,-97,47,-97v43,0,67,22,67,66r-31,0v7,-48,-68,-54,-69,-11v7,34,26,34,60,52v67,36,77,92,22,128v40,34,10,103,-49,99v-45,-3,-66,-23,-69,-68r31,0v1,27,11,40,36,40v36,0,47,-33,25,-52v-36,-32,-108,-45,-108,-103v0,-26,20,-42,38,-54xm69,-147v-29,9,-32,50,-6,67r66,42v22,-9,33,-42,14,-61v-16,-16,-52,-34,-74,-48"},"\u2022":{"d":"63,-168v22,0,39,17,39,39v0,22,-17,39,-39,39v-22,0,-39,-17,-39,-39v0,-22,17,-39,39,-39","w":126},"\u00b6":{"d":"-2,-175v0,-50,36,-83,88,-83r101,0r0,20r-22,0r0,302r-26,0r0,-302r-40,0r0,302r-26,0r0,-156v-47,1,-75,-40,-75,-83","w":193},"\u00df":{"d":"108,-234v-32,1,-41,17,-41,54r0,180r-32,0r0,-180v0,-54,22,-77,72,-82v73,-7,100,89,46,118v72,24,44,168,-47,149v-3,0,-6,-1,-10,-2r0,-27v39,5,66,-12,66,-53v0,-37,-26,-55,-65,-49r0,-29v32,7,54,-14,54,-39v0,-24,-16,-41,-43,-40","w":219},"\u00ae":{"d":"132,-241v-59,0,-110,51,-110,111v0,60,49,112,110,112v61,0,111,-51,111,-112v0,-60,-52,-111,-111,-111xm262,-130v0,70,-60,130,-130,130v-70,0,-128,-60,-128,-130v0,-70,58,-128,128,-128v70,0,130,58,130,128xm166,-158v0,-30,-31,-26,-61,-26r0,52v29,0,61,2,61,-26xm167,-59v3,-44,-12,-63,-62,-56r0,56r-25,0r0,-142v50,1,114,-9,111,41v0,22,-14,32,-35,35v32,2,32,37,35,66r-24,0","w":265},"\u00a9":{"d":"196,-104v-5,29,-29,49,-60,50v-39,0,-72,-33,-70,-76v-12,-79,119,-108,129,-23r-21,0v-3,-19,-16,-33,-39,-33v-28,0,-45,26,-44,55v0,30,16,57,46,56v22,0,32,-11,38,-29r21,0xm133,-241v-60,0,-111,51,-111,111v0,60,50,112,111,112v61,0,110,-52,110,-112v0,-60,-50,-111,-110,-111xm262,-130v0,70,-59,130,-129,130v-70,0,-130,-60,-130,-130v0,-70,60,-128,130,-128v70,0,129,59,129,128","w":265},"\u2122":{"d":"209,-258r32,91r33,-91r36,0r0,127r-23,0r0,-103r-35,103r-21,0r-35,-103r0,103r-24,0r0,-127r37,0xm42,-237r0,-21r109,0r0,21r-42,0r0,106r-25,0r0,-106r-42,0","w":360},"\u00b4":{"d":"105,-264r-47,51r-24,0r32,-51r39,0","w":119},"\u00a8":{"d":"71,-254r33,0r0,37r-33,0r0,-37xm13,-254r33,0r0,37r-33,0r0,-37","w":119},"\u00c6":{"d":"130,-228r-48,122r83,0r0,-122r-35,0xm108,-258r231,0r0,31r-140,0r0,79r128,0r0,29r-128,0r0,88r143,0r0,31r-177,0r0,-77r-96,0r-28,77r-38,0","w":360},"\u00d8":{"d":"77,-49v16,17,32,25,66,25v80,0,109,-110,69,-174xm140,8v-39,0,-65,-12,-87,-32r-30,30r-11,-11r30,-31v-61,-79,-19,-229,95,-229v42,0,68,10,89,29r27,-29r12,10r-28,31v16,20,29,53,29,90v0,80,-50,142,-126,142xm203,-210v-59,-54,-163,-10,-153,84v3,25,5,49,17,65","w":280},"\u221e":{"d":"221,-130v0,-21,-13,-40,-35,-39v-16,-4,-41,29,-42,39v1,9,27,47,43,43v23,0,34,-20,34,-43xm68,-170v-43,1,-40,85,2,83v17,5,43,-35,44,-44v-1,-7,-31,-45,-46,-39xm189,-60v-30,-1,-48,-22,-59,-45v-12,24,-29,45,-60,45v-37,1,-61,-31,-61,-69v0,-37,24,-71,60,-69v31,1,44,19,58,45v15,-27,29,-43,61,-45v37,-1,59,33,60,68v0,35,-22,71,-59,70","w":256},"\u00b1":{"d":"190,-28r0,28r-183,0r0,-28r183,0xm7,-98r0,-28r77,0r0,-58r30,0r0,58r76,0r0,28r-76,0r0,56r-30,0r0,-56r-77,0","w":197},"\u2264":{"d":"190,0r-183,0r0,-28r183,0r0,28xm190,-187r0,32r-146,45r146,45r0,32r-183,-62r0,-30","w":197},"\u2265":{"d":"7,-187r183,62r0,30r-183,62r0,-32r146,-45r-146,-45r0,-32xm190,-28r0,28r-183,0r0,-28r183,0","w":197},"\u00a5":{"d":"34,-247r64,119r64,-119r40,0r-47,78r31,0r0,24r-45,0r-22,38r61,0r0,24r-66,0r0,83r-33,0r0,-83r-64,0r0,-24r60,0r-23,-38r-45,0r0,-24r32,0r-46,-78r39,0"},"\u00b5":{"d":"134,-32v-13,25,-63,53,-94,27r-17,79r-33,0r57,-262r33,0r-30,143v1,38,54,22,70,4v31,-35,30,-97,45,-147r32,0r-40,188r-30,0","w":207},"\u220f":{"d":"273,-258r0,30r-31,0r0,281r-35,0r0,-281r-118,0r0,281r-35,0r0,-281r-31,0r0,-30r250,0","w":296},"\u03c0":{"d":"202,2v-34,8,-61,-4,-61,-44r0,-117r-87,0r0,159r-32,0r0,-159r-26,0r0,-28r204,0r0,28r-26,0r0,115v-2,21,14,22,28,18r0,28","w":197},"\uf006":{"d":"202,2v-34,8,-61,-4,-61,-44r0,-117r-87,0r0,159r-32,0r0,-159r-26,0r0,-28r204,0r0,28r-26,0r0,115v-2,21,14,22,28,18r0,28","w":197},"\u00aa":{"d":"55,-164v24,0,35,-14,32,-41v-11,5,-55,6,-50,25v0,11,6,17,18,16xm92,-163v-19,27,-82,24,-82,-16v0,-32,36,-36,67,-39v6,-1,10,-3,10,-11v0,-14,-8,-18,-23,-18v-15,0,-24,5,-25,19r-22,0v3,-28,17,-37,51,-37v53,0,44,45,44,91v0,7,6,9,14,8v1,13,2,22,-15,21v-12,-1,-17,-8,-19,-18","w":133},"\u00ba":{"d":"67,-265v35,1,56,21,56,59v0,36,-22,61,-58,61v-35,0,-56,-24,-56,-59v-1,-35,23,-62,58,-61xm67,-245v-21,1,-33,17,-33,41v0,21,9,38,31,38v21,0,31,-18,32,-40v1,-23,-11,-39,-30,-39","w":131},"\u03a9":{"d":"18,-140v0,-72,47,-125,119,-125v78,0,125,47,125,124v0,54,-27,92,-60,110r62,0r0,31r-102,0r0,-31v40,-23,63,-53,64,-110v0,-57,-34,-92,-88,-93v-52,-1,-84,42,-84,90v0,51,32,99,64,113r0,31r-103,0r0,-31r62,0v-35,-24,-59,-57,-59,-109","w":276},"\u2126":{"d":"18,-140v0,-72,47,-125,119,-125v78,0,125,47,125,124v0,54,-27,92,-60,110r62,0r0,31r-102,0r0,-31v40,-23,63,-53,64,-110v0,-57,-34,-92,-88,-93v-52,-1,-84,42,-84,90v0,51,32,99,64,113r0,31r-103,0r0,-31r62,0v-35,-24,-59,-57,-59,-109","w":276},"\u00e6":{"d":"271,-109v5,-50,-54,-72,-87,-42v-10,9,-16,24,-17,42r104,0xm83,-20v38,0,60,-27,54,-76v-25,19,-93,1,-92,46v0,20,18,30,38,30xm76,6v-61,6,-82,-70,-42,-101v23,-18,74,-10,100,-25v13,-25,-6,-46,-37,-46v-27,0,-46,14,-46,36r-30,0v-8,-71,109,-81,139,-35v24,-37,105,-36,128,4v12,21,17,42,17,77r-138,0v1,36,17,63,52,63v30,1,45,-14,51,-38r32,0v-7,39,-38,65,-84,65v-30,0,-62,-20,-69,-40v-17,25,-38,37,-73,40","w":320},"\u00f8":{"d":"149,-148v-6,-11,-23,-18,-40,-18v-51,-1,-69,70,-49,117xm68,-37v10,12,22,15,39,17v50,3,68,-71,48,-117xm107,7v-25,-2,-47,-8,-59,-21r-21,22r-11,-9r23,-23v-41,-58,-13,-174,68,-170v29,2,45,9,62,24r22,-25r9,8r-23,26v42,59,11,173,-70,168","w":219},"\u00bf":{"d":"96,-189r35,0r0,37r-35,0r0,-37xm111,73v-53,2,-97,-50,-70,-100v15,-30,63,-45,58,-96r31,0v8,67,-57,68,-64,125v-3,27,18,44,47,43v33,-1,44,-20,46,-57r30,0v2,54,-30,83,-78,85","w":219},"\u00a1":{"d":"41,-188r36,0r0,36r-36,0r0,-36xm41,70v-2,-70,3,-134,9,-197r18,0r9,112r0,85r-36,0","w":119},"\u00ac":{"d":"197,-144r0,105r-30,0r0,-76r-154,0r0,-29r184,0","w":210},"\u0192":{"d":"186,-232v-45,-16,-49,18,-57,66r41,0r0,25r-46,0v-23,86,-9,235,-117,211r5,-30v37,17,48,-15,56,-57r23,-124r-39,0r0,-25r44,0v9,-69,29,-108,95,-94"},"\u0394":{"d":"220,0r-220,0r90,-258r38,0xm176,-29r-67,-195r-65,195r132,0","w":220},"\u2206":{"d":"220,0r-220,0r90,-258r38,0xm176,-29r-67,-195r-65,195r132,0","w":220},"\u00ab":{"d":"108,-115r57,-44r0,32r-38,29r38,29r0,32r-57,-45r0,-33xm34,-115r57,-44r0,32r-38,29r38,29r0,32r-57,-45r0,-33"},"\u00bb":{"d":"108,-69r37,-29r-37,-29r0,-32r57,44r0,33r-57,45r0,-32xm34,-69r37,-29r-37,-29r0,-32r57,44r0,33r-57,45r0,-32"},"\u2026":{"d":"162,0r0,-39r36,0r0,39r-36,0xm42,-39r36,0r0,39r-36,0r0,-39xm282,0r0,-39r36,0r0,39r-36,0","w":360},"\u00a0":{"w":100},"\u00c0":{"d":"160,-106r-39,-114r-42,114r81,0xm102,-258r40,0r94,258r-39,0r-26,-77r-102,0r-28,77r-36,0xm164,-278r-24,0r-47,-51r39,0","w":240},"\u00c3":{"d":"160,-106r-39,-114r-42,114r81,0xm102,-258r40,0r94,258r-39,0r-26,-77r-102,0r-28,77r-36,0xm116,-320v24,0,59,31,68,-3r18,0v-2,52,-56,37,-90,25v-9,0,-14,7,-16,16r-17,0v4,-21,15,-38,37,-38","w":240},"\u00d5":{"d":"139,-265v81,0,126,50,127,131v0,81,-48,142,-128,142v-77,0,-125,-57,-124,-136v1,-78,47,-137,125,-137xm142,-24v61,0,87,-52,88,-109v0,-57,-33,-102,-89,-101v-59,1,-92,43,-91,108v1,58,29,102,92,102xm135,-327v24,0,59,31,68,-3r18,0v-2,52,-56,37,-90,25v-9,0,-14,7,-16,16r-17,0v4,-21,15,-38,37,-38","w":280},"\u0152":{"d":"126,-22v33,0,60,-23,60,-64r0,-91v1,-36,-28,-58,-62,-58v-53,-1,-77,50,-76,110v1,57,22,103,78,103xm123,-264v30,0,53,13,65,32r0,-26r159,0r0,31r-125,0r0,79r119,0r0,30r-119,0r0,87r125,0r0,31r-159,0r0,-27v-12,20,-39,33,-73,33v-62,-1,-102,-61,-102,-133v0,-75,38,-138,110,-137","w":360},"\u0153":{"d":"12,-92v0,-56,34,-102,90,-101v34,1,55,13,69,37v23,-45,110,-48,137,-3v13,22,16,37,16,75r-139,0v-9,72,92,85,106,25r31,0v-7,72,-122,90,-154,28v-39,72,-156,34,-156,-61xm292,-108v1,-47,-44,-72,-82,-48v-14,9,-23,26,-25,48r107,0xm101,-20v35,0,54,-29,54,-77v0,-41,-19,-69,-54,-69v-37,0,-57,31,-56,76v1,39,20,70,56,70","w":339},"\u2013":{"d":"-1,-112r202,0r0,25r-202,0r0,-25"},"\u2014":{"d":"42,-112r275,0r0,25r-275,0r0,-25","w":360},"\u201c":{"d":"51,-244v-13,2,-21,19,-19,37r19,0r0,38r-37,0v-2,-43,-1,-88,37,-92r0,17xm110,-244v-14,3,-20,19,-19,37r19,0r0,38r-37,0v-1,-42,-1,-87,37,-92r0,17","w":119},"\u201d":{"d":"73,-183v14,-1,20,-21,19,-37r-19,0r0,-38r37,0v1,42,3,86,-37,91r0,-16xm14,-183v14,-1,20,-22,19,-37r-19,0r0,-38r37,0v1,42,2,86,-37,91r0,-16","w":119},"\u00f7":{"d":"80,-4r0,-38r37,0r0,38r-37,0xm190,-107r0,30r-183,0r0,-30r183,0xm117,-180r0,39r-37,0r0,-39r37,0","w":197},"\u25ca":{"d":"88,-265r79,134r-79,139r-77,-139xm88,-219r-51,88r51,92r52,-92","w":177},"\u00ff":{"d":"141,-188r35,0r-59,161v-18,48,-30,77,-38,88v-10,15,-35,20,-58,14r0,-29v35,16,44,-19,52,-41r-69,-193r36,0r50,153xm123,-254r33,0r0,37r-33,0r0,-37xm65,-254r33,0r0,37r-33,0r0,-37","w":180},"\u0178":{"d":"7,-258r41,0r74,124r75,-124r40,0r-97,154r0,104r-35,0r0,-104xm156,-319r33,0r0,37r-33,0r0,-37xm98,-319r33,0r0,37r-33,0r0,-37","w":240},"\u2044":{"d":"95,-252r24,0r-155,259r-24,0","w":60},"\u2215":{"d":"95,-252r24,0r-155,259r-24,0","w":60},"\u00a4":{"d":"218,-126r-200,0r8,-19r200,0xm202,-87r-184,0r8,-19r184,0xm68,-116v0,88,118,133,172,61r0,29v-71,61,-191,7,-191,-90v0,-102,132,-155,200,-82r-9,20v-54,-70,-172,-26,-172,62","w":267},"\u2039":{"d":"32,-115r56,-44r0,32r-38,29r38,29r0,32r-56,-45r0,-33","w":119},"\u203a":{"d":"30,-69r38,-29r-38,-29r0,-32r57,44r0,33r-57,45r0,-32","w":119},"\u2021":{"d":"14,-15r0,-28r68,0r0,-115r-68,0r0,-27r68,0r0,-73r34,0r0,73r68,0r0,27r-68,0r0,115r68,0r0,28r-68,0r0,73r-34,0r0,-73r-68,0"},"\u00b7":{"d":"49,-146v12,0,23,11,23,23v0,12,-10,22,-23,22v-12,0,-23,-9,-22,-22v0,-13,10,-23,22,-23","w":100},"\u2219":{"d":"49,-146v12,0,23,11,23,23v0,12,-10,22,-23,22v-12,0,-23,-9,-22,-22v0,-13,10,-23,22,-23","w":100},"\u201a":{"d":"30,37v13,-1,22,-21,19,-37r-19,0r0,-38r38,0v1,43,1,86,-38,91r0,-16","w":79},"\u201e":{"d":"73,37v13,-1,21,-19,19,-37r-19,0r0,-38r37,0v1,43,3,86,-37,91r0,-16xm14,37v14,-2,20,-20,19,-37r-19,0r0,-38r37,0v0,43,3,85,-37,91r0,-16","w":119},"\u2030":{"d":"268,-54v0,17,17,34,34,34v17,0,35,-16,33,-34v2,-18,-15,-35,-33,-33v-18,-2,-34,16,-34,33xm245,-54v0,-30,27,-56,57,-56v29,0,56,26,56,56v0,29,-27,57,-56,57v-31,0,-57,-27,-57,-57xm135,-54v0,17,17,34,34,34v17,0,33,-16,33,-34v0,-18,-16,-33,-33,-33v-18,0,-34,16,-34,33xm169,-110v29,0,56,26,56,56v0,29,-27,57,-56,57v-31,0,-57,-27,-57,-57v0,-30,27,-56,57,-56xm178,-261r20,0r-148,270r-20,0xm25,-202v0,17,17,34,34,34v17,0,35,-16,33,-34v2,-18,-15,-35,-33,-33v-18,-2,-34,16,-34,33xm2,-202v0,-29,27,-56,57,-56v29,0,56,27,56,56v0,30,-27,57,-56,57v-31,0,-57,-26,-57,-57","w":360},"\u00c2":{"d":"160,-106r-39,-114r-42,114r81,0xm102,-258r40,0r94,258r-39,0r-26,-77r-102,0r-28,77r-36,0xm157,-329r36,51r-29,0r-23,-34r-24,34r-29,0r36,-51r33,0","w":240},"\u00ca":{"d":"31,-258r188,0r0,31r-154,0r0,79r142,0r0,30r-142,0r0,87r157,0r0,31r-191,0r0,-258xm162,-329r36,51r-29,0r-23,-34r-24,34r-29,0r36,-51r33,0","w":240},"\u00c1":{"d":"160,-106r-39,-114r-42,114r81,0xm102,-258r40,0r94,258r-39,0r-26,-77r-102,0r-28,77r-36,0xm187,-329r-47,51r-24,0r32,-51r39,0","w":240},"\u00cb":{"d":"31,-258r188,0r0,31r-154,0r0,79r142,0r0,30r-142,0r0,87r157,0r0,31r-191,0r0,-258xm159,-319r33,0r0,37r-33,0r0,-37xm101,-319r33,0r0,37r-33,0r0,-37","w":240},"\u00c8":{"d":"31,-258r188,0r0,31r-154,0r0,79r142,0r0,30r-142,0r0,87r157,0r0,31r-191,0r0,-258xm170,-278r-24,0r-47,-51r39,0","w":240},"\u00cd":{"d":"41,-258r35,0r0,258r-35,0r0,-258xm95,-329r-47,51r-24,0r32,-51r39,0","w":100},"\u00ce":{"d":"32,-258r35,0r0,258r-35,0r0,-258xm65,-330r35,51r-28,0r-24,-34r-24,34r-29,0r36,-51r34,0","w":100},"\u00cf":{"d":"33,-258r35,0r0,258r-35,0r0,-258xm61,-319r33,0r0,37r-33,0r0,-37xm3,-319r33,0r0,37r-33,0r0,-37","w":100},"\u00cc":{"d":"22,-258r35,0r0,258r-35,0r0,-258xm72,-278r-25,0r-47,-51r40,0","w":100},"\u00d3":{"d":"139,-265v81,0,126,50,127,131v0,81,-48,142,-128,142v-77,0,-125,-57,-124,-136v1,-78,47,-137,125,-137xm142,-24v61,0,87,-52,88,-109v0,-57,-33,-102,-89,-101v-59,1,-92,43,-91,108v1,58,29,102,92,102xm207,-336r-47,51r-24,0r32,-51r39,0","w":280},"\u00d4":{"d":"139,-265v81,0,126,50,127,131v0,81,-48,142,-128,142v-77,0,-125,-57,-124,-136v1,-78,47,-137,125,-137xm142,-24v61,0,87,-52,88,-109v0,-57,-33,-102,-89,-101v-59,1,-92,43,-91,108v1,58,29,102,92,102xm176,-336r36,51r-29,0r-23,-34r-24,34r-29,0r36,-51r33,0","w":280},"\u00d2":{"d":"139,-265v81,0,126,50,127,131v0,81,-48,142,-128,142v-77,0,-125,-57,-124,-136v1,-78,47,-137,125,-137xm142,-24v61,0,87,-52,88,-109v0,-57,-33,-102,-89,-101v-59,1,-92,43,-91,108v1,58,29,102,92,102xm183,-285r-24,0r-47,-51r39,0","w":280},"\u00da":{"d":"131,7v-72,0,-101,-41,-101,-120r0,-145r35,0v8,91,-32,232,64,234v104,2,60,-142,69,-234r35,0r0,145v1,79,-30,120,-102,120xm198,-329r-47,51r-24,0r32,-51r39,0","w":259},"\u00db":{"d":"131,7v-72,0,-101,-41,-101,-120r0,-145r35,0v8,91,-32,232,64,234v104,2,60,-142,69,-234r35,0r0,145v1,79,-30,120,-102,120xm168,-329r36,51r-29,0r-23,-34r-24,34r-29,0r36,-51r33,0","w":259},"\u00d9":{"d":"131,7v-72,0,-101,-41,-101,-120r0,-145r35,0v8,91,-32,232,64,234v104,2,60,-142,69,-234r35,0r0,145v1,79,-30,120,-102,120xm175,-278r-24,0r-47,-51r39,0","w":259},"\u0131":{"d":"33,-187r32,0r0,187r-32,0r0,-187","w":100},"\u02c6":{"d":"74,-264r36,51r-29,0r-23,-34r-24,34r-29,0r36,-51r33,0","w":119},"\u02dc":{"d":"33,-255v24,0,59,31,68,-3r18,0v-2,52,-56,37,-90,25v-9,0,-14,7,-16,16r-17,0v4,-21,15,-38,37,-38","w":119},"\u02c9":{"d":"1,-246r113,0r0,21r-113,0r0,-21","w":119},"\u02d8":{"d":"113,-264v3,52,-78,65,-102,28v-5,-7,-8,-17,-9,-28r18,0v4,20,16,28,39,28v22,0,32,-9,37,-28r17,0","w":119},"\u02d9":{"d":"41,-254r33,0r0,37r-33,0r0,-37","w":119},"\u02da":{"d":"36,-249v0,12,9,23,22,22v12,0,22,-10,22,-22v0,-12,-10,-22,-22,-22v-12,0,-22,9,-22,22xm21,-249v0,-20,17,-37,37,-37v20,0,36,17,36,37v0,20,-16,37,-36,37v-20,0,-37,-17,-37,-37","w":119},"\u00b8":{"d":"68,49v-1,-13,-19,-16,-32,-11r-6,-7r23,-31r17,0r-16,22v21,-5,41,4,41,26v0,35,-49,39,-77,25r6,-14v14,8,44,10,44,-10","w":119},"\u02dd":{"d":"92,-264r37,0r-39,51r-22,0xm33,-264r38,0r-40,51r-22,0","w":119},"\u02db":{"d":"28,46v1,-23,17,-32,35,-46r26,0v-12,11,-30,19,-30,37v-1,14,20,21,32,12r0,23v-25,14,-65,3,-63,-26","w":119},"\u02c7":{"d":"74,-213r-33,0r-36,-51r29,0r24,34r23,-34r29,0","w":119},"\u2260":{"d":"190,-144r0,29r-66,0r-20,46r86,0r0,30r-99,0r-19,42r-31,0r19,-42r-53,0r0,-30r66,0r21,-46r-87,0r0,-29r100,0r19,-43r31,0r-19,43r52,0","w":197},"\u2202":{"d":"88,-127v-52,-1,-65,104,-8,106v49,1,67,-104,8,-106xm84,-157v29,1,41,15,52,35v6,-52,-10,-142,-57,-105r-23,-28v71,-39,113,37,113,118v0,68,-33,144,-95,144v-40,0,-66,-36,-66,-77v0,-40,32,-89,76,-87","w":177},"\u2211":{"d":"30,23r112,-128r-108,-123r0,-30r192,0r0,30r-150,0r109,123r-112,127r158,0r0,31r-201,0r0,-30","w":256},"\u222b":{"d":"-26,40v36,18,50,-15,50,-57v0,-70,3,-166,20,-221v10,-31,41,-41,74,-29r-3,29v-15,-9,-37,-9,-42,10v-17,71,-5,210,-30,271v-11,27,-42,37,-72,27","w":98},"\u221a":{"d":"95,7r-55,-160r-33,20r-10,-18r62,-35r48,146r101,-295r26,0r-117,342r-22,0","w":197},"\u2248":{"d":"54,-128v-23,0,-33,10,-47,26r0,-33v16,-13,23,-19,47,-21v18,-2,72,26,88,26v18,0,39,-13,48,-25r0,33v-10,10,-31,20,-48,20v-31,0,-55,-26,-88,-26xm54,-54v-22,0,-33,11,-47,26r0,-33v16,-13,23,-19,47,-21v18,-2,72,26,88,26v22,0,38,-14,48,-25r0,34v-14,11,-27,20,-48,20v-31,0,-55,-27,-88,-27","w":197},"\u2018":{"d":"61,-244v-14,2,-23,21,-19,37r19,0r0,38r-38,0v-2,-43,-1,-87,38,-92r0,17","w":79},"\u2019":{"d":"30,-183v14,-2,22,-21,19,-37r-19,0r0,-38r38,0v2,44,0,86,-38,91r0,-16","w":79}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1990-99 Apple Computer Inc. © 1981 Linotype AG © 1990-91 Type Solutions Inc.
 * 
 * Trademark:
 * Helvetica is a registered trademark of Linotype AG
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Helvetica","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"277","descent":"-83","x-height":"7","bbox":"-61 -346 360 83.4439","underline-thickness":"17.7539","underline-position":"-18.457","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":100,"k":{"Y":6,"A":13}},"\uf001":{"d":"145,-261r49,0r0,46r-49,0r0,-46xm145,-191r50,0r0,191r-50,0r0,-191xm32,-190v-5,-58,24,-78,82,-71r0,41v-25,-2,-35,4,-31,30r33,0r0,35r-33,0r0,155r-50,0r0,-155r-28,0r0,-35r27,0","w":219},"\uf002":{"d":"145,-259r50,0r0,259r-50,0r0,-259xm32,-190v-5,-58,24,-78,82,-71r0,41v-25,-2,-35,4,-31,30r33,0r0,35r-33,0r0,155r-50,0r0,-155r-28,0r0,-35r27,0","w":219},"!":{"d":"40,-258r55,0v3,70,-8,126,-15,186r-26,0v-7,-60,-17,-117,-14,-186xm41,-51r52,0r0,51r-52,0r0,-51","w":119},"\"":{"d":"144,-259r-8,107r-32,0r-8,-107r48,0xm77,-259r-8,107r-32,0r-8,-107r48,0","w":170},"#":{"d":"107,-100r15,-51r-30,0r-13,51r28,0xm8,-100r36,0r13,-51r-35,0r8,-30r35,0r20,-71r35,0r-20,71r30,0r18,-71r35,0r-18,71r35,0r-8,30r-35,0r-15,51r36,0r-8,30r-36,0r-18,70r-35,0r18,-70r-28,0r-19,70r-35,0r19,-70r-36,0"},"$":{"d":"108,-33v32,2,41,-40,21,-58v-4,-3,-11,-7,-21,-11r0,69xm92,-217v-30,-3,-40,37,-19,53v4,3,10,6,19,9r0,-62xm188,-72v3,49,-33,75,-79,78r0,36r-17,0r0,-35v-56,-5,-81,-28,-82,-84r48,0v4,31,9,39,34,45r0,-75v-41,-12,-76,-27,-76,-74v0,-47,28,-72,76,-75r0,-23r16,0r0,24v47,4,74,29,76,75r-46,0v-1,-24,-8,-34,-30,-37r0,67v50,19,77,26,80,78"},"%":{"d":"74,-160v16,0,28,-13,28,-28v0,-15,-12,-28,-28,-28v-16,0,-28,12,-28,28v0,16,12,28,28,28xm139,-188v0,35,-30,65,-65,65v-35,0,-66,-30,-66,-65v0,-35,31,-66,66,-66v34,0,65,31,65,66xm272,-60v0,-16,-11,-28,-27,-28v-16,0,-28,12,-28,28v0,16,13,28,28,28v15,0,27,-13,27,-28xm310,-60v0,35,-30,65,-65,65v-35,0,-66,-30,-66,-65v0,-35,31,-66,66,-66v35,0,65,31,65,66xm217,-255r26,0r-142,262r-27,0","w":320},"&":{"d":"174,-22v-42,51,-157,28,-154,-46v2,-43,24,-58,55,-77v-13,-13,-23,-30,-24,-53v-1,-38,30,-60,68,-60v35,0,65,24,64,58v-1,35,-18,48,-43,63r37,45v8,-11,13,-24,13,-42r45,0v-2,31,-12,56,-30,77r47,57r-60,0xm118,-221v-30,5,-22,37,-2,54v24,-9,36,-50,2,-54xm69,-70v-2,39,60,43,79,16r-48,-59v-20,14,-30,19,-31,43","w":259},"'":{"d":"68,-259r-9,107r-30,0r-9,-107r48,0","w":85},"(":{"d":"73,73v-53,-68,-83,-173,-38,-270v12,-27,24,-46,40,-66r29,0v-66,89,-59,250,-1,336r-30,0","w":119},")":{"d":"42,-263v56,69,84,175,37,272v-14,30,-23,43,-38,64r-37,0v63,-89,60,-250,1,-336r37,0","w":119},"*":{"d":"17,-230r36,12r0,-43r31,0r0,43r36,-12r9,26r-38,12r25,34r-23,16r-24,-33r-25,33r-23,-16r25,-34r-38,-12","w":140},"+":{"d":"10,-72r0,-46r72,0r0,-72r46,0r0,72r72,0r0,46r-72,0r0,72r-46,0r0,-72r-72,0","w":210},",":{"d":"21,42v20,-5,29,-18,30,-42r-30,0r0,-52r54,0v5,56,-4,108,-54,113r0,-19","w":100},"-":{"d":"8,-124r101,0r0,47r-101,0r0,-47","w":119},"\u00ad":{"d":"8,-124r101,0r0,47r-101,0r0,-47","w":119},".":{"d":"22,-52r54,0r0,52r-54,0r0,-52","w":100},"\/":{"d":"81,-267r41,0r-100,267r-42,0","w":100},"0":{"d":"62,-125v0,46,0,87,37,91v37,-4,36,-45,36,-91v0,-49,2,-86,-36,-90v-38,4,-37,42,-37,90xm99,-257v71,0,88,56,88,132v0,76,-17,131,-88,131v-71,0,-88,-56,-88,-131v0,-76,17,-132,88,-132"},"1":{"d":"25,-210v45,0,64,-9,70,-45r41,0r0,255r-51,0r0,-176r-60,0r0,-34","k":{"1":20}},"2":{"d":"97,-256v73,-4,112,76,71,132v-19,27,-75,51,-93,80r111,0r0,44r-175,0v-6,-71,72,-107,107,-140v25,-23,20,-74,-19,-74v-28,1,-36,18,-36,49r-49,0v2,-57,28,-88,83,-91"},"3":{"d":"147,-135v72,29,36,141,-50,141v-57,0,-85,-29,-88,-84r50,0v0,27,13,44,38,44v21,-1,38,-16,37,-40v-1,-30,-21,-38,-57,-38r0,-36v33,0,49,-5,50,-34v1,-20,-12,-33,-32,-33v-24,-1,-35,17,-34,41r-47,0v2,-51,28,-82,83,-82v45,0,80,27,81,69v1,24,-15,45,-31,52"},"4":{"d":"188,-55r-29,0r0,55r-49,0r0,-55r-101,0r0,-44r94,-154r56,0r0,159r29,0r0,39xm110,-94r0,-110r-63,110r63,0"},"5":{"d":"186,-84v-3,50,-35,93,-91,91v-48,-1,-83,-29,-86,-75r50,0v4,20,13,34,36,34v25,1,39,-21,39,-46v0,-44,-53,-63,-72,-29r-45,-2r18,-141r141,0r0,43r-104,0r-10,56v52,-36,128,2,124,69"},"6":{"d":"62,-81v0,25,15,47,39,47v23,-1,36,-21,36,-45v0,-27,-14,-45,-38,-46v-25,0,-37,18,-37,44xm11,-115v1,-80,18,-139,91,-142v46,-2,76,26,80,66r-50,0v-4,-33,-55,-33,-64,2v-3,10,-7,25,-8,45v42,-47,133,-9,127,61v-4,50,-32,90,-87,90v-61,0,-90,-55,-89,-122"},"7":{"d":"45,0v-2,-66,54,-171,91,-207r-127,0r1,-45r180,0r0,40v-44,46,-88,126,-93,212r-52,0"},"8":{"d":"62,-74v0,25,14,40,36,40v22,0,37,-16,37,-40v0,-25,-14,-40,-37,-40v-23,0,-36,15,-36,40xm96,7v-87,0,-117,-113,-48,-143v-58,-33,-24,-130,50,-120v72,-10,109,86,51,119v24,11,38,35,38,66v0,46,-40,78,-91,78xm66,-184v0,18,13,32,32,32v19,0,32,-13,32,-32v0,-20,-13,-32,-32,-32v-19,0,-32,13,-32,32"},"9":{"d":"11,-165v0,-53,34,-93,85,-92v66,1,92,52,92,128v0,76,-28,137,-94,136v-40,-1,-76,-25,-78,-66r50,0v4,34,57,32,65,-2v3,-10,5,-25,6,-44v-40,48,-126,9,-126,-60xm99,-124v24,0,37,-18,37,-44v1,-27,-13,-47,-38,-47v-25,0,-36,18,-36,45v0,28,10,46,37,46"},":":{"d":"41,-184r53,0r0,52r-53,0r0,-52xm41,-52r53,0r0,52r-53,0r0,-52","w":119},";":{"d":"41,-184r53,0r0,52r-53,0r0,-52xm41,42v20,-6,29,-16,30,-42r-30,0r0,-52r54,0v5,56,-4,108,-54,113r0,-19","w":119},"\u037e":{"d":"41,-184r53,0r0,52r-53,0r0,-52xm41,42v20,-6,29,-16,30,-42r-30,0r0,-52r54,0v5,56,-4,108,-54,113r0,-19","w":119},"<":{"d":"1,-118r207,-79r0,50r-148,52r148,52r0,49r-207,-79r0,-45","w":210},"=":{"d":"200,-159r0,46r-190,0r0,-46r190,0xm200,-77r0,46r-190,0r0,-46r190,0","w":210},">":{"d":"208,-73r-207,79r0,-49r148,-52r-148,-52r0,-50r207,80r0,44","w":210},"?":{"d":"86,-51r52,0r0,51r-52,0r0,-51xm22,-177v1,-53,33,-80,86,-85v83,-8,126,94,55,138v-17,10,-30,20,-29,49r-47,0v-3,-55,28,-58,52,-87v18,-21,4,-57,-29,-57v-25,0,-37,21,-38,42r-50,0","w":219},"@":{"d":"166,-86v29,0,68,-90,22,-96v-24,-3,-45,42,-44,67v0,16,7,28,22,29xm155,-60v-30,-1,-50,-24,-50,-58v0,-39,33,-88,75,-88v21,0,35,12,39,29r6,-23r34,0r-28,98v1,8,6,15,15,15v25,0,45,-37,45,-72v0,-53,-44,-83,-100,-83v-71,0,-128,48,-128,116v0,107,149,138,220,74r13,20v-30,22,-66,38,-114,39v-84,2,-146,-55,-147,-134v-1,-79,70,-140,153,-140v71,0,131,42,131,110v0,48,-36,96,-80,97v-20,1,-38,-15,-33,-34v-9,19,-27,34,-51,34","w":351},"A":{"d":"98,-98r66,0r-32,-102xm102,-259r61,0r92,259r-59,0r-17,-53r-95,0r-18,53r-57,0","w":259,"k":{"y":13,"w":6,"v":13,"Y":33,"W":20,"V":27,"T":27," ":13}},"B":{"d":"182,-186v0,-42,-62,-24,-102,-28r0,57v40,-4,101,14,102,-29xm187,-82v0,-45,-64,-29,-107,-32r0,69v46,-2,107,12,107,-37xm28,-259v86,4,208,-23,206,67v-1,28,-11,43,-32,53v24,10,41,28,40,61v-2,52,-39,78,-96,78r-118,0r0,-259","w":259},"C":{"d":"16,-127v0,-79,42,-135,117,-137v63,-2,108,36,114,91r-55,0v-7,-30,-24,-45,-57,-45v-45,0,-63,41,-63,91v-1,51,19,87,63,87v33,0,51,-18,57,-48r54,0v-9,53,-48,95,-110,95v-77,0,-120,-54,-120,-134","w":259},"D":{"d":"192,-132v-1,-50,-10,-82,-62,-82r-50,0r0,169r50,0v42,1,63,-41,62,-87xm139,-259v75,0,106,51,108,123v1,75,-37,136,-108,136r-112,0r0,-259r112,0","w":259},"E":{"d":"219,-213r-137,0r0,55r126,0r0,45r-126,0r0,66r143,0r0,47r-196,0r0,-259r190,0r0,46","w":240},"F":{"d":"27,-259r184,0r0,46r-130,0r0,59r114,0r0,45r-114,0r0,109r-54,0r0,-259","w":219,"k":{"A":20,".":40,",":40}},"G":{"d":"15,-127v0,-80,49,-139,126,-139v62,0,108,36,114,88r-53,0v-6,-27,-28,-43,-60,-43v-48,0,-72,39,-72,95v0,98,123,118,138,30r-60,0r0,-43r108,0r0,139r-36,0r-6,-32v-21,25,-39,38,-80,39v-72,0,-119,-58,-119,-134","w":280},"H":{"d":"27,0r0,-259r54,0r0,99r101,0r0,-99r54,0r0,259r-54,0r0,-116r-101,0r0,116r-54,0","w":259},"I":{"d":"77,0r-54,0r0,-259r54,0r0,259","w":100},"J":{"d":"93,6v-70,0,-84,-39,-85,-104r51,0v1,35,0,60,32,60v24,0,28,-13,29,-40r0,-181r54,0r0,180v1,57,-26,85,-81,85"},"K":{"d":"28,-259r54,0r0,107r100,-107r70,0r-107,107r112,152r-70,0r-80,-113r-25,26r0,87r-54,0r0,-259","w":259},"L":{"d":"27,-259r55,0r0,212r128,0r0,47r-183,0r0,-259","w":219,"k":{"y":13,"Y":33,"W":20,"V":27,"T":27," ":6}},"M":{"d":"199,-259r78,0r0,259r-50,0r0,-217r-49,217r-53,0r-48,-217r0,217r-50,0r0,-259r78,0r47,204","w":299},"N":{"d":"27,-259r56,0r104,181r0,-181r50,0r0,259r-54,0r-106,-184r0,184r-50,0r0,-259","w":259},"O":{"d":"142,-39v47,0,70,-39,70,-91v0,-52,-24,-91,-70,-91v-46,0,-70,39,-70,91v0,52,23,91,70,91xm266,-130v0,82,-41,137,-124,137v-83,0,-124,-55,-124,-137v0,-83,41,-137,124,-137v83,0,124,54,124,137","w":280},"P":{"d":"173,-177v0,-46,-49,-36,-91,-37r0,76v43,0,91,9,91,-39xm227,-177v0,83,-63,88,-145,84r0,93r-53,0r0,-259v93,1,198,-18,198,82","w":240,"k":{"A":27,".":46,",":46," ":6}},"Q":{"d":"72,-130v0,66,40,105,100,85r-27,-25r28,-29r27,24v26,-54,11,-150,-58,-146v-47,3,-70,37,-70,91xm266,-134v0,43,-10,73,-29,95r30,28r-28,30r-31,-30v-86,51,-190,-11,-190,-119v0,-81,47,-136,124,-137v75,0,124,55,124,133","w":280},"R":{"d":"187,-178v0,-50,-60,-33,-105,-36r0,70v44,-2,105,12,105,-34xm29,-259v92,3,214,-22,212,74v0,28,-15,54,-40,61v29,11,34,37,33,79v0,23,-1,30,11,38r0,7r-60,0v-14,-37,12,-111,-48,-102r-55,0r0,102r-53,0r0,-259","w":259,"k":{"Y":13,"W":6,"V":6}},"S":{"d":"204,-129v56,50,3,136,-80,136v-63,0,-108,-28,-109,-87r52,0v3,32,20,40,54,43v40,3,72,-30,43,-55v-52,-25,-145,-15,-145,-94v0,-80,114,-103,170,-59v19,14,29,35,30,63r-52,0v-1,-27,-22,-38,-52,-40v-35,-3,-63,35,-33,53v27,16,99,19,122,40","w":240},"T":{"d":"216,-259r0,46r-78,0r0,213r-54,0r0,-213r-78,0r0,-46r210,0","w":219,"k":{"y":27,"w":27,"u":27,"s":27,"r":20,"o":27,"i":6,"e":27,"c":27,"a":27,"O":6,"A":27,";":40,":":40,".":40,"-":20,",":40}},"U":{"d":"132,7v-71,0,-105,-32,-105,-107r0,-159r55,0r0,159v1,41,12,61,50,61v38,0,48,-20,49,-61r0,-159r55,0r0,159v1,74,-33,107,-104,107","w":259},"V":{"d":"179,-259r56,0r-88,259r-51,0r-88,-259r58,0r56,197","w":240,"k":{"y":13,"u":13,"r":20,"o":27,"i":6,"e":20,"a":20,"A":27,";":20,":":20,".":33,"-":20,",":33}},"W":{"d":"63,-259r34,148r7,42r37,-190r57,0r39,190r42,-190r56,0r-73,259r-52,0r-41,-202r-40,202r-50,0r-74,-259r58,0","w":339,"k":{"y":6,"u":6,"r":6,"o":6,"i":3,"e":6,"a":13,"A":20,";":6,":":6,".":20,"-":7,",":20}},"X":{"d":"69,0r-63,0r83,-132r-79,-127r65,0r46,84r47,-84r63,0r-79,125r84,134r-66,0r-49,-88","w":240},"Y":{"d":"175,-259r62,0r-87,162r0,97r-54,0r0,-97r-90,-162r64,0r54,113","w":240,"k":{"v":20,"u":20,"q":27,"p":20,"o":27,"i":13,"e":20,"a":20,"A":33,";":27,":":27,".":40,"-":20,",":40," ":6}},"Z":{"d":"9,-46r134,-167r-131,0r0,-46r198,0r0,43r-135,170r136,0r0,46r-202,0r0,-46","w":219},"[":{"d":"22,-262r89,0r0,37r-41,0r0,258r41,0r0,36r-89,0r0,-331","w":119},"\\":{"d":"22,-267r100,267r-41,0r-101,-267r42,0","w":100},"]":{"d":"8,33r41,0r0,-259r-41,0r0,-36r89,0r0,331r-89,0r0,-36","w":119},"^":{"d":"126,-259r64,155r-44,0r-40,-99r-40,99r-44,0r64,-155r40,0","w":210},"_":{"d":"0,45r0,-18r200,0r0,18r-200,0"},"`":{"d":"91,-217r-37,0r-53,-53r56,0","w":119},"a":{"d":"85,-30v32,-1,49,-23,44,-63v-19,15,-68,4,-68,38v0,16,10,25,24,25xm131,-22v-28,41,-121,38,-121,-29v0,-57,59,-61,108,-70v22,-14,7,-37,-21,-35v-20,1,-30,9,-32,26r-48,0v3,-46,31,-66,82,-66v42,1,80,13,80,59r0,110v-3,18,11,12,11,27r-55,0v-3,-8,-4,-13,-4,-22"},"b":{"d":"127,-196v52,-1,80,43,80,98v0,55,-27,104,-80,103v-30,0,-43,-9,-56,-29r0,24r-49,0r0,-259r50,0r0,92v12,-18,27,-29,55,-29xm114,-36v28,-1,40,-26,41,-57v1,-34,-13,-59,-42,-59v-30,0,-44,24,-43,59v1,30,13,58,44,57","w":219},"c":{"d":"12,-92v-6,-87,85,-130,150,-88v16,10,24,30,27,57r-51,0v-2,-18,-14,-31,-34,-31v-29,0,-39,27,-39,61v0,33,10,58,39,58v23,0,30,-14,33,-34r52,0v-4,42,-40,76,-87,76v-60,0,-86,-41,-90,-99"},"d":{"d":"94,-196v26,0,42,12,53,29r0,-92r51,0r0,259r-49,0r0,-27v-13,21,-27,32,-58,33v-48,0,-80,-46,-80,-97v0,-59,29,-104,83,-105xm105,-36v30,0,43,-26,43,-57v0,-34,-12,-58,-43,-59v-31,-1,-42,27,-42,57v-1,33,11,59,42,59","w":219},"e":{"d":"138,-115v2,-36,-44,-52,-66,-29v-6,7,-10,17,-12,29r78,0xm8,-94v-17,-118,168,-141,180,-26v1,9,2,21,2,38r-131,0v-6,48,61,65,77,26r51,0v-23,98,-191,75,-179,-38"},"f":{"d":"31,-190v-5,-61,21,-76,82,-71r0,41v-12,-2,-34,-2,-31,14r0,16r32,0r0,35r-32,0r0,155r-50,0r0,-155r-28,0r0,-35r27,0","w":119},"g":{"d":"106,-41v28,-1,41,-23,41,-56v0,-33,-13,-54,-42,-55v-29,-1,-42,25,-42,57v0,29,15,55,43,54xm93,-196v30,0,42,13,55,32r0,-28r49,0r0,182v-1,65,-29,87,-95,88v-46,1,-82,-17,-86,-57r55,0v4,16,13,19,34,19v39,0,43,-27,42,-69v-11,18,-27,30,-54,30v-52,0,-81,-40,-81,-96v0,-54,28,-102,81,-101","w":219},"h":{"d":"74,-167v34,-54,142,-31,123,55r0,112r-52,0r0,-117v1,-23,-8,-38,-31,-38v-62,1,-34,96,-40,155r-50,0r0,-258r50,0r0,91","w":219},"i":{"d":"75,-214r-51,0r0,-47r51,0r0,47xm24,-192r51,0r0,192r-51,0r0,-192","w":100},"j":{"d":"76,-214r-50,0r0,-47r50,0r0,47xm76,21v1,47,-24,59,-74,56r0,-40v15,1,24,0,24,-17r0,-211r50,0r0,212","w":100},"k":{"d":"23,-258r49,0r0,139r62,-72r63,0r-67,74r69,117r-60,0r-46,-82r-21,22r0,60r-49,0r0,-258"},"l":{"d":"75,0r-51,0r0,-259r51,0r0,259","w":100},"m":{"d":"71,-163v15,-43,96,-43,108,0v27,-54,118,-41,118,42r0,121r-51,0r0,-122v-1,-19,-9,-32,-28,-31v-57,3,-25,99,-33,153r-51,0r0,-114v1,-26,-6,-39,-28,-39v-24,0,-33,12,-33,38r0,115r-51,0r0,-191r49,0r0,28","w":320},"n":{"d":"72,-163v23,-54,125,-41,125,34r0,129r-51,0r0,-117v1,-25,-9,-38,-32,-38v-61,0,-34,97,-40,155r-50,0r0,-191r48,0r0,28","w":219},"o":{"d":"109,-35v32,0,46,-25,46,-60v0,-35,-13,-60,-46,-60v-33,0,-45,24,-45,60v0,36,13,60,45,60xm207,-95v0,58,-34,102,-97,102v-63,0,-98,-44,-98,-102v0,-58,35,-103,98,-103v62,0,97,45,97,103","w":219},"p":{"d":"155,-96v0,-29,-13,-57,-43,-56v-29,0,-43,26,-42,61v1,32,12,53,42,54v31,0,43,-27,43,-59xm70,-163v38,-66,137,-23,137,65v0,60,-27,102,-81,103v-26,0,-43,-11,-54,-29r0,99r-50,0r0,-267r48,0r0,29","w":219},"q":{"d":"105,-37v30,1,44,-26,43,-59v0,-31,-14,-57,-43,-56v-30,0,-42,24,-42,58v0,34,13,57,42,57xm11,-91v-13,-86,96,-146,137,-72r0,-28r49,0r0,267r-50,0r0,-100v-9,17,-27,31,-56,30v-47,-1,-83,-44,-80,-97","w":219},"r":{"d":"71,-158v16,-26,26,-38,63,-38r0,52v-40,-5,-61,9,-61,52r0,92r-50,0r0,-192r48,0r0,34","w":140,"k":{".":20,",":20}},"s":{"d":"172,-94v38,47,-5,101,-72,101v-53,0,-86,-22,-88,-68r50,0v-5,36,67,39,74,11v-5,-39,-119,-14,-119,-82v0,-62,90,-82,138,-51v15,10,24,27,26,50r-50,0v4,-32,-64,-36,-64,-9v0,30,83,21,105,48"},"t":{"d":"80,-53v-3,22,12,18,31,17r0,38v-41,3,-81,3,-81,-38r0,-118r-26,0r0,-36r26,0r0,-53r50,0r0,53r31,0r0,36r-31,0r0,101","w":119},"u":{"d":"88,4v-90,0,-62,-113,-66,-196r51,0r0,116v-1,25,9,38,31,39v62,-1,34,-97,40,-155r51,0r0,192r-49,0r0,-27v-12,19,-30,31,-58,31","w":219},"v":{"d":"142,-192r53,0r-69,192r-53,0r-68,-192r56,0r40,142","k":{".":27,",":27}},"w":{"d":"114,-192r51,0r29,138r30,-138r52,0r-56,192r-51,0r-30,-140r-31,140r-52,0r-54,-192r54,0r30,138","w":280,"k":{".":13,",":13}},"x":{"d":"5,0r65,-97r-63,-94r62,0r32,55r31,-55r60,0r-63,93r65,98r-62,0r-33,-57r-34,57r-60,0"},"y":{"d":"31,37v26,4,42,-7,43,-29r-70,-200r55,0r42,142r40,-142r53,0v-29,77,-61,193,-96,256v-9,14,-40,15,-67,13r0,-40","k":{".":27,",":27}},"z":{"d":"12,-151r0,-41r156,0r0,42r-97,109r100,0r0,41r-165,0r0,-39r98,-112r-92,0","w":180},"{":{"d":"122,73v-40,1,-77,-17,-75,-58v1,-48,5,-94,-37,-100r0,-21v77,-10,-14,-165,112,-157r0,28v-36,1,-28,42,-28,77v0,37,-14,49,-40,63v43,11,40,51,40,103v0,23,9,31,28,37r0,28","w":140},"|":{"d":"75,-262r0,262r-46,0r0,-262r46,0","w":100},"}":{"d":"93,15v1,41,-34,59,-75,58r0,-28v34,-5,28,-44,28,-82v0,-37,13,-46,40,-58v-40,-14,-40,-51,-40,-104v0,-25,-7,-31,-28,-36r0,-28v66,-4,75,39,75,107v0,31,11,42,37,50r0,21v-43,6,-38,52,-37,100","w":140},"~":{"d":"-2,-54v3,-52,35,-95,90,-73v30,12,87,40,94,-10r30,0v-5,50,-40,102,-95,71v-20,-6,-38,-15,-60,-19v-17,1,-26,14,-29,31r-30,0","w":210},"\u00c4":{"d":"98,-98r66,0r-32,-102xm102,-259r61,0r92,259r-59,0r-17,-53r-95,0r-18,53r-57,0xm154,-324r46,0r0,41r-46,0r0,-41xm83,-324r46,0r0,41r-46,0r0,-41","w":259},"\u00c5":{"d":"98,-98r66,0r-32,-102xm102,-259r61,0r92,259r-59,0r-17,-53r-95,0r-18,53r-57,0xm123,-308v0,12,9,21,21,21v12,0,21,-9,21,-21v0,-12,-10,-21,-21,-21v-11,0,-21,9,-21,21xm106,-308v0,-20,18,-38,38,-38v20,0,38,18,38,38v0,21,-18,39,-38,39v-20,0,-38,-18,-38,-39","w":259},"\u00c7":{"d":"16,-127v0,-79,42,-135,117,-137v63,-2,108,36,114,91r-55,0v-7,-30,-24,-45,-57,-45v-45,0,-63,41,-63,91v-1,51,19,87,63,87v33,0,51,-18,57,-48r54,0v-8,51,-47,96,-105,95r-11,16v22,-7,46,3,45,25v-1,38,-56,42,-85,25r7,-15v18,7,47,11,47,-8v0,-23,-32,-2,-39,-17r17,-26v-63,-2,-106,-61,-106,-134","w":259},"\u00c9":{"d":"219,-213r-137,0r0,55r126,0r0,45r-126,0r0,66r143,0r0,47r-196,0r0,-259r190,0r0,46xm195,-332r-53,53r-36,0r34,-53r55,0","w":240},"\u00d1":{"d":"27,-259r56,0r104,181r0,-181r50,0r0,259r-54,0r-106,-184r0,184r-50,0r0,-259xm78,-283v3,-46,52,-52,86,-31v15,2,20,-5,22,-15r24,0v-3,49,-53,48,-93,31v-9,0,-15,7,-17,15r-22,0","w":259},"\u00d6":{"d":"142,-39v47,0,70,-39,70,-91v0,-52,-24,-91,-70,-91v-46,0,-70,39,-70,91v0,52,23,91,70,91xm266,-130v0,82,-41,137,-124,137v-83,0,-124,-55,-124,-137v0,-83,41,-137,124,-137v83,0,124,54,124,137xm164,-332r46,0r0,41r-46,0r0,-41xm93,-332r46,0r0,41r-46,0r0,-41","w":280},"\u00dc":{"d":"132,7v-71,0,-105,-32,-105,-107r0,-159r55,0r0,159v1,41,12,61,50,61v38,0,48,-20,49,-61r0,-159r55,0r0,159v1,74,-33,107,-104,107xm154,-324r46,0r0,41r-46,0r0,-41xm83,-324r46,0r0,41r-46,0r0,-41","w":259},"\u00e1":{"d":"85,-30v32,-1,49,-23,44,-63v-19,15,-68,4,-68,38v0,16,10,25,24,25xm131,-22v-28,41,-121,38,-121,-29v0,-57,59,-61,108,-70v22,-14,7,-37,-21,-35v-20,1,-30,9,-32,26r-48,0v3,-46,31,-66,82,-66v42,1,80,13,80,59r0,110v-3,18,11,12,11,27r-55,0v-3,-8,-4,-13,-4,-22xm171,-270r-53,53r-36,0r34,-53r55,0"},"\u00e0":{"d":"85,-30v32,-1,49,-23,44,-63v-19,15,-68,4,-68,38v0,16,10,25,24,25xm131,-22v-28,41,-121,38,-121,-29v0,-57,59,-61,108,-70v22,-14,7,-37,-21,-35v-20,1,-30,9,-32,26r-48,0v3,-46,31,-66,82,-66v42,1,80,13,80,59r0,110v-3,18,11,12,11,27r-55,0v-3,-8,-4,-13,-4,-22xm141,-217r-37,0r-53,-53r56,0"},"\u00e2":{"d":"85,-30v32,-1,49,-23,44,-63v-19,15,-68,4,-68,38v0,16,10,25,24,25xm131,-22v-28,41,-121,38,-121,-29v0,-57,59,-61,108,-70v22,-14,7,-37,-21,-35v-20,1,-30,9,-32,26r-48,0v3,-46,31,-66,82,-66v42,1,80,13,80,59r0,110v-3,18,11,12,11,27r-55,0v-3,-8,-4,-13,-4,-22xm174,-217r-40,0r-23,-30r-23,30r-41,0r41,-53r45,0"},"\u00e4":{"d":"85,-30v32,-1,49,-23,44,-63v-19,15,-68,4,-68,38v0,16,10,25,24,25xm131,-22v-28,41,-121,38,-121,-29v0,-57,59,-61,108,-70v22,-14,7,-37,-21,-35v-20,1,-30,9,-32,26r-48,0v3,-46,31,-66,82,-66v42,1,80,13,80,59r0,110v-3,18,11,12,11,27r-55,0v-3,-8,-4,-13,-4,-22xm124,-262r46,0r0,41r-46,0r0,-41xm53,-262r46,0r0,41r-46,0r0,-41"},"\u00e3":{"d":"85,-30v32,-1,49,-23,44,-63v-19,15,-68,4,-68,38v0,16,10,25,24,25xm131,-22v-28,41,-121,38,-121,-29v0,-57,59,-61,108,-70v22,-14,7,-37,-21,-35v-20,1,-30,9,-32,26r-48,0v3,-46,31,-66,82,-66v42,1,80,13,80,59r0,110v-3,18,11,12,11,27r-55,0v-3,-8,-4,-13,-4,-22xm46,-220v3,-46,52,-52,86,-31v15,2,20,-5,22,-15r24,0v-3,49,-53,48,-93,31v-9,0,-15,7,-17,15r-22,0"},"\u00e5":{"d":"85,-30v32,-1,49,-23,44,-63v-19,15,-68,4,-68,38v0,16,10,25,24,25xm131,-22v-28,41,-121,38,-121,-29v0,-57,59,-61,108,-70v22,-14,7,-37,-21,-35v-20,1,-30,9,-32,26r-48,0v3,-46,31,-66,82,-66v42,1,80,13,80,59r0,110v-3,18,11,12,11,27r-55,0v-3,-8,-4,-13,-4,-22xm90,-254v0,12,9,21,21,21v12,0,21,-9,21,-21v0,-12,-10,-21,-21,-21v-11,0,-21,9,-21,21xm73,-254v0,-20,18,-38,38,-38v20,0,38,18,38,38v0,21,-18,39,-38,39v-20,0,-38,-18,-38,-39"},"\u00e7":{"d":"12,-92v0,-87,85,-130,150,-88v16,10,24,30,27,57r-51,0v-2,-18,-14,-31,-34,-31v-29,0,-39,27,-39,61v0,33,10,58,39,58v23,0,30,-14,33,-34r52,0v-4,39,-39,79,-81,76r-11,16v21,-7,45,2,44,25v-1,38,-55,42,-85,25r7,-15v18,6,47,12,47,-8v0,-23,-32,-2,-38,-17r17,-26v-47,-1,-77,-47,-77,-99"},"\u00e9":{"d":"138,-115v2,-36,-44,-52,-66,-29v-6,7,-10,17,-12,29r78,0xm8,-94v-17,-118,168,-141,180,-26v1,9,2,21,2,38r-131,0v-6,48,61,65,77,26r51,0v-23,98,-191,75,-179,-38xm172,-270r-53,53r-36,0r34,-53r55,0"},"\u00e8":{"d":"138,-115v2,-36,-44,-52,-66,-29v-6,7,-10,17,-12,29r78,0xm8,-94v-17,-118,168,-141,180,-26v1,9,2,21,2,38r-131,0v-6,48,61,65,77,26r51,0v-23,98,-191,75,-179,-38xm143,-217r-37,0r-53,-53r56,0"},"\u00ea":{"d":"138,-115v2,-36,-44,-52,-66,-29v-6,7,-10,17,-12,29r78,0xm8,-94v-17,-118,168,-141,180,-26v1,9,2,21,2,38r-131,0v-6,48,61,65,77,26r51,0v-23,98,-191,75,-179,-38xm176,-217r-40,0r-23,-30r-23,30r-41,0r41,-53r45,0"},"\u00eb":{"d":"138,-115v2,-36,-44,-52,-66,-29v-6,7,-10,17,-12,29r78,0xm8,-94v-17,-118,168,-141,180,-26v1,9,2,21,2,38r-131,0v-6,48,61,65,77,26r51,0v-23,98,-191,75,-179,-38xm125,-262r46,0r0,41r-46,0r0,-41xm54,-262r46,0r0,41r-46,0r0,-41"},"\u00ed":{"d":"24,-192r51,0r0,192r-51,0r0,-192xm120,-270r-53,53r-36,0r34,-53r55,0","w":100},"\u00ec":{"d":"24,-192r51,0r0,192r-51,0r0,-192xm91,-217r-37,0r-53,-53r56,0","w":100},"\u00ee":{"d":"24,-192r51,0r0,192r-51,0r0,-192xm124,-217r-40,0r-23,-30r-23,30r-41,0r41,-53r45,0","w":100},"\u00ef":{"d":"24,-192r51,0r0,192r-51,0r0,-192xm73,-262r46,0r0,41r-46,0r0,-41xm2,-262r46,0r0,41r-46,0r0,-41","w":100},"\u00f1":{"d":"72,-163v23,-54,125,-41,125,34r0,129r-51,0r0,-117v1,-25,-9,-38,-32,-38v-61,0,-34,97,-40,155r-50,0r0,-191r48,0r0,28xm55,-220v3,-46,52,-52,86,-31v15,2,20,-5,22,-15r24,0v-3,49,-53,48,-93,31v-9,0,-15,7,-17,15r-22,0","w":219},"\u00f3":{"d":"109,-35v32,0,46,-25,46,-60v0,-35,-13,-60,-46,-60v-33,0,-45,24,-45,60v0,36,13,60,45,60xm207,-95v0,58,-34,102,-97,102v-63,0,-98,-44,-98,-102v0,-58,35,-103,98,-103v62,0,97,45,97,103xm179,-270r-53,53r-36,0r34,-53r55,0","w":219},"\u00f2":{"d":"109,-35v32,0,46,-25,46,-60v0,-35,-13,-60,-46,-60v-33,0,-45,24,-45,60v0,36,13,60,45,60xm207,-95v0,58,-34,102,-97,102v-63,0,-98,-44,-98,-102v0,-58,35,-103,98,-103v62,0,97,45,97,103xm150,-217r-37,0r-53,-53r56,0","w":219},"\u00f4":{"d":"109,-35v32,0,46,-25,46,-60v0,-35,-13,-60,-46,-60v-33,0,-45,24,-45,60v0,36,13,60,45,60xm207,-95v0,58,-34,102,-97,102v-63,0,-98,-44,-98,-102v0,-58,35,-103,98,-103v62,0,97,45,97,103xm183,-217r-40,0r-23,-30r-23,30r-41,0r41,-53r45,0","w":219},"\u00f6":{"d":"109,-35v32,0,46,-25,46,-60v0,-35,-13,-60,-46,-60v-33,0,-45,24,-45,60v0,36,13,60,45,60xm207,-95v0,58,-34,102,-97,102v-63,0,-98,-44,-98,-102v0,-58,35,-103,98,-103v62,0,97,45,97,103xm132,-262r46,0r0,41r-46,0r0,-41xm61,-262r46,0r0,41r-46,0r0,-41","w":219},"\u00f5":{"d":"109,-35v32,0,46,-25,46,-60v0,-35,-13,-60,-46,-60v-33,0,-45,24,-45,60v0,36,13,60,45,60xm207,-95v0,58,-34,102,-97,102v-63,0,-98,-44,-98,-102v0,-58,35,-103,98,-103v62,0,97,45,97,103xm54,-220v3,-46,52,-52,86,-31v15,2,20,-5,22,-15r24,0v-3,49,-53,48,-93,31v-9,0,-15,7,-17,15r-22,0","w":219},"\u00fa":{"d":"88,4v-90,0,-62,-113,-66,-196r51,0r0,116v-1,25,9,38,31,39v62,-1,34,-97,40,-155r51,0r0,192r-49,0r0,-27v-12,19,-30,31,-58,31xm178,-270r-53,53r-36,0r34,-53r55,0","w":219},"\u00f9":{"d":"88,4v-90,0,-62,-113,-66,-196r51,0r0,116v-1,25,9,38,31,39v62,-1,34,-97,40,-155r51,0r0,192r-49,0r0,-27v-12,19,-30,31,-58,31xm148,-217r-37,0r-53,-53r56,0","w":219},"\u00fb":{"d":"88,4v-90,0,-62,-113,-66,-196r51,0r0,116v-1,25,9,38,31,39v62,-1,34,-97,40,-155r51,0r0,192r-49,0r0,-27v-12,19,-30,31,-58,31xm182,-217r-40,0r-23,-30r-23,30r-41,0r41,-53r45,0","w":219},"\u00fc":{"d":"88,4v-90,0,-62,-113,-66,-196r51,0r0,116v-1,25,9,38,31,39v62,-1,34,-97,40,-155r51,0r0,192r-49,0r0,-27v-12,19,-30,31,-58,31xm131,-262r46,0r0,41r-46,0r0,-41xm60,-262r46,0r0,41r-46,0r0,-41","w":219},"\u2020":{"d":"75,-255r49,0r0,79r63,0r0,40r-63,0r0,201r-49,0r0,-201r-63,0r0,-39r63,0r0,-80"},"\u00b0":{"d":"73,-257v30,0,57,27,57,57v0,30,-27,57,-57,57v-30,0,-56,-27,-56,-57v0,-30,26,-57,56,-57xm45,-200v0,15,13,28,28,28v15,0,29,-14,29,-28v0,-15,-14,-28,-29,-28v-15,0,-28,13,-28,28","w":143},"\u00a2":{"d":"108,-153v-47,-10,-54,78,-30,108xm12,-93v0,-64,41,-114,108,-101r8,-32r19,0r-10,35v30,11,48,33,52,68r-51,0v-2,-11,-7,-19,-14,-25r-30,112v24,5,41,-10,43,-33r52,0v-5,52,-43,83,-107,75r-11,37r-19,0r13,-42v-31,-13,-53,-47,-53,-94"},"\u00a3":{"d":"139,6v-37,-4,-72,-27,-108,-2r-19,-35v24,-12,54,-50,31,-84r-31,0r0,-20r20,0v-37,-55,-3,-127,70,-124v51,2,87,29,87,84r-47,0v5,-50,-75,-58,-75,-10v0,22,7,26,18,50r50,0r0,20r-43,0v8,40,-8,57,-35,79v41,-26,91,16,123,-14r14,40v-11,7,-36,17,-55,16"},"\u00a7":{"d":"45,-153v-40,-34,-10,-106,54,-106v45,0,69,24,73,66r-46,0v3,-33,-52,-38,-54,-7v11,29,16,21,58,39v64,28,76,86,23,115v48,37,9,120,-53,115v-44,-4,-76,-21,-78,-67r47,0v-2,35,57,38,58,5v-11,-46,-119,-45,-116,-108v1,-26,14,-42,34,-52xm127,-62v14,-5,24,-28,8,-39v-19,-13,-45,-23,-66,-34v-24,9,-14,42,8,47"},"\u2022":{"d":"63,-168v22,0,39,17,39,39v0,22,-17,39,-39,39v-22,0,-39,-17,-39,-39v0,-22,17,-39,39,-39","w":126},"\u00b6":{"d":"0,-171v1,-50,31,-88,85,-88r115,0r0,30r-22,0r0,294r-36,0r0,-294r-34,0r0,294r-36,0r0,-152v-46,0,-72,-36,-72,-84"},"\u00df":{"d":"107,-223v-28,0,-34,15,-33,47r0,176r-50,0r0,-182v0,-59,27,-76,84,-81v71,-7,114,80,58,115v79,36,35,179,-67,151r0,-40v36,2,58,-9,57,-44v-1,-32,-18,-42,-54,-44r0,-35v29,1,37,-7,39,-31v1,-21,-16,-32,-34,-32","w":219},"\u00ae":{"d":"134,-237v-57,0,-107,50,-107,107v0,58,49,108,107,108v58,0,107,-49,107,-108v0,-57,-51,-107,-107,-107xm264,-130v0,71,-60,130,-130,130v-71,0,-129,-59,-129,-130v0,-71,59,-129,129,-129v70,0,130,59,130,129xm158,-156v0,-19,-21,-21,-43,-20r0,42v23,1,43,-1,43,-22xm159,-57v-2,-30,-2,-59,-44,-51r0,51r-38,0r0,-144v52,0,117,-9,117,42v0,24,-15,33,-35,36v34,1,31,36,36,66r-36,0","w":265},"\u00a9":{"d":"134,-237v-57,0,-107,50,-107,107v0,58,49,108,107,108v58,0,107,-49,107,-108v0,-57,-51,-107,-107,-107xm264,-130v0,71,-60,130,-130,130v-71,0,-129,-59,-129,-130v0,-71,59,-129,129,-129v70,0,130,59,130,129xm200,-108v-5,35,-29,54,-63,55v-41,0,-72,-33,-72,-76v0,-83,124,-110,135,-21r-33,0v-3,-18,-12,-27,-30,-27v-24,0,-33,21,-33,49v-9,47,57,63,63,20r33,0","w":265},"\u2122":{"d":"34,-228r0,-31r115,0r0,31r-39,0r0,99r-38,0r0,-99r-38,0xm214,-259r24,75r24,-75r54,0r0,130r-35,0r0,-94r-28,94r-30,0r-28,-94r0,94r-35,0r0,-130r54,0","w":360},"\u00b4":{"d":"120,-270r-53,53r-36,0r34,-53r55,0","w":119},"\u00a8":{"d":"73,-262r46,0r0,41r-46,0r0,-41xm2,-262r46,0r0,41r-46,0r0,-41","w":119},"\u00c6":{"d":"156,-214r-24,0r-40,117r64,0r0,-117xm97,-258r245,0r0,45r-133,0r0,55r120,0r0,45r-120,0r0,67r136,0r0,46r-189,0r0,-55r-78,0r-19,55r-56,0","w":360},"\u00d8":{"d":"192,-200v-11,-12,-26,-21,-50,-21v-71,0,-83,86,-61,144xm93,-60v12,14,27,20,49,21v67,4,83,-86,61,-142xm142,-267v33,2,65,12,84,30r29,-31r14,14r-29,33v16,20,26,51,26,91v1,77,-49,137,-124,137v-36,-1,-62,-10,-84,-29r-31,32r-15,-14r32,-33v-58,-81,-18,-237,98,-230","w":280},"\u221e":{"d":"216,-130v0,-29,-29,-43,-48,-26v-5,5,-10,14,-17,28v11,18,14,34,37,34v19,0,28,-15,28,-36xm67,-163v-35,0,-34,70,0,69v27,-1,28,-16,40,-36v-12,-20,-15,-33,-40,-33xm127,-161v18,-23,28,-40,61,-40v39,0,63,32,63,71v-1,42,-20,72,-63,72v-27,0,-46,-18,-58,-39v-14,22,-33,40,-63,40v-42,0,-61,-31,-61,-73v0,-38,24,-70,61,-70v30,1,45,16,60,39","w":256},"\u00b1":{"d":"194,-43r0,43r-190,0r0,-43r190,0xm4,-99r0,-43r72,0r0,-48r46,0r0,48r72,0r0,43r-72,0r0,45r-46,0r0,-45r-72,0","w":197},"\u2264":{"d":"3,0r0,-43r191,0r0,43r-191,0xm3,-100r0,-44r191,-52r0,47r-116,27r116,27r0,47","w":197},"\u2265":{"d":"4,-95r116,-27r-116,-27r0,-47r190,52r0,44r-190,52r0,-47xm4,-43r190,0r0,43r-190,0r0,-43","w":197},"\u00a5":{"d":"204,-252r-40,83r25,0r0,24r-37,0r-18,38r49,0r0,24r-56,0r0,83r-51,0r0,-83r-56,0r0,-24r49,0r-19,-38r-38,0r0,-24r26,0r-42,-83r60,0r46,110r45,-110r57,0"},"\u00b5":{"d":"131,-32v-11,20,-51,52,-80,31r-16,84r-51,0r50,-275r51,0r-23,134v3,36,58,17,66,-4v13,-33,19,-89,29,-130r50,0r-34,192r-46,0","w":207},"\u220f":{"d":"246,53r-54,0r0,-267r-85,0r0,267r-54,0r0,-267r-32,0r0,-45r257,0r0,45r-32,0r0,267","w":296},"\u03c0":{"d":"19,-150r-22,0r0,-37r206,0r0,37r-22,0r0,150r-50,0r0,-150r-61,0r0,150r-51,0r0,-150","w":197},"\uf006":{"d":"19,-150r-22,0r0,-37r206,0r0,37r-22,0r0,150r-50,0r0,-150r-61,0r0,150r-51,0r0,-150","w":197},"\u00aa":{"d":"57,-168v20,-1,31,-13,28,-38v-13,9,-45,2,-45,24v-1,11,7,14,17,14xm86,-161v-21,25,-79,24,-79,-18v0,-35,34,-39,66,-42v6,0,11,-4,12,-9v-2,-19,-42,-17,-42,3r-32,0v4,-28,19,-40,51,-40v34,-1,53,7,55,38v2,24,-8,63,7,75r0,6r-35,0v-1,-4,-3,-7,-3,-13","w":133},"\u00ba":{"d":"66,-170v21,0,29,-16,29,-36v0,-20,-9,-36,-29,-36v-20,0,-30,16,-30,36v0,20,9,36,30,36xm130,-206v0,38,-25,62,-64,62v-39,0,-64,-24,-64,-62v0,-38,25,-61,64,-61v39,0,64,23,64,61","w":131},"\u03a9":{"d":"262,-140v0,51,-20,65,-48,96r55,0r0,44r-107,0r0,-49v29,-23,43,-38,44,-89v0,-51,-22,-82,-68,-82v-46,0,-68,31,-68,82v0,50,18,65,45,89r0,49r-108,0r0,-44r56,0v-29,-31,-48,-45,-49,-96v-1,-78,47,-127,124,-127v77,0,124,49,124,127","w":276},"\u2126":{"d":"262,-140v0,51,-20,65,-48,96r55,0r0,44r-107,0r0,-49v29,-23,43,-38,44,-89v0,-51,-22,-82,-68,-82v-46,0,-68,31,-68,82v0,50,18,65,45,89r0,49r-108,0r0,-44r56,0v-29,-31,-48,-45,-49,-96v-1,-78,47,-127,124,-127v77,0,124,49,124,127","w":276},"\u00e6":{"d":"256,-116v3,-36,-44,-52,-68,-30v-7,7,-10,16,-11,30r79,0xm87,-30v35,0,48,-24,44,-62v-20,15,-73,3,-71,39v1,14,10,23,27,23xm77,7v-65,5,-88,-76,-43,-106v18,-12,65,-13,89,-22v19,-16,1,-38,-26,-35v-20,2,-31,8,-32,27r-48,0v-6,-70,103,-85,145,-46v37,-34,120,-25,136,27v6,18,11,39,10,65r-131,0v-12,55,65,65,78,26r51,0v-5,64,-124,86,-156,31v-16,21,-38,30,-73,33","w":320},"\u00f8":{"d":"142,-142v-41,-39,-101,16,-73,77xm78,-49v45,43,94,-16,73,-77xm187,-164v47,64,9,179,-80,171v-27,-2,-46,-8,-63,-21r-24,25r-13,-11r25,-25v-45,-63,-11,-173,74,-173v34,0,49,8,69,22r24,-26r13,12","w":219},"\u00bf":{"d":"133,-140r-52,0r0,-51r52,0r0,51xm197,-13v1,58,-36,79,-85,84v-85,8,-127,-95,-56,-138v17,-10,30,-20,29,-49r47,0v8,67,-52,58,-59,109v-3,22,13,35,35,35v24,0,39,-17,39,-41r50,0","w":219},"\u00a1":{"d":"95,68r-55,0v-3,-70,7,-127,14,-187r26,0v7,60,18,117,15,187xm93,-140r-52,0r0,-51r52,0r0,51","w":119},"\u00ac":{"d":"200,-159r0,128r-46,0r0,-82r-144,0r0,-46r190,0","w":210},"\u0192":{"d":"87,-172v9,-74,38,-105,107,-86r-8,40v-32,-20,-49,13,-49,46r43,0r0,35r-48,0v-12,59,-16,135,-38,182v-15,33,-56,38,-89,23r9,-40v33,19,41,-9,47,-45r20,-120r-44,0r0,-35r50,0"},"\u0394":{"d":"242,0r-245,0r96,-259r53,0xm171,-47r-51,-157r-52,157r103,0","w":220},"\u2206":{"d":"242,0r-245,0r96,-259r53,0xm171,-47r-51,-157r-52,157r103,0","w":220},"\u00ab":{"d":"31,-120r60,-52r0,42r-36,31r36,31r0,41r-60,-51r0,-42xm109,-120r60,-52r0,42r-36,31r36,31r0,41r-60,-51r0,-42"},"\u00bb":{"d":"169,-78r-60,51r0,-41r35,-31r-35,-31r0,-42r60,52r0,42xm91,-78r-60,51r0,-41r36,-31r-36,-31r0,-42r60,52r0,42"},"\u2026":{"d":"153,0r0,-52r54,0r0,52r-54,0xm33,0r0,-52r54,0r0,52r-54,0xm273,0r0,-52r54,0r0,52r-54,0","w":360},"\u00a0":{"w":100},"\u00c0":{"d":"98,-98r66,0r-32,-102xm102,-259r61,0r92,259r-59,0r-17,-53r-95,0r-18,53r-57,0xm172,-279r-37,0r-53,-53r56,0","w":259},"\u00c3":{"d":"98,-98r66,0r-32,-102xm102,-259r61,0r92,259r-59,0r-17,-53r-95,0r-18,53r-57,0xm76,-282v3,-46,52,-52,86,-31v15,2,20,-5,22,-15r24,0v-3,49,-53,48,-93,31v-9,0,-15,7,-17,15r-22,0","w":259},"\u00d5":{"d":"142,-39v47,0,70,-39,70,-91v0,-52,-24,-91,-70,-91v-46,0,-70,39,-70,91v0,52,23,91,70,91xm266,-130v0,82,-41,137,-124,137v-83,0,-124,-55,-124,-137v0,-83,41,-137,124,-137v83,0,124,54,124,137xm86,-290v3,-46,52,-52,86,-31v15,2,20,-5,22,-15r24,0v-3,49,-53,48,-93,31v-9,0,-15,7,-17,15r-22,0","w":280},"\u0152":{"d":"127,-37v21,0,46,-15,46,-33v0,-61,24,-149,-46,-149v-44,0,-61,47,-61,92v0,44,16,90,61,90xm13,-129v0,-67,37,-136,105,-136v27,1,44,9,59,24r0,-17r169,0r0,45r-120,0r0,56r112,0r0,44r-112,0r0,67r120,0r0,46r-169,0r0,-18v-11,16,-32,25,-58,25v-69,2,-106,-69,-106,-136","w":360},"\u0153":{"d":"105,-34v35,1,46,-26,46,-60v0,-36,-10,-61,-45,-61v-30,0,-43,25,-43,60v0,36,10,60,42,61xm325,-57v-2,62,-115,86,-153,35v-15,19,-36,28,-68,28v-57,1,-93,-43,-93,-100v0,-61,36,-102,95,-102v33,0,54,11,69,28v42,-53,150,-23,150,42v2,9,2,24,2,43r-130,0v-7,48,64,68,78,26r50,0xm277,-116v3,-35,-34,-51,-62,-36v-12,6,-17,19,-18,36r80,0","w":339},"\u2013":{"d":"-1,-120r202,0r0,38r-202,0r0,-38"},"\u2014":{"d":"42,-120r275,0r0,38r-275,0r0,-38","w":360},"\u201c":{"d":"108,-163v-4,-52,4,-93,49,-99r0,19v-17,6,-26,15,-27,34r28,0r0,46r-50,0xm24,-163v-3,-53,5,-93,50,-99r0,19v-17,6,-26,15,-27,34r28,0r0,46r-51,0","w":180},"\u201d":{"d":"110,-178v16,-6,26,-14,27,-34r-27,0r0,-46r49,0v3,52,-4,93,-49,99r0,-19xm27,-178v17,-6,26,-15,27,-34r-27,0r0,-46r50,0v4,53,-5,92,-50,99r0,-19","w":180},"\u00f7":{"d":"72,0r0,-52r54,0r0,52r-54,0xm194,-118r0,46r-190,0r0,-46r190,0xm126,-190r0,52r-54,0r0,-52r54,0","w":197},"\u25ca":{"d":"173,-132r-85,139r-85,-139r85,-135xm42,-132r46,78r46,-78r-46,-75","w":177},"\u00ff":{"d":"31,37v26,4,42,-7,43,-29r-70,-200r55,0r42,142r40,-142r53,0v-29,77,-61,193,-96,256v-9,14,-40,15,-67,13r0,-40xm121,-262r46,0r0,41r-46,0r0,-41xm50,-262r46,0r0,41r-46,0r0,-41"},"\u0178":{"d":"175,-259r62,0r-87,162r0,97r-54,0r0,-97r-90,-162r64,0r54,113xm144,-324r46,0r0,41r-46,0r0,-41xm73,-324r46,0r0,41r-46,0r0,-41","w":240},"\u2044":{"d":"-61,7r153,-261r28,0r-153,261r-28,0","w":60},"\u2215":{"d":"-61,7r153,-261r28,0r-153,261r-28,0","w":60},"\u00a4":{"d":"218,-126r-200,0r8,-19r200,0xm202,-87r-184,0r8,-19r184,0xm68,-116v0,88,118,133,172,61r0,29v-71,61,-191,7,-191,-90v0,-102,132,-155,200,-82r-9,20v-54,-70,-172,-26,-172,62","w":267},"\u2039":{"d":"30,-120r60,-52r0,42r-36,31r36,31r0,41r-60,-51r0,-42","w":119},"\u203a":{"d":"90,-78r-60,51r0,-41r36,-31r-36,-31r0,-42r60,52r0,42","w":119},"\u2021":{"d":"75,-254r48,0r0,75r64,0r0,40r-64,0r0,88r64,0r0,39r-64,0r0,77r-48,0r0,-77r-63,0r0,-40r63,0r0,-87r-63,0r0,-40r63,0r0,-75"},"\u00b7":{"d":"79,-126v0,15,-15,29,-30,29v-15,0,-29,-14,-29,-29v0,-16,13,-29,29,-29v16,0,30,14,30,29","w":100},"\u2219":{"d":"79,-126v0,15,-15,29,-30,29v-15,0,-29,-14,-29,-29v0,-16,13,-29,29,-29v16,0,30,14,30,29","w":100},"\u201a":{"d":"24,40v20,-6,27,-15,27,-40r-28,0r0,-51r51,0v3,56,0,104,-50,110r0,-19","w":100},"\u201e":{"d":"27,40v20,-6,25,-15,26,-40r-27,0r0,-51r51,0v2,56,-1,103,-50,110r0,-19xm105,40v19,-5,27,-15,27,-40r-28,0r0,-51r51,0v3,56,0,104,-50,110r0,-19","w":180},"\u2030":{"d":"59,-225v-12,0,-23,9,-22,22v0,12,10,22,22,22v12,0,21,-11,22,-22v0,-12,-10,-22,-22,-22xm175,-263r26,0r-147,270r-26,0xm59,-261v31,0,58,27,58,58v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58v0,-31,27,-58,58,-58xm302,-72v-12,0,-22,10,-22,22v0,12,10,22,22,22v12,0,22,-9,22,-22v0,-12,-9,-23,-22,-22xm245,-50v0,-32,26,-58,57,-58v31,0,58,27,58,58v0,31,-27,58,-58,58v-31,0,-57,-26,-57,-58xm172,-28v12,0,22,-10,22,-22v0,-12,-10,-22,-22,-22v-12,0,-22,9,-22,22v0,12,9,23,22,22xm230,-50v0,31,-27,58,-58,58v-31,0,-58,-27,-58,-58v0,-31,27,-58,58,-58v31,0,58,27,58,58","w":360},"\u00c2":{"d":"98,-98r66,0r-32,-102xm102,-259r61,0r92,259r-59,0r-17,-53r-95,0r-18,53r-57,0xm205,-279r-40,0r-23,-30r-23,30r-41,0r41,-53r45,0","w":259},"\u00ca":{"d":"219,-213r-137,0r0,55r126,0r0,45r-126,0r0,66r143,0r0,47r-196,0r0,-259r190,0r0,46xm199,-279r-40,0r-23,-30r-23,30r-41,0r41,-53r45,0","w":240},"\u00c1":{"d":"98,-98r66,0r-32,-102xm102,-259r61,0r92,259r-59,0r-17,-53r-95,0r-18,53r-57,0xm201,-332r-53,53r-36,0r34,-53r55,0","w":259},"\u00cb":{"d":"219,-213r-137,0r0,55r126,0r0,45r-126,0r0,66r143,0r0,47r-196,0r0,-259r190,0r0,46xm148,-324r46,0r0,41r-46,0r0,-41xm77,-324r46,0r0,41r-46,0r0,-41","w":240},"\u00c8":{"d":"219,-213r-137,0r0,55r126,0r0,45r-126,0r0,66r143,0r0,47r-196,0r0,-259r190,0r0,46xm165,-279r-37,0r-53,-53r56,0","w":240},"\u00cd":{"d":"77,0r-54,0r0,-259r54,0r0,259xm120,-338r-53,53r-36,0r34,-53r55,0","w":100},"\u00ce":{"d":"77,0r-54,0r0,-259r54,0r0,259xm124,-285r-40,0r-23,-30r-23,30r-41,0r41,-53r45,0","w":100},"\u00cf":{"d":"77,0r-54,0r0,-259r54,0r0,259xm73,-330r46,0r0,41r-46,0r0,-41xm2,-330r46,0r0,41r-46,0r0,-41","w":100},"\u00cc":{"d":"77,0r-54,0r0,-259r54,0r0,259xm91,-285r-37,0r-53,-53r56,0","w":100},"\u00d3":{"d":"142,-39v47,0,70,-39,70,-91v0,-52,-24,-91,-70,-91v-46,0,-70,39,-70,91v0,52,23,91,70,91xm266,-130v0,82,-41,137,-124,137v-83,0,-124,-55,-124,-137v0,-83,41,-137,124,-137v83,0,124,54,124,137xm212,-340r-53,53r-36,0r34,-53r55,0","w":280},"\u00d4":{"d":"142,-39v47,0,70,-39,70,-91v0,-52,-24,-91,-70,-91v-46,0,-70,39,-70,91v0,52,23,91,70,91xm266,-130v0,82,-41,137,-124,137v-83,0,-124,-55,-124,-137v0,-83,41,-137,124,-137v83,0,124,54,124,137xm215,-287r-40,0r-23,-30r-23,30r-41,0r41,-53r45,0","w":280},"\u00d2":{"d":"142,-39v47,0,70,-39,70,-91v0,-52,-24,-91,-70,-91v-46,0,-70,39,-70,91v0,52,23,91,70,91xm266,-130v0,82,-41,137,-124,137v-83,0,-124,-55,-124,-137v0,-83,41,-137,124,-137v83,0,124,54,124,137xm182,-287r-37,0r-53,-53r56,0","w":280},"\u00da":{"d":"132,7v-71,0,-105,-32,-105,-107r0,-159r55,0r0,159v1,41,12,61,50,61v38,0,48,-20,49,-61r0,-159r55,0r0,159v1,74,-33,107,-104,107xm201,-332r-53,53r-36,0r34,-53r55,0","w":259},"\u00db":{"d":"132,7v-71,0,-105,-32,-105,-107r0,-159r55,0r0,159v1,41,12,61,50,61v38,0,48,-20,49,-61r0,-159r55,0r0,159v1,74,-33,107,-104,107xm205,-279r-40,0r-23,-30r-23,30r-41,0r41,-53r45,0","w":259},"\u00d9":{"d":"132,7v-71,0,-105,-32,-105,-107r0,-159r55,0r0,159v1,41,12,61,50,61v38,0,48,-20,49,-61r0,-159r55,0r0,159v1,74,-33,107,-104,107xm172,-279r-37,0r-53,-53r56,0","w":259},"\u0131":{"d":"24,-192r51,0r0,192r-51,0r0,-192","w":100},"\u02c6":{"d":"124,-217r-40,0r-23,-30r-23,30r-41,0r41,-53r45,0","w":119},"\u02dc":{"d":"-5,-220v3,-46,52,-52,86,-31v15,2,20,-5,22,-15r24,0v-3,49,-53,48,-93,31v-9,0,-15,7,-17,15r-22,0","w":119},"\u02c9":{"d":"-2,-255r125,0r0,26r-125,0r0,-26","w":119},"\u02d8":{"d":"122,-270v3,53,-69,65,-104,40v-11,-7,-16,-22,-18,-40r24,0v1,34,73,34,74,0r24,0","w":119},"\u02d9":{"d":"37,-262r46,0r0,41r-46,0r0,-41","w":119},"\u02da":{"d":"39,-254v0,12,9,21,21,21v12,0,21,-9,21,-21v0,-12,-10,-21,-21,-21v-11,0,-21,9,-21,21xm22,-254v0,-20,18,-38,38,-38v20,0,38,18,38,38v0,21,-18,39,-38,39v-20,0,-38,-18,-38,-39","w":119},"\u00b8":{"d":"54,23v22,-7,45,3,44,25v-1,38,-55,42,-85,25r7,-15v18,6,47,12,47,-8v0,-16,-19,-13,-31,-10r-22,-20v18,-7,27,-23,55,-20","w":119},"\u02dd":{"d":"105,-270r52,0r-43,51r-35,0xm79,-270r-42,51r-35,0r26,-51r51,0","w":119},"\u02db":{"d":"60,38v0,17,25,20,38,13r0,25v-27,16,-78,6,-76,-28v1,-25,19,-36,42,-48r32,0v-14,11,-36,19,-36,38","w":119},"\u02c7":{"d":"38,-217r-41,-53r41,0r23,30r23,-30r40,0r-41,53r-45,0","w":119},"\u2260":{"d":"194,-113r-62,0r-14,36r76,0r0,46r-98,0r-16,34r-47,0r15,-34r-44,0r0,-46r65,0r16,-36r-81,0r0,-46r101,0r16,-35r48,0r-16,35r41,0r0,46","w":197},"\u2202":{"d":"88,-123v-49,0,-62,92,-8,92v25,0,45,-23,44,-51v-1,-22,-12,-41,-36,-41xm73,7v-46,0,-78,-37,-78,-80v0,-76,99,-121,141,-63v5,-49,-16,-116,-61,-86r-25,-34v78,-38,133,29,133,120v0,71,-43,143,-110,143","w":177},"\u2211":{"d":"232,-259r0,48r-127,0r91,106r-92,110r131,0r0,48r-211,0r0,-39r102,-119r-97,-115r0,-39r203,0","w":256},"\u222b":{"d":"116,-225v-12,-9,-37,-10,-40,8v-14,74,1,192,-19,260v-11,35,-54,39,-87,25r4,-40v11,9,35,11,38,-7v12,-76,-1,-196,20,-262v11,-35,52,-35,88,-24","w":98},"\u221a":{"d":"85,7r-48,-160r-31,19r-14,-25r69,-39r43,162r95,-299r29,0r-106,342r-37,0","w":197},"\u2248":{"d":"4,-69v15,-12,25,-20,49,-22v18,-1,73,27,90,27v20,0,41,-13,51,-26r0,50v-12,10,-31,21,-50,21v-22,0,-71,-28,-92,-27v-26,2,-33,9,-48,26r0,-49xm194,-120v-10,9,-33,21,-50,21v-20,0,-73,-30,-92,-28v-26,1,-33,11,-48,27r0,-49v13,-12,27,-20,49,-22v19,-2,74,27,90,27v23,0,39,-13,51,-26r0,50","w":197},"\u2018":{"d":"24,-163v-3,-52,4,-93,49,-99r0,19v-16,5,-27,14,-26,34r27,0r0,46r-50,0","w":100},"\u2019":{"d":"24,-178v16,-5,27,-14,27,-34r-28,0r0,-46r50,0v4,52,-4,93,-49,99r0,-19","w":100}}});
;
jQuery(document).ready(function($) { 
       
        Cufon.replace('h1,h2,h4,h5');
        
        Cufon.replace('h3',{hover: true});
        
        Cufon.replace('.pink-strap');
        Cufon.replace('.cufon');
        
        Cufon.replace('.sidebar .node-artist-index .content,.sidebar .node-page.node-teaser .content');
  
});;
/*
  jQuery Ketchup Plugin - Tasty Form Validation
  ---------------------------------------------
  
  Version 0.3.1 - 12. Jan 2011
    - Check if error-container exists (by Emil Marashliev)
    - Make it work in IE6/7 (by https://github.com/hellokingdom)
  Version 0.3   - 06. Jan 2011
    - Rewritten from scratch
  Version 0.1   - 12. Feb 2010
    - Initial release
  
  Copyright (c) 2011 by Sebastian Senf:
    http://mustardamus.com/
    http://usejquery.com/
    http://twitter.com/mustardamus

  Dual licensed under the MIT and GPL licenses:
    http://www.opensource.org/licenses/mit-license.php
    http://www.gnu.org/licenses/gpl.html

  Demo: http://demos.usejquery.com/ketchup-plugin/
  Repo: http://github.com/mustardamus/ketchup-plugin
*/

(function($) {
  $.ketchup = {
    defaults: {
      attribute           : 'data-validate',                //look in that attribute for an validation string
      validateIndicator   : 'validate',                     //in the validation string this indicates the validations eg validate(required)
      eventIndicator      : 'on',                           //in the validation string this indicates the events when validations get fired eg on(blur)
      validateEvents      : 'blur',                         //the default event when validations get fired on every field
      validateElements    : ['input', 'textarea', 'select'],//check this fields in the form for a validation string on the attribute
      createErrorContainer: null,                           //function to create the error container (can also be set via $.ketchup.createErrorContainer(fn))
      showErrorContainer  : null,                           //function to show the error container (can also be set via $.ketchup.showErrorContainer(fn))
      hideErrorContainer  : null,                           //function to hide the error container (can also be set via $.ketchup.hideErrorContainer(fn))
      addErrorMessages    : null                            //function to add error messages to the error container (can also be set via $.ketchup.addErrorMessages(fn))
    },
    dataNames: {
      validationString    : 'ketchup-validation-string',
      validations         : 'ketchup-validations',
      events              : 'ketchup-events',
      elements            : 'ketchup-validation-elements',
      container           : 'ketchup-container'
    },
    validations           : {},
    helpers               : {},
    
    
    validation: function() {
      var message, func,
          arg1 = arguments[1];
      
      if(typeof arg1 == 'function') {
        func    = arg1;
      } else {
        message = arg1;
        func    = arguments[2];
      }
          
      this.validations[arguments[0]] = {
        message: message,
        func   : func,
        init   : arguments[3] || function(form, el) {}
      };
      
      return this;
    },
    
    
    message: function(name, message) {
      this.addMessage(name, message);
      return this;
    },
    
    
    messages: function(messages) {
      for(name in messages) {
        this.addMessage(name, messages[name]);
      }
      
      return this;
    },
    
    
    addMessage: function(name, message) {
      if(this.validations[name]) {
        this.validations[name].message = message;
      }
    },
    
    
    helper: function(name, func) {
      this.helpers[name] = func;
      return this;
    },
    
    
    init: function(form, options, fields) {      
          this.options = options;
      var self         = this,
          valEls       = this.initFunctions().initFields(form, fields);
      
      valEls.each(function() {
        var el = $(this);
        
        self.bindValidationEvent(form, el)
            .callInitFunctions(form, el);
      });
          
      form.data(this.dataNames.elements, valEls);
      this.bindFormSubmit(form);
    },
    
    
    initFunctions: function() {
      var opt       = this.options,
          initFuncs = [
                        'createErrorContainer',
                        'showErrorContainer',
                        'hideErrorContainer',
                        'addErrorMessages'
                      ];

      for(f = 0; f < initFuncs.length; f++) {
        var funcName = initFuncs[f];
    
        if(!opt[funcName]) {
          opt[funcName] = this[funcName];
        }
      }
      
      return this;
    },
    
    
    initFields: function(form, fields) {
      var self      = this,
          dataNames = this.dataNames,
          valEls    = $(!fields ? this.fieldsFromForm(form) : this.fieldsFromObject(form, fields));
      
      valEls.each(function() {
        var el   = $(this),
            vals = self.extractValidations(el.data(dataNames.validationString), self.options.validateIndicator);
        
        el.data(dataNames.validations, vals);
      });
      
      return valEls;
    },
    
    
    callInitFunctions: function(form, el) {
      var vals = el.data(this.dataNames.validations);
      
      for(i = 0; i < vals.length; i++) {
        vals[i].init.apply(this.helpers, [form, el]);
      }
    },
    
    
    fieldsFromForm: function(form) {
      var self      = this,
          opt       = this.options,
          dataNames = this.dataNames,
          valEls    = opt.validateElements,
          retArr    = [];
          valEls    = typeof valEls == 'string' ? [valEls] : valEls;
      
      for(i = 0; i < valEls.length; i++) {
        var els = form.find(valEls[i] + '[' + opt.attribute + '*=' + opt.validateIndicator + ']');
        
        els.each(function() {
          var el     = $(this),
              attr   = el.attr(opt.attribute),
              events = self.extractEvents(attr, opt.eventIndicator);

          el.data(dataNames.validationString, attr).data(dataNames.events, events ? events : opt.validateEvents);
        });
        
        retArr.push(els.get());
      } 
      
      return this.normalizeArray(retArr);
    },
    
    
    fieldsFromObject: function(form, fields) {
      var opt       = this.options,
          dataNames = this.dataNames,
          retArr    = [];
      
      for(s in fields) {
        var valString, events;
        
        if(typeof fields[s] == 'string') {
          valString = fields[s];
          events    = opt.validateEvents;
        } else {
          valString = fields[s][0];
          events    = fields[s][1];
        }
        
        var valEls    = form.find(s);
            valString = this.mergeValidationString(valEls, valString);
            events    = this.mergeEventsString(valEls, events);
        
        valEls.data(dataNames.validationString, opt.validateIndicator + '(' + valString + ')')
              .data(dataNames.events, events);

        retArr.push(valEls.get());
      }
      
      return this.normalizeArray(retArr);
    },
    
    
    mergeEventsString: function(valEls, events) {
      var oldEvents = valEls.data(this.dataNames.events),
          newEvents = '';
      
      if(oldEvents) {
        var eveArr = oldEvents.split(' ');
        
        for(i = 0; i < eveArr.length; i++) {
          if(events.indexOf(eveArr[i]) == -1) {
            newEvents += ' ' + eveArr[i];
          }
        }
      }
      
      return $.trim(events + newEvents);
    },
    
    
    mergeValidationString: function(valEls, newValString) {
      var opt          = this.options,
          valString    = valEls.data(this.dataNames.validationString),
          buildValFunc = function(validation) {
                           var ret = validation.name;
                           
                           if(validation.arguments.length) {
                             ret = ret + '(' + validation.arguments.join(',') + ')';
                           }
                           
                           return ret;
                         },
          inVals       = function(valsToCheck, val) {
                           for(i = 0; i < valsToCheck.length; i++) {
                             if(valsToCheck[i].name == val.name) {
                               return true;
                             }
                           }
                         };
      
      if(valString) {
        var newVals      = this.extractValidations(opt.validateIndicator + '(' + newValString + ')', opt.validateIndicator),
            oldVals      = this.extractValidations(valString, opt.validateIndicator);
            newValString = '';
        
        for(o = 0; o < oldVals.length; o++) {
          newValString += buildValFunc(oldVals[o]) + ',';
        }
        
        for(n = 0; n < newVals.length; n++) {
          if(!inVals(oldVals, newVals[n])) {
            newValString += buildValFunc(newVals[n]) + ',';
          }
        }
      }
      
      return newValString;
    },
    
    
    bindFormSubmit: function(form) {
      var self = this,
          opt  = this.options;
      
      form.submit(function() {
        return self.allFieldsValid(form, true);
      });
    },
    
    
    allFieldsValid: function(form, triggerEvents) {
      var self  = this,
          tasty = true;
      
      form.data(this.dataNames.elements).each(function() {          
        var el = $(this);
        
        if(self.validateElement(el, form) != true) {
          if(triggerEvents == true) {
            self.triggerValidationEvents(el);
          }
          
          tasty = false;
        }
      });

      form.trigger('formIs' + (tasty ? 'Valid' : 'Invalid'), [form]);
      
      return tasty;
    },
    
    
    bindValidationEvent: function(form, el) {      
      var self      = this,
          opt       = this.options,
          dataNames = this.dataNames,
          events    = el.data(dataNames.events).split(' ');
      
      for(i = 0; i < events.length; i++) {
        el.bind('ketchup.' + events[i], function() {
          var tasty     = self.validateElement(el, form),
              container = el.data(dataNames.container);

          if(tasty != true) {
            if(!container) {
              container = opt.createErrorContainer(form, el);
              el.data(dataNames.container, container);
            }

            opt.addErrorMessages(form, el, container, tasty);	        
            opt.showErrorContainer(form, el, container);
          } else {
            if(container){
              opt.hideErrorContainer(form, el, container);
            }
          }
        });
        
        this.bindValidationEventBridge(el, events[i]);
      }
      
      return this;
    },
    
    
    bindValidationEventBridge: function(el, event) {
      el.bind(event, function() {
        el.trigger('ketchup.' + event);
      });
    },
    
    
    validateElement: function(el, form) {
      var tasty = [],
          vals  = el.data(this.dataNames.validations),
          args  = [form, el, el.val()];

      for(i = 0; i < vals.length; i++) {
        if(!vals[i].func.apply(this.helpers, args.concat(vals[i].arguments))) {
          tasty.push(vals[i].message);
        }
      }
      
      form.trigger('fieldIs' + (tasty.length ? 'Invalid' : 'Valid'), [form, el]);
      
      return tasty.length ? tasty : true;
    },
    
    
    elementIsValid: function(el) {
      var dataNames = this.dataNames;
      
      if(el.data(dataNames.validations)) {
        var form = el.parentsUntil('form').last().parent();
        
        return (this.validateElement(el, form) == true ? true : false);
      } else if(el.data(dataNames.elements)) {
        return this.allFieldsValid(el);
      }
      
      return null;
    },
    
    
    triggerValidationEvents: function(el) {
      var events = el.data(this.dataNames.events).split(' ');
      
      for(var e = 0; e < events.length; e++) {
        el.trigger('ketchup.' + events[e]);
      }
    },
    
    
    extractValidations: function(toExtract, indicator) { //I still don't know regex
      var fullString   = toExtract.substr(toExtract.indexOf(indicator) + indicator.length + 1),
          tempStr      = '',
          tempArr      = [],
          openBrackets = 0,
          validations  = [];
      
      for(var i = 0; i < fullString.length; i++) {
        switch(fullString.charAt(i)) {
          case '(':
            tempStr += '(';
            openBrackets++;
            break;
          case ')':
            if(openBrackets) {
              tempStr += ')';
              openBrackets--;
            } else {
              tempArr.push($.trim(tempStr));
            }
            break;
          case ',':
            if(openBrackets) {
              tempStr += ',';
            } else {
              tempArr.push($.trim(tempStr));
              tempStr = '';
            }
            break;
          default:
            tempStr += fullString[i];
            break;
        }
      }
      
      for(v = 0; v < tempArr.length; v++) {
        var hasArgs = tempArr[v].indexOf('('),
            valName = tempArr[v],
            valArgs = [];
            
        if(hasArgs != -1) {
          valName = $.trim(tempArr[v].substr(0, hasArgs));          
          valArgs = $.map(tempArr[v].substr(valName.length).split(','), function(n) {
            return $.trim(n.replace('(', '').replace(')', ''));
          });
        }

        var valFunc = this.validations[valName];
        
        if(valFunc && valFunc.message) {
          var message = valFunc.message;
          
          for(a = 1; a <= valArgs.length; a++) {
            message = message.replace('{arg' + a + '}', valArgs[a - 1]);
          }
          
          validations.push({
            name     : valName,
            arguments: valArgs,
            func     : valFunc.func,
            message  : message,
            init     : valFunc.init
          });
        }
      }
      
      return validations;
    },
    
    
    extractEvents: function(toExtract, indicator) {
      var events = false,
          pos    = toExtract.indexOf(indicator + '(');
      
      if(pos != -1) {
        events = toExtract.substr(pos + indicator.length + 1).split(')')[0];
      }

      return events;
    },
    
    
    normalizeArray: function(array) {
      var returnArr = [];
      
      for(i = 0; i < array.length; i++) {
        for(e = 0; e < array[i].length; e++) {
          if(array[i][e]) {
            returnArr.push(array[i][e]);
          }
        }
      }
      
      return returnArr;
    },
    
    
    createErrorContainer: function(form, el) {      
      if(typeof form == 'function') {
        this.defaults.createErrorContainer = form;
        return this;
      } else {
        var elOffset = el.position();
            
        return $('<div/>', {
                 html   : '<ul></ul><span></span>',
                 'class': 'ketchup-error',
                 css    : {
                            top : elOffset.top + -22,
                            left: elOffset.left + el.outerWidth() - 90,
                            opacity:0
                          }
               }).appendTo(form);
      }
    },
    
    
    showErrorContainer: function(form, el, container) {
      if(typeof form == 'function') {
        this.defaults.showErrorContainer = form;
        return this;
      } else {        
        container.show().animate({
          //top    : el.offset().top - container.height() + 10,
          opacity: 1
        }, 'fast');
      }
    },
    
    
    hideErrorContainer: function(form, el, container) {
      if(typeof form == 'function') {
        this.defaults.hideErrorContainer = form;
        return this;
      } else {
        container.animate({
          top    : el.offset().top,
          opacity: 0
        }, 'fast', function() {
          container.hide();
        });
      }
    },
    
    
    addErrorMessages: function(form, el, container, messages) {
      if(typeof form == 'function') {
        this.defaults.addErrorMessages = form;
        return this;
      } else {
        var list = container.children('ul');
        
        list.html('');
        
        for(i = 0; i < messages.length; i++) {
          $('<li/>', {
            text: messages[i]
          }).appendTo(list);
        }
      }
    }
  };
  
  
  $.fn.ketchup = function(options, fields) {
    var el = $(this);
    
    if(typeof options == 'string') {
      switch(options) {
        case 'validate':
          $.ketchup.triggerValidationEvents(el);
          break;
        case 'isValid':
          return $.ketchup.elementIsValid(el);
          break;
      }
    } else {
      this.each(function() {
        $.ketchup.init(el, $.extend({}, $.ketchup.defaults, options), fields);
      });
    }
    
    return this;
  };
})(jQuery);;
jQuery.ketchup

.helper('isNumber', function(value) {
  return /^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(value);
})

.helper('contains', function(value, word) {
  return value.indexOf(word) != -1;
})

.helper('isEmail', function(value) {
  return /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(value);
})

.helper('isUrl', function(value) {
  return /^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value);
})

.helper('isUsername', function(value) {
  return /^([a-zA-Z])[a-zA-Z_-]*[\w_-]*[\S]$|^([a-zA-Z])[0-9_-]*[\S]$|^[a-zA-Z]*[\S]$/.test(value);
})

.helper('isDate', function(value) {
  return (!/Invalid|NaN/.test(new Date(value)));
})

.helper('inputsWithName', function(form, el) {
  return $('input[name="' + el.attr('name') + '"]', form);
})

.helper('inputsWithNameNotSelf', function(form, el) {
  return this.inputsWithName(form, el).filter(function() {
           return ($(this).index() != el.index());
         });
})

.helper('getKetchupEvents', function(el) {
  var events = el.data('events').ketchup,
      retArr = [];
  
  for(i = 0; i < events.length; i++) {
    retArr.push(events[i].namespace);
  }
      
  return retArr.join(' ');
})

.helper('bindBrothers', function(form, el) {
  this.inputsWithNameNotSelf(form, el).bind(this.getKetchupEvents(el), function() {
    el.ketchup('validate');
  });
});;
jQuery.ketchup

.validation('required', 'Required.', function(form, el, value) {
  var type = el.attr('type').toLowerCase();
  
  if(type == 'checkbox' || type == 'radio') {
    return (el.attr('checked') == true);
  } else {
    return (value.length != 0);
  }
})

.validation('minlength', 'This field must have a minimal length of {arg1}.', function(form, el, value, min) {
  return (value.length >= +min);
})

.validation('maxlength', 'This field must have a maximal length of {arg1}.', function(form, el, value, max) {
  return (value.length <= +max);
})

.validation('rangelength', 'This field must have a length between {arg1} and {arg2}.', function(form, el, value, min, max) {
  return (value.length >= min && value.length <= max);
})

.validation('min', 'Must be at least {arg1}.', function(form, el, value, min) {
  return (this.isNumber(value) && +value >= +min);
})

.validation('max', 'Can not be greater than {arg1}.', function(form, el, value, max) {
  return (this.isNumber(value) && +value <= +max);
})

.validation('range', 'Must be between {arg1} and {arg2}.', function(form, el, value, min, max) {
  return (this.isNumber(value) && +value >= +min && +value <= +max);
})

.validation('number', 'Must be a number.', function(form, el, value) {
  return this.isNumber(value);
})

.validation('digits', 'Must be digits.', function(form, el, value) {
  return /^\d+$/.test(value);
})

.validation('email', 'Must be a valid E-Mail.', function(form, el, value) {
  return this.isEmail(value);
})

.validation('url', 'Must be a valid URL.', function(form, el, value) {
  return this.isUrl(value);
})

.validation('username', 'Must be a valid username.', function(form, el, value) {
  return this.isUsername(value);
})

.validation('match', 'Must be {arg1}.', function(form, el, value, word) {
  return (el.val() == word);
})

.validation('contain', 'Must contain {arg1}', function(form, el, value, word) {
  return this.contains(value, word);
})

.validation('date', 'Must be a valid date.', function(form, el, value) {
  return this.isDate(value);
})

.validation('minselect', 'Select at least {arg1} checkboxes.', function(form, el, value, min) {
  return (min <= this.inputsWithName(form, el).filter(':checked').length);
}, function(form, el) {
  this.bindBrothers(form, el);
})

.validation('maxselect', 'Select not more than {arg1} checkboxes.', function(form, el, value, max) {
  return (max >= this.inputsWithName(form, el).filter(':checked').length);
}, function(form, el) {
  this.bindBrothers(form, el);
})

.validation('rangeselect', 'Select between {arg1} and {arg2} checkboxes.', function(form, el, value, min, max) {
  var checked = this.inputsWithName(form, el).filter(':checked').length;
  
  return (min <= checked && max >= checked);
}, function(form, el) {
  this.bindBrothers(form, el);
});;
jQuery(document).ready(function($) { 
       
  $('#moda-newsletter-form').ketchup({}, {
        '.required'    : 'required',              //all fields in the form with the class 'required'
  });
  $('#webform-client-form-75').ketchup({}, {
        '.required'    : 'required',              //all fields in the form with the class 'required'
  }); 
  
});;

