/**
 * navigatie bouwen voor automatenoverzicht
 */
function automatenOverzicht()
{
    // als via ajax dit wordt aangeroepen, dan evt eerst navigatie verwijderen
    $("#automaten .paginanavigatie").remove();
    
    var aantalperpagina = 10,
        aantaltotaal = $("#automaten-overzicht li").length,
        aantalpaginas = 0,
        lijst = $("#automaten-overzicht ul");

    if( aantaltotaal > aantalperpagina )
    {
        aantalpaginas = Math.ceil(aantaltotaal/aantalperpagina);

        /* hele lijst splitten in verschillende lijstjes voor de navigatie */
        groep = lijst.find('li:lt('+aantalperpagina+')').remove();
        while(groep.length)
        {
            $('<ul/>').append(groep).appendTo('#automaten-overzicht .items');
            groep = lijst.find('li:lt('+aantalperpagina+')').remove();
        }
        $("#automaten-overzicht ul:first").remove(); // er blijft een lege lijst over, deze verwijderen

        /* navigatie lijst bouwen */
        $("#automaten-overzicht").after('<ol class="paginanavigatie"></ol>');
        for( var i=1; i<=aantalpaginas; i++ )
        {
            $("#automaten .paginanavigatie").append('<li><a href="#'+i+'" title="Pagina '+i+'">'+i+'</a></li>');
        }
        $("#automaten .paginanavigatie li:first").addClass('huidige_pagina');

        /* werkend maken */ 
        $("#automaten-overzicht ul").not(":first").hide();
        $("#automaten .paginanavigatie li").bind('click', function(e)
        {
            var navitem = parseFloat($('a',this).text()) - 1;

            $("#automaten .paginanavigatie li").removeClass('huidige_pagina');
            $(this).addClass('huidige_pagina');
            
            $("#automaten-overzicht ul:visible").hide();
            $("#automaten-overzicht ul:eq("+navitem+")").show();
            e.preventDefault();
        });
    }
}

/**
 * onderstaande functie zorgt voor hover effect
 * LET OP: wordt nu nog niet toegepast
 */
function automatenEffect()
{
    
    $("#automaten-overzicht li").each(function()
    {
        var ahoogte     = $('a', this).height();
        var abreedte    = $('a', this).width();
        var imghoogte   = $('img', this).height();
        var imgbreedte  = $('img', this).width();
        var pxl         = 40; /* moet even zijn */
        var snelheid    = 300;

        $(this).css("height", $(this).height() + "px");

        $("a", this).css(
            {
                position    : 'absolute',
                left        : 0,
                top         : 0
            }
        );

        $(this).hover(function()
        {
            $(this).addClass('hover');
            $("a", this).stop().animate(
                {
                    width   : abreedte + pxl,
                    height  : ahoogte + pxl,
                    left    : -pxl/2,
                    top     : -pxl/2
                }, snelheid, 'easeOutQuad'
            );
            $("img", this).stop().animate(
                {
                    width   : imgbreedte + pxl,
                    height  : imghoogte + pxl
                }, snelheid, 'easeOutQuad'
            );
        },
        function()
        {
            $(this).removeClass('hover');
            $("a", this).animate(
                {
                    width   : abreedte,
                    height  : ahoogte,
                    left    : 0,
                    top     : 0
                }, snelheid, 'easeOutQuad'
            );
            $("img", this).animate(
                {
                    width   : imgbreedte,
                    height  : imghoogte
                }, snelheid, 'easeOutQuad'
            );
        });
    });
}

/******************/
/* Menu functions */
/******************/
window.Menu = {
	delay		: 1200,
	timer		: null,
	menuitem	: null,
	
	/**
	 * apply
	 * @param	string	selector
	 */
	apply: function( selector ) {
		$(selector).hover(Menu.open, Menu.setTimer);
		$(document).click(Menu.close);
	},
	
	/** 
	 * cancelTimer
	 */
	cancelTimer: function() {
		if(Menu.timer)	{
			clearTimeout(Menu.timer);
     		Menu.timer = null;
		}
	},
	
	/**
	 * setTimer
	 */
	setTimer: function() {
		Menu.timer = window.setTimeout(Menu.close, Menu.delay);
	},
		
	/** 
	 * close
	 * @param	string	current_menu_id
	 */
	close: function( current_menu_id ) {
		if(Menu.menuitem)	{
			if(Menu.menuitem.data("menuID") != current_menu_id)	
			{
				$("div", Menu.menuitem).stop().hide();
				$(Menu.menuitem).removeClass("hover");
			}
		}
	},
			
	/** 
	 * open
	 */
	open: function() {
		current_menu = $(this);
		
		current_menu.addClass("hover");
		
		// uniek menu id per submenu, dit om bij het sluiten te checken of niet de actieve wordt gesloten
		if(!current_menu.data("menuID"))	{
			current_menu.data("menuID", (Math.random() +''+ Math.random()).replace(/\./g,""))
		}
		
		Menu.cancelTimer();
		Menu.close( current_menu.data("menuID") );
		Menu.menuitem = current_menu;
		
		$("div", Menu.menuitem).stop().show();	
	}

};

/**
 * maak hele blokken klikbaar
 *
 * @param	bool	trigger_click		trigger het click event ipv de url.	default is false
 * @return	jQuery
 */
$.fn.hoverClick = function( trigger_click )
{
	return this.live("mouseover mouseout click", function( event )
	{
		if (event.type == 'mouseover')
		{
			if($("a", this).length)
			{
				$(this).addClass("hover").css("cursor", "pointer");
				$(this).attr("title", $("a:first", this).attr("title"));
			}
		}
		else if(event.type == 'click' && event.target.nodeName.toUpperCase() != 'A' && $("a", this).length)
		{
			if(trigger_click)
			{
				$("a:first", this).trigger("click");
			}
			else
			{
				var link = $("a:first", this);
				
				if (link.attr("target")) 
				{
					window.open(link.attr("href"), link.attr("target"));
				}
				else 
				{
					window.location = link.attr("href");
				}
			}

			return false;
		}
		else
		{
			$(this).removeClass("hover");
		}
	});
};


/**
 * bij hover een className toevoegen/eraf halen
 *
 * @param	string	className		default is 'hover'
 * @return	jQuery
 */
$.fn.hoverClass = function( className )
{
	if(!className)
		className = 'hover';
	
	return this.live('mouseover mouseout', function( event )
	{ 
		if (event.type == 'mouseover')
			$(this).addClass(className);
		else
			$(this).removeClass(className);
	});
};


/** 
 * jquery.defaultvalue 
 * @param	string	defaultvalue
 * @return	jQuery
 */
$.fn.defaultvalue = function( defVal )
{
	return this.each(function()
	{
		var $input = $(this);
		if($input.val() == "" || $input.val() == defVal)
		{
			$input.addClass("defaultvalue").val(defVal);
		}
		
		$input
			.focus(function() {
				if($input.val() == defVal) 
					$input.val("").removeClass("defaultvalue");
			})
			.blur(function(){
				if($input.val() == "") 
					$input.addClass("defaultvalue").val(defVal);
			});
	});
};

/**
 * Easing
 */
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;
	}
});


/*
 * jQuery autoResize (textarea auto-resizer)
 * @copyright James Padolsey http://james.padolsey.com
 * @version 1.04
 */
(function(a){a.fn.autoResize=function(j){var b=a.extend({onResize:function(){},animate:true,animateDuration:150,animateCallback:function(){},extraSpace:20,limit:1000},j);this.filter('textarea').each(function(){var c=a(this).css({resize:'none','overflow-y':'hidden'}),k=c.height(),f=(function(){var l=['height','width','lineHeight','textDecoration','letterSpacing'],h={};a.each(l,function(d,e){h[e]=c.css(e)});return c.clone().removeAttr('id').removeAttr('name').css({position:'absolute',top:0,left:-9999}).css(h).attr('tabIndex','-1').insertBefore(c)})(),i=null,g=function(){f.height(0).val(a(this).val()).scrollTop(10000);var d=Math.max(f.scrollTop(),k)+b.extraSpace,e=a(this).add(f);if(i===d){return}i=d;if(d>=b.limit){a(this).css('overflow-y','');return}b.onResize.call(this);b.animate&&c.css('display')==='block'?e.stop().animate({height:d},b.animateDuration,b.animateCallback):e.height(d)};c.unbind('.dynSiz').bind('keyup.dynSiz',g).bind('keydown.dynSiz',g).bind('change.dynSiz',g)});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:
 * Part of the digitally encoded machine readable outline data for producing the
 * Typefaces provided is copyrighted � 2003 - 2006 Linotype GmbH, www.linotype.com.
 * All rights reserved. This software is the property of Linotype GmbH, and may not
 * be reproduced, used, displayed, modified, disclosed or transferred without the
 * express written approval of Linotype GmbH.  Copyright � 1988, 1990, 1994 Adobe
 * Systems Incorporated. All Rights Reserved. Frutiger is a trademark of
 * Heidelberger Druckmaschinen AG, exclusively licensed through Linotype GmbH, and
 * may be registered in certain jurisdictions. This typeface is original artwork of
 * Adrian Frutiger. The design may be protected in certain jurisdictions.
 *
 * Trademark:
 * Frutiger is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed
 * through Linotype GmbH, and may be registered in certain jurisdictions.
 *
 * Description:
 * In 1968, Adrian Frutiger was commissioned to develop a sign and directional
 * system for the new Charles de Gaulle Airport in Paris. Though everyone thought
 * he would want to use his successful Univers font family. Frutiger decided
 * instead to make a new sans serif typeface that would be suitable for the
 * specific legibility requirements of airport signage: easy recognition from the
 * distances and angles of driving and walking. The resulting font was in accord
 * with the modern architecture of the airport. In 1976, he expanded and completed
 * the family for D. Stempel AG in conjunction with Linotype, and it was named
 * Frutiger. The Frutiger family is neither strictly geometric nor humanistic in
 * construction; its forms are designed so that each individual character is
 * quickly and easily recognized. Such distinctness makes it good for signage and
 * display work. Although it was originally intended for the large scale of an
 * airport, the full family has a warmth and subtlety that have, in recent years,
 * made it popular for the smaller scale of body text in magazines and booklets.
 * See also the new revised version Frutiger Next from the Linotype Platinum
 * Collection.
 *
 * Manufacturer:
 * Linotype GmbH
 *
 * Designer:
 * Adrian Frutiger
 *
 * Vendor URL:
 * http://www.linotype.com
 *
 * License information:
 * http://www.linotype.com/license
 */
Cufon.registerFont({"w":187,"face":{"font-family":"Frutiger LT Com 77 Black Cn","font-weight":800,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 10 6 4 5 4 3 2 4","ascent":"270","descent":"-90","x-height":"3","bbox":"-17 -342 360 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":93,"k":{"\u00dd":13,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"\u0178":13,"\u201c":13,"\u2018":13,"Y":13,"W":13,"V":13,"T":13,"A":13}},"!":{"d":"98,-251r-7,171r-42,0r-8,-171r57,0xm44,-54r52,0r0,54r-52,0r0,-54","w":139},"\"":{"d":"32,-270r45,0r0,94r-45,0r0,-94xm110,-270r46,0r0,94r-46,0r0,-94"},"#":{"d":"16,-180r32,0r10,-71r33,0r-10,71r36,0r10,-71r33,0r-10,71r32,0r0,33r-37,0r-5,42r31,0r0,33r-36,0r-10,72r-33,0r10,-72r-36,0r-10,72r-33,0r10,-72r-28,0r0,-33r32,0r6,-42r-27,0r0,-33xm71,-105r35,0r6,-42r-36,0"},"$":{"d":"12,-186v1,-44,28,-67,73,-70r0,-30r16,0r0,30v24,2,40,4,60,11r-4,44v-15,-7,-36,-15,-56,-15r0,62v43,11,75,30,75,82v0,45,-29,73,-75,76r0,32r-16,0r0,-32v-24,-1,-50,-4,-68,-10r4,-48v16,11,38,18,64,18r0,-69v-38,-10,-73,-30,-73,-81xm85,-216v-29,0,-30,47,-7,55v4,2,4,2,7,3r0,-58xm101,-36v32,-5,32,-60,0,-65r0,65"},"%":{"d":"194,-263r33,0r-114,275r-32,0xm71,-227v-26,3,-25,87,0,89v17,-2,16,-23,16,-45v0,-22,1,-42,-16,-44xm71,-109v-41,0,-54,-31,-54,-74v0,-42,14,-73,54,-73v40,0,54,32,54,73v0,41,-13,74,-54,74xm236,-113v-25,4,-23,85,0,89v18,-2,17,-23,17,-45v0,-22,1,-42,-17,-44xm236,4v-42,0,-54,-32,-54,-73v0,-41,12,-73,54,-73v41,1,54,31,54,73v0,42,-13,73,-54,73","w":306},"&":{"d":"184,-199v0,32,-26,53,-45,66r33,42v9,-11,11,-30,12,-48r49,0v0,36,-12,65,-30,86r40,53r-62,0r-14,-19v-12,15,-36,23,-61,23v-54,0,-87,-26,-87,-76v0,-37,18,-55,45,-70v-13,-13,-28,-30,-28,-55v0,-38,31,-60,76,-59v39,1,72,17,72,57xm91,-108v-23,15,-22,71,18,71v16,0,26,-5,32,-13xm108,-160v21,-10,45,-59,3,-61v-40,1,-21,49,-3,61","w":253},"'":{"d":"24,-270r45,0r0,94r-45,0r0,-94","w":93},"(":{"d":"16,-111v0,-69,23,-118,50,-161r43,0v-25,42,-45,95,-45,161v0,66,21,119,45,161r-43,0v-27,-43,-50,-92,-50,-161","w":113},")":{"d":"4,50v57,-75,58,-247,0,-322r44,0v50,64,69,208,18,289r-18,33r-44,0","w":113},"*":{"d":"39,-245r43,23r-8,-48r41,0r-8,48r42,-23r12,39r-47,9r35,34r-35,24r-20,-43r-22,43r-33,-24r33,-34r-46,-9","w":186},"+":{"d":"89,-182r38,0r0,72r72,0r0,38r-72,0r0,72r-38,0r0,-72r-72,0r0,-38r72,0r0,-72","w":216},",":{"d":"21,-54r54,0r-29,94r-42,0","w":93,"k":{"\u201d":13,"\u2019":13," ":13}},"-":{"d":"15,-125r90,0r0,44r-90,0r0,-44","w":119},".":{"d":"21,-54r52,0r0,54r-52,0r0,-54","w":93,"k":{"\u201d":13,"\u2019":13," ":13}},"\/":{"d":"64,-256r38,0r-60,260r-37,0","w":106},"0":{"d":"94,-215v-30,7,-28,52,-28,89v0,37,-3,83,28,89v30,-7,27,-52,27,-89v0,-37,2,-81,-27,-89xm94,4v-70,0,-83,-60,-83,-130v0,-71,14,-130,83,-130v68,0,82,60,82,130v0,70,-12,129,-82,130"},"1":{"d":"89,-251r45,0r0,251r-57,0r0,-185r-32,31r-27,-40"},"2":{"d":"21,-241v58,-25,151,-20,147,56v-3,66,-53,104,-88,141r90,0r0,44r-153,0r0,-44v31,-42,85,-70,92,-131v5,-46,-63,-35,-84,-14"},"3":{"d":"169,-68v0,72,-92,83,-155,62r3,-47v27,16,92,23,93,-21v1,-34,-29,-35,-62,-34r0,-41v28,-1,61,-1,61,-31v0,-43,-60,-34,-86,-19r-3,-45v58,-21,148,-19,146,56v-1,35,-27,46,-50,57v32,6,54,24,53,63"},"4":{"d":"6,-100r85,-151r62,0r0,161r28,0r0,41r-28,0r0,49r-54,0r0,-49r-93,0r0,-51xm102,-90r-1,-102r-56,102r57,0"},"5":{"d":"112,-81v0,-45,-53,-51,-90,-37r0,-133r137,0r0,42r-87,0r0,47v63,-8,99,22,99,82v0,76,-90,100,-154,73r2,-45v34,19,92,16,93,-29"},"6":{"d":"94,-36v35,-1,35,-82,0,-82v-25,0,-27,26,-26,53v1,15,9,29,26,29xm110,-256v22,0,34,5,53,10r-3,44v-35,-21,-92,-9,-92,36v0,9,-5,20,-2,27v10,-13,23,-22,43,-22v45,0,67,37,67,85v0,48,-27,79,-79,80v-68,0,-86,-55,-86,-120v0,-76,23,-138,99,-140"},"7":{"d":"169,-202r-74,202r-62,0r81,-207r-96,0r0,-44r151,0r0,49"},"8":{"d":"57,-129v-23,-11,-41,-30,-41,-63v0,-43,33,-64,78,-64v45,0,75,25,75,65v0,30,-19,48,-42,57v28,9,50,30,50,68v-1,48,-34,69,-84,70v-50,0,-83,-26,-83,-70v0,-35,18,-56,47,-63xm91,-112v-29,10,-39,75,3,76v37,0,33,-61,7,-70v-4,-2,-7,-4,-10,-6xm91,-216v-37,5,-22,62,5,67v25,-9,32,-66,-5,-67"},"9":{"d":"94,-216v-36,2,-36,82,0,83v36,0,35,-82,0,-83xm77,4v-23,1,-35,-4,-53,-10r3,-43v36,21,92,7,92,-37v0,-9,5,-19,2,-26v-10,13,-24,22,-43,22v-45,0,-67,-37,-67,-85v0,-48,27,-81,79,-81v66,0,86,54,86,121v0,76,-23,137,-99,139"},":":{"d":"21,-54r52,0r0,54r-52,0r0,-54xm21,-188r52,0r0,54r-52,0r0,-54","w":93,"k":{" ":13}},";":{"d":"21,-188r52,0r0,54r-52,0r0,-54xm21,-54r54,0r-29,94r-42,0","w":93,"k":{" ":13}},"<":{"d":"199,3r-182,-79r0,-31r182,-78r0,36r-134,58r134,58r0,36","w":216},"=":{"d":"199,-33r-182,0r0,-38r182,0r0,38xm199,-112r-182,0r0,-37r182,0r0,37","w":216},">":{"d":"151,-91r-134,-58r0,-36r182,78r0,31r-182,79r0,-36","w":216},"?":{"d":"58,-54r51,0r0,54r-51,0r0,-54xm98,-180v2,-40,-60,-33,-78,-19r-2,-46v50,-21,142,-15,139,54v-2,51,-46,64,-49,111r-48,0v-5,-49,36,-57,38,-100","w":166},"@":{"d":"105,-122v0,23,10,35,30,35v21,0,36,-20,36,-43v0,-24,-11,-35,-32,-35v-21,0,-34,20,-34,43xm72,-118v-6,-61,68,-100,108,-58r3,-14r34,0r-18,93v0,8,5,8,10,10v27,-4,36,-30,36,-62v1,-56,-41,-76,-93,-76v-62,0,-101,40,-101,99v0,59,35,97,94,99v36,0,63,-7,83,-24r30,0v-22,35,-61,55,-113,55v-79,0,-131,-49,-131,-130v0,-81,57,-130,138,-130v68,0,122,35,122,106v0,57,-36,88,-88,91v-14,1,-20,-9,-25,-17v-27,37,-94,7,-89,-42","w":288},"A":{"d":"144,-99r-27,-104r-30,104r57,0xm155,-56r-79,0r-17,56r-57,0r84,-251r64,0r81,251r-60,0","w":233,"k":{"\u00fd":6,"\u00dd":27,"\u00dc":6,"\u00db":6,"\u00da":6,"\u00d9":6,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":6,"\u0178":27,"\u201d":27,"\u2019":27,"y":6,"v":6,"Y":27,"W":6,"V":20,"U":6,"T":20,"Q":6,"O":6,"G":6,"C":6}},"B":{"d":"135,-75v0,-30,-22,-36,-54,-33r0,66v29,0,54,-3,54,-33xm129,-173v5,-29,-16,-41,-48,-37r0,61v26,2,45,-5,48,-24xm192,-69v0,80,-89,69,-168,69r0,-251v74,0,164,-12,163,62v0,34,-20,52,-46,59v31,5,51,24,51,61","w":206,"k":{"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"A":6,".":9,",":9}},"C":{"d":"17,-127v-6,-104,93,-153,179,-116r-3,49v-12,-8,-30,-15,-51,-15v-46,0,-63,36,-65,83v-4,67,60,101,117,69r3,52v-16,5,-37,9,-63,9v-77,-3,-113,-52,-117,-131","w":206},"D":{"d":"163,-123v0,-55,-20,-90,-80,-84r0,163v58,5,81,-25,80,-79xm225,-123v0,78,-43,123,-120,123r-81,0r0,-251r89,0v76,2,112,48,112,128","w":240,"k":{"\u00dd":13,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"\u0178":13,"Y":13,"V":4,"A":6,".":13,",":13}},"E":{"d":"24,-251r145,0r0,44r-88,0r0,56r84,0r0,44r-84,0r0,63r92,0r0,44r-149,0r0,-251","w":186},"F":{"d":"24,-251r139,0r0,44r-82,0r0,58r79,0r0,44r-79,0r0,105r-57,0r0,-251","w":173,"k":{"\u0105":9,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e5":9,"\u00e4":9,"\u00e3":9,"\u00e2":9,"\u00e1":9,"\u00e0":9,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"o":4,"e":4,"a":9,"A":13,".":33,",":27}},"G":{"d":"77,-125v-2,55,33,95,87,80r0,-57r-33,0r0,-42r89,0r0,135v-20,8,-51,14,-84,13v-77,-3,-116,-48,-119,-131v-4,-106,98,-149,196,-119r-4,50v-14,-6,-35,-14,-57,-14v-52,0,-72,37,-75,85","w":240},"H":{"d":"144,-104r-61,0r0,104r-59,0r0,-251r59,0r0,100r61,0r0,-100r59,0r0,251r-59,0r0,-104","w":226},"I":{"d":"24,-251r59,0r0,251r-59,0r0,-251","w":106},"J":{"d":"8,-51v25,12,49,1,49,-31r0,-169r59,0r0,169v7,69,-49,101,-110,79","w":140,"k":{"\u0105":4,"\u00fc":4,"\u00f9":4,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"u":4,"o":6,"e":6,"a":4,"A":6,".":9,",":9}},"K":{"d":"24,-251r59,0r1,103r61,-103r67,0r-78,117r84,134r-71,0r-64,-115r0,115r-59,0r0,-251","w":219,"k":{"\u00fd":6,"\u00fc":6,"\u00f9":6,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00d6":9,"\u00d5":9,"\u00d4":9,"\u00d3":9,"\u00d2":9,"y":6,"u":6,"o":9,"e":9,"O":9}},"L":{"d":"24,-251r59,0r0,206r83,0r0,45r-142,0r0,-251","w":173,"k":{"\u00fd":13,"\u00dd":27,"\u0178":27,"\u201d":33,"\u2019":27,"y":13,"Y":27,"W":9,"V":27,"T":27}},"M":{"d":"229,0r-1,-199r-56,199r-39,0r-55,-199r0,199r-54,0r0,-251r89,0r41,161r44,-161r85,0r0,251r-54,0","w":306},"N":{"d":"23,-251r69,0r74,174r0,-174r51,0r0,251r-69,0r-73,-182r0,182r-52,0r0,-251","w":240},"O":{"d":"123,-213v-40,0,-46,44,-46,87v0,43,6,88,46,88v41,0,47,-46,47,-88v0,-42,-6,-87,-47,-87xm123,4v-75,0,-106,-54,-106,-130v0,-75,31,-130,106,-130v75,0,107,54,107,130v0,76,-32,130,-107,130","w":246,"k":{"\u00dd":13,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"\u0178":13,"Y":13,"X":6,"V":6,"T":6,"A":6,".":13,",":13}},"P":{"d":"190,-171v-2,60,-40,85,-107,79r0,92r-59,0r0,-251v85,-3,169,-6,166,80xm131,-172v0,-29,-18,-38,-50,-35r0,71v31,3,50,-7,50,-36","w":200,"k":{"\u0105":6,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"o":4,"e":6,"a":6,"A":20,".":33,",":33}},"Q":{"d":"123,-213v-40,0,-46,44,-46,87v0,43,6,88,46,88v41,0,47,-46,47,-88v0,-42,-6,-87,-47,-87xm123,-256v126,-7,137,201,54,247r50,58r-66,0r-32,-45v-80,1,-112,-52,-112,-130v0,-75,32,-126,106,-130","w":246,"k":{".":9,",":6}},"R":{"d":"134,-177v0,-26,-22,-35,-53,-32r0,65v31,3,53,-7,53,-33xm193,-186v0,34,-21,54,-50,62v23,3,28,21,34,42r26,82r-62,0v-12,-31,-15,-73,-34,-97v-6,-5,-14,-4,-24,-5r0,102r-59,0r0,-251v77,1,170,-14,169,65","w":213,"k":{"\u00dd":6,"\u0178":6,"Y":6,"V":4}},"S":{"d":"17,-184v0,-71,83,-82,146,-63r-2,47v-23,-13,-82,-25,-84,14v16,53,99,32,99,114v0,78,-93,86,-155,66r3,-49v25,13,92,30,92,-14v0,-40,-52,-34,-73,-56v-14,-14,-26,-29,-26,-59","w":193,"k":{".":9,",":9}},"T":{"d":"60,-206r-54,0r0,-45r168,0r0,45r-54,0r0,206r-60,0r0,-206","w":180,"k":{"\u0105":17,"\u00fd":20,"\u00fc":20,"\u00f9":20,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u00e5":17,"\u00e4":17,"\u00e3":17,"\u00e2":17,"\u00e1":17,"\u00e0":17,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"y":20,"w":20,"u":20,"r":20,"o":20,"i":6,"e":20,"a":17,"O":6,"A":20,";":13,":":13,".":27,"-":33,",":27}},"U":{"d":"113,4v-57,0,-92,-35,-92,-95r0,-160r59,0r0,169v1,25,8,41,33,41v25,0,33,-16,34,-41r0,-169r59,0r0,160v1,60,-35,95,-93,95","w":226,"k":{"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"A":6,".":9,",":9}},"V":{"d":"3,-251r63,0r45,183r46,-183r60,0r-76,251r-63,0","w":219,"k":{"\u0105":20,"\u00fc":13,"\u00f9":13,"\u00f6":20,"\u00f5":20,"\u00f4":20,"\u00f3":20,"\u00f2":20,"\u00eb":20,"\u00ea":20,"\u00e9":20,"\u00e8":20,"\u00e5":20,"\u00e4":20,"\u00e3":20,"\u00e2":20,"\u00e1":20,"\u00e0":20,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c5":20,"\u00c4":20,"\u00c3":20,"\u00c2":20,"\u00c1":20,"\u00c0":20,"u":13,"o":20,"i":6,"e":20,"a":20,"O":6,"G":6,"A":20,";":9,":":9,".":27,"-":27,",":27}},"W":{"d":"186,0r-33,-195r-31,195r-69,0r-51,-251r57,0r31,178r30,-178r69,0r31,178r33,-178r52,0r-50,251r-69,0","w":306,"k":{"\u0105":13,"\u00f6":9,"\u00f5":9,"\u00f4":9,"\u00f3":9,"\u00f2":9,"\u00eb":9,"\u00ea":9,"\u00e9":9,"\u00e8":9,"\u00e5":13,"\u00e4":13,"\u00e3":13,"\u00e2":13,"\u00e1":13,"\u00e0":13,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"o":9,"e":9,"a":13,"A":6,";":6,":":6,".":13,"-":13,",":13}},"X":{"d":"11,-251r66,0r34,79r38,-79r63,0r-65,118r70,133r-66,0r-40,-90r-45,90r-63,0r72,-133","w":219},"Y":{"d":"77,-96r-76,-155r67,0r41,97r37,-97r66,0r-76,156r0,95r-59,0r0,-96","w":213,"k":{"\u0105":27,"\u00fc":13,"\u00f9":13,"\u00f6":27,"\u00f5":27,"\u00f4":27,"\u00f3":27,"\u00f2":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e8":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00d6":13,"\u00d5":13,"\u00d4":13,"\u00d3":13,"\u00d2":13,"\u00c5":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"\u0160":6,"u":13,"o":27,"e":27,"a":27,"S":6,"O":13,"A":27,";":13,":":13,".":27,"-":33,",":27}},"Z":{"d":"11,-48r97,-158r-95,0r0,-45r162,0r0,46r-98,160r99,0r0,45r-165,0r0,-48","w":186},"[":{"d":"26,-272r77,0r0,36r-33,0r0,250r33,0r0,36r-77,0r0,-322","w":113},"\\":{"d":"102,4r-38,0r-59,-260r37,0","w":106},"]":{"d":"87,50r-76,0r0,-36r33,0r0,-250r-33,0r0,-36r76,0r0,322","w":113},"^":{"d":"91,-251r34,0r67,138r-37,0r-47,-101r-47,101r-37,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"`":{"d":"-1,-261r50,0r19,52r-33,0","w":79},"a":{"d":"83,-33v32,2,41,-22,39,-57v-31,-1,-57,3,-58,32v-1,15,7,24,19,25xm122,-117v2,-50,-62,-40,-87,-19r-2,-43v57,-19,140,-20,141,58r2,121r-52,0r-2,-26v-20,46,-115,34,-110,-28v4,-54,52,-65,110,-63","w":193},"b":{"d":"105,-38v31,-3,28,-43,27,-77v-1,-19,-7,-37,-27,-37v-26,0,-28,30,-28,58v0,26,4,53,28,56xm126,3v-28,0,-43,-15,-52,-33r-2,30r-54,0r2,-270r57,0r0,110v7,-16,24,-31,49,-30v51,1,66,42,66,92v0,52,-15,101,-66,101","w":206,"k":{".":13,",":13}},"c":{"d":"72,-103v-11,51,35,77,78,55r2,43v-71,25,-140,-10,-140,-87v0,-77,67,-117,138,-89r-2,42v-33,-17,-77,-3,-76,36","w":159},"d":{"d":"102,-152v-32,0,-28,44,-27,75v1,19,7,41,27,39v40,-4,40,-114,0,-114xm81,-190v26,-1,40,16,49,30r0,-110r57,0r1,270r-54,0v-1,-9,1,-23,-2,-30v-8,18,-24,33,-51,33v-51,0,-66,-47,-66,-101v0,-50,15,-91,66,-92","w":206},"e":{"d":"69,-79v-3,51,70,50,99,28r2,43v-73,29,-162,0,-155,-86v4,-57,30,-101,95,-96v53,4,72,48,70,111r-111,0xm98,-156v-23,0,-28,24,-29,46r59,0v0,-25,-6,-46,-30,-46","w":193,"k":{"x":4,".":9,",":6}},"f":{"d":"130,-230v-27,-12,-44,7,-37,42r34,0r0,40r-34,0r0,148r-57,0r0,-148r-33,0r0,-40r33,0v-3,-52,6,-86,59,-86v16,0,27,2,37,4","w":133,"k":{"\u2019":-4,".":20,",":20}},"g":{"d":"82,-190v28,-1,41,16,51,32r1,-30r54,0r-2,182v4,82,-91,100,-162,75r2,-47v28,22,109,29,104,-27v1,-9,1,-18,1,-28v-8,18,-23,33,-50,33v-49,0,-65,-40,-66,-94v0,-54,17,-96,67,-96xm102,-149v-29,0,-29,40,-27,70v1,19,8,39,27,39v25,0,28,-28,28,-54v0,-25,-3,-55,-28,-55","w":206,"k":{".":9}},"h":{"d":"102,-145v-20,0,-26,18,-25,40r0,105r-57,0r0,-270r57,0r0,110v5,-20,26,-30,48,-30v82,0,48,115,55,190r-57,0r0,-116v0,-20,-6,-29,-21,-29","w":200},"i":{"d":"22,-270r56,0r0,50r-56,0r0,-50xm22,-188r56,0r0,188r-56,0r0,-188","w":100},"j":{"d":"22,-270r56,0r0,50r-56,0r0,-50xm-8,37v17,6,30,-5,30,-25r0,-200r56,0r0,199v6,55,-38,81,-87,64","w":100},"k":{"d":"22,-270r56,0r1,158r48,-76r59,0r-59,86r63,102r-64,0r-48,-89r0,89r-56,0r0,-270","w":193},"l":{"d":"22,-270r56,0r0,270r-56,0r0,-270","w":100},"m":{"d":"225,-190v82,-1,48,115,55,190r-56,0r0,-116v0,-19,-8,-28,-22,-29v-15,-1,-24,11,-23,26r0,119r-57,0r0,-116v-1,-16,-5,-28,-20,-29v-20,0,-26,18,-25,40r0,105r-57,0r-2,-188r52,0r2,32v9,-20,23,-34,53,-34v29,0,40,13,49,31v9,-18,23,-31,51,-31","w":300},"n":{"d":"125,-190v82,0,48,115,55,190r-57,0r0,-116v0,-20,-6,-29,-21,-29v-20,0,-26,18,-25,40r0,105r-57,0r-2,-188r52,0r2,32v9,-20,23,-34,53,-34","w":200},"o":{"d":"103,-152v-41,2,-41,115,0,116v41,-2,41,-115,0,-116xm103,3v-59,0,-88,-39,-88,-97v0,-58,29,-96,88,-96v59,0,89,37,89,96v0,59,-30,97,-89,97","w":206,"k":{"x":6,".":13,",":13}},"p":{"d":"105,-36v32,0,27,-41,27,-75v0,-18,-8,-38,-27,-38v-25,0,-27,30,-28,55v0,28,2,58,28,58xm126,3v-25,1,-42,-14,-49,-31r0,106r-57,0r-2,-266r54,0v2,9,0,22,3,30v8,-19,24,-33,51,-32v51,2,66,49,66,101v0,50,-16,90,-66,92","w":206,"k":{".":13,",":13}},"q":{"d":"102,-149v-32,0,-28,45,-27,77v0,20,8,36,27,36v26,0,28,-31,28,-58v0,-25,-3,-55,-28,-55xm81,-190v29,-1,41,16,52,32r1,-30r54,0r-1,266r-57,0r-1,-106v-7,17,-23,32,-48,31v-51,-1,-66,-41,-66,-92v0,-54,15,-98,66,-101","w":206},"r":{"d":"133,-138v-73,-19,-54,71,-56,138r-57,0r-2,-188r52,0r2,34v12,-20,23,-40,61,-36r0,52","w":140,"k":{"\u0105":6,"\u00f6":6,"\u00f5":6,"\u00f4":6,"\u00f3":6,"\u00f2":6,"\u00eb":6,"\u00ea":6,"\u00e9":6,"\u00e8":6,"\u00e7":6,"\u00e5":6,"\u00e4":6,"\u00e3":6,"\u00e2":6,"\u00e1":6,"\u00e0":6,"\u0161":4,"s":4,"q":6,"p":4,"o":6,"g":4,"e":6,"d":4,"c":6,"a":6,".":20,"-":20,",":20}},"s":{"d":"14,-112v-25,-69,63,-92,119,-71r-2,43v-18,-15,-89,-14,-58,17v29,16,70,19,70,68v0,66,-79,65,-131,49r2,-44v16,12,61,22,74,2v2,-29,-50,-22,-65,-48v-3,-6,-7,-10,-9,-16","w":153},"t":{"d":"131,-2v-44,12,-95,3,-95,-51r0,-95r-31,0r0,-40r32,0r0,-38r56,-18r0,56r37,0r0,40r-37,0r0,86v-3,25,20,28,38,20r0,40","w":140},"u":{"d":"99,-42v20,0,24,-18,24,-40r0,-106r57,0r2,188r-52,0v-1,-10,1,-23,-2,-31v-9,20,-23,34,-53,34v-82,0,-48,-115,-55,-191r57,0r0,116v0,21,6,30,22,30","w":200},"v":{"d":"1,-188r59,0r36,134r34,-134r55,0r-58,188r-67,0","w":186},"w":{"d":"59,-188r28,134r26,-134r65,0r26,134r27,-134r54,0r-50,188r-61,0r-31,-137r-29,137r-62,0r-50,-188r57,0","w":286,"k":{".":20,",":20}},"x":{"d":"93,-63r-32,63r-59,0r58,-100r-53,-88r64,0r26,57r25,-57r59,0r-53,88r57,100r-63,0","w":186},"y":{"d":"21,33v24,12,48,-6,46,-33r-65,-188r59,0r35,128r34,-128r55,0r-66,205v-11,48,-47,74,-100,58","w":186,"k":{".":20,",":20}},"z":{"d":"12,-188r130,0r0,47r-70,99r72,0r0,42r-134,0r0,-47r71,-98r-69,0r0,-43","w":153},"{":{"d":"37,2v-1,-40,12,-99,-31,-97r0,-31v42,0,30,-57,31,-98v1,-41,35,-51,79,-48r0,29v-75,-16,8,130,-74,132v47,0,42,57,40,106v-1,23,10,30,34,27r0,28v-45,3,-78,-6,-79,-48","w":119},"|":{"d":"21,-270r38,0r0,360r-38,0r0,-360","w":79},"}":{"d":"83,-224v1,40,-11,97,30,98r0,31v-42,-1,-29,58,-30,97v-2,41,-34,51,-79,48r0,-28v76,17,-8,-132,74,-133v-47,-1,-42,-57,-40,-106v1,-23,-10,-29,-34,-26r0,-29v44,-3,78,6,79,48","w":119},"~":{"d":"191,-91v-13,41,-73,32,-101,10v-23,-11,-48,2,-52,22r-13,-32v12,-42,74,-31,104,-10v21,15,41,-5,49,-22","w":216},"\u20ac":{"d":"185,-2v-78,23,-141,-19,-150,-86r-33,0r6,-25r24,0r0,-25r-30,0r6,-25r27,0v8,-70,84,-116,159,-80r-11,45v-35,-22,-83,0,-87,35r79,0r-6,25r-78,0v-1,8,-1,17,0,25r73,0r-6,25r-62,0v8,33,50,53,87,35"},"\u201a":{"d":"28,-54r54,0r-28,94r-43,0","w":93},"\u0192":{"d":"1,33v7,8,28,11,33,-2v15,-40,17,-94,26,-140r-34,0r5,-40r36,0v10,-54,16,-124,90,-104v6,2,11,4,15,5r-5,37v-8,-7,-29,-9,-34,4v-5,13,-8,41,-12,58r35,0r-5,40r-37,0v-16,63,-9,149,-54,182v-15,11,-50,8,-63,-2"},"\u201e":{"d":"110,-54r54,0r-29,94r-42,0xm40,-54r54,0r-28,94r-43,0"},"\u2026":{"d":"274,-54r52,0r0,54r-52,0r0,-54xm154,-54r52,0r0,54r-52,0r0,-54xm34,-54r52,0r0,54r-52,0r0,-54","w":360},"\u2020":{"d":"70,-148r-51,0r0,-42r51,0r0,-61r47,0r0,61r51,0r0,42r-51,0r0,148r-47,0r0,-148","w":186},"\u2021":{"d":"71,-51r-52,0r0,-40r52,0r0,-69r-52,0r0,-40r52,0r0,-51r45,0r0,51r52,0r0,40r-52,0r0,69r52,0r0,40r-52,0r0,51r-45,0r0,-51","w":186},"\u02c6":{"d":"14,-261r52,0r28,52r-36,0r-18,-31r-18,31r-36,0","w":79},"\u2030":{"d":"161,-263r27,0r-114,275r-26,0xm180,-104v-22,3,-17,57,-8,76v19,11,23,-12,22,-36v-1,-18,2,-38,-14,-40xm225,-64v0,36,-9,68,-45,68v-36,0,-46,-30,-45,-68v0,-38,7,-68,45,-68v37,1,45,32,45,68xm283,-104v-22,5,-16,57,-8,76v19,11,23,-12,22,-36v-1,-18,2,-38,-14,-40xm328,-64v1,38,-9,68,-45,68v-36,0,-46,-30,-45,-68v0,-38,7,-68,45,-68v38,0,45,30,45,68xm102,-187v1,38,-9,68,-45,68v-36,0,-46,-30,-45,-68v0,-38,8,-69,45,-69v37,0,45,31,45,69xm43,-202v0,22,-6,51,14,54v20,-2,14,-32,14,-54v0,-12,-2,-25,-14,-25v-13,0,-14,13,-14,25","w":339},"\u0160":{"d":"43,-320r36,0r18,31r17,-31r36,0r-27,53r-52,0xm17,-184v0,-71,83,-82,146,-63r-2,47v-23,-13,-82,-25,-84,14v16,53,99,32,99,114v0,78,-93,86,-155,66r3,-49v25,13,92,30,92,-14v0,-40,-52,-34,-73,-56v-14,-14,-26,-29,-26,-59","w":193,"k":{".":9,",":9}},"\u2039":{"d":"49,-168r45,0r-33,74r33,75r-45,0r-36,-75","w":113},"\u0152":{"d":"154,-206v-55,-15,-81,21,-81,80v0,58,25,98,81,80r0,-160xm13,-126v-2,-102,68,-143,178,-125r106,0r0,44r-84,0r0,56r79,0r0,44r-79,0r0,63r89,0r0,44r-186,3v-74,-2,-102,-55,-103,-129","w":313},"\u017d":{"d":"40,-320r36,0r18,31r17,-31r36,0r-27,53r-52,0xm11,-48r97,-158r-95,0r0,-45r162,0r0,46r-98,160r99,0r0,45r-165,0r0,-48","w":186},"\u2018":{"d":"65,-176r-54,0r29,-94r42,0","w":93,"k":{"\u00c5":33,"\u00c4":33,"\u00c3":33,"\u00c2":33,"\u00c1":33,"\u00c0":33,"\u2018":24,"A":33}},"\u2019":{"d":"28,-270r54,0r-28,94r-43,0","w":93,"k":{"\u0161":13,"\u201d":13,"\u2019":24,"s":13,"d":20}},"\u201c":{"d":"77,-176r-54,0r29,-94r42,0xm147,-176r-54,0r29,-94r42,0","k":{"\u00c5":33,"\u00c4":33,"\u00c3":33,"\u00c2":33,"\u00c1":33,"\u00c0":33,"\u2018":13,"A":33}},"\u201d":{"d":"110,-270r54,0r-29,94r-42,0xm40,-270r54,0r-28,94r-43,0","k":{" ":13}},"\u2022":{"d":"90,-63v-38,0,-63,-25,-63,-63v0,-37,26,-62,63,-62v37,0,63,25,63,62v0,38,-25,63,-63,63","w":180},"\u2013":{"d":"0,-123r180,0r0,39r-180,0r0,-39","w":180},"\u2014":{"d":"0,-123r360,0r0,39r-360,0r0,-39","w":360},"\u02dc":{"d":"18,-258v21,-1,46,28,52,0r26,0v0,25,-10,43,-34,44v-20,2,-45,-28,-52,0r-27,0v3,-22,11,-43,35,-44","w":79},"\u2122":{"d":"59,-222r-42,0r0,-29r122,0r0,29r-42,0r0,120r-38,0r0,-120xm168,-251r52,0r35,93r36,-93r52,0r0,149r-35,0r-1,-105r-38,105r-27,0r-40,-105r0,105r-34,0r0,-149","w":360},"\u0161":{"d":"23,-261r36,0r18,31r17,-31r36,0r-27,52r-52,0xm14,-112v-25,-69,63,-92,119,-71r-2,43v-18,-15,-89,-14,-58,17v29,16,70,19,70,68v0,66,-79,65,-131,49r2,-44v16,12,61,22,74,2v2,-29,-50,-22,-65,-48v-3,-6,-7,-10,-9,-16","w":153},"\u203a":{"d":"100,-94r-35,75r-45,0r32,-75r-32,-74r45,0","w":113},"\u0153":{"d":"103,-152v-41,2,-41,115,0,116v41,-2,41,-115,0,-116xm288,-8v-37,15,-99,15,-125,-10v-14,13,-34,21,-60,21v-59,-1,-88,-39,-88,-97v0,-58,29,-95,88,-96v26,-1,46,8,60,20v14,-14,36,-22,66,-20v53,6,71,48,69,111r-110,0v-4,52,71,49,99,28xm216,-156v-24,0,-29,23,-30,46r60,0v0,-25,-6,-45,-30,-46","w":313},"\u017e":{"d":"23,-261r36,0r18,31r17,-31r36,0r-27,52r-52,0xm12,-188r130,0r0,47r-70,99r72,0r0,42r-134,0r0,-47r71,-98r-69,0r0,-43","w":153},"\u0178":{"d":"77,-96r-76,-155r67,0r41,97r37,-97r66,0r-76,156r0,95r-59,0r0,-96xm117,-319r42,0r0,45r-42,0r0,-45xm55,-319r42,0r0,45r-42,0r0,-45","w":213,"k":{"\u0105":27,"\u00fc":13,"\u00f9":13,"\u00f6":27,"\u00f5":27,"\u00f4":27,"\u00f3":27,"\u00f2":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e8":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00d6":13,"\u00d5":13,"\u00d4":13,"\u00d3":13,"\u00d2":13,"\u00c5":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"\u0160":6,"u":13,"o":27,"e":27,"a":27,"S":6,"O":13,"A":27,";":13,":":13,".":27,"-":33,",":27}},"\u00a1":{"d":"41,64r8,-172r42,0r7,172r-57,0xm96,-134r-52,0r0,-54r52,0r0,54","w":139},"\u00a2":{"d":"141,-188r21,7r-3,43r-24,-7r-15,105v16,4,31,-2,42,-7r1,43v-15,5,-30,8,-50,8r-6,45r-20,0r7,-46v-45,-9,-70,-43,-70,-94v0,-62,33,-100,98,-99r6,-41r19,0xm115,-145v-38,5,-42,78,-14,97"},"\u00a3":{"d":"170,-207v-33,-15,-82,-8,-76,39r0,19r54,0r0,32r-54,0r0,75r79,0r0,42r-159,0r0,-42r26,0r0,-75r-26,0r0,-32r26,0v-13,-88,54,-123,132,-100"},"\u00a4":{"d":"48,-126v0,30,18,49,46,49v27,0,45,-19,45,-49v0,-29,-18,-48,-45,-48v-27,0,-46,18,-46,48xm45,-194v25,-19,72,-19,97,0r19,-19r20,20r-19,19v20,30,20,66,0,97r19,19r-20,19r-19,-19v-24,20,-73,20,-97,0r-19,19r-20,-19r20,-19v-22,-28,-20,-71,0,-97r-20,-19r20,-20"},"\u00a5":{"d":"17,-139r33,0r-46,-112r54,0r37,105r35,-105r54,0r-46,112r33,0r0,37r-49,0v-3,6,-2,15,-2,24r51,0r0,38r-51,0r0,40r-52,0r0,-40r-51,0r0,-38r51,0v0,-9,1,-19,-3,-24r-48,0r0,-37"},"\u00a6":{"d":"21,-243r38,0r0,126r-38,0r0,-126xm21,-63r38,0r0,126r-38,0r0,-126","w":79},"\u00a7":{"d":"77,-141v-27,31,5,58,34,68v25,-31,-5,-59,-34,-68xm25,-201v0,-60,80,-61,129,-45r-4,42v-20,-15,-87,-21,-66,18v29,24,84,29,84,81v0,24,-15,38,-28,49v45,34,12,103,-55,103v-23,0,-46,-7,-63,-13r4,-43v17,7,31,15,53,16v22,1,36,-22,21,-36v-26,-25,-81,-29,-81,-78v0,-24,14,-41,31,-49v-15,-11,-24,-22,-25,-45","w":186},"\u00a8":{"d":"50,-263r42,0r0,45r-42,0r0,-45xm-12,-263r42,0r0,45r-42,0r0,-45","w":79},"\u00a9":{"d":"144,4v-78,0,-130,-52,-130,-130v0,-78,53,-130,130,-130v77,0,130,52,130,130v0,78,-52,130,-130,130xm109,-127v-7,47,63,66,72,22r29,0v-5,33,-27,55,-62,55v-45,0,-67,-31,-71,-77v-8,-83,121,-106,133,-22r-29,0v-15,-47,-76,-24,-72,22xm237,-126v0,-58,-35,-99,-93,-99v-58,0,-93,41,-93,99v0,58,34,99,93,99v59,0,93,-41,93,-99","w":288},"\u00aa":{"d":"81,-195v-19,-1,-36,1,-37,19v0,9,5,13,15,13v18,-1,23,-14,22,-32xm23,-249v36,-11,92,-13,93,35r1,71r-35,0v-1,-5,1,-12,-2,-15v-11,26,-75,22,-71,-17v3,-34,37,-37,72,-37v-1,-29,-39,-21,-56,-10","w":125},"\u00ab":{"d":"122,-168r45,0r-32,74r32,75r-45,0r-35,-75xm49,-168r45,0r-33,74r33,75r-45,0r-36,-75"},"\u00ac":{"d":"162,-112r-145,0r0,-37r182,0r0,110r-37,0r0,-73","w":216},"\u00ad":{"d":"15,-125r90,0r0,44r-90,0r0,-44","w":119},"\u00ae":{"d":"144,4v-78,0,-130,-52,-130,-130v0,-78,53,-130,130,-130v77,0,130,52,130,130v0,78,-52,130,-130,130xm144,-225v-58,0,-93,41,-93,99v0,58,34,99,93,99v59,0,93,-41,93,-99v0,-58,-35,-99,-93,-99xm168,-157v0,-19,-26,-14,-45,-15r0,32v20,-1,45,6,45,-17xm197,-154v0,23,-13,35,-33,37r35,60r-33,0r-31,-59r-12,0r0,59r-29,0r0,-139v48,1,103,-9,103,42","w":288},"\u00af":{"d":"-13,-251r106,0r0,31r-106,0r0,-31","w":79},"\u00b0":{"d":"72,-227v-15,0,-30,15,-30,30v0,15,14,29,30,29v16,0,30,-14,30,-29v0,-15,-15,-30,-30,-30xm72,-139v-34,0,-58,-22,-58,-58v0,-36,24,-55,58,-59v34,3,58,23,58,59v0,36,-24,58,-58,58","w":144},"\u00b1":{"d":"17,-37r182,0r0,37r-182,0r0,-37xm89,-182r38,0r0,47r72,0r0,38r-72,0r0,47r-38,0r0,-47r-72,0r0,-38r72,0r0,-47","w":216},"\u00b2":{"d":"13,-247v47,-22,121,0,92,58v-11,24,-33,42,-49,59r56,0r0,28r-102,0r0,-27v20,-25,52,-40,59,-77v0,-29,-41,-18,-54,-7","w":121},"\u00b3":{"d":"71,-148v1,-20,-21,-17,-40,-18r0,-27v17,-1,40,1,40,-15v0,-26,-39,-19,-56,-11r-2,-30v38,-11,98,-13,97,34v0,20,-16,29,-32,34v20,3,34,15,34,38v-1,45,-65,49,-103,36r2,-30v17,9,58,16,60,-11","w":121},"\u00b4":{"d":"31,-261r50,0r-36,52r-33,0","w":79},"\u00b5":{"d":"129,-31v-7,18,-36,48,-57,26r0,83r-52,0r0,-266r57,0r0,116v0,21,6,30,22,30v20,0,24,-18,24,-40r0,-106r57,0r2,188r-52,0","w":200},"\u00b6":{"d":"15,-186v-3,-84,99,-62,178,-65r0,296r-38,0r0,-267r-38,0r0,267r-37,0r0,-168v-40,-1,-63,-23,-65,-63","w":223},"\u00b7":{"d":"75,-100v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28v0,-16,12,-28,28,-28v16,0,28,12,28,28","w":93},"\u00b8":{"d":"51,47v-1,-20,-32,-3,-37,-16r19,-34r20,0r-14,23v21,-7,44,5,43,27v0,37,-55,39,-82,25r7,-16v10,4,45,14,44,-9","w":79},"\u00b9":{"d":"84,-102r-40,0r0,-111r-20,19r-18,-25r46,-35r32,0r0,152","w":121},"\u00ba":{"d":"67,-232v-26,1,-26,67,0,67v15,0,18,-16,18,-34v0,-17,-4,-32,-18,-33xm9,-199v0,-36,22,-57,58,-57v35,0,57,19,57,57v0,35,-21,59,-57,58v-37,0,-58,-22,-58,-58","w":133},"\u00bb":{"d":"100,-94r-35,75r-45,0r32,-75r-32,-74r45,0xm174,-94r-35,75r-45,0r32,-75r-32,-74r45,0"},"\u00bc":{"d":"84,-102r-40,0r0,-111r-20,19r-18,-25r46,-35r32,0r0,152xm174,-263r33,0r-114,275r-32,0xm152,-60r55,-93r44,0r0,99r15,0r0,27r-15,0r0,27r-39,0r0,-27r-60,0r0,-33xm213,-54v-1,-19,2,-43,-1,-60r-32,60r33,0","w":280},"\u00bd":{"d":"224,-104v0,-28,-42,-18,-54,-7r-3,-34v44,-23,121,-1,92,57v-12,23,-31,43,-49,59r56,0r0,29r-102,0r0,-27v21,-24,51,-42,60,-77xm84,-102r-40,0r0,-111r-20,19r-18,-25r46,-35r32,0r0,152xm168,-263r32,0r-113,275r-33,0","w":280},"\u00be":{"d":"71,-148v1,-20,-21,-17,-40,-18r0,-27v17,-1,40,1,40,-15v0,-26,-39,-19,-56,-11r-2,-30v38,-11,98,-13,97,34v0,20,-16,29,-32,34v20,3,34,15,34,38v-1,45,-65,49,-103,36r2,-30v17,9,58,16,60,-11xm181,-263r32,0r-113,275r-33,0xm152,-60r55,-93r44,0r0,99r15,0r0,27r-15,0r0,27r-39,0r0,-27r-60,0r0,-33xm213,-54v-1,-19,2,-43,-1,-60r-32,60r33,0","w":280},"\u00bf":{"d":"109,-134r-52,0r0,-54r52,0r0,54xm149,58v-51,18,-139,15,-139,-54v0,-51,45,-65,49,-111r48,0v5,48,-35,57,-38,99v-3,42,59,33,78,19","w":166},"\u00c0":{"d":"144,-99r-27,-104r-30,104r57,0xm155,-56r-79,0r-17,56r-57,0r84,-251r64,0r81,251r-60,0xm76,-319r50,0r19,52r-33,0","w":233,"k":{"\u00fd":6,"\u00dd":27,"\u00dc":6,"\u00db":6,"\u00da":6,"\u00d9":6,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":6,"\u0178":27,"\u201d":27,"\u2019":27,"y":6,"v":6,"Y":27,"W":6,"V":20,"U":6,"T":20,"Q":6,"O":6,"G":6,"C":6}},"\u00c1":{"d":"144,-99r-27,-104r-30,104r57,0xm155,-56r-79,0r-17,56r-57,0r84,-251r64,0r81,251r-60,0xm108,-319r50,0r-36,52r-33,0","w":233,"k":{"\u00fd":6,"\u00dd":27,"\u00dc":6,"\u00db":6,"\u00da":6,"\u00d9":6,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":6,"\u0178":27,"\u201d":27,"\u2019":27,"y":6,"v":6,"Y":27,"W":6,"V":20,"U":6,"T":20,"Q":6,"O":6,"G":6,"C":6}},"\u00c2":{"d":"144,-99r-27,-104r-30,104r57,0xm155,-56r-79,0r-17,56r-57,0r84,-251r64,0r81,251r-60,0xm91,-319r52,0r28,52r-36,0r-18,-31r-18,31r-36,0","w":233,"k":{"\u00fd":6,"\u00dd":27,"\u00dc":6,"\u00db":6,"\u00da":6,"\u00d9":6,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":6,"\u0178":27,"\u201d":27,"\u2019":27,"y":6,"v":6,"Y":27,"W":6,"V":20,"U":6,"T":20,"Q":6,"O":6,"G":6,"C":6}},"\u00c3":{"d":"144,-99r-27,-104r-30,104r57,0xm155,-56r-79,0r-17,56r-57,0r84,-251r64,0r81,251r-60,0xm95,-316v21,-1,46,28,52,0r26,0v0,25,-10,43,-34,44v-20,2,-45,-28,-52,0r-27,0v3,-22,11,-43,35,-44","w":233,"k":{"\u00fd":6,"\u00dd":27,"\u00dc":6,"\u00db":6,"\u00da":6,"\u00d9":6,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":6,"\u0178":27,"\u201d":27,"\u2019":27,"y":6,"v":6,"Y":27,"W":6,"V":20,"U":6,"T":20,"Q":6,"O":6,"G":6,"C":6}},"\u00c4":{"d":"144,-99r-27,-104r-30,104r57,0xm155,-56r-79,0r-17,56r-57,0r84,-251r64,0r81,251r-60,0xm127,-319r42,0r0,45r-42,0r0,-45xm65,-319r42,0r0,45r-42,0r0,-45","w":233,"k":{"\u00fd":6,"\u00dd":27,"\u00dc":6,"\u00db":6,"\u00da":6,"\u00d9":6,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":6,"\u0178":27,"\u201d":27,"\u2019":27,"y":6,"v":6,"Y":27,"W":6,"V":20,"U":6,"T":20,"Q":6,"O":6,"G":6,"C":6}},"\u00c5":{"d":"117,-322v-11,0,-21,9,-21,20v0,12,9,21,21,21v11,0,20,-10,20,-21v0,-11,-9,-20,-20,-20xm117,-262v-24,0,-40,-16,-40,-40v0,-24,17,-38,40,-40v23,2,38,17,40,40v-2,23,-16,40,-40,40xm144,-99r-27,-104r-30,104r57,0xm155,-56r-79,0r-17,56r-57,0r84,-251r64,0r81,251r-60,0","w":233,"k":{"\u00fd":6,"\u00dd":27,"\u00dc":6,"\u00db":6,"\u00da":6,"\u00d9":6,"\u00d6":6,"\u00d5":6,"\u00d4":6,"\u00d3":6,"\u00d2":6,"\u00c7":6,"\u0178":27,"\u201d":27,"\u2019":27,"y":6,"v":6,"Y":27,"W":6,"V":20,"U":6,"T":20,"Q":6,"O":6,"G":6,"C":6}},"\u00c6":{"d":"156,-99r-1,-113r-50,113r51,0xm156,-56r-69,0r-23,56r-62,0r115,-251r176,0r0,44r-82,0r0,56r77,0r0,44r-77,0r0,63r86,0r0,44r-141,0r0,-56","w":313},"\u00c7":{"d":"131,47v-1,-20,-32,-3,-37,-16r17,-29v-60,-12,-90,-57,-94,-129v-5,-104,93,-153,179,-116r-3,49v-12,-8,-30,-15,-51,-15v-46,0,-63,36,-65,83v-4,67,60,101,117,69r3,52v-17,6,-41,10,-68,9r-10,16v21,-7,44,5,43,27v0,37,-55,39,-82,25r7,-16v10,4,45,14,44,-9","w":206},"\u00c8":{"d":"24,-251r145,0r0,44r-88,0r0,56r84,0r0,44r-84,0r0,63r92,0r0,44r-149,0r0,-251xm53,-319r50,0r19,52r-33,0","w":186},"\u00c9":{"d":"24,-251r145,0r0,44r-88,0r0,56r84,0r0,44r-84,0r0,63r92,0r0,44r-149,0r0,-251xm85,-319r50,0r-36,52r-33,0","w":186},"\u00ca":{"d":"24,-251r145,0r0,44r-88,0r0,56r84,0r0,44r-84,0r0,63r92,0r0,44r-149,0r0,-251xm68,-319r52,0r28,52r-36,0r-18,-31r-18,31r-36,0","w":186},"\u00cb":{"d":"24,-251r145,0r0,44r-88,0r0,56r84,0r0,44r-84,0r0,63r92,0r0,44r-149,0r0,-251xm104,-319r42,0r0,45r-42,0r0,-45xm42,-319r42,0r0,45r-42,0r0,-45","w":186},"\u00cc":{"d":"24,-251r59,0r0,251r-59,0r0,-251xm12,-319r50,0r19,52r-33,0","w":106},"\u00cd":{"d":"24,-251r59,0r0,251r-59,0r0,-251xm44,-319r50,0r-36,52r-33,0","w":106},"\u00ce":{"d":"24,-251r59,0r0,251r-59,0r0,-251xm27,-319r52,0r28,52r-36,0r-18,-31r-18,31r-36,0","w":106},"\u00cf":{"d":"24,-251r59,0r0,251r-59,0r0,-251xm63,-319r42,0r0,45r-42,0r0,-45xm1,-319r42,0r0,45r-42,0r0,-45","w":106},"\u00d0":{"d":"163,-123v0,-55,-20,-90,-80,-84r0,58r37,0r0,41r-37,0r0,64v58,5,81,-25,80,-79xm225,-123v0,78,-43,123,-120,123r-81,0r0,-108r-24,0r0,-41r24,0r0,-102r89,0v76,2,112,48,112,128","w":240},"\u00d1":{"d":"23,-251r69,0r74,174r0,-174r51,0r0,251r-69,0r-73,-182r0,182r-52,0r0,-251xm98,-316v21,-1,46,28,52,0r26,0v0,25,-10,43,-34,44v-20,2,-45,-28,-52,0r-27,0v3,-22,11,-43,35,-44","w":240},"\u00d2":{"d":"123,-213v-40,0,-46,44,-46,87v0,43,6,88,46,88v41,0,47,-46,47,-88v0,-42,-6,-87,-47,-87xm123,4v-75,0,-106,-54,-106,-130v0,-75,31,-130,106,-130v75,0,107,54,107,130v0,76,-32,130,-107,130xm83,-319r50,0r19,52r-33,0","w":246,"k":{"\u00dd":13,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"\u0178":13,"Y":13,"X":6,"V":6,"T":6,"A":6,".":13,",":13}},"\u00d3":{"d":"123,-213v-40,0,-46,44,-46,87v0,43,6,88,46,88v41,0,47,-46,47,-88v0,-42,-6,-87,-47,-87xm123,4v-75,0,-106,-54,-106,-130v0,-75,31,-130,106,-130v75,0,107,54,107,130v0,76,-32,130,-107,130xm115,-319r50,0r-36,52r-33,0","w":246,"k":{"\u00dd":13,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"\u0178":13,"Y":13,"X":6,"V":6,"T":6,"A":6,".":13,",":13}},"\u00d4":{"d":"123,-213v-40,0,-46,44,-46,87v0,43,6,88,46,88v41,0,47,-46,47,-88v0,-42,-6,-87,-47,-87xm123,4v-75,0,-106,-54,-106,-130v0,-75,31,-130,106,-130v75,0,107,54,107,130v0,76,-32,130,-107,130xm98,-319r52,0r28,52r-36,0r-18,-31r-18,31r-36,0","w":246,"k":{"\u00dd":13,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"\u0178":13,"Y":13,"X":6,"V":6,"T":6,"A":6,".":13,",":13}},"\u00d5":{"d":"123,-213v-40,0,-46,44,-46,87v0,43,6,88,46,88v41,0,47,-46,47,-88v0,-42,-6,-87,-47,-87xm123,4v-75,0,-106,-54,-106,-130v0,-75,31,-130,106,-130v75,0,107,54,107,130v0,76,-32,130,-107,130xm102,-316v21,-1,46,28,52,0r26,0v0,25,-10,43,-34,44v-20,2,-45,-28,-52,0r-27,0v3,-22,11,-43,35,-44","w":246,"k":{"\u00dd":13,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"\u0178":13,"Y":13,"X":6,"V":6,"T":6,"A":6,".":13,",":13}},"\u00d6":{"d":"123,-213v-40,0,-46,44,-46,87v0,43,6,88,46,88v41,0,47,-46,47,-88v0,-42,-6,-87,-47,-87xm123,4v-75,0,-106,-54,-106,-130v0,-75,31,-130,106,-130v75,0,107,54,107,130v0,76,-32,130,-107,130xm134,-319r42,0r0,45r-42,0r0,-45xm72,-319r42,0r0,45r-42,0r0,-45","w":246,"k":{"\u00dd":13,"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"\u0178":13,"Y":13,"X":6,"V":6,"T":6,"A":6,".":13,",":13}},"\u00d7":{"d":"23,-149r27,-27r58,59r58,-59r27,27r-58,58r58,58r-27,27r-58,-58r-58,58r-27,-27r59,-58","w":216},"\u00d8":{"d":"123,4v-31,0,-54,-9,-69,-25r-24,29r-16,-13r26,-33v-47,-73,-25,-225,83,-218v30,2,55,10,70,26r23,-29r17,13r-26,33v46,75,25,217,-84,217xm123,-38v51,0,50,-76,43,-125r-79,99v7,13,17,26,36,26xm123,-213v-51,3,-49,74,-43,124r79,-98v-6,-14,-17,-26,-36,-26","w":246},"\u00d9":{"d":"113,4v-57,0,-92,-35,-92,-95r0,-160r59,0r0,169v1,25,8,41,33,41v25,0,33,-16,34,-41r0,-169r59,0r0,160v1,60,-35,95,-93,95xm72,-319r50,0r19,52r-33,0","w":226,"k":{"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"A":6,".":9,",":9}},"\u00da":{"d":"113,4v-57,0,-92,-35,-92,-95r0,-160r59,0r0,169v1,25,8,41,33,41v25,0,33,-16,34,-41r0,-169r59,0r0,160v1,60,-35,95,-93,95xm104,-319r50,0r-36,52r-33,0","w":226,"k":{"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"A":6,".":9,",":9}},"\u00db":{"d":"113,4v-57,0,-92,-35,-92,-95r0,-160r59,0r0,169v1,25,8,41,33,41v25,0,33,-16,34,-41r0,-169r59,0r0,160v1,60,-35,95,-93,95xm87,-319r52,0r28,52r-36,0r-18,-31r-18,31r-36,0","w":226,"k":{"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"A":6,".":9,",":9}},"\u00dc":{"d":"113,4v-57,0,-92,-35,-92,-95r0,-160r59,0r0,169v1,25,8,41,33,41v25,0,33,-16,34,-41r0,-169r59,0r0,160v1,60,-35,95,-93,95xm123,-319r42,0r0,45r-42,0r0,-45xm61,-319r42,0r0,45r-42,0r0,-45","w":226,"k":{"\u00c5":6,"\u00c4":6,"\u00c3":6,"\u00c2":6,"\u00c1":6,"\u00c0":6,"A":6,".":9,",":9}},"\u00dd":{"d":"77,-96r-76,-155r67,0r41,97r37,-97r66,0r-76,156r0,95r-59,0r0,-96xm98,-319r50,0r-36,52r-33,0","w":213,"k":{"\u0105":27,"\u00fc":13,"\u00f9":13,"\u00f6":27,"\u00f5":27,"\u00f4":27,"\u00f3":27,"\u00f2":27,"\u00eb":27,"\u00ea":27,"\u00e9":27,"\u00e8":27,"\u00e5":27,"\u00e4":27,"\u00e3":27,"\u00e2":27,"\u00e1":27,"\u00e0":27,"\u00d6":13,"\u00d5":13,"\u00d4":13,"\u00d3":13,"\u00d2":13,"\u00c5":27,"\u00c4":27,"\u00c3":27,"\u00c2":27,"\u00c1":27,"\u00c0":27,"\u0160":6,"u":13,"o":27,"e":27,"a":27,"S":6,"O":13,"A":27,";":13,":":13,".":27,"-":33,",":27}},"\u00de":{"d":"190,-141v0,61,-40,85,-107,79r0,62r-59,0r0,-251r59,0r0,30v66,-4,108,18,107,80xm131,-141v0,-30,-18,-39,-50,-36r0,72v30,3,50,-7,50,-36","w":200},"\u00df":{"d":"105,-235v-27,0,-27,26,-27,51r0,184r-56,0r0,-194v1,-52,30,-75,83,-80v86,-8,106,117,33,131v32,8,54,28,54,69v0,55,-40,87,-98,74r2,-41v23,11,39,-10,39,-38v0,-28,-11,-41,-38,-41r0,-41v26,1,36,-20,33,-47v-2,-14,-7,-27,-25,-27","w":206},"\u00e0":{"d":"83,-33v32,2,41,-22,39,-57v-31,-1,-57,3,-58,32v-1,15,7,24,19,25xm122,-117v2,-50,-62,-40,-87,-19r-2,-43v57,-19,140,-20,141,58r2,121r-52,0r-2,-26v-20,46,-115,34,-110,-28v4,-54,52,-65,110,-63xm56,-261r50,0r19,52r-33,0","w":193},"\u00e1":{"d":"83,-33v32,2,41,-22,39,-57v-31,-1,-57,3,-58,32v-1,15,7,24,19,25xm122,-117v2,-50,-62,-40,-87,-19r-2,-43v57,-19,140,-20,141,58r2,121r-52,0r-2,-26v-20,46,-115,34,-110,-28v4,-54,52,-65,110,-63xm88,-261r50,0r-36,52r-33,0","w":193},"\u00e2":{"d":"83,-33v32,2,41,-22,39,-57v-31,-1,-57,3,-58,32v-1,15,7,24,19,25xm122,-117v2,-50,-62,-40,-87,-19r-2,-43v57,-19,140,-20,141,58r2,121r-52,0r-2,-26v-20,46,-115,34,-110,-28v4,-54,52,-65,110,-63xm71,-261r52,0r28,52r-36,0r-18,-31r-18,31r-36,0","w":193},"\u00e3":{"d":"83,-33v32,2,41,-22,39,-57v-31,-1,-57,3,-58,32v-1,15,7,24,19,25xm122,-117v2,-50,-62,-40,-87,-19r-2,-43v57,-19,140,-20,141,58r2,121r-52,0r-2,-26v-20,46,-115,34,-110,-28v4,-54,52,-65,110,-63xm75,-258v21,-1,46,28,52,0r26,0v0,25,-10,43,-34,44v-20,2,-45,-28,-52,0r-27,0v3,-22,11,-43,35,-44","w":193},"\u00e4":{"d":"83,-33v32,2,41,-22,39,-57v-31,-1,-57,3,-58,32v-1,15,7,24,19,25xm122,-117v2,-50,-62,-40,-87,-19r-2,-43v57,-19,140,-20,141,58r2,121r-52,0r-2,-26v-20,46,-115,34,-110,-28v4,-54,52,-65,110,-63xm107,-263r42,0r0,45r-42,0r0,-45xm45,-263r42,0r0,45r-42,0r0,-45","w":193},"\u00e5":{"d":"100,-264v-11,0,-20,10,-20,21v0,11,9,20,20,20v11,0,21,-9,21,-20v0,-12,-9,-21,-21,-21xm140,-243v3,44,-63,52,-76,15v-10,-27,8,-56,36,-55v24,1,39,15,40,40xm83,-33v32,2,41,-22,39,-57v-31,-1,-57,3,-58,32v-1,15,7,24,19,25xm122,-117v2,-50,-62,-40,-87,-19r-2,-43v57,-19,140,-20,141,58r2,121r-52,0r-2,-26v-20,46,-115,34,-110,-28v4,-54,52,-65,110,-63","w":193},"\u00e6":{"d":"229,-113v6,-39,-41,-62,-56,-22v-2,6,-3,13,-3,22r59,0xm89,-33v28,-2,35,-26,34,-57v-30,-1,-56,4,-57,32v0,14,9,26,23,25xm270,-8v-42,17,-113,16,-134,-20v-21,47,-128,41,-123,-26v4,-55,52,-65,110,-63v2,-49,-61,-40,-87,-19r-3,-43v33,-10,91,-21,115,6v14,-12,35,-19,63,-17v53,5,72,47,69,111r-110,0v-3,51,70,50,99,28","w":293},"\u00e7":{"d":"103,47v-2,-20,-32,-3,-37,-16r18,-30v-48,-6,-69,-43,-72,-93v-4,-77,67,-117,138,-89r-2,42v-37,-19,-77,0,-77,47v0,46,42,63,79,44r2,43v-16,4,-31,7,-50,8r-11,17v21,-7,44,5,43,27v0,37,-55,38,-82,25r7,-16v10,4,45,14,44,-9","w":159},"\u00e8":{"d":"69,-79v-3,51,70,50,99,28r2,43v-73,29,-162,0,-155,-86v4,-57,30,-101,95,-96v53,4,72,48,70,111r-111,0xm98,-156v-23,0,-28,24,-29,46r59,0v0,-25,-6,-46,-30,-46xm56,-261r50,0r19,52r-33,0","w":193,"k":{"x":4,".":9,",":6}},"\u00e9":{"d":"69,-79v-3,51,70,50,99,28r2,43v-73,29,-162,0,-155,-86v4,-57,30,-101,95,-96v53,4,72,48,70,111r-111,0xm98,-156v-23,0,-28,24,-29,46r59,0v0,-25,-6,-46,-30,-46xm88,-261r50,0r-36,52r-33,0","w":193,"k":{"x":4,".":9,",":6}},"\u00ea":{"d":"69,-79v-3,51,70,50,99,28r2,43v-73,29,-162,0,-155,-86v4,-57,30,-101,95,-96v53,4,72,48,70,111r-111,0xm98,-156v-23,0,-28,24,-29,46r59,0v0,-25,-6,-46,-30,-46xm71,-261r52,0r28,52r-36,0r-18,-31r-18,31r-36,0","w":193,"k":{"x":4,".":9,",":6}},"\u00eb":{"d":"69,-79v-3,51,70,50,99,28r2,43v-73,29,-162,0,-155,-86v4,-57,30,-101,95,-96v53,4,72,48,70,111r-111,0xm98,-156v-23,0,-28,24,-29,46r59,0v0,-25,-6,-46,-30,-46xm107,-263r42,0r0,45r-42,0r0,-45xm45,-263r42,0r0,45r-42,0r0,-45","w":193,"k":{"x":4,".":9,",":6}},"\u00ec":{"d":"22,-188r56,0r0,188r-56,0r0,-188xm9,-261r50,0r19,52r-33,0","w":100},"\u00ed":{"d":"22,-188r56,0r0,188r-56,0r0,-188xm41,-261r50,0r-36,52r-33,0","w":100},"\u00ee":{"d":"22,-188r56,0r0,188r-56,0r0,-188xm24,-261r52,0r28,52r-36,0r-18,-31r-18,31r-36,0","w":100},"\u00ef":{"d":"22,-188r56,0r0,188r-56,0r0,-188xm60,-263r42,0r0,45r-42,0r0,-45xm-2,-263r42,0r0,45r-42,0r0,-45","w":100},"\u00f0":{"d":"124,-171v-6,-20,-16,-37,-29,-49r-39,18r-20,-19r37,-17v-9,-7,-19,-11,-30,-15r42,-21v14,3,22,7,33,14r31,-14r19,19r-28,13v63,49,88,248,-37,245v-59,-1,-84,-39,-88,-97v-5,-67,65,-126,109,-77xm103,-152v-41,2,-41,115,0,116v41,-2,41,-115,0,-116","w":206},"\u00f1":{"d":"125,-190v82,0,48,115,55,190r-57,0r0,-116v0,-20,-6,-29,-21,-29v-20,0,-26,18,-25,40r0,105r-57,0r-2,-188r52,0r2,32v9,-20,23,-34,53,-34xm78,-258v21,-1,46,28,52,0r26,0v0,25,-10,43,-34,44v-20,2,-45,-28,-52,0r-27,0v3,-22,11,-43,35,-44","w":200},"\u00f2":{"d":"103,-152v-41,2,-41,115,0,116v41,-2,41,-115,0,-116xm103,3v-59,0,-88,-39,-88,-97v0,-58,29,-96,88,-96v59,0,89,37,89,96v0,59,-30,97,-89,97xm62,-261r50,0r19,52r-33,0","w":206,"k":{"x":6,".":13,",":13}},"\u00f3":{"d":"103,-152v-41,2,-41,115,0,116v41,-2,41,-115,0,-116xm103,3v-59,0,-88,-39,-88,-97v0,-58,29,-96,88,-96v59,0,89,37,89,96v0,59,-30,97,-89,97xm94,-261r50,0r-36,52r-33,0","w":206,"k":{"x":6,".":13,",":13}},"\u00f4":{"d":"103,-152v-41,2,-41,115,0,116v41,-2,41,-115,0,-116xm103,3v-59,0,-88,-39,-88,-97v0,-58,29,-96,88,-96v59,0,89,37,89,96v0,59,-30,97,-89,97xm77,-261r52,0r28,52r-36,0r-18,-31r-18,31r-36,0","w":206,"k":{"x":6,".":13,",":13}},"\u00f5":{"d":"103,-152v-41,2,-41,115,0,116v41,-2,41,-115,0,-116xm103,3v-59,0,-88,-39,-88,-97v0,-58,29,-96,88,-96v59,0,89,37,89,96v0,59,-30,97,-89,97xm81,-258v21,-1,46,28,52,0r26,0v0,25,-10,43,-34,44v-20,2,-45,-28,-52,0r-27,0v3,-22,11,-43,35,-44","w":206,"k":{"x":6,".":13,",":13}},"\u00f6":{"d":"103,-152v-41,2,-41,115,0,116v41,-2,41,-115,0,-116xm103,3v-59,0,-88,-39,-88,-97v0,-58,29,-96,88,-96v59,0,89,37,89,96v0,59,-30,97,-89,97xm113,-263r42,0r0,45r-42,0r0,-45xm51,-263r42,0r0,45r-42,0r0,-45","w":206,"k":{"x":6,".":13,",":13}},"\u00f7":{"d":"136,-19v0,16,-12,27,-28,27v-16,0,-28,-11,-28,-27v0,-16,12,-28,28,-28v16,0,28,12,28,28xm80,-163v0,-16,12,-27,28,-27v16,0,28,11,28,27v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28xm17,-110r182,0r0,38r-182,0r0,-38","w":216},"\u00f8":{"d":"15,-94v-6,-81,82,-120,142,-80r16,-20r15,10r-18,22v44,54,20,173,-67,165v-21,-2,-39,-4,-52,-15r-18,23r-14,-11r19,-24v-15,-17,-21,-41,-23,-70xm103,-36v30,-1,31,-45,28,-77r-49,63v5,7,10,14,21,14xm103,-152v-31,1,-31,47,-27,80r50,-63v-5,-11,-13,-17,-23,-17","w":206},"\u00f9":{"d":"99,-42v20,0,24,-18,24,-40r0,-106r57,0r2,188r-52,0v-1,-10,1,-23,-2,-31v-9,20,-23,34,-53,34v-82,0,-48,-115,-55,-191r57,0r0,116v0,21,6,30,22,30xm59,-261r50,0r19,52r-33,0","w":200},"\u00fc":{"d":"99,-42v20,0,24,-18,24,-40r0,-106r57,0r2,188r-52,0v-1,-10,1,-23,-2,-31v-9,20,-23,34,-53,34v-82,0,-48,-115,-55,-191r57,0r0,116v0,21,6,30,22,30xm110,-263r42,0r0,45r-42,0r0,-45xm48,-263r42,0r0,45r-42,0r0,-45","w":200},"\u00fd":{"d":"21,33v24,12,48,-6,46,-33r-65,-188r59,0r35,128r34,-128r55,0r-66,205v-11,48,-47,74,-100,58xm85,-261r50,0r-36,52r-33,0","w":186,"k":{".":20,",":20}},"\u0105":{"d":"122,-117v2,-50,-62,-40,-87,-19r-2,-43v57,-19,140,-20,141,58r2,121v-30,-4,-39,19,-42,42v-2,18,17,20,33,17r5,16v-24,9,-67,8,-67,-25v0,-23,21,-38,34,-50r-15,0r-2,-26v-20,46,-115,34,-110,-28v4,-54,52,-65,110,-63xm83,-33v32,2,41,-22,39,-57v-31,-1,-57,3,-58,32v-1,15,7,24,19,25","w":193},"\u013e":{"d":"102,-261r49,0r-22,71r-33,0xm22,-270r56,0r0,270r-56,0r0,-270","w":138},"\u0142":{"d":"22,-82r-22,22r0,-42r22,-21r0,-147r56,0r0,90r22,-22r0,41r-22,22r0,139r-56,0r0,-82","w":100},"\u00a0":{"w":93,"k":{"\u00dd":13,"\u00c5":13,"\u00c4":13,"\u00c3":13,"\u00c2":13,"\u00c1":13,"\u00c0":13,"\u0178":13,"\u201c":13,"\u2018":13,"Y":13,"W":13,"V":13,"T":13,"A":13}}}});


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1981, 1982, 1983, 1989 and 1993, Linotype Library GmbH or its
 * affiliated Linotype-Hell companies. All rights reserved.
 * 
 * The digitally encoded machine readable software for producing the Typefaces
 * licensed to you is now the property of Heidelberger Druckmaschinen AG and its
 * licensors, and may not be reproduced, used, displayed, modified, disclosed or
 * transferred without the express written approval of Heidelberger Druckmaschinen
 * AG.
 * 
 * Copyright (c) 1988, 1990, 1993 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * "Helvetica Neue" is a trademark of Heidelberger Druckmaschinen AG, which may be
 * registered in certain jurisdictions, exclusivly licensed through Linotype
 * Library GmbH, a wholly owned subsidiary of Heidelberger Druckmaschinen AG.
 * 
 * Description:
 * Helvetica (Latin for Swiss) has the objective and functional style which was
 * associated with Swiss typography in the 1950s and 1960s. It is perfect for
 * international correspondence: no ornament, no emotion, just clear presentation
 * of information. Helvetica is still one of the best selling sans-serif fonts.
 * 
 * Vendor URL:
 * http://www.LinotypeLibrary.com/
 */
Cufon.registerFont({"w":172,"face":{"font-family":"Helvetica Neue Condensed","font-weight":700,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 0 8 6 0 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-119 -346 384 80.6542","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0008-U+FB02"},"glyphs":{" ":{"w":86},"\ufb01":{"d":"106,-261v-53,-8,-87,8,-79,67r-25,0r0,34r25,0r0,160r50,0r0,-160r29,0r0,-34r-29,0v-3,-24,3,-36,29,-32r0,-35xm125,-260r0,43r50,0r0,-43r-50,0xm125,-194r0,194r50,0r0,-194r-50,0","w":193},"\ufb02":{"d":"106,-261v-53,-8,-87,8,-79,67r-25,0r0,34r25,0r0,160r50,0r0,-160r29,0r0,-34r-29,0v-3,-24,3,-36,29,-32r0,-35xm125,-260r0,260r50,0r0,-260r-50,0","w":193},"\t":{"w":86},"\r":{"w":86},"!":{"d":"78,-48r-50,0r0,48r50,0r0,-48xm35,-72r36,0r7,-102r0,-83r-50,0v-1,65,2,126,7,185","w":106},"\"":{"d":"26,-257r0,116r45,0r0,-116r-45,0xm96,-257r0,116r45,0r0,-116r-45,0","w":166},"#":{"d":"66,-103r6,-44r35,0r-6,44r-35,0xm0,-103r0,40r27,0r-8,63r35,0r7,-63r35,0r-7,63r34,0r8,-63r31,0r0,-40r-26,0r6,-44r31,0r0,-40r-26,0r7,-63r-34,0r-8,63r-35,0r7,-63r-34,0r-8,63r-31,0r0,40r26,0r-6,44r-31,0"},"$":{"d":"3,-76v-2,53,21,78,71,80r0,31r23,0r0,-31v83,9,98,-120,28,-141r-28,-12r0,-68v13,4,16,18,17,35r49,0v2,-48,-23,-69,-66,-73r0,-25r-23,0r0,25v-80,-3,-92,127,-18,143r18,6r0,73v-18,-4,-22,-21,-21,-43r-50,0xm74,-217r0,58v-23,-10,-25,-52,0,-58xm97,-97v25,8,30,58,0,64r0,-64"},"%":{"d":"197,-261r-147,271r32,0r147,-271r-32,0xm64,-145v-19,0,-16,-20,-16,-43v0,-22,-1,-38,16,-40v17,2,16,19,16,40v0,22,2,43,-16,43xm64,-255v-44,0,-54,25,-54,69v0,44,11,69,54,69v42,0,54,-25,54,-69v0,-43,-10,-69,-54,-69xm216,-132v-44,0,-53,26,-54,68v0,42,10,68,54,68v44,0,54,-24,54,-68v0,-43,-10,-68,-54,-68xm216,-22v-17,-2,-14,-20,-15,-43v0,-21,-2,-40,15,-40v18,0,16,19,16,40v0,23,2,41,-16,43","w":280},"&":{"d":"83,4v26,0,51,-9,62,-24r14,20r56,0r-34,-48v14,-19,26,-44,26,-75r-45,0v1,14,-4,28,-9,38r-38,-52v25,-19,44,-31,44,-66v0,-38,-26,-52,-64,-54v-58,-4,-83,59,-48,100r9,14v-27,17,-52,37,-52,74v0,46,28,74,79,73xm123,-51v-18,27,-70,18,-69,-18v1,-22,11,-31,26,-44xm94,-225v41,2,17,49,-3,57v-8,-9,-20,-28,-19,-36v1,-12,9,-22,22,-21","w":213},"'":{"d":"24,-257r0,116r45,0r0,-116r-45,0","w":93},"(":{"d":"107,65v-54,-77,-54,-245,0,-322r-39,0v-64,86,-65,237,0,322r39,0","w":106},")":{"d":"38,65v66,-85,65,-237,0,-322r-38,0v53,79,54,243,0,322r38,0","w":106},"*":{"d":"85,-257r-30,0r0,46r-43,-14r-9,28r43,14r-27,38r24,17r27,-38r27,38r24,-17r-27,-38r44,-14r-9,-28r-44,14r0,-46","w":140},"+":{"d":"86,-69r0,69r44,0r0,-69r69,0r0,-44r-69,0r0,-69r-44,0r0,69r-69,0r0,44r69,0","w":216},",":{"d":"19,58v53,-2,49,-59,48,-114r-48,0r0,56r19,0v1,16,-6,31,-19,33r0,25","w":86},"-":{"d":"117,-125r-101,0r0,42r101,0r0,-42","w":133},".":{"d":"67,-56r-48,0r0,56r48,0r0,-56","w":86},"\/":{"d":"80,-262r-80,266r39,0r82,-266r-41,0","w":119},"0":{"d":"86,-255v-74,0,-80,64,-80,136v0,71,9,123,80,123v74,0,80,-61,80,-135v0,-73,-9,-124,-80,-124xm86,-29v-39,-4,-28,-60,-28,-106v0,-37,-7,-86,28,-86v41,0,28,61,28,107v0,39,7,82,-28,85"},"1":{"d":"79,-255v-6,30,-28,41,-64,41r0,34r51,0r0,180r51,0r0,-255r-38,0"},"2":{"d":"56,-171v0,-26,3,-50,29,-50v42,0,24,79,-1,90v-36,34,-77,63,-78,131r157,0r0,-40r-96,0v21,-56,96,-67,95,-145v-1,-46,-26,-70,-76,-70v-56,0,-82,28,-80,84r50,0"},"3":{"d":"85,-29v-25,0,-27,-20,-28,-46v-16,2,-38,-4,-50,2v1,49,24,77,74,77v56,1,85,-25,85,-76v0,-35,-16,-54,-46,-61v24,-5,39,-26,39,-56v0,-71,-90,-82,-129,-47v-13,12,-19,31,-19,56r47,0v0,-23,4,-41,27,-41v18,1,24,12,24,33v0,30,-13,45,-46,41r0,34v37,-4,51,11,51,43v0,24,-5,42,-29,41"},"4":{"d":"5,-95r0,42r91,0r0,53r47,0r0,-53r25,0r0,-40r-25,0r0,-162r-53,0xm95,-190v4,29,0,66,1,97r-51,0"},"5":{"d":"101,-171v-22,1,-37,6,-47,19r5,-58r94,0r0,-40r-133,0r-9,139r46,0v2,-14,10,-24,25,-24v28,0,25,25,30,54v8,51,-52,68,-55,22v0,-5,-1,-10,-1,-14r-50,0v-1,51,24,76,76,77v60,1,81,-33,81,-93v0,-47,-15,-82,-62,-82"},"6":{"d":"88,-29v-25,-1,-29,-24,-29,-50v1,-29,4,-48,29,-48v25,0,28,19,28,48v0,26,-2,50,-28,50xm89,-221v19,0,22,12,23,31r50,0v-2,-43,-27,-64,-71,-65v-79,-1,-87,64,-86,141v0,66,12,119,80,118v59,-1,83,-31,83,-90v0,-46,-16,-80,-63,-80v-24,-1,-38,10,-48,22v1,-36,-3,-76,32,-77"},"7":{"d":"90,0v10,-84,36,-154,75,-210r0,-40r-157,0r0,45r107,0v-40,56,-69,122,-79,205r54,0"},"8":{"d":"86,-29v-24,0,-29,-20,-29,-44v0,-25,6,-44,29,-44v24,0,31,19,30,44v0,25,-5,44,-30,44xm86,-150v-18,0,-25,-15,-25,-36v0,-23,8,-35,25,-35v17,0,26,12,26,35v1,21,-8,36,-26,36xm48,-136v-25,8,-44,31,-43,64v1,49,28,76,81,76v54,0,81,-26,82,-76v1,-33,-17,-57,-43,-64v22,-6,35,-23,36,-49v0,-49,-28,-70,-75,-70v-46,0,-74,21,-74,70v0,28,14,42,36,49"},"9":{"d":"85,-122v-25,0,-28,-19,-28,-49v0,-26,2,-50,28,-50v26,0,28,24,28,50v0,30,-3,49,-28,49xm84,-29v-19,0,-22,-11,-23,-30r-50,0v0,44,28,62,71,63v80,2,86,-64,86,-140v0,-66,-13,-120,-81,-119v-58,0,-81,33,-82,91v0,47,17,79,62,80v24,1,39,-10,49,-22v-1,36,3,77,-32,77"},":":{"d":"19,-188r0,57r48,0r0,-57r-48,0xm19,-56r0,56r48,0r0,-56r-48,0","w":86},";":{"d":"67,-188r-48,0r0,57r48,0r0,-57xm19,58v53,-2,49,-59,48,-114r-48,0r0,56r19,0v1,16,-6,31,-19,33r0,25","w":86},"<":{"d":"17,-110r0,38r182,74r0,-44r-122,-49r122,-49r0,-45","w":216},"=":{"d":"17,-74r0,44r182,0r0,-44r-182,0xm17,-153r0,45r182,0r0,-45r-182,0","w":216},">":{"d":"17,-42r0,44r182,-74r0,-38r-182,-75r0,45r122,49","w":216},"?":{"d":"108,-48r-50,0r0,48r50,0r0,-48xm84,-260v-49,2,-74,30,-71,83r47,0v-1,-26,3,-49,26,-49v34,0,28,52,11,69v-21,22,-40,41,-36,86r44,0v-1,-56,55,-61,55,-119v0,-44,-29,-71,-76,-70","w":173},"@":{"d":"67,-111v-4,57,65,78,97,42v1,13,9,19,23,19v55,0,91,-42,91,-103v0,-73,-60,-109,-134,-109v-81,0,-128,54,-134,133v-9,133,187,177,253,77r-32,0v-63,46,-185,17,-180,-76v3,-60,39,-100,99,-100v54,0,96,29,96,83v0,30,-13,57,-38,62v-11,-1,-8,-11,-5,-22r21,-90r-31,0r-5,19v-9,-14,-23,-24,-44,-24v-50,0,-74,40,-77,89xm175,-134v0,42,-67,67,-67,17v0,-25,15,-45,40,-45v15,0,27,12,27,28","w":288},"A":{"d":"125,-97r-25,-115r-25,115r50,0xm132,-257r68,257r-54,0r-12,-54r-68,0r-12,54r-54,0r68,-257r64,0","w":200},"B":{"d":"132,-77v0,36,-26,41,-62,39r0,-78v36,-2,62,4,62,39xm126,-185v0,31,-24,34,-56,33r0,-67v32,-1,56,2,56,34xm139,-135v62,-22,47,-122,-34,-122r-87,0r0,257v82,1,172,10,168,-75v-1,-34,-18,-56,-47,-60","w":200},"C":{"d":"97,-224v28,0,29,22,31,54r52,0v1,-56,-21,-92,-80,-92v-75,0,-87,57,-87,133v0,77,10,133,87,133v63,0,82,-40,82,-102r-52,0v-2,33,-1,65,-32,65v-38,0,-34,-48,-34,-92v0,-44,-6,-99,33,-99","w":193},"D":{"d":"139,-131v0,58,-2,102,-67,93r0,-181v62,-8,67,33,67,88xm190,-132v0,-72,-13,-125,-85,-125r-84,0r0,257r81,0v75,1,88,-56,88,-132","w":206},"E":{"d":"162,-257r-144,0r0,257r147,0r0,-42r-95,0r0,-70r86,0r0,-42r-86,0r0,-61r92,0r0,-42","w":173},"F":{"d":"18,-257r0,257r52,0r0,-112r86,0r0,-42r-86,0r0,-61r92,0r0,-42r-144,0","w":166},"G":{"d":"103,-224v22,1,27,22,29,43r50,0v-1,-53,-24,-81,-80,-81v-74,0,-87,58,-87,131v0,72,5,136,77,135v28,1,42,-11,55,-28r0,24r38,0r0,-139r-84,0r0,39r34,0v3,35,-3,64,-32,67v-39,-5,-36,-58,-36,-101v0,-49,2,-84,36,-90","w":200},"H":{"d":"18,-257r0,257r52,0r0,-114r60,0r0,114r52,0r0,-257r-52,0r0,98r-60,0r0,-98r-52,0","w":200},"I":{"d":"21,0r51,0r0,-257r-51,0r0,257","w":92},"J":{"d":"73,4v52,-1,79,-22,78,-76r0,-185r-52,0r0,184v-1,23,-2,39,-23,40v-24,0,-23,-22,-23,-48r-48,0v-2,53,16,86,68,85","w":166},"K":{"d":"70,-257r-52,0r0,257r52,0r0,-76r19,-29r53,105r58,0r-78,-147r70,-110r-56,0r-66,103r0,-103","w":193},"L":{"d":"18,0r144,0r0,-42r-92,0r0,-215r-52,0r0,257","w":166},"M":{"d":"19,-257r0,257r48,0r0,-205r46,205r40,0r47,-205r0,205r47,0r0,-257r-76,0r-38,181r-37,-181r-77,0","w":266},"N":{"d":"78,-257r-60,0r0,257r48,0r0,-180r64,180r59,0r0,-257r-48,0r-1,176","w":206},"O":{"d":"100,-33v-42,0,-36,-52,-36,-96v0,-43,-5,-95,36,-95v42,0,36,52,36,95v0,44,6,96,-36,96xm100,-262v-75,0,-87,57,-87,133v0,77,10,133,87,133v78,0,88,-58,88,-133v1,-75,-12,-133,-88,-133","w":200},"P":{"d":"127,-179v0,34,-23,41,-57,38r0,-78v36,-3,57,5,57,40xm179,-180v0,-48,-23,-77,-70,-77r-91,0r0,257r52,0r0,-103v67,5,110,-14,109,-77","w":186},"Q":{"d":"100,-33v-42,0,-36,-52,-36,-96v0,-43,-5,-95,36,-95v42,0,36,52,36,95v0,44,6,96,-36,96xm13,-129v0,77,10,135,87,133v13,0,24,-1,34,-4r31,31r30,-28r-27,-27v18,-25,19,-63,20,-105v1,-75,-12,-133,-88,-133v-75,0,-87,57,-87,133","w":200},"R":{"d":"182,-191v0,-81,-88,-65,-164,-66r0,257r52,0r0,-109v32,-2,61,1,58,33v3,25,-3,58,8,76v17,-2,42,4,56,-2v-27,-24,11,-126,-53,-125v30,-5,43,-29,43,-64xm130,-183v0,35,-25,40,-60,38r0,-74v34,-2,60,2,60,36","w":200},"S":{"d":"94,-33v-28,0,-36,-17,-34,-47r-52,0v-2,58,24,84,82,84v70,0,111,-56,79,-117v-17,-32,-76,-36,-101,-61v-11,-20,-3,-50,25,-50v22,0,27,17,28,38r50,0v2,-53,-29,-71,-80,-76v-82,-8,-105,107,-42,141v27,14,77,13,76,56v0,20,-14,31,-31,32","w":186},"T":{"d":"168,-257r-164,0r0,42r56,0r0,215r52,0r0,-215r56,0r0,-42"},"U":{"d":"97,-33v-24,0,-31,-19,-30,-45r0,-179r-52,0r0,179v-1,56,27,82,82,82v54,0,82,-27,82,-82r0,-179r-52,0r0,179v1,26,-6,45,-30,45","w":193},"V":{"d":"57,-257r-56,0r59,257r67,0r59,-257r-54,0r-39,190","w":186},"W":{"d":"3,-257r47,257r58,0r29,-186r29,186r58,0r47,-257r-50,0r-29,190r-30,-190r-50,0r-31,190r-28,-190r-50,0","w":273},"X":{"d":"7,-257r59,127r-64,130r57,0r37,-87r37,87r58,0r-64,-130r60,-127r-57,0r-32,83r-34,-83r-57,0","w":193},"Y":{"d":"59,-257r-58,0r67,156r0,101r52,0r0,-101r66,-156r-56,0r-37,99","w":187},"Z":{"d":"9,-38r0,38r156,0r0,-42r-98,0r96,-176r0,-39r-148,0r0,42r88,0","w":173},"[":{"d":"29,-257r0,322r82,0r0,-36r-38,0r0,-250r38,0r0,-36r-82,0","w":113},"\\":{"d":"0,-262r80,266r41,0r-82,-266r-39,0","w":119},"]":{"d":"2,29r0,36r83,0r0,-322r-83,0r0,36r38,0r0,250r-38,0","w":113},"^":{"d":"20,-111r45,0r43,-89r43,89r45,0r-68,-139r-40,0","w":216},"_":{"d":"0,44r180,0r0,-18r-180,0r0,18","w":180},"`":{"d":"30,-216r33,0r-19,-52r-49,0","w":79},"a":{"d":"76,-29v-21,0,-22,-35,-12,-47v8,-11,32,-11,43,-21v1,34,3,68,-31,68xm84,-199v-43,0,-69,20,-68,65r45,0v-1,-18,6,-31,23,-31v29,0,31,42,3,47v-40,7,-79,17,-77,68v2,30,14,54,47,54v27,0,37,-7,50,-24v2,7,2,14,6,20r48,0v-13,-35,-7,-93,-7,-139v0,-46,-25,-59,-70,-60","w":173},"b":{"d":"109,-199v-21,-1,-32,11,-43,23r0,-81r-49,0r0,257r47,0v1,-6,-2,-16,1,-21v10,16,20,26,44,25v50,-2,59,-41,59,-101v0,-61,-10,-100,-59,-102xm93,-33v-28,0,-27,-30,-27,-64v0,-34,-1,-64,27,-64v28,0,25,31,25,64v0,34,3,64,-25,64","w":180},"c":{"d":"87,-163v19,0,23,19,23,39r47,0v1,-46,-23,-75,-69,-75v-60,0,-79,40,-79,102v0,61,15,102,75,101v52,0,72,-27,73,-78r-47,0v0,26,-4,45,-24,45v-30,0,-27,-35,-27,-67v0,-32,-2,-67,28,-67","w":166},"d":{"d":"71,4v25,1,33,-10,45,-25r0,21r47,0r0,-257r-49,0v-1,26,2,57,-1,81v-9,-14,-22,-23,-42,-23v-49,0,-59,42,-59,102v0,60,9,99,59,101xm87,-33v-28,0,-25,-31,-25,-64v0,-34,-3,-64,25,-64v28,0,27,30,27,64v0,34,1,64,-27,64","w":180},"e":{"d":"59,-119v-7,-35,26,-62,46,-34v3,9,4,22,5,34r-51,0xm84,-29v-26,0,-25,-32,-25,-60r98,0v2,-63,-9,-110,-71,-110v-60,0,-77,41,-77,100v-1,59,12,104,75,103v48,-1,67,-24,70,-69r-44,0v-2,20,-7,36,-26,36","w":166},"f":{"d":"106,-261v-53,-8,-87,8,-79,67r-25,0r0,34r25,0r0,160r50,0r0,-160r29,0r0,-34r-29,0v-3,-24,3,-36,29,-32r0,-35","w":106},"g":{"d":"87,-40v-23,0,-25,-27,-25,-51v0,-33,-4,-67,26,-70v27,3,25,28,26,65v0,27,-2,56,-27,56xm81,65v56,-1,81,-22,81,-75r0,-184r-48,0v-1,7,2,17,-1,22v-8,-17,-20,-27,-40,-27v-52,0,-60,48,-60,99v0,59,11,98,59,98v19,0,32,-13,42,-24v0,29,3,59,-27,59v-14,0,-24,-8,-24,-20r-48,0v0,37,26,53,66,52","w":180},"h":{"d":"163,-144v9,-63,-73,-70,-97,-30r0,-83r-49,0r0,257r49,0r0,-129v0,-21,9,-32,27,-32v17,0,21,9,21,27r0,134r49,0r0,-144","w":180},"i":{"d":"18,-260r0,43r50,0r0,-43r-50,0xm18,-194r0,194r50,0r0,-194r-50,0","w":86},"j":{"d":"18,-260r0,43r50,0r0,-43r-50,0xm-8,62v46,3,76,-6,76,-50r0,-206r-50,0r0,190v0,22,-3,32,-26,30r0,36","w":86},"k":{"d":"68,-257r-50,0r0,257r50,0r0,-57r18,-23r41,80r55,0r-64,-117r56,-77r-55,0r-51,73r0,-136","w":180},"l":{"d":"18,-257r0,257r50,0r0,-257r-50,0","w":86},"m":{"d":"159,-168v-9,-40,-77,-38,-95,-6r0,-20r-47,0r0,194r49,0r0,-127v-1,-22,8,-34,26,-34v15,0,20,10,20,26r0,135r49,0r0,-127v-1,-22,8,-34,26,-34v15,0,20,10,20,26r0,135r49,0r0,-141v12,-67,-82,-74,-97,-27","w":272},"n":{"d":"163,-144v10,-65,-79,-69,-99,-27r0,-23r-47,0r0,194r49,0r0,-129v0,-21,9,-32,27,-32v17,0,21,9,21,27r0,134r49,0r0,-144","w":180},"o":{"d":"86,-29v-36,-4,-26,-56,-26,-95v0,-20,5,-41,26,-41v27,0,27,32,27,68v0,37,0,64,-27,68xm86,-199v-59,1,-77,41,-76,102v0,60,14,101,76,101v61,0,77,-40,77,-101v0,-61,-14,-103,-77,-102"},"p":{"d":"109,-199v-25,-1,-33,11,-45,26r0,-21r-47,0r0,256r49,0v1,-26,-2,-56,1,-80v9,15,21,22,42,22v50,0,59,-41,59,-101v0,-61,-10,-99,-59,-102xm93,-33v-28,0,-27,-30,-27,-64v0,-34,-1,-64,27,-64v28,0,25,31,25,64v0,34,3,64,-25,64","w":180},"q":{"d":"71,4v22,1,32,-9,43,-22r0,80r49,0r0,-256r-47,0v-1,6,2,16,-1,21v-10,-17,-20,-26,-44,-26v-49,0,-59,42,-59,102v0,60,9,99,59,101xm87,-161v28,0,27,30,27,64v0,34,1,64,-27,64v-28,0,-25,-31,-25,-64v0,-34,-3,-64,25,-64","w":180},"r":{"d":"118,-198v-28,-6,-42,14,-54,30r0,-26r-47,0r0,194r49,0r0,-116v-1,-29,24,-38,52,-34r0,-48","w":119},"s":{"d":"79,-29v-18,0,-27,-14,-26,-34r-45,0v-2,48,23,69,72,67v75,13,100,-96,29,-115v-20,-6,-50,-9,-52,-33v-1,-14,12,-21,24,-21v18,0,21,11,22,29r44,0v2,-44,-22,-59,-66,-63v-75,-7,-96,91,-30,113v20,7,51,8,53,34v0,15,-10,23,-25,23","w":159},"t":{"d":"106,-35v-17,3,-29,1,-29,-20r0,-105r29,0r0,-34r-29,0r0,-55r-50,0r0,55r-25,0r0,34r25,0v7,76,-35,185,79,160r0,-35","w":106},"u":{"d":"17,-50v-10,65,79,68,99,27r0,23r47,0r0,-194r-49,0r0,129v0,21,-9,32,-27,32v-17,0,-21,-9,-21,-27r0,-134r-49,0r0,144","w":180},"v":{"d":"108,-194r-27,139r-27,-139r-52,0r50,194r57,0r49,-194r-50,0","w":159},"w":{"d":"3,-194r42,194r57,0r25,-138r26,138r56,0r42,-194r-48,0r-24,138r-25,-138r-54,0r-25,138r-23,-138r-49,0","w":253},"x":{"d":"110,-194r-27,59r-26,-59r-52,0r50,94r-52,100r51,0r29,-63r29,63r52,0r-53,-100r51,-94r-52,0","w":166},"y":{"d":"56,0v-1,20,-16,30,-39,25r0,37v43,2,72,-3,82,-36v21,-68,39,-149,59,-220r-50,0r-26,134r-28,-134r-52,0","w":159},"z":{"d":"9,-38r0,38r136,0r0,-40r-78,0r78,-116r0,-38r-133,0r0,41r74,0","w":153},"{":{"d":"72,-257v-73,1,-5,140,-61,147r0,29v56,8,-13,146,61,146r32,0r0,-36v-57,6,6,-111,-51,-125v34,-5,25,-59,26,-99v0,-17,5,-30,25,-26r0,-36r-32,0","w":113},"|":{"d":"18,-262r0,266r44,0r0,-266r-44,0","w":79},"}":{"d":"60,-96v-57,11,9,124,-51,125r0,36v43,4,70,-6,70,-48v0,-38,-11,-95,24,-98r0,-29v-57,-6,13,-146,-62,-147r-32,0r0,36v59,-8,-8,112,51,125","w":113},"~":{"d":"70,-81v39,10,98,48,121,-6r-13,-39v-5,12,-17,23,-32,25v-32,-3,-70,-43,-104,-16v-7,6,-12,13,-17,22r13,38v6,-11,17,-22,32,-24","w":216},"\u00c4":{"d":"111,-318r0,43r40,0r0,-43r-40,0xm49,-318r0,43r40,0r0,-43r-40,0xm75,-97r25,-115r25,115r-50,0xm68,-257r-68,257r54,0r12,-54r68,0r12,54r54,0r-68,-257r-64,0","w":200},"\u00c5":{"d":"100,-284v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-9,21,-21,21xm100,-346v-25,0,-41,16,-41,41v0,25,16,41,41,41v25,0,41,-16,41,-41v0,-25,-16,-41,-41,-41xm75,-97r25,-115r25,115r-50,0xm68,-257r-68,257r54,0r12,-54r68,0r12,54r54,0r-68,-257r-64,0","w":200},"\u00c7":{"d":"13,-129v0,74,10,132,81,133v-4,12,-25,27,-9,35v11,-3,29,-4,28,10v-1,18,-32,14,-43,7r-7,17v28,12,84,11,82,-27v-1,-21,-21,-30,-42,-25r10,-17v53,-4,69,-46,69,-102r-52,0v-2,33,-1,65,-32,65v-38,0,-34,-48,-34,-92v0,-44,-6,-99,33,-99v28,0,29,22,31,54r52,0v1,-56,-21,-92,-80,-92v-75,0,-87,57,-87,133","w":193},"\u00c9":{"d":"87,-324r-19,52r34,0r35,-52r-50,0xm162,-257r-144,0r0,257r147,0r0,-42r-95,0r0,-70r86,0r0,-42r-86,0r0,-61r92,0r0,-42","w":173},"\u00d1":{"d":"134,-321v-8,34,-56,-21,-76,12v-5,9,-9,20,-11,34r25,0v12,-36,57,23,77,-14v5,-9,10,-19,11,-32r-26,0xm78,-257r-60,0r0,257r48,0r0,-180r64,180r59,0r0,-257r-48,0r-1,176","w":206},"\u00d6":{"d":"111,-318r0,43r40,0r0,-43r-40,0xm49,-318r0,43r40,0r0,-43r-40,0xm100,-33v-42,0,-36,-52,-36,-96v0,-43,-5,-95,36,-95v42,0,36,52,36,95v0,44,6,96,-36,96xm100,-262v-75,0,-87,57,-87,133v0,77,10,133,87,133v78,0,88,-58,88,-133v1,-75,-12,-133,-88,-133","w":200},"\u00dc":{"d":"108,-318r0,43r40,0r0,-43r-40,0xm46,-318r0,43r40,0r0,-43r-40,0xm97,-33v-24,0,-31,-19,-30,-45r0,-179r-52,0r0,179v-1,56,27,82,82,82v54,0,82,-27,82,-82r0,-179r-52,0r0,179v1,26,-6,45,-30,45","w":193},"\u00e1":{"d":"83,-268r-20,52r34,0r35,-52r-49,0xm76,-29v-21,0,-22,-35,-12,-47v8,-11,32,-11,43,-21v1,34,3,68,-31,68xm84,-199v-43,0,-69,20,-68,65r45,0v-1,-18,6,-31,23,-31v29,0,31,42,3,47v-40,7,-79,17,-77,68v2,30,14,54,47,54v27,0,37,-7,50,-24v2,7,2,14,6,20r48,0v-13,-35,-7,-93,-7,-139v0,-46,-25,-59,-70,-60","w":173},"\u00e0":{"d":"76,-216r34,0r-19,-52r-50,0xm76,-29v-21,0,-22,-35,-12,-47v8,-11,32,-11,43,-21v1,34,3,68,-31,68xm84,-199v-43,0,-69,20,-68,65r45,0v-1,-18,6,-31,23,-31v29,0,31,42,3,47v-40,7,-79,17,-77,68v2,30,14,54,47,54v27,0,37,-7,50,-24v2,7,2,14,6,20r48,0v-13,-35,-7,-93,-7,-139v0,-46,-25,-59,-70,-60","w":173},"\u00e2":{"d":"61,-268r-28,52r36,0r17,-31r17,31r38,0r-28,-52r-52,0xm76,-29v-21,0,-22,-35,-12,-47v8,-11,32,-11,43,-21v1,34,3,68,-31,68xm84,-199v-43,0,-69,20,-68,65r45,0v-1,-18,6,-31,23,-31v29,0,31,42,3,47v-40,7,-79,17,-77,68v2,30,14,54,47,54v27,0,37,-7,50,-24v2,7,2,14,6,20r48,0v-13,-35,-7,-93,-7,-139v0,-46,-25,-59,-70,-60","w":173},"\u00e4":{"d":"98,-262r0,42r40,0r0,-42r-40,0xm36,-262r0,42r40,0r0,-42r-40,0xm76,-29v-21,0,-22,-35,-12,-47v8,-11,32,-11,43,-21v1,34,3,68,-31,68xm84,-199v-43,0,-69,20,-68,65r45,0v-1,-18,6,-31,23,-31v29,0,31,42,3,47v-40,7,-79,17,-77,68v2,30,14,54,47,54v27,0,37,-7,50,-24v2,7,2,14,6,20r48,0v-13,-35,-7,-93,-7,-139v0,-46,-25,-59,-70,-60","w":173},"\u00e3":{"d":"117,-265v-8,35,-55,-21,-75,12v-5,9,-10,19,-12,33r25,0v12,-37,56,24,77,-13v5,-9,10,-19,11,-32r-26,0xm76,-29v-21,0,-22,-35,-12,-47v8,-11,32,-11,43,-21v1,34,3,68,-31,68xm84,-199v-43,0,-69,20,-68,65r45,0v-1,-18,6,-31,23,-31v29,0,31,42,3,47v-40,7,-79,17,-77,68v2,30,14,54,47,54v27,0,37,-7,50,-24v2,7,2,14,6,20r48,0v-13,-35,-7,-93,-7,-139v0,-46,-25,-59,-70,-60","w":173},"\u00e5":{"d":"87,-230v-11,0,-21,-9,-21,-21v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-10,21,-21,21xm87,-292v-25,0,-41,16,-41,41v0,25,16,41,41,41v25,0,41,-16,41,-41v0,-25,-16,-41,-41,-41xm76,-29v-21,0,-22,-35,-12,-47v8,-11,32,-11,43,-21v1,34,3,68,-31,68xm84,-199v-43,0,-69,20,-68,65r45,0v-1,-18,6,-31,23,-31v29,0,31,42,3,47v-40,7,-79,17,-77,68v2,30,14,54,47,54v27,0,37,-7,50,-24v2,7,2,14,6,20r48,0v-13,-35,-7,-93,-7,-139v0,-46,-25,-59,-70,-60","w":173},"\u00e7":{"d":"98,49v0,17,-31,14,-43,7r-7,17v27,12,81,12,81,-27v0,-23,-21,-30,-42,-25r11,-18v42,-4,59,-30,59,-77r-47,0v0,26,-4,45,-24,45v-30,0,-27,-35,-27,-67v0,-32,-2,-67,28,-67v19,0,23,19,23,39r47,0v1,-46,-23,-75,-69,-75v-60,0,-79,40,-79,102v1,58,13,100,69,101v-4,12,-23,26,-9,35v12,-3,29,-3,29,10","w":166},"\u00e9":{"d":"80,-268r-20,52r34,0r35,-52r-49,0xm59,-119v-7,-35,26,-62,46,-34v3,9,4,22,5,34r-51,0xm84,-29v-26,0,-25,-32,-25,-60r98,0v2,-63,-9,-110,-71,-110v-60,0,-77,41,-77,100v-1,59,12,104,75,103v48,-1,67,-24,70,-69r-44,0v-2,20,-7,36,-26,36","w":166},"\u00e8":{"d":"73,-216r34,0r-20,-52r-49,0xm59,-119v-7,-35,26,-62,46,-34v3,9,4,22,5,34r-51,0xm84,-29v-26,0,-25,-32,-25,-60r98,0v2,-63,-9,-110,-71,-110v-60,0,-77,41,-77,100v-1,59,12,104,75,103v48,-1,67,-24,70,-69r-44,0v-2,20,-7,36,-26,36","w":166},"\u00ea":{"d":"58,-268r-28,52r36,0r17,-31r16,31r39,0r-29,-52r-51,0xm59,-119v-7,-35,26,-62,46,-34v3,9,4,22,5,34r-51,0xm84,-29v-26,0,-25,-32,-25,-60r98,0v2,-63,-9,-110,-71,-110v-60,0,-77,41,-77,100v-1,59,12,104,75,103v48,-1,67,-24,70,-69r-44,0v-2,20,-7,36,-26,36","w":166},"\u00eb":{"d":"94,-262r0,42r41,0r0,-42r-41,0xm32,-262r0,42r41,0r0,-42r-41,0xm59,-119v-7,-35,26,-62,46,-34v3,9,4,22,5,34r-51,0xm84,-29v-26,0,-25,-32,-25,-60r98,0v2,-63,-9,-110,-71,-110v-60,0,-77,41,-77,100v-1,59,12,104,75,103v48,-1,67,-24,70,-69r-44,0v-2,20,-7,36,-26,36","w":166},"\u00ed":{"d":"39,-268r-19,52r34,0r35,-52r-50,0xm18,-194r0,194r50,0r0,-194r-50,0","w":86},"\u00ec":{"d":"33,-216r34,0r-20,-52r-48,0xm18,-194r0,194r50,0r0,-194r-50,0","w":86},"\u00ee":{"d":"17,-268r-27,52r35,0r17,-31r17,31r38,0r-28,-52r-52,0xm18,-194r0,194r50,0r0,-194r-50,0","w":86},"\u00ef":{"d":"54,-262r0,42r40,0r0,-42r-40,0xm-7,-262r0,42r39,0r0,-42r-39,0xm18,-194r0,194r50,0r0,-194r-50,0","w":86},"\u00f1":{"d":"121,-265v-9,34,-56,-21,-76,12v-5,9,-10,19,-12,33r26,0v12,-37,56,24,77,-13v5,-9,10,-19,11,-32r-26,0xm163,-144v10,-65,-79,-69,-99,-27r0,-23r-47,0r0,194r49,0r0,-129v0,-21,9,-32,27,-32v17,0,21,9,21,27r0,134r49,0r0,-144","w":180},"\u00f3":{"d":"82,-268r-19,52r34,0r35,-52r-50,0xm86,-29v-36,-4,-26,-56,-26,-95v0,-20,5,-41,26,-41v27,0,27,32,27,68v0,37,0,64,-27,68xm86,-199v-59,1,-77,41,-76,102v0,60,14,101,76,101v61,0,77,-40,77,-101v0,-61,-14,-103,-77,-102"},"\u00f2":{"d":"76,-216r34,0r-20,-52r-49,0xm86,-29v-36,-4,-26,-56,-26,-95v0,-20,5,-41,26,-41v27,0,27,32,27,68v0,37,0,64,-27,68xm86,-199v-59,1,-77,41,-76,102v0,60,14,101,76,101v61,0,77,-40,77,-101v0,-61,-14,-103,-77,-102"},"\u00f4":{"d":"60,-268r-28,52r36,0r18,-31r16,31r38,0r-28,-52r-52,0xm86,-29v-36,-4,-26,-56,-26,-95v0,-20,5,-41,26,-41v27,0,27,32,27,68v0,37,0,64,-27,68xm86,-199v-59,1,-77,41,-76,102v0,60,14,101,76,101v61,0,77,-40,77,-101v0,-61,-14,-103,-77,-102"},"\u00f6":{"d":"97,-262r0,42r41,0r0,-42r-41,0xm35,-262r0,42r41,0r0,-42r-41,0xm86,-29v-36,-4,-26,-56,-26,-95v0,-20,5,-41,26,-41v27,0,27,32,27,68v0,37,0,64,-27,68xm86,-199v-59,1,-77,41,-76,102v0,60,14,101,76,101v61,0,77,-40,77,-101v0,-61,-14,-103,-77,-102"},"\u00f5":{"d":"117,-265v-9,34,-55,-21,-76,12v-5,8,-9,19,-11,33r25,0v12,-37,56,24,77,-13v5,-9,10,-19,11,-32r-26,0xm86,-29v-36,-4,-26,-56,-26,-95v0,-20,5,-41,26,-41v27,0,27,32,27,68v0,37,0,64,-27,68xm86,-199v-59,1,-77,41,-76,102v0,60,14,101,76,101v61,0,77,-40,77,-101v0,-61,-14,-103,-77,-102"},"\u00fa":{"d":"86,-268r-19,52r33,0r36,-52r-50,0xm17,-50v-10,65,79,68,99,27r0,23r47,0r0,-194r-49,0r0,129v0,21,-9,32,-27,32v-17,0,-21,-9,-21,-27r0,-134r-49,0r0,144","w":180},"\u00f9":{"d":"80,-216r33,0r-19,-52r-50,0xm17,-50v-10,65,79,68,99,27r0,23r47,0r0,-194r-49,0r0,129v0,21,-9,32,-27,32v-17,0,-21,-9,-21,-27r0,-134r-49,0r0,144","w":180},"\u00fb":{"d":"64,-268r-28,52r36,0r17,-31r17,31r38,0r-28,-52r-52,0xm17,-50v-10,65,79,68,99,27r0,23r47,0r0,-194r-49,0r0,129v0,21,-9,32,-27,32v-17,0,-21,-9,-21,-27r0,-134r-49,0r0,144","w":180},"\u00fc":{"d":"101,-262r0,42r40,0r0,-42r-40,0xm39,-262r0,42r40,0r0,-42r-40,0xm17,-50v-10,65,79,68,99,27r0,23r47,0r0,-194r-49,0r0,129v0,21,-9,32,-27,32v-17,0,-21,-9,-21,-27r0,-134r-49,0r0,144","w":180},"\u2020":{"d":"62,-257r0,71r-61,0r0,41r61,0r0,194r49,0r0,-194r61,0r0,-41r-61,0r0,-71r-49,0"},"\u00b0":{"d":"72,-176v-14,0,-26,-12,-26,-26v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,14,-12,26,-26,26xm72,-255v-32,0,-53,22,-53,53v0,32,21,54,53,54v32,0,53,-22,53,-54v0,-31,-21,-53,-53,-53","w":144},"\u00a2":{"d":"12,-95v0,59,14,97,68,99r0,32r19,0r0,-32v43,-6,62,-30,62,-79r-48,0v0,19,-2,36,-14,44r0,-132v12,5,15,20,14,38r48,0v1,-48,-21,-71,-62,-74r0,-27r-19,0r0,27v-53,4,-68,45,-68,104xm80,-31v-28,-11,-18,-79,-15,-111v1,-11,7,-18,15,-21r0,132"},"\u00a3":{"d":"118,-31v-20,-3,-41,-14,-59,-9v22,-19,35,-34,31,-70r50,0r0,-30r-60,0v-15,-23,-36,-81,11,-81v22,0,28,18,28,41r48,0v0,-51,-29,-74,-79,-75v-68,-2,-97,58,-61,115r-24,0r0,30r37,0v14,36,-15,66,-38,81r15,30v48,-27,108,26,154,-13r-16,-34v-11,8,-24,13,-37,15"},"\u00a7":{"d":"109,-69v-19,-18,-75,-24,-57,-62v3,-5,8,-9,15,-13v22,14,71,23,55,60v-3,4,-7,10,-13,15xm86,20v-16,0,-27,-14,-25,-33r-47,0v-1,44,25,67,72,67v45,0,75,-18,74,-62v0,-23,-7,-35,-20,-45v26,-10,37,-63,17,-88v-21,-26,-65,-31,-89,-54v-13,-12,-1,-33,17,-33v18,0,24,9,25,24r48,0v-1,-40,-26,-58,-69,-58v-64,0,-99,64,-52,100v-27,10,-42,53,-23,83v18,28,69,34,91,59v13,15,2,42,-19,40","w":173},"\u2022":{"d":"90,-193v-38,0,-64,26,-64,64v0,39,25,65,64,65v39,0,64,-26,64,-65v0,-38,-26,-64,-64,-64","w":180},"\u00b6":{"d":"0,-188v2,44,22,67,66,67r0,170r38,0r0,-272r26,0r0,272r38,0r0,-306v-79,1,-173,-17,-168,69"},"\u00df":{"d":"91,-262v-52,5,-76,20,-76,72r0,190r49,0r0,-189v1,-22,3,-39,25,-39v19,0,22,15,23,32v0,22,-6,37,-30,34r0,34v31,-3,38,16,38,44v0,31,-6,58,-38,51r0,33v60,9,88,-22,88,-78v0,-38,-12,-63,-40,-70v57,-23,35,-121,-39,-114","w":180},"\u00ae":{"d":"144,-33v-57,0,-93,-39,-93,-96v0,-57,37,-95,93,-95v56,0,93,38,93,95v0,57,-36,96,-93,96xm144,-262v-81,0,-134,54,-134,133v0,80,53,133,134,133v81,0,134,-53,134,-133v0,-79,-53,-133,-134,-133xm172,-158v1,24,-27,17,-49,18r0,-35v22,0,48,-4,49,17xm203,-156v0,-52,-59,-46,-111,-45r0,144r31,0r0,-57r12,0r34,57r34,0r-35,-59v20,-2,35,-17,35,-40","w":288},"\u00a9":{"d":"144,-262v-81,0,-134,54,-134,133v0,80,53,133,134,133v81,0,134,-53,134,-133v0,-79,-53,-133,-134,-133xm144,-33v-57,0,-93,-39,-93,-96v0,-57,37,-95,93,-95v56,0,93,38,93,95v0,57,-36,96,-93,96xm75,-130v-8,87,127,108,139,23r-36,0v-2,15,-15,25,-32,25v-25,-2,-37,-21,-37,-48v0,-48,59,-64,69,-23r35,0v-5,-34,-28,-55,-65,-55v-48,0,-69,31,-73,78","w":288},"\u2122":{"d":"51,-223r0,115r41,0r0,-115r40,0r0,-34r-121,0r0,34r40,0xm302,-210v4,31,0,69,1,102r38,0r0,-149r-61,0r-30,90r-30,-90r-61,0r0,149r38,0r1,-102r34,102r36,0","w":356},"\u00b4":{"d":"36,-268r-19,52r33,0r36,-52r-50,0","w":79},"\u00a8":{"d":"51,-262r0,42r40,0r0,-42r-40,0xm-10,-262r0,42r39,0r0,-42r-39,0","w":79},"\u2260":{"d":"4,-144r0,17r100,0r-25,65r-75,0r0,16r68,0r-36,92r14,0r37,-92r106,0r0,-16r-100,0r25,-65r75,0r0,-17r-68,0r36,-94r-14,0r-37,94r-106,0","w":197},"\u00c6":{"d":"127,-97r-43,0r40,-120r3,0r0,120xm95,-257r-96,257r53,0r18,-54r57,0r0,54r138,0r0,-42r-88,0r0,-70r79,0r0,-42r-79,0r0,-61r85,0r0,-42r-167,0","w":273},"\u00d8":{"d":"13,-129v1,48,3,92,28,115r-11,24r17,7r10,-21v12,5,25,8,43,8v78,3,89,-58,88,-133v-1,-47,-3,-92,-29,-114r11,-25r-17,-7r-9,22v-12,-6,-26,-9,-44,-9v-75,-1,-89,57,-87,133xm133,-182v1,56,19,149,-33,149v-12,0,-20,-4,-25,-13xm67,-75v0,-56,-19,-149,33,-149v12,0,20,4,25,13","w":200},"\u221e":{"d":"180,-166v-39,0,-50,17,-65,49v-16,-26,-22,-39,-52,-40v-31,-1,-54,31,-54,64v0,36,26,66,60,65v32,-1,44,-16,58,-41v19,31,25,50,59,50v34,0,61,-37,61,-74v0,-42,-29,-73,-67,-73xm237,-93v0,55,-67,79,-92,34v-4,-6,-9,-14,-13,-23v19,-43,14,-62,56,-70v27,1,49,28,49,59xm19,-93v0,-40,42,-61,71,-39v7,6,14,15,20,28v-13,40,-18,56,-51,62v-23,-1,-40,-23,-40,-51","w":256},"\u00b1":{"d":"17,-45r0,45r182,0r0,-45r-182,0xm86,-182r0,39r-69,0r0,44r69,0r0,39r44,0r0,-39r69,0r0,-44r-69,0r0,-39r-44,0","w":216},"\u2264":{"d":"193,-43r0,-18r-167,-70r167,-69r0,-18r-189,80r0,15xm4,11r0,16r189,0r0,-16r-189,0","w":197},"\u2265":{"d":"4,-218r0,18r167,70r-167,69r0,18r189,-80r0,-15xm4,11r0,16r189,0r0,-16r-189,0","w":197},"\u00a5":{"d":"64,-57r0,57r45,0r0,-57r51,0r0,-30r-51,0v-1,-10,0,-18,4,-24r47,0r0,-29r-33,0r52,-110r-52,0r-41,97r-38,-97r-53,0r51,110r-33,0r0,29r47,0v4,6,5,14,4,24r-51,0r0,30r51,0"},"\u00b5":{"d":"66,1v21,10,40,-8,50,-24r0,23r47,0r0,-194r-49,0r0,129v0,21,-9,32,-27,32v-17,0,-21,-9,-21,-27r0,-134r-49,0r0,256r49,0r0,-61","w":180},"\u2202":{"d":"52,-197v26,-48,113,-31,113,38v0,13,-1,20,-2,33v-9,-21,-27,-33,-55,-33v-59,0,-94,46,-97,106v-2,36,24,57,60,57v65,1,104,-92,104,-166v0,-67,-51,-110,-102,-75v-10,8,-20,21,-29,40r8,0xm41,-46v-1,-60,41,-131,99,-94v10,6,15,16,20,29v-11,52,-37,102,-85,106v-22,2,-34,-18,-34,-41","w":177},"\u2211":{"d":"186,-235v30,0,40,16,44,45r7,0r-5,-59r-224,0r0,6r117,156r-117,157r0,6r230,0r11,-72r-6,-2v-6,30,-22,43,-55,43r-144,0r111,-147r-99,-133r130,0","w":256},"\u220f":{"d":"113,70v-24,1,-35,-5,-35,-28r0,-278r140,0r0,278v0,23,-11,29,-35,28r0,6r105,0v1,-5,-1,-7,-6,-6v-21,0,-28,-7,-28,-28r0,-258v-1,-23,11,-28,34,-27r0,-6r-280,0v-1,5,1,7,6,6v21,0,28,7,29,27r0,258v0,23,-11,29,-35,28r0,6r105,0r0,-6","w":296},"\u03c0":{"d":"149,-23v-37,0,-13,-75,-15,-112r41,0r0,-26v-54,6,-136,-18,-160,20v-5,8,-9,18,-13,30r7,0v10,-18,20,-26,48,-24v-2,46,-10,78,-31,103v-14,16,-10,36,10,36v32,0,26,-48,33,-84v3,-15,3,-33,4,-55r37,0v2,49,-33,139,26,139v22,0,35,-16,39,-48r-6,0v-2,14,-9,21,-20,21","w":181},"\u222b":{"d":"55,-279v-4,-29,16,-17,27,-12v11,0,17,-6,16,-18v0,-10,-11,-21,-22,-19v-56,12,-37,108,-41,171v-3,47,4,115,9,157v-3,23,-16,0,-28,0v-10,0,-17,6,-16,16v0,12,8,22,21,21v58,-5,42,-124,42,-184v0,-31,-2,-87,-8,-132","w":98},"\u00aa":{"d":"51,-155v-27,-14,0,-35,18,-38v2,20,0,39,-18,38xm4,-165v-5,36,52,43,65,18r4,12r36,0v-8,-20,-4,-56,-4,-84v0,-30,-19,-36,-48,-36v-30,0,-51,9,-49,40r33,0v-1,-10,5,-17,15,-17v12,0,16,12,11,21v-23,14,-68,4,-63,46","w":113},"\u00ba":{"d":"57,-155v-25,-2,-24,-75,0,-77v23,1,23,75,0,77xm57,-255v-40,1,-52,22,-53,62v0,39,13,61,53,61v39,0,52,-23,52,-61v0,-38,-12,-63,-52,-62","w":113},"\u03a9":{"d":"98,-37v-32,-2,-78,11,-80,-22r-5,0r0,59r106,0r-6,-51v-36,-12,-50,-43,-50,-89v0,-53,21,-91,76,-91v92,0,100,159,24,180r-5,51r106,0r0,-59r-6,0v-1,34,-48,19,-79,22r0,-5v47,-13,78,-43,78,-98v0,-65,-49,-103,-119,-103v-70,0,-119,39,-119,103v0,54,31,86,79,98r0,5","w":276},"\u00e6":{"d":"10,-50v0,67,95,69,109,22v9,38,85,42,110,14v11,-12,17,-28,18,-51r-44,0v-2,20,-7,36,-26,36v-26,0,-24,-32,-24,-60r97,0v1,-62,-8,-111,-70,-110v-22,0,-39,8,-46,23v-27,-43,-131,-26,-118,42r44,0v-1,-19,6,-31,24,-31v29,0,30,42,3,47v-40,7,-77,17,-77,68xm153,-119v-8,-34,28,-63,44,-34v4,7,6,19,6,34r-50,0xm76,-29v-21,0,-23,-34,-12,-47v9,-10,32,-11,43,-21v1,34,3,68,-31,68","w":259},"\u00f8":{"d":"10,-97v1,37,4,66,22,84r-13,25r16,8r12,-23v9,5,22,7,39,7v61,1,77,-40,77,-101v0,-37,-5,-67,-23,-84r14,-25r-16,-9r-12,24v-10,-5,-24,-8,-40,-8v-59,1,-77,41,-76,102xm112,-126v1,40,7,95,-26,97v-9,0,-15,-4,-19,-12xm61,-67v-1,-39,-10,-94,25,-98v9,0,15,4,19,12"},"\u00bf":{"d":"65,-146r50,0r0,-48r-50,0r0,48xm89,65v49,0,72,-30,71,-81r-47,0v1,25,-4,47,-26,47v-32,1,-27,-50,-11,-67v21,-22,40,-41,36,-86r-44,0v2,56,-56,61,-55,119v1,44,30,68,76,68","w":173},"\u00a1":{"d":"28,-194r0,48r50,0r0,-48r-50,0xm28,-20r0,82r50,0v1,-65,-2,-125,-7,-184r-36,0","w":106},"\u00ac":{"d":"154,-108r0,73r45,0r0,-118r-182,0r0,45r137,0","w":216},"\u221a":{"d":"184,-329r-45,286r-72,-145r-52,27r6,11r34,-16r88,179r54,-342r-13,0","w":197},"\u0192":{"d":"29,-154r-6,29r38,0v-11,48,-16,102,-32,145v-5,8,-21,9,-33,7r-8,33v53,10,88,-13,97,-61r23,-124r40,0r6,-29r-40,0v10,-29,4,-77,50,-68r7,-34v-77,-13,-98,37,-104,102r-38,0"},"\u2248":{"d":"13,-135v23,-83,117,35,167,-12v8,-8,13,-21,13,-36r-8,0v-2,19,-13,34,-33,33v-51,-3,-112,-65,-143,-5v-3,6,-4,12,-4,20r8,0xm13,-48v22,-86,118,38,167,-13v8,-9,13,-20,13,-35r-8,0v-2,19,-14,33,-33,33v-51,0,-112,-65,-143,-6v-2,6,-4,13,-4,21r8,0","w":197},"\u2206":{"d":"216,0r-101,-244r-110,244r211,0xm174,-14r-147,0r77,-170","w":220},"\u00ab":{"d":"19,-133r0,58r53,43r0,-47r-28,-25r28,-25r0,-47xm81,-133r0,58r54,43r0,-47r-29,-25r29,-25r0,-47","w":153},"\u00bb":{"d":"81,-79r0,47r54,-43r0,-58r-54,-43r0,47r28,25xm19,-79r0,47r53,-43r0,-58r-53,-43r0,47r28,25","w":153},"\u2026":{"d":"324,-56r-48,0r0,56r48,0r0,-56xm204,-56r-48,0r0,56r48,0r0,-56xm84,-56r-48,0r0,56r48,0r0,-56","w":360},"\u00a0":{"w":86},"\u00c0":{"d":"90,-272r33,0r-19,-52r-50,0xm75,-97r25,-115r25,115r-50,0xm68,-257r-68,257r54,0r12,-54r68,0r12,54r54,0r-68,-257r-64,0","w":200},"\u00c3":{"d":"131,-321v-8,34,-56,-21,-76,12v-5,9,-9,20,-11,34r25,0v11,-37,57,23,77,-14v5,-9,10,-19,11,-32r-26,0xm75,-97r25,-115r25,115r-50,0xm68,-257r-68,257r54,0r12,-54r68,0r12,54r54,0r-68,-257r-64,0","w":200},"\u00d5":{"d":"131,-321v-8,34,-56,-21,-76,12v-5,9,-9,20,-11,34r25,0v11,-37,57,23,77,-14v5,-9,10,-19,11,-32r-26,0xm100,-33v-42,0,-36,-52,-36,-96v0,-43,-5,-95,36,-95v42,0,36,52,36,95v0,44,6,96,-36,96xm100,-262v-75,0,-87,57,-87,133v0,77,10,133,87,133v78,0,88,-58,88,-133v1,-75,-12,-133,-88,-133","w":200},"\u0152":{"d":"100,-33v-43,0,-36,-53,-36,-96v0,-43,-7,-95,36,-95v52,0,32,84,32,141v0,28,-4,50,-32,50xm93,4v20,0,37,-7,45,-19r0,15r134,0r0,-42r-90,0r0,-70r82,0r0,-42r-82,0r0,-61r87,0r0,-42r-131,0v-1,4,2,12,-1,14v-7,-13,-28,-19,-47,-19v-67,1,-77,61,-77,131v0,72,6,137,80,135","w":280},"\u0153":{"d":"158,-119v-7,-35,26,-62,46,-34v3,9,4,22,5,34r-51,0xm113,-97v0,37,1,64,-26,68v-36,-3,-26,-58,-26,-95v0,-22,5,-41,26,-41v27,0,26,31,26,68xm183,-29v-26,0,-25,-32,-25,-60r98,0v2,-63,-9,-112,-71,-110v-21,0,-39,12,-47,27v-10,-18,-23,-26,-51,-27v-60,0,-78,41,-77,102v1,58,12,102,72,101v23,0,48,-9,54,-27v8,33,78,35,100,9v10,-13,16,-28,17,-51r-44,0v-2,20,-7,36,-26,36","w":266},"\u2013":{"d":"0,-124r0,40r180,0r0,-40r-180,0","w":180},"\u2014":{"d":"0,-124r0,40r360,0r0,-40r-360,0","w":360},"\u201c":{"d":"72,-257v-53,2,-49,60,-48,116r48,0r0,-57r-19,0v-1,-16,5,-32,19,-34r0,-25xm142,-257v-53,2,-48,60,-47,116r47,0r0,-57r-19,0v-1,-16,5,-32,19,-34r0,-25","w":166},"\u201d":{"d":"95,-141v52,-2,48,-61,47,-116r-47,0r0,56r18,0v1,17,-4,32,-18,34r0,26xm24,-141v53,-2,49,-60,48,-116r-48,0r0,56r19,0v2,17,-5,32,-19,34r0,26","w":166},"\u2018":{"d":"71,-257v-54,1,-49,60,-48,116r48,0r0,-57r-19,0v-1,-16,5,-32,19,-34r0,-25","w":93},"\u2019":{"d":"23,-141v53,-2,49,-60,48,-116r-48,0r0,56r19,0v1,17,-5,32,-19,34r0,26","w":93},"\u00f7":{"d":"108,-50v-19,0,-35,16,-35,35v0,20,15,34,35,34v20,0,35,-14,35,-34v0,-19,-16,-35,-35,-35xm108,-202v-19,0,-35,16,-35,35v0,19,16,35,35,35v19,0,35,-16,35,-35v0,-19,-16,-35,-35,-35xm17,-113r0,44r182,0r0,-44r-182,0","w":216},"\u25ca":{"d":"96,-250r-19,0r-69,125r69,125r19,0r74,-125xm87,-233r63,108r-63,108r-60,-108","w":177},"\u00ff":{"d":"91,-262r0,42r40,0r0,-42r-40,0xm29,-262r0,42r40,0r0,-42r-40,0xm56,0v-1,20,-16,30,-39,25r0,37v43,2,72,-3,82,-36v21,-68,39,-149,59,-220r-50,0r-26,134r-28,-134r-52,0","w":159},"\u0178":{"d":"104,-318r0,43r41,0r0,-43r-41,0xm42,-318r0,43r41,0r0,-43r-41,0xm59,-257r-58,0r67,156r0,101r52,0r0,-101r66,-156r-56,0r-37,99","w":187},"\u2044":{"d":"87,-261r-145,271r32,0r145,-271r-32,0","w":60},"\u20ac":{"d":"86,-167v-5,-54,40,-68,70,-35r16,-36v-58,-40,-138,-13,-137,71r-15,0r-11,28r25,0r-1,18r-13,0r-11,28r25,0v-2,91,65,117,130,82r0,-45v-40,41,-83,27,-78,-37r36,0r10,-28r-47,0r0,-18r51,0r11,-28r-61,0"},"\u2039":{"d":"17,-133r0,58r53,43r0,-47r-28,-25r28,-25r0,-47","w":86},"\u203a":{"d":"17,-79r0,47r53,-43r0,-58r-53,-43r0,47r28,25","w":86},"\u2021":{"d":"62,-19r0,68r49,0r0,-68r61,0r0,-40r-61,0r0,-89r61,0r0,-41r-61,0r0,-68r-49,0r0,68r-61,0r0,41r61,0r0,89r-61,0r0,40r61,0"},"\u00b7":{"d":"43,-136v-20,0,-35,15,-35,34v0,19,15,35,35,35v20,0,35,-16,35,-35v0,-19,-15,-34,-35,-34","w":86},"\u201a":{"d":"23,58v53,-2,49,-59,48,-114r-48,0r0,56r19,0v1,16,-6,31,-19,33r0,25","w":93},"\u201e":{"d":"24,58v53,-2,49,-59,48,-114r-48,0r0,56r19,0v1,17,-5,31,-19,33r0,25xm95,58v52,-2,48,-59,47,-114r-47,0r0,56r18,0v1,16,-5,31,-18,33r0,25","w":166},"\u2030":{"d":"192,-261r-146,271r32,0r146,-271r-32,0xm208,-22v-17,-2,-16,-21,-16,-43v0,-21,-1,-40,16,-40v17,0,16,20,16,40v0,22,1,41,-16,43xm208,-132v-44,0,-54,24,-54,68v0,44,10,68,54,68v44,0,54,-24,54,-68v0,-44,-10,-68,-54,-68xm64,-145v-19,0,-16,-20,-16,-43v0,-22,-1,-38,16,-40v17,2,16,19,16,40v0,22,2,43,-16,43xm64,-255v-44,0,-54,25,-54,69v0,44,11,69,54,69v42,0,54,-25,54,-69v0,-43,-10,-69,-54,-69xm330,-132v-44,0,-54,24,-54,68v0,44,10,68,54,68v44,0,54,-24,54,-68v0,-44,-10,-68,-54,-68xm330,-22v-18,-2,-16,-20,-16,-43v0,-21,-2,-40,16,-40v17,0,16,20,16,40v0,22,1,41,-16,43","w":393},"\u00c2":{"d":"74,-324r-28,52r36,0r17,-31r17,31r38,0r-28,-52r-52,0xm75,-97r25,-115r25,115r-50,0xm68,-257r-68,257r54,0r12,-54r68,0r12,54r54,0r-68,-257r-64,0","w":200},"\u00ca":{"d":"65,-324r-28,52r36,0r17,-31r17,31r38,0r-28,-52r-52,0xm162,-257r-144,0r0,257r147,0r0,-42r-95,0r0,-70r86,0r0,-42r-86,0r0,-61r92,0r0,-42","w":173},"\u00c1":{"d":"96,-324r-19,52r34,0r35,-52r-50,0xm75,-97r25,-115r25,115r-50,0xm68,-257r-68,257r54,0r12,-54r68,0r12,54r54,0r-68,-257r-64,0","w":200},"\u00cb":{"d":"102,-318r0,43r40,0r0,-43r-40,0xm40,-318r0,43r40,0r0,-43r-40,0xm162,-257r-144,0r0,257r147,0r0,-42r-95,0r0,-70r86,0r0,-42r-86,0r0,-61r92,0r0,-42","w":173},"\u00c8":{"d":"81,-272r33,0r-19,-52r-50,0xm162,-257r-144,0r0,257r147,0r0,-42r-95,0r0,-70r86,0r0,-42r-86,0r0,-61r92,0r0,-42","w":173},"\u00cd":{"d":"42,-324r-19,52r34,0r35,-52r-50,0xm21,0r51,0r0,-257r-51,0r0,257","w":92},"\u00ce":{"d":"21,-324r-27,52r34,0r18,-31r16,31r38,0r-28,-52r-51,0xm21,0r51,0r0,-257r-51,0r0,257","w":92},"\u00cf":{"d":"57,-318r0,43r41,0r0,-43r-41,0xm-4,-318r0,43r40,0r0,-43r-40,0xm21,0r51,0r0,-257r-51,0r0,257","w":92},"\u00cc":{"d":"36,-272r34,0r-20,-52r-49,0xm21,0r51,0r0,-257r-51,0r0,257","w":92},"\u00d3":{"d":"96,-324r-19,52r34,0r35,-52r-50,0xm100,-33v-42,0,-36,-52,-36,-96v0,-43,-5,-95,36,-95v42,0,36,52,36,95v0,44,6,96,-36,96xm100,-262v-75,0,-87,57,-87,133v0,77,10,133,87,133v78,0,88,-58,88,-133v1,-75,-12,-133,-88,-133","w":200},"\u00d4":{"d":"74,-324r-28,52r36,0r17,-31r17,31r38,0r-28,-52r-52,0xm100,-33v-42,0,-36,-52,-36,-96v0,-43,-5,-95,36,-95v42,0,36,52,36,95v0,44,6,96,-36,96xm100,-262v-75,0,-87,57,-87,133v0,77,10,133,87,133v78,0,88,-58,88,-133v1,-75,-12,-133,-88,-133","w":200},"\uf8ff":{"d":"261,-194v-20,-36,-76,-32,-114,-18v-10,1,-44,-10,-57,-10v-46,0,-72,45,-72,93v0,47,41,135,81,136v12,0,35,-13,50,-11v43,7,74,22,99,-24v9,-14,17,-29,22,-45v-22,-5,-42,-34,-41,-63v0,-28,13,-43,32,-58xm142,-219v38,-3,62,-34,59,-73v-38,8,-57,32,-59,73","w":284},"\u00d2":{"d":"90,-272r33,0r-19,-52r-50,0xm100,-33v-42,0,-36,-52,-36,-96v0,-43,-5,-95,36,-95v42,0,36,52,36,95v0,44,6,96,-36,96xm100,-262v-75,0,-87,57,-87,133v0,77,10,133,87,133v78,0,88,-58,88,-133v1,-75,-12,-133,-88,-133","w":200},"\u00da":{"d":"93,-324r-20,52r34,0r36,-52r-50,0xm97,-33v-24,0,-31,-19,-30,-45r0,-179r-52,0r0,179v-1,56,27,82,82,82v54,0,82,-27,82,-82r0,-179r-52,0r0,179v1,26,-6,45,-30,45","w":193},"\u00db":{"d":"71,-324r-28,52r36,0r17,-31r17,31r38,0r-28,-52r-52,0xm97,-33v-24,0,-31,-19,-30,-45r0,-179r-52,0r0,179v-1,56,27,82,82,82v54,0,82,-27,82,-82r0,-179r-52,0r0,179v1,26,-6,45,-30,45","w":193},"\u00d9":{"d":"86,-272r34,0r-19,-52r-50,0xm97,-33v-24,0,-31,-19,-30,-45r0,-179r-52,0r0,179v-1,56,27,82,82,82v54,0,82,-27,82,-82r0,-179r-52,0r0,179v1,26,-6,45,-30,45","w":193},"\u0131":{"d":"18,-194r0,194r50,0r0,-194r-50,0","w":86},"\u02c6":{"d":"14,-268r-27,52r35,0r17,-31r17,31r38,0r-28,-52r-52,0","w":79},"\u02dc":{"d":"71,-265v-9,34,-57,-21,-76,12v-5,8,-8,19,-10,33r24,0v12,-37,56,25,77,-13v5,-9,9,-19,10,-32r-25,0","w":79},"\u00af":{"d":"93,-257r-105,0r0,27r105,0r0,-27","w":79},"\u02d8":{"d":"67,-268v-1,30,-53,30,-54,0r-22,0v-6,58,85,67,97,16v2,-6,2,-11,2,-16r-23,0","w":79},"\u02d9":{"d":"60,-262r-40,0r0,42r40,0r0,-42","w":79},"\u02da":{"d":"40,-230v-11,0,-21,-9,-21,-21v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-10,21,-21,21xm40,-292v-25,0,-40,16,-40,41v0,25,15,41,40,41v25,0,41,-16,41,-41v0,-25,-16,-41,-41,-41","w":79},"\u00b8":{"d":"50,49v0,17,-31,14,-43,7r-7,17v27,12,81,12,81,-27v0,-23,-21,-30,-42,-25r14,-21r-20,0r-19,32v6,13,36,-3,36,17","w":79},"\u02dd":{"d":"66,-268r-20,52r34,0r36,-52r-50,0xm6,-268r-18,52r33,0r35,-52r-50,0","w":79},"\u02db":{"d":"77,0v-59,-15,-99,74,-34,80v12,-1,31,-3,39,-9r-6,-20v-12,8,-36,10,-36,-9v0,-23,19,-30,37,-42","w":79},"\u02c7":{"d":"-13,-268r27,52r52,0r28,-52r-36,0r-17,30r-17,-30r-37,0","w":79},"\u2126":{"d":"98,-37v-32,-2,-78,11,-80,-22r-5,0r0,59r106,0r-6,-51v-36,-12,-50,-43,-50,-89v0,-53,21,-91,76,-91v92,0,100,159,24,180r-5,51r106,0r0,-59r-6,0v-1,34,-48,19,-79,22r0,-5v47,-13,78,-43,78,-98v0,-65,-49,-103,-119,-103v-70,0,-119,39,-119,103v0,54,31,86,79,98r0,5","w":276},"\u00a4":{"d":"86,-78v-27,0,-44,-19,-44,-47v0,-28,16,-46,44,-46v28,0,45,18,45,46v0,28,-17,47,-45,47xm18,-171v-18,23,-17,70,0,92r-18,18r22,22r18,-18v24,21,70,19,92,0r19,18r22,-22r-18,-18v18,-23,18,-69,0,-92r18,-18r-22,-22r-19,18v-20,-18,-70,-19,-92,0r-18,-18r-22,22"},"\u0141":{"d":"18,-92r0,92r144,0r0,-42r-92,0r0,-83r45,-28r0,-38r-45,28r0,-94r-52,0r0,127r-18,11r0,38","w":166},"\u0142":{"d":"18,-102r0,102r50,0r0,-134r23,-15r0,-32r-23,15r0,-91r-50,0r0,124r-21,15r0,32","w":86},"\u00be":{"d":"56,-126v-15,0,-17,-11,-18,-24r-38,0v-1,35,16,52,51,52v37,-1,60,-12,61,-47v0,-22,-9,-32,-29,-36v16,-4,23,-17,25,-35v4,-46,-66,-47,-93,-27v-9,8,-12,20,-12,37r36,0v0,-13,3,-22,16,-22v8,0,16,7,15,16v0,14,-12,21,-30,19r0,26v20,-1,33,3,32,22v0,10,-5,19,-16,19xm195,-261r-146,271r32,0r146,-271r-32,0xm206,-57r-32,0v11,-17,20,-36,32,-52r0,52xm144,-60r0,32r62,0r0,28r38,0r0,-28r16,0r0,-29r-16,0r0,-97r-45,0","w":259},"\u00bc":{"d":"42,-255v-3,18,-19,26,-42,25r0,25r33,0r0,104r40,0r0,-154r-31,0xm181,-261r-146,271r32,0r146,-271r-32,0xm144,-60r0,32r62,0r0,28r38,0r0,-28r16,0r0,-29r-16,0r0,-97r-45,0xm205,-109v3,14,0,36,1,52r-32,0","w":259},"\u00b9":{"d":"51,-255v-4,18,-19,26,-42,25r0,25r32,0r0,104r41,0r0,-154r-31,0","w":112},"\u00d7":{"d":"77,-91r-56,56r31,31r56,-56r56,56r31,-31r-56,-56r56,-56r-31,-31r-56,56r-56,-56r-31,31","w":216},"\u00de":{"d":"127,-133v0,34,-23,41,-57,38r0,-78v36,-3,57,5,57,40xm179,-134v0,-63,-41,-83,-109,-77r0,-46r-52,0r0,257r52,0r0,-57v67,5,109,-14,109,-77","w":186},"\u00a6":{"d":"18,-262r0,97r44,0r0,-97r-44,0xm18,-93r0,97r44,0r0,-97r-44,0","w":79},"\u00d0":{"d":"139,-131v0,58,-2,102,-67,93r0,-75r34,0r0,-39r-34,0r0,-67v62,-8,67,33,67,88xm190,-132v0,-72,-13,-125,-85,-125r-84,0r0,105r-21,0r0,39r21,0r0,113r81,0v75,1,88,-56,88,-132","w":206},"\u00bd":{"d":"204,-127v24,0,16,39,-2,46v-28,20,-56,37,-55,81r113,0r0,-30r-64,0v14,-33,66,-37,64,-85v-1,-28,-23,-39,-55,-39v-40,0,-59,15,-58,54r38,0v1,-14,4,-27,19,-27xm42,-255v-3,18,-19,26,-42,25r0,25r33,0r0,104r40,0r0,-154r-31,0xm172,-261r-146,271r32,0r146,-271r-32,0","w":259},"\u2212":{"d":"17,-113r0,44r182,0r0,-44r-182,0","w":216},"\u00f0":{"d":"89,-264r-24,-22r-38,22r24,23r-27,16r14,15r28,-16v9,14,28,29,32,44v-51,-32,-91,24,-88,85v3,60,14,101,76,101v61,0,77,-40,77,-101v0,-71,-25,-113,-59,-151r27,-17r-15,-15xm86,-29v-35,-3,-26,-54,-26,-91v0,-20,6,-38,26,-38v27,0,27,29,27,64v0,36,0,61,-27,65"},"\u00fe":{"d":"109,-199v-23,-1,-33,11,-43,26r0,-84r-49,0r0,319r49,0v1,-26,-2,-56,1,-80v9,15,21,22,42,22v50,0,59,-41,59,-101v0,-61,-10,-99,-59,-102xm93,-33v-28,0,-27,-30,-27,-64v0,-34,-1,-64,27,-64v28,0,25,31,25,64v0,34,3,64,-25,64","w":180},"\u00b2":{"d":"57,-228v36,13,-3,54,-21,60v-24,17,-34,33,-36,67r112,0r0,-29r-63,0v13,-33,63,-37,63,-86v0,-29,-22,-39,-54,-39v-41,0,-60,15,-58,54r38,0v1,-14,4,-27,19,-27","w":112},"\u00b3":{"d":"56,-126v-15,0,-17,-11,-18,-24r-38,0v-1,35,16,52,51,52v37,-1,60,-12,61,-47v0,-22,-9,-32,-29,-36v16,-4,23,-17,25,-35v4,-46,-66,-47,-93,-27v-9,8,-12,20,-12,37r36,0v0,-13,3,-22,16,-22v8,0,16,7,15,16v0,14,-12,21,-30,19r0,26v20,-1,33,3,32,22v0,10,-5,19,-16,19","w":112},"\u0160":{"d":"40,-324r28,52r52,0r28,-52r-36,0r-18,31r-16,-31r-38,0xm94,-33v-28,0,-36,-17,-34,-47r-52,0v-2,58,24,84,82,84v70,0,111,-56,79,-117v-17,-32,-76,-36,-101,-61v-11,-20,-3,-50,25,-50v22,0,27,17,28,38r50,0v2,-53,-29,-71,-80,-76v-82,-8,-105,107,-42,141v27,14,77,13,76,56v0,20,-14,31,-31,32","w":186},"\u00dd":{"d":"90,-324r-20,52r34,0r35,-52r-49,0xm59,-257r-58,0r67,156r0,101r52,0r0,-101r66,-156r-56,0r-37,99","w":187},"\u017d":{"d":"33,-324r28,52r52,0r28,-52r-36,0r-18,31r-16,-31r-38,0xm9,-38r0,38r156,0r0,-42r-98,0r96,-176r0,-39r-148,0r0,42r88,0","w":173},"\u0161":{"d":"26,-268r28,52r52,0r28,-52r-36,0r-17,30r-17,-30r-38,0xm79,-29v-18,0,-27,-14,-26,-34r-45,0v-2,48,23,69,72,67v75,13,100,-96,29,-115v-20,-6,-50,-9,-52,-33v-1,-14,12,-21,24,-21v18,0,21,11,22,29r44,0v2,-44,-22,-59,-66,-63v-75,-7,-96,91,-30,113v20,7,51,8,53,34v0,15,-10,23,-25,23","w":159},"\u00fd":{"d":"76,-268r-19,52r33,0r36,-52r-50,0xm56,0v-1,20,-16,30,-39,25r0,37v43,2,72,-3,82,-36v21,-68,39,-149,59,-220r-50,0r-26,134r-28,-134r-52,0","w":159},"\u017e":{"d":"23,-268r28,52r52,0r28,-52r-36,0r-18,30r-16,-30r-38,0xm9,-38r0,38r136,0r0,-40r-78,0r78,-116r0,-38r-133,0r0,41r74,0","w":153},"\u0300":{"d":"-49,-216r34,0r-20,-52r-49,0","w":0},"\u0301":{"d":"-43,-268r-19,52r34,0r34,-52r-49,0","w":0},"\u0303":{"d":"-8,-265v-9,34,-57,-22,-76,12v-5,8,-9,19,-11,33r25,0v12,-37,56,24,77,-13v5,-9,9,-19,10,-32r-25,0","w":0},"\u0302":{"d":"-65,-268r-27,52r35,0r17,-31r17,31r38,0r-28,-52r-52,0","w":0},"\u0304":{"d":"14,-257r-105,0r0,27r105,0r0,-27","w":0},"\u0306":{"d":"-12,-268v-1,30,-53,30,-54,0r-22,0v-6,57,86,68,96,16v2,-6,3,-11,3,-16r-23,0","w":0},"\u0307":{"d":"-19,-262r-40,0r0,42r40,0r0,-42","w":0},"\u0308":{"d":"-28,-262r0,42r40,0r0,-42r-40,0xm-89,-262r0,42r39,0r0,-42r-39,0","w":0},"\u030a":{"d":"-39,-230v-11,0,-21,-9,-21,-21v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,12,-10,21,-21,21xm-39,-292v-25,0,-40,16,-40,41v0,25,15,41,40,41v25,0,41,-16,41,-41v0,-25,-16,-41,-41,-41","w":0},"\u030b":{"d":"-13,-268r-19,52r33,0r35,-52r-49,0xm-73,-268r-18,52r33,0r35,-52r-50,0","w":0},"\u030c":{"d":"-92,-268r27,52r52,0r28,-52r-36,0r-17,30r-17,-30r-37,0","w":0},"\u0327":{"d":"-43,80v48,8,62,-60,15,-61r-12,2r14,-21r-19,0r-20,32v6,13,37,-3,36,17v-1,18,-32,14,-43,7r-7,17v8,4,24,5,36,7","w":0},"\u0328":{"d":"-2,0v-59,-15,-99,74,-34,80v12,-1,31,-3,39,-9r-6,-20v-12,8,-36,9,-36,-9v0,-23,19,-30,37,-42","w":0},"\u0338":{"d":"-38,-262r-81,266r40,0r81,-266r-40,0","w":0}}});


/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.99 (12-MAR-2011)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.3.2 or later
 */
(function($){var ver="2.99";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){$.fn.cycle.debug&&log(s);}function log(){window.console&&console.log&&console.log("[cycle] "+Array.prototype.join.call(arguments," "));}$.expr[":"].paused=function(el){return el.cyclePause;};$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.backwards);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts.backwards);},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,!options.backwards);}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.backwards);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.cssAfter=opts.cssAfter||{};opts.cssFirst=opts.cssFirst||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);$($slides[first]).css(opts.cssFirst);if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="none"?0:opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length){opts.after[0].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$s.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=0;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){opts.busy=0;$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing("+fx+"); currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.backwards);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while(opts.fx!="none"&&(t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,1);};$.fn.cycle.prev=function(opts){advance(opts,0);};function advance(opts,moveForward){var val=moveForward?1:-1;var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,moveForward);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v&&v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();if(typeof opts.cssBefore.opacity=="undefined"){opts.cssBefore.opacity=1;}opts.cssBefore.display="block";if(opts.slideResize&&w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(opts.slideResize&&h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,function(){cb();});};$l.animate(opts.animOut,speedOut,easeOut,function(){$l.css(opts.cssAfter);if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={activePagerClass:"activeSlide",after:null,allowPagerClickBubble:false,animIn:null,animOut:null,autostop:0,autostopCount:0,backwards:false,before:null,cleartype:!$.support.opacity,cleartypeNoBg:false,containerResize:1,continuous:0,cssAfter:null,cssBefore:null,delay:0,easeIn:null,easeOut:null,easing:null,end:null,fastOnEvent:0,fit:0,fx:"fade",fxFn:null,height:"auto",manualTrump:true,next:null,nowrap:0,onPagerEvent:null,onPrevNextEvent:null,pager:null,pagerAnchorBuilder:null,pagerEvent:"click.cycle",pause:0,pauseOnPagerHover:0,prev:null,prevNextEvent:"click.cycle",random:0,randomizeEffects:1,requeueOnImageNotLoaded:true,requeueTimeout:250,rev:0,shuffle:null,slideExpr:null,slideResize:1,speed:1000,speedIn:null,speedOut:null,startingSlide:0,sync:1,timeout:4000,timeoutFn:null,updateActivePagerLink:null};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:	 2.73
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.fadeout=function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css({display:"block",opacity:1});opts.before.push(function(curr,next,opts,w,h,rev){$(curr).css("zIndex",opts.slideCount+(!rev===true?1:0));$(next).css("zIndex",opts.slideCount+(!rev===true?0:1));});opts.animIn.opacity=1;opts.animOut.opacity=0;opts.cssBefore.opacity=1;opts.cssBefore.display="block";opts.cssAfter.zIndex=0;};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore.top=h;opts.cssBefore.left=0;opts.cssFirst.top=0;opts.animIn.top=0;opts.animOut.top=-h;};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst.top=0;opts.cssBefore.top=-h;opts.cssBefore.left=0;opts.animIn.top=0;opts.animOut.top=h;};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst.left=0;opts.cssBefore.left=w;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.left=0-w;};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst.left=0;opts.cssBefore.left=-w;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.left=w;};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){if(opts.rev){fwd=!fwd;}$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst.left=0;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.top=0;};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){if(opts.rev){fwd=!fwd;}$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst.top=0;opts.cssBefore.left=0;opts.animIn.top=0;opts.animOut.left=0;};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore.left=0;opts.cssBefore.top=0;opts.cssBefore.width=0;opts.animIn.width="show";opts.animOut.width=0;};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore.left=0;opts.cssBefore.top=0;opts.cssBefore.height=0;opts.animIn.height="show";opts.animOut.height=0;};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){if(opts.rev){fwd=!fwd;}var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};$.extend(opts.cssBefore,{display:"block",opacity:1,top:0,left:0});};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;opts.animOut.width=next.cycleW;});opts.cssFirst.top=0;opts.cssBefore.left=0;opts.cssBefore.height=0;opts.animIn.top=0;opts.animOut.height=0;};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst.top=0;opts.cssBefore.left=0;opts.cssBefore.top=0;opts.cssBefore.height=0;opts.animOut.height=0;};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore.top=0;opts.cssBefore.width=0;opts.animIn.left=0;opts.animOut.width=0;};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});$.extend(opts.cssBefore,{top:0,left:0,width:0});opts.animIn.left=0;opts.animOut.width=0;};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;$.extend(opts.animIn,{top:0,left:0,width:next.cycleW,height:next.cycleH});$.extend(opts.animOut,{width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2});});opts.cssFirst.top=0;opts.cssFirst.left=0;opts.cssBefore.width=0;opts.cssBefore.height=0;};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;$.extend(opts.animIn,{top:0,left:0,width:next.cycleW,height:next.cycleH});});opts.cssBefore.width=0;opts.cssBefore.height=0;opts.animOut.opacity=0;};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore.left=w;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.left=w;};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore.top=h;opts.cssBefore.left=0;opts.animIn.top=0;opts.animOut.top=h;};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore.top=h;opts.cssBefore.left=w;opts.animIn.top=0;opts.animIn.left=0;opts.animOut.top=h;opts.animOut.left=w;};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn.left=0;opts.animIn.width=this.cycleW;opts.animOut.left=0;});opts.cssBefore.top=0;opts.cssBefore.width=0;};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn.top=0;opts.animIn.height=this.cycleH;opts.animOut.top=0;});opts.cssBefore.height=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn.left=0;opts.animIn.width=this.cycleW;opts.animOut.left=curr.cycleW/2;opts.animOut.width=0;});opts.cssBefore.top=0;opts.cssBefore.width=0;};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn.top=0;opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH/2;opts.animOut.height=0;});opts.cssBefore.height=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn.left=0;opts.animIn.top=0;opts.cssBefore.top=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn.left=0;opts.animIn.top=0;opts.cssBefore.top=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){$.extend(opts.animOut,{left:w*2,top:-h/2,opacity:0});}else{opts.animOut.opacity=0;}});opts.cssBefore.left=0;opts.cssBefore.top=0;opts.animIn.left=0;};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});$.extend(opts.cssBefore,{display:"block",opacity:1,top:0,left:0});opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);
/*
 * 	easyListSplitter 1.0.2 - jQuery Plugin
 *	written by Andrea Cima Serniotti
 *	http://www.madeincima.eu
 *
 *	Copyright (c) 2010 Andrea Cima Serniotti (http://www.madeincima.eu)
 *	Dual licensed under the MIT (MIT-LICENSE.txt)
 *	and GPL (GPL-LICENSE.txt) licenses.
 *
 *	Built for jQuery library
 *	http://jquery.com
 *
 */

 /*
	To activate the plugin add the following code to your own js file:

	$('.your-list-class-name').easyListSplitter({
			colNumber: 3,
			direction: 'horizontal'
	});

 */

var j = 1;

(function(jQuery) {
	jQuery.fn.easyListSplitter = function(options) {

	var defaults = {
		colNumber: 2, // Insert here the number of columns you want. Consider that the plugin will create the number of cols requested only if there are enough items in the list.
		direction: 'vertical'
	};

	this.each(function() {

		var obj = jQuery(this);
		var settings = jQuery.extend(defaults, options);
		var totalListElements = jQuery(this).children('li').size();
		var baseColItems = Math.ceil(totalListElements / settings.colNumber);
		var listClass = jQuery(this).attr('class');

		// -------- Create List Elements given colNumber ------------------------------------------------------------------------------

		for (i=1;i<=settings.colNumber;i++)
		{
			if(i==1){
				jQuery(this).addClass('listCol1').wrap('<div class="listContainer'+j+'"></div>');
			} else if(jQuery(this).is('ul')){ // Check whether the list is ordered or unordered
				jQuery(this).parents('.listContainer'+j).append('<ul class="listCol'+i+'"></ul>');
			} else{
				jQuery(this).parents('.listContainer'+j).append('<ol class="listCol'+i+'"></ol>');
			}
				jQuery('.listContainer'+j+' > ul,.listContainer'+j+' > ol').addClass(listClass);
		}

		var listItem = 0;
		var k = 1;
		var l = 0;

		if(settings.direction == 'vertical'){ // -------- Append List Elements to the respective listCol  - Vertical -------------------------------

			jQuery(this).children('li').each(function(){
				listItem = listItem+1;
				if (listItem > baseColItems*(settings.colNumber-1) ){
					jQuery(this).parents('.listContainer'+j).find('.listCol'+settings.colNumber).append(this);
				}
				else {
					if(listItem<=(baseColItems*k)){
						jQuery(this).parents('.listContainer'+j).find('.listCol'+k).append(this);
					}
					else{
						jQuery(this).parents('.listContainer'+j).find('.listCol'+(k+1)).append(this);
						k = k+1;
					}
				}
			});

			jQuery('.listContainer'+j).find('ol,ul').each(function(){
				if(jQuery(this).children().size() == 0) {
				jQuery(this).remove();
				}
			});

		} else{  // -------- Append List Elements to the respective listCol  - Horizontal ----------------------------------------------------------

			jQuery(this).children('li').each(function(){
				l = l+1;

				if(l <= settings.colNumber){
					jQuery(this).parents('.listContainer'+j).find('.listCol'+l).append(this);

				} else {
					l = 1;
					jQuery(this).parents('.listContainer'+j).find('.listCol'+l).append(this);
				}
			});
		}

		jQuery('.listContainer'+j).find('ol:last,ul:last').addClass('last'); // Set class last on the last UL or OL
		j = j+1;

	});
	};
})(jQuery);
