/*
 * 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. 
 *
 */(function(d){d.fn.aeImageResize=function(a){var i=0,j=d.browser.msie&&6==~~d.browser.version;if(!a.height&&!a.width)return this;if(a.height&&a.width)i=a.width/a.height;return this.one("load",function(){this.removeAttribute("height");this.removeAttribute("width");this.style.height=this.style.width="";var e=this.height,f=this.width,g=f/e,b=a.height,c=a.width,h=i;h||(h=b?g+1:g-1);if(b&&e>b||c&&f>c){if(g>h)b=~~(e/f*c);else c=~~(f/e*b);this.height=b;this.width=c}}).each(function(){if(this.complete||j)d(this).trigger("load")})}})(jQuery);(function($){$.browserTest=function(a,z){var u='unknown',x='X',m=function(r,h){for(var i=0;i<h.length;i=i+1){r=r.replace(h[i][0],h[i][1]);}return r;},c=function(i,a,b,c){var r={name:m((a.exec(i)||[u,u])[1],b)};r[r.name]=true;r.version=(c.exec(i)||[x,x,x,x])[3];if(r.name.match(/safari/)&&r.version>400){r.version='2.0';}if(r.name==='presto'){r.version=($.browser.version>9.27)?'futhark':'linear_b';}r.versionNumber=parseFloat(r.version,10)||0;r.versionX=(r.version!==x)?(r.version+'').substr(0,1):x;r.className=r.name+r.versionX;return r;};a=(a.match(/Opera|Navigator|Minefield|KHTML|Chrome/)?m(a,[[/(Firefox|MSIE|KHTML,\slike\sGecko|Konqueror)/,''],['Chrome Safari','Chrome'],['KHTML','Konqueror'],['Minefield','Firefox'],['Navigator','Netscape']]):a).toLowerCase();$.browser=$.extend((!z)?$.browser:{},c(a,/(camino|chrome|firefox|netscape|konqueror|lynx|msie|opera|safari)/,[],/(camino|chrome|firefox|netscape|netscape6|opera|version|konqueror|lynx|msie|safari)(\/|\s)([a-z0-9\.\+]*?)(\;|dev|rel|\s|$)/));$.layout=c(a,/(gecko|konqueror|msie|opera|webkit)/,[['konqueror','khtml'],['msie','trident'],['opera','presto']],/(applewebkit|rv|konqueror|msie)(\:|\/|\s)([a-z0-9\.]*?)(\;|\)|\s)/);$.os={name:(/(win|mac|linux|sunos|solaris|iphone)/.exec(navigator.platform.toLowerCase())||[u])[0].replace('sunos','solaris')};if(!z){$('html').addClass([$.os.name,$.browser.name,$.browser.className,$.layout.name,$.layout.className].join(' '));}};$.browserTest(navigator.userAgent);})(jQuery);/*-----------------------
* jQuery Plugin: Scroll to Top
* by Craig Wilson, Ph.Creative http://www.ph-creative.com
* 
* Copyright (c) 2009 Ph.Creative Ltd.
* Licensed under the MIT License http://www.opensource.org/licenses/mit-license.php
*
* Description: Adds an unobtrusive "Scroll to Top" link to your page with smooth scrolling.
* For usage instructions and version updates to go http://blog.ph-creative.com/post/jquery-plugin-scroll-to-top-v3.aspx
* 
* Version: 3.1, 29/07/2010
-----------------------*/
(function($){$.fn.extend({scrollToTop:function(options){var defaults={speed:"slow",ease:"jswing",start:0}
var options=$.extend(defaults,options);return this.each(function(){var o=options;var scrollDiv=$(this);$(this).hide().removeAttr("href").css("cursor","pointer");if($(window).scrollTop()>o.start){$(this).fadeIn("slow");}$(window).scroll(function(){if($(window).scrollTop()>o.start){$(scrollDiv).fadeIn("slow");}else{$(scrollDiv).fadeOut("slow");}});scrollDiv.click(function(event){$("html, body").animate({scrollTop:"0px"},o.speed,o.ease);});});}});})(jQuery);
var scr=document.getElementsByTagName('script');
var zoombox_path = scr[scr.length-1].getAttribute("src").replace('zoombox.js','');

(function($){

var options = {
    theme       : 'zoombox',      //available themes : zoombox,lightbox, prettyphoto, darkprettyphoto, simple
    opacity     : 0.8,                  // Black overlay opacity
    duration    : 800,                // Animation duration
    animation   : true,             // Do we have to animate the box ?
    width       : 600,                  // Default width
    height      : 400,                  // Default height
    gallery     : true,                 // Allow gallery thumb view
    autoplay : false,                // Autoplay for video
    overflow  : false               // Allow images bigger than screen ?
}
var images = new Array();         // Gallery Array [gallery name][link]
var elem;           // HTML element currently used to display box
var isOpen = false; // Zoombox already opened ?
var link;           // Shortcut for the link
var width;
var height;
var timer;          // Timing for img loading
var i = 0;          // iteration variable
var content;        // The content of the box
var type = 'multimedia'; // Content type
var position = false;
var imageset = false;
var state = 'closed';

/**
* You can edit the html code generated by zoombox for specific reasons.
* */
var html = '<div id="zoombox"> \
            <div class="mask"></div>\
            <div class="container">\
                <div class="content"></div>\
                <div class="title"></div>\
                <div class="next"></div>\
                <div class="prev"></div>\
                <div class="close"></div>\
                <div class="gallery"></div>\
            </div>\
        </div>';
// Regular expressions needed for the content
var filtreImg=                  /(\.jpg)|(\.jpeg)|(\.bmp)|(\.gif)|(\.png)/i;
var filtreMP3=			/(\.mp3)/i;
var filtreFLV=			/(\.flv)/i;
var filtreSWF=			/(\.swf)/i;
var filtreQuicktime=	/(\.mov)|(\.mp4)/i;
var filtreWMV=			/(\.wmv)|(\.avi)/i;
var filtreDailymotion=	/(http:\/\/www.dailymotion)|(http:\/\/dailymotion)/i;
var filtreVimeo=		/(http:\/\/www.vimeo)|(http:\/\/vimeo)/i;
var filtreYoutube=		/(youtube\.)/i;
var filtreKoreus=		/(http:\/\/www\.koreus)|(http:\/\/koreus)/i;


$.zoombox = function(el,options) {

}
$.zoombox.options = options;
$.zoombox.close = function() {
    close();
}
$.zoombox.open = function(tmplink,opts){
    elem = null;
    link = tmplink;
    options = $.extend({},$.zoombox.options,opts);
    load();
}
$.zoombox.html = function(cont,opts){
    content = cont;
    options = $.extend({},$.zoombox.options,opts);
    width = options.width;
    height = options.height;
    elem = null;
    open();
}
$.fn.zoombox = function(opts){    
    /**
     * Bind the behaviour on every Elements
     */
    return this.each(function(){
        // No zoombox for IE6
        if($.browser.msie && $.browser.version < 7 && !window.XMLHttpRequest){
            return false;
        }
        var obj = this;
        var galleryRegExp =  /zgallery([0-9]+)/;
        var gallery = galleryRegExp.exec($(this).attr("class"));
        var tmpimageset = false;
        if(gallery != null){
            if(!images[gallery[1]]){
                images[gallery[1]]=new Array();
            }
            images[gallery[1]].push($(this));
            var pos = images[gallery[1]].length-1;
            tmpimageset = images[gallery[1]];
        }
        $(this).unbind('click');
        $(this).click(function(){
            options = $.extend({},$.zoombox.options,opts);
            if(state!='closed') return false;
            elem = $(obj);
            link = elem.attr('href');
            imageset = tmpimageset;
            position = pos;
            load();
            return false;
        });
    });
}

/**
 * Load the content (with or without loader) and call open()
 * */
function load(){
    if(state=='closed') isOpen = false;
    state = 'load';
    setDim();
    if(filtreImg.test(link)){
        img=new Image();
        img.src=link;
        $("body").append('<div id="zoombox_loader"></div>');
        $("#zoombox_loader").css("marginTop",scrollY());
        timer = window.setInterval(function(){loadImg(img);},100);
    }else{
        setContent();
        open();
    }
}

/**
 * Build the HTML Structure of the box
 * */
function build(){
    // We add the HTML Code on our page
    $('body').append(html);
    $(window).keydown(function(event){
        shortcut(event.which);
    });
    $(window).resize(function(){
        resize();
    });
    $('#zoombox .mask').hide();
    $('#zoombox .gallery').hide();
    // We add a specific class to define the box theme
    $('#zoombox').addClass(options.theme);
    // We bind the close behaviour (click on the mask / click on the close button)
    $('#zoombox .close,#zoombox .mask,.zoombox_close').click(function(){
        close();
        return false;
    });
    $('#zoombox .mask').mouseover(function(){
        $('#zoombox .gallery').stop().fadeTo(500,0);
    });
    $('#zoombox .mask').mouseout(function(){
        $('#zoombox .gallery').stop().fadeTo(500,0.9);
    });
    // Next/Prev button
    if(imageset == false){
        $('#zoombox .next,#zoombox .prev').remove();
    }else{
        $('#zoombox .next').click(function(){
            next();
        });
        $('#zoombox .prev').click(function(){
            prev();
        });
        if(options.gallery){
            for(var i in imageset){
                var img = $('<img src="'+zoombox_path+'img/blank.png'+'" class="video gallery'+(i*1)+'"/>');
                if(filtreImg.test(imageset[i].attr('href'))){
                   img = $('<img src="'+imageset[i].attr('href')+'" class="gallery'+(i*1)+'"/>');
                }
                img.appendTo('#zoombox .gallery');
                img.click(function(){
                   gotoSlide($(this).attr('class').replace('gallery',''));
                   $('#zoombox .gallery img').removeClass('current');
                   $(this).addClass('current');
                });
                if(i==position){ img.addClass('current'); }
            }
        }
    }
}
/**
 * Open the box
 **/
function open(){
    if(isOpen == false){
        build();
    }else{
        $('#zoombox .title').empty();
    }
    $('#zoombox .close').hide();
    $('#zoombox .container').removeClass('multimedia').removeClass('img');
    $('#zoombox .container').addClass(type);

    // We add a title if we find one on the link
    if(elem != null && elem.attr('title')){
        $('#zoombox .title').append(elem.attr('title'));
    }



    // And after... Animation or not depending of preferences
    // We empty the content
    $('#zoombox .content').empty();
    // If it's an image we load the content now (to get a good animation)
    if(type=='img' && isOpen == false && options.animation == true){
        $('#zoombox .content').append(content);
    }
    // Default position/size of the box to make the "zoom effect"
    if(elem != null && elem.find('img').length != 0 && isOpen == false){
        var min = elem.find('img');
        $('#zoombox .container').css({
            width : min.width(),
            height: min.height(),
            top : min.offset().top,
            left : min.offset().left,
            opacity:0,
            marginTop : min.css('marginTop')
        });
    }else if(elem != null && isOpen == false){
        $('#zoombox .container').css({
           width:   elem.width(),
           height:  elem.height(),
           top:elem.offset().top,
           left:elem.offset().left
        });
    }else if(isOpen == false){
        $('#zoombox .container').css({
            width: 100,
            height: 100,
            top:windowH()/2-50,
            left:windowW()/2-50
        })
    }
    // Final position/size of the box after the animation
    var css = {
        width : width,
        height: height,
        left  : (windowW() - width) / 2,
        top   : (windowH() - height) / 2,
        marginTop : scrollY(),
        opacity:1
    };
    // Do we animate or not ?
    if(options.animation == true){
        $('#zoombox .title').hide();
        $('#zoombox .container').animate(css,options.duration,function(){
            if(type == 'multimedia' || isOpen == true){
                $('#zoombox .content').append(content);
            }
            if(type == 'image' || isOpen == true){
                $('#zoombox .content img').css('opacity',0).fadeTo(300,1);
            }
            $('#zoombox .close').fadeIn();
            $('#zoombox .gallery').fadeIn();
            $('#zoombox .title').fadeIn(300);
            state = 'opened';
            isOpen = true;
        });
        $('#zoombox .mask').fadeTo(200,options.opacity);
    }else{
        $('#zoombox .content').append(content);
        $('#zoombox .close').show();
        $('#zoombox .gallery').show();
        $('#zoombox .container').css(css);
        $('#zoombox .mask').show();
        $('#zoombox .mask').css('opacity',options.opacity);
        isOpen = true;
        state = 'opened';
    }
}
/**
 * Close the box
 * **/
function close(){
    state = 'closing';
    window.clearInterval(timer);
    $(window).unbind('keydown');
    $(window).unbind('resize'); 
    if(type == 'multimedia'){
        $('#zoombox .container').empty();
    }
    var css = {};
    if(elem != null && elem.find('img').length != 0){
        var min = elem.find('img');
        css ={
            width : min.width(),
            height: min.height(),
            top : min.offset().top,
            left : min.offset().left,
            opacity:0,
            marginTop : min.css('marginTop')
        };
    }else if(elem!=null){
        css = {
           width:   elem.width(),
           height:  elem.height(),
           top:elem.offset().top,
           left:elem.offset().left,
           opacity:0
        };
    }else{
        css = {
            width: 100,
            height: 100,
            top:windowH()/2-50,
            left:windowW()/2-50,
            opacity : 0
        };
    }
    if(options.animation == true){
        $('#zoombox .mask').fadeOut(200);
        $('#zoombox .container').animate(css,options.duration,function(){
            $('#zoombox').remove();
            state = 'closed';
			isOpen = false; 
        });
    }else{
        $('#zoombox').remove();
        state = 'closed';
		isOpen = false; 
    }
}

/**
 * Set the HTML Content of the box
 * */
function setContent(){
    // Overtflow
    if(options.overflow == false){
        if(width*1 + 50 > windowW()){
            height = (windowW() - 50) * height / width;
            width = windowW() - 50;
        }
        if(height*1 + 50 > windowH()){
            width = (windowH()-50) * width / height; 
            height = windowH() - 50;
        }
    }
    var url = link;
    type = 'multimedia';
    if(filtreImg.test(url)){
        type = 'img';
        content='<img src="'+link+'" width="'+width+'" height="'+height+'"/>';
    }else if(filtreMP3.test(url)){
        width=300;
        height=40;
        content ='<object type="application/x-shockwave-flash" data="'+MP3Player+'?son='+url+'" width="'+width+'" height="'+height+'">';
        content+='<param name="movie" value="'+MP3Player+'?son='+url+'" /></object>';
    }else if(filtreFLV.test(url)){
        var autostart = 0;
        if(options.autoplay==true){ autostart = 1; } 
        content='<object type="application/x-shockwave-flash" data="'+zoombox_path+'FLVPlayer.swf" width="'+width+'" height="'+height+'">\
<param name="allowFullScreen" value="true">\
<param name="scale" value="noscale">\
<param name="wmode" value="transparent">\
<param name="flashvars" value="flv='+url+'&autoplay='+autostart+'">\
<embed src="'+zoombox_path+'FLVPlayer.swf" width="'+width+'" height="'+height+'" allowscriptaccess="always" allowfullscreen="true" flashvars="flv='+url+'" wmode="transparent" />\
</object>';
    }else if(filtreSWF.test(url)){
        content='<object width="'+width+'" height="'+height+'"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="'+url+'" /><embed src="'+url+'" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="'+width+'" height="'+height+'" wmode="transparent"></embed></object>';
    }else if(filtreQuicktime.test(url)){
        content='<embed src="'+url+'" width="'+width+'" height="'+height+'" controller="true" cache="true" autoplay="true"/>';
        // HTML5 Code
        //content='<video controls src="'+url+'" width="'+width+'" height="'+height+'">Your browser does not support this format</video>'
    }else if(filtreWMV.test(url)){
        content='<embed src="'+url+'" width="'+width+'" height="'+height+'" controller="true" cache="true" autoplay="true" wmode="transparent" />';
    }else if(filtreDailymotion.test(url)){
        var id=url.split('_');
        id=id[0].split('/');
        id=id[id.length-1];
        if(options.autoplay==true){
            id = id + '&autostart=1';
        }
        content='<object width="'+width+'" height="'+height+'"><param name="movie" value="http://www.dailymotion.com/swf/'+id+'&colors=background:000000;glow:000000;foreground:FFFFFF;special:000000;&related=0"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.dailymotion.com/swf/'+id+'&colors=background:000000;glow:000000;foreground:FFFFFF;special:000000;&related=0" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" allowFullScreen="true" allowScriptAccess="always" wmode="transparent" ></embed></object>';
    }else if(filtreVimeo.test(url)){
        var id=url.split('/');
        id=id[3];
        if(options.autoplay==true){
            id = id + '&autoplay=1';
        }
        content='<object width="'+width+'" height="'+height+'"><param name="allowfullscreen" value="true" />	<param name="allowscriptaccess" value="always" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id='+id+'&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00AAEB&amp;fullscreen=1" />	<embed src="http://www.vimeo.com/moogaloop.swf?clip_id='+id+'&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00AAEB&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="'+width+'" height="'+height+'" wmode="transparent" ></embed></object>';
    }else if(filtreYoutube.test(url)){
        var id=url.split('watch?v=');
        id=id[1].split('&');
        id=id[0];
        if(options.autoplay==true){
            id = id + '&autoplay=1';
        }
        content='<object width="'+width+'" height="'+height+'"><param name="movie" value="http://www.youtube.com/v/'+id+'&hl=fr&rel=0&color1=0xFFFFFF&color2=0xFFFFFF&hd=1"></param><embed src="http://www.youtube.com/v/'+id+'&hl=fr&rel=0&color1=0xFFFFFF&color2=0xFFFFFF&hd=1" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" wmode="transparent"></embed></object>';
    }else if(filtreKoreus.test(url)){
        url=url.split('.html');
        url=url[0];
        content='<object type="application/x-shockwave-flash" data="'+url+'" width="'+width+'" height="'+height+'"><param name="movie" value="'+url+'"><embed src="'+url+'" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"  wmode="transparent"></embed></object>';
    }else{
        content='<iframe src="'+url+'" width="'+width+'" height="'+height+'" border="0"></iframe>';
    }
    return content;
}
/**
 *  Handle Image loading
 **/
function loadImg(img){
    if(img.complete){
            i=0;
            window.clearInterval(timer);
            width=img.width;
            height=img.height;
            $('#zoombox_loader').remove();
            setContent();
            open();
    }
    // On anim le loader
    $('#zoombox_loader').css({'background-position': "0px "+i+"px"});
    i=i-40;
    if(i<(-440)){i=0;}
}

function gotoSlide(i){
    if(state != 'opened'){ return false; }
    position = i;
    elem = imageset[position];
    link = elem.attr('href');
    if($('#zoombox .gallery img').length > 0){
        $('#zoombox .gallery img').removeClass('current');
        $('#zoombox .gallery img:eq('+i+')').addClass('current');
    }
    load();
    return false;
}

function next(){
    i = position+1;
    if(i  > imageset.length-1){
        i = 0;
    }
    gotoSlide(i);
}

function prev(){
    i = position-1;
    if(i < 0){
        i = imageset.length-1;
    }
    gotoSlide(i);
}

/**
 * GENERAL FUNCTIONS
 * */
/**
 * Resize
 **/
function resize(){
    $('#zoombox .container').css({
        top : (windowH() - $('#zoombox .container').height()) / 2,
        left : (windowW() - $('#zoombox .container').width()) / 2
    });
}
/**
 * Keyboard Shortcut
 **/
function shortcut(key){
    if(key == 37){
        prev();
    }
    if(key == 39){
        next();
    }
    if(key == 27){
        close();
    }

}
/**
 * Parse Width/Height of a link and insert it in the width and height variables
 * */
function setDim(){
    width = options.width;
    height = options.height;
    if(elem!=null){
        var widthReg = /w([0-9]+)/;
        var w = widthReg.exec(elem.attr("class"));
        if(w != null){
            if(w[1]){
                width = w[1];
            }
        }
        var heightReg = /h([0-9]+)/;
        var h = heightReg.exec(elem.attr("class"));
        if(h != null){
            if(h[1]){
                height = h[1];
            }
        }
    }
    return false;
}
/**
* Return the window height
* */
function windowH(){
        if (window.innerHeight) return window.innerHeight  ;
        else{return $(window).height();}
}

/**
 * Return the window width
 * */
function windowW(){
        if (window.innerWidth) return window.innerWidth  ;
        else{return $(window).width();}
}

/**
 *  Return the position of the top
 *  */
function scrollY() {
        scrOfY = 0;
        if( typeof( window.pageYOffset ) == 'number' ) {
                //Netscape compliant
                scrOfY = window.pageYOffset;
        } else if( document.body && ( document.body.scrollTop ) ) {
                //DOM compliant
                scrOfY = document.body.scrollTop;
        } else if( document.documentElement && ( document.documentElement.scrollTop ) ) {
                //IE6 standards compliant mode
                scrOfY = document.documentElement.scrollTop;
        }
        return scrOfY;
}

/**
 *  Return the position of the left scroll
 *  */
function scrollX(){
        scrOfX = 0;
        if( typeof( window.pageXOffset ) == 'number' ) {
                //Netscape compliant
                scrOfX = window.pageXOffset;
        } else if( document.body && ( document.body.scrollLeft ) ) {
                //DOM compliant
                scrOfX = document.body.scrollLeft;
        } else if( document.documentElement && ( document.documentElement.scrollLeft ) ) {
                //IE6 standards compliant mode
                scrOfX = document.documentElement.scrollLeft;
        }
         return scrOfX;
}

})(jQuery);/*
 * 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:
 * Copyright (c) 2009 by Breauhare Fonts. All rights reserved.
 * 
 * Trademark:
 * Future Bugler Upright is a trademark of Breauhare Fonts.
 * 
 * Full name:
 * FutureBuglerUpright
 * 
 * Description:
 * Copyright (c) 2009 by Breauhare Fonts. All rights reserved.
 * 
 * Manufacturer:
 * Breauhare Fonts
 * 
 * Designer:
 * Harry Warren
 * 
 * Vendor URL:
 * http://www.myfonts.com/foundry/breauhare/
 */
Cufon.registerFont({"w":171,"face":{"font-family":"Future Bugler Upright","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 0 0 0 2 0 4","ascent":"270","descent":"-90","bbox":"-25 -337 369.317 70","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+FB04"},"glyphs":{" ":{"w":86},"\ufb01":{"d":"164,-155r0,155r-38,0r0,-155r38,0xm93,-253v53,0,73,19,71,71r-38,0v3,-26,-6,-35,-31,-35v-19,0,-36,1,-35,21r0,41r45,0r0,35r-45,0r0,120r-38,0r0,-204v1,-40,27,-49,71,-49","w":185},"\ufb02":{"d":"195,0v-101,14,-63,-110,-70,-200v-1,-15,-13,-17,-30,-17v-19,0,-36,1,-35,21r0,41r42,0r0,35r-43,0r1,120r-38,0r0,-204v1,-40,27,-49,71,-49v51,0,70,19,70,69r1,132v1,16,14,17,31,17r0,35","w":199},"\ufb00":{"d":"117,-217v-27,1,-58,-6,-58,22r0,40r76,0v-5,-64,4,-107,73,-98r23,0r0,36v-27,1,-58,-6,-58,22r0,40r58,0r0,35r-58,0r0,120r-38,0r0,-120r-76,0r0,120r-37,0r0,-206v0,-47,42,-50,95,-47r0,36","w":238,"k":{"\u00ae":-23,"\u2122":-16,"7":-17,"1":-13,"\u2019":-9,"\u201d":-9,",":31,".":31,"\u2026":31,"z":5,"\u017e":5}},"\ufb03":{"d":"135,-204v-4,-54,64,-56,110,-45v24,6,36,31,33,67r-39,0v3,-26,-5,-35,-31,-35v-19,0,-36,1,-35,21r0,41r46,0r-1,35r-45,0r0,120r-38,0r0,-120r-76,0r0,120r-37,0r0,-206v0,-47,42,-50,95,-47r0,36v-27,1,-58,-6,-58,22r0,40r76,0r0,-49xm278,-155r0,155r-39,0r0,-155r39,0","w":299},"\ufb04":{"d":"309,0v-50,5,-70,-17,-70,-66r-1,-134v-1,-15,-13,-17,-30,-17v-19,0,-36,1,-35,21r0,41r43,0r-1,35r-42,0r0,120r-38,0r0,-120r-76,0r0,120r-37,0r0,-206v0,-47,42,-50,95,-47r0,36v-27,1,-58,-6,-58,22r0,40r76,0r0,-49v1,-40,27,-49,72,-49v102,0,63,111,70,201v1,16,15,17,32,17r0,35","w":312},"!":{"d":"22,-72r0,-181r40,0r0,181r-40,0xm62,-46r0,46r-40,0r0,-46r40,0","w":83},"\"":{"d":"51,-253r0,86r-35,0r0,-86r35,0xm111,-253r0,86r-35,0r0,-86r35,0","w":126,"k":{"\u00e5":11,"\u00e3":11,"\u00e4":11,"\u00e2":11,"\u00e0":11,"\u00e1":11,"\u00e6":11,"a":11,"r":11,"V":-9,"T":-6,"J":31,"1":-11,"s":6,"\u0161":6}},"#":{"d":"179,-140r0,30r-34,0r-5,41r-32,0r5,-41r-36,0r-6,41r-32,0r6,-41r-32,0r0,-30r36,0r6,-45r-32,0r0,-30r36,0r5,-38r32,0r-5,38r37,0r5,-38r32,0r-5,38r29,0r0,30r-33,0r-7,45r30,0xm124,-185r-37,0r-6,45r36,0","w":201},"$":{"d":"102,-90v0,-24,-21,-22,-44,-21v-29,2,-47,-21,-47,-55v0,-36,15,-53,48,-54r0,-33r29,0r0,33r36,0r0,34v-31,5,-80,-16,-77,25v2,22,22,15,42,16v33,1,49,18,49,54v0,33,-15,58,-50,56r0,35r-29,0r0,-35r-44,0r0,-34v32,-5,87,15,87,-21","w":149},"%":{"d":"37,-221v0,30,-14,79,19,73v33,7,14,-42,19,-73v-1,-12,-38,-12,-38,0xm44,0r150,-253r30,0r-150,253r-30,0xm101,-160v3,36,-27,36,-61,36v-44,0,-29,-61,-29,-105v0,-28,31,-24,60,-24v41,0,28,54,30,93xm192,-97v0,32,-14,77,19,73v34,5,19,-44,19,-74v0,-12,-38,-11,-38,1xm256,-36v3,39,-27,36,-60,36v-44,0,-29,-63,-29,-105v0,-28,33,-24,60,-24v41,0,26,54,29,93","w":267},"&":{"d":"60,-200v-3,36,-1,62,36,56r35,0r0,-40r40,0r0,40r33,0r0,35r-33,0r0,63v0,38,-27,46,-72,46v-68,0,-89,-25,-82,-91v2,-17,12,-30,28,-38v-30,-8,-26,-51,-24,-87v2,-40,54,-39,100,-37r0,37v-22,2,-60,-6,-61,16xm58,-90v-3,33,-1,59,36,54v19,-3,37,1,37,-19r0,-54v-28,3,-70,-10,-73,19","w":209,"k":{"7":22}},"'":{"d":"51,-253r0,86r-35,0r0,-86r35,0","w":66,"k":{"r":11,"V":-9,"T":-6,"J":34,"s":6,"\u0161":6}},"(":{"d":"18,-26r0,-141v0,-53,38,-80,66,-89r0,41v-55,25,-31,116,-31,185v0,22,9,42,31,52r0,41v-28,-9,-66,-36,-66,-89","w":88,"k":{"j":-32,"7":-11,"1":-13}},")":{"d":"71,-167r0,141v0,53,-38,80,-66,89r0,-41v55,-25,31,-116,31,-185v0,-22,-9,-42,-31,-52r0,-41v28,9,66,36,66,89","w":88},"*":{"d":"63,-206r1,-45r30,0r0,45r-31,0xm95,-203r42,-16r10,29r-42,15xm77,-154r-27,36r-24,-17r26,-37xm107,-118r-27,-36r24,-18r27,37xm19,-219r42,16r-10,28r-42,-15","w":156},"+":{"d":"67,-200r37,0r0,55r51,0r0,36r-51,0r0,55r-37,0r0,-55r-51,0r0,-36r51,0r0,-55"},",":{"d":"59,-46r-24,91r-30,0r12,-91r42,0","w":68,"k":{"\u201d":13,"\u2019":13,"'":13,"\"":13," ":13}},"-":{"d":"122,-117r0,36r-106,0r0,-36r106,0","w":138,"k":{"7":38,"Z":-9,"\u017d":-9}},".":{"d":"60,-46r0,46r-40,0r0,-46r40,0","w":80,"k":{"\u201d":29,"\u2019":29}},"\/":{"d":"0,0r126,-253r35,0r-126,253r-35,0","w":160,"k":{"J":31}},"0":{"d":"98,0v-47,0,-79,-5,-80,-47r0,-159v1,-42,33,-47,80,-47v47,0,81,5,81,47r0,159v-1,42,-34,47,-81,47xm99,-217v-20,0,-41,0,-41,20r0,142v-1,19,21,19,40,19v19,0,40,1,40,-19r0,-142v2,-20,-20,-20,-39,-20","w":196},"1":{"d":"2,-253v47,-2,72,14,72,60r0,193r-41,0r0,-199v-2,-15,-14,-18,-31,-16r0,-38","w":93},"2":{"d":"18,-191v-11,-67,53,-68,115,-60v26,3,32,35,32,68v0,59,-23,81,-88,74v-19,-2,-23,15,-22,34v-13,54,55,35,101,38r0,37v-57,-3,-137,16,-141,-45v-4,-68,4,-110,80,-100v24,3,29,-11,29,-35v0,-27,-7,-36,-33,-36v-18,0,-36,3,-32,25r-41,0","w":180},"3":{"d":"90,-146v27,-1,25,-68,1,-69r-78,-1r0,-37v73,-1,135,-11,135,69v0,28,-1,49,-25,55v33,10,27,47,27,84v0,58,-77,44,-137,45r0,-37r81,0v18,-1,16,-19,16,-37v0,-20,-3,-40,-29,-35r-64,0r0,-36","w":168},"4":{"d":"126,-91v-61,1,-113,6,-113,-59r0,-103r40,0r0,110v3,27,46,13,73,16r0,-126r41,0r0,253r-41,0r0,-91","w":188},"5":{"d":"164,-71v6,53,-21,77,-73,71v-51,4,-83,-11,-75,-65r40,0v-4,24,13,28,34,28v26,0,37,-9,34,-37v6,-35,-17,-38,-52,-35v-58,3,-57,-40,-57,-99v0,-55,74,-45,133,-45r0,38v-37,7,-102,-22,-93,35v-7,33,16,38,48,35v50,-5,65,27,61,74","w":178},"6":{"d":"18,-208v-4,-59,76,-43,136,-45r0,38r-80,0v-22,1,-15,31,-16,53v77,-5,130,1,117,80v6,61,-12,82,-76,82v-52,0,-81,-7,-81,-59r0,-149xm96,-126v-46,-11,-39,33,-37,73v1,17,18,16,37,16v21,0,38,0,39,-19v0,-41,7,-81,-39,-70","w":191,"k":{"7":9}},"7":{"d":"0,-253v65,1,136,-13,136,60r0,193r-41,0r0,-198v-5,-31,-62,-12,-95,-17r0,-38","w":155},"8":{"d":"60,-181v-5,29,10,40,36,37v26,3,40,-9,36,-37v6,-37,-22,-38,-56,-34v-14,1,-19,16,-16,34xm20,-185v0,-54,20,-68,76,-68v55,0,76,14,76,68v0,29,-2,48,-24,56v20,7,27,30,27,60v0,54,-22,69,-79,69v-58,0,-83,-15,-80,-69v1,-28,6,-53,27,-60v-22,-8,-23,-28,-23,-56xm119,-110v-32,-3,-71,-4,-62,35v-9,41,24,42,61,38v25,-2,25,-70,1,-73","w":191},"9":{"d":"172,-45v3,56,-71,45,-130,45r0,-37r74,-1v22,-1,14,-31,15,-52v-76,4,-130,-2,-117,-81v-5,-61,15,-82,78,-82v53,0,80,9,80,60r0,148xm93,-126v35,3,39,-9,39,-46v0,-32,-5,-44,-38,-44v-21,0,-39,-1,-39,19v0,41,-8,80,38,71","w":189},":":{"d":"58,-46r0,46r-40,0r0,-46r40,0xm58,-195r0,46r-40,0r0,-46r40,0","w":76},";":{"d":"59,-195r0,46r-40,0r0,-46r40,0xm61,-46r-24,91r-30,0r11,-91r43,0","w":77},"<":{"d":"46,-80v-49,-13,-48,-78,0,-92r116,-35r0,37r-106,32v-14,3,-14,20,0,24r106,32r0,37","w":174},"=":{"d":"155,-177r0,36r-139,0r0,-36r139,0xm155,-113r0,36r-139,0r0,-36r139,0","k":{"7":23}},">":{"d":"128,-172v49,13,48,78,0,92r-115,35r0,-37r105,-32v14,-3,14,-20,0,-24r-105,-32r0,-37","w":174,"k":{"7":14}},"?":{"d":"73,-253v66,0,67,38,67,101v0,26,-17,42,-47,43v-16,1,-16,19,-15,37r-40,0v-3,-40,5,-67,46,-69v25,-1,26,-74,1,-76v-23,-2,-43,0,-39,26r-38,0v-5,-46,18,-62,65,-62xm78,-46r0,46r-40,0r0,-46r40,0","w":151,"k":{"\u2026":34,".":34,",":34}},"@":{"d":"97,-106v-6,30,13,35,44,32v20,-1,13,-28,14,-47v-24,3,-53,-9,-58,15xm84,-209v58,-2,104,-5,104,56r0,66v1,11,18,10,18,-1r0,-106v-2,-36,-40,-28,-79,-28v-38,0,-78,-8,-78,28r1,140v4,31,37,23,75,23r81,0r0,31v-84,-5,-202,27,-190,-67v9,-69,-25,-175,42,-184v45,-6,94,-5,139,0v64,7,42,103,42,169v0,18,-7,38,-34,38v-15,0,-27,-3,-34,-11v-37,22,-122,19,-107,-42v-2,-52,25,-53,83,-53v10,0,8,-8,8,-17v-5,-22,-47,-8,-71,-12r0,-30","w":254},"A":{"d":"101,-253v46,0,79,6,79,47r0,206r-41,0r0,-93r-77,0r0,93r-40,0r0,-206v1,-41,32,-47,79,-47xm139,-197v1,-20,-19,-20,-38,-20v-19,0,-39,1,-39,20r0,68r77,0r0,-68","w":201},"B":{"d":"139,-55v1,-27,8,-54,-28,-54r-49,0r0,72v27,-3,77,12,77,-18xm120,-146v27,-1,23,-69,1,-69v-24,1,-59,-8,-59,18r0,52xm180,-67v15,87,-80,65,-158,67r0,-208v-1,-40,33,-45,81,-45v67,0,81,28,74,94v-1,14,-10,26,-25,30v27,8,30,32,28,62","w":196},"C":{"d":"18,-208v-4,-59,77,-43,136,-45r0,37r-80,1v-10,1,-16,7,-16,18r1,144v7,30,64,11,96,16r0,37v-66,-2,-137,19,-137,-66r0,-142","w":164,"k":{"\u00ef":-14,"\u00ec":-13,"7":-14,"1":-9}},"D":{"d":"101,-217v-19,0,-39,0,-39,20r0,160v28,-4,77,12,77,-18r0,-142v1,-20,-19,-20,-38,-20xm100,-253v47,0,80,6,80,47r0,158v2,66,-93,45,-158,48r0,-206v1,-41,32,-47,78,-47","w":197,"k":{"T":2}},"E":{"d":"156,0v-61,-2,-138,15,-138,-47r0,-159v-4,-61,76,-46,137,-47r0,38r-82,0v-26,3,-11,45,-15,70r96,0r0,36r-96,0v4,30,-16,71,30,71r68,0r0,38","k":{"\u00ec":-9}},"F":{"d":"22,-206v-4,-61,75,-46,136,-47r0,38r-81,0v-26,3,-11,45,-15,70r96,0r0,36r-96,0r0,109r-40,0r0,-206","w":169,"k":{"\u017e":5,"\u2026":46,"z":5,".":46,",":46,"\u00ec":-14,"x":5,"J":47,"\/":31}},"G":{"d":"138,-55v-2,-21,10,-54,-14,-54r-35,0r0,-36v48,-1,99,-8,90,52r0,46v-1,42,-34,47,-81,47v-47,0,-79,-5,-80,-47r0,-159v-4,-61,77,-46,138,-47r0,38r-83,0v-10,1,-15,7,-15,18r0,142v-1,19,21,19,40,19v19,0,42,0,40,-19","w":192,"k":{"\u201d":11,"\u2019":11,"T":16,"7":14}},"H":{"d":"180,-253r0,253r-41,0r0,-109r-77,0r0,109r-40,0r0,-253r40,0r0,108r77,0r0,-108r41,0","w":201},"I":{"d":"62,-253r0,253r-40,0r0,-253r40,0","w":83},"J":{"d":"109,-59v6,60,-44,62,-105,59r0,-38v28,-3,65,13,65,-27r0,-188r40,0r0,194","w":129},"K":{"d":"62,-253r0,108v26,1,53,3,57,-20r17,-88r39,0v-15,45,-4,107,-48,125v50,11,37,83,53,128r-41,0r-17,-87v-4,-27,-32,-22,-60,-22r0,109r-40,0r0,-253r40,0","w":188,"k":{"v":5}},"L":{"d":"151,0v-59,-2,-129,15,-129,-48r0,-205r40,0r0,197v3,33,58,14,89,19r0,37","w":154,"k":{"\u2122":29,"x":-13,"V":11,"T":27,"J":-20,"7":49,"4":36,"\/":-13,"*":29,"\"":27,"'":27,"Y":9,"\u00dd":9,"\u0178":9,"Z":-11,"\u017d":-11,":":-14,";":-14,"a":-11,"\u00e6":-11,"\u00e1":-11,"\u00e0":-11,"\u00e2":-11,"\u00e4":-11,"\u00e3":-11,"\u00e5":-11,"\u2019":34,"\u201d":34,",":-11,".":-11,"\u2026":-11}},"M":{"d":"22,-190v-16,-68,78,-78,121,-47v40,-33,135,-18,118,47r0,190r-40,0r0,-200v-3,-25,-66,-25,-59,7r0,193r-41,0r0,-193v2,-20,-11,-23,-29,-23v-20,0,-30,5,-30,28r0,188r-40,0r0,-190","w":282,"k":{"T":4}},"N":{"d":"101,-217v-19,0,-39,1,-39,20r0,197r-40,0r0,-206v1,-41,32,-47,79,-47v46,0,79,6,79,47r0,206r-41,0r0,-197v1,-20,-19,-20,-38,-20","w":201,"k":{"\u201d":6,"\u2019":6,"T":4}},"O":{"d":"98,0v-47,0,-79,-5,-80,-47r0,-159v1,-42,33,-47,80,-47v47,0,81,5,81,47r0,159v-1,42,-34,47,-81,47xm99,-217v-20,0,-41,0,-41,20r0,142v-1,19,21,19,40,19v19,0,40,1,40,-19r0,-142v2,-20,-20,-20,-39,-20","w":196},"P":{"d":"100,-253v61,0,80,15,80,77v0,37,2,74,-32,81v-21,4,-59,2,-86,3r0,92r-40,0r0,-207v-2,-41,35,-46,78,-46xm100,-216v-21,0,-38,-1,-38,19r0,68r60,0v19,0,17,-24,17,-44v0,-30,-5,-43,-39,-43","w":190,"k":{"\u201d":-6,"\u2019":-6,"\u2026":41,".":41,",":41,"'":-13,"\"":-13,"J":41,"\/":22}},"Q":{"d":"103,0v-48,1,-85,-3,-85,-47r0,-159v1,-42,33,-47,80,-47v47,0,81,5,81,47r0,159v0,26,-16,41,-39,45r9,42r-41,0xm98,-217v-19,0,-40,0,-40,20r0,142v-1,19,21,19,40,19v19,0,40,1,40,-19r0,-142v2,-20,-21,-20,-40,-20","w":196},"R":{"d":"177,-186v4,35,-11,59,-38,67v32,23,30,80,45,119r-42,0r-21,-85v-4,-25,-30,-25,-59,-24r0,109r-40,0r0,-208v-1,-39,33,-45,80,-45v54,0,80,16,75,67xm136,-164v6,-46,-11,-58,-58,-51v-26,4,-13,45,-16,70v27,-4,70,10,74,-19","w":192},"S":{"d":"68,-146v59,0,100,7,91,66v7,57,-13,80,-71,80r-66,0r0,-37r81,-1v16,0,17,-19,16,-37v5,-32,-15,-37,-46,-34v-49,4,-66,-24,-60,-74v-7,-49,16,-70,64,-70r68,0r0,38v-37,6,-102,-22,-92,36v-1,17,-1,33,15,33","w":172,"k":{"\u0141":-11,"T":7,"\u2019":13,"\u201d":13,"-":-6,"\u2013":-6,"\u2014":-6}},"T":{"d":"2,-216r0,-37r148,0r0,37r-54,0r0,216r-40,0r0,-216r-54,0","w":151,"k":{"\ufb04":11,"\ufb03":11,"\ufb00":11,"\u00fc":23,"\u00fb":23,"\u00f9":23,"\u00fa":23,"\u00f5":23,"\u00f6":23,"\u00f4":23,"\u00f2":23,"\u00f3":23,"\u00eb":23,"\u00ea":23,"\u00e8":23,"\u00e9":23,"\u00e7":23,"\u00e5":20,"\u00e3":20,"\u00e4":20,"\u00e2":20,"\u00e0":20,"\u00e1":20,"\u00d9":-5,"\u00db":-5,"\u00da":-5,"\u00dc":-5,"\u017e":30,"\u00ff":23,"\u00fd":23,"\u0161":21,"\ufb02":11,"\ufb01":11,"\u00f8":23,"\u00e6":20,"\u00df":11,"\u0153":23,"\u201d":-7,"\u2019":-7,"\u2026":20,"}":-7,"z":30,"y":23,"u":23,"s":21,"q":23,"o":23,"g":23,"f":11,"e":23,"d":23,"c":23,"a":20,"]":-7,"U":-5,".":20,",":20,")":-7,"'":-9,"\u00ef":-14,"\u00ec":-18,"\u0131":27,"\u0141":5,"\u2122":-18,"x":22,"w":23,"v":22,"r":23,"p":25,"n":23,"m":23,"V":-11,"T":-9,"J":29,"?":-11,"7":-14,"1":-16,"\/":18,"\"":-9}},"U":{"d":"101,0v-46,0,-78,-5,-79,-47r0,-206r40,0r0,197v-2,21,20,20,39,20v19,0,38,1,38,-20r0,-197r41,0r0,206v-2,41,-33,47,-79,47","w":201},"V":{"d":"4,-253r41,0r28,199v1,25,33,24,36,3r31,-202r41,0r-36,208v-4,60,-99,66,-109,0","w":184,"k":{"\u2026":18,".":18,",":18,"'":-11,"\"":-11,"\u00ef":-11,"\u00ec":-18,"\u2122":-16,"V":-14,"T":-7,"J":13,"7":-16,"1":-13,"\/":7}},"W":{"d":"261,-62v16,67,-78,78,-121,46v-40,33,-135,19,-118,-46r0,-191r40,0r0,200v1,14,14,16,30,16v18,0,29,-3,29,-23r0,-193r41,0r0,193v-2,20,11,24,29,23v20,3,30,-4,30,-27r0,-189r40,0r0,191","w":282},"X":{"d":"71,-165v1,24,35,23,41,0r22,-88r40,0v-16,42,-12,100,-47,124v35,21,33,89,49,129r-42,0r-22,-93v-4,-22,-34,-23,-40,0r-23,93r-42,0v16,-42,14,-108,50,-129v-36,-22,-32,-82,-48,-124r40,0","w":183,"k":{"\u00ec":-7}},"Y":{"d":"173,-45v2,58,-77,44,-136,45r0,-37r79,-1v23,-1,16,-31,16,-53v-62,2,-116,5,-116,-59r0,-103r41,0r0,109v1,24,34,17,60,17v9,0,16,-8,16,-19r0,-107r40,0r0,208","w":194},"Z":{"d":"155,0v-60,-1,-140,13,-140,-45v0,-70,3,-110,77,-100v32,4,33,-23,29,-54v-4,-31,-66,-11,-99,-16r0,-38r74,0v63,-9,69,37,65,102v-2,38,-40,45,-86,42v-27,-2,-20,28,-20,53v0,35,66,13,100,19r0,37","w":173,"k":{"\"":-9,"'":-9}},"[":{"d":"20,17r0,-225v0,-38,30,-48,69,-45r0,34v-18,-1,-35,0,-34,18r0,210v-1,18,15,19,34,18r0,34v-39,2,-69,-6,-69,-44","w":94,"k":{"j":-32,"7":-11,"1":-13}},"\\":{"d":"36,-253r131,253r-36,0r-131,-253r36,0","w":167},"]":{"d":"75,-208r0,225v0,38,-31,47,-70,44r0,-34v18,1,36,0,35,-18r0,-210v1,-18,-16,-19,-35,-18r0,-34v39,-3,70,7,70,45","w":94},"_":{"d":"171,45r0,25r-182,0r0,-25r182,0","w":160,"k":{"j":-55}},"a":{"d":"34,-195r66,0v76,-3,53,79,56,145v2,51,-43,50,-94,50v-37,0,-51,-26,-51,-72v0,-52,43,-57,96,-54v7,1,13,-7,11,-18v-6,-28,-56,-10,-84,-15r0,-36xm85,-35v18,0,33,-4,33,-21r0,-35v-33,3,-75,-13,-69,34v-2,19,16,22,36,22","w":172,"k":{"\u2019":6,"\u201d":6}},"b":{"d":"95,0v-47,1,-73,-2,-73,-51r0,-202r38,0r0,58v57,-4,109,3,107,55v-3,73,13,157,-72,140xm129,-57v-5,-49,19,-109,-33,-102v-21,-2,-38,1,-36,21v3,45,-19,111,34,103v19,1,37,-3,35,-22","w":183,"k":{"\u2019":11,"\u201d":11}},"c":{"d":"54,-139v0,44,-19,113,35,103r45,0r0,36v-64,2,-118,5,-118,-61r0,-83v-1,-58,57,-52,117,-51r0,36v-31,3,-79,-12,-79,20","w":142,"k":{"\"":-13,":":-7,";":-7}},"d":{"d":"89,0v-85,16,-72,-65,-72,-140v0,-52,49,-59,106,-55r0,-58r39,0r0,202v-2,49,-26,52,-73,51xm87,-159v-53,-6,-27,53,-32,102v-1,20,16,22,35,22v52,0,30,-59,33,-103v2,-20,-15,-23,-36,-21","w":183},"e":{"d":"54,-69v-10,45,46,31,87,33r0,36v-70,2,-125,6,-125,-67r0,-78v3,-39,26,-55,73,-50v58,-6,75,20,72,79v-3,51,-47,48,-107,47xm90,-160v-20,0,-35,2,-36,20r0,36v35,-1,76,11,69,-37v-2,-16,-14,-19,-33,-19","k":{",":15,".":15,"\u2026":15}},"f":{"d":"118,-217v-27,1,-58,-6,-58,22r0,40r58,0r0,35r-58,0r0,120r-38,0r0,-199v0,-55,42,-56,96,-54r0,36","w":124,"k":{"\u00ae":-23,"\u2122":-16,"7":-17,"1":-13,"\u2019":-9,"\u201d":-9,",":31,".":31,"\u2026":31,"z":5,"\u017e":5}},"g":{"d":"89,-195v47,-1,73,2,73,51r0,152v0,68,-60,50,-121,53r0,-35v32,-4,86,15,82,-26v-56,4,-108,-2,-106,-55v3,-73,-14,-158,72,-140xm55,-138v4,50,-20,107,32,102v21,2,38,-1,36,-21v-3,-44,19,-103,-33,-103v-19,0,-36,2,-35,22","w":179,"k":{"j":-22,"\u2019":2,"\u201d":2}},"h":{"d":"60,-195v58,-5,107,5,107,54r0,141r-38,0r-1,-143v-3,-15,-11,-16,-32,-16v-21,0,-36,1,-36,20r0,139r-38,0r0,-253r38,0r0,58","w":186,"k":{"\u2019":2,"\u201d":2}},"i":{"d":"60,-195r0,195r-38,0r0,-195r38,0xm60,-253r0,37r-38,0r0,-37r38,0","w":81},"j":{"d":"60,8v-1,51,-31,55,-82,53r0,-35v22,-1,45,5,44,-20r0,-201r38,0r0,203xm60,-253r0,37r-38,0r0,-37r38,0","w":81,"k":{"j":-16}},"k":{"d":"60,-253r0,133v20,1,37,1,42,-16r16,-59r39,0v-15,33,-9,77,-45,91r0,2v39,14,34,67,51,102r-39,0r-20,-67v-6,-21,-21,-18,-44,-18r0,85r-38,0r0,-253r38,0","w":168},"l":{"d":"90,0v-51,5,-70,-17,-70,-66r0,-187r38,0r0,201v1,16,15,17,32,17r0,35","w":93,"k":{"\u2014":13,"\u2013":13,"\u201d":14,"\u2019":14,"\u2026":-7,";":-13,":":-13,".":-7,"-":13,",":-7,"x":-7,"v":5}},"m":{"d":"183,-160v-18,0,-30,3,-30,22r0,138r-39,0r0,-138v0,-19,-11,-21,-29,-22v-19,-1,-27,7,-27,28r0,132r-38,0v7,-82,-31,-195,66,-195v26,0,35,0,48,11v11,-11,22,-11,47,-11v99,0,58,112,66,195r-38,0r0,-144v-1,-13,-12,-17,-26,-16","w":267,"k":{"\u2019":2,"\u201d":2}},"n":{"d":"127,-131v0,-23,-8,-29,-35,-29v-25,0,-34,4,-34,29r0,131r-38,0v6,-87,-30,-213,73,-195v101,-17,66,108,72,195r-38,0r0,-131","w":184,"k":{"\u2019":2,"\u201d":2}},"o":{"d":"162,-98v0,74,-6,98,-73,98v-66,0,-73,-24,-73,-98v0,-75,7,-97,73,-97v66,0,73,23,73,97xm54,-98v0,47,-8,63,35,63v42,0,35,-16,35,-63v0,-47,7,-62,-35,-62v-42,0,-35,15,-35,62","w":178,"k":{"\u2019":11,"\u201d":11}},"p":{"d":"95,-195v84,-15,72,62,72,140v0,52,-50,59,-107,55r0,61r-38,0r0,-205v2,-49,26,-52,73,-51xm96,-36v53,7,28,-54,33,-102v2,-19,-16,-23,-35,-22v-53,-8,-31,58,-34,103v-1,20,15,23,36,21","w":183,"k":{"\u2019":11,"\u201d":11}},"q":{"d":"90,-195v47,-1,73,2,73,51r0,205r-38,0r0,-61v-57,4,-109,-3,-107,-55v3,-73,-13,-157,72,-140xm57,-138v4,50,-20,107,32,102v21,2,38,-1,36,-21v-3,-45,19,-111,-34,-103v-19,-1,-35,2,-34,22","w":185,"k":{"\u201d":7,"\u2019":7,"j":-25}},"r":{"d":"125,-159v-28,2,-68,-10,-67,20r0,139r-38,0r0,-145v0,-56,49,-50,105,-50r0,36","w":125,"k":{"\u00e5":7,"\u00e3":7,"\u00e4":7,"\u00e2":7,"\u00e0":7,"\u00e1":7,"\u00e6":7,"\u2014":10,"\u2013":10,"\u201d":-13,"\u2019":-13,"\u2026":32,"a":7,";":-9,":":-9,".":32,"-":10,",":32,"'":-13,"\"":-13,"\u00ae":-16,"v":-13}},"s":{"d":"18,-36v36,-5,91,17,91,-27v0,-22,-25,-18,-46,-18v-32,0,-49,-21,-49,-55v0,-64,58,-61,121,-59r0,36v-34,5,-82,-17,-82,27v0,21,24,15,44,16v40,1,50,25,50,65v0,64,-67,49,-129,51r0,-36","w":157,"k":{"\u2019":9,"\u201d":9}},"t":{"d":"18,-58r0,-179r38,0r0,42r52,0r0,35r-52,0r0,100v-5,28,27,24,52,24r0,36v-52,1,-89,2,-90,-58","w":115,"k":{"\u2026":-7,";":-7,":":-7,".":-7,",":-7,"'":-7,"\"":-7,"\u00ae":-14}},"u":{"d":"58,-64v-2,24,9,29,34,29v27,0,35,-5,35,-29r0,-131r38,0v-6,87,29,212,-72,195v-103,18,-67,-108,-73,-195r38,0r0,131","w":184,"k":{"c":-5,"d":-5,"e":-5,"g":-5,"o":-5,"q":-5,"\u0153":-5,"\u00f8":-5,"\u00e7":-5,"\u00e9":-5,"\u00e8":-5,"\u00ea":-5,"\u00eb":-5,"\u00f3":-5,"\u00f2":-5,"\u00f4":-5,"\u00f6":-5,"\u00f5":-5}},"v":{"d":"133,-38v-5,53,-87,56,-98,0r-30,-157r40,0r25,148v1,18,26,16,29,0r27,-148r39,0","w":170,"k":{"\u2026":17,".":17,",":17,"J":11}},"w":{"d":"58,-51v3,21,56,26,56,-6r0,-138r39,0r0,138v0,19,12,22,30,22v19,0,26,-7,26,-28r0,-132r38,0v-7,84,32,206,-66,195v-25,-3,-35,-1,-47,-12v-13,11,-22,9,-48,12v-97,11,-58,-113,-66,-195r38,0r0,144","w":265},"x":{"d":"96,-67v-4,-16,-22,-16,-28,0r-24,67r-40,0v17,-33,19,-85,54,-100v-35,-12,-33,-64,-49,-95r39,0r21,65v2,15,21,15,26,0r20,-65r39,0v-16,32,-13,83,-48,95v35,15,36,68,54,100r-40,0","w":163,"k":{"\ufb04":5,"\ufb03":5,"\ufb00":5,"\ufb02":5,"\ufb01":5,"\u00df":5,"f":5}},"y":{"d":"91,-36v21,0,36,-1,36,-20r0,-139r38,0r0,209v2,56,-63,47,-121,47r0,-35v33,-4,86,15,83,-26v-57,4,-107,-3,-107,-54r0,-141r38,0r0,142v3,15,11,17,33,17","w":186,"k":{"j":-18}},"z":{"d":"150,-136v0,48,-29,59,-78,55v-16,-1,-19,9,-19,25v0,33,53,16,85,20r0,36v0,0,-124,12,-124,-69v0,-36,29,-51,72,-47v17,1,26,-4,26,-23v0,-34,-51,-15,-83,-20r0,-36v63,-2,121,-6,121,59","w":161},"{":{"d":"38,-95v30,6,31,61,28,103v-1,22,13,27,36,25r0,27v-40,3,-69,-5,-69,-43v-1,-40,7,-98,-31,-97r0,-32v63,0,-5,-146,73,-140r27,0r0,27v-47,-10,-35,38,-36,78v0,29,-13,44,-28,52","w":106,"k":{"j":-32,"7":-11,"1":-13}},"|":{"d":"53,-253r0,314r-30,0r0,-314r30,0","w":76,"k":{"j":-21}},"}":{"d":"69,-95v-29,-9,-31,-60,-28,-104v1,-22,-13,-29,-36,-26r0,-27v40,-4,69,6,69,44v1,40,-7,98,31,96r0,32v-63,0,5,146,-73,140r-27,0r0,-27v71,17,7,-115,64,-128","w":106},"\u20ac":{"d":"168,0v-67,-2,-152,18,-137,-66r0,-19r-29,0r0,-33r29,0r0,-19r-29,0r0,-33r29,0v-6,-60,10,-91,73,-83r63,0r0,37r-80,1v-20,0,-16,25,-16,45r76,0r0,33r-76,0r0,19r61,0r0,33r-61,0v-1,28,-3,48,31,48r66,0r0,37","w":176},"\u201a":{"d":"52,-46r-19,81r-28,0r7,-81r40,0","w":60},"\u0192":{"d":"-20,26v26,1,40,0,40,-22r0,-210v0,-47,43,-50,96,-47r0,36v-27,1,-58,-7,-58,22r0,40r58,0r0,35r-58,0v-9,79,38,198,-78,181r0,-35","w":124,"k":{"1":-13}},"\u201e":{"d":"52,-46r-19,81r-28,0r7,-81r40,0xm108,-46r-19,81r-27,0r6,-81r40,0","w":117},"\u2026":{"d":"60,-46r0,46r-40,0r0,-46r40,0xm139,-46r0,46r-41,0r0,-46r41,0xm217,-46r0,46r-40,0r0,-46r40,0","w":237},"\u2020":{"d":"153,-169r-58,0r0,202r-35,0r0,-202r-56,0r0,-32r56,0r0,-52r35,0r0,52r58,0r0,32","w":156},"\u2021":{"d":"153,-103r-58,0r0,136r-35,0r0,-136r-56,0r0,-32r56,0r0,-34r-56,0r0,-32r56,0r0,-52r35,0r0,52r58,0r0,32r-58,0r0,34r58,0r0,32","w":156},"\u2030":{"d":"37,-221v0,30,-14,79,19,73v33,7,14,-42,19,-73v-1,-12,-38,-12,-38,0xm44,0r150,-253r30,0r-150,253r-30,0xm101,-160v3,36,-27,36,-61,36v-44,0,-29,-61,-29,-105v0,-28,31,-24,60,-24v41,0,28,54,30,93xm192,-97v0,32,-14,77,19,73v34,5,19,-44,19,-74v0,-12,-38,-11,-38,1xm256,-36v3,39,-27,36,-60,36v-44,0,-29,-63,-29,-105v0,-28,33,-24,60,-24v41,0,26,54,29,93xm305,-97v0,32,-14,77,19,73v34,5,19,-44,19,-74v0,-12,-38,-11,-38,1xm369,-36v3,39,-27,36,-60,36v-44,0,-29,-63,-29,-105v0,-28,33,-24,60,-24v41,0,26,54,29,93","w":380},"\u2039":{"d":"82,-44v-25,-24,-72,-33,-77,-76v4,-45,52,-52,77,-77r0,38v-14,14,-61,25,-40,50r40,27r0,38","w":92},"\u0152":{"d":"155,-10v-38,18,-137,23,-137,-37r0,-159v1,-42,33,-49,80,-47v26,1,47,-2,59,10v22,-20,78,-6,118,-10r0,38r-81,0v-26,3,-11,45,-15,70r95,0r0,36r-95,0v4,29,-17,71,29,71r68,0r0,38v-41,-3,-97,8,-121,-10xm99,-217v-20,0,-41,0,-41,20r0,142v-1,19,21,19,40,19v19,0,40,1,40,-19r0,-142v2,-20,-20,-20,-39,-20","w":291,"k":{"\u00ec":-9}},"\u2018":{"d":"7,-172r19,-81r28,0r-6,81r-41,0","w":64,"k":{"T":-13,"J":38}},"\u2019":{"d":"57,-253r-18,81r-28,0r6,-81r40,0","w":64,"k":{"\u0161":13,"s":13,"r":14,"e":8,"d":11,"T":-9}},"\u201c":{"d":"63,-172r19,-81r28,0r-6,81r-41,0xm7,-172r19,-81r28,0r-6,81r-41,0","w":120,"k":{"T":-13,"J":38}},"\u201d":{"d":"57,-253r-18,81r-28,0r6,-81r40,0xm113,-253r-18,81r-28,0r6,-81r40,0","w":120},"\u2022":{"d":"53,-175v38,0,49,17,49,53v0,26,-17,41,-49,39v-29,-2,-40,-21,-40,-53v0,-23,16,-39,40,-39","w":114},"\u2013":{"d":"181,-117r0,36r-165,0r0,-36r165,0","w":196,"k":{"7":38,"Z":-9,"\u017d":-9}},"\u2014":{"d":"269,-113r0,29r-253,0r0,-29r253,0","w":285,"k":{"7":38,"Z":-9,"\u017d":-9}},"\u02dc":{"d":"20,-213v14,-24,49,-67,74,-27v12,9,16,-12,22,-17r29,0v-13,23,-44,66,-72,28v-9,-13,-17,12,-24,16r-29,0","w":219},"\u2122":{"d":"11,-236r0,-17r66,0r0,17r-23,0r0,84r-20,0r0,-84r-23,0xm141,-247v22,-14,59,-5,52,26r0,69r-19,0r0,-78v-1,-5,-4,-8,-12,-7v-7,0,-11,2,-11,10r0,75r-19,0r0,-75v0,-9,-5,-10,-13,-10v-11,0,-10,6,-10,16r0,69r-18,0v6,-41,-19,-106,30,-101v8,0,15,1,20,6","w":210},"\u203a":{"d":"11,-197v25,24,71,33,76,76v-4,45,-51,52,-76,77r0,-38v15,-13,38,-19,46,-39v-8,-19,-32,-25,-46,-38r0,-38","w":92},"\u0153":{"d":"139,-12v-12,13,-27,12,-52,12v-65,1,-71,-24,-71,-98v0,-75,7,-97,73,-97v25,0,41,-1,53,10v38,-19,126,-21,126,37v0,60,-7,85,-76,79r-30,0v-11,45,46,31,86,33r0,36v-38,-2,-88,8,-109,-12xm54,-98v0,47,-8,62,35,62v43,0,35,-15,35,-62v0,-46,8,-61,-35,-61v-43,0,-35,15,-35,61xm197,-159v-20,-2,-35,0,-35,19r0,36v35,-1,68,11,68,-36v0,-17,-14,-21,-33,-19","w":279,"k":{",":15,".":15,"\u2026":15}},"\u00a2":{"d":"53,-167v0,41,-19,108,32,98r43,0r0,34r-36,0r0,35r-30,0r0,-35v-61,1,-46,-81,-46,-140v0,-27,17,-45,46,-45r0,-33r30,0r0,33r35,0r0,34v-29,3,-74,-11,-74,19","w":137},"\u00a3":{"d":"39,-208v-2,-48,52,-47,106,-45r0,38v-25,3,-66,-11,-65,18r0,52r47,0r0,33r-47,0r0,75r91,0r0,37r-157,0r0,-36v13,0,26,2,25,-12r0,-64r-24,0r0,-33r24,0r0,-63","w":174},"\u00a4":{"d":"168,0v-67,-2,-152,18,-137,-66r0,-19r-29,0r0,-33r29,0r0,-19r-29,0r0,-33r29,0v-6,-60,10,-91,73,-83r63,0r0,37r-80,1v-20,0,-16,25,-16,45r76,0r0,33r-76,0r0,19r61,0r0,33r-61,0v-1,28,-3,48,31,48r66,0r0,37","w":176},"\u00a5":{"d":"172,-253v-3,68,19,157,-59,149r0,14r35,0r0,26r-35,0r0,16r35,0r0,26r-35,0r0,22r-40,0r0,-22r-35,0r0,-26r35,0r0,-16r-35,0r0,-26r35,0r0,-14v-78,7,-56,-80,-59,-149r41,0r0,96v3,17,18,13,38,16v62,9,32,-67,38,-112r41,0","w":186},"\u00a6":{"d":"53,-57r0,118r-30,0r0,-118r30,0xm53,-136r-30,0r0,-117r30,0r0,117","w":76},"\u00a7":{"d":"136,-221v-37,5,-91,-17,-91,31v0,20,20,23,41,20v49,-7,67,52,47,90v17,8,21,29,21,56v0,63,-76,48,-139,49r0,-32r69,0v23,2,35,-4,35,-31v0,-20,-21,-23,-42,-20v-50,6,-67,-46,-50,-91v-34,-36,-17,-121,54,-104r55,0r0,32xm86,-138v-22,0,-30,7,-30,30v0,15,12,20,29,19v20,-1,22,-13,21,-31v0,-11,-6,-18,-20,-18","w":166},"\u00a9":{"d":"166,-107r29,0v-1,30,-23,55,-60,55v-34,0,-61,-31,-61,-73v0,-43,21,-78,64,-78v33,-1,54,20,57,53r-29,0v-3,-16,-13,-24,-28,-24v-23,0,-33,19,-33,49v0,43,53,60,61,18xm11,-120v0,-80,49,-136,129,-136v73,0,123,58,123,125v0,73,-46,134,-127,134v-76,0,-125,-59,-125,-123xm137,-227v-61,0,-96,47,-96,104v0,58,41,97,95,97v59,0,97,-43,97,-105v0,-53,-37,-96,-96,-96","w":273},"\u00aa":{"d":"9,-180v-4,-35,14,-45,49,-41v4,0,4,-2,4,-5v-3,-13,-30,-3,-43,-6r0,-21v34,0,65,-7,65,34v0,37,2,71,-42,62v-18,1,-31,-6,-33,-23xm39,-178v22,3,27,-5,24,-24v-16,0,-37,-4,-33,16v0,5,3,8,9,8","w":96},"\u00ab":{"d":"82,-44v-25,-24,-72,-33,-77,-76v4,-45,52,-52,77,-77r0,38v-14,14,-61,25,-40,50r40,27r0,38xm159,-44v-25,-24,-71,-33,-76,-76v4,-45,51,-52,76,-77r0,38v-13,14,-60,25,-39,50r39,27r0,38","w":170},"\u00ac":{"d":"16,-145r138,0r0,91r-37,0r0,-55r-101,0r0,-36","w":170},"\u00ae":{"d":"9,-174v0,-47,32,-81,76,-81v49,0,77,36,77,76v0,43,-30,80,-77,80v-46,0,-76,-34,-76,-75xm85,-234v-35,0,-55,24,-55,61v0,31,23,54,55,54v34,0,56,-23,56,-61v0,-31,-25,-54,-56,-54xm55,-135r0,-82v28,0,63,-4,63,23v0,15,-5,21,-19,24r19,35r-22,0r-17,-33r-4,0r0,33r-20,0xm75,-202r0,18v11,0,23,3,23,-10v0,-10,-13,-8,-23,-8"},"\u00b0":{"d":"30,-210v0,13,7,22,21,22v14,0,22,-9,22,-22v0,-12,-7,-21,-22,-21v-14,0,-21,8,-21,21xm7,-210v0,-25,18,-43,44,-43v27,0,44,19,44,43v0,25,-18,44,-44,44v-25,0,-44,-18,-44,-44","w":102},"\u00b1":{"d":"67,-188r37,0r0,43r51,0r0,36r-51,0r0,42r-37,0r0,-42r-51,0r0,-36r51,0r0,-43xm155,-49r0,35r-139,0r0,-35r139,0"},"\u00b2":{"d":"16,-163v-3,-35,20,-40,55,-37v10,0,8,-15,7,-23v-1,-9,-31,-11,-32,2r0,5r-25,0v-6,-36,22,-36,55,-36v24,0,33,23,28,51v2,25,-26,27,-54,25v-7,-1,-9,7,-8,15v-5,25,37,10,57,14r0,24r-54,0v-20,4,-32,-18,-29,-40","w":117},"\u00b3":{"d":"19,-253v47,-2,91,-4,78,51v-1,6,-3,10,-8,13v17,15,16,66,-18,66r-53,0r0,-24v22,-4,62,15,55,-24v-6,-13,-36,-3,-52,-6r0,-23v21,-4,58,14,51,-23v-7,-13,-36,-3,-53,-6r0,-24","w":111},"\u00b5":{"d":"92,-36v18,0,38,-1,37,-19r0,-140r38,0v-6,85,31,212,-74,195r-33,0r0,61r-38,0r0,-256r38,0r0,143v1,16,15,16,32,16","w":186},"\u03bc":{"d":"92,-36v18,0,38,-1,37,-19r0,-140r38,0v-6,85,31,212,-74,195r-33,0r0,61r-38,0r0,-256r38,0r0,143v1,16,15,16,32,16","w":186},"\u00b6":{"d":"8,-171v-5,-47,4,-83,51,-82r149,0r0,34r-26,0r0,219r-35,0r0,-219v-19,-2,-31,7,-31,24r0,195r-36,0r0,-112v2,-15,-11,-19,-29,-19v-23,0,-41,-17,-43,-40","w":214},"\u00b9":{"d":"7,-253v28,-2,46,4,46,36r0,94r-25,0r-1,-100v-2,-10,-10,-5,-20,-6r0,-24","w":72},"\u00ba":{"d":"39,-157v-31,4,-26,-40,-26,-71v0,-25,25,-25,51,-25v31,0,26,40,26,70v0,25,-24,28,-51,26xm42,-232v-16,2,-6,31,-8,46v-1,11,16,7,26,8v17,-2,7,-30,9,-46v1,-13,-16,-7,-27,-8","w":102},"\u00bb":{"d":"89,-197v25,24,71,33,76,76v-4,45,-51,52,-76,77r0,-38v15,-13,38,-19,46,-39v-8,-19,-32,-25,-46,-38r0,-38xm11,-197v25,24,71,33,76,76v-4,45,-51,52,-76,77r0,-38v15,-13,38,-19,46,-39v-8,-19,-32,-25,-46,-38r0,-38","w":170},"\u00bc":{"d":"7,0r150,-253r30,0r-150,253r-30,0xm200,-44v-37,2,-63,1,-63,-37r0,-48r26,0r0,53v0,14,24,6,37,8r0,-61r25,0r0,129r-25,0r0,-44xm10,-253v29,-3,47,6,46,36r0,94r-26,0r0,-100v-2,-9,-10,-5,-20,-6r0,-24","w":243},"\u00bd":{"d":"10,-253v29,-3,47,6,46,36r0,94r-26,0r0,-100v-2,-9,-10,-5,-20,-6r0,-24xm125,-40v-5,-36,20,-40,55,-37v11,1,6,-13,7,-23v-4,-9,-37,-11,-33,7r-25,0v-6,-35,22,-36,55,-36v24,0,29,22,29,51v0,25,-27,27,-55,25v-7,-1,-9,7,-8,15v-3,25,37,10,57,14r0,24v-45,1,-91,8,-82,-40xm7,0r150,-253r30,0r-150,253r-30,0","w":227},"\u00be":{"d":"17,-253v47,-2,91,-4,78,51v-1,6,-3,10,-8,13v17,15,16,66,-18,66r-53,0r0,-24v22,-4,62,15,55,-24v-6,-13,-36,-3,-52,-6r0,-23v21,-4,58,14,51,-23v-7,-13,-36,-3,-53,-6r0,-24xm41,0r149,-253r30,0r-149,253r-30,0xm233,-44v-37,2,-62,1,-62,-37r0,-48r25,0r0,53v0,14,24,6,37,8r0,-61r26,0r0,129r-26,0r0,-44","w":276},"\u00c6":{"d":"277,0v-61,-2,-137,14,-137,-47r0,-62r-78,0r0,109r-40,0r0,-205v-6,-61,94,-53,136,-40v25,-15,78,-5,118,-8r0,38r-81,0v-26,3,-11,45,-15,70r96,0r0,36r-96,0v4,30,-16,71,30,71r67,0r0,38xm140,-199v-1,-17,-20,-18,-38,-18v-19,0,-40,0,-40,20r0,52r78,0r0,-54","w":293,"k":{"\u00ec":-9}},"\u00d0":{"d":"189,-48v2,66,-93,45,-158,48r0,-109r-27,0r0,-36r27,0r0,-61v1,-41,32,-47,78,-47v47,0,80,6,80,47r0,158xm110,-217v-19,0,-39,0,-39,20r0,52r35,0r0,36r-35,0r0,72v28,-4,77,12,77,-18r0,-142v1,-20,-19,-20,-38,-20","w":206},"\u00d7":{"d":"38,-201r47,47r46,-47r28,27r-46,47r45,45r-26,26r-46,-46r-46,46r-26,-27r46,-46r-47,-46"},"\u00d8":{"d":"180,-47v4,58,-74,48,-126,45r-11,20r-36,0r20,-38v-19,-46,-4,-126,-8,-186v-4,-57,76,-49,127,-44r11,-21r36,0r-20,40v16,48,3,124,7,184xm129,-214v-23,-5,-70,-10,-69,17r0,118xm71,-38v25,3,69,10,69,-17r0,-118","w":200},"\u00de":{"d":"62,-206v70,-7,118,-5,118,76v0,37,2,75,-32,81v-21,4,-59,1,-86,2r0,47r-40,0r0,-253r40,0r0,47xm100,-171v-21,0,-38,-1,-38,19r0,69r60,-1v19,0,17,-24,17,-44v0,-30,-5,-43,-39,-43","w":190,"k":{"T":16,"J":9}},"\u00df":{"d":"176,-70v0,63,-34,76,-100,70r0,-36r44,-1v27,-5,29,-85,-12,-72r-32,0r0,-35v33,0,67,8,60,-37v3,-32,-11,-36,-42,-36v-19,0,-36,3,-36,22r0,195r-38,0r0,-202v2,-42,32,-51,81,-51v52,0,72,14,72,67v0,32,-5,46,-25,58v23,8,28,27,28,58","w":192},"\u00e6":{"d":"156,-82v-2,29,-1,46,32,46r54,0r0,36v-38,-2,-88,8,-108,-12v-33,24,-133,20,-123,-37v-3,-62,28,-70,96,-66v12,2,12,-16,11,-29v-4,-27,-56,-11,-84,-15r0,-36v36,2,84,-7,104,11v35,-20,130,-21,124,37v7,68,-37,68,-106,65xm191,-159v-32,-6,-39,13,-35,44v30,-3,72,11,69,-26v-1,-16,-14,-20,-34,-18xm83,-36v17,2,35,-1,35,-18r0,-27v-31,2,-72,-9,-69,24v-2,17,14,24,34,21","w":273,"k":{",":15,".":15,"\u2026":15}},"\u00f0":{"d":"89,0v-81,15,-72,-57,-72,-129v0,-52,50,-58,106,-54v2,-23,-4,-40,-30,-36r0,22r-31,0r0,-22r-22,0r0,-34r22,0r0,-19r31,0r0,19v45,-1,69,5,69,53r0,149v-2,49,-26,52,-73,51xm87,-150v-51,0,-29,47,-32,93v-1,20,16,23,35,22v49,7,30,-51,33,-94v1,-20,-16,-21,-36,-21","w":183},"\u00f7":{"d":"155,-145r0,36r-139,0r0,-36r139,0xm106,-88r0,38r-39,0r0,-38r39,0xm67,-167r0,-38r39,0r0,38r-39,0"},"\u00f8":{"d":"161,-47v3,50,-51,51,-103,46r-8,19r-33,0r15,-31v-27,-22,-14,-86,-16,-132v-2,-53,51,-53,105,-49r10,-20r32,0r-16,33v26,23,11,88,14,134xm105,-159v-21,-2,-52,-5,-51,19r0,87xm75,-36v20,2,49,4,48,-18r0,-82","w":179,"k":{"\u2019":11,"\u201d":11}},"\u00fe":{"d":"60,-194v54,-4,109,-5,107,50v-3,68,18,148,-60,144r-47,0r0,61r-38,0r0,-314r38,0r0,59xm96,-36v53,7,28,-54,33,-102v2,-19,-16,-22,-35,-21v-54,-10,-30,59,-34,102v-2,20,15,23,36,21","w":183,"k":{"\u2019":11,"\u201d":11}},"\u0142":{"d":"102,0v-66,7,-75,-36,-70,-102r-32,23r0,-41r32,-23r0,-110r38,0r0,86r38,-27r0,40r-38,28r0,74v1,16,14,17,32,16r0,36","w":115},"\u0141":{"d":"161,0v-59,-2,-134,14,-130,-48r0,-43r-29,22r0,-44r29,-21r0,-119r41,0r0,94r51,-37r0,43r-51,36v4,33,-17,80,30,80r59,0r0,37","w":164,"k":{"\u2122":29,"x":-13,"V":11,"T":27,"J":-20,"7":49,"4":36,"\/":-13,"*":29,"\"":27,"'":27,"Y":9,"\u00dd":9,"\u0178":9,"Z":-11,"\u017d":-11,":":-14,";":-14,"a":-11,"\u00e6":-11,"\u00e1":-11,"\u00e0":-11,"\u00e2":-11,"\u00e4":-11,"\u00e3":-11,"\u00e5":-11,"\u2019":34,"\u201d":34,",":-11,".":-11,"\u2026":-11}},"\u2212":{"d":"155,-145r0,36r-139,0r0,-36r139,0"},"\u2044":{"d":"3,0r150,-253r30,0r-150,253r-30,0","w":207},"\u02da":{"d":"109,-250v0,28,-13,39,-41,37v-21,-1,-30,-15,-29,-37v1,-20,15,-31,41,-31v18,0,29,15,29,31xm74,-235v10,0,12,-4,12,-12v0,-6,-3,-11,-12,-11v-10,0,-14,5,-13,13v0,6,4,10,13,10","w":189},"\u00b7":{"d":"47,-150r0,46r-40,0r0,-46r40,0","w":76},"\u02c6":{"d":"24,-212v15,-22,46,-73,74,-35r26,35r-29,0v-8,-7,-17,-35,-27,-21r-15,21r-29,0","w":193},"\u00af":{"d":"22,-213r0,-27r108,0r0,27r-108,0","w":194},"\u02c7":{"d":"94,-228v-28,39,-60,-11,-75,-34r30,0v8,7,17,34,26,21r15,-21r30,0","w":193},"\u02d9":{"d":"94,-254r0,41r-41,0r0,-41r41,0","w":182},"\u02d8":{"d":"114,-253v4,33,-15,40,-48,40v-19,0,-33,-15,-30,-40r22,0v-3,17,7,22,24,20v10,-1,10,-9,11,-20r21,0","w":195},"\u00a8":{"d":"65,-251r0,39r-39,0r0,-39r39,0xm134,-251r0,39r-38,0r0,-39r38,0","w":206},"~":{"d":"7,-78v17,-30,64,-90,96,-36v15,15,22,-14,30,-21r39,0v-18,32,-62,89,-96,35v-16,-12,-22,16,-30,22r-39,0","w":179},"\u00b4":{"d":"120,-260r-41,48r-32,0r32,-48r41,0","w":194},"`":{"d":"64,-212r-50,-48r41,0r41,48r-32,0","w":168},"^":{"d":"122,-212v-5,-9,-12,-8,-19,0r-27,35r-42,0v26,-31,67,-111,113,-56r43,56r-41,0","w":224},"\u02dd":{"d":"89,-260r-41,48r-31,0r31,-48r41,0xm152,-260r-41,48r-31,0r31,-48r41,0","w":204},"\u00b8":{"d":"49,-4r24,0v-2,11,2,14,14,14v19,0,25,11,24,28v3,26,-31,24,-57,23r0,-20v11,-2,32,6,34,-6v0,-7,-9,-3,-14,-4v-18,1,-28,-13,-25,-35","w":157},"\u02db":{"d":"100,61v-27,1,-52,3,-47,-27v-1,-18,11,-24,18,-34r30,0v-6,11,-20,17,-21,33v-1,10,12,5,20,6r0,22","w":149},"\u00bf":{"d":"83,58v-66,0,-73,-38,-68,-101v2,-25,18,-42,47,-43v16,-1,16,-19,15,-37r41,0v4,41,-6,68,-47,69v-16,1,-18,21,-16,39v-4,30,7,41,38,37v13,-1,17,-11,16,-26r39,0v5,46,-18,62,-65,62xm78,-149r0,-46r40,0r0,46r-40,0","w":149,"k":{"j":-43}},"\u00a1":{"d":"62,-123r0,181r-40,0r0,-181r40,0xm22,-149r0,-46r40,0r0,46r-40,0","w":83,"k":{"j":-32}},"\u00c4":{"d":"101,-253v46,0,79,6,79,47r0,206r-41,0r0,-93r-77,0r0,93r-40,0r0,-206v1,-41,32,-47,79,-47xm139,-197v1,-20,-19,-20,-38,-20v-19,0,-39,1,-39,20r0,68r77,0r0,-68xm85,-309r0,39r-38,0r0,-39r38,0xm155,-309r0,39r-39,0r0,-39r39,0","w":201},"\u00c5":{"d":"101,-253v46,0,79,6,79,47r0,206r-41,0r0,-93r-77,0r0,93r-40,0r0,-206v1,-41,32,-47,79,-47xm139,-197v1,-20,-19,-20,-38,-20v-19,0,-39,1,-39,20r0,68r77,0r0,-68xm137,-307v0,28,-14,40,-41,38v-21,-1,-32,-15,-30,-38v1,-20,16,-30,41,-30v18,0,30,14,30,30xm102,-291v10,0,13,-5,12,-13v0,-6,-3,-11,-12,-11v-10,0,-14,5,-13,14v0,6,4,10,13,10","w":201},"\u00c0":{"d":"101,-253v46,0,79,6,79,47r0,206r-41,0r0,-93r-77,0r0,93r-40,0r0,-206v1,-41,32,-47,79,-47xm139,-197v1,-20,-19,-20,-38,-20v-19,0,-39,1,-39,20r0,68r77,0r0,-68xm86,-270r-50,-48r42,0r40,48r-32,0","w":201},"\u00c3":{"d":"101,-253v46,0,79,6,79,47r0,206r-41,0r0,-93r-77,0r0,93r-40,0r0,-206v1,-41,32,-47,79,-47xm139,-197v1,-20,-19,-20,-38,-20v-19,0,-39,1,-39,20r0,68r77,0r0,-68xm41,-270v14,-23,49,-68,74,-27v13,9,16,-12,22,-17r30,0v-14,22,-45,67,-72,28v-9,-13,-18,11,-24,16r-30,0","w":201},"\u00c2":{"d":"101,-253v46,0,79,6,79,47r0,206r-41,0r0,-93r-77,0r0,93r-40,0r0,-206v1,-41,32,-47,79,-47xm139,-197v1,-20,-19,-20,-38,-20v-19,0,-39,1,-39,20r0,68r77,0r0,-68xm52,-270v15,-22,46,-72,74,-34r27,34r-30,0v-8,-7,-13,-30,-26,-21r-15,21r-30,0","w":201},"\u00c1":{"d":"101,-253v46,0,79,6,79,47r0,206r-41,0r0,-93r-77,0r0,93r-40,0r0,-206v1,-41,32,-47,79,-47xm139,-197v1,-20,-19,-20,-38,-20v-19,0,-39,1,-39,20r0,68r77,0r0,-68xm159,-318r-41,48r-32,0r32,-48r41,0","w":201},"\u0160":{"d":"68,-146v59,0,100,7,91,66v7,57,-13,80,-71,80r-66,0r0,-37r81,-1v16,0,17,-19,16,-37v5,-32,-15,-37,-46,-34v-49,4,-66,-24,-60,-74v-7,-49,16,-70,64,-70r68,0r0,38v-37,6,-102,-22,-92,36v-1,17,-1,33,15,33xm111,-281v-28,38,-60,-11,-75,-34r30,0v8,7,17,34,26,21r15,-21r30,0","w":172,"k":{"\u0141":-11,"T":7,"\u2019":13,"\u201d":13,"-":-6,"\u2013":-6,"\u2014":-6}},"\u00dd":{"d":"173,-45v2,58,-77,44,-136,45r0,-37r79,-1v23,-1,16,-31,16,-53v-62,2,-116,5,-116,-59r0,-103r41,0r0,109v1,24,34,17,60,17v9,0,16,-8,16,-19r0,-107r40,0r0,208xm150,-316r-41,47r-32,0r32,-47r41,0","w":194},"\u0178":{"d":"173,-45v2,58,-77,44,-136,45r0,-37r79,-1v23,-1,16,-31,16,-53v-62,2,-116,5,-116,-59r0,-103r41,0r0,109v1,24,34,17,60,17v9,0,16,-8,16,-19r0,-107r40,0r0,208xm79,-309r0,39r-39,0r0,-39r39,0xm148,-309r0,39r-38,0r0,-39r38,0","w":194},"\u0161":{"d":"18,-36v36,-5,91,17,91,-27v0,-22,-25,-18,-46,-18v-32,0,-49,-21,-49,-55v0,-64,58,-61,121,-59r0,36v-34,5,-82,-17,-82,27v0,21,24,15,44,16v40,1,50,25,50,65v0,64,-67,49,-129,51r0,-36xm104,-224v-27,38,-59,-12,-74,-34r30,0v8,7,17,34,26,21r15,-21r30,0","w":157,"k":{"\u2019":9,"\u201d":9}},"\u00fd":{"d":"91,-36v21,0,36,-1,36,-20r0,-139r38,0r0,209v2,56,-63,47,-121,47r0,-35v33,-4,86,15,83,-26v-57,4,-107,-3,-107,-54r0,-141r38,0r0,142v3,15,11,17,33,17xm150,-260r-41,48r-32,0r31,-48r42,0","w":186,"k":{"j":-18}},"\u00ff":{"d":"91,-36v21,0,36,-1,36,-20r0,-139r38,0r0,209v2,56,-63,47,-121,47r0,-35v33,-4,86,15,83,-26v-57,4,-107,-3,-107,-54r0,-141r38,0r0,142v3,15,11,17,33,17xm77,-251r0,39r-39,0r0,-39r39,0xm146,-251r0,39r-38,0r0,-39r38,0","w":186,"k":{"j":-18}},"\u017d":{"d":"155,0v-60,-1,-140,13,-140,-45v0,-70,3,-110,77,-100v32,4,33,-23,29,-54v-4,-31,-66,-11,-99,-16r0,-38r74,0v63,-9,69,37,65,102v-2,38,-40,45,-86,42v-27,-2,-20,28,-20,53v0,35,66,13,100,19r0,37xm113,-284v-27,38,-61,-12,-74,-35r29,0v8,7,17,34,26,21r15,-21r30,0","w":173,"k":{"\"":-9,"'":-9}},"\u017e":{"d":"150,-136v0,48,-29,59,-78,55v-16,-1,-19,9,-19,25v0,33,53,16,85,20r0,36v0,0,-124,12,-124,-69v0,-36,29,-51,72,-47v17,1,26,-4,26,-23v0,-34,-51,-15,-83,-20r0,-36v63,-2,121,-6,121,59xm108,-228v-27,40,-60,-11,-75,-34r30,0v8,7,17,34,26,21r15,-21r30,0","w":161},"\u00c7":{"d":"18,-208v-4,-59,77,-43,136,-45r0,37r-80,1v-10,1,-16,7,-16,18r1,144v7,30,64,11,96,16r0,37r-57,0v-2,9,5,11,14,10v19,0,24,11,24,28v0,25,-31,24,-57,23r0,-20v11,-2,32,6,34,-6v0,-7,-9,-3,-14,-4v-16,0,-27,-11,-25,-31v-43,1,-56,-21,-56,-66r0,-142","w":164,"k":{"\u00ef":-14,"\u00ec":-13,"7":-14,"1":-9}},"\u00c9":{"d":"156,0v-61,-2,-138,15,-138,-47r0,-159v-4,-61,76,-46,137,-47r0,38r-82,0v-26,3,-11,45,-15,70r96,0r0,36r-96,0v4,30,-16,71,30,71r68,0r0,38xm145,-318r-41,48r-32,0r32,-48r41,0","k":{"\u00ec":-9}},"\u00d1":{"d":"101,-217v-19,0,-39,1,-39,20r0,197r-40,0r0,-206v1,-41,32,-47,79,-47v46,0,79,6,79,47r0,206r-41,0r0,-197v1,-20,-19,-20,-38,-20xm44,-270v13,-23,49,-68,74,-27v12,9,16,-12,22,-17r30,0v-14,22,-45,67,-72,28v-9,-14,-18,11,-24,16r-30,0","w":201},"\u00d6":{"d":"98,0v-47,0,-79,-5,-80,-47r0,-159v1,-42,33,-47,80,-47v47,0,81,5,81,47r0,159v-1,42,-34,47,-81,47xm99,-217v-20,0,-41,0,-41,20r0,142v-1,19,21,19,40,19v19,0,40,1,40,-19r0,-142v2,-20,-20,-20,-39,-20xm82,-309r0,39r-38,0r0,-39r38,0xm152,-309r0,39r-39,0r0,-39r39,0","w":196},"\u00d5":{"d":"98,0v-47,0,-79,-5,-80,-47r0,-159v1,-42,33,-47,80,-47v47,0,81,5,81,47r0,159v-1,42,-34,47,-81,47xm99,-217v-20,0,-41,0,-41,20r0,142v-1,19,21,19,40,19v19,0,40,1,40,-19r0,-142v2,-20,-20,-20,-39,-20xm40,-270v13,-23,49,-69,73,-27v13,9,16,-12,22,-17r30,0v-13,23,-44,66,-72,28v-9,-13,-17,12,-24,16r-29,0","w":196},"\u00d3":{"d":"98,0v-47,0,-79,-5,-80,-47r0,-159v1,-42,33,-47,80,-47v47,0,81,5,81,47r0,159v-1,42,-34,47,-81,47xm99,-217v-20,0,-41,0,-41,20r0,142v-1,19,21,19,40,19v19,0,40,1,40,-19r0,-142v2,-20,-20,-20,-39,-20xm154,-318r-41,47r-32,0r32,-47r41,0","w":196},"\u00d4":{"d":"98,0v-47,0,-79,-5,-80,-47r0,-159v1,-42,33,-47,80,-47v47,0,81,5,81,47r0,159v-1,42,-34,47,-81,47xm99,-217v-20,0,-41,0,-41,20r0,142v-1,19,21,19,40,19v19,0,40,1,40,-19r0,-142v2,-20,-20,-20,-39,-20xm50,-270v16,-22,46,-72,75,-34r26,34r-30,0v-8,-7,-13,-30,-26,-21r-15,21r-30,0","w":196},"\u00d2":{"d":"98,0v-47,0,-79,-5,-80,-47r0,-159v1,-42,33,-47,80,-47v47,0,81,5,81,47r0,159v-1,42,-34,47,-81,47xm99,-217v-20,0,-41,0,-41,20r0,142v-1,19,21,19,40,19v19,0,40,1,40,-19r0,-142v2,-20,-20,-20,-39,-20xm85,-270r-50,-48r42,0r40,48r-32,0","w":196},"\u00dc":{"d":"101,0v-46,0,-78,-5,-79,-47r0,-206r40,0r0,197v-2,21,20,20,39,20v19,0,38,1,38,-20r0,-197r41,0r0,206v-2,41,-33,47,-79,47xm85,-309r0,39r-38,0r0,-39r38,0xm155,-309r0,39r-39,0r0,-39r39,0","w":201},"\u00da":{"d":"101,0v-46,0,-78,-5,-79,-47r0,-206r40,0r0,197v-2,21,20,20,39,20v19,0,38,1,38,-20r0,-197r41,0r0,206v-2,41,-33,47,-79,47xm158,-317r-41,48r-32,0r31,-48r42,0","w":201},"\u00db":{"d":"101,0v-46,0,-78,-5,-79,-47r0,-206r40,0r0,197v-2,21,20,20,39,20v19,0,38,1,38,-20r0,-197r41,0r0,206v-2,41,-33,47,-79,47xm50,-269v16,-22,46,-74,74,-34r26,34r-29,0v-8,-7,-17,-34,-26,-21r-15,21r-30,0","w":201},"\u00d9":{"d":"101,0v-46,0,-78,-5,-79,-47r0,-206r40,0r0,197v-2,21,20,20,39,20v19,0,38,1,38,-20r0,-197r41,0r0,206v-2,41,-33,47,-79,47xm87,-269r-50,-48r41,0r41,48r-32,0","w":201},"\u00e1":{"d":"34,-195r66,0v76,-3,53,79,56,145v2,51,-43,50,-94,50v-37,0,-51,-26,-51,-72v0,-52,43,-57,96,-54v7,1,13,-7,11,-18v-6,-28,-56,-10,-84,-15r0,-36xm85,-35v18,0,33,-4,33,-21r0,-35v-33,3,-75,-13,-69,34v-2,19,16,22,36,22xm138,-260r-41,48r-32,0r32,-48r41,0","w":172,"k":{"\u2019":6,"\u201d":6}},"\u00e0":{"d":"34,-195r66,0v76,-3,53,79,56,145v2,51,-43,50,-94,50v-37,0,-51,-26,-51,-72v0,-52,43,-57,96,-54v7,1,13,-7,11,-18v-6,-28,-56,-10,-84,-15r0,-36xm85,-35v18,0,33,-4,33,-21r0,-35v-33,3,-75,-13,-69,34v-2,19,16,22,36,22xm70,-212r-49,-48r41,0r40,48r-32,0","w":172,"k":{"\u2019":6,"\u201d":6}},"\u00e2":{"d":"34,-195r66,0v76,-3,53,79,56,145v2,51,-43,50,-94,50v-37,0,-51,-26,-51,-72v0,-52,43,-57,96,-54v7,1,13,-7,11,-18v-6,-28,-56,-10,-84,-15r0,-36xm85,-35v18,0,33,-4,33,-21r0,-35v-33,3,-75,-13,-69,34v-2,19,16,22,36,22xm33,-212v15,-22,46,-73,74,-35r27,35r-30,0v-8,-6,-16,-35,-26,-21r-15,21r-30,0","w":172,"k":{"\u2019":6,"\u201d":6}},"\u00e4":{"d":"34,-195r66,0v76,-3,53,79,56,145v2,51,-43,50,-94,50v-37,0,-51,-26,-51,-72v0,-52,43,-57,96,-54v7,1,13,-7,11,-18v-6,-28,-56,-10,-84,-15r0,-36xm85,-35v18,0,33,-4,33,-21r0,-35v-33,3,-75,-13,-69,34v-2,19,16,22,36,22xm68,-251r0,39r-38,0r0,-39r38,0xm138,-251r0,39r-39,0r0,-39r39,0","w":172,"k":{"\u2019":6,"\u201d":6}},"\u00e3":{"d":"34,-195r66,0v76,-3,53,79,56,145v2,51,-43,50,-94,50v-37,0,-51,-26,-51,-72v0,-52,43,-57,96,-54v7,1,13,-7,11,-18v-6,-28,-56,-10,-84,-15r0,-36xm85,-35v18,0,33,-4,33,-21r0,-35v-33,3,-75,-13,-69,34v-2,19,16,22,36,22xm24,-213v13,-23,49,-68,74,-27v12,9,16,-12,22,-17r30,0v-14,21,-47,68,-72,28v-12,-12,-18,11,-24,16r-30,0","w":172,"k":{"\u2019":6,"\u201d":6}},"\u00e5":{"d":"34,-195r66,0v76,-3,53,79,56,145v2,51,-43,50,-94,50v-37,0,-51,-26,-51,-72v0,-52,43,-57,96,-54v7,1,13,-7,11,-18v-6,-28,-56,-10,-84,-15r0,-36xm85,-35v18,0,33,-4,33,-21r0,-35v-33,3,-75,-13,-69,34v-2,19,16,22,36,22xm121,-250v0,28,-14,40,-41,38v-21,-1,-32,-15,-30,-38v1,-20,16,-30,41,-30v18,0,30,14,30,30xm85,-234v10,0,14,-4,13,-13v0,-6,-4,-11,-13,-11v-10,0,-12,6,-12,14v0,6,3,10,12,10","w":172,"k":{"\u2019":6,"\u201d":6}},"\u00e7":{"d":"54,-139v0,44,-19,113,35,103r45,0r0,36r-51,0v-2,9,5,11,14,10v19,0,25,11,24,28v3,26,-31,24,-57,23r0,-20v11,-2,32,6,34,-6v0,-7,-9,-3,-14,-4v-17,0,-28,-11,-25,-32v-59,-5,-41,-83,-43,-143v-2,-58,57,-52,117,-51r0,36v-31,3,-79,-12,-79,20","w":142,"k":{"\"":-13,":":-7,";":-7}},"\u00e9":{"d":"54,-69v-10,45,46,31,87,33r0,36v-70,2,-125,6,-125,-67r0,-78v3,-39,26,-55,73,-50v58,-6,75,20,72,79v-3,51,-47,48,-107,47xm90,-160v-20,0,-35,2,-36,20r0,36v35,-1,76,11,69,-37v-2,-16,-14,-19,-33,-19xm145,-260r-41,48r-32,0r32,-48r41,0","k":{",":15,".":15,"\u2026":15}},"\u00e8":{"d":"54,-69v-10,45,46,31,87,33r0,36v-70,2,-125,6,-125,-67r0,-78v3,-39,26,-55,73,-50v58,-6,75,20,72,79v-3,51,-47,48,-107,47xm90,-160v-20,0,-35,2,-36,20r0,36v35,-1,76,11,69,-37v-2,-16,-14,-19,-33,-19xm76,-212r-50,-48r41,0r41,48r-32,0","k":{",":15,".":15,"\u2026":15}},"\u00ea":{"d":"54,-69v-10,45,46,31,87,33r0,36v-70,2,-125,6,-125,-67r0,-78v3,-39,26,-55,73,-50v58,-6,75,20,72,79v-3,51,-47,48,-107,47xm90,-160v-20,0,-35,2,-36,20r0,36v35,-1,76,11,69,-37v-2,-16,-14,-19,-33,-19xm39,-212v14,-23,46,-73,74,-35r26,35r-30,0v-8,-6,-16,-35,-26,-21r-15,21r-29,0","k":{",":15,".":15,"\u2026":15}},"\u00eb":{"d":"54,-69v-10,45,46,31,87,33r0,36v-70,2,-125,6,-125,-67r0,-78v3,-39,26,-55,73,-50v58,-6,75,20,72,79v-3,51,-47,48,-107,47xm90,-160v-20,0,-35,2,-36,20r0,36v35,-1,76,11,69,-37v-2,-16,-14,-19,-33,-19xm73,-251r0,39r-38,0r0,-39r38,0xm143,-251r0,39r-39,0r0,-39r39,0","k":{",":15,".":15,"\u2026":15}},"\u0131":{"d":"58,-195r0,195r-38,0r0,-195r38,0","w":77},"\u00f1":{"d":"127,-131v0,-23,-8,-29,-35,-29v-25,0,-34,4,-34,29r0,131r-38,0v6,-87,-30,-213,73,-195v101,-17,66,108,72,195r-38,0r0,-131xm35,-213v13,-23,49,-69,73,-27v13,9,16,-12,22,-17r30,0v-14,23,-44,66,-72,28v-10,-14,-18,12,-24,16r-29,0","w":184},"\u00f3":{"d":"162,-98v0,74,-6,98,-73,98v-66,0,-73,-24,-73,-98v0,-75,7,-97,73,-97v66,0,73,23,73,97xm54,-98v0,47,-8,63,35,63v42,0,35,-16,35,-63v0,-47,7,-62,-35,-62v-42,0,-35,15,-35,62xm146,-260r-41,48r-32,0r31,-48r42,0","w":178,"k":{"\u2019":11,"\u201d":11}},"\u00f2":{"d":"162,-98v0,74,-6,98,-73,98v-66,0,-73,-24,-73,-98v0,-75,7,-97,73,-97v66,0,73,23,73,97xm54,-98v0,47,-8,63,35,63v42,0,35,-16,35,-63v0,-47,7,-62,-35,-62v-42,0,-35,15,-35,62xm76,-212r-50,-48r42,0r40,48r-32,0","w":178,"k":{"\u2019":11,"\u201d":11}},"\u00f4":{"d":"162,-98v0,74,-6,98,-73,98v-66,0,-73,-24,-73,-98v0,-75,7,-97,73,-97v66,0,73,23,73,97xm54,-98v0,47,-8,63,35,63v42,0,35,-16,35,-63v0,-47,7,-62,-35,-62v-42,0,-35,15,-35,62xm39,-212v15,-22,46,-73,74,-35r27,35r-30,0v-8,-6,-16,-35,-26,-21r-15,21r-30,0","w":178,"k":{"\u2019":11,"\u201d":11}},"\u00f6":{"d":"162,-98v0,74,-6,98,-73,98v-66,0,-73,-24,-73,-98v0,-75,7,-97,73,-97v66,0,73,23,73,97xm54,-98v0,47,-8,63,35,63v42,0,35,-16,35,-63v0,-47,7,-62,-35,-62v-42,0,-35,15,-35,62xm74,-251r0,39r-39,0r0,-39r39,0xm143,-251r0,39r-38,0r0,-39r38,0","w":178,"k":{"\u2019":11,"\u201d":11}},"\u00f5":{"d":"162,-98v0,74,-6,98,-73,98v-66,0,-73,-24,-73,-98v0,-75,7,-97,73,-97v66,0,73,23,73,97xm54,-98v0,47,-8,63,35,63v42,0,35,-16,35,-63v0,-47,7,-62,-35,-62v-42,0,-35,15,-35,62xm32,-213v13,-23,50,-69,73,-27v13,9,16,-12,22,-17r30,0v-14,23,-44,66,-72,28v-10,-14,-18,12,-24,16r-29,0","w":178,"k":{"\u2019":11,"\u201d":11}},"\u00fa":{"d":"58,-64v-2,24,9,29,34,29v27,0,35,-5,35,-29r0,-131r38,0v-6,87,29,212,-72,195v-103,18,-67,-108,-73,-195r38,0r0,131xm148,-260r-41,48r-32,0r32,-48r41,0","w":184,"k":{"c":-5,"d":-5,"e":-5,"g":-5,"o":-5,"q":-5,"\u0153":-5,"\u00f8":-5,"\u00e7":-5,"\u00e9":-5,"\u00e8":-5,"\u00ea":-5,"\u00eb":-5,"\u00f3":-5,"\u00f2":-5,"\u00f4":-5,"\u00f6":-5,"\u00f5":-5}},"\u00f9":{"d":"58,-64v-2,24,9,29,34,29v27,0,35,-5,35,-29r0,-131r38,0v-6,87,29,212,-72,195v-103,18,-67,-108,-73,-195r38,0r0,131xm80,-212r-50,-48r42,0r40,48r-32,0","w":184,"k":{"c":-5,"d":-5,"e":-5,"g":-5,"o":-5,"q":-5,"\u0153":-5,"\u00f8":-5,"\u00e7":-5,"\u00e9":-5,"\u00e8":-5,"\u00ea":-5,"\u00eb":-5,"\u00f3":-5,"\u00f2":-5,"\u00f4":-5,"\u00f6":-5,"\u00f5":-5}},"\u00fb":{"d":"58,-64v-2,24,9,29,34,29v27,0,35,-5,35,-29r0,-131r38,0v-6,87,29,212,-72,195v-103,18,-67,-108,-73,-195r38,0r0,131xm42,-212v15,-23,47,-73,75,-35r26,35r-30,0v-8,-6,-16,-35,-26,-21r-15,21r-30,0","w":184,"k":{"c":-5,"d":-5,"e":-5,"g":-5,"o":-5,"q":-5,"\u0153":-5,"\u00f8":-5,"\u00e7":-5,"\u00e9":-5,"\u00e8":-5,"\u00ea":-5,"\u00eb":-5,"\u00f3":-5,"\u00f2":-5,"\u00f4":-5,"\u00f6":-5,"\u00f5":-5}},"\u00fc":{"d":"58,-64v-2,24,9,29,34,29v27,0,35,-5,35,-29r0,-131r38,0v-6,87,29,212,-72,195v-103,18,-67,-108,-73,-195r38,0r0,131xm77,-251r0,39r-38,0r0,-39r38,0xm147,-251r0,39r-39,0r0,-39r39,0","w":184,"k":{"c":-5,"d":-5,"e":-5,"g":-5,"o":-5,"q":-5,"\u0153":-5,"\u00f8":-5,"\u00e7":-5,"\u00e9":-5,"\u00e8":-5,"\u00ea":-5,"\u00eb":-5,"\u00f3":-5,"\u00f2":-5,"\u00f4":-5,"\u00f6":-5,"\u00f5":-5}},"\u00ca":{"d":"156,0v-61,-2,-138,15,-138,-47r0,-159v-4,-61,76,-46,137,-47r0,38r-82,0v-26,3,-11,45,-15,70r96,0r0,36r-96,0v4,30,-16,71,30,71r68,0r0,38xm39,-269v16,-22,46,-74,74,-34r26,34r-29,0v-8,-7,-16,-34,-26,-21r-16,21r-29,0","k":{"\u00ec":-9}},"\u00cb":{"d":"156,0v-61,-2,-138,15,-138,-47r0,-159v-4,-61,76,-46,137,-47r0,38r-82,0v-26,3,-11,45,-15,70r96,0r0,36r-96,0v4,30,-16,71,30,71r68,0r0,38xm72,-309r0,39r-38,0r0,-39r38,0xm142,-309r0,39r-39,0r0,-39r39,0","k":{"\u00ec":-9}},"\u00c8":{"d":"156,0v-61,-2,-138,15,-138,-47r0,-159v-4,-61,76,-46,137,-47r0,38r-82,0v-26,3,-11,45,-15,70r96,0r0,36r-96,0v4,30,-16,71,30,71r68,0r0,38xm77,-270r-49,-48r41,0r40,48r-32,0","k":{"\u00ec":-9}},"\u00cd":{"d":"62,-253r0,253r-40,0r0,-253r40,0xm100,-318r-41,48r-32,0r31,-48r42,0","w":81},"\u00ce":{"d":"61,-253r0,253r-40,0r0,-253r40,0xm-9,-269v16,-22,46,-74,74,-34r26,34r-29,0v-8,-7,-17,-34,-26,-21r-15,21r-30,0","w":82},"\u00cf":{"d":"61,-253r0,253r-40,0r0,-253r40,0xm26,-309r0,39r-39,0r0,-39r39,0xm95,-309r0,39r-38,0r0,-39r38,0","w":82},"\u00cc":{"d":"61,-253r0,253r-40,0r0,-253r40,0xm24,-270r-49,-48r41,0r41,48r-33,0","w":82},"\u00ed":{"d":"60,-195r0,195r-38,0r0,-195r38,0xm99,-260r-41,48r-32,0r32,-48r41,0","w":81},"\u00ec":{"d":"66,-195r0,195r-39,0r0,-195r39,0xm32,-212r-50,-48r41,0r41,48r-32,0","w":87},"\u00ee":{"d":"62,-195r0,195r-39,0r0,-195r39,0xm-7,-212v15,-22,46,-73,74,-35r26,35r-29,0v-8,-7,-17,-35,-27,-21r-15,21r-29,0","w":86},"\u00ef":{"d":"67,-195r0,195r-38,0r0,-195r38,0xm33,-251r0,39r-38,0r0,-39r38,0xm103,-251r0,39r-39,0r0,-39r39,0","w":97},"\u00a0":{"w":86}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1990, 1991, 1998, 2002 Adobe Systems Incorporated. All rights reserved. ©
 * 1989, 1990, 1998, 2002 The Monotype Corporation PLC. All rights reserved.
 * 
 * Trademark:
 * Gill Sans is a trademark of The Monotype Corporation registered in the U.S.
 * Patent and Trademark Office and which may be registered in certain other
 * jurisdictions.
 * 
 * Full name:
 * GillSansStd
 * 
 * Designer:
 * Eric Gill
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":180,"face":{"font-family":"gill-sans-std","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 2 2 1 4 2 2 3","ascent":"246","descent":"-114","x-height":"3","bbox":"-22 -328 375 90","underline-thickness":"18","underline-position":"-18","stemh":"29","stemv":"32","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":100,"k":{"\u201c":36,"\u2018":36,"T":45,"V":54,"W":45,"Y":54,"\u00dd":54,"\u0178":54,"A":36,"\u00c6":36,"\u00c1":36,"\u00c2":36,"\u00c4":36,"\u00c0":36,"\u00c5":36,"\u00c3":36}},"!":{"d":"31,-157v-5,-25,-5,-99,18,-92v14,0,20,18,20,54v0,41,-7,65,-11,100v-3,31,-14,31,-18,0xm49,-40v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-22,-9,-22,-21v0,-12,10,-22,22,-22","w":97},"\"":{"d":"87,-166v-6,-28,-11,-56,-9,-92r32,0v2,35,-3,64,-8,92r-15,0xm26,-166v-6,-28,-11,-56,-9,-92r32,0v2,35,-3,64,-8,92r-15,0","w":127},"#":{"d":"71,-222r25,0r-14,70r70,0r14,-70r26,0r-15,70r33,0r0,25r-38,0r-13,61r51,0r0,25r-56,0r-14,70r-26,0r15,-70r-70,0r-15,70r-26,0r15,-70r-33,0r0,-25r38,0r13,-61r-51,0r0,-25r56,0xm77,-127r-13,61r70,0r13,-61r-70,0","w":210},"$":{"d":"169,-215r0,39v-13,-13,-34,-24,-53,-28r0,71v82,17,90,121,0,136r0,39r-30,0r0,-39v-24,-1,-46,-12,-68,-25r0,-44v23,21,37,30,68,37r0,-78v-93,-20,-85,-116,0,-129r0,-13r30,0r0,13v16,1,40,10,53,21xm86,-143r0,-61v-41,7,-43,50,0,61xm116,-94r0,64v41,-9,40,-51,0,-64","w":195},"%":{"d":"181,-80v-15,0,-29,14,-29,29v0,16,14,28,29,28v16,0,28,-12,28,-28v0,-15,-12,-29,-28,-29xm181,-107v30,0,55,26,55,56v0,30,-25,55,-55,55v-30,0,-55,-24,-55,-55v0,-30,25,-56,55,-56xm217,-249r-162,253r-27,0r162,-253r27,0xm64,-248v30,0,55,25,55,55v0,30,-25,55,-55,55v-30,0,-55,-24,-55,-55v0,-30,25,-55,55,-55xm64,-222v-15,0,-28,14,-28,29v0,16,13,28,28,28v16,0,29,-12,29,-28v0,-15,-13,-29,-29,-29","w":244},"&":{"d":"178,-122r35,0v-7,20,-21,43,-39,64r49,58r-45,0r-28,-33v-31,28,-56,36,-78,36v-33,0,-62,-25,-62,-58v0,-30,24,-52,58,-72v-43,-34,-36,-114,35,-114v35,0,59,23,59,53v0,24,-13,44,-45,66r35,40v10,-10,21,-28,26,-40xm128,-58r-40,-46v-27,17,-43,30,-43,49v11,40,60,27,83,-3xm102,-211v-42,2,-25,50,-4,65v26,-17,32,-27,32,-40v0,-14,-12,-25,-28,-25","w":225},"\u2019":{"d":"21,-160r0,-7v15,-13,16,-25,15,-39v-12,-1,-19,-9,-19,-21v0,-14,9,-22,21,-22v15,0,24,16,24,34v0,27,-14,47,-41,55","w":78,"k":{"\u201d":-22,"v":9,"d":29,"r":29,"t":14,"s":29,"\u0161":29}},"(":{"d":"112,-250v-70,87,-69,246,0,333r-19,0v-91,-86,-92,-247,0,-333r19,0","w":116},")":{"d":"4,83v69,-87,70,-246,0,-333r19,0v92,86,92,246,0,333r-19,0","w":116},"*":{"d":"64,-185v-20,-11,-64,-10,-58,-36v6,-10,17,-6,24,0r36,31v2,-2,5,-4,7,-4r-9,-46v-2,-9,0,-21,12,-21v26,8,1,46,2,67v3,1,5,3,7,5r36,-32v6,-6,18,-10,24,0v8,27,-38,26,-57,36v1,2,0,6,0,9v20,10,63,9,57,36v-6,10,-17,6,-24,0r-36,-32v-3,2,-4,3,-7,4r9,47v2,9,0,21,-12,21v-27,-7,-3,-47,-3,-68v-3,-1,-4,-2,-6,-4r-37,31v-6,6,-18,10,-24,0v-6,-26,39,-25,58,-36v-1,-3,0,-5,1,-8","w":150},"+":{"d":"90,-212r30,0r0,70r70,0r0,30r-70,0r0,70r-30,0r0,-70r-70,0r0,-30r70,0r0,-70","w":210},",":{"d":"21,42r0,-6v12,-8,16,-27,13,-40v-10,0,-17,-8,-17,-20v0,-12,9,-20,21,-20v15,0,25,14,25,35v0,21,-14,43,-42,51","w":78,"k":{"\u201d":36,"\u2019":36," ":36}},"-":{"d":"102,-96r0,33r-88,0r0,-33r88,0","w":116},".":{"d":"39,-40v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-22,21,-22","w":78,"k":{"\u201d":36,"\u2019":36," ":36}},"\/":{"d":"3,3r70,-252r26,0r-71,252r-25,0","w":101},"0":{"d":"169,-123v0,76,-31,126,-79,126v-48,0,-79,-50,-79,-126v0,-76,31,-126,79,-126v48,0,79,50,79,126xm134,-123v0,-58,-17,-92,-44,-92v-27,0,-44,34,-44,92v0,58,17,93,44,93v27,0,44,-35,44,-93"},"1":{"d":"108,-246r0,246r-35,0r0,-246r35,0"},"2":{"d":"12,0v31,-54,103,-94,103,-168v0,-58,-67,-60,-98,-13r0,-44v49,-48,133,-19,133,53v0,40,-21,74,-76,139r94,0r0,33r-156,0"},"3":{"d":"29,-205r0,-33v48,-26,120,-4,120,53v0,27,-10,43,-32,55v65,27,34,133,-42,133v-17,0,-34,-5,-52,-14r0,-38v33,26,92,30,94,-20v0,-24,-17,-44,-52,-42r0,-32v32,0,48,-14,48,-36v0,-40,-50,-44,-84,-26"},"4":{"d":"143,-249r0,137r27,0r0,31r-27,0r0,81r-35,0r0,-81r-104,0r0,-16r124,-152r15,0xm108,-182v-21,22,-37,47,-57,70r57,0r0,-70"},"5":{"d":"145,-246r0,32r-77,0r0,62v55,-3,90,32,90,77v0,68,-81,99,-140,63r0,-36v36,30,104,21,104,-27v0,-31,-32,-56,-86,-43r0,-128r109,0"},"6":{"d":"114,-249r21,27v-35,20,-65,56,-75,90v46,-27,107,5,107,62v0,40,-33,73,-72,73v-47,0,-79,-35,-79,-87v0,-62,34,-123,98,-165xm53,-95v-21,70,75,90,79,24v0,-38,-51,-48,-79,-24"},"7":{"d":"176,-246r-111,249r-31,-13r90,-202r-106,0r0,-34r158,0"},"8":{"d":"134,-125v62,32,33,128,-43,128v-76,0,-108,-95,-45,-128v-56,-36,-23,-124,47,-124v66,0,101,89,41,124xm130,-178v0,-21,-16,-37,-38,-37v-23,0,-39,14,-39,36v0,20,17,38,38,38v21,0,39,-17,39,-37xm133,-69v0,-22,-17,-39,-42,-39v-27,0,-44,16,-44,39v0,23,18,39,43,39v28,0,43,-18,43,-39"},"9":{"d":"67,3r-21,-26v41,-27,68,-61,75,-92v-48,29,-108,-5,-108,-61v0,-36,30,-73,75,-73v45,0,78,39,78,90v0,59,-41,127,-99,162xm48,-176v0,37,50,50,80,25v9,-34,-9,-63,-39,-64v-23,0,-41,16,-41,39"},":":{"d":"39,-165v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-22,21,-22xm39,-40v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-22,21,-22","w":78,"k":{" ":36}},";":{"d":"22,41r0,-6v15,-13,15,-25,14,-39v-12,-1,-19,-9,-19,-21v0,-14,10,-22,22,-22v42,10,24,84,-17,88xm61,-143v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-22,21,-22v12,0,22,10,22,22","w":78,"k":{" ":36}},"<":{"d":"20,-113r0,-29r170,-73r0,31r-135,57r135,56r0,31","w":210},"=":{"d":"20,-181r170,0r0,29r-170,0r0,-29xm20,-103r170,0r0,30r-170,0r0,-30","w":210},">":{"d":"190,-113r-170,73r0,-31r135,-56r-135,-57r0,-31r170,73r0,29","w":210},"?":{"d":"30,-214r16,-35v42,0,58,29,58,52v0,54,-59,97,-54,134v-56,-32,17,-91,19,-129v1,-20,-21,-28,-39,-22xm55,-40v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-22,21,-22","w":119},"@":{"d":"321,-3r32,0v-31,51,-83,79,-156,79v-111,0,-178,-60,-178,-158v0,-76,47,-180,174,-180v87,0,151,57,151,137v0,64,-51,126,-105,126v-23,0,-35,-10,-35,-30v-42,55,-118,25,-118,-50v0,-80,97,-155,145,-79r6,-27r32,0r-30,135v-3,13,1,22,12,22v14,0,67,-33,67,-98v0,-64,-54,-111,-126,-111v-84,0,-146,65,-146,152v0,85,56,135,152,135v60,0,102,-23,123,-53xm119,-77v0,31,16,51,39,51v53,0,97,-139,22,-139v-31,0,-61,43,-61,88","w":363},"A":{"d":"130,-247r110,247r-36,0r-33,-72r-104,0r-31,72r-36,0r105,-247r25,0xm117,-193r-36,89r76,0","w":240,"k":{"v":9,"w":9,"y":9,"\u00fd":9,"\u00ff":9,"C":14,"\u00c7":14,"G":14,"O":14,"\u00d8":14,"\u0152":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"Q":14,"T":36,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":29,"W":29,"Y":40,"\u00dd":40,"\u0178":40}},"B":{"d":"27,0r0,-246r71,0v85,-2,101,92,38,116v81,16,84,130,-25,130r-84,0xm62,-214r0,74v41,3,79,-6,76,-40v5,-29,-38,-38,-76,-34xm62,-109r0,77r45,0v41,0,52,-21,52,-39v0,-36,-52,-41,-97,-38","w":202,"k":{"A":-7,"\u00c6":-7,"\u00c1":-7,"\u00c2":-7,"\u00c4":-7,"\u00c0":-7,"\u00c5":-7,"\u00c3":-7}},"C":{"d":"236,-229r0,38v-72,-51,-182,-21,-182,69v0,92,117,119,185,65r0,39v-24,13,-50,21,-89,21v-92,0,-133,-71,-133,-122v-1,-107,118,-163,219,-110","w":254,"k":{",":-9,".":-9,"A":-9,"\u00c6":-9,"\u00c1":-9,"\u00c2":-9,"\u00c4":-9,"\u00c0":-9,"\u00c5":-9,"\u00c3":-9}},"D":{"d":"27,0r0,-246r96,0v180,2,166,246,0,246r-96,0xm63,-214r0,182r56,0v80,0,98,-61,98,-91v0,-49,-31,-91,-100,-91r-54,0","w":270,"k":{"V":18,"W":18,"Y":36,"\u00dd":36,"\u0178":36,",":27,".":27,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"E":{"d":"166,-246r0,32r-104,0r0,74r101,0r0,32r-101,0r0,76r108,0r0,32r-143,0r0,-246r139,0"},"F":{"d":"158,-246r0,32r-95,0r0,68r95,0r0,32r-95,0r0,114r-36,0r0,-246r131,0","w":168,"k":{"\u00eb":5,",":50,".":50,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"e":5,"\u00e9":5,"\u00ea":5,"\u00e8":5,"o":5,"\u00f8":5,"\u0153":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5}},"G":{"d":"242,-121r0,104v-97,49,-226,5,-224,-104v2,-105,118,-162,219,-107r0,36v-72,-48,-183,-22,-183,70v0,75,82,112,153,83r0,-50r-47,0r0,-32r82,0","w":266},"H":{"d":"235,-246r0,246r-35,0r0,-107r-138,0r0,107r-35,0r0,-246r35,0r0,107r138,0r0,-107r35,0","w":262},"I":{"d":"63,-246r0,246r-36,0r0,-246r36,0","w":90},"J":{"d":"63,-246r0,249v1,50,-25,86,-79,79r-6,-33v42,3,49,-15,49,-57r0,-238r36,0","w":90,"k":{"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u0153":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"u":7,"\u00fa":7,"\u00fb":7,"\u00fc":7,"\u00f9":7}},"K":{"d":"103,-129r133,129r-49,0r-125,-121r0,121r-35,0r0,-246r35,0r0,113r104,-113r44,0","w":236,"k":{"y":27,"\u00fd":27,"\u00ff":27,"O":43,"\u00d8":43,"\u0152":43,"\u00d3":43,"\u00d4":43,"\u00d6":43,"\u00d2":43,"\u00d5":43,"e":22,"\u00e9":22,"\u00ea":22,"\u00eb":22,"\u00e8":22,"o":22,"\u00f8":22,"\u0153":22,"\u00f3":22,"\u00f4":22,"\u00f6":22,"\u00f2":22,"\u00f5":22,"u":18,"\u00fa":18,"\u00fb":18,"\u00fc":18,"\u00f9":18}},"L":{"d":"62,-246r0,214r111,0r0,32r-146,0r0,-246r35,0","w":176,"k":{"y":11,"\u00fd":11,"\u00ff":11,"T":36,"V":36,"W":36,"Y":40,"\u00dd":40,"\u0178":40,"\u201d":29,"\u2019":29}},"M":{"d":"255,-246r0,246r-35,0r-1,-191r-75,95r-6,0r-76,-95r0,191r-36,0r0,-246r33,0r82,101r81,-101r33,0","w":281},"N":{"d":"254,-246r0,246r-30,0r-164,-189r0,189r-33,0r0,-246r28,0r166,191r0,-191r33,0","w":281},"O":{"d":"16,-123v0,-68,52,-126,132,-126v81,0,132,58,132,126v0,66,-50,126,-133,126v-80,0,-131,-59,-131,-126xm53,-123v0,54,40,94,95,94v55,0,96,-40,96,-94v0,-54,-41,-93,-96,-93v-55,0,-95,39,-95,93","w":296,"k":{"T":23,"V":14,"W":14,"Y":29,"\u00dd":29,"\u0178":29,",":22,".":22,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"X":29}},"P":{"d":"25,-246r77,0v54,0,78,32,78,71v0,51,-51,76,-120,69r0,106r-35,0r0,-246xm60,-214r0,76v41,2,85,1,84,-38v0,-18,-10,-38,-42,-38r-42,0","w":183,"k":{",":54,".":54,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9}},"Q":{"d":"270,18v-4,11,-22,21,-30,32v-48,-4,-87,-25,-121,-50v-61,-12,-103,-62,-103,-123v0,-74,56,-126,136,-126v73,0,129,55,129,127v0,59,-43,110,-102,122v43,18,67,25,91,18xm150,-216v-138,0,-126,187,1,187v55,0,93,-43,93,-93v0,-54,-40,-94,-94,-94","w":296},"R":{"d":"28,-246v72,-5,142,3,142,69v0,28,-15,50,-41,60v37,26,55,75,88,117r-42,0v-20,-31,-72,-120,-97,-107r-15,0r0,107r-35,0r0,-246xm63,-215r0,77v41,5,77,-11,71,-40v3,-31,-32,-40,-71,-37","w":217,"k":{"O":22,"\u00d8":22,"\u0152":22,"\u00d3":22,"\u00d4":22,"\u00d6":22,"\u00d2":22,"\u00d5":22,"T":32,"U":11,"\u00da":11,"\u00db":11,"\u00dc":11,"\u00d9":11,"V":29,"W":27,"Y":36,"\u00dd":36,"\u0178":36}},"S":{"d":"144,-231r0,39v-21,-20,-41,-25,-58,-25v-23,0,-39,12,-39,29v0,47,106,47,106,125v0,70,-92,83,-137,44r0,-45v18,23,41,36,65,36v27,0,40,-17,40,-31v0,-51,-107,-57,-107,-124v0,-62,84,-85,130,-48","w":164},"T":{"d":"211,-246r0,32r-85,0r0,214r-35,0r0,-214r-85,0r0,-32r205,0","w":217,"k":{"\u00fc":50,"\u00f2":54,"\u00f6":54,"\u00e8":54,"\u00eb":54,"\u00ea":54,"\u00e3":45,"\u00e5":45,"\u00e0":45,"\u00e4":45,"\u00e2":45,"w":54,"y":45,"\u00fd":45,"\u00ff":45,"O":23,"\u00d8":23,"\u0152":23,"\u00d3":23,"\u00d4":23,"\u00d6":23,"\u00d2":23,"\u00d5":23,",":45,".":45,"A":36,"\u00c6":36,"\u00c1":36,"\u00c2":36,"\u00c4":36,"\u00c0":36,"\u00c5":36,"\u00c3":36,"e":54,"\u00e9":54,"o":54,"\u00f8":54,"\u0153":54,"\u00f3":54,"\u00f4":54,"\u00f5":54,"u":50,"\u00fa":50,"\u00fb":50,"\u00f9":50,"r":45,":":11,"-":61,";":11,"a":45,"\u00e6":45,"\u00e1":45}},"U":{"d":"125,-29v51,0,73,-24,73,-74r0,-143r35,0r0,150v0,60,-36,99,-109,99v-52,0,-102,-29,-102,-96r0,-153r35,0r0,146v-3,52,28,71,68,71","w":254,"k":{",":9,".":9,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"V":{"d":"217,-246r-104,248r-7,0r-106,-248r35,0r74,173r74,-173r34,0","w":217,"k":{"\u00f6":36,"\u00f4":36,"\u00e8":36,"\u00eb":36,"\u00ea":36,"\u00e3":22,"\u00e5":22,"\u00e0":22,"\u00e4":22,"\u00e2":22,"G":14,"O":14,"\u00d8":14,"\u0152":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,",":47,".":47,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"e":36,"\u00e9":36,"o":36,"\u00f8":36,"\u0153":36,"\u00f3":36,"\u00f2":36,"\u00f5":36,"u":27,"\u00fa":27,"\u00fb":27,"\u00fc":27,"\u00f9":27,"-":36,"a":22,"\u00e6":22,"\u00e1":22}},"W":{"d":"375,-246r-100,248r-7,0r-80,-201r-82,201r-7,0r-99,-248r35,0r68,170r68,-170r33,0r69,170r67,-170r35,0","w":375,"k":{"\u00fc":27,"\u00f6":32,"\u00ea":32,"\u00e4":22,"y":11,"\u00fd":11,"\u00ff":11,"O":14,"\u00d8":14,"\u0152":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,",":47,".":47,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,"e":32,"\u00e9":32,"\u00eb":32,"\u00e8":32,"o":32,"\u00f8":32,"\u0153":32,"\u00f3":32,"\u00f4":32,"\u00f2":32,"\u00f5":32,"u":27,"\u00fa":27,"\u00fb":27,"\u00f9":27,"-":36,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e0":22,"\u00e5":22,"\u00e3":22}},"X":{"d":"247,-246r-98,119r105,127r-42,0r-84,-102r-84,102r-43,0r106,-127r-99,-119r43,0r77,94r77,-94r42,0","w":254},"Y":{"d":"108,-161r67,-85r42,0r-91,116r0,130r-35,0r0,-130r-91,-116r42,0","w":217,"k":{"\u00fc":43,"\u00f6":50,"O":29,"\u00d8":29,"\u0152":29,"\u00d3":29,"\u00d4":29,"\u00d6":29,"\u00d2":29,"\u00d5":29,",":47,".":47,"A":40,"\u00c6":40,"\u00c1":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u00c5":40,"\u00c3":40,"e":47,"\u00e9":47,"\u00ea":47,"\u00eb":47,"\u00e8":47,"o":50,"\u00f8":50,"\u0153":50,"\u00f3":50,"\u00f4":50,"\u00f2":50,"\u00f5":50,"u":43,"\u00fa":43,"\u00fb":43,"\u00f9":43,":":11,"-":54,";":11,"a":43,"\u00e6":43,"\u00e1":43,"\u00e2":43,"\u00e4":43,"\u00e0":43,"\u00e5":43,"\u00e3":43,"S":7,"\u0160":7}},"Z":{"d":"162,-214r-147,0r0,-32r212,0r-156,214r156,0r0,32r-221,0","w":232},"[":{"d":"115,-246r0,29r-49,0r0,268r49,0r0,29r-84,0r0,-326r84,0","w":119},"\\":{"d":"99,3r-26,0r-70,-252r25,0","w":101},"]":{"d":"5,80r0,-29r49,0r0,-268r-49,0r0,-29r84,0r0,326r-84,0","w":119},"^":{"d":"42,-105r-33,0r63,-141r25,0r62,141r-32,0r-43,-105","w":168},"_":{"d":"-2,27r184,0r0,18r-184,0r0,-18"},"\u2018":{"d":"58,-249r0,7v-15,13,-16,25,-15,39v12,1,19,9,19,21v0,14,-9,22,-21,22v-15,0,-24,-16,-24,-34v0,-27,14,-47,41,-55","w":78},"a":{"d":"148,-29r0,20v-22,16,-46,19,-55,-4v-28,27,-84,19,-84,-23v1,-44,52,-47,84,-62v4,-54,-58,-42,-80,-10r0,-35v29,-36,112,-30,112,31r0,84v2,16,13,5,23,-1xm93,-33r0,-47v-27,9,-51,19,-51,38v1,28,36,28,51,9","w":153},"b":{"d":"53,-246r0,96v50,-38,115,0,115,66v0,80,-82,105,-147,75r0,-237r32,0xm53,-120r0,88v41,15,82,-3,82,-48v0,-53,-48,-73,-82,-40","k":{"y":4,"\u00fd":4,"\u00ff":4,",":4,".":4}},"c":{"d":"141,-154r0,34v-41,-31,-92,-14,-93,39v-1,52,55,67,97,43r0,32v-58,25,-130,-5,-130,-72v0,-72,67,-106,126,-76","w":157,"k":{",":-7,".":-7}},"d":{"d":"162,-246r0,246r-68,0v-48,0,-78,-33,-78,-85v0,-59,56,-96,114,-73r0,-88r32,0xm130,-27r0,-103v-41,-17,-81,4,-81,50v0,43,32,59,81,53","w":183,"k":{"d":4}},"e":{"d":"158,-47r0,31v-19,13,-38,19,-65,19v-50,0,-78,-41,-78,-86v0,-49,30,-82,75,-82v43,0,71,29,71,89r-114,0v6,58,71,59,111,29xm48,-97r81,0v-1,-24,-15,-40,-38,-40v-24,0,-39,14,-43,40","w":172,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,",":-7,".":-7}},"f":{"d":"107,-246r0,32v-34,-12,-55,12,-49,52r29,0r0,29r-29,0r0,133r-32,0r0,-133r-23,0r0,-29r23,0v-3,-63,23,-96,81,-84","w":90,"k":{"\u0131":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"\u201d":-29,"\u2019":-29}},"g":{"d":"50,-54v-19,-11,-36,-23,-36,-52v0,-59,74,-59,138,-56r0,25r-34,0v25,20,20,52,2,72v-21,24,-65,11,-65,30v0,9,17,15,49,21v35,7,47,24,47,45v0,32,-28,52,-76,52v-77,0,-104,-77,-34,-94v-27,-14,-19,-35,9,-43xm107,-105v0,-15,-15,-29,-32,-29v-18,0,-32,13,-32,29v0,18,14,30,33,30v18,0,31,-12,31,-30xm120,34v0,-34,-90,-36,-90,-2v0,16,16,25,45,25v28,0,45,-8,45,-23","w":153,"k":{"y":-7,"\u00fd":-7,"\u00ff":-7,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},"h":{"d":"54,-246r1,106v33,-43,103,-30,103,41r0,99r-32,0v-5,-50,18,-136,-32,-139v-14,0,-25,6,-40,23r0,116r-32,0r0,-246r32,0","k":{"y":13,"\u00fd":13,"\u00ff":13}},"i":{"d":"55,-162r0,162r-32,0r0,-162r32,0xm59,-211v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19","w":78},"j":{"d":"54,-162r0,183v0,35,-11,50,-32,62r-24,-24v14,-6,24,-17,24,-35r0,-186r32,0xm57,-211v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19","w":78},"k":{"d":"166,-162r-70,80r84,82r-43,0r-81,-82r71,-80r39,0xm54,-246r0,246r-32,0r0,-246r32,0","w":172,"k":{"e":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00e8":11,"o":11,"\u00f8":11,"\u0153":11,"\u00f3":11,"\u00f4":11,"\u00f6":11,"\u00f2":11,"\u00f5":11}},"l":{"d":"55,-246r0,246r-32,0r0,-246r32,0","w":78,"k":{"w":4,"y":4,"\u00fd":4,"\u00ff":4}},"m":{"d":"21,-162r32,0r0,22v31,-35,73,-33,96,4v29,-45,107,-36,107,34r0,102r-32,0v-4,-50,18,-136,-33,-138v-10,0,-24,9,-36,21r0,117r-32,0v-4,-47,17,-136,-29,-138v-16,0,-28,6,-41,21r0,117r-32,0r0,-162","w":277,"k":{"y":13,"\u00fd":13,"\u00ff":13,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4}},"n":{"d":"54,-162v1,7,-2,17,1,22v32,-42,103,-31,103,40r0,100r-32,0v-5,-50,18,-136,-32,-139v-14,0,-25,6,-40,23r0,116r-32,0r0,-162r32,0","k":{"v":5,"y":7,"\u00fd":7,"\u00ff":7,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4}},"o":{"d":"98,-165v51,0,88,35,88,83v0,51,-36,85,-88,85v-50,0,-85,-35,-85,-85v0,-46,37,-83,85,-83xm98,-136v-30,0,-52,23,-52,54v0,34,21,56,52,56v34,0,55,-21,55,-56v0,-31,-23,-54,-55,-54","w":198,"k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7,",":11,".":11,"x":5}},"p":{"d":"53,-4r0,87r-32,0r0,-245v80,-6,146,8,146,82v0,60,-56,100,-114,76xm53,-133r0,100v38,20,81,-4,81,-47v0,-44,-32,-58,-81,-53","k":{"y":13,"\u00fd":13,"\u00ff":13,",":11,".":11}},"q":{"d":"127,83r0,-86v-60,21,-115,-17,-114,-77v0,-26,12,-82,87,-82r59,0r0,245r-32,0xm127,-133v-46,-3,-79,4,-81,53v-2,43,42,70,81,49r0,-102"},"r":{"d":"25,-162r32,0v1,12,-2,27,1,37v26,-46,50,-52,85,-21r-17,28v-28,-31,-69,-12,-69,33r0,85r-32,0r0,-162","w":142,"k":{"v":-11,"y":-11,"\u00fd":-11,"\u00ff":-11,",":36,".":36,"d":5,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"c":9,"\u00e7":9,"q":9,"r":4,"t":-7,":":-14,"-":29,";":-14}},"s":{"d":"49,-122v-4,13,89,53,75,78v0,51,-69,58,-109,32r0,-34v21,14,40,21,53,21v13,0,23,-6,23,-18v0,-22,-75,-34,-75,-78v-1,-46,64,-55,101,-31r0,32v-18,-12,-35,-17,-47,-17v-13,0,-21,6,-21,15","w":138,"k":{"w":4}},"t":{"d":"60,-195r0,33r51,0r0,29r-51,0r0,83v5,36,37,25,60,13r0,29v-38,24,-92,6,-92,-40r0,-85r-28,0v16,-25,41,-40,60,-62","w":119},"u":{"d":"157,0r-32,0r0,-21v-35,41,-103,28,-103,-40r0,-101r32,0v7,50,-22,137,33,139v14,0,28,-8,38,-23r0,-116r32,0r0,162"},"v":{"d":"74,3r-73,-165r35,0r44,100r42,-100r34,0r-71,165r-11,0","w":157,"k":{",":22,".":22,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u0153":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7}},"w":{"d":"141,-162r42,98r42,-98r34,0r-71,165r-11,0r-47,-113r-48,113r-10,0r-72,-165r34,0r43,98r41,-98r23,0","w":258,"k":{",":22,".":22,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u0153":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7}},"x":{"d":"175,-162r-66,80r71,82r-41,0r-51,-58r-48,58r-40,0r68,-82r-68,-80r40,0r48,56r46,-56r41,0","k":{"e":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00e8":11}},"y":{"d":"158,-162r-115,245r-35,0r55,-118r-63,-127r36,0r44,91r42,-91r36,0","w":157,"k":{",":29,".":29,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u0153":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7}},"z":{"d":"145,-162r-86,133r87,0r0,29r-142,0r86,-133r-82,0r0,-29r137,0","w":150},"{":{"d":"10,-79r0,-29v41,3,36,-47,36,-90v-1,-48,18,-68,66,-64r0,27v-39,-7,-37,26,-36,63v0,49,-10,67,-37,79v34,9,39,52,37,105v-1,33,8,37,36,36r0,28v-61,8,-66,-35,-66,-96v0,-37,-6,-59,-36,-59","w":119},"|":{"d":"33,90r0,-360r27,0r0,360r-27,0","w":93},"}":{"d":"110,-108r0,29v-41,-3,-37,48,-37,91v1,48,-17,68,-65,64r0,-28v39,7,37,-25,36,-62v0,-49,10,-67,37,-79v-34,-9,-39,-52,-37,-105v1,-33,-8,-38,-36,-37r0,-27v61,-8,65,35,65,96v0,37,7,58,37,58","w":119},"~":{"d":"149,-68v-28,0,-61,-27,-89,-27v-18,0,-34,11,-51,24r0,-30v15,-13,35,-23,54,-23v29,-1,61,27,88,27v16,0,36,-11,51,-24r0,30v-15,13,-34,23,-53,23","w":210},"\u00a1":{"d":"49,69v-14,0,-20,-17,-20,-53v0,-41,7,-66,11,-101v3,-30,15,-30,18,0v4,35,11,60,11,101v0,36,-6,53,-20,53xm49,-140v-12,0,-22,-9,-22,-21v0,-12,10,-22,22,-22v12,0,21,10,21,22v0,12,-9,21,-21,21","w":97},"\u00a2":{"d":"147,-223r-23,63v4,2,12,5,16,7r0,33v-7,-6,-17,-10,-26,-12r-37,101v22,9,49,3,67,-7r0,31v-28,10,-50,13,-77,7r-25,68r-17,0r28,-75v-69,-39,-41,-178,56,-157r21,-59r17,0xm64,-39r35,-96v-51,-6,-70,67,-35,96","w":157},"\u00a3":{"d":"179,-3v-46,15,-110,-8,-158,6r29,-106r-26,0r0,-32r34,0v18,-62,47,-124,104,-112r18,35v-52,-11,-65,10,-87,77r27,0r0,32r-37,0r-18,68v40,-5,81,15,114,-2r0,34","w":191},"\u00a5":{"d":"84,0r0,-57r-73,0r0,-24r73,0r0,-26r-73,0r0,-26r60,0r-71,-125r35,0r65,116r62,-116r37,0r-70,125r59,0r0,26r-72,0r0,26r72,0r0,24r-72,0r0,57r-32,0","w":198},"\u0192":{"d":"8,71r6,-27v27,6,43,10,48,-17r33,-189r-36,0r4,-24r36,0v4,-39,14,-76,55,-76v10,0,21,1,37,6r-6,27v-40,-18,-49,8,-54,43r36,0r-4,24r-36,0r-34,192v-7,49,-40,51,-85,41","w":198},"\u00a7":{"d":"54,-201v0,48,81,67,81,135v0,20,-8,35,-27,54v29,38,6,95,-45,95v-37,0,-57,-55,-20,-55v10,0,17,8,17,17v0,4,-7,15,7,15v14,0,26,-12,26,-26v0,-45,-81,-74,-81,-141v0,-21,6,-36,23,-51v-20,-37,-13,-91,45,-91v24,0,42,13,42,31v0,23,-32,26,-33,6v0,-8,0,-14,-10,-14v-15,0,-25,10,-25,25xm50,-138v-31,43,12,71,43,106v38,-43,-11,-74,-43,-106","w":146},"\u00a4":{"d":"161,-81r24,24r-20,20r-24,-24v-20,16,-64,17,-83,0r-24,24r-21,-20r24,-24v-16,-20,-15,-64,0,-83r-24,-24r21,-21r24,24v20,-14,62,-17,83,0r24,-24r20,21r-24,24v19,26,15,59,0,83xm99,-168v-25,0,-45,20,-45,45v0,25,20,46,45,46v25,0,46,-21,46,-46v0,-25,-21,-45,-46,-45","w":198},"'":{"d":"26,-166v-5,-28,-10,-57,-8,-92r32,0v2,35,-3,64,-9,92r-15,0","w":67},"\u201c":{"d":"134,-249r0,7v-15,13,-15,25,-14,39v12,1,19,9,19,21v0,14,-10,22,-22,22v-15,0,-24,-16,-24,-34v0,-27,14,-47,41,-55xm56,-249r0,7v-15,13,-16,25,-15,39v12,1,19,9,19,21v0,14,-9,22,-21,22v-15,0,-24,-16,-24,-34v0,-27,14,-47,41,-55","w":153,"k":{"\u2018":-22}},"\u00ab":{"d":"115,-81r53,81r-31,0r-53,-81r53,-81r31,0xm42,-81r53,81r-31,0r-53,-81r53,-81r31,0","w":176},"\u2013":{"d":"183,-103r0,23r-186,0r0,-23r186,0"},"\u00b7":{"d":"47,-146v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-22,-9,-22,-21v0,-12,10,-22,22,-22","w":93},"\u00b6":{"d":"71,72r0,-184v-44,-3,-71,-30,-71,-73v0,-46,30,-73,83,-73r111,0r0,29r-25,0r0,301r-30,0r0,-301r-39,0r0,301r-29,0","w":195},"\u201d":{"d":"98,-160r0,-7v15,-13,15,-25,14,-39v-12,-1,-19,-9,-19,-21v0,-14,10,-22,22,-22v15,0,24,16,24,34v0,27,-14,47,-41,55xm19,-160r0,-7v15,-13,16,-25,15,-39v-12,-1,-19,-9,-19,-21v0,-14,9,-22,21,-22v15,0,24,16,24,34v0,27,-14,47,-41,55","w":153},"\u00bb":{"d":"134,-81r-53,-81r32,0r53,81r-53,81r-32,0xm61,-81r-53,-81r32,0r53,81r-53,81r-32,0","w":176},"\u2026":{"d":"60,-40v12,0,21,10,21,22v0,12,-9,21,-21,21v-12,0,-22,-9,-22,-21v0,-12,10,-22,22,-22xm180,-40v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-22,-9,-22,-21v0,-12,10,-22,22,-22xm300,-40v12,0,22,10,22,22v0,12,-10,21,-22,21v-12,0,-21,-9,-21,-21v0,-12,9,-22,21,-22","w":360},"\u00bf":{"d":"90,35r-17,34v-42,0,-58,-29,-58,-52v0,-54,60,-96,55,-133v56,32,-17,91,-19,129v-1,20,21,28,39,22xm64,-139v-12,0,-21,-10,-21,-22v0,-12,9,-22,21,-22v12,0,22,10,22,22v0,12,-10,22,-22,22","w":119},"`":{"d":"58,-235r24,52r-20,0r-40,-52r36,0","w":119},"\u00b4":{"d":"64,-235r36,0r-40,52r-20,0","w":119},"\u00af":{"d":"120,-221r0,26r-120,0r0,-26r120,0","w":119},"\u00a8":{"d":"27,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm94,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":119},"\u00b8":{"d":"75,-3r-2,9v12,3,19,11,19,22v0,27,-24,37,-56,32r0,-19v17,3,31,-2,31,-10v0,-6,-7,-10,-21,-9r9,-25r20,0","w":119},"\u2014":{"d":"363,-103r0,23r-366,0r0,-23r366,0","w":360},"\u00c6":{"d":"306,-246r0,32r-100,0r0,74r97,0r0,32r-97,0r0,76r104,0r0,32r-140,0r0,-108r-68,0r-65,108r-36,0r145,-246r160,0xm120,-140r50,0r0,-84","w":322},"\u00aa":{"d":"98,-171r0,15v-13,11,-31,12,-39,0v-18,15,-54,11,-54,-16v0,-20,23,-28,54,-36v-1,-34,-35,-22,-52,-2r0,-25v18,-22,76,-21,76,18v0,19,-10,72,15,46xm59,-170r0,-25v-19,6,-29,10,-29,20v1,16,20,15,29,5","w":101},"\u0141":{"d":"112,-193r0,32r-50,41r0,88r111,0r0,32r-146,0r0,-95r-32,27r0,-32r32,-26r0,-120r35,0r0,94","w":176,"k":{"y":11,"\u00fd":11,"\u00ff":11,"T":36,"V":36,"W":36,"Y":40,"\u00dd":40,"\u0178":40,"\u201d":29,"\u2019":29}},"\u00d8":{"d":"78,-58r123,-144v-62,-37,-148,4,-148,79v0,26,9,47,25,65xm71,-18r-17,19r-17,-11r18,-21v-79,-74,-30,-218,93,-218v30,0,54,7,75,21r19,-21r16,14r-17,20v78,74,32,222,-94,218v-27,0,-54,-7,-76,-21xm218,-188r-124,143v60,41,150,-2,150,-78v0,-27,-10,-49,-26,-65","w":296,"k":{"T":23,"V":14,"W":14,"Y":29,"\u00dd":29,"\u0178":29,",":22,".":22,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"X":29}},"\u0152":{"d":"315,-246r0,32r-100,0r0,74r96,0r0,32r-96,0r0,76r104,0r0,32r-160,0v-80,0,-142,-47,-142,-122v0,-73,57,-124,139,-124r159,0xm179,-31r0,-184v-79,-6,-128,38,-126,92v1,59,53,99,126,92","w":330},"\u00ba":{"d":"123,-198v0,29,-24,51,-57,51v-33,0,-58,-22,-58,-51v0,-29,25,-51,58,-51v33,0,57,22,57,51xm98,-198v0,-19,-13,-31,-32,-31v-20,0,-33,12,-33,31v0,19,13,31,33,31v19,0,32,-12,32,-31","w":131},"\u00e6":{"d":"226,-46r0,32v-28,23,-90,23,-109,-8v-34,33,-104,39,-104,-16v0,-31,26,-43,81,-58v6,-59,-56,-44,-78,-12r0,-39v22,-22,82,-25,101,3v43,-43,115,-15,109,57r-100,0v2,68,59,75,100,41xm130,-109r64,0v-3,-38,-57,-34,-64,0xm94,-28r0,-53v-32,12,-49,21,-49,36v0,27,24,35,49,17","w":240},"\u0131":{"d":"55,-162r0,162r-32,0r0,-162r32,0","w":78},"\u0142":{"d":"84,-174r0,29r-29,23r0,122r-32,0r0,-99r-28,23r0,-28r28,-23r0,-119r32,0r0,96","w":78,"k":{"y":4,"w":4,"\u00fd":4,"\u00ff":4}},"\u00f8":{"d":"58,-44r71,-84v-34,-21,-83,2,-83,46v0,13,4,28,12,38xm50,-10r-20,23r-12,-10r19,-24v-50,-47,-15,-144,61,-144v20,0,39,5,51,14r17,-19r11,11r-15,18v52,50,15,144,-64,144v-19,0,-35,-5,-48,-13xm141,-117r-72,84v37,19,88,-3,84,-49v0,-10,-4,-25,-12,-35","w":198,"k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7,",":11,".":11,"x":5}},"\u0153":{"d":"287,-46r0,32v-27,23,-101,25,-118,-15v-42,60,-156,28,-156,-48v0,-84,112,-119,156,-54v33,-57,124,-41,118,44r-101,0v-5,63,61,78,101,41xm189,-109r66,0v-2,-38,-60,-34,-66,0xm100,-136v-32,0,-55,26,-55,58v0,28,24,52,54,52v32,0,53,-23,53,-56v0,-29,-22,-54,-52,-54","w":299,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,",":-7,".":-7}},"\u00df":{"d":"21,0r0,-186v0,-40,29,-63,69,-63v74,0,91,91,32,113v27,10,46,31,46,65v-1,52,-37,85,-88,71r0,-31v29,13,56,-7,55,-40v0,-25,-10,-50,-52,-49r0,-28v28,1,42,-14,42,-38v0,-22,-15,-38,-35,-38v-21,0,-37,10,-37,42r0,182r-32,0","k":{"w":4}},"\u00ac":{"d":"190,-45r-29,0r0,-77r-141,0r0,-30r170,0r0,107","w":210},"\u00b5":{"d":"169,-162r0,162r-30,0r0,-19v-15,30,-57,28,-76,3r0,78r-32,0r0,-224r32,0v2,51,-13,141,36,141v53,0,35,-88,38,-141r32,0","w":198},"\u2122":{"d":"86,-114r0,-123r-46,0r0,-21r117,0r0,21r-47,0r0,123r-24,0xm173,-114r0,-144r35,0r36,115r35,-115r35,0r0,144r-22,0r-1,-121r-36,121r-22,0r-38,-123r0,123r-22,0","w":360},"\u00d0":{"d":"27,0r0,-107r-28,0r0,-32r28,0r0,-107r96,0v82,0,130,61,130,123v0,64,-49,123,-130,123r-96,0xm63,-32v85,6,153,-9,154,-91v0,-49,-31,-91,-100,-91r-54,0r0,75r69,0r0,32r-69,0r0,75","w":270,"k":{"V":18,"W":18,"Y":36,"\u00dd":36,"\u0178":36,",":27,".":27,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"\u00bd":{"d":"264,-19r0,19r-97,0r0,-3v39,-40,61,-64,61,-84v0,-32,-46,-24,-57,-1r0,-28v28,-25,83,-12,82,27v0,19,-15,41,-44,70r55,0xm218,-249r-164,259r-24,0r164,-259r24,0xm70,-247r0,127r-25,0r0,-127r25,0","w":303},"\u00b1":{"d":"20,-30r170,0r0,30r-170,0r0,-30xm90,-212r30,0r0,70r70,0r0,30r-70,0r0,70r-30,0r0,-70r-70,0r0,-30r70,0r0,-70","w":210},"\u00de":{"d":"25,-246r35,0r0,54v68,-7,120,16,120,70v0,51,-51,76,-120,69r0,53r-35,0r0,-246xm60,-161r0,76v41,2,85,1,84,-38v0,-18,-10,-38,-42,-38r-42,0","w":183},"\u00bc":{"d":"229,-130r0,71r16,0r0,18r-16,0r0,41r-25,0r0,-41r-61,0r0,-9r74,-80r12,0xm204,-89r-28,30r28,0r0,-30xm70,-247r0,127r-25,0r0,-127r25,0xm218,-249r-164,259r-24,0r164,-259r24,0","w":303},"\u00f7":{"d":"20,-142r170,0r0,30r-170,0r0,-30xm105,-93v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19xm105,-199v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19","w":210},"\u00a6":{"d":"33,63r0,-126r27,0r0,126r-27,0xm33,-117r0,-126r27,0r0,126r-27,0","w":93},"\u00b0":{"d":"71,-243v-17,0,-30,13,-30,30v0,17,13,29,30,29v17,0,30,-12,30,-29v0,-17,-13,-30,-30,-30xm71,-262v27,0,49,22,49,49v0,27,-22,48,-49,48v-27,0,-49,-21,-49,-48v0,-27,22,-49,49,-49","w":142},"\u00fe":{"d":"53,-4r0,87r-32,0r0,-329r32,0r0,84v70,-5,114,21,114,82v0,60,-56,100,-114,76xm53,-133r0,100v38,20,81,-4,81,-47v0,-44,-32,-58,-81,-53","k":{"y":4,"\u00fd":4,"\u00ff":4,",":4,".":4}},"\u00be":{"d":"235,-249r-164,259r-24,0r164,-259r24,0xm27,-223r0,-20v28,-14,75,-4,75,28v0,13,-5,22,-17,28v37,17,16,69,-29,69v-10,0,-21,-3,-33,-8r0,-22v20,13,55,17,55,-8v0,-14,-9,-21,-30,-20r0,-19v40,5,36,-35,6,-35v-9,0,-15,2,-27,7xm246,-130r0,71r16,0r0,18r-16,0r0,41r-25,0r0,-41r-61,0r0,-9r74,-80r12,0xm221,-89r-28,30r28,0r0,-30","w":303},"\u00ae":{"d":"75,-56r0,-143r63,0v67,1,56,77,6,79v19,6,37,44,51,64r-28,0v-14,-22,-34,-69,-55,-61r-14,0r0,61r-23,0xm98,-136v27,0,63,4,63,-22v0,-26,-36,-21,-63,-21r0,43xm244,-130v0,-61,-50,-110,-111,-110v-61,0,-111,49,-111,110v0,61,50,111,111,111v61,0,111,-50,111,-111xm266,-130v0,73,-60,133,-133,133v-73,0,-133,-60,-133,-133v0,-73,60,-132,133,-132v73,0,133,59,133,132","w":266},"\u00f0":{"d":"46,-82v0,34,21,56,52,56v34,0,55,-21,55,-56v0,-31,-23,-54,-55,-54v-30,0,-52,23,-52,54xm181,-229r-37,17v65,65,57,215,-46,215v-50,0,-85,-35,-85,-85v-1,-63,74,-108,132,-68v-5,-13,-17,-31,-32,-47r-47,22r-11,-19r41,-19v-8,-6,-15,-10,-24,-14r22,-21v13,5,23,12,33,20r44,-20","w":202},"\u00d7":{"d":"28,-72r56,-55r-56,-56r22,-21r55,55r55,-55r21,21r-55,56r55,55r-21,21r-55,-55r-55,55","w":210},"\u00a9":{"d":"176,-108r21,6v-7,31,-31,48,-65,48v-42,0,-68,-29,-68,-77v0,-78,113,-100,131,-31r-21,5v-18,-46,-92,-30,-86,29v-6,61,77,72,88,20xm266,-130v0,73,-60,133,-133,133v-73,0,-133,-60,-133,-133v0,-73,60,-132,133,-132v73,0,133,59,133,132xm244,-130v0,-61,-50,-110,-111,-110v-61,0,-111,49,-111,110v0,61,50,111,111,111v61,0,111,-50,111,-111","w":266},"\u00c1":{"d":"130,-247r110,247r-36,0r-33,-72r-104,0r-31,72r-36,0r105,-247r25,0xm117,-193r-36,89r76,0xm124,-315r36,0r-40,53r-20,0","w":240,"k":{"v":9,"w":9,"y":9,"\u00fd":9,"\u00ff":9,"C":14,"\u00c7":14,"G":14,"O":14,"\u00d8":14,"\u0152":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"Q":14,"T":36,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":29,"W":29,"Y":40,"\u00dd":40,"\u0178":40}},"\u00c2":{"d":"130,-247r110,247r-36,0r-33,-72r-104,0r-31,72r-36,0r105,-247r25,0xm117,-193r-36,89r76,0xm136,-316r34,55r-20,0r-31,-32r-30,32r-19,0r33,-55r33,0","w":240,"k":{"v":9,"w":9,"y":9,"\u00fd":9,"\u00ff":9,"C":14,"\u00c7":14,"G":14,"O":14,"\u00d8":14,"\u0152":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"Q":14,"T":36,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":29,"W":29,"Y":40,"\u00dd":40,"\u0178":40}},"\u00c4":{"d":"130,-247r110,247r-36,0r-33,-72r-104,0r-31,72r-36,0r105,-247r25,0xm117,-193r-36,89r76,0xm87,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm154,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":240,"k":{"v":9,"w":9,"y":9,"\u00fd":9,"\u00ff":9,"C":14,"\u00c7":14,"G":14,"O":14,"\u00d8":14,"\u0152":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"Q":14,"T":36,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":29,"W":29,"Y":40,"\u00dd":40,"\u0178":40}},"\u00c0":{"d":"130,-247r110,247r-36,0r-33,-72r-104,0r-31,72r-36,0r105,-247r25,0xm117,-193r-36,89r76,0xm118,-315r24,53r-20,0r-40,-53r36,0","w":240,"k":{"v":9,"w":9,"y":9,"\u00fd":9,"\u00ff":9,"C":14,"\u00c7":14,"G":14,"O":14,"\u00d8":14,"\u0152":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"Q":14,"T":36,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":29,"W":29,"Y":40,"\u00dd":40,"\u0178":40}},"\u00c5":{"d":"130,-247r110,247r-36,0r-33,-72r-104,0r-31,72r-36,0r105,-247r25,0xm117,-193r-36,89r76,0xm120,-328v18,0,34,16,34,34v0,18,-16,33,-34,33v-18,0,-33,-15,-33,-33v0,-18,15,-34,33,-34xm120,-314v-11,0,-20,9,-20,20v0,11,9,19,20,19v11,0,20,-8,20,-19v0,-11,-9,-20,-20,-20","w":240,"k":{"v":9,"w":9,"y":9,"\u00fd":9,"\u00ff":9,"C":14,"\u00c7":14,"G":14,"O":14,"\u00d8":14,"\u0152":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"Q":14,"T":36,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":29,"W":29,"Y":40,"\u00dd":40,"\u0178":40}},"\u00c3":{"d":"130,-247r110,247r-36,0r-33,-72r-104,0r-31,72r-36,0r105,-247r25,0xm117,-193r-36,89r76,0xm159,-311r14,0v0,26,-12,43,-29,43v-24,0,-53,-30,-62,0r-15,0v2,-26,11,-42,28,-42v27,0,57,31,64,-1","w":240,"k":{"v":9,"w":9,"y":9,"\u00fd":9,"\u00ff":9,"C":14,"\u00c7":14,"G":14,"O":14,"\u00d8":14,"\u0152":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"Q":14,"T":36,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":29,"W":29,"Y":40,"\u00dd":40,"\u0178":40}},"\u00c7":{"d":"239,-57r0,39v-24,13,-47,21,-96,21r-2,5v12,3,20,12,20,23v0,27,-24,37,-56,32r0,-20v17,3,30,-1,30,-9v0,-6,-7,-10,-21,-9r9,-24v-73,-12,-106,-74,-106,-120v-1,-107,118,-163,219,-110r0,38v-72,-51,-182,-21,-182,69v0,92,117,119,185,65","w":254,"k":{",":-9,".":-9,"A":-9,"\u00c6":-9,"\u00c1":-9,"\u00c2":-9,"\u00c4":-9,"\u00c0":-9,"\u00c5":-9,"\u00c3":-9}},"\u00c9":{"d":"166,-246r0,32r-104,0r0,74r101,0r0,32r-101,0r0,76r108,0r0,32r-143,0r0,-246r139,0xm94,-315r36,0r-40,53r-20,0"},"\u00ca":{"d":"166,-246r0,32r-104,0r0,74r101,0r0,32r-101,0r0,76r108,0r0,32r-143,0r0,-246r139,0xm107,-316r33,55r-19,0r-32,-32r-30,32r-19,0r33,-55r34,0"},"\u00cb":{"d":"166,-246r0,32r-104,0r0,74r101,0r0,32r-101,0r0,76r108,0r0,32r-143,0r0,-246r139,0xm57,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm124,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16"},"\u00c8":{"d":"166,-246r0,32r-104,0r0,74r101,0r0,32r-101,0r0,76r108,0r0,32r-143,0r0,-246r139,0xm88,-315r24,53r-20,0r-40,-53r36,0"},"\u00cd":{"d":"63,-246r0,246r-36,0r0,-246r36,0xm49,-315r36,0r-40,53r-20,0","w":90},"\u00ce":{"d":"63,-246r0,246r-36,0r0,-246r36,0xm62,-316r33,55r-19,0r-32,-32r-30,32r-19,0r33,-55r34,0","w":90},"\u00cf":{"d":"63,-246r0,246r-36,0r0,-246r36,0xm12,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm79,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":90},"\u00cc":{"d":"63,-246r0,246r-36,0r0,-246r36,0xm43,-315r24,53r-20,0r-40,-53r36,0","w":90},"\u00d1":{"d":"254,-246r0,246r-30,0r-164,-189r0,189r-33,0r0,-246r28,0r166,191r0,-191r33,0xm180,-311r13,0v0,26,-11,43,-28,43v-24,0,-53,-30,-62,0r-15,0v2,-26,11,-42,28,-42v27,0,57,31,64,-1","w":281},"\u00d3":{"d":"16,-123v0,-68,52,-126,132,-126v81,0,132,58,132,126v0,66,-50,126,-133,126v-80,0,-131,-59,-131,-126xm53,-123v0,54,40,94,95,94v55,0,96,-40,96,-94v0,-54,-41,-93,-96,-93v-55,0,-95,39,-95,93xm152,-315r36,0r-40,53r-20,0","w":296,"k":{"T":23,"V":14,"W":14,"Y":29,"\u00dd":29,"\u0178":29,",":22,".":22,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"X":29}},"\u00d4":{"d":"16,-123v0,-68,52,-126,132,-126v81,0,132,58,132,126v0,66,-50,126,-133,126v-80,0,-131,-59,-131,-126xm53,-123v0,54,40,94,95,94v55,0,96,-40,96,-94v0,-54,-41,-93,-96,-93v-55,0,-95,39,-95,93xm165,-316r33,55r-19,0r-32,-32r-30,32r-19,0r33,-55r34,0","w":296,"k":{"T":23,"V":14,"W":14,"Y":29,"\u00dd":29,"\u0178":29,",":22,".":22,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"X":29}},"\u00d6":{"d":"16,-123v0,-68,52,-126,132,-126v81,0,132,58,132,126v0,66,-50,126,-133,126v-80,0,-131,-59,-131,-126xm53,-123v0,54,40,94,95,94v55,0,96,-40,96,-94v0,-54,-41,-93,-96,-93v-55,0,-95,39,-95,93xm115,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm182,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":296,"k":{"T":23,"V":14,"W":14,"Y":29,"\u00dd":29,"\u0178":29,",":22,".":22,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"X":29}},"\u00d2":{"d":"16,-123v0,-68,52,-126,132,-126v81,0,132,58,132,126v0,66,-50,126,-133,126v-80,0,-131,-59,-131,-126xm53,-123v0,54,40,94,95,94v55,0,96,-40,96,-94v0,-54,-41,-93,-96,-93v-55,0,-95,39,-95,93xm146,-315r24,53r-20,0r-40,-53r36,0","w":296,"k":{"T":23,"V":14,"W":14,"Y":29,"\u00dd":29,"\u0178":29,",":22,".":22,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"X":29}},"\u00d5":{"d":"16,-123v0,-68,52,-126,132,-126v81,0,132,58,132,126v0,66,-50,126,-133,126v-80,0,-131,-59,-131,-126xm53,-123v0,54,40,94,95,94v55,0,96,-40,96,-94v0,-54,-41,-93,-96,-93v-55,0,-95,39,-95,93xm187,-311r14,0v0,26,-12,43,-29,43v-24,0,-53,-30,-62,0r-15,0v2,-26,11,-42,28,-42v27,0,57,31,64,-1","w":296,"k":{"T":23,"V":14,"W":14,"Y":29,"\u00dd":29,"\u0178":29,",":22,".":22,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"X":29}},"\u0160":{"d":"144,-231r0,39v-21,-20,-41,-25,-58,-25v-23,0,-39,12,-39,29v0,47,106,47,106,125v0,70,-92,83,-137,44r0,-45v18,23,41,36,65,36v27,0,40,-17,40,-31v0,-51,-107,-57,-107,-124v0,-62,84,-85,130,-48xm99,-262r-33,0r-33,-54r19,0r30,31v16,-11,20,-35,51,-31","w":164},"\u00da":{"d":"125,-29v51,0,73,-24,73,-74r0,-143r35,0r0,150v0,60,-36,99,-109,99v-52,0,-102,-29,-102,-96r0,-153r35,0r0,146v-3,52,28,71,68,71xm132,-315r36,0r-41,53r-19,0","w":254,"k":{",":9,".":9,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"\u00db":{"d":"125,-29v51,0,73,-24,73,-74r0,-143r35,0r0,150v0,60,-36,99,-109,99v-52,0,-102,-29,-102,-96r0,-153r35,0r0,146v-3,52,28,71,68,71xm144,-316r34,55r-20,0r-31,-32r-30,32r-19,0r33,-55r33,0","w":254,"k":{",":9,".":9,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"\u00dc":{"d":"125,-29v51,0,73,-24,73,-74r0,-143r35,0r0,150v0,60,-36,99,-109,99v-52,0,-102,-29,-102,-96r0,-153r35,0r0,146v-3,52,28,71,68,71xm94,-305v9,0,17,7,17,16v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm161,-305v9,0,17,7,17,16v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":254,"k":{",":9,".":9,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"\u00d9":{"d":"125,-29v51,0,73,-24,73,-74r0,-143r35,0r0,150v0,60,-36,99,-109,99v-52,0,-102,-29,-102,-96r0,-153r35,0r0,146v-3,52,28,71,68,71xm125,-315r24,53r-19,0r-41,-53r36,0","w":254,"k":{",":9,".":9,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"\u00dd":{"d":"108,-161r67,-85r42,0r-91,116r0,130r-35,0r0,-130r-91,-116r42,0xm113,-315r36,0r-40,53r-20,0","w":217,"k":{"O":29,"\u00d8":29,"\u0152":29,"\u00d3":29,"\u00d4":29,"\u00d6":29,"\u00d2":29,"\u00d5":29,",":47,".":47,"A":40,"\u00c6":40,"\u00c1":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u00c5":40,"\u00c3":40,"e":47,"\u00e9":47,"\u00ea":47,"\u00eb":47,"\u00e8":47,"o":50,"\u00f8":50,"\u0153":50,"\u00f3":50,"\u00f4":50,"\u00f6":50,"\u00f2":50,"\u00f5":50,"u":43,"\u00fa":43,"\u00fb":43,"\u00fc":43,"\u00f9":43,":":11,"-":54,";":11,"a":43,"\u00e6":43,"\u00e1":43,"\u00e2":43,"\u00e4":43,"\u00e0":43,"\u00e5":43,"\u00e3":43,"S":7,"\u0160":7}},"\u0178":{"d":"108,-161r67,-85r42,0r-91,116r0,130r-35,0r0,-130r-91,-116r42,0xm76,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm143,-305v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":217,"k":{"O":29,"\u00d8":29,"\u0152":29,"\u00d3":29,"\u00d4":29,"\u00d6":29,"\u00d2":29,"\u00d5":29,",":47,".":47,"A":40,"\u00c6":40,"\u00c1":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u00c5":40,"\u00c3":40,"e":47,"\u00e9":47,"\u00ea":47,"\u00eb":47,"\u00e8":47,"o":50,"\u00f8":50,"\u0153":50,"\u00f3":50,"\u00f4":50,"\u00f6":50,"\u00f2":50,"\u00f5":50,"u":43,"\u00fa":43,"\u00fb":43,"\u00fc":43,"\u00f9":43,":":11,"-":54,";":11,"a":43,"\u00e6":43,"\u00e1":43,"\u00e2":43,"\u00e4":43,"\u00e0":43,"\u00e5":43,"\u00e3":43,"S":7,"\u0160":7}},"\u017d":{"d":"162,-214r-147,0r0,-32r212,0r-156,214r156,0r0,32r-221,0xm133,-262r-34,0r-32,-54r19,0r30,31v16,-11,20,-35,51,-31","w":232},"\u00e1":{"d":"148,-29r0,20v-22,16,-46,19,-55,-4v-28,27,-84,19,-84,-23v1,-44,52,-47,84,-62v4,-54,-58,-42,-80,-10r0,-35v29,-36,112,-30,112,31r0,84v2,16,13,5,23,-1xm93,-33r0,-47v-27,9,-51,19,-51,38v1,28,36,28,51,9xm81,-235r36,0r-40,52r-20,0","w":153},"\u00e2":{"d":"148,-29r0,20v-22,16,-46,19,-55,-4v-28,27,-84,19,-84,-23v1,-44,52,-47,84,-62v4,-54,-58,-42,-80,-10r0,-35v29,-36,112,-30,112,31r0,84v2,16,13,5,23,-1xm93,-33r0,-47v-27,9,-51,19,-51,38v1,28,36,28,51,9xm86,-237r34,55r-20,0r-31,-31v-16,11,-19,35,-49,31r33,-55r33,0","w":153},"\u00e4":{"d":"148,-29r0,20v-22,16,-46,19,-55,-4v-28,27,-84,19,-84,-23v1,-44,52,-47,84,-62v4,-54,-58,-42,-80,-10r0,-35v29,-36,112,-30,112,31r0,84v2,16,13,5,23,-1xm93,-33r0,-47v-27,9,-51,19,-51,38v1,28,36,28,51,9xm36,-226v9,0,17,7,17,16v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm103,-226v9,0,17,7,17,16v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":153},"\u00e0":{"d":"148,-29r0,20v-22,16,-46,19,-55,-4v-28,27,-84,19,-84,-23v1,-44,52,-47,84,-62v4,-54,-58,-42,-80,-10r0,-35v29,-36,112,-30,112,31r0,84v2,16,13,5,23,-1xm93,-33r0,-47v-27,9,-51,19,-51,38v1,28,36,28,51,9xm67,-235r24,52r-19,0r-41,-52r36,0","w":153},"\u00e5":{"d":"148,-29r0,20v-22,16,-46,19,-55,-4v-28,27,-84,19,-84,-23v1,-44,52,-47,84,-62v4,-54,-58,-42,-80,-10r0,-35v29,-36,112,-30,112,31r0,84v2,16,13,5,23,-1xm93,-33r0,-47v-27,9,-51,19,-51,38v1,28,36,28,51,9xm70,-249v18,0,33,16,33,34v0,18,-15,33,-33,33v-18,0,-34,-15,-34,-33v0,-18,16,-34,34,-34xm70,-235v-11,0,-20,9,-20,20v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-20,-20,-20","w":153},"\u00e3":{"d":"148,-29r0,20v-22,16,-46,19,-55,-4v-28,27,-84,19,-84,-23v1,-44,52,-47,84,-62v4,-54,-58,-42,-80,-10r0,-35v29,-36,112,-30,112,31r0,84v2,16,13,5,23,-1xm93,-33r0,-47v-27,9,-51,19,-51,38v1,28,36,28,51,9xm109,-231r13,0v0,26,-11,42,-28,42v-24,0,-53,-30,-62,0r-15,0v2,-26,11,-41,28,-41v27,0,56,29,64,-1","w":153},"\u00e7":{"d":"145,-38r0,32v-11,5,-31,9,-51,9r-1,5v12,3,19,12,19,23v0,27,-24,37,-56,32r0,-20v17,3,30,-1,30,-9v0,-6,-6,-10,-20,-9r8,-25v-36,-9,-59,-38,-59,-78v0,-72,67,-106,126,-76r0,34v-41,-31,-92,-14,-93,39v-1,52,55,67,97,43","w":157,"k":{",":-7,".":-7}},"\u00e9":{"d":"158,-47r0,31v-19,13,-38,19,-65,19v-50,0,-78,-41,-78,-86v0,-49,30,-82,75,-82v43,0,71,29,71,89r-114,0v6,58,71,59,111,29xm48,-97r81,0v-1,-24,-15,-40,-38,-40v-24,0,-39,14,-43,40xm90,-235r36,0r-40,52r-20,0","w":172,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,",":-7,".":-7}},"\u00ea":{"d":"158,-47r0,31v-19,13,-38,19,-65,19v-50,0,-78,-41,-78,-86v0,-49,30,-82,75,-82v43,0,71,29,71,89r-114,0v6,58,71,59,111,29xm48,-97r81,0v-1,-24,-15,-40,-38,-40v-24,0,-39,14,-43,40xm103,-237r33,55v-31,3,-35,-20,-51,-31v-16,11,-19,35,-49,31r33,-55r34,0","w":172,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,",":-7,".":-7}},"\u00eb":{"d":"158,-47r0,31v-19,13,-38,19,-65,19v-50,0,-78,-41,-78,-86v0,-49,30,-82,75,-82v43,0,71,29,71,89r-114,0v6,58,71,59,111,29xm48,-97r81,0v-1,-24,-15,-40,-38,-40v-24,0,-39,14,-43,40xm53,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm120,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":172,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,",":-7,".":-7}},"\u00e8":{"d":"158,-47r0,31v-19,13,-38,19,-65,19v-50,0,-78,-41,-78,-86v0,-49,30,-82,75,-82v43,0,71,29,71,89r-114,0v6,58,71,59,111,29xm48,-97r81,0v-1,-24,-15,-40,-38,-40v-24,0,-39,14,-43,40xm84,-235r24,52r-20,0r-40,-52r36,0","w":172,"k":{"v":5,"w":5,"y":5,"\u00fd":5,"\u00ff":5,",":-7,".":-7}},"\u00ed":{"d":"55,-162r0,162r-32,0r0,-162r32,0xm44,-235r36,0r-41,52r-20,0","w":78},"\u00ee":{"d":"55,-162r0,162r-32,0r0,-162r32,0xm56,-237r34,55r-20,0r-31,-31v-16,11,-19,35,-49,31r32,-55r34,0","w":78},"\u00ef":{"d":"55,-162r0,162r-32,0r0,-162r32,0xm6,-226v9,0,17,7,17,16v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm73,-226v9,0,17,7,17,16v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":78},"\u00ec":{"d":"55,-162r0,162r-32,0r0,-162r32,0xm37,-235r24,52r-20,0r-40,-52r36,0","w":78},"\u00f1":{"d":"54,-162v1,7,-2,17,1,22v32,-42,103,-31,103,40r0,100r-32,0v-5,-50,18,-136,-32,-139v-14,0,-25,6,-40,23r0,116r-32,0r0,-162r32,0xm129,-231r14,0v0,26,-12,42,-29,42v-24,0,-53,-30,-62,0r-15,0v2,-26,12,-41,29,-41v26,0,55,29,63,-1","k":{"v":5,"y":7,"\u00fd":7,"\u00ff":7,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4}},"\u00f3":{"d":"98,-165v51,0,88,35,88,83v0,51,-36,85,-88,85v-50,0,-85,-35,-85,-85v0,-46,37,-83,85,-83xm98,-136v-30,0,-52,23,-52,54v0,34,21,56,52,56v34,0,55,-21,55,-56v0,-31,-23,-54,-55,-54xm104,-235r36,0r-41,52r-19,0","w":198,"k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7,",":11,".":11,"x":5}},"\u00f4":{"d":"98,-165v51,0,88,35,88,83v0,51,-36,85,-88,85v-50,0,-85,-35,-85,-85v0,-46,37,-83,85,-83xm98,-136v-30,0,-52,23,-52,54v0,34,21,56,52,56v34,0,55,-21,55,-56v0,-31,-23,-54,-55,-54xm116,-237r34,55r-20,0r-31,-31v-16,11,-19,35,-49,31r32,-55r34,0","w":198,"k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7,",":11,".":11,"x":5}},"\u00f6":{"d":"98,-165v51,0,88,35,88,83v0,51,-36,85,-88,85v-50,0,-85,-35,-85,-85v0,-46,37,-83,85,-83xm98,-136v-30,0,-52,23,-52,54v0,34,21,56,52,56v34,0,55,-21,55,-56v0,-31,-23,-54,-55,-54xm66,-226v9,0,17,7,17,16v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm133,-226v9,0,17,7,17,16v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":198,"k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7,",":11,".":11,"x":5}},"\u00f2":{"d":"98,-165v51,0,88,35,88,83v0,51,-36,85,-88,85v-50,0,-85,-35,-85,-85v0,-46,37,-83,85,-83xm98,-136v-30,0,-52,23,-52,54v0,34,21,56,52,56v34,0,55,-21,55,-56v0,-31,-23,-54,-55,-54xm97,-235r24,52r-19,0r-41,-52r36,0","w":198,"k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7,",":11,".":11,"x":5}},"\u00f5":{"d":"98,-165v51,0,88,35,88,83v0,51,-36,85,-88,85v-50,0,-85,-35,-85,-85v0,-46,37,-83,85,-83xm98,-136v-30,0,-52,23,-52,54v0,34,21,56,52,56v34,0,55,-21,55,-56v0,-31,-23,-54,-55,-54xm139,-231r13,0v0,26,-11,42,-28,42v-24,0,-53,-30,-62,0r-15,0v2,-26,11,-41,28,-41v27,0,56,29,64,-1","w":198,"k":{"v":4,"w":4,"y":7,"\u00fd":7,"\u00ff":7,",":11,".":11,"x":5}},"\u0161":{"d":"49,-122v-4,13,89,53,75,78v0,51,-69,58,-109,32r0,-34v21,14,40,21,53,21v13,0,23,-6,23,-18v0,-22,-75,-34,-75,-78v-1,-46,64,-55,101,-31r0,32v-18,-12,-35,-17,-47,-17v-13,0,-21,6,-21,15xm86,-183r-34,0r-33,-54r20,0r29,31v17,-11,20,-35,52,-31","w":138,"k":{"w":4}},"\u00fa":{"d":"157,0r-32,0r0,-21v-35,41,-103,28,-103,-40r0,-101r32,0v7,50,-22,137,33,139v14,0,28,-8,38,-23r0,-116r32,0r0,162xm94,-235r36,0r-40,52r-20,0"},"\u00fb":{"d":"157,0r-32,0r0,-21v-35,41,-103,28,-103,-40r0,-101r32,0v7,50,-22,137,33,139v14,0,28,-8,38,-23r0,-116r32,0r0,162xm107,-237r33,55v-31,3,-35,-20,-51,-31v-16,11,-19,35,-49,31r33,-55r34,0"},"\u00fc":{"d":"157,0r-32,0r0,-21v-35,41,-103,28,-103,-40r0,-101r32,0v7,50,-22,137,33,139v14,0,28,-8,38,-23r0,-116r32,0r0,162xm57,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm124,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16"},"\u00f9":{"d":"157,0r-32,0r0,-21v-35,41,-103,28,-103,-40r0,-101r32,0v7,50,-22,137,33,139v14,0,28,-8,38,-23r0,-116r32,0r0,162xm88,-235r24,52r-20,0r-40,-52r36,0"},"\u00fd":{"d":"158,-162r-115,245r-35,0r55,-118r-63,-127r36,0r44,91r42,-91r36,0xm83,-235r36,0r-40,52r-20,0","w":157,"k":{",":29,".":29,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u0153":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7}},"\u00ff":{"d":"158,-162r-115,245r-35,0r55,-118r-63,-127r36,0r44,91r42,-91r36,0xm46,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16xm113,-226v9,0,16,7,16,16v0,9,-7,17,-16,17v-9,0,-17,-8,-17,-17v0,-9,8,-16,17,-16","w":157,"k":{",":29,".":29,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u0153":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7}},"\u017e":{"d":"145,-162r-86,133r87,0r0,29r-142,0r86,-133r-82,0r0,-29r137,0xm91,-183r-33,0r-33,-54r19,0r30,31v16,-11,20,-35,51,-31","w":150},"\u00a0":{"w":100},"\u00ad":{"d":"102,-96r0,33r-88,0r0,-33r88,0","w":116},"\u00b9":{"d":"71,-247r0,127r-25,0r0,-127r25,0","w":116},"\u00b3":{"d":"20,-223r0,-20v28,-14,75,-4,75,28v0,13,-5,22,-17,28v37,17,16,69,-29,69v-10,0,-20,-3,-32,-8r0,-22v19,13,54,17,54,-8v0,-14,-9,-21,-30,-20r0,-19v40,5,36,-35,6,-35v-9,0,-15,2,-27,7","w":116},"\u00b2":{"d":"106,-139r0,19v-31,-2,-69,4,-96,-2v39,-40,61,-65,61,-85v0,-33,-47,-24,-58,-1r0,-28v28,-26,84,-11,83,28v0,19,-15,40,-44,69r54,0","w":116}}});
//jQuery.makeEven - an equal columns jQuery plugin
//
(function ($) {
	'use strict';
	var otherChildren,
		getHighest,
		getLowestOffset,
		getPadding,
		haveSameParent,
		isWindowLoaded = false;
	
	$(window).load(function () {
		isWindowLoaded = true;
	});
			
	otherChildren = function (subSelector) {
			var totalHeight = 0;
			if (subSelector === undefined) {
				subSelector = '';
			}
			$(this).siblings().not(subSelector).each(function () {
				totalHeight += $(this).outerHeight(true);
			});
			return totalHeight;
	};
	
	getHighest = function (returnRef) {
		var highest = 0,
			highest_ref;
		$(this).each(function () {
			if ($(this).outerHeight(true) > highest) {
				highest = $(this).outerHeight(true);
				highest_ref = this;
			}
		});
		return (returnRef === true ? highest_ref : highest);
	};
	
	getLowestOffset = function (returnRef) {
		var highest = 0,
			highest_ref;
		
		$(this).each(function () {
			if ($(this).offset().top > highest) {
				highest = $(this).offset().top;
				highest_ref = this;
			}
		});
		return (returnRef === true ? highest_ref : highest);
	};
	
	getPadding = function (elem, withMargin) {
		var totalPad = 0,
			withMargin = withMargin || false;
		$(elem).each(function () {
			totalPad += $(this).outerHeight(withMargin) - $(this).height();
		});
		return totalPad;
	}
	
	haveSameParent = function (obj) {
		var test = true,
			lastObj = [];
		$.each(obj, function (i, v) {
			if (i > 0 && $(v).parent()[0] !== lastObj[0]) {
				test = false;
				return false;
			}
			lastObj = $(v).parent();
		});
		return test;
	};
	$.fn.makeEven = function (opts) {
		var highestHeight = 0,
			subs,
			differentParent = $(),
			lastSubParent,
			farthestDown,
			subParents = [],
			activeParents = [],
			matched = this,
			defaults = {
				subContainers: null,
				subIsSum: false,
				subGrowth: 'even'
			},
			activeOptions,
			main;
		activeOptions = $.extend({}, defaults, opts);
		main = function () {
			highestHeight = getHighest.call(matched);
			farthestDown = getLowestOffset.call(matched);
			matched.each(function () {
				var newHeight = 0,
					offsetDifference,
					final = highestHeight,
					t,
					theChildren = $(this).children().filter(activeOptions.subContainers),
					currentParentOffset,
					tallestChild,
					remainingChildren,
					remainingHeight,
					distributeHeight,
					currentParentPadding,
					childPadding,
					temp;
				
				if ($(this).height() < highestHeight) {
					final -= getPadding(this, false);
				}
				offsetDifference = farthestDown - $(this).offset().top;
				final += offsetDifference;
				$(this).height(final);
				if (activeOptions.subContainers !== null) {
					if (theChildren.length === 0) {
						return true;
					}
					currentParentOffset = farthestDown - $(this).offset().top;
					tallestChild = getHighest.call(theChildren, true);
					remainingChildren = theChildren.not(tallestChild);
					remainingHeight = highestHeight + currentParentOffset - otherChildren.call(theChildren, activeOptions.subContainers);
					distributeHeight = highestHeight + currentParentOffset - otherChildren.call(theChildren, remainingChildren);
					currentParentPadding = getPadding(this, true);
					childPadding = getPadding(theChildren, true);
					temp;
					if (activeOptions.subIsSum === true) {
						temp = (distributeHeight / remainingChildren.length) - currentParentPadding - childPadding;
						remainingChildren.height(temp);
					} else {
						theChildren.height((remainingHeight) - currentParentPadding - childPadding);
					}
				}
			});
		};
		if (isWindowLoaded === true) {
			main();
		} else {
			$(window).load(function () {
				main();
			});
		}
		return this;
	};
}(jQuery));
/**
 * Copyright 2010 Tim Down.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
var Hashtable=(function(){var p="function";var n=(typeof Array.prototype.splice==p)?function(s,r){s.splice(r,1)}:function(u,t){var s,v,r;if(t===u.length-1){u.length=t}else{s=u.slice(t+1);u.length=t;for(v=0,r=s.length;v<r;++v){u[t+v]=s[v]}}};function a(t){var r;if(typeof t=="string"){return t}else{if(typeof t.hashCode==p){r=t.hashCode();return(typeof r=="string")?r:a(r)}else{if(typeof t.toString==p){return t.toString()}else{try{return String(t)}catch(s){return Object.prototype.toString.call(t)}}}}}function g(r,s){return r.equals(s)}function e(r,s){return(typeof s.equals==p)?s.equals(r):(r===s)}function c(r){return function(s){if(s===null){throw new Error("null is not a valid "+r)}else{if(typeof s=="undefined"){throw new Error(r+" must not be undefined")}}}}var q=c("key"),l=c("value");function d(u,s,t,r){this[0]=u;this.entries=[];this.addEntry(s,t);if(r!==null){this.getEqualityFunction=function(){return r}}}var h=0,j=1,f=2;function o(r){return function(t){var s=this.entries.length,v,u=this.getEqualityFunction(t);while(s--){v=this.entries[s];if(u(t,v[0])){switch(r){case h:return true;case j:return v;case f:return[s,v[1]]}}}return false}}function k(r){return function(u){var v=u.length;for(var t=0,s=this.entries.length;t<s;++t){u[v+t]=this.entries[t][r]}}}d.prototype={getEqualityFunction:function(r){return(typeof r.equals==p)?g:e},getEntryForKey:o(j),getEntryAndIndexForKey:o(f),removeEntryForKey:function(s){var r=this.getEntryAndIndexForKey(s);if(r){n(this.entries,r[0]);return r[1]}return null},addEntry:function(r,s){this.entries[this.entries.length]=[r,s]},keys:k(0),values:k(1),getEntries:function(s){var u=s.length;for(var t=0,r=this.entries.length;t<r;++t){s[u+t]=this.entries[t].slice(0)}},containsKey:o(h),containsValue:function(s){var r=this.entries.length;while(r--){if(s===this.entries[r][1]){return true}}return false}};function m(s,t){var r=s.length,u;while(r--){u=s[r];if(t===u[0]){return r}}return null}function i(r,s){var t=r[s];return(t&&(t instanceof d))?t:null}function b(t,r){var w=this;var v=[];var u={};var x=(typeof t==p)?t:a;var s=(typeof r==p)?r:null;this.put=function(B,C){q(B);l(C);var D=x(B),E,A,z=null;E=i(u,D);if(E){A=E.getEntryForKey(B);if(A){z=A[1];A[1]=C}else{E.addEntry(B,C)}}else{E=new d(D,B,C,s);v[v.length]=E;u[D]=E}return z};this.get=function(A){q(A);var B=x(A);var C=i(u,B);if(C){var z=C.getEntryForKey(A);if(z){return z[1]}}return null};this.containsKey=function(A){q(A);var z=x(A);var B=i(u,z);return B?B.containsKey(A):false};this.containsValue=function(A){l(A);var z=v.length;while(z--){if(v[z].containsValue(A)){return true}}return false};this.clear=function(){v.length=0;u={}};this.isEmpty=function(){return !v.length};var y=function(z){return function(){var A=[],B=v.length;while(B--){v[B][z](A)}return A}};this.keys=y("keys");this.values=y("values");this.entries=y("getEntries");this.remove=function(B){q(B);var C=x(B),z,A=null;var D=i(u,C);if(D){A=D.removeEntryForKey(B);if(A!==null){if(!D.entries.length){z=m(v,C);n(v,z);delete u[C]}}}return A};this.size=function(){var A=0,z=v.length;while(z--){A+=v[z].entries.length}return A};this.each=function(C){var z=w.entries(),A=z.length,B;while(A--){B=z[A];C(B[0],B[1])}};this.putAll=function(H,C){var B=H.entries();var E,F,D,z,A=B.length;var G=(typeof C==p);while(A--){E=B[A];F=E[0];D=E[1];if(G&&(z=w.get(F))){D=C(F,z,D)}w.put(F,D)}};this.clone=function(){var z=new b(t,r);z.putAll(w);return z}}return b})();(function(k){var a=new Hashtable();var f=["ae","au","ca","cn","eg","gb","hk","il","in","jp","sk","th","tw","us"];var b=["at","br","de","dk","es","gr","it","nl","pt","tr","vn"];var i=["cz","fi","fr","ru","se","pl"];var d=["ch"];var g=[[".",","],[",","."],[","," "],[".","'"]];var c=[f,b,i,d];function j(n,l,m){this.dec=n;this.group=l;this.neg=m}function h(){for(var l=0;l<c.length;l++){localeGroup=c[l];for(var m=0;m<localeGroup.length;m++){a.put(localeGroup[m],l)}}}function e(l){if(a.size()==0){h()}var q=".";var o=",";var p="-";var n=a.get(l);if(n){var m=g[n];if(m){q=m[0];o=m[1]}}return new j(q,o,p)}k.fn.formatNumber=function(l,m,n){return this.each(function(){if(m==null){m=true}if(n==null){n=true}var p;if(k(this).is(":input")){p=new String(k(this).val())}else{p=new String(k(this).text())}var o=k.formatNumber(p,l);if(m){if(k(this).is(":input")){k(this).val(o)}else{k(this).text(o)}}if(n){return o}})};k.formatNumber=function(q,w){var w=k.extend({},k.fn.formatNumber.defaults,w);var l=e(w.locale.toLowerCase());var n=l.dec;var u=l.group;var o=l.neg;var m="0#-,.";var t="";var s=false;for(var r=0;r<w.format.length;r++){if(m.indexOf(w.format.charAt(r))==-1){t=t+w.format.charAt(r)}else{if(r==0&&w.format.charAt(r)=="-"){s=true;continue}else{break}}}var v="";for(var r=w.format.length-1;r>=0;r--){if(m.indexOf(w.format.charAt(r))==-1){v=w.format.charAt(r)+v}else{break}}w.format=w.format.substring(t.length);w.format=w.format.substring(0,w.format.length-v.length);var p=new Number(q);return k._formatNumber(p,w,v,t,s)};k._formatNumber=function(m,q,n,G,s){var q=k.extend({},k.fn.formatNumber.defaults,q);var E=e(q.locale.toLowerCase());var D=E.dec;var v=E.group;var l=E.neg;var x=false;if(isNaN(m)){if(q.nanForceZero==true){m=0;x=true}else{return null}}if(n=="%"){m=m*100}var z="";if(q.format.indexOf(".")>-1){var F=D;var t=q.format.substring(q.format.lastIndexOf(".")+1);if(q.round==true){m=new Number(m.toFixed(t.length))}else{var K=m.toString();K=K.substring(0,K.lastIndexOf(".")+t.length+1);m=new Number(K)}var y=m%1;var A=new String(y.toFixed(t.length));A=A.substring(A.lastIndexOf(".")+1);for(var H=0;H<t.length;H++){if(t.charAt(H)=="#"&&A.charAt(H)!="0"){F+=A.charAt(H);continue}else{if(t.charAt(H)=="#"&&A.charAt(H)=="0"){var r=A.substring(H);if(r.match("[1-9]")){F+=A.charAt(H);continue}else{break}}else{if(t.charAt(H)=="0"){F+=A.charAt(H)}}}}z+=F}else{m=Math.round(m)}var u=Math.floor(m);if(m<0){u=Math.ceil(m)}var C="";if(q.format.indexOf(".")==-1){C=q.format}else{C=q.format.substring(0,q.format.indexOf("."))}var J="";if(!(u==0&&C.substr(C.length-1)=="#")||x){var w=new String(Math.abs(u));var p=9999;if(C.lastIndexOf(",")!=-1){p=C.length-C.lastIndexOf(",")-1}var o=0;for(var H=w.length-1;H>-1;H--){J=w.charAt(H)+J;o++;if(o==p&&H!=0){J=v+J;o=0}}if(C.length>J.length){var I=C.indexOf("0");if(I!=-1){var B=C.length-I;while(J.length<B){J="0"+J}}}}if(!J&&C.indexOf("0",C.length-1)!==-1){J="0"}z=J+z;if(m<0&&s&&G.length>0){G=l+G}else{if(m<0){z=l+z}}if(!q.decimalSeparatorAlwaysShown){if(z.lastIndexOf(D)==z.length-1){z=z.substring(0,z.length-1)}}z=G+z+n;return z};k.fn.parseNumber=function(l,m,o){if(m==null){m=true}if(o==null){o=true}var p;if(k(this).is(":input")){p=new String(k(this).val())}else{p=new String(k(this).text())}var n=k.parseNumber(p,l);if(n){if(m){if(k(this).is(":input")){k(this).val(n.toString())}else{k(this).text(n.toString())}}if(o){return n}}};k.parseNumber=function(r,v){var v=k.extend({},k.fn.parseNumber.defaults,v);var m=e(v.locale.toLowerCase());var o=m.dec;var t=m.group;var p=m.neg;var l="1234567890.-";while(r.indexOf(t)>-1){r=r.replace(t,"")}r=r.replace(o,".").replace(p,"-");var u="";var n=false;if(r.charAt(r.length-1)=="%"){n=true}for(var s=0;s<r.length;s++){if(l.indexOf(r.charAt(s))>-1){u=u+r.charAt(s)}}var q=new Number(u);if(n){q=q/100;q=q.toFixed(u.length-1)}return q};k.fn.parseNumber.defaults={locale:"us",decimalSeparatorAlwaysShown:false};k.fn.formatNumber.defaults={format:"#,###.00",locale:"us",decimalSeparatorAlwaysShown:false,nanForceZero:true,round:true};Number.prototype.toFixed=function(l){return $._roundNumber(this,l)};k._roundNumber=function(n,m){var l=Math.pow(10,m||0);var o=String(Math.round(n*l)/l);if(m>0){var p=o.indexOf(".");if(p==-1){o+=".";p=0}else{p=o.length-(p+1)}while(p<m){o+="0";p++}}return o}})(jQuery);eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('(e($){$.2m.D=e(M){g W=m;g 18=m;g f=m;g 1M={h:0,1V:1,1r:0,V:\'1K-X\',Q:\'1K-w\',1w:2N,p:2G,1v:\'2H/D-2u.2C\',G:1F,z:2D,F:m,B:m,E:m,T:m};g 16={1I:e(k){n o.C(e(){f=$(o);g 1x=$.1y(1M,k);g 1z=f.y(\'D\');k=$.1y(1z,1x);f.y(\'D\',k);l(k.h===m||k.h==0){(1b()!==m)?k.h=1b():k.h=0;j(\'h\',k.h)}j(\'H\',m);f.1f(\'1e\',e(1i,k){1X(k)});f.1f(\'1a\',e(1i){1D()});f.1f(\'1j\',e(1i){1p()});1Q();O()})},2B:e(w){n o.C(e(){f=$(o);j(\'h\',w);O()})},2A:e(w){n o.C(e(){f=$(o);j(\'h\',w);O()})},2v:e(){g A=m;o.C(e(){f=$(o);A=a(\'h\')});n A},1e:e(k){n o.C(e(){f=$(o);f.1c(\'1e\',k)})},1j:e(){n o.C(e(){f=$(o);f.1c(\'1j\')})},1a:e(){n o.C(e(){f=$(o);f.1c(\'1a\')})}};l(16[M]){n 16[M].1n(o,2b.24.27.15(1G,1))}I l(v M===\'2l\'||!M){n 16.1I.1n(o,1G)}I{$.1d(\'2k \'+M+\' 2i 1S 2g 2h 1h.D\')}e a(Y){g y=f.y(\'D\');g w=y[Y];l(v w!==\'1m\'){n w}n m}e j(Y,w){g y=f.y(\'D\');y[Y]=w;f.y(\'D\',y)}e 1P(){l(f.R(\'[U="\'+a(\'Q\')+\'"]\').S<1){f.2p(\'<2n 2o="2f" U="\'+a(\'Q\')+\'" w="\'+a(\'h\')+\'" />\')}g P=1l();g Z=19().S;2e(Z!=P){l(Z>P){f.25(\'<1E 23="\'+a(\'V\')+\'" 1N="\'+W+18[\'0\']+\'">0</1E>\')}I l(Z<P){f.R(\'.\'+a(\'V\')+\':26-28(1)\').2d()}P=1l()}}e O(){1P();g h=19();g 1O=1k();g 1g=0;$.C(1O,e(2Y,w){X=h.1t().2O(1g);$(o).2t(\'1N\',W+18[X]);$(o).1B(X.2K(\' \',\'&2L;\').1t());1g++});1Z()}e 1Q(){W="2W:"+a(\'1w\')+"r;2X:"+a(\'p\')+"r;q-2V:2U(\'"+a(\'1v\')+"\');q-1R:2T-1R;1B-2I: -2y;2z:2x-2w;";18={\'1\':\'q-s: \'+a(\'p\')*0+\'r u;\',\'2\':\'q-s: -\'+a(\'p\')*1+\'r u;\',\'3\':\'q-s: -\'+a(\'p\')*2+\'r u;\',\'4\':\'q-s: -\'+a(\'p\')*3+\'r u;\',\'5\':\'q-s: -\'+a(\'p\')*4+\'r u;\',\'6\':\'q-s: -\'+a(\'p\')*5+\'r u;\',\'7\':\'q-s: -\'+a(\'p\')*6+\'r u;\',\'8\':\'q-s: -\'+a(\'p\')*7+\'r u;\',\'9\':\'q-s: -\'+a(\'p\')*8+\'r u;\',\'0\':\'q-s: -\'+a(\'p\')*9+\'r u;\',\'.\':\'q-s: -\'+a(\'p\')*10+\'r u;\',\'-\':\'q-s: -\'+a(\'p\')*11+\'r u;\',\',\':\'q-s: -\'+a(\'p\')*12+\'r u;\',\' \':\'q-s: -\'+a(\'p\')*13+\'r u;\'}}e 1k(){n f.R(\'.\'+a(\'V\'))}e 1l(){n 1k().S}e 1b(){g A=2J(f.R(\'[U="\'+a(\'Q\')+\'"]\').A());l(A==A==m)n m;n A}e 1Z(){f.R(\'[U="\'+a(\'Q\')+\'"]\').A(a(\'h\'))}e 19(){g h=a(\'h\');l(v h!==\'h\'){$.1d(\'2Q 1u 2M 2P-2q w.\');n\'0\'}g N=\'\';l(a(\'T\')){l($.1W){N=$.1W(h,a(\'T\'))}I{$.1d(\'22 21 1h 1Y 20 1S 2j. 2s 1Y 20 29 1u 2c 2a T 2R.\')}}I{l(h>=0){g 1U=a(\'1V\');g 1T=1U-h.1q().1t().S;2S(g i=0;i<1T;i++){N+=\'0\'}N+=h.1q(a(\'1r\'))}I{N=\'-\'+2F.2E(h.1q(a(\'1r\')))}}n N}e 1X(k){l(v k==\'1m\'&&m==a(\'H\'))n m;l(v k!==\'1m\'){l(v k.G==\'e\')j(\'G\',k.G);l(v k.F==\'e\')j(\'F\',k.F);l(v k.B==\'e\')j(\'B\',k.B);l(v k.E==\'e\')j(\'E\',k.E);l(v k.z==\'h\')j(\'z\',k.z)}l(a(\'1s\')===K){j(\'1s\',m);j(\'H\',K);j(\'17\',1A(1o,1))}I{j(\'L\',a(\'h\'));j(\'14\',k.h);j(\'J\',0);j(\'z\',a(\'z\')/10); j(\'H\',K);j(\'17\',1A(1o,1))}g F=a(\'F\');l(v F==\'e\')F.15(f,f)}e 1o(){g J=a(\'J\');g L=a(\'L\');g 1C=a(\'14\')-L;g z=a(\'z\');g G=a(\'G\');g 1L=G.1n(f,[m,J,L,1C,z]);j(\'h\',1L);O();l(J>=z){1p()}j(\'J\',J+1)}e 1p(){l(K!==a(\'H\'))n m;1H(a(\'17\'));j(\'h\',a(\'14\'));j(\'L\',1J);j(\'14\',1J);j(\'2r\',0);j(\'H\',m);g B=a(\'B\');l(v B==\'e\')B.15(f,f)}e 1D(){l(K!==a(\'H\'))n m;j(\'1s\',K);1H(a(\'17\'));g E=a(\'E\');l(v E==\'e\')E.15(f,f)}e 1F(x,t,b,c,d){n t/d*c+b}}})(1h);',62,185,'||||||||||_getOption||||function|obj|var|number||_setOption|options|if|false|return|this|digitWidth|background|px|position||0px|typeof|value||data|duration|val|onAnimationStopped|each|flipCounter|onAnimationPaused|onAnimationStarted|easing|animating|else|time|true|start_number|method|str_number|_renderCounter|digits_length|counterFieldName|children|length|formatNumberOptions|name|digitClass|style_digit|digit|option|num_digits_needed|||||end_number|call|methods|interval|style_character|_getNumberFormatted|pauseAnimation|_getCounterValue|trigger|error|startAnimation|bind|pos|jQuery|event|stopAnimation|_getDigits|_getDigitsLength|undefined|apply|_doAnimation|_stopAnimation|toFixed|numFractionalDigits|paused|toString|to|imagePath|digitHeight|new_options|extend|old_options|setInterval|text|number_change|_pauseAnimation|span|_noEasing|arguments|clearInterval|init|null|counter|new_num|defaults|style|digits|_setupCounter|_setupStyles|repeat|not|num_extra_zeros|num_integral_digits|numIntegralDigits|formatNumber|_startAnimation|plugin|_setCounterValue|is|numberformatter|The|class|prototype|prepend|nth|slice|child|required|the|Array|use|remove|while|hidden|exist|on|does|loaded|Method|object|fn|input|type|append|numeric|timer|This|attr|medium|getNumber|block|inline|999em|display|setNumber|renderCounter|png|10000|abs|Math|30|img|indent|parseFloat|replace|nbsp|render|40|charAt|non|Attempting|setting|for|no|url|image|height|width|index'.split('|'),0,{}))

