/* 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 plug-in 1.6
 *
 * http://bassistance.de/jquery-plugins/jquery-plugin-validation/
 * http://docs.jquery.com/Plugins/Validation
 *
 * Copyright (c) 2006 - 2008 J?rn Zaefferer
 *
 * $Id: jquery.validate.js 6403 2009-06-17 14:27:16Z joern.zaefferer $
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(7($){$.H($.2O,{1d:7(d){l(!6.F){d&&d.24&&2Y.1H&&1H.52("3v 3o, 4N\'t 1d, 67 3v");8}p c=$.17(6[0],\'v\');l(c){8 c}c=2e $.v(d,6[0]);$.17(6[0],\'v\',c);l(c.q.3u){6.3r("1B, 3j").1n(".4G").3b(7(){c.3a=w});l(c.q.35){6.3r("1B, 3j").1n(":23").3b(7(){c.1V=6})}6.23(7(b){l(c.q.24)b.5N();7 2m(){l(c.q.35){l(c.1V){p a=$("<1B 1A=\'5v\'/>").1p("u",c.1V.u).2M(c.1V.Z).51(c.U)}c.q.35.11(c,c.U);l(c.1V){a.3A()}8 I}8 w}l(c.3a){c.3a=I;8 2m()}l(c.M()){l(c.1a){c.1l=w;8 I}8 2m()}16{c.2h();8 I}})}8 c},J:7(){l($(6[0]).2Z(\'M\')){8 6.1d().M()}16{p b=w;p a=$(6[0].M).1d();6.P(7(){b&=a.L(6)});8 b}},4F:7(c){p d={},$L=6;$.P(c.1O(/\\s/),7(a,b){d[b]=$L.1p(b);$L.6c(b)});8 d},1f:7(h,k){p f=6[0];l(h){p i=$.17(f.M,\'v\').q;p d=i.1f;p c=$.v.2D(f);22(h){1b"1e":$.H(c,$.v.1N(k));d[f.u]=c;l(k.G)i.G[f.u]=$.H(i.G[f.u],k.G);2K;1b"3A":l(!k){S d[f.u];8 c}p e={};$.P(k.1O(/\\s/),7(a,b){e[b]=c[b];S c[b]});8 e}}p g=$.v.42($.H({},$.v.3Y(f),$.v.3W(f),$.v.3U(f),$.v.2D(f)),f);l(g.14){p j=g.14;S g.14;g=$.H({14:j},g)}8 g}});$.H($.5s[":"],{5p:7(a){8!$.1q(""+a.Z)},5i:7(a){8!!$.1q(""+a.Z)},5f:7(a){8!a.4l}});$.v=7(b,a){6.q=$.H({},$.v.33,b);6.U=a;6.3I()};$.v.W=7(c,b){l(T.F==1)8 7(){p a=$.3D(T);a.4V(c);8 $.v.W.1Q(6,a)};l(T.F>2&&b.29!=3x){b=$.3D(T).4R(1)}l(b.29!=3x){b=[b]}$.P(b,7(i,n){c=c.1P(2e 3s("\\\\{"+i+"\\\\}","g"),n)});8 c};$.H($.v,{33:{G:{},2d:{},1f:{},19:"3p",26:"J",2C:"4Q",2h:w,3l:$([]),2A:$([]),3u:w,3i:[],3Q:I,4O:7(a){6.3e=a;l(6.q.4M&&!6.4J){6.q.1L&&6.q.1L.11(6,a,6.q.19,6.q.26);6.1K(a).2y()}},4E:7(a){l(!6.1D(a)&&(a.u V 6.1c||!6.K(a))){6.L(a)}},6b:7(a){l(a.u V 6.1c||a==6.4y){6.L(a)}},69:7(a){l(a.u V 6.1c)6.L(a);16 l(a.4v.u V 6.1c)6.L(a.4v)},38:7(a,c,b){$(a).1Y(c).2w(b)},1L:7(a,c,b){$(a).2w(c).1Y(b)}},65:7(a){$.H($.v.33,a)},G:{14:"61 4q 2Z 14.",1r:"N 2L 6 4q.",1I:"N O a J 1I 60.",1v:"N O a J 5X.",1u:"N O a J 1u.",2q:"N O a J 1u (5R).",1s:"N O a J 1s.",1U:"N O 5P 1U.",2c:"N O a J 5O 5M 1s.",2n:"N O 47 5I Z 5H.",44:"N O a Z 5C a J 5B.",18:$.v.W("N O 3X 5y 2X {0} 2W."),1z:$.v.W("N O 5x 5w {0} 2W."),2j:$.v.W("N O a Z 3V {0} 45 {1} 2W 5q."),2i:$.v.W("N O a Z 3V {0} 45 {1}."),1x:$.v.W("N O a Z 5k 2X 3L 3K 48 {0}."),1F:$.v.W("N O a Z 5d 2X 3L 3K 48 {0}.")},3J:I,5b:{3I:7(){6.2r=$(6.q.2A);6.4i=6.2r.F&&6.2r||$(6.U);6.2s=$(6.q.3l).1e(6.q.2A);6.1c={};6.55={};6.1a=0;6.1i={};6.1g={};6.21();p f=(6.2d={});$.P(6.q.2d,7(d,c){$.P(c.1O(/\\s/),7(a,b){f[b]=d})});p e=6.q.1f;$.P(e,7(b,a){e[b]=$.v.1N(a)});7 1C(a){p b=$.17(6[0].M,"v");b.q["4A"+a.1A]&&b.q["4A"+a.1A].11(b,6[0])}$(6.U).1C("3F 3E 4W",":3C, :4U, :4T, 2b, 4S",1C).1C("3b",":3B, :3z, 2b, 3y",1C);l(6.q.3w)$(6.U).2J("1g-M.1d",6.q.3w)},M:7(){6.3t();$.H(6.1c,6.1w);6.1g=$.H({},6.1w);l(!6.J())$(6.U).2H("1g-M",[6]);6.1m();8 6.J()},3t:7(){6.2G();Q(p i=0,13=(6.27=6.13());13[i];i++){6.28(13[i])}8 6.J()},L:7(a){a=6.2F(a);6.4y=a;6.2E(a);6.27=$(a);p b=6.28(a);l(b){S 6.1g[a.u]}16{6.1g[a.u]=w}l(!6.3q()){6.12=6.12.1e(6.2s)}6.1m();8 b},1m:7(b){l(b){$.H(6.1w,b);6.R=[];Q(p c V b){6.R.2a({1j:b[c],L:6.2f(c)[0]})}6.1k=$.3n(6.1k,7(a){8!(a.u V b)})}6.q.1m?6.q.1m.11(6,6.1w,6.R):6.3m()},2B:7(){l($.2O.2B)$(6.U).2B();6.1c={};6.2G();6.2T();6.13().2w(6.q.19)},3q:7(){8 6.2g(6.1g)},2g:7(a){p b=0;Q(p i V a)b++;8 b},2T:7(){6.2P(6.12).2y()},J:7(){8 6.3N()==0},3N:7(){8 6.R.F},2h:7(){l(6.q.2h){3O{$(6.3h()||6.R.F&&6.R[0].L||[]).1n(":4P").3g()}3f(e){}}},3h:7(){p a=6.3e;8 a&&$.3n(6.R,7(n){8 n.L.u==a.u}).F==1&&a},13:7(){p a=6,2U={};8 $([]).1e(6.U.13).1n(":1B").1R(":23, :21, :4L, [4K]").1R(6.q.3i).1n(7(){!6.u&&a.q.24&&2Y.1H&&1H.3p("%o 4I 3X u 4H",6);l(6.u V 2U||!a.2g($(6).1f()))8 I;2U[6.u]=w;8 w})},2F:7(a){8 $(a)[0]},2z:7(){8 $(6.q.2C+"."+6.q.19,6.4i)},21:7(){6.1k=[];6.R=[];6.1w={};6.1o=$([]);6.12=$([]);6.27=$([])},2G:7(){6.21();6.12=6.2z().1e(6.2s)},2E:7(a){6.21();6.12=6.1K(a)},28:7(d){d=6.2F(d);l(6.1D(d)){d=6.2f(d.u)[0]}p a=$(d).1f();p c=I;Q(Y V a){p b={Y:Y,2l:a[Y]};3O{p f=$.v.1T[Y].11(6,d.Z.1P(/\\r/g,""),d,b.2l);l(f=="1S-1Z"){c=w;4D}c=I;l(f=="1i"){6.12=6.12.1R(6.1K(d));8}l(!f){6.3c(d,b);8 I}}3f(e){6.q.24&&2Y.1H&&1H.4C("6g 6f 6e 6d L "+d.4z+", 28 47 \'"+b.Y+"\' Y",e);6a e;}}l(c)8;l(6.2g(a))6.1k.2a(d);8 w},4x:7(a,b){l(!$.1y)8;p c=6.q.39?$(a).1y()[6.q.39]:$(a).1y();8 c&&c.G&&c.G[b]},4w:7(a,b){p m=6.q.G[a];8 m&&(m.29==4u?m:m[b])},4t:7(){Q(p i=0;i<T.F;i++){l(T[i]!==20)8 T[i]}8 20},2x:7(a,b){8 6.4t(6.4w(a.u,b),6.4x(a,b),!6.q.3Q&&a.68||20,$.v.G[b],"<4s>66: 64 1j 63 Q "+a.u+"</4s>")},3c:7(b,a){p c=6.2x(b,a.Y),36=/\\$?\\{(\\d+)\\}/g;l(1h c=="7"){c=c.11(6,a.2l,b)}16 l(36.15(c)){c=2v.W(c.1P(36,\'{$1}\'),a.2l)}6.R.2a({1j:c,L:b});6.1w[b.u]=c;6.1c[b.u]=c},2P:7(a){l(6.q.2u)a=a.1e(a.4p(6.q.2u));8 a},3m:7(){Q(p i=0;6.R[i];i++){p a=6.R[i];6.q.38&&6.q.38.11(6,a.L,6.q.19,6.q.26);6.34(a.L,a.1j)}l(6.R.F){6.1o=6.1o.1e(6.2s)}l(6.q.1G){Q(p i=0;6.1k[i];i++){6.34(6.1k[i])}}l(6.q.1L){Q(p i=0,13=6.4o();13[i];i++){6.q.1L.11(6,13[i],6.q.19,6.q.26)}}6.12=6.12.1R(6.1o);6.2T();6.2P(6.1o).4n()},4o:7(){8 6.27.1R(6.4m())},4m:7(){8 $(6.R).3d(7(){8 6.L})},34:7(a,c){p b=6.1K(a);l(b.F){b.2w().1Y(6.q.19);b.1p("4k")&&b.4j(c)}16{b=$("<"+6.q.2C+"/>").1p({"Q":6.32(a),4k:w}).1Y(6.q.19).4j(c||"");l(6.q.2u){b=b.2y().4n().5Z("<"+6.q.2u+"/>").4p()}l(!6.2r.5Y(b).F)6.q.4h?6.q.4h(b,$(a)):b.5W(a)}l(!c&&6.q.1G){b.3C("");1h 6.q.1G=="1t"?b.1Y(6.q.1G):6.q.1G(b)}6.1o=6.1o.1e(b)},1K:7(a){p b=6.32(a);8 6.2z().1n(7(){8 $(6).1p(\'Q\')==b})},32:7(a){8 6.2d[a.u]||(6.1D(a)?a.u:a.4z||a.u)},1D:7(a){8/3B|3z/i.15(a.1A)},2f:7(d){p c=6.U;8 $(5V.5U(d)).3d(7(a,b){8 b.M==c&&b.u==d&&b||4g})},1M:7(a,b){22(b.4f.3k()){1b\'2b\':8 $("3y:3o",b).F;1b\'1B\':l(6.1D(b))8 6.2f(b.u).1n(\':4l\').F}8 a.F},4e:7(b,a){8 6.2I[1h b]?6.2I[1h b](b,a):w},2I:{"5Q":7(b,a){8 b},"1t":7(b,a){8!!$(b,a.M).F},"7":7(b,a){8 b(a)}},K:7(a){8!$.v.1T.14.11(6,$.1q(a.Z),a)&&"1S-1Z"},4d:7(a){l(!6.1i[a.u]){6.1a++;6.1i[a.u]=w}},4c:7(a,b){6.1a--;l(6.1a<0)6.1a=0;S 6.1i[a.u];l(b&&6.1a==0&&6.1l&&6.M()){$(6.U).23();6.1l=I}16 l(!b&&6.1a==0&&6.1l){$(6.U).2H("1g-M",[6]);6.1l=I}},2o:7(a){8 $.17(a,"2o")||$.17(a,"2o",{31:4g,J:w,1j:6.2x(a,"1r")})}},1J:{14:{14:w},1I:{1I:w},1v:{1v:w},1u:{1u:w},2q:{2q:w},4b:{4b:w},1s:{1s:w},4a:{4a:w},1U:{1U:w},2c:{2c:w}},49:7(a,b){a.29==4u?6.1J[a]=b:$.H(6.1J,a)},3W:7(b){p a={};p c=$(b).1p(\'5L\');c&&$.P(c.1O(\' \'),7(){l(6 V $.v.1J){$.H(a,$.v.1J[6])}});8 a},3U:7(c){p a={};p d=$(c);Q(Y V $.v.1T){p b=d.1p(Y);l(b){a[Y]=b}}l(a.18&&/-1|5K|5J/.15(a.18)){S a.18}8 a},3Y:7(a){l(!$.1y)8{};p b=$.17(a.M,\'v\').q.39;8 b?$(a).1y()[b]:$(a).1y()},2D:7(b){p a={};p c=$.17(b.M,\'v\');l(c.q.1f){a=$.v.1N(c.q.1f[b.u])||{}}8 a},42:7(d,e){$.P(d,7(c,b){l(b===I){S d[c];8}l(b.30||b.2t){p a=w;22(1h b.2t){1b"1t":a=!!$(b.2t,e.M).F;2K;1b"7":a=b.2t.11(e,e);2K}l(a){d[c]=b.30!==20?b.30:w}16{S d[c]}}});$.P(d,7(a,b){d[a]=$.46(b)?b(e):b});$.P([\'1z\',\'18\',\'1F\',\'1x\'],7(){l(d[6]){d[6]=2Q(d[6])}});$.P([\'2j\',\'2i\'],7(){l(d[6]){d[6]=[2Q(d[6][0]),2Q(d[6][1])]}});l($.v.3J){l(d.1F&&d.1x){d.2i=[d.1F,d.1x];S d.1F;S d.1x}l(d.1z&&d.18){d.2j=[d.1z,d.18];S d.1z;S d.18}}l(d.G){S d.G}8 d},1N:7(a){l(1h a=="1t"){p b={};$.P(a.1O(/\\s/),7(){b[6]=w});a=b}8 a},5G:7(c,a,b){$.v.1T[c]=a;$.v.G[c]=b!=20?b:$.v.G[c];l(a.F<3){$.v.49(c,$.v.1N(c))}},1T:{14:7(c,d,a){l(!6.4e(a,d))8"1S-1Z";22(d.4f.3k()){1b\'2b\':p b=$(d).2M();8 b&&b.F>0;1b\'1B\':l(6.1D(d))8 6.1M(c,d)>0;5F:8 $.1q(c).F>0}},1r:7(f,h,j){l(6.K(h))8"1S-1Z";p g=6.2o(h);l(!6.q.G[h.u])6.q.G[h.u]={};g.43=6.q.G[h.u].1r;6.q.G[h.u].1r=g.1j;j=1h j=="1t"&&{1v:j}||j;l(g.31!==f){g.31=f;p k=6;6.4d(h);p i={};i[h.u]=f;$.2R($.H(w,{1v:j,41:"2S",40:"1d"+h.u,5A:"5z",17:i,1G:7(d){k.q.G[h.u].1r=g.43;p b=d===w;l(b){p e=k.1l;k.2E(h);k.1l=e;k.1k.2a(h);k.1m()}16{p a={};p c=(g.1j=d||k.2x(h,"1r"));a[h.u]=$.46(c)?c(f):c;k.1m(a)}g.J=b;k.4c(h,b)}},j));8"1i"}16 l(6.1i[h.u]){8"1i"}8 g.J},1z:7(b,c,a){8 6.K(c)||6.1M($.1q(b),c)>=a},18:7(b,c,a){8 6.K(c)||6.1M($.1q(b),c)<=a},2j:7(b,d,a){p c=6.1M($.1q(b),d);8 6.K(d)||(c>=a[0]&&c<=a[1])},1F:7(b,c,a){8 6.K(c)||b>=a},1x:7(b,c,a){8 6.K(c)||b<=a},2i:7(b,c,a){8 6.K(c)||(b>=a[0]&&b<=a[1])},1I:7(a,b){8 6.K(b)||/^((([a-z]|\\d|[!#\\$%&\'\\*\\+\\-\\/=\\?\\^X`{\\|}~]|[\\y-\\x\\E-\\C\\A-\\B])+(\\.([a-z]|\\d|[!#\\$%&\'\\*\\+\\-\\/=\\?\\^X`{\\|}~]|[\\y-\\x\\E-\\C\\A-\\B])+)*)|((\\3T)((((\\2k|\\1X)*(\\2V\\3S))?(\\2k|\\1X)+)?(([\\3R-\\5u\\3P\\3M\\5t-\\5r\\3Z]|\\5D|[\\5E-\\5o]|[\\5n-\\5m]|[\\y-\\x\\E-\\C\\A-\\B])|(\\\\([\\3R-\\1X\\3P\\3M\\2V-\\3Z]|[\\y-\\x\\E-\\C\\A-\\B]))))*(((\\2k|\\1X)*(\\2V\\3S))?(\\2k|\\1X)+)?(\\3T)))@((([a-z]|\\d|[\\y-\\x\\E-\\C\\A-\\B])|(([a-z]|\\d|[\\y-\\x\\E-\\C\\A-\\B])([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])*([a-z]|\\d|[\\y-\\x\\E-\\C\\A-\\B])))\\.)+(([a-z]|[\\y-\\x\\E-\\C\\A-\\B])|(([a-z]|[\\y-\\x\\E-\\C\\A-\\B])([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])*([a-z]|[\\y-\\x\\E-\\C\\A-\\B])))\\.?$/i.15(a)},1v:7(a,b){8 6.K(b)||/^(5l?|5j):\\/\\/(((([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])|(%[\\1W-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|[\\y-\\x\\E-\\C\\A-\\B])|(([a-z]|\\d|[\\y-\\x\\E-\\C\\A-\\B])([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])*([a-z]|\\d|[\\y-\\x\\E-\\C\\A-\\B])))\\.)+(([a-z]|[\\y-\\x\\E-\\C\\A-\\B])|(([a-z]|[\\y-\\x\\E-\\C\\A-\\B])([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])*([a-z]|[\\y-\\x\\E-\\C\\A-\\B])))\\.?)(:\\d*)?)(\\/((([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])|(%[\\1W-f]{2})|[!\\$&\'\\(\\)\\*\\+,;=]|:|@)+(\\/(([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])|(%[\\1W-f]{2})|[!\\$&\'\\(\\)\\*\\+,;=]|:|@)*)*)?)?(\\?((([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])|(%[\\1W-f]{2})|[!\\$&\'\\(\\)\\*\\+,;=]|:|@)|[\\5h-\\5g]|\\/|\\?)*)?(\\#((([a-z]|\\d|-|\\.|X|~|[\\y-\\x\\E-\\C\\A-\\B])|(%[\\1W-f]{2})|[!\\$&\'\\(\\)\\*\\+,;=]|:|@)|\\/|\\?)*)?$/i.15(a)},1u:7(a,b){8 6.K(b)||!/5e|5S/.15(2e 5T(a))},2q:7(a,b){8 6.K(b)||/^\\d{4}[\\/-]\\d{1,2}[\\/-]\\d{1,2}$/.15(a)},1s:7(a,b){8 6.K(b)||/^-?(?:\\d+|\\d{1,3}(?:,\\d{3})+)(?:\\.\\d+)?$/.15(a)},1U:7(a,b){8 6.K(b)||/^\\d+$/.15(a)},2c:7(b,e){l(6.K(e))8"1S-1Z";l(/[^0-9-]+/.15(b))8 I;p a=0,d=0,2p=I;b=b.1P(/\\D/g,"");Q(p n=b.F-1;n>=0;n--){p c=b.5c(n);p d=5a(c,10);l(2p){l((d*=2)>9)d-=9}a+=d;2p=!2p}8(a%10)==0},44:7(b,c,a){a=1h a=="1t"?a.1P(/,/g,\'|\'):"59|58?g|57";8 6.K(c)||b.62(2e 3s(".("+a+")$","i"))},2n:7(c,d,a){p b=$(a).56(".1d-2n").2J("4B.1d-2n",7(){$(d).J()});8 c==b.2M()}}});$.W=$.v.W})(2v);(7($){p c=$.2R;p d={};$.2R=7(a){a=$.H(a,$.H({},$.54,a));p b=a.40;l(a.41=="2S"){l(d[b]){d[b].2S()}8(d[b]=c.1Q(6,T))}8 c.1Q(6,T)}})(2v);(7($){$.P({3g:\'3F\',4B:\'3E\'},7(b,a){$.1E.37[a]={53:7(){l($.3H.4r)8 I;6.50(b,$.1E.37[a].2N,w)},4Z:7(){l($.3H.4r)8 I;6.4Y(b,$.1E.37[a].2N,w)},2N:7(e){T[0]=$.1E.2L(e);T[0].1A=a;8 $.1E.2m.1Q(6,T)}}});$.H($.2O,{1C:7(d,e,c){8 6.2J(d,7(a){p b=$(a.3G);l(b.2Z(e)){8 c.1Q(b,T)}})},4X:7(a,b){8 6.2H(a,[$.1E.2L({1A:a,3G:b})])}})})(2v);',62,389,'||||||this|function|return|||||||||||||if||||var|settings||||name|validator|true|uD7FF|u00A0||uFDF0|uFFEF|uFDCF||uF900|length|messages|extend|false|valid|optional|element|form|Please|enter|each|for|errorList|delete|arguments|currentForm|in|format|_|method|value||call|toHide|elements|required|test|else|data|maxlength|errorClass|pendingRequest|case|submitted|validate|add|rules|invalid|typeof|pending|message|successList|formSubmitted|showErrors|filter|toShow|attr|trim|remote|number|string|date|url|errorMap|max|metadata|minlength|type|input|delegate|checkable|event|min|success|console|email|classRuleSettings|errorsFor|unhighlight|getLength|normalizeRule|split|replace|apply|not|dependency|methods|digits|submitButton|da|x09|addClass|mismatch|undefined|reset|switch|submit|debug||validClass|currentElements|check|constructor|push|select|creditcard|groups|new|findByName|objectLength|focusInvalid|range|rangelength|x20|parameters|handle|equalTo|previousValue|bEven|dateISO|labelContainer|containers|depends|wrapper|jQuery|removeClass|defaultMessage|hide|errors|errorLabelContainer|resetForm|errorElement|staticRules|prepareElement|clean|prepareForm|triggerHandler|dependTypes|bind|break|fix|val|handler|fn|addWrapper|Number|ajax|abort|hideErrors|rulesCache|x0d|characters|than|window|is|param|old|idOrName|defaults|showLabel|submitHandler|theregex|special|highlight|meta|cancelSubmit|click|formatAndAdd|map|lastActive|catch|focus|findLastActive|ignore|button|toLowerCase|errorContainer|defaultShowErrors|grep|selected|error|numberOfInvalids|find|RegExp|checkForm|onsubmit|nothing|invalidHandler|Array|option|checkbox|remove|radio|text|makeArray|focusout|focusin|target|browser|init|autoCreateRanges|equal|or|x0c|size|try|x0b|ignoreTitle|x01|x0a|x22|attributeRules|between|classRules|no|metadataRules|x7f|port|mode|normalizeRules|originalMessage|accept|and|isFunction|the|to|addClassRules|numberDE|dateDE|stopRequest|startRequest|depend|nodeName|null|errorPlacement|errorContext|html|generated|checked|invalidElements|show|validElements|parent|field|msie|strong|findDefined|String|parentNode|customMessage|customMetaMessage|lastElement|id|on|blur|log|continue|onfocusout|removeAttrs|cancel|assigned|has|blockFocusCleanup|disabled|image|focusCleanup|can|onfocusin|visible|label|slice|textarea|file|password|unshift|keyup|triggerEvent|removeEventListener|teardown|addEventListener|appendTo|warn|setup|ajaxSettings|valueCache|unbind|gif|jpe|png|parseInt|prototype|charAt|greater|Invalid|unchecked|uF8FF|uE000|filled|ftp|less|https|x7e|x5d|x5b|blank|long|x1f|expr|x0e|x08|hidden|least|at|more|json|dataType|extension|with|x21|x23|default|addMethod|again|same|524288|2147483647|class|card|preventDefault|credit|only|boolean|ISO|NaN|Date|getElementsByName|document|insertAfter|URL|append|wrap|address|This|match|defined|No|setDefaults|Warning|returning|title|onclick|throw|onkeyup|removeAttr|checking|when|occured|exception'.split('|'),0,{}))


// 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;

	};

})());
 


Cufon.registerFont({"w":513,"face":{"font-family":"Myriad Pro Regular","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 11 5 3 3 4 3 2 2 4","ascent":"750","descent":"-250","x-height":"11","bbox":"-46 -750 838 250","underline-thickness":"50","underline-position":"-50","stemh":"67","stemv":"88","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":212,"k":{"T":41,"V":36,"W":36,"Y":46}},"!":{"d":"149,-193r-68,0r-14,-481r96,0xm114,11v-34,0,-58,-27,-58,-62v0,-36,25,-62,60,-62v35,0,58,26,58,62v0,35,-23,62,-60,62","w":230},"\"":{"d":"51,-692r87,0r-17,240r-54,0xm200,-692r87,0r-17,240r-53,0","w":337,"k":{"T":-17,"J":59,"M":5,"C":3,"G":3,"O":3,"Q":3,"V":-17,"W":-17,"Y":-3,"A":61,"f":-25,"g":10,"c":8,"d":8,"e":8,"o":8,"q":8,"t":-24,"v":-21,"w":-21,"y":-21,",":113,".":113}},"#":{"d":"188,-255r104,0r19,-145r-104,0xm154,0r-60,0r26,-196r-83,0r0,-59r92,0r19,-145r-87,0r0,-59r95,0r26,-191r59,0r-26,191r105,0r25,-191r59,0r-25,191r82,0r0,59r-91,0r-18,145r86,0r0,59r-95,0r-26,196r-60,0r26,-196r-104,0","w":497},"$":{"d":"281,85r-63,0r0,-100v-58,-1,-117,-19,-152,-44r24,-67v35,23,87,43,143,43v71,0,119,-41,119,-98v0,-55,-39,-89,-113,-119v-102,-40,-165,-87,-165,-174v0,-83,59,-146,150,-161r0,-100r63,0r0,97v59,2,100,18,130,35r-25,66v-21,-12,-62,-35,-126,-35v-77,0,-106,46,-106,87v0,51,37,78,124,114v103,43,155,93,155,182v0,80,-55,154,-158,170r0,104"},"%":{"d":"188,-661v90,0,149,70,149,193v0,137,-71,205,-155,205v-82,0,-151,-65,-152,-195v0,-130,70,-203,158,-203xm183,-608v-54,0,-84,65,-84,146v0,83,30,146,85,146v58,0,84,-62,84,-147v0,-80,-23,-145,-85,-145xm231,12r-56,0r383,-674r56,0xm612,-392v90,0,149,70,149,194v0,137,-71,205,-155,205v-82,0,-151,-65,-152,-196v0,-130,70,-203,158,-203xm607,-339v-54,0,-84,65,-84,147v0,83,30,146,85,146v58,0,84,-62,84,-148v0,-79,-23,-145,-85,-145","w":792},"&":{"d":"602,0r-104,0r-63,-65v-58,53,-122,76,-197,76v-131,0,-207,-88,-207,-189v0,-92,55,-155,132,-197v-30,-48,-56,-95,-56,-144v0,-83,59,-167,171,-167v84,0,149,55,149,143v0,71,-41,127,-148,180r0,4r164,187v31,-47,52,-112,65,-197r80,0v-18,106,-47,190,-97,249xm254,-55v57,0,106,-26,138,-61r-190,-213v-37,24,-87,66,-87,138v0,77,57,136,139,136xm271,-626v-55,0,-84,46,-84,98v0,49,23,86,51,122v68,-39,112,-75,112,-133v0,-41,-23,-87,-79,-87","w":605},"(":{"d":"195,-694r68,0v-73,99,-125,228,-125,410v0,178,55,305,125,405r-68,0v-63,-83,-131,-211,-131,-406v1,-196,68,-325,131,-409","w":284,"k":{"T":-48,"J":-17,"C":12,"G":12,"O":12,"Q":12,"V":-50,"W":-50,"X":-11,"Y":-41,"A":11,"j":-56}},")":{"d":"88,121r-68,0v70,-99,125,-228,125,-408v0,-180,-54,-307,-125,-407r68,0v63,82,131,211,131,407v-1,196,-68,324,-131,408","w":284},"*":{"d":"269,-686r60,35r-95,127r151,-20r0,68r-151,-19v28,45,65,81,96,123r-63,36v-22,-46,-38,-97,-63,-140r-64,141r-57,-36r95,-122r0,-3r-148,20r0,-68v48,4,103,18,147,17r-94,-123r61,-35v22,46,39,97,64,140","w":415},"+":{"d":"266,-532r64,0r0,235r226,0r0,60r-226,0r0,237r-64,0r0,-237r-226,0r0,-60r226,0r0,-235","w":596},",":{"d":"78,117r-62,7v22,-60,49,-167,60,-240r98,-10v-24,85,-68,196,-96,243","w":207,"k":{"\"":102,"'":102}},"-":{"d":"30,-302r247,0r0,64r-247,0r0,-64","w":307,"k":{"T":50,"J":20,"C":-14,"G":-14,"O":-14,"Q":-14,"V":11,"W":11,"X":22,"Y":50,"A":4,"g":-14,"c":-18,"d":-18,"e":-18,"o":-18,"q":-18,"v":5,"w":5,"y":5}},".":{"d":"110,11v-34,0,-58,-27,-58,-63v0,-36,25,-63,60,-63v35,0,59,26,59,63v0,36,-24,63,-61,63","w":207,"k":{"\"":102,"'":102}},"\/":{"d":"66,39r-67,0r278,-725r69,0","w":343},"0":{"d":"263,-661v136,0,215,122,215,329v0,221,-83,343,-226,343v-127,0,-216,-119,-216,-334v0,-219,95,-338,227,-338xm257,-593v-76,0,-132,94,-132,271v0,169,52,265,132,265v89,0,132,-105,132,-271v0,-160,-40,-265,-132,-265"},"1":{"d":"236,0r0,-568v-41,18,-76,41,-115,61r-17,-67r142,-76r75,0r0,650r-85,0"},"2":{"d":"460,0r-415,0r0,-54r69,-67v166,-158,242,-242,242,-340v0,-66,-31,-127,-128,-127v-59,0,-108,30,-138,55r-28,-62v44,-37,109,-66,183,-66v140,0,199,96,199,189v0,131,-152,277,-275,399r291,0r0,73"},"3":{"d":"42,-33r24,-67v25,15,82,40,144,40v112,0,149,-71,147,-126v-4,-108,-103,-137,-217,-130r0,-66v96,6,194,-16,194,-110v0,-52,-33,-98,-114,-98v-52,0,-102,23,-130,43r-24,-64v35,-25,101,-50,171,-50v228,-1,243,251,66,309r0,2v80,15,145,75,145,166v0,104,-82,195,-237,195v-73,0,-137,-23,-169,-44"},"4":{"d":"400,0r-83,0r0,-178r-302,0r0,-57r290,-415r95,0r0,404r91,0r0,68r-91,0r0,178xm104,-246r213,0r0,-217v0,-34,1,-68,3,-102r-3,0v-61,124,-142,208,-213,319"},"5":{"d":"160,-409v155,-17,286,45,286,198v0,127,-101,222,-242,222v-71,0,-130,-20,-162,-40r22,-67v27,16,80,36,140,36v82,0,154,-54,153,-141v0,-84,-57,-143,-186,-143v-38,0,-67,3,-91,6r42,-312r311,0r0,74r-248,0"},"6":{"d":"416,-660r0,72v-171,-4,-280,110,-292,235r2,0v31,-42,86,-76,158,-76v115,0,196,84,196,210v0,120,-81,230,-217,230v-138,0,-229,-108,-229,-277v0,-246,141,-388,382,-394xm257,-362v-63,0,-136,43,-136,118v0,107,51,187,144,187v75,0,126,-63,126,-156v0,-93,-53,-149,-134,-149"},"7":{"d":"57,-650r410,0r0,58r-283,592r-91,0r282,-577r-318,0r0,-73"},"8":{"d":"166,-339r-1,-3v-73,-34,-104,-90,-104,-146v0,-103,87,-173,202,-173v216,0,258,231,82,312r0,3v81,32,131,90,131,168v0,114,-97,189,-221,189v-136,0,-218,-80,-218,-175v0,-82,49,-141,129,-175xm257,-53v79,0,130,-49,130,-116v0,-78,-55,-117,-143,-142v-76,22,-117,73,-117,135v0,65,47,123,130,123xm258,-598v-73,0,-113,48,-113,104v-1,65,49,100,124,120v56,-19,99,-59,99,-118v0,-52,-31,-106,-110,-106"},"9":{"d":"96,10r0,-72v168,7,269,-86,293,-238r-3,0v-36,44,-88,69,-154,69v-116,0,-191,-88,-191,-199v0,-123,89,-231,222,-231v133,0,215,107,215,275v0,261,-134,394,-382,396xm253,-297v70,0,136,-33,136,-101v0,-111,-41,-196,-134,-196v-74,0,-127,66,-127,159v0,81,49,138,125,138"},":":{"d":"111,-342v-34,0,-58,-27,-58,-62v0,-37,25,-63,59,-63v36,0,59,26,59,63v0,35,-23,62,-60,62xm111,11v-34,0,-58,-27,-58,-62v0,-37,25,-63,59,-63v36,0,59,26,59,63v0,35,-23,62,-60,62","w":207},";":{"d":"78,116r-61,7v22,-60,49,-166,60,-240r97,-10v-24,86,-68,196,-96,243xm118,-342v-34,0,-58,-27,-58,-62v0,-37,25,-63,59,-63v36,0,59,26,59,63v0,35,-23,62,-60,62","w":207},"<":{"d":"66,-239r0,-54r464,-239r0,69r-391,196r0,2r391,196r0,69","w":596},"=":{"d":"556,-337r-516,0r0,-60r516,0r0,60xm556,-141r-516,0r0,-60r516,0r0,60","w":596},">":{"d":"530,-295r0,57r-464,238r0,-69r394,-196r0,-2r-394,-196r0,-69","w":596},"?":{"d":"220,-192r-79,0v-10,-76,2,-128,60,-199v44,-54,70,-92,70,-137v0,-51,-32,-85,-95,-86v-36,0,-76,12,-101,31r-24,-63v34,-24,90,-40,143,-40v115,0,167,71,167,147v0,68,-39,117,-86,174v-50,61,-64,102,-55,173xm178,11v-34,0,-58,-27,-58,-62v0,-37,25,-63,59,-63v36,0,59,26,59,63v0,35,-23,62,-60,62","w":406},"@":{"d":"448,-255r21,-112v-111,-36,-210,58,-209,172v0,44,22,76,66,76v58,0,111,-74,122,-136xm508,22r16,43v-218,109,-481,-9,-481,-273v0,-206,143,-385,365,-385v174,0,290,123,290,290v0,150,-84,238,-177,238v-40,0,-77,-26,-75,-88r-3,0v-35,59,-81,88,-141,88v-58,0,-108,-47,-108,-126v0,-124,98,-237,237,-237v42,0,81,9,107,21r-34,181v-15,76,-3,111,30,112v51,2,108,-67,108,-182v0,-146,-87,-251,-242,-251v-163,0,-300,130,-300,333v0,167,109,271,257,271v57,0,110,-12,151,-35","w":737},"A":{"d":"424,-212r-239,0r-70,212r-90,0r230,-674r104,0r230,674r-93,0xm203,-280r204,0r-67,-194v-17,-43,-22,-88,-37,-123v-25,109,-66,214,-100,317","w":612,"k":{"T":77,"J":-19,"M":4,"C":15,"G":15,"O":15,"Q":15,"U":28,"V":53,"W":53,"X":14,"Y":79,"a":-4,"f":7,"g":12,"b":3,"h":3,"k":3,"l":3,"j":4,"i":3,"m":3,"n":3,"p":3,"r":3,"c":12,"d":12,"e":12,"o":12,"q":12,"s":6,"t":10,"u":12,"v":21,"w":21,"y":21,"z":-14,"-":3,")":9,"]":9,"}":9,"\"":59,"'":59}},"B":{"d":"501,-192v0,151,-113,197,-290,198v-60,0,-106,-4,-135,-8r0,-662v96,-21,289,-27,343,34v35,26,57,66,57,119v0,66,-44,123,-114,148r0,3v64,15,139,68,139,168xm163,-606r0,218r79,0v91,0,145,-49,145,-114v0,-78,-59,-110,-147,-110v-40,0,-63,3,-77,6xm163,-323r0,257v114,14,248,-3,246,-127v-1,-116,-119,-138,-246,-130","w":542,"k":{"T":9,"V":-4,"W":-4,"Y":15,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"v":-4,"w":-4,"y":-4,"-":-5,",":13,".":13}},"C":{"d":"529,-91r17,70v-31,16,-96,32,-178,32v-190,0,-332,-120,-332,-342v0,-212,143,-354,352,-354v83,0,137,18,160,30r-22,71v-32,-16,-79,-28,-135,-28v-158,0,-263,101,-263,278v0,166,95,271,258,271v54,0,108,-11,143,-28","w":580,"k":{"T":-28,"J":-4,"C":21,"G":21,"O":21,"Q":21,"V":-12,"W":-12,"Y":-3,"A":-4,"a":7,"i":3,"m":3,"n":3,"p":3,"r":3,"c":11,"d":11,"e":11,"o":11,"q":11,"u":12,"v":20,"w":20,"y":20,"z":-4,")":-17,"]":-17,"}":-17}},"D":{"d":"630,-353v0,236,-146,361,-396,359v-63,0,-114,-3,-158,-8r0,-662v53,-9,116,-15,185,-15v238,2,369,103,369,326xm163,-601r0,533v22,3,54,4,88,4v187,0,287,-104,287,-286v0,-159,-89,-260,-273,-260v-45,0,-79,4,-102,9","w":666,"k":{"T":25,"X":27,"Y":28,"A":14,"f":-16,"g":-6,"j":-5,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"t":-17,"u":-3,"v":-14,"w":-14,"y":-14,"z":3,"x":5,"-":-14,")":7,"]":7,"}":7,",":34,".":34}},"E":{"d":"424,-388r0,72r-261,0r0,243r292,0r0,73r-380,0r0,-674r365,0r0,73r-277,0r0,213r261,0","w":492,"k":{"T":-16,"J":-18,"V":-9,"W":-9,"Y":-3,"g":6,"c":4,"d":4,"e":4,"o":4,"q":4,"t":3,"u":7,"v":7,"w":7,"y":7,"z":-3,",":4,".":4}},"F":{"d":"75,0r0,-674r363,0r0,73r-275,0r0,224r254,0r0,72r-254,0r0,305r-88,0","w":487,"k":{"J":85,"M":18,"A":78,"a":45,"g":16,"b":17,"h":17,"k":17,"l":17,"i":26,"m":26,"n":26,"p":26,"r":26,"c":31,"d":31,"e":31,"o":31,"q":31,"u":35,"v":21,"w":21,"y":21,":":13,";":13,",":97,".":97}},"G":{"d":"382,7v-205,0,-346,-128,-346,-340v0,-201,139,-348,365,-348v78,0,140,17,169,31r-22,71v-36,-17,-81,-29,-149,-29v-164,0,-271,102,-271,271v0,171,102,272,260,272v57,0,96,-8,116,-18r0,-201r-136,0r0,-70r222,0r0,324v-39,15,-117,37,-208,37","w":646,"k":{"a":-8,"c":-5,"d":-5,"e":-5,"o":-5,"q":-5}},"H":{"d":"75,-674r88,0r0,282r326,0r0,-282r88,0r0,674r-88,0r0,-316r-326,0r0,316r-88,0r0,-674","w":652,"k":{"Y":7,"f":-10,"b":-10,"h":-10,"k":-10,"l":-10,"j":-8,"i":-10,"m":-10,"n":-10,"p":-10,"r":-10,"t":-16,"v":-9,"w":-9,"y":-9,"z":-11,"x":-5}},"I":{"d":"75,-674r88,0r0,674r-88,0r0,-674","w":239,"k":{"Y":7,"f":-10,"b":-10,"h":-10,"k":-10,"l":-10,"j":-8,"i":-10,"m":-10,"n":-10,"p":-10,"r":-10,"t":-16,"v":-9,"w":-9,"y":-9,"z":-11,"x":-5}},"J":{"d":"213,-230r0,-444r88,0r0,451v2,220,-140,261,-297,218r12,-71v107,31,197,15,197,-154","w":370,"k":{"v":-10,"w":-10,"y":-10,")":-42,"]":-42,"}":-42,",":12,".":12}},"K":{"d":"76,0r0,-674r87,0r0,325r3,0v82,-115,172,-215,259,-325r108,0r-244,286r263,388r-103,0r-221,-331r-65,74r0,257r-87,0","w":542,"k":{"T":-21,"J":-38,"C":17,"G":17,"O":17,"Q":17,"V":-15,"W":-15,"Y":7,"A":-10,"Z":-20,"a":-16,"g":5,"b":-10,"h":-10,"k":-10,"l":-10,"i":-10,"m":-10,"n":-10,"p":-10,"r":-10,"u":6,"v":16,"w":16,"y":16,":":-22,";":-22,"-":18,")":-23,"]":-23,"}":-23,",":-17,".":-17}},"L":{"d":"75,0r0,-674r88,0r0,601r288,0r0,73r-376,0","w":472,"k":{"T":88,"J":-11,"C":39,"G":39,"O":39,"Q":39,"U":36,"V":59,"W":59,"Y":84,"c":14,"d":14,"e":14,"o":14,"q":14,"t":4,"u":15,"v":27,"w":27,"y":27,"-":42,"\"":98,"'":98}},"M":{"d":"660,0r-16,-296v-5,-94,-11,-208,-11,-291r-2,0v-24,78,-51,163,-85,256r-119,327r-66,0r-110,-321v-34,-95,-55,-186,-79,-262v-2,84,-7,196,-13,298r-18,289r-83,0r47,-674r111,0r115,326v30,82,47,161,70,227v48,-177,130,-379,192,-553r111,0r42,674r-86,0","w":804,"k":{"T":10,"A":10,"a":-6,"j":-10,"i":-12,"m":-12,"n":-12,"p":-12,"r":-12,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"u":-3,"v":-7,"w":-7,"y":-7,"-":-6}},"N":{"d":"158,0r-82,0r0,-674r96,0r215,341v49,79,89,150,120,219r3,-1v-15,-169,-8,-372,-10,-559r82,0r0,674r-88,0r-214,-342v-47,-75,-92,-152,-125,-225r-3,1v5,85,6,166,6,278r0,288","w":658,"k":{"Y":7,"f":-10,"b":-10,"h":-10,"k":-10,"l":-10,"j":-8,"i":-10,"m":-10,"n":-10,"p":-10,"r":-10,"t":-16,"v":-9,"w":-9,"y":-9,"z":-11,"x":-5}},"O":{"d":"348,-686v185,0,304,141,304,342v0,231,-141,355,-313,355v-179,0,-303,-139,-303,-343v0,-214,132,-354,312,-354xm345,-615v-145,0,-217,134,-217,281v0,145,78,274,216,274v138,0,216,-127,216,-280v0,-135,-70,-275,-215,-275","w":689,"k":{"T":25,"X":27,"Y":28,"A":14,"f":-16,"g":-6,"j":-5,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"t":-17,"u":-3,"v":-14,"w":-14,"y":-14,"z":3,"x":5,"-":-14,")":7,"]":7,"}":7,",":34,".":34}},"P":{"d":"491,-482v5,172,-156,239,-328,212r0,270r-87,0r0,-666v42,-7,97,-13,167,-13v153,1,244,59,248,197xm163,-603r0,262v19,5,43,7,72,7v105,0,169,-52,169,-143v0,-90,-64,-133,-159,-133v-38,0,-67,3,-82,7","w":532,"k":{"J":74,"M":12,"X":13,"Y":9,"A":84,"Z":30,"a":26,"g":24,"b":5,"h":5,"k":5,"l":5,"i":16,"m":16,"n":16,"p":16,"r":16,"c":25,"d":25,"e":25,"o":25,"q":25,"s":22,"t":-6,"u":15,"v":-4,"w":-4,"y":-4,":":11,";":11,"-":17,",":140,".":140}},"Q":{"d":"632,99v-108,-26,-199,-63,-299,-88v-161,-6,-297,-124,-297,-342v0,-216,131,-355,313,-355v184,0,303,142,303,341v0,174,-80,284,-192,324r0,4v67,17,140,33,197,43xm344,-60v138,0,216,-127,216,-280v0,-136,-70,-275,-213,-275v-147,0,-219,136,-219,282v0,144,78,273,216,273","w":689,"k":{"T":25,"X":27,"Y":28,"A":14,"f":-16,"g":-6,"j":-5,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"t":-17,"u":-3,"v":-14,"w":-14,"y":-14,"z":3,"x":5,"-":-14,")":7,"]":7,"}":7,",":34,".":34}},"R":{"d":"243,-679v155,-1,248,50,248,184v0,88,-56,147,-126,171r0,3v51,18,82,66,98,136v22,94,38,159,52,185r-90,0v-11,-20,-27,-77,-44,-161v-24,-124,-88,-137,-218,-131r0,292r-87,0r0,-665v44,-8,108,-14,167,-14xm163,-604r0,246r89,0v93,0,152,-51,152,-128v0,-87,-63,-125,-155,-125v-42,0,-71,3,-86,7","w":538,"k":{"T":-9,"C":-3,"G":-3,"O":-3,"Q":-3,"V":-16,"W":-16,"X":-5,"Y":11,"A":-5,"a":-12,"b":-9,"h":-9,"k":-9,"l":-9,"i":-10,"m":-10,"n":-10,"p":-10,"r":-10,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"t":-19,"v":-14,"w":-14,"y":-14}},"S":{"d":"42,-33r23,-73v39,25,95,44,155,44v89,0,141,-47,141,-115v0,-62,-36,-99,-127,-133v-110,-40,-178,-98,-178,-192v0,-105,87,-183,218,-183v68,0,119,16,148,33r-24,71v-21,-13,-66,-32,-127,-32v-92,0,-127,55,-127,101v0,63,41,94,134,130v114,44,171,99,171,198v0,104,-76,195,-235,195v-65,0,-136,-20,-172,-44","w":493,"k":{"a":-3,"j":4,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"t":3,"v":8,"w":8,"y":8,"-":-5}},"T":{"d":"204,0r0,-600r-205,0r0,-74r499,0r0,74r-206,0r0,600r-88,0","w":497,"k":{"i":45,"T":-38,"J":43,"C":27,"G":27,"O":27,"Q":27,"V":-40,"W":-40,"X":-22,"Y":-28,"A":75,"S":6,"a":64,"g":64,"b":7,"h":7,"k":7,"l":7,"m":45,"n":45,"p":45,"r":45,"c":71,"d":71,"e":71,"o":71,"q":71,"s":53,"u":45,"v":40,"w":40,"y":40,"z":51,"x":34,":":26,";":26,"-":51,")":-60,"]":-60,"}":-60,"\"":-17,"'":-17,",":60,".":60}},"U":{"d":"75,-674r88,0r0,400v0,150,67,214,157,214v99,0,164,-66,164,-214r0,-400r88,0r0,394v0,207,-109,291,-255,291v-138,0,-242,-78,-242,-288r0,-397","w":647,"k":{"A":34,"a":4,"f":-7,"s":6,"t":-4,"v":3,"w":3,"y":3,"z":5,"x":7,",":27,".":27}},"V":{"d":"320,0r-96,0r-221,-674r95,0r105,332v28,91,53,173,72,252r2,0v49,-191,130,-396,191,-584r93,0","w":558,"k":{"T":-33,"J":23,"V":-16,"W":-16,"A":57,"a":33,"g":9,"b":5,"h":5,"k":5,"l":5,"i":16,"m":16,"n":16,"p":16,"r":16,"c":33,"d":33,"e":33,"o":33,"q":33,"s":25,"t":-9,"u":18,"v":4,"w":4,"y":4,"z":3,":":16,";":16,"-":14,")":-55,"]":-55,"}":-55,"\"":-19,"'":-19,",":55,".":55}},"W":{"d":"277,0r-91,0r-171,-674r92,0r80,341v20,84,38,168,50,233r2,0v34,-179,100,-394,145,-574r91,0r82,342v21,79,33,165,49,231v14,-74,33,-149,54,-233r89,-340r89,0r-191,674r-91,0r-85,-351v-23,-85,-31,-156,-46,-220v-33,180,-102,391,-148,571","w":846,"k":{"T":-33,"J":23,"V":-16,"W":-16,"A":57,"a":33,"g":9,"b":5,"h":5,"k":5,"l":5,"i":16,"m":16,"n":16,"p":16,"r":16,"c":33,"d":33,"e":33,"o":33,"q":33,"s":25,"t":-9,"u":18,"v":4,"w":4,"y":4,"z":3,":":16,";":16,"-":14,")":-55,"]":-55,"}":-55,"\"":-19,"'":-19,",":55,".":55}},"X":{"d":"546,0r-101,0r-164,-282r-2,0r-154,282r-100,0r206,-341r-198,-333r101,0r151,272r3,0v44,-91,102,-183,152,-272r101,0r-205,328","w":571,"k":{"T":-8,"J":-4,"C":29,"G":29,"O":29,"Q":29,"V":-9,"W":-9,"X":15,"Y":-5,"A":9,"a":6,"c":11,"d":11,"e":11,"o":11,"q":11,"u":8,"v":19,"w":19,"y":19,"-":21}},"Y":{"d":"314,0r-88,0r0,-286r-214,-388r100,0r95,186v25,51,46,92,67,139r2,0v46,-105,112,-221,165,-325r98,0r-225,387r0,287","w":541,"k":{"T":-34,"J":54,"M":10,"C":36,"G":36,"O":36,"Q":36,"V":-29,"W":-29,"X":3,"Y":-3,"A":81,"S":13,"B":7,"D":7,"E":7,"F":7,"H":7,"I":7,"K":7,"L":7,"N":7,"P":7,"R":7,"a":70,"g":40,"b":9,"h":9,"k":9,"l":9,"i":13,"m":13,"n":13,"p":13,"r":13,"c":76,"d":76,"e":76,"o":76,"q":76,"s":52,"t":19,"u":53,"v":29,"w":29,"y":29,"z":25,"x":26,":":33,";":33,"-":51,")":-56,"]":-56,"}":-56,"\"":-8,"'":-8,",":95,".":95}},"Z":{"d":"30,0r0,-51r373,-547r0,-3r-341,0r0,-73r455,0r0,53r-372,545r0,3r377,0r0,73r-492,0","w":553,"k":{"J":-8,"C":21,"G":21,"O":21,"Q":21,"X":6,"c":12,"d":12,"e":12,"o":12,"q":12,"u":7,"v":9,"w":9,"y":9,"-":27}},"[":{"d":"264,112r-183,0r0,-798r183,0r0,55r-114,0r0,688r114,0r0,55","w":284,"k":{"T":-48,"J":-17,"C":12,"G":12,"O":12,"Q":12,"V":-50,"W":-50,"X":-11,"Y":-41,"A":11,"j":-56}},"\\":{"d":"342,39r-68,0r-272,-725r68,0","w":341},"]":{"d":"20,-686r183,0r0,798r-183,0r0,-55r114,0r0,-688r-114,0r0,-55","w":284},"^":{"d":"536,-189r-70,0r-167,-388r-2,0r-167,388r-69,0r206,-461r63,0","w":596},"_":{"d":"0,75r500,0r0,50r-500,0r0,-50","w":500},"a":{"d":"229,-494v266,0,156,268,191,494r-79,0r-7,-61r-3,0v-27,38,-79,72,-148,72v-98,0,-148,-69,-148,-139v0,-117,104,-181,291,-180v1,-52,-6,-121,-110,-121v-46,0,-93,13,-127,36r-20,-59v40,-25,99,-42,160,-42xm205,-54v74,0,123,-44,123,-109r0,-84v-96,-2,-205,15,-205,109v0,58,38,84,82,84","w":482},"b":{"d":"73,-125r0,-585r87,0r0,304r2,0v31,-54,87,-88,165,-88v121,0,205,100,205,246v0,173,-110,259,-218,259v-72,0,-124,-31,-165,-90r-5,79r-75,0v2,-33,4,-82,4,-125xm298,-425v-69,0,-135,57,-138,145r0,86v3,83,63,135,136,135v93,0,147,-75,147,-186v0,-97,-50,-180,-145,-180","w":569,"k":{"T":40,"v":7,"w":7,"y":7,"z":7,"x":14,"-":-15,")":3,"]":3,"}":3,"\"":11,"'":11,",":24,".":24}},"c":{"d":"403,-83r15,66v-23,11,-74,28,-139,28v-146,0,-241,-99,-241,-247v0,-149,102,-258,260,-258v52,0,98,13,122,26r-20,67v-21,-11,-54,-23,-102,-23v-111,0,-171,83,-171,183v0,112,72,181,168,181v50,0,83,-12,108,-23","w":448,"k":{"T":12,"f":-3,"c":6,"d":6,"e":6,"o":6,"q":6,"t":-13,"v":-18,"w":-18,"y":-18,"-":-5,",":10,".":10}},"d":{"d":"403,-710r87,0r0,585v0,43,2,92,4,125r-78,0r-4,-84r-3,0v-26,54,-84,95,-163,95v-117,0,-208,-99,-208,-246v-1,-161,100,-259,217,-259v77,0,122,38,148,73r0,-289xm270,-60v69,0,133,-55,133,-143r0,-84v-1,-82,-53,-138,-131,-138v-91,0,-145,80,-145,186v0,98,49,179,143,179","w":564,"k":{",":10,".":10}},"e":{"d":"462,-226r-340,0v2,119,77,168,166,168v63,0,102,-11,134,-25r16,63v-31,14,-85,31,-162,31v-149,0,-238,-99,-238,-245v0,-146,86,-260,227,-260v175,0,210,147,197,268xm123,-289r257,0v1,-55,-23,-142,-122,-142v-90,0,-128,81,-135,142","w":501,"k":{"T":33,"x":3,"-":-28,",":12,".":12}},"f":{"d":"169,0r-87,0r0,-417r-67,0r0,-67r67,0v-2,-81,12,-147,56,-192v48,-49,132,-55,193,-31r-12,68v-13,-6,-30,-11,-56,-11v-84,0,-97,79,-94,166r117,0r0,67r-117,0r0,417","w":292,"k":{"g":12,"c":13,"d":13,"e":13,"o":13,"q":13,"s":9,"t":-11,":":-32,";":-32,")":-103,"]":-103,"}":-103,"\"":-56,"'":-56,",":33,".":33}},"g":{"d":"491,-484v-8,116,-4,284,-4,413v0,112,-22,180,-69,222v-87,78,-242,73,-338,18r22,-68v32,21,82,39,142,39v90,0,156,-47,156,-170v0,-17,4,-40,-2,-53v-26,45,-79,81,-154,81v-120,0,-206,-102,-206,-236v0,-164,107,-256,219,-256v86,0,127,46,153,83r3,-73r78,0xm270,-69v69,0,129,-54,129,-137r0,-87v-3,-81,-51,-133,-128,-133v-84,0,-144,71,-144,183v0,95,49,174,143,174","w":559,"k":{"T":32,"f":-4,"i":6,"m":6,"n":6,"p":6,"r":6,",":15,".":15}},"h":{"d":"285,-421v-70,0,-124,52,-124,129r0,292r-88,0r0,-710r88,0r0,303r2,0v26,-48,82,-86,153,-87v65,0,169,40,169,206r0,288r-88,0r0,-278v0,-78,-29,-143,-112,-143","w":555,"k":{"T":50,"t":4,"v":13,"w":13,"y":13,"\"":7,"'":7}},"i":{"d":"161,0r-88,0r0,-484r88,0r0,484xm117,-675v32,0,54,24,54,55v0,30,-21,54,-56,54v-32,0,-53,-24,-53,-54v0,-30,22,-55,55,-55","w":234},"j":{"d":"-36,211r-10,-69v41,-3,75,-14,96,-38v24,-27,34,-65,34,-181r0,-407r88,0r0,441v0,94,-15,155,-58,199v-39,39,-103,55,-150,55xm128,-675v33,0,54,25,54,55v0,29,-20,54,-56,54v-32,0,-53,-25,-53,-54v0,-30,22,-55,55,-55","w":243,"k":{",":11,".":11}},"k":{"d":"160,-710r0,448v16,-14,29,-38,44,-55r143,-167r105,0r-186,199r213,285r-108,0r-166,-232r-45,50r0,182r-87,0r0,-710r87,0","w":469,"k":{"T":19,"a":-18,"b":-17,"h":-17,"k":-17,"l":-17,"i":-17,"m":-17,"n":-17,"p":-17,"r":-17,"u":-4,"v":-13,"w":-13,"y":-13,":":-10,";":-10,"-":10,",":-14,".":-14}},"l":{"d":"73,0r0,-710r88,0r0,710r-88,0","w":236,"k":{",":10,".":10}},"m":{"d":"275,-422v-68,0,-116,58,-116,131r0,291r-86,0r0,-353v0,-51,-2,-91,-4,-131r77,0r4,79r3,0v27,-46,72,-89,153,-89v67,0,113,44,138,97v34,-57,78,-97,161,-97v65,0,160,42,160,210r0,284r-86,0r0,-273v0,-94,-35,-149,-105,-149v-65,0,-112,52,-112,123r0,299r-86,0r0,-290v0,-77,-34,-132,-101,-132","w":834,"k":{"T":50,"t":4,"v":13,"w":13,"y":13,"\"":7,"'":7}},"n":{"d":"285,-422v-70,0,-124,53,-124,131r0,291r-88,0r0,-353v0,-51,-1,-91,-4,-131r78,0v4,25,0,58,7,80v24,-45,80,-90,160,-90v67,0,171,40,171,206r0,288r-88,0r0,-279v0,-78,-29,-143,-112,-143","w":555,"k":{"T":50,"t":4,"v":13,"w":13,"y":13,"\"":7,"'":7}},"o":{"d":"278,-494v139,0,233,101,233,248v0,179,-125,257,-241,257v-130,0,-232,-96,-232,-249v0,-161,107,-256,240,-256xm276,-428v-103,0,-148,96,-148,187v0,106,60,186,146,186v84,0,147,-79,147,-188v0,-82,-41,-185,-145,-185","w":549,"k":{"T":40,"v":7,"w":7,"y":7,"z":7,"x":14,"-":-15,")":3,"]":3,"}":3,"\"":11,"'":11,",":24,".":24}},"p":{"d":"73,198r0,-524v0,-62,-2,-112,-4,-158r78,0v4,26,0,60,7,83v35,-59,93,-93,172,-93v118,0,206,99,206,245v0,174,-107,260,-221,260v-66,0,-118,-31,-151,-76r0,263r-87,0xm299,-424v-71,0,-134,58,-139,143r0,84v1,86,63,139,136,139v93,0,147,-76,147,-187v0,-96,-51,-179,-144,-179","w":569,"k":{"T":40,"v":7,"w":7,"y":7,"z":7,"x":14,"-":-15,")":3,"]":3,"}":3,"\"":11,"'":11,",":24,".":24}},"q":{"d":"403,198r0,-272r-2,0v-27,47,-80,85,-158,85v-113,0,-205,-97,-205,-244v0,-182,117,-261,219,-261v77,0,123,40,151,83r3,-73r83,0v-2,40,-4,83,-4,133r0,549r-87,0xm270,-59v69,1,133,-55,133,-138r0,-91v-2,-81,-53,-136,-130,-136v-91,0,-146,77,-146,185v0,97,46,180,143,180","w":563,"k":{"T":31,",":8,".":8}},"r":{"d":"312,-409v-96,-15,-151,51,-151,151r0,258r-88,0r0,-333v0,-57,-1,-106,-4,-151r77,0r4,96r3,0v27,-72,82,-115,159,-104r0,83","w":327,"k":{"T":14,"a":5,"f":-30,"g":8,"b":-4,"h":-4,"k":-4,"l":-4,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"c":10,"d":10,"e":10,"o":10,"q":10,"t":-24,"v":-25,"w":-25,"y":-25,"z":-9,"x":-18,":":-9,";":-9,"-":5,",":53,".":53}},"s":{"d":"40,-23r21,-66v27,16,73,34,117,34v63,0,93,-31,93,-72v0,-42,-25,-64,-89,-88v-88,-32,-129,-79,-129,-137v0,-78,64,-142,167,-142v49,0,92,13,118,30r-21,64v-19,-12,-54,-29,-99,-29v-52,0,-80,30,-80,66v0,40,28,59,91,83v83,32,127,73,127,145v0,86,-67,146,-180,146v-53,0,-102,-14,-136,-34","w":396,"k":{"T":24,",":11,".":11}},"t":{"d":"222,11v-95,-2,-129,-61,-129,-164r0,-264r-75,0r0,-67r75,0r0,-90r86,-26r0,116r126,0r0,67r-126,0r0,261v0,60,17,94,66,94v24,0,38,-2,51,-6r4,67v-17,6,-44,12,-78,12","w":331,"k":{"g":6,"c":6,"d":6,"e":6,"o":6,"q":6,"v":-9,"w":-9,"y":-9,"-":5,",":3,".":3}},"u":{"d":"266,-62v75,0,124,-51,124,-126r0,-296r88,0r0,351v0,51,1,95,4,133r-78,0v-4,-25,0,-58,-7,-79v-22,39,-74,90,-160,90v-76,0,-167,-43,-167,-212r0,-283r88,0r0,267v0,92,29,155,108,155","w":551,"k":{"T":31,",":8,".":8}},"v":{"d":"13,-484r94,0r95,271v16,45,29,85,39,125r3,0v11,-40,25,-80,41,-125r94,-271r92,0r-190,484r-84,0","w":481,"k":{"T":30,"a":4,"g":10,"c":10,"d":10,"e":10,"o":10,"q":10,"s":6,"v":-12,"w":-12,"y":-12,":":-24,";":-24,"-":4,",":39,".":39}},"w":{"d":"18,-484r90,0r65,246v13,54,26,104,35,154r3,0v33,-135,82,-270,122,-400r74,0r75,242v18,58,32,109,43,158r3,0v24,-132,72,-272,106,-400r87,0r-156,484r-80,0r-74,-231v-19,-53,-28,-107,-45,-159v-30,141,-80,260,-122,390r-80,0","w":736,"k":{"T":30,"a":4,"g":10,"c":10,"d":10,"e":10,"o":10,"q":10,"s":6,"v":-12,"w":-12,"y":-12,":":-24,";":-24,"-":4,",":39,".":39}},"x":{"d":"16,-484r98,0r119,182r2,0r116,-182r96,0r-165,234r169,250r-99,0r-72,-109v-21,-27,-33,-59,-54,-84v-37,66,-81,129,-121,193r-97,0r172,-247","w":463,"k":{"T":22,"c":15,"d":15,"e":15,"o":15,"q":15,"s":6,"t":-13,"v":-15,"w":-15,"y":-15,"-":6}},"y":{"d":"36,147v69,-24,130,-77,158,-162v0,-5,-2,-12,-7,-23r-178,-446r96,0r105,286v14,31,21,74,34,99v9,-29,19,-66,31,-101r96,-284r93,0v-81,193,-181,547,-298,648v-44,37,-86,52,-108,56","w":471,"k":{"T":30,"a":4,"g":10,"c":10,"d":10,"e":10,"o":10,"q":10,"s":6,"v":-12,"w":-12,"y":-12,":":-24,";":-24,"-":4,",":39,".":39}},"z":{"d":"18,0r0,-51r218,-285v21,-27,45,-49,64,-78r-262,0r0,-70r368,0r0,55r-216,281v-20,28,-43,51,-62,78r282,0r0,70r-392,0","w":428,"k":{"T":20,"c":7,"d":7,"e":7,"o":7,"q":7,"v":-24,"w":-24,"y":-24}},"{":{"d":"93,-25v0,-53,16,-110,16,-163v0,-32,-10,-75,-81,-75r0,-51v142,-7,60,-146,65,-241v5,-99,68,-135,166,-131r0,55v-68,-4,-98,26,-97,86v1,49,14,97,15,147v2,67,-32,93,-73,110v45,12,73,45,73,109v0,97,-57,249,82,236r0,55v-97,4,-166,-28,-166,-137","w":284,"k":{"T":-48,"J":-17,"C":12,"G":12,"O":12,"Q":12,"V":-50,"W":-50,"X":-11,"Y":-41,"A":11,"j":-56}},"|":{"d":"86,-750r67,0r0,1000r-67,0r0,-1000","w":239},"}":{"d":"191,-555v0,54,-16,111,-16,167v0,35,10,74,81,74r0,51v-141,10,-61,141,-65,238v-5,109,-69,141,-166,137r0,-55v66,4,98,-25,97,-87v0,-51,-14,-98,-15,-149v-2,-67,32,-94,73,-111v-45,-12,-73,-44,-73,-108v0,-96,59,-245,-82,-233r0,-55v98,-4,165,32,166,131","w":284},"~":{"d":"433,-207v-63,0,-199,-86,-265,-88v-36,0,-58,25,-59,85r-60,0v-3,-100,50,-151,119,-151v64,0,197,87,266,87v36,0,53,-29,54,-84r59,0v5,111,-52,151,-114,151","w":596},"'":{"d":"51,-692r87,0r-17,240r-54,0","w":188,"k":{"T":-17,"J":59,"M":5,"C":3,"G":3,"O":3,"Q":3,"V":-17,"W":-17,"Y":-3,"A":61,"f":-25,"g":10,"c":8,"d":8,"e":8,"o":8,"q":8,"t":-24,"v":-21,"w":-21,"y":-21,",":113,".":113}},"`":{"d":"22,-693r96,0r88,143r-62,0","w":300},"\u00a0":{"w":212,"k":{"T":41,"V":36,"W":36,"Y":46}}}});
Cufon.registerFont({"w":555,"face":{"font-family":"Myriad Pro Bold","font-weight":700,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 11 7 3 3 4 3 2 2 4","ascent":"750","descent":"-250","x-height":"11","bbox":"-39 -750 875 250","underline-thickness":"50","underline-position":"-50","stemh":"112","stemv":"152","unicode-range":"U+0020-U+20AC"},"glyphs":{" ":{"w":202,"k":{"T":39,"V":37,"W":37,"Y":40}},"!":{"d":"191,-221r-114,0r-22,-453r158,0xm223,-80v0,53,-35,92,-91,91v-52,0,-88,-39,-88,-91v0,-54,37,-91,90,-91v53,0,89,37,89,91","w":268},"\"":{"d":"35,-692r135,0r-23,271r-89,0xm227,-692r135,0r-23,271r-89,0","w":397,"k":{"T":-9,"J":58,"C":9,"G":9,"O":9,"Q":9,"V":-9,"W":-9,"X":-4,"Y":-8,"A":46,"f":-25,"g":19,"c":13,"d":13,"e":13,"o":13,"q":13,"t":-22,"v":-6,"w":-6,"y":-6,",":125,".":125}},"#":{"d":"223,-271r92,0r15,-113r-91,0xm183,0r-90,0r26,-179r-82,0r0,-92r97,0r16,-113r-84,0r0,-92r98,0r26,-174r88,0r-25,174r92,0r25,-174r89,0r-25,174r80,0r0,92r-95,0r-15,113r82,0r0,92r-98,0r-25,179r-90,0r26,-179r-91,0","w":550},"$":{"d":"324,87r-99,0r0,-95v-67,-3,-132,-22,-170,-43r30,-117v42,23,101,44,166,44v58,0,97,-23,97,-62v0,-38,-32,-62,-107,-87v-107,-36,-180,-86,-180,-183v0,-89,62,-158,169,-178r0,-95r98,0r0,88v66,2,111,17,146,33r-30,113v-25,-12,-72,-35,-144,-35v-65,0,-86,29,-86,57v0,32,35,54,121,85v119,42,166,97,166,188v0,89,-62,165,-177,184r0,103"},"%":{"d":"210,-661v111,0,174,82,174,193v0,136,-86,208,-180,208v-99,0,-177,-74,-177,-197v0,-116,71,-204,183,-204xm205,-578v-45,0,-65,52,-65,118v-1,68,23,117,67,117v43,0,64,-44,64,-118v0,-66,-18,-117,-66,-117xm293,11r-82,0r374,-671r81,0xm678,-391v111,0,174,82,174,193v0,135,-86,207,-180,207v-98,0,-176,-74,-176,-196v0,-116,71,-204,182,-204xm674,-308v-45,0,-65,52,-65,117v-1,68,23,117,66,117v43,0,64,-44,64,-117v0,-66,-18,-117,-65,-117","w":880},"&":{"d":"672,0r-177,0r-44,-48v-44,34,-105,59,-185,59v-287,3,-295,-298,-107,-385v-25,-38,-52,-82,-52,-134v0,-85,68,-178,204,-178v104,0,182,61,182,158v0,68,-40,127,-133,173r-1,4v39,44,80,93,113,127v27,-43,48,-105,57,-165r136,0v-18,103,-52,190,-112,256xm289,-99v38,0,71,-15,91,-34v-41,-41,-96,-104,-152,-166v-28,21,-53,50,-53,94v0,58,43,106,114,106xm364,-524v0,-33,-19,-67,-60,-67v-39,0,-60,34,-60,69v0,34,15,64,47,97v49,-33,73,-60,73,-99","w":678},"(":{"d":"174,-691r106,0v-56,92,-101,226,-101,405v0,176,45,309,101,403r-106,0v-53,-78,-114,-211,-114,-403v1,-195,61,-327,114,-405","w":314,"k":{"T":-22,"J":-10,"C":23,"G":23,"O":23,"Q":23,"V":-27,"W":-27,"X":-5,"Y":-30,"A":19,"j":-50}},")":{"d":"141,117r-106,0v56,-93,101,-228,101,-405v0,-177,-45,-310,-101,-403r106,0v53,77,114,208,114,404v0,194,-61,325,-114,404","w":314},"*":{"d":"285,-686r87,51r-107,130r160,-32r0,101r-161,-27v33,45,73,83,108,126r-88,51r-58,-154r-2,0r-57,154r-86,-51r107,-125r-1,-2r-157,28r0,-101r156,32v-32,-46,-71,-85,-105,-129r89,-52r55,155r2,0","w":454},"+":{"d":"249,-532r98,0r0,218r209,0r0,93r-209,0r0,221r-98,0r0,-221r-209,0r0,-93r209,0r0,-218","w":596},",":{"d":"103,110r-102,9v32,-89,59,-193,73,-284r155,-10v-33,102,-78,207,-126,285","w":260,"k":{"\"":122,"'":122}},"-":{"d":"30,-313r262,0r0,101r-262,0r0,-101","w":322,"k":{"T":55,"J":6,"C":-12,"G":-12,"O":-12,"Q":-12,"V":24,"W":24,"X":17,"Y":60,"A":5,"g":-4,"c":-16,"d":-16,"e":-16,"o":-16,"q":-16}},".":{"d":"138,11v-51,0,-88,-39,-88,-92v0,-55,37,-93,90,-93v52,0,88,37,89,93v0,53,-36,92,-91,92","w":260,"k":{"\"":122,"'":122}},"\/":{"d":"117,39r-101,0r214,-725r101,0","w":331},"0":{"d":"280,-661v173,0,242,155,242,333v0,200,-81,339,-246,339v-168,0,-243,-151,-243,-335v0,-189,79,-337,247,-337xm278,-546v-55,0,-93,70,-93,222v0,149,36,220,94,220v59,0,91,-74,91,-222v0,-144,-31,-220,-92,-220"},"1":{"d":"236,0r0,-515v-44,18,-83,40,-126,59r-25,-114r173,-80r125,0r0,650r-147,0"},"2":{"d":"504,0r-461,0r0,-92r83,-75v143,-128,212,-201,213,-277v0,-53,-31,-95,-106,-95v-56,0,-105,28,-139,53r-43,-108v48,-37,125,-67,212,-67v148,0,228,86,228,203v0,135,-135,247,-233,333r246,0r0,125"},"3":{"d":"38,-34r31,-115v27,15,89,40,151,40v79,0,119,-38,119,-86v0,-86,-98,-100,-193,-94r0,-109v81,3,175,0,175,-75v0,-39,-31,-68,-96,-68v-53,0,-109,23,-135,39r-31,-110v39,-25,116,-49,201,-49v239,0,290,248,96,313r0,2v78,14,141,73,141,159v0,114,-101,198,-266,198v-84,0,-155,-22,-193,-45"},"4":{"d":"455,0r-144,0r0,-155r-288,0r0,-99r245,-396r187,0r0,381r77,0r0,114r-77,0r0,155xm164,-269r147,0r0,-144v0,-39,2,-79,4,-121r-3,0v-44,95,-96,179,-148,265"},"5":{"d":"210,-425v159,-14,292,51,292,208v0,121,-104,228,-279,228v-79,0,-145,-18,-181,-37r28,-114v71,39,278,62,276,-67v0,-67,-53,-108,-183,-108v-36,0,-61,2,-87,6r42,-341r358,0r0,125r-252,0"},"6":{"d":"457,-659r0,117v-17,-1,-35,0,-59,2v-135,11,-195,80,-212,155r3,0v32,-32,78,-51,138,-51v109,0,201,77,201,212v0,129,-99,235,-239,235v-174,0,-259,-129,-259,-284v0,-248,167,-399,427,-386xm277,-328v-54,0,-96,34,-96,96v0,69,36,131,106,131v53,0,87,-49,87,-115v0,-60,-32,-112,-97,-112"},"7":{"d":"49,-650r459,0r0,96r-268,554r-161,0r268,-525r-298,0r0,-125"},"8":{"d":"32,-170v0,-80,49,-130,116,-165v-63,-33,-94,-86,-94,-143v0,-110,99,-183,229,-183v152,0,215,88,215,167v0,56,-30,111,-95,143r0,3v64,24,120,78,120,161v0,118,-99,198,-250,198v-165,0,-241,-93,-241,-181xm279,-94v53,0,89,-35,89,-81v0,-57,-43,-91,-102,-107v-106,20,-106,186,13,188xm276,-558v-52,0,-78,35,-78,75v0,44,39,72,91,88v81,-15,97,-162,-13,-163"},"9":{"d":"89,9r0,-118v140,14,255,-50,276,-161r-2,-1v-29,30,-72,47,-131,47v-110,0,-202,-76,-202,-203v0,-127,102,-234,245,-234v167,0,246,128,246,280v0,267,-158,403,-432,390xm273,-332v57,0,92,-22,92,-81v0,-69,-25,-137,-96,-137v-51,0,-88,46,-88,114v0,56,31,104,92,104"},":":{"d":"139,-312v-52,0,-88,-39,-88,-91v0,-54,37,-92,89,-92v53,0,88,37,89,92v0,52,-35,91,-90,91xm139,11v-52,0,-88,-39,-88,-91v0,-54,37,-92,89,-92v53,0,88,37,89,92v0,52,-35,91,-90,91","w":260},";":{"d":"103,110r-101,9v32,-89,59,-193,73,-284r153,-10v-32,102,-78,207,-125,285xm144,-312v-52,0,-88,-39,-88,-91v0,-54,37,-92,89,-92v53,0,88,37,89,92v0,52,-35,91,-90,91","w":260},"<":{"d":"58,-223r0,-86r481,-223r0,106r-364,159r0,2r364,159r0,106","w":596},"=":{"d":"556,-325r-516,0r0,-93r516,0r0,93xm556,-118r-516,0r0,-93r516,0r0,93","w":596},">":{"d":"538,-312r0,92r-481,220r0,-106r372,-159r0,-2r-372,-159r0,-106","w":596},"?":{"d":"408,-530v0,136,-152,172,-136,311r-134,0v-6,-74,7,-118,58,-182v32,-39,58,-72,58,-105v0,-76,-126,-69,-172,-30r-34,-109v37,-21,96,-41,167,-41v132,0,193,73,193,156xm201,11v-53,0,-89,-39,-89,-91v0,-54,37,-91,89,-91v54,0,89,37,90,91v0,52,-35,91,-90,91","w":445},"@":{"d":"443,-250r14,-95v-86,-22,-147,51,-149,138v0,38,17,62,50,62v37,0,76,-47,85,-105xm528,11r18,57v-228,101,-496,-11,-496,-279v0,-204,149,-381,374,-381v177,0,303,121,303,289v0,147,-82,239,-190,239v-50,0,-78,-30,-88,-77v-59,112,-242,106,-242,-54v0,-123,91,-233,235,-233v44,0,94,11,119,24r-30,186v-10,59,-3,86,25,87v43,2,97,-53,97,-169v0,-131,-84,-231,-239,-231v-154,0,-287,119,-287,311v0,227,214,314,401,231","w":770},"A":{"d":"416,-173r-193,0r-48,173r-157,0r205,-674r200,0r210,674r-165,0xm245,-287r149,0r-42,-143v-14,-39,-21,-94,-36,-130v-10,40,-20,91,-31,130","w":656,"k":{"T":83,"J":-15,"C":25,"G":25,"O":25,"Q":25,"U":35,"V":59,"W":59,"X":24,"Y":95,"Z":-6,"f":13,"g":14,"b":6,"h":6,"k":6,"l":6,"j":6,"i":6,"m":6,"n":6,"p":6,"r":6,"c":14,"d":14,"e":14,"o":14,"q":14,"s":3,"t":20,"u":15,"v":31,"w":31,"y":31,"x":3,"-":8,")":18,"]":18,"}":18,"\"":46,"'":46}},"B":{"d":"66,-3r0,-662v96,-15,325,-26,397,24v44,30,80,71,80,133v0,61,-40,112,-111,145v77,20,134,79,134,165v0,62,-28,110,-70,144v-49,39,-131,61,-265,61v-75,0,-131,-5,-165,-10xm217,-564r0,157v90,7,173,-17,173,-83v0,-51,-39,-78,-108,-78v-34,0,-53,2,-65,4xm217,-298r0,190v88,9,189,-4,189,-96v0,-84,-93,-99,-189,-94","w":604,"k":{"T":18,"V":11,"W":11,"Y":34,"A":4,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"v":6,"w":6,"y":6,"a":-3,"-":-12,",":15,".":15}},"C":{"d":"538,-138r22,120v-27,13,-91,29,-172,29v-233,0,-353,-146,-353,-338v0,-230,164,-357,368,-357v79,0,139,15,166,30r-32,120v-30,-13,-73,-25,-128,-25v-120,0,-214,73,-214,223v0,135,80,220,215,220v47,0,97,-9,128,-22","w":595,"k":{"T":-14,"J":-10,"C":30,"G":30,"O":30,"Q":30,"V":-9,"W":-9,"X":-3,"Y":-7,"A":-10,"b":3,"h":3,"k":3,"l":3,"i":4,"m":4,"n":4,"p":4,"r":4,"c":19,"d":19,"e":19,"o":19,"q":19,"u":20,"v":33,"w":33,"y":33,"a":10,"z":-7,")":-9,"]":-9,"}":-9,"\"":-6,"'":-6}},"D":{"d":"662,-353v0,263,-161,360,-423,360v-79,0,-136,-5,-173,-10r0,-661v56,-9,129,-15,205,-15v129,0,213,24,277,72v70,52,114,135,114,254xm218,-556r0,441v169,20,283,-52,283,-233v0,-165,-123,-237,-283,-208","w":696,"k":{"T":28,"V":7,"W":7,"X":33,"Y":37,"A":16,"f":-10,"g":-4,"b":-3,"h":-3,"k":-3,"l":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"t":-13,"u":-5,"v":-10,"w":-10,"y":-10,"x":12,"z":3,"-":-12,")":19,"]":19,"}":19,",":40,".":40}},"E":{"d":"467,-409r0,124r-248,0r0,160r277,0r0,125r-429,0r0,-674r415,0r0,125r-263,0r0,140r248,0","w":534,"k":{"T":-5,"J":-22,"V":-7,"W":-7,"f":5,"g":7,"b":-4,"h":-4,"k":-4,"l":-4,"j":5,"c":4,"d":4,"e":4,"o":4,"q":4,"s":-4,"t":6,"u":10,"v":12,"w":12,"y":12,"z":-6,",":8,".":8}},"F":{"d":"67,0r0,-674r411,0r0,125r-259,0r0,154r242,0r0,124r-242,0r0,271r-152,0","w":527,"k":{"J":69,"A":67,"M":14,"g":9,"b":15,"h":15,"k":15,"l":15,"i":20,"m":20,"n":20,"p":20,"r":20,"c":26,"d":26,"e":26,"o":26,"q":26,"u":28,"v":20,"w":20,"y":20,"a":39,":":18,";":18,",":90,".":90}},"G":{"d":"404,7v-233,0,-369,-123,-369,-336v0,-224,164,-352,385,-352v87,0,154,17,187,32r-32,123v-37,-17,-82,-29,-156,-29v-127,0,-224,71,-224,218v0,167,131,250,287,212r0,-142r-104,0r0,-119r251,0r0,355v-47,16,-136,38,-225,38","w":682,"k":{"b":-3,"h":-3,"k":-3,"l":-3,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":-6,"d":-6,"e":-6,"o":-6,"q":-6,"u":-3,"v":7,"w":7,"y":7,"a":-8}},"H":{"d":"67,-674r152,0r0,259r251,0r0,-259r152,0r0,674r-152,0r0,-282r-251,0r0,282r-152,0r0,-674","w":689,"k":{"Y":18,"f":-5,"b":-3,"h":-3,"k":-3,"l":-3,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":3,"d":3,"e":3,"o":3,"q":3,"s":3,"t":-7,"x":3,"z":-3}},"I":{"d":"67,-674r152,0r0,674r-152,0r0,-674","w":285,"k":{"Y":18,"f":-5,"b":-3,"h":-3,"k":-3,"l":-3,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":3,"d":3,"e":3,"o":3,"q":3,"s":3,"t":-7,"x":3,"z":-3}},"J":{"d":"198,-249r0,-425r152,0r0,426v6,240,-160,289,-351,243r17,-123v93,25,182,22,182,-121","w":411,"k":{"v":-3,"w":-3,"y":-3,"a":5,")":-13,"]":-13,"}":-13,",":7,".":7}},"K":{"d":"66,0r0,-674r151,0r0,298r2,0v15,-26,31,-50,47,-74r152,-224r188,0r-223,287r234,387r-177,0r-166,-291r-57,71r0,220r-151,0","w":614,"k":{"T":-6,"J":-29,"C":33,"G":33,"O":33,"Q":33,"Y":15,"Z":-17,"A":-13,"g":13,"c":17,"d":17,"e":17,"o":17,"q":17,"u":19,"v":41,"w":41,"y":41,":":-7,";":-7,"-":23,")":-7,"]":-7,"}":-7,"\"":-4,"'":-4,",":-9,".":-9}},"L":{"d":"67,0r0,-674r152,0r0,546r268,0r0,128r-420,0","w":511,"k":{"T":104,"J":-28,"C":38,"G":38,"O":38,"Q":38,"U":31,"V":65,"W":65,"Y":90,"A":-6,"f":3,"j":4,"c":9,"d":9,"e":9,"o":9,"q":9,"t":5,"u":11,"v":36,"w":36,"y":36,"a":-4,"-":18,"\"":101,"'":101}},"M":{"d":"647,0r-11,-258v-3,-81,-6,-179,-6,-277r-2,0v-22,86,-51,182,-76,261r-82,263r-119,0r-72,-260v-24,-79,-40,-181,-63,-264r-24,535r-141,0r43,-674r203,0r66,225v22,78,42,162,57,241r4,0v36,-161,87,-316,135,-466r200,0r36,674r-148,0","w":846,"k":{"T":13,"A":3,"j":-3,"i":-6,"m":-6,"n":-6,"p":-6,"r":-6,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"a":-3,"-":-3}},"N":{"d":"206,0r-140,0r0,-674r178,0v86,155,182,307,250,478r2,0v-16,-145,-11,-316,-12,-478r140,0r0,674r-160,0r-144,-260v-40,-72,-85,-159,-117,-238r-4,0v5,90,7,185,7,295r0,203","w":690,"k":{"Y":18,"f":-5,"b":-3,"h":-3,"k":-3,"l":-3,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":3,"d":3,"e":3,"o":3,"q":3,"s":3,"t":-7,"x":3,"z":-3}},"O":{"d":"363,-686v207,0,320,155,320,342v0,222,-133,355,-331,355v-199,0,-317,-151,-317,-344v0,-202,130,-353,328,-353xm360,-565v-104,0,-164,98,-164,229v0,133,62,226,164,226v103,0,162,-98,162,-229v0,-122,-57,-226,-162,-226","w":717,"k":{"T":28,"V":7,"W":7,"X":33,"Y":37,"A":16,"f":-10,"g":-4,"b":-3,"h":-3,"k":-3,"l":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"t":-13,"u":-5,"v":-10,"w":-10,"y":-10,"x":12,"z":3,"-":-12,")":19,"]":19,"}":19,",":40,".":40}},"P":{"d":"550,-469v6,175,-153,249,-333,227r0,242r-151,0r0,-665v47,-8,113,-14,206,-14v171,-1,273,61,278,210xm217,-558r0,199v90,18,182,-20,182,-105v0,-62,-43,-99,-120,-99v-30,0,-51,2,-62,5","w":581,"k":{"J":76,"V":7,"W":7,"X":28,"Y":20,"Z":9,"A":60,"M":14,"g":25,"i":9,"m":9,"n":9,"p":9,"r":9,"c":24,"d":24,"e":24,"o":24,"q":24,"s":21,"t":-12,"u":10,"v":-8,"w":-8,"y":-8,"a":18,":":10,";":10,"-":13,")":4,"]":4,"}":4,",":144,".":144}},"Q":{"d":"686,-2r-43,118v-96,-28,-176,-58,-267,-95v-15,-6,-31,-9,-46,-10v-153,-10,-295,-122,-295,-343v0,-203,128,-354,330,-354v205,0,318,156,318,341v0,153,-71,261,-159,301r0,4v51,15,109,28,162,38xm360,-110v103,0,162,-97,162,-229v0,-124,-58,-226,-162,-226v-104,0,-164,102,-164,229v0,128,61,226,164,226","w":717,"k":{"T":28,"V":7,"W":7,"X":33,"Y":37,"A":16,"f":-10,"g":-4,"b":-3,"h":-3,"k":-3,"l":-3,"i":-4,"m":-4,"n":-4,"p":-4,"r":-4,"t":-13,"u":-5,"v":-10,"w":-10,"y":-10,"x":12,"z":3,"-":-12,")":19,"]":19,"}":19,",":40,".":40}},"R":{"d":"269,-679v169,-1,281,45,281,195v0,85,-61,144,-119,165r0,3v47,19,73,63,90,125v21,77,41,165,54,191r-156,0v-10,-20,-27,-74,-46,-157v-23,-103,-59,-111,-156,-108r0,265r-151,0r0,-665v49,-8,121,-14,203,-14xm217,-560r0,185v97,8,181,-17,181,-97v0,-61,-42,-93,-112,-93v-37,0,-58,2,-69,5","w":593,"k":{"J":-6,"C":4,"G":4,"O":4,"Q":4,"U":5,"V":6,"W":6,"X":-8,"Y":19,"A":-9,"b":-8,"h":-8,"k":-8,"l":-8,"i":-10,"m":-10,"n":-10,"p":-10,"r":-10,"t":-10,"v":-4,"w":-4,"y":-4,"a":-9}},"S":{"d":"40,-32r31,-125v59,41,276,77,276,-31v0,-42,-32,-66,-113,-94v-112,-40,-186,-102,-186,-200v0,-115,97,-202,255,-202v77,0,132,15,172,34r-34,122v-26,-13,-75,-32,-140,-32v-66,0,-98,31,-98,65v0,43,37,62,125,95v119,44,174,106,174,201v0,113,-86,209,-271,209v-77,0,-153,-21,-191,-42","w":540,"k":{"b":4,"h":4,"k":4,"l":4,"j":9,"c":-7,"d":-7,"e":-7,"o":-7,"q":-7,"t":5,"v":15,"w":15,"y":15,"a":-8,"-":-12}},"T":{"d":"197,0r0,-546r-182,0r0,-128r518,0r0,128r-184,0r0,546r-152,0","w":548,"k":{"i":54,"T":-22,"J":53,"C":29,"G":29,"O":29,"Q":29,"V":-28,"W":-28,"X":-18,"Y":-7,"A":72,"M":4,"S":9,"g":61,"b":12,"h":12,"k":12,"l":12,"m":54,"n":54,"p":54,"r":54,"c":81,"d":81,"e":81,"o":81,"q":81,"s":72,"u":54,"v":52,"w":52,"y":52,"x":14,"a":66,"z":57,":":36,";":36,"-":60,")":-31,"]":-31,"}":-31,"\"":-9,"'":-9,",":83,".":83}},"U":{"d":"66,-674r152,0r0,387v0,117,45,176,122,176v80,0,124,-56,124,-176r0,-387r152,0r0,378v0,208,-105,307,-281,307v-170,0,-269,-95,-269,-309r0,-376","w":682,"k":{"A":30,"f":-5,"s":13,"v":5,"w":5,"y":5,"x":12,"a":6,"z":9,",":23,".":23}},"V":{"d":"403,0r-178,0r-216,-674r167,0r82,285v23,81,44,157,60,241r3,0v39,-184,97,-353,147,-526r162,0","w":636,"k":{"T":-21,"J":39,"C":8,"G":8,"O":8,"Q":8,"V":-5,"W":-5,"A":54,"S":8,"g":8,"b":8,"h":8,"k":8,"l":8,"i":27,"m":27,"n":27,"p":27,"r":27,"c":42,"d":42,"e":42,"o":42,"q":42,"s":40,"t":8,"u":30,"v":15,"w":15,"y":15,"a":42,":":22,";":22,"-":25,")":-29,"]":-29,"}":-29,"\"":-13,"'":-13,",":69,".":69}},"W":{"d":"342,0r-167,0r-160,-674r163,0r51,277v15,81,29,168,40,236r2,0v11,-73,27,-154,44,-238r57,-275r162,0r54,284v17,78,22,156,38,226v10,-75,23,-154,39,-235r55,-275r155,0r-174,674r-165,0r-57,-290v-15,-66,-20,-136,-34,-208v-27,177,-68,331,-103,498","w":888,"k":{"T":-21,"J":39,"C":8,"G":8,"O":8,"Q":8,"V":-5,"W":-5,"A":54,"S":8,"g":8,"b":8,"h":8,"k":8,"l":8,"i":27,"m":27,"n":27,"p":27,"r":27,"c":42,"d":42,"e":42,"o":42,"q":42,"s":40,"t":8,"u":30,"v":15,"w":15,"y":15,"a":42,":":22,";":22,"-":25,")":-29,"]":-29,"}":-29,"\"":-13,"'":-13,",":69,".":69}},"X":{"d":"597,0r-176,0r-121,-243r-2,0v-28,75,-75,165,-108,243r-174,0r195,-341r-188,-333r175,0r110,235r2,0v31,-85,67,-156,103,-235r174,0r-190,329","w":613,"k":{"T":-6,"J":-10,"C":38,"G":38,"O":38,"Q":38,"V":-9,"W":-9,"X":11,"Y":-12,"A":13,"i":3,"m":3,"n":3,"p":3,"r":3,"c":19,"d":19,"e":19,"o":19,"q":19,"u":12,"v":37,"w":37,"y":37,"a":9,"-":18,"\"":-4,"'":-4}},"Y":{"d":"374,0r-152,0r0,-276r-213,-398r175,0r120,291r2,0r119,-291r171,0r-222,393r0,281","w":603,"k":{"J":69,"C":47,"G":47,"O":47,"Q":47,"V":-19,"W":-19,"X":22,"Y":26,"A":92,"M":21,"S":29,"B":18,"D":18,"E":18,"F":18,"H":18,"I":18,"K":18,"L":18,"N":18,"P":18,"R":18,"g":81,"b":15,"h":15,"k":15,"l":15,"i":21,"m":21,"n":21,"p":21,"r":21,"c":109,"d":109,"e":109,"o":109,"q":109,"s":64,"t":45,"u":72,"v":53,"w":53,"y":53,"x":56,"a":93,"z":49,":":50,";":50,"-":62,")":-33,"]":-33,"}":-33,"\"":-9,"'":-9,",":118,".":118}},"Z":{"d":"24,0r0,-82r321,-462r0,-4r-292,0r0,-126r489,0r0,88r-314,456r0,4r319,0r0,126r-523,0","w":577,"k":{"J":-22,"C":22,"G":22,"O":22,"Q":22,"X":5,"Y":-6,"A":-8,"c":9,"d":9,"e":9,"o":9,"q":9,"u":11,"v":16,"w":16,"y":16,"a":-4,"-":8}},"[":{"d":"272,112r-204,0r0,-798r204,0r0,84r-95,0r0,630r95,0r0,84","w":314,"k":{"T":-22,"J":-10,"C":23,"G":23,"O":23,"Q":23,"V":-27,"W":-27,"X":-5,"Y":-30,"A":19,"j":-50}},"\\":{"d":"314,39r-101,0r-201,-725r101,0","w":330},"]":{"d":"42,-686r204,0r0,798r-204,0r0,-84r95,0r0,-630r-95,0r0,-84","w":314},"^":{"d":"554,-177r-109,0r-146,-356r-3,0r-146,356r-107,0r209,-473r93,0","w":596},"_":{"d":"0,75r500,0r0,50r-500,0r0,-50","w":500},"a":{"d":"468,-289v0,92,-5,213,8,289r-137,0r-9,-49r-3,0v-32,39,-82,60,-140,60v-99,0,-158,-72,-158,-150v0,-127,114,-187,287,-187v11,-98,-172,-73,-224,-33r-28,-98v34,-19,101,-44,190,-44v163,0,214,96,214,212xm239,-96v45,0,83,-31,82,-82r0,-53v-80,0,-142,19,-142,77v0,39,26,58,60,58","w":528},"b":{"d":"61,-146r0,-564r152,0r0,279r2,0v29,-42,80,-69,148,-69v117,0,201,97,201,247v0,176,-111,264,-223,264v-59,0,-112,-25,-149,-79r-6,68r-129,0v2,-32,4,-91,4,-146xm305,-383v-49,1,-93,42,-92,103r0,72v0,59,40,99,92,99v65,0,105,-50,105,-138v0,-76,-34,-136,-105,-136","w":598,"k":{"T":49,"g":-3,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"v":9,"w":9,"y":9,"x":24,"z":9,"-":-16,")":8,"]":8,"}":8,"\"":20,"'":20,",":34,".":34}},"c":{"d":"410,-125r18,112v-27,13,-78,23,-136,23v-158,0,-259,-97,-259,-250v0,-143,98,-260,280,-260v40,0,84,7,116,19r-24,113v-18,-8,-45,-15,-85,-15v-80,0,-131,57,-131,137v0,125,123,162,221,121","w":451,"k":{"T":14,"f":-7,"c":11,"d":11,"e":11,"o":11,"q":11,"t":-16,"v":-15,"w":-15,"y":-15,"a":-4,"-":-12,"\"":-6,"'":-6,",":7,".":7}},"d":{"d":"383,-710r152,0r0,564v0,55,2,113,4,146r-135,0r-6,-71r-3,0v-30,54,-90,82,-153,82v-116,0,-209,-99,-209,-251v-1,-165,102,-261,219,-261v63,0,105,25,131,55r0,-264xm291,-110v55,0,95,-43,92,-108r0,-64v1,-60,-36,-102,-91,-102v-70,0,-105,62,-105,139v0,83,41,135,104,135","w":596,"k":{",":9,".":9}},"e":{"d":"493,-196r-315,0v6,109,182,106,273,72r20,103v-50,21,-111,31,-177,31v-166,0,-261,-96,-261,-249v0,-124,77,-261,247,-261v180,0,235,149,213,304xm177,-300r180,0v0,-37,-16,-99,-86,-99v-64,0,-90,59,-94,99","w":528,"k":{"T":41,"v":6,"w":6,"y":6,"x":12,"-":-30,"\"":3,"'":3,",":16,".":16}},"f":{"d":"231,0r-152,0r0,-377r-65,0r0,-112r65,0v-2,-74,13,-137,61,-183v56,-54,140,-57,216,-39r-6,117v-13,-4,-29,-7,-49,-7v-59,1,-75,50,-71,112r98,0r0,112r-97,0r0,377","w":341,"k":{"g":8,"c":10,"d":10,"e":10,"o":10,"q":10,"s":6,"t":-15,":":-28,";":-28,"-":3,")":-72,"]":-72,"}":-72,"\"":-42,"'":-42,",":39,".":39}},"g":{"d":"528,-489v-7,105,-3,294,-4,418v0,94,-19,171,-75,220v-92,80,-267,74,-374,23r30,-116v31,18,84,37,142,37v81,0,142,-59,125,-160v-29,40,-76,63,-132,63v-121,0,-207,-98,-207,-238v0,-158,101,-258,222,-258v69,0,107,32,136,70r5,-59r132,0xm286,-116v54,0,86,-42,86,-102r0,-72v-1,-57,-35,-95,-85,-95v-56,0,-100,50,-100,139v0,73,36,130,99,130","w":585,"k":{"T":34,",":17,".":17}},"h":{"d":"294,-377v-51,0,-80,35,-81,87r0,290r-152,0r0,-710r152,0r0,280r2,0v29,-40,76,-70,139,-70v97,0,171,67,171,215r0,285r-152,0r0,-269v0,-64,-22,-108,-79,-108","w":586,"k":{"T":57,"t":6,"v":19,"w":19,"y":19,"\"":14,"'":14}},"i":{"d":"213,0r-152,0r0,-489r152,0r0,489xm138,-701v49,0,79,33,80,76v0,42,-31,76,-82,76v-48,0,-79,-34,-79,-76v0,-43,32,-76,81,-76","w":274},"j":{"d":"-39,96v108,-16,119,-38,120,-191r0,-394r152,0r0,431v5,193,-89,269,-257,273xm157,-701v49,0,79,33,80,76v0,42,-31,76,-82,76v-48,0,-79,-34,-79,-76v0,-43,32,-76,81,-76","w":291,"k":{",":10,".":10}},"k":{"d":"213,-710r0,427r2,0v40,-74,89,-137,134,-206r183,0r-175,198r200,291r-187,0r-119,-201r-38,48r0,153r-152,0r0,-710r152,0","w":542,"k":{"T":28,"g":14,"b":-11,"h":-11,"k":-11,"l":-11,"i":-10,"m":-10,"n":-10,"p":-10,"r":-10,"c":14,"d":14,"e":14,"o":14,"q":14,"v":-3,"w":-3,"y":-3,"a":-5,":":-3,";":-3,"-":5,",":-4,".":-4}},"l":{"d":"61,0r0,-710r152,0r0,710r-152,0","w":275,"k":{",":9,".":9}},"m":{"d":"286,-378v-53,0,-76,42,-77,93r0,285r-148,0r0,-333v0,-61,-2,-112,-4,-156r129,0r6,66r3,0v21,-32,65,-78,148,-78v66,0,111,37,136,84v36,-49,81,-84,157,-84v94,0,165,66,165,213r0,288r-148,0r0,-266v0,-71,-23,-112,-72,-112v-49,0,-77,38,-76,92r0,286r-148,0r0,-275v0,-61,-22,-103,-71,-103","w":860,"k":{"T":57,"t":6,"v":19,"w":19,"y":19,"\"":14,"'":14}},"n":{"d":"296,-377v-55,0,-83,38,-83,95r0,282r-152,0r0,-333v0,-61,-2,-112,-4,-156r132,0r7,68r3,0v20,-32,69,-79,151,-79v100,0,175,67,175,211r0,289r-152,0r0,-271v0,-63,-22,-106,-77,-106","w":586,"k":{"T":57,"t":6,"v":19,"w":19,"y":19,"\"":14,"'":14}},"o":{"d":"295,-501v149,0,249,103,249,251v0,179,-127,261,-258,261v-143,0,-253,-94,-253,-252v0,-159,104,-260,262,-260xm290,-392v-72,0,-100,75,-100,147v0,84,35,147,100,147v60,0,97,-59,97,-148v0,-72,-28,-146,-97,-146","w":577,"k":{"T":49,"g":-3,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"v":9,"w":9,"y":9,"x":24,"z":9,"-":-16,")":8,"]":8,"}":8,"\"":20,"'":20,",":34,".":34}},"p":{"d":"61,198r0,-523v0,-64,-2,-118,-4,-164r132,0v4,21,1,50,9,68v36,-51,92,-79,163,-79v107,0,203,93,203,249v0,178,-113,262,-222,262v-61,0,-103,-27,-129,-56r0,243r-152,0xm307,-381v-51,1,-94,42,-94,104r0,67v-1,63,38,104,92,104v66,0,105,-55,105,-138v0,-78,-35,-137,-103,-137","w":598,"k":{"T":49,"g":-3,"c":-3,"d":-3,"e":-3,"o":-3,"q":-3,"v":9,"w":9,"y":9,"x":24,"z":9,"-":-16,")":8,"]":8,"}":8,"\"":20,"'":20,",":34,".":34}},"q":{"d":"249,-501v65,0,109,26,139,70r4,-58r146,0v-1,48,-3,96,-3,147r0,540r-152,0r0,-260r-2,0v-31,47,-80,73,-146,73v-106,0,-202,-94,-202,-249v0,-176,111,-263,216,-263xm291,-109v54,0,93,-41,92,-102r0,-73v-1,-57,-35,-98,-91,-98v-69,0,-105,59,-105,138v0,81,40,135,104,135","w":595,"k":{"T":37,",":7,".":7}},"r":{"d":"361,-355v-83,-17,-148,21,-148,107r0,248r-152,0r0,-328v0,-72,-1,-119,-4,-161r130,0r6,90r4,0v35,-82,88,-111,164,-99r0,143","w":380,"k":{"T":20,"f":-27,"g":8,"b":3,"h":3,"k":3,"l":3,"c":8,"d":8,"e":8,"o":8,"q":8,"t":-21,"u":3,"v":-18,"w":-18,"y":-18,"x":-13,"a":11,"z":-7,":":4,";":4,",":65,".":65}},"s":{"d":"33,-24r27,-108v28,17,86,36,131,36v46,0,65,-15,65,-40v0,-26,-15,-38,-71,-57v-102,-34,-140,-89,-140,-147v0,-92,78,-161,199,-161v57,0,107,14,137,29r-26,105v-30,-21,-164,-54,-164,11v0,24,19,36,79,57v93,32,132,80,132,151v0,92,-71,159,-211,159v-64,0,-121,-15,-158,-35","w":434,"k":{"T":35,",":10,".":10}},"t":{"d":"239,10v-112,0,-158,-62,-157,-187r0,-200r-65,0r0,-112r65,0r0,-91r149,-41r0,132r109,0r0,112r-109,0r0,177v-7,81,42,95,105,82r1,115v-19,7,-56,13,-98,13","w":367,"k":{"g":5,"c":5,"d":5,"e":5,"o":5,"q":5,"v":-5,"w":-5,"y":-5,",":8,".":8}},"u":{"d":"288,-112v55,0,82,-35,82,-86r0,-291r152,0r0,332v0,64,2,116,4,157r-132,0r-7,-69r-3,0v-19,30,-65,80,-153,80v-100,0,-172,-62,-172,-213r0,-287r152,0r0,263v0,71,23,114,77,114","w":583,"k":{"T":37,",":7,".":7}},"v":{"d":"9,-489r165,0r66,227v12,42,20,80,28,119r3,0v23,-119,60,-233,90,-346r160,0r-182,489r-152,0","w":530,"k":{"T":37,"g":14,"c":15,"d":15,"e":15,"o":15,"q":15,"s":16,"v":-19,"w":-19,"y":-19,"a":7,":":-5,";":-5,"-":7,",":48,".":48}},"w":{"d":"11,-489r155,0r40,201v9,50,19,104,27,160r3,0v24,-130,57,-240,87,-361r120,0r49,195v16,55,23,115,38,166v16,-123,46,-244,70,-361r149,0r-150,489r-142,0r-46,-171v-13,-48,-22,-92,-32,-153r-2,0v-18,128,-50,213,-80,324r-143,0","w":759,"k":{"T":37,"g":14,"c":15,"d":15,"e":15,"o":15,"q":15,"s":16,"v":-19,"w":-19,"y":-19,"a":7,":":-5,";":-5,"-":7,",":48,".":48}},"x":{"d":"7,-489r170,0r88,155r2,0r81,-155r165,0r-161,233r163,256r-172,0r-49,-88v-14,-24,-26,-49,-38,-74r-3,0r-83,162r-167,0r166,-249","w":519,"k":{"T":29,"c":22,"d":22,"e":22,"o":22,"q":22,"s":8,"t":-13,"v":-19,"w":-19,"y":-19,"-":4}},"y":{"d":"55,93v56,-14,121,-49,137,-109v0,-6,-1,-13,-6,-25r-180,-448r169,0r73,241v8,28,18,65,24,91r4,0r82,-332r162,0v-69,187,-188,570,-286,643v-55,42,-108,63,-146,67","w":523,"k":{"T":37,"g":14,"c":15,"d":15,"e":15,"o":15,"q":15,"s":16,"v":-19,"w":-19,"y":-19,"a":7,":":-5,";":-5,"-":7,",":48,".":48}},"z":{"d":"22,0r0,-87r154,-193r77,-88r-214,0r0,-121r400,0r0,92r-147,185r-80,91r235,0r0,121r-425,0","w":469,"k":{"T":29,"c":7,"d":7,"e":7,"o":7,"q":7,"v":-9,"w":-9,"y":-9}},"{":{"d":"95,-24v0,-49,11,-107,11,-157v0,-28,-7,-65,-76,-68r0,-76v68,-3,76,-39,76,-69v0,-49,-11,-108,-11,-157v0,-106,75,-142,187,-135r0,85v-112,-12,-72,109,-69,197v3,78,-34,101,-86,118v56,11,86,40,86,116v0,85,-49,207,69,198r0,84v-110,5,-186,-22,-187,-136","w":314,"k":{"T":-22,"J":-10,"C":23,"G":23,"O":23,"Q":23,"V":-27,"W":-27,"X":-5,"Y":-30,"A":19,"j":-50}},"|":{"d":"88,-750r106,0r0,1000r-106,0r0,-1000","w":283},"}":{"d":"219,-551v0,50,-10,109,-11,157v0,30,7,66,76,69r0,76v-68,3,-76,40,-76,68v0,49,11,107,11,157v-1,113,-77,142,-187,136r0,-84v113,12,71,-110,69,-198v-3,-79,34,-102,86,-118v-56,-12,-86,-41,-86,-116v0,-85,48,-206,-69,-197r0,-85v112,-6,187,28,187,135","w":314},"~":{"d":"420,-185v-71,0,-178,-89,-235,-89v-25,0,-43,17,-47,82r-95,0v-1,-134,58,-187,139,-187v70,0,177,87,236,87v23,0,38,-21,40,-81r95,0v6,142,-57,188,-133,188","w":596},"'":{"d":"35,-692r135,0r-23,271r-89,0","w":205,"k":{"T":-9,"J":58,"C":9,"G":9,"O":9,"Q":9,"V":-9,"W":-9,"X":-4,"Y":-8,"A":46,"f":-25,"g":19,"c":13,"d":13,"e":13,"o":13,"q":13,"t":-22,"v":-6,"w":-6,"y":-6,",":125,".":125}},"`":{"d":"4,-702r140,0r86,152r-104,0","w":300},"\u20ac":{"d":"226,-233v14,79,82,122,162,121v46,0,93,-15,114,-26r24,111v-34,19,-92,38,-156,38v-151,0,-276,-96,-300,-244r-65,0r0,-71r55,0r1,-47r-56,0r0,-71r67,0v32,-138,146,-238,300,-239v60,0,114,14,150,30r-28,114v-68,-31,-185,-37,-234,30v-13,18,-25,39,-32,65r249,0r0,71r-264,0r-1,47r265,0r0,71r-251,0"},"\u20ab":{"d":"87,-104r384,0r0,89r-384,0r0,-89xm340,-675r127,0r0,57r64,0r0,72r-64,0r0,285v0,41,1,84,3,107r-113,0v-3,-17,-2,-37,-7,-52v-25,40,-71,60,-122,60v-92,0,-165,-72,-165,-183v0,-121,80,-191,174,-191v48,0,81,18,103,40r0,-66r-119,0r0,-72r119,0r0,-57xm268,-241v56,0,72,-48,72,-116v0,-43,-29,-71,-70,-71v-52,0,-78,41,-78,95v0,56,31,92,76,92"},"\u00a0":{"w":202,"k":{"T":39,"V":37,"W":37,"Y":40}}}}); 

