/* PLUGINS INCLUDED:
 *
 * hoverIntent r5
 * Cycle 2.75
 * jQuery validation 1.6
 * Superfish v1.4.8
 * CurvyCorners 2.0.4
 * Cufon
 * Cufon register font (Aller)
 *
 */
 
 
 // JavaScript Document

/**
* hoverIntent is similar to jQuery's built-in "hover" function except that
* instead of firing the onMouseOver event immediately, hoverIntent checks
* to see if the user's mouse has slowed down (beneath the sensitivity
* threshold) before firing the onMouseOver event.
* 
* hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* hoverIntent is currently available for use in all personal or commercial 
* projects under both MIT and GPL licenses. This means that you can choose 
* the license that best suits your project, and use it accordingly.
* 
* // basic usage (just like .hover) receives onMouseOver and onMouseOut functions
* $("ul li").hoverIntent( showNav , hideNav );
* 
* // advanced usage receives configuration object only
* $("ul li").hoverIntent({
*	sensitivity: 7, // number = sensitivity threshold (must be 1 or higher)
*	interval: 100,   // number = milliseconds of polling interval
*	over: showNav,  // function = onMouseOver callback (required)
*	timeout: 0,   // number = milliseconds delay before onMouseOut function call
*	out: hideNav    // function = onMouseOut callback (required)
* });
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne <brian@cherne.net>
*/
(function($) {
	$.fn.hoverIntent = function(f,g) {
		// default configuration options
		var cfg = {
			sensitivity: 7,
			interval: 100,
			timeout: 0
		};
		// override configuration options with user supplied object
		cfg = $.extend(cfg, g ? { over: f, out: g } : f );

		// instantiate variables
		// cX, cY = current X and Y position of mouse, updated by mousemove event
		// pX, pY = previous X and Y position of mouse, set by mouseover and polling interval
		var cX, cY, pX, pY;

		// A private function for getting mouse position
		var track = function(ev) {
			cX = ev.pageX;
			cY = ev.pageY;
		};

		// A private function for comparing current and previous mouse position
		var compare = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			// compare mouse positions to see if they've crossed the threshold
			if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) < cfg.sensitivity ) {
				$(ob).unbind("mousemove",track);
				// set hoverIntent state to true (so mouseOut can be called)
				ob.hoverIntent_s = 1;
				return cfg.over.apply(ob,[ev]);
			} else {
				// set previous coordinates for next time
				pX = cX; pY = cY;
				// use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)
				ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval );
			}
		};

		// A private function for delaying the mouseOut function
		var delay = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			ob.hoverIntent_s = 0;
			return cfg.out.apply(ob,[ev]);
		};

		// A private function for handling mouse 'hovering'
		var handleHover = function(e) {
			// next three lines copied from jQuery.hover, ignore children onMouseOver/onMouseOut
			var p = (e.type == "mouseover" ? e.fromElement : e.toElement) || e.relatedTarget;
			while ( p && p != this ) { try { p = p.parentNode; } catch(e) { p = this; } }
			if ( p == this ) { return false; }

			// copy objects to be passed into t (required for event object to be passed in IE)
			var ev = jQuery.extend({},e);
			var ob = this;

			// cancel hoverIntent timer if it exists
			if (ob.hoverIntent_t) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); }

			// else e.type == "onmouseover"
			if (e.type == "mouseover") {
				// set "previous" X and Y position based on initial entry point
				pX = ev.pageX; pY = ev.pageY;
				// update "current" X and Y position based on mousemove
				$(ob).bind("mousemove",track);
				// start polling interval (self-calling timeout) to compare mouse coordinates over time
				if (ob.hoverIntent_s != 1) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );}

			// else e.type == "onmouseout"
			} else {
				// unbind expensive mousemove event
				$(ob).unbind("mousemove",track);
				// if hoverIntent state is true, then call the mouseOut function after the specified delay
				if (ob.hoverIntent_s == 1) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );}
			}
		};

		// bind the function to the two event listeners
		return this.mouseover(handleHover).mouseout(handleHover);
	};
})(jQuery);
 
 
 
/*!
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2009 M. Alsup
 * Version: 2.73 (04-NOV-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 *
 * Originally based on the work of:
 *	1) Matt Oakes
 *	2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/)
 *	3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/)
 */
;(function($) {

var ver = '2.73';

// if $.support is not defined (pre jQuery 1.3) add what I need
if ($.support == undefined) {
	$.support = {
		opacity: !($.browser.msie)
	};
}

function debug(s) {
	if ($.fn.cycle.debug)
		log(s);
}		
function log() {
	if (window.console && window.console.log)
		window.console.log('[cycle] ' + Array.prototype.join.call(arguments,' '));
	//$('body').append('<div>'+Array.prototype.join.call(arguments,' ')+'</div>');
};

// the options arg can be...
//   a number  - indicates an immediate transition should occur to the given slide index
//   a string  - 'stop', 'pause', 'resume', or the name of a transition effect (ie, 'fade', 'zoom', etc)
//   an object - properties to control the slideshow
//
// the arg2 arg can be...
//   the name of an fx (only used in conjunction with a numeric value for 'options')
//   the value true (only used in conjunction with a options == 'resume') and indicates
//	 that the resume should occur immediately (not wait for next timeout)

$.fn.cycle = function(options, arg2) {
	var o = { s: this.selector, c: this.context };

	// in 1.3+ we can fix mistakes with the ready state
	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;
		}
		// is your DOM ready?  http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
		log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));
		return this;
	}

	// iterate the matched nodeset
	return this.each(function() {
		var opts = handleArguments(this, options, arg2);
		if (opts === false)
			return;

		// stop existing slideshow for this container (if there is one)
		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(opts2.currSlide, opts2.nextSlide, opts2, !opts2.rev);

		// if it's an auto slideshow, kick it off
		if (startTime) {
			startTime += (opts2.delay || 0);
			if (startTime < 10)
				startTime = 10;
			debug('first timeout: ' + startTime);
			this.cycleTimeout = setTimeout(function(){go(els,opts2,0,!opts2.rev)}, startTime);
		}
	});
};

// process the args that were passed to the plugin fn
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 'stop':
			cont.cycleStop++; // callbacks look for change
			if (cont.cycleTimeout)
				clearTimeout(cont.cycleTimeout);
			cont.cycleTimeout = 0;
			$(cont).removeData('cycle.opts');
			return false;
		case 'pause':
			cont.cyclePause = 1;
			return false;
		case 'resume':
			cont.cyclePause = 0;
			if (arg2 === true) { // resume now!
				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, 1);
			}
			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) {
		// go to the requested slide
		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 removeFilter(el, opts) {
	if (!$.support.opacity && opts.cleartype && el.style.filter) {
		try { el.style.removeAttribute('filter'); }
		catch(smother) {} // handle old opera versions
	}
};

// one-time initialization
function buildOptions($cont, $slides, els, options, o) {
	// support metadata plugin (v1.0 and v2.0)
	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] : [];
	opts.after.unshift(function(){ opts.busy=0; });

	// push some after callbacks
	if (!$.support.opacity && opts.cleartype)
		opts.after.push(function() { removeFilter(this, opts); });
	if (opts.continuous)
		opts.after.push(function() { go(els,opts,0,!opts.rev); });

	saveOriginalOpts(opts);

	// clearType corrections
	if (!$.support.opacity && opts.cleartype && !opts.cleartypeNoBg)
		clearTypeFix($slides);

	// container requires non-static position so that slides can be position within
	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);

	// if random, mix up the slide array
	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 = 0;
		opts.startingSlide = opts.randomMap[0];
	}
	else if (opts.startingSlide >= els.length)
		opts.startingSlide = 0; // catch bogus input
	opts.currSlide = opts.startingSlide = opts.startingSlide || 0;
	var first = opts.startingSlide;

	// set position and zIndex on all the slides
	$slides.css({position: 'absolute', top:0, left:0}).hide().each(function(i) {
		var z = first ? i >= first ? els.length - (i-first) : first-i : els.length-i;
		$(this).css('z-index', z)
	});

	// make sure first slide is visible
	$(els[first]).css('opacity',1).show(); // opacity bit needed to handle restart use case
	removeFilter(els[first], opts);

	// stretch slides
	if (opts.fit && opts.width)
		$slides.width(opts.width);
	if (opts.fit && opts.height && opts.height != 'auto')
		$slides.height(opts.height);

	// stretch container
	var reshape = opts.containerResize && !$cont.innerHeight();
	if (reshape) { // do this only if container has no size http://tinyurl.com/da2oa9
		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;
			if (!h) h = e.offsetHeight;
			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;

	// apparently a lot of people use image slideshows without height/width attributes on the images.
	// Cycle 2.50+ requires the sizing info for every slide; this block tries to deal with that.
	var requeue = false;
	options.requeueAttempts = options.requeueAttempts || 0;
	$slides.each(function() {
		// try to get height/width of each slide
		var $el = $(this);
		this.cycleH = (opts.fit && opts.height) ? opts.height : $el.height();
		this.cycleW = (opts.fit && opts.width) ? opts.width : $el.width();

		if ( $el.is('img') ) {
			// sigh..  sniffing, hacking, shrugging...  this crappy hack tries to account for what browsers do when
			// an image is being downloaded and the markup did not include sizing info (height/width attributes);
			// there seems to be some "default" sizes used in this situation
			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);
			// don't requeue for images that are still loading but have a valid size
			if (loadingIE || loadingFF || loadingOp || loadingOther) {
				if (o.s && opts.requeueOnImageNotLoaded && ++options.requeueAttempts < 100) { // track retry count so we don't loop forever
					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; // break each loop
				}
				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.animIn = opts.animIn || {};
	opts.animOut = opts.animOut || {};

	$slides.not(':eq('+first+')').css(opts.cssBefore);
	if (opts.cssFirst)
		$($slides[first]).css(opts.cssFirst);

	if (opts.timeout) {
		opts.timeout = parseInt(opts.timeout);
		// ensure that timeout and speed settings are sane
		if (opts.speed.constructor == String)
			opts.speed = $.fx.speeds[opts.speed] || parseInt(opts.speed);
		if (!opts.sync)
			opts.speed = opts.speed / 2;
		while((opts.timeout - opts.speed) < 250) // sanitize timeout
			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) {
		opts.nextSlide = opts.currSlide;
		if (++opts.randomIndex == els.length)
			opts.randomIndex = 0;
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else
		opts.nextSlide = opts.startingSlide >= (els.length-1) ? 0 : opts.startingSlide+1;

	// run transition init fn
	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;
		}
	}

	// fire artificial events
	var e0 = $slides[first];
	if (opts.before.length)
		opts.before[0].apply(e0, [e0, e0, opts, true]);
	if (opts.after.length > 1)
		opts.after[1].apply(e0, [e0, e0, opts, true]);

	if (opts.next)
		$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1)});
	if (opts.prev)
		$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1)});
	if (opts.pager)
		buildPager(els,opts);

	exposeAddSlide(opts, els);

	return opts;
};

// save off original opts so we can restore after clearing state
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;
	// look for multiple effects
	if (opts.fx.indexOf(',') > 0) {
		opts.multiFx = true;
		opts.fxs = opts.fx.replace(/\s*/g,'').split(',');
		// discard any bogus effect names
		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 we have an empty list then we threw everything away!
		if (!opts.fxs.length) {
			log('No valid transitions named; slideshow terminating.');
			return false;
		}
	}
	else if (opts.fx == 'all') {  // auto-gen the list of transitions
		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) {
		// munge the fxs array to make effect selection random
		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;
};

// provide a mechanism for adding slides after the slideshow has started
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); // shuffle needs this
		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')
			$slides.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)
			$.fn.cycle.createPagerAnchor(els.length-1, s, $(opts.pager), els, opts);

		if ($.isFunction(opts.onAddSlide))
			opts.onAddSlide($s);
		else
			$s.hide(); // default behavior
	};
}

// reset internal state; we do this on every pass in order to support multiple effects
$.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); });

	// re-init
	var init = $.fn.cycle.transitions[fx];
	if ($.isFunction(init))
		init(opts.$cont, $(opts.elements), opts);
};

// this is the main engine fn, it handles the timeouts, callbacks and slide index mgmt
function go(els, opts, manual, fwd) {
	// opts.busy is true if we're in the middle of an animation
	if (manual && opts.busy && opts.manualTrump) {
		// let manual transitions requests trump active ones
		$(els).stop(true,true);
		opts.busy = false;
	}
	// don't begin another timeout-based transition if there is one active
	if (opts.busy)
		return;

	var p = opts.$cont[0], curr = els[opts.currSlide], next = els[opts.nextSlide];

	// stop cycling if we have an outstanding stop request
	if (p.cycleStop != opts.stopCount || p.cycleTimeout === 0 && !manual)
		return;

	// check to see if we should stop cycling based on autostop options
	if (!manual && !p.cyclePause &&
		((opts.autostop && (--opts.countdown <= 0)) ||
		(opts.nowrap && !opts.random && opts.nextSlide < opts.currSlide))) {
		if (opts.end)
			opts.end(opts);
		return;
	}

	// if slideshow is paused, only transition on a manual trigger
	if (manual || !p.cyclePause) {
		var fx = opts.fx;
		// keep trying to get the slide size if we don't have it yet
		curr.cycleH = curr.cycleH || $(curr).height();
		curr.cycleW = curr.cycleW || $(curr).width();
		next.cycleH = next.cycleH || $(next).height();
		next.cycleW = next.cycleW || $(next).width();

		// support multiple transition types
		if (opts.multiFx) {
			if (opts.lastFx == undefined || ++opts.lastFx >= opts.fxs.length)
				opts.lastFx = 0;
			fx = opts.fxs[opts.lastFx];
			opts.currFx = fx;
		}

		// one-time fx overrides apply to:  $('div').cycle(3,'zoom');
		if (opts.oneTimeFx) {
			fx = opts.oneTimeFx;
			opts.oneTimeFx = null;
		}

		$.fn.cycle.resetState(opts, fx);

		// run the before callbacks
		if (opts.before.length)
			$.each(opts.before, function(i,o) {
				if (p.cycleStop != opts.stopCount) return;
				o.apply(next, [curr, next, opts, fwd]);
			});

		// stage the after callacks
		var after = function() {
			$.each(opts.after, function(i,o) {
				if (p.cycleStop != opts.stopCount) return;
				o.apply(next, [curr, next, opts, fwd]);
			});
		};

		if (opts.nextSlide != opts.currSlide) {
			// get ready to perform the transition
			opts.busy = 1;
			if (opts.fxFn) // fx function provided?
				opts.fxFn(curr, next, opts, after, fwd);
			else if ($.isFunction($.fn.cycle[opts.fx])) // fx plugin ?
				$.fn.cycle[opts.fx](curr, next, opts, after);
			else
				$.fn.cycle.custom(curr, next, opts, after, manual && opts.fastOnEvent);
		}

		// calculate the next slide
		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];
		}
		else { // sequence
			var roll = (opts.nextSlide + 1) == els.length;
			opts.nextSlide = roll ? 0 : opts.nextSlide+1;
			opts.currSlide = roll ? els.length-1 : opts.nextSlide-1;
		}

		if (opts.pager)
			$.fn.cycle.updateActivePagerLink(opts.pager, opts.currSlide);
	}

	// stage the next transtion
	var ms = 0;
	if (opts.timeout && !opts.continuous)
		ms = getTimeout(curr, next, opts, fwd);
	else if (opts.continuous && p.cyclePause) // continuous shows work off an after callback, not this timer logic
		ms = 10;
	if (ms > 0)
		p.cycleTimeout = setTimeout(function(){ go(els, opts, 0, !opts.rev) }, ms);
};

// invoked after transition
$.fn.cycle.updateActivePagerLink = function(pager, currSlide) {
	$(pager).each(function() {
		$(this).find('a').removeClass('activeSlide').filter('a:eq('+currSlide+')').addClass('activeSlide');
	});
};

// calculate timeout value for current transition
function getTimeout(curr, next, opts, fwd) {
	if (opts.timeoutFn) {
		// call user provided calc fn
		var t = opts.timeoutFn(curr,next,opts,fwd);
		while ((t - opts.speed) < 250) // sanitize timeout
			t += opts.speed;
		debug('calculated timeout: ' + t + '; speed: ' + opts.speed);
		if (t !== false)
			return t;
	}
	return opts.timeout;
};

// expose next/prev function, caller must pass in state
$.fn.cycle.next = function(opts) { advance(opts, opts.rev?-1:1); };
$.fn.cycle.prev = function(opts) { advance(opts, opts.rev?1:-1);};

// advance slide forward or back
function advance(opts, val) {
	var els = opts.elements;
	var p = opts.$cont[0], timeout = p.cycleTimeout;
	if (timeout) {
		clearTimeout(timeout);
		p.cycleTimeout = 0;
	}
	if (opts.random && val < 0) {
		// move back to the previously display slide
		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) {
		if (++opts.randomIndex == els.length)
			opts.randomIndex = 0;
		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;
		}
	}

	if ($.isFunction(opts.prevNextClick))
		opts.prevNextClick(val > 0, opts.nextSlide, els[opts.nextSlide]);
	go(els, opts, 1, val>=0);
	return false;
};

function buildPager(els, opts) {
	var $p = $(opts.pager);
	$.each(els, function(i,o) {
		$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);
	});
   $.fn.cycle.updateActivePagerLink(opts.pager, opts.startingSlide);
};

$.fn.cycle.createPagerAnchor = function(i, el, $p, els, opts) {
	var a;
	if ($.isFunction(opts.pagerAnchorBuilder))
		a = opts.pagerAnchorBuilder(i,el);
	else
		a = '<a href="#">'+(i+1)+'</a>';
		
	if (!a)
		return;
	var $a = $(a);
	// don't reparent if anchor is in the dom
	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);
		}
	}

	$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;
		}
		if ($.isFunction(opts.pagerClick))
			opts.pagerClick(opts.nextSlide, els[opts.nextSlide]);
		go(els,opts,1,opts.currSlide < i); // trigger the trans
		return false;
	});
	
	if (opts.pagerEvent != 'click')
		$a.click(function(){return false;}); // supress click
	
	if (opts.pauseOnPagerHover)
		$a.hover(function() { opts.$cont[0].cyclePause++; }, function() { opts.$cont[0].cyclePause--; } );
};

// helper fn to calculate the number of slides between the current and the next
$.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;
};

// fix clearType problems in ie6 by setting an explicit bg color
// (otherwise text slides look horrible during a fade transition)
function clearTypeFix($slides) {
	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.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)); });
};

// reset common props before the next transition
$.fn.cycle.commonReset = function(curr,next,opts,w,h,rev) {
	$(opts.elements).not(curr).hide();
	opts.cssBefore.opacity = 1;
	opts.cssBefore.display = 'block';
	if (w !== false && next.cycleW > 0)
		opts.cssBefore.width = next.cycleW;
	if (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));
};

// the actual fn for effecting a transition
$.fn.cycle.custom = function(curr, next, opts, cb, 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, cb)};
	$l.animate(opts.animOut, speedOut, easeOut, function() {
		if (opts.cssAfter) $l.css(opts.cssAfter);
		if (!opts.sync) fn();
	});
	if (opts.sync) fn();
};

// transition definitions - only fade is defined here, transition pack defines the rest
$.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; };

// override these globally if you like (they are all optional)
$.fn.cycle.defaults = {
	fx:			  'fade', // name of transition effect (or comma separated names, ex: fade,scrollUp,shuffle)
	timeout:	   4000,  // milliseconds between slide transitions (0 to disable auto advance)
	timeoutFn:	 null,  // callback for determining per-slide timeout value:  function(currSlideElement, nextSlideElement, options, forwardFlag)
	continuous:	   0,	  // true to start next transition immediately after current one completes
	speed:		   1000,  // speed of the transition (any valid fx speed value)
	speedIn:	   null,  // speed of the 'in' transition
	speedOut:	   null,  // speed of the 'out' transition
	next:		   null,  // selector for element to use as click trigger for next slide
	prev:		   null,  // selector for element to use as click trigger for previous slide
	prevNextClick: null,  // callback fn for prev/next clicks:	function(isNext, zeroBasedSlideIndex, slideElement)
	prevNextEvent:'click',// event which drives the manual transition to the previous or next slide
	pager:		   null,  // selector for element to use as pager container
	pagerClick:	   null,  // callback fn for pager clicks:	function(zeroBasedSlideIndex, slideElement)
	pagerEvent:	  'click', // name of event which drives the pager navigation
	pagerAnchorBuilder: null, // callback fn for building anchor links:  function(index, DOMelement)
	before:		   null,  // transition callback (scope set to element to be shown):	 function(currSlideElement, nextSlideElement, options, forwardFlag)
	after:		   null,  // transition callback (scope set to element that was shown):  function(currSlideElement, nextSlideElement, options, forwardFlag)
	end:		   null,  // callback invoked when the slideshow terminates (use with autostop or nowrap options): function(options)
	easing:		   null,  // easing method for both in and out transitions
	easeIn:		   null,  // easing for "in" transition
	easeOut:	   null,  // easing for "out" transition
	shuffle:	   null,  // coords for shuffle animation, ex: { top:15, left: 200 }
	animIn:		   null,  // properties that define how the slide animates in
	animOut:	   null,  // properties that define how the slide animates out
	cssBefore:	   null,  // properties that define the initial state of the slide before transitioning in
	cssAfter:	   null,  // properties that defined the state of the slide after transitioning out
	fxFn:		   null,  // function used to control the transition: function(currSlideElement, nextSlideElement, options, afterCalback, forwardFlag)
	height:		  'auto', // container height
	startingSlide: 0,	  // zero-based index of the first slide to be displayed
	sync:		   1,	  // true if in/out transitions should occur simultaneously
	random:		   0,	  // true for random, false for sequence (not applicable to shuffle fx)
	fit:		   0,	  // force slides to fit container
	containerResize: 1,	  // resize container to fit largest slide
	pause:		   0,	  // true to enable "pause on hover"
	pauseOnPagerHover: 0, // true to pause when hovering over pager link
	autostop:	   0,	  // true to end slideshow after X transitions (where X == slide count)
	autostopCount: 0,	  // number of transitions (optionally used with autostop to define X)
	delay:		   0,	  // additional delay (in ms) for first transition (hint: can be negative)
	slideExpr:	   null,  // expression for selecting slides (if something other than all children is required)
	cleartype:	   !$.support.opacity,  // true if clearType corrections should be applied (for IE)
	cleartypeNoBg: false, // set to true to disable extra cleartype fixing (leave false to force background color setting on slides)
	nowrap:		   0,	  // true to prevent slideshow from wrapping
	fastOnEvent:   0,	  // force fast transitions when triggered manually (via pager or prev/next); value == time in ms
	randomizeEffects: 1,  // valid when multiple effects are used; true to make the effect sequence random
	rev:		   0,	 // causes animations to transition in reverse
	manualTrump:   true,  // causes manual transition to stop an active transition instead of being ignored
	requeueOnImageNotLoaded: true, // requeue the slideshow if any image slides are not yet loaded
	requeueTimeout: 250   // ms delay for requeue
};

})(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-2008 M. Alsup
 * Version:	 2.72
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($) {

//
// These functions define one-time slide initialization for the named
// transitions. To save file size feel free to remove any of these that you
// don't need.
//
$.fn.cycle.transitions.none = function($cont, $slides, opts) {
	opts.fxFn = function(curr,next,opts,after){
		$(next).show();
		$(curr).hide();
		after();
	};
}

// scrollUp/Down/Left/Right
$.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, 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, 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, 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, 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) {
		$.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) {
		$.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 };
};

// slideX/slideY
$.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, top: 0, 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, top: 0, height: 0 };
	opts.animIn	 = { height: 'show' };
	opts.animOut = { height: 0 };
};

// shuffle
$.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);
	});
	// only adjust speed once!
	if (!opts.speedAdjusted) {
		opts.speed = opts.speed / 2; // shuffle has 2 transitions
		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());

	// custom transition fn (hat tip to Benjamin Sterling for this bit of sweetness!)
	opts.fxFn = function(curr, next, opts, cb, 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();
			});
		});
	};
	opts.cssBefore = { display: 'block', opacity: 1, top: 0, left: 0 };
};

// turnUp/Down/Left/Right
$.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.cssFirst  = { top: 0 };
	opts.cssBefore = { left: 0, 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, top: 0, 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, 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;
	});
	opts.cssBefore = { top: 0, left: 0, width: 0 };
	opts.animIn	   = { left: 0 };
	opts.animOut   = { width: 0 };
};

// zoom
$.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;
		opts.animIn	   = { top: 0, left: 0, width: next.cycleW, height: next.cycleH };
		opts.animOut   = { width: 0, height: 0, top: curr.cycleH/2, left: curr.cycleW/2 };
	});
	opts.cssFirst = { top:0, left: 0 };
	opts.cssBefore = { width: 0, height: 0 };
};

// fadeZoom
$.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;
		opts.animIn	= { top: 0, left: 0, width: next.cycleW, height: next.cycleH };
	});
	opts.cssBefore = { width: 0, height: 0 };
	opts.animOut  = { opacity: 0 };
};

// blindX
$.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, top: 0 };
	opts.animIn = { left: 0 };
	opts.animOut  = { left: w };
};
// blindY
$.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, left: 0 };
	opts.animIn = { top: 0 };
	opts.animOut  = { top: h };
};
// blindZ
$.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, left: w };
	opts.animIn = { top: 0, left: 0 };
	opts.animOut  = { top: h, left: w };
};

// growX - grow horizontally from centered 0 width
$.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, width: this.cycleW };
		opts.animOut = { left: 0 };
	});
	opts.cssBefore = { width: 0, top: 0 };
};
// growY - grow vertically from centered 0 height
$.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, height: this.cycleH };
		opts.animOut = { top: 0 };
	});
	opts.cssBefore = { height: 0, left: 0 };
};

// curtainX - squeeze in both edges horizontally
$.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, width: this.cycleW };
		opts.animOut = { left: curr.cycleW/2, width: 0 };
	});
	opts.cssBefore = { top: 0, width: 0 };
};
// curtainY - squeeze in both edges vertically
$.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, height: next.cycleH };
		opts.animOut = { top: curr.cycleH/2, height: 0 };
	});
	opts.cssBefore = { left: 0, height: 0 };
};

// cover - curr slide covered by next slide
$.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, top: 0};
	opts.animOut = { opacity: 1 };
	opts.cssBefore = { top: 0, left: 0 };
};

// uncover - curr slide moves off next slide
$.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, top: 0 };
	opts.animOut = { opacity: 1 };
	opts.cssBefore = { top: 0, left: 0 };
};

// toss - move top slide and fade away
$.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);
		// provide default toss settings if animOut not provided
		if (!opts.animOut.left && !opts.animOut.top)
			opts.animOut = { left: w*2, top: -h/2, opacity: 0 };
		else
			opts.animOut.opacity = 0;
	});
	opts.cssBefore = { left: 0, top: 0 };
	opts.animIn = { left: 0 };
};

// wipe - clip animation
$.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');
		})();
	});
	opts.cssBefore = { display: 'block', opacity: 1, top: 0, left: 0 };
	opts.animIn	   = { left: 0 };
	opts.animOut   = { left: 0 };
};

})(jQuery);

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

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

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

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




/**
 * jQuery Validation Plugin 1.8.0
 *
 * http://bassistance.de/jquery-plugins/jquery-plugin-validation/
 * http://docs.jquery.com/Plugins/Validation
 *
 * Copyright (c) 2006 - 2011 J??rn Zaefferer
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

(function($) {

$.extend($.fn, {
	// http://docs.jquery.com/Plugins/Validation/validate
	validate: function( options ) {

		// if nothing is selected, return nothing; can't chain anyway
		if (!this.length) {
			options && options.debug && window.console && console.warn( "nothing selected, can't validate, returning nothing" );
			return;
		}

		// check if a validator for this form was already created
		var validator = $.data(this[0], 'validator');
		if ( validator ) {
			return validator;
		}

		validator = new $.validator( options, this[0] );
		$.data(this[0], 'validator', validator);

		if ( validator.settings.onsubmit ) {

			// allow suppresing validation by adding a cancel class to the submit button
			this.find("input, button").filter(".cancel").click(function() {
				validator.cancelSubmit = true;
			});

			// when a submitHandler is used, capture the submitting button
			if (validator.settings.submitHandler) {
				this.find("input, button").filter(":submit").click(function() {
					validator.submitButton = this;
				});
			}

			// validate the form on submit
			this.submit( function( event ) {
				if ( validator.settings.debug )
					// prevent form submit to be able to see console output
					event.preventDefault();

				function handle() {
					if ( validator.settings.submitHandler ) {
						if (validator.submitButton) {
							// insert a hidden input as a replacement for the missing submit button
							var hidden = $("<input type='hidden'/>").attr("name", validator.submitButton.name).val(validator.submitButton.value).appendTo(validator.currentForm);
						}
						validator.settings.submitHandler.call( validator, validator.currentForm );
						if (validator.submitButton) {
							// and clean up afterwards; thanks to no-block-scope, hidden can be referenced
							hidden.remove();
						}
						return false;
					}
					return true;
				}

				// prevent submit for invalid forms or custom submit handlers
				if ( validator.cancelSubmit ) {
					validator.cancelSubmit = false;
					return handle();
				}
				if ( validator.form() ) {
					if ( validator.pendingRequest ) {
						validator.formSubmitted = true;
						return false;
					}
					return handle();
				} else {
					validator.focusInvalid();
					return false;
				}
			});
		}

		return validator;
	},
	// http://docs.jquery.com/Plugins/Validation/valid
	valid: function() {
        if ( $(this[0]).is('form')) {
            return this.validate().form();
        } else {
            var valid = true;
            var validator = $(this[0].form).validate();
            this.each(function() {
				valid &= validator.element(this);
            });
            return valid;
        }
    },
	// attributes: space seperated list of attributes to retrieve and remove
	removeAttrs: function(attributes) {
		var result = {},
			$element = this;
		$.each(attributes.split(/\s/), function(index, value) {
			result[value] = $element.attr(value);
			$element.removeAttr(value);
		});
		return result;
	},
	// http://docs.jquery.com/Plugins/Validation/rules
	rules: function(command, argument) {
		var element = this[0];

		if (command) {
			var settings = $.data(element.form, 'validator').settings;
			var staticRules = settings.rules;
			var existingRules = $.validator.staticRules(element);
			switch(command) {
			case "add":
				$.extend(existingRules, $.validator.normalizeRule(argument));
				staticRules[element.name] = existingRules;
				if (argument.messages)
					settings.messages[element.name] = $.extend( settings.messages[element.name], argument.messages );
				break;
			case "remove":
				if (!argument) {
					delete staticRules[element.name];
					return existingRules;
				}
				var filtered = {};
				$.each(argument.split(/\s/), function(index, method) {
					filtered[method] = existingRules[method];
					delete existingRules[method];
				});
				return filtered;
			}
		}

		var data = $.validator.normalizeRules(
		$.extend(
			{},
			$.validator.metadataRules(element),
			$.validator.classRules(element),
			$.validator.attributeRules(element),
			$.validator.staticRules(element)
		), element);

		// make sure required is at front
		if (data.required) {
			var param = data.required;
			delete data.required;
			data = $.extend({required: param}, data);
		}

		return data;
	}
});

// Custom selectors
$.extend($.expr[":"], {
	// http://docs.jquery.com/Plugins/Validation/blank
	blank: function(a) {return !$.trim("" + a.value);},
	// http://docs.jquery.com/Plugins/Validation/filled
	filled: function(a) {return !!$.trim("" + a.value);},
	// http://docs.jquery.com/Plugins/Validation/unchecked
	unchecked: function(a) {return !a.checked;}
});

// constructor for validator
$.validator = function( options, form ) {
	this.settings = $.extend( true, {}, $.validator.defaults, options );
	this.currentForm = form;
	this.init();
};

$.validator.format = function(source, params) {
	if ( arguments.length == 1 )
		return function() {
			var args = $.makeArray(arguments);
			args.unshift(source);
			return $.validator.format.apply( this, args );
		};
	if ( arguments.length > 2 && params.constructor != Array  ) {
		params = $.makeArray(arguments).slice(1);
	}
	if ( params.constructor != Array ) {
		params = [ params ];
	}
	$.each(params, function(i, n) {
		source = source.replace(new RegExp("\\{" + i + "\\}", "g"), n);
	});
	return source;
};

$.extend($.validator, {

	defaults: {
		messages: {},
		groups: {},
		rules: {},
		errorClass: "error",
		validClass: "valid",
		errorElement: "label",
		focusInvalid: true,
		errorContainer: $( [] ),
		errorLabelContainer: $( [] ),
		onsubmit: true,
		ignore: [],
		ignoreTitle: false,
		onfocusin: function(element) {
			this.lastActive = element;

			// hide error label and remove error class on focus if enabled
			if ( this.settings.focusCleanup && !this.blockFocusCleanup ) {
				this.settings.unhighlight && this.settings.unhighlight.call( this, element, this.settings.errorClass, this.settings.validClass );
				this.addWrapper(this.errorsFor(element)).hide();
			}
		},
		onfocusout: function(element) {
			if ( !this.checkable(element) && (element.name in this.submitted || !this.optional(element)) ) {
				this.element(element);
			}
		},
		onkeyup: function(element) {
			if ( element.name in this.submitted || element == this.lastElement ) {
				this.element(element);
			}
		},
		onclick: function(element) {
			// click on selects, radiobuttons and checkboxes
			if ( element.name in this.submitted )
				this.element(element);
			// or option elements, check parent select in that case
			else if (element.parentNode.name in this.submitted)
				this.element(element.parentNode);
		},
		highlight: function( element, errorClass, validClass ) {
			$(element).addClass(errorClass).removeClass(validClass);
		},
		unhighlight: function( element, errorClass, validClass ) {
			$(element).removeClass(errorClass).addClass(validClass);
		}
	},

	// http://docs.jquery.com/Plugins/Validation/Validator/setDefaults
	setDefaults: function(settings) {
		$.extend( $.validator.defaults, settings );
	},

	messages: {
		required: "Este campo es obligatorio.",
		remote: "Please fix this field.",
		email: "Please enter a valid email address.",
		url: "Please enter a valid URL.",
		date: "Please enter a valid date.",
		dateISO: "Please enter a valid date (ISO).",
		number: "Please enter a valid number.",
		digits: "Please enter only digits.",
		creditcard: "Please enter a valid credit card number.",
		equalTo: "Please enter the same value again.",
		accept: "Please enter a value with a valid extension.",
		maxlength: $.validator.format("Please enter no more than {0} characters."),
		minlength: $.validator.format("Please enter at least {0} characters."),
		rangelength: $.validator.format("Please enter a value between {0} and {1} characters long."),
		range: $.validator.format("Please enter a value between {0} and {1}."),
		max: $.validator.format("Please enter a value less than or equal to {0}."),
		min: $.validator.format("Please enter a value greater than or equal to {0}.")
	},

	autoCreateRanges: false,

	prototype: {

		init: function() {
			this.labelContainer = $(this.settings.errorLabelContainer);
			this.errorContext = this.labelContainer.length && this.labelContainer || $(this.currentForm);
			this.containers = $(this.settings.errorContainer).add( this.settings.errorLabelContainer );
			this.submitted = {};
			this.valueCache = {};
			this.pendingRequest = 0;
			this.pending = {};
			this.invalid = {};
			this.reset();

			var groups = (this.groups = {});
			$.each(this.settings.groups, function(key, value) {
				$.each(value.split(/\s/), function(index, name) {
					groups[name] = key;
				});
			});
			var rules = this.settings.rules;
			$.each(rules, function(key, value) {
				rules[key] = $.validator.normalizeRule(value);
			});

			function delegate(event) {
				var validator = $.data(this[0].form, "validator"),
					eventType = "on" + event.type.replace(/^validate/, "");
				validator.settings[eventType] && validator.settings[eventType].call(validator, this[0] );
			}
			$(this.currentForm)
				.validateDelegate(":text, :password, :file, select, textarea", "focusin focusout keyup", delegate)
				.validateDelegate(":radio, :checkbox, select, option", "click", delegate);

			if (this.settings.invalidHandler)
				$(this.currentForm).bind("invalid-form.validate", this.settings.invalidHandler);
		},

		// http://docs.jquery.com/Plugins/Validation/Validator/form
		form: function() {
			this.checkForm();
			$.extend(this.submitted, this.errorMap);
			this.invalid = $.extend({}, this.errorMap);
			if (!this.valid())
				$(this.currentForm).triggerHandler("invalid-form", [this]);
			this.showErrors();
			return this.valid();
		},

		checkForm: function() {
			this.prepareForm();
			for ( var i = 0, elements = (this.currentElements = this.elements()); elements[i]; i++ ) {
				this.check( elements[i] );
			}
			return this.valid();
		},

		// http://docs.jquery.com/Plugins/Validation/Validator/element
		element: function( element ) {
			element = this.clean( element );
			this.lastElement = element;
			this.prepareElement( element );
			this.currentElements = $(element);
			var result = this.check( element );
			if ( result ) {
				delete this.invalid[element.name];
			} else {
				this.invalid[element.name] = true;
			}
			if ( !this.numberOfInvalids() ) {
				// Hide error containers on last error
				this.toHide = this.toHide.add( this.containers );
			}
			this.showErrors();
			return result;
		},

		// http://docs.jquery.com/Plugins/Validation/Validator/showErrors
		showErrors: function(errors) {
			if(errors) {
				// add items to error list and map
				$.extend( this.errorMap, errors );
				this.errorList = [];
				for ( var name in errors ) {
					this.errorList.push({
						message: errors[name],
						element: this.findByName(name)[0]
					});
				}
				// remove items from success list
				this.successList = $.grep( this.successList, function(element) {
					return !(element.name in errors);
				});
			}
			this.settings.showErrors
				? this.settings.showErrors.call( this, this.errorMap, this.errorList )
				: this.defaultShowErrors();
		},

		// http://docs.jquery.com/Plugins/Validation/Validator/resetForm
		resetForm: function() {
			if ( $.fn.resetForm )
				$( this.currentForm ).resetForm();
			this.submitted = {};
			this.prepareForm();
			this.hideErrors();
			this.elements().removeClass( this.settings.errorClass );
		},

		numberOfInvalids: function() {
			return this.objectLength(this.invalid);
		},

		objectLength: function( obj ) {
			var count = 0;
			for ( var i in obj )
				count++;
			return count;
		},

		hideErrors: function() {
			this.addWrapper( this.toHide ).hide();
		},

		valid: function() {
			return this.size() == 0;
		},

		size: function() {
			return this.errorList.length;
		},

		focusInvalid: function() {
			if( this.settings.focusInvalid ) {
				try {
					$(this.findLastActive() || this.errorList.length && this.errorList[0].element || [])
					.filter(":visible")
					.focus()
					// manually trigger focusin event; without it, focusin handler isn't called, findLastActive won't have anything to find
					.trigger("focusin");
				} catch(e) {
					// ignore IE throwing errors when focusing hidden elements
				}
			}
		},

		findLastActive: function() {
			var lastActive = this.lastActive;
			return lastActive && $.grep(this.errorList, function(n) {
				return n.element.name == lastActive.name;
			}).length == 1 && lastActive;
		},

		elements: function() {
			var validator = this,
				rulesCache = {};

			// select all valid inputs inside the form (no submit or reset buttons)
			// workaround $Query([]).add until http://dev.jquery.com/ticket/2114 is solved
			return $([]).add(this.currentForm.elements)
			.filter(":input")
			.not(":submit, :reset, :image, [disabled]")
			.not( this.settings.ignore )
			.filter(function() {
				!this.name && validator.settings.debug && window.console && console.error( "%o has no name assigned", this);

				// select only the first element for each name, and only those with rules specified
				if ( this.name in rulesCache || !validator.objectLength($(this).rules()) )
					return false;

				rulesCache[this.name] = true;
				return true;
			});
		},

		clean: function( selector ) {
			return $( selector )[0];
		},

		errors: function() {
			return $( this.settings.errorElement + "." + this.settings.errorClass, this.errorContext );
		},

		reset: function() {
			this.successList = [];
			this.errorList = [];
			this.errorMap = {};
			this.toShow = $([]);
			this.toHide = $([]);
			this.currentElements = $([]);
		},

		prepareForm: function() {
			this.reset();
			this.toHide = this.errors().add( this.containers );
		},

		prepareElement: function( element ) {
			this.reset();
			this.toHide = this.errorsFor(element);
		},

		check: function( element ) {
			element = this.clean( element );

			// if radio/checkbox, validate first element in group instead
			if (this.checkable(element)) {
				element = this.findByName( element.name ).not(this.settings.ignore)[0];
			}

			var rules = $(element).rules();
			var dependencyMismatch = false;
			for (var method in rules ) {
				var rule = { method: method, parameters: rules[method] };
				try {
					var result = $.validator.methods[method].call( this, element.value.replace(/\r/g, ""), element, rule.parameters );

					// if a method indicates that the field is optional and therefore valid,
					// don't mark it as valid when there are no other rules
					if ( result == "dependency-mismatch" ) {
						dependencyMismatch = true;
						continue;
					}
					dependencyMismatch = false;

					if ( result == "pending" ) {
						this.toHide = this.toHide.not( this.errorsFor(element) );
						return;
					}

					if( !result ) {
						this.formatAndAdd( element, rule );
						return false;
					}
				} catch(e) {
					this.settings.debug && window.console && console.log("exception occured when checking element " + element.id
						 + ", check the '" + rule.method + "' method", e);
					throw e;
				}
			}
			if (dependencyMismatch)
				return;
			if ( this.objectLength(rules) )
				this.successList.push(element);
			return true;
		},

		// return the custom message for the given element and validation method
		// specified in the element's "messages" metadata
		customMetaMessage: function(element, method) {
			if (!$.metadata)
				return;

			var meta = this.settings.meta
				? $(element).metadata()[this.settings.meta]
				: $(element).metadata();

			return meta && meta.messages && meta.messages[method];
		},

		// return the custom message for the given element name and validation method
		customMessage: function( name, method ) {
			var m = this.settings.messages[name];
			return m && (m.constructor == String
				? m
				: m[method]);
		},

		// return the first defined argument, allowing empty strings
		findDefined: function() {
			for(var i = 0; i < arguments.length; i++) {
				if (arguments[i] !== undefined)
					return arguments[i];
			}
			return undefined;
		},

		defaultMessage: function( element, method) {
			return this.findDefined(
				this.customMessage( element.name, method ),
				this.customMetaMessage( element, method ),
				// title is never undefined, so handle empty string as undefined
				!this.settings.ignoreTitle && element.title || undefined,
				$.validator.messages[method],
				"<strong>Warning: No message defined for " + element.name + "</strong>"
			);
		},

		formatAndAdd: function( element, rule ) {
			var message = this.defaultMessage( element, rule.method ),
				theregex = /\$?\{(\d+)\}/g;
			if ( typeof message == "function" ) {
				message = message.call(this, rule.parameters, element);
			} else if (theregex.test(message)) {
				message = jQuery.format(message.replace(theregex, '{$1}'), rule.parameters);
			}
			this.errorList.push({
				message: message,
				element: element
			});

			this.errorMap[element.name] = message;
			this.submitted[element.name] = message;
		},

		addWrapper: function(toToggle) {
			if ( this.settings.wrapper )
				toToggle = toToggle.add( toToggle.parent( this.settings.wrapper ) );
			return toToggle;
		},

		defaultShowErrors: function() {
			for ( var i = 0; this.errorList[i]; i++ ) {
				var error = this.errorList[i];
				this.settings.highlight && this.settings.highlight.call( this, error.element, this.settings.errorClass, this.settings.validClass );
				this.showLabel( error.element, error.message );
			}
			if( this.errorList.length ) {
				this.toShow = this.toShow.add( this.containers );
			}
			if (this.settings.success) {
				for ( var i = 0; this.successList[i]; i++ ) {
					this.showLabel( this.successList[i] );
				}
			}
			if (this.settings.unhighlight) {
				for ( var i = 0, elements = this.validElements(); elements[i]; i++ ) {
					this.settings.unhighlight.call( this, elements[i], this.settings.errorClass, this.settings.validClass );
				}
			}
			this.toHide = this.toHide.not( this.toShow );
			this.hideErrors();
			this.addWrapper( this.toShow ).show();
		},

		validElements: function() {
			return this.currentElements.not(this.invalidElements());
		},

		invalidElements: function() {
			return $(this.errorList).map(function() {
				return this.element;
			});
		},

		showLabel: function(element, message) {
			var label = this.errorsFor( element );
			if ( label.length ) {
				// refresh error/success class
				label.removeClass().addClass( this.settings.errorClass );

				// check if we have a generated label, replace the message then
				label.attr("generated") && label.html(message);
			} else {
				// create label
				label = $("<" + this.settings.errorElement + "/>")
					.attr({"for":  this.idOrName(element), generated: true})
					.addClass(this.settings.errorClass)
					.html(message || "");
				if ( this.settings.wrapper ) {
					// make sure the element is visible, even in IE
					// actually showing the wrapped element is handled elsewhere
					label = label.hide().show().wrap("<" + this.settings.wrapper + "/>").parent();
				}
				if ( !this.labelContainer.append(label).length )
					this.settings.errorPlacement
						? this.settings.errorPlacement(label, $(element) )
						: label.insertAfter(element);
			}
			if ( !message && this.settings.success ) {
				label.text("");
				typeof this.settings.success == "string"
					? label.addClass( this.settings.success )
					: this.settings.success( label );
			}
			this.toShow = this.toShow.add(label);
		},

		errorsFor: function(element) {
			var name = this.idOrName(element);
    		return this.errors().filter(function() {
				return $(this).attr('for') == name;
			});
		},

		idOrName: function(element) {
			return this.groups[element.name] || (this.checkable(element) ? element.name : element.id || element.name);
		},

		checkable: function( element ) {
			return /radio|checkbox/i.test(element.type);
		},

		findByName: function( name ) {
			// select by name and filter by form for performance over form.find("[name=...]")
			var form = this.currentForm;
			return $(document.getElementsByName(name)).map(function(index, element) {
				return element.form == form && element.name == name && element  || null;
			});
		},

		getLength: function(value, element) {
			switch( element.nodeName.toLowerCase() ) {
			case 'select':
				return $("option:selected", element).length;
			case 'input':
				if( this.checkable( element) )
					return this.findByName(element.name).filter(':checked').length;
			}
			return value.length;
		},

		depend: function(param, element) {
			return this.dependTypes[typeof param]
				? this.dependTypes[typeof param](param, element)
				: true;
		},

		dependTypes: {
			"boolean": function(param, element) {
				return param;
			},
			"string": function(param, element) {
				return !!$(param, element.form).length;
			},
			"function": function(param, element) {
				return param(element);
			}
		},

		optional: function(element) {
			return !$.validator.methods.required.call(this, $.trim(element.value), element) && "dependency-mismatch";
		},

		startRequest: function(element) {
			if (!this.pending[element.name]) {
				this.pendingRequest++;
				this.pending[element.name] = true;
			}
		},

		stopRequest: function(element, valid) {
			this.pendingRequest--;
			// sometimes synchronization fails, make sure pendingRequest is never < 0
			if (this.pendingRequest < 0)
				this.pendingRequest = 0;
			delete this.pending[element.name];
			if ( valid && this.pendingRequest == 0 && this.formSubmitted && this.form() ) {
				$(this.currentForm).submit();
				this.formSubmitted = false;
			} else if (!valid && this.pendingRequest == 0 && this.formSubmitted) {
				$(this.currentForm).triggerHandler("invalid-form", [this]);
				this.formSubmitted = false;
			}
		},

		previousValue: function(element) {
			return $.data(element, "previousValue") || $.data(element, "previousValue", {
				old: null,
				valid: true,
				message: this.defaultMessage( element, "remote" )
			});
		}

	},

	classRuleSettings: {
		required: {required: true},
		email: {email: true},
		url: {url: true},
		date: {date: true},
		dateISO: {dateISO: true},
		dateDE: {dateDE: true},
		number: {number: true},
		numberDE: {numberDE: true},
		digits: {digits: true},
		creditcard: {creditcard: true}
	},

	addClassRules: function(className, rules) {
		className.constructor == String ?
			this.classRuleSettings[className] = rules :
			$.extend(this.classRuleSettings, className);
	},

	classRules: function(element) {
		var rules = {};
		var classes = $(element).attr('class');
		classes && $.each(classes.split(' '), function() {
			if (this in $.validator.classRuleSettings) {
				$.extend(rules, $.validator.classRuleSettings[this]);
			}
		});
		return rules;
	},

	attributeRules: function(element) {
		var rules = {};
		var $element = $(element);

		for (var method in $.validator.methods) {
			var value = $element.attr(method);
			if (value) {
				rules[method] = value;
			}
		}

		// maxlength may be returned as -1, 2147483647 (IE) and 524288 (safari) for text inputs
		if (rules.maxlength && /-1|2147483647|524288/.test(rules.maxlength)) {
			delete rules.maxlength;
		}

		return rules;
	},

	metadataRules: function(element) {
		if (!$.metadata) return {};

		var meta = $.data(element.form, 'validator').settings.meta;
		return meta ?
			$(element).metadata()[meta] :
			$(element).metadata();
	},

	staticRules: function(element) {
		var rules = {};
		var validator = $.data(element.form, 'validator');
		if (validator.settings.rules) {
			rules = $.validator.normalizeRule(validator.settings.rules[element.name]) || {};
		}
		return rules;
	},

	normalizeRules: function(rules, element) {
		// handle dependency check
		$.each(rules, function(prop, val) {
			// ignore rule when param is explicitly false, eg. required:false
			if (val === false) {
				delete rules[prop];
				return;
			}
			if (val.param || val.depends) {
				var keepRule = true;
				switch (typeof val.depends) {
					case "string":
						keepRule = !!$(val.depends, element.form).length;
						break;
					case "function":
						keepRule = val.depends.call(element, element);
						break;
				}
				if (keepRule) {
					rules[prop] = val.param !== undefined ? val.param : true;
				} else {
					delete rules[prop];
				}
			}
		});

		// evaluate parameters
		$.each(rules, function(rule, parameter) {
			rules[rule] = $.isFunction(parameter) ? parameter(element) : parameter;
		});

		// clean number parameters
		$.each(['minlength', 'maxlength', 'min', 'max'], function() {
			if (rules[this]) {
				rules[this] = Number(rules[this]);
			}
		});
		$.each(['rangelength', 'range'], function() {
			if (rules[this]) {
				rules[this] = [Number(rules[this][0]), Number(rules[this][1])];
			}
		});

		if ($.validator.autoCreateRanges) {
			// auto-create ranges
			if (rules.min && rules.max) {
				rules.range = [rules.min, rules.max];
				delete rules.min;
				delete rules.max;
			}
			if (rules.minlength && rules.maxlength) {
				rules.rangelength = [rules.minlength, rules.maxlength];
				delete rules.minlength;
				delete rules.maxlength;
			}
		}

		// To support custom messages in metadata ignore rule methods titled "messages"
		if (rules.messages) {
			delete rules.messages;
		}

		return rules;
	},

	// Converts a simple string to a {string: true} rule, e.g., "required" to {required:true}
	normalizeRule: function(data) {
		if( typeof data == "string" ) {
			var transformed = {};
			$.each(data.split(/\s/), function() {
				transformed[this] = true;
			});
			data = transformed;
		}
		return data;
	},

	// http://docs.jquery.com/Plugins/Validation/Validator/addMethod
	addMethod: function(name, method, message) {
		$.validator.methods[name] = method;
		$.validator.messages[name] = message != undefined ? message : $.validator.messages[name];
		if (method.length < 3) {
			$.validator.addClassRules(name, $.validator.normalizeRule(name));
		}
	},

	methods: {

		// http://docs.jquery.com/Plugins/Validation/Methods/required
		required: function(value, element, param) {
			// check if dependency is met
			if ( !this.depend(param, element) )
				return "dependency-mismatch";
			switch( element.nodeName.toLowerCase() ) {
			case 'select':
				// could be an array for select-multiple or a string, both are fine this way
				var val = $(element).val();
				return val && val.length > 0;
			case 'input':
				if ( this.checkable(element) )
					return this.getLength(value, element) > 0;
			default:
				return $.trim(value).length > 0;
			}
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/remote
		remote: function(value, element, param) {
			if ( this.optional(element) )
				return "dependency-mismatch";

			var previous = this.previousValue(element);
			if (!this.settings.messages[element.name] )
				this.settings.messages[element.name] = {};
			previous.originalMessage = this.settings.messages[element.name].remote;
			this.settings.messages[element.name].remote = previous.message;

			param = typeof param == "string" && {url:param} || param;

			if ( this.pending[element.name] ) {
				return "pending";
			}
			if ( previous.old === value ) {
				return previous.valid;
			}

			previous.old = value;
			var validator = this;
			this.startRequest(element);
			var data = {};
			data[element.name] = value;
			$.ajax($.extend(true, {
				url: param,
				mode: "abort",
				port: "validate" + element.name,
				dataType: "json",
				data: data,
				success: function(response) {
					validator.settings.messages[element.name].remote = previous.originalMessage;
					var valid = response === true;
					if ( valid ) {
						var submitted = validator.formSubmitted;
						validator.prepareElement(element);
						validator.formSubmitted = submitted;
						validator.successList.push(element);
						validator.showErrors();
					} else {
						var errors = {};
						var message = response || validator.defaultMessage( element, "remote" );
						errors[element.name] = previous.message = $.isFunction(message) ? message(value) : message;
						validator.showErrors(errors);
					}
					previous.valid = valid;
					validator.stopRequest(element, valid);
				}
			}, param));
			return "pending";
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/minlength
		minlength: function(value, element, param) {
			return this.optional(element) || this.getLength($.trim(value), element) >= param;
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/maxlength
		maxlength: function(value, element, param) {
			return this.optional(element) || this.getLength($.trim(value), element) <= param;
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/rangelength
		rangelength: function(value, element, param) {
			var length = this.getLength($.trim(value), element);
			return this.optional(element) || ( length >= param[0] && length <= param[1] );
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/min
		min: function( value, element, param ) {
			return this.optional(element) || value >= param;
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/max
		max: function( value, element, param ) {
			return this.optional(element) || value <= param;
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/range
		range: function( value, element, param ) {
			return this.optional(element) || ( value >= param[0] && value <= param[1] );
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/email
		email: function(value, element) {
			// contributed by Scott Gonzalez: http://projects.scottsplayground.com/email_address_validation/
			return this.optional(element) || /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(value);
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/url
		url: function(value, element) {
			// contributed by Scott Gonzalez: http://projects.scottsplayground.com/iri/
			return this.optional(element) || /^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value);
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/date
		date: function(value, element) {
			return this.optional(element) || !/Invalid|NaN/.test(new Date(value));
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/dateISO
		dateISO: function(value, element) {
			return this.optional(element) || /^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(value);
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/number
		number: function(value, element) {
			return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(value);
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/digits
		digits: function(value, element) {
			return this.optional(element) || /^\d+$/.test(value);
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/creditcard
		// based on http://en.wikipedia.org/wiki/Luhn
		creditcard: function(value, element) {
			if ( this.optional(element) )
				return "dependency-mismatch";
			// accept only digits and dashes
			if (/[^0-9-]+/.test(value))
				return false;
			var nCheck = 0,
				nDigit = 0,
				bEven = false;

			value = value.replace(/\D/g, "");

			for (var n = value.length - 1; n >= 0; n--) {
				var cDigit = value.charAt(n);
				var nDigit = parseInt(cDigit, 10);
				if (bEven) {
					if ((nDigit *= 2) > 9)
						nDigit -= 9;
				}
				nCheck += nDigit;
				bEven = !bEven;
			}

			return (nCheck % 10) == 0;
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/accept
		accept: function(value, element, param) {
			param = typeof param == "string" ? param.replace(/,/g, '|') : "png|jpe?g|gif";
			return this.optional(element) || value.match(new RegExp(".(" + param + ")$", "i"));
		},

		// http://docs.jquery.com/Plugins/Validation/Methods/equalTo
		equalTo: function(value, element, param) {
			// bind to the blur event of the target in order to revalidate whenever the target field is updated
			// TODO find a way to bind the event just once, avoiding the unbind-rebind overhead
			var target = $(param).unbind(".validate-equalTo").bind("blur.validate-equalTo", function() {
				$(element).valid();
			});
			return value == target.val();
		}

	}

});

// deprecated, use $.validator.format instead
$.format = $.validator.format;

})(jQuery);

// ajax mode: abort
// usage: $.ajax({ mode: "abort"[, port: "uniqueport"]});
// if mode:"abort" is used, the previous request on that port (port can be undefined) is aborted via XMLHttpRequest.abort()
;(function($) {
	var pendingRequests = {};
	// Use a prefilter if available (1.5+)
	if ( $.ajaxPrefilter ) {
		$.ajaxPrefilter(function(settings, _, xhr) {
			var port = settings.port;
			if (settings.mode == "abort") {
				if ( pendingRequests[port] ) {
					pendingRequests[port].abort();
				}
				pendingRequests[port] = xhr;
			}
		});
	} else {
		// Proxy ajax
		var ajax = $.ajax;
		$.ajax = function(settings) {
			var mode = ( "mode" in settings ? settings : $.ajaxSettings ).mode,
				port = ( "port" in settings ? settings : $.ajaxSettings ).port;
			if (mode == "abort") {
				if ( pendingRequests[port] ) {
					pendingRequests[port].abort();
				}
				return (pendingRequests[port] = ajax.apply(this, arguments));
			}
			return ajax.apply(this, arguments);
		};
	}
})(jQuery);

// provides cross-browser focusin and focusout events
// IE has native support, in other browsers, use event caputuring (neither bubbles)

// provides delegate(type: String, delegate: Selector, handler: Callback) plugin for easier event delegation
// handler is only called when $(event.target).is(delegate), in the scope of the jquery-object for event.target
;(function($) {
	// only implement if not provided by jQuery core (since 1.4)
	// TODO verify if jQuery 1.4's implementation is compatible with older jQuery special-event APIs
	if (!jQuery.event.special.focusin && !jQuery.event.special.focusout && document.addEventListener) {
		$.each({
			focus: 'focusin',
			blur: 'focusout'
		}, function( original, fix ){
			$.event.special[fix] = {
				setup:function() {
					this.addEventListener( original, handler, true );
				},
				teardown:function() {
					this.removeEventListener( original, handler, true );
				},
				handler: function(e) {
					arguments[0] = $.event.fix(e);
					arguments[0].type = fix;
					return $.event.handle.apply(this, arguments);
				}
			};
			function handler(e) {
				e = $.event.fix(e);
				e.type = fix;
				return $.event.handle.call(this, e);
			}
		});
	};
	$.extend($.fn, {
		validateDelegate: function(delegate, type, handler) {
			return this.bind(type, function(event) {
				var target = $(event.target);
				if (target.is(delegate)) {
					return handler.apply(target, arguments);
				}
			});
		}
	});
})(jQuery);



// JavaScript Document

/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(function($){
	$.fn.superfish = function(op){

		var sf = $.fn.superfish,
			c = sf.c,
			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
			over = function(){
				var $$ = $(this), menu = getMenu($$);
				clearTimeout(menu.sfTimer);
				$$.showSuperfishUl().siblings().hideSuperfishUl();
			},
			out = function(){
				var $$ = $(this), menu = getMenu($$), o = sf.op;
				clearTimeout(menu.sfTimer);
				menu.sfTimer=setTimeout(function(){
					o.retainPath=($.inArray($$[0],o.$path)>-1);
					$$.hideSuperfishUl();
					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
				},o.delay);	
			},
			getMenu = function($menu){
				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
				sf.op = sf.o[menu.serial];
				return menu;
			},
			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
			
		return this.each(function() {
			var s = this.serial = sf.o.length;
			var o = $.extend({},sf.defaults,op);
			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
					.filter('li:has(ul)').removeClass(o.pathClass);
			});
			sf.o[s] = sf.op = o;
			
			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
				if (o.autoArrows) addArrow( $('>a:first-child',this) );
			})
			.not('.'+c.bcClass)
				.hideSuperfishUl();
			
			var $a = $('a',this);
			$a.each(function(i){
				var $li = $a.eq(i).parents('li');
				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
			});
			o.onInit.call(this);
			
		}).each(function() {
			var menuClasses = [c.menuClass];
			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
			$(this).addClass(menuClasses.join(' '));
		});
	};

	var sf = $.fn.superfish;
	sf.o = [];
	sf.op = {};
	sf.IE7fix = function(){
		var o = sf.op;
		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
			this.toggleClass(sf.c.shadowClass+'-off');
		};
	sf.c = {
		bcClass     : 'sf-breadcrumb',
		menuClass   : 'sf-js-enabled',
		anchorClass : 'sf-with-ul',
		arrowClass  : 'sf-sub-indicator',
		shadowClass : 'sf-shadow'
	};
	sf.defaults = {
		hoverClass	: 'sfHover',
		pathClass	: 'overideThisToUse',
		pathLevels	: 1,
		delay		: 800,
		animation	: {opacity:'show'},
		speed		: 'normal',
		autoArrows	: true,
		dropShadows : true,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	};
	$.fn.extend({
		hideSuperfishUl : function(){
			var o = sf.op,
				not = (o.retainPath===true) ? o.$path : '';
			o.retainPath = false;
			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
					.find('>ul').hide().css('visibility','hidden');
			o.onHide.call($ul);
			return this;
		},
		showSuperfishUl : function(){
			var o = sf.op,
				sh = sf.c.shadowClass+'-off',
				$ul = this.addClass(o.hoverClass)
					.find('>ul:hidden').css('visibility','visible');
			sf.IE7fix.call($ul);
			o.onBeforeShow.call($ul);
			$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
			return this;
		}
	});

})(jQuery);

//CURVY CORNERS
function browserdetect(){var A=navigator.userAgent.toLowerCase();this.isIE=A.indexOf("msie")>-1;this.ieVer=this.isIE?/msie\s(\d\.\d)/.exec(A)[1]:0;this.isMoz=A.indexOf("firefox")!=-1;this.isSafari=A.indexOf("safari")!=-1;this.quirksMode=this.isIE&&(!document.compatMode||document.compatMode.indexOf("BackCompat")>-1);this.isOp="opera" in window;this.isWebKit=A.indexOf("webkit")!=-1;if(this.isIE){this.get_style=function(D,F){if(!(F in D.currentStyle)){return""}var C=/^([\d.]+)(\w*)/.exec(D.currentStyle[F]);if(!C){return D.currentStyle[F]}if(C[1]==0){return"0"}if(C[2]&&C[2]!=="px"){var B=D.style.left;var E=D.runtimeStyle.left;D.runtimeStyle.left=D.currentStyle.left;D.style.left=C[1]+C[2];C[0]=D.style.pixelLeft;D.style.left=B;D.runtimeStyle.left=E}return C[0]}}else{this.get_style=function(B,C){C=C.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();return document.defaultView.getComputedStyle(B,"").getPropertyValue(C)}}}var curvyBrowser=new browserdetect;if(curvyBrowser.isIE){try{document.execCommand("BackgroundImageCache",false,true)}catch(e){}}function curvyCnrSpec(A){this.selectorText=A;this.tlR=this.trR=this.blR=this.brR=0;this.tlu=this.tru=this.blu=this.bru="";this.antiAlias=true}curvyCnrSpec.prototype.setcorner=function(B,C,A,D){if(!B){this.tlR=this.trR=this.blR=this.brR=parseInt(A);this.tlu=this.tru=this.blu=this.bru=D}else{propname=B.charAt(0)+C.charAt(0);this[propname+"R"]=parseInt(A);this[propname+"u"]=D}};curvyCnrSpec.prototype.get=function(D){if(/^(t|b)(l|r)(R|u)$/.test(D)){return this[D]}if(/^(t|b)(l|r)Ru$/.test(D)){var C=D.charAt(0)+D.charAt(1);return this[C+"R"]+this[C+"u"]}if(/^(t|b)Ru?$/.test(D)){var B=D.charAt(0);B+=this[B+"lR"]>this[B+"rR"]?"l":"r";var A=this[B+"R"];if(D.length===3&&D.charAt(2)==="u"){A+=this[B="u"]}return A}throw new Error("Don't recognize property "+D)};curvyCnrSpec.prototype.radiusdiff=function(A){if(A!=="t"&&A!=="b"){throw new Error("Param must be 't' or 'b'")}return Math.abs(this[A+"lR"]-this[A+"rR"])};curvyCnrSpec.prototype.setfrom=function(A){this.tlu=this.tru=this.blu=this.bru="px";if("tl" in A){this.tlR=A.tl.radius}if("tr" in A){this.trR=A.tr.radius}if("bl" in A){this.blR=A.bl.radius}if("br" in A){this.brR=A.br.radius}if("antiAlias" in A){this.antiAlias=A.antiAlias}};curvyCnrSpec.prototype.cloneOn=function(G){var E=["tl","tr","bl","br"];var H=0;var C,A;for(C in E){if(!isNaN(C)){A=this[E[C]+"u"];if(A!==""&&A!=="px"){H=new curvyCnrSpec;break}}}if(!H){H=this}else{var B,D,F=curvyBrowser.get_style(G,"left");for(C in E){if(!isNaN(C)){B=E[C];A=this[B+"u"];D=this[B+"R"];if(A!=="px"){var F=G.style.left;G.style.left=D+A;D=G.style.pixelLeft;G.style.left=F}H[B+"R"]=D;H[B+"u"]="px"}}G.style.left=F}return H};curvyCnrSpec.prototype.radiusSum=function(A){if(A!=="t"&&A!=="b"){throw new Error("Param must be 't' or 'b'")}return this[A+"lR"]+this[A+"rR"]};curvyCnrSpec.prototype.radiusCount=function(A){var B=0;if(this[A+"lR"]){++B}if(this[A+"rR"]){++B}return B};curvyCnrSpec.prototype.cornerNames=function(){var A=[];if(this.tlR){A.push("tl")}if(this.trR){A.push("tr")}if(this.blR){A.push("bl")}if(this.brR){A.push("br")}return A};function operasheet(C){var A=document.styleSheets.item(C).ownerNode.text;A=A.replace(/\/\*(\n|\r|.)*?\*\//g,"");var D=new RegExp("^s*([\\w.#][-\\w.#, ]+)[\\n\\s]*\\{([^}]+border-((top|bottom)-(left|right)-)?radius[^}]*)\\}","mg");var G;this.rules=[];while((G=D.exec(A))!==null){var F=new RegExp("(..)border-((top|bottom)-(left|right)-)?radius:\\s*([\\d.]+)(in|em|px|ex|pt)","g");var E,B=new curvyCnrSpec(G[1]);while((E=F.exec(G[2]))!==null){if(E[1]!=="z-"){B.setcorner(E[3],E[4],E[5],E[6])}}this.rules.push(B)}}operasheet.contains_border_radius=function(A){return/border-((top|bottom)-(left|right)-)?radius/.test(document.styleSheets.item(A).ownerNode.text)};function curvyCorners(){var G,D,E,B,J;if(typeof arguments[0]!=="object"){throw curvyCorners.newError("First parameter of curvyCorners() must be an object.")}if(arguments[0] instanceof curvyCnrSpec){B=arguments[0];if(!B.selectorText&&typeof arguments[1]==="string"){B.selectorText=arguments[1]}}else{if(typeof arguments[1]!=="object"&&typeof arguments[1]!=="string"){throw curvyCorners.newError("Second parameter of curvyCorners() must be an object or a class name.")}D=arguments[1];if(typeof D!=="string"){D=""}if(D!==""&&D.charAt(0)!=="."&&"autoPad" in arguments[0]){D="."+D}B=new curvyCnrSpec(D);B.setfrom(arguments[0])}if(B.selectorText){J=0;var I=B.selectorText.replace(/\s+$/,"").split(/,\s*/);E=new Array;function A(M){var L=M.split("#");return(L.length===2?"#":"")+L.pop()}for(G=0;G<I.length;++G){var K=A(I[G]);var H=K.split(" ");switch(K.charAt(0)){case"#":D=H.length===1?K:H[0];D=document.getElementById(D.substr(1));if(D===null){curvyCorners.alert("No object with ID "+K+" exists yet.\nCall curvyCorners(settings, obj) when it is created.")}else{if(H.length===1){E.push(D)}else{E=E.concat(curvyCorners.getElementsByClass(H[1],D))}}break;default:if(H.length===1){E=E.concat(curvyCorners.getElementsByClass(K))}else{var C=curvyCorners.getElementsByClass(H[0]);for(D=0;D<C.length;++D){E=E.concat(curvyCorners.getElementsByClass(H[1],C))}}}}}else{J=1;E=arguments}for(G=J,D=E.length;G<D;++G){if(E[G]&&(!("IEborderRadius" in E[G].style)||E[G].style.IEborderRadius!="set")){if(E[G].className&&E[G].className.indexOf("curvyRedraw")!==-1){if(typeof curvyCorners.redrawList==="undefined"){curvyCorners.redrawList=new Array}curvyCorners.redrawList.push({node:E[G],spec:B,copy:E[G].cloneNode(false)})}E[G].style.IEborderRadius="set";var F=new curvyObject(B,E[G]);F.applyCorners()}}}curvyCorners.prototype.applyCornersToAll=function(){curvyCorners.alert("This function is now redundant. Just call curvyCorners(). See documentation.")};curvyCorners.redraw=function(){if(!curvyBrowser.isOp&&!curvyBrowser.isIE){return}if(!curvyCorners.redrawList){throw curvyCorners.newError("curvyCorners.redraw() has nothing to redraw.")}var E=curvyCorners.bock_redraw;curvyCorners.block_redraw=true;for(var A in curvyCorners.redrawList){if(isNaN(A)){continue}var D=curvyCorners.redrawList[A];if(!D.node.clientWidth){continue}var B=D.copy.cloneNode(false);for(var C=D.node.firstChild;C!=null;C=C.nextSibling){if(C.className==="autoPadDiv"){break}}if(!C){curvyCorners.alert("Couldn't find autoPad DIV");break}D.node.parentNode.replaceChild(B,D.node);while(C.firstChild){B.appendChild(C.removeChild(C.firstChild))}D=new curvyObject(D.spec,D.node=B);D.applyCorners()}curvyCorners.block_redraw=E};curvyCorners.adjust=function(obj,prop,newval){if(curvyBrowser.isOp||curvyBrowser.isIE){if(!curvyCorners.redrawList){throw curvyCorners.newError("curvyCorners.adjust() has nothing to adjust.")}var i,j=curvyCorners.redrawList.length;for(i=0;i<j;++i){if(curvyCorners.redrawList[i].node===obj){break}}if(i===j){throw curvyCorners.newError("Object not redrawable")}obj=curvyCorners.redrawList[i].copy}if(prop.indexOf(".")===-1){obj[prop]=newval}else{eval("obj."+prop+"='"+newval+"'")}};curvyCorners.handleWinResize=function(){if(!curvyCorners.block_redraw){curvyCorners.redraw()}};curvyCorners.setWinResize=function(A){curvyCorners.block_redraw=!A};curvyCorners.newError=function(A){return new Error("curvyCorners Error:\n"+A)};curvyCorners.alert=function(A){if(typeof curvyCornersVerbose==="undefined"||curvyCornersVerbose){alert(A)}};function curvyObject(){var U;this.box=arguments[1];this.settings=arguments[0];this.topContainer=this.bottomContainer=this.shell=U=null;var K=this.box.clientWidth;if(!K&&curvyBrowser.isIE){this.box.style.zoom=1;K=this.box.clientWidth}if(!K){if(!this.box.parentNode){throw this.newError("box has no parent!")}for(U=this.box;;U=U.parentNode){if(!U||U.tagName==="BODY"){this.applyCorners=function(){};curvyCorners.alert(this.errmsg("zero-width box with no accountable parent","warning"));return}if(U.style.display==="none"){break}}U.style.display="block";K=this.box.clientWidth}if(arguments[0] instanceof curvyCnrSpec){this.spec=arguments[0].cloneOn(this.box)}else{this.spec=new curvyCnrSpec("");this.spec.setfrom(this.settings)}var b=curvyBrowser.get_style(this.box,"borderTopWidth");var J=curvyBrowser.get_style(this.box,"borderBottomWidth");var D=curvyBrowser.get_style(this.box,"borderLeftWidth");var B=curvyBrowser.get_style(this.box,"borderRightWidth");var I=curvyBrowser.get_style(this.box,"borderTopColor");var G=curvyBrowser.get_style(this.box,"borderBottomColor");var A=curvyBrowser.get_style(this.box,"borderLeftColor");var E=curvyBrowser.get_style(this.box,"backgroundColor");var C=curvyBrowser.get_style(this.box,"backgroundImage");var Y=curvyBrowser.get_style(this.box,"backgroundRepeat");if(this.box.currentStyle&&this.box.currentStyle.backgroundPositionX){var R=curvyBrowser.get_style(this.box,"backgroundPositionX");var P=curvyBrowser.get_style(this.box,"backgroundPositionY")}else{var R=curvyBrowser.get_style(this.box,"backgroundPosition");R=R.split(" ");var P=R[1];R=R[0]}var O=curvyBrowser.get_style(this.box,"position");var Z=curvyBrowser.get_style(this.box,"paddingTop");var c=curvyBrowser.get_style(this.box,"paddingBottom");var Q=curvyBrowser.get_style(this.box,"paddingLeft");var a=curvyBrowser.get_style(this.box,"paddingRight");var S=curvyBrowser.get_style(this.box,"border");filter=curvyBrowser.ieVer>7?curvyBrowser.get_style(this.box,"filter"):null;var H=this.spec.get("tR");var M=this.spec.get("bR");var W=function(f){if(typeof f==="number"){return f}if(typeof f!=="string"){throw new Error("unexpected styleToNPx type "+typeof f)}var d=/^[-\d.]([a-z]+)$/.exec(f);if(d&&d[1]!="px"){throw new Error("Unexpected unit "+d[1])}if(isNaN(f=parseInt(f))){f=0}return f};var T=function(d){return d<=0?"0":d+"px"};try{this.borderWidth=W(b);this.borderWidthB=W(J);this.borderWidthL=W(D);this.borderWidthR=W(B);this.boxColour=curvyObject.format_colour(E);this.topPadding=W(Z);this.bottomPadding=W(c);this.leftPadding=W(Q);this.rightPadding=W(a);this.boxWidth=K;this.boxHeight=this.box.clientHeight;this.borderColour=curvyObject.format_colour(I);this.borderColourB=curvyObject.format_colour(G);this.borderColourL=curvyObject.format_colour(A);this.borderString=this.borderWidth+"px solid "+this.borderColour;this.borderStringB=this.borderWidthB+"px solid "+this.borderColourB;this.backgroundImage=((C!="none")?C:"");this.backgroundRepeat=Y}catch(X){throw this.newError("getMessage" in X?X.getMessage():X.message)}var F=this.boxHeight;var V=K;if(curvyBrowser.isOp){R=W(R);P=W(P);if(R){var N=V+this.borderWidthL+this.borderWidthR;if(R>N){R=N}R=(N/R*100)+"%"}if(P){var N=F+this.borderWidth+this.borderWidthB;if(P>N){P=N}P=(N/P*100)+"%"}}if(curvyBrowser.quirksMode){}else{this.boxWidth-=this.leftPadding+this.rightPadding;this.boxHeight-=this.topPadding+this.bottomPadding}this.contentContainer=document.createElement("div");if(filter){this.contentContainer.style.filter=filter}while(this.box.firstChild){this.contentContainer.appendChild(this.box.removeChild(this.box.firstChild))}if(O!="absolute"){this.box.style.position="relative"}this.box.style.padding="0";this.box.style.border=this.box.style.backgroundImage="none";this.box.style.backgroundColor="transparent";this.box.style.width=(V+this.borderWidthL+this.borderWidthR)+"px";this.box.style.height=(F+this.borderWidth+this.borderWidthB)+"px";var L=document.createElement("div");L.style.position="absolute";if(filter){L.style.filter=filter}if(curvyBrowser.quirksMode){L.style.width=(V+this.borderWidthL+this.borderWidthR)+"px"}else{L.style.width=V+"px"}L.style.height=T(F+this.borderWidth+this.borderWidthB-H-M);L.style.padding="0";L.style.top=H+"px";L.style.left="0";if(this.borderWidthL){L.style.borderLeft=this.borderWidthL+"px solid "+this.borderColourL}if(this.borderWidth&&!H){L.style.borderTop=this.borderWidth+"px solid "+this.borderColour}if(this.borderWidthR){L.style.borderRight=this.borderWidthR+"px solid "+this.borderColourL}if(this.borderWidthB&&!M){L.style.borderBottom=this.borderWidthB+"px solid "+this.borderColourB}L.style.backgroundColor=E;L.style.backgroundImage=this.backgroundImage;L.style.backgroundRepeat=this.backgroundRepeat;this.shell=this.box.appendChild(L);K=curvyBrowser.get_style(this.shell,"width");if(K===""||K==="auto"||K.indexOf("%")!==-1){throw this.newError("Shell width is "+K)}this.boxWidth=(K!=""&&K!="auto"&&K.indexOf("%")==-1)?parseInt(K):this.shell.clientWidth;this.applyCorners=function(){if(this.backgroundObject){var w=function(AO,i,t){if(AO===0){return 0}var k;if(AO==="right"||AO==="bottom"){return t-i}if(AO==="center"){return(t-i)/2}if(AO.indexOf("%")>0){return(t-i)*100/parseInt(AO)}return W(AO)};this.backgroundPosX=w(R,this.backgroundObject.width,V);this.backgroundPosY=w(P,this.backgroundObject.height,F)}else{if(this.backgroundImage){this.backgroundPosX=W(R);this.backgroundPosY=W(P)}}if(H){v=document.createElement("div");v.style.width=this.boxWidth+"px";v.style.fontSize="1px";v.style.overflow="hidden";v.style.position="absolute";v.style.paddingLeft=this.borderWidth+"px";v.style.paddingRight=this.borderWidth+"px";v.style.height=H+"px";v.style.top=-H+"px";v.style.left=-this.borderWidthL+"px";this.topContainer=this.shell.appendChild(v)}if(M){var v=document.createElement("div");v.style.width=this.boxWidth+"px";v.style.fontSize="1px";v.style.overflow="hidden";v.style.position="absolute";v.style.paddingLeft=this.borderWidthB+"px";v.style.paddingRight=this.borderWidthB+"px";v.style.height=M+"px";v.style.bottom=-M+"px";v.style.left=-this.borderWidthL+"px";this.bottomContainer=this.shell.appendChild(v)}var AG=this.spec.cornerNames();for(var AK in AG){if(!isNaN(AK)){var AC=AG[AK];var AD=this.spec[AC+"R"];var AE,AH,j,AF;if(AC=="tr"||AC=="tl"){AE=this.borderWidth;AH=this.borderColour;AF=this.borderWidth}else{AE=this.borderWidthB;AH=this.borderColourB;AF=this.borderWidthB}j=AD-AF;var u=document.createElement("div");u.style.height=this.spec.get(AC+"Ru");u.style.width=this.spec.get(AC+"Ru");u.style.position="absolute";u.style.fontSize="1px";u.style.overflow="hidden";var r,q,p;var n=filter?parseInt(/alpha\(opacity.(\d+)\)/.exec(filter)[1]):100;for(r=0;r<AD;++r){var m=(r+1>=j)?-1:Math.floor(Math.sqrt(Math.pow(j,2)-Math.pow(r+1,2)))-1;if(j!=AD){var h=(r>=j)?-1:Math.ceil(Math.sqrt(Math.pow(j,2)-Math.pow(r,2)));var f=(r+1>=AD)?-1:Math.floor(Math.sqrt(Math.pow(AD,2)-Math.pow((r+1),2)))-1}var d=(r>=AD)?-1:Math.ceil(Math.sqrt(Math.pow(AD,2)-Math.pow(r,2)));if(m>-1){this.drawPixel(r,0,this.boxColour,n,(m+1),u,true,AD)}if(j!=AD){if(this.spec.antiAlias){for(q=m+1;q<h;++q){if(this.backgroundImage!=""){var g=curvyObject.pixelFraction(r,q,j)*100;this.drawPixel(r,q,AH,n,1,u,g>=30,AD)}else{if(this.boxColour!=="transparent"){var AB=curvyObject.BlendColour(this.boxColour,AH,curvyObject.pixelFraction(r,q,j));this.drawPixel(r,q,AB,n,1,u,false,AD)}else{this.drawPixel(r,q,AH,n>>1,1,u,false,AD)}}}if(f>=h){if(h==-1){h=0}this.drawPixel(r,h,AH,n,(f-h+1),u,false,0)}p=AH;q=f}else{if(f>m){this.drawPixel(r,(m+1),AH,n,(f-m),u,false,0)}}}else{p=this.boxColour;q=m}if(this.spec.antiAlias){while(++q<d){this.drawPixel(r,q,p,(curvyObject.pixelFraction(r,q,AD)*n),1,u,AF<=0,AD)}}}for(var y=0,AJ=u.childNodes.length;y<AJ;++y){var s=u.childNodes[y];var AI=parseInt(s.style.top);var AM=parseInt(s.style.left);var AN=parseInt(s.style.height);if(AC=="tl"||AC=="bl"){s.style.left=(AD-AM-1)+"px"}if(AC=="tr"||AC=="tl"){s.style.top=(AD-AN-AI)+"px"}s.style.backgroundRepeat=this.backgroundRepeat;if(this.backgroundImage){switch(AC){case"tr":s.style.backgroundPosition=(this.backgroundPosX-this.borderWidthL+AD-V-AM)+"px "+(this.backgroundPosY+AN+AI+this.borderWidth-AD)+"px";break;case"tl":s.style.backgroundPosition=(this.backgroundPosX-AD+AM+this.borderWidthL)+"px "+(this.backgroundPosY-AD+AN+AI+this.borderWidth)+"px";break;case"bl":s.style.backgroundPosition=(this.backgroundPosX-AD+AM+1+this.borderWidthL)+"px "+(this.backgroundPosY-F-this.borderWidth+(curvyBrowser.quirksMode?AI:-AI)+AD)+"px";break;case"br":if(curvyBrowser.quirksMode){s.style.backgroundPosition=(this.backgroundPosX+this.borderWidthL-V+AD-AM)+"px "+(this.backgroundPosY-F-this.borderWidth+AI+AD)+"px"}else{s.style.backgroundPosition=(this.backgroundPosX-this.borderWidthL-V+AD-AM)+"px "+(this.backgroundPosY-F-this.borderWidth+AD-AI)+"px"}}}}switch(AC){case"tl":u.style.top=u.style.left="0";this.topContainer.appendChild(u);break;case"tr":u.style.top=u.style.right="0";this.topContainer.appendChild(u);break;case"bl":u.style.bottom=u.style.left="0";this.bottomContainer.appendChild(u);break;case"br":u.style.bottom=u.style.right="0";this.bottomContainer.appendChild(u)}}}var x={t:this.spec.radiusdiff("t"),b:this.spec.radiusdiff("b")};for(z in x){if(typeof z==="function"){continue}if(!this.spec.get(z+"R")){continue}if(x[z]){if(this.backgroundImage&&this.spec.radiusSum(z)!==x[z]){curvyCorners.alert(this.errmsg("Not supported: unequal non-zero top/bottom radii with background image"))}var AL=(this.spec[z+"lR"]<this.spec[z+"rR"])?z+"l":z+"r";var l=document.createElement("div");l.style.height=x[z]+"px";l.style.width=this.spec.get(AL+"Ru");l.style.position="absolute";l.style.fontSize="1px";l.style.overflow="hidden";l.style.backgroundColor=this.boxColour;switch(AL){case"tl":l.style.bottom=l.style.left="0";l.style.borderLeft=this.borderString;this.topContainer.appendChild(l);break;case"tr":l.style.bottom=l.style.right="0";l.style.borderRight=this.borderString;this.topContainer.appendChild(l);break;case"bl":l.style.top=l.style.left="0";l.style.borderLeft=this.borderStringB;this.bottomContainer.appendChild(l);break;case"br":l.style.top=l.style.right="0";l.style.borderRight=this.borderStringB;this.bottomContainer.appendChild(l)}}var o=document.createElement("div");if(filter){o.style.filter=filter}o.style.position="relative";o.style.fontSize="1px";o.style.overflow="hidden";o.style.width=this.fillerWidth(z);o.style.backgroundColor=this.boxColour;o.style.backgroundImage=this.backgroundImage;o.style.backgroundRepeat=this.backgroundRepeat;switch(z){case"t":if(this.topContainer){if(curvyBrowser.quirksMode){o.style.height=100+H+"px"}else{o.style.height=100+H-this.borderWidth+"px"}o.style.marginLeft=this.spec.tlR?(this.spec.tlR-this.borderWidthL)+"px":"0";o.style.borderTop=this.borderString;if(this.backgroundImage){var AA=this.spec.tlR?(this.backgroundPosX-(H-this.borderWidthL))+"px ":"0 ";o.style.backgroundPosition=AA+this.backgroundPosY+"px";this.shell.style.backgroundPosition=this.backgroundPosX+"px "+(this.backgroundPosY-H+this.borderWidthL)+"px"}this.topContainer.appendChild(o)}break;case"b":if(this.bottomContainer){if(curvyBrowser.quirksMode){o.style.height=M+"px"}else{o.style.height=M-this.borderWidthB+"px"}o.style.marginLeft=this.spec.blR?(this.spec.blR-this.borderWidthL)+"px":"0";o.style.borderBottom=this.borderStringB;if(this.backgroundImage){var AA=this.spec.blR?(this.backgroundPosX+this.borderWidthL-M)+"px ":this.backgroundPosX+"px ";o.style.backgroundPosition=AA+(this.backgroundPosY-F-this.borderWidth+M)+"px"}this.bottomContainer.appendChild(o)}}}this.contentContainer.style.position="absolute";this.contentContainer.className="autoPadDiv";this.contentContainer.style.left=this.borderWidthL+"px";this.contentContainer.style.paddingTop=this.topPadding+"px";this.contentContainer.style.top=this.borderWidth+"px";this.contentContainer.style.paddingLeft=this.leftPadding+"px";this.contentContainer.style.paddingRight=this.rightPadding+"px";z=V;if(!curvyBrowser.quirksMode){z-=this.leftPadding+this.rightPadding}this.contentContainer.style.width=z+"px";this.contentContainer.style.textAlign=curvyBrowser.get_style(this.box,"textAlign");this.box.style.textAlign="left";this.box.appendChild(this.contentContainer);if(U){U.style.display="none"}};if(this.backgroundImage){R=this.backgroundCheck(R);P=this.backgroundCheck(P);if(this.backgroundObject){this.backgroundObject.holdingElement=this;this.dispatch=this.applyCorners;this.applyCorners=function(){if(this.backgroundObject.complete){this.dispatch()}else{this.backgroundObject.onload=new Function("curvyObject.dispatch(this.holdingElement);")}}}}}curvyObject.prototype.backgroundCheck=function(B){if(B==="top"||B==="left"||parseInt(B)===0){return 0}if(!(/^[-\d.]+px$/.test(B))&&!this.backgroundObject){this.backgroundObject=new Image;var A=function(D){var C=/url\("?([^'"]+)"?\)/.exec(D);return(C?C[1]:D)};this.backgroundObject.src=A(this.backgroundImage)}return B};curvyObject.dispatch=function(A){if("dispatch" in A){A.dispatch()}else{throw A.newError("No dispatch function")}};curvyObject.prototype.drawPixel=function(J,G,A,F,H,I,C,E){var B=document.createElement("div");B.style.height=H+"px";B.style.width="1px";B.style.position="absolute";B.style.fontSize="1px";B.style.overflow="hidden";var D=this.spec.get("tR");B.style.backgroundColor=A;if(C&&this.backgroundImage!=""){B.style.backgroundImage=this.backgroundImage;B.style.backgroundPosition="-"+(this.boxWidth-(E-J)+this.borderWidth)+"px -"+((this.boxHeight+D+G)-this.borderWidth)+"px"}if(F!=100){curvyObject.setOpacity(B,F)}B.style.top=G+"px";B.style.left=J+"px";I.appendChild(B)};curvyObject.prototype.fillerWidth=function(A){var B=curvyBrowser.quirksMode?0:this.spec.radiusCount(A)*this.borderWidthL;return(this.boxWidth-this.spec.radiusSum(A)+B)+"px"};curvyObject.prototype.errmsg=function(C,D){var B="\ntag: "+this.box.tagName;if(this.box.id){B+="\nid: "+this.box.id}if(this.box.className){B+="\nclass: "+this.box.className}var A;if((A=this.box.parentNode)===null){B+="\n(box has no parent)"}else{B+="\nParent tag: "+A.tagName;if(A.id){B+="\nParent ID: "+A.id}if(A.className){B+="\nParent class: "+A.className}}if(D===undefined){D="warning"}return"curvyObject "+D+":\n"+C+B};curvyObject.prototype.newError=function(A){return new Error(this.errmsg(A,"exception"))};curvyObject.IntToHex=function(B){var A=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F"];return A[B>>>4]+""+A[B&15]};curvyObject.BlendColour=function(L,J,G){if(L==="transparent"||J==="transparent"){throw this.newError("Cannot blend with transparent")}if(L.charAt(0)!=="#"){L=curvyObject.format_colour(L)}if(J.charAt(0)!=="#"){J=curvyObject.format_colour(J)}var D=parseInt(L.substr(1,2),16);var K=parseInt(L.substr(3,2),16);var F=parseInt(L.substr(5,2),16);var C=parseInt(J.substr(1,2),16);var I=parseInt(J.substr(3,2),16);var E=parseInt(J.substr(5,2),16);if(G>1||G<0){G=1}var H=Math.round((D*G)+(C*(1-G)));if(H>255){H=255}if(H<0){H=0}var B=Math.round((K*G)+(I*(1-G)));if(B>255){B=255}if(B<0){B=0}var A=Math.round((F*G)+(E*(1-G)));if(A>255){A=255}if(A<0){A=0}return"#"+curvyObject.IntToHex(H)+curvyObject.IntToHex(B)+curvyObject.IntToHex(A)};curvyObject.pixelFraction=function(H,G,A){var J;var E=A*A;var B=new Array(2);var F=new Array(2);var I=0;var C="";var D=Math.sqrt(E-Math.pow(H,2));if(D>=G&&D<(G+1)){C="Left";B[I]=0;F[I]=D-G;++I}D=Math.sqrt(E-Math.pow(G+1,2));if(D>=H&&D<(H+1)){C+="Top";B[I]=D-H;F[I]=1;++I}D=Math.sqrt(E-Math.pow(H+1,2));if(D>=G&&D<(G+1)){C+="Right";B[I]=1;F[I]=D-G;++I}D=Math.sqrt(E-Math.pow(G,2));if(D>=H&&D<(H+1)){C+="Bottom";B[I]=D-H;F[I]=0}switch(C){case"LeftRight":J=Math.min(F[0],F[1])+((Math.max(F[0],F[1])-Math.min(F[0],F[1]))/2);break;case"TopRight":J=1-(((1-B[0])*(1-F[1]))/2);break;case"TopBottom":J=Math.min(B[0],B[1])+((Math.max(B[0],B[1])-Math.min(B[0],B[1]))/2);break;case"LeftBottom":J=F[0]*B[1]/2;break;default:J=1}return J};curvyObject.rgb2Array=function(A){var B=A.substring(4,A.indexOf(")"));return B.split(", ")};curvyObject.rgb2Hex=function(B){try{var C=curvyObject.rgb2Array(B);var G=parseInt(C[0]);var E=parseInt(C[1]);var A=parseInt(C[2]);var D="#"+curvyObject.IntToHex(G)+curvyObject.IntToHex(E)+curvyObject.IntToHex(A)}catch(F){var H="getMessage" in F?F.getMessage():F.message;throw new Error("Error ("+H+") converting RGB value to Hex in rgb2Hex")}return D};curvyObject.setOpacity=function(F,C){C=(C==100)?99.999:C;if(curvyBrowser.isSafari&&F.tagName!="IFRAME"){var B=curvyObject.rgb2Array(F.style.backgroundColor);var E=parseInt(B[0]);var D=parseInt(B[1]);var A=parseInt(B[2]);F.style.backgroundColor="rgba("+E+", "+D+", "+A+", "+C/100+")"}else{if(typeof F.style.opacity!=="undefined"){F.style.opacity=C/100}else{if(typeof F.style.MozOpacity!=="undefined"){F.style.MozOpacity=C/100}else{if(typeof F.style.filter!="undefined"){F.style.filter="alpha(opacity="+C+")"}else{if(typeof F.style.KHTMLOpacity!="undefined"){F.style.KHTMLOpacity=C/100}}}}}};function addEvent(D,C,B,A){if(D.addEventListener){D.addEventListener(C,B,A);return true}if(D.attachEvent){return D.attachEvent("on"+C,B)}D["on"+C]=B;return false}curvyObject.getComputedColour=function(E){var F=document.createElement("DIV");F.style.backgroundColor=E;document.body.appendChild(F);if(window.getComputedStyle){var D=document.defaultView.getComputedStyle(F,null).getPropertyValue("background-color");F.parentNode.removeChild(F);if(D.substr(0,3)==="rgb"){D=curvyObject.rgb2Hex(D)}return D}else{var A=document.body.createTextRange();A.moveToElementText(F);A.execCommand("ForeColor",false,E);var B=A.queryCommandValue("ForeColor");var C="rgb("+(B&255)+", "+((B&65280)>>8)+", "+((B&16711680)>>16)+")";F.parentNode.removeChild(F);A=null;return curvyObject.rgb2Hex(C)}};curvyObject.format_colour=function(A){if(A!=""&&A!="transparent"){if(A.substr(0,3)==="rgb"){A=curvyObject.rgb2Hex(A)}else{if(A.charAt(0)!=="#"){A=curvyObject.getComputedColour(A)}else{if(A.length===4){A="#"+A.charAt(1)+A.charAt(1)+A.charAt(2)+A.charAt(2)+A.charAt(3)+A.charAt(3)}}}}return A};curvyCorners.getElementsByClass=function(H,F){var E=new Array;if(F===undefined){F=document}H=H.split(".");var A="*";if(H.length===1){A=H[0];H=false}else{if(H[0]){A=H[0]}H=H[1]}var D,C,B;if(A.charAt(0)==="#"){C=document.getElementById(A.substr(1));if(C){E.push(C)}}else{C=F.getElementsByTagName(A);B=C.length;if(H){var G=new RegExp("(^|\\s)"+H+"(\\s|$)");for(D=0;D<B;++D){if(G.test(C[D].className)){E.push(C[D])}}}else{for(D=0;D<B;++D){E.push(C[D])}}}return E};if(curvyBrowser.isMoz||curvyBrowser.isWebKit){var curvyCornersNoAutoScan=true}else{curvyCorners.scanStyles=function(){function B(F){var G=/^[\d.]+(\w+)$/.exec(F);return G[1]}var E,D,C;if(curvyBrowser.isIE){function A(L){var J=L.style;if(curvyBrowser.ieVer>6){var H=J["-webkit-border-radius"]||0;var K=J["-webkit-border-top-right-radius"]||0;var F=J["-webkit-border-top-left-radius"]||0;var G=J["-webkit-border-bottom-right-radius"]||0;var M=J["-webkit-border-bottom-left-radius"]||0}else{var H=J["webkit-border-radius"]||0;var K=J["webkit-border-top-right-radius"]||0;var F=J["webkit-border-top-left-radius"]||0;var G=J["webkit-border-bottom-right-radius"]||0;var M=J["webkit-border-bottom-left-radius"]||0}if(H||F||K||G||M){var I=new curvyCnrSpec(L.selectorText);if(H){I.setcorner(null,null,parseInt(H),B(H))}else{if(K){I.setcorner("t","r",parseInt(K),B(K))}if(F){I.setcorner("t","l",parseInt(F),B(F))}if(M){I.setcorner("b","l",parseInt(M),B(M))}if(G){I.setcorner("b","r",parseInt(G),B(G))}}curvyCorners(I)}}for(E=0;E<document.styleSheets.length;++E){if(document.styleSheets[E].imports){for(D=0;D<document.styleSheets[E].imports.length;++D){for(C=0;C<document.styleSheets[E].imports[D].rules.length;++C){A(document.styleSheets[E].imports[D].rules[C])}}}for(D=0;D<document.styleSheets[E].rules.length;++D){A(document.styleSheets[E].rules[D])}}}else{if(curvyBrowser.isOp){for(E=0;E<document.styleSheets.length;++E){if(operasheet.contains_border_radius(E)){C=new operasheet(E);for(D in C.rules){if(!isNaN(D)){curvyCorners(C.rules[D])}}}}}else{curvyCorners.alert("Scanstyles does nothing in Webkit/Firefox")}}};curvyCorners.init=function(){if(arguments.callee.done){return}arguments.callee.done=true;if(curvyBrowser.isWebKit&&curvyCorners.init.timer){clearInterval(curvyCorners.init.timer);curvyCorners.init.timer=null}curvyCorners.scanStyles()}}if(typeof curvyCornersNoAutoScan==="undefined"||curvyCornersNoAutoScan===false){if(curvyBrowser.isOp){document.addEventListener("DOMContentLoaded",curvyCorners.init,false)}else{addEvent(window,"load",curvyCorners.init,false)}};

/*!
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */

var Cufon = (function() {

	var api = function() {
		return api.replace.apply(null, arguments);
	};

	var DOM = api.DOM = {

		ready: (function() {

			var complete = false, readyStatus = { loaded: 1, complete: 1 };

			var queue = [], perform = function() {
				if (complete) return;
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};

			// Gecko, Opera, WebKit r26101+

			if (document.addEventListener) {
				document.addEventListener('DOMContentLoaded', perform, false);
				window.addEventListener('pageshow', perform, false); // For cached Gecko pages
			}

			// Old WebKit, Internet Explorer

			if (!window.opera && document.readyState) (function() {
				readyStatus[document.readyState] ? perform() : setTimeout(arguments.callee, 10);
			})();

			// Internet Explorer

			if (document.readyState && document.createStyleSheet) (function() {
				try {
					document.body.doScroll('left');
					perform();
				}
				catch (e) {
					setTimeout(arguments.callee, 1);
				}
			})();

			addEvent(window, 'load', perform); // Fallback

			return function(listener) {
				if (!arguments.length) perform();
				else complete ? listener() : queue.push(listener);
			};

		})(),

		root: function() {
			return document.documentElement || document.body;
		}

	};

	var CSS = api.CSS = {

		Size: function(value, base) {

			this.value = parseFloat(value);
			this.unit = String(value).match(/[a-z%]*$/)[0] || 'px';

			this.convert = function(value) {
				return value / base * this.value;
			};

			this.convertFrom = function(value) {
				return value / this.value * base;
			};

			this.toString = function() {
				return this.value + this.unit;
			};

		},

		addClass: function(el, className) {
			var current = el.className;
			el.className = current + (current && ' ') + className;
			return el;
		},

		color: cached(function(value) {
			var parsed = {};
			parsed.color = value.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function($0, $1, $2) {
				parsed.opacity = parseFloat($2);
				return 'rgb(' + $1 + ')';
			});
			return parsed;
		}),

		// has no direct CSS equivalent.
		// @see http://msdn.microsoft.com/en-us/library/system.windows.fontstretches.aspx
		fontStretch: cached(function(value) {
			if (typeof value == 'number') return value;
			if (/%$/.test(value)) return parseFloat(value) / 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
			}[value] || 1;
		}),

		getStyle: function(el) {
			var view = document.defaultView;
			if (view && view.getComputedStyle) return new Style(view.getComputedStyle(el, null));
			if (el.currentStyle) return new Style(el.currentStyle);
			return new Style(el.style);
		},

		gradient: cached(function(value) {
			var gradient = {
				id: value,
				type: value.match(/^-([a-z]+)-gradient\(/)[1],
				stops: []
			}, colors = value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);
			for (var i = 0, l = colors.length, stop; i < l; ++i) {
				stop = colors[i].split('=', 2).reverse();
				gradient.stops.push([ stop[1] || i / (l - 1), stop[0] ]);
			}
			return gradient;
		}),

		quotedList: cached(function(value) {
			// doesn't work properly with empty quoted strings (""), but
			// it's not worth the extra code.
			var list = [], re = /\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g, match;
			while (match = re.exec(value)) list.push(match[3] || match[1]);
			return list;
		}),

		recognizesMedia: cached(function(media) {
			var el = document.createElement('style'), sheet, container, supported;
			el.type = 'text/css';
			el.media = media;
			try { // this is cached anyway
				el.appendChild(document.createTextNode('/**/'));
			} catch (e) {}
			container = elementsByTagName('head')[0];
			container.insertBefore(el, container.firstChild);
			sheet = (el.sheet || el.styleSheet);
			supported = sheet && !sheet.disabled;
			container.removeChild(el);
			return supported;
		}),

		removeClass: function(el, className) {
			var re = RegExp('(?:^|\\s+)' + className +  '(?=\\s|$)', 'g');
			el.className = el.className.replace(re, '');
			return el;
		},

		supports: function(property, value) {
			var checker = document.createElement('span').style;
			if (checker[property] === undefined) return false;
			checker[property] = value;
			return checker[property] === value;
		},

		textAlign: function(word, style, position, wordCount) {
			if (style.get('textAlign') == 'right') {
				if (position > 0) word = ' ' + word;
			}
			else if (position < wordCount - 1) word += ' ';
			return word;
		},

		textShadow: cached(function(value) {
			if (value == 'none') return null;
			var shadows = [], currentShadow = {}, result, offCount = 0;
			var re = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
			while (result = re.exec(value)) {
				if (result[0] == ',') {
					shadows.push(currentShadow);
					currentShadow = {};
					offCount = 0;
				}
				else if (result[1]) {
					currentShadow.color = result[1];
				}
				else {
					currentShadow[[ 'offX', 'offY', 'blur' ][offCount++]] = result[2];
				}
			}
			shadows.push(currentShadow);
			return shadows;
		}),

		textTransform: (function() {
			var map = {
				uppercase: function(s) {
					return s.toUpperCase();
				},
				lowercase: function(s) {
					return s.toLowerCase();
				},
				capitalize: function(s) {
					return s.replace(/\b./g, function($0) {
						return $0.toUpperCase();
					});
				}
			};
			return function(text, style) {
				var transform = map[style.get('textTransform')];
				return transform ? transform(text) : text;
			};
		})(),

		whiteSpace: (function() {
			var ignore = {
				inline: 1,
				'inline-block': 1,
				'run-in': 1
			};
			var wsStart = /^\s+/, wsEnd = /\s+$/;
			return function(text, style, node, previousElement) {
				if (previousElement) {
					if (previousElement.nodeName.toLowerCase() == 'br') {
						text = text.replace(wsStart, '');
					}
				}
				if (ignore[style.get('display')]) return text;
				if (!node.previousSibling) text = text.replace(wsStart, '');
				if (!node.nextSibling) text = text.replace(wsEnd, '');
				return text;
			};
		})()

	};

	CSS.ready = (function() {

		// don't do anything in Safari 2 (it doesn't recognize any media type)
		var complete = !CSS.recognizesMedia('all'), hasLayout = false;

		var queue = [], perform = function() {
			complete = true;
			for (var fn; fn = queue.shift(); fn());
		};

		var links = elementsByTagName('link'), styles = elementsByTagName('style');

		function isContainerReady(el) {
			return el.disabled || isSheetReady(el.sheet, el.media || 'screen');
		}

		function isSheetReady(sheet, media) {
			// in Opera sheet.disabled is true when it's still loading,
			// even though link.disabled is false. they stay in sync if
			// set manually.
			if (!CSS.recognizesMedia(media || 'all')) return true;
			if (!sheet || sheet.disabled) return false;
			try {
				var rules = sheet.cssRules, rule;
				if (rules) {
					// needed for Safari 3 and Chrome 1.0.
					// in standards-conforming browsers cssRules contains @-rules.
					// Chrome 1.0 weirdness: rules[<number larger than .length - 1>]
					// returns the last rule, so a for loop is the only option.
					search: for (var i = 0, l = rules.length; rule = rules[i], i < l; ++i) {
						switch (rule.type) {
							case 2: // @charset
								break;
							case 3: // @import
								if (!isSheetReady(rule.styleSheet, rule.media.mediaText)) return false;
								break;
							default:
								// only @charset can precede @import
								break search;
						}
					}
				}
			}
			catch (e) {} // probably a style sheet from another domain
			return true;
		}

		function allStylesLoaded() {
			// Internet Explorer's style sheet model, there's no need to do anything
			if (document.createStyleSheet) return true;
			// standards-compliant browsers
			var el, i;
			for (i = 0; el = links[i]; ++i) {
				if (el.rel.toLowerCase() == 'stylesheet' && !isContainerReady(el)) return false;
			}
			for (i = 0; el = styles[i]; ++i) {
				if (!isContainerReady(el)) return false;
			}
			return true;
		}

		DOM.ready(function() {
			// getComputedStyle returns null in Gecko if used in an iframe with display: none
			if (!hasLayout) hasLayout = CSS.getStyle(document.body).isUsable();
			if (complete || (hasLayout && allStylesLoaded())) perform();
			else setTimeout(arguments.callee, 10);
		});

		return function(listener) {
			if (complete) listener();
			else queue.push(listener);
		};

	})();

	function Font(data) {

		var face = this.face = data.face, wordSeparators = {
			'\u0020': 1,
			'\u00a0': 1,
			'\u3000': 1
		};

		this.glyphs = data.glyphs;
		this.w = data.w;
		this.baseSize = parseInt(face['units-per-em'], 10);

		this.family = face['font-family'].toLowerCase();
		this.weight = face['font-weight'];
		this.style = face['font-style'] || 'normal';

		this.viewBox = (function () {
			var parts = face.bbox.split(/\s+/);
			var box = {
				minX: parseInt(parts[0], 10),
				minY: parseInt(parts[1], 10),
				maxX: parseInt(parts[2], 10),
				maxY: parseInt(parts[3], 10)
			};
			box.width = box.maxX - box.minX;
			box.height = box.maxY - box.minY;
			box.toString = function() {
				return [ this.minX, this.minY, this.width, this.height ].join(' ');
			};
			return box;
		})();

		this.ascent = -parseInt(face.ascent, 10);
		this.descent = -parseInt(face.descent, 10);

		this.height = -this.ascent + this.descent;

		this.spacing = function(chars, letterSpacing, wordSpacing) {
			var glyphs = this.glyphs, glyph,
				kerning, k,
				jumps = [],
				width = 0, w,
				i = -1, j = -1, chr;
			while (chr = chars[++i]) {
				glyph = glyphs[chr] || this.missingGlyph;
				if (!glyph) continue;
				if (kerning) {
					width -= k = kerning[chr] || 0;
					jumps[j] -= k;
				}
				w = glyph.w;
				if (isNaN(w)) w = +this.w; // may have been a String in old fonts
				if (w > 0) {
					w += letterSpacing;
					if (wordSeparators[chr]) w += wordSpacing;
				}
				width += jumps[++j] = ~~w; // get rid of decimals
				kerning = glyph.k;
			}
			jumps.total = width;
			return jumps;
		};

	}

	function FontFamily() {

		var styles = {}, mapping = {
			oblique: 'italic',
			italic: 'oblique'
		};

		this.add = function(font) {
			(styles[font.style] || (styles[font.style] = {}))[font.weight] = font;
		};

		this.get = function(style, weight) {
			var weights = styles[style] || styles[mapping[style]]
				|| styles.normal || styles.italic || styles.oblique;
			if (!weights) return null;
			// we don't have to worry about "bolder" and "lighter"
			// because IE's currentStyle returns a numeric value for it,
			// and other browsers use the computed value anyway
			weight = {
				normal: 400,
				bold: 700
			}[weight] || parseInt(weight, 10);
			if (weights[weight]) return weights[weight];
			// http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight
			// Gecko uses x99/x01 for lighter/bolder
			var up = {
				1: 1,
				99: 0
			}[weight % 100], alts = [], min, max;
			if (up === undefined) up = weight > 400;
			if (weight == 500) weight = 400;
			for (var alt in weights) {
				if (!hasOwnProperty(weights, alt)) continue;
				alt = parseInt(alt, 10);
				if (!min || alt < min) min = alt;
				if (!max || alt > max) max = alt;
				alts.push(alt);
			}
			if (weight < min) weight = min;
			if (weight > max) weight = max;
			alts.sort(function(a, b) {
				return (up
					? (a >= weight && b >= weight) ? a < b : a > b
					: (a <= weight && b <= weight) ? a > b : a < b) ? -1 : 1;
			});
			return weights[alts[0]];
		};

	}

	function HoverHandler() {

		function contains(node, anotherNode) {
			try {
				if (node.contains) return node.contains(anotherNode);
				return node.compareDocumentPosition(anotherNode) & 16;
			}
			catch(e) {} // probably a XUL element such as a scrollbar
			return false;
		}

		function onOverOut(e) {
			var related = e.relatedTarget;
			// there might be no relatedTarget if the element is right next
			// to the window frame
			if (related && contains(this, related)) return;
			trigger(this, e.type == 'mouseover');
		}

		function onEnterLeave(e) {
			trigger(this, e.type == 'mouseenter');
		}

		function trigger(el, hoverState) {
			// A timeout is needed so that the event can actually "happen"
			// before replace is triggered. This ensures that styles are up
			// to date.
			setTimeout(function() {
				var options = sharedStorage.get(el).options;
				api.replace(el, hoverState ? merge(options, options.hover) : options, true);
			}, 10);
		}

		this.attach = function(el) {
			if (el.onmouseenter === undefined) {
				addEvent(el, 'mouseover', onOverOut);
				addEvent(el, 'mouseout', onOverOut);
			}
			else {
				addEvent(el, 'mouseenter', onEnterLeave);
				addEvent(el, 'mouseleave', onEnterLeave);
			}
		};

	}

	function ReplaceHistory() {

		var list = [], map = {};

		function filter(keys) {
			var values = [], key;
			for (var i = 0; key = keys[i]; ++i) values[i] = list[map[key]];
			return values;
		}

		this.add = function(key, args) {
			map[key] = list.push(args) - 1;
		};

		this.repeat = function() {
			var snapshot = arguments.length ? filter(arguments) : list, args;
			for (var i = 0; args = snapshot[i++];) api.replace(args[0], args[1], true);
		};

	}

	function Storage() {

		var map = {}, at = 0;

		function identify(el) {
			return el.cufid || (el.cufid = ++at);
		}

		this.get = function(el) {
			var id = identify(el);
			return map[id] || (map[id] = {});
		};

	}

	function Style(style) {

		var custom = {}, sizes = {};

		this.extend = function(styles) {
			for (var property in styles) {
				if (hasOwnProperty(styles, property)) custom[property] = styles[property];
			}
			return this;
		};

		this.get = function(property) {
			return custom[property] != undefined ? custom[property] : style[property];
		};

		this.getSize = function(property, base) {
			return sizes[property] || (sizes[property] = new CSS.Size(this.get(property), base));
		};

		this.isUsable = function() {
			return !!style;
		};

	}

	function addEvent(el, type, listener) {
		if (el.addEventListener) {
			el.addEventListener(type, listener, false);
		}
		else if (el.attachEvent) {
			el.attachEvent('on' + type, function() {
				return listener.call(el, window.event);
			});
		}
	}

	function attach(el, options) {
		var storage = sharedStorage.get(el);
		if (storage.options) return el;
		if (options.hover && options.hoverables[el.nodeName.toLowerCase()]) {
			hoverHandler.attach(el);
		}
		storage.options = options;
		return el;
	}

	function cached(fun) {
		var cache = {};
		return function(key) {
			if (!hasOwnProperty(cache, key)) cache[key] = fun.apply(null, arguments);
			return cache[key];
		};
	}

	function getFont(el, style) {
		var families = CSS.quotedList(style.get('fontFamily').toLowerCase()), family;
		for (var i = 0; family = families[i]; ++i) {
			if (fonts[family]) return fonts[family].get(style.get('fontStyle'), style.get('fontWeight'));
		}
		return null;
	}

	function elementsByTagName(query) {
		return document.getElementsByTagName(query);
	}

	function hasOwnProperty(obj, property) {
		return obj.hasOwnProperty(property);
	}

	function merge() {
		var merged = {}, arg, key;
		for (var i = 0, l = arguments.length; arg = arguments[i], i < l; ++i) {
			for (key in arg) {
				if (hasOwnProperty(arg, key)) merged[key] = arg[key];
			}
		}
		return merged;
	}

	function process(font, text, style, options, node, el) {
		var fragment = document.createDocumentFragment(), processed;
		if (text === '') return fragment;
		var separate = options.separate;
		var parts = text.split(separators[separate]), needsAligning = (separate == 'words');
		if (needsAligning && HAS_BROKEN_REGEXP) {
			// @todo figure out a better way to do this
			if (/^\s/.test(text)) parts.unshift('');
			if (/\s$/.test(text)) parts.push('');
		}
		for (var i = 0, l = parts.length; i < l; ++i) {
			processed = engines[options.engine](font,
				needsAligning ? CSS.textAlign(parts[i], style, i, l) : parts[i],
				style, options, node, el, i < l - 1);
			if (processed) fragment.appendChild(processed);
		}
		return fragment;
	}

	function replaceElement(el, options) {
		var name = el.nodeName.toLowerCase();
		if (options.ignore[name]) return;
		var replace = !options.textless[name];
		var style = CSS.getStyle(attach(el, options)).extend(options);
		var font = getFont(el, style), node, type, next, anchor, text, lastElement;
		if (!font) return;
		for (node = el.firstChild; node; node = next) {
			type = node.nodeType;
			next = node.nextSibling;
			if (replace && type == 3) {
				// Node.normalize() is broken in IE 6, 7, 8
				if (anchor) {
					anchor.appendData(node.data);
					el.removeChild(node);
				}
				else anchor = node;
				if (next) continue;
			}
			if (anchor) {
				el.replaceChild(process(font,
					CSS.whiteSpace(anchor.data, style, anchor, lastElement),
					style, options, node, el), anchor);
				anchor = null;
			}
			if (type == 1) {
				if (node.firstChild) {
					if (node.nodeName.toLowerCase() == 'cufon') {
						engines[options.engine](font, null, style, options, node, el);
					}
					else arguments.callee(node, options);
				}
				lastElement = node;
			}
		}
	}

	var HAS_BROKEN_REGEXP = ' '.split(/\s+/).length == 0;

	var sharedStorage = new Storage();
	var hoverHandler = new HoverHandler();
	var replaceHistory = new ReplaceHistory();
	var initialized = false;

	var engines = {}, fonts = {}, defaultOptions = {
		autoDetect: false,
		engine: null,
		//fontScale: 1,
		//fontScaling: false,
		forceHitArea: false,
		hover: false,
		hoverables: {
			a: true
		},
		ignore: {
			applet: 1,
			canvas: 1,
			col: 1,
			colgroup: 1,
			head: 1,
			iframe: 1,
			map: 1,
			noscript: 1,
			optgroup: 1,
			option: 1,
			script: 1,
			select: 1,
			style: 1,
			textarea: 1,
			title: 1,
			pre: 1
		},
		printable: true,
		//rotation: 0,
		//selectable: false,
		selector: (
				window.Sizzle
			||	(window.jQuery && function(query) { return jQuery(query); }) // avoid noConflict issues
			||	(window.dojo && dojo.query)
			||	(window.glow && glow.dom && glow.dom.get)
			||	(window.Ext && Ext.query)
			||	(window.YAHOO && YAHOO.util && YAHOO.util.Selector && YAHOO.util.Selector.query)
			||	(window.$$ && function(query) { return $$(query); })
			||	(window.$ && function(query) { return $(query); })
			||	(document.querySelectorAll && function(query) { return document.querySelectorAll(query); })
			||	elementsByTagName
		),
		separate: 'words', // 'none' and 'characters' are also accepted
		textless: {
			dl: 1,
			html: 1,
			ol: 1,
			table: 1,
			tbody: 1,
			thead: 1,
			tfoot: 1,
			tr: 1,
			ul: 1
		},
		textShadow: 'none'
	};

	var separators = {
		// The first pattern may cause unicode characters above
		// code point 255 to be removed in Safari 3.0. Luckily enough
		// Safari 3.0 does not include non-breaking spaces in \s, so
		// we can just use a simple alternative pattern.
		words: /\s/.test('\u00a0') ? /[^\S\u00a0]+/ : /\s+/,
		characters: '',
		none: /^/
	};

	api.now = function() {
		DOM.ready();
		return api;
	};

	api.refresh = function() {
		replaceHistory.repeat.apply(replaceHistory, arguments);
		return api;
	};

	api.registerEngine = function(id, engine) {
		if (!engine) return api;
		engines[id] = engine;
		return api.set('engine', id);
	};

	api.registerFont = function(data) {
		if (!data) return api;
		var font = new Font(data), family = font.family;
		if (!fonts[family]) fonts[family] = new FontFamily();
		fonts[family].add(font);
		return api.set('fontFamily', '"' + family + '"');
	};

	api.replace = function(elements, options, ignoreHistory) {
		options = merge(defaultOptions, options);
		if (!options.engine) return api; // there's no browser support so we'll just stop here
		if (!initialized) {
			CSS.addClass(DOM.root(), 'cufon-active cufon-loading');
			CSS.ready(function() {
				// fires before any replace() calls, but it doesn't really matter
				CSS.addClass(CSS.removeClass(DOM.root(), 'cufon-loading'), 'cufon-ready');
			});
			initialized = true;
		}
		if (options.hover) options.forceHitArea = true;
		if (options.autoDetect) delete options.fontFamily;
		if (typeof options.textShadow == 'string') {
			options.textShadow = CSS.textShadow(options.textShadow);
		}
		if (typeof options.color == 'string' && /^-/.test(options.color)) {
			options.textGradient = CSS.gradient(options.color);
		}
		else delete options.textGradient;
		if (!ignoreHistory) replaceHistory.add(elements, arguments);
		if (elements.nodeType || typeof elements == 'string') elements = [ elements ];
		CSS.ready(function() {
			for (var i = 0, l = elements.length; i < l; ++i) {
				var el = elements[i];
				if (typeof el == 'string') api.replace(options.selector(el), options, true);
				else replaceElement(el, options);
			}
		});
		return api;
	};

	api.set = function(option, value) {
		defaultOptions[option] = value;
		return api;
	};

	return api;

})();

Cufon.registerEngine('canvas', (function() {

	// Safari 2 doesn't support .apply() on native methods

	var check = document.createElement('canvas');
	if (!check || !check.getContext || !check.getContext.apply) return;
	check = null;

	var HAS_INLINE_BLOCK = Cufon.CSS.supports('display', 'inline-block');

	// Firefox 2 w/ non-strict doctype (almost standards mode)
	var HAS_BROKEN_LINEHEIGHT = !HAS_INLINE_BLOCK && (document.compatMode == 'BackCompat' || /frameset|transitional/i.test(document.doctype.publicId));

	var styleSheet = document.createElement('style');
	styleSheet.type = 'text/css';
	styleSheet.appendChild(document.createTextNode((
		'cufon{text-indent:0;}' +
		'@media screen,projection{' +
			'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;' +
			(HAS_BROKEN_LINEHEIGHT
				? ''
				: 'font-size:1px;line-height:1px;') +
			'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-indent:-10000in;}' +
			(HAS_INLINE_BLOCK
				? 'cufon canvas{position:relative;}'
				: 'cufon canvas{position:absolute;}') +
		'}' +
		'@media print{' +
			'cufon{padding:0;}' + // Firefox 2
			'cufon canvas{display:none;}' +
		'}'
	).replace(/;/g, '!important;')));
	document.getElementsByTagName('head')[0].appendChild(styleSheet);

	function generateFromVML(path, context) {
		var atX = 0, atY = 0;
		var code = [], re = /([mrvxe])([^a-z]*)/g, match;
		generate: for (var i = 0; match = re.exec(path); ++i) {
			var c = match[2].split(',');
			switch (match[1]) {
				case 'v':
					code[i] = { m: 'bezierCurveTo', a: [ atX + ~~c[0], atY + ~~c[1], atX + ~~c[2], atY + ~~c[3], atX += ~~c[4], atY += ~~c[5] ] };
					break;
				case 'r':
					code[i] = { m: 'lineTo', a: [ atX += ~~c[0], atY += ~~c[1] ] };
					break;
				case 'm':
					code[i] = { m: 'moveTo', a: [ atX = ~~c[0], atY = ~~c[1] ] };
					break;
				case 'x':
					code[i] = { m: 'closePath' };
					break;
				case 'e':
					break generate;
			}
			context[code[i].m].apply(context, code[i].a);
		}
		return code;
	}

	function interpret(code, context) {
		for (var i = 0, l = code.length; i < l; ++i) {
			var line = code[i];
			context[line.m].apply(context, line.a);
		}
	}

	return function(font, text, style, options, node, el) {

		var redraw = (text === null);

		if (redraw) text = node.getAttribute('alt');

		var viewBox = font.viewBox;

		var size = style.getSize('fontSize', font.baseSize);

		var expandTop = 0, expandRight = 0, expandBottom = 0, expandLeft = 0;
		var shadows = options.textShadow, shadowOffsets = [];
		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				var x = size.convertFrom(parseFloat(shadow.offX));
				var y = size.convertFrom(parseFloat(shadow.offY));
				shadowOffsets[i] = [ x, y ];
				if (y < expandTop) expandTop = y;
				if (x > expandRight) expandRight = x;
				if (y > expandBottom) expandBottom = y;
				if (x < expandLeft) expandLeft = x;
			}
		}

		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			~~size.convertFrom(parseFloat(style.get('letterSpacing')) || 0),
			~~size.convertFrom(parseFloat(style.get('wordSpacing')) || 0)
		);

		if (!jumps.length) return null; // there's nothing to render

		var width = jumps.total;

		expandRight += viewBox.width - jumps[jumps.length - 1];
		expandLeft += viewBox.minX;

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-canvas';
			wrapper.setAttribute('alt', text);

			canvas = document.createElement('canvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height);
		var roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var stretchedWidth = width * stretchFactor;

		var canvasWidth = Math.ceil(size.convert(stretchedWidth + expandRight - expandLeft));
		var canvasHeight = Math.ceil(size.convert(viewBox.height - expandTop + expandBottom));

		canvas.width = canvasWidth;
		canvas.height = canvasHeight;

		// needed for WebKit and full page zoom
		cStyle.width = canvasWidth + 'px';
		cStyle.height = canvasHeight + 'px';

		// minY has no part in canvas.height
		expandTop += viewBox.minY;

		cStyle.top = Math.round(size.convert(expandTop - font.ascent)) + 'px';
		cStyle.left = Math.round(size.convert(expandLeft)) + 'px';

		var wrapperWidth = Math.max(Math.ceil(size.convert(stretchedWidth)), 0) + 'px';

		if (HAS_INLINE_BLOCK) {
			wStyle.width = wrapperWidth;
			wStyle.height = size.convert(font.height) + 'px';
		}
		else {
			wStyle.paddingLeft = wrapperWidth;
			wStyle.paddingBottom = (size.convert(font.height) - 1) + 'px';
		}

		var g = canvas.getContext('2d'), scale = height / viewBox.height;

		// proper horizontal scaling is performed later
		g.scale(scale, scale * roundingFactor);
		g.translate(-expandLeft, -expandTop);
		g.save();

		function renderText() {
			var glyphs = font.glyphs, glyph, i = -1, j = -1, chr;
			g.scale(stretchFactor, 1);
			while (chr = chars[++i]) {
				var glyph = glyphs[chars[i]] || font.missingGlyph;
				if (!glyph) continue;
				if (glyph.d) {
					g.beginPath();
					if (glyph.code) interpret(glyph.code, g);
					else glyph.code = generateFromVML('m' + glyph.d, g);
					g.fill();
				}
				g.translate(jumps[++j], 0);
			}
			g.restore();
		}

		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				g.save();
				g.fillStyle = shadow.color;
				g.translate.apply(g, shadowOffsets[i]);
				renderText();
			}
		}

		var gradient = options.textGradient;
		if (gradient) {
			var stops = gradient.stops, fill = g.createLinearGradient(0, viewBox.minY, 0, viewBox.maxY);
			for (var i = 0, l = stops.length; i < l; ++i) {
				fill.addColorStop.apply(fill, stops[i]);
			}
			g.fillStyle = fill;
		}
		else g.fillStyle = style.get('color');

		renderText();

		return wrapper;

	};

})());

Cufon.registerEngine('vml', (function() {

	var ns = document.namespaces;
	if (!ns) return;
	ns.add('cvml', 'urn:schemas-microsoft-com:vml');
	ns = null;

	var check = document.createElement('cvml:shape');
	check.style.behavior = 'url(#default#VML)';
	if (!check.coordsize) return; // VML isn't supported
	check = null;

	var HAS_BROKEN_LINEHEIGHT = (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:' +
			(HAS_BROKEN_LINEHEIGHT
				? 'middle'
				: 'text-bottom') +
			';}' +
			'cufon cufontext{position:absolute;left:-10000in;font-size:1px;}' +
			'a cufon{cursor:pointer}' + // ignore !important here
		'}' +
		'@media print{' +
			'cufon cufoncanvas{display:none;}' +
		'}' +
	'</style>').replace(/;/g, '!important;'));

	function getFontSizeInPixels(el, value) {
		return getSizeInPixels(el, /(?:em|ex|%)$|^[a-z-]+$/i.test(value) ? '1em' : value);
	}

	// Original by Dead Edwards.
	// Combined with getFontSizeInPixels it also works with relative units.
	function getSizeInPixels(el, value) {
		if (!isNaN(value) || /px$/i.test(value)) return parseFloat(value);
		var style = el.style.left, runtimeStyle = el.runtimeStyle.left;
		el.runtimeStyle.left = el.currentStyle.left;
		el.style.left = value.replace('%', 'em');
		var result = el.style.pixelLeft;
		el.style.left = style;
		el.runtimeStyle.left = runtimeStyle;
		return result;
	}

	function getSpacingValue(el, style, size, property) {
		var key = 'computed' + property, value = style[key];
		if (isNaN(value)) {
			value = style.get(property);
			style[key] = value = (value == 'normal') ? 0 : ~~size.convertFrom(getSizeInPixels(el, value));
		}
		return value;
	}

	var fills = {};

	function gradientFill(gradient) {
		var id = gradient.id;
		if (!fills[id]) {
			var stops = gradient.stops, fill = document.createElement('cvml:fill'), colors = [];
			fill.type = 'gradient';
			fill.angle = 180;
			fill.focus = '0';
			fill.method = 'none';
			fill.color = stops[0][1];
			for (var j = 1, k = stops.length - 1; j < k; ++j) {
				colors.push(stops[j][0] * 100 + '% ' + stops[j][1]);
			}
			fill.colors = colors.join(',');
			fill.color2 = stops[k][1];
			fills[id] = fill;
		}
		return fills[id];
	}

	return function(font, text, style, options, node, el, hasNext) {

		var redraw = (text === null);

		if (redraw) text = node.alt;

		var viewBox = font.viewBox;

		var size = style.computedFontSize || (style.computedFontSize = new Cufon.CSS.Size(getFontSizeInPixels(el, style.get('fontSize')) + 'px', font.baseSize));

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-vml';
			wrapper.alt = text;

			canvas = document.createElement('cufoncanvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}

			// ie6, for some reason, has trouble rendering the last VML element in the document.
			// we can work around this by injecting a dummy element where needed.
			// @todo find a better solution
			if (!hasNext) wrapper.appendChild(document.createElement('cvml:shape'));
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height), roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var minX = viewBox.minX, minY = viewBox.minY;

		cStyle.height = roundedHeight;
		cStyle.top = Math.round(size.convert(minY - font.ascent));
		cStyle.left = Math.round(size.convert(minX));

		wStyle.height = size.convert(font.height) + 'px';

		var color = style.get('color');
		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			getSpacingValue(el, style, size, 'letterSpacing'),
			getSpacingValue(el, style, size, 'wordSpacing')
		);

		if (!jumps.length) return null;

		var width = jumps.total;
		var fullWidth = -minX + width + (viewBox.width - jumps[jumps.length - 1]);

		var shapeWidth = size.convert(fullWidth * stretchFactor), roundedShapeWidth = Math.round(shapeWidth);

		var coordSize = fullWidth + ',' + viewBox.height, coordOrigin;
		var stretch = 'r' + coordSize + 'ns';

		var fill = options.textGradient && gradientFill(options.textGradient);

		var glyphs = font.glyphs, offsetX = 0;
		var shadows = options.textShadow;
		var i = -1, j = 0, chr;

		while (chr = chars[++i]) {

			var glyph = glyphs[chars[i]] || font.missingGlyph, shape;
			if (!glyph) continue;

			if (redraw) {
				// some glyphs may be missing so we can't use i
				shape = canvas.childNodes[j];
				while (shape.firstChild) shape.removeChild(shape.firstChild); // shadow, fill
			}
			else {
				shape = document.createElement('cvml:shape');
				canvas.appendChild(shape);
			}

			shape.stroked = 'f';
			shape.coordsize = coordSize;
			shape.coordorigin = coordOrigin = (minX - offsetX) + ',' + minY;
			shape.path = (glyph.d ? 'm' + glyph.d + 'xe' : '') + 'm' + coordOrigin + stretch;
			shape.fillcolor = color;

			if (fill) shape.appendChild(fill.cloneNode(false));

			// it's important to not set top/left or IE8 will grind to a halt
			var sStyle = shape.style;
			sStyle.width = roundedShapeWidth;
			sStyle.height = roundedHeight;

			if (shadows) {
				// due to the limitations of the VML shadow element there
				// can only be two visible shadows. opacity is shared
				// for all shadows.
				var shadow1 = shadows[0], shadow2 = shadows[1];
				var color1 = Cufon.CSS.color(shadow1.color), color2;
				var shadow = document.createElement('cvml:shadow');
				shadow.on = 't';
				shadow.color = color1.color;
				shadow.offset = shadow1.offX + ',' + shadow1.offY;
				if (shadow2) {
					color2 = Cufon.CSS.color(shadow2.color);
					shadow.type = 'double';
					shadow.color2 = color2.color;
					shadow.offset2 = shadow2.offX + ',' + shadow2.offY;
				}
				shadow.opacity = color1.opacity || (color2 && color2.opacity) || 1;
				shape.appendChild(shadow);
			}

			offsetX += jumps[j++];
		}

		// addresses flickering issues on :hover

		var cover = shape.nextSibling, coverFill, vStyle;

		if (options.forceHitArea) {

			if (!cover) {
				cover = document.createElement('cvml:rect');
				cover.stroked = 'f';
				cover.className = 'cufon-vml-cover';
				coverFill = document.createElement('cvml:fill');
				coverFill.opacity = 0;
				cover.appendChild(coverFill);
				canvas.appendChild(cover);
			}

			vStyle = cover.style;

			vStyle.width = roundedShapeWidth;
			vStyle.height = roundedHeight;

		}
		else if (cover) canvas.removeChild(cover);

		wStyle.width = Math.max(Math.ceil(size.convert(width * stretchFactor)), 0);

		if (HAS_BROKEN_LINEHEIGHT) {

			var yAdjust = style.computedYAdjust;

			if (yAdjust === undefined) {
				var lineHeight = style.get('lineHeight');
				if (lineHeight == 'normal') lineHeight = '1em';
				else if (!isNaN(lineHeight)) lineHeight += 'em'; // no unit
				style.computedYAdjust = yAdjust = 0.5 * (getSizeInPixels(el, lineHeight) - parseFloat(wStyle.height));
			}

			if (yAdjust) {
				wStyle.marginTop = Math.ceil(yAdjust) + 'px';
				wStyle.marginBottom = yAdjust + 'px';
			}

		}

		return wrapper;

	};

})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Manufacturer:
 * Dalton Maag Ltd.
 */
Cufon.registerFont({"w":216,"face":{"font-family":"Aller","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 3 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-14 -337.259 360.889 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":85},"%":{"d":"84,-132v26,0,35,-22,34,-51v-1,-29,-8,-50,-34,-50v-25,0,-36,21,-35,50v0,29,7,51,35,51xm84,-106v-47,0,-68,-31,-68,-77v0,-45,22,-76,68,-76v45,0,67,31,67,76v0,46,-21,77,-67,77xm292,-22v26,0,35,-22,35,-50v0,-29,-8,-50,-35,-50v-26,0,-35,22,-34,50v1,28,7,50,34,50xm292,4v-46,0,-67,-31,-67,-76v0,-45,21,-77,67,-77v46,0,68,31,68,77v0,46,-22,76,-68,76xm258,-255v12,0,26,-2,37,0r-174,255v-12,1,-25,2,-36,0","w":378},"&":{"d":"145,-229v-30,-10,-78,-8,-78,29v0,50,74,30,121,34r33,-45r3,0r0,45r47,0v3,8,2,21,0,29r-47,0r0,53v0,63,-43,88,-106,88v-56,0,-97,-22,-97,-77v0,-37,20,-62,46,-74v-20,-9,-37,-25,-37,-54v-1,-60,70,-72,123,-55v-1,12,-3,18,-8,27xm60,-79v0,35,23,51,61,51v64,0,73,-44,69,-108r-73,0v-36,1,-57,23,-57,57","w":273},"'":{"d":"23,-259v11,0,24,-2,34,0r0,99v-11,2,-23,1,-34,0r0,-99","w":80},"(":{"d":"97,-279v-55,77,-56,262,0,339v-11,2,-24,3,-35,0v-57,-78,-57,-261,0,-339v11,-2,23,-2,35,0","w":114},")":{"d":"53,-279v57,78,57,261,0,339v-11,2,-23,2,-35,0v55,-77,56,-262,0,-339v11,-2,24,-3,35,0","w":114},"*":{"d":"76,-259v8,-2,15,-1,23,0r3,47v-10,0,-20,2,-29,0xm66,-207v-1,10,-4,18,-8,26r-44,-17v1,-7,3,-14,7,-21xm60,-173v9,4,16,10,23,16r-30,36r-18,-13xm154,-219v4,7,6,14,7,21r-44,17v-4,-8,-7,-16,-8,-26xm139,-134v-5,6,-11,9,-18,13r-30,-36v7,-5,15,-12,23,-16","w":174},"+":{"d":"92,-111r-60,0v-2,-9,-1,-23,0,-32r60,0r0,-65v11,-2,21,-2,32,0r0,65r60,0v0,11,2,22,0,32r-60,0r0,66v-10,1,-22,2,-32,0r0,-66"},",":{"d":"28,-40v12,-1,23,-2,36,0r-23,81v-11,0,-24,2,-34,0","w":76},"-":{"d":"112,-117v0,10,2,23,0,32r-94,0v0,-10,-2,-23,0,-32r94,0","w":129},".":{"d":"23,0v0,-13,-2,-28,0,-40v13,-2,27,-2,40,0v3,11,3,29,0,40v-13,0,-28,2,-40,0","w":86},"\/":{"d":"100,-259v12,0,24,-2,35,0r-88,259v-11,0,-24,2,-34,0","w":147},"0":{"d":"18,-116v0,-69,25,-120,91,-120v65,0,90,51,90,120v0,68,-25,120,-91,120v-66,0,-90,-52,-90,-120xm161,-116v0,-50,-12,-88,-53,-88v-41,0,-53,39,-53,88v0,50,11,89,53,89v41,0,53,-40,53,-89"},"1":{"d":"49,-162v-7,-8,-10,-14,-13,-26v35,-14,62,-36,101,-46r0,203r51,0v1,11,2,20,0,31r-140,0v-3,-9,-2,-21,0,-31r54,0r0,-154"},"2":{"d":"27,-221v50,-26,151,-21,146,53v-4,63,-54,95,-86,136r96,0v0,10,2,23,0,32r-160,0r-2,-5r102,-122v22,-29,13,-77,-35,-77v-23,0,-37,7,-52,13v-3,-9,-9,-19,-9,-30"},"3":{"d":"28,-16v42,19,119,17,119,-43v0,-41,-43,-51,-82,-41r-3,-5r60,-95r-92,0v-2,-9,-3,-23,0,-32r145,0r3,4r-66,100v43,-4,70,24,72,65v4,85,-94,105,-167,77v2,-11,6,-21,11,-30"},"4":{"d":"15,-28r-3,-4r105,-207v12,1,23,7,32,12r-84,167r73,0r0,-68v11,-2,23,-2,34,0r0,68r34,0v0,10,2,23,0,32r-34,0r0,49v-11,0,-24,2,-34,0r0,-49r-123,0"},"5":{"d":"79,-136v60,-10,105,17,105,74v0,82,-89,103,-161,78v1,-12,5,-21,10,-30v44,17,113,11,113,-46v0,-50,-57,-57,-98,-42r-4,-3r5,-127r122,0v0,11,2,22,0,32r-90,0"},"6":{"d":"112,4v-110,7,-104,-153,-55,-214v22,-30,56,-48,104,-52v4,11,3,20,1,30v-59,6,-91,45,-101,101v10,-18,31,-35,61,-34v49,2,77,31,77,83v0,54,-34,82,-87,86xm162,-81v0,-34,-16,-54,-49,-54v-32,0,-49,22,-50,55v-1,34,17,53,48,53v33,0,51,-21,51,-54"},"7":{"d":"88,27v-13,-3,-23,-7,-33,-15r92,-212r-122,0v0,-11,-2,-22,0,-32r173,2"},"8":{"d":"185,-197v1,32,-20,49,-42,60v28,13,54,31,54,71v0,49,-38,70,-89,70v-51,0,-89,-21,-89,-70v0,-40,26,-58,53,-71v-22,-11,-42,-29,-41,-60v1,-42,34,-62,77,-62v43,0,75,20,77,62xm108,-26v58,0,66,-72,20,-88v-6,-3,-13,-6,-20,-8v-26,9,-51,20,-51,53v0,28,21,43,51,43xm108,-230v-48,-4,-54,58,-16,73v26,11,58,-7,58,-37v0,-25,-16,-34,-42,-36"},"9":{"d":"106,-235v109,-7,103,153,55,214v-23,29,-55,49,-104,52v-4,-8,-3,-21,-1,-30v58,-7,93,-43,101,-100v-11,17,-32,34,-61,33v-51,0,-77,-32,-77,-82v0,-55,34,-83,87,-87xm57,-149v0,35,16,53,48,53v32,0,51,-21,51,-54v1,-34,-17,-54,-49,-54v-30,1,-50,21,-50,55"},":":{"d":"23,-145v0,-13,-2,-28,0,-40v13,-2,27,-2,40,0v3,11,3,29,0,40v-13,0,-28,2,-40,0xm23,0v0,-13,-2,-28,0,-40v13,-2,27,-2,40,0v3,11,3,29,0,40v-13,0,-28,2,-40,0","w":86},";":{"d":"31,-40v12,-1,23,-2,36,0r-23,81v-11,0,-24,2,-34,0xm29,-145v0,-13,-2,-28,0,-40v13,-2,27,-2,40,0v3,11,3,29,0,40v-13,0,-28,2,-40,0","w":93},"<":{"d":"184,-204v3,14,2,22,0,34r-118,46r118,44v2,12,2,24,0,36r-150,-61v-2,-12,-3,-26,0,-38"},"=":{"d":"184,-107v2,10,2,22,0,32r-152,0v0,-10,-2,-23,0,-32r152,0xm184,-176v2,11,2,23,0,33r-152,0v0,-11,-2,-23,0,-33r152,0"},">":{"d":"32,-44v0,-11,-2,-24,0,-34r118,-46r-118,-44v-2,-12,-2,-24,0,-36r150,61v3,10,2,26,0,38"},"?":{"d":"162,-189v-2,42,-32,63,-62,75r0,37v-11,0,-24,2,-34,0r0,-58v29,-8,57,-18,58,-54v1,-44,-69,-46,-100,-30v-3,-10,-7,-18,-9,-30v58,-23,151,-10,147,60xm62,0v0,-13,-2,-28,0,-40v11,-3,29,-3,41,0v0,13,2,28,0,40v-13,0,-29,2,-41,0","w":175},"@":{"d":"54,-78v-6,93,84,124,165,96v4,7,7,15,8,25v-18,8,-41,12,-70,12v-85,-2,-137,-45,-137,-132v0,-113,73,-186,194,-186v79,0,129,40,131,122v2,79,-63,146,-137,110v-39,25,-110,14,-108,-44v3,-83,71,-133,157,-105r-26,129v52,20,82,-39,82,-90v0,-62,-39,-96,-103,-94v-97,2,-150,62,-156,157xm136,-82v-2,37,35,43,63,29r20,-104v-51,-9,-80,26,-83,75","w":365},"A":{"d":"159,-60r-98,0r-18,60v-12,0,-26,2,-37,0r84,-259v14,0,29,-2,42,0r84,259v-13,0,-27,2,-39,0xm71,-92r78,0r-39,-132","w":222},"B":{"d":"198,-72v1,80,-91,81,-166,72r0,-259v64,-9,153,-9,150,64v-2,29,-18,49,-42,56v34,6,58,25,58,67xm159,-73v0,-47,-43,-49,-91,-48r0,93v45,3,91,1,91,-45xm145,-193v0,-38,-37,-45,-77,-40r0,82v42,2,77,-2,77,-42","w":214},"C":{"d":"61,-128v0,82,66,119,136,90v5,10,9,20,10,30v-19,8,-40,12,-65,12v-81,-1,-118,-52,-121,-132v-4,-104,83,-159,182,-125v0,12,-6,21,-9,30v-69,-27,-133,13,-133,95","w":222},"D":{"d":"231,-129v0,114,-87,147,-199,129r0,-259v110,-19,199,18,199,130xm192,-130v0,-75,-44,-108,-123,-99r0,199v77,11,123,-21,123,-100","w":251},"E":{"d":"32,-259r142,0v0,10,2,23,0,32r-106,0r0,74r85,0v0,10,2,23,0,32r-85,0r0,89r109,0v0,10,2,23,0,32r-145,0r0,-259","w":192},"F":{"d":"32,-259r135,0v0,10,2,23,0,32r-99,0r0,76r83,0v0,11,2,23,0,33r-83,0r0,118v-12,0,-25,2,-36,0r0,-259","w":181},"G":{"d":"60,-128v-2,73,48,114,121,95r0,-101v12,0,26,-2,37,0r0,126v-20,8,-44,13,-73,12v-82,-2,-121,-50,-124,-132v-3,-104,85,-159,184,-125v0,12,-6,21,-9,30v-15,-4,-29,-9,-51,-8v-59,2,-83,43,-85,103","w":245},"H":{"d":"32,-259v12,0,25,-2,36,0r0,107r111,0r0,-107v12,0,25,-2,36,0r0,259v-12,0,-25,2,-36,0r0,-120r-111,0r0,120v-12,0,-25,2,-36,0r0,-259","w":246},"I":{"d":"32,-259v12,0,25,-2,36,0r0,259v-12,0,-25,2,-36,0r0,-259","w":100},"J":{"d":"16,-31v29,8,60,2,60,-33r0,-163r-45,0v-2,-10,-2,-22,0,-32r82,0r0,187v5,63,-44,87,-103,72v1,-12,3,-20,6,-31","w":142},"K":{"d":"79,-131r83,-128v13,0,27,-2,40,0r-82,124r93,135v-14,0,-28,2,-42,0xm32,-259v12,0,25,-2,36,0r0,259v-12,0,-25,2,-36,0r0,-259"},"L":{"d":"32,-259v12,0,25,-2,36,0r0,227r102,0v1,10,2,22,0,32r-138,0r0,-259","w":178},"M":{"d":"39,-259v13,0,29,-2,41,0r67,162r68,-162v13,0,27,-2,39,0r12,259v-12,0,-24,2,-35,0r-9,-201r-63,147v-9,1,-19,2,-28,0r-62,-148r-8,202v-11,0,-23,2,-34,0","w":293},"N":{"d":"32,-259v11,0,23,-2,34,0r112,195r0,-195v12,0,24,-2,35,0r0,259v-11,0,-23,2,-34,0r-113,-193r0,193v-11,0,-24,2,-34,0r0,-259","w":244},"O":{"d":"240,-129v0,79,-31,133,-109,133v-78,0,-109,-56,-109,-133v0,-77,31,-134,109,-134v78,0,109,55,109,134xm61,-129v0,55,15,102,70,102v55,0,71,-47,71,-102v0,-55,-15,-102,-71,-102v-55,0,-70,47,-70,102","w":262},"P":{"d":"190,-180v0,70,-52,92,-122,86r0,94v-12,0,-25,2,-36,0r0,-259v76,-12,158,-4,158,79xm152,-179v0,-46,-37,-57,-84,-51r0,104v45,6,84,-5,84,-53","w":203},"Q":{"d":"243,23v0,13,-3,22,-6,32r-83,-15v0,-15,3,-20,7,-31xm239,-129v0,79,-31,133,-109,133v-78,0,-109,-56,-109,-133v0,-77,31,-134,109,-134v78,0,109,55,109,134xm60,-129v1,57,16,102,70,102v55,0,71,-46,71,-102v0,-56,-16,-102,-71,-102v-55,0,-70,45,-70,102","w":260},"R":{"d":"149,-181v1,-43,-35,-56,-80,-50r0,231v-12,0,-25,2,-37,0r0,-259v83,-16,181,8,151,101v-8,24,-28,39,-50,49r75,109v-12,1,-28,2,-41,0r-83,-121v30,-10,64,-21,65,-60","w":214},"S":{"d":"145,-137v70,41,26,157,-62,141v-27,1,-47,-3,-66,-11v0,-10,5,-23,8,-32v43,20,140,14,112,-51v-21,-48,-114,-28,-114,-103v0,-70,87,-82,145,-60v-1,10,-3,20,-7,30v-34,-17,-120,-14,-96,41v12,27,55,30,80,45","w":196},"T":{"d":"76,-227r-67,0v0,-10,-2,-23,0,-32r171,0v2,10,2,22,0,32r-67,0r0,227v-12,2,-25,1,-37,0r0,-227","w":189,"k":{"\u00ef":-11,"\u00ec":-14}},"U":{"d":"121,4v-124,0,-86,-150,-92,-263v12,-1,25,-2,37,0r0,147v1,47,7,83,55,83v48,0,56,-34,55,-83r0,-147v12,-1,26,-2,37,0v-6,114,33,263,-92,263","w":242},"V":{"d":"8,-259v13,0,29,-2,41,0r65,222r65,-222v13,0,28,-2,40,0r-85,259v-14,0,-29,2,-42,0","w":226,"k":{"\u00ef":-11,"\u00ec":-25}},"W":{"d":"10,-259v13,0,28,-2,40,0r45,216r53,-216v12,0,27,-2,38,0r54,218r45,-218v12,0,26,-2,37,0r-62,259v-14,0,-30,2,-43,0r-51,-203r-52,203v-14,0,-29,2,-42,0","w":331,"k":{"\u00ef":-11,"\u00ec":-14}},"X":{"d":"108,-135r-62,135v-14,2,-24,1,-38,0r64,-135r-54,-123v13,-2,26,-3,39,0xm111,-135r51,-123v12,-2,27,-3,39,0r-54,122r64,136v-15,2,-24,1,-39,0","w":219},"Y":{"d":"89,-95r-83,-164v14,0,29,-2,42,0r60,129r60,-129v13,0,27,-2,39,0r-81,164r0,95v-12,0,-26,2,-37,0r0,-95","w":213,"k":{"\u00ef":-11,"\u00ec":-11}},"Z":{"d":"9,-3r130,-224r-114,0v-2,-10,-2,-22,0,-32r168,0r2,3r-130,224r121,0v2,10,2,22,0,32r-175,0","w":203},"[":{"d":"18,-274r77,0v2,10,2,20,0,30r-42,0r0,275r42,0v2,10,2,20,0,29r-77,0r0,-334","w":114},"\\":{"d":"134,0v-12,0,-24,2,-35,0r-87,-259v12,0,24,-2,35,0","w":148},"]":{"d":"19,60v-2,-9,-1,-21,0,-29r43,0r0,-275r-43,0v-1,-10,-2,-20,0,-30r78,0r0,334r-78,0","w":114},"^":{"d":"80,-259v13,0,26,-2,38,0r57,127v-11,0,-23,2,-33,0r-44,-97r-42,97v-12,1,-22,0,-34,0","w":198},"_":{"d":"180,5v1,8,2,19,0,27r-178,0v-2,-9,-3,-18,0,-27r178,0","w":181},"`":{"d":"46,-260v15,0,32,-2,46,0r42,46v-12,3,-25,2,-36,0","w":180},"a":{"d":"53,-55v0,36,45,34,73,27r0,-59v-34,-5,-73,-3,-73,32xm17,-55v3,-52,53,-68,109,-60v10,-52,-52,-49,-87,-37v-5,-8,-7,-18,-7,-29v56,-17,129,-11,129,61r0,115v-54,14,-148,20,-144,-50","w":186},"b":{"d":"193,-97v0,89,-86,119,-165,91r0,-258v12,0,25,-2,36,0r0,102v9,-15,28,-27,53,-27v54,1,76,36,76,92xm111,-158v-60,-2,-46,72,-47,128v50,14,94,-11,92,-65v-2,-36,-10,-62,-45,-63","w":212},"c":{"d":"55,-92v0,58,48,77,97,60v4,6,7,18,7,28v-71,25,-141,-9,-141,-88v0,-77,68,-114,139,-89v-1,9,-3,21,-6,28v-50,-19,-96,4,-96,61","w":172},"d":{"d":"19,-89v0,-74,55,-112,128,-95r0,-80v12,0,25,-2,36,0r0,259v-73,22,-164,7,-164,-84xm57,-89v-4,55,42,73,90,60r0,-124v-47,-20,-97,9,-90,64","w":210},"e":{"d":"164,-34v3,8,6,18,7,28v-69,27,-160,1,-153,-85v5,-59,28,-98,87,-98v58,0,82,44,76,105r-126,0v-5,60,62,69,109,50xm147,-110v4,-44,-50,-67,-77,-37v-8,9,-12,21,-14,37r91,0","w":200},"f":{"d":"132,-235v-34,-11,-62,7,-55,50r47,0v1,9,2,20,0,28r-47,0r0,157v-12,0,-25,2,-36,0r0,-157r-30,0v-2,-7,-1,-20,0,-28r30,0v-8,-64,37,-93,96,-79v0,12,-3,19,-5,29","w":133,"k":{"\u00ef":-20,"\u00ee":-11,"\u00ec":-23}},"g":{"d":"54,-41v2,26,47,17,74,17v38,0,61,17,61,50v0,47,-49,64,-100,64v-43,0,-76,-10,-76,-48v0,-22,14,-37,29,-45v-26,-13,-18,-58,5,-70v-15,-10,-26,-27,-26,-51v0,-64,85,-81,127,-48v10,-8,27,-15,46,-14v0,11,2,22,0,32r-32,0v29,57,-27,112,-93,91v-6,4,-15,12,-15,22xm152,28v0,-30,-43,-22,-73,-23v-21,-2,-32,13,-32,30v0,46,105,31,105,-7xm58,-124v0,24,13,39,38,39v25,0,38,-15,38,-39v0,-25,-13,-39,-38,-39v-25,0,-38,14,-38,39","w":199},"h":{"d":"113,-157v-67,0,-46,92,-49,157v-12,0,-25,2,-36,0r0,-264v12,0,25,-2,36,0r0,107v11,-16,28,-32,57,-32v86,0,57,111,62,189v-12,0,-24,2,-35,0v-7,-56,23,-157,-35,-157","w":208},"i":{"d":"40,-157v-18,3,-32,0,-24,-28r59,0r0,185v-12,0,-24,2,-35,0r0,-157xm32,-225v0,-12,-2,-26,0,-37v12,0,27,-2,38,0v0,12,2,25,0,37v-12,0,-27,2,-38,0","w":103},"j":{"d":"-9,36v24,8,50,2,50,-28r0,-165v-18,3,-32,0,-24,-28r59,0r0,195v4,51,-45,65,-90,53v0,-10,2,-20,5,-27xm70,-226v-27,8,-48,1,-38,-35v10,-3,28,-3,38,0v2,12,2,23,0,35","w":104},"k":{"d":"27,-264v12,0,25,-2,36,0r0,264v-12,0,-25,2,-36,0r0,-264xm73,-96r58,-89v13,0,28,-2,40,0r-59,87r69,98v-13,0,-28,2,-40,0","w":185},"l":{"d":"104,0v-41,9,-76,-4,-76,-48r0,-216v12,0,24,-2,35,0r0,208v-2,25,13,34,37,28v2,8,4,18,4,28","w":107},"m":{"d":"108,-158v-62,0,-40,95,-44,158v-12,0,-24,2,-35,0r0,-185v10,0,20,-2,30,0r3,29v12,-39,95,-46,105,0v11,-17,26,-32,54,-33v86,-4,57,111,62,189v-12,0,-25,2,-36,0r0,-107v-1,-29,-5,-50,-32,-50v-61,0,-36,97,-41,157v-12,0,-25,2,-36,0r0,-110v0,-28,-5,-48,-30,-48","w":307},"n":{"d":"114,-157v-66,0,-48,91,-50,157v-12,0,-24,2,-35,0r0,-185v10,0,20,-2,30,0r3,30v11,-18,30,-33,59,-34v86,-4,57,111,62,189v-12,0,-24,2,-35,0r0,-107v-1,-30,-6,-50,-34,-50","w":208},"o":{"d":"190,-92v0,57,-27,96,-86,96v-59,0,-86,-38,-86,-96v0,-59,28,-97,86,-97v57,0,86,40,86,97xm55,-92v0,39,12,68,49,68v36,0,48,-30,48,-68v0,-38,-12,-68,-48,-68v-37,0,-49,30,-49,68","w":207},"p":{"d":"193,-97v0,75,-55,115,-129,97r0,85v-12,0,-25,2,-36,0r0,-270v21,-3,39,-2,34,26v11,-17,29,-30,56,-30v53,0,75,37,75,92xm111,-158v-59,-1,-46,71,-47,128v52,15,95,-11,92,-65v-2,-35,-11,-63,-45,-63","w":212},"q":{"d":"19,-87v0,-88,81,-119,163,-94r0,266v-12,0,-24,2,-35,0r0,-85v-68,15,-128,-13,-128,-87xm56,-86v0,54,44,69,91,56r0,-126v-53,-13,-91,15,-91,70","w":210},"r":{"d":"125,-153v-79,-10,-58,82,-61,153v-12,0,-24,2,-35,0r0,-185v10,0,21,-2,30,0r3,29v11,-18,32,-35,63,-29v2,10,2,21,0,32","w":133},"s":{"d":"144,-75v23,74,-70,93,-127,71v0,-11,6,-20,9,-29v32,20,113,2,76,-39v-30,-18,-80,-18,-80,-64v0,-56,74,-61,120,-44v-1,10,-4,20,-8,28v-25,-17,-102,-8,-67,30v25,17,68,15,77,47","w":163},"t":{"d":"123,-1v-44,11,-87,0,-87,-50r0,-105v-10,-2,-28,5,-30,-5r62,-69r3,0r0,45r47,0v0,10,2,20,0,29r-47,0r0,84v-6,39,16,54,48,43v4,8,3,19,4,28","w":128},"u":{"d":"179,-6v-67,21,-152,16,-152,-76r0,-103v12,0,24,-2,35,0v6,65,-23,165,51,159v12,0,22,-1,31,-4r0,-155v12,0,24,-2,35,0r0,179","w":206},"v":{"d":"6,-185v13,0,28,-2,40,0r50,153r51,-153v13,0,26,-2,38,0r-72,185v-12,0,-24,2,-35,0","w":191},"w":{"d":"8,-185v13,0,26,-2,38,0r36,151r41,-151v12,0,25,-2,36,0r41,149r36,-149v12,0,24,-2,35,0r-55,185v-12,0,-25,2,-36,0r-40,-140r-41,140v-12,0,-26,2,-37,0","w":279},"x":{"d":"57,-96r-44,-89v13,0,26,-2,39,0r38,90r-46,95v-13,0,-26,2,-38,0xm93,-95r38,-90v13,0,26,-2,39,0r-43,88r50,97v-13,0,-25,2,-38,0","w":183},"y":{"d":"31,58v23,8,48,0,50,-23r11,-35v-8,0,-19,2,-26,0r-61,-185v13,0,27,-2,39,0r51,172r53,-172v12,0,25,-2,37,0r-82,247v-11,26,-47,34,-78,23v0,-13,2,-19,6,-27","w":190},"z":{"d":"10,-5r98,-151r-86,0v-1,-8,-2,-21,0,-29r139,0r1,5r-98,152r92,0v2,9,1,19,0,28r-144,0","w":171},"{":{"d":"129,60v-67,5,-75,-44,-75,-109v0,-32,-13,-45,-36,-56r0,-5v22,-11,37,-28,36,-61v-1,-64,7,-109,75,-104v2,9,2,19,0,28v-36,-2,-40,21,-40,57v0,40,-3,71,-31,82v28,12,31,44,31,85v0,35,5,55,40,54v2,10,2,19,0,29","w":149},"|":{"d":"42,-279v12,-2,24,-2,35,0r0,339v-9,3,-25,3,-35,0r0,-339","w":119},"}":{"d":"131,-105v-74,17,13,172,-112,165v0,-10,-2,-20,0,-29v37,2,41,-22,41,-57v-1,-41,4,-69,30,-82v-27,-12,-31,-42,-30,-84v0,-34,-5,-58,-41,-55v0,-9,-2,-19,0,-28v68,-5,78,39,75,104v-1,34,15,50,37,61r0,5","w":149},"~":{"d":"165,-143v-32,47,-108,-19,-143,19v-8,-7,-12,-14,-15,-23v9,-11,27,-21,47,-21v34,2,70,29,96,1v8,7,11,14,15,24","w":171},"\u00a0":{"w":0},"\u00a1":{"d":"71,73v-11,3,-28,3,-39,0r3,-181v11,0,23,-2,33,0xm72,-185v2,13,2,27,0,40v-13,0,-28,2,-40,0v0,-13,-2,-28,0,-40v13,-2,27,-2,40,0","w":104},"\u00a2":{"d":"181,-4v-12,4,-24,7,-39,8r0,38v-7,2,-18,3,-25,0r0,-39v-50,-5,-77,-41,-77,-95v0,-55,28,-89,77,-96r0,-41v9,-3,16,-2,25,0r0,41v15,0,26,3,37,7v0,10,-3,21,-6,28v-49,-19,-96,4,-96,61v0,59,48,79,97,60v4,6,7,18,7,28"},"\u00a3":{"d":"102,-110v6,26,4,61,-10,78r98,0v1,10,2,22,0,32r-153,0v16,-26,42,-64,28,-110r-32,0v-2,-8,-1,-19,0,-28r26,0v-14,-65,7,-123,76,-121v23,0,40,4,54,10v-1,12,-3,19,-8,29v-38,-18,-94,-7,-90,42v1,15,3,27,6,40r67,0v1,9,2,20,0,28r-62,0"},"\u00a4":{"d":"43,-83v-18,-20,-16,-65,1,-85r-29,-29v6,-10,12,-17,22,-22r29,29v20,-16,64,-16,84,0r29,-29v7,7,17,12,22,21r-29,29v19,19,18,67,1,87r27,27v-5,9,-12,17,-20,22r-29,-29v-25,18,-62,17,-87,0r-27,28v-10,-4,-17,-12,-22,-21xm108,-173v-28,0,-46,20,-46,48v0,28,18,48,46,48v29,0,46,-19,46,-48v0,-30,-18,-48,-46,-48"},"\u00a5":{"d":"90,-57r-66,0v0,-8,-2,-17,0,-24r66,0r0,-32r-66,0v0,-8,-2,-18,0,-25r52,0r-66,-117v13,0,29,-2,41,0r59,109r58,-109v13,0,27,-2,39,0r-66,117r55,0v2,7,1,18,0,25r-69,0r0,32r69,0v2,7,1,17,0,24r-69,0r0,57v-12,0,-26,2,-37,0r0,-57"},"\u00a6":{"d":"42,-279v12,-2,24,-2,35,0r0,120v-12,0,-24,2,-35,0r0,-120xm42,-59v12,-2,24,-2,35,0r0,119v-9,3,-25,3,-35,0r0,-119","w":119},"\u00a7":{"d":"170,-49v-3,61,-93,61,-145,44v2,-11,5,-20,9,-28v29,19,128,12,91,-31v-36,-20,-101,-15,-101,-66v0,-19,11,-33,20,-44v-32,-40,8,-84,65,-84v24,0,39,3,57,9v1,11,-4,21,-8,28v-26,-18,-116,-10,-82,31v32,18,104,18,102,64v0,20,-10,35,-20,46v8,8,12,16,12,31xm69,-160v-16,12,-17,47,11,49r52,17v16,-11,19,-47,-9,-49v-17,-7,-38,-10,-54,-17","w":202},"\u00a8":{"d":"35,-217v-2,-12,-2,-24,0,-36v10,-3,27,-3,37,0v0,12,2,25,0,36v-13,2,-24,0,-37,0xm108,-217v0,-12,-2,-25,0,-36v10,-3,27,-3,37,0v2,12,1,24,0,36v-13,2,-24,0,-37,0","w":180},"\u00a9":{"d":"118,-129v-5,43,38,59,71,43v4,7,5,15,7,24v-53,23,-109,-7,-109,-67v0,-59,51,-90,107,-71v-1,9,-3,18,-6,25v-38,-13,-74,3,-70,46xm45,-129v0,67,38,110,107,110v69,0,108,-44,108,-110v0,-67,-39,-111,-108,-111v-68,0,-107,43,-107,111xm286,-129v0,82,-52,134,-134,134v-81,0,-133,-51,-133,-134v0,-83,50,-134,133,-134v84,0,134,52,134,134","w":304},"\u00aa":{"d":"51,-154v0,27,35,24,60,21r0,-44v-25,-4,-60,-3,-60,23xm22,-153v2,-42,43,-53,89,-48v4,-40,-41,-32,-70,-27v-4,-5,-7,-14,-6,-24v46,-12,105,-9,105,48r0,90v-42,10,-122,17,-118,-39","w":180},"\u00ab":{"d":"18,-96r59,-80v13,0,27,-2,39,0r-59,80r59,80v-13,1,-27,2,-39,0xm108,-96r60,-80v13,0,26,-2,38,0r-58,80r58,80v-12,0,-26,2,-38,0","w":222},"\u00ac":{"d":"183,-139r0,100v-7,3,-25,3,-33,0r0,-67r-117,0v-2,-11,-2,-23,0,-33r150,0"},"\u00ad":{"d":"112,-117v0,10,2,23,0,32r-94,0v0,-10,-2,-23,0,-32r94,0","w":129},"\u00ae":{"d":"168,-141v20,-18,-1,-47,-33,-38r0,117v-8,2,-19,1,-27,0r0,-139v42,-6,97,-5,96,40v1,20,-12,35,-25,41r38,57v-10,0,-22,2,-32,0r-41,-64v10,-3,17,-8,24,-14xm45,-129v0,68,38,110,107,110v69,0,107,-42,107,-110v0,-67,-38,-110,-107,-110v-69,0,-107,43,-107,110xm285,-129v0,84,-52,134,-133,134v-82,0,-134,-52,-134,-134v0,-82,50,-134,134,-134v83,0,133,50,133,134","w":304},"\u00af":{"d":"139,-250v0,9,2,19,0,27r-98,0v0,-9,-2,-19,0,-27r98,0","w":180},"\u00b0":{"d":"67,-157v-31,0,-53,-21,-53,-52v0,-31,22,-52,53,-52v31,0,53,20,53,52v0,32,-22,52,-53,52xm67,-237v-16,0,-27,12,-27,28v0,16,11,28,27,28v16,0,27,-12,27,-28v0,-16,-11,-28,-27,-28","w":133},"\u00b1":{"d":"184,-33v2,11,2,23,0,33r-152,0v0,-11,-2,-23,0,-33r152,0xm92,-111r-60,0v-2,-9,-1,-23,0,-32r60,0r0,-65v11,-2,21,-2,32,0r0,65r60,0v0,11,2,22,0,32r-60,0r0,66v-10,1,-22,2,-32,0r0,-66"},"\u00b2":{"d":"30,-248v37,-17,101,-9,99,36v-2,35,-27,55,-47,76r55,0v1,9,0,17,0,26r-111,0r-2,-4v23,-30,63,-53,73,-95v0,-27,-44,-21,-61,-14","w":162},"\u00b3":{"d":"105,-157v1,-20,-25,-26,-44,-20r-4,-5r31,-48r-50,0v-2,-8,-1,-17,0,-25r92,0r3,6r-35,51v23,3,38,18,39,41v2,50,-63,59,-109,45v1,-8,4,-18,7,-24v25,9,70,11,70,-21","w":162},"\u00b4":{"d":"82,-214v-12,2,-24,2,-35,0r41,-46v15,0,32,-2,46,0","w":180},"\u00b5":{"d":"157,-23v-13,27,-69,39,-93,11r0,97v-12,0,-24,2,-35,0r0,-270v12,0,24,-2,35,0v5,62,-21,158,44,159v68,1,41,-96,46,-159v12,0,25,-2,36,0r0,185v-13,0,-32,6,-31,-11v-1,-5,-2,-9,-2,-12","w":217},"\u00b6":{"d":"103,-113v-80,14,-114,-87,-58,-130v19,-14,49,-18,84,-18r0,263v-12,0,-20,-1,-26,-2r0,-113xm157,-261v12,0,20,1,26,2r0,259v-6,1,-14,2,-26,2r0,-263","w":205},"\u00b7":{"d":"24,-80v-2,-13,-2,-26,0,-39v13,0,27,-2,39,0v0,13,2,27,0,39v-11,3,-28,3,-39,0","w":86},"\u00b8":{"d":"103,51v0,-19,-34,-8,-46,-12r18,-48r23,0r-12,30v24,-5,44,8,44,30v1,35,-46,41,-79,32v0,-7,2,-16,5,-21v16,6,47,8,47,-11","w":180},"\u00b9":{"d":"40,-204v-6,-6,-9,-15,-12,-24v26,-9,47,-23,76,-28r0,120r34,0v2,8,1,18,0,26r-99,0v-2,-9,-2,-17,0,-26r35,0r0,-82","w":162},"\u00ba":{"d":"90,-132v26,0,35,-23,35,-51v0,-28,-9,-50,-35,-50v-26,0,-35,22,-35,50v0,28,9,51,35,51xm90,-106v-46,0,-67,-33,-67,-77v0,-43,22,-76,67,-76v45,0,67,33,67,76v0,44,-21,77,-67,77","w":180},"\u00bb":{"d":"114,-96r-60,80v-13,2,-26,2,-39,0r60,-79r-60,-81v13,0,27,-2,39,0xm204,-96r-60,80v-13,2,-25,2,-38,0r59,-79r-59,-81v13,0,26,-2,38,0","w":222},"\u00bf":{"d":"22,4v2,-43,31,-64,62,-75r0,-37v11,-3,23,-2,34,0r0,58v-29,8,-56,18,-58,53v-3,45,67,45,99,31v4,9,8,18,9,30v-58,23,-149,9,-146,-60xm121,-185v2,13,2,27,0,40v-13,2,-27,2,-40,0v0,-13,-2,-28,0,-40v13,0,28,-2,40,0","w":175},"\u00c0":{"d":"48,-319v13,-3,36,-3,50,0r38,39v-13,0,-26,2,-38,0xm159,-60r-98,0r-18,60v-12,0,-26,2,-37,0r84,-259v14,0,29,-2,42,0r84,259v-13,0,-27,2,-39,0xm71,-92r78,0r-39,-132","w":222},"\u00c1":{"d":"120,-280v-13,0,-27,2,-39,0v20,-21,38,-52,87,-39xm159,-60r-98,0r-18,60v-12,0,-26,2,-37,0r84,-259v14,0,29,-2,42,0r84,259v-13,0,-27,2,-39,0xm71,-92r78,0r-39,-132","w":222},"\u00c2":{"d":"173,-280v-13,0,-27,2,-39,0r-23,-22v-13,15,-30,29,-64,22r43,-39v14,-2,28,-2,42,0xm159,-60r-98,0r-18,60v-12,0,-26,2,-37,0r84,-259v14,0,29,-2,42,0r84,259v-13,0,-27,2,-39,0xm71,-92r78,0r-39,-132","w":222},"\u00c3":{"d":"58,-289v-5,-6,-9,-12,-12,-20v8,-8,20,-20,36,-19v29,2,61,35,83,6v6,7,10,14,12,21v-28,45,-91,-22,-119,12xm159,-60r-98,0r-18,60v-12,0,-26,2,-37,0r84,-259v14,0,29,-2,42,0r84,259v-13,0,-27,2,-39,0xm71,-92r78,0r-39,-132","w":222},"\u00c4":{"d":"53,-284v-2,-12,-1,-24,0,-36v13,-2,25,-2,38,0v2,12,1,25,0,36v-13,0,-26,2,-38,0xm130,-284v-1,-12,-2,-23,0,-36v13,-2,25,-2,38,0v2,12,1,24,0,36v-13,0,-26,2,-38,0xm159,-60r-98,0r-18,60v-12,0,-26,2,-37,0r84,-259v14,0,29,-2,42,0r84,259v-13,0,-27,2,-39,0xm71,-92r78,0r-39,-132","w":222},"\u00c5":{"d":"90,-258v-36,-15,-24,-84,21,-79v44,-5,58,64,21,79r84,258v-13,0,-27,2,-39,0r-18,-60r-98,0r-18,60v-12,0,-26,2,-37,0xm149,-92r-39,-130r-39,130r78,0xm91,-295v0,14,7,24,20,24v13,0,19,-10,19,-24v0,-13,-6,-23,-19,-23v-13,0,-20,9,-20,23","w":222},"\u00c6":{"d":"39,0v-14,0,-28,2,-41,0r152,-259r162,0v3,8,3,24,0,33r-105,0r0,78r85,0v2,10,0,21,0,32r-85,0r0,84r108,0v2,10,2,22,0,32r-145,0r0,-60r-97,0xm170,-92v-2,-44,4,-97,-2,-137r-77,137r79,0","w":331},"\u00c7":{"d":"60,-127v0,81,69,119,137,89v4,9,8,19,10,30v-21,9,-42,13,-68,12r-6,15v27,-2,45,9,45,32v1,36,-49,42,-81,31v0,-8,2,-16,5,-21v16,7,48,6,48,-10v0,-21,-35,-7,-46,-13r13,-36v-63,-11,-93,-57,-96,-129v-5,-105,83,-160,181,-126v-1,12,-4,20,-8,30v-70,-27,-134,14,-134,96","w":222},"\u00c8":{"d":"46,-319v13,-3,36,-3,50,0r38,39v-13,0,-27,2,-39,0xm32,-259r142,0v0,10,2,23,0,32r-106,0r0,74r85,0v0,10,2,23,0,32r-85,0r0,89r109,0v0,10,2,23,0,32r-145,0r0,-259","w":192},"\u00c9":{"d":"108,-280v-13,0,-27,2,-39,0v21,-20,38,-52,88,-39xm32,-259r142,0v0,10,2,23,0,32r-106,0r0,74r85,0v0,10,2,23,0,32r-85,0r0,89r109,0v0,10,2,23,0,32r-145,0r0,-259","w":192},"\u00ca":{"d":"165,-280v-13,0,-27,2,-39,0r-23,-22v-13,15,-30,29,-64,22r43,-39v14,-2,28,-2,42,0xm32,-259r142,0v0,10,2,23,0,32r-106,0r0,74r85,0v0,10,2,23,0,32r-85,0r0,89r109,0v0,10,2,23,0,32r-145,0r0,-259","w":192},"\u00cb":{"d":"44,-284v-2,-12,-1,-24,0,-36v13,-2,26,-2,38,0v2,12,3,25,0,36v-13,0,-26,2,-38,0xm159,-284v-19,1,-45,8,-39,-18v0,-6,1,-11,2,-18v12,-2,25,-2,37,0v2,12,3,24,0,36xm32,-259r142,0v0,10,2,23,0,32r-106,0r0,74r85,0v0,10,2,23,0,32r-85,0r0,89r109,0v0,10,2,23,0,32r-145,0r0,-259","w":192},"\u00cc":{"d":"-8,-319v13,-3,36,-3,50,0r38,39v-13,0,-26,2,-38,0xm32,-259v12,0,25,-2,36,0r0,259v-12,0,-25,2,-36,0r0,-259","w":100},"\u00cd":{"d":"61,-280v-13,0,-26,2,-38,0v20,-21,38,-52,87,-39xm32,-259v12,0,25,-2,36,0r0,259v-12,0,-25,2,-36,0r0,-259","w":100},"\u00ce":{"d":"113,-280v-13,0,-27,2,-39,0r-24,-22v-12,15,-29,29,-63,22r43,-39v14,-2,28,-2,42,0xm32,-259v12,0,25,-2,36,0r0,259v-12,0,-25,2,-36,0r0,-259","w":100},"\u00cf":{"d":"-7,-284v-2,-12,-1,-24,0,-36v13,-2,25,-2,38,0v2,12,1,25,0,36v-13,0,-26,2,-38,0xm70,-284v-2,-12,-3,-23,0,-36v13,-2,25,-2,38,0v2,12,1,24,0,36v-13,0,-26,2,-38,0xm32,-259v12,0,25,-2,36,0r0,259v-12,0,-25,2,-36,0r0,-259","w":100},"\u00d0":{"d":"234,-129v0,115,-87,147,-199,129r0,-119r-29,0v-2,-9,-2,-19,0,-27r29,0r0,-113v111,-19,199,18,199,130xm195,-130v0,-75,-44,-108,-123,-99r0,83r58,0v2,9,2,18,0,27r-58,0r0,89v77,11,123,-21,123,-100","w":254},"\u00d1":{"d":"70,-289v-5,-6,-9,-12,-12,-20v15,-25,60,-20,81,-3v17,5,29,1,38,-10v6,7,10,14,12,21v-28,45,-91,-22,-119,12xm32,-259v11,0,23,-2,34,0r112,195r0,-195v12,0,24,-2,35,0r0,259v-11,0,-23,2,-34,0r-113,-193r0,193v-11,0,-24,2,-34,0r0,-259","w":244},"\u00d2":{"d":"67,-319v13,-3,35,-3,49,0r38,39v-13,0,-26,2,-38,0xm239,-129v0,79,-31,133,-109,133v-78,0,-109,-56,-109,-133v0,-77,31,-134,109,-134v78,0,109,55,109,134xm60,-129v0,55,15,102,70,102v55,0,71,-47,71,-102v0,-55,-15,-102,-71,-102v-55,0,-70,47,-70,102","w":260},"\u00d3":{"d":"188,-319v-25,16,-40,48,-87,39v20,-21,38,-52,87,-39xm239,-129v0,79,-31,133,-109,133v-78,0,-109,-56,-109,-133v0,-77,31,-134,109,-134v78,0,109,55,109,134xm60,-129v0,55,15,102,70,102v55,0,71,-47,71,-102v0,-55,-15,-102,-71,-102v-55,0,-70,47,-70,102","w":260},"\u00d4":{"d":"193,-280v-13,0,-28,2,-40,0r-23,-22v-12,15,-29,29,-63,22r42,-39v14,-2,28,-2,42,0xm239,-129v0,79,-31,133,-109,133v-78,0,-109,-56,-109,-133v0,-77,31,-134,109,-134v78,0,109,55,109,134xm60,-129v0,55,15,102,70,102v55,0,71,-47,71,-102v0,-55,-15,-102,-71,-102v-55,0,-70,47,-70,102","w":260},"\u00d5":{"d":"78,-289v-5,-6,-9,-11,-11,-20v14,-25,59,-20,80,-3v17,5,29,1,39,-10v6,7,10,14,12,21v-21,30,-67,9,-95,0v-13,1,-15,6,-25,12xm239,-129v0,79,-31,133,-109,133v-78,0,-109,-56,-109,-133v0,-77,31,-134,109,-134v78,0,109,55,109,134xm60,-129v0,55,15,102,70,102v55,0,71,-47,71,-102v0,-55,-15,-102,-71,-102v-55,0,-70,47,-70,102","w":260},"\u00d6":{"d":"72,-284v-2,-12,-1,-24,0,-36v13,-2,26,-2,38,0v2,12,3,25,0,36v-13,0,-26,2,-38,0xm188,-284v-20,1,-46,9,-40,-18v0,-6,1,-11,2,-18v13,-2,25,-2,38,0v2,12,1,24,0,36xm239,-129v0,79,-31,133,-109,133v-78,0,-109,-56,-109,-133v0,-77,31,-134,109,-134v78,0,109,55,109,134xm60,-129v0,55,15,102,70,102v55,0,71,-47,71,-102v0,-55,-15,-102,-71,-102v-55,0,-70,47,-70,102","w":260},"\u00d7":{"d":"85,-127r-43,-44v6,-8,14,-17,22,-23r44,44r44,-44v9,6,16,14,22,23r-43,44r43,43v-5,8,-13,17,-22,22r-44,-43r-44,44v-9,-6,-17,-14,-23,-23"},"\u00d8":{"d":"239,-129v0,79,-31,132,-109,133v-30,1,-51,-8,-68,-22v-6,13,-19,24,-42,18r26,-36v-49,-74,-29,-227,84,-227v29,0,51,8,67,21v6,-13,18,-23,41,-17r-25,34v18,23,26,56,26,96xm130,-27v76,2,82,-106,59,-165r-106,145v12,13,27,20,47,20xm130,-231v-76,-3,-80,102,-60,163r105,-145v-11,-12,-26,-18,-45,-18","w":260},"\u00d9":{"d":"61,-319v13,-3,36,-3,50,0r38,39v-13,0,-26,2,-38,0xm121,4v-124,0,-86,-150,-92,-263v12,-1,25,-2,37,0r0,147v1,47,7,83,55,83v48,0,56,-34,55,-83r0,-147v12,-1,26,-2,37,0v-6,114,33,263,-92,263","w":242},"\u00da":{"d":"135,-280v-13,0,-27,2,-39,0v20,-21,38,-52,88,-39xm121,4v-124,0,-86,-150,-92,-263v12,-1,25,-2,37,0r0,147v1,47,7,83,55,83v48,0,56,-34,55,-83r0,-147v12,-1,26,-2,37,0v-6,114,33,263,-92,263","w":242},"\u00db":{"d":"184,-280v-13,0,-28,2,-39,0r-24,-22v-12,15,-29,29,-63,22r42,-39v14,-2,29,-2,43,0xm121,4v-124,0,-86,-150,-92,-263v12,-1,25,-2,37,0r0,147v1,47,7,83,55,83v48,0,56,-34,55,-83r0,-147v12,-1,26,-2,37,0v-6,114,33,263,-92,263","w":242},"\u00dc":{"d":"64,-284v-2,-12,-1,-24,0,-36v13,-2,25,-2,38,0v2,12,1,25,0,36v-13,0,-26,2,-38,0xm141,-284v-2,-12,-3,-23,0,-36v13,-2,25,-2,38,0v2,12,1,24,0,36v-13,0,-26,2,-38,0xm121,4v-124,0,-86,-150,-92,-263v12,-1,25,-2,37,0r0,147v1,47,7,83,55,83v48,0,56,-34,55,-83r0,-147v12,-1,26,-2,37,0v-6,114,33,263,-92,263","w":242},"\u00dd":{"d":"121,-280v-13,0,-27,2,-39,0v20,-21,38,-53,88,-39xm89,-95r-83,-164v14,0,29,-2,42,0r60,129r60,-129v13,0,27,-2,39,0r-81,164r0,95v-12,0,-26,2,-37,0r0,-95","w":213},"\u00de":{"d":"190,-132v0,69,-53,91,-122,85r0,47v-12,0,-26,2,-37,0r0,-259v12,0,26,-2,37,0r0,40v69,-5,122,17,122,87xm152,-133v0,-48,-39,-59,-84,-53r0,107v47,5,84,-6,84,-54","w":209},"\u00df":{"d":"100,-238v-33,1,-37,25,-37,61r0,177v-12,0,-24,2,-35,0r0,-177v0,-54,17,-91,72,-90v41,1,66,19,67,58v1,48,-64,84,-4,112v46,22,34,101,-34,101v-18,0,-31,-3,-44,-8v0,-11,6,-20,9,-29v20,11,65,15,62,-17v-4,-38,-58,-31,-57,-76v1,-36,32,-44,32,-81v0,-18,-11,-32,-31,-31","w":205},"\u00e0":{"d":"53,-55v0,36,45,34,73,27r0,-59v-34,-5,-73,-3,-73,32xm17,-55v3,-52,53,-68,109,-60v10,-52,-52,-49,-87,-37v-5,-8,-7,-18,-7,-29v56,-17,129,-11,129,61r0,115v-54,14,-148,20,-144,-50xm33,-260v15,0,32,-2,46,0r42,46v-12,3,-25,2,-36,0","w":186},"\u00e1":{"d":"53,-55v0,36,45,34,73,27r0,-59v-34,-5,-73,-3,-73,32xm17,-55v3,-52,53,-68,109,-60v10,-52,-52,-49,-87,-37v-5,-8,-7,-18,-7,-29v56,-17,129,-11,129,61r0,115v-54,14,-148,20,-144,-50xm92,-214v-12,2,-24,2,-35,0r41,-46v15,0,32,-2,46,0","w":186},"\u00e2":{"d":"150,-214v-12,2,-25,2,-37,0r-23,-29v-12,18,-27,39,-60,29r39,-46v14,0,31,-3,42,1xm53,-55v0,36,45,34,73,27r0,-59v-34,-5,-73,-3,-73,32xm17,-55v3,-52,53,-68,109,-60v10,-52,-52,-49,-87,-37v-5,-8,-7,-18,-7,-29v56,-17,129,-11,129,61r0,115v-54,14,-148,20,-144,-50","w":186},"\u00e3":{"d":"31,-240v25,-45,84,19,112,-13v5,6,10,14,12,22v-8,9,-19,15,-35,16v-28,-1,-56,-30,-78,-4v-5,-7,-9,-12,-11,-21xm53,-55v0,36,45,34,73,27r0,-59v-34,-5,-73,-3,-73,32xm17,-55v3,-52,53,-68,109,-60v10,-52,-52,-49,-87,-37v-5,-8,-7,-18,-7,-29v56,-17,129,-11,129,61r0,115v-54,14,-148,20,-144,-50","w":186},"\u00e4":{"d":"53,-55v0,36,45,34,73,27r0,-59v-34,-5,-73,-3,-73,32xm17,-55v3,-52,53,-68,109,-60v10,-52,-52,-49,-87,-37v-5,-8,-7,-18,-7,-29v56,-17,129,-11,129,61r0,115v-54,14,-148,20,-144,-50xm39,-217v-2,-12,-2,-24,0,-36v10,-3,27,-3,37,0v0,12,2,25,0,36v-13,2,-24,0,-37,0xm112,-217v0,-12,-2,-25,0,-36v10,-3,27,-3,37,0v2,12,1,24,0,36v-13,2,-24,0,-37,0","w":186},"\u00e5":{"d":"95,-211v-23,0,-39,-15,-39,-38v0,-23,16,-39,39,-39v23,0,39,16,39,39v0,23,-16,38,-39,38xm77,-249v0,11,7,20,18,20v12,0,17,-9,18,-20v0,-11,-6,-21,-18,-21v-12,0,-18,10,-18,21xm53,-55v0,36,45,34,73,27r0,-59v-34,-5,-73,-3,-73,32xm17,-55v3,-52,53,-68,109,-60v10,-52,-52,-49,-87,-37v-5,-8,-7,-18,-7,-29v56,-17,129,-11,129,61r0,115v-54,14,-148,20,-144,-50","w":186},"\u00e6":{"d":"31,-181v39,-13,101,-13,116,21v13,-17,33,-29,61,-29v58,0,81,45,75,105r-124,0v-6,62,61,67,107,50v3,8,6,18,7,28v-34,15,-94,14,-120,-7v-42,26,-141,29,-137,-42v3,-54,53,-66,109,-59v9,-52,-52,-51,-87,-38v-5,-8,-7,-18,-7,-29xm134,-35v-6,-13,-11,-31,-10,-51v-34,-2,-72,-4,-72,32v0,39,60,35,82,19xm249,-111v7,-46,-50,-65,-75,-36v-8,9,-13,20,-15,36r90,0","w":302},"\u00e7":{"d":"55,-92v0,59,48,79,97,60v4,6,7,18,7,28v-16,6,-30,7,-51,8r-6,17v23,-5,44,9,44,30v1,36,-48,42,-80,31v1,-6,2,-15,5,-20v17,6,47,8,47,-11v0,-21,-34,-9,-45,-12v7,-19,6,-19,13,-37v-45,-8,-66,-42,-68,-94v-3,-77,68,-114,139,-89v-1,9,-3,21,-6,28v-49,-19,-96,4,-96,61","w":172},"\u00e8":{"d":"164,-34v3,8,6,18,7,28v-69,27,-160,1,-153,-85v5,-59,28,-98,87,-98v58,0,82,44,76,105r-126,0v-5,60,62,69,109,50xm147,-110v4,-44,-50,-67,-77,-37v-8,9,-12,21,-14,37r91,0xm47,-260v15,0,32,-2,46,0r42,46v-12,3,-25,2,-36,0","w":200},"\u00e9":{"d":"164,-34v3,8,6,18,7,28v-69,27,-160,1,-153,-85v5,-59,28,-98,87,-98v58,0,82,44,76,105r-126,0v-5,60,62,69,109,50xm147,-110v4,-44,-50,-67,-77,-37v-8,9,-12,21,-14,37r91,0xm108,-214v-12,2,-24,2,-35,0r41,-46v15,0,32,-2,46,0","w":200},"\u00ea":{"d":"163,-214v-12,2,-25,2,-37,0r-23,-29v-11,18,-27,39,-60,29r39,-46v14,0,31,-3,42,1xm164,-34v3,8,6,18,7,28v-69,27,-160,1,-153,-85v5,-59,28,-98,87,-98v58,0,82,44,76,105r-126,0v-5,60,62,69,109,50xm147,-110v4,-44,-50,-67,-77,-37v-8,9,-12,21,-14,37r91,0","w":200},"\u00eb":{"d":"164,-34v3,8,6,18,7,28v-69,27,-160,1,-153,-85v5,-59,28,-98,87,-98v58,0,82,44,76,105r-126,0v-5,60,62,69,109,50xm147,-110v4,-44,-50,-67,-77,-37v-8,9,-12,21,-14,37r91,0xm47,-217v-2,-12,-2,-24,0,-36v10,-3,27,-3,37,0v0,12,2,25,0,36v-13,2,-24,0,-37,0xm120,-217v0,-12,-2,-25,0,-36v10,-3,27,-3,37,0v2,12,1,24,0,36v-13,2,-24,0,-37,0","w":200},"\u00ec":{"d":"40,-157v-18,3,-32,0,-24,-28r59,0r0,185v-12,0,-24,2,-35,0r0,-157xm-5,-260v15,0,32,-2,46,0r42,46v-12,3,-25,2,-36,0","w":103},"\u00ed":{"d":"40,-157v-18,3,-32,0,-24,-28r59,0r0,185v-12,0,-24,2,-35,0r0,-157xm53,-214v-12,2,-24,2,-35,0r41,-46v15,0,32,-2,46,0","w":103},"\u00ee":{"d":"112,-214v-12,2,-25,2,-37,0r-23,-29v-12,17,-27,39,-60,29r39,-46v14,0,31,-3,42,1xm40,-157v-18,3,-32,0,-24,-28r59,0r0,185v-12,0,-24,2,-35,0r0,-157","w":103},"\u00ef":{"d":"40,-157v-18,3,-32,0,-24,-28r59,0r0,185v-12,0,-24,2,-35,0r0,-157xm-3,-217v-2,-12,-2,-24,0,-36v10,-3,27,-3,37,0v0,12,2,25,0,36v-13,2,-24,0,-37,0xm70,-217v0,-12,-2,-25,0,-36v10,-3,27,-3,37,0v2,12,1,24,0,36v-13,2,-24,0,-37,0","w":103},"\u00f0":{"d":"18,-85v-5,-72,74,-115,129,-73v-10,-23,-17,-40,-34,-54r-36,22v-5,-6,-9,-13,-12,-20r25,-16v-11,-6,-22,-7,-36,-9v-3,-8,-1,-21,1,-30v26,2,48,7,66,19v13,-5,30,-30,39,-11v2,4,4,8,6,11v-8,6,-16,10,-25,15v61,46,83,235,-37,235v-59,0,-82,-35,-86,-89xm56,-85v0,36,13,62,48,62v35,0,49,-26,49,-62v0,-38,-13,-62,-49,-62v-35,0,-48,24,-48,62","w":209},"\u00f1":{"d":"54,-219v-5,-7,-9,-13,-12,-21v8,-10,18,-18,35,-18v28,1,55,31,78,5v5,6,10,14,12,22v-8,9,-19,15,-35,16v-28,-1,-56,-30,-78,-4xm114,-157v-66,0,-48,91,-50,157v-12,0,-24,2,-35,0r0,-185v10,0,20,-2,30,0r3,30v11,-18,30,-33,59,-34v86,-4,57,111,62,189v-12,0,-24,2,-35,0r0,-107v-1,-30,-6,-50,-34,-50","w":208},"\u00f2":{"d":"190,-92v0,57,-27,96,-86,96v-59,0,-86,-38,-86,-96v0,-59,28,-97,86,-97v57,0,86,40,86,97xm55,-92v0,39,12,68,49,68v36,0,48,-30,48,-68v0,-38,-12,-68,-48,-68v-37,0,-49,30,-49,68xm45,-260v15,0,32,-2,46,0r42,46v-12,3,-25,2,-36,0","w":207},"\u00f3":{"d":"190,-92v0,57,-27,96,-86,96v-59,0,-86,-38,-86,-96v0,-59,28,-97,86,-97v57,0,86,40,86,97xm55,-92v0,39,12,68,49,68v36,0,48,-30,48,-68v0,-38,-12,-68,-48,-68v-37,0,-49,30,-49,68xm105,-214v-12,2,-24,2,-35,0r41,-46v15,0,32,-2,46,0","w":207},"\u00f4":{"d":"163,-214v-11,2,-24,2,-36,0r-24,-29v-12,18,-27,39,-60,29r39,-46v14,0,31,-3,43,1xm190,-92v0,57,-27,96,-86,96v-59,0,-86,-38,-86,-96v0,-59,28,-97,86,-97v57,0,86,40,86,97xm55,-92v0,39,12,68,49,68v36,0,48,-30,48,-68v0,-38,-12,-68,-48,-68v-37,0,-49,30,-49,68","w":207},"\u00f5":{"d":"41,-240v24,-45,85,19,113,-13v5,6,10,14,12,22v-8,9,-19,15,-35,16v-28,-1,-56,-30,-78,-4v-5,-7,-9,-13,-12,-21xm190,-92v0,57,-27,96,-86,96v-59,0,-86,-38,-86,-96v0,-59,28,-97,86,-97v57,0,86,40,86,97xm55,-92v0,39,12,68,49,68v36,0,48,-30,48,-68v0,-38,-12,-68,-48,-68v-37,0,-49,30,-49,68","w":207},"\u00f6":{"d":"190,-92v0,57,-27,96,-86,96v-59,0,-86,-38,-86,-96v0,-59,28,-97,86,-97v57,0,86,40,86,97xm55,-92v0,39,12,68,49,68v36,0,48,-30,48,-68v0,-38,-12,-68,-48,-68v-37,0,-49,30,-49,68xm48,-217v-2,-12,-2,-24,0,-36v10,-3,27,-3,37,0v0,12,2,25,0,36v-13,2,-24,0,-37,0xm121,-217v0,-12,-2,-25,0,-36v10,-3,27,-3,37,0v2,12,1,24,0,36v-13,2,-24,0,-37,0","w":207},"\u00f7":{"d":"107,-168v-14,0,-25,-11,-25,-25v0,-13,12,-24,25,-24v13,0,25,12,25,24v0,13,-11,25,-25,25xm107,-38v-14,0,-25,-11,-25,-25v0,-13,12,-24,25,-24v13,0,25,12,25,24v0,13,-11,25,-25,25xm184,-143v2,10,2,22,0,32r-152,0v0,-10,-2,-23,0,-32r152,0"},"\u00f8":{"d":"171,-157v37,58,17,161,-67,161v-19,0,-36,-4,-49,-13v-3,11,-20,12,-34,9r19,-23v-42,-54,-22,-172,64,-166v22,2,39,7,52,17v5,-11,19,-16,36,-12xm136,-147v-35,-33,-81,1,-81,55v0,17,2,30,7,41xm74,-34v52,35,98,-28,74,-93","w":207},"\u00f9":{"d":"179,-6v-67,21,-152,16,-152,-76r0,-103v12,0,24,-2,35,0v6,65,-23,165,51,159v12,0,22,-1,31,-4r0,-155v12,0,24,-2,35,0r0,179xm46,-260v15,0,32,-2,46,0r42,46v-12,3,-25,2,-36,0","w":206},"\u00fa":{"d":"179,-6v-67,21,-152,16,-152,-76r0,-103v12,0,24,-2,35,0v6,65,-23,165,51,159v12,0,22,-1,31,-4r0,-155v12,0,24,-2,35,0r0,179xm112,-214v-12,2,-24,2,-35,0r41,-46v15,0,32,-2,46,0","w":206},"\u00fb":{"d":"163,-214v-12,2,-25,2,-37,0r-23,-29v-11,18,-27,39,-60,29r39,-46v14,0,31,-3,42,1xm179,-6v-67,21,-152,16,-152,-76r0,-103v12,0,24,-2,35,0v6,65,-23,165,51,159v12,0,22,-1,31,-4r0,-155v12,0,24,-2,35,0r0,179","w":206},"\u00fc":{"d":"179,-6v-67,21,-152,16,-152,-76r0,-103v12,0,24,-2,35,0v6,65,-23,165,51,159v12,0,22,-1,31,-4r0,-155v12,0,24,-2,35,0r0,179xm50,-217v-2,-12,-2,-24,0,-36v10,-3,27,-3,37,0v0,12,2,25,0,36v-13,2,-24,0,-37,0xm123,-217v0,-12,-2,-25,0,-36v10,-3,27,-3,37,0v2,12,1,24,0,36v-13,2,-24,0,-37,0","w":206},"\u00fd":{"d":"31,58v23,8,48,0,50,-23r11,-35v-8,0,-19,2,-26,0r-61,-185v13,0,27,-2,39,0r51,172r53,-172v12,0,25,-2,37,0r-82,247v-11,26,-47,34,-78,23v0,-13,2,-19,6,-27xm99,-214v-12,2,-24,2,-35,0r41,-46v15,0,32,-2,46,0","w":189},"\u00fe":{"d":"193,-97v0,75,-55,115,-129,97r0,85v-12,0,-25,2,-36,0r0,-349v12,0,25,-2,36,0r0,103v10,-15,27,-30,54,-28v52,3,75,36,75,92xm111,-158v-59,-1,-46,71,-47,128v50,18,95,-11,92,-65v-2,-35,-11,-63,-45,-63","w":212},"\u00ff":{"d":"31,58v23,8,48,0,50,-23r11,-35v-8,0,-19,2,-26,0r-61,-185v13,0,27,-2,39,0r51,172r53,-172v12,0,25,-2,37,0r-82,247v-11,26,-47,34,-78,23v0,-13,2,-19,6,-27xm40,-217v-2,-12,-2,-24,0,-36v10,-3,27,-3,37,0v0,12,2,25,0,36v-13,2,-24,0,-37,0xm113,-217v0,-12,-2,-25,0,-36v10,-3,27,-3,37,0v2,12,1,24,0,36v-13,2,-24,0,-37,0","w":189},"\u2013":{"d":"180,-117v0,10,2,23,0,32r-180,0v0,-11,-2,-22,0,-32r180,0","w":180},"\u2014":{"d":"360,-117v0,10,2,23,0,32r-360,0v0,-11,-2,-22,0,-32r360,0","w":360},"\u2018":{"d":"18,-258v9,-3,25,-3,35,0r22,80v-12,1,-23,2,-35,0","w":92},"\u2019":{"d":"39,-259v12,0,25,-2,36,0r-22,80v-9,3,-25,3,-35,0","w":92},"\u201c":{"d":"18,-258v9,-3,25,-3,35,0r22,80v-12,1,-23,2,-35,0xm88,-258v9,-3,25,-3,35,0r22,80v-12,1,-23,2,-35,0","w":163},"\u201d":{"d":"39,-259v12,0,25,-2,36,0r-22,80v-9,3,-25,3,-35,0xm109,-259v12,0,25,-2,36,0r-22,80v-9,3,-25,3,-35,0","w":163},"\u2026":{"d":"112,0v0,-13,-2,-28,0,-40v13,-2,27,-2,40,0v3,11,3,29,0,40v-13,0,-28,2,-40,0xm200,0v0,-13,-2,-28,0,-40v13,-2,27,-2,40,0v3,11,3,29,0,40v-13,0,-28,2,-40,0xm23,0v0,-13,-2,-28,0,-40v13,-2,27,-2,40,0v3,11,3,29,0,40v-13,0,-28,2,-40,0","w":263},"\u2122":{"d":"50,-228r-41,0v-2,-9,-1,-17,0,-27r109,0v2,9,2,18,0,27r-40,0r0,117v-8,3,-20,3,-28,0r0,-117xm141,-255v11,-1,20,0,31,0r35,79r36,-79v10,-1,18,0,29,0r7,144v-8,2,-19,4,-27,0r-6,-91r-31,64v-8,1,-11,2,-20,0r-29,-63r-4,90v-10,2,-18,3,-28,0","w":297},"\u00bc":{"d":"268,-54r35,0r0,-28v9,-1,20,-2,29,0r0,28v18,-6,22,11,17,26r-17,0r0,28v-10,2,-19,1,-29,0r0,-28r-74,0r-3,-5r59,-117v10,1,18,4,26,9xm265,-255v12,0,25,-2,36,0r-174,255v-12,1,-25,2,-36,0xm35,-204v-6,-6,-9,-15,-12,-24v26,-9,47,-23,76,-28r0,120r34,0v2,8,1,18,0,26r-99,0v-2,-9,-2,-17,0,-26r35,0r0,-82","w":378},"\u00bd":{"d":"258,-255v12,0,26,-2,37,0r-174,255v-12,1,-25,2,-36,0xm34,-204v-6,-6,-9,-15,-12,-24v26,-9,47,-23,76,-28r0,120r34,0v2,8,1,18,0,26r-99,0v-2,-9,-2,-17,0,-26r35,0r0,-82xm244,-138v37,-17,101,-9,99,36v-2,35,-27,55,-47,76r55,0v1,9,0,17,0,26r-111,0r-2,-4v23,-30,63,-53,73,-95v0,-27,-44,-21,-61,-14","w":378},"\u00be":{"d":"271,-57r36,0r0,-28v8,-2,19,-1,28,0r0,28v18,-5,23,10,17,26r-17,0r0,28v-10,2,-18,1,-28,0r0,-28r-75,0r-3,-5r59,-117v10,1,18,4,26,9xm267,-255v12,0,25,-2,36,0r-174,255v-12,1,-25,2,-36,0xm108,-157v1,-20,-25,-26,-44,-20r-4,-5r31,-48r-50,0v-2,-8,-1,-17,0,-25r92,0r3,6r-35,51v23,3,38,18,39,41v2,50,-63,59,-109,45v1,-8,4,-18,7,-24v25,9,70,11,70,-21","w":378},"!":{"d":"33,-259v13,0,27,-2,39,0r-2,181v-11,2,-23,3,-34,0xm32,0v0,-13,-2,-28,0,-40v13,-2,27,-2,40,0v2,13,2,27,0,40v-13,0,-28,2,-40,0","w":104},"\"":{"d":"94,-259v11,0,24,-2,34,0r0,99v-11,2,-23,1,-34,0r0,-99xm23,-259v11,0,24,-2,34,0r0,99v-11,2,-23,1,-34,0r0,-99","w":151},"#":{"d":"68,-75r-44,0v0,-9,-2,-21,0,-29r47,0r5,-59r-45,0v-2,-7,-1,-20,0,-28r47,0r5,-57r32,-1r-4,58r61,0r5,-57r32,-1r-5,58r42,0v2,9,1,19,0,28r-44,0r-5,59r42,0v0,9,2,21,0,29r-45,0r-5,65v-11,2,-22,1,-32,0r5,-65r-61,0r-5,65v-12,1,-21,2,-33,0xm165,-104r5,-59r-62,0r-5,59r62,0","w":264},"$":{"d":"157,-133v56,31,33,135,-33,134r0,41v-6,3,-19,3,-25,0r0,-38v-29,1,-51,-3,-72,-11v0,-11,5,-22,8,-32v43,20,135,16,112,-50v-27,-43,-115,-27,-113,-101v1,-40,26,-64,65,-68r0,-35v7,-2,18,-1,25,0r0,34v19,0,41,4,55,10v-1,10,-4,19,-8,29v-35,-15,-117,-16,-96,42v17,25,56,31,82,45"}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Manufacturer:
 * Dalton Maag Ltd.
 */
Cufon.registerFont({"w":216,"face":{"font-family":"Aller","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-18 -337.286 363 90.1267","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":79},"!":{"d":"26,-259v19,-2,37,-3,56,0r-4,176v-16,2,-32,3,-48,0xm27,0v-3,-18,-2,-35,0,-53v18,-2,35,-3,53,0v3,18,2,35,0,53v-18,3,-35,2,-53,0","w":107},"\"":{"d":"18,-259v13,-3,32,-3,46,0r0,101v-15,2,-31,2,-46,0r0,-101xm90,-259v13,-3,32,-3,46,0r0,101v-15,2,-31,2,-46,0r0,-101","w":154},"#":{"d":"61,-74r-40,0v-3,-12,-2,-26,0,-38r43,0r4,-44r-40,0v-3,-10,-3,-27,0,-38r43,0r5,-54v13,-3,30,-3,44,0r-5,54r44,0r4,-54v13,-3,30,-3,44,0r-4,54r37,0v3,10,3,27,0,38r-40,0r-4,44r38,0v0,13,2,26,0,38r-41,0r-5,63v-13,3,-30,3,-44,0r5,-63r-44,0r-5,63v-13,3,-30,3,-44,0xm152,-112r4,-44r-44,0r-4,44r44,0","w":264},"$":{"d":"156,-140v59,29,36,139,-30,141r0,41v-11,3,-21,4,-32,0r0,-38v-31,2,-54,-5,-76,-13v2,-16,6,-29,11,-43v36,17,123,20,101,-36v-31,-37,-107,-26,-105,-97v1,-45,28,-68,69,-74r0,-38v11,-2,21,-3,32,0r0,37v21,2,37,6,55,12v-1,14,-5,28,-11,41v-26,-13,-104,-25,-88,28v16,21,50,27,74,39"},"%":{"d":"269,-72v0,22,5,42,25,42v20,0,25,-20,25,-42v0,-22,-5,-42,-25,-42v-20,0,-25,20,-25,42xm363,-72v0,45,-23,76,-69,76v-47,0,-70,-30,-70,-76v0,-47,25,-77,70,-77v45,0,69,31,69,77xm62,-182v0,22,5,42,25,42v20,0,26,-20,26,-42v0,-22,-5,-42,-26,-42v-20,0,-25,20,-25,42xm157,-182v0,46,-23,76,-70,76v-46,0,-69,-31,-69,-76v0,-46,24,-77,69,-77v45,0,70,30,70,77xm253,-255v17,-2,32,-3,50,0r-174,254v-17,2,-33,3,-50,0","w":378},"&":{"d":"79,-196v0,41,60,25,98,28r42,-51r8,0r0,51r37,0v2,13,2,26,0,39r-37,0v9,89,-27,136,-111,133v-55,-1,-98,-21,-98,-77v0,-37,19,-60,43,-72v-18,-9,-33,-27,-33,-53v-2,-64,77,-76,131,-57v0,14,-4,26,-11,38v-26,-10,-69,-11,-69,21xm122,-40v51,0,58,-38,55,-89v-50,-2,-105,-5,-103,45v1,29,16,44,48,44","w":274},"'":{"d":"18,-259v13,-3,32,-3,46,0r0,101v-15,2,-31,2,-46,0r0,-101","w":82},"(":{"d":"111,60v-35,9,-64,-2,-67,-30v-40,-83,-32,-246,16,-309v13,-4,37,-3,51,0v-54,77,-53,264,0,339","w":128},")":{"d":"18,60v53,-79,53,-261,0,-339v14,-4,38,-4,51,0v56,78,54,263,0,339v-12,3,-37,3,-51,0","w":128},"*":{"d":"77,-259v9,-2,18,-1,27,0r5,49v-10,3,-26,3,-36,0xm13,-192v0,-11,6,-17,9,-25r48,11v-2,13,-6,24,-11,34xm148,-125v-5,6,-14,13,-22,16r-32,-37v9,-9,18,-16,28,-21xm160,-218v4,7,6,18,8,26r-45,20v-5,-10,-9,-22,-11,-34xm56,-108v-8,-3,-17,-10,-22,-17r26,-42v10,5,20,12,29,21","w":174},"+":{"d":"86,-105r-56,0v-3,-15,-4,-29,0,-44r56,0r0,-64v15,-2,29,-3,44,0r0,64r56,0v2,15,3,29,0,44r-56,0r0,63v-15,2,-29,3,-44,0r0,-63"},",":{"d":"36,-52v14,-3,35,-3,50,0r-27,92v-13,3,-33,3,-47,0","w":104},"-":{"d":"113,-121v2,14,3,30,0,44r-92,0v-2,-14,-3,-30,0,-44r92,0","w":133},".":{"d":"26,0v-4,-18,-4,-35,0,-53v17,-2,35,-3,52,0v4,18,4,35,0,53v-18,2,-34,3,-52,0","w":104},"\/":{"d":"92,-259v18,-2,33,-3,51,0r-88,259v-18,3,-33,2,-51,0","w":147},"0":{"d":"203,-117v0,70,-26,121,-95,121v-68,0,-93,-52,-93,-121v0,-69,26,-121,95,-121v68,0,93,51,93,121xm109,-194v-57,0,-55,155,0,155v32,0,39,-36,39,-78v0,-42,-6,-77,-39,-77"},"1":{"d":"94,-43r0,-126r-45,17v-9,-12,-14,-23,-19,-38r104,-45r9,0r0,192r52,0v2,15,2,28,0,43r-154,0v0,-15,-2,-29,0,-43r53,0"},"2":{"d":"25,-225v63,-30,179,-11,150,81v-13,41,-41,67,-64,100r76,0v3,14,2,30,0,44r-164,0r-3,-5v33,-47,74,-87,101,-139v16,-31,-13,-56,-51,-49v-13,2,-22,6,-33,10v-6,-12,-11,-26,-12,-42"},"3":{"d":"137,-66v0,-34,-41,-39,-73,-32r-4,-6r49,-87r-79,0v-4,-14,-3,-30,0,-44r150,0r4,6r-57,97v38,1,59,27,61,63v5,88,-99,111,-174,81v1,-15,7,-30,13,-42v40,16,111,17,110,-36"},"4":{"d":"6,-34r102,-206v18,2,33,8,45,17r-75,150r52,0r0,-57v14,-3,35,-3,50,0r0,57r26,0v3,14,2,30,0,44r-26,0r0,50v-17,2,-33,2,-50,0r0,-50r-121,0"},"5":{"d":"136,-63v0,-43,-59,-46,-91,-30r-5,-4r5,-138r129,0v2,14,3,30,0,44r-83,0r-2,52v56,-11,100,14,100,72v0,88,-96,105,-171,80v2,-16,7,-30,13,-43v36,15,105,16,105,-33"},"6":{"d":"113,4v-110,8,-111,-154,-58,-216v24,-27,60,-47,108,-49v4,13,6,27,1,42v-50,4,-81,32,-89,78v10,-15,26,-27,52,-26v49,2,77,32,77,83v0,55,-35,84,-91,88xm74,-84v-1,28,13,47,38,47v24,0,40,-17,39,-45v0,-29,-13,-45,-38,-45v-25,0,-39,17,-39,43"},"7":{"d":"133,-191r-108,0v-3,-14,-2,-30,0,-44r177,0r2,5r-106,257v-18,-5,-33,-10,-47,-21"},"8":{"d":"17,-68v0,-36,20,-56,44,-69v-17,-10,-33,-31,-33,-56v0,-44,34,-66,80,-66v46,0,80,22,80,66v0,26,-16,45,-33,56v24,12,44,33,44,69v0,51,-39,72,-91,72v-52,0,-91,-21,-91,-72xm108,-37v38,0,50,-42,28,-64v-7,-7,-16,-12,-28,-16v-45,4,-56,80,0,80xm108,-219v-48,0,-34,61,0,66v35,-3,47,-67,0,-66"},"9":{"d":"108,-238v110,-8,111,155,57,216v-24,27,-58,48,-107,49v-3,-14,-8,-27,-1,-42v51,-3,80,-33,89,-78v-11,14,-25,27,-52,26v-50,-2,-77,-32,-77,-83v0,-56,35,-84,91,-88xm70,-152v0,29,13,45,37,45v25,0,40,-16,40,-43v0,-27,-14,-47,-38,-47v-24,0,-39,17,-39,45"},":":{"d":"26,0v-4,-18,-4,-35,0,-53v17,-2,35,-3,52,0v4,18,4,35,0,53v-18,2,-34,3,-52,0xm26,-133v-4,-18,-4,-35,0,-53v17,-2,35,-3,52,0v4,18,4,35,0,53v-18,2,-34,3,-52,0","w":104},";":{"d":"34,-52v14,-3,35,-3,50,0r-27,92v-13,3,-33,3,-47,0xm34,-133v-4,-18,-4,-35,0,-53v17,-2,35,-3,52,0v4,18,4,35,0,53v-18,2,-34,3,-52,0","w":111},"<":{"d":"183,-208v2,17,3,30,1,47r-109,39r109,37v0,17,3,34,-1,49r-149,-59v-4,-19,-4,-35,0,-54"},"=":{"d":"184,-184v2,15,3,29,0,44r-152,0v-2,-15,-3,-29,0,-44r152,0xm184,-110v3,14,2,29,0,43r-152,0v-3,-14,-2,-29,0,-43r152,0"},">":{"d":"141,-122r-109,-37v0,-17,-3,-34,1,-49r149,59v4,19,4,35,0,54r-149,59v-2,-17,-3,-30,-1,-47"},"?":{"d":"15,-247v61,-25,157,-13,152,62v-3,40,-29,58,-57,71r0,33v-15,2,-32,3,-47,0r0,-62v25,-5,50,-12,51,-41v1,-40,-57,-35,-86,-23v-6,-11,-13,-25,-13,-40xm59,0v-3,-18,-2,-35,0,-53v18,-2,35,-3,53,0v3,18,2,35,0,53v-18,3,-35,2,-53,0","w":177},"@":{"d":"60,-80v-6,88,88,114,161,87r11,33v-20,10,-50,14,-80,14v-84,-2,-137,-45,-137,-132v0,-113,76,-184,198,-184v80,0,133,39,133,121v0,68,-38,123,-102,123v-18,0,-31,-5,-40,-14v-38,26,-108,17,-108,-46v0,-88,79,-132,164,-101r-23,122v46,12,66,-40,67,-84v1,-57,-38,-85,-96,-85v-92,2,-142,57,-148,146xm144,-86v-1,30,24,35,49,27r15,-90v-44,-7,-62,23,-64,63","w":361},"A":{"d":"85,-259v20,-2,39,-3,59,0r81,259v-19,2,-36,3,-55,0r-15,-52r-86,0r-14,52v-18,3,-33,2,-51,0xm143,-95r-30,-109r-31,109r61,0","w":228},"B":{"d":"204,-73v2,86,-98,81,-178,73r0,-259v66,-8,163,-12,161,63v-1,30,-16,50,-40,57v33,6,56,26,57,66xm150,-76v0,-36,-32,-40,-72,-38r0,74v35,5,72,0,72,-36xm136,-190v0,-32,-28,-37,-58,-33r0,69v33,2,58,-3,58,-36","w":217},"C":{"d":"76,-129v0,80,57,102,120,80v6,13,10,26,12,42v-22,9,-37,11,-65,11v-83,0,-120,-51,-124,-133v-5,-104,89,-159,186,-123v-1,16,-7,29,-12,42v-63,-24,-117,5,-117,81","w":222},"D":{"d":"234,-128v0,117,-91,145,-208,128r0,-259v116,-17,208,14,208,131xm178,-129v0,-64,-33,-97,-99,-88r0,175v67,8,99,-21,99,-87","w":252},"E":{"d":"25,-259r147,0v3,14,2,31,0,45r-94,0r0,56r75,0v3,15,2,30,0,45r-75,0r0,68r97,0v3,14,2,31,0,45r-150,0r0,-259","w":191},"F":{"d":"25,-259r147,0v3,14,2,31,0,45r-94,0r0,61r75,0v3,15,2,30,0,45r-75,0r0,108v-18,3,-35,2,-53,0r0,-259","w":182},"G":{"d":"75,-129v0,62,31,96,92,86r0,-91v19,-3,34,-2,53,0r0,127v-19,8,-50,11,-75,11v-83,-1,-125,-50,-127,-133v-3,-103,87,-160,186,-123v-1,16,-7,29,-12,42v-62,-24,-117,7,-117,81","w":240},"H":{"d":"25,-259v18,-3,35,-2,53,0r0,102r87,0r0,-102v18,-3,35,-2,53,0r0,259v-18,3,-35,2,-53,0r0,-112r-87,0r0,112v-18,3,-35,2,-53,0r0,-259","w":243},"I":{"d":"25,-259v18,-3,35,-2,53,0r0,259v-18,3,-35,2,-53,0r0,-259","w":103},"J":{"d":"15,-44v28,8,57,2,57,-32r0,-138r-43,0v-2,-15,-3,-31,0,-45r96,0r0,190v2,62,-55,82,-115,69v-2,-15,0,-30,5,-44","w":147},"K":{"d":"85,-130r71,-129v18,-4,39,-1,57,0r-71,125r77,134v-20,0,-40,4,-58,0xm25,-259v16,-3,36,-3,53,0r0,259v-16,3,-36,3,-53,0r0,-259","w":222},"L":{"d":"25,-259v19,-2,33,-3,52,0r0,214r90,0v0,15,2,31,0,45r-142,0r0,-259","w":177},"M":{"d":"32,-259v20,-2,37,-3,56,0r59,148r61,-148v15,-3,36,-2,52,0r12,259v-18,2,-33,3,-50,0r-7,-176r-52,122v-14,2,-27,3,-41,0r-49,-124r-5,178v-16,3,-30,2,-46,0","w":294},"N":{"d":"25,-259v15,-3,28,-2,44,0r100,165r0,-165v16,-2,30,-3,46,0r0,259v-16,3,-27,2,-43,0r-100,-165r0,165v-15,2,-32,3,-47,0r0,-259","w":240},"O":{"d":"243,-129v0,78,-33,133,-112,133v-80,0,-113,-54,-113,-133v0,-79,33,-134,113,-134v79,0,112,56,112,134xm186,-129v0,-52,-10,-89,-55,-89v-38,0,-56,29,-56,89v0,60,19,89,56,89v37,0,55,-29,55,-89","w":261},"P":{"d":"197,-173v-1,69,-49,95,-119,90r0,83v-18,2,-35,2,-53,0r0,-260v87,-9,174,-4,172,87xm143,-172v0,-38,-26,-51,-65,-47r0,92v38,5,65,-8,65,-45","w":209},"Q":{"d":"249,20v-1,15,-2,31,-8,42r-89,-14v3,-14,4,-29,9,-42xm243,-129v0,78,-33,133,-112,133v-80,0,-113,-54,-113,-133v0,-79,33,-134,113,-134v79,0,112,56,112,134xm186,-129v0,-52,-10,-89,-55,-89v-38,0,-56,29,-56,89v0,60,19,89,56,89v37,0,55,-29,55,-89","w":261},"R":{"d":"28,-259v87,-15,191,4,165,102v-7,22,-22,38,-40,47r63,110v-19,1,-39,3,-58,0r-68,-121v24,-11,49,-22,51,-55v1,-34,-26,-48,-61,-43r0,219v-17,2,-34,2,-52,0r0,-259","w":219},"S":{"d":"23,-54v34,20,122,22,103,-36v-30,-39,-107,-23,-107,-98v0,-77,94,-87,157,-63v-1,14,-6,28,-12,41v-28,-13,-103,-25,-88,29v33,38,109,24,109,103v0,83,-103,97,-172,69v2,-15,5,-31,10,-45","w":198},"T":{"d":"76,-214r-65,0v-2,-14,-3,-31,0,-45r182,0v3,14,2,31,0,45r-64,0r0,214v-18,2,-35,2,-53,0r0,-214","w":204,"k":{"\u00ef":-11,"\u00ec":-14}},"U":{"d":"121,4v-128,0,-92,-146,-97,-263v18,-2,34,-3,52,0r0,134v1,45,1,84,45,84v43,0,44,-38,44,-84r0,-134v18,-2,35,-3,53,0v-5,117,30,263,-97,263","w":241},"V":{"d":"4,-259v19,-2,36,-3,56,0r57,204r57,-204v19,-2,36,-3,55,0r-84,259v-18,3,-40,3,-59,0","w":232,"k":{"\u00ef":-11,"\u00ec":-25}},"W":{"d":"6,-259v16,-2,39,-4,56,0r37,195r44,-195v17,-2,33,-3,50,0r46,200r37,-200v16,-3,36,-1,51,0r-63,259v-20,3,-36,2,-57,0r-41,-172r-45,172v-19,1,-35,3,-54,0","w":331,"k":{"\u00ef":-11,"\u00ec":-14}},"X":{"d":"116,-134r40,-124v18,-2,38,-4,55,0r-46,123r56,135v-18,3,-36,3,-55,0xm63,-135r-46,-123v17,-4,37,-2,55,0r41,124r-51,134v-19,3,-37,3,-56,0","w":227},"Y":{"d":"84,-93r-80,-166v19,-2,38,-3,57,0r51,118r51,-118v19,-3,36,-2,55,0r-81,166r0,93v-16,3,-36,3,-53,0r0,-93","w":221,"k":{"\u00ef":-11,"\u00ec":-11}},"Z":{"d":"14,-4r108,-210r-99,0v-3,-14,-2,-31,0,-45r174,0r2,4r-107,210r102,0v3,14,2,31,0,45r-178,0","w":208},"[":{"d":"18,-279r86,0v2,14,3,27,0,41r-36,0r0,257r36,0v2,14,2,27,0,41r-86,0r0,-339","w":123},"\\":{"d":"5,-259v19,-2,33,-3,52,0r87,259v-18,3,-33,2,-51,0","w":149},"]":{"d":"56,19r0,-257r-36,0v-2,-14,-2,-27,0,-41r86,0r0,339r-86,0v-2,-14,-3,-27,0,-41r36,0","w":123},"^":{"d":"75,-259v16,-2,31,-3,48,0r57,128v-15,2,-31,4,-47,1r-35,-82r-33,82v-16,2,-31,3,-47,-1","w":197},"_":{"d":"179,1v2,12,3,23,0,35r-176,0v-3,-9,-3,-25,0,-35r176,0","w":181},"`":{"d":"39,-259v20,-2,43,-3,62,0r40,44v-15,3,-34,4,-48,0","w":180},"a":{"d":"62,-60v0,27,34,27,56,22r0,-47v-23,-5,-56,-2,-56,25xm14,-58v2,-53,50,-64,104,-60v3,-42,-49,-35,-81,-25v-5,-11,-10,-21,-10,-37v60,-22,141,-12,141,65r0,108v-53,18,-157,23,-154,-51","w":187},"b":{"d":"198,-96v4,91,-94,117,-174,90r0,-257v18,-2,33,-3,51,0r0,95v8,-13,25,-23,47,-22v54,1,74,39,76,94xm108,-148v-46,-1,-31,64,-33,108v42,8,69,-11,69,-55v0,-31,-8,-52,-36,-53","w":212},"c":{"d":"67,-93v-6,52,44,67,83,49v6,11,10,22,10,39v-71,28,-145,-7,-145,-88v0,-80,69,-116,143,-88v0,14,-3,28,-9,38v-41,-16,-88,0,-82,50","w":171},"d":{"d":"15,-91v4,-69,50,-109,122,-96r0,-76v15,-3,36,-3,51,0r0,257v-75,24,-179,10,-173,-85xm67,-91v0,42,28,62,70,50r0,-107v-44,-11,-70,14,-70,57","w":211},"e":{"d":"105,-190v62,-1,90,49,80,113r-119,0v0,48,63,46,100,32v6,10,10,24,10,39v-76,27,-167,2,-161,-86v4,-58,29,-98,90,-98xm139,-113v3,-35,-41,-51,-62,-28v-6,7,-10,16,-11,28r73,0","w":202},"f":{"d":"137,-223v-29,-6,-53,1,-49,37r43,0v3,12,3,27,0,39r-43,0r0,147v-18,3,-33,2,-51,0r0,-147r-29,0v-3,-12,-3,-27,0,-39r29,0v-6,-65,48,-93,108,-77v-1,16,-4,27,-8,40","w":142,"k":{"\u00ef":-20,"\u00ee":-11,"\u00ec":-23}},"g":{"d":"70,-62v-13,9,-13,31,10,30v56,-2,116,-2,113,55v-3,50,-49,67,-102,67v-42,0,-79,-7,-79,-48v0,-24,12,-35,28,-45v-27,-12,-21,-61,5,-70v-14,-11,-26,-28,-26,-51v0,-68,96,-82,137,-46v10,-13,21,-19,45,-18v0,14,2,29,0,42r-30,0v22,58,-35,101,-101,84xm145,26v0,-26,-36,-19,-61,-20v-17,-1,-27,7,-27,24v0,20,16,22,37,23v25,1,51,-7,51,-27xm69,-124v0,19,9,32,29,32v21,0,29,-12,29,-32v0,-20,-8,-33,-29,-33v-20,0,-29,13,-29,33","w":203},"h":{"d":"112,-145v-58,0,-31,91,-37,145v-15,3,-36,3,-51,0r0,-263v15,-3,36,-3,51,0r0,99v11,-14,25,-26,52,-26v88,0,58,111,63,190v-15,3,-36,3,-51,0r0,-105v-1,-23,-5,-40,-27,-40","w":210},"i":{"d":"35,-147r-24,0v-2,-13,-3,-26,0,-39r74,0r0,186v-18,2,-32,3,-50,0r0,-147xm28,-217v-2,-16,-3,-33,0,-49v17,-2,35,-3,52,0v3,14,3,34,0,49v-17,0,-36,2,-52,0","w":110},"j":{"d":"-11,28v28,8,47,-4,47,-33r0,-142r-25,0v-2,-13,-3,-26,0,-39r74,0r0,190v5,60,-50,73,-103,61v0,-15,3,-25,7,-37xm28,-219v-3,-15,-3,-30,0,-46v17,-2,35,-4,52,0v3,15,3,30,0,46v-13,4,-38,5,-52,0","w":110},"k":{"d":"22,-263v16,-3,35,-2,51,0r0,263v-16,2,-35,3,-51,0r0,-263xm80,-98r46,-88v18,-2,37,-3,55,0r-47,86r55,100v-20,2,-35,3,-55,0","w":192},"l":{"d":"114,-1v-51,11,-90,-7,-90,-62r0,-200v18,-3,33,-2,51,0r0,189v-3,26,9,41,36,34v4,14,3,24,3,39","w":116},"m":{"d":"110,-145v-56,2,-27,93,-34,145v-18,3,-33,2,-51,0r0,-186v22,-6,54,-4,48,26v12,-40,97,-40,107,3v9,-17,26,-33,54,-33v87,0,55,112,61,190v-18,3,-33,2,-51,0r0,-105v-1,-23,-2,-40,-24,-40v-56,2,-27,93,-34,145v-18,2,-33,3,-51,0r0,-105v-1,-23,-2,-40,-25,-40","w":316},"n":{"d":"112,-145v-57,1,-30,91,-36,145v-18,3,-33,2,-51,0r0,-186v22,-6,54,-4,48,26v10,-16,25,-30,53,-30v88,0,59,110,64,190v-18,3,-33,2,-51,0r0,-105v0,-23,-5,-40,-27,-40","w":211},"o":{"d":"194,-93v0,59,-29,97,-90,97v-60,0,-89,-37,-89,-97v0,-59,29,-96,89,-97v61,0,90,38,90,97xm67,-93v0,34,7,58,37,58v30,0,38,-25,38,-58v0,-33,-8,-57,-38,-57v-30,0,-37,24,-37,57","w":208},"p":{"d":"198,-96v0,72,-47,106,-123,99r0,82v-15,3,-35,3,-51,0r0,-271v12,-4,29,-2,42,0r6,27v10,-17,24,-32,52,-31v53,1,74,40,74,94xm108,-147v-45,0,-31,63,-33,107v41,12,72,-11,69,-55v-2,-28,-8,-52,-36,-52","w":212},"q":{"d":"15,-89v0,-89,86,-117,172,-93r0,267v-15,3,-36,3,-51,0r0,-84v-69,12,-121,-18,-121,-90xm68,-89v0,42,28,59,68,48r0,-106v-43,-10,-68,16,-68,58","w":211},"r":{"d":"135,-142v-74,-15,-58,75,-59,142v-15,3,-35,3,-51,0r0,-186v23,-6,53,-5,48,27v11,-17,32,-35,63,-28v2,14,2,31,-1,45","w":144},"s":{"d":"25,-45v24,15,94,16,73,-23v-30,-17,-80,-14,-80,-64v0,-60,81,-68,129,-48v-1,12,-6,28,-11,37v-17,-13,-84,-15,-62,18v32,15,79,14,79,66v0,63,-85,75,-139,53v1,-13,6,-28,11,-39","w":165},"t":{"d":"132,-2v-53,12,-102,-2,-102,-61r0,-84v-10,-1,-26,4,-25,-7r67,-86r9,0r0,54r43,0v3,12,3,26,0,39r-43,0v3,48,-19,126,47,106v4,12,4,24,4,39","w":137},"u":{"d":"115,4v-62,0,-93,-26,-93,-90r0,-100v18,-2,33,-3,51,0v6,64,-28,168,61,146r0,-146v18,-3,33,-2,51,0r0,179v-17,6,-45,11,-70,11","w":205},"v":{"d":"2,-186v17,-3,39,-3,56,0r41,138r40,-138v15,-3,38,-3,55,0r-71,186v-17,2,-35,3,-52,0","w":195},"w":{"d":"3,-186v16,-3,38,-3,55,0r29,137r35,-137v14,-2,37,-4,51,0r34,135r29,-135v15,-3,35,-3,52,0r-58,186v-17,2,-34,3,-51,0r-34,-123r-35,123v-17,2,-34,3,-51,0","w":290},"x":{"d":"48,-96r-36,-90v16,-2,37,-3,54,0r29,91r-37,95v-19,3,-34,2,-53,0xm97,-95r29,-91v17,-2,36,-3,54,0r-36,90r43,96v-19,2,-34,3,-52,0","w":192},"y":{"d":"34,48v37,14,53,-16,57,-48v-11,0,-23,2,-33,0r-54,-186v17,-3,37,-3,54,0r39,162r44,-162v17,-2,34,-4,51,0r-69,230v-7,40,-50,55,-95,41v-3,-14,2,-27,6,-37","w":195},"z":{"d":"10,-4r84,-143r-72,0v0,-13,-2,-27,0,-39r147,0r2,4r-86,143r80,0v0,13,2,27,0,39r-152,0","w":177},"{":{"d":"137,59v-74,7,-87,-39,-85,-110v1,-32,-13,-47,-34,-57r0,-9v32,-11,36,-45,35,-89v-1,-55,26,-85,84,-77v3,14,2,25,0,39v-32,-3,-37,17,-36,47v1,42,-3,73,-30,85v28,12,30,43,30,85v-1,29,3,50,36,46v2,15,3,25,0,40","w":157},"|":{"d":"37,-279v16,-4,33,-4,49,0r0,339v-16,4,-33,4,-49,0r0,-339","w":122},"}":{"d":"105,-51v2,69,-10,118,-85,110v-2,-15,-3,-25,0,-40v32,4,36,-17,36,-46v0,-41,1,-74,30,-85v-28,-12,-30,-45,-30,-85v0,-30,-4,-50,-36,-47v-2,-14,-3,-25,0,-39v71,-10,88,38,85,109v-1,32,12,47,34,57r0,9v-21,10,-34,25,-34,57","w":157},"~":{"d":"54,-174v32,0,70,30,94,2v9,9,15,20,19,33v-9,11,-28,20,-49,20v-33,-1,-69,-29,-95,-2v-7,-10,-15,-19,-19,-31v11,-12,28,-22,50,-22","w":171},"\u00a0":{"w":0},"\u00a1":{"d":"30,-103v16,-2,32,-3,48,0r4,176v-19,2,-37,3,-56,0xm27,-133v-3,-18,-2,-35,0,-53v18,-2,35,-3,53,0v3,18,2,35,0,53v-18,3,-35,2,-53,0","w":107},"\u00a2":{"d":"183,-5v-13,5,-24,7,-38,9r0,38v-10,4,-21,3,-31,0r0,-39v-50,-7,-76,-40,-76,-96v0,-53,25,-91,76,-96r0,-40v11,-3,20,-2,31,0r0,39v14,2,24,4,36,9v1,16,-4,27,-9,38v-41,-16,-88,0,-82,50v-6,51,41,68,83,49v6,11,10,22,10,39"},"\u00a3":{"d":"55,-143v-13,-68,18,-117,85,-116v25,0,41,4,59,11v-1,16,-5,29,-11,42v-30,-16,-83,-14,-83,30v0,13,2,22,3,33r57,0v0,13,2,27,0,39r-51,0v4,22,1,42,-8,59r93,0v2,15,2,30,0,45r-167,0v-2,-11,14,-14,16,-25v12,-19,18,-48,14,-79r-33,0v-2,-13,-3,-26,0,-39r26,0"},"\u00a4":{"d":"177,-165v16,24,16,61,0,82r25,25v-7,11,-16,22,-28,28r-25,-25v-23,14,-58,13,-81,0r-25,25v-15,-6,-21,-17,-29,-29r25,-25v-14,-24,-13,-56,1,-79r-26,-26v6,-15,17,-21,29,-29r26,26v24,-13,55,-14,79,0r26,-26v11,7,22,16,28,28xm72,-123v0,22,14,38,37,38v22,0,36,-14,36,-38v0,-24,-14,-39,-36,-39v-23,0,-37,16,-37,39"},"\u00a5":{"d":"82,-56r-60,0v0,-10,-2,-22,0,-31r60,0r0,-25r-60,0v0,-10,-2,-22,0,-31r43,0r-60,-112v19,-2,38,-3,57,0r48,101r47,-101v19,-3,36,-2,55,0r-61,112r49,0v0,10,2,22,0,31r-66,0r0,25r66,0v0,10,2,22,0,31r-66,0r0,56v-16,3,-35,3,-52,0r0,-56"},"\u00a6":{"d":"37,-279v16,-4,33,-4,49,0r0,120v-16,3,-33,2,-49,0r0,-120xm37,-60v16,-3,33,-2,49,0r0,120v-16,4,-33,4,-49,0r0,-120","w":122},"\u00a7":{"d":"37,-43v22,11,101,18,81,-18v-32,-18,-95,-16,-95,-64v0,-18,11,-34,22,-45v-33,-43,9,-94,67,-89v24,2,40,5,59,10v-1,13,-6,29,-12,38v-19,-13,-90,-19,-71,17v31,19,96,14,96,63v0,21,-11,36,-23,48v37,42,-14,87,-74,87v-22,0,-42,-3,-61,-10v1,-12,6,-28,11,-37xm79,-153v-15,10,-16,38,8,40r40,12v16,-11,16,-36,-12,-43","w":205},"\u00a8":{"d":"27,-213v-2,-14,-2,-28,0,-43v13,-3,32,-3,46,0v3,13,3,30,0,43v-15,0,-31,2,-46,0xm107,-213v-3,-14,-4,-29,0,-43v13,-3,32,-3,46,0v0,14,2,30,0,43v-15,0,-32,2,-46,0","w":180},"\u00a9":{"d":"124,-130v-4,37,31,49,61,35v5,7,8,21,8,33v-56,20,-109,-9,-109,-68v0,-58,53,-89,107,-67v0,11,-3,24,-7,32v-29,-13,-64,-1,-60,35xm43,-129v0,66,39,107,105,107v66,0,105,-41,105,-107v0,-67,-40,-108,-105,-108v-65,0,-105,41,-105,108xm282,-129v0,83,-52,134,-134,134v-82,0,-134,-52,-134,-134v0,-82,50,-134,134,-134v83,0,134,51,134,134","w":295},"\u00aa":{"d":"103,-178v-33,-13,-60,30,-23,35v8,2,16,0,23,-1r0,-34xm103,-204v3,-32,-42,-22,-62,-17v-6,-9,-9,-17,-9,-30v48,-16,112,-10,112,50r0,82v-42,14,-124,19,-122,-39v1,-40,40,-50,81,-46","w":180},"\u00ab":{"d":"111,-96r56,-80v15,-3,36,-2,52,0r-55,80r55,80v-16,2,-37,3,-52,0xm14,-96r57,-80v15,-3,36,-2,52,0r-55,80r55,80v-16,2,-37,3,-52,0","w":230},"\u00ac":{"d":"187,-149r0,103v-14,2,-30,3,-44,0r0,-59r-110,0v-2,-14,-3,-30,0,-44r154,0"},"\u00ad":{"d":"113,-121v2,14,3,30,0,44r-92,0v-2,-14,-3,-30,0,-44r92,0","w":133},"\u00ae":{"d":"161,-141v13,-17,0,-40,-26,-33r0,111v-12,0,-24,2,-35,0r0,-138v51,-13,126,4,99,62v-4,9,-9,14,-16,19r31,56v-13,2,-27,3,-40,0r-33,-63v8,-3,15,-8,20,-14xm43,-129v0,66,39,107,105,107v66,0,105,-41,105,-107v0,-67,-40,-108,-105,-108v-65,0,-105,41,-105,108xm282,-129v0,83,-52,134,-134,134v-82,0,-134,-52,-134,-134v0,-82,50,-134,134,-134v83,0,134,51,134,134","w":295},"\u00af":{"d":"138,-255v3,12,2,25,0,37r-96,0v-3,-12,-2,-25,0,-37r96,0","w":180},"\u00b0":{"d":"68,-153v-31,0,-54,-21,-54,-54v0,-32,22,-54,54,-54v32,0,54,22,54,54v0,33,-23,54,-54,54xm45,-207v0,13,10,23,23,23v12,0,23,-10,23,-23v0,-13,-11,-24,-23,-24v-13,0,-23,12,-23,24","w":135},"\u00b1":{"d":"86,-44r0,-61r-56,0v-3,-15,-4,-29,0,-44r56,0r0,-64v15,-2,29,-3,44,0r0,64r56,0v2,15,3,29,0,44r-56,0r0,61r54,0v2,15,3,29,0,44r-152,0v-2,-15,-3,-29,0,-44r54,0"},"\u00b2":{"d":"24,-249v39,-18,109,-13,107,38v-2,32,-21,46,-38,67r45,0v2,10,3,25,0,34r-116,0r-3,-7v20,-25,63,-58,70,-90v-1,-23,-41,-18,-55,-9v-4,-9,-9,-21,-10,-33","w":162},"\u00b3":{"d":"99,-158v0,-17,-25,-19,-40,-14r-7,-7r27,-43r-44,0v-3,-9,-2,-21,0,-33r98,0r4,8r-33,48v21,4,36,18,36,41v0,52,-68,61,-115,45v0,-12,5,-24,10,-31v20,8,63,15,64,-14","w":162},"\u00b4":{"d":"79,-259v19,-2,43,-2,62,0r-54,44v-14,4,-33,4,-48,0","w":180},"\u00b5":{"d":"149,-20v-14,20,-46,31,-74,19r0,86v-15,3,-34,3,-50,0r0,-271v18,-3,33,-2,51,0v6,54,-21,148,35,148v56,0,24,-96,32,-148v18,-2,32,-3,50,0r0,186v-19,6,-46,3,-44,-20","w":214},"\u00b6":{"d":"103,-113v-80,15,-114,-91,-54,-130v21,-13,51,-19,87,-18r0,263v-11,0,-26,1,-33,-2r0,-113xm159,-261r33,2r0,259v-7,3,-22,2,-33,2r0,-263","w":215},"\u00b7":{"d":"27,-73v-3,-18,-4,-33,0,-51v18,-2,32,-3,50,0v4,18,4,33,0,51v-18,2,-32,3,-50,0","w":104},"\u00b8":{"d":"100,50v-1,-18,-38,-5,-46,-10r18,-49r26,0v-2,9,-12,22,-9,28v23,-4,45,10,44,31v0,36,-48,41,-84,34v0,-9,2,-20,6,-26v14,5,43,8,45,-8","w":180},"\u00b9":{"d":"67,-144r0,-64r-27,10v-8,-9,-11,-17,-16,-30v28,-9,50,-24,83,-28r0,112v24,-5,41,4,30,34r-100,0v-4,-10,-3,-24,0,-34r30,0","w":162},"\u00ba":{"d":"64,-183v0,23,5,44,26,44v21,0,26,-21,26,-44v0,-23,-6,-43,-26,-43v-20,0,-26,20,-26,43xm157,-183v0,45,-21,76,-67,76v-46,0,-68,-31,-68,-76v0,-45,24,-76,68,-76v44,0,67,31,67,76","w":180},"\u00bb":{"d":"162,-96r-55,-80v17,-2,35,-3,52,0r57,80r-57,80v-17,3,-35,2,-52,0xm67,-96r-56,-80v17,-2,36,-3,53,0r56,80r-56,80v-17,3,-36,2,-53,0","w":230},"\u00bf":{"d":"21,-1v0,-41,29,-58,56,-71r0,-33v15,-2,32,-3,47,0r0,62v-25,5,-51,13,-51,41v0,39,57,35,86,23v6,11,13,25,13,40v-60,24,-151,15,-151,-62xm75,-133v-3,-18,-2,-35,0,-53v18,-3,35,-2,53,0v3,18,2,35,0,53v-18,3,-35,2,-53,0","w":177},"\u00c0":{"d":"37,-319v22,-2,47,-2,69,0r35,38v-16,2,-35,4,-51,0xm85,-259v20,-2,39,-3,59,0r81,259v-19,2,-36,3,-55,0r-15,-52r-86,0r-14,52v-18,3,-33,2,-51,0xm143,-95r-30,-109r-31,109r61,0","w":228},"\u00c1":{"d":"82,-281v18,-29,49,-49,105,-38v-28,19,-52,50,-105,38xm85,-259v20,-2,39,-3,59,0r81,259v-19,2,-36,3,-55,0r-15,-52r-86,0r-14,52v-18,3,-33,2,-51,0xm143,-95r-30,-109r-31,109r61,0","w":228},"\u00c2":{"d":"83,-319v20,-2,42,-2,62,0r39,38v-17,2,-36,3,-53,0r-17,-18v-8,20,-39,23,-69,18xm85,-259v20,-2,39,-3,59,0r81,259v-19,2,-36,3,-55,0r-15,-52r-86,0r-14,52v-18,3,-33,2,-51,0xm143,-95r-30,-109r-31,109r61,0","w":228},"\u00c3":{"d":"143,-282v-29,-1,-60,-29,-81,-2v-7,-8,-14,-16,-16,-27v8,-10,23,-22,41,-20v26,3,58,28,79,3v8,8,13,17,16,27v-7,10,-22,20,-39,19xm85,-259v20,-2,39,-3,59,0r81,259v-19,2,-36,3,-55,0r-15,-52r-86,0r-14,52v-18,3,-33,2,-51,0xm143,-95r-30,-109r-31,109r61,0","w":228},"\u00c4":{"d":"51,-284v-2,-14,-2,-28,0,-43v16,-2,31,-2,47,0v0,14,2,30,0,43v-16,2,-31,3,-47,0xm131,-284v-3,-14,-2,-29,0,-43v15,-2,30,-2,46,0v2,14,2,28,0,43v-15,2,-31,3,-46,0xm85,-259v20,-2,39,-3,59,0r81,259v-19,2,-36,3,-55,0r-15,-52r-86,0r-14,52v-18,3,-33,2,-51,0xm143,-95r-30,-109r-31,109r61,0","w":228},"\u00c5":{"d":"114,-337v43,-5,61,57,29,79r82,258v-19,2,-36,3,-55,0r-15,-52r-86,0r-14,52v-18,3,-33,2,-51,0r82,-258v-31,-21,-15,-84,28,-79xm143,-95r-30,-113r-31,113r61,0xm97,-293v0,12,4,23,17,22v12,0,18,-7,18,-22v0,-13,-6,-22,-18,-22v-12,0,-17,10,-17,22","w":228},"\u00c6":{"d":"149,-259r176,0v4,14,4,31,0,45r-94,0r0,56r75,0v3,15,2,30,0,45r-75,0r0,68r97,0v3,14,2,31,0,45r-149,0r0,-53r-90,0r-28,53v-17,3,-40,2,-57,0xm179,-97r0,-122r-3,0r-64,122r67,0","w":344},"\u00c7":{"d":"100,57v14,4,45,9,46,-7v1,-12,-30,-12,-43,-6v-9,-11,8,-29,10,-43v-63,-11,-91,-58,-94,-130v-4,-104,89,-159,186,-123v-1,16,-7,29,-12,42v-63,-24,-117,5,-117,81v0,80,57,102,120,80v6,13,10,26,12,42v-23,10,-40,11,-70,11r-5,13v26,-4,47,8,48,33v1,38,-52,42,-89,33v1,-9,3,-20,8,-26","w":222},"\u00c8":{"d":"35,-319v23,-2,47,-2,70,0r35,38v-17,2,-36,4,-52,0xm25,-259r147,0v3,14,2,31,0,45r-94,0r0,56r75,0v3,15,2,30,0,45r-75,0r0,68r97,0v3,14,2,31,0,45r-150,0r0,-259","w":191},"\u00c9":{"d":"58,-281v18,-29,49,-49,104,-38v-28,19,-51,50,-104,38xm25,-259r147,0v3,14,2,31,0,45r-94,0r0,56r75,0v3,15,2,30,0,45r-75,0r0,68r97,0v3,14,2,31,0,45r-150,0r0,-259","w":191},"\u00ca":{"d":"64,-319v21,-2,43,-2,63,0r38,38v-17,2,-36,3,-53,0r-17,-18v-8,20,-39,24,-69,18xm25,-259r147,0v3,14,2,31,0,45r-94,0r0,56r75,0v3,15,2,30,0,45r-75,0r0,68r97,0v3,14,2,31,0,45r-150,0r0,-259","w":191},"\u00cb":{"d":"35,-284v-3,-12,-3,-30,0,-43v15,-2,30,-2,46,0v2,14,3,28,0,43v-15,2,-31,3,-46,0xm114,-284v-3,-14,-2,-29,0,-43v16,-2,31,-2,47,0v0,14,2,30,0,43v-16,2,-31,3,-47,0xm25,-259r147,0v3,14,2,31,0,45r-94,0r0,56r75,0v3,15,2,30,0,45r-75,0r0,68r97,0v3,14,2,31,0,45r-150,0r0,-259","w":191},"\u00cc":{"d":"-18,-319v22,-2,47,-2,69,0r35,38v-16,2,-35,4,-51,0xm25,-259v18,-3,35,-2,53,0r0,259v-18,3,-35,2,-53,0r0,-259","w":103},"\u00cd":{"d":"22,-281v19,-28,49,-49,105,-38v-28,19,-52,50,-105,38xm25,-259v18,-3,35,-2,53,0r0,259v-18,3,-35,2,-53,0r0,-259","w":103},"\u00ce":{"d":"21,-319v20,-2,42,-2,62,0r38,38v-17,2,-36,3,-53,0r-17,-18v-9,20,-38,23,-69,18xm25,-259v18,-3,35,-2,53,0r0,259v-18,3,-35,2,-53,0r0,-259","w":103},"\u00cf":{"d":"-11,-284v-2,-14,-2,-28,0,-43v15,-2,30,-2,46,0v3,13,3,30,0,43v-15,2,-30,2,-46,0xm68,-284v-3,-14,-2,-29,0,-43v16,-2,31,-2,47,0v0,14,2,30,0,43v-16,2,-31,3,-47,0xm25,-259v18,-3,35,-2,53,0r0,259v-18,3,-35,2,-53,0r0,-259","w":103},"\u00d0":{"d":"234,-128v0,116,-90,145,-207,128r0,-117r-25,0v-3,-12,-2,-25,0,-37r25,0r0,-105v116,-17,207,13,207,131xm178,-129v0,-64,-32,-97,-98,-88r0,63r50,0v3,12,2,25,0,37r-50,0r0,75v67,8,98,-22,98,-87","w":252},"\u00d1":{"d":"152,-282v-29,-1,-60,-29,-81,-2v-6,-8,-13,-16,-16,-27v8,-10,23,-22,41,-20v27,3,59,29,80,3v8,8,13,17,16,27v-7,9,-23,20,-40,19xm25,-259v15,-3,28,-2,44,0r100,165r0,-165v16,-2,30,-3,46,0r0,259v-16,3,-27,2,-43,0r-100,-165r0,165v-15,2,-32,3,-47,0r0,-259","w":240},"\u00d2":{"d":"53,-319v22,-2,47,-2,69,0r35,38v-17,2,-36,4,-52,0xm243,-129v0,78,-33,133,-112,133v-80,0,-113,-54,-113,-133v0,-79,33,-134,113,-134v79,0,112,56,112,134xm186,-129v0,-52,-10,-89,-55,-89v-38,0,-56,29,-56,89v0,60,19,89,56,89v37,0,55,-29,55,-89","w":261},"\u00d3":{"d":"102,-281v19,-28,49,-49,105,-38v-28,19,-52,50,-105,38xm243,-129v0,78,-33,133,-112,133v-80,0,-113,-54,-113,-133v0,-79,33,-134,113,-134v79,0,112,56,112,134xm186,-129v0,-52,-10,-89,-55,-89v-38,0,-56,29,-56,89v0,60,19,89,56,89v37,0,55,-29,55,-89","w":261},"\u00d4":{"d":"99,-319v21,-2,43,-2,63,0r38,38v-17,2,-36,3,-53,0r-17,-18v-9,20,-39,23,-69,18xm243,-129v0,78,-33,133,-112,133v-80,0,-113,-54,-113,-133v0,-79,33,-134,113,-134v79,0,112,56,112,134xm186,-129v0,-52,-10,-89,-55,-89v-38,0,-56,29,-56,89v0,60,19,89,56,89v37,0,55,-29,55,-89","w":261},"\u00d5":{"d":"163,-282v-29,-2,-60,-28,-81,-2v-6,-8,-12,-16,-15,-27v8,-10,23,-22,41,-20v26,3,58,29,79,3v8,8,13,17,16,27v-7,9,-23,20,-40,19xm243,-129v0,78,-33,133,-112,133v-80,0,-113,-54,-113,-133v0,-79,33,-134,113,-134v79,0,112,56,112,134xm186,-129v0,-52,-10,-89,-55,-89v-38,0,-56,29,-56,89v0,60,19,89,56,89v37,0,55,-29,55,-89","w":261},"\u00d6":{"d":"68,-284v-3,-12,-3,-30,0,-43v15,-2,30,-2,46,0v3,13,3,30,0,43v-15,2,-30,2,-46,0xm147,-284v-3,-14,-2,-29,0,-43v16,-2,31,-2,47,0v0,14,2,30,0,43v-16,2,-31,3,-47,0xm243,-129v0,78,-33,133,-112,133v-80,0,-113,-54,-113,-133v0,-79,33,-134,113,-134v79,0,112,56,112,134xm186,-129v0,-52,-10,-89,-55,-89v-38,0,-56,29,-56,89v0,60,19,89,56,89v37,0,55,-29,55,-89","w":261},"\u00d7":{"d":"77,-125r-40,-40v8,-12,19,-22,31,-30r40,39r40,-39v12,8,22,19,31,30r-40,40r40,40v-8,13,-18,23,-31,31r-40,-40r-40,40v-13,-7,-22,-19,-31,-31"},"\u00d8":{"d":"131,4v-30,1,-52,-8,-69,-21v-5,14,-19,23,-43,17r25,-35v-51,-76,-29,-237,87,-228v28,2,50,7,66,19v5,-14,22,-21,42,-15r-24,33v17,22,28,58,28,97v-2,78,-33,132,-112,133xm92,-57v42,40,94,10,94,-72v0,-19,-2,-35,-6,-49xm167,-203v-53,-44,-106,12,-91,99v1,8,2,15,4,21","w":261},"\u00d9":{"d":"48,-319v23,-2,47,-2,70,0r35,38v-17,2,-36,4,-52,0xm121,4v-128,0,-92,-146,-97,-263v18,-2,34,-3,52,0r0,134v1,45,1,84,45,84v43,0,44,-38,44,-84r0,-134v18,-2,35,-3,53,0v-5,117,30,263,-97,263","w":241},"\u00da":{"d":"91,-281v19,-28,49,-49,105,-38v-28,19,-52,50,-105,38xm121,4v-128,0,-92,-146,-97,-263v18,-2,34,-3,52,0r0,134v1,45,1,84,45,84v43,0,44,-38,44,-84r0,-134v18,-2,35,-3,53,0v-5,117,30,263,-97,263","w":241},"\u00db":{"d":"90,-319v20,-2,42,-2,62,0r38,38v-16,2,-36,3,-52,0r-17,-18v-9,20,-39,24,-70,18xm121,4v-128,0,-92,-146,-97,-263v18,-2,34,-3,52,0r0,134v1,45,1,84,45,84v43,0,44,-38,44,-84r0,-134v18,-2,35,-3,53,0v-5,117,30,263,-97,263","w":241},"\u00dc":{"d":"58,-284v0,-14,-2,-30,0,-43v16,-2,31,-2,47,0v2,14,3,28,0,43v-16,2,-31,3,-47,0xm138,-284v-3,-14,-2,-29,0,-43v15,-2,30,-2,46,0v2,14,2,28,0,43v-15,2,-30,2,-46,0xm121,4v-128,0,-92,-146,-97,-263v18,-2,34,-3,52,0r0,134v1,45,1,84,45,84v43,0,44,-38,44,-84r0,-134v18,-2,35,-3,53,0v-5,117,30,263,-97,263","w":241},"\u00dd":{"d":"80,-281v19,-28,49,-49,105,-38v-28,19,-52,50,-105,38xm84,-93r-80,-166v19,-2,38,-3,57,0r51,118r51,-118v19,-3,36,-2,55,0r-81,166r0,93v-16,3,-36,3,-53,0r0,-93","w":221},"\u00de":{"d":"197,-130v0,70,-48,92,-119,90r0,40v-18,2,-35,3,-53,0r0,-259v18,-2,35,-2,53,0r0,39v71,-2,119,20,119,90xm143,-130v0,-37,-27,-50,-65,-45r0,90v38,5,65,-7,65,-45","w":212},"\u00df":{"d":"104,-226v-27,2,-30,21,-30,53r0,173v-18,2,-32,3,-50,0v8,-109,-36,-267,83,-267v66,0,97,64,60,108v-11,13,-25,38,-2,49v22,11,41,24,41,59v0,55,-70,66,-113,47v0,-13,5,-28,10,-38v19,10,53,12,53,-14v-10,-31,-56,-27,-56,-69v1,-34,32,-40,31,-76v-1,-16,-9,-26,-27,-25","w":217},"\u00e0":{"d":"62,-60v0,27,34,27,56,22r0,-47v-23,-5,-56,-2,-56,25xm14,-58v2,-53,50,-64,104,-60v3,-42,-49,-35,-81,-25v-5,-11,-10,-21,-10,-37v60,-22,141,-12,141,65r0,108v-53,18,-157,23,-154,-51xm25,-259v20,-2,43,-3,62,0r40,44v-15,3,-34,4,-48,0","w":187},"\u00e1":{"d":"62,-60v0,27,34,27,56,22r0,-47v-23,-5,-56,-2,-56,25xm14,-58v2,-53,50,-64,104,-60v3,-42,-49,-35,-81,-25v-5,-11,-10,-21,-10,-37v60,-22,141,-12,141,65r0,108v-53,18,-157,23,-154,-51xm91,-259v19,-2,43,-2,62,0r-54,44v-14,4,-33,4,-48,0","w":187},"\u00e2":{"d":"62,-259v19,-1,38,-3,56,1r35,44v-13,3,-35,2,-49,-1r-14,-23v-6,23,-33,31,-64,24xm62,-60v0,27,34,27,56,22r0,-47v-23,-5,-56,-2,-56,25xm14,-58v2,-53,50,-64,104,-60v3,-42,-49,-35,-81,-25v-5,-11,-10,-21,-10,-37v60,-22,141,-12,141,65r0,108v-53,18,-157,23,-154,-51","w":187},"\u00e3":{"d":"44,-216v-6,-7,-14,-17,-16,-28v8,-10,23,-20,40,-19v26,2,56,26,76,2v7,7,13,18,15,28v-23,44,-88,-13,-115,17xm62,-60v0,27,34,27,56,22r0,-47v-23,-5,-56,-2,-56,25xm14,-58v2,-53,50,-64,104,-60v3,-42,-49,-35,-81,-25v-5,-11,-10,-21,-10,-37v60,-22,141,-12,141,65r0,108v-53,18,-157,23,-154,-51","w":187},"\u00e4":{"d":"62,-60v0,27,34,27,56,22r0,-47v-23,-5,-56,-2,-56,25xm14,-58v2,-53,50,-64,104,-60v3,-42,-49,-35,-81,-25v-5,-11,-10,-21,-10,-37v60,-22,141,-12,141,65r0,108v-53,18,-157,23,-154,-51xm33,-213v-2,-14,-2,-28,0,-43v13,-3,32,-3,46,0v3,13,3,30,0,43v-15,0,-31,2,-46,0xm113,-213v-3,-14,-4,-29,0,-43v13,-3,32,-3,46,0v0,14,2,30,0,43v-15,0,-32,2,-46,0","w":187},"\u00e5":{"d":"96,-209v-24,0,-42,-16,-42,-41v0,-25,18,-41,42,-41v24,0,43,15,43,41v0,26,-19,41,-43,41xm80,-250v0,12,6,20,16,20v10,0,17,-8,17,-20v0,-13,-6,-20,-17,-20v-11,0,-16,8,-16,20xm62,-60v0,27,34,27,56,22r0,-47v-23,-5,-56,-2,-56,25xm14,-58v2,-53,50,-64,104,-60v3,-42,-49,-35,-81,-25v-5,-11,-10,-21,-10,-37v60,-22,141,-12,141,65r0,108v-53,18,-157,23,-154,-51","w":187},"\u00e6":{"d":"14,-58v3,-53,51,-63,105,-59v5,-44,-52,-35,-82,-26v-5,-11,-10,-21,-10,-37v37,-14,98,-16,120,11v14,-12,31,-21,57,-21v61,0,85,51,76,112r-116,0v-2,47,61,48,97,33v6,10,10,24,10,39v-34,15,-93,13,-121,-5v-44,26,-140,24,-136,-47xm126,-42v-6,-11,-9,-24,-8,-41v-24,-3,-56,-4,-56,23v0,32,44,27,64,18xm234,-113v5,-36,-38,-51,-58,-28v-6,7,-10,16,-11,28r69,0","w":297},"\u00e7":{"d":"114,50v0,-19,-37,-4,-45,-10r14,-38v-44,-9,-65,-43,-68,-95v-4,-80,69,-116,143,-88v0,14,-3,28,-9,38v-41,-16,-88,0,-82,50v-6,51,41,68,83,49v6,11,10,22,10,39v-17,8,-29,9,-52,9v-1,5,-8,13,-4,15v23,-5,44,10,44,31v0,35,-48,41,-85,34v0,-9,3,-20,7,-26v13,5,44,8,44,-8","w":171},"\u00e8":{"d":"105,-190v62,-1,90,49,80,113r-119,0v0,48,63,46,100,32v6,10,10,24,10,39v-76,27,-167,2,-161,-86v4,-58,29,-98,90,-98xm139,-113v3,-35,-41,-51,-62,-28v-6,7,-10,16,-11,28r73,0xm37,-259v20,-2,43,-3,62,0r40,44v-15,3,-34,4,-48,0","w":202},"\u00e9":{"d":"105,-190v62,-1,90,49,80,113r-119,0v0,48,63,46,100,32v6,10,10,24,10,39v-76,27,-167,2,-161,-86v4,-58,29,-98,90,-98xm139,-113v3,-35,-41,-51,-62,-28v-6,7,-10,16,-11,28r73,0xm109,-259v19,-2,43,-2,62,0r-54,44v-14,4,-33,4,-48,0","w":202},"\u00ea":{"d":"76,-259v19,-1,39,-3,57,1r35,44v-13,3,-36,2,-49,-1r-15,-23v-5,23,-33,31,-63,24xm105,-190v62,-1,90,49,80,113r-119,0v0,48,63,46,100,32v6,10,10,24,10,39v-76,27,-167,2,-161,-86v4,-58,29,-98,90,-98xm139,-113v3,-35,-41,-51,-62,-28v-6,7,-10,16,-11,28r73,0","w":202},"\u00eb":{"d":"105,-190v62,-1,90,49,80,113r-119,0v0,48,63,46,100,32v6,10,10,24,10,39v-76,27,-167,2,-161,-86v4,-58,29,-98,90,-98xm139,-113v3,-35,-41,-51,-62,-28v-6,7,-10,16,-11,28r73,0xm39,-213v-2,-14,-2,-28,0,-43v13,-3,32,-3,46,0v3,13,3,30,0,43v-15,0,-31,2,-46,0xm119,-213v-3,-14,-4,-29,0,-43v13,-3,32,-3,46,0v0,14,2,30,0,43v-15,0,-32,2,-46,0","w":202},"\u00ec":{"d":"35,-147r-24,0v-2,-13,-3,-26,0,-39r74,0r0,186v-18,2,-32,3,-50,0r0,-147xm-18,-259v20,-2,43,-3,62,0r40,44v-15,3,-34,4,-48,0","w":110},"\u00ed":{"d":"35,-147r-24,0v-2,-13,-3,-26,0,-39r74,0r0,186v-18,2,-32,3,-50,0r0,-147xm57,-259v19,-2,43,-2,62,0r-54,44v-14,4,-33,4,-48,0","w":110},"\u00ee":{"d":"27,-259v19,-1,39,-3,57,1r34,44v-13,3,-35,2,-49,-1r-14,-23v-6,23,-33,31,-64,24xm35,-147r-24,0v-2,-13,-3,-26,0,-39r74,0r0,186v-18,2,-32,3,-50,0r0,-147","w":110},"\u00ef":{"d":"35,-147r-24,0v-2,-13,-3,-26,0,-39r74,0r0,186v-18,2,-32,3,-50,0r0,-147xm-8,-213v-2,-14,-2,-28,0,-43v13,-3,32,-3,46,0v3,13,3,30,0,43v-15,0,-31,2,-46,0xm72,-213v-3,-14,-4,-29,0,-43v13,-3,32,-3,46,0v0,14,2,30,0,43v-15,0,-32,2,-46,0","w":110},"\u00f0":{"d":"15,-85v-3,-67,56,-109,115,-80v-6,-15,-14,-28,-27,-38r-32,22v-6,-6,-14,-14,-16,-23r20,-13v-8,-3,-17,-5,-27,-5v-6,-15,-3,-29,1,-43v30,0,49,7,69,19r29,-20v7,6,12,14,16,23r-21,14v60,48,83,237,-39,233v-57,-2,-86,-32,-88,-89xm67,-85v0,31,7,53,36,53v29,0,36,-23,36,-53v0,-30,-7,-53,-36,-53v-29,0,-36,22,-36,53","w":205},"\u00f1":{"d":"172,-233v-22,44,-88,-13,-115,17v-6,-7,-14,-17,-16,-28v8,-10,23,-20,40,-19v26,2,56,26,76,2v7,7,13,18,15,28xm112,-145v-57,1,-30,91,-36,145v-18,3,-33,2,-51,0r0,-186v22,-6,54,-4,48,26v10,-16,25,-30,53,-30v88,0,59,110,64,190v-18,3,-33,2,-51,0r0,-105v0,-23,-5,-40,-27,-40","w":211},"\u00f2":{"d":"194,-93v0,59,-29,97,-90,97v-60,0,-89,-37,-89,-97v0,-59,29,-96,89,-97v61,0,90,38,90,97xm67,-93v0,34,7,58,37,58v30,0,38,-25,38,-58v0,-33,-8,-57,-38,-57v-30,0,-37,24,-37,57xm31,-259v20,-2,43,-3,62,0r40,44v-15,3,-34,4,-48,0","w":208},"\u00f3":{"d":"194,-93v0,59,-29,97,-90,97v-60,0,-89,-37,-89,-97v0,-59,29,-96,89,-97v61,0,90,38,90,97xm67,-93v0,34,7,58,37,58v30,0,38,-25,38,-58v0,-33,-8,-57,-38,-57v-30,0,-37,24,-37,57xm107,-259v19,-2,43,-2,62,0r-54,44v-14,4,-33,4,-48,0","w":208},"\u00f4":{"d":"76,-259v19,-1,39,-3,57,1r35,44v-13,3,-36,2,-49,-1r-15,-23v-5,23,-33,31,-63,24xm194,-93v0,59,-29,97,-90,97v-60,0,-89,-37,-89,-97v0,-59,29,-96,89,-97v61,0,90,38,90,97xm67,-93v0,34,7,58,37,58v30,0,38,-25,38,-58v0,-33,-8,-57,-38,-57v-30,0,-37,24,-37,57","w":208},"\u00f5":{"d":"170,-233v-17,29,-62,15,-92,6v-13,1,-15,3,-24,11v-6,-7,-13,-18,-15,-28v8,-9,22,-20,39,-19v26,2,56,26,76,2v7,7,14,17,16,28xm194,-93v0,59,-29,97,-90,97v-60,0,-89,-37,-89,-97v0,-59,29,-96,89,-97v61,0,90,38,90,97xm67,-93v0,34,7,58,37,58v30,0,38,-25,38,-58v0,-33,-8,-57,-38,-57v-30,0,-37,24,-37,57","w":208},"\u00f6":{"d":"194,-93v0,59,-29,97,-90,97v-60,0,-89,-37,-89,-97v0,-59,29,-96,89,-97v61,0,90,38,90,97xm67,-93v0,34,7,58,37,58v30,0,38,-25,38,-58v0,-33,-8,-57,-38,-57v-30,0,-37,24,-37,57xm41,-213v-2,-14,-2,-28,0,-43v13,-3,32,-3,46,0v3,13,3,30,0,43v-15,0,-31,2,-46,0xm121,-213v-3,-14,-4,-29,0,-43v13,-3,32,-3,46,0v0,14,2,30,0,43v-15,0,-32,2,-46,0","w":208},"\u00f7":{"d":"108,-172v-16,0,-30,-14,-30,-29v0,-15,15,-30,30,-30v15,0,30,15,30,30v0,15,-14,29,-30,29xm108,-26v-16,0,-30,-14,-30,-29v0,-15,15,-30,30,-30v15,0,30,15,30,30v0,15,-14,29,-30,29xm184,-149v2,15,3,29,0,44r-152,0v-2,-15,-3,-29,0,-44r152,0"},"\u00f8":{"d":"15,-93v-6,-82,80,-120,143,-82v4,-10,22,-12,35,-9r-19,25v41,57,18,163,-70,163v-19,0,-36,-4,-49,-12v-3,10,-21,10,-34,8r17,-22v-15,-17,-21,-41,-23,-71xm130,-139v-28,-27,-72,-1,-63,46v0,11,0,22,3,30xm82,-42v41,26,71,-23,58,-74","w":208},"\u00f9":{"d":"115,4v-62,0,-93,-26,-93,-90r0,-100v18,-2,33,-3,51,0v6,64,-28,168,61,146r0,-146v18,-3,33,-2,51,0r0,179v-17,6,-45,11,-70,11xm38,-259v20,-2,43,-3,62,0r40,44v-15,3,-34,4,-48,0","w":205},"\u00fa":{"d":"115,4v-62,0,-93,-26,-93,-90r0,-100v18,-2,33,-3,51,0v6,64,-28,168,61,146r0,-146v18,-3,33,-2,51,0r0,179v-17,6,-45,11,-70,11xm111,-259v19,-2,43,-2,62,0r-54,44v-14,4,-33,4,-48,0","w":205},"\u00fb":{"d":"75,-259v19,-1,39,-3,57,1r35,44v-13,3,-36,2,-49,-1r-15,-23v-5,23,-33,31,-63,24xm115,4v-62,0,-93,-26,-93,-90r0,-100v18,-2,33,-3,51,0v6,64,-28,168,61,146r0,-146v18,-3,33,-2,51,0r0,179v-17,6,-45,11,-70,11","w":205},"\u00fc":{"d":"115,4v-62,0,-93,-26,-93,-90r0,-100v18,-2,33,-3,51,0v6,64,-28,168,61,146r0,-146v18,-3,33,-2,51,0r0,179v-17,6,-45,11,-70,11xm43,-213v-2,-14,-2,-28,0,-43v13,-3,32,-3,46,0v3,13,3,30,0,43v-15,0,-31,2,-46,0xm123,-213v-3,-14,-4,-29,0,-43v13,-3,32,-3,46,0v0,14,2,30,0,43v-15,0,-32,2,-46,0","w":205},"\u00fd":{"d":"34,48v37,14,53,-16,57,-48v-11,0,-23,2,-33,0r-54,-186v17,-3,37,-3,54,0r39,162r44,-162v17,-2,34,-4,51,0r-69,230v-7,40,-50,55,-95,41v-3,-14,2,-27,6,-37xm99,-259v19,-2,43,-2,62,0r-54,44v-14,4,-33,4,-48,0","w":195},"\u00fe":{"d":"108,-147v-45,0,-31,63,-33,107v41,12,72,-11,69,-55v-2,-28,-8,-52,-36,-52xm198,-96v0,72,-47,106,-123,99r0,82v-15,3,-35,3,-51,0r0,-348v15,-3,35,-3,51,0r0,98v10,-14,25,-26,49,-25v53,1,74,40,74,94","w":212},"\u00ff":{"d":"34,48v37,14,53,-16,57,-48v-11,0,-23,2,-33,0r-54,-186v17,-3,37,-3,54,0r39,162r44,-162v17,-2,34,-4,51,0r-69,230v-7,40,-50,55,-95,41v-3,-14,2,-27,6,-37xm36,-213v-2,-14,-2,-28,0,-43v13,-3,32,-3,46,0v3,13,3,30,0,43v-15,0,-31,2,-46,0xm116,-213v-3,-14,-4,-29,0,-43v13,-3,32,-3,46,0v0,14,2,30,0,43v-15,0,-32,2,-46,0","w":195},"\u2013":{"d":"180,-121v2,16,3,29,0,44r-180,0v-2,-15,-3,-29,0,-44r180,0","w":180},"\u2014":{"d":"360,-121v2,16,3,29,0,44r-360,0v-2,-15,-3,-29,0,-44r360,0","w":360},"\u2018":{"d":"18,-258v15,-4,35,-4,50,0r23,92v-16,2,-31,2,-47,0","w":109},"\u2019":{"d":"42,-258v15,-4,34,-4,49,0r-26,92v-16,2,-31,3,-47,0","w":109},"\u201c":{"d":"18,-258v15,-4,35,-4,50,0r23,92v-16,2,-31,2,-47,0xm94,-258v15,-4,35,-4,50,0r23,92v-16,2,-31,2,-47,0","w":185},"\u201d":{"d":"42,-258v15,-4,34,-4,49,0r-26,92v-16,2,-31,3,-47,0xm118,-258v15,-4,34,-4,49,0r-26,92v-16,2,-31,3,-47,0","w":185},"\u2026":{"d":"26,0v-4,-18,-4,-35,0,-53v17,-2,35,-3,52,0v4,18,4,35,0,53v-18,2,-34,3,-52,0xm123,0v-4,-18,-4,-35,0,-53v17,-2,35,-3,52,0v4,18,4,35,0,53v-18,2,-34,3,-52,0xm220,0v-4,-18,-4,-35,0,-53v17,-2,35,-3,52,0v4,18,4,35,0,53v-18,2,-34,3,-52,0","w":298},"\u2122":{"d":"40,-220r-34,0v-3,-11,-2,-24,0,-35r106,0v0,12,2,24,0,35r-35,0r0,109v-11,4,-25,4,-37,0r0,-109xm134,-254v14,-2,25,-2,38,0r28,68r26,-68v13,-2,25,-2,38,0r7,143v-11,3,-25,3,-37,0r-4,-73r-20,47v-10,0,-19,2,-28,0r-16,-46r-4,72v-11,3,-24,3,-36,0","w":288},"\u00bc":{"d":"225,-33r57,-117v13,0,25,5,34,11r-37,81r23,0r0,-26v12,-1,25,-2,37,0r0,26r16,0v1,9,2,22,0,31r-16,0r0,27v-10,1,-28,2,-37,0r0,-27r-73,0xm261,-255v17,-2,32,-3,50,0r-174,254v-17,3,-32,2,-50,0xm66,-144r0,-64r-27,10v-8,-9,-11,-17,-16,-30v28,-9,50,-24,83,-28r0,112v24,-5,41,4,30,34r-100,0v-4,-10,-3,-24,0,-34r30,0","w":378},"\u00bd":{"d":"255,-255v17,-2,32,-3,50,0r-174,254v-17,3,-32,2,-50,0xm64,-144r0,-64r-27,10v-8,-9,-11,-17,-16,-30v28,-9,50,-24,83,-28r0,112v24,-5,41,4,30,34r-100,0v-4,-10,-3,-24,0,-34r30,0xm244,-140v39,-18,109,-13,107,38v-2,32,-21,46,-38,67r45,0v2,10,3,25,0,34r-116,0r-3,-7v20,-25,63,-58,70,-90v-1,-23,-41,-18,-55,-9v-4,-9,-9,-21,-10,-33","w":378},"\u00be":{"d":"227,-36r57,-117v13,1,24,7,33,12r-37,81r23,0r0,-26v12,-1,26,-2,38,0r0,26r15,0v2,9,3,22,0,31r-15,0r0,26v-11,2,-28,3,-38,0r0,-26r-72,0xm262,-255v17,-2,32,-3,50,0r-174,254v-17,2,-33,3,-50,0xm108,-158v0,-17,-25,-19,-40,-14r-7,-7r27,-43r-44,0v-3,-9,-2,-21,0,-33r98,0r4,8r-33,48v21,4,36,18,36,41v0,52,-68,61,-115,45v0,-12,5,-24,10,-31v20,8,63,15,64,-14","w":378}}});
Cufon.registerFont({"w":216,"face":{"font-family":"Aller","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 4 0 0 9 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-41 -337 379 88.24","underline-thickness":"18","underline-position":"-18","slope":"-12","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":81},"!":{"d":"77,-259v13,-2,24,-1,38,0r-34,182v-12,1,-24,2,-35,0xm75,-40v-1,15,-3,26,-6,40v-13,0,-27,2,-39,0v0,-14,2,-27,7,-40v13,0,26,-2,38,0","w":99},"\"":{"d":"129,-258v9,-3,24,-3,34,0r-17,98v-11,2,-23,1,-34,0xm61,-258v9,-3,24,-3,34,0r-17,98v-11,2,-23,1,-34,0","w":140},"#":{"d":"269,-191r-5,28r-43,0r-15,59r40,0v0,9,-2,19,-5,29r-43,0r-16,65v-11,1,-21,0,-33,0r17,-65r-58,0r-17,65v-11,1,-22,2,-33,0r17,-65r-44,0v1,-11,3,-20,5,-29r46,0r15,-59r-43,0v2,-8,2,-20,5,-28r46,0r15,-57r32,-1r-15,58r58,0r15,-57r33,-1r-15,58r41,0xm173,-104r15,-59r-58,0r-15,59r58,0","w":257},"$":{"d":"99,-193v6,55,97,44,95,111v-1,52,-34,75,-78,84r-7,40v-7,2,-18,3,-25,0v1,-12,6,-28,5,-38v-23,0,-48,-5,-63,-12v2,-12,5,-21,10,-32v38,21,121,17,118,-35v-4,-59,-95,-44,-93,-112v1,-43,31,-68,75,-71r6,-33v8,0,18,-2,25,0r-5,31v19,1,35,6,49,11v-1,12,-5,22,-10,31v-29,-15,-107,-21,-102,25"},"%":{"d":"114,-233v-30,0,-38,34,-39,66v0,23,8,35,24,35v30,0,40,-34,40,-65v0,-24,-8,-36,-25,-36xm172,-199v-1,52,-25,91,-77,93v-37,1,-54,-25,-54,-60v0,-51,24,-93,77,-93v36,0,55,22,54,60xm296,-122v-31,2,-40,33,-40,65v0,23,8,35,24,35v31,0,39,-33,40,-65v0,-24,-7,-35,-24,-35xm354,-89v-1,53,-25,91,-77,93v-37,1,-55,-26,-55,-60v0,-51,24,-93,77,-93v37,0,56,22,55,60xm278,-255v13,0,26,-2,38,0r-199,255v-12,0,-27,2,-38,0","w":354},"&":{"d":"101,-196v1,45,65,26,107,30v3,-13,6,-27,5,-45v8,-4,24,-7,35,-7v0,18,0,36,-5,52r37,0r-5,30r-37,0v-10,79,-31,143,-120,140v-50,-2,-85,-20,-85,-70v0,-44,25,-70,58,-83v-14,-9,-27,-22,-27,-45v1,-61,70,-80,128,-62v-3,11,-4,19,-9,28v-31,-13,-84,-6,-82,32xm142,-136v-72,-12,-101,109,-19,109v65,0,72,-54,80,-109r-61,0","w":259},"'":{"d":"61,-258v9,-3,24,-3,34,0r-17,98v-11,2,-23,1,-34,0","w":71},"(":{"d":"157,-279v-57,72,-102,222,-60,339v-11,0,-25,2,-35,0v-42,-110,-2,-272,59,-339v12,0,25,-2,36,0","w":119},")":{"d":"91,-279v43,109,3,274,-59,339v-12,0,-25,2,-35,0v58,-70,101,-223,60,-339v11,0,24,-2,34,0","w":121},"*":{"d":"119,-259v8,-2,14,-1,22,0r-5,47v-9,0,-19,2,-28,0xm100,-207r-13,26r-41,-17v2,-7,6,-14,11,-21xm88,-173v7,4,14,11,20,16r-36,36v-6,-4,-12,-7,-16,-13xm146,-181v-3,-8,-4,-16,-3,-26r47,-12v2,7,3,13,3,21xm116,-157v8,-7,17,-12,26,-16r18,39r-20,13","w":171},"+":{"d":"207,-142v0,12,-2,21,-5,31r-60,0r-11,66v-11,0,-23,2,-33,0r11,-66r-59,0v0,-12,2,-21,5,-31r60,0r11,-66v11,0,23,-2,33,0r-11,66r59,0"},",":{"d":"38,-39v10,-3,26,-3,36,0r-35,79v-11,2,-24,3,-35,0","w":84},"-":{"d":"131,-120v0,11,-2,24,-5,33r-91,0v0,-11,3,-22,6,-33r90,0","w":125},".":{"d":"69,-40v0,16,-3,27,-7,40v-13,0,-28,2,-40,0v0,-15,3,-28,7,-40v13,0,28,-2,40,0","w":84},"\/":{"d":"137,-259v12,0,25,-2,36,0r-129,259v-12,0,-25,2,-36,0","w":133},"0":{"d":"222,-152v0,82,-33,156,-114,156v-51,0,-75,-34,-75,-83v0,-81,34,-153,114,-157v52,-2,75,34,75,84xm144,-204v-62,4,-76,79,-71,145v5,18,15,35,39,32v55,-6,73,-65,73,-126v0,-30,-10,-53,-41,-51"},"1":{"d":"44,0v-1,-10,3,-24,5,-31r55,0r27,-151r-51,23v-5,-9,-10,-18,-10,-29v36,-14,66,-35,106,-46r-36,203r53,0r-5,31r-144,0"},"2":{"d":"159,-175v0,-42,-67,-29,-89,-15v-5,-9,-8,-20,-8,-31v44,-23,142,-25,137,42v-6,76,-70,102,-108,148r95,0v0,10,-4,23,-6,31r-158,0v0,-2,-2,-3,-2,-4r104,-104v17,-19,35,-34,35,-67"},"3":{"d":"153,-67v0,-37,-41,-43,-75,-35r-3,-6r78,-92r-91,0v-1,-11,2,-24,5,-32r144,0r1,4r-82,98v38,2,60,24,61,61v3,86,-96,113,-172,83v3,-11,7,-21,12,-30v47,22,122,12,122,-51"},"4":{"d":"213,-60v0,11,-1,24,-5,32r-32,0r-9,49v-11,0,-25,2,-35,0r9,-49r-119,0r-1,-4r133,-207v12,2,22,7,30,13r-107,166r69,0r13,-71v11,0,25,-2,35,0r-12,71r31,0"},"5":{"d":"153,-70v0,-43,-55,-43,-87,-31r-3,-4r27,-127r118,0r-5,32r-86,0r-13,65v48,-9,88,12,88,60v0,86,-90,120,-169,90v2,-11,7,-21,12,-30v48,22,118,7,118,-55"},"6":{"d":"111,4v-105,2,-75,-152,-30,-201v29,-31,69,-61,124,-65v1,10,3,20,1,30v-61,7,-101,38,-117,91v29,-42,129,-34,122,38v-6,62,-36,105,-100,107xm76,-68v0,24,14,42,39,42v38,0,59,-32,59,-72v0,-26,-14,-40,-40,-40v-37,0,-58,30,-58,70"},"7":{"d":"59,-200v0,-10,3,-25,6,-32r164,0r2,3r-150,256v-14,-4,-23,-7,-32,-16r125,-211r-115,0"},"8":{"d":"33,-55v0,-47,33,-66,65,-83v-17,-10,-30,-24,-31,-50v-5,-78,151,-103,151,-17v0,37,-25,56,-52,68v20,12,41,27,40,60v-2,54,-41,81,-97,81v-44,0,-76,-16,-76,-59xm112,-26v45,0,73,-45,45,-78v-7,-9,-18,-13,-30,-18v-28,10,-54,26,-56,61v-1,23,17,35,41,35xm149,-230v-46,0,-62,59,-22,74v4,2,7,4,10,5v24,-9,44,-22,46,-50v1,-19,-16,-29,-34,-29"},"9":{"d":"141,-235v105,-4,77,151,35,200v-30,35,-69,62,-129,66v-2,-9,-3,-21,-1,-31v60,-9,104,-35,119,-90v-12,16,-33,27,-61,26v-40,-1,-61,-26,-61,-65v0,-63,36,-103,98,-106xm80,-133v-1,27,14,37,39,39v59,5,87,-110,20,-110v-40,0,-57,32,-59,71"},":":{"d":"92,-173v0,16,-3,27,-7,40v-13,0,-28,2,-40,0v0,-15,3,-28,7,-40v13,0,28,-2,40,0xm69,-40v0,16,-3,27,-7,40v-13,0,-28,2,-40,0v0,-15,3,-28,7,-40v13,0,28,-2,40,0","w":84},";":{"d":"31,-39v10,-3,26,-3,36,0r-35,79v-11,2,-24,3,-35,0xm96,-173v0,16,-3,27,-7,40v-13,0,-28,2,-40,0v0,-15,3,-28,7,-40v13,0,28,-2,40,0","w":84},"<":{"d":"220,-204v0,12,-3,28,-6,37r-123,44r107,46v0,11,-2,25,-6,33r-136,-61v0,-14,2,-27,6,-38"},"=":{"d":"200,-106v0,12,-2,22,-5,32r-150,0v0,-10,2,-21,5,-32r150,0xm57,-144v0,-13,2,-21,6,-31r149,0v0,12,-2,21,-5,31r-150,0"},">":{"d":"173,-126r-106,-44v0,-13,2,-24,6,-34r136,61v0,13,-3,28,-7,38r-157,61v0,-13,2,-26,5,-36"},"?":{"d":"59,-221v-4,-7,-7,-19,-6,-30v52,-20,133,-13,132,50v-2,49,-36,72,-73,87r-7,37v-11,0,-23,2,-34,0r10,-58v33,-9,63,-22,65,-61v1,-41,-58,-38,-87,-25xm102,-40v0,15,-3,28,-7,40v-13,0,-28,2,-40,0v0,-14,3,-29,7,-40v11,-3,29,-3,40,0","w":167},"@":{"d":"116,-75v0,-84,71,-132,157,-105r-26,129v52,20,82,-39,82,-90v0,-62,-39,-95,-103,-94v-98,2,-151,64,-157,157v-7,94,85,123,166,96r8,25v-18,9,-47,12,-76,12v-83,-2,-132,-47,-132,-132v0,-113,73,-186,194,-186v79,0,129,41,131,122v2,78,-62,146,-136,110v-40,24,-108,16,-108,-44xm152,-82v0,37,34,43,62,29r20,-104v-51,-9,-82,25,-82,75","w":355},"A":{"d":"130,-259v14,0,31,-2,44,0r36,259v-13,1,-26,2,-39,0r-7,-61r-87,0r-26,61v-13,0,-26,2,-38,0xm161,-93r-15,-124r-55,124r70,0","w":215},"B":{"d":"207,-84v-1,84,-89,96,-174,84r46,-259v55,-8,136,-10,134,52v-1,37,-22,59,-51,68v26,4,45,26,45,55xm168,-82v0,-40,-37,-40,-77,-39r-16,93v49,4,93,-4,93,-54xm175,-201v0,-33,-32,-36,-64,-32r-15,82v45,4,79,-8,79,-50","w":208},"C":{"d":"80,-99v0,67,63,84,115,61v5,9,7,18,8,30v-72,32,-162,1,-162,-88v0,-114,78,-193,196,-158v-2,13,-6,19,-11,30v-89,-28,-146,36,-146,125","w":207},"D":{"d":"251,-157v0,121,-87,179,-218,157r46,-259v92,-15,172,9,172,102xm211,-152v2,-62,-37,-87,-100,-77r-35,199v88,12,133,-40,135,-122","w":246},"E":{"d":"78,-259r138,0v0,11,-2,22,-6,33r-100,0r-13,73r80,0v0,11,-2,22,-6,33r-80,0r-15,88r103,0v-3,13,-1,21,-6,32r-140,0","w":188},"F":{"d":"78,-259r131,0v-3,13,-1,22,-6,33r-93,0r-14,76r79,0v0,11,-3,22,-6,32r-78,0r-21,118v-12,0,-26,2,-37,0","w":178},"G":{"d":"80,-99v0,58,45,83,99,66r18,-101v12,0,25,-2,36,0r-22,126v-17,8,-48,12,-72,12v-64,-1,-97,-36,-98,-100v-3,-114,80,-194,196,-157v-2,13,-6,19,-11,30v-87,-31,-146,35,-146,124","w":236},"H":{"d":"79,-259v12,0,26,-2,37,0r-19,107r100,0r18,-107v12,0,26,-2,37,0r-45,259v-12,0,-26,2,-37,0r20,-120r-99,0r-20,120v-13,0,-26,2,-38,0","w":239},"I":{"d":"79,-259v12,0,26,-2,37,0r-45,259v-13,0,-26,2,-38,0","w":103},"J":{"d":"19,-32v29,11,66,0,65,-32r29,-163r-43,0v0,-11,2,-24,5,-32r80,0r-33,187v-5,57,-44,90,-111,72v1,-13,2,-23,8,-32","w":141},"K":{"d":"79,-259v12,-1,25,-2,37,0r-46,259v-12,1,-27,2,-37,0xm104,-131r99,-128v14,0,29,-2,42,0r-100,127r62,132v-16,1,-25,2,-40,0","w":209},"L":{"d":"172,-32v0,13,-3,22,-6,32r-133,0r45,-259v12,0,26,-2,37,0r-39,227r96,0","w":176},"M":{"d":"86,-259v13,0,27,-2,39,0r36,160r91,-160v13,0,27,-2,39,0r-33,259v-12,0,-25,2,-36,0r27,-197r-83,143v-11,2,-18,1,-28,0r-33,-144r-42,198v-11,0,-24,2,-34,0","w":288},"N":{"d":"78,-259v11,0,24,-2,34,0r73,195r34,-195v11,0,23,-2,34,0r-45,259v-11,0,-24,2,-34,0r-73,-194r-33,194v-12,0,-24,2,-35,0","w":240},"O":{"d":"257,-167v0,93,-40,171,-131,171v-59,0,-86,-37,-86,-95v0,-92,39,-172,131,-172v59,0,86,38,86,96xm167,-231v-66,4,-89,71,-89,140v0,38,14,64,52,64v64,0,88,-71,88,-140v0,-36,-14,-66,-51,-64","w":252},"P":{"d":"219,-194v-2,74,-54,107,-132,100r-17,94v-12,1,-25,2,-37,0r46,-259v63,-10,142,-6,140,65xm180,-190v0,-40,-32,-45,-69,-40r-18,104v52,5,87,-13,87,-64","w":203},"Q":{"d":"236,23v0,12,-5,23,-9,31r-80,-15v0,-12,5,-21,10,-30xm257,-167v0,93,-40,171,-131,171v-59,0,-86,-37,-86,-95v0,-92,39,-172,131,-172v59,0,86,38,86,96xm167,-231v-66,4,-89,71,-89,140v0,38,14,64,52,64v64,0,88,-71,88,-140v0,-36,-14,-66,-51,-64","w":252},"R":{"d":"111,-121v33,-10,64,-29,66,-71v2,-36,-30,-44,-66,-39r-41,231v-12,0,-26,2,-37,0r46,-259v62,-10,137,-5,137,61v-1,48,-31,71,-62,88r47,110v-13,1,-28,2,-40,0","w":207},"S":{"d":"188,-84v0,82,-97,104,-171,77v2,-11,6,-21,12,-32v41,19,122,16,118,-39v-4,-58,-91,-44,-91,-111v0,-72,90,-88,152,-63v-2,11,-6,21,-11,30v-31,-15,-102,-20,-102,26v0,58,93,45,93,112","w":191},"T":{"d":"220,-259v-1,13,-3,21,-6,32r-64,0r-40,227v-12,0,-26,2,-37,0r40,-227r-64,0v0,-12,2,-22,5,-32r166,0","w":185,"k":{"\u00ef":-14,"\u00ec":-4}},"U":{"d":"193,-23v-39,46,-157,38,-148,-45v8,-67,22,-127,31,-191v12,0,26,-2,37,0r-26,147v-7,42,-12,85,37,83v49,-2,58,-39,66,-83r26,-147v12,0,26,-2,37,0v-18,80,-15,183,-60,236","w":238},"V":{"d":"55,-259v13,0,27,-2,39,0r25,217r95,-217v13,0,27,-2,39,0r-118,259v-15,0,-31,2,-45,0","w":219,"k":{"\u00ef":-14,"\u00ec":-7}},"W":{"d":"57,-259v13,0,26,-2,39,0r4,211r85,-211v13,0,27,-2,39,0r14,213r77,-213v12,0,26,-2,37,0r-102,259v-14,0,-29,2,-42,0r-14,-198r-83,198v-14,0,-29,2,-42,0","w":321,"k":{"\u00ef":-22,"\u00ec":-7}},"X":{"d":"94,-136r-34,-123v13,-1,26,-2,39,0r31,124r-79,135v-14,1,-29,2,-42,0xm133,-135r74,-124v13,-2,28,-1,40,0r-76,124r42,135v-14,1,-24,2,-38,0","w":218},"Y":{"d":"97,-94r-49,-165v13,0,26,-2,39,0r35,127r74,-127v13,0,27,-2,39,0r-101,166r-17,93v-12,1,-27,2,-37,0","w":197,"k":{"\u00ef":-22,"\u00ec":-11}},"Z":{"d":"181,-32v0,13,-1,22,-5,32r-163,0r-1,-3r151,-223r-105,0v0,-11,2,-23,6,-33r157,0r2,4r-151,223r109,0","w":190},"[":{"d":"101,31r-5,29r-76,0r59,-334r75,0v0,11,-2,22,-5,30r-40,0r-49,275r41,0","w":123},"\\":{"d":"49,-259v12,0,25,-2,36,0r57,259v-12,0,-24,2,-35,0","w":147},"]":{"d":"1,60v0,-11,2,-20,5,-29r40,0r49,-275r-40,0v0,-9,2,-20,5,-30r75,0r-58,334r-76,0","w":118},"^":{"d":"120,-258v10,-3,27,-3,37,0r33,126v-12,1,-22,0,-34,0r-24,-94r-55,94v-12,1,-22,0,-35,0","w":190},"_":{"d":"-3,32v0,-10,1,-19,4,-27r171,0v0,10,-3,18,-5,27r-170,0","w":174},"`":{"d":"90,-260v15,0,31,-2,46,0r33,46v-12,3,-25,2,-36,0","w":180},"a":{"d":"67,-62v-3,50,48,40,65,10v16,-28,25,-66,32,-105v-63,-11,-94,37,-97,95xm30,-54v-2,-96,74,-156,172,-127r-24,140v-2,15,-3,27,-1,41v-11,0,-23,2,-34,0v-1,-14,-1,-29,2,-42v-14,23,-32,45,-68,46v-33,0,-47,-24,-47,-58","w":199},"b":{"d":"168,-116v3,-43,-43,-54,-66,-25v-20,26,-24,74,-32,113v62,11,94,-30,98,-88xm206,-122v0,95,-80,146,-176,118r40,-260v12,0,25,-2,36,0v3,38,-9,72,-13,107v11,-18,30,-31,59,-32v36,-1,54,28,54,67","w":205},"c":{"d":"69,-73v0,47,46,56,83,41v4,7,6,17,6,28v-58,20,-126,4,-126,-65v0,-82,64,-140,149,-113v0,11,-5,22,-10,29v-57,-23,-102,20,-102,80","w":165},"d":{"d":"67,-62v-3,50,48,40,65,10v16,-28,25,-66,32,-105v-63,-11,-94,37,-97,95xm169,-188v6,-27,8,-48,8,-76v11,0,25,-2,35,0v2,94,-36,169,-35,264v-11,0,-23,2,-33,0v-1,-14,-2,-31,2,-42v-14,22,-32,46,-68,46v-34,0,-49,-23,-48,-58v2,-83,50,-140,139,-134","w":198},"e":{"d":"67,-73v-5,55,62,55,98,37v4,7,5,18,6,28v-55,24,-147,14,-140,-61v6,-66,37,-115,105,-120v58,-5,66,68,22,90v-25,12,-57,21,-91,26xm139,-120v18,-11,17,-44,-9,-41v-36,3,-52,30,-60,61v25,-5,52,-10,69,-20","w":179},"f":{"d":"-24,55v41,13,53,-19,60,-56r28,-155r-30,0v0,-12,2,-19,5,-29r29,0v5,-57,41,-95,105,-78v-2,13,-6,19,-10,29v-36,-15,-58,14,-60,49r45,0v0,12,-2,19,-5,29r-44,0r-28,157v-6,57,-40,102,-105,82v3,-12,5,-19,10,-28","w":120,"k":{"\u00ef":-29,"\u00ee":-22,"\u00ec":-25}},"g":{"d":"21,51v39,13,93,4,106,-28v7,-17,14,-43,18,-65v-13,24,-33,45,-68,46v-33,0,-47,-24,-47,-58v-2,-97,75,-156,173,-127v-16,73,-19,159,-46,221v-18,43,-90,59,-144,40v0,-10,3,-20,8,-29xm66,-62v-3,49,50,40,66,10v15,-28,25,-66,32,-105v-65,-11,-95,38,-98,95","w":198},"h":{"d":"137,-158v-65,10,-56,98,-72,158v-12,0,-25,2,-36,0r41,-264v11,0,25,-2,35,0v6,37,-10,72,-13,108v12,-17,35,-33,62,-33v86,0,26,126,23,189v-11,0,-25,2,-35,0r21,-131v1,-18,-10,-26,-26,-27","w":204},"i":{"d":"42,-156v0,-11,2,-20,5,-29r58,0r-33,185v-12,0,-24,2,-35,0r28,-156r-23,0xm112,-262v0,15,-3,27,-7,39v-13,0,-29,2,-41,0v0,-15,3,-27,7,-39v13,0,29,-2,41,0","w":102},"j":{"d":"-24,56v29,8,52,-2,57,-33r32,-179r-23,0v0,-12,2,-19,5,-29r58,0r-37,210v-7,53,-51,73,-99,58v0,-9,3,-20,7,-27xm112,-262v0,15,-3,27,-7,39v-13,0,-29,2,-41,0v0,-15,3,-27,7,-39v13,0,29,-2,41,0","w":102},"k":{"d":"94,-96v21,-28,50,-54,63,-89v13,0,26,-2,38,0v-12,37,-42,60,-64,89r44,96v-14,2,-24,1,-38,0xm30,0r39,-224v0,-13,3,-27,1,-40v12,0,25,-2,36,0v-3,92,-29,176,-41,264v-11,0,-25,2,-35,0","w":181},"l":{"d":"106,-1v-45,16,-89,-12,-66,-66r28,-157r2,-40v12,0,24,-2,35,0v0,81,-27,145,-34,221v-2,18,17,18,32,15v2,7,3,17,3,27","w":106},"m":{"d":"155,-111v15,-43,-27,-63,-52,-31v-26,31,-27,94,-38,142v-11,0,-25,2,-35,0r25,-144v3,-16,3,-27,1,-41v11,0,23,-2,34,0v0,11,2,22,0,32v13,-36,100,-57,103,1v16,-39,112,-60,107,10v-4,50,-16,95,-24,142v-12,0,-25,2,-35,0r22,-132v3,-34,-39,-29,-54,-10v-25,32,-27,94,-38,142v-12,0,-25,2,-36,0","w":303},"n":{"d":"164,-111v11,-32,-12,-60,-41,-41v-40,26,-44,95,-55,152v-12,0,-25,2,-36,0r28,-178v0,-2,-1,-4,-1,-7v11,0,23,-2,33,0v3,14,2,28,-1,41v13,-22,32,-45,67,-45v83,0,26,128,22,189v-11,0,-25,2,-35,0","w":207},"o":{"d":"202,-118v0,67,-33,121,-103,122v-45,1,-67,-26,-67,-71v0,-67,35,-122,103,-122v45,0,67,26,67,71xm68,-66v-1,26,11,42,35,42v46,0,61,-46,63,-94v0,-26,-11,-42,-35,-42v-46,0,-61,48,-63,94","w":200},"p":{"d":"168,-116v3,-42,-43,-54,-66,-25v-20,26,-24,74,-32,113v62,11,95,-30,98,-88xm206,-122v-3,82,-52,133,-142,125r-14,82v-12,0,-25,2,-36,0r41,-229v2,-15,3,-27,1,-41v11,0,23,-2,34,0v0,11,2,21,0,31v12,-18,31,-35,62,-35v37,0,55,28,54,67","w":205},"q":{"d":"31,-54v0,-95,72,-155,172,-128r-46,267v-12,0,-25,2,-36,0r22,-123v-14,21,-32,41,-65,42v-33,0,-47,-25,-47,-58xm67,-62v-3,49,51,42,65,10v19,-27,25,-67,33,-105v-63,-12,-95,37,-98,95","w":198},"r":{"d":"158,-184v-2,13,1,36,-18,31v-68,2,-59,95,-75,153v-12,0,-24,2,-36,0r25,-140v3,-19,4,-29,2,-45v11,0,23,-2,33,0v1,10,3,22,1,32v13,-19,35,-39,68,-31","w":131},"s":{"d":"25,-33v32,17,111,9,82,-39v-23,-17,-65,-18,-65,-60v0,-57,76,-68,123,-47v-2,9,-5,18,-10,27v-24,-17,-95,-11,-71,29v21,20,66,19,66,61v0,67,-82,77,-134,57v1,-10,3,-21,9,-28","w":156},"t":{"d":"122,-1v-46,16,-100,-8,-76,-67r16,-88r-30,0v0,-12,2,-19,5,-29r29,0v2,-15,6,-28,5,-45v8,-4,24,-7,34,-7v3,17,-1,35,-4,52r47,0v0,12,-2,19,-5,29r-46,0r-19,111v-2,22,26,21,42,16v4,7,1,18,2,28","w":126},"u":{"d":"82,4v-39,2,-50,-32,-43,-72r21,-117v12,0,24,-2,35,0r-21,132v-1,41,50,26,61,3v24,-31,29,-86,37,-135v12,0,25,-2,36,0r-28,171v7,20,-16,17,-32,14v0,-14,-2,-29,1,-41v-12,23,-33,43,-67,45","w":204},"v":{"d":"36,-185v13,0,26,-2,38,0r21,149v20,-50,52,-92,65,-149v15,2,48,-10,38,14v-27,60,-62,114,-91,171v-12,0,-27,2,-38,0","w":180},"w":{"d":"39,-185v12,-1,26,-2,38,0r14,144r58,-144v12,0,24,-2,35,0r17,144v16,-49,42,-89,53,-144v11,1,31,-5,38,2v-18,68,-55,121,-80,183v-12,0,-26,2,-37,0r-18,-133r-55,133v-13,0,-26,2,-38,0","w":275},"x":{"d":"11,0v8,-40,41,-67,60,-96r-26,-89v12,0,24,-2,35,0r25,89r-55,83v-2,5,-2,9,-2,13v-13,0,-25,2,-37,0xm108,-96v16,-29,43,-50,49,-89v12,-1,23,-2,35,0v-3,40,-33,59,-49,87r29,98v-12,0,-26,2,-37,0","w":176},"y":{"d":"8,85v0,-16,5,-34,24,-25v34,-4,38,-32,53,-60r-23,0r-24,-185v12,0,26,-2,37,0r19,167v20,-57,52,-103,65,-167v11,-2,25,-1,38,-1v-4,49,-32,80,-46,120v-32,51,-43,125,-98,152v-14,4,-31,2,-45,-1","w":180},"z":{"d":"155,-28v0,10,-2,21,-5,28r-138,0r-1,-5r116,-151r-80,0v0,-11,2,-20,5,-29r131,0r1,5r-116,152r87,0","w":161},"{":{"d":"112,59v-65,13,-69,-51,-54,-107v8,-29,-5,-47,-24,-59v17,-17,38,-24,43,-54v11,-62,18,-121,94,-114r-5,28v-77,-3,-25,115,-92,140v36,16,10,78,10,115v0,20,11,22,32,23v0,9,-1,20,-4,28","w":136},"|":{"d":"94,-279v11,-2,24,-2,35,0r-60,339v-9,3,-26,3,-35,0","w":119},"}":{"d":"4,59v1,-10,-1,-29,9,-29v71,-2,22,-115,87,-139v-34,-18,-11,-76,-10,-115v0,-21,-10,-23,-32,-24v2,-10,-2,-27,10,-28v74,-6,48,65,48,124v0,22,9,32,25,42v-16,18,-37,25,-43,55v-13,61,-14,119,-94,114","w":135},"~":{"d":"48,-124v-6,-6,-12,-13,-14,-23v12,-11,30,-21,51,-21v33,0,64,27,90,1v7,7,10,14,14,24v-11,11,-30,19,-50,19v-32,0,-67,-27,-91,0","w":172},"\u00a1":{"d":"52,-109v11,-2,23,-1,34,0r-30,182v-13,2,-25,1,-38,0xm58,-146v0,-16,2,-27,6,-40v13,-2,26,-2,39,0v0,14,-2,27,-7,40v-13,0,-26,2,-38,0","w":101},"\u00a2":{"d":"182,-4v-11,6,-30,7,-44,8r-6,38v-7,2,-19,4,-25,0r6,-39v-68,-4,-68,-104,-33,-148v16,-20,36,-39,67,-42r7,-42v8,-2,17,-2,25,0r-7,41v11,0,25,3,33,6v0,10,-5,23,-9,30v-57,-24,-103,20,-103,79v0,47,44,57,83,41v4,7,6,17,6,28"},"\u00a3":{"d":"200,-32v0,11,-3,24,-5,32r-157,0r-1,-4v30,-22,50,-54,49,-105r-33,0v0,-9,2,-19,5,-29r26,0v-18,-97,62,-146,148,-109v-3,11,-8,19,-13,29v-12,-6,-29,-10,-47,-10v-48,-2,-56,44,-50,90r67,0v0,9,-2,20,-5,29r-61,0v-1,32,-7,57,-25,77r102,0"},"\u00a4":{"d":"193,-169v18,21,17,66,0,87r28,27v-5,9,-13,17,-21,22r-28,-29v-25,18,-62,17,-87,0r-28,28v-10,-4,-16,-12,-21,-21r27,-28v-16,-21,-16,-66,1,-85r-28,-29v5,-11,12,-17,22,-22r28,29v21,-16,65,-16,85,0r29,-29v7,6,17,12,21,21xm83,-125v0,29,18,48,46,48v29,0,46,-20,46,-48v0,-28,-17,-48,-46,-48v-28,0,-46,19,-46,48"},"\u00a5":{"d":"209,-85v1,11,-2,18,-5,26r-69,0r-10,59v-12,1,-27,2,-37,0r11,-59r-66,0v1,-10,1,-18,5,-26r65,0r5,-28r-66,0v0,-10,3,-17,5,-25r52,0r-42,-119v13,0,27,-2,39,0r35,110r70,-110v13,0,28,-2,40,0r-79,119r56,0v-1,10,0,16,-4,25r-69,0r-5,28r69,0"},"\u00a6":{"d":"73,-279v12,-2,24,-2,35,0r-21,120v-11,0,-24,2,-34,0xm35,-59v12,-2,24,-2,35,0r-21,119v-9,3,-26,3,-35,0","w":84},"\u00a7":{"d":"52,-33v28,18,115,13,85,-31v-29,-21,-91,-13,-91,-59v0,-24,14,-38,29,-51v-37,-66,63,-108,131,-74v-2,11,-7,19,-13,27v-26,-18,-114,-10,-81,31v28,19,86,14,86,56v0,23,-15,38,-28,51v40,62,-46,108,-119,81v-21,-2,-3,-23,1,-31xm158,-132v-20,-10,-71,-44,-78,-2v7,27,48,22,69,37v7,-7,22,-24,9,-35","w":196},"\u00a8":{"d":"70,-217v0,-13,3,-25,6,-36v10,-3,27,-3,37,0v-1,13,-3,25,-6,36v-13,2,-24,0,-37,0xm143,-217v0,-13,3,-25,7,-36v9,-3,26,-3,36,0v-1,13,-3,25,-6,36v-13,2,-24,0,-37,0","w":180},"\u00a9":{"d":"139,-129v-5,43,38,59,71,43v4,7,6,15,7,24v-52,23,-109,-7,-109,-67v0,-59,51,-91,107,-71v-1,9,-3,18,-6,25v-38,-13,-74,3,-70,46xm66,-129v0,67,38,110,107,110v69,0,107,-43,107,-110v0,-68,-39,-111,-107,-111v-68,0,-107,43,-107,111xm307,-129v0,82,-52,134,-134,134v-81,0,-133,-50,-133,-134v0,-83,50,-134,133,-134v84,0,134,52,134,134","w":304},"\u00aa":{"d":"81,-158v-4,37,39,33,49,7v15,-20,20,-52,26,-81v-51,-7,-72,30,-75,74xm49,-151v0,-77,59,-124,140,-101v-7,46,-21,93,-20,143v-9,0,-21,2,-29,0v-3,-8,-1,-20,0,-30v-10,16,-25,35,-51,34v-27,0,-41,-18,-40,-46","w":180},"\u00ab":{"d":"31,-98r75,-78v14,0,29,-2,42,0r-76,81r46,79v-13,0,-26,2,-38,0xm116,-98r76,-78v13,0,29,-2,41,0r-76,81r46,79v-13,0,-26,2,-38,0","w":210},"\u00ac":{"d":"200,-139r0,100v-7,3,-25,3,-33,0r0,-67r-118,0v0,-11,-2,-23,0,-33r151,0"},"\u00ad":{"d":"131,-120v0,11,-2,24,-5,33r-91,0v0,-11,3,-22,6,-33r90,0","w":129},"\u00ae":{"d":"189,-141v20,-18,-1,-47,-33,-38r0,117v-8,2,-19,1,-27,0r0,-139v65,-23,134,37,71,81r38,57v-10,0,-22,2,-32,0r-41,-64v9,-3,17,-8,24,-14xm66,-129v0,68,38,110,107,110v69,0,107,-42,107,-110v0,-67,-38,-110,-107,-110v-69,0,-107,43,-107,110xm307,-129v0,82,-52,134,-134,134v-81,0,-133,-50,-133,-134v0,-83,50,-134,133,-134v84,0,134,52,134,134","w":304},"\u00af":{"d":"174,-250v0,12,-2,19,-5,28r-97,0v1,-10,0,-19,4,-28r98,0","w":180},"\u00b0":{"d":"94,-157v-32,0,-53,-22,-53,-52v0,-30,21,-52,53,-52v31,0,53,21,53,52v0,31,-22,52,-53,52xm67,-209v0,16,11,28,27,28v16,0,27,-12,27,-28v0,-16,-11,-28,-27,-28v-16,0,-27,12,-27,28","w":133},"\u00b1":{"d":"30,0v1,-13,3,-22,6,-33v49,2,107,-4,152,2v0,13,-2,21,-5,31r-153,0xm207,-142v0,12,-2,21,-5,31r-60,0r-11,66v-11,0,-23,2,-33,0r11,-66r-59,0v0,-12,2,-21,5,-31r60,0r11,-66v11,0,23,-2,33,0r-11,66r59,0"},"\u00b2":{"d":"63,-246v39,-21,112,-9,90,48v-11,27,-37,42,-56,62r53,0v0,8,-1,17,-4,26r-108,0r-1,-4r77,-74v13,-13,15,-42,-11,-42v-13,0,-25,4,-34,8v-3,-6,-6,-15,-6,-24","w":162},"\u00b3":{"d":"87,-130v35,5,49,-50,9,-49v-9,-1,-15,5,-18,-3r42,-48r-52,0v0,-9,2,-17,4,-25r90,0r1,6r-43,52v20,1,32,16,32,35v0,54,-65,66,-110,48v1,-8,5,-16,11,-23v11,4,20,5,34,7","w":162},"\u00b4":{"d":"126,-260v15,0,32,-2,46,0r-45,46v-12,2,-24,2,-36,0","w":180},"\u00b5":{"d":"152,-23v-13,27,-71,39,-90,9r-16,99v-11,0,-25,2,-35,0r46,-270v12,0,24,-2,35,0v-6,42,-16,79,-19,124v-4,52,65,39,77,7v14,-37,16,-88,26,-131v12,0,25,-2,36,0r-32,185v-9,0,-21,2,-29,0","w":208},"\u00b6":{"d":"111,-113v-74,7,-91,-98,-35,-130v23,-13,53,-18,89,-18r-45,263r-29,-2xm192,-261v10,1,21,0,28,3r-44,258v-6,1,-16,2,-29,2","w":207},"\u00b7":{"d":"85,-121v0,16,-3,27,-7,40v-13,0,-28,2,-40,0v0,-15,3,-28,7,-40v13,0,28,-2,40,0","w":86},"\u00b8":{"d":"100,51v0,-19,-31,-8,-41,-12r25,-47r21,0r-16,29v21,-4,38,7,38,27v0,40,-52,46,-81,32v2,-6,4,-15,8,-20v12,6,46,12,46,-9","w":180},"\u00b9":{"d":"50,-110v0,-10,2,-19,5,-26r32,0r15,-82r-34,14v-5,-6,-7,-15,-8,-24v27,-9,47,-24,79,-28r-21,120r33,0v0,9,-1,18,-4,26r-97,0","w":162},"\u00ba":{"d":"188,-201v-2,53,-27,95,-83,96v-36,1,-56,-22,-56,-57v0,-53,27,-94,83,-96v37,-1,58,21,56,57xm130,-233v-36,0,-48,37,-48,72v0,21,8,31,25,31v36,0,46,-36,49,-71v1,-20,-9,-32,-26,-32","w":180},"\u00bb":{"d":"93,-98r-47,-78v13,0,26,-2,38,0r49,82r-75,78v-13,0,-29,2,-41,0xm178,-98r-47,-78v13,0,26,-2,38,0r49,82r-75,78v-13,0,-29,2,-41,0","w":218},"\u00bc":{"d":"226,-33r77,-117v10,1,18,6,25,10r-58,87r35,0r6,-29v8,-1,18,-2,26,0r-5,29r17,0v0,9,-2,18,-4,25r-17,0r-5,28v-9,0,-18,2,-26,0r4,-28r-73,0xm294,-255v13,0,27,-2,39,0r-199,255v-13,0,-27,2,-39,0xm50,-110v0,-10,2,-19,5,-26r32,0r15,-82r-34,14v-5,-6,-7,-15,-8,-24v27,-9,47,-24,79,-28r-21,120r33,0v0,9,-1,18,-4,26r-97,0","w":378},"\u00bd":{"d":"290,-255v13,0,27,-2,39,0r-200,255v-12,0,-27,2,-38,0xm50,-110v0,-10,2,-19,5,-26r32,0r15,-82r-34,14v-5,-6,-7,-15,-8,-24v27,-9,47,-24,79,-28r-21,120r33,0v0,9,-1,18,-4,26r-97,0xm262,-136v39,-21,112,-9,90,48v-11,27,-37,42,-56,62r53,0v0,8,-1,17,-4,26r-108,0r-1,-4r77,-74v13,-13,15,-42,-11,-42v-13,0,-25,4,-34,8v-3,-6,-6,-15,-6,-24","w":378},"\u00be":{"d":"222,-33r76,-117v10,1,19,6,26,10r-59,87r36,0r5,-29v9,-1,19,-2,27,0r-5,29r16,0v0,9,-2,18,-4,25r-16,0r-5,28v-9,0,-18,2,-27,0r5,-28r-73,0xm288,-255v13,0,27,-2,39,0r-200,255v-12,0,-27,2,-38,0xm90,-130v35,5,49,-50,9,-49v-9,-1,-15,5,-18,-3r42,-48r-52,0v0,-9,2,-17,4,-25r90,0r1,6r-43,52v20,1,32,16,32,35v0,54,-65,66,-110,48v1,-8,5,-16,11,-23v11,4,20,5,34,7","w":378},"\u00bf":{"d":"158,65v-52,20,-135,13,-132,-51v2,-48,34,-73,73,-86r6,-37v11,-3,23,-2,34,0r-10,58v-34,7,-62,23,-65,60v-3,41,58,39,88,26v4,7,5,21,6,30xm156,-186v0,14,-3,29,-7,40v-13,2,-27,2,-40,0v0,-15,3,-28,7,-40v13,-2,27,-2,40,0","w":163},"\u00c0":{"d":"98,-321v15,0,33,-2,47,0r32,41v-12,2,-25,2,-36,0xm130,-259v14,0,31,-2,44,0r36,259v-13,1,-26,2,-39,0r-7,-61r-87,0r-26,61v-13,0,-26,2,-38,0xm161,-93r-15,-124r-55,124r70,0","w":215},"\u00c1":{"d":"169,-319v15,-2,32,-2,46,0v-26,16,-42,48,-90,39xm130,-259v14,0,31,-2,44,0r36,259v-13,1,-26,2,-39,0r-7,-61r-87,0r-26,61v-13,0,-26,2,-38,0xm161,-93r-15,-124r-55,124r70,0","w":215},"\u00c2":{"d":"142,-320v13,0,28,-2,40,0r30,40v-12,0,-26,3,-36,-1r-16,-21v-14,14,-30,30,-64,22xm130,-259v14,0,31,-2,44,0r36,259v-13,1,-26,2,-39,0r-7,-61r-87,0r-26,61v-13,0,-26,2,-38,0xm161,-93r-15,-124r-55,124r70,0","w":215},"\u00c3":{"d":"106,-286v-4,-3,-10,-13,-11,-19v19,-27,58,-13,88,-5v15,4,21,-18,30,-1v10,19,-16,28,-34,28v-27,0,-52,-25,-73,-3xm130,-259v14,0,31,-2,44,0r36,259v-13,1,-26,2,-39,0r-7,-61r-87,0r-26,61v-13,0,-26,2,-38,0xm161,-93r-15,-124r-55,124r70,0","w":215},"\u00c4":{"d":"96,-280v0,-12,2,-24,6,-36v10,-3,28,-3,38,0v0,12,-2,24,-6,36v-13,0,-26,2,-38,0xm173,-280v0,-12,2,-24,6,-36v10,-3,28,-3,38,0v0,12,-2,24,-6,36v-13,0,-26,2,-38,0xm130,-259v14,0,31,-2,44,0r36,259v-13,1,-26,2,-39,0r-7,-61r-87,0r-26,61v-13,0,-26,2,-38,0xm161,-93r-15,-124r-55,124r70,0","w":215},"\u00c5":{"d":"162,-337v47,0,47,68,13,79r35,258v-11,2,-27,1,-38,0r-7,-61r-87,0r-27,61v-13,0,-26,2,-38,0r118,-258v-33,-21,-12,-79,31,-79xm161,-93r-15,-124r-55,124r70,0xm160,-318v-26,-3,-33,47,-5,47v25,2,32,-47,5,-47","w":217},"\u00c6":{"d":"305,-32v0,12,-2,23,-5,32r-140,0r11,-60r-87,0r-43,60v-14,0,-28,2,-41,0r179,-259r163,0v0,10,-1,21,-5,33r-100,0r-13,73r80,0v-1,11,-3,23,-6,33r-80,0r-15,88r102,0xm176,-92r25,-137r-3,0r-93,137r71,0","w":315},"\u00c7":{"d":"145,51v1,-20,-31,-8,-42,-12r19,-36v-52,-5,-81,-42,-81,-99v-1,-114,78,-193,196,-158v-2,13,-6,19,-11,30v-89,-28,-146,36,-146,125v0,66,64,85,116,61v4,8,7,18,7,30v-14,7,-39,12,-59,12r-10,17v21,-4,39,7,39,27v0,41,-54,46,-83,32v1,-6,4,-15,8,-20v13,5,46,12,47,-9","w":207},"\u00c8":{"d":"98,-321v15,0,33,-2,47,0r33,41v-12,2,-26,2,-37,0xm78,-259r138,0v0,11,-2,22,-6,33r-100,0r-13,73r80,0v0,11,-2,22,-6,33r-80,0r-15,88r103,0v-3,13,-1,21,-6,32r-140,0","w":188},"\u00c9":{"d":"168,-319v15,-2,32,-2,47,0v-27,16,-43,48,-91,39xm78,-259r138,0v0,11,-2,22,-6,33r-100,0r-13,73r80,0v0,11,-2,22,-6,33r-80,0r-15,88r103,0v-3,13,-1,21,-6,32r-140,0","w":188},"\u00ca":{"d":"138,-320v13,0,28,-2,40,0r29,40v-12,0,-25,3,-35,-1r-16,-21v-14,14,-30,29,-64,22xm78,-259r138,0v0,11,-2,22,-6,33r-100,0r-13,73r80,0v0,11,-2,22,-6,33r-80,0r-15,88r103,0v-3,13,-1,21,-6,32r-140,0","w":188},"\u00cb":{"d":"94,-280v0,-12,2,-24,6,-36v10,-3,28,-3,38,0v0,12,-2,24,-6,36v-13,0,-26,2,-38,0xm171,-280v0,-12,2,-24,6,-36v10,-3,28,-3,38,0v0,12,-2,24,-6,36v-13,0,-26,2,-38,0xm78,-259r138,0v0,11,-2,22,-6,33r-100,0r-13,73r80,0v0,11,-2,22,-6,33r-80,0r-15,88r103,0v-3,13,-1,21,-6,32r-140,0","w":188},"\u00cc":{"d":"49,-321v15,0,33,-2,47,0r33,41v-12,2,-26,2,-37,0xm79,-259v12,0,26,-2,37,0r-45,259v-13,0,-26,2,-38,0","w":103},"\u00cd":{"d":"113,-319v15,-2,31,-2,46,0v-26,16,-42,48,-90,39xm79,-259v12,0,26,-2,37,0r-45,259v-13,0,-26,2,-38,0","w":103},"\u00ce":{"d":"89,-320v13,0,28,-2,40,0r30,40v-12,0,-26,3,-36,-1r-16,-21v-14,14,-30,30,-64,22xm79,-259v12,0,26,-2,37,0r-45,259v-13,0,-26,2,-38,0","w":103},"\u00cf":{"d":"44,-280v0,-12,2,-24,6,-36v10,-3,27,-3,37,0v0,12,-2,24,-6,36v-12,0,-26,2,-37,0xm121,-280v0,-12,2,-24,6,-36v10,-3,27,-3,38,0v0,12,-3,24,-7,36v-12,0,-26,2,-37,0xm79,-259v12,0,26,-2,37,0r-45,259v-13,0,-26,2,-38,0","w":103},"\u00d0":{"d":"255,-157v0,121,-86,179,-217,157r21,-122r-27,0v0,-11,2,-19,5,-27r27,0r20,-110v91,-14,171,7,171,102xm163,-149v0,10,-1,20,-4,27r-63,0r-16,92v88,12,134,-39,136,-122v2,-62,-37,-87,-100,-77r-15,80r62,0","w":250},"\u00d1":{"d":"122,-286v-3,-3,-9,-13,-10,-19v24,-41,82,12,110,-15v4,3,11,14,11,20v-10,7,-21,18,-38,17v-27,-2,-52,-24,-73,-3xm78,-259v11,0,24,-2,34,0r73,195r34,-195v11,0,23,-2,34,0r-45,259v-11,0,-24,2,-34,0r-73,-194r-33,194v-12,0,-24,2,-35,0","w":240},"\u00d2":{"d":"131,-321v15,0,33,-2,47,0r33,41v-12,2,-25,2,-36,0xm257,-167v0,93,-40,171,-131,171v-59,0,-86,-37,-86,-95v0,-92,39,-172,131,-172v59,0,86,38,86,96xm167,-231v-66,4,-89,71,-89,140v0,38,14,64,52,64v64,0,88,-71,88,-140v0,-36,-14,-66,-51,-64","w":252},"\u00d3":{"d":"186,-319v15,-2,32,-2,47,0v-27,16,-43,48,-91,39xm257,-167v0,93,-40,171,-131,171v-59,0,-86,-37,-86,-95v0,-92,39,-172,131,-172v59,0,86,38,86,96xm167,-231v-66,4,-89,71,-89,140v0,38,14,64,52,64v64,0,88,-71,88,-140v0,-36,-14,-66,-51,-64","w":252},"\u00d4":{"d":"161,-320v13,0,28,-2,40,0r30,40v-12,0,-26,3,-36,-1r-16,-21v-14,14,-30,30,-64,22xm257,-167v0,93,-40,171,-131,171v-59,0,-86,-37,-86,-95v0,-92,39,-172,131,-172v59,0,86,38,86,96xm167,-231v-66,4,-89,71,-89,140v0,38,14,64,52,64v64,0,88,-71,88,-140v0,-36,-14,-66,-51,-64","w":252},"\u00d5":{"d":"130,-286v-4,-3,-10,-12,-10,-19v24,-41,82,12,110,-15v4,3,11,14,11,20v-20,25,-59,14,-88,4v-12,2,-14,3,-23,10xm257,-167v0,93,-40,171,-131,171v-59,0,-86,-37,-86,-95v0,-92,39,-172,131,-172v59,0,86,38,86,96xm167,-231v-66,4,-89,71,-89,140v0,38,14,64,52,64v64,0,88,-71,88,-140v0,-36,-14,-66,-51,-64","w":252},"\u00d6":{"d":"118,-280v0,-12,3,-24,7,-36v10,-3,27,-3,37,0v0,12,-2,24,-6,36v-13,0,-26,2,-38,0xm195,-280v0,-12,3,-24,7,-36v10,-3,27,-3,37,0v0,12,-2,24,-6,36v-13,0,-26,2,-38,0xm257,-167v0,93,-40,171,-131,171v-59,0,-86,-37,-86,-95v0,-92,39,-172,131,-172v59,0,86,38,86,96xm167,-231v-66,4,-89,71,-89,140v0,38,14,64,52,64v64,0,88,-71,88,-140v0,-36,-14,-66,-51,-64","w":252},"\u00d7":{"d":"190,-84v-7,8,-17,16,-27,22r-34,-41r-52,44v-9,-6,-15,-17,-21,-26r51,-44r-35,-42v9,-8,17,-17,27,-23r35,43r51,-44v7,6,17,17,21,26r-51,43"},"\u00d8":{"d":"257,-167v0,93,-40,171,-131,171v-22,0,-40,-5,-54,-16v-8,12,-19,24,-42,17r26,-34v-11,-16,-16,-37,-16,-62v0,-92,39,-172,131,-172v22,0,40,5,54,17v6,-13,23,-23,42,-16r-26,33v11,16,16,37,16,62xm130,-27v71,0,95,-91,84,-168r-120,154v8,9,21,14,36,14xm167,-231v-72,0,-98,94,-84,168r120,-154v-9,-9,-21,-14,-36,-14","w":252},"\u00d9":{"d":"117,-321v15,0,33,-2,47,0r33,41v-12,2,-25,2,-36,0xm193,-23v-39,46,-157,38,-148,-45v8,-67,22,-127,31,-191v12,0,26,-2,37,0r-26,147v-7,42,-12,85,37,83v49,-2,58,-39,66,-83r26,-147v12,0,26,-2,37,0v-18,80,-15,183,-60,236","w":238},"\u00da":{"d":"183,-319v15,-2,31,-2,46,0v-26,16,-42,48,-90,39xm193,-23v-39,46,-157,38,-148,-45v8,-67,22,-127,31,-191v12,0,26,-2,37,0r-26,147v-7,42,-12,85,37,83v49,-2,58,-39,66,-83r26,-147v12,0,26,-2,37,0v-18,80,-15,183,-60,236","w":238},"\u00db":{"d":"156,-320v14,0,28,-2,41,0r29,40v-12,0,-26,3,-36,-1r-16,-21v-14,14,-29,30,-63,22xm193,-23v-39,46,-157,38,-148,-45v8,-67,22,-127,31,-191v12,0,26,-2,37,0r-26,147v-7,42,-12,85,37,83v49,-2,58,-39,66,-83r26,-147v12,0,26,-2,37,0v-18,80,-15,183,-60,236","w":238},"\u00dc":{"d":"113,-280v0,-12,2,-24,6,-36v10,-3,28,-3,38,0v0,12,-2,24,-6,36v-13,0,-26,2,-38,0xm190,-280v0,-12,2,-24,6,-36v10,-3,28,-3,38,0v0,12,-2,24,-6,36v-13,0,-26,2,-38,0xm193,-23v-39,46,-157,38,-148,-45v8,-67,22,-127,31,-191v12,0,26,-2,37,0r-26,147v-7,42,-12,85,37,83v49,-2,58,-39,66,-83r26,-147v12,0,26,-2,37,0v-18,80,-15,183,-60,236","w":238},"\u00dd":{"d":"163,-319v15,-2,32,-2,47,0r-52,39v-12,0,-27,2,-38,0xm97,-94r-49,-165v13,0,26,-2,39,0r35,127r74,-127v13,0,27,-2,39,0r-101,166r-17,93v-12,1,-27,2,-37,0","w":197},"\u00de":{"d":"212,-148v0,74,-54,104,-132,98r-9,50v-12,0,-26,2,-36,0r45,-259v12,0,26,-2,37,0r-8,40v59,-2,103,14,103,71xm174,-146v0,-37,-34,-46,-70,-40r-18,104v53,6,88,-13,88,-64","w":207},"\u00df":{"d":"-32,55v36,12,53,-12,59,-47r35,-196v7,-48,27,-80,83,-79v37,0,62,16,62,51v0,44,-41,52,-48,88v6,31,44,34,44,73v0,56,-66,70,-114,51v3,-9,7,-20,12,-28v23,11,69,11,67,-20v-2,-34,-45,-32,-44,-70v1,-41,46,-49,48,-90v2,-29,-46,-33,-61,-15v-8,9,-12,24,-15,41r-34,197v-6,54,-42,89,-103,73v2,-13,4,-20,9,-29","w":208},"\u00e0":{"d":"67,-62v-3,50,48,40,65,10v16,-28,25,-66,32,-105v-63,-11,-94,37,-97,95xm30,-54v-2,-96,74,-156,172,-127r-24,140v-2,15,-3,27,-1,41v-11,0,-23,2,-34,0v-1,-14,-1,-29,2,-42v-14,23,-32,45,-68,46v-33,0,-47,-24,-47,-58xm99,-260v15,0,31,-2,46,0r33,46v-12,3,-25,2,-36,0","w":199},"\u00e1":{"d":"67,-62v-3,50,48,40,65,10v16,-28,25,-66,32,-105v-63,-11,-94,37,-97,95xm30,-54v-2,-96,74,-156,172,-127r-24,140v-2,15,-3,27,-1,41v-11,0,-23,2,-34,0v-1,-14,-1,-29,2,-42v-14,23,-32,45,-68,46v-33,0,-47,-24,-47,-58xm160,-260v15,0,32,-2,46,0r-45,46v-12,2,-24,2,-36,0","w":199},"\u00e2":{"d":"133,-260v14,0,31,-3,42,1r27,45v-11,2,-23,2,-35,0r-15,-28v-13,17,-29,37,-63,28xm67,-62v-3,50,48,40,65,10v16,-28,25,-66,32,-105v-63,-11,-94,37,-97,95xm30,-54v-2,-96,74,-156,172,-127r-24,140v-2,15,-3,27,-1,41v-11,0,-23,2,-34,0v-1,-14,-1,-29,2,-42v-14,23,-32,45,-68,46v-33,0,-47,-24,-47,-58","w":199},"\u00e3":{"d":"171,-215v-26,-2,-53,-25,-73,-3v-4,-3,-11,-14,-11,-20v10,-8,21,-18,38,-18v26,0,53,25,74,3v4,4,9,13,10,20v-10,7,-21,18,-38,18xm67,-62v-3,50,48,40,65,10v16,-28,25,-66,32,-105v-63,-11,-94,37,-97,95xm30,-54v-2,-96,74,-156,172,-127r-24,140v-2,15,-3,27,-1,41v-11,0,-23,2,-34,0v-1,-14,-1,-29,2,-42v-14,23,-32,45,-68,46v-33,0,-47,-24,-47,-58","w":199},"\u00e4":{"d":"67,-62v-3,50,48,40,65,10v16,-28,25,-66,32,-105v-63,-11,-94,37,-97,95xm30,-54v-2,-96,74,-156,172,-127r-24,140v-2,15,-3,27,-1,41v-11,0,-23,2,-34,0v-1,-14,-1,-29,2,-42v-14,23,-32,45,-68,46v-33,0,-47,-24,-47,-58xm91,-217v0,-13,3,-25,6,-36v10,-3,27,-3,37,0v-1,13,-3,25,-6,36v-13,2,-24,0,-37,0xm164,-217v0,-13,3,-25,7,-36v9,-3,26,-3,36,0v-1,13,-3,25,-6,36v-13,2,-24,0,-37,0","w":199},"\u00e5":{"d":"154,-211v-21,0,-34,-13,-34,-34v1,-26,15,-42,41,-43v22,0,35,14,35,35v0,26,-16,41,-42,42xm159,-270v-20,-1,-26,41,-3,41v13,0,18,-10,18,-23v0,-12,-4,-18,-15,-18xm67,-62v-3,50,48,40,65,10v16,-28,25,-66,32,-105v-63,-11,-94,37,-97,95xm30,-54v-2,-96,74,-156,172,-127r-24,140v-2,15,-3,27,-1,41v-11,0,-23,2,-34,0v-1,-14,-1,-29,2,-42v-14,23,-32,45,-68,46v-33,0,-47,-24,-47,-58","w":199},"\u00e6":{"d":"66,-62v-4,49,52,42,66,10v19,-26,26,-66,31,-105v-64,-11,-94,38,-97,95xm257,-119v19,-11,16,-44,-10,-42v-37,2,-50,30,-59,61v25,-4,52,-9,69,-19xm288,-8v-45,20,-130,19,-134,-36v-16,26,-37,47,-74,48v-35,0,-50,-22,-50,-58v-1,-94,70,-154,167,-128r-4,21v22,-34,115,-44,112,15v-3,58,-66,63,-120,73v-6,54,62,56,97,37v4,7,5,18,6,28","w":297},"\u00e7":{"d":"113,51v0,-19,-32,-8,-42,-12r19,-36v-39,-6,-57,-30,-58,-72v0,-82,64,-140,149,-113v0,11,-5,22,-10,29v-57,-23,-102,20,-102,80v0,47,46,56,83,41v4,7,6,17,6,28v-12,6,-32,7,-47,8r-9,17v21,-4,38,7,38,27v0,41,-53,46,-83,32v2,-7,4,-15,9,-20v12,6,47,12,47,-9","w":165},"\u00e8":{"d":"67,-73v-5,55,62,55,98,37v4,7,5,18,6,28v-55,24,-147,14,-140,-61v6,-66,37,-115,105,-120v58,-5,66,68,22,90v-25,12,-57,21,-91,26xm139,-120v18,-11,17,-44,-9,-41v-36,3,-52,30,-60,61v25,-5,52,-10,69,-20xm86,-260v15,0,31,-2,46,0r33,46v-12,3,-25,2,-36,0","w":179},"\u00e9":{"d":"67,-73v-5,55,62,55,98,37v4,7,5,18,6,28v-55,24,-147,14,-140,-61v6,-66,37,-115,105,-120v58,-5,66,68,22,90v-25,12,-57,21,-91,26xm139,-120v18,-11,17,-44,-9,-41v-36,3,-52,30,-60,61v25,-5,52,-10,69,-20xm143,-260v15,0,32,-2,46,0r-45,46v-12,2,-24,2,-36,0","w":179},"\u00ea":{"d":"119,-260v14,0,31,-3,42,1r27,45v-11,2,-23,2,-35,0r-15,-28v-13,17,-29,37,-63,28xm67,-73v-5,55,62,55,98,37v4,7,5,18,6,28v-55,24,-147,14,-140,-61v6,-66,37,-115,105,-120v58,-5,66,68,22,90v-25,12,-57,21,-91,26xm139,-120v18,-11,17,-44,-9,-41v-36,3,-52,30,-60,61v25,-5,52,-10,69,-20","w":179},"\u00eb":{"d":"67,-73v-5,55,62,55,98,37v4,7,5,18,6,28v-55,24,-147,14,-140,-61v6,-66,37,-115,105,-120v58,-5,66,68,22,90v-25,12,-57,21,-91,26xm139,-120v18,-11,17,-44,-9,-41v-36,3,-52,30,-60,61v25,-5,52,-10,69,-20xm75,-217v0,-13,3,-25,6,-36v10,-3,27,-3,37,0v-1,13,-3,25,-6,36v-13,2,-24,0,-37,0xm148,-217v0,-13,3,-25,7,-36v9,-3,26,-3,36,0v-1,13,-3,25,-6,36v-13,2,-24,0,-37,0","w":179},"\u00ec":{"d":"42,-156v0,-11,2,-20,5,-29r58,0r-33,185v-12,0,-24,2,-35,0r28,-156r-23,0xm38,-260v15,0,31,-2,46,0r33,46v-12,3,-25,2,-36,0","w":102},"\u00ed":{"d":"42,-156v0,-11,2,-20,5,-29r58,0r-33,185v-12,0,-24,2,-35,0r28,-156r-23,0xm90,-260v15,0,32,-2,46,0r-45,46v-12,2,-24,2,-36,0","w":102},"\u00ee":{"d":"70,-260v14,0,31,-3,42,1r27,45v-11,2,-23,2,-35,0r-15,-28v-13,17,-29,37,-63,28xm42,-156v0,-11,2,-20,5,-29r58,0r-33,185v-12,0,-24,2,-35,0r28,-156r-23,0","w":102},"\u00ef":{"d":"42,-156v0,-11,2,-20,5,-29r58,0r-33,185v-12,0,-24,2,-35,0r28,-156r-23,0xm28,-217v0,-13,3,-25,6,-36v10,-3,27,-3,37,0v-1,13,-3,25,-6,36v-13,2,-24,0,-37,0xm101,-217v0,-13,3,-25,7,-36v9,-3,26,-3,36,0v-1,13,-3,25,-6,36v-13,2,-24,0,-37,0","w":102},"\u00f0":{"d":"122,-175v22,0,40,9,49,23v0,-26,-9,-45,-21,-59r-37,21v-5,-3,-9,-14,-10,-20r29,-16v-11,-6,-23,-10,-36,-11v1,-11,3,-19,8,-28v24,2,46,7,60,19r36,-19v5,5,9,11,11,19r-30,17v50,74,28,233,-81,233v-46,0,-69,-27,-69,-71v0,-60,30,-106,91,-108xm68,-68v-1,26,10,45,36,44v40,-2,60,-35,60,-75v0,-28,-11,-50,-40,-49v-40,2,-54,40,-56,80","w":203},"\u00f1":{"d":"90,-218v-4,-3,-9,-14,-10,-20v10,-8,20,-18,37,-18v26,0,53,25,74,3v4,4,9,13,10,20v-10,7,-21,19,-38,18v-26,-2,-53,-25,-73,-3xm164,-111v11,-32,-12,-60,-41,-41v-40,26,-44,95,-55,152v-12,0,-25,2,-36,0r28,-178v0,-2,-1,-4,-1,-7v11,0,23,-2,33,0v3,14,2,28,-1,41v13,-22,32,-45,67,-45v83,0,26,128,22,189v-11,0,-25,2,-35,0","w":207},"\u00f2":{"d":"202,-118v0,67,-33,121,-103,122v-45,1,-67,-26,-67,-71v0,-67,35,-122,103,-122v45,0,67,26,67,71xm68,-66v-1,26,11,42,35,42v46,0,61,-46,63,-94v0,-26,-11,-42,-35,-42v-46,0,-61,48,-63,94xm99,-260v15,0,31,-2,46,0r33,46v-12,3,-25,2,-36,0","w":200},"\u00f3":{"d":"202,-118v0,67,-33,121,-103,122v-45,1,-67,-26,-67,-71v0,-67,35,-122,103,-122v45,0,67,26,67,71xm68,-66v-1,26,11,42,35,42v46,0,61,-46,63,-94v0,-26,-11,-42,-35,-42v-46,0,-61,48,-63,94xm144,-260v15,0,32,-2,46,0r-45,46v-12,2,-24,2,-36,0","w":200},"\u00f4":{"d":"125,-260v14,0,31,-3,42,1r27,45v-11,2,-23,2,-35,0r-15,-28v-13,17,-29,37,-63,28xm202,-118v0,67,-33,121,-103,122v-45,1,-67,-26,-67,-71v0,-67,35,-122,103,-122v45,0,67,26,67,71xm68,-66v-1,26,11,42,35,42v46,0,61,-46,63,-94v0,-26,-11,-42,-35,-42v-46,0,-61,48,-63,94","w":200},"\u00f5":{"d":"161,-215v-26,-2,-53,-25,-73,-3v-4,-3,-11,-14,-11,-20v10,-8,21,-18,38,-18v26,0,53,25,74,3v4,4,9,13,10,20v-10,7,-21,18,-38,18xm202,-118v0,67,-33,121,-103,122v-45,1,-67,-26,-67,-71v0,-67,35,-122,103,-122v45,0,67,26,67,71xm68,-66v-1,26,11,42,35,42v46,0,61,-46,63,-94v0,-26,-11,-42,-35,-42v-46,0,-61,48,-63,94","w":200},"\u00f6":{"d":"202,-118v0,67,-33,121,-103,122v-45,1,-67,-26,-67,-71v0,-67,35,-122,103,-122v45,0,67,26,67,71xm68,-66v-1,26,11,42,35,42v46,0,61,-46,63,-94v0,-26,-11,-42,-35,-42v-46,0,-61,48,-63,94xm84,-217v0,-13,3,-25,6,-36v10,-3,27,-3,37,0v-1,13,-3,25,-6,36v-13,2,-24,0,-37,0xm157,-217v0,-13,3,-25,7,-36v9,-3,26,-3,36,0v-1,13,-3,25,-6,36v-13,2,-24,0,-37,0","w":200},"\u00f7":{"d":"146,-64v0,29,-51,37,-50,4v0,-16,12,-27,28,-27v14,0,22,9,22,23xm168,-195v0,29,-51,39,-50,5v0,-15,11,-27,27,-27v15,0,23,8,23,22xm55,-111v0,-11,2,-24,5,-32r153,0v-1,10,-3,23,-6,32r-152,0"},"\u00f8":{"d":"189,-165v46,89,-39,205,-130,159v-4,12,-19,17,-36,13r22,-26v-44,-82,31,-206,130,-160v4,-11,17,-16,35,-12xm80,-32v56,30,96,-43,83,-101xm153,-152v-55,-29,-95,41,-83,102","w":200},"\u00f9":{"d":"82,4v-39,2,-50,-32,-43,-72r21,-117v12,0,24,-2,35,0r-21,132v-1,41,50,26,61,3v24,-31,29,-86,37,-135v12,0,25,-2,36,0r-28,171v7,20,-16,17,-32,14v0,-14,-2,-29,1,-41v-12,23,-33,43,-67,45xm86,-260v15,0,31,-2,46,0r33,46v-12,3,-25,2,-36,0","w":204},"\u00fa":{"d":"82,4v-39,2,-50,-32,-43,-72r21,-117v12,0,24,-2,35,0r-21,132v-1,41,50,26,61,3v24,-31,29,-86,37,-135v12,0,25,-2,36,0r-28,171v7,20,-16,17,-32,14v0,-14,-2,-29,1,-41v-12,23,-33,43,-67,45xm152,-260v15,0,32,-2,46,0r-45,46v-12,2,-24,2,-36,0","w":204},"\u00fb":{"d":"125,-260v14,0,31,-3,42,1r26,45v-12,2,-23,2,-35,0r-14,-28v-14,17,-29,38,-64,28xm82,4v-39,2,-50,-32,-43,-72r21,-117v12,0,24,-2,35,0r-21,132v-1,41,50,26,61,3v24,-31,29,-86,37,-135v12,0,25,-2,36,0r-28,171v7,20,-16,17,-32,14v0,-14,-2,-29,1,-41v-12,23,-33,43,-67,45","w":204},"\u00fc":{"d":"82,4v-39,2,-50,-32,-43,-72r21,-117v12,0,24,-2,35,0r-21,132v-1,41,50,26,61,3v24,-31,29,-86,37,-135v12,0,25,-2,36,0r-28,171v7,20,-16,17,-32,14v0,-14,-2,-29,1,-41v-12,23,-33,43,-67,45xm84,-217v0,-13,3,-25,6,-36v10,-3,27,-3,37,0v-1,13,-3,25,-6,36v-13,2,-24,0,-37,0xm157,-217v0,-13,3,-25,7,-36v9,-3,26,-3,36,0v-1,13,-3,25,-6,36v-13,2,-24,0,-37,0","w":204},"\u00fd":{"d":"8,85v0,-16,5,-34,24,-25v34,-4,38,-32,53,-60r-23,0r-24,-185v12,0,26,-2,37,0r19,167v20,-57,52,-103,65,-167v11,-2,25,-1,38,-1v-4,49,-32,80,-46,120v-32,51,-43,125,-98,152v-14,4,-31,2,-45,-1xm131,-260v15,0,32,-2,46,0r-45,46v-12,2,-24,2,-36,0","w":180},"\u00fe":{"d":"166,-114v0,-44,-42,-57,-65,-27v-20,26,-25,72,-32,113v59,11,97,-29,97,-86xm205,-122v-3,82,-52,133,-142,125r-14,82v-12,0,-25,2,-36,0r55,-307v3,-15,3,-28,1,-42v11,0,25,-2,35,0v6,38,-8,76,-13,110v13,-18,29,-36,60,-35v36,0,54,29,54,67","w":203},"\u00ff":{"d":"8,85v0,-16,5,-34,24,-25v34,-4,38,-32,53,-60r-23,0r-24,-185v12,0,26,-2,37,0r19,167v20,-57,52,-103,65,-167v11,-2,25,-1,38,-1v-4,49,-32,80,-46,120v-32,51,-43,125,-98,152v-14,4,-31,2,-45,-1xm66,-217v0,-13,3,-25,6,-36v10,-3,27,-3,37,0v-1,13,-3,25,-6,36v-13,2,-24,0,-37,0xm139,-217v0,-13,3,-25,7,-36v9,-3,26,-3,36,0v-1,13,-3,25,-6,36v-13,2,-24,0,-37,0","w":180},"\u2013":{"d":"15,-85v-1,-14,2,-22,6,-32r180,0v0,11,-2,21,-6,32r-180,0","w":180},"\u2014":{"d":"379,-117v0,11,-1,21,-5,32r-360,0v0,-11,1,-21,5,-32r360,0","w":360},"\u2018":{"d":"51,-258v10,-3,23,-3,35,-1r22,81v-12,0,-24,2,-35,0","w":84},"\u2019":{"d":"81,-258v11,-2,25,-4,35,0r-35,80v-12,0,-24,2,-35,0","w":84},"\u201c":{"d":"119,-258v10,-3,23,-3,35,-1r22,81v-12,0,-24,2,-35,0xm51,-258v10,-3,23,-3,35,-1r22,81v-12,0,-24,2,-35,0","w":152},"\u201d":{"d":"149,-258v11,-2,25,-4,35,0r-35,80v-12,0,-24,2,-35,0xm81,-258v11,-2,25,-4,35,0r-35,80v-12,0,-24,2,-35,0","w":152},"\u2026":{"d":"158,-40v0,16,-3,27,-7,40v-13,0,-28,2,-40,0v0,-15,3,-28,7,-40v13,0,28,-2,40,0xm246,-40v0,16,-3,27,-7,40v-13,0,-28,2,-40,0v0,-15,3,-28,7,-40v13,0,28,-2,40,0xm69,-40v0,16,-3,27,-7,40v-13,0,-28,2,-40,0v0,-15,3,-28,7,-40v13,0,28,-2,40,0","w":261},"\u2122":{"d":"84,-228r-41,0v-2,-9,-1,-17,0,-27r109,0v0,9,2,19,0,27r-41,0r0,117v-7,3,-20,3,-27,0r0,-117xm175,-255v10,-1,19,0,30,0r36,79r35,-79v10,-1,19,0,30,0r7,144v-8,2,-20,4,-28,0r-5,-91r-31,64v-8,1,-11,2,-21,0r-28,-63r-5,90v-10,3,-17,2,-27,0","w":297},"\u00a0":{"w":32}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Manufacturer:
 * Dalton Maag Ltd.
 */
Cufon.registerFont({"w":216,"face":{"font-family":"Aller","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 4 0 0 9 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-42 -337 379 88.2239","underline-thickness":"18","underline-position":"-18","slope":"-12","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":75},"!":{"d":"70,-259v16,-3,38,-3,55,0r-35,176v-15,4,-33,2,-49,0xm25,0v-1,-21,4,-36,9,-53v16,-3,36,-3,52,0v1,21,-4,36,-9,53v-17,2,-35,4,-52,0","w":103},"\"":{"d":"61,-258v15,-4,33,-4,47,0r-18,100v-13,3,-32,3,-46,0xm129,-258v15,-4,33,-4,47,0r-18,100v-13,3,-32,3,-46,0","w":153},"#":{"d":"253,-112v-1,14,-3,25,-6,38r-41,0r-16,63v-13,3,-30,3,-44,0r16,-63r-44,0r-16,63v-12,3,-30,3,-44,0r16,-63r-41,0v0,-14,3,-25,7,-38r44,0r11,-44r-40,0v0,-13,2,-26,7,-38r43,0r15,-54v13,-3,30,-3,43,0r-14,54r44,0r14,-54v13,-3,30,-3,44,0r-14,54r38,0v0,14,-3,25,-7,38r-41,0r-11,44r37,0xm172,-112r11,-44r-44,0r-11,44r44,0","w":264},"$":{"d":"115,-190v13,47,91,42,89,105v-1,52,-34,76,-79,86r-7,41v-11,4,-20,3,-31,0v0,-12,9,-30,5,-38v-28,1,-45,-3,-65,-12v3,-17,4,-31,12,-46v31,17,105,24,108,-22v-11,-52,-89,-42,-87,-108v1,-46,35,-70,80,-75r6,-32v10,-2,21,-3,31,0r-6,31v19,2,35,6,50,12v-2,15,-6,30,-14,41v-24,-13,-90,-23,-92,17"},"&":{"d":"154,-224v-40,-6,-56,57,-11,56r59,0v2,-11,4,-21,3,-34v10,-7,31,-12,49,-11v4,14,0,32,-3,45r29,0v0,16,-3,26,-7,39r-28,0v-8,78,-36,136,-126,133v-50,-2,-87,-19,-87,-69v0,-43,26,-68,56,-81v-13,-8,-25,-23,-24,-44v1,-64,76,-86,135,-65v0,17,-3,26,-11,38v-12,-5,-21,-5,-34,-7xm150,-129v-62,-12,-90,88,-23,89v53,1,62,-42,68,-89r-45,0","w":266},"'":{"d":"61,-258v15,-4,33,-4,47,0r-18,100v-13,3,-32,3,-46,0","w":85},"(":{"d":"171,-279v-63,76,-98,219,-60,339v-13,3,-37,4,-50,0v-41,-117,-4,-274,58,-339v14,-4,38,-3,52,0","w":132},")":{"d":"-2,60v62,-77,97,-220,60,-339v14,-3,37,-4,50,0v41,117,3,273,-58,339v-13,4,-38,3,-52,0","w":138},"*":{"d":"120,-258v8,-3,19,-2,28,0r-4,48v-11,3,-26,3,-37,0xm45,-194v3,-8,7,-18,12,-24r46,12v-4,12,-9,22,-16,32xm167,-123v-8,7,-12,11,-23,15r-25,-39v10,-8,18,-14,30,-20xm195,-217v2,8,5,14,4,26r-47,20v-6,-9,-5,-21,-5,-35xm76,-108v-6,-4,-16,-12,-20,-18r31,-42v8,5,19,16,26,23","w":177},"+":{"d":"212,-149v1,17,-2,31,-8,44r-55,0r-11,63v-16,2,-31,3,-45,0r11,-63r-56,0v0,-14,2,-29,7,-44r56,0r12,-64v14,-3,31,-2,45,0r-12,64r56,0"},",":{"d":"45,-51v13,-4,37,-5,50,0r-41,91v-14,3,-34,3,-48,0","w":104},"-":{"d":"36,-84v0,-17,4,-30,8,-44r90,0v0,15,-3,32,-8,44r-90,0","w":131},".":{"d":"26,0v-1,-21,4,-36,9,-53v15,-3,36,-3,52,0v1,21,-4,36,-9,53v-17,2,-35,5,-52,0","w":103},"\/":{"d":"134,-258v18,-4,35,-4,51,0r-129,258v-18,2,-34,3,-51,0","w":144},":":{"d":"26,0v-1,-21,4,-36,9,-53v15,-3,36,-3,52,0v1,21,-4,36,-9,53v-17,2,-35,5,-52,0xm49,-133v-1,-21,4,-36,9,-53v15,-3,36,-3,52,0v1,21,-4,36,-9,53v-17,2,-35,5,-52,0","w":103,"k":{"Y":11,"T":15}},";":{"d":"38,-51v13,-4,37,-5,50,0r-41,91v-14,3,-34,3,-48,0xm53,-133v-1,-21,4,-36,9,-53v15,-3,36,-3,52,0v1,21,-4,36,-9,53v-17,2,-35,5,-52,0","w":104},"<":{"d":"217,-208v-1,17,-2,36,-8,50r-115,37r101,40v0,17,-3,33,-9,45r-138,-59v-1,-18,2,-36,9,-54"},"=":{"d":"44,-66v0,-17,1,-31,7,-44r152,0v1,15,-4,33,-8,44r-151,0xm57,-140v1,-17,3,-30,8,-44r151,0v1,18,-2,30,-8,44r-151,0"},">":{"d":"163,-125r-102,-38v0,-17,3,-31,9,-45r138,59v0,21,-2,36,-9,54r-159,59v-1,-19,2,-37,8,-50"},"?":{"d":"49,-252v53,-22,144,-16,140,50v-3,47,-32,74,-69,88r-6,33v-16,2,-32,2,-47,0r10,-62v29,-6,58,-19,58,-52v0,-33,-51,-27,-76,-17v-5,-11,-10,-25,-10,-40xm49,0v0,-20,5,-36,9,-53v16,-3,37,-3,53,0v1,21,-4,36,-9,53v-17,2,-36,5,-53,0","w":170},"@":{"d":"81,-80v-6,89,88,114,162,87r11,33v-20,10,-49,14,-80,14v-85,-2,-137,-45,-137,-132v0,-113,75,-184,197,-184v81,0,134,40,134,121v0,68,-38,123,-102,123v-18,0,-31,-5,-40,-14v-39,26,-109,15,-109,-46v0,-87,80,-132,164,-101r-23,122v46,12,67,-39,67,-84v1,-57,-38,-86,-96,-85v-92,2,-142,57,-148,146xm165,-86v-2,31,24,35,50,27r15,-90v-45,-8,-63,25,-65,63","w":366},"A":{"d":"130,-259v20,-2,40,-3,60,0r32,259v-20,2,-34,3,-54,0r-4,-52r-79,0r-23,52v-17,2,-36,3,-53,0xm160,-95r-10,-104r-46,104r56,0","w":227},"B":{"d":"213,-85v1,90,-98,95,-185,85r46,-259v59,-7,146,-12,145,55v-1,35,-22,57,-50,66v25,4,45,25,44,53xm160,-85v0,-31,-29,-29,-59,-29r-14,74v37,6,73,-4,73,-45xm167,-199v1,-24,-25,-27,-47,-24r-12,69v36,2,59,-10,59,-45","w":210},"C":{"d":"94,-100v0,57,55,69,100,51v5,11,10,29,10,44v-78,26,-167,-1,-167,-90v0,-114,84,-196,202,-158v-4,17,-8,27,-15,42v-78,-28,-130,32,-130,111","w":206},"D":{"d":"255,-158v0,125,-94,179,-227,158r46,-258v89,-17,181,6,181,100xm198,-153v1,-48,-29,-71,-78,-64r-31,175v73,7,108,-41,109,-111","w":246},"E":{"d":"180,-45v4,16,-5,30,-7,45r-145,0r46,-259r142,0v0,18,-2,31,-8,45r-90,0r-9,56r71,0v0,14,-3,29,-8,45r-71,0r-12,68r91,0","w":190},"F":{"d":"179,-153v-1,18,-3,30,-8,45r-71,0r-19,108v-20,2,-35,3,-53,0r46,-259r142,0v0,18,-2,31,-8,45r-90,0r-10,61r71,0","w":182},"G":{"d":"94,-100v0,47,32,65,76,56r16,-90v16,-3,36,-3,52,0r-22,128v-20,7,-47,10,-73,10v-67,0,-105,-35,-106,-99v-2,-114,84,-196,202,-158v-4,17,-8,27,-15,42v-78,-28,-130,32,-130,111","w":237},"H":{"d":"74,-258v18,-4,36,-3,53,0r-18,101r78,0r18,-101v17,-2,36,-4,53,0r-46,258v-18,2,-35,3,-53,0r20,-112r-78,0r-20,112v-20,2,-35,3,-53,0","w":240},"I":{"d":"74,-258v18,-4,36,-3,53,0r-46,258v-20,2,-35,3,-53,0","w":109},"J":{"d":"21,-44v30,9,58,-2,63,-32r24,-138r-41,0v1,-17,4,-32,8,-45r93,0r-33,190v-7,60,-58,83,-122,69v0,-16,1,-33,8,-44","w":150},"K":{"d":"109,-130r89,-129v18,-4,39,-1,58,0r-92,129r49,130v-17,3,-37,3,-55,0xm74,-259v16,-3,36,-3,53,0r-46,259v-18,2,-36,4,-53,0"},"L":{"d":"74,-259v17,-3,35,-3,52,0r-38,214r85,0v-1,17,-4,31,-8,45r-137,0","w":176},"M":{"d":"82,-258v19,-4,36,-4,54,0r30,144r84,-144v16,-4,35,-4,51,0r-34,258v-18,2,-33,3,-50,0r24,-170r-68,116v-14,2,-27,3,-41,0r-23,-117r-35,171v-17,2,-30,3,-46,0","w":291},"N":{"d":"74,-259v13,-4,30,-2,44,0r63,165r29,-165v16,-2,33,-4,47,0r-45,259v-16,2,-29,3,-44,0r-64,-164r-28,164v-14,4,-33,2,-48,0","w":239},"O":{"d":"259,-165v0,94,-40,166,-134,169v-60,2,-91,-37,-89,-96v3,-95,40,-171,134,-171v61,0,89,37,89,98xm165,-218v-59,0,-74,65,-74,128v0,33,13,50,39,50v60,0,74,-67,74,-128v0,-34,-13,-50,-39,-50","w":250},"P":{"d":"226,-188v-2,73,-52,111,-131,105r-14,83v-18,2,-35,2,-53,0r46,-260v73,-7,154,-5,152,72xm171,-185v0,-29,-21,-36,-51,-34r-17,92v41,6,68,-16,68,-58","w":209},"Q":{"d":"250,20v-2,16,-6,31,-11,43r-86,-15v1,-14,5,-32,11,-42xm259,-165v0,94,-40,166,-134,169v-60,2,-91,-37,-89,-96v3,-95,40,-171,134,-171v61,0,89,37,89,98xm165,-218v-59,0,-74,65,-74,128v0,33,13,50,39,50v60,0,74,-67,74,-128v0,-34,-13,-50,-39,-50","w":250},"R":{"d":"151,-143v34,-24,22,-91,-32,-76r-38,219v-18,2,-35,2,-53,0r46,-258v77,-18,176,5,146,94v-9,26,-27,45,-49,56r38,108v-19,2,-37,3,-55,0r-40,-120v13,-8,25,-14,37,-23","w":212},"S":{"d":"135,-157v98,34,56,161,-55,161v-23,0,-44,-4,-66,-12v2,-17,8,-30,14,-45v41,28,141,5,96,-49v-29,-21,-73,-35,-75,-79v-5,-81,94,-97,161,-70v-3,15,-7,29,-15,41v-24,-13,-89,-23,-91,17v0,21,17,26,31,36","w":191},"T":{"d":"231,-259v-1,17,-3,31,-8,45r-61,0r-37,214v-20,2,-35,3,-53,0r37,-214r-61,0v1,-17,3,-31,8,-45r175,0","w":197,"k":{"\u00ef":-14,"\u00ec":-4}},"U":{"d":"201,-26v-40,50,-169,43,-159,-46v7,-65,21,-126,30,-187v16,-3,36,-3,53,0r-28,161v-3,31,-2,58,30,57v45,-2,49,-43,56,-84r23,-134v16,-3,36,-3,53,0v-18,79,-15,179,-58,233","w":240},"V":{"d":"48,-259v19,-2,36,-3,55,0r17,204r89,-204v17,-3,37,-2,55,0r-123,259v-21,2,-41,4,-61,0","w":222,"k":{"\u00ef":-14,"\u00ec":-7}},"W":{"d":"51,-259v17,-2,39,-4,55,0r1,188r74,-188v15,-3,34,-3,49,0r9,193r68,-193v15,-4,36,-1,52,0r-105,259v-17,4,-37,2,-56,0r-10,-167r-70,167v-19,1,-35,3,-54,0","w":320,"k":{"\u00ef":-22,"\u00ec":-7}},"X":{"d":"136,-134r62,-125v19,-2,39,-4,57,0r-66,123r35,136v-18,3,-38,3,-57,0xm81,-134r-23,-125v16,-4,37,-2,54,0r22,125r-66,134v-18,3,-40,3,-59,0","w":226},"Y":{"d":"90,-93r-48,-166v19,-2,38,-4,56,0r28,115r66,-115v19,-2,37,-3,56,0r-105,166r-17,93v-16,3,-36,3,-53,0","w":202,"k":{"\u00ef":-22,"\u00ec":-11}},"Z":{"d":"54,-214v1,-16,2,-32,8,-45r167,0r2,4r-137,210r91,0v-1,17,-4,32,-8,45r-167,0r-2,-4r139,-210r-93,0","w":192},"[":{"d":"75,-279r84,0v1,13,-1,27,-7,41r-34,0r-46,257r35,0v0,13,-3,27,-8,41r-84,0","w":125},"\\":{"d":"45,-259v18,-3,33,-2,51,0r83,259v-16,3,-36,3,-52,0","w":176},"]":{"d":"44,19r46,-257r-35,0v0,-13,3,-27,8,-41r84,0r-60,339r-84,0v-1,-13,1,-27,7,-41r34,0","w":123},"^":{"d":"129,-209r-43,79v-17,2,-32,3,-48,-1r76,-127v16,-3,33,-4,49,0r31,127v-15,2,-32,5,-46,0","w":192},"_":{"d":"-3,36v1,-13,3,-24,6,-35r170,0v0,14,-2,24,-6,35r-170,0","w":177},"`":{"d":"80,-259v20,-2,43,-3,62,0r32,44v-15,3,-34,4,-48,0","w":180},"a":{"d":"155,-148v-54,-6,-77,38,-77,85v0,40,35,28,50,5v13,-20,22,-57,27,-90xm26,-51v-2,-102,78,-162,184,-131v-8,60,-25,116,-25,181v-16,2,-30,3,-46,0v-1,-12,-3,-22,-1,-34v-13,20,-34,39,-65,39v-32,0,-47,-23,-47,-55","w":204},"b":{"d":"161,-116v2,-33,-33,-39,-51,-17v-14,17,-19,63,-25,93v50,9,74,-29,76,-76xm216,-123v0,101,-89,149,-188,117r33,-187v5,-32,6,-46,6,-70v15,-4,34,-2,50,0v7,32,-7,71,-11,102v12,-17,28,-30,58,-29v37,0,52,27,52,67","w":211},"c":{"d":"80,-75v0,40,42,45,71,31v6,10,9,22,9,39v-58,22,-132,5,-132,-66v0,-83,67,-140,153,-112v0,15,-5,30,-12,40v-49,-21,-89,15,-89,68","w":165},"d":{"d":"155,-148v-54,-6,-77,38,-77,85v0,40,35,28,50,5v13,-20,22,-57,27,-90xm162,-190v5,-26,9,-47,7,-73v15,-4,34,-2,51,0v1,91,-35,169,-34,262v-16,2,-29,3,-45,0v-3,-8,-2,-25,-1,-35v-13,21,-34,39,-67,40v-32,1,-47,-23,-47,-55v0,-84,45,-141,136,-139","w":206},"e":{"d":"78,-71v-1,44,60,39,87,23v8,9,9,24,10,40v-59,25,-153,15,-147,-64v5,-68,39,-111,107,-118v61,-6,72,68,29,94v-22,14,-55,19,-86,25xm134,-120v13,-10,11,-34,-8,-33v-29,1,-40,25,-46,49v20,-3,42,-7,54,-16","w":183},"f":{"d":"-25,44v38,11,51,-16,57,-50r25,-141r-30,0v1,-15,2,-26,7,-39r30,0v8,-60,50,-93,118,-77v-4,16,-7,27,-14,40v-31,-10,-53,7,-54,37r39,0v0,16,-1,26,-6,39r-40,0v-27,95,-1,261,-144,230v1,-14,5,-27,12,-39","w":129,"k":{"\u00ef":-29,"\u00ee":-22,"\u00ec":-25}},"g":{"d":"78,-64v-2,37,35,31,51,6v13,-20,21,-58,27,-90v-54,-7,-76,37,-78,84xm22,41v65,18,115,-13,117,-76v-13,19,-34,40,-65,39v-32,0,-48,-22,-48,-55v-2,-103,81,-162,186,-131v-17,74,-17,165,-49,225v-22,42,-96,54,-151,38v1,-16,3,-29,10,-40","w":205},"h":{"d":"154,-114v13,-31,-23,-44,-40,-20v-22,30,-26,90,-37,134v-17,2,-33,3,-50,0r34,-193v5,-32,6,-46,6,-70v15,-4,34,-2,50,0v7,32,-7,71,-12,102v21,-39,116,-44,103,30r-23,131v-18,2,-34,3,-51,0","w":210},"i":{"d":"38,-147v0,-16,3,-26,7,-39r73,0r-33,186v-18,2,-31,3,-50,0r26,-147r-23,0xm71,-217v1,-18,2,-34,8,-48v17,-2,36,-5,53,0v0,18,-3,34,-9,48v-17,0,-36,2,-52,0","w":112},"j":{"d":"38,-147v0,-16,3,-27,7,-39r73,0r-37,209v-6,53,-56,74,-113,61v-1,-16,2,-27,8,-38v29,9,51,-5,56,-32r29,-161r-23,0xm80,-264v16,-5,36,-5,51,0v1,18,-2,31,-8,45v-13,4,-37,5,-51,0v-1,-18,2,-32,8,-45","w":112},"k":{"d":"67,-263v15,-4,34,-2,50,0v4,16,2,32,-2,52r-37,211v-17,2,-34,3,-51,0v12,-85,37,-173,40,-263xm102,-98v19,-28,49,-51,56,-88v16,-3,38,-3,55,0v-9,39,-39,60,-59,89r35,97v-18,2,-35,2,-53,0","w":194},"l":{"d":"119,-3v-46,18,-94,-5,-83,-67r29,-157v2,-15,2,-23,1,-36v15,-4,34,-2,51,0v1,73,-25,136,-32,207v-2,18,16,18,30,15v3,11,6,24,4,38","w":116},"m":{"d":"100,-153v12,-36,101,-60,104,-1v15,-38,110,-59,105,10v-4,50,-17,96,-24,144v-18,2,-34,3,-51,0r22,-130v2,-24,-29,-19,-39,-5v-23,31,-25,90,-35,135v-18,2,-34,3,-51,0r21,-130v2,-24,-30,-19,-39,-4v-20,32,-26,90,-36,134v-18,2,-34,3,-51,0r26,-146v0,-13,3,-28,1,-40v15,-2,32,-4,46,0v4,9,3,22,1,33","w":310},"n":{"d":"154,-114v13,-31,-23,-44,-40,-20v-22,30,-26,90,-37,134v-18,2,-34,3,-51,0r26,-146v0,-13,3,-28,1,-40v15,-2,32,-4,46,0v4,9,3,22,1,33v15,-40,115,-60,109,10v-4,50,-16,95,-24,143v-18,2,-34,3,-51,0","w":210},"o":{"d":"205,-117v0,69,-34,119,-105,121v-48,1,-72,-26,-72,-72v0,-68,34,-120,104,-122v49,-1,73,26,73,73xm127,-150v-38,0,-48,46,-48,83v0,21,9,32,26,32v38,0,49,-43,49,-82v0,-22,-9,-33,-27,-33","w":200},"p":{"d":"161,-116v2,-33,-33,-39,-51,-17v-14,17,-19,63,-25,93v50,9,74,-29,76,-76xm216,-123v-1,82,-51,133,-139,126r-14,82v-16,3,-35,3,-51,0r39,-231r2,-40v16,-2,30,-3,46,0v3,8,3,22,1,32v11,-19,34,-37,64,-36v37,0,53,27,52,67","w":211},"q":{"d":"27,-51v0,-102,78,-161,184,-131r-47,267v-15,3,-34,3,-50,0r19,-111v-21,41,-106,43,-106,-25xm80,-64v-2,38,34,30,49,6v13,-20,21,-58,27,-90v-53,-6,-74,36,-76,84","w":204},"r":{"d":"167,-186v1,18,-3,34,-9,45v-75,-13,-64,83,-81,141v-18,2,-34,3,-51,0r26,-146v0,-13,3,-28,1,-40v15,-2,32,-4,46,0v4,9,3,22,1,33v11,-20,35,-41,67,-33","w":141},"s":{"d":"26,-44v24,16,96,13,74,-25v-22,-16,-58,-18,-58,-58v0,-62,79,-75,130,-53v0,15,-5,26,-12,37v-16,-9,-63,-19,-67,8v10,30,64,23,64,69v0,67,-84,82,-142,61v1,-14,5,-27,11,-39","w":160},"t":{"d":"136,-3v-51,15,-106,2,-94,-67r14,-77r-28,0v1,-15,2,-26,7,-39r28,0r5,-42v11,-7,32,-11,49,-11v5,16,0,38,-4,53r45,0v0,16,-3,26,-7,39r-44,0r-15,88v-3,22,23,23,40,18v4,9,7,25,4,38","w":137},"u":{"d":"143,-33v-18,44,-121,57,-108,-22r23,-131v16,-4,34,-2,51,0r-22,128v-2,26,33,22,43,6v21,-31,27,-89,36,-134v18,-2,34,-3,51,0r-25,146r-2,40v-16,2,-30,3,-46,0v0,-11,-3,-22,-1,-33","w":210},"v":{"d":"33,-186v18,-3,37,-2,55,0r14,136v17,-45,48,-80,52,-136v15,-2,47,-5,58,2v-17,70,-64,123,-92,184v-18,0,-39,4,-55,0","w":191},"w":{"d":"35,-186v16,-2,38,-4,54,0r5,129r54,-129v15,-3,35,-2,51,0r10,129v15,-43,42,-75,45,-129v15,-2,42,-4,55,1v-14,73,-58,123,-84,185v-16,4,-39,2,-55,0r-11,-118r-50,118v-18,0,-39,4,-55,0","w":290},"x":{"d":"62,-96r-21,-90v16,-2,34,-4,50,0r19,90v-16,33,-39,58,-50,96v-17,3,-34,3,-52,0v8,-40,37,-64,54,-96xm113,-96v14,-29,39,-51,43,-90v16,-3,33,-3,49,0v-1,39,-29,61,-44,88r23,98v-19,2,-35,3,-52,0","w":192},"y":{"d":"20,46v39,11,56,-17,69,-46v-11,0,-25,2,-35,0r-17,-186v17,-2,36,-3,53,0r9,163v18,-54,56,-98,57,-163v23,-2,65,-12,53,21v-27,77,-65,157,-105,222v-16,27,-56,38,-94,27v1,-15,4,-27,10,-38","w":195},"z":{"d":"165,-39v1,16,-5,26,-7,39r-150,0r-2,-4r107,-143r-70,0v0,-15,3,-27,7,-39r141,0r1,4r-107,143r80,0","w":168},"{":{"d":"118,59v-84,12,-75,-60,-62,-128v-1,-20,-8,-32,-23,-40v8,-22,33,-21,38,-46v13,-63,20,-144,108,-127v0,13,-5,28,-8,39v-71,-4,-23,108,-85,132v34,17,11,75,9,111v-1,18,10,20,29,20v0,15,-2,27,-6,39","w":138},"|":{"d":"85,-279v16,-4,35,-4,49,0r-59,339v-18,3,-33,4,-50,0","w":121},"}":{"d":"132,-234v-1,44,-25,97,13,117v-6,22,-32,20,-37,46v-13,63,-20,144,-108,127v0,-13,5,-28,8,-39v70,3,22,-109,85,-132v-34,-17,-11,-75,-9,-111v1,-18,-10,-20,-29,-20v0,-15,2,-27,6,-39v45,-3,72,9,71,51","w":135},"~":{"d":"91,-174v31,0,63,29,87,3v9,11,15,16,20,32v-13,11,-31,21,-55,20v-33,-1,-59,-28,-87,-2v-9,-11,-16,-17,-20,-31v14,-10,32,-22,55,-22","w":183},"\u00a1":{"d":"49,-103v18,-2,31,-3,48,0r-28,176v-18,2,-38,4,-56,0xm52,-133v0,-20,5,-35,9,-52v17,-2,36,-5,53,0v0,20,-5,35,-9,52v-17,2,-36,5,-53,0","w":107},"\u00a2":{"d":"107,-75v0,40,41,45,70,31v7,9,10,21,9,39v-12,5,-26,8,-42,9r-6,38v-11,3,-20,4,-31,0r6,-39v-70,-3,-70,-105,-35,-150v15,-20,38,-39,69,-42r7,-40v10,-2,21,-3,31,0r-6,40v10,1,19,3,28,6v0,15,-5,30,-12,40v-48,-21,-88,15,-88,68"},"\u00a3":{"d":"130,-104v0,23,-10,43,-20,59r93,0v-1,17,-4,31,-8,45r-166,0v0,-13,18,-16,23,-28v15,-19,26,-42,25,-76r-33,0v0,-12,1,-26,6,-39r27,0v-17,-97,73,-139,158,-103v-3,15,-10,28,-18,41v-42,-26,-106,-6,-88,62r57,0v0,13,-3,29,-7,39r-49,0"},"\u00a5":{"d":"29,-56v0,-10,2,-24,5,-31r60,0r4,-25r-59,0v0,-11,1,-22,5,-31r42,0r-36,-112v18,-2,37,-3,54,0r27,99r62,-99v19,-2,37,-3,55,0r-73,112r47,0v1,10,-2,24,-6,31r-66,0r-4,25r66,0v0,10,-1,21,-5,31r-66,0r-10,56v-16,3,-36,3,-53,0r11,-56r-60,0"},"\u00a6":{"d":"85,-279v17,-3,32,-4,49,0r-21,120v-16,2,-33,3,-49,0xm46,-60v18,-2,33,-3,50,0r-21,120v-18,3,-33,4,-50,0","w":122},"\u00a7":{"d":"51,-43v22,11,98,19,81,-19v-30,-15,-79,-15,-80,-57v0,-24,17,-37,30,-51v-32,-69,64,-111,136,-79v-3,12,-11,29,-19,38v-19,-14,-87,-18,-70,18v26,17,80,13,79,55v0,27,-13,41,-29,55v33,73,-75,106,-146,77v2,-12,13,-28,18,-37xm112,-153v-14,7,-26,32,0,40r35,11v16,-8,26,-34,-2,-42","w":208},"\u00a9":{"d":"145,-130v0,37,32,49,62,35v4,8,7,21,7,33v-55,19,-108,-8,-108,-68v0,-59,54,-89,106,-67v0,12,-2,24,-6,32v-29,-13,-61,-1,-61,35xm65,-129v0,66,39,107,105,107v66,0,104,-42,104,-107v0,-66,-39,-108,-104,-108v-65,0,-105,41,-105,108xm303,-129v0,82,-51,134,-133,134v-82,0,-134,-52,-134,-134v0,-82,50,-134,134,-134v83,0,133,52,133,134","w":295},"\u00aa":{"d":"149,-225v-41,-6,-60,30,-60,67v0,31,28,22,40,3v11,-16,17,-43,20,-70xm45,-148v-2,-82,65,-127,150,-104v-6,48,-19,90,-19,143v-13,0,-27,2,-39,0v-1,-9,-3,-18,-1,-27v-12,16,-25,31,-51,31v-27,0,-40,-17,-40,-43","w":180},"\u00ab":{"d":"127,-97r76,-79v16,-3,39,-2,56,0r-77,82r45,78v-16,2,-36,3,-52,0xm31,-97r76,-79v16,-3,39,-2,56,0r-77,82r45,78v-16,2,-37,3,-53,0","w":233},"\u00ac":{"d":"201,-149r0,103v-14,2,-30,3,-44,0r0,-59r-110,0v-2,-14,-3,-30,0,-44r154,0"},"\u00ae":{"d":"182,-141v14,-16,1,-41,-25,-33r0,111v-12,0,-25,2,-36,0r0,-138v52,-12,126,3,99,62v-4,9,-8,15,-16,19r32,56v-14,2,-28,3,-41,0r-32,-63v7,-4,14,-9,19,-14xm65,-129v0,66,39,107,105,107v66,0,104,-42,104,-107v0,-66,-39,-108,-104,-108v-65,0,-105,41,-105,108xm303,-129v0,82,-51,134,-133,134v-82,0,-134,-52,-134,-134v0,-82,50,-134,134,-134v83,0,133,52,133,134","w":295},"\u00b0":{"d":"94,-153v-31,0,-54,-21,-54,-54v0,-33,21,-54,54,-54v32,0,54,22,54,54v0,33,-23,54,-54,54xm71,-207v0,13,10,23,23,23v12,0,23,-10,23,-23v0,-13,-11,-24,-23,-24v-13,0,-23,12,-23,24","w":135},"\u00b1":{"d":"35,0v1,-18,3,-29,8,-44r50,0r11,-61r-56,0v0,-14,2,-29,7,-44r56,0r12,-64v14,-3,31,-2,45,0r-12,64r56,0v1,17,-2,31,-8,44r-55,0r-11,61r59,0v-1,15,-2,33,-8,44r-154,0"},"\u00b5":{"d":"145,-23v-9,26,-53,37,-73,16r-15,92v-15,3,-35,3,-50,0r48,-271v16,-2,34,-3,50,0r-21,124v-3,30,39,36,51,16v21,-34,21,-95,32,-140v16,-2,34,-3,50,0r-33,186v-10,3,-29,3,-39,0v-1,-7,-1,-16,0,-23","w":209},"\u00b6":{"d":"116,-113v-77,8,-86,-103,-28,-130v24,-11,54,-18,89,-18r-44,263r-36,-3xm201,-261v11,1,28,0,36,3r-43,258v-8,3,-25,2,-37,2","w":221},"\u00b7":{"d":"41,-77v-1,-21,4,-36,9,-53v15,-3,36,-3,52,0v1,21,-4,36,-9,53v-17,2,-35,5,-52,0","w":104},"\u00ba":{"d":"107,-105v-39,0,-59,-19,-59,-57v0,-55,29,-94,85,-96v40,-1,59,20,59,58v0,55,-28,94,-85,95xm129,-225v-29,2,-37,35,-37,64v0,16,7,24,19,24v29,0,35,-34,37,-64v0,-16,-6,-24,-19,-24","w":180},"\u00bb":{"d":"186,-100r-46,-76v17,-2,36,-3,53,0r47,83r-74,77v-16,3,-41,3,-58,0xm90,-100r-46,-76v17,-2,36,-3,53,0r47,83r-74,77v-15,3,-40,3,-57,0","w":236},"\u00bf":{"d":"154,67v-54,19,-144,16,-140,-50v2,-49,33,-74,69,-89r6,-32v15,-3,32,-4,47,0r-11,62v-28,6,-58,18,-58,51v0,34,51,27,76,17v5,11,10,26,11,41xm91,-133v0,-20,5,-36,9,-53v16,-3,37,-3,53,0v1,21,-4,36,-9,53v-16,3,-36,3,-53,0","w":159},"\u00c6":{"d":"318,-45v3,16,-4,30,-7,45r-145,0r10,-53r-82,0r-37,53v-15,3,-41,3,-57,0r174,-259r180,0v0,18,-2,31,-8,45r-90,0r-9,56r71,0v0,14,-3,29,-8,45r-71,0r-13,68r92,0xm183,-97v5,-39,19,-86,19,-122r-79,122r60,0","w":328},"\u00d7":{"d":"98,-125r-32,-40v11,-11,24,-23,37,-30r32,39r46,-40v12,9,20,21,28,34r-47,40r32,37v-10,12,-22,22,-36,31r-32,-37r-47,40v-12,-10,-22,-21,-28,-34"},"\u00d8":{"d":"125,4v-24,0,-41,-4,-55,-14v-6,14,-22,22,-44,16r26,-34v-11,-16,-16,-37,-16,-64v0,-95,40,-171,134,-171v22,0,40,5,54,15v5,-14,23,-21,43,-15r-25,33v11,17,17,38,17,65v0,94,-40,169,-134,169xm130,-40v62,0,74,-75,73,-140r-101,130v6,7,16,10,28,10xm165,-218v-62,0,-74,71,-74,140r101,-130v-6,-7,-15,-10,-27,-10","w":250},"\u00df":{"d":"-30,44v38,11,51,-16,57,-50v13,-72,24,-154,44,-218v17,-55,146,-64,146,12v0,42,-37,48,-44,82v5,30,40,33,40,72v0,59,-69,73,-118,54v4,-13,10,-28,17,-38v18,11,52,10,53,-15v-6,-28,-43,-29,-42,-63v1,-39,43,-48,47,-85v2,-22,-34,-27,-48,-14v-36,82,-22,224,-77,288v-17,20,-56,23,-87,14v1,-14,5,-27,12,-39","w":217},"\u00e5":{"d":"157,-209v-22,0,-38,-13,-37,-37v1,-27,17,-44,45,-45v23,0,38,14,37,39v-1,26,-18,43,-45,43xm162,-270v-11,-1,-17,11,-17,22v0,11,4,17,14,17v11,0,18,-10,18,-22v0,-11,-5,-17,-15,-17xm155,-148v-54,-6,-77,38,-77,85v0,40,35,28,50,5v13,-20,22,-57,27,-90xm26,-51v-2,-102,78,-162,184,-131v-8,60,-25,116,-25,181v-16,2,-30,3,-46,0v-1,-12,-3,-22,-1,-34v-13,20,-34,39,-65,39v-32,0,-47,-23,-47,-55","w":204},"\u00e6":{"d":"291,-8v-46,20,-130,18,-140,-31v-19,26,-39,42,-75,43v-34,1,-50,-21,-50,-55v-1,-96,71,-161,172,-132r-4,17v23,-30,118,-39,114,22v-4,57,-61,65,-114,73v1,44,60,39,88,23v8,10,8,24,9,40xm155,-148v-54,-6,-77,38,-77,85v0,40,36,28,51,5v13,-20,21,-57,26,-90xm251,-120v12,-9,11,-35,-8,-33v-29,1,-41,25,-47,49v20,-3,43,-6,55,-16","w":299},"\u00f7":{"d":"115,-26v-17,0,-26,-11,-27,-26v-3,-36,61,-47,60,-6v0,20,-13,32,-33,32xm173,-204v4,37,-60,44,-60,6v-3,-36,61,-47,60,-6xm54,-105v1,-18,3,-29,8,-44r151,0v4,15,-3,33,-7,44r-152,0"},"\u00f8":{"d":"61,-4v-5,11,-18,18,-37,13r20,-26v-11,-11,-16,-29,-16,-51v-2,-81,64,-145,146,-113v5,-11,18,-18,37,-13r-21,27v49,87,-29,205,-129,163xm145,-145v-47,-21,-67,38,-66,84xm89,-39v46,17,66,-36,65,-82","w":200},"\u2013":{"d":"14,-77v0,-20,3,-28,8,-44r180,0v-1,17,-3,30,-8,44r-180,0","w":180},"\u2014":{"d":"12,-77v0,-16,1,-32,7,-44r360,0v0,17,-1,30,-7,44r-360,0","w":360},"\u2018":{"d":"50,-258v15,-4,34,-4,49,0r24,92v-16,2,-31,2,-47,0","w":102},"\u2019":{"d":"81,-258v15,-4,34,-4,49,0r-42,92v-16,2,-32,3,-47,0","w":97},"\u201c":{"d":"50,-258v15,-4,34,-4,49,0r24,92v-16,2,-31,2,-47,0xm126,-258v15,-4,34,-4,49,0r24,92v-16,2,-31,2,-47,0","w":178},"\u201d":{"d":"81,-258v15,-4,34,-4,49,0r-42,92v-16,2,-32,3,-47,0xm157,-258v15,-4,34,-4,49,0r-42,92v-16,2,-32,3,-47,0","w":174},"\u2026":{"d":"26,0v-1,-21,4,-36,9,-53v15,-3,36,-3,52,0v1,21,-4,36,-9,53v-17,2,-35,5,-52,0xm123,0v-1,-21,4,-36,9,-53v15,-3,36,-3,52,0v1,21,-4,36,-9,53v-17,2,-35,5,-52,0xm220,0v-1,-21,4,-36,9,-53v15,-3,36,-3,52,0v1,21,-4,36,-9,53v-17,2,-35,5,-52,0","w":298},"\u2122":{"d":"77,-220r-35,0v-2,-11,-1,-24,0,-35r106,0v2,12,2,23,0,35r-34,0r0,109v-12,2,-25,5,-37,0r0,-109xm171,-254v14,-2,25,-2,38,0r28,68r26,-68v13,-2,24,-2,37,0r8,143v-11,3,-25,3,-37,0r-5,-73r-20,47v-9,0,-18,2,-27,0r-17,-46r-3,72v-11,3,-24,3,-36,0","w":288},"\u00b2":{"d":"156,-144v-1,12,-3,23,-6,34r-113,0r-1,-6r73,-72v13,-11,14,-36,-8,-36v-14,0,-22,4,-33,8v-3,-9,-8,-19,-9,-30v38,-24,123,-15,100,47v-9,25,-30,37,-46,55r43,0","w":162},"\u00b3":{"d":"120,-158v0,-17,-23,-19,-36,-13r-6,-8r40,-43r-49,0v0,-14,2,-22,5,-33r95,0r3,8r-42,50v19,3,30,15,31,35v1,55,-73,67,-119,47v2,-12,9,-21,15,-29v20,9,61,13,63,-14","w":162},"\u00b9":{"d":"51,-110v0,-13,2,-25,7,-34r28,0r12,-63r-27,10v-6,-9,-10,-18,-12,-31v29,-9,50,-26,86,-28r-19,112r31,0v1,13,-2,27,-7,34r-99,0","w":162},"\u00bd":{"d":"276,-255v17,-2,33,-3,51,0r-175,254v-17,3,-32,2,-49,0xm51,-110v0,-13,2,-25,7,-34r28,0r12,-63r-27,10v-6,-9,-10,-18,-12,-31v29,-9,50,-26,86,-28r-19,112r31,0v1,13,-2,27,-7,34r-99,0xm366,-35v-1,12,-3,23,-6,34r-113,0r-1,-6r73,-72v13,-11,14,-36,-8,-36v-14,0,-22,4,-33,8v-3,-9,-8,-19,-9,-30v38,-24,123,-15,100,47v-9,25,-30,37,-46,55r43,0","w":378},"\u00be":{"d":"357,-55v0,11,-2,20,-5,28r-15,0r-4,27v-11,1,-25,2,-35,0r4,-27r-74,0r-2,-6r76,-117v13,0,26,7,33,13r-55,82r27,0r5,-29v11,-1,25,-2,35,0r-5,29r15,0xm271,-255v17,-2,32,-3,50,0r-174,254v-17,3,-32,2,-49,0xm120,-158v0,-17,-23,-19,-36,-13r-6,-8r40,-43r-49,0v0,-14,2,-22,5,-33r95,0r3,8r-42,50v19,3,30,15,31,35v1,55,-73,67,-119,47v2,-12,9,-21,15,-29v20,9,61,13,63,-14","w":378},"%":{"d":"270,-55v0,14,4,25,17,25v25,-2,32,-32,32,-57v0,-14,-5,-28,-18,-27v-26,2,-30,32,-31,59xm363,-89v0,53,-28,91,-81,93v-38,1,-56,-22,-56,-58v0,-54,26,-95,81,-95v38,0,56,24,56,60xm84,-166v0,14,4,26,17,26v26,-2,30,-32,32,-58v0,-14,-5,-26,-18,-26v-25,2,-30,31,-31,58xm177,-199v0,53,-27,93,-81,93v-37,0,-56,-21,-56,-59v0,-54,27,-94,81,-94v37,0,56,23,56,60xm264,-255v17,-2,32,-3,50,0r-174,254v-17,3,-32,2,-50,0","w":362},"0":{"d":"225,-150v-3,83,-34,150,-116,154v-54,3,-81,-34,-79,-87v3,-83,34,-155,117,-155v54,0,80,32,78,88xm143,-194v-48,0,-61,64,-61,113v0,25,8,42,31,42v48,0,59,-61,59,-113v0,-28,-9,-42,-29,-42"},"1":{"d":"196,-43v-1,15,-2,29,-7,43r-149,0v0,-14,3,-29,8,-43r48,0r22,-124r-43,17v-5,-13,-12,-23,-12,-40r107,-45r12,0r-34,192r48,0"},"2":{"d":"193,-44v-1,17,-3,30,-8,44r-167,0r-2,-5v41,-46,89,-86,124,-138v16,-24,6,-53,-25,-51v-20,1,-31,6,-47,12v-6,-11,-11,-27,-12,-42v51,-24,151,-24,147,46v-4,67,-57,93,-90,134r80,0"},"3":{"d":"142,-68v0,-34,-36,-37,-66,-30r-4,-6r66,-87r-79,0v1,-17,3,-30,8,-44r147,0r3,6r-74,96v34,4,54,26,54,63v0,85,-103,111,-182,83v3,-15,7,-30,13,-43v39,17,114,16,114,-38"},"4":{"d":"217,-73v-1,16,-2,31,-7,44r-25,0r-9,50v-17,2,-34,2,-50,0r9,-50r-119,0r-2,-5r126,-206v18,1,32,8,43,17r-91,150r50,0r12,-65v17,0,34,-2,50,0r-11,65r24,0"},"5":{"d":"141,-68v0,-40,-55,-36,-81,-22r-6,-5r30,-140r126,0v0,17,-3,30,-8,44r-79,0r-11,53v48,-8,84,15,85,61v1,87,-98,119,-178,90v2,-16,6,-31,12,-44v37,18,110,15,110,-37"},"6":{"d":"33,-78v4,-107,62,-180,173,-183v4,13,3,30,1,42v-55,1,-91,23,-106,65v10,-11,28,-21,52,-20v41,1,63,25,63,67v0,66,-40,109,-108,111v-51,1,-77,-30,-75,-82xm131,-132v-47,0,-66,93,-16,93v32,0,47,-29,48,-62v0,-21,-12,-31,-32,-31"},"7":{"d":"57,-191v0,-16,1,-33,7,-44r171,0r2,5r-146,257v-20,-4,-34,-12,-47,-22r113,-196r-100,0"},"8":{"d":"31,-55v0,-42,27,-63,56,-83v-50,-39,-6,-120,65,-120v38,0,70,18,69,55v-1,32,-21,53,-43,67v18,12,33,25,32,55v-3,56,-44,85,-101,85v-44,0,-78,-16,-78,-59xm115,-38v42,0,56,-56,21,-73v-4,-3,-8,-5,-12,-7v-19,11,-39,26,-39,54v0,16,11,26,30,26xm149,-218v-35,0,-48,46,-17,60v3,2,6,3,9,4v15,-9,30,-20,31,-42v0,-13,-9,-22,-23,-22"},"9":{"d":"141,-238v107,-6,83,151,39,204v-30,36,-71,61,-139,60v-2,-14,-3,-30,0,-44v58,2,97,-19,111,-64v-36,35,-121,19,-115,-49v6,-64,38,-104,104,-107xm89,-135v0,20,12,32,31,31v31,-1,46,-25,47,-57v0,-20,-10,-34,-29,-34v-33,0,-47,27,-49,60"},"\u00a8":{"d":"58,-213v1,-16,2,-30,8,-43v13,-3,32,-3,46,0v-1,16,-2,30,-7,43v-16,0,-33,2,-47,0xm138,-213v0,-17,1,-31,7,-43v13,-3,33,-3,47,0v0,16,-4,30,-8,43v-15,0,-32,2,-46,0","w":180},"\u00b4":{"d":"117,-259v19,-2,42,-2,62,0r-51,44v-14,4,-33,4,-48,0","w":180},"\u00af":{"d":"174,-255v0,15,-2,26,-7,37r-95,0v1,-14,1,-26,6,-37r96,0","w":180},"\u00b8":{"d":"97,50v0,-18,-35,-4,-42,-10r26,-49r24,0r-15,28v21,-4,39,7,39,29v0,41,-56,46,-86,32v2,-8,6,-16,10,-23v14,4,40,11,44,-7","w":180},"\u00bc":{"d":"365,-55v0,11,-2,20,-5,28r-15,0r-4,27v-11,1,-25,2,-35,0r4,-27r-74,0r-2,-6r76,-117v13,0,26,7,33,13r-55,82r27,0r5,-29v11,-1,25,-2,35,0r-5,29r15,0xm283,-255v17,-2,32,-3,50,0r-175,254v-17,3,-32,2,-49,0xm51,-110v0,-13,2,-25,7,-34r28,0r12,-63r-27,10v-6,-9,-10,-18,-12,-31v29,-9,50,-26,86,-28r-19,112r31,0v1,13,-2,27,-7,34r-99,0","w":378},"\u00a4":{"d":"198,-165v16,24,16,61,0,82r25,25v-7,11,-16,22,-28,28r-25,-25v-23,14,-58,13,-81,0r-25,25v-15,-6,-21,-17,-29,-29r25,-25v-14,-24,-13,-56,1,-79r-26,-26v6,-15,17,-21,29,-29r26,26v24,-13,55,-14,78,0r27,-26v11,7,22,16,28,28xm93,-123v0,22,14,38,37,38v22,0,36,-16,36,-38v0,-22,-13,-39,-36,-39v-23,0,-37,16,-37,39"},"\u00a0":{"w":75},"\u00ad":{"d":"36,-84v0,-17,4,-30,8,-44r90,0v0,15,-3,32,-8,44r-90,0","w":131},"\u00d0":{"d":"259,-158v0,125,-94,179,-226,158r20,-115r-26,0v0,-14,1,-25,6,-36r26,0r19,-107v90,-17,181,6,181,100xm203,-153v0,-47,-29,-71,-79,-64r-12,66r49,0v1,12,-2,24,-7,36r-48,0r-13,73v74,7,110,-42,110,-111","w":251},"\u00c0":{"d":"99,-321v18,-3,45,-4,63,0r32,41v-10,3,-34,2,-47,1xm130,-259v20,-2,40,-3,60,0r32,259v-20,2,-34,3,-54,0r-4,-52r-79,0r-23,52v-17,2,-36,3,-53,0xm160,-95r-10,-104r-46,104r56,0","w":227},"\u00c1":{"d":"127,-280v22,-23,46,-51,100,-38r-51,39v-16,0,-37,3,-49,-1xm130,-259v20,-2,40,-3,60,0r32,259v-20,2,-34,3,-54,0r-4,-52r-79,0r-23,52v-17,2,-36,3,-53,0xm160,-95r-10,-104r-46,104r56,0","w":227},"\u00c2":{"d":"103,-281v23,-22,45,-52,99,-39r28,39v-13,3,-36,3,-49,-1r-10,-17v-10,17,-40,24,-68,18xm130,-259v20,-2,40,-3,60,0r32,259v-20,2,-34,3,-54,0r-4,-52r-79,0r-23,52v-17,2,-36,3,-53,0xm160,-95r-10,-104r-46,104r56,0","w":227},"\u00c3":{"d":"115,-280v-5,-6,-13,-17,-13,-26v9,-9,26,-21,44,-20v26,1,54,25,75,2v4,6,12,17,12,27v-18,26,-62,17,-93,7v-14,1,-14,3,-25,10xm130,-259v20,-2,40,-3,60,0r32,259v-20,2,-34,3,-54,0r-4,-52r-79,0r-23,52v-17,2,-36,3,-53,0xm160,-95r-10,-104r-46,104r56,0","w":227},"\u00c5":{"d":"169,-337v45,0,51,60,22,79r32,258v-19,3,-33,2,-53,0r-5,-52r-79,0r-23,52v-17,2,-36,3,-53,0r121,-259v-26,-27,-4,-78,38,-78xm161,-95r-9,-107r-47,107r56,0xm147,-290v0,11,3,20,15,20v21,0,30,-45,5,-44v-13,-1,-20,11,-20,24","w":232},"\u00c7":{"d":"146,50v0,-14,-28,-11,-39,-7v-3,-13,13,-27,17,-40v-55,-4,-86,-42,-87,-98v-1,-114,84,-195,202,-158v-4,17,-8,27,-15,42v-78,-28,-130,32,-130,111v0,56,54,69,101,51v5,11,9,30,9,44v-18,4,-34,10,-57,9r-8,15v21,-4,40,8,40,29v0,40,-56,46,-86,32v1,-9,5,-16,10,-23v13,3,40,11,43,-7","w":206},"\u00c8":{"d":"87,-321v18,-3,45,-3,63,0r31,41v-11,3,-34,2,-47,1xm180,-45v4,16,-5,30,-7,45r-145,0r46,-259r142,0v0,18,-2,31,-8,45r-90,0r-9,56r71,0v0,14,-3,29,-8,45r-71,0r-12,68r91,0","w":190},"\u00c9":{"d":"114,-280v22,-24,46,-51,101,-38r-52,39v-16,0,-37,3,-49,-1xm180,-45v4,16,-5,30,-7,45r-145,0r46,-259r142,0v0,18,-2,31,-8,45r-90,0r-9,56r71,0v0,14,-3,29,-8,45r-71,0r-12,68r91,0","w":190},"\u00ca":{"d":"87,-281v24,-22,46,-52,100,-39r28,39v-13,3,-36,3,-49,-1r-10,-17v-11,17,-41,24,-69,18xm180,-45v4,16,-5,30,-7,45r-145,0r46,-259r142,0v0,18,-2,31,-8,45r-90,0r-9,56r71,0v0,14,-3,29,-8,45r-71,0r-12,68r91,0","w":190},"\u00cc":{"d":"48,-321v18,-3,45,-3,63,0r31,41v-10,3,-34,2,-47,1xm74,-258v18,-4,36,-3,53,0r-46,258v-20,2,-35,3,-53,0","w":109},"\u00cd":{"d":"70,-280v22,-24,46,-51,100,-38r-51,39v-16,0,-37,3,-49,-1xm74,-258v18,-4,36,-3,53,0r-46,258v-20,2,-35,3,-53,0","w":109},"\u00ce":{"d":"44,-281v23,-22,45,-52,100,-39r27,39v-13,3,-35,2,-48,-1r-11,-17v-10,18,-41,24,-68,18xm74,-258v18,-4,36,-3,53,0r-46,258v-20,2,-35,3,-53,0","w":109},"\u00d1":{"d":"240,-297v-18,26,-62,17,-93,7v-14,1,-15,3,-26,10v-4,-5,-12,-16,-12,-26v8,-10,25,-20,43,-20v26,2,54,25,75,2v4,6,12,18,13,27xm74,-259v13,-4,30,-2,44,0r63,165r29,-165v16,-2,33,-4,47,0r-45,259v-16,2,-29,3,-44,0r-64,-164r-28,164v-14,4,-33,2,-48,0","w":239},"\u00d2":{"d":"124,-321v18,-3,45,-3,63,0r32,41v-11,3,-35,2,-48,1xm259,-165v0,94,-40,166,-134,169v-60,2,-91,-37,-89,-96v3,-95,40,-171,134,-171v61,0,89,37,89,98xm165,-218v-59,0,-74,65,-74,128v0,33,13,50,39,50v60,0,74,-67,74,-128v0,-34,-13,-50,-39,-50","w":250},"\u00d3":{"d":"138,-280v21,-24,46,-51,100,-38r-51,39v-16,0,-37,3,-49,-1xm259,-165v0,94,-40,166,-134,169v-60,2,-91,-37,-89,-96v3,-95,40,-171,134,-171v61,0,89,37,89,98xm165,-218v-59,0,-74,65,-74,128v0,33,13,50,39,50v60,0,74,-67,74,-128v0,-34,-13,-50,-39,-50","w":250},"\u00d4":{"d":"114,-281v23,-22,46,-52,100,-39r27,39v-13,3,-35,2,-48,-1r-11,-17v-10,18,-41,24,-68,18xm259,-165v0,94,-40,166,-134,169v-60,2,-91,-37,-89,-96v3,-95,40,-171,134,-171v61,0,89,37,89,98xm165,-218v-59,0,-74,65,-74,128v0,33,13,50,39,50v60,0,74,-67,74,-128v0,-34,-13,-50,-39,-50","w":250},"\u00d9":{"d":"111,-321v17,-3,45,-3,63,0r32,41v-10,3,-34,3,-47,1xm201,-26v-40,50,-169,43,-159,-46v7,-65,21,-126,30,-187v16,-3,36,-3,53,0r-28,161v-3,31,-2,58,30,57v45,-2,49,-43,56,-84r23,-134v16,-3,36,-3,53,0v-18,79,-15,179,-58,233","w":240},"\u00da":{"d":"139,-280v22,-23,46,-51,100,-38r-51,39v-16,0,-37,3,-49,-1xm201,-26v-40,50,-169,43,-159,-46v7,-65,21,-126,30,-187v16,-3,36,-3,53,0r-28,161v-3,31,-2,58,30,57v45,-2,49,-43,56,-84r23,-134v16,-3,36,-3,53,0v-18,79,-15,179,-58,233","w":240},"\u00db":{"d":"110,-281v23,-22,45,-53,100,-39r27,39v-13,3,-35,3,-48,-1r-11,-17v-10,17,-40,24,-68,18xm201,-26v-40,50,-169,43,-159,-46v7,-65,21,-126,30,-187v16,-3,36,-3,53,0r-28,161v-3,31,-2,58,30,57v45,-2,49,-43,56,-84r23,-134v16,-3,36,-3,53,0v-18,79,-15,179,-58,233","w":240},"\u00dd":{"d":"120,-280v22,-24,47,-51,101,-38r-51,39v-16,0,-37,3,-50,-1xm90,-93r-48,-166v19,-2,38,-4,56,0r28,115r66,-115v19,-2,37,-3,56,0r-105,166r-17,93v-16,3,-36,3,-53,0","w":202},"\u00e0":{"d":"155,-148v-54,-6,-77,38,-77,85v0,40,35,28,50,5v13,-20,22,-57,27,-90xm26,-51v-2,-102,78,-162,184,-131v-8,60,-25,116,-25,181v-16,2,-30,3,-46,0v-1,-12,-3,-22,-1,-34v-13,20,-34,39,-65,39v-32,0,-47,-23,-47,-55xm92,-259v20,-2,43,-3,62,0r32,44v-15,3,-34,4,-48,0","w":204},"\u00e1":{"d":"155,-148v-54,-6,-77,38,-77,85v0,40,35,28,50,5v13,-20,22,-57,27,-90xm26,-51v-2,-102,78,-162,184,-131v-8,60,-25,116,-25,181v-16,2,-30,3,-46,0v-1,-12,-3,-22,-1,-34v-13,20,-34,39,-65,39v-32,0,-47,-23,-47,-55xm155,-259v19,-2,42,-2,62,0r-51,44v-14,4,-33,4,-48,0","w":204},"\u00e2":{"d":"126,-259v19,-1,39,-3,57,1r27,44v-13,3,-35,2,-48,-1r-10,-23v-9,21,-37,32,-69,24xm155,-148v-54,-6,-77,38,-77,85v0,40,35,28,50,5v13,-20,22,-57,27,-90xm26,-51v-2,-102,78,-162,184,-131v-8,60,-25,116,-25,181v-16,2,-30,3,-46,0v-1,-12,-3,-22,-1,-34v-13,20,-34,39,-65,39v-32,0,-47,-23,-47,-55","w":204},"\u00e3":{"d":"99,-215v-5,-6,-13,-17,-13,-26v9,-9,26,-21,44,-20v26,2,52,25,74,3v5,5,13,16,13,26v-9,9,-26,21,-44,20v-26,-2,-53,-25,-74,-3xm155,-148v-54,-6,-77,38,-77,85v0,40,35,28,50,5v13,-20,22,-57,27,-90xm26,-51v-2,-102,78,-162,184,-131v-8,60,-25,116,-25,181v-16,2,-30,3,-46,0v-1,-12,-3,-22,-1,-34v-13,20,-34,39,-65,39v-32,0,-47,-23,-47,-55","w":204},"\u00e4":{"d":"155,-148v-54,-6,-77,38,-77,85v0,40,35,28,50,5v13,-20,22,-57,27,-90xm26,-51v-2,-102,78,-162,184,-131v-8,60,-25,116,-25,181v-16,2,-30,3,-46,0v-1,-12,-3,-22,-1,-34v-13,20,-34,39,-65,39v-32,0,-47,-23,-47,-55xm84,-213v1,-16,2,-30,8,-43v13,-3,32,-3,46,0v-1,16,-2,30,-7,43v-16,0,-33,2,-47,0xm164,-213v0,-17,1,-31,7,-43v13,-3,33,-3,47,0v0,16,-4,30,-8,43v-15,0,-32,2,-46,0","w":204},"\u00e7":{"d":"109,50v2,-15,-27,-11,-39,-7v-3,-13,13,-27,17,-40v-39,-5,-59,-32,-59,-74v0,-83,67,-140,153,-112v0,15,-5,30,-12,40v-49,-21,-89,15,-89,68v0,40,42,45,71,31v6,10,9,22,9,39v-14,6,-29,9,-49,9r-8,15v21,-4,39,7,39,29v0,40,-56,46,-86,32v2,-8,6,-16,10,-23v13,3,41,11,43,-7","w":165},"\u00e8":{"d":"78,-71v-1,44,60,39,87,23v8,9,9,24,10,40v-59,25,-153,15,-147,-64v5,-68,39,-111,107,-118v61,-6,72,68,29,94v-22,14,-55,19,-86,25xm134,-120v13,-10,11,-34,-8,-33v-29,1,-40,25,-46,49v20,-3,42,-7,54,-16xm78,-259v20,-2,43,-3,62,0r32,44v-15,3,-34,4,-48,0","w":183},"\u00e9":{"d":"78,-71v-1,44,60,39,87,23v8,9,9,24,10,40v-59,25,-153,15,-147,-64v5,-68,39,-111,107,-118v61,-6,72,68,29,94v-22,14,-55,19,-86,25xm134,-120v13,-10,11,-34,-8,-33v-29,1,-40,25,-46,49v20,-3,42,-7,54,-16xm135,-259v19,-2,42,-2,62,0r-51,44v-14,4,-33,4,-48,0","w":183},"\u00ea":{"d":"111,-259v19,-1,39,-3,57,1r27,44v-13,3,-35,2,-48,-1r-11,-23v-8,21,-36,32,-68,24xm78,-71v-1,44,60,39,87,23v8,9,9,24,10,40v-59,25,-153,15,-147,-64v5,-68,39,-111,107,-118v61,-6,72,68,29,94v-22,14,-55,19,-86,25xm134,-120v13,-10,11,-34,-8,-33v-29,1,-40,25,-46,49v20,-3,42,-7,54,-16","w":183},"\u00eb":{"d":"78,-71v-1,44,60,39,87,23v8,9,9,24,10,40v-59,25,-153,15,-147,-64v5,-68,39,-111,107,-118v61,-6,72,68,29,94v-22,14,-55,19,-86,25xm134,-120v13,-10,11,-34,-8,-33v-29,1,-40,25,-46,49v20,-3,42,-7,54,-16xm67,-213v1,-16,2,-30,8,-43v13,-3,32,-3,46,0v-1,16,-2,30,-7,43v-16,0,-33,2,-47,0xm147,-213v0,-17,1,-31,7,-43v13,-3,33,-3,47,0v0,16,-4,30,-8,43v-15,0,-32,2,-46,0","w":183},"\u00ec":{"d":"38,-147v0,-16,3,-26,7,-39r73,0r-33,186v-18,2,-31,3,-50,0r26,-147r-23,0xm34,-259v20,-2,43,-3,62,0r32,44v-15,3,-34,4,-48,0","w":112},"\u00ed":{"d":"38,-147v0,-16,3,-26,7,-39r73,0r-33,186v-18,2,-31,3,-50,0r26,-147r-23,0xm89,-259v19,-2,42,-2,62,0r-51,44v-14,4,-33,4,-48,0","w":112},"\u00ee":{"d":"68,-259v19,-1,39,-3,57,1r27,44v-13,3,-35,2,-48,-1r-11,-23v-8,21,-36,32,-68,24xm38,-147v0,-16,3,-26,7,-39r73,0r-33,186v-18,2,-31,3,-50,0r26,-147r-23,0","w":112},"\u00ef":{"d":"38,-147v0,-16,3,-26,7,-39r73,0r-33,186v-18,2,-31,3,-50,0r26,-147r-23,0xm25,-213v1,-16,2,-30,8,-43v13,-3,32,-3,46,0v-1,16,-2,30,-7,43v-16,0,-33,2,-47,0xm105,-213v0,-17,1,-31,7,-43v13,-3,33,-3,47,0v0,16,-4,30,-8,43v-15,0,-32,2,-46,0","w":112},"\u00f1":{"d":"90,-215v-5,-6,-13,-17,-13,-26v9,-9,26,-21,44,-20v27,2,52,25,75,3v4,5,12,16,12,26v-9,9,-25,21,-43,20v-26,-2,-53,-25,-75,-3xm154,-114v13,-31,-23,-44,-40,-20v-22,30,-26,90,-37,134v-18,2,-34,3,-51,0r26,-146v0,-13,3,-28,1,-40v15,-2,32,-4,46,0v4,9,3,22,1,33v15,-40,115,-60,109,10v-4,50,-16,95,-24,143v-18,2,-34,3,-51,0","w":210},"\u00f2":{"d":"205,-117v0,69,-34,119,-105,121v-48,1,-72,-26,-72,-72v0,-68,34,-120,104,-122v49,-1,73,26,73,73xm127,-150v-38,0,-48,46,-48,83v0,21,9,32,26,32v38,0,49,-43,49,-82v0,-22,-9,-33,-27,-33xm87,-259v20,-2,43,-3,62,0r32,44v-15,3,-34,4,-48,0","w":200},"\u00f3":{"d":"205,-117v0,69,-34,119,-105,121v-48,1,-72,-26,-72,-72v0,-68,34,-120,104,-122v49,-1,73,26,73,73xm127,-150v-38,0,-48,46,-48,83v0,21,9,32,26,32v38,0,49,-43,49,-82v0,-22,-9,-33,-27,-33xm139,-259v19,-2,42,-2,62,0r-51,44v-14,4,-33,4,-48,0","w":200},"\u00f4":{"d":"117,-259v19,-1,38,-3,56,1r28,44v-13,3,-35,3,-48,-1r-11,-23v-9,21,-37,32,-69,24xm205,-117v0,69,-34,119,-105,121v-48,1,-72,-26,-72,-72v0,-68,34,-120,104,-122v49,-1,73,26,73,73xm127,-150v-38,0,-48,46,-48,83v0,21,9,32,26,32v38,0,49,-43,49,-82v0,-22,-9,-33,-27,-33","w":200},"\u00f5":{"d":"85,-215v-4,-5,-12,-16,-12,-26v8,-10,25,-20,43,-20v27,2,53,25,75,3v5,6,13,17,13,26v-9,9,-26,21,-44,20v-27,-2,-53,-25,-75,-3xm205,-117v0,69,-34,119,-105,121v-48,1,-72,-26,-72,-72v0,-68,34,-120,104,-122v49,-1,73,26,73,73xm127,-150v-38,0,-48,46,-48,83v0,21,9,32,26,32v38,0,49,-43,49,-82v0,-22,-9,-33,-27,-33","w":200},"\u00f6":{"d":"205,-117v0,69,-34,119,-105,121v-48,1,-72,-26,-72,-72v0,-68,34,-120,104,-122v49,-1,73,26,73,73xm127,-150v-38,0,-48,46,-48,83v0,21,9,32,26,32v38,0,49,-43,49,-82v0,-22,-9,-33,-27,-33xm76,-213v1,-16,2,-30,8,-43v13,-3,32,-3,46,0v-1,16,-2,30,-7,43v-16,0,-33,2,-47,0xm156,-213v0,-17,1,-31,7,-43v13,-3,33,-3,47,0v0,16,-4,30,-8,43v-15,0,-32,2,-46,0","w":200},"\u00f9":{"d":"143,-33v-18,44,-121,57,-108,-22r23,-131v16,-4,34,-2,51,0r-22,128v-2,26,33,22,43,6v21,-31,27,-89,36,-134v18,-2,34,-3,51,0r-25,146r-2,40v-16,2,-30,3,-46,0v0,-11,-3,-22,-1,-33xm78,-259v20,-2,43,-3,62,0r32,44v-15,3,-34,4,-48,0","w":210},"\u00fa":{"d":"143,-33v-18,44,-121,57,-108,-22r23,-131v16,-4,34,-2,51,0r-22,128v-2,26,33,22,43,6v21,-31,27,-89,36,-134v18,-2,34,-3,51,0r-25,146r-2,40v-16,2,-30,3,-46,0v0,-11,-3,-22,-1,-33xm149,-259v19,-2,42,-2,62,0r-51,44v-14,4,-33,4,-48,0","w":210},"\u00fb":{"d":"119,-259v19,-1,39,-3,57,1r27,44v-13,3,-35,2,-48,-1r-11,-23v-8,21,-36,32,-68,24xm143,-33v-18,44,-121,57,-108,-22r23,-131v16,-4,34,-2,51,0r-22,128v-2,26,33,22,43,6v21,-31,27,-89,36,-134v18,-2,34,-3,51,0r-25,146r-2,40v-16,2,-30,3,-46,0v0,-11,-3,-22,-1,-33","w":210},"\u00fc":{"d":"143,-33v-18,44,-121,57,-108,-22r23,-131v16,-4,34,-2,51,0r-22,128v-2,26,33,22,43,6v21,-31,27,-89,36,-134v18,-2,34,-3,51,0r-25,146r-2,40v-16,2,-30,3,-46,0v0,-11,-3,-22,-1,-33xm79,-213v1,-16,2,-30,8,-43v13,-3,32,-3,46,0v-1,16,-2,30,-7,43v-16,0,-33,2,-47,0xm159,-213v0,-17,1,-31,7,-43v13,-3,33,-3,47,0v0,16,-4,30,-8,43v-15,0,-32,2,-46,0","w":210},"\u00fd":{"d":"20,46v39,11,56,-17,69,-46v-11,0,-25,2,-35,0r-17,-186v17,-2,36,-3,53,0r9,163v18,-54,56,-98,57,-163v23,-2,65,-12,53,21v-27,77,-65,157,-105,222v-16,27,-56,38,-94,27v1,-15,4,-27,10,-38xm134,-259v19,-2,42,-2,62,0r-51,44v-14,4,-33,4,-48,0","w":195},"\u00ff":{"d":"20,46v39,11,56,-17,69,-46v-11,0,-25,2,-35,0r-17,-186v17,-2,36,-3,53,0r9,163v18,-54,56,-98,57,-163v23,-2,65,-12,53,21v-27,77,-65,157,-105,222v-16,27,-56,38,-94,27v1,-15,4,-27,10,-38xm63,-213v1,-16,2,-30,8,-43v13,-3,32,-3,46,0v-1,16,-2,30,-7,43v-16,0,-33,2,-47,0xm143,-213v0,-17,1,-31,7,-43v13,-3,33,-3,47,0v0,16,-4,30,-8,43v-15,0,-32,2,-46,0","w":195},"\u00c4":{"d":"98,-280v1,-16,3,-29,8,-42v13,-3,32,-3,46,0v-1,15,-2,29,-7,42v-13,3,-33,3,-47,0xm178,-280v0,-16,1,-30,7,-42v13,-3,33,-3,47,0v0,16,-4,29,-8,42v-13,3,-33,3,-46,0xm130,-259v20,-2,40,-3,60,0r32,259v-20,2,-34,3,-54,0r-4,-52r-79,0r-23,52v-17,2,-36,3,-53,0xm160,-95r-10,-104r-46,104r56,0","w":227},"\u00cb":{"d":"88,-280v1,-15,2,-29,7,-42v13,-3,33,-3,47,0v-1,16,-3,29,-8,42v-13,3,-33,3,-46,0xm167,-280v1,-16,3,-29,8,-42v13,-3,32,-3,46,0v0,15,-3,29,-7,42v-13,3,-33,3,-47,0xm180,-45v4,16,-5,30,-7,45r-145,0r46,-259r142,0v0,18,-2,31,-8,45r-90,0r-9,56r71,0v0,14,-3,29,-8,45r-71,0r-12,68r91,0","w":190},"\u00cf":{"d":"44,-280v1,-16,3,-29,8,-42v13,-3,32,-3,46,0v-1,15,-2,29,-7,42v-13,3,-33,3,-47,0xm124,-280v0,-16,1,-30,7,-42v13,-3,33,-3,47,0v0,16,-4,29,-8,42v-13,3,-33,3,-46,0xm74,-258v18,-4,36,-3,53,0r-46,258v-20,2,-35,3,-53,0","w":109},"\u00d5":{"d":"247,-297v-18,26,-62,17,-93,7v-14,1,-14,3,-25,10v-5,-6,-13,-17,-13,-26v9,-9,25,-20,43,-20v26,2,54,25,75,2v4,6,12,18,13,27xm259,-165v0,94,-40,166,-134,169v-60,2,-91,-37,-89,-96v3,-95,40,-171,134,-171v61,0,89,37,89,98xm165,-218v-59,0,-74,65,-74,128v0,33,13,50,39,50v60,0,74,-67,74,-128v0,-34,-13,-50,-39,-50","w":250},"\u00d6":{"d":"114,-280v1,-16,3,-29,8,-42v13,-3,32,-3,46,0v-1,15,-2,29,-7,42v-13,3,-33,3,-47,0xm194,-280v0,-16,1,-30,7,-42v13,-3,33,-3,47,0v-1,15,-4,29,-8,42v-13,3,-33,3,-46,0xm259,-165v0,94,-40,166,-134,169v-60,2,-91,-37,-89,-96v3,-95,40,-171,134,-171v61,0,89,37,89,98xm165,-218v-59,0,-74,65,-74,128v0,33,13,50,39,50v60,0,74,-67,74,-128v0,-34,-13,-50,-39,-50","w":250},"\u00dc":{"d":"111,-280v0,-16,1,-30,7,-42v13,-3,33,-3,47,0v-1,16,-3,29,-8,42v-13,3,-33,3,-46,0xm190,-280v1,-16,3,-29,8,-42v13,-3,32,-3,46,0v0,15,-3,29,-7,42v-13,3,-34,3,-47,0xm201,-26v-40,50,-169,43,-159,-46v7,-65,21,-126,30,-187v16,-3,36,-3,53,0r-28,161v-3,31,-2,58,30,57v45,-2,49,-43,56,-84r23,-134v16,-3,36,-3,53,0v-18,79,-15,179,-58,233","w":240},"\u00fe":{"d":"161,-116v2,-33,-33,-39,-51,-17v-14,17,-19,63,-25,93v50,9,74,-29,76,-76xm216,-123v-1,82,-51,133,-139,126r-14,82v-16,3,-35,3,-51,0r53,-308r2,-40v16,-2,35,-4,50,0v6,40,-7,74,-13,109v11,-19,30,-37,60,-36v37,0,53,27,52,67","w":211},"\u00f0":{"d":"28,-67v-3,-76,68,-135,134,-93v-5,-16,-13,-33,-23,-43v-16,10,-40,30,-46,-1r24,-15v-8,-4,-18,-7,-29,-7v1,-15,2,-29,9,-39v25,0,49,6,63,18r32,-18v6,7,10,11,12,21r-24,15v50,73,32,233,-80,233v-47,0,-70,-26,-72,-71xm80,-68v0,22,7,35,27,35v36,0,46,-38,46,-73v0,-20,-7,-32,-28,-32v-34,2,-44,35,-45,70","w":205},"\u00de":{"d":"221,-142v0,72,-54,107,-131,102r-6,40v-18,2,-35,3,-53,0r46,-260v17,0,36,-2,52,0r-7,40v55,1,99,21,99,78xm114,-82v55,0,76,-95,13,-94r-13,1r-16,91v3,1,8,2,16,2","w":214}}});



