/* 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 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;

	};

})());


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.
 * DejaVu changes are in public domain
 * 
 * 
 * Manufacturer:
 * DejaVu fonts team
 * 
 * Vendor URL:
 * http://dejavu.sourceforge.net
 * 
 * License information:
 * http://dejavu.sourceforge.net/wiki/index.php/License
 */
Cufon.registerFont({"w":229,"face":{"font-family":"DejaVu Serif","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 6 6 3 5 6 5 2 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-35 -288 369 85","underline-thickness":"15.8203","underline-position":"-14.9414","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":114},"!":{"d":"72,5v-13,0,-23,-11,-23,-23v0,-13,9,-24,23,-24v12,-1,24,11,24,24v0,12,-12,23,-24,23xm50,-262r45,0r-12,144r0,44r-21,0v1,-68,-8,-125,-12,-188","w":144},"\"":{"d":"63,-262r0,97r-28,0r0,-97r28,0xm130,-262r0,97r-28,0r0,-97r28,0","w":165},"#":{"d":"183,-158r-49,0r-15,58r50,0xm158,-258r-18,73r50,0r18,-73r30,0r-18,73r54,0r0,27r-61,0r-14,58r55,0r0,27r-62,0r-18,73r-30,0r18,-73r-50,0r-18,73r-30,0r18,-73r-54,0r0,-27r61,0r14,-58r-55,0r0,-27r62,0r18,-73r30,0","w":301},"$":{"d":"121,-12v36,2,54,-38,31,-63v-7,-7,-18,-12,-31,-16r0,79xm104,-209v-32,-1,-50,36,-29,59v6,6,16,11,29,15r0,-74xm104,5v-28,0,-51,-8,-73,-18r0,-48r19,0v1,33,20,48,54,49r0,-85v-43,-14,-73,-21,-73,-65v0,-41,31,-62,73,-64r0,-48r17,0r0,48v26,1,48,8,67,17r0,46r-20,0v-2,-27,-20,-44,-47,-46r0,80v46,15,76,21,78,67v2,43,-34,65,-78,67r0,48r-17,0r0,-48"},"%":{"d":"81,-140v44,-2,43,-109,0,-111v-45,1,-45,110,0,111xm262,-11v44,-2,43,-109,0,-111v-45,1,-45,110,0,111xm201,-66v0,-42,21,-73,61,-72v39,0,60,31,60,72v0,41,-22,71,-60,71v-39,0,-61,-30,-61,-71xm240,-267r26,0r-164,272r-26,0xm20,-196v0,-41,21,-71,60,-71v39,0,61,30,61,71v0,42,-21,73,-61,72v-39,0,-60,-31,-60,-72","w":342},"&":{"d":"92,-148v-51,33,-32,136,40,132v27,-1,48,-10,62,-25xm267,-130v-5,32,-17,58,-35,79r30,32r41,0r0,19r-70,0r-24,-25v-52,51,-190,37,-183,-56v3,-41,25,-63,54,-82v-38,-40,-7,-111,57,-104v23,2,42,6,64,12r0,45r-20,0v-3,-24,-17,-38,-44,-38v-31,0,-54,30,-35,57v29,42,81,86,116,126v14,-17,25,-39,28,-65r-32,0r0,-19r83,0r0,19r-30,0","w":320},"'":{"d":"63,-262r0,97r-28,0r0,-97r28,0","w":98},"(":{"d":"64,-109v0,75,11,119,51,148r0,17v-56,-26,-87,-82,-87,-165v0,-83,31,-139,87,-165r0,18v-40,28,-51,73,-51,147","w":140},")":{"d":"25,-274v57,26,87,82,87,165v0,83,-30,139,-87,165r0,-17v40,-29,51,-73,51,-148v0,-74,-11,-118,-51,-147r0,-18","w":140},"*":{"d":"174,-217r-69,32r69,32r-13,21r-61,-38r2,67r-24,0r2,-67r-61,38r-13,-21r69,-32r-69,-32r13,-21r61,38r-2,-67r24,0r-2,67r61,-38","w":180},"+":{"d":"165,-226r0,99r98,0r0,28r-98,0r0,99r-28,0r0,-99r-99,0r0,-28r99,0r0,-99r28,0","w":301},",":{"d":"13,35v22,-17,33,-37,32,-75r35,0v-4,45,-21,69,-53,89","w":114},"-":{"d":"16,-110r90,0r0,27r-90,0r0,-27","w":121,"k":{"T":13,"V":26,"W":20,"X":13,"Y":40}},".":{"d":"57,5v-13,0,-23,-11,-23,-23v0,-13,9,-24,23,-24v12,-1,24,11,24,24v0,12,-12,23,-24,23","w":114},"\/":{"d":"93,-262r28,0r-93,295r-28,0","w":121},"0":{"d":"114,-250v-70,0,-59,155,-40,208v8,21,22,30,40,30v47,0,54,-56,54,-119v0,-63,-6,-119,-54,-119xm205,-131v0,75,-25,136,-91,136v-64,0,-90,-62,-90,-136v0,-74,26,-136,90,-136v66,0,91,62,91,136"},"1":{"d":"51,0r0,-19r46,0r0,-218r-53,34r0,-23r64,-41r24,0r0,248r46,0r0,19r-127,0"},"2":{"d":"101,-250v-35,1,-51,17,-55,50r-20,0r0,-47v55,-35,166,-26,164,54v-2,54,-88,122,-126,164r109,0r0,-32r21,0r0,61r-170,0r0,-19v37,-40,91,-82,118,-128v23,-40,11,-106,-41,-103"},"3":{"d":"107,-250v-32,0,-49,16,-52,45r-20,0r0,-46v54,-25,159,-26,157,47v0,35,-26,54,-58,61v40,4,66,30,68,72v4,84,-116,90,-175,58r0,-51r20,0v2,34,23,53,60,52v36,0,58,-22,58,-58v1,-47,-28,-67,-79,-63r0,-18v43,1,70,-11,70,-51v-1,-31,-17,-48,-49,-48"},"4":{"d":"126,-89r0,-140r-90,140r90,0xm203,0r-120,0r0,-19r43,0r0,-51r-115,0r0,-19r115,-178r35,0r0,178r50,0r0,19r-50,0r0,51r42,0r0,19"},"5":{"d":"164,-83v6,-69,-74,-91,-107,-48r-15,0r0,-131r139,0r0,28r-120,0r0,76v57,-34,148,2,140,75v8,88,-105,107,-170,70r0,-51r19,0v1,34,22,52,57,52v39,-1,53,-29,57,-71"},"6":{"d":"66,-85v0,40,15,73,52,73v37,0,51,-30,51,-71v0,-41,-14,-69,-51,-70v-37,0,-53,28,-52,68xm173,-213v-2,-47,-77,-46,-95,-11v-9,18,-18,44,-18,80v44,-53,146,-23,146,61v0,54,-36,89,-90,88v-66,-1,-92,-55,-92,-128v0,-109,69,-170,169,-134r0,44r-20,0"},"7":{"d":"203,-245r-103,245r-26,0r98,-234r-121,0r0,33r-21,0r0,-61r173,0r0,17"},"8":{"d":"114,-12v35,0,54,-23,54,-60v0,-37,-19,-59,-54,-59v-35,0,-53,23,-53,59v0,37,18,60,53,60xm114,-148v30,0,46,-20,46,-51v0,-31,-16,-51,-46,-51v-29,0,-46,21,-46,51v0,30,17,50,46,51xm196,-199v-1,35,-21,53,-54,59v37,5,62,28,63,68v0,52,-37,77,-91,77v-54,0,-90,-25,-90,-77v0,-40,27,-63,64,-68v-33,-6,-54,-24,-55,-59v-1,-45,35,-68,81,-68v47,0,83,23,82,68"},"9":{"d":"56,-49v3,47,76,46,95,11v10,-18,17,-44,17,-80v-44,54,-145,22,-145,-61v0,-54,36,-89,90,-88v66,1,92,55,92,128v0,108,-68,170,-169,134r0,-44r20,0xm163,-177v0,-40,-15,-73,-52,-73v-37,0,-51,30,-51,71v0,41,14,69,51,70v37,0,53,-28,52,-68"},":":{"d":"61,5v-14,0,-23,-10,-24,-23v-1,-13,11,-25,24,-24v13,0,23,12,23,24v0,13,-10,23,-23,23xm61,-110v-13,0,-24,-10,-24,-23v0,-13,11,-23,24,-23v14,0,23,9,23,23v0,14,-9,23,-23,23","w":121},";":{"d":"13,35v22,-17,33,-37,32,-75r35,0v-4,45,-21,69,-53,89xm62,-110v-13,0,-24,-10,-24,-23v0,-13,11,-23,24,-23v12,0,23,12,23,23v0,12,-10,23,-23,23","w":121},"<":{"d":"263,-179r-182,66r182,67r0,29r-225,-81r0,-29r225,-82r0,30","w":301},"=":{"d":"38,-163r225,0r0,28r-225,0r0,-28xm38,-91r225,0r0,28r-225,0r0,-28","w":301},">":{"d":"38,-179r0,-30r225,82r0,29r-225,81r0,-29r183,-67","w":301},"?":{"d":"87,5v-13,0,-24,-10,-24,-23v-1,-13,11,-25,24,-24v12,0,23,11,23,24v0,11,-12,23,-23,23xm91,-250v-29,0,-45,19,-50,45r-17,0r0,-46v55,-30,154,-19,152,53v-2,50,-32,73,-78,84r0,44r-22,0r0,-57v38,-9,61,-30,63,-71v1,-31,-18,-52,-48,-52","w":193},"@":{"d":"187,-253v87,0,145,51,148,136v2,63,-43,102,-107,102r-1,-29v-32,56,-121,23,-121,-50v0,-44,26,-80,69,-79v25,0,40,11,52,28r0,-25r28,0r0,136v38,-8,63,-40,63,-84v0,-74,-54,-117,-128,-117v-86,0,-136,55,-136,140v0,88,52,139,136,139v34,0,59,-9,79,-26r9,12v-24,21,-55,33,-96,33v-94,0,-158,-61,-158,-158v0,-96,64,-158,163,-158xm182,-36v34,0,45,-28,45,-68v0,-29,-18,-49,-45,-49v-31,0,-45,25,-45,59v0,34,14,57,45,58","w":360},"A":{"d":"72,-95r96,0r-48,-125xm-2,0r0,-19r23,0r93,-243r30,0r94,243r25,0r0,19r-95,0r0,-19r29,0r-22,-57r-110,0r-22,57r29,0r0,19r-74,0","w":259,"k":{"T":20,"V":18,"W":15,"Y":15,"f":6,"t":6,"v":15,"w":16,"y":15,"\u2019":53,"\u201d":53}},"B":{"d":"202,-76v0,-62,-54,-58,-113,-57r0,114v59,1,113,6,113,-57xm189,-198v0,-52,-50,-46,-100,-46r0,92v50,0,100,6,100,-46xm243,-76v4,100,-128,72,-223,76r0,-19r33,0r0,-225r-33,0r0,-18v85,6,211,-27,209,64v-1,34,-21,51,-54,55v40,5,67,25,68,67","w":264,"k":{"-":-7,"C":-7,"G":-7,"O":-7,"Y":6}},"C":{"d":"146,-14v42,0,65,-20,75,-55r33,0v-15,45,-49,76,-108,74v-80,-2,-124,-55,-126,-136v-2,-79,51,-137,129,-136v37,0,67,10,98,22r0,61r-20,0v-8,-43,-31,-64,-81,-64v-64,1,-86,48,-86,117v0,68,23,117,86,117","w":275,"k":{",":13,".":13}},"D":{"d":"227,-131v0,-83,-48,-121,-138,-113r0,225v89,7,138,-29,138,-112xm268,-131v0,84,-57,132,-144,131r-104,0r0,-19r33,0r0,-225r-33,0r0,-18r104,0v88,-1,144,46,144,131","w":288,"k":{",":13,"-":-7,".":13,"V":6}},"E":{"d":"20,0r0,-19r33,0r0,-225r-33,0r0,-18r211,0r0,58r-21,0r0,-37r-121,0r0,88r86,0r0,-33r22,0r0,87r-22,0r0,-32r-86,0r0,109r123,0r0,-36r22,0r0,58r-214,0","w":262,"k":{"-":-7}},"F":{"d":"20,0r0,-19r33,0r0,-225r-33,0r0,-18r215,0r0,58r-22,0r0,-37r-124,0r0,88r90,0r0,-33r21,0r0,87r-21,0r0,-32r-90,0r0,112r42,0r0,19r-111,0","w":249,"k":{",":56,"-":16,".":56,":":13,";":13,"A":31,"a":24,"e":20,"o":20}},"G":{"d":"153,-267v37,1,67,9,97,21r0,62r-20,0v-7,-43,-31,-64,-80,-64v-66,0,-90,46,-90,117v0,71,25,117,91,117v29,0,53,-7,73,-19r0,-68r-50,0r0,-19r85,0r0,98v-30,16,-64,27,-108,27v-80,1,-131,-56,-131,-136v0,-80,53,-138,133,-136","w":287,"k":{",":13,"-":-7,".":13,"Y":6}},"H":{"d":"20,0r0,-19r33,0r0,-225r-33,0r0,-18r102,0r0,18r-33,0r0,91r136,0r0,-91r-33,0r0,-18r102,0r0,18r-33,0r0,225r33,0r0,19r-102,0r0,-19r33,0r0,-112r-136,0r0,112r33,0r0,19r-102,0","w":313},"I":{"d":"89,-19r33,0r0,19r-102,0r0,-19r33,0r0,-225r-33,0r0,-18r102,0r0,18r-33,0r0,225","w":142},"J":{"d":"94,-7v11,79,-67,97,-124,70r0,-41r20,0v0,22,9,34,31,34v35,-2,38,-22,38,-65r0,-235r-41,0r0,-18r110,0r0,18r-34,0r0,237","w":144,"k":{",":21,".":28,":":15,";":15}},"K":{"d":"20,0r0,-19r33,0r0,-225r-33,0r0,-18r102,0r0,18r-33,0r0,100r113,-100r-29,0r0,-18r88,0r0,18r-30,0r-113,99r127,126r29,0r0,19r-61,0r-124,-125r0,106r33,0r0,19r-102,0","w":268,"k":{"-":26,"A":15,"C":10,"O":10,"U":13,"W":13,"Y":10,"e":10,"o":10,"u":8,"y":23}},"L":{"d":"20,0r0,-19r33,0r0,-225r-33,0r0,-18r102,0r0,18r-33,0r0,222r120,0r0,-44r21,0r0,66r-210,0","w":239,"k":{"T":29,"U":20,"V":43,"W":31,"Y":23,"y":6,"\u2019":86,"\u201d":86}},"M":{"d":"20,0r0,-19r33,0r0,-225r-35,0r0,-18r76,0r93,186r92,-186r71,0r0,18r-35,0r0,225r34,0r0,19r-103,0r0,-19r34,0r0,-202r-90,183r-25,0r-90,-183r0,202r33,0r0,19r-88,0","w":368},"N":{"d":"18,0r0,-19r35,0r0,-225r-35,0r0,-18r67,0r157,207r0,-189r-35,0r0,-18r92,0r0,18r-35,0r0,249r-21,0r-168,-221r0,197r35,0r0,19r-92,0","w":315,"k":{",":23,".":23,":":13,";":13}},"O":{"d":"60,-131v0,70,24,117,88,117v64,0,87,-47,87,-117v0,-70,-23,-117,-87,-117v-64,0,-88,47,-88,117xm275,-131v-2,82,-46,136,-127,136v-82,0,-128,-54,-128,-136v0,-82,46,-134,128,-136v77,-2,129,57,127,136","w":295,"k":{",":21,"-":-13,".":21,"V":6,"X":6}},"P":{"d":"189,-189v0,-54,-45,-58,-100,-55r0,110v54,3,100,0,100,-55xm229,-189v0,67,-65,80,-140,74r0,96r41,0r0,19r-110,0r0,-19r33,0r0,-225r-33,0r0,-18v91,2,209,-20,209,73","w":242,"k":{",":73,"-":20,".":73,":":13,";":13,"A":33,"U":6,"a":16,"e":16,"o":15,"s":10}},"Q":{"d":"237,58v-43,-3,-68,-22,-85,-53v-80,1,-134,-56,-132,-136v2,-82,46,-134,128,-136v77,-2,127,57,127,136v0,71,-40,121,-99,133v12,17,31,24,61,23r0,33xm60,-131v0,70,24,117,88,117v64,0,87,-47,87,-117v0,-70,-23,-117,-87,-117v-64,0,-88,47,-88,117","w":295,"k":{",":18,"-":-13,".":18,"\u2019":-7,"\u201d":-7}},"R":{"d":"233,-192v0,40,-24,56,-61,62v46,14,52,74,76,111r32,0r0,19r-62,0v-20,-36,-36,-90,-63,-115v-13,-12,-42,-6,-66,-7r0,103r37,0r0,19r-106,0r0,-19r33,0r0,-225r-33,0r0,-18v89,4,216,-25,213,70xm193,-192v0,-57,-50,-53,-104,-52r0,103v53,1,104,6,104,-51","w":271,"k":{"T":6,"V":13,"W":8,"Y":11,"a":-8,"y":6,"\u2019":20,"\u201d":20}},"S":{"d":"220,-72v0,91,-123,88,-187,59r0,-59r21,0v1,41,24,58,67,58v52,0,81,-40,54,-77v-41,-35,-145,-25,-145,-106v0,-82,112,-79,177,-55r0,56r-20,0v-4,-39,-24,-48,-66,-52v-48,-4,-74,44,-46,73v35,36,145,24,145,103","w":246,"k":{",":13,"-":-13,".":13,"S":6}},"T":{"d":"69,0r0,-19r33,0r0,-223r-77,0r0,41r-21,0r0,-61r233,0r0,61r-22,0r0,-41r-77,0r0,223r33,0r0,19r-102,0","w":240,"k":{",":53,"-":46,".":53,":":13,";":13,"A":20,"T":-7,"a":28,"c":28,"e":28,"o":28,"s":26,"w":13}},"U":{"d":"153,5v-76,0,-102,-31,-103,-109r0,-140r-33,0r0,-18r103,0r0,18r-34,0v8,92,-34,226,73,226v107,0,64,-134,73,-226r-33,0r0,-18r88,0r0,18r-33,0r0,140v-1,78,-24,109,-101,109","w":303,"k":{",":33,"-":6,".":33,":":13,";":13,"A":11,"J":10}},"V":{"d":"63,-244r77,202r78,-202r-30,0r0,-18r77,0r0,18r-25,0r-94,244r-30,0r-93,-244r-27,0r0,-18r96,0r0,18r-29,0","w":259,"k":{",":63,"-":33,".":63,":":36,";":36,"A":24,"O":6,"a":33,"e":33,"i":6,"o":33,"u":23,"y":15,"\u2019":-13,"\u201d":-13}},"W":{"d":"274,0r-28,0r-61,-213r-60,213r-28,0r-69,-244r-26,0r0,-18r96,0r0,18r-33,0r55,194r59,-212r29,0r61,215r55,-197r-31,0r0,-18r76,0r0,18r-26,0","w":370,"k":{",":63,"-":26,".":63,":":31,";":31,"A":18,"a":31,"e":29,"i":6,"o":24,"r":16,"u":15,"y":8,"\u2019":-7,"\u201d":-7}},"X":{"d":"119,-112r-64,93r34,0r0,19r-87,0r0,-19r30,0r76,-110r-77,-115r-28,0r0,-18r104,0r0,18r-31,0r57,85r57,-85r-33,0r0,-18r86,0r0,18r-30,0r-69,101r82,124r29,0r0,19r-105,0r0,-19r32,0","w":256,"k":{"-":13,"A":13,"C":6,"O":6}},"Y":{"d":"68,0r0,-19r34,0r0,-94r-81,-131r-25,0r0,-18r98,0r0,18r-31,0r65,107r66,-107r-29,0r0,-18r76,0r0,18r-25,0r-79,128r0,97r34,0r0,19r-103,0","w":237,"k":{",":46,"-":40,".":46,":":44,";":44,"A":28,"C":6,"a":28,"e":31,"i":6,"o":31,"u":31}},"Z":{"d":"16,0r0,-13r164,-228r-136,0r0,39r-22,0r0,-60r208,0r0,12r-164,228r149,0r0,-36r21,0r0,58r-220,0","w":250,"k":{",":6,".":6}},"[":{"d":"31,-274r82,0r0,19r-48,0r0,284r48,0r0,18r-82,0r0,-321","w":140},"\\":{"d":"28,-262r93,295r-28,0r-93,-295r28,0","w":121},"]":{"d":"110,-274r0,321r-82,0r0,-18r48,0r0,-284r-48,0r0,-19r82,0","w":140},"^":{"d":"168,-262r95,97r-26,0r-86,-67r-86,67r-27,0r96,-97r34,0","w":301},"_":{"d":"180,71r0,14r-180,0r0,-14r180,0","w":180},"`":{"d":"65,-288r45,67r-20,0r-60,-67r35,0","w":180},"a":{"d":"98,-14v42,0,49,-38,45,-84v-45,-1,-89,-4,-89,42v0,25,17,42,44,42xm32,-178v57,-27,144,-16,144,61r0,98r28,0r0,19r-61,0r0,-20v-30,43,-125,30,-125,-36v0,-58,61,-65,125,-61v4,-37,-14,-58,-49,-58v-26,0,-42,13,-45,35r-17,0r0,-38","w":214},"b":{"d":"134,5v-31,0,-49,-12,-60,-34r0,29r-64,0r0,-19r31,0r0,-236r-31,0r0,-19r64,0r0,116v11,-22,29,-34,60,-34v49,0,78,44,78,98v0,54,-29,99,-78,99xm124,-172v-42,0,-50,40,-50,88v0,39,15,69,50,69v40,0,51,-34,51,-79v0,-45,-12,-78,-51,-78","w":230},"c":{"d":"109,-12v31,0,44,-16,50,-44r26,0v-9,38,-33,60,-77,61v-55,0,-90,-42,-90,-99v0,-88,93,-121,161,-81r0,48r-19,0v-4,-30,-18,-48,-51,-48v-40,0,-54,34,-53,81v0,47,12,82,53,82","w":201},"d":{"d":"96,-192v31,0,50,13,61,34r0,-97r-31,0r0,-19r63,0r0,255r31,0r0,19r-63,0r0,-29v-11,21,-30,34,-61,34v-49,0,-78,-46,-78,-99v0,-53,29,-98,78,-98xm106,-15v42,0,51,-40,51,-88v0,-40,-15,-69,-51,-69v-39,0,-50,33,-50,78v0,46,10,79,50,79","w":230},"e":{"d":"18,-94v0,-88,101,-128,154,-72v15,17,22,43,23,76r-139,1v0,45,14,77,56,77v32,0,47,-17,54,-45r26,0v-10,40,-35,62,-83,62v-55,1,-91,-42,-91,-99xm157,-109v5,-56,-52,-87,-86,-49v-9,11,-13,27,-15,49r101,0","w":213},"f":{"d":"44,-187v-14,-79,51,-101,111,-78r0,36r-17,0v0,-17,-11,-27,-29,-27v-36,0,-33,33,-33,69r52,0r0,19r-52,0r0,149r42,0r0,19r-105,0r0,-19r31,0r0,-149r-31,0r0,-19r31,0","w":133,"k":{",":13,"-":13,".":13,"\u2019":-27,"\u201d":-27,"\u201c":-7}},"g":{"d":"96,-192v31,0,50,13,61,34r0,-29r63,0r0,19r-31,0r0,164v8,82,-89,100,-153,71r0,-40r17,0v4,24,20,36,49,36v49,0,58,-39,55,-92v-11,21,-30,34,-61,34v-49,0,-78,-46,-78,-99v0,-53,29,-98,78,-98xm106,-15v42,0,51,-40,51,-88v0,-40,-15,-69,-51,-69v-39,0,-50,33,-50,78v0,46,10,79,50,79","w":230},"h":{"d":"122,-168v-62,0,-43,88,-46,149r28,0r0,19r-89,0r0,-19r29,0r0,-236r-31,0r0,-19r63,0r0,120v11,-23,28,-36,57,-38v80,-3,57,99,60,173r29,0r0,19r-89,0r0,-19r27,0v-6,-55,22,-150,-38,-149","w":231},"i":{"d":"55,-225v-11,0,-20,-9,-20,-20v0,-10,9,-21,20,-20v10,-1,21,10,20,20v0,11,-9,20,-20,20xm76,-19r31,0r0,19r-94,0r0,-19r31,0r0,-149r-31,0r0,-19r63,0r0,168","w":115},"j":{"d":"56,-225v-11,0,-20,-9,-20,-20v0,-10,9,-21,20,-20v10,-1,21,10,20,20v0,11,-9,20,-20,20xm13,63v24,0,30,-18,31,-45r0,-186r-31,0r0,-19r63,0r0,205v5,59,-67,76,-111,50r0,-38r17,0v2,21,10,33,31,33","w":111},"k":{"d":"103,0r-91,0r0,-19r29,0r0,-236r-31,0r0,-19r64,0r0,179r79,-73r-27,0r0,-19r84,0r0,19r-32,0r-55,51r71,98r27,0r0,19r-93,0r0,-19r27,0r-56,-76r-25,23r0,53r29,0r0,19","w":218,"k":{"-":6}},"l":{"d":"74,-19r30,0r0,19r-94,0r0,-19r31,0r0,-236r-31,0r0,-19r64,0r0,255","w":115},"m":{"d":"76,-154v14,-48,103,-50,111,4v10,-24,27,-41,57,-42v78,-3,54,100,58,173r30,0r0,19r-90,0r0,-19r28,0v-7,-54,22,-149,-36,-149v-60,0,-42,88,-45,149r28,0r0,19r-88,0r0,-19r28,0v-7,-54,22,-149,-36,-149v-60,0,-42,88,-45,149r28,0r0,19r-89,0r0,-19r29,0r0,-149r-31,0r0,-19r63,0r0,33","w":341},"n":{"d":"122,-168v-62,1,-43,88,-46,149r28,0r0,19r-89,0r0,-19r29,0r0,-149r-31,0r0,-19r63,0r0,33v11,-23,28,-36,57,-38v80,-3,57,99,60,173r29,0r0,19r-89,0r0,-19r27,0v-7,-55,23,-150,-38,-149","w":231},"o":{"d":"56,-94v0,47,12,82,52,82v40,0,53,-35,53,-82v0,-47,-13,-81,-53,-81v-39,0,-53,35,-52,81xm199,-94v0,57,-35,99,-91,99v-55,0,-90,-42,-90,-99v0,-57,35,-98,90,-98v56,0,91,41,91,98","w":216,"k":{".":6}},"p":{"d":"124,-172v-42,0,-50,40,-50,88v0,39,15,69,50,69v40,0,51,-34,51,-79v0,-45,-12,-78,-51,-78xm134,5v-31,0,-49,-12,-60,-34r0,85r30,0r0,19r-94,0r0,-19r31,0r0,-224r-31,0r0,-19r64,0r0,29v11,-22,29,-34,60,-34v49,0,78,44,78,98v0,54,-29,99,-78,99","w":230},"q":{"d":"96,-192v31,0,50,13,61,34r0,-29r63,0r0,19r-31,0r0,224r31,0r0,19r-94,0r0,-19r31,0r0,-85v-11,21,-30,34,-61,34v-49,0,-78,-46,-78,-99v0,-53,29,-98,78,-98xm106,-15v42,0,51,-40,51,-88v0,-40,-15,-69,-51,-69v-39,0,-50,33,-50,78v0,46,10,79,50,79","w":230},"r":{"d":"76,-154v12,-34,55,-46,96,-33r0,47r-19,0v-1,-18,-9,-28,-27,-28v-65,-1,-48,86,-50,149r38,0r0,19r-99,0r0,-19r29,0r0,-149r-31,0r0,-19r63,0r0,33","w":172,"k":{",":40,".":40}},"s":{"d":"166,-52v0,67,-98,66,-146,42r0,-44r19,0v1,29,20,40,50,42v36,3,58,-30,36,-52v-25,-25,-104,-20,-104,-73v0,-63,89,-64,135,-40r0,41r-18,0v5,-45,-84,-55,-87,-10v8,55,115,24,115,94","w":184},"t":{"d":"90,5v-81,4,-42,-106,-51,-173r-29,0r0,-19r29,0r0,-58r32,0r0,58r61,0r0,19r-61,0r0,119v1,27,1,37,22,37v18,0,24,-12,24,-32r25,0v-2,33,-17,47,-52,49","w":144},"u":{"d":"110,-19v62,0,43,-88,46,-149r-29,0r0,-19r61,0r0,168r30,0r0,19r-62,0r0,-33v-12,21,-27,37,-57,38v-80,3,-57,-99,-60,-173r-29,0r0,-19r61,0r0,109v1,40,5,59,39,59","w":231},"v":{"d":"89,0r-69,-168r-21,0r0,-19r86,0r0,19r-30,0r53,128r52,-128r-28,0r0,-19r70,0r0,19r-21,0r-68,168r-24,0","w":203,"k":{",":43,".":43}},"w":{"d":"173,-187r48,146r42,-127r-27,0r0,-19r67,0r0,19r-20,0r-56,168r-27,0r-46,-140r-46,140r-26,0r-55,-168r-21,0r0,-19r84,0r0,19r-30,0r42,127r48,-146r23,0","w":308,"k":{",":43,".":43}},"x":{"d":"105,-114r39,-54r-25,0r0,-19r72,0r0,19r-25,0r-50,69r58,80r25,0r0,19r-87,0r0,-19r24,0r-41,-56r-40,56r24,0r0,19r-71,0r0,-19r25,0r51,-71r-57,-78r-23,0r0,-19r84,0r0,19r-22,0","w":203,"k":{"-":6}},"y":{"d":"28,39v5,34,39,23,50,-5r12,-31r-70,-171r-21,0r0,-19r86,0r0,19r-30,0r53,128r52,-128r-28,0r0,-19r70,0r0,19r-21,0r-85,210v-9,37,-45,44,-84,33r0,-36r16,0","w":203,"k":{",":48,".":48}},"z":{"d":"14,0r0,-15r117,-153r-92,0r0,32r-19,0r0,-51r153,0r0,15r-117,153r102,0r0,-34r18,0r0,53r-162,0","w":189},"{":{"d":"92,-108v89,10,-16,169,92,148r0,19v-60,0,-85,-6,-84,-65v1,-51,8,-102,-55,-92r0,-19v60,9,57,-38,55,-92v-1,-59,24,-65,84,-65r0,19v-37,0,-52,1,-52,40v0,51,7,103,-40,107"},"|":{"d":"75,-275r0,360r-29,0r0,-360r29,0","w":121},"}":{"d":"129,-6v2,60,-24,65,-84,65r0,-19v37,0,52,-1,52,-40v0,-51,-8,-104,40,-108v-47,-5,-40,-55,-40,-107v0,-39,-15,-40,-52,-40r0,-19v59,0,85,5,84,65v-1,51,-8,102,55,92r0,19v-60,-9,-57,38,-55,92"},"~":{"d":"151,-128v42,19,84,15,112,-14r0,26v-30,28,-66,41,-114,18v-41,-19,-84,-14,-111,14r0,-27v31,-27,65,-40,113,-17","w":301},"\u00d7":{"d":"252,-194r-81,81r81,81r-20,20r-81,-81r-81,81r-20,-20r81,-81r-81,-81r20,-20r81,81r81,-81","w":301},"\u2013":{"d":"16,-107r148,0r0,23r-148,0r0,-23","w":180},"\u2014":{"d":"16,-107r328,0r0,23r-328,0r0,-23","w":360},"\u2018":{"d":"97,-253v-20,16,-27,38,-26,75r-34,0v1,-45,16,-69,46,-89","w":114,"k":{"A":46,"J":-8}},"\u2019":{"d":"25,-188v20,-15,28,-38,27,-74r34,0v-2,45,-18,68,-47,89","w":114},"\u201c":{"d":"166,-253v-20,17,-27,39,-26,75r-34,0v1,-46,16,-68,46,-89xm97,-253v-20,16,-27,38,-26,75r-34,0v1,-45,16,-69,46,-89","w":184,"k":{"A":46,"J":-8,"V":-10,"W":-10,"X":-10,"Y":-10}},"\u201d":{"d":"25,-188v20,-15,28,-38,27,-74r34,0v-2,45,-18,68,-47,89xm95,-188v20,-15,27,-38,26,-74r34,0v-1,46,-17,68,-46,89","w":184},"\u2026":{"d":"300,5v-13,0,-23,-10,-23,-23v0,-13,10,-24,23,-24v12,0,23,11,23,24v0,11,-12,23,-23,23xm180,5v-13,0,-23,-10,-23,-23v0,-13,10,-24,23,-24v12,0,25,11,23,24v2,12,-12,23,-23,23xm60,5v-13,0,-23,-10,-23,-23v0,-13,10,-24,23,-24v12,0,25,11,23,24v2,12,-12,23,-23,23","w":360},"\u2122":{"d":"197,-262r30,47r32,-47r38,0r0,11r-15,0r0,79r15,0r0,11r-50,0r0,-11r15,0r0,-75r-36,54r-8,0r-35,-54r0,75r15,0r0,11r-42,0r0,-11r15,0r0,-79r-15,0r0,-11r41,0xm43,-262r97,0r0,29r-12,0r0,-18r-26,0r0,79r15,0r0,11r-51,0r0,-11r15,0r0,-79r-27,0r0,18r-11,0r0,-29","w":360},"\u00a0":{"w":114}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.
 * DejaVu changes are in public domain
 * 
 * 
 * Manufacturer:
 * DejaVu fonts team
 * 
 * Vendor URL:
 * http://dejavu.sourceforge.net
 * 
 * License information:
 * http://dejavu.sourceforge.net/wiki/index.php/License
 */
Cufon.registerFont({"w":250,"face":{"font-family":"DejaVu Serif","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 6 8 3 5 6 5 2 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-27 -288 409 85","underline-thickness":"15.8203","underline-position":"-14.9414","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":125},"!":{"d":"79,5v-17,0,-33,-15,-33,-33v0,-18,16,-34,33,-34v17,0,33,17,33,34v0,17,-16,33,-33,33xm46,-262r66,0v-7,61,-21,113,-21,181r-24,0v0,-68,-15,-120,-21,-181","w":158},"\"":{"d":"76,-262r0,97r-42,0r0,-97r42,0xm153,-262r0,97r-41,0r0,-97r41,0","w":187},"#":{"d":"180,-153r-46,0r-13,48r47,0xm160,-258r-17,67r47,0r17,-67r39,0r-17,67r48,0r0,38r-58,0r-12,48r50,0r0,38r-59,0r-17,67r-39,0r17,-67r-46,0r-17,67r-39,0r16,-67r-49,0r0,-38r58,0r12,-48r-49,0r0,-38r59,0r17,-67r39,0","w":301},"$":{"d":"114,5v-30,0,-55,-7,-80,-15r0,-52r21,0v4,32,22,48,59,47r0,-71v-48,-11,-82,-23,-82,-72v0,-45,34,-68,82,-69r0,-47r21,0r0,47v28,2,52,7,73,16r0,48r-21,0v-4,-26,-22,-44,-52,-44r0,65v53,13,86,24,86,77v0,47,-36,69,-86,70r0,48r-21,0r0,-48xm114,-207v-26,0,-44,28,-25,47v5,5,13,10,25,13r0,-60xm135,-15v31,2,47,-30,28,-51v-6,-6,-15,-10,-28,-14r0,65"},"%":{"d":"78,-142v30,2,22,-71,16,-95v-2,-8,-8,-12,-16,-12v-22,0,-21,24,-21,53v0,31,-1,52,21,54xm9,-196v0,-46,24,-71,69,-71v45,0,69,26,69,71v0,46,-25,72,-69,72v-44,0,-69,-26,-69,-72xm238,-267r30,0r-164,272r-30,0xm195,-67v0,-45,25,-71,69,-71v44,0,69,25,69,71v0,47,-24,72,-69,72v-45,0,-69,-26,-69,-72xm264,-13v31,3,20,-71,17,-95v-3,-8,-9,-12,-17,-12v-22,0,-21,24,-21,53v0,31,-1,52,21,54","w":342},"&":{"d":"284,-140v-4,34,-14,60,-32,81r37,38r30,0r0,21r-85,0r-22,-23v-55,49,-204,35,-198,-56v2,-45,26,-67,63,-84v-9,-14,-18,-25,-18,-43v0,-67,97,-68,162,-53r0,55r-23,0v5,-49,-77,-57,-80,-11v14,47,85,97,117,138v14,-16,22,-35,24,-63r-32,0r0,-21r88,0r0,21r-31,0xm96,-144v-45,48,-4,147,74,117v9,-3,16,-7,25,-13","w":325},"'":{"d":"76,-262r0,97r-42,0r0,-97r42,0","w":110},"(":{"d":"152,-252v-74,38,-73,249,0,287r0,21v-72,-28,-118,-73,-118,-165v0,-91,46,-137,118,-165r0,22","w":170},")":{"d":"18,-274v72,28,118,73,118,165v0,92,-47,138,-118,165r0,-21v42,-27,52,-70,52,-144v0,-73,-10,-116,-52,-143r0,-22","w":170},"*":{"d":"180,-213r-63,29r63,30r-17,28r-58,-42r5,68r-32,0r5,-68r-58,42r-17,-28r63,-30r-63,-29r17,-28r58,43r-5,-69r32,0r-5,69r58,-43","w":188},"+":{"d":"171,-226r0,93r92,0r0,40r-92,0r0,93r-40,0r0,-93r-93,0r0,-40r93,0r0,-93r40,0","w":301},",":{"d":"5,35v25,-20,38,-45,35,-91v16,1,36,-2,50,1v0,58,-26,91,-66,114","w":125},"-":{"d":"20,-120r110,0r0,47r-110,0r0,-47","w":149,"k":{"T":60,"V":26,"W":20,"X":26,"Y":40}},".":{"d":"63,5v-17,0,-34,-16,-34,-33v0,-17,17,-34,34,-34v17,0,33,17,33,34v0,17,-16,33,-33,33","w":125},"\/":{"d":"92,-262r39,0r-92,295r-39,0","w":131},"0":{"d":"125,-247v-45,10,-36,40,-36,116v0,75,-9,105,36,116v45,-10,37,-42,37,-116v0,-75,8,-105,-37,-116xm234,-131v0,82,-34,136,-109,136v-75,0,-108,-55,-108,-136v0,-81,33,-136,108,-136v75,0,109,54,109,136"},"1":{"d":"49,0r0,-21r50,0r0,-213r-55,33r0,-26r66,-40r55,0r0,246r50,0r0,21r-166,0"},"2":{"d":"97,-247v-31,1,-46,19,-50,49r-21,0r0,-56v71,-24,196,-21,191,64v-3,53,-29,66,-74,96r-73,48r124,0r0,-31r24,0r0,77r-194,0r0,-43v52,-42,122,-64,122,-141v0,-36,-14,-64,-49,-63"},"3":{"d":"100,-247v-29,0,-44,19,-48,45r-21,0r0,-53v66,-19,185,-25,186,53v-1,36,-24,54,-58,59v43,7,68,25,68,72v1,86,-130,87,-202,62r0,-58r21,0v2,32,21,51,54,52v35,0,56,-22,56,-57v0,-42,-25,-63,-70,-60r0,-21v38,2,62,-12,61,-48v0,-30,-17,-46,-47,-46"},"4":{"d":"230,0r-145,0r0,-21r39,0r0,-48r-109,0r0,-20r110,-178r66,0r0,175r45,0r0,23r-45,0r0,48r39,0r0,21xm124,-92r0,-127r-78,127r78,0"},"5":{"d":"102,-155v-21,0,-33,9,-43,22r-18,0r0,-129r162,0r0,46r-140,0r0,57v58,-42,160,-7,160,73v0,94,-116,106,-193,77r0,-58r21,0v1,34,16,52,50,52v38,0,51,-29,51,-71v0,-40,-12,-69,-50,-69"},"6":{"d":"196,-210v-4,-43,-74,-48,-93,-15v-8,14,-14,37,-14,69v54,-41,147,-8,142,70v-4,59,-38,91,-99,91v-77,1,-109,-48,-109,-128v0,-91,37,-143,122,-144v27,0,49,4,72,10r0,47r-21,0xm128,-153v-47,-4,-37,93,-26,122v4,10,14,16,26,16v31,0,33,-28,33,-69v0,-41,-1,-66,-33,-69"},"7":{"d":"221,-218r-109,218r-35,0r105,-213r-129,0r0,36r-25,0r0,-85r193,0r0,44"},"8":{"d":"223,-199v0,35,-24,52,-56,59v39,5,64,28,64,70v-1,54,-45,75,-106,75v-61,0,-105,-20,-106,-75v0,-41,25,-65,63,-70v-32,-7,-55,-24,-55,-59v0,-50,42,-68,98,-68v57,0,98,19,98,68xm125,-150v27,0,30,-17,30,-48v0,-32,-3,-49,-30,-49v-27,0,-30,17,-30,49v0,31,3,48,30,48xm125,-15v31,0,36,-20,36,-58v-1,-37,-4,-56,-36,-56v-32,0,-36,19,-36,56v0,38,4,58,36,58"},"9":{"d":"123,-109v46,4,36,-92,26,-122v-3,-11,-14,-16,-26,-16v-32,0,-34,28,-34,69v0,41,3,66,34,69xm54,-52v5,42,75,49,94,15v8,-14,14,-38,14,-70v-53,42,-142,11,-142,-69v0,-60,36,-91,98,-91v76,0,110,49,110,128v0,90,-37,143,-122,144v-26,-1,-48,-4,-73,-10r0,-47r21,0"},":":{"d":"66,-110v-18,0,-33,-15,-33,-33v-1,-17,15,-33,33,-33v18,0,34,16,34,33v0,18,-17,33,-34,33xm66,5v-17,0,-33,-16,-33,-33v0,-17,16,-34,33,-34v17,0,34,17,34,34v0,17,-17,33,-34,33","w":132},";":{"d":"66,-110v-18,0,-33,-15,-33,-33v-1,-17,15,-33,33,-33v18,0,34,16,34,33v0,18,-17,33,-34,33xm9,33v25,-20,38,-46,36,-91r50,0v0,59,-26,93,-66,116","w":132},"<":{"d":"263,-172r-172,59r172,59r0,42r-225,-81r0,-40r225,-81r0,42","w":301},"=":{"d":"38,-93r225,0r0,40r-225,0r0,-40xm38,-173r225,0r0,40r-225,0r0,-40","w":301},">":{"d":"38,-172r0,-42r225,81r0,40r-225,81r0,-42r172,-59","w":301},"?":{"d":"94,5v-17,0,-34,-16,-34,-33v0,-17,17,-34,34,-34v17,0,33,17,33,34v0,17,-16,33,-33,33xm86,-247v-28,-1,-39,19,-41,46r-22,0r0,-54v68,-22,175,-20,172,63v-2,51,-36,76,-89,79r0,36r-25,0r0,-52v30,-10,48,-29,48,-67v0,-31,-13,-51,-43,-51","w":210},"@":{"d":"184,-38v30,0,40,-29,40,-64v0,-28,-14,-50,-40,-50v-52,1,-52,114,0,114xm335,-119v3,66,-42,105,-111,103r0,-26v-33,51,-133,20,-121,-53v-11,-73,86,-106,121,-54r0,-22r38,0r0,131v33,-9,53,-37,53,-79v0,-71,-53,-112,-124,-112v-84,0,-131,55,-131,136v0,80,48,135,129,135v32,0,58,-9,80,-23r10,16v-27,17,-58,30,-97,30v-97,0,-158,-61,-158,-158v0,-98,61,-158,161,-158v90,0,147,49,150,134","w":360},"A":{"d":"-3,0r0,-21r22,0r98,-241r42,0r99,241r25,0r0,21r-123,0r0,-21r26,0r-21,-54r-99,0r-22,54r31,0r0,21r-78,0xm75,-96r81,0r-41,-101","w":279,"k":{"T":20,"V":26,"W":18,"Y":18,"f":6,"t":6,"v":15,"w":15,"y":15,"\u2019":43,"\u201d":43}},"B":{"d":"284,-76v0,107,-162,69,-267,76r0,-21r33,0r0,-220r-33,0r0,-21v95,8,252,-32,252,64v0,37,-28,51,-66,55v45,3,81,24,81,67xm201,-198v0,-41,-38,-45,-83,-43r0,88v45,2,83,-3,83,-45xm209,-76v0,-50,-39,-59,-91,-56r0,111v52,2,91,-6,91,-55","w":304,"k":{"-":-7,"C":-7,"G":-7,"O":-7,"Y":6}},"C":{"d":"166,-16v39,0,58,-24,67,-59r35,0v-13,52,-46,79,-109,80v-85,0,-144,-51,-144,-136v0,-85,58,-137,144,-136v39,0,70,9,102,22r0,65r-22,0v-9,-40,-29,-66,-73,-66v-60,0,-76,48,-76,115v0,68,15,115,76,115","w":286,"k":{",":6,".":6}},"D":{"d":"222,-131v0,-78,-24,-117,-104,-110r0,220v78,6,104,-32,104,-110xm297,-131v0,88,-55,132,-145,131r-135,0r0,-21r33,0r0,-220r-33,0r0,-21r135,0v91,-1,145,43,145,131","w":312,"k":{",":13,"-":-7,".":13,"V":6}},"E":{"d":"17,0r0,-21r33,0r0,-220r-33,0r0,-21r236,0r0,61r-24,0r0,-37r-111,0r0,84r69,0r0,-34r24,0r0,91r-24,0r0,-33r-69,0r0,106r114,0r0,-38r24,0r0,62r-239,0","w":274,"k":{"-":-7}},"F":{"d":"17,0r0,-21r33,0r0,-220r-33,0r0,-21r234,0r0,61r-24,0r0,-37r-109,0r0,84r67,0r0,-34r24,0r0,91r-24,0r0,-33r-67,0r0,109r42,0r0,21r-143,0","w":255,"k":{",":36,"-":16,".":36,":":13,";":13,"A":21,"a":20,"e":20,"o":20,"r":6,"u":6}},"G":{"d":"160,-267v43,0,77,8,110,22r0,65r-22,0v-10,-43,-30,-66,-79,-66v-62,0,-80,44,-79,115v1,68,15,115,76,115v21,0,36,-6,50,-14r0,-72r-32,0r0,-21r95,0r0,101v-36,16,-72,26,-119,27v-87,1,-145,-51,-145,-136v0,-85,58,-137,145,-136","w":307,"k":{",":13,"-":-7,".":13}},"H":{"d":"17,0r0,-21r33,0r0,-220r-33,0r0,-21r135,0r0,21r-34,0r0,88r105,0r0,-88r-34,0r0,-21r135,0r0,21r-34,0r0,220r34,0r0,21r-135,0r0,-21r34,0r0,-108r-105,0r0,108r34,0r0,21r-135,0","w":340},"I":{"d":"17,0r0,-21r33,0r0,-220r-33,0r0,-21r135,0r0,21r-34,0r0,220r34,0r0,21r-135,0","w":168},"J":{"d":"123,-7v9,83,-86,95,-149,70r0,-41r22,0v1,20,9,32,28,32v30,0,30,-25,31,-63r0,-232r-38,0r0,-21r140,0r0,21r-34,0r0,234","w":170,"k":{",":15,".":28,":":15,";":15}},"K":{"d":"17,0r0,-21r33,0r0,-220r-33,0r0,-21r135,0r0,21r-34,0r0,96r111,-96r-28,0r0,-21r98,0r0,21r-35,0r-94,81r128,139r26,0r0,21r-89,0r-117,-127r0,106r34,0r0,21r-135,0","w":312,"k":{"-":26,"A":15,"C":10,"O":10,"U":13,"W":13,"Y":10,"e":8,"o":8,"u":8,"y":16}},"L":{"d":"17,0r0,-21r33,0r0,-220r-33,0r0,-21r135,0r0,21r-34,0r0,217r103,0r0,-42r24,0r0,66r-228,0","w":253,"k":{"T":29,"U":20,"V":43,"W":24,"Y":23,"y":13,"\u2018":86,"\u2019":86,"\u201c":86,"\u201d":86}},"M":{"d":"15,0r0,-21r34,0r0,-220r-34,0r0,-21r108,0r75,168r76,-168r108,0r0,21r-34,0r0,220r34,0r0,21r-135,0r0,-21r33,0r0,-200r-81,183r-45,0r-81,-183r0,200r34,0r0,21r-92,0","w":398},"N":{"d":"16,0r0,-21r33,0r0,-220r-33,0r0,-21r82,0r158,185r0,-164r-33,0r0,-21r92,0r0,21r-34,0r0,241r-46,0r-161,-190r0,169r34,0r0,21r-92,0","w":329,"k":{",":23,".":23,":":13,";":13}},"O":{"d":"90,-131v1,64,13,115,67,115v54,0,66,-50,66,-115v0,-65,-12,-115,-66,-115v-53,0,-67,50,-67,115xm298,-131v0,84,-55,136,-141,136v-87,0,-142,-51,-142,-136v0,-85,55,-136,142,-136v86,0,141,50,141,136","w":313,"k":{",":21,"-":-13,".":21,"V":6,"X":6}},"P":{"d":"262,-186v0,67,-68,84,-144,77r0,88r42,0r0,21r-143,0r0,-21r33,0r0,-220r-33,0r0,-21v102,4,245,-26,245,76xm188,-186v0,-39,-26,-60,-70,-55r0,111v44,5,70,-16,70,-56","w":270,"k":{",":46,"-":20,".":60,":":13,";":13,"A":26,"a":10,"e":10,"o":10}},"Q":{"d":"187,3v14,15,36,19,66,19r0,43v-53,1,-79,-21,-97,-60v-85,-1,-141,-50,-141,-136v0,-85,55,-136,142,-136v86,0,142,50,141,136v0,77,-42,124,-111,134xm90,-131v1,64,13,115,67,115v54,0,66,-50,66,-115v0,-65,-12,-115,-66,-115v-53,0,-67,50,-67,115","w":313,"k":{",":18,"-":-13,".":18}},"R":{"d":"262,-192v0,41,-30,59,-71,64v52,10,57,70,83,107r27,0r0,21r-86,0v-20,-34,-39,-84,-63,-111v-7,-8,-20,-6,-34,-6r0,96r34,0r0,21r-135,0r0,-21r33,0r0,-220r-33,0r0,-21v98,6,245,-29,245,70xm192,-190v0,-42,-29,-55,-74,-51r0,102v45,4,74,-9,74,-51","w":299,"k":{"T":6,"V":13,"W":8,"Y":11,"a":-8,"y":6,"\u2019":13,"\u201d":13}},"S":{"d":"238,-76v0,97,-138,92,-210,63r0,-62r22,0v6,39,33,56,77,59v44,3,69,-35,46,-66v-46,-31,-149,-16,-149,-103v0,-95,122,-91,198,-67r0,58r-22,0v-8,-36,-30,-48,-72,-52v-42,-4,-68,35,-43,61v24,25,116,25,137,56v9,14,16,30,16,53","w":259,"k":{",":13,"-":-13,".":13,"S":8}},"T":{"d":"65,0r0,-21r35,0r0,-217r-72,0r0,41r-24,0r0,-65r260,0r0,65r-24,0r0,-41r-72,0r0,217r35,0r0,21r-138,0","w":267,"k":{",":40,"-":60,".":46,":":13,";":13,"A":20,"T":13,"a":34,"c":41,"e":41,"o":41,"r":26,"s":33,"u":33,"w":40,"y":40}},"U":{"d":"159,5v-82,0,-113,-30,-113,-112r0,-134r-34,0r0,-21r135,0r0,21r-33,0v8,87,-33,219,67,219v99,0,58,-132,67,-219r-33,0r0,-21r91,0r0,21r-34,0r0,135v-1,81,-30,111,-113,111","w":313,"k":{",":33,"-":6,".":33,":":13,";":13,"A":11}},"V":{"d":"284,-262r0,21r-22,0r-99,241r-41,0r-99,-241r-25,0r0,-21r123,0r0,21r-26,0r71,174r72,-174r-32,0r0,-21r78,0","w":279,"k":{",":63,"-":26,".":63,":":36,";":36,"A":28,"O":6,"a":33,"e":33,"o":33,"i":6,"u":23,"y":15,"\u2019":-7,"\u201d":-7}},"W":{"d":"307,0r-46,0r-59,-191r-59,191r-46,0r-75,-241r-25,0r0,-21r124,0r0,21r-28,0r50,161r57,-182r50,0r57,185r52,-164r-32,0r0,-21r82,0r0,21r-27,0","w":404,"k":{",":56,"-":20,".":56,":":24,";":24,"A":23,"a":31,"e":29,"o":29,"i":6,"r":16,"u":15,"y":8,"\u2019":-7,"\u201d":-7}},"X":{"d":"122,-101r-55,80r33,0r0,21r-93,0r0,-21r32,0r69,-101r-82,-119r-24,0r0,-21r130,0r0,21r-29,0r51,74r50,-74r-30,0r0,-21r91,0r0,21r-32,0r-65,94r86,126r25,0r0,21r-131,0r0,-21r29,0","w":279,"k":{"-":13,"A":13,"C":6,"O":6}},"Y":{"d":"62,0r0,-21r35,0r0,-88r-78,-132r-22,0r0,-21r126,0r0,21r-29,0r59,100r58,-100r-26,0r0,-21r75,0r0,21r-22,0r-73,123r0,97r36,0r0,21r-139,0","w":256,"k":{",":46,"-":36,".":46,":":44,";":44,"A":23,"C":6,"a":28,"e":31,"o":31,"i":6,"u":31}},"Z":{"d":"13,0r0,-25r157,-213r-126,0r0,39r-24,0r0,-63r228,0r0,24r-155,214r133,0r0,-37r24,0r0,61r-237,0","w":262,"k":{",":6,".":6}},"[":{"d":"45,-274r100,0r0,22r-38,0r0,278r38,0r0,21r-100,0r0,-321","w":170},"\\":{"d":"39,-262r92,295r-39,0r-92,-295r39,0","w":131},"]":{"d":"125,-274r0,321r-100,0r0,-21r38,0r0,-278r-38,0r0,-22r100,0","w":170},"^":{"d":"171,-262r94,97r-37,0r-77,-55r-77,55r-38,0r96,-97r39,0","w":301},"_":{"d":"180,52r0,33r-180,0r0,-33r180,0","w":180},"`":{"d":"74,-288r45,66r-29,0r-65,-66r49,0","w":180},"a":{"d":"29,-180v64,-22,169,-21,169,65r0,94r27,0r0,21r-89,0r0,-24v-26,43,-121,41,-121,-30v0,-59,57,-65,121,-63v2,-36,-9,-56,-44,-55v-26,0,-38,9,-43,32r-20,0r0,-40xm104,-24v34,0,34,-37,32,-72v-34,-2,-59,3,-59,37v0,22,8,35,27,35","w":233},"b":{"d":"152,5v-28,0,-46,-10,-55,-29r0,24r-89,0r0,-21r27,0r0,-231r-27,0r0,-22r89,0r0,111v9,-19,27,-29,55,-29v56,-1,85,41,85,98v0,57,-29,100,-85,99xm133,-165v-35,0,-37,40,-36,81v0,36,7,62,36,62v34,0,34,-28,34,-72v0,-44,0,-71,-34,-71","w":251},"c":{"d":"130,-15v27,1,41,-18,44,-43r29,0v-8,42,-35,62,-83,63v-65,0,-105,-35,-105,-99v0,-96,105,-116,182,-83r0,52r-20,0v-4,-29,-15,-47,-45,-47v-42,1,-48,29,-48,78v0,48,6,77,46,79","w":219},"d":{"d":"119,-22v35,0,37,-40,36,-81v0,-36,-7,-62,-36,-62v-34,0,-35,27,-35,71v0,44,1,72,35,72xm100,-192v28,0,45,11,55,29r0,-89r-27,0r0,-22r89,0r0,253r26,0r0,21r-88,0r0,-24v-10,19,-27,29,-55,29v-55,1,-85,-42,-85,-99v0,-58,30,-97,85,-98","w":251},"e":{"d":"114,-172v-29,0,-29,31,-30,67r60,0v-1,-39,-1,-67,-30,-67xm15,-94v0,-94,116,-126,171,-71v17,18,26,45,27,80v-42,2,-92,-4,-129,2v1,42,8,67,46,68v29,0,45,-16,49,-42r29,0v-10,43,-39,62,-93,62v-64,1,-100,-35,-100,-99","w":229},"f":{"d":"39,-187v-14,-86,68,-98,135,-80r0,40r-19,0v-2,-17,-9,-26,-27,-27v-31,-1,-27,35,-27,67r47,0r0,21r-47,0r0,145r36,0r0,21r-125,0r0,-21r27,0r0,-145r-28,0r0,-21r28,0","w":154,"k":{",":8,"-":13,".":13,"\u2019":-27,"\u201c":-11,"\u201d":-27}},"g":{"d":"100,-192v28,0,45,11,55,29r0,-24r88,0r0,21r-26,0r0,164v3,85,-112,95,-185,70r0,-44r20,0v4,25,20,36,50,36v49,0,55,-32,53,-84v-10,19,-27,29,-55,29v-55,1,-85,-42,-85,-99v0,-58,30,-97,85,-98xm119,-22v35,0,37,-40,36,-81v0,-36,-7,-62,-36,-62v-34,0,-35,27,-35,71v0,44,1,72,35,72","w":251},"h":{"d":"137,-163v-54,0,-31,89,-36,142r23,0r0,21r-112,0r0,-21r27,0r0,-231r-28,0r0,-22r90,0r0,114v28,-53,126,-40,126,41r0,98r26,0r0,21r-111,0r0,-21r23,0r0,-100v-1,-27,-4,-42,-28,-42","w":261},"i":{"d":"67,-206v-17,-1,-34,-15,-34,-34v0,-17,17,-34,34,-34v17,0,33,16,33,34v0,18,-16,35,-33,34xm101,-21r27,0r0,21r-116,0r0,-21r27,0r0,-145r-27,0r0,-21r89,0r0,166","w":136},"j":{"d":"65,-206v-17,-1,-34,-15,-34,-34v0,-17,16,-34,34,-34v17,0,34,17,34,34v0,17,-17,35,-34,34xm15,60v22,0,23,-14,23,-38r0,-188r-26,0r0,-21r89,0r0,209v2,59,-75,66,-128,51r0,-40r20,1v1,17,5,26,22,26","w":130},"k":{"d":"125,0r-113,0r0,-21r27,0r0,-231r-27,0r0,-22r89,0r0,176r75,-68r-22,0r0,-21r85,0r0,21r-34,0r-48,44r78,101r21,0r0,21r-108,0r0,-21r22,0r-52,-67r-17,16r0,51r24,0r0,21","w":249,"k":{"-":15}},"l":{"d":"101,-21r27,0r0,21r-116,0r0,-21r27,0r0,-231r-27,0r0,-22r89,0r0,253","w":136},"m":{"d":"101,-160v18,-42,105,-44,117,4v16,-20,32,-35,64,-36v81,-4,62,95,64,171r27,0r0,21r-112,0r0,-21r23,0r0,-89v-2,-36,1,-53,-26,-53v-52,0,-29,89,-34,142r22,0r0,21r-107,0r0,-21r22,0r0,-89v-1,-37,2,-53,-25,-53v-54,0,-30,89,-35,142r22,0r0,21r-111,0r0,-21r27,0r0,-145r-27,0r0,-21r89,0r0,27","w":380},"n":{"d":"137,-163v-54,0,-31,89,-36,142r23,0r0,21r-112,0r0,-21r27,0r0,-145r-27,0r0,-21r89,0r0,27v28,-53,126,-40,126,41r0,98r26,0r0,21r-111,0r0,-21r23,0r0,-100v-1,-27,-4,-42,-28,-42","w":261},"o":{"d":"120,-172v-51,-5,-38,108,-28,140v4,12,15,17,28,17v36,0,36,-31,36,-79v0,-48,0,-73,-36,-78xm226,-94v0,63,-42,99,-106,99v-64,0,-105,-37,-105,-99v0,-63,42,-98,105,-98v64,0,106,35,106,98","w":240,"k":{".":6}},"p":{"d":"133,-165v-35,0,-37,40,-36,81v0,36,7,62,36,62v34,0,34,-28,34,-72v0,-44,0,-71,-34,-71xm152,5v-28,0,-46,-10,-55,-29r0,78r29,0r0,21r-118,0r0,-21r27,0r0,-220r-27,0r0,-21r89,0r0,24v9,-19,27,-29,55,-29v56,-1,85,41,85,98v0,57,-29,100,-85,99","w":251},"q":{"d":"100,-192v28,0,45,11,55,29r0,-24r88,0r0,21r-26,0r0,220r26,0r0,21r-117,0r0,-21r29,0r0,-78v-10,19,-27,29,-55,29v-55,1,-85,-42,-85,-99v0,-58,30,-97,85,-98xm119,-22v35,0,37,-40,36,-81v0,-36,-7,-62,-36,-62v-34,0,-35,27,-35,71v0,44,1,72,35,72","w":251},"r":{"d":"101,-154v12,-34,49,-43,92,-35r0,56r-20,0v-1,-19,-10,-30,-28,-30v-55,0,-43,83,-44,142r34,0r0,21r-123,0r0,-21r27,0r0,-145r-29,0r0,-21r91,0r0,33","w":189,"k":{",":26,".":33,"\u2018":-13,"\u2019":-13,"\u201c":-13,"\u201d":-13}},"s":{"d":"188,-57v0,76,-107,66,-171,52r0,-53r20,0v3,28,21,41,51,43v31,2,49,-21,33,-43v-35,-21,-106,-15,-106,-74v0,-73,103,-65,163,-49r0,47r-20,0v-2,-27,-20,-34,-48,-38v-40,-5,-53,40,-12,48v45,8,90,16,90,67","w":202},"t":{"d":"102,5v-98,0,-58,-96,-66,-171r-27,0r0,-21r27,0r0,-58r62,0r0,58r52,0r0,21r-52,0r0,115v1,25,-1,36,18,36v18,0,22,-11,22,-31r27,0v-3,39,-19,51,-63,51","w":166},"u":{"d":"124,-24v55,0,30,-89,36,-142r-22,0r0,-21r85,0r0,166r26,0r0,21r-89,0r0,-26v-13,20,-29,31,-61,31v-81,0,-62,-95,-64,-171r-27,0r0,-21r89,0r0,109v2,37,-1,54,27,54","w":261},"v":{"d":"80,0r-66,-166r-21,0r0,-21r108,0r0,21r-23,0r47,119r47,-119r-24,0r0,-21r70,0r0,21r-21,0r-67,166r-50,0","w":209,"k":{",":29,".":36,"\u2018":-13,"\u2019":-13,"\u201c":-13,"\u201d":-13}},"w":{"d":"194,-187r43,125r35,-104r-25,0r0,-21r70,0r0,21r-22,0r-56,166r-43,0r-40,-117r-40,117r-42,0r-57,-166r-20,0r0,-21r106,0r0,21r-22,0r34,101r42,-122r37,0","w":309,"k":{",":29,".":36,"\u2018":-13,"\u2019":-13,"\u201c":-13,"\u201d":-13}},"x":{"d":"126,-119r33,-47r-23,0r0,-21r73,0r0,21r-25,0r-47,67r55,78r25,0r0,21r-119,0r0,-21r24,0r-35,-49r-35,49r25,0r0,21r-77,0r0,-21r27,0r49,-70r-53,-75r-21,0r0,-21r114,0r0,21r-23,0","w":214,"k":{"-":6}},"y":{"d":"37,34v-3,25,27,33,43,20v6,-4,12,-19,17,-30r-82,-190r-20,0r0,-21r108,0r0,21r-22,0r47,111r44,-111r-24,0r0,-21r70,0r0,21r-23,0r-83,208v-10,40,-55,45,-94,30r0,-39","w":209,"k":{",":34,".":41,"\u2018":-13,"\u2019":-13,"\u201c":-13,"\u201d":-13}},"z":{"d":"13,0r0,-21r107,-145r-81,0r0,32r-21,0r0,-53r174,0r0,21r-107,145r86,0r0,-34r21,0r0,55r-179,0","w":204},"{":{"d":"147,-50v2,39,-12,93,34,87r18,0r0,22v-68,0,-118,5,-114,-65v3,-51,7,-101,-55,-91r0,-21v60,9,58,-38,55,-91v-4,-70,45,-65,114,-65r0,22v-35,-2,-52,2,-52,40v0,50,6,100,-40,104v30,9,39,19,40,58","w":231},"|":{"d":"84,-275r0,360r-38,0r0,-360r38,0","w":130},"}":{"d":"147,-6v4,70,-45,65,-114,65r0,-22v35,2,53,-3,52,-40v-1,-51,-7,-101,40,-105v-47,-4,-40,-53,-40,-104v0,-37,-16,-42,-52,-40r0,-22v68,0,117,-5,114,65v-2,50,-8,101,54,91r0,21v-59,-9,-57,37,-54,91","w":231},"~":{"d":"204,-121v25,-1,42,-11,59,-25r0,36v-28,29,-70,39,-114,18v-44,-21,-80,-14,-111,12r0,-36v19,-16,37,-28,67,-29v25,-1,75,25,99,24","w":301},"\u00d7":{"d":"255,-190r-77,77r77,78r-27,27r-77,-78r-78,78r-27,-27r78,-78r-78,-77r27,-27r78,77r77,-77","w":301},"\u2013":{"d":"19,-117r142,0r0,42r-142,0r0,-42","w":180},"\u2014":{"d":"19,-117r322,0r0,42r-322,0r0,-42","w":360},"\u2018":{"d":"104,-243v-23,16,-33,40,-32,79r-47,0v2,-52,24,-83,61,-103","w":125,"k":{"A":50}},"\u2019":{"d":"17,-183v24,-16,34,-38,32,-79r48,0v-2,53,-24,82,-61,103","w":125},"\u201c":{"d":"186,-243v-24,16,-34,39,-32,79r-48,0v2,-53,25,-83,62,-103xm104,-243v-23,16,-33,40,-32,79r-47,0v2,-52,24,-83,61,-103","w":207,"k":{"A":50,"V":-10,"W":-10,"X":-10,"Y":-10}},"\u201d":{"d":"99,-183v23,-16,33,-39,32,-79r48,0v-3,53,-25,81,-62,103xm17,-183v24,-16,34,-38,32,-79r48,0v-2,53,-24,82,-61,103","w":207},"\u2026":{"d":"297,5v-17,0,-33,-16,-33,-33v0,-17,16,-34,33,-34v17,0,34,17,34,34v0,17,-17,33,-34,33xm180,5v-17,0,-33,-15,-33,-33v0,-18,16,-34,33,-34v17,0,33,16,33,34v0,18,-16,33,-33,33xm63,5v-17,0,-34,-16,-34,-33v0,-17,17,-34,34,-34v17,0,33,17,33,34v0,17,-16,33,-33,33","w":360},"\u2122":{"d":"42,-262r99,0r0,31r-13,0r0,-17r-23,0r0,73r15,0r0,14r-57,0r0,-14r15,0r0,-73r-23,0r0,17r-13,0r0,-31xm201,-262r29,51r29,-51r43,0r0,14r-15,0r0,73r15,0r0,14r-56,0r0,-14r15,0r0,-63r-29,50r-20,0r-28,-50r0,63r15,0r0,14r-45,0r0,-14r15,0r0,-73r-15,0r0,-14r47,0","w":360},"\u00a0":{"w":125}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved.
 * DejaVu changes are in public domain
 * 
 * 
 * Manufacturer:
 * DejaVu fonts team
 * 
 * Vendor URL:
 * http://dejavu.sourceforge.net
 * 
 * License information:
 * http://dejavu.sourceforge.net/wiki/index.php/License
 */
Cufon.registerFont({"w":229,"face":{"font-family":"DejaVu Serif","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 6 6 3 5 3 5 11 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-66 -288 394 85","underline-thickness":"15.8203","underline-position":"-14.9414","slope":"-11","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":114},"!":{"d":"46,5v-23,0,-22,-31,-8,-40v13,-15,42,-5,36,17v-3,11,-15,23,-28,23xm76,-262r45,0r-40,144r-9,44r-21,0v12,-59,17,-125,25,-188","w":144},"\"":{"d":"63,-262r0,97r-28,0r0,-97r28,0xm130,-262r0,97r-28,0r0,-97r28,0","w":165},"#":{"d":"183,-158r-49,0r-15,58r50,0xm158,-258r-18,73r50,0r18,-73r30,0r-18,73r54,0r0,27r-61,0r-14,58r55,0r0,27r-62,0r-18,73r-30,0r18,-73r-50,0r-18,73r-30,0r18,-73r-54,0r0,-27r61,0r14,-58r-55,0r0,-27r62,0r18,-73r30,0","w":301},"$":{"d":"102,-12v49,4,69,-69,16,-79xm123,-209v-45,-2,-65,64,-15,74xm12,-13r9,-48r19,0v-6,34,12,48,45,49r16,-85v-41,-14,-67,-20,-60,-65v6,-39,41,-62,85,-64r9,-48r18,0r-9,48v26,1,45,7,63,17r-9,46r-19,0v3,-29,-13,-44,-39,-46r-15,80v42,15,72,21,65,67v-6,40,-44,65,-91,67r-9,48r-18,0r9,-48v-28,0,-48,-7,-69,-18"},"%":{"d":"125,-236v-25,-39,-65,10,-65,41v-14,46,23,72,49,40v12,-15,25,-56,16,-81xm281,-107v-25,-39,-65,10,-65,41v-14,46,23,72,49,40v12,-15,23,-56,16,-81xm195,-14v-39,-69,50,-166,108,-104v25,51,-10,126,-68,123v-19,0,-32,-6,-40,-19xm266,-267r27,0r-217,272r-27,0xm39,-144v-37,-70,49,-163,108,-104v25,51,-9,127,-68,124v-19,0,-33,-7,-40,-20","w":342},"&":{"d":"51,-70v-3,63,91,66,126,29r-82,-107v-24,18,-42,41,-44,78xm267,-130v-11,32,-28,58,-51,79r24,32r42,0r-4,19r-71,0r-19,-25v-45,41,-177,48,-174,-37v2,-53,33,-77,72,-101v-34,-61,31,-121,105,-101v10,2,21,5,34,9r-9,45r-20,0v4,-23,-11,-38,-36,-38v-31,0,-60,26,-46,57v20,43,64,86,91,126v22,-21,38,-48,44,-84r52,0r-4,19r-30,0","w":320},"'":{"d":"63,-262r0,97r-28,0r0,-97r28,0","w":98},"(":{"d":"83,56v-52,-26,-71,-82,-55,-165v15,-80,54,-138,119,-165r-4,18v-64,32,-90,150,-86,242v1,23,13,41,29,53","w":140},")":{"d":"-7,56r4,-17v64,-32,91,-152,86,-243v-1,-23,-13,-40,-29,-52r3,-18v52,26,71,82,55,165v-15,80,-54,138,-119,165","w":140},"*":{"d":"174,-217r-69,32r69,32r-13,21r-61,-38r2,67r-24,0r2,-67r-61,38r-13,-21r69,-32r-69,-32r13,-21r61,38r-2,-67r24,0r-2,67r61,-38","w":180},"+":{"d":"165,-226r0,99r98,0r0,28r-98,0r0,99r-28,0r0,-99r-99,0r0,-28r99,0r0,-99r28,0","w":301},",":{"d":"7,35v27,-16,40,-40,47,-75r34,0v-11,44,-33,69,-70,89","w":114},"-":{"d":"18,-110r90,0r-5,27r-90,0","w":121,"k":{"T":13,"V":26,"W":20,"X":13,"Y":40}},".":{"d":"53,5v-24,0,-24,-31,-9,-40v14,-15,42,-3,37,17v-2,11,-15,23,-28,23","w":114},"\/":{"d":"122,-262r28,0r-151,295r-28,0","w":121},"0":{"d":"57,-42v11,44,58,34,80,0v18,-28,46,-132,35,-178v-11,-44,-59,-34,-81,0v-18,28,-45,132,-34,178xm162,-31v-37,41,-115,54,-134,0v-32,-91,16,-235,113,-236v109,-2,64,188,21,236"},"1":{"d":"25,0r4,-19r46,0r42,-218r-60,34r5,-23r72,-41r24,0r-48,248r46,0r-4,19r-127,0"},"2":{"d":"159,-235v-29,-33,-96,-8,-100,35r-20,0r9,-47v54,-33,172,-29,154,54v-11,54,-112,122,-159,164r110,0r6,-32r21,0r-12,61r-170,0r4,-19v55,-54,141,-92,163,-174v5,-18,2,-33,-6,-42"},"3":{"d":"164,-238v-30,-27,-92,-6,-95,33r-20,0r9,-46v53,-23,164,-29,148,47v-7,33,-34,54,-69,61v71,1,65,99,18,128v-37,23,-112,26,-151,2r10,-51r20,0v-12,56,63,63,96,36v19,-15,35,-64,17,-89v-11,-15,-34,-17,-61,-16r3,-18v58,7,98,-38,75,-87"},"4":{"d":"117,-89r27,-140r-117,140r90,0xm177,0r-120,0r4,-19r42,0r10,-51r-114,0r3,-19r150,-178r35,0r-35,178r50,0r-3,19r-50,0r-10,51r42,0"},"5":{"d":"151,-135v-17,-30,-75,-21,-93,4r-15,0r25,-131r139,0r-6,28r-120,0r-14,76v29,-20,96,-18,113,11v47,78,-31,180,-136,148v-12,-3,-24,-8,-36,-14r10,-51r20,0v-14,58,62,63,92,33v18,-18,38,-74,21,-104"},"6":{"d":"60,-31v37,47,101,-5,100,-52v8,-42,-2,-69,-38,-70v-55,-2,-78,72,-62,122xm189,-213v4,-53,-72,-41,-93,-11v-12,18,-26,44,-33,80v26,-31,101,-40,124,-3v40,66,-19,152,-97,152v-116,0,-66,-188,-18,-234v37,-36,91,-47,145,-28r-8,44r-20,0"},"7":{"d":"225,-245r-150,245r-26,0r143,-234r-121,0r-7,33r-20,0r12,-61r173,0"},"8":{"d":"55,-28v30,38,101,5,101,-44v19,-58,-50,-73,-84,-43v-17,15,-35,64,-17,87xm87,-162v39,43,112,-21,82,-74v-42,-42,-112,21,-82,74xm89,-140v-59,-3,-50,-83,-12,-109v47,-32,150,-21,132,50v-9,33,-31,53,-66,59v67,1,59,96,16,125v-52,35,-170,24,-147,-57v11,-37,36,-63,77,-68"},"9":{"d":"40,-49v-3,52,72,41,93,11v12,-18,26,-44,33,-80v-25,30,-101,40,-124,3v-40,-66,19,-152,97,-152v116,0,65,188,18,234v-38,36,-90,46,-145,28r8,-44r20,0xm169,-231v-37,-47,-100,5,-100,52v0,43,1,68,38,70v55,2,78,-72,62,-122"},":":{"d":"45,5v-22,1,-24,-30,-9,-40v13,-15,43,-5,37,17v-3,12,-14,23,-28,23xm68,-110v-25,2,-23,-31,-9,-40v13,-13,42,-5,36,17v-3,12,-13,22,-27,23","w":121},";":{"d":"-4,35v26,-17,41,-38,46,-75r35,0v-11,44,-33,69,-70,89xm72,-110v-24,0,-22,-32,-8,-40v14,-14,41,-3,36,17v-3,12,-13,23,-28,23","w":121},"<":{"d":"263,-179r-182,66r182,67r0,29r-225,-81r0,-29r225,-82r0,30","w":301},"=":{"d":"38,-163r225,0r0,28r-225,0r0,-28xm38,-91r225,0r0,28r-225,0r0,-28","w":301},">":{"d":"38,-179r0,-30r225,82r0,29r-225,81r0,-29r183,-67","w":301},"?":{"d":"60,5v-22,0,-24,-30,-9,-40v13,-15,44,-5,37,17v-1,11,-16,23,-28,23xm146,-236v-27,-31,-84,-4,-90,31r-17,0r9,-46v53,-28,157,-22,141,53v-10,48,-45,73,-95,84r-8,44r-22,0r11,-57v50,-9,94,-56,71,-109","w":193},"@":{"d":"254,30v-51,45,-164,40,-206,-12v-34,-42,-30,-126,-1,-174v39,-64,141,-127,236,-83v40,19,66,60,56,122v-10,60,-60,102,-127,102r5,-29v-19,30,-82,43,-103,7v-31,-55,12,-139,76,-136v24,1,38,11,47,28r5,-25r27,0r-26,136v84,-6,113,-159,30,-189v-124,-44,-231,46,-221,182v6,85,132,108,195,59xm140,-51v33,38,93,-3,89,-53v13,-46,-44,-63,-72,-34v-14,15,-30,63,-17,87","w":360},"A":{"d":"65,-95r96,0r-24,-125xm-28,0r4,-19r23,0r141,-243r29,0r47,243r26,0r-4,19r-95,0r3,-19r29,0r-10,-57r-111,0r-33,57r29,0r-4,19r-74,0","w":259,"k":{"T":20,"V":18,"W":15,"Y":15,"f":6,"t":6,"v":15,"w":16,"y":15,"\u2019":53,"\u201d":53}},"B":{"d":"67,-19v63,2,114,2,125,-57v12,-64,-45,-58,-103,-57xm93,-152v53,1,101,2,109,-46v9,-53,-43,-46,-91,-46xm177,-143v40,5,61,23,55,67v-12,93,-134,75,-238,76r4,-19r33,0r44,-225r-33,0r3,-18v62,4,151,-12,187,16v31,40,-4,105,-55,103","w":264,"k":{"-":-7,"C":-7,"G":-7,"O":-7,"Y":6}},"C":{"d":"123,-14v45,-1,70,-22,87,-55r32,0v-27,88,-208,105,-223,-5v-20,-144,118,-236,250,-171r-12,61r-20,0v7,-78,-99,-77,-138,-35v-37,39,-83,209,24,205","w":275,"k":{",":13,".":13}},"D":{"d":"67,-19v94,7,146,-34,161,-112v16,-85,-29,-121,-117,-113xm-6,0r4,-19r33,0r44,-225r-33,0r3,-18v78,1,169,-9,204,34v46,56,9,157,-38,193v-52,39,-130,35,-217,35","w":288,"k":{",":13,"-":-7,".":13,"V":6}},"E":{"d":"-6,0r4,-19r33,0r44,-225r-33,0r3,-18r212,0r-12,58r-21,0r7,-37r-121,0r-17,88r86,0r6,-33r22,0r-17,87r-21,0r6,-32r-86,0r-21,109r123,0r7,-36r22,0r-12,58r-214,0","w":262,"k":{"-":-7}},"F":{"d":"-6,0r4,-19r33,0r44,-225r-33,0r3,-18r215,0r-11,58r-22,0r7,-37r-124,0r-17,88r90,0r6,-33r22,0r-17,87r-22,0r7,-32r-90,0r-22,112r42,0r-4,19r-111,0","w":249,"k":{",":56,"-":16,".":56,":":13,";":13,"A":31,"a":24,"e":20,"o":20}},"G":{"d":"241,-184v8,-81,-102,-74,-141,-35v-39,40,-85,212,28,205v29,-2,56,-7,77,-19r13,-68r-50,0r4,-19r85,0r-19,98v-53,30,-167,47,-201,-10v-67,-112,40,-270,188,-230v15,4,30,9,47,16r-11,62r-20,0","w":287,"k":{",":13,"-":-7,".":13,"Y":6}},"H":{"d":"-6,0r4,-19r33,0r44,-225r-33,0r3,-18r103,0r-4,18r-33,0r-18,91r136,0r18,-91r-34,0r4,-18r103,0r-4,18r-34,0r-43,225r33,0r-3,19r-103,0r4,-19r33,0r22,-112r-136,0r-22,112r33,0r-3,19r-103,0","w":313},"I":{"d":"67,-19r33,0r-3,19r-103,0r4,-19r33,0r44,-225r-33,0r3,-18r103,0r-4,18r-33,0","w":142},"J":{"d":"-61,63r8,-41r20,0v-11,39,41,42,57,21v7,-9,13,-26,18,-52r46,-235r-41,0r4,-18r110,0r-4,18r-33,0r-46,237v-5,71,-73,100,-139,70","w":144,"k":{",":21,".":28,":":15,";":15}},"K":{"d":"-6,0r4,-19r33,0r44,-225r-33,0r3,-18r103,0r-4,18r-33,0r-20,100r133,-100r-29,0r4,-18r87,0r-4,18r-29,0r-132,99r102,126r29,0r-3,19r-61,0r-100,-125r-21,106r33,0r-3,19r-103,0","w":268,"k":{"-":26,"A":15,"C":10,"O":10,"U":13,"W":13,"Y":10,"e":10,"o":10,"u":8,"y":23}},"L":{"d":"-6,0r4,-19r33,0r44,-225r-33,0r3,-18r103,0r-4,18r-33,0r-43,222r120,0r8,-44r22,0r-13,66r-211,0","w":239,"k":{"T":29,"U":20,"V":43,"W":31,"Y":23,"y":6,"\u2019":86,"\u201d":86}},"M":{"d":"-6,0r4,-19r33,0r44,-225r-35,0r3,-18r77,0r56,186r128,-186r72,0r-4,18r-35,0r-43,225r33,0r-4,19r-102,0r3,-19r34,0r39,-202r-125,183r-25,0r-55,-183r-39,202r33,0r-3,19r-89,0","w":368},"N":{"d":"-7,0r3,-19r35,0r44,-225r-35,0r4,-18r67,0r117,207r37,-189r-36,0r4,-18r92,0r-3,18r-36,0r-48,249r-21,0r-125,-221r-39,197r35,0r-3,19r-92,0","w":315,"k":{",":23,".":23,":":13,";":13}},"O":{"d":"65,-43v23,42,99,34,131,0v37,-40,84,-210,-25,-205v-69,3,-98,51,-111,117v-8,39,-6,68,5,88xm275,-131v-19,91,-97,158,-201,127v-64,-18,-70,-126,-33,-184v26,-42,67,-78,133,-79v75,-1,117,55,101,136","w":295,"k":{",":21,"-":-13,".":21,"V":6,"X":6}},"P":{"d":"89,-134v57,3,102,-2,111,-55v10,-56,-36,-58,-89,-55xm-6,0r4,-19r33,0r44,-225r-33,0r3,-18v81,6,210,-29,195,73v-9,63,-75,81,-154,74r-19,96r41,0r-4,19r-110,0","w":242,"k":{",":73,"-":20,".":73,":":13,";":13,"A":33,"U":6,"a":16,"e":16,"o":15,"s":10}},"Q":{"d":"244,58v-63,3,-101,-11,-113,-53v-66,1,-109,-36,-109,-101v0,-101,58,-166,157,-171v63,-3,105,39,105,101v0,90,-54,151,-129,168v13,27,54,23,95,23xm61,-88v-2,48,22,75,69,74v81,-1,111,-75,114,-160v2,-47,-21,-75,-68,-74v-82,1,-111,76,-115,160","w":295,"k":{",":18,"-":-13,".":18,"\u2019":-7,"\u201d":-7}},"R":{"d":"172,-130v41,13,37,73,54,111r32,0r-4,19r-62,0v-12,-36,-20,-89,-40,-115v-13,-11,-42,-6,-65,-7r-20,103r37,0r-3,19r-107,0r4,-19r33,0r44,-225r-33,0r3,-18v80,8,217,-33,200,70v-6,38,-33,56,-73,62xm91,-141v57,2,105,3,114,-51v10,-59,-42,-53,-94,-52","w":271,"k":{"T":6,"V":13,"W":8,"Y":11,"a":-8,"y":6,"\u2019":20,"\u201d":20}},"S":{"d":"10,-13r12,-59r20,0v-17,63,66,68,106,46v19,-10,35,-45,19,-65v-30,-37,-141,-22,-124,-106v15,-73,116,-83,187,-55r-10,56r-20,0v13,-57,-65,-62,-100,-41v-17,10,-31,43,-16,62v29,35,139,23,125,103v-14,80,-127,93,-199,59","w":246,"k":{",":13,"-":-13,".":13,"S":6}},"T":{"d":"43,0r4,-19r33,0r44,-223r-77,0r-8,41r-22,0r12,-61r233,0r-12,61r-21,0r7,-41r-77,0r-43,223r33,0r-3,19r-103,0","w":240,"k":{",":53,"-":46,".":53,":":13,";":13,"A":20,"T":-7,"a":28,"c":28,"e":28,"o":28,"s":26,"w":13}},"U":{"d":"73,-244r-34,0r4,-18r103,0r-4,18r-34,0v-7,60,-46,150,-23,206v12,29,93,24,113,0v34,-41,40,-141,57,-206r-34,0r4,-18r88,0r-3,18r-34,0v-28,105,-11,255,-149,249v-75,-3,-96,-29,-81,-109","w":303,"k":{",":33,"-":6,".":33,":":13,";":13,"A":11,"J":10}},"V":{"d":"85,-244r38,202r117,-202r-30,0r4,-18r77,0r-4,18r-25,0r-141,244r-31,0r-46,-244r-26,0r4,-18r96,0r-4,18r-29,0","w":259,"k":{",":63,"-":33,".":63,":":36,";":36,"A":24,"O":6,"a":33,"e":33,"i":6,"o":33,"u":23,"y":15,"\u2019":-13,"\u201d":-13}},"W":{"d":"249,0r-29,0r-19,-213r-101,213r-29,0r-21,-244r-26,0r3,-18r96,0r-4,18r-32,0r17,194r101,-212r28,0r19,215r93,-197r-30,0r4,-18r75,0r-3,18r-26,0","w":370,"k":{",":63,"-":26,".":63,":":31,";":31,"A":18,"a":31,"e":29,"i":6,"o":24,"r":16,"u":15,"y":8,"\u2019":-7,"\u201d":-7}},"X":{"d":"115,-112r-82,93r34,0r-4,19r-86,0r3,-19r30,0r97,-110r-54,-115r-28,0r4,-18r104,0r-4,18r-31,0r40,85r74,-85r-34,0r4,-18r86,0r-4,18r-29,0r-89,101r59,124r28,0r-4,19r-104,0r3,-19r32,0","w":256,"k":{"-":13,"A":13,"C":6,"O":6}},"Y":{"d":"43,0r3,-19r34,0r18,-94r-56,-131r-24,0r3,-18r98,0r-4,18r-30,0r45,107r86,-107r-30,0r4,-18r76,0r-3,18r-25,0r-104,128r-19,97r34,0r-4,19r-102,0","w":237,"k":{",":46,"-":40,".":46,":":44,";":44,"A":28,"C":6,"a":28,"e":31,"i":6,"o":31,"u":31}},"Z":{"d":"-9,0r2,-13r208,-228r-136,0r-7,39r-22,0r12,-60r207,0r-2,12r-208,228r148,0r7,-36r22,0r-11,58r-220,0","w":250,"k":{",":6,".":6}},"[":{"d":"62,-274r82,0r-4,19r-48,0r-55,284r48,0r-3,18r-82,0","w":140},"\\":{"d":"57,-262r35,295r-28,0r-35,-295r28,0","w":121},"]":{"d":"141,-274r-63,321r-81,0r3,-18r48,0r56,-284r-49,0r4,-19r82,0","w":140},"^":{"d":"168,-262r95,97r-26,0r-86,-67r-86,67r-27,0r96,-97r34,0","w":301},"_":{"d":"180,71r0,14r-180,0r0,-14r180,0","w":180},"`":{"d":"99,-288r33,67r-21,0r-46,-67r34,0","w":180},"a":{"d":"12,-52v3,-94,80,-157,179,-135r-33,168r28,0r-4,19r-57,0r6,-29v-28,52,-121,44,-119,-23xm144,-174v-61,2,-92,58,-98,121v-3,44,53,47,74,20v24,-31,27,-90,38,-136v0,-3,-5,-5,-14,-5","w":214},"b":{"d":"107,5v-29,0,-46,-12,-54,-34r-5,29r-33,0r50,-255r-31,0r3,-19r64,0r-23,116v16,-21,35,-34,68,-34v38,-1,62,29,61,70v-2,67,-38,124,-100,127xm170,-125v4,-50,-53,-59,-79,-29v-24,28,-57,139,10,139v50,0,65,-56,69,-110","w":230},"c":{"d":"93,-12v32,-1,48,-18,59,-44r26,0v-15,36,-43,59,-89,61v-45,1,-73,-29,-74,-73v-3,-96,94,-154,180,-107r-9,48r-19,0v2,-33,-12,-49,-43,-48v-52,2,-72,58,-72,114v0,30,12,49,41,49","w":201},"d":{"d":"107,-192v29,-1,47,11,54,34r19,-97r-31,0r4,-19r63,0r-53,274r-32,0r5,-29v-16,21,-34,34,-67,34v-39,1,-63,-30,-62,-71v1,-67,39,-123,100,-126xm44,-62v-5,51,54,59,80,29v24,-27,55,-139,-10,-139v-51,0,-65,57,-70,110","w":230},"e":{"d":"197,-143v0,60,-67,70,-144,71v-5,35,9,60,43,60v30,0,47,-15,53,-32r23,0v-11,29,-39,49,-87,49v-41,0,-71,-31,-70,-73v2,-70,44,-123,113,-124v46,0,69,17,69,49xm56,-90v53,-5,102,-9,107,-54v4,-37,-61,-39,-80,-13v-10,13,-20,35,-27,67","w":213},"f":{"d":"162,-229v4,-17,-6,-27,-23,-27v-39,0,-39,36,-47,69r53,0r-4,19r-52,0r-35,180v-8,39,-32,63,-76,63r2,-17v30,-1,37,-17,42,-46r34,-180r-31,0r4,-19r31,0v2,-66,57,-106,126,-78r-7,36r-17,0","w":133,"k":{",":13,"-":13,".":13,"\u2019":-27,"\u201d":-27,"\u201c":-7}},"g":{"d":"28,-47v1,-101,84,-163,187,-140r-36,183v-7,75,-95,103,-166,71r7,-40r17,0v-4,46,65,42,87,19v15,-15,23,-46,28,-75v-23,47,-124,47,-124,-18xm63,-48v-1,41,56,40,77,15v26,-30,27,-90,39,-135v0,-4,-6,-6,-19,-6v-62,3,-95,58,-97,126","w":230},"h":{"d":"155,-109v7,-31,8,-61,-27,-59v-72,4,-59,107,-78,168r-33,0r50,-255r-31,0r4,-19r63,0r-23,120v15,-42,116,-60,112,8v-3,44,-15,85,-22,127r29,0r-4,19r-61,0","w":231},"i":{"d":"97,-249v3,24,-39,34,-41,8v-1,-22,39,-36,41,-8xm54,-19r31,0r-4,19r-63,0r33,-168r-31,0r4,-19r63,0","w":115},"j":{"d":"106,-249v3,24,-39,34,-41,8v-1,-22,38,-35,41,-8xm-42,30v-8,35,34,42,50,22v29,-59,32,-150,51,-220r-31,0r4,-19r63,0r-40,205v-4,52,-72,79,-121,50r8,-38r16,0","w":111},"k":{"d":"119,-117r52,98r27,0r-4,19r-52,0r-51,-95r-30,23r-14,72r-32,0r50,-255r-32,0r4,-19r63,0r-34,179r93,-73r-27,0r3,-19r53,0r-4,19","w":218,"k":{"-":6}},"l":{"d":"51,-19r30,0r-3,19r-63,0r50,-255r-32,0r4,-19r63,0","w":115},"m":{"d":"149,-192v30,0,46,15,48,42v15,-23,34,-42,66,-42v84,0,29,116,24,173r29,0r-3,19r-62,0v8,-46,21,-89,25,-139v3,-38,-47,-34,-64,-13v-27,34,-28,102,-41,152r-33,0v8,-46,21,-89,25,-139v3,-38,-47,-34,-64,-13v-27,34,-28,102,-41,152r-33,0r33,-168r-31,0r4,-19r63,0r-6,33v13,-20,33,-37,61,-38","w":341},"n":{"d":"163,-109v6,-32,8,-61,-27,-59v-72,6,-59,107,-78,168r-33,0r33,-168r-31,0r4,-19r63,0r-6,33v15,-42,116,-60,112,8v-3,44,-15,85,-22,127r29,0r-4,19r-61,0","w":231},"o":{"d":"52,-61v-1,29,12,50,40,49v52,-2,70,-57,72,-114v0,-30,-12,-49,-40,-49v-52,2,-69,59,-72,114xm201,-119v-1,71,-45,121,-112,124v-45,1,-74,-29,-74,-73v0,-70,45,-122,112,-124v45,-1,75,27,74,73","w":216,"k":{".":6}},"p":{"d":"185,-125v5,-51,-54,-59,-80,-29v-24,27,-55,139,11,139v51,0,64,-57,69,-110xm122,5v-29,0,-47,-11,-54,-34r-20,104r-33,0r48,-243r-31,0r3,-19r64,0r-6,29v16,-21,34,-34,67,-34v39,-1,63,30,62,70v-1,67,-38,124,-100,127","w":230},"q":{"d":"32,-47v1,-99,81,-162,182,-140r-47,243r31,0r-4,19r-63,0r20,-104v-21,48,-119,46,-119,-18xm67,-48v-1,39,53,41,73,15v24,-31,27,-90,38,-136v0,-3,-5,-5,-14,-5v-61,3,-95,58,-97,126","w":230},"r":{"d":"88,-154v18,-31,58,-46,102,-33r-9,47r-19,0v7,-38,-45,-32,-62,-12v-29,33,-29,102,-42,152r-33,0r33,-168r-31,0r4,-19r63,0","w":172,"k":{",":40,".":40}},"s":{"d":"153,-84v35,75,-81,112,-149,74r8,-44r19,0v-5,28,10,41,43,42v36,1,62,-24,44,-53v-19,-19,-92,-20,-90,-62v3,-66,88,-80,144,-50r-7,41r-19,0v4,-25,-12,-38,-38,-39v-35,-1,-57,22,-42,49v16,15,77,22,87,42","w":184},"t":{"d":"66,5v-38,1,-48,-19,-41,-54r23,-119r-28,0r3,-19r29,0r11,-58r33,0r-12,58r61,0r-3,19r-61,0r-26,141v-1,12,6,15,17,15v19,0,27,-13,31,-32r24,0v-8,31,-25,48,-61,49","w":144},"u":{"d":"69,-78v-6,30,-9,61,26,59v73,-5,60,-107,79,-168r33,0r-33,168r30,0r-3,19r-63,0r6,-33v-14,20,-33,38,-63,38v-87,-1,-33,-114,-27,-173r-29,0r3,-19r62,0","w":231},"v":{"d":"200,-187v-27,93,-46,129,-105,187r-24,0r-36,-168r-21,0r3,-19r48,0r32,147v35,-28,61,-85,72,-128r-22,0r4,-19r49,0","w":203,"k":{",":43,".":43}},"w":{"d":"210,-41v42,-43,42,-64,67,-127r-27,0r4,-19r47,0v-18,86,-48,143,-92,187r-27,0r-19,-140r-73,140r-26,0r-23,-168r-21,0r4,-19r48,0r20,146r76,-146r23,0","w":308,"k":{",":43,".":43}},"x":{"d":"23,0r-22,0r82,-90r-41,-78r-23,0r3,-19r48,0r39,73r67,-73r22,0r-81,88r43,80r24,0r-3,19r-50,0r-39,-75","w":203,"k":{"-":6}},"y":{"d":"10,39v-1,15,4,23,19,23v21,0,40,-9,58,-27r-44,-203r-22,0r4,-19r48,0r42,186v40,-56,52,-98,61,-165r-21,0r4,-19r48,0v-16,118,-73,210,-129,255v-14,10,-66,14,-91,5r7,-36r16,0","w":203,"k":{",":48,".":48}},"z":{"d":"78,-196v33,0,71,47,103,9r10,0r-3,15r-127,134v17,2,38,23,56,23v15,0,32,-9,50,-27r-5,22v-20,20,-37,29,-52,29v-32,0,-71,-45,-103,-9r-11,0r3,-15r128,-133v-18,-3,-37,-24,-56,-24v-15,0,-32,9,-50,27r4,-21v20,-20,38,-30,53,-30","w":189},"{":{"d":"155,40r-3,19v-57,0,-84,-4,-72,-65v7,-37,32,-104,-37,-92r4,-19v120,15,10,-178,169,-157r-3,19v-41,-1,-53,3,-60,40v-9,47,-9,102,-61,107v64,9,6,95,21,141v3,7,26,7,42,7"},"|":{"d":"75,-275r0,360r-29,0r0,-360r29,0","w":121},"}":{"d":"16,40v40,1,53,-3,60,-40v9,-48,9,-102,61,-108v-64,-8,-7,-93,-20,-140v-4,-7,-27,-7,-43,-7r3,-19v57,0,84,3,72,65v-7,37,-33,104,37,92r-4,19v-120,-15,-10,179,-169,157"},"~":{"d":"151,-128v42,19,84,15,112,-14r0,26v-30,28,-66,41,-114,18v-41,-19,-84,-14,-111,14r0,-27v31,-27,65,-40,113,-17","w":301},"\u00d7":{"d":"252,-194r-81,81r81,81r-20,20r-81,-81r-81,81r-20,-20r81,-81r-81,-81r20,-20r81,81r81,-81","w":301},"\u2013":{"d":"18,-107r148,0r-4,23r-148,0","w":180},"\u2014":{"d":"18,-107r328,0r-4,23r-328,0","w":360},"\u2018":{"d":"102,-253v-24,17,-34,40,-40,75r-34,0v9,-44,29,-68,63,-89","w":114,"k":{"A":46,"J":-8}},"\u2019":{"d":"20,-188v25,-16,34,-40,40,-74r34,0v-9,43,-29,68,-63,89","w":114},"\u201c":{"d":"172,-253v-24,17,-35,39,-40,75r-34,0v9,-45,29,-68,63,-89xm102,-253v-24,17,-34,40,-40,75r-34,0v9,-44,29,-68,63,-89","w":184,"k":{"A":46,"J":-8,"V":-10,"W":-10,"X":-10,"Y":-10}},"\u201d":{"d":"20,-188v25,-16,34,-40,40,-74r34,0v-9,43,-29,68,-63,89xm89,-188v24,-15,34,-41,41,-74r34,0v-10,44,-30,67,-63,89","w":184},"\u2026":{"d":"295,5v-23,0,-22,-31,-8,-40v13,-15,42,-4,36,17v-3,11,-15,23,-28,23xm175,5v-23,0,-22,-31,-8,-40v13,-15,42,-5,36,17v-3,11,-15,23,-28,23xm56,5v-24,0,-24,-31,-9,-40v13,-15,42,-5,36,17v-3,10,-14,23,-27,23","w":360},"\u2122":{"d":"197,-262r30,47r32,-47r38,0r0,11r-15,0r0,79r15,0r0,11r-50,0r0,-11r15,0r0,-75r-36,54r-8,0r-35,-54r0,75r15,0r0,11r-42,0r0,-11r15,0r0,-79r-15,0r0,-11r41,0xm43,-262r97,0r0,29r-12,0r0,-18r-26,0r0,79r15,0r0,11r-51,0r0,-11r15,0r0,-79r-27,0r0,18r-11,0r0,-29","w":360},"\u00a0":{"w":114}}});
