// use instead of console.log
window.log = function() {
    log.history = log.history || [];
    log.history.push(arguments);
    if (this.console) {
        console.log(Array.prototype.slice.call(arguments));
    }
};

// gives trim() to less capable browsers
if (!String.prototype.trim) {
    String.prototype.trim = function() {
        return this.replace(/^s*(S*(?:s+S+)*)s*$/, "$1");
    };
}

(function($) {    
    // disables selection for click on non <a> elements
    $.fn.disableTextSelect = function() {
        return this.each(function() {
            if ($.browser.mozilla) {
                $(this).css('MozUserSelect', 'none');
            } else if ($.browser.msie) {
                $(this).bind('selectstart',
                function() {
                    return false;
                });
            } else {
                $(this).mousedown(function() {
                    return false;
                });
            }
        });
    };
    
    // Lazy load image (IMG or background-image) with optional callback
    $.fn.imageLoad = function(callback) {
        var image = this,
                tag = image.get(0).tagName,
                img = new Image(),
                src, style;
        
        if(typeof callback === 'function') {
            $(img).load(callback);
        }
        
        if(tag === 'IMG') {
            src = image.attr('src');
        } else {
            style = image.attr('style');
            if(style.match(/background-image/i)) {
                // finds url in background-image: url scenario
                src = style.replace(/.*url\(\'?\"?(.*?)\'?\"?\).*/, "$1");
            }
        }
        
        if(src) {
            img.src = src;
        }
        
        return image;
    };
    
    
    /**
    * hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+
    * <http://cherne.net/brian/resources/jquery.hoverIntent.html>
    * 
    * @param  f  onMouseOver function || An object with configuration options
    * @param  g  onMouseOut function  || Nothing (use configuration options object)
    * @author    Brian Cherne <brian@cherne.net>
    */
    (function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);
    /*
     * jQuery Color Animations
     * Copyright 2007 John Resig
     * Released under the MIT and GPL licenses.
     */                (function(d){d.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(f,e){d.fx.step[e]=function(g){if(g.state==0){g.start=c(g.elem,e);g.end=b(g.end)}g.elem.style[e]="rgb("+[Math.max(Math.min(parseInt((g.pos*(g.end[0]-g.start[0]))+g.start[0]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[1]-g.start[1]))+g.start[1]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[2]-g.start[2]))+g.start[2]),255),0)].join(",")+")"}});function b(f){var e;if(f&&f.constructor==Array&&f.length==3){return f}if(e=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(f)){return[parseInt(e[1]),parseInt(e[2]),parseInt(e[3])]}if(e=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(f)){return[parseFloat(e[1])*2.55,parseFloat(e[2])*2.55,parseFloat(e[3])*2.55]}if(e=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(f)){return[parseInt(e[1],16),parseInt(e[2],16),parseInt(e[3],16)]}if(e=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(f)){return[parseInt(e[1]+e[1],16),parseInt(e[2]+e[2],16),parseInt(e[3]+e[3],16)]}return a[d.trim(f).toLowerCase()]}function c(g,e){var f;do{f=d.curCSS(g,e);if(f!=""&&f!="transparent"||d.nodeName(g,"body")){break}e="backgroundColor"}while(g=g.parentNode);return b(f)}var a={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]}})(jQuery);
    /**
     * Animate background-position
     * @author Alexander Farkas
     * v. 1.21
     */
    (function(b){if(!document.defaultView||!document.defaultView.getComputedStyle){var d=jQuery.curCSS;jQuery.curCSS=function(g,e,h){if(e==="background-position"){e="backgroundPosition"}if(e!=="backgroundPosition"||!g.currentStyle||g.currentStyle[e]){return d.apply(this,arguments)}var f=g.style;if(!h&&f&&f[e]){return f[e]}return d(g,"backgroundPositionX",h)+" "+d(g,"backgroundPositionY",h)}}var c=b.fn.animate;b.fn.animate=function(e){if("background-position" in e){e.backgroundPosition=e["background-position"];delete e["background-position"]}if("backgroundPosition" in e){e.backgroundPosition="("+e.backgroundPosition}return c.apply(this,arguments)};function a(f){f=f.replace(/left|top/g,"0px");f=f.replace(/right|bottom/g,"100%");f=f.replace(/([0-9\.]+)(\s|\)|$)/g,"$1px$2");var e=f.match(/(-?[0-9\.]+)(px|\%|em|pt)\s(-?[0-9\.]+)(px|\%|em|pt)/);return[parseFloat(e[1],10),e[2],parseFloat(e[3],10),e[4]]}b.fx.step.backgroundPosition=function(f){if(!f.bgPosReady){var h=b.curCSS(f.elem,"backgroundPosition");if(!h){h="0px 0px"}h=a(h);f.start=[h[0],h[2]];var e=a(f.options.curAnim.backgroundPosition);f.end=[e[0],e[2]];f.unit=[e[1],e[3]];f.bgPosReady=true}var g=[];g[0]=((f.end[0]-f.start[0])*f.pos)+f.start[0]+f.unit[0];g[1]=((f.end[1]-f.start[1])*f.pos)+f.start[1]+f.unit[1];f.elem.style.backgroundPosition=g[0]+" "+g[1]}})(jQuery);
    /*
     * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/$/easing/
     *
     * Uses the built in easing capabilities added In $ 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. 
     *
    */
    $.easing.jswing=$.easing.swing;$.extend($.easing,{def:"easeOutQuad",swing:function(B,C,A,E,D){return $.easing[$.easing.def](B,C,A,E,D)},easeInQuad:function(B,C,A,E,D){return E*(C/=D)*C+A},easeOutQuad:function(B,C,A,E,D){return -E*(C/=D)*(C-2)+A},easeInOutQuad:function(B,C,A,E,D){if((C/=D/2)<1){return E/2*C*C+A}return -E/2*((--C)*(C-2)-1)+A},easeInCubic:function(B,C,A,E,D){return E*(C/=D)*C*C+A},easeOutCubic:function(B,C,A,E,D){return E*((C=C/D-1)*C*C+1)+A},easeInOutCubic:function(B,C,A,E,D){if((C/=D/2)<1){return E/2*C*C*C+A}return E/2*((C-=2)*C*C+2)+A},easeInQuart:function(B,C,A,E,D){return E*(C/=D)*C*C*C+A},easeOutQuart:function(B,C,A,E,D){return -E*((C=C/D-1)*C*C*C-1)+A},easeInOutQuart:function(B,C,A,E,D){if((C/=D/2)<1){return E/2*C*C*C*C+A}return -E/2*((C-=2)*C*C*C-2)+A},easeInQuint:function(B,C,A,E,D){return E*(C/=D)*C*C*C*C+A},easeOutQuint:function(B,C,A,E,D){return E*((C=C/D-1)*C*C*C*C+1)+A},easeInOutQuint:function(B,C,A,E,D){if((C/=D/2)<1){return E/2*C*C*C*C*C+A}return E/2*((C-=2)*C*C*C*C+2)+A},easeInSine:function(B,C,A,E,D){return -E*Math.cos(C/D*(Math.PI/2))+E+A},easeOutSine:function(B,C,A,E,D){return E*Math.sin(C/D*(Math.PI/2))+A},easeInOutSine:function(B,C,A,E,D){return -E/2*(Math.cos(Math.PI*C/D)-1)+A},easeInExpo:function(B,C,A,E,D){return(C==0)?A:E*Math.pow(2,10*(C/D-1))+A},easeOutExpo:function(B,C,A,E,D){return(C==D)?A+E:E*(-Math.pow(2,-10*C/D)+1)+A},easeInOutExpo:function(B,C,A,E,D){if(C==0){return A}if(C==D){return A+E}if((C/=D/2)<1){return E/2*Math.pow(2,10*(C-1))+A}return E/2*(-Math.pow(2,-10*--C)+2)+A},easeInCirc:function(B,C,A,E,D){return -E*(Math.sqrt(1-(C/=D)*C)-1)+A},easeOutCirc:function(B,C,A,E,D){return E*Math.sqrt(1-(C=C/D-1)*C)+A},easeInOutCirc:function(B,C,A,E,D){if((C/=D/2)<1){return -E/2*(Math.sqrt(1-C*C)-1)+A}return E/2*(Math.sqrt(1-(C-=2)*C)+1)+A},easeInElastic:function(B,D,A,H,G){var E=1.70158;var F=0;var C=H;if(D==0){return A}if((D/=G)==1){return A+H}if(!F){F=G*0.3}if(C<Math.abs(H)){C=H;var E=F/4}else{var E=F/(2*Math.PI)*Math.asin(H/C)}return -(C*Math.pow(2,10*(D-=1))*Math.sin((D*G-E)*(2*Math.PI)/F))+A},easeOutElastic:function(B,D,A,H,G){var E=1.70158;var F=0;var C=H;if(D==0){return A}if((D/=G)==1){return A+H}if(!F){F=G*0.3}if(C<Math.abs(H)){C=H;var E=F/4}else{var E=F/(2*Math.PI)*Math.asin(H/C)}return C*Math.pow(2,-10*D)*Math.sin((D*G-E)*(2*Math.PI)/F)+H+A},easeInOutElastic:function(B,D,A,H,G){var E=1.70158;var F=0;var C=H;if(D==0){return A}if((D/=G/2)==2){return A+H}if(!F){F=G*(0.3*1.5)}if(C<Math.abs(H)){C=H;var E=F/4}else{var E=F/(2*Math.PI)*Math.asin(H/C)}if(D<1){return -0.5*(C*Math.pow(2,10*(D-=1))*Math.sin((D*G-E)*(2*Math.PI)/F))+A}return C*Math.pow(2,-10*(D-=1))*Math.sin((D*G-E)*(2*Math.PI)/F)*0.5+H+A},easeInBack:function(B,C,A,F,E,D){if(D==undefined){D=1.70158}return F*(C/=E)*C*((D+1)*C-D)+A},easeOutBack:function(B,C,A,F,E,D){if(D==undefined){D=1.70158}return F*((C=C/E-1)*C*((D+1)*C+D)+1)+A},easeInOutBack:function(B,C,A,F,E,D){if(D==undefined){D=1.70158}if((C/=E/2)<1){return F/2*(C*C*(((D*=(1.525))+1)*C-D))+A}return F/2*((C-=2)*C*(((D*=(1.525))+1)*C+D)+2)+A},easeInBounce:function(B,C,A,E,D){return E-$.easing.easeOutBounce(B,D-C,0,E,D)+A},easeOutBounce:function(B,C,A,E,D){if((C/=D)<(1/2.75)){return E*(7.5625*C*C)+A}else{if(C<(2/2.75)){return E*(7.5625*(C-=(1.5/2.75))*C+0.75)+A}else{if(C<(2.5/2.75)){return E*(7.5625*(C-=(2.25/2.75))*C+0.9375)+A}else{return E*(7.5625*(C-=(2.625/2.75))*C+0.984375)+A}}}},easeInOutBounce:function(B,C,A,E,D){if(C<D/2){return $.easing.easeInBounce(B,C*2,0,E,D)*0.5+A}return $.easing.easeOutBounce(B,C*2-D,0,E,D)*0.5+E*0.5+A}});

})(this.jQuery);


/* jquery.swfobject.license.txt */
(function(A){A.flashPlayerVersion=function(){var D,B=null,I=false,H="ShockwaveFlash.ShockwaveFlash";if(!(D=navigator.plugins["Shockwave Flash"])){try{B=new ActiveXObject(H+".7")}catch(G){try{B=new ActiveXObject(H+".6");D=[6,0,21];B.AllowScriptAccess="always"}catch(F){if(D&&D[0]===6){I=true}}if(!I){try{B=new ActiveXObject(H)}catch(E){D="X 0,0,0"}}}if(!I&&B){try{D=B.GetVariable("$version")}catch(C){}}}else{D=D.description}D=D.match(/^[A-Za-z\s]*?(\d+)(\.|,)(\d+)(\s+r|,)(\d+)/);return[D[1]*1,D[3]*1,D[5]*1]}();A.flashExpressInstaller="expressInstall.swf";A.hasFlashPlayer=(A.flashPlayerVersion[0]!==0);A.hasFlashPlayerVersion=function(C){var B=A.flashPlayerVersion;C=(/string|integer/.test(typeof C))?C.toString().split("."):C;return(C)?(B[0]>=(C.major||C[0]||B[0])&&B[1]>=(C.minor||C[1]||B[1])&&B[2]>=(C.release||C[2]||B[2])):(B[0]!==0)};A.flash=function(M){if(!A.hasFlashPlayer){return false}var C=M.swf||"",K=M.params||{},E=document.createElement("body"),B,L,H,D,J,I,G,F;M.height=M.height||180;M.width=M.width||320;if(M.hasVersion&&!A.hasFlashPlayerVersion(M.hasVersion)){A.extend(M,{id:"SWFObjectExprInst",height:Math.max(M.height,137),width:Math.max(M.width,214)});C=M.expressInstaller||A.flashExpressInstaller;K={flashvars:{MMredirectURL:window.location.href,MMplayerType:(A.browser.msie&&A.browser.win)?"ActiveX":"PlugIn",MMdoctitle:document.title.slice(0,47)+" - Flash Player Installation"}}}if(M.flashvars&&typeof K==="object"){A.extend(K,{flashvars:M.flashvars})}for(J in (I=["swf","expressInstall","hasVersion","params","flashvars"])){delete M[I[J]]}B=[];for(J in M){if(typeof M[J]==="object"){L=[];for(I in M[J]){L.push(I.replace(/([A-Z])/,"-$1").toLowerCase()+":"+M[J][I]+";")}M[J]=L.join("")}B.push(J+'="'+M[J]+'"')}M=B.join(" ");if(typeof K==="object"){B=[];for(J in K){if(typeof K[J]==="object"){L=[];for(I in K[J]){if(typeof K[J][I]==="object"){H=[];for(G in K[J][I]){if(typeof K[J][I][G]==="object"){D=[];for(F in K[J][I][G]){D.push(F.replace(/([A-Z])/,"-$1").toLowerCase()+":"+K[J][I][G][F]+";")}K[J][I][G]=D.join("")}H.push(G+"{"+K[J][I][G]+"}")}K[J][I]=H.join("")}L.push(window.escape(I)+"="+window.escape(K[J][I]))}K[J]=L.join("&amp;")}B.push('<PARAM NAME="'+J+'" VALUE="'+K[J]+'">')}K=B.join("")}if(!(/style=/.test(M))){M+=' style="vertical-align:text-top;"'}if(!(/style=(.*?)vertical-align/.test(M))){M=M.replace(/style="/,'style="vertical-align:text-top;')}if(A.browser.msie){M+=' classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"';K='<PARAM NAME="movie" VALUE="'+C+'">'+K}else{M+=' type="application/x-shockwave-flash" data="'+C+'"'}E.innerHTML="<OBJECT "+M+">"+K+"</OBJECT>";return A(E.firstChild)};A.fn.flash=function(C){if(!A.hasFlashPlayer){return this}var B=0,D;while((D=this.eq(B++))[0]){D.html(A.flash(A.extend({},C)));if(D[0].firstChild.getAttribute("id")==="SWFObjectExprInst"){B=this.length}}return this}}(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 The Morgan Project (c) 2000 Mario Feliciano. All rights reserved. No
 * copy or modification permited.
 */
Cufon.registerFont({"w":205,"face":{"font-family":"MorganSnOffice","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 5 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-11 -332 336 79.6911","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+2026"},"glyphs":{" ":{"w":79},"\u00a0":{"w":79},"!":{"d":"70,-249r-33,0r4,183r26,0xm71,0r0,-36r-35,0r0,36r35,0","w":107},"\"":{"d":"114,-264r-32,0r7,80r19,0xm55,-264r-32,0r7,80r19,0","w":137},"#":{"d":"200,-168r-36,0r7,-53r-23,0r-7,53r-55,0r6,-53r-24,0r-6,53r-37,0r-4,24r39,0r-10,72r-35,0r-4,24r37,0r-7,53r23,0r7,-53r55,0r-6,53r23,0r7,-53r38,0r2,-24r-38,0r10,-72r36,0xm139,-144r-9,72r-56,0r8,-72r57,0","w":208},"$":{"d":"128,4v45,2,77,-3,77,-49v0,-52,-2,-90,-54,-91v-33,-9,-89,4,-96,-32v1,-30,-7,-60,28,-60r111,0r0,-16v-13,-12,-41,-9,-66,-9r0,-31r-24,0r0,31v-64,-7,-78,23,-78,89v0,69,98,37,143,65v12,7,6,35,7,54v0,16,-8,24,-25,24r-124,0r0,16v15,13,49,8,77,9r0,37r24,0r0,-37","w":228},"%":{"d":"253,-135v-39,0,-61,10,-61,46v0,54,-2,103,61,93v50,3,48,-45,46,-93v-1,-30,-14,-46,-46,-46xm280,-256r-31,0r-209,269r31,0xm82,-253v-62,0,-61,37,-61,95v0,35,23,44,61,44v50,0,46,-45,45,-93v-1,-29,-14,-46,-45,-46xm236,-113v22,-1,40,-1,37,23v-4,34,16,83,-37,72v-32,1,-15,-46,-19,-73v1,-16,3,-20,19,-22xm65,-231v22,-1,40,-1,38,22v-3,35,15,83,-38,73v-32,0,-13,-47,-18,-74v0,-15,2,-21,18,-21","w":319},"&":{"d":"87,4v44,0,92,5,109,-23r21,19r36,0r-44,-42v9,-20,8,-47,8,-75r-23,0v0,20,1,41,-3,58r-100,-96v-23,-13,-30,-75,13,-75v38,0,62,6,55,48r27,0v6,-55,-23,-76,-79,-71v-65,-9,-80,80,-38,113v-38,7,-47,37,-47,86v0,40,27,57,65,58xm147,-19v-53,0,-108,10,-96,-58v-1,-29,11,-42,35,-47r94,89v-8,9,-16,16,-33,16","w":242},"'":{"d":"55,-264r-32,0r7,80r19,0","w":78},"(":{"d":"29,-132v0,97,-19,218,94,208r0,-22v-92,7,-66,-111,-66,-197v0,-55,0,-120,66,-110r0,-22v-88,-10,-94,66,-94,143","w":130},")":{"d":"8,76v109,9,94,-107,94,-208v0,-75,-6,-154,-94,-143r0,22v91,-7,66,107,66,193v0,54,2,124,-66,114r0,22","w":130},"*":{"d":"140,-222r-10,-19r-41,23r0,-46r-22,0r0,46r-41,-23r-11,19r43,24r-28,42r18,12r30,-45r30,45r18,-12r-28,-42","w":155},"+":{"d":"182,-95r0,-21r-68,0r0,-68r-21,0r0,68r-69,0r0,21r69,0r0,69r21,0r0,-69r68,0"},",":{"d":"39,43v7,-27,23,-45,23,-79r-35,0v5,29,0,54,-6,79r18,0","w":88},"-":{"d":"124,-91r0,-27r-114,0r0,27r114,0","w":134},".":{"d":"62,0r0,-36r-35,0r0,36r35,0","w":88},"\/":{"d":"144,-264r-28,0r-121,314r28,0","w":150},"0":{"d":"90,4v55,0,94,-8,94,-60r0,-103v0,-52,-40,-64,-94,-61v-41,1,-68,18,-68,61r0,103v1,42,25,60,68,60xm91,-196v36,-1,67,3,65,37v-3,64,27,157,-65,140v-63,3,-35,-86,-40,-140v-2,-26,15,-36,40,-37"},"1":{"d":"182,0r0,-24r-55,0r0,-194r-85,7r0,22r56,0r0,165r-61,0r0,24r145,0"},"2":{"d":"150,-167v3,29,-4,49,-30,49v-42,0,-90,14,-90,56r0,62r151,0r0,-24r-123,0v-1,-32,-5,-65,33,-65v53,0,86,-14,86,-82v0,-62,-93,-54,-144,-42r0,19v43,5,113,-17,117,27"},"3":{"d":"24,25v56,15,165,23,154,-55v3,-38,-6,-64,-38,-68r0,-3v27,-6,30,-30,30,-63v0,-67,-94,-64,-143,-47r0,17v51,4,123,-20,116,47v-2,22,-4,36,-29,36r-65,0r0,26v52,2,114,-17,100,56v2,56,-76,32,-125,37r0,17"},"4":{"d":"195,-37r0,-23r-42,0r0,-155r-36,0r-105,156r0,22r114,0r0,72r27,0r0,-72r42,0xm126,-60r-88,0r86,-129r2,0r0,129"},"5":{"d":"67,33v78,7,123,-12,116,-96v-5,-56,-64,-53,-123,-51r0,-75r111,0r0,-26r-138,0r0,125v46,5,119,-18,121,32v1,37,1,65,-37,65r-91,0v-6,27,20,24,41,26"},"6":{"d":"87,4v57,0,100,-3,100,-59v0,-76,-17,-115,-97,-102v-15,2,-28,6,-36,15v1,-41,-11,-83,36,-83r91,0r0,-16v-19,-12,-58,-8,-90,-8v-44,0,-69,15,-66,61v4,78,-29,192,62,192xm54,-128v31,-5,106,-19,104,21v-2,37,13,91,-31,88v-35,-3,-73,9,-73,-32r0,-77"},"7":{"d":"184,-190r0,-25r-159,0r0,26r130,0r-107,222r28,0"},"8":{"d":"86,4v65,0,107,-9,99,-81v-3,-28,-20,-42,-43,-49v31,-8,41,-26,41,-66v0,-50,-44,-62,-98,-57v-71,-12,-86,112,-23,123v-30,8,-41,31,-41,76v0,39,26,54,65,54xm84,-225v36,0,74,-4,70,34v7,47,-17,54,-65,54v-31,0,-38,-20,-38,-54v0,-21,10,-34,33,-34xm87,-112v46,0,78,3,69,56v2,38,-30,37,-67,37v-34,0,-41,-21,-39,-58v1,-23,13,-35,37,-35"},"9":{"d":"62,33v64,1,126,5,121,-62v-6,-79,28,-191,-63,-191v-57,0,-99,3,-99,60v0,75,16,114,96,101v15,-3,28,-7,37,-15v-1,40,11,82,-37,82r-91,0r0,16v9,4,21,9,36,9xm81,-196v34,2,73,-8,73,31r0,77v-28,6,-105,20,-105,-21v0,-38,-12,-90,32,-87"},":":{"d":"62,-121r0,-37r-35,0r0,37r35,0xm62,0r0,-36r-35,0r0,36r35,0","w":88},";":{"d":"62,-121r0,-37r-35,0r0,37r35,0xm39,43v7,-27,23,-45,23,-79r-35,0v5,29,0,54,-6,79r18,0","w":88},"<":{"d":"173,-49r-104,-58r104,-58r-11,-19r-127,70r0,14r127,70"},"=":{"d":"183,-124r0,-21r-160,0r0,21r160,0xm183,-66r0,-21r-160,0r0,21r160,0"},">":{"d":"171,-100r0,-14r-127,-70r-11,19r103,58r-103,58r11,19"},"?":{"d":"98,-65v2,-24,-8,-57,16,-59v44,-3,63,-21,63,-81v0,-63,-94,-53,-146,-43r0,19v58,0,146,-16,114,68v-25,17,-78,5,-74,53r0,43r27,0xm103,0r0,-32r-36,0r0,32r36,0","w":196},"@":{"d":"205,-46v55,0,84,-45,84,-102v0,-72,-50,-107,-123,-107v-96,0,-148,58,-152,154v-6,130,153,153,253,101r-7,-23v-79,39,-225,36,-219,-79v4,-77,45,-128,123,-128v57,0,98,26,98,81v0,40,-21,89,-64,73v-3,-2,-5,-6,-5,-12r18,-87v-64,-25,-126,10,-126,80v0,51,65,63,85,26v5,13,18,23,35,23xm114,-93v-4,-41,17,-70,65,-63v-11,31,-7,78,-45,82v-13,1,-19,-8,-20,-19","w":302},"A":{"d":"228,0r-92,-251r-40,0r-89,251r29,0r24,-71r111,0r26,71r31,0xm162,-95r-94,0r47,-137","w":235,"k":{"\u201d":27,"\u2019":27,"Y":19,"W":11,"V":18,"T":22}},"B":{"d":"33,0v75,-6,184,27,184,-57v0,-38,-4,-67,-38,-70r0,-3v32,-6,36,-32,35,-71v-3,-73,-112,-42,-181,-48r0,249xm63,-226v53,6,135,-24,123,50v4,58,-76,29,-123,36r0,-86xm63,-114v54,7,140,-27,125,54v4,60,-77,30,-125,37r0,-91","w":241},"C":{"d":"105,4v34,-1,78,6,98,-9r0,-17v-67,-3,-157,21,-147,-60v7,-61,-20,-145,47,-145r100,0r0,-17v-20,-15,-64,-7,-98,-9v-90,-6,-81,86,-80,172v1,55,23,86,80,85","w":217},"D":{"d":"33,0v90,-1,199,19,190,-80r0,-91v7,-98,-101,-76,-190,-78r0,249xm63,-226v63,1,136,-13,130,58v-5,63,20,145,-54,145r-76,0r0,-203","w":248,"k":{"X":11}},"E":{"d":"203,0r0,-24r-140,0r0,-96r111,0r0,-24r-111,0r0,-81r140,0r0,-24r-170,0r0,249r170,0","w":221},"F":{"d":"204,-225r0,-24r-171,0r0,249r30,0r0,-120r110,0r0,-24r-110,0r0,-81r141,0","w":213,"k":{"\u00f8":21,"\u00f6":21,"\u00f4":21,"\u00f3":21,"\u00f2":21,"\u00eb":21,"\u00ea":21,"\u00e9":21,"\u00e8":21,"\u00e6":18,"\u00e5":18,"\u00e4":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00c6":19,"\u00c5":19,"\u00c4":19,"\u00c2":19,"\u00c1":19,"\u00c0":19,"\u2026":36,"q":21,"o":21,"g":21,"e":21,"d":21,"c":21,"a":18,"A":19,";":14,":":14,".":36,",":36}},"G":{"d":"25,-74v-12,89,118,93,172,61r4,13r23,0r0,-131r-103,0r0,23r73,0r0,79v-44,10,-146,25,-138,-45v7,-62,-21,-153,46,-153r119,0v3,-48,-76,-22,-119,-26v-48,-5,-77,30,-77,80r0,99","w":252},"H":{"d":"234,0r0,-249r-30,0r0,106r-141,0r0,-106r-30,0r0,249r30,0r0,-120r141,0r0,120r30,0","w":267},"I":{"d":"63,0r0,-249r-30,0r0,249r30,0","w":96},"J":{"d":"16,-1v46,13,99,4,99,-50r0,-198r-30,0r0,202v2,33,-39,24,-69,25r0,21","w":147},"K":{"d":"224,0r-104,-144r99,-105r-34,0r-121,127r0,-127r-31,0r0,249r31,0r0,-91r34,-35r91,126r35,0","w":227},"L":{"d":"204,0r0,-24r-141,0r0,-225r-30,0r0,249r171,0","w":213,"k":{"\u201d":29,"\u2019":29,"Y":36,"W":14,"V":14,"T":43,"*":36}},"M":{"d":"276,0r0,-249r-47,0r-72,164r-2,0r-73,-164r-49,0r0,249r28,0r-1,-224r3,0r79,176r24,0r82,-176r3,0v-5,70,-2,149,-3,224r28,0","w":309},"N":{"d":"221,0r0,-249r-26,0r3,212r-19,-34r-113,-178r-33,0r0,249r26,0r0,-156v0,-21,-5,-46,-3,-65v41,79,93,147,138,221r27,0","w":254},"O":{"d":"104,4v71,3,127,-5,127,-74r0,-110v3,-70,-56,-75,-127,-73v-50,2,-78,23,-79,73r0,110v-1,50,30,72,79,74xm102,-229v52,0,103,-3,99,50v-6,63,23,159,-46,159v-52,0,-103,2,-100,-50v5,-63,-22,-159,47,-159","w":256,"k":{"X":11}},"P":{"d":"63,-96v65,-3,152,17,152,-53v0,-59,-1,-100,-63,-100r-119,0r0,249r30,0r0,-96xm63,-225v47,6,122,-21,122,33v0,38,5,72,-36,72r-86,0r0,-105","w":239,"k":{"\u00c6":19,"\u00c5":19,"\u00c4":19,"\u00c2":19,"\u00c1":19,"\u00c0":19,"\u2026":36,"A":19,".":36,",":36}},"Q":{"d":"143,4v54,2,89,-21,88,-74r0,-110v3,-70,-56,-75,-127,-73v-50,2,-78,23,-79,73r0,110v-1,54,34,77,90,74v-10,60,34,79,87,66r0,-21v-38,3,-67,0,-59,-45xm102,-229v52,0,103,-3,99,50v-6,63,23,159,-46,159v-52,0,-103,2,-100,-50v5,-63,-22,-159,47,-159","w":256,"k":{"X":11}},"R":{"d":"215,-155v3,-57,-4,-94,-63,-94r-119,0r0,249r30,0r0,-103r51,0r74,103r35,0r-74,-103v41,2,64,-13,66,-52xm63,-225v47,6,122,-20,122,32v0,39,2,68,-40,68r-82,0r0,-100","w":241},"S":{"d":"54,4v66,0,151,22,151,-49v0,-52,-2,-90,-54,-91v-33,-9,-89,4,-96,-32v1,-30,-7,-60,28,-60r111,0r0,-16v-22,-16,-71,-7,-108,-9v-54,-4,-60,34,-60,89v0,69,98,37,143,65v12,7,6,35,7,54v0,16,-8,24,-25,24r-128,0r0,16v7,6,18,9,31,9","w":228},"T":{"d":"212,-225r0,-24r-202,0r0,24r86,0r0,225r30,0r0,-225r86,0","w":222,"k":{"\u00ff":22,"\u00fc":24,"\u00fb":24,"\u00fa":24,"\u00f9":24,"\u00f8":25,"\u00f6":25,"\u00f4":25,"\u00f3":25,"\u00f2":25,"\u00eb":25,"\u00ea":25,"\u00e9":25,"\u00e8":25,"\u00e6":25,"\u00e5":25,"\u00e4":25,"\u00e2":25,"\u00e1":25,"\u00e0":25,"\u00c6":22,"\u00c5":22,"\u00c4":22,"\u00c2":22,"\u00c1":22,"\u00c0":22,"\u2026":36,"y":22,"x":22,"w":18,"v":22,"u":24,"r":24,"q":25,"p":24,"o":25,"n":24,"m":24,"g":25,"e":25,"d":25,"c":25,"a":25,"A":22,";":14,":":14,".":36,",":36}},"U":{"d":"109,4v68,3,118,-8,118,-74r0,-179r-29,0r0,179v3,47,-40,49,-90,49v-31,0,-46,-19,-46,-49r0,-179r-30,0r0,180v0,50,27,71,77,73","w":258},"V":{"d":"218,-249r-28,0r-77,226r-74,-226r-32,0r88,251r32,0","w":225,"k":{"\u00f8":11,"\u00f6":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e6":11,"\u00e5":11,"\u00e4":11,"\u00e2":11,"\u00e1":11,"\u00e0":11,"\u00c5":18,"\u00c4":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,"\u2026":29,"q":11,"o":11,"g":11,"e":11,"d":11,"c":11,"a":11,"A":18,".":29,",":29}},"W":{"d":"303,-249r-28,0r-50,221r-50,-218r-34,0r-53,218r-47,-221r-32,0r59,251r38,0r52,-209r48,209r38,0","w":312,"k":{"\u00f8":11,"\u00f6":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e6":11,"\u00e5":11,"\u00e4":11,"\u00e2":11,"\u00e1":11,"\u00e0":11,"\u00c6":11,"\u00c5":11,"\u00c4":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"\u2026":29,"q":11,"o":11,"g":11,"e":11,"d":11,"c":11,"a":11,"A":11,".":29,",":29}},"X":{"d":"215,0r-84,-131r80,-118r-32,0r-63,95r-60,-95r-34,0r74,117r-89,132r32,0r73,-109r68,109r35,0","w":221},"Y":{"d":"210,-249r-31,0r-70,115r-70,-115r-33,0r85,139r0,110r31,0r0,-110","w":215,"k":{"\u00f8":14,"\u00f6":14,"\u00f4":14,"\u00f3":14,"\u00f2":14,"\u00eb":14,"\u00ea":14,"\u00e9":14,"\u00e8":14,"\u00e6":14,"\u00e5":14,"\u00e4":14,"\u00e2":14,"\u00e1":14,"\u00e0":14,"\u00c6":19,"\u00c5":19,"\u00c4":19,"\u00c2":19,"\u00c1":19,"\u00c0":19,"\u2026":29,"q":14,"o":14,"g":14,"e":14,"d":14,"c":14,"a":14,"A":19,";":14,":":14,".":29,",":29}},"Z":{"d":"201,0r0,-24r-148,0r146,-204r0,-21r-179,0r0,24r143,0r-146,205r0,20r184,0","w":218},"[":{"d":"120,76r0,-21r-63,0r0,-309r63,0r0,-21r-92,0r0,351r92,0","w":130},"\\":{"d":"154,50r-122,-314r-28,0r121,314r29,0","w":150},"]":{"d":"102,76r0,-351r-92,0r0,21r64,0r0,309r-64,0r0,21r92,0","w":130},"^":{"d":"168,-94r0,-22r-168,0r0,22r168,0","w":167},"_":{"d":"180,45r0,-18r-180,0r0,18r180,0","w":180},"`":{"d":"93,-215r-40,-58r-29,8r45,50r24,0","w":116},"a":{"d":"148,-18r2,18r25,0v-6,-43,-4,-95,-4,-144v0,-64,-92,-53,-139,-39r0,17r81,0v33,-4,31,25,30,56v-67,-1,-138,-11,-124,72v-4,56,110,54,129,20xm48,-42v0,-27,1,-47,27,-47r68,0v1,34,4,71,-31,70v-28,-1,-64,7,-64,-23","w":203},"b":{"d":"60,-13v32,31,133,28,126,-35v-7,-60,21,-144,-49,-144v-31,0,-61,1,-76,18r0,-90r-29,0r0,264r26,0xm61,-159v28,-5,98,-23,97,16r0,98v0,40,-77,25,-97,12r0,-126","w":211},"c":{"d":"94,4v28,0,60,4,77,-8r0,-16v-47,-5,-122,19,-117,-38v4,-42,-16,-109,30,-109r87,0r0,-16v-49,-19,-155,-20,-146,55r0,67v-1,47,23,65,69,65","w":182},"d":{"d":"25,-39v-5,60,100,52,126,25r2,14r26,0r0,-264r-29,0r0,89v-32,-30,-125,-27,-125,36r0,100xm54,-140v-2,-45,78,-25,96,-14r0,126v-23,3,-97,23,-96,-17r0,-95","w":211},"e":{"d":"177,-20v-47,-5,-126,20,-123,-35r0,-34v43,-1,91,3,128,-4v7,-69,-14,-99,-84,-99v-46,0,-73,19,-73,66r0,69v-1,60,53,66,114,61v18,-1,43,0,38,-24xm91,-168v33,1,66,-5,63,32r0,26r-100,0v-2,-34,1,-59,37,-58","w":204},"f":{"d":"77,-182v3,-24,-11,-64,17,-64r47,0r0,-18v-39,-9,-97,-11,-92,39r0,43r-35,0r0,21r35,0r0,161r28,0r0,-161r58,0r0,-21r-58,0","w":141,"k":{"\u2026":36,"}":-18,"]":-18,".":36,",":36,")":-18}},"g":{"d":"62,79v63,2,117,4,117,-61r0,-205r-22,0r-4,14v-30,-32,-133,-30,-128,34v5,59,-18,135,50,135v33,0,59,0,75,-18v-1,35,8,76,-31,76r-88,0r0,17v8,5,19,8,31,8xm54,-140v-2,-45,78,-25,96,-14r0,117v-23,3,-97,23,-96,-17r0,-86","w":211},"h":{"d":"61,-160v30,-5,97,-20,97,14r0,146r28,0r0,-149v5,-59,-97,-51,-125,-25r0,-90r-29,0r0,264r29,0r0,-160","w":217},"i":{"d":"61,-228r0,-36r-29,0r0,36r29,0xm61,0r0,-187r-29,0r0,187r29,0","w":93},"j":{"d":"76,-228r0,-36r-29,0r0,36r29,0xm-11,76v50,11,87,-6,87,-56r0,-207r-29,0r0,205v4,37,-22,39,-58,37r0,21","w":108},"k":{"d":"186,0r-76,-112r67,-75r-32,0r-84,96r0,-173r-29,0r0,264r29,0r0,-59r30,-33r63,92r32,0","w":186},"l":{"d":"61,0r0,-264r-29,0r0,264r29,0","w":93},"m":{"d":"176,-160v23,-4,87,-20,87,14r0,146r29,0r0,-149v3,-58,-96,-51,-120,-21v-14,-33,-90,-27,-111,-4r-1,-13r-28,0r0,187r29,0r0,-160v23,-4,87,-20,87,14r0,146r28,0r0,-160","w":322},"n":{"d":"61,-160v27,-5,97,-20,97,14r0,146r28,0r0,-149v5,-59,-97,-51,-125,-25r-1,-13r-28,0r0,187r29,0r0,-160","w":217},"o":{"d":"89,4v58,0,97,-8,97,-62v0,-67,7,-134,-61,-134v-57,0,-100,7,-100,61r0,75v-2,40,26,60,64,60xm83,-168v37,-1,78,-5,75,34v-5,43,16,113,-28,115v-38,2,-80,5,-76,-34v5,-44,-18,-114,29,-115","w":211},"p":{"d":"60,-13v35,31,133,28,126,-36v-7,-61,22,-143,-51,-143v-31,0,-58,3,-74,18r-2,-13r-27,0r0,263r28,0r0,-89xm61,-160v31,-4,97,-21,97,15r0,97v4,45,-77,27,-97,15r0,-127","w":211},"q":{"d":"25,-41v-7,61,97,54,125,28r0,89r29,0r0,-263r-25,0r-2,13v-33,-31,-127,-29,-127,37r0,96xm54,-140v-2,-45,78,-25,96,-14r0,126v-23,3,-97,23,-96,-17r0,-95","w":211},"r":{"d":"61,-154v19,-9,50,-11,81,-10r0,-25v-33,-4,-63,2,-82,17r-1,-15r-27,0r0,187r29,0r0,-154","w":149,"k":{"\u00ff":-7,"\u2026":36,"y":-7,"w":-7,"v":-7,".":36,",":36}},"s":{"d":"54,4v62,0,109,5,109,-70v0,-47,-55,-38,-95,-44v-22,3,-21,-23,-18,-43v2,-10,9,-14,23,-13r81,0r0,-18v-48,-16,-153,-21,-134,61v0,45,54,37,93,43v25,-3,22,23,20,45v-2,11,-10,14,-24,14r-88,0r0,17v8,6,20,8,33,8","w":181},"t":{"d":"45,-35v-4,47,61,43,94,32r0,-16v-26,-3,-65,12,-65,-21r0,-121r65,0r0,-21r-65,0r0,-56r-29,4r0,52r-33,0r0,21r33,0r0,126","w":144},"u":{"d":"31,-38v-3,59,98,49,126,25r1,13r27,0r0,-187r-29,0r0,160v-23,4,-96,19,-96,-14r0,-146r-29,0r0,149","w":217},"v":{"d":"177,-187r-28,0r-54,158r-2,0r-55,-158r-30,0r67,190r32,0","w":184,"k":{"\u2026":29,".":29,",":29}},"w":{"d":"287,-187r-28,0r-46,158r-2,0r-43,-151r-36,0r-43,151r-3,0r-44,-158r-30,0r57,190r34,0r47,-157r44,157r32,0","w":298,"k":{"\u2026":29,".":29,",":29}},"x":{"d":"172,0r-69,-99r60,-88r-31,0r-43,66r-47,-66r-32,0r62,87r-68,100r31,0r52,-78r54,78r31,0","w":176},"y":{"d":"176,-187r-28,0r-53,147r-57,-147r-30,0r73,184r-29,79r27,0","w":183,"k":{"\u2026":29,".":29,",":29}},"z":{"d":"166,0r0,-24r-111,0r107,-142r0,-21r-143,0r0,24r109,0r-109,145r0,18r147,0","w":185},"{":{"d":"120,76r0,-21r-64,0r0,-154r-14,-14r14,-16r0,-125r64,0r0,-22r-76,0r-16,15r0,127r-16,22r16,22r0,151r16,15r76,0","w":130},"|":{"d":"97,50r0,-314r-28,0r0,314r28,0","w":165},"}":{"d":"118,-112r-16,-22r0,-127r-15,-15r-77,0r0,22r64,0r0,125r14,16r-14,14r0,154r-64,0r0,21r77,0r15,-15r0,-151","w":130},"~":{"d":"291,-94r0,-22r-291,0r0,22r291,0","w":291},"\u2026":{"d":"246,0r0,-36r-35,0r0,36r35,0xm154,0r0,-36r-35,0r0,36r35,0xm62,0r0,-36r-35,0r0,36r35,0","w":272},"\u2018":{"d":"62,-264r-17,0v-7,27,-24,46,-24,80r35,0v-5,-29,0,-55,6,-80","w":83,"k":{"\u00c6":27,"\u00c5":27,"\u00c4":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"A":27}},"\u2019":{"d":"39,-184v7,-27,23,-46,23,-80r-35,0v5,29,0,55,-6,80r18,0","w":83,"k":{"\u2026":36,".":36,",":36}},"\u201c":{"d":"126,-264r-17,0v-7,27,-23,46,-23,80r35,0v-6,-29,-2,-55,5,-80xm62,-264r-17,0v-7,27,-24,46,-24,80r35,0v-5,-29,0,-55,6,-80","w":147,"k":{"\u00c6":27,"\u00c5":27,"\u00c4":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"A":27}},"\u201d":{"d":"103,-184v7,-27,23,-46,23,-80r-35,0v6,29,2,55,-5,80r17,0xm39,-184v7,-27,23,-46,23,-80r-35,0v5,29,0,55,-6,80r18,0","w":147,"k":{"\u2026":36,".":36,",":36}},"\u00a8":{"d":"122,-223r0,-34r-31,0r0,34r31,0xm55,-223r0,-34r-31,0r0,34r31,0","w":146},"\u00b4":{"d":"93,-265r-30,-8r-39,58r24,0","w":116},"\u00c0":{"d":"228,0r-92,-251r-40,0r-89,251r29,0r24,-71r111,0r26,71r31,0xm162,-95r-94,0r47,-137xm130,-274r-40,-58r-29,8r45,50r24,0","w":235,"k":{"\u201d":27,"\u2019":27,"Y":19,"W":11,"V":18,"T":22}},"\u00c1":{"d":"170,-324r-29,-8r-39,58r23,0xm228,0r-92,-251r-40,0r-89,251r29,0r24,-71r111,0r26,71r31,0xm162,-95r-94,0r47,-137","w":235,"k":{"\u201d":27,"\u2019":27,"Y":19,"W":11,"V":18,"T":22}},"\u00c2":{"d":"228,0r-92,-251r-40,0r-89,251r29,0r24,-71r111,0r26,71r31,0xm162,-95r-94,0r47,-137xm168,-275r-38,-57r-26,0r-37,57r24,0r27,-42r27,42r23,0","w":235,"k":{"\u201d":27,"\u2019":27,"Y":19,"W":11,"V":18,"T":22}},"\u00c4":{"d":"167,-278r0,-34r-32,0r0,34r32,0xm100,-278r0,-34r-31,0r0,34r31,0xm228,0r-92,-251r-40,0r-89,251r29,0r24,-71r111,0r26,71r31,0xm162,-95r-94,0r47,-137","w":235,"k":{"\u201d":27,"\u2019":27,"Y":19,"W":11,"V":18,"T":22}},"\u00c5":{"d":"118,-317v-40,0,-54,55,-25,73r-86,244r29,0r24,-71r111,0r26,71r31,0r-88,-242v29,-17,22,-75,-22,-75xm118,-301v29,1,27,48,0,48v-12,1,-23,-12,-22,-24v0,-12,9,-24,22,-24xm162,-95r-94,0r47,-137","w":235,"k":{"\u201d":27,"\u2019":27,"Y":19,"W":11,"V":18,"T":22}},"\u00c6":{"d":"336,0r0,-24r-139,0r0,-93r101,0r0,-24r-101,0r0,-84r139,0r0,-24r-240,0r-89,249r30,0r24,-71r105,0r0,71r170,0xm166,-95r-97,0r44,-129r53,0r0,129","w":354},"\u00c8":{"d":"203,0r0,-24r-140,0r0,-96r111,0r0,-24r-111,0r0,-81r140,0r0,-24r-170,0r0,249r170,0xm140,-274r-39,-58r-29,8r45,50r23,0","w":221},"\u00c9":{"d":"170,-324r-29,-8r-39,58r23,0xm203,0r0,-24r-140,0r0,-96r111,0r0,-24r-111,0r0,-81r140,0r0,-24r-170,0r0,249r170,0","w":221},"\u00ca":{"d":"203,0r0,-24r-140,0r0,-96r111,0r0,-24r-111,0r0,-81r140,0r0,-24r-170,0r0,249r170,0xm172,-275r-38,-57r-26,0r-37,57r24,0r26,-42r28,42r23,0","w":221},"\u00cb":{"d":"167,-278r0,-34r-32,0r0,34r32,0xm100,-278r0,-34r-31,0r0,34r31,0xm203,0r0,-24r-140,0r0,-96r111,0r0,-24r-111,0r0,-81r140,0r0,-24r-170,0r0,249r170,0","w":221},"\u00cf":{"d":"97,-278r0,-34r-31,0r0,34r31,0xm30,-278r0,-34r-31,0r0,34r31,0xm63,0r0,-249r-30,0r0,249r30,0","w":96},"\u00d2":{"d":"104,4v71,3,127,-5,127,-74r0,-110v3,-70,-56,-75,-127,-73v-50,2,-78,23,-79,73r0,110v-1,50,30,72,79,74xm102,-229v52,0,103,-3,99,50v-6,63,23,159,-46,159v-52,0,-103,2,-100,-50v5,-63,-22,-159,47,-159xm145,-274r-40,-58r-29,8r45,50r24,0","w":256},"\u00d3":{"d":"179,-324r-30,-8r-39,58r24,0xm104,4v71,3,127,-5,127,-74r0,-110v3,-70,-56,-75,-127,-73v-50,2,-78,23,-79,73r0,110v-1,50,30,72,79,74xm102,-229v52,0,103,-3,99,50v-6,63,23,159,-46,159v-52,0,-103,2,-100,-50v5,-63,-22,-159,47,-159","w":256,"k":{"X":11}},"\u00d4":{"d":"104,4v71,3,127,-5,127,-74r0,-110v3,-70,-56,-75,-127,-73v-50,2,-78,23,-79,73r0,110v-1,50,30,72,79,74xm102,-229v52,0,103,-3,99,50v-6,63,23,159,-46,159v-52,0,-103,2,-100,-50v5,-63,-22,-159,47,-159xm179,-275r-39,-57r-26,0r-37,57r24,0r27,-42r28,42r23,0","w":256},"\u00d6":{"d":"177,-278r0,-34r-31,0r0,34r31,0xm110,-278r0,-34r-31,0r0,34r31,0xm104,4v71,3,127,-5,127,-74r0,-110v3,-70,-56,-75,-127,-73v-50,2,-78,23,-79,73r0,110v-1,50,30,72,79,74xm102,-229v52,0,103,-3,99,50v-6,63,23,159,-46,159v-52,0,-103,2,-100,-50v5,-63,-22,-159,47,-159","w":256,"k":{"X":11}},"\u00d8":{"d":"61,-4v68,19,178,17,170,-66v-5,-55,11,-127,-15,-160r22,-32r-21,-12r-20,29v-62,-17,-179,-21,-172,65v5,56,-12,130,17,161r-23,34r21,12xm55,-70v5,-63,-22,-160,47,-159v27,1,61,-5,79,7r-121,177v-3,-7,-5,-16,-5,-25xm201,-179v-6,63,23,161,-46,159v-27,-1,-60,4,-79,-6r121,-177v3,7,4,15,4,24","w":256},"\u00d9":{"d":"109,4v68,3,118,-8,118,-74r0,-179r-29,0r0,179v3,47,-40,49,-90,49v-31,0,-46,-19,-46,-49r0,-179r-30,0r0,180v0,50,27,71,77,73xm145,-274r-40,-58r-29,8r45,50r24,0","w":258},"\u00da":{"d":"181,-324r-29,-8r-39,58r24,0xm109,4v68,3,118,-8,118,-74r0,-179r-29,0r0,179v3,47,-40,49,-90,49v-31,0,-46,-19,-46,-49r0,-179r-30,0r0,180v0,50,27,71,77,73","w":258},"\u00db":{"d":"109,4v68,3,118,-8,118,-74r0,-179r-29,0r0,179v3,47,-40,49,-90,49v-31,0,-46,-19,-46,-49r0,-179r-30,0r0,180v0,50,27,71,77,73xm180,-275r-39,-57r-25,0r-38,57r24,0r27,-42r28,42r23,0","w":258},"\u00dc":{"d":"179,-278r0,-34r-32,0r0,34r32,0xm112,-278r0,-34r-31,0r0,34r31,0xm109,4v68,3,118,-8,118,-74r0,-179r-29,0r0,179v3,47,-40,49,-90,49v-31,0,-46,-19,-46,-49r0,-179r-30,0r0,180v0,50,27,71,77,73","w":258},"\u00dd":{"w":180},"\u00e0":{"d":"125,-215r-39,-58r-29,8r44,50r24,0xm148,-18r2,18r25,0v-6,-43,-4,-95,-4,-144v0,-64,-92,-53,-139,-39r0,17r81,0v33,-4,31,25,30,56v-67,-1,-138,-11,-124,72v-4,56,110,54,129,20xm48,-42v0,-27,1,-47,27,-47r68,0v1,34,4,71,-31,70v-28,-1,-64,7,-64,-23","w":203},"\u00e1":{"d":"151,-265r-29,-8r-39,58r24,0xm148,-18r2,18r25,0v-6,-43,-4,-95,-4,-144v0,-64,-92,-53,-139,-39r0,17r81,0v33,-4,31,25,30,56v-67,-1,-138,-11,-124,72v-4,56,110,54,129,20xm48,-42v0,-27,1,-47,27,-47r68,0v1,34,4,71,-31,70v-28,-1,-64,7,-64,-23","w":203},"\u00e2":{"d":"148,-215r-39,-57r-25,0r-38,57r24,0r27,-42r28,42r23,0xm148,-18r2,18r25,0v-6,-43,-4,-95,-4,-144v0,-64,-92,-53,-139,-39r0,17r81,0v33,-4,31,25,30,56v-67,-1,-138,-11,-124,72v-4,56,110,54,129,20xm48,-42v0,-27,1,-47,27,-47r68,0v1,34,4,71,-31,70v-28,-1,-64,7,-64,-23","w":203},"\u00e4":{"d":"142,-223r0,-34r-31,0r0,34r31,0xm75,-223r0,-34r-31,0r0,34r31,0xm148,-18r2,18r25,0v-6,-43,-4,-95,-4,-144v0,-64,-92,-53,-139,-39r0,17r81,0v33,-4,31,25,30,56v-67,-1,-138,-11,-124,72v-4,56,110,54,129,20xm48,-42v0,-27,1,-47,27,-47r68,0v1,34,4,71,-31,70v-28,-1,-64,7,-64,-23","w":203},"\u00e5":{"d":"99,-208v24,0,41,-16,41,-42v0,-23,-15,-41,-41,-39v-25,1,-40,17,-40,42v0,23,16,39,40,39xm148,-18r2,18r25,0v-6,-43,-4,-95,-4,-144v0,-64,-92,-53,-139,-39r0,17r81,0v33,-4,31,25,30,56v-67,-1,-138,-11,-124,72v-4,56,110,54,129,20xm99,-273v14,1,22,9,22,24v0,12,-10,23,-22,23v-12,0,-21,-12,-21,-23v0,-11,8,-25,21,-24xm48,-42v0,-27,1,-47,27,-47r68,0v1,34,4,71,-31,70v-28,-1,-64,7,-64,-23","w":203},"\u00e6":{"d":"294,-20v-61,-4,-140,24,-123,-69v43,-1,92,3,129,-4v7,-69,-18,-104,-88,-99v-25,2,-39,6,-51,18v-21,-26,-95,-22,-129,-9r0,17r81,0v33,-4,31,25,30,56v-66,-1,-124,-12,-124,72v0,40,42,42,86,42v26,0,44,-7,52,-26v14,38,100,31,137,16r0,-14xm209,-168v33,0,65,-3,62,33r0,25r-100,0v-2,-34,3,-58,38,-58xm48,-44v0,-27,1,-45,29,-45r66,0v1,33,4,70,-28,70v-30,0,-67,8,-67,-25","w":321},"\u00e8":{"d":"125,-215r-39,-58r-29,8r44,50r24,0xm177,-20v-47,-5,-126,20,-123,-35r0,-34v43,-1,91,3,128,-4v7,-69,-14,-99,-84,-99v-46,0,-73,19,-73,66r0,69v-1,60,53,66,114,61v18,-1,43,0,38,-24xm91,-168v33,1,66,-5,63,32r0,26r-100,0v-2,-34,1,-59,37,-58","w":204},"\u00e9":{"d":"151,-265r-29,-8r-40,58r24,0xm177,-20v-47,-5,-126,20,-123,-35r0,-34v43,-1,91,3,128,-4v7,-69,-14,-99,-84,-99v-46,0,-73,19,-73,66r0,69v-1,60,53,66,114,61v18,-1,43,0,38,-24xm91,-168v33,1,66,-5,63,32r0,26r-100,0v-2,-34,1,-59,37,-58","w":204},"\u00ea":{"d":"153,-215r-39,-57r-25,0r-38,57r24,0r27,-42r28,42r23,0xm177,-20v-47,-5,-126,20,-123,-35r0,-34v43,-1,91,3,128,-4v7,-69,-14,-99,-84,-99v-46,0,-73,19,-73,66r0,69v-1,60,53,66,114,61v18,-1,43,0,38,-24xm91,-168v33,1,66,-5,63,32r0,26r-100,0v-2,-34,1,-59,37,-58","w":204},"\u00eb":{"d":"154,-223r0,-34r-31,0r0,34r31,0xm87,-223r0,-34r-30,0r0,34r30,0xm177,-20v-47,-5,-126,20,-123,-35r0,-34v43,-1,91,3,128,-4v7,-69,-14,-99,-84,-99v-46,0,-73,19,-73,66r0,69v-1,60,53,66,114,61v18,-1,43,0,38,-24xm91,-168v33,1,66,-5,63,32r0,26r-100,0v-2,-34,1,-59,37,-58","w":204},"\u00ef":{"d":"96,-223r0,-34r-32,0r0,34r32,0xm29,-223r0,-34r-31,0r0,34r31,0xm61,0r0,-187r-29,0r0,187r29,0","w":93},"\u00f2":{"d":"125,-215r-39,-58r-29,8r44,50r24,0xm89,4v58,0,97,-8,97,-62v0,-67,7,-134,-61,-134v-57,0,-100,7,-100,61r0,75v-2,40,26,60,64,60xm83,-168v37,-1,78,-5,75,34v-5,43,16,113,-28,115v-38,2,-80,5,-76,-34v5,-44,-18,-114,29,-115","w":211},"\u00f3":{"d":"155,-265r-29,-8r-40,58r24,0xm89,4v58,0,97,-8,97,-62v0,-67,7,-134,-61,-134v-57,0,-100,7,-100,61r0,75v-2,40,26,60,64,60xm83,-168v37,-1,78,-5,75,34v-5,43,16,113,-28,115v-38,2,-80,5,-76,-34v5,-44,-18,-114,29,-115","w":211},"\u00f4":{"d":"157,-215r-39,-57r-26,0r-37,57r24,0r27,-42r27,42r24,0xm89,4v58,0,97,-8,97,-62v0,-67,7,-134,-61,-134v-57,0,-100,7,-100,61r0,75v-2,40,26,60,64,60xm83,-168v37,-1,78,-5,75,34v-5,43,16,113,-28,115v-38,2,-80,5,-76,-34v5,-44,-18,-114,29,-115","w":211},"\u00f6":{"d":"155,-223r0,-34r-32,0r0,34r32,0xm88,-223r0,-34r-31,0r0,34r31,0xm89,4v58,0,97,-8,97,-62v0,-67,7,-134,-61,-134v-57,0,-100,7,-100,61r0,75v-2,40,26,60,64,60xm83,-168v37,-1,78,-5,75,34v-5,43,16,113,-28,115v-38,2,-80,5,-76,-34v5,-44,-18,-114,29,-115","w":211},"\u00f8":{"d":"54,-3v55,18,139,12,132,-55v-4,-40,7,-89,-12,-113r22,-31r-19,-11r-20,28v-48,-17,-138,-13,-132,54v4,39,-7,89,11,113r-21,30r20,11xm55,-43v2,-47,-19,-125,28,-125v20,0,43,-2,60,2xm156,-146v0,46,19,127,-26,127v-21,0,-47,4,-62,-4","w":211},"\u00f9":{"d":"125,-215r-39,-58r-29,8r44,50r24,0xm31,-38v-3,59,98,49,126,25r1,13r27,0r0,-187r-29,0r0,160v-23,4,-96,19,-96,-14r0,-146r-29,0r0,149","w":217},"\u00fa":{"d":"160,-265r-29,-8r-40,58r24,0xm31,-38v-3,59,98,49,126,25r1,13r27,0r0,-187r-29,0r0,160v-23,4,-96,19,-96,-14r0,-146r-29,0r0,149","w":217},"\u00fb":{"d":"159,-215r-38,-57r-26,0r-37,57r24,0r27,-42r27,42r23,0xm31,-38v-3,59,98,49,126,25r1,13r27,0r0,-187r-29,0r0,160v-23,4,-96,19,-96,-14r0,-146r-29,0r0,149","w":217},"\u00fc":{"d":"154,-223r0,-34r-31,0r0,34r31,0xm87,-223r0,-34r-30,0r0,34r30,0xm31,-38v-3,59,98,49,126,25r1,13r27,0r0,-187r-29,0r0,160v-23,4,-96,19,-96,-14r0,-146r-29,0r0,149","w":217},"\u00fd":{"w":180},"\u00ff":{"d":"142,-223r0,-34r-31,0r0,34r31,0xm75,-223r0,-34r-31,0r0,34r31,0xm176,-187r-28,0r-53,147r-57,-147r-30,0r73,184r-29,79r27,0","w":183,"k":{"\u2026":29,".":29,",":29}}}});
