/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.js 254 2010-07-23 05:14:44Z emartin24 $
 */

jQuery(function ($) {
	// Load dialog on page load
	//$('#basic-modal-content').modal();

	// Load dialog on click
	$('#basic-modal .basic').click(function (e) {
		$('#basic-modal-content').modal({
			focus:false,
			minWidth: 700,
			minHeight: 465
		});

		return false;
	});
	$('#video .basic').click(function (e) {
		$('#video-content').modal({
			minWidth: 575,
			minHeight: 344
		});

		return false;
	});
	
	$('#video-inner .basic').click(function (e) {
		$('#video-content').modal({
			minWidth: 575,
			minHeight: 344
		});

		return false;
	});
	
	$('#getit .basic').click(function (e) {
		$('#gotsalesforce').modal({
			minWidth: 630,
			maxWidth: 800,
			minHeight: 250
		});

		return false;
	});
	
	$('#contact-us-cloud, #contact-us-grails, #contact-us-real, #contact-us-recruiting, #contact-us-referencetracking, #contact-us-reflection, #contact-us-trax, #contact-us-vos, #contact-us-services, #contact-us-aaa, #contact-us-implementation, #contact-us-mobile, #contact-us-salesforce, #contact-us-mobile-2, #contact-us-dev, #contact-us-configuration, .contact-us-contact .basic').click(function (e) {
		$('#basic-modal-content').modal({
			focus:false,
			minWidth: 700,
			minHeight: 465
		});

		return false;
	});
	
	//$('#submit').click(function(){	
//	$('#ignoreMe').removeClass('error');
//		$('#ignoreMe').click();
//		if($('#ignoreMe').hasClass('error')){
//		return false;	
//		}
//		if($('#human-scan').val() != ""){
//			return false;
//		}
//	});
});









/*
 * SimpleModal 1.4.1 - jQuery Plugin
 * http://www.ericmmartin.com/projects/simplemodal/
 * Copyright (c) 2010 Eric Martin (http://twitter.com/ericmmartin)
 * Dual licensed under the MIT and GPL licenses
 * Revision: $Id: jquery.simplemodal.js 261 2010-11-05 21:16:20Z emartin24 $
 */

/**
 * SimpleModal is a lightweight jQuery plugin that provides a simple
 * interface to create a modal dialog.
 *
 * The goal of SimpleModal is to provide developers with a cross-browser
 * overlay and container that will be populated with data provided to
 * SimpleModal.
 *
 * There are two ways to call SimpleModal:
 * 1) As a chained function on a jQuery object, like $('#myDiv').modal();.
 * This call would place the DOM object, #myDiv, inside a modal dialog.
 * Chaining requires a jQuery object. An optional options object can be
 * passed as a parameter.
 *
 * @example $('<div>my data</div>').modal({options});
 * @example $('#myDiv').modal({options});
 * @example jQueryObject.modal({options});
 *
 * 2) As a stand-alone function, like $.modal(data). The data parameter
 * is required and an optional options object can be passed as a second
 * parameter. This method provides more flexibility in the types of data
 * that are allowed. The data could be a DOM object, a jQuery object, HTML
 * or a string.
 *
 * @example $.modal('<div>my data</div>', {options});
 * @example $.modal('my data', {options});
 * @example $.modal($('#myDiv'), {options});
 * @example $.modal(jQueryObject, {options});
 * @example $.modal(document.getElementById('myDiv'), {options});
 *
 * A SimpleModal call can contain multiple elements, but only one modal
 * dialog can be created at a time. Which means that all of the matched
 * elements will be displayed within the modal container.
 *
 * SimpleModal internally sets the CSS needed to display the modal dialog
 * properly in all browsers, yet provides the developer with the flexibility
 * to easily control the look and feel. The styling for SimpleModal can be
 * done through external stylesheets, or through SimpleModal, using the
 * overlayCss, containerCss, and dataCss options.
 *
 * SimpleModal has been tested in the following browsers:
 * - IE 6, 7, 8, 9
 * - Firefox 2, 3, 4
 * - Opera 9, 10
 * - Safari 3, 4, 5
 * - Chrome 1, 2, 3, 4, 5, 6
 *
 * @name SimpleModal
 * @type jQuery
 * @requires jQuery v1.2.4
 * @cat Plugins/Windows and Overlays
 * @author Eric Martin (http://ericmmartin.com)
 * @version 1.4.1
 */
;(function ($) {
	var ie6 = $.browser.msie && parseInt($.browser.version) === 6 && typeof window['XMLHttpRequest'] !== 'object',
		ie7 = $.browser.msie && parseInt($.browser.version) === 7,
		ieQuirks = null,
		w = [];

	/*
	 * Create and display a modal dialog.
	 *
	 * @param {string, object} data A string, jQuery object or DOM object
	 * @param {object} [options] An optional object containing options overrides
	 */
	$.modal = function (data, options) {
		return $.modal.impl.init(data, options);
	};

	/*
	 * Close the modal dialog.
	 */
	$.modal.close = function () {
		$.modal.impl.close();
	};

	/*
	 * Set focus on first or last visible input in the modal dialog. To focus on the last
	 * element, call $.modal.focus('last'). If no input elements are found, focus is placed
	 * on the data wrapper element.
	 */
	$.modal.focus = function (pos) {
		$.modal.impl.focus(pos);
	};

	/*
	 * Determine and set the dimensions of the modal dialog container.
	 * setPosition() is called if the autoPosition option is true.
	 */
	$.modal.setContainerDimensions = function () {
		$.modal.impl.setContainerDimensions();
	};

	/*
	 * Re-position the modal dialog.
	 */
	$.modal.setPosition = function () {
		$.modal.impl.setPosition();
	};

	/*
	 * Update the modal dialog. If new dimensions are passed, they will be used to determine
	 * the dimensions of the container.
	 *
	 * setContainerDimensions() is called, which in turn calls setPosition(), if enabled.
	 * Lastly, focus() is called is the focus option is true.
	 */
	$.modal.update = function (height, width) {
		$.modal.impl.update(height, width);
	};

	/*
	 * Chained function to create a modal dialog.
	 *
	 * @param {object} [options] An optional object containing options overrides
	 */
	$.fn.modal = function (options) {
		return $.modal.impl.init(this, options);
	};

	/*
	 * SimpleModal default options
	 *
	 * appendTo:		(String:'body') The jQuery selector to append the elements to. For .NET, use 'form'.
	 * focus:			(Boolean:true) Focus in the first visible, enabled element?
	 * opacity:			(Number:50) The opacity value for the overlay div, from 0 - 100
	 * overlayId:		(String:'simplemodal-overlay') The DOM element id for the overlay div
	 * overlayCss:		(Object:{}) The CSS styling for the overlay div
	 * containerId:		(String:'simplemodal-container') The DOM element id for the container div
	 * containerCss:	(Object:{}) The CSS styling for the container div
	 * dataId:			(String:'simplemodal-data') The DOM element id for the data div
	 * dataCss:			(Object:{}) The CSS styling for the data div
	 * minHeight:		(Number:null) The minimum height for the container
	 * minWidth:		(Number:null) The minimum width for the container
	 * maxHeight:		(Number:null) The maximum height for the container. If not specified, the window height is used.
	 * maxWidth:		(Number:null) The maximum width for the container. If not specified, the window width is used.
	 * autoResize:		(Boolean:false) Automatically resize the container if it exceeds the browser window dimensions?
	 * autoPosition:	(Boolean:true) Automatically position the container upon creation and on window resize?
	 * zIndex:			(Number: 1000) Starting z-index value
	 * close:			(Boolean:true) If true, closeHTML, escClose and overClose will be used if set.
	 							If false, none of them will be used.
	 * closeHTML:		(String:'<a class="modalCloseImg" title="Close"></a>') The HTML for the default close link.
								SimpleModal will automatically add the closeClass to this element.
	 * closeClass:		(String:'simplemodal-close') The CSS class used to bind to the close event
	 * escClose:		(Boolean:true) Allow Esc keypress to close the dialog?
	 * overlayClose:	(Boolean:false) Allow click on overlay to close the dialog?
	 * position:		(Array:null) Position of container [top, left]. Can be number of pixels or percentage
	 * persist:			(Boolean:false) Persist the data across modal calls? Only used for existing
								DOM elements. If true, the data will be maintained across modal calls, if false,
								the data will be reverted to its original state.
	 * modal:			(Boolean:true) User will be unable to interact with the page below the modal or tab away from the dialog.
								If false, the overlay, iframe, and certain events will be disabled allowing the user to interact
								with the page below the dialog.
	 * onOpen:			(Function:null) The callback function used in place of SimpleModal's open
	 * onShow:			(Function:null) The callback function used after the modal dialog has opened
	 * onClose:			(Function:null) The callback function used in place of SimpleModal's close
	 */
	$.modal.defaults = {
		appendTo: 'body',
		focus: true,
		opacity: 50,
		overlayId: 'simplemodal-overlay',
		overlayCss: {},
		containerId: 'simplemodal-container',
		containerCss: {},
		dataId: 'simplemodal-data',
		dataCss: {},
		minHeight: null,
		minWidth: null,
		maxHeight: null,
		maxWidth: null,
		autoResize: false,
		autoPosition: true,
		zIndex: 1000,
		close: true,
		closeHTML: '<a class="modalCloseImg" title="Close"></a>',
		closeClass: 'simplemodal-close',
		escClose: true,
		overlayClose: false,
		position: null,
		persist: false,
		modal: true,
		onOpen: null,
		onShow: null,
		onClose: null
	};

	/*
	 * Main modal object
	 * o = options
	 */
	$.modal.impl = {
		/*
		 * Contains the modal dialog elements and is the object passed
		 * back to the callback (onOpen, onShow, onClose) functions
		 */
		d: {},
		/*
		 * Initialize the modal dialog
		 */
		init: function (data, options) {
			var s = this;

			// don't allow multiple calls
			if (s.d.data) {
				return false;
			}

			// $.boxModel is undefined if checked earlier
			ieQuirks = $.browser.msie && !$.boxModel;

			// merge defaults and user options
			s.o = $.extend({}, $.modal.defaults, options);

			// keep track of z-index
			s.zIndex = s.o.zIndex;

			// set the onClose callback flag
			s.occb = false;

			// determine how to handle the data based on its type
			if (typeof data === 'object') {
				// convert DOM object to a jQuery object
				data = data instanceof jQuery ? data : $(data);
				s.d.placeholder = false;

				// if the object came from the DOM, keep track of its parent
				if (data.parent().parent().size() > 0) {
					data.before($('<span></span>')
						.attr('id', 'simplemodal-placeholder')
						.css({display: 'none'}));

					s.d.placeholder = true;
					s.display = data.css('display');

					// persist changes? if not, make a clone of the element
					if (!s.o.persist) {
						s.d.orig = data.clone(true);
					}
				}
			}
			else if (typeof data === 'string' || typeof data === 'number') {
				// just insert the data as innerHTML
				data = $('<div></div>').html(data);
			}
			else {
				// unsupported data type!
				alert('SimpleModal Error: Unsupported data type: ' + typeof data);
				return s;
			}

			// create the modal overlay, container and, if necessary, iframe
			s.create(data);
			data = null;

			// display the modal dialog
			s.open();

			// useful for adding events/manipulating data in the modal dialog
			if ($.isFunction(s.o.onShow)) {
				s.o.onShow.apply(s, [s.d]);
			}

			// don't break the chain =)
			return s;
		},
		/*
		 * Create and add the modal overlay and container to the page
		 */
		create: function (data) {
			var s = this;

			// get the window properties
			w = s.getDimensions();

			// add an iframe to prevent select options from bleeding through
			if (s.o.modal && ie6) {
				s.d.iframe = $('<iframe src="javascript:false;"></iframe>')
					.css($.extend(s.o.iframeCss, {
						display: 'none',
						opacity: 0,
						position: 'fixed',
						height: w[0],
						width: w[1],
						zIndex: s.o.zIndex,
						top: 0,
						left: 0
					}))
					.appendTo(s.o.appendTo);
			}

			// create the overlay
			s.d.overlay = $('<div></div>')
				.attr('id', s.o.overlayId)
				.addClass('simplemodal-overlay')
				.css($.extend(s.o.overlayCss, {
					display: 'none',
					opacity: s.o.opacity / 100,
					height: s.o.modal ? w[0] : 0,
					width: s.o.modal ? w[1] : 0,
					position: 'fixed',
					left: 0,
					top: 0,
					zIndex: s.o.zIndex + 1
				}))
				.appendTo(s.o.appendTo);

			// create the container
			s.d.container = $('<div></div>')
				.attr('id', s.o.containerId)
				.addClass('simplemodal-container')
				.css($.extend(s.o.containerCss, {
					display: 'none',
					position: 'fixed',
					zIndex: s.o.zIndex + 2
				}))
				.append(s.o.close && s.o.closeHTML
					? $(s.o.closeHTML).addClass(s.o.closeClass)
					: '')
				.appendTo(s.o.appendTo);

			s.d.wrap = $('<div></div>')
				.attr('tabIndex', -1)
				.addClass('simplemodal-wrap')
				.css({height: '100%', outline: 0, width: '100%'})
				.appendTo(s.d.container);

			// add styling and attributes to the data
			// append to body to get correct dimensions, then move to wrap
			s.d.data = data
				.attr('id', data.attr('id') || s.o.dataId)
				.addClass('simplemodal-data')
				.css($.extend(s.o.dataCss, {
						display: 'none'
				}))
				.appendTo('body');
			data = null;

			s.setContainerDimensions();
			s.d.data.appendTo(s.d.wrap);

			// fix issues with IE
			if (ie6 || ieQuirks) {
				s.fixIE();
			}
		},
		/*
		 * Bind events
		 */
		bindEvents: function () {
			var s = this;

			// bind the close event to any element with the closeClass class
			$('.' + s.o.closeClass).bind('click.simplemodal', function (e) {
				e.preventDefault();
				s.close();
			});

			// bind the overlay click to the close function, if enabled
			if (s.o.modal && s.o.close && s.o.overlayClose) {
				s.d.overlay.bind('click.simplemodal', function (e) {
					e.preventDefault();
					s.close();
				});
			}

			// bind keydown events
			$(document).bind('keydown.simplemodal', function (e) {
				if (s.o.modal && e.keyCode === 9) { // TAB
					s.watchTab(e);
				}
				else if ((s.o.close && s.o.escClose) && e.keyCode === 27) { // ESC
					e.preventDefault();
					s.close();
				}
			});

			// update window size
			$(window).bind('resize.simplemodal', function () {
				// redetermine the window width/height
				w = s.getDimensions();

				// reposition the dialog
				s.o.autoResize ? s.setContainerDimensions() : s.o.autoPosition && s.setPosition();

				if (ie6 || ieQuirks) {
					s.fixIE();
				}
				else if (s.o.modal) {
					// update the iframe & overlay
					s.d.iframe && s.d.iframe.css({height: w[0], width: w[1]});
					s.d.overlay.css({height: w[0], width: w[1]});
				}
			});
		},
		/*
		 * Unbind events
		 */
		unbindEvents: function () {
			$('.' + this.o.closeClass).unbind('click.simplemodal');
			$(document).unbind('keydown.simplemodal');
			$(window).unbind('resize.simplemodal');
			this.d.overlay.unbind('click.simplemodal');
		},
		/*
		 * Fix issues in IE6 and IE7 in quirks mode
		 */
		fixIE: function () {
			var s = this, p = s.o.position;

			// simulate fixed position - adapted from BlockUI
			$.each([s.d.iframe || null, !s.o.modal ? null : s.d.overlay, s.d.container], function (i, el) {
				if (el) {
					var bch = 'document.body.clientHeight', bcw = 'document.body.clientWidth',
						bsh = 'document.body.scrollHeight', bsl = 'document.body.scrollLeft',
						bst = 'document.body.scrollTop', bsw = 'document.body.scrollWidth',
						ch = 'document.documentElement.clientHeight', cw = 'document.documentElement.clientWidth',
						sl = 'document.documentElement.scrollLeft', st = 'document.documentElement.scrollTop',
						s = el[0].style;

					s.position = 'absolute';
					if (i < 2) {
						s.removeExpression('height');
						s.removeExpression('width');
						s.setExpression('height','' + bsh + ' > ' + bch + ' ? ' + bsh + ' : ' + bch + ' + "px"');
						s.setExpression('width','' + bsw + ' > ' + bcw + ' ? ' + bsw + ' : ' + bcw + ' + "px"');
					}
					else {
						var te, le;
						if (p && p.constructor === Array) {
							var top = p[0]
								? typeof p[0] === 'number' ? p[0].toString() : p[0].replace(/px/, '')
								: el.css('top').replace(/px/, '');
							te = top.indexOf('%') === -1
								? top + ' + (t = ' + st + ' ? ' + st + ' : ' + bst + ') + "px"'
								: parseInt(top.replace(/%/, '')) + ' * ((' + ch + ' || ' + bch + ') / 100) + (t = ' + st + ' ? ' + st + ' : ' + bst + ') + "px"';

							if (p[1]) {
								var left = typeof p[1] === 'number' ? p[1].toString() : p[1].replace(/px/, '');
								le = left.indexOf('%') === -1
									? left + ' + (t = ' + sl + ' ? ' + sl + ' : ' + bsl + ') + "px"'
									: parseInt(left.replace(/%/, '')) + ' * ((' + cw + ' || ' + bcw + ') / 100) + (t = ' + sl + ' ? ' + sl + ' : ' + bsl + ') + "px"';
							}
						}
						else {
							te = '(' + ch + ' || ' + bch + ') / 2 - (this.offsetHeight / 2) + (t = ' + st + ' ? ' + st + ' : ' + bst + ') + "px"';
							le = '(' + cw + ' || ' + bcw + ') / 2 - (this.offsetWidth / 2) + (t = ' + sl + ' ? ' + sl + ' : ' + bsl + ') + "px"';
						}
						s.removeExpression('top');
						s.removeExpression('left');
						s.setExpression('top', te);
						s.setExpression('left', le);
					}
				}
			});
		},
		/*
		 * Place focus on the first or last visible input
		 */
		focus: function (pos) {
			var s = this, p = pos && $.inArray(pos, ['first', 'last']) !== -1 ? pos : 'first';

			// focus on dialog or the first visible/enabled input element
			var input = $(':input:enabled:visible:' + p, s.d.wrap);
			setTimeout(function () {
				input.length > 0 ? input.focus() : s.d.wrap.focus();
			}, 10);
		},
		getDimensions: function () {
			var el = $(window);

			// fix a jQuery/Opera bug with determining the window height
			var h = $.browser.opera && $.browser.version > '9.5' && $.fn.jquery < '1.3'
						|| $.browser.opera && $.browser.version < '9.5' && $.fn.jquery > '1.2.6'
				? el[0].innerHeight : el.height();

			return [h, el.width()];
		},
		getVal: function (v, d) {
			return v ? (typeof v === 'number' ? v
					: v === 'auto' ? 0
					: v.indexOf('%') > 0 ? ((parseInt(v.replace(/%/, '')) / 100) * (d === 'h' ? w[0] : w[1]))
					: parseInt(v.replace(/px/, '')))
				: null;
		},
		/*
		 * Update the container. Set new dimensions, if provided.
		 * Focus, if enabled. Re-bind events.
		 */
		update: function (height, width) {
			var s = this;

			// prevent update if dialog does not exist
			if (!s.d.data) {
				return false;
			}

			// reset orig values
			s.d.origHeight = s.getVal(height, 'h');
			s.d.origWidth = s.getVal(width, 'w');

			// hide data to prevent screen flicker
			s.d.data.hide();
			height && s.d.container.css('height', height);
			width && s.d.container.css('width', width);
			s.setContainerDimensions();
			s.d.data.show();
			s.o.focus && s.focus();

			// rebind events
			s.unbindEvents();
			s.bindEvents();
		},
		setContainerDimensions: function () {
			var s = this,
				badIE = ie6 || ie7;

			// get the dimensions for the container and data
			var ch = s.d.origHeight ? s.d.origHeight : $.browser.opera ? s.d.container.height() : s.getVal(badIE ? s.d.container[0].currentStyle['height'] : s.d.container.css('height'), 'h'),
				cw = s.d.origWidth ? s.d.origWidth : $.browser.opera ? s.d.container.width() : s.getVal(badIE ? s.d.container[0].currentStyle['width'] : s.d.container.css('width'), 'w'),
				dh = s.d.data.outerHeight(true), dw = s.d.data.outerWidth(true);

			s.d.origHeight = s.d.origHeight || ch;
			s.d.origWidth = s.d.origWidth || cw;

			// mxoh = max option height, mxow = max option width
			var mxoh = s.o.maxHeight ? s.getVal(s.o.maxHeight, 'h') : null,
				mxow = s.o.maxWidth ? s.getVal(s.o.maxWidth, 'w') : null,
				mh = mxoh && mxoh < w[0] ? mxoh : w[0],
				mw = mxow && mxow < w[1] ? mxow : w[1];

			// moh = min option height
			var moh = s.o.minHeight ? s.getVal(s.o.minHeight, 'h') : 'auto';
			if (!ch) {
				if (!dh) {ch = moh;}
				else {
					if (dh > mh) {ch = mh;}
					else if (s.o.minHeight && moh !== 'auto' && dh < moh) {ch = moh;}
					else {ch = dh;}
				}
			}
			else {
				ch = s.o.autoResize && ch > mh ? mh : ch < moh ? moh : ch;
			}

			// mow = min option width
			var mow = s.o.minWidth ? s.getVal(s.o.minWidth, 'w') : 'auto';
			if (!cw) {
				if (!dw) {cw = mow;}
				else {
					if (dw > mw) {cw = mw;}
					else if (s.o.minWidth && mow !== 'auto' && dw < mow) {cw = mow;}
					else {cw = dw;}
				}
			}
			else {
				cw = s.o.autoResize && cw > mw ? mw : cw < mow ? mow : cw;
			}

			s.d.container.css({height: ch, width: cw});
			s.d.wrap.css({overflow: (dh > ch || dw > cw) ? 'auto' : 'visible'});
			s.o.autoPosition && s.setPosition();
		},
		setPosition: function () {
			var s = this, top, left,
				hc = (w[0]/2) - (s.d.container.outerHeight(true)/2),
				vc = (w[1]/2) - (s.d.container.outerWidth(true)/2);

			if (s.o.position && Object.prototype.toString.call(s.o.position) === '[object Array]') {
				top = s.o.position[0] || hc;
				left = s.o.position[1] || vc;
			} else {
				top = hc;
				left = vc;
			}
			s.d.container.css({left: left, top: top});
		},
		watchTab: function (e) {
			var s = this;

			if ($(e.target).parents('.simplemodal-container').length > 0) {
				// save the list of inputs
				s.inputs = $(':input:enabled:visible:first, :input:enabled:visible:last', s.d.data[0]);

				// if it's the first or last tabbable element, refocus
				if ((!e.shiftKey && e.target === s.inputs[s.inputs.length -1]) ||
						(e.shiftKey && e.target === s.inputs[0]) ||
						s.inputs.length === 0) {
					e.preventDefault();
					var pos = e.shiftKey ? 'last' : 'first';
					s.focus(pos);
				}
			}
			else {
				// might be necessary when custom onShow callback is used
				e.preventDefault();
				s.focus();
			}
		},
		/*
		 * Open the modal dialog elements
		 * - Note: If you use the onOpen callback, you must "show" the
		 *	        overlay and container elements manually
		 *         (the iframe will be handled by SimpleModal)
		 */
		open: function () {
			var s = this;
			// display the iframe
			s.d.iframe && s.d.iframe.show();

			if ($.isFunction(s.o.onOpen)) {
				// execute the onOpen callback
				s.o.onOpen.apply(s, [s.d]);
			}
			else {
				// display the remaining elements
				s.d.overlay.show();
				s.d.container.show();
				s.d.data.show();
			}

			s.o.focus && s.focus();

			// bind default events
			s.bindEvents();
		},
		/*
		 * Close the modal dialog
		 * - Note: If you use an onClose callback, you must remove the
		 *         overlay, container and iframe elements manually
		 *
		 * @param {boolean} external Indicates whether the call to this
		 *     function was internal or external. If it was external, the
		 *     onClose callback will be ignored
		 */
		close: function () {
			var s = this;

			// prevent close when dialog does not exist
			if (!s.d.data) {
				return false;
			}

			// remove the default events
			s.unbindEvents();

			if ($.isFunction(s.o.onClose) && !s.occb) {
				// set the onClose callback flag
				s.occb = true;

				// execute the onClose callback
				s.o.onClose.apply(s, [s.d]);
			}
			else {
				// if the data came from the DOM, put it back
				if (s.d.placeholder) {
					var ph = $('#simplemodal-placeholder');
					// save changes to the data?
					if (s.o.persist) {
						// insert the (possibly) modified data back into the DOM
						ph.replaceWith(s.d.data.removeClass('simplemodal-data').css('display', s.display));
					}
					else {
						// remove the current and insert the original,
						// unmodified data back into the DOM
						s.d.data.hide().remove();
						ph.replaceWith(s.d.orig);
					}
				}
				else {
					// otherwise, remove it
					s.d.data.hide().remove();
				}

				// remove the remaining elements
				s.d.container.hide().remove();
				s.d.overlay.hide();
				s.d.iframe && s.d.iframe.hide().remove();
				setTimeout(function(){
					// opera work-around
					s.d.overlay.remove();

					// reset the dialog object
					s.d = {};
				}, 10);
			}
		}
	};
})(jQuery);










/*
 * SimpleModal 1.4.1 - jQuery Plugin
 * http://www.ericmmartin.com/projects/simplemodal/
 * Copyright (c) 2010 Eric Martin (http://twitter.com/ericmmartin)
 * Dual licensed under the MIT and GPL licenses
 * Revision: $Id: jquery.simplemodal.js 261 2010-11-05 21:16:20Z emartin24 $
 */
(function(d){var k=d.browser.msie&&parseInt(d.browser.version)===6&&typeof window.XMLHttpRequest!=="object",m=d.browser.msie&&parseInt(d.browser.version)===7,l=null,f=[];d.modal=function(a,b){return d.modal.impl.init(a,b)};d.modal.close=function(){d.modal.impl.close()};d.modal.focus=function(a){d.modal.impl.focus(a)};d.modal.setContainerDimensions=function(){d.modal.impl.setContainerDimensions()};d.modal.setPosition=function(){d.modal.impl.setPosition()};d.modal.update=function(a,b){d.modal.impl.update(a,
b)};d.fn.modal=function(a){return d.modal.impl.init(this,a)};d.modal.defaults={appendTo:"body",focus:true,opacity:50,overlayId:"simplemodal-overlay",overlayCss:{},containerId:"simplemodal-container",containerCss:{},dataId:"simplemodal-data",dataCss:{},minHeight:null,minWidth:null,maxHeight:null,maxWidth:null,autoResize:false,autoPosition:true,zIndex:1E3,close:true,closeHTML:'<a class="modalCloseImg" title="Close"></a>',closeClass:"simplemodal-close",escClose:true,overlayClose:false,position:null,
persist:false,modal:true,onOpen:null,onShow:null,onClose:null};d.modal.impl={d:{},init:function(a,b){var c=this;if(c.d.data)return false;l=d.browser.msie&&!d.boxModel;c.o=d.extend({},d.modal.defaults,b);c.zIndex=c.o.zIndex;c.occb=false;if(typeof a==="object"){a=a instanceof jQuery?a:d(a);c.d.placeholder=false;if(a.parent().parent().size()>0){a.before(d("<span></span>").attr("id","simplemodal-placeholder").css({display:"none"}));c.d.placeholder=true;c.display=a.css("display");if(!c.o.persist)c.d.orig=
a.clone(true)}}else if(typeof a==="string"||typeof a==="number")a=d("<div></div>").html(a);else{alert("SimpleModal Error: Unsupported data type: "+typeof a);return c}c.create(a);c.open();d.isFunction(c.o.onShow)&&c.o.onShow.apply(c,[c.d]);return c},create:function(a){var b=this;f=b.getDimensions();if(b.o.modal&&k)b.d.iframe=d('<iframe src="javascript:false;"></iframe>').css(d.extend(b.o.iframeCss,{display:"none",opacity:0,position:"fixed",height:f[0],width:f[1],zIndex:b.o.zIndex,top:0,left:0})).appendTo(b.o.appendTo);
b.d.overlay=d("<div></div>").attr("id",b.o.overlayId).addClass("simplemodal-overlay").css(d.extend(b.o.overlayCss,{display:"none",opacity:b.o.opacity/100,height:b.o.modal?f[0]:0,width:b.o.modal?f[1]:0,position:"fixed",left:0,top:0,zIndex:b.o.zIndex+1})).appendTo(b.o.appendTo);b.d.container=d("<div></div>").attr("id",b.o.containerId).addClass("simplemodal-container").css(d.extend(b.o.containerCss,{display:"none",position:"fixed",zIndex:b.o.zIndex+21000})).append(b.o.close&&b.o.closeHTML?d(b.o.closeHTML).addClass(b.o.closeClass):
"").appendTo(b.o.appendTo);b.d.wrap=d("<div></div>").attr("tabIndex",-1).addClass("simplemodal-wrap").css({height:"100%",outline:0,width:"100%"}).appendTo(b.d.container);b.d.data=a.attr("id",a.attr("id")||b.o.dataId).addClass("simplemodal-data").css(d.extend(b.o.dataCss,{display:"none"})).appendTo("body");b.setContainerDimensions();b.d.data.appendTo(b.d.wrap);if(k||l)b.fixIE()},bindEvents:function(){var a=this;d("."+a.o.closeClass).bind("click.simplemodal",function(b){b.preventDefault();a.close()});
a.o.modal&&a.o.close&&a.o.overlayClose&&a.d.overlay.bind("click.simplemodal",function(b){b.preventDefault();a.close()});d(document).bind("keydown.simplemodal",function(b){if(a.o.modal&&b.keyCode===9)a.watchTab(b);else if(a.o.close&&a.o.escClose&&b.keyCode===27){b.preventDefault();a.close()}});d(window).bind("resize.simplemodal",function(){f=a.getDimensions();a.o.autoResize?a.setContainerDimensions():a.o.autoPosition&&a.setPosition();if(k||l)a.fixIE();else if(a.o.modal){a.d.iframe&&a.d.iframe.css({height:f[0],
width:f[1]});a.d.overlay.css({height:f[0],width:f[1]})}})},unbindEvents:function(){d("."+this.o.closeClass).unbind("click.simplemodal");d(document).unbind("keydown.simplemodal");d(window).unbind("resize.simplemodal");this.d.overlay.unbind("click.simplemodal")},fixIE:function(){var a=this,b=a.o.position;d.each([a.d.iframe||null,!a.o.modal?null:a.d.overlay,a.d.container],function(c,h){if(h){var g=h[0].style;g.position="absolute";if(c<2){g.removeExpression("height");g.removeExpression("width");g.setExpression("height",
'document.body.scrollHeight > document.body.clientHeight ? document.body.scrollHeight : document.body.clientHeight + "px"');g.setExpression("width",'document.body.scrollWidth > document.body.clientWidth ? document.body.scrollWidth : document.body.clientWidth + "px"')}else{var e;if(b&&b.constructor===Array){c=b[0]?typeof b[0]==="number"?b[0].toString():b[0].replace(/px/,""):h.css("top").replace(/px/,"");c=c.indexOf("%")===-1?c+' + (t = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"':
parseInt(c.replace(/%/,""))+' * ((document.documentElement.clientHeight || document.body.clientHeight) / 100) + (t = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"';if(b[1]){e=typeof b[1]==="number"?b[1].toString():b[1].replace(/px/,"");e=e.indexOf("%")===-1?e+' + (t = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + "px"':parseInt(e.replace(/%/,""))+' * ((document.documentElement.clientWidth || document.body.clientWidth) / 100) + (t = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + "px"'}}else{c=
'(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (t = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"';e='(document.documentElement.clientWidth || document.body.clientWidth) / 2 - (this.offsetWidth / 2) + (t = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft) + "px"'}g.removeExpression("top");g.removeExpression("left");g.setExpression("top",
c);g.setExpression("left",e)}}})},focus:function(a){var b=this;a=a&&d.inArray(a,["first","last"])!==-1?a:"first";var c=d(":input:enabled:visible:"+a,b.d.wrap);setTimeout(function(){c.length>0?c.focus():b.d.wrap.focus()},10)},getDimensions:function(){var a=d(window);return[d.browser.opera&&d.browser.version>"9.5"&&d.fn.jquery<"1.3"||d.browser.opera&&d.browser.version<"9.5"&&d.fn.jquery>"1.2.6"?a[0].innerHeight:a.height(),a.width()]},getVal:function(a,b){return a?typeof a==="number"?a:a==="auto"?0:
a.indexOf("%")>0?parseInt(a.replace(/%/,""))/100*(b==="h"?f[0]:f[1]):parseInt(a.replace(/px/,"")):null},update:function(a,b){var c=this;if(!c.d.data)return false;c.d.origHeight=c.getVal(a,"h");c.d.origWidth=c.getVal(b,"w");c.d.data.hide();a&&c.d.container.css("height",a);b&&c.d.container.css("width",b);c.setContainerDimensions();c.d.data.show();c.o.focus&&c.focus();c.unbindEvents();c.bindEvents()},setContainerDimensions:function(){var a=this,b=k||m,c=a.d.origHeight?a.d.origHeight:d.browser.opera?
a.d.container.height():a.getVal(b?a.d.container[0].currentStyle.height:a.d.container.css("height"),"h");b=a.d.origWidth?a.d.origWidth:d.browser.opera?a.d.container.width():a.getVal(b?a.d.container[0].currentStyle.width:a.d.container.css("width"),"w");var h=a.d.data.outerHeight(true),g=a.d.data.outerWidth(true);a.d.origHeight=a.d.origHeight||c;a.d.origWidth=a.d.origWidth||b;var e=a.o.maxHeight?a.getVal(a.o.maxHeight,"h"):null,i=a.o.maxWidth?a.getVal(a.o.maxWidth,"w"):null;e=e&&e<f[0]?e:f[0];i=i&&i<
f[1]?i:f[1];var j=a.o.minHeight?a.getVal(a.o.minHeight,"h"):"auto";c=c?a.o.autoResize&&c>e?e:c<j?j:c:h?h>e?e:a.o.minHeight&&j!=="auto"&&h<j?j:h:j;e=a.o.minWidth?a.getVal(a.o.minWidth,"w"):"auto";b=b?a.o.autoResize&&b>i?i:b<e?e:b:g?g>i?i:a.o.minWidth&&e!=="auto"&&g<e?e:g:e;a.d.container.css({height:c,width:b});a.d.wrap.css({overflow:h>c||g>b?"auto":"visible"});a.o.autoPosition&&a.setPosition()},setPosition:function(){var a=this,b,c;b=f[0]/2-a.d.container.outerHeight(true)/2;c=f[1]/2-a.d.container.outerWidth(true)/
2;if(a.o.position&&Object.prototype.toString.call(a.o.position)==="[object Array]"){b=a.o.position[0]||b;c=a.o.position[1]||c}else{b=b;c=c}a.d.container.css({left:c,top:b})},watchTab:function(a){var b=this;if(d(a.target).parents(".simplemodal-container").length>0){b.inputs=d(":input:enabled:visible:first, :input:enabled:visible:last",b.d.data[0]);if(!a.shiftKey&&a.target===b.inputs[b.inputs.length-1]||a.shiftKey&&a.target===b.inputs[0]||b.inputs.length===0){a.preventDefault();b.focus(a.shiftKey?"last":
"first")}}else{a.preventDefault();b.focus()}},open:function(){var a=this;a.d.iframe&&a.d.iframe.show();if(d.isFunction(a.o.onOpen))a.o.onOpen.apply(a,[a.d]);else{a.d.overlay.show();a.d.container.show();a.d.data.show()}a.o.focus&&a.focus();a.bindEvents()},close:function(){var a=this;if(!a.d.data)return false;a.unbindEvents();if(d.isFunction(a.o.onClose)&&!a.occb){a.occb=true;a.o.onClose.apply(a,[a.d])}else{if(a.d.placeholder){var b=d("#simplemodal-placeholder");if(a.o.persist)b.replaceWith(a.d.data.removeClass("simplemodal-data").css("display",
a.display));else{a.d.data.hide().remove();b.replaceWith(a.d.orig)}}else a.d.data.hide().remove();a.d.container.hide().remove();a.d.overlay.hide();a.d.iframe&&a.d.iframe.hide().remove();setTimeout(function(){a.d.overlay.remove();a.d={}},10)}}}})(jQuery);










/**
* 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 r6 // 2011.02.26 // jQuery 1.5.1+
* <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(at)cherne(dot)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) {
			// 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); }

			// if e.type == "mouseenter"
			if (e.type == "mouseenter") {
				// 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 == "mouseleave"
			} 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.bind('mouseenter',handleHover).bind('mouseleave',handleHover);
	};
})(jQuery);









/*
 * 	InstandValidation 2.0 - jQuery plugin
 *	written by Kent Heberling, http://www.khwebdesign.net	
 *	http://khwebdesign.net/blog/instant-validation-jquery-plugin/
 *
 *	Copyright (c) 2010 Kent Heberling (http://www.khwebdesign.net)
 *	Dual licensed under the MIT (MIT-LICENSE.txt)
 *	and GPL (GPL-LICENSE.txt) licenses.
 *
 *	Built for jQuery library
 *	http://jquery.com
 *
  To add a validation type:
  1) Add the validation class to var collection
  2) Add regx for the new type
  3) Add "isValid = regexCheck(inputValue,new reg ex)" to function validateInput(obj)
 */
$(document).ready(function(){
(function($){  
	$.fn.instantValidation = function(options) {  
		// Default Values
		var defaults = {  
			fadeSpeed: 250,
		};  
		var options = $.extend(defaults, options);  
		var isEmail_re = /^\s*[\w\-\+_]+(\.[\w\-\+_]+)*\@[\w\-\+_]+\.[\w\-\+_]+(\.[\w\-\+_]+)*\s*$/;
		var isInt_re = /[-+]?\b\d+\b/ ;
		var isPhone_re = /[0-9]{3}-[0-9]{3}-[0-9]{4}/;
		var isZip_re = /\b\d{5}\b/;
		var arrowHeight, arrowWidth, errorMessage;
		var collection = ".requiredText,.emailAddress,.int,.phone,.zip";

		return this.each(function() {  
			$(this).find(collection).each(function(){		 	   
				// Initializing Code
				$(this).after("<div class=\"error-message\">" + $(this).attr("title") + "<div class=\"error-message-arrow-border\"></div><div class=\"error-message-arrow\"></div></div>"); // create pop up validation message
				errorMessage = $(this).next();
				arrowHeight = $(errorMessage).children(".error-message-arrow-border").outerHeight()/2;
				arrowWidth = $(errorMessage).children(".error-message-arrow-border").outerWidth()/2; 
				$(errorMessage).css({top: $(this).offset().top, left: $(this).offset().left}); // Set pop-up to location of input
				
				if ($(this).hasClass("showBottom")){
					$(errorMessage).children(".error-message-arrow-border").addClass("error-message-arrow-border-bottom");
					$(errorMessage).children(".error-message-arrow").addClass("error-message-arrow-bottom");
					$(errorMessage).css({marginLeft: "0px", marginTop: ($(this).outerHeight() + arrowHeight)  + "px"});				
				} else if ($(this).hasClass("showLeft")){
					$(errorMessage).children(".error-message-arrow-border").addClass("error-message-arrow-border-left");
					$(errorMessage).children(".error-message-arrow").addClass("error-message-arrow-left");
					$(errorMessage).css({marginLeft: "-" + ($(errorMessage).outerWidth() + arrowWidth)+ "px", marginTop: "0px"});				
				} else if ($(this).hasClass("showRight")){
					$(errorMessage).children(".error-message-arrow-border").addClass("error-message-arrow-border-right");
					$(errorMessage).children(".error-message-arrow").addClass("error-message-arrow-right");
					$(errorMessage).css({marginLeft: ($(this).outerWidth(true) + arrowWidth)+ "px", marginTop: "0px"});				
				} else {
					$(errorMessage).children(".error-message-arrow-border").addClass("error-message-arrow-border-top");
					$(errorMessage).children(".error-message-arrow").addClass("error-message-arrow-top");
					$(errorMessage).css({marginLeft: "408px", marginTop: "20px" + ($(errorMessage).outerHeight() + arrowHeight) + "px"});						
				}


				// Event Bindings
				$(this).blur(function (){	
					handlePopUp(validateInput($(this)),$(this));											  
				});
				// jquery can't find outerheight of elements with display none, and can't fade in/out elements with visibility, thus...	
				 $(errorMessage).css({visibility: "visible", display: "none"});
			});

			// Prevent form submission if invalid inputs exist
			//$('#ignoreMe').click(function(){
//				//alert('Clicked');
//				$('#contact-form').find(collection).each(function(){
//					if (handlePopUp(validateInput($(this)),$(this))){
//						$('#ignoreMe').addClass('error');
//					};
//				});
//			});
		});
		

		// Plugin Methods
		function validateInput(obj) {		
			var isValid = true;
			inputValue = $(obj).val();
			if (inputValue == "" || inputValue == "*First Name" || inputValue == "*Last Name"){
				if (!($(obj).hasClass("orEmpty"))){
					isValid = false;
				}
			} else {
				if ($(obj).hasClass("emailAddress")){ // validate for a valid email address
					isValid = regexCheck(inputValue,isEmail_re);
				} else if ($(obj).hasClass("int")){ 
					isValid = regexCheck(inputValue,isInt_re);
				} else if (($(obj).hasClass("phone"))){
					isValid = regexCheck(inputValue,isPhone_re);
				} else if (($(obj).hasClass("zip"))){
					isValid = regexCheck(inputValue,isZip_re);
				} 					
			}
			return isValid;
		}	
		
		function handlePopUp(isValid,obj) {		
			if (isValid){
				obj.next(".error-message").fadeOut(options.fadeSpeed);
				return false;
			} else {
				obj.next(".error-message").fadeIn(options.fadeSpeed);
				return true;
			}
		}	
		
		function regexCheck(value, re) { return String(value).search (re) != -1;}
	};  
})(jQuery);  


						  });










/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());










/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 2004 Monotype Imaging, Inc. All Rights Reserved.
 * 
 * Trademark:
 * Neo Sans is a trademark of Monotype Imaging, Inc. and may be registered in
 * certain jurisdictions.
 * 
 * Full name:
 * NeoSansStd-Regular
 * 
 * Vendor URL:
 * http://www.monotypeimaging.com.
 * 
 * License information:
 * http://www.monotypeimaging.com/html/type/license.html.
 */
Cufon.registerFont({"w":217,"face":{"font-family":"Neo Sans Std","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 4 3 5 4 4 2 4","ascent":"275","descent":"-85","x-height":"3","bbox":"-13.3675 -307.937 285.024 76","underline-thickness":"20.52","underline-position":"-7.56","stemh":"26","stemv":"23","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":88},"!":{"d":"55,-264r-2,187v0,9,-11,7,-20,7v-4,0,-7,-3,-7,-7r-3,-187v0,-10,15,-6,25,-7v4,0,7,3,7,7xm55,-41v-1,20,9,48,-24,41v-13,-2,-7,-27,-7,-41v0,-10,14,-6,24,-7v4,0,7,3,7,7","w":78},"\"":{"d":"96,-271v9,2,28,-5,24,7r-21,68v-1,11,-14,6,-24,7v-4,0,-3,-4,-3,-7r17,-68v1,-5,3,-7,7,-7xm35,-271v9,1,27,-5,23,7r-21,68v1,11,-23,10,-27,3r17,-71v1,-5,4,-7,8,-7","w":130,"k":{",":23,".":23}},"#":{"d":"179,-191v17,2,47,-8,40,15v-4,13,-28,4,-42,7r-7,73v15,3,46,-11,41,15v-3,13,-29,5,-43,7r-6,67v1,10,-13,6,-22,7v-4,0,-6,-3,-6,-7r6,-67r-56,0r-6,67v1,10,-13,6,-22,7v-3,0,-6,-3,-6,-7r6,-67v-15,-3,-44,10,-39,-15v2,-13,28,-5,41,-7r6,-73v-15,-2,-44,9,-38,-15v3,-13,27,-5,40,-7r6,-70v0,-9,27,-10,29,0r-6,70r55,0r7,-70v0,-10,14,-5,22,-6v4,0,6,3,6,6xm149,-169r-56,0r-7,73r56,0","w":237},"$":{"d":"190,-69v0,31,-14,63,-66,70v-1,20,9,48,-24,41v-13,-2,-5,-26,-7,-39v-21,0,-38,-4,-52,-6v-11,-2,-4,-12,-6,-21v0,-4,3,-6,7,-6v45,7,124,8,114,-39v0,-52,-128,-71,-128,-137v0,-37,24,-58,65,-63v1,-20,-7,-44,24,-38v13,3,5,24,7,37v19,1,41,3,53,5v9,1,5,12,6,21v0,4,-2,6,-7,6v-38,-2,-121,-15,-115,32v7,49,143,75,129,137"},"%":{"d":"270,-89v0,50,-7,92,-49,92v-42,0,-48,-43,-48,-92v0,-40,18,-59,48,-59v30,0,49,19,49,59xm213,-267v7,1,25,-4,19,6r-150,255v-3,11,-19,8,-29,5v46,-90,102,-172,151,-260v3,-5,5,-6,9,-6xm113,-212v0,49,-6,92,-48,92v-42,0,-49,-42,-49,-92v0,-40,19,-58,49,-58v30,0,48,18,48,58xm221,-18v27,0,26,-40,26,-71v0,-27,-10,-38,-26,-38v-27,0,-26,40,-26,71v0,27,10,38,26,38xm65,-141v27,0,26,-40,26,-71v0,-27,-10,-38,-26,-38v-27,0,-26,40,-26,71v0,27,10,38,26,38","w":285},"&":{"d":"229,-8v3,2,2,8,-2,8v-26,4,-38,-8,-49,-22v-43,40,-159,37,-159,-44v0,-30,16,-48,52,-71v-32,-36,-40,-57,-40,-76v0,-38,30,-57,76,-57v41,0,72,19,71,60v5,24,-26,52,-65,78r65,70v11,-18,14,-41,14,-68v0,-9,13,-5,21,-6v6,0,8,4,7,11v0,31,-8,61,-23,83xm95,-152v30,-18,60,-37,53,-61v0,-24,-16,-33,-41,-33v-28,0,-48,8,-47,36v-3,11,10,32,35,58xm161,-41r-72,-76v-30,19,-37,28,-37,54v0,51,84,49,109,22","w":244},"(":{"d":"101,-268v-62,91,-65,250,0,340v-4,5,-24,6,-29,-1v-66,-79,-66,-257,0,-338v5,-7,22,-5,29,-1","w":109},")":{"d":"14,72v64,-90,63,-250,0,-340v4,-5,24,-6,29,1v66,79,66,258,0,338v-5,6,-22,5,-29,1","w":109},"*":{"d":"143,-231v6,2,12,18,3,21r-45,14v9,17,44,41,16,55v-15,-10,-21,-29,-33,-42v-12,13,-18,32,-33,42v-5,-4,-18,-8,-12,-17r28,-38v-16,-9,-60,-5,-46,-32v1,-5,4,-3,7,-2r45,14r0,-47v-1,-9,8,-7,16,-7v13,7,2,37,5,54","w":167},"+":{"d":"184,-154v12,0,10,26,0,26r-62,0r0,62v1,10,-11,7,-20,7v-4,0,-6,-3,-6,-7r0,-62r-62,0v-10,1,-7,-11,-7,-20v0,-4,3,-6,7,-6r62,0r0,-62v-1,-10,11,-7,20,-7v4,0,6,3,6,7r0,62r62,0"},",":{"d":"35,-46v9,1,29,-4,25,6r-27,68v-1,10,-21,10,-26,3r21,-71v1,-5,3,-6,7,-6","w":77,"k":{"\"":23,"'":23}},"-":{"d":"96,-119v11,1,10,27,0,27r-72,0v-10,1,-7,-11,-7,-20v0,-4,3,-7,7,-7r72,0","w":119},".":{"d":"54,-41v-1,21,8,48,-24,41v-13,-3,-7,-27,-7,-41v0,-10,14,-6,24,-7v4,0,7,3,7,7","w":77,"k":{"\"":23,"'":23}},"\/":{"d":"90,-260v2,-12,33,-10,30,0r-82,253v0,11,-26,10,-30,2","w":127,"k":{"\/":12}},"0":{"d":"197,-109v0,80,-34,112,-88,112v-54,0,-88,-32,-88,-112r0,-49v0,-80,34,-112,88,-112v54,0,88,32,88,112r0,49xm109,-25v50,0,56,-67,56,-133v0,-61,-22,-84,-56,-84v-50,0,-55,68,-55,133v0,61,21,84,55,84"},"1":{"d":"180,0r-148,0v-10,1,-6,-13,-7,-22v0,-4,3,-6,7,-6r58,0r0,-206r-57,24v-3,1,-8,2,-8,-3v1,-8,-4,-21,4,-23v30,-10,48,-31,87,-31v4,0,6,2,6,6r0,233r58,0v10,-1,6,13,7,22v0,4,-3,6,-7,6"},"2":{"d":"32,-244v-3,-35,46,-24,71,-26v102,-9,110,92,40,134v-39,23,-96,56,-85,108r121,0v10,-1,6,13,7,22v0,4,-3,6,-7,6r-143,0v-13,-1,-5,-24,-7,-36v-6,-52,50,-94,91,-119v31,-19,37,-29,37,-51v0,-49,-75,-37,-119,-31v-4,0,-6,-3,-6,-7"},"3":{"d":"30,-243v-3,-35,40,-25,68,-27v55,-4,92,18,90,75v0,24,-13,45,-35,56v28,16,35,36,35,64v0,78,-86,88,-151,70v-10,0,-11,-24,-1,-25v53,6,118,17,118,-52v0,-19,-9,-44,-42,-44r-66,0v-9,0,-5,-11,-6,-19v0,-4,2,-7,6,-7r66,0v37,-1,42,-24,42,-48v0,-53,-71,-45,-118,-37v-4,0,-6,-2,-6,-6"},"4":{"d":"197,-99v11,1,10,29,0,28r-31,0r0,64v0,12,-17,6,-27,7v-4,0,-6,-3,-6,-7r0,-64r-104,0v-21,3,-19,-29,-11,-41r107,-150v4,-7,38,-10,41,2r0,161r31,0xm133,-99r-2,-125r-87,123v24,6,61,0,89,2"},"5":{"d":"190,-87v0,83,-80,103,-155,83v-9,0,-7,-11,-7,-20v0,-5,2,-6,7,-6v61,11,129,11,122,-57v7,-50,-61,-50,-118,-48v-3,0,-6,-3,-6,-6r10,-120v0,-4,3,-6,7,-6r124,0v10,-1,6,12,7,21v0,4,-3,6,-7,6r-103,0r-6,78v72,-2,125,11,125,75"},"6":{"d":"116,-270v34,0,56,-1,70,13v0,9,3,22,-9,20v-18,-4,-38,-6,-61,-6v-57,0,-62,35,-62,84v62,-15,143,-11,143,70v0,57,-29,92,-88,92v-54,0,-87,-32,-87,-103r0,-63v0,-77,32,-107,94,-107xm109,-24v34,1,56,-18,55,-67v0,-61,-66,-51,-110,-43v-4,61,9,119,55,110"},"7":{"d":"165,-267v30,0,31,22,22,41r-103,221v-4,9,-19,3,-30,5v-6,0,-6,-5,-4,-9r109,-228v-36,-6,-86,0,-126,-2v-10,0,-7,-13,-7,-22v0,-4,3,-6,7,-6r132,0","k":{"\/":36}},"8":{"d":"198,-81v2,59,-38,85,-91,84v-50,0,-90,-27,-87,-84v0,-22,12,-46,35,-59v-24,-13,-35,-32,-34,-59v0,-51,38,-72,90,-71v50,0,88,22,87,74v0,24,-12,44,-35,56v23,13,35,37,35,59xm98,-153v42,0,68,-13,68,-46v0,-30,-21,-45,-59,-44v-37,0,-56,15,-55,47v0,22,13,43,46,43xm107,-25v41,1,59,-19,59,-56v0,-28,-26,-50,-68,-46v-35,4,-45,25,-45,52v0,31,18,50,54,50"},"9":{"d":"193,-105v8,105,-76,120,-156,101v-11,0,-7,-10,-8,-20v0,-5,3,-8,8,-7v18,4,39,6,62,6v58,0,62,-35,62,-84v-62,15,-143,11,-143,-70v0,-57,29,-91,88,-91v54,0,87,31,87,102r0,63xm161,-134v4,-60,-9,-118,-55,-109v-35,-1,-57,17,-56,66v0,62,67,52,111,43"},":":{"d":"55,-191v-1,20,9,48,-24,41v-13,-2,-7,-27,-7,-41v0,-10,14,-6,24,-7v4,0,7,3,7,7xm55,-41v-1,20,9,48,-24,41v-13,-2,-7,-27,-7,-41v0,-10,14,-6,24,-7v4,0,7,3,7,7","w":78},";":{"d":"55,-191v-1,20,9,48,-24,41v-13,-2,-7,-27,-7,-41v0,-10,14,-6,24,-7v4,0,7,3,7,7xm31,-46v9,1,30,-4,25,7r-27,68v-1,10,-22,11,-26,2r21,-70v1,-5,3,-7,7,-7","w":78},"<":{"d":"170,-60v5,3,6,9,-1,10v-13,-1,-24,2,-32,-5r-87,-74v-8,-8,-8,-16,0,-24r87,-73v7,-8,27,-7,37,-2v0,2,-1,5,-4,7r-94,80"},"=":{"d":"178,-194v12,0,10,26,0,26r-138,0v-10,1,-8,-11,-8,-20v0,-4,4,-6,8,-6r138,0xm178,-114v12,0,10,26,0,26r-138,0v-10,1,-8,-11,-8,-20v0,-4,4,-6,8,-6r138,0"},">":{"d":"167,-153v9,8,9,16,0,24r-86,74v-7,7,-29,8,-37,1v29,-33,67,-57,98,-87r-94,-80v-5,-3,-7,-10,1,-10v13,1,24,-2,32,5"},"?":{"d":"139,-216v12,45,-75,76,-68,139v1,10,-14,6,-23,7v-10,0,-6,-14,-7,-24v-8,-48,63,-75,63,-122v0,-36,-56,-22,-87,-22v-8,0,-9,-24,1,-27v52,-10,123,-10,121,49xm64,-48v12,6,11,45,0,48v-10,-1,-24,3,-24,-7v1,-21,-8,-48,24,-41","w":160},"@":{"d":"143,-175v18,0,49,-3,54,14r-11,113v45,-6,52,-39,52,-84v0,-45,-29,-83,-88,-83v-92,-2,-111,70,-112,157v0,43,29,77,91,77v18,1,41,-5,55,0v-1,7,3,18,-6,17v-84,14,-170,-17,-163,-105v7,-95,34,-167,136,-167v74,0,111,50,111,104v0,88,-45,111,-131,113v-58,1,-62,-47,-54,-99v6,-37,27,-57,66,-57xm165,-147v-30,-5,-57,-2,-58,30v-1,33,-17,79,33,72v5,0,11,0,16,-1","w":276},"A":{"d":"217,-8v2,12,-17,7,-27,8v-3,0,-5,-2,-6,-5r-23,-83r-94,0r-23,83v-2,9,-37,8,-33,-3r66,-235v14,-38,62,-39,73,0xm154,-117r-33,-118v-1,-9,-12,-9,-14,0r-33,118r80,0","w":227,"k":{"O":9,"Q":9,"a":4,"e":4,"o":4,"u":4,"y":19,"C":8,"G":8,"L":6,"S":6,"T":32,"U":9,"V":25,"W":12,"Y":31,"c":4,"d":4,"f":16,"g":4,"q":4,"t":16,"v":19,"w":14}},"B":{"d":"28,-254v5,-24,37,-16,69,-16v59,0,105,15,105,75v0,27,-14,48,-38,57v27,10,40,31,40,64v0,81,-93,82,-164,73v-8,-1,-12,-4,-12,-13r0,-240xm117,-152v45,-1,53,-20,53,-49v0,-47,-61,-42,-109,-40r0,89r56,0xm61,-27v54,4,110,6,110,-53v0,-24,-12,-46,-54,-46r-56,0r0,99","w":221,"k":{"T":12,"Y":12,"A":7}},"C":{"d":"184,-9v-13,15,-31,12,-67,12v-44,0,-95,-25,-95,-112r0,-50v4,-116,74,-119,155,-105v10,-1,5,15,6,23v-9,10,-42,1,-66,1v-35,0,-63,20,-63,81r0,50v-1,90,57,86,124,79v9,0,5,13,6,21","w":196,"k":{"O":10,"Q":10,"o":4,"y":8,"C":6,"G":10}},"D":{"d":"28,-257v7,-19,38,-10,73,-13v85,-6,109,62,109,161v0,77,-42,112,-109,112v-35,0,-66,6,-73,-13r0,-247xm177,-109r0,-49v-1,-83,-49,-88,-116,-83r0,215v66,3,116,0,116,-83","w":230,"k":{"T":13,"V":7,"W":4,"Y":11,"A":8,"X":11,"Z":8}},"E":{"d":"175,-27v8,3,5,26,0,28v-14,1,-49,2,-70,2v-50,0,-77,-19,-77,-67r0,-139v-7,-75,81,-69,147,-65v6,2,7,25,0,28v-45,3,-124,-15,-114,37r0,50r110,0v10,0,8,11,8,21v0,4,-4,7,-8,7r-110,0v5,47,-21,98,44,98r70,0","w":198},"F":{"d":"171,-153v11,0,12,28,0,28r-110,0r0,118v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-196v-7,-75,81,-69,147,-65v6,2,7,25,0,28v-45,3,-124,-15,-114,37r0,50r110,0","w":198,"k":{"O":4,"o":10,",":33,".":33,"A":22}},"G":{"d":"192,-11v0,4,-2,7,-6,8v-81,15,-166,10,-165,-106r0,-49v1,-119,83,-119,165,-107v10,-1,5,15,6,23v0,3,-3,4,-6,4v-68,-3,-134,-18,-132,80r0,49v-1,81,46,88,105,80r0,-103v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,121","w":220,"k":{"V":5}},"H":{"d":"217,-7v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-120r-123,0r0,120v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-253v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,104r123,0r0,-104v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,253","w":244},"I":{"d":"64,-7v0,11,-16,6,-26,7v-4,0,-6,-3,-6,-7r0,-254v0,-11,17,-4,26,-6v4,0,6,2,6,6r0,254","w":96},"J":{"d":"9,65v-18,0,-24,-2,-22,-20v9,-14,53,3,45,-32r0,-274v0,-9,30,-10,32,0r0,274v0,35,-15,52,-55,52","w":92},"K":{"d":"201,-8v3,3,2,8,-3,8v-13,-1,-29,4,-36,-4r-101,-123r0,120v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-254v1,-9,30,-10,33,0r0,117r104,-120v6,-5,30,-5,38,0v-34,44,-74,83,-110,126","w":218,"k":{"w":18,"v":21,"t":10,"q":13,"d":16,"V":4,"T":5,"Q":17,"G":25,"-":14,"O":17,"e":16,"o":13,"u":15,"y":20,"C":25,"L":6,"U":6,"c":16,"f":5,"E":13}},"L":{"d":"175,-27v8,2,5,25,0,26v-9,1,-36,4,-70,4v-39,0,-77,-8,-77,-67r0,-196v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,196v-10,52,69,34,114,37","w":185,"k":{"O":16,"Q":16,"e":8,"o":9,"y":19,"C":12,"G":14,"S":6,"T":36,"U":14,"V":33,"W":13,"Y":37,"v":18,"w":10,"E":7,"-":14}},"M":{"d":"246,-7v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-215r-52,108v-6,15,-42,15,-49,0r-53,-108r0,215v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-250v0,-15,39,-15,45,-4r64,127v25,-38,41,-86,64,-127v5,-9,45,-12,45,4r0,250","w":273,"k":{"V":6,"Y":13}},"N":{"d":"217,-10v0,15,-37,13,-45,4r-112,-212r0,211v0,10,-27,10,-32,3r0,-253v0,-16,40,-13,45,-3r111,211r1,-212v0,-10,16,-5,25,-6v4,0,7,2,7,6r0,251","w":244,"k":{"T":12,"V":8,"Y":6}},"O":{"d":"216,-111v0,80,-40,114,-97,114v-73,0,-97,-65,-97,-160v0,-80,40,-113,97,-113v57,0,97,33,97,113r0,46xm119,-27v55,0,64,-61,64,-130v0,-60,-24,-83,-64,-83v-55,0,-64,60,-64,129v0,60,24,84,64,84","w":237,"k":{"T":16,"V":8,"W":4,"Y":14,"A":9,"X":16,"Z":13}},"P":{"d":"28,-258v7,-18,42,-12,68,-12v60,0,101,21,101,83v0,73,-64,85,-137,79r0,101v0,11,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-251xm60,-135v57,5,114,-2,105,-57v5,-48,-53,-54,-105,-49r0,106","w":213,"k":{"a":8,"e":6,"o":6,",":39,".":39,"A":22,"Z":12}},"Q":{"d":"216,-157v0,86,-18,157,-81,159v0,21,-3,36,22,36v15,0,34,-5,29,18v0,6,-11,9,-29,9v-42,0,-58,-18,-54,-64v-62,-2,-81,-71,-81,-158v0,-80,40,-113,97,-113v57,0,97,33,97,113xm119,-27v55,0,64,-61,64,-130v0,-60,-24,-83,-64,-83v-55,0,-64,60,-64,129v0,60,24,84,64,84","w":237,"k":{"X":16,"W":4,"V":8,"T":16,"Y":14,"A":9,"Z":13}},"R":{"d":"210,-8v3,3,0,8,-4,8v-12,-2,-27,5,-32,-5r-65,-107r-49,-1r0,106v0,11,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-252v0,-5,3,-7,9,-8v75,-8,164,-7,164,77v0,40,-24,64,-57,73xm60,-141v59,3,108,5,108,-52v0,-50,-57,-49,-108,-46r0,98","w":225,"k":{"g":5,"W":3,"V":12,"T":15,"Q":7,"G":7,"O":7,"e":8,"o":9,"y":7,"C":7,"Y":15,"c":5}},"S":{"d":"180,-69v0,35,-18,72,-89,72v-25,0,-44,-4,-60,-6v-11,-1,-5,-11,-7,-20v9,-15,48,0,67,-4v43,0,55,-17,55,-42v0,-52,-135,-71,-128,-137v-8,-66,86,-69,149,-60v9,1,10,28,0,28v-43,2,-121,-15,-116,32v6,49,142,76,129,137","w":198,"k":{"y":6,"V":9,"W":5,"Y":8,"t":14,"v":8,"A":6,"x":5}},"T":{"d":"193,-267v12,1,10,28,0,28r-70,0r0,232v0,11,-17,6,-27,7v-4,0,-6,-3,-6,-7r0,-232r-70,0v-10,1,-6,-13,-7,-22v0,-4,3,-6,7,-6r173,0","w":212,"k":{"x":14,"w":12,"v":12,"t":12,"r":17,"q":29,"p":14,"n":14,"m":14,"g":23,"d":30,"Q":16,"G":11,"F":6,"O":16,"a":31,"e":29,"o":32,"u":15,"y":23,",":27,".":27,"C":14,"c":28,"A":32,"E":10,"s":28,"z":13}},"U":{"d":"211,-97v0,69,-34,100,-92,100v-58,0,-92,-31,-92,-100r0,-164v1,-9,30,-10,33,0r0,164v0,46,14,71,59,71v45,0,59,-24,59,-71r0,-164v1,-9,30,-10,33,0r0,164","w":238,"k":{"A":9}},"V":{"d":"186,-262v6,-9,36,-9,33,3r-66,234v-14,40,-63,40,-74,0r-67,-236v1,-10,29,-9,34,-1r63,229v1,10,11,10,14,0","w":231,"k":{"x":14,"w":9,"v":9,"r":12,"q":18,"p":9,"n":9,"m":9,"g":17,"Q":8,"G":8,"O":8,"a":19,"e":18,"o":18,"u":13,"y":12,",":27,".":27,"C":9,"S":8,"c":17,"A":25,"E":9,"s":18,"z":10}},"W":{"d":"252,-261v4,-11,34,-9,33,1r-40,243v-3,28,-52,24,-59,0r-38,-136v-15,42,-26,91,-37,136v-6,23,-54,29,-58,0r-40,-244v1,-9,31,-11,33,0r36,234v16,-42,27,-93,38,-138v5,-22,51,-23,57,0r38,138","w":297,"k":{"Q":5,"G":4,"O":5,"a":9,"e":11,"o":13,"C":4,"A":16}},"X":{"d":"216,-9v2,4,2,9,-4,9v-12,-1,-26,4,-31,-5r-65,-105r-65,105v-5,10,-18,3,-29,5v-6,0,-6,-5,-4,-9r80,-127r-81,-126v2,-9,28,-7,36,-2r64,103r63,-103v5,-5,37,-7,33,5r-78,124","w":232,"k":{"v":15,"Q":16,"G":13,"O":16,"e":10,"o":12,"u":12,"y":13,"C":13}},"Y":{"d":"170,-267v11,1,33,-4,27,9r-56,125v-6,14,-14,21,-20,24r0,102v0,11,-16,6,-26,7v-4,0,-6,-3,-6,-7r0,-102v-6,-3,-14,-10,-20,-24r-56,-129v2,-8,30,-8,34,0v20,41,33,89,58,126v3,0,4,-2,8,-10r50,-116v1,-3,4,-5,7,-5","w":209,"k":{"O":14,"Q":14,"a":31,"e":34,"o":35,"u":26,"y":19,",":33,".":33,"C":16,"G":16,"S":8,"c":33,"d":33,"f":13,"g":33,"q":35,"t":13,"v":21,"w":20,"A":31,"E":10,"-":28,"x":19,"s":26,"z":25,"m":17,"n":17,"p":27,"r":27,"\/":33}},"Z":{"d":"189,-30v12,1,10,30,0,30r-139,0v-34,4,-37,-26,-24,-45r130,-191v-36,-6,-84,-2,-124,-2v-11,0,-6,-14,-7,-23v0,-4,3,-6,7,-6r129,0v31,-5,37,26,24,45r-129,190v38,6,91,0,133,2","w":214},"[":{"d":"102,44v11,0,10,27,0,26r-67,0v-4,0,-6,-3,-6,-7r0,-324v0,-4,2,-6,6,-6r67,0v9,0,7,11,7,19v-4,14,-33,4,-48,7r0,285r41,0","w":117},"\\":{"d":"120,-7v1,11,-15,6,-24,7v-4,0,-5,-3,-6,-7r-82,-255v1,-8,29,-10,30,2","w":127},"]":{"d":"89,63v0,4,-2,7,-6,7r-67,0v-9,0,-7,-11,-7,-19v4,-14,33,-4,48,-7r0,-285v-19,-4,-54,12,-48,-19v0,-4,3,-7,7,-7r67,0v4,0,6,2,6,6r0,324","w":117},"^":{"d":"180,-210v2,2,4,7,-2,7v-41,0,-47,-30,-69,-49v-20,17,-32,61,-73,46v13,-21,29,-38,43,-58v9,-12,32,-3,49,-6v5,0,7,1,11,6"},"_":{"d":"189,23v0,7,1,16,-7,15r-186,0v-8,1,-7,-7,-7,-15v0,-4,3,-5,7,-5r186,0v4,0,7,1,7,5","w":177},"a":{"d":"162,-7v0,10,-14,6,-23,7v-7,0,-9,-7,-8,-15v-42,29,-114,29,-114,-45v0,-48,48,-62,114,-58v2,-35,-5,-58,-39,-56r-57,3v-8,2,-6,-11,-6,-18v0,-4,2,-6,7,-7v15,-3,32,-5,56,-5v99,-4,64,109,70,194xm131,-38r0,-58v-44,-1,-92,0,-82,40v0,49,54,34,82,18","w":186,"k":{"y":8,"f":7,"t":9,"v":11}},"b":{"d":"177,-112v0,68,-15,115,-79,115v-22,0,-44,-3,-66,-7v-6,-1,-8,-3,-8,-8r0,-252v0,-10,15,-6,25,-7v4,0,7,3,7,7r0,67v71,-16,121,11,121,85xm98,-25v46,2,47,-39,47,-87v0,-59,-37,-68,-89,-58r0,143v12,1,30,2,42,2","w":194,"k":{"f":7,"t":11,"x":8}},"c":{"d":"147,-22v5,33,-28,24,-52,25v-58,3,-77,-48,-77,-116v0,-72,54,-99,122,-84v11,2,6,12,7,21v0,5,-3,6,-8,6v-50,-8,-89,-5,-89,57v0,47,6,88,45,88v19,0,29,-2,46,-3v3,0,6,2,6,6","w":162,"k":{"o":13}},"d":{"d":"170,-12v0,5,-1,7,-7,8v-22,4,-45,7,-67,7v-63,0,-78,-47,-78,-115v0,-75,49,-101,121,-85r0,-67v0,-11,15,-6,25,-7v4,0,6,3,6,7r0,252xm139,-27r0,-143v-51,-9,-89,-2,-89,58v0,47,0,90,46,87v12,0,31,-1,43,-2","w":194},"e":{"d":"177,-116v-1,10,3,27,-7,27r-120,0v-8,75,57,67,116,60v7,-1,4,11,5,17v0,5,-1,7,-7,8v-72,14,-141,16,-146,-80v-3,-69,17,-117,80,-117v53,0,79,34,79,85xm145,-113v1,-42,-14,-60,-47,-60v-32,0,-49,20,-48,60r95,0","w":195,"k":{"y":7,"T":33,"f":7,"t":11,"v":7,"w":2,"x":10}},"f":{"d":"101,-274v19,2,30,0,27,20v-8,15,-53,-8,-46,30r0,26v19,3,53,-11,45,21v-3,13,-31,3,-45,6r0,164v0,11,-15,6,-24,7v-4,0,-7,-3,-7,-7r0,-164v-16,-5,-47,6,-42,-21v3,-13,29,-4,42,-6v-4,-47,8,-80,50,-76","w":137,"k":{"q":7,"g":8,"d":4,"e":9,"o":8,",":20,".":20,"c":8,"s":5}},"g":{"d":"42,-34v-23,-9,-26,-43,-4,-56v-34,-41,-21,-110,63,-108r79,0v7,0,9,8,8,17v0,10,-12,7,-19,10v28,43,7,110,-68,101v-25,3,-46,-17,-51,5v7,20,44,18,65,25v35,12,69,19,69,56v0,35,-23,56,-82,56v-86,0,-103,-67,-60,-106xm101,-95v40,-1,50,-14,49,-39v0,-22,-10,-39,-49,-39v-41,1,-48,19,-48,42v0,16,7,36,48,36xm102,48v42,-3,52,-11,51,-35v5,-23,-60,-30,-85,-38v-26,22,-32,77,34,73","w":201},"h":{"d":"176,-7v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-119v0,-61,-45,-51,-88,-37r0,156v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-257v0,-10,15,-6,25,-7v4,0,7,3,7,7r0,75v58,-24,120,-16,120,63r0,119","w":200,"k":{"t":7,"y":7,"f":7}},"i":{"d":"54,-273v12,4,11,42,0,43v-10,-1,-26,4,-26,-7v0,-13,-6,-36,7,-36r19,0xm60,-7v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-184v0,-10,32,-12,32,0r0,184","w":88},"j":{"d":"54,-273v12,4,11,42,0,43v-10,-1,-26,4,-26,-7v0,-13,-6,-36,7,-36r19,0xm15,71v-15,0,-31,-1,-26,-21v8,-14,47,8,39,-27r0,-214v0,-11,16,-6,26,-7v4,0,6,3,6,7r0,214v0,37,-16,48,-45,48","w":88},"k":{"d":"165,-8v3,12,-17,7,-29,8v-4,0,-5,-1,-8,-5r-72,-88r0,86v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-257v0,-10,32,-12,32,0r0,150r72,-81v5,-5,43,-7,36,5r-79,86","w":178,"k":{"q":10,"d":9,"a":5,"e":13,"o":12,"c":10}},"l":{"d":"60,-7v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-257v0,-10,15,-6,25,-7v4,0,7,3,7,7r0,257","w":87},"m":{"d":"263,-7v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-128v0,-51,-43,-40,-75,-28v7,46,1,105,3,156v0,11,-15,6,-25,7v-4,0,-6,-3,-6,-7r0,-128v2,-56,-42,-39,-72,-24r0,152v0,11,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-184v0,-10,15,-6,25,-7v7,0,8,7,7,14v23,-16,68,-27,89,-2v52,-24,117,-28,118,51r0,128","w":287,"k":{"t":7,"y":5,"f":7}},"n":{"d":"176,-7v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-119v3,-62,-51,-51,-88,-33r0,152v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-184v0,-10,15,-6,25,-7v7,0,8,7,7,14v52,-33,120,-18,120,58r0,119","w":200,"k":{"y":8,"f":7,"t":7,"v":8,"w":7}},"o":{"d":"178,-113v0,68,-17,116,-80,116v-63,0,-80,-48,-80,-116v0,-53,27,-88,80,-88v53,0,80,35,80,88xm98,-25v43,0,49,-40,49,-88v0,-37,-15,-60,-49,-60v-43,0,-48,40,-48,88v0,37,14,60,48,60","w":196,"k":{"y":8,"f":7,"t":11,"v":8,"w":6,"x":13,"z":6}},"p":{"d":"177,-112v0,88,-36,131,-121,111r0,65v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-248v0,-5,2,-7,8,-8v19,-5,44,-9,66,-9v54,0,79,35,79,89xm98,-24v44,2,47,-40,47,-88v0,-38,-11,-62,-47,-62v-15,0,-32,2,-42,4r0,142v12,2,30,4,42,4","w":194,"k":{"x":11,"w":5,"t":11,"y":7,"f":7}},"q":{"d":"170,64v0,11,-15,6,-25,7v-4,0,-6,-3,-6,-7r0,-65v-81,19,-121,-19,-121,-111v0,-54,24,-89,78,-89v22,0,48,4,67,9v6,1,7,3,7,8r0,248xm139,-28r0,-142v-10,-2,-28,-4,-43,-4v-45,-2,-46,41,-46,88v0,60,37,70,89,58","w":194},"r":{"d":"106,-201v12,0,10,28,0,28v-17,0,-32,4,-50,15r0,151v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-184v0,-10,14,-6,24,-7v7,0,8,7,7,15v18,-13,35,-18,51,-18","w":123,"k":{"q":10,"g":9,"d":10,"a":10,"e":9,"o":9,",":11,".":11,"c":9}},"s":{"d":"82,3v-16,-4,-71,8,-64,-26v22,-16,100,21,100,-27v0,-41,-100,-48,-100,-103v0,-57,73,-51,121,-43v10,1,6,10,7,19v0,4,-2,6,-7,6v-24,1,-90,-17,-89,18v9,39,100,54,100,103v0,37,-28,53,-68,53","w":167,"k":{"y":4,"f":4,"t":5,"v":5}},"t":{"d":"130,-18v6,22,-15,21,-30,21v-33,0,-49,-9,-49,-49r0,-125v-16,-5,-47,6,-42,-21v3,-13,29,-4,42,-6v2,-14,-6,-37,6,-42v9,0,25,-9,25,3r0,39v19,3,53,-12,47,19v-3,15,-31,5,-47,8r0,125v-2,29,17,22,40,23v5,0,8,1,8,5","w":138,"k":{"q":5,"g":4,"d":4,"o":5,"c":4}},"u":{"d":"176,-7v0,10,-15,6,-25,7v-7,0,-8,-7,-7,-14v-52,33,-120,18,-120,-58r0,-119v0,-10,32,-12,32,0r0,119v-3,61,51,52,88,33r0,-152v0,-10,32,-12,32,0r0,184","w":200},"v":{"d":"151,-198v11,1,29,-4,25,9r-48,171v-9,29,-57,29,-65,0r-49,-174v0,-9,30,-11,32,1r42,157v3,15,11,14,15,0r41,-157v1,-5,4,-7,7,-7","w":190,"k":{"q":8,".":17,"a":8,"e":7,"o":8,",":18}},"w":{"d":"237,-192v3,-11,35,-9,32,3r-35,167v-5,23,-8,25,-30,25v-19,0,-23,-3,-29,-26r-32,-123v-2,-4,-2,-3,-3,0r-32,123v-5,21,-10,26,-29,26v-22,0,-25,-3,-30,-25r-35,-169v0,-10,30,-11,32,-1r30,164v2,7,4,5,6,0r35,-138v2,-16,45,-18,49,0r38,142v16,-50,20,-114,33,-168","w":282,"k":{"e":5,"o":6,"c":6}},"x":{"d":"183,-8v2,4,2,8,-4,8v-10,-1,-25,3,-30,-3r-51,-75r-52,74v-4,7,-27,7,-32,0r67,-97r-63,-93v4,-7,30,-8,36,1r46,68r46,-68v5,-10,17,-3,28,-5v6,0,6,5,3,9r-60,86","w":196,"k":{"q":13,"g":13,"d":13,"e":13,"o":13,"c":10,"f":2}},"y":{"d":"53,71v-18,0,-44,4,-38,-22v3,-13,28,-1,40,-4v27,5,33,-21,39,-45v-17,0,-24,-1,-32,-25r-48,-167v1,-9,29,-10,32,0r43,156v3,10,5,8,13,8r43,-165v3,-7,37,-10,33,4r-60,207v-11,39,-24,53,-65,53","w":192,"k":{"e":7,"o":8,",":13,"c":9,"g":9,"q":7}},"z":{"d":"148,-27v12,0,12,28,0,27r-108,0v-28,0,-27,-34,-14,-50r94,-119v-25,-6,-62,0,-91,-2v-8,0,-7,-11,-7,-20v0,-4,3,-7,7,-7r106,0v27,-1,24,32,12,46r-97,122v0,2,0,3,3,3r95,0","w":173,"k":{"e":7,"o":6,"c":4,"d":5,"q":4}},"{":{"d":"102,44v11,0,10,26,0,26v-48,0,-73,-5,-73,-50v0,-44,11,-91,-22,-108r0,-21v60,-28,-37,-158,95,-158v9,0,7,11,7,19v-6,18,-57,-6,-48,30v-2,50,9,100,-26,120v35,20,26,69,26,118v0,26,17,24,41,24","w":119},"|":{"d":"61,63v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-324v0,-9,29,-10,32,0r0,324","w":89},"}":{"d":"112,-88v-60,28,37,158,-95,158v-9,0,-7,-11,-7,-19v7,-17,57,5,48,-31v2,-49,-9,-99,26,-118v-35,-20,-26,-70,-26,-120v0,-26,-17,-23,-41,-23v-9,0,-7,-11,-7,-19v0,-10,15,-6,25,-7v100,-14,20,117,77,158r0,21","w":119},"~":{"d":"185,-178v9,49,-34,70,-67,46v-12,-9,-32,-29,-45,-32v-30,-4,3,43,-33,38v-7,0,-7,-9,-7,-17v0,-44,38,-58,67,-37v14,11,27,28,46,32v29,6,-5,-42,32,-37v4,0,7,3,7,7"},"'":{"d":"35,-271v9,1,27,-5,23,7r-21,68v1,11,-23,10,-27,3r17,-71v1,-5,4,-7,8,-7","w":69,"k":{",":23,".":23}},"`":{"d":"86,-230v2,2,1,5,-2,6v-11,-1,-23,4,-27,-6r-43,-48v8,-3,30,-6,37,3","w":133},"\u00a0":{"w":88}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 2004 Monotype Imaging, Inc. All Rights Reserved.
 * 
 * Trademark:
 * Neo Sans is a trademark of Monotype Imaging, Inc. and may be registered in
 * certain jurisdictions.
 * 
 * Full name:
 * NeoSansStd-Medium
 * 
 * Vendor URL:
 * http://www.monotypeimaging.com.
 * 
 * License information:
 * http://www.monotypeimaging.com/html/type/license.html.
 */
Cufon.registerFont({"w":226,"face":{"font-family":"Neo Sans Std","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 4 3 5 4 4 2 4","ascent":"275","descent":"-85","x-height":"3","bbox":"-13.25 -306.5 302 73","underline-thickness":"25.56","underline-position":"-2.88","stemh":"39","stemv":"48","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":90},"!":{"d":"71,-267r-6,183v-1,11,-34,11,-38,0r-5,-183v2,-13,28,-5,41,-7v4,0,8,3,8,7xm69,-47v-3,16,7,44,-7,48v-13,-2,-37,6,-39,-7v3,-16,-7,-44,7,-48v13,2,37,-6,39,7","w":92},"\"":{"d":"108,-274v12,2,42,-6,38,7r-25,74v-2,13,-29,8,-39,4r19,-78v1,-5,3,-7,7,-7xm36,-274v12,2,42,-6,38,7r-25,74v-2,13,-29,8,-39,4r19,-78v1,-5,3,-7,7,-7","w":151,"k":{",":18,".":18}},"#":{"d":"221,-196v12,1,9,29,-2,31r-32,0r-6,64v20,0,47,-6,36,24v-2,13,-25,5,-38,7r-6,63v-1,13,-23,5,-35,7v-4,0,-6,-3,-6,-7r6,-63r-47,0r-5,63v-1,13,-24,5,-36,7v-3,0,-5,-3,-5,-7r5,-63v-20,1,-46,5,-35,-24v2,-13,25,-5,38,-7r6,-64v-20,1,-46,4,-35,-24v2,-13,24,-5,37,-7r6,-65v2,-12,24,-4,36,-6v3,0,5,3,5,6r-6,65r47,0r6,-65v2,-11,23,-4,35,-6v4,0,5,3,5,6r-5,65r31,0xm147,-165r-47,0r-6,64r47,0","w":246},"$":{"d":"135,-270v36,4,66,-5,58,40v0,4,-3,6,-7,6v-37,-2,-109,-16,-109,22v-1,24,52,44,73,56v39,23,50,46,50,74v0,31,-17,63,-65,72v-2,14,6,37,-7,40v-14,-2,-40,6,-40,-7r0,-30v-19,-1,-34,-4,-47,-7v-11,-3,-4,-21,-6,-33v0,-4,2,-7,7,-7v37,3,113,15,106,-28v-8,-49,-121,-64,-121,-130v0,-33,16,-59,61,-66v2,-13,-5,-35,7,-38v14,2,40,-6,40,8r0,28"},"%":{"d":"278,-88v0,51,-8,90,-51,90v-43,0,-52,-38,-52,-90v0,-41,20,-60,52,-60v32,0,51,19,51,60xm209,-267v10,2,39,-6,32,7r-150,254v-5,13,-30,8,-42,4r152,-258v3,-5,4,-7,8,-7xm117,-209v0,50,-8,90,-51,90v-42,0,-52,-39,-52,-90v0,-41,20,-60,52,-60v32,0,51,19,51,60xm227,-25v22,5,21,-37,20,-63v0,-26,-7,-33,-20,-33v-22,-5,-21,37,-21,63v0,26,8,33,21,33xm66,-146v22,5,21,-37,20,-63v0,-26,-7,-34,-20,-34v-22,-5,-21,37,-21,63v0,26,8,34,21,34","w":291},"&":{"d":"246,-8v2,3,2,8,-3,8v-26,1,-50,2,-59,-17v-51,36,-164,26,-164,-53v0,-30,17,-49,49,-68v-28,-35,-37,-53,-37,-73v0,-36,27,-59,82,-59v49,1,78,23,78,62v0,37,-32,60,-62,77r54,58v6,-16,9,-35,9,-56v1,-13,22,-5,33,-7v5,0,6,5,6,11v0,31,-7,58,-21,80xm103,-159v23,-15,52,-29,46,-52v0,-16,-12,-26,-35,-26v-56,0,-48,45,-11,78xm159,-43r-63,-67v-45,20,-33,78,19,78v18,0,33,-4,44,-11","w":258},"(":{"d":"68,-102v0,76,21,127,41,169v-7,6,-35,7,-42,-2v-64,-74,-63,-252,0,-327v7,-8,32,-8,42,-2v-19,42,-41,89,-41,162","w":119,"k":{"j":-12,"A":20}},")":{"d":"51,-95v0,-75,-20,-127,-40,-169v7,-6,35,-7,42,2v64,74,63,252,0,327v-7,8,-32,8,-42,2v19,-42,40,-89,40,-162","w":119},"*":{"d":"142,-232v9,-3,21,25,9,28r-43,13v8,15,29,27,27,45v-7,3,-16,18,-24,8r-26,-36v-14,19,-32,56,-52,24v7,-16,20,-27,29,-41v-23,-5,-66,-15,-37,-42r46,15v3,-22,-13,-60,24,-52v12,7,2,36,5,52","w":170},"+":{"d":"190,-159v12,3,11,37,0,37r-58,0r0,58v0,12,-20,5,-31,7v-4,0,-6,-3,-6,-7r0,-58r-58,0v-12,0,-5,-20,-7,-31v0,-4,3,-6,7,-6r58,0r0,-58v0,-13,20,-6,31,-8v14,10,2,46,6,66r58,0"},",":{"d":"33,-55v13,2,44,-5,39,7r-31,76v-3,12,-20,5,-32,7v-4,0,-5,-3,-5,-7r22,-76v1,-4,3,-7,7,-7","w":93,"k":{"*":25,"\"":18,"'":18}},"-":{"d":"93,-129v12,3,11,36,0,36r-70,0v-13,1,-7,-18,-8,-29v0,-4,4,-7,8,-7r70,0","w":115},".":{"d":"70,-48v-3,16,7,44,-7,48v-14,-2,-37,6,-40,-7v3,-16,-7,-45,8,-48v13,2,37,-6,39,7","w":93,"k":{"*":25,"\"":18,"'":18}},"\/":{"d":"84,-260v2,-13,23,-5,36,-7v4,0,7,2,6,7r-78,252v-2,14,-23,6,-36,8v-5,0,-7,-4,-6,-8","w":131,"k":{"q":17,"4":14,"\/":7,"e":17,"o":17,"c":20}},"0":{"d":"207,-147v0,95,-27,150,-94,150v-66,0,-94,-53,-94,-150v0,-90,36,-123,94,-123v58,0,94,33,94,123xm113,-38v32,10,44,-50,44,-109v0,-65,-19,-83,-44,-83v-32,-10,-44,51,-44,110v0,65,19,82,44,82"},"1":{"d":"193,0r-147,0v-13,-1,-5,-23,-7,-35v7,-13,39,-3,56,-6r0,-177r-52,15v-8,-5,-5,-33,-1,-42v31,-8,54,-25,96,-22v4,0,6,2,6,6r0,220r49,0v13,1,5,22,7,34v0,4,-3,7,-7,7"},"2":{"d":"111,-270v108,0,109,96,43,135v-34,20,-88,52,-83,94r118,0v13,1,5,22,7,34v0,4,-3,7,-7,7r-153,0v-14,-3,-6,-28,-7,-42v-2,-59,50,-94,91,-119v28,-17,33,-23,33,-43v1,-41,-77,-24,-115,-22v-10,0,-12,-33,0,-35v19,-5,50,-9,73,-9"},"3":{"d":"197,-82v0,87,-89,94,-160,76v-10,-3,-12,-33,0,-36v55,5,110,20,110,-40v0,-19,-7,-37,-34,-37r-63,0v-11,0,-12,-33,0,-36v43,-1,97,11,97,-41v0,-18,-8,-35,-41,-35v-26,0,-37,5,-69,5v-12,0,-5,-19,-7,-29v0,-4,3,-5,7,-6v67,-18,160,-16,160,71v0,25,-12,43,-31,53v20,11,31,32,31,55"},"4":{"d":"206,-104v13,3,10,40,0,40r-27,0r0,57v-3,14,-29,4,-43,7v-4,0,-7,-3,-7,-7r0,-57r-108,0v-12,-4,-11,-37,-3,-48r111,-149v7,-11,28,-4,43,-6v4,0,7,3,7,7r0,156r27,0xm130,-104r-1,-94r-67,92v17,6,47,0,68,2"},"5":{"d":"199,-87v5,83,-84,105,-162,81v-10,-1,-12,-33,0,-36v58,7,117,17,112,-45v7,-46,-64,-40,-113,-40v-2,0,-4,-3,-4,-6r12,-128v0,-4,3,-6,7,-6r131,0v13,1,5,22,7,34v0,4,-3,7,-7,7r-98,0r-5,59v59,-1,116,9,120,80"},"6":{"d":"209,-90v0,57,-33,90,-93,93v-68,3,-94,-61,-94,-153v0,-87,33,-120,99,-120v31,0,55,3,67,6v13,0,12,34,1,38v-61,-4,-124,-22,-118,61v65,-11,138,-4,138,75xm116,-36v25,1,45,-13,44,-54v-1,-50,-48,-45,-89,-39v-4,56,13,102,45,93"},"7":{"d":"185,-267v21,3,15,35,8,50r-97,210v-7,14,-30,4,-47,7v-5,0,-5,-4,-5,-9r104,-216v-35,-3,-76,0,-113,-1v-13,-1,-5,-23,-7,-35v0,-4,3,-6,7,-6r150,0","k":{"\/":41,",":46,".":46}},"8":{"d":"208,-81v1,61,-43,85,-96,84v-50,0,-95,-24,-93,-84v0,-24,14,-44,33,-58v-23,-15,-31,-34,-31,-58v0,-55,43,-74,94,-73v50,0,93,19,92,75v0,22,-10,42,-32,56v19,14,33,34,33,58xm106,-157v34,0,54,-11,54,-38v0,-25,-15,-40,-48,-39v-32,0,-45,15,-45,40v0,21,11,37,39,37xm112,-35v32,1,47,-18,47,-46v0,-22,-18,-43,-53,-39v-29,3,-39,22,-38,43v0,24,15,42,44,42"},"9":{"d":"205,-159v0,98,-19,162,-100,162v-31,0,-54,-4,-66,-7v-13,-1,-8,-18,-9,-30v0,-6,4,-7,9,-7v14,2,44,4,66,4v36,0,50,-16,51,-65v-66,11,-138,3,-138,-79v0,-53,34,-89,93,-89v54,0,94,33,94,111xm156,-139v4,-56,-13,-101,-45,-92v-25,-1,-45,13,-44,54v1,50,48,44,89,38"},":":{"d":"70,-190v-3,16,7,44,-7,48v-14,-2,-37,6,-40,-7v3,-16,-7,-45,8,-48v13,2,37,-6,39,7xm70,-48v-3,16,7,44,-7,48v-14,-2,-37,6,-40,-7v3,-16,-7,-45,8,-48v13,2,37,-6,39,7","w":93},";":{"d":"70,-190v-3,16,7,44,-7,48v-14,-2,-37,6,-40,-7v3,-16,-7,-45,8,-48v13,2,37,-6,39,7xm31,-55v13,2,44,-5,39,7r-31,76v-2,11,-31,10,-38,2r23,-78v1,-4,3,-7,7,-7","w":93},"<":{"d":"183,-59v3,3,3,9,-2,9v-16,-2,-39,4,-48,-4r-83,-73v-11,-8,-11,-20,0,-28v31,-24,56,-56,91,-76r40,0v5,0,5,6,2,9r-94,81"},"=":{"d":"186,-203v14,2,12,37,0,37r-145,0v-13,0,-6,-20,-8,-31v0,-4,4,-6,8,-6r145,0xm186,-116v14,2,12,37,0,37r-145,0v-13,0,-6,-20,-8,-31v0,-4,4,-6,8,-6r145,0"},">":{"d":"177,-155v11,8,11,20,0,28v-31,25,-57,55,-91,77r-40,0v-5,0,-5,-6,-2,-9r94,-82v-31,-29,-67,-54,-96,-85v6,-11,39,-5,52,-2"},"?":{"d":"147,-214v12,45,-65,76,-65,130v0,13,-24,7,-37,7v-9,0,-5,-13,-6,-21v-6,-50,57,-62,54,-116v-2,-25,-55,-10,-76,-10v-11,-1,-4,-20,-6,-30v0,-6,0,-9,6,-10v52,-11,136,-13,130,50xm84,-48v-3,16,7,44,-7,48v-14,-2,-37,6,-40,-7v3,-16,-7,-44,7,-48v14,2,37,-6,40,7","w":157},"@":{"d":"145,-177v12,3,53,-2,56,16r-11,109v37,-6,48,-36,48,-78v0,-44,-27,-83,-87,-83v-93,0,-106,70,-111,158v-3,61,73,83,145,70v3,2,5,20,-2,21v-84,15,-176,-11,-170,-103v7,-99,34,-172,139,-171v77,0,113,53,113,108v0,87,-54,113,-133,113v-57,0,-65,-44,-57,-100v6,-41,30,-60,70,-60xm161,-143v-25,-5,-46,-3,-48,27v-2,34,-16,79,39,66","w":277},"A":{"d":"225,-8v1,14,-28,6,-44,8v-3,0,-6,-3,-7,-6r-16,-69r-83,0r-17,69v-6,12,-30,4,-45,6v-5,0,-6,-3,-6,-8r59,-226v9,-33,35,-36,50,-36v15,0,41,3,50,36xm148,-116r-26,-106v0,-8,-11,-8,-11,0r-26,106r63,0","w":232,"k":{"O":7,"Q":7,"y":17,"C":7,"E":7,"G":7,"L":7,"T":27,"U":7,"V":22,"W":9,"Y":27,"f":14,"t":14,"v":17,"w":10}},"B":{"d":"27,-247v4,-33,32,-23,76,-23v68,0,111,19,111,80v0,24,-11,45,-33,54v24,10,35,30,35,61v0,57,-42,78,-109,78v-44,0,-80,9,-80,-24r0,-226xm77,-155v42,2,99,1,89,-39v7,-33,-46,-38,-89,-34r0,73xm77,-39v47,2,100,-2,90,-41v7,-37,-48,-42,-90,-38r0,79","w":234,"k":{"X":9,"V":9,"T":7,"Y":14,"A":6}},"C":{"d":"122,-270v48,0,69,-9,64,38v0,4,-2,7,-7,7v-56,-5,-113,-14,-109,65r0,53v-3,78,52,69,109,64v12,1,5,20,7,32v-6,17,-27,14,-64,14v-43,0,-102,-21,-102,-110r0,-53v0,-90,59,-110,102,-110","w":202,"k":{"O":9,"Q":9,"y":5,"C":16,"G":9}},"D":{"d":"27,-255v5,-23,46,-13,80,-15v92,-5,113,63,113,163v0,71,-41,110,-113,110v-35,0,-75,8,-80,-16r0,-242xm171,-107r0,-53v0,-67,-41,-71,-94,-67r0,187v52,4,94,0,94,-67","w":240,"k":{"T":8,"V":9,"W":4,"Y":15,"A":6,"X":12,"Z":5}},"E":{"d":"179,-40v12,3,10,37,0,38v-12,2,-26,5,-69,5v-47,0,-83,-13,-83,-74r0,-126v0,-61,36,-73,83,-73v43,0,57,4,69,5v11,1,12,35,0,37v-39,7,-106,-20,-102,31r0,39r97,0v11,2,12,37,0,41r-97,0v2,33,-11,77,28,77r74,0","w":207},"F":{"d":"179,-265v13,3,10,36,0,37v-40,5,-106,-20,-102,31r0,39r97,0v11,2,12,37,0,41r-97,0r0,110v-3,13,-29,5,-43,7v-4,0,-7,-3,-7,-7r0,-190v0,-61,36,-73,83,-73v43,0,57,3,69,5","w":207,"k":{"G":12,"O":5,"a":16,"e":16,"o":16,"u":13,",":47,".":47,"A":23}},"G":{"d":"202,-12v0,5,-2,8,-7,9v-81,13,-172,16,-175,-105r0,-51v0,-121,94,-117,175,-105v12,2,5,20,7,32v0,5,-3,7,-9,7v-17,-1,-41,-3,-76,-3v-24,0,-47,18,-47,69r0,51v4,69,30,72,82,67r0,-92v3,-14,28,-4,42,-7v4,0,8,3,8,7r0,121","w":228,"k":{"V":3,"Y":13}},"H":{"d":"229,-7v-3,14,-29,4,-43,7v-4,0,-7,-3,-7,-7r0,-110r-102,0r0,110v-3,14,-29,4,-43,7v-4,0,-7,-3,-7,-7r0,-254v4,-12,29,-3,43,-6v4,0,7,2,7,6r0,100r102,0r0,-100v4,-12,29,-3,43,-6v4,0,7,2,7,6r0,254","w":256},"I":{"d":"77,-7v-3,14,-29,4,-43,7v-4,0,-7,-3,-7,-7r0,-254v4,-12,29,-3,43,-6v4,0,7,2,7,6r0,254","w":104},"J":{"d":"19,60v-16,0,-29,1,-32,-8v2,-11,-5,-31,7,-32v14,-2,33,8,33,-12r0,-269v4,-12,29,-3,43,-6v4,0,7,2,7,6r0,269v0,38,-19,52,-58,52","w":104},"K":{"d":"220,-8v1,5,3,8,-4,8v-19,-2,-45,5,-57,-4r-82,-123r0,120v-3,14,-29,4,-43,7v-4,0,-7,-3,-7,-7r0,-253v3,-14,29,-4,43,-7v4,0,7,3,7,7r0,114r88,-118v11,-7,34,-1,50,-3v9,-1,6,6,4,10r-92,119","w":231,"k":{"w":18,"v":22,"q":13,"g":9,"d":18,"W":6,"V":4,"T":3,"Q":18,"G":23,"-":9,"O":18,"a":9,"e":18,"o":13,"u":16,"y":22,"c":18,"C":23,"E":16,"L":5,"U":4,"Y":5}},"L":{"d":"179,-33v10,47,-36,36,-69,36v-47,0,-83,-13,-83,-74r0,-189v3,-14,29,-4,43,-7v4,0,7,3,7,7r0,189v-4,49,56,26,94,31v4,0,8,3,8,7","w":185,"k":{"O":13,"Q":13,"e":5,"o":5,"y":23,"C":7,"E":7,"G":11,"L":9,"T":32,"U":13,"V":25,"W":11,"Y":36,"v":11,"w":9,"S":4,"-":9}},"M":{"d":"258,-5v-5,11,-29,2,-42,5v-3,0,-6,-3,-6,-7r-1,-171v-14,22,-24,48,-37,71v-9,10,-47,10,-59,0r-37,-71v-3,53,2,116,-1,171v-1,14,-28,4,-42,7v-3,0,-6,-1,-6,-5r0,-248v-1,-21,49,-21,57,-6r59,115v22,-35,38,-78,58,-115v7,-12,57,-16,57,6r0,248","w":285,"k":{"V":6,"Y":14}},"N":{"d":"229,-14v0,21,-31,12,-50,14v-9,0,-16,0,-22,-13r-80,-175v-2,-3,-5,-5,-5,0r0,181v-2,13,-25,5,-38,7v-4,0,-7,-3,-7,-7r0,-246v1,-22,33,-12,53,-14v8,0,12,2,16,11r87,188v7,-58,-2,-131,2,-193v1,-12,25,-4,37,-6v4,0,7,2,7,6r0,247","w":256,"k":{"T":10,"V":8}},"O":{"d":"225,-109v0,79,-44,112,-103,112v-59,0,-102,-33,-102,-112r0,-49v0,-79,43,-112,102,-112v59,0,103,33,103,112r0,49xm122,-41v53,0,53,-59,53,-117v0,-48,-18,-69,-53,-69v-53,0,-52,60,-52,118v0,48,17,68,52,68","w":244,"k":{"T":13,"V":9,"W":4,"Y":15,"A":7,"X":19,"Z":12,"x":7}},"P":{"d":"213,-187v0,78,-63,92,-136,86r0,94v-3,14,-29,4,-43,7v-4,0,-7,-3,-7,-7r0,-248v0,-7,5,-10,12,-11v77,-9,174,-11,174,79xm77,-142v45,4,93,-1,86,-45v4,-41,-43,-45,-86,-41r0,86","w":225,"k":{"a":8,"e":4,"o":4,",":45,".":45,"T":6,"Y":4,"A":20,"X":12,"Z":10}},"Q":{"d":"202,48v-3,13,-26,11,-43,12v-37,1,-62,-18,-59,-59v-62,-5,-78,-73,-78,-159v0,-79,43,-112,102,-112v59,0,103,33,103,112v0,85,-16,154,-79,159v-5,27,24,19,46,19v13,0,6,17,8,28xm124,-41v53,0,52,-59,52,-117v0,-48,-17,-69,-52,-69v-53,0,-52,60,-52,118v0,48,17,68,52,68","w":248,"k":{"X":19,"W":4,"V":9,"T":13,"Y":15,"A":7,"Z":12}},"R":{"d":"221,-7v1,3,0,8,-4,7v-17,-3,-44,7,-51,-7r-52,-96r-37,-2r0,98v-3,14,-29,4,-43,7v-4,0,-7,-3,-7,-7r0,-248v0,-7,5,-10,12,-11v77,-9,174,-11,174,80v0,38,-19,62,-49,74xm77,-145v45,3,92,3,86,-44v4,-38,-46,-43,-86,-37r0,81","w":235,"k":{"g":3,"V":12,"T":13,"Q":7,"G":7,"O":7,"e":8,"o":11,"y":7,"c":3,"C":7,"E":9,"L":9,"Y":11,"S":4}},"S":{"d":"106,-270v39,0,87,-11,76,40v0,4,-2,6,-7,6v-37,-2,-109,-16,-109,22v-1,24,52,44,73,56v39,23,50,46,50,74v0,36,-23,75,-95,75v-27,0,-46,-3,-63,-7v-11,-2,-12,-36,0,-40v37,3,113,15,106,-28v-8,-49,-121,-65,-121,-130v0,-40,23,-68,90,-68","w":205,"k":{"y":5,"V":5,"W":5,"Y":5,"t":13,"v":5,"w":9,"A":4,"x":3}},"T":{"d":"199,-261v-2,12,6,35,-7,35r-63,0r0,219v-3,14,-29,4,-43,7v-4,0,-7,-3,-7,-7r0,-219r-63,0v-13,-1,-5,-23,-7,-35v0,-4,3,-6,7,-6r176,0v4,0,7,2,7,6","w":208,"k":{"x":9,"w":7,"v":7,"r":14,"q":25,"p":9,"n":9,"m":9,"g":14,"d":27,"Q":13,"G":10,"F":6,"\/":32,"-":31,"O":13,"a":25,"e":25,"o":32,"u":11,"y":14,",":22,".":22,"c":23,"C":11,"E":9,"A":27,"s":23,"z":8}},"U":{"d":"223,-99v0,77,-41,102,-99,102v-58,0,-99,-25,-99,-102r0,-162v4,-12,29,-3,43,-6v4,0,7,2,7,6r0,162v0,41,10,60,49,60v39,0,49,-19,49,-60r0,-162v4,-12,29,-3,43,-6v4,0,7,2,7,6r0,162","w":248,"k":{"A":7,"X":9}},"V":{"d":"176,-261v7,-12,54,-9,51,1r-59,226v-9,33,-35,37,-50,37v-15,0,-41,-4,-50,-37r-59,-227v5,-11,43,-10,51,0r52,216v0,8,10,8,12,0","w":236,"k":{"x":9,"w":5,"v":5,"r":10,"q":17,"p":5,"n":5,"m":5,"g":16,"Q":9,"G":8,"F":7,"\/":23,"O":9,"a":20,"e":18,"o":18,"u":12,"y":7,",":22,".":22,"c":16,"C":9,"E":13,"A":22,"S":5,"s":17,"z":6}},"W":{"d":"257,-267v15,3,41,-6,45,6r-34,235v-3,31,-23,30,-52,29v-16,0,-25,-8,-30,-29r-30,-123v-15,36,-21,83,-31,123v-8,29,-21,30,-50,29v-19,0,-29,-6,-32,-29r-34,-236v6,-11,30,-3,44,-5v3,0,6,2,6,6r28,220v13,-41,22,-88,33,-131v1,-17,26,-18,48,-17v15,0,20,8,22,17r34,131r27,-220v0,-4,3,-6,6,-6","w":310,"k":{"x":16,"Q":4,"O":4,"a":9,"e":9,"o":9,"E":4,"A":9,"S":5}},"X":{"d":"225,-7v3,4,0,7,-5,7v-18,-2,-44,7,-52,-7r-53,-85r-49,85v-8,14,-31,4,-49,7v-5,0,-7,-4,-5,-7r77,-128r-80,-128v10,-8,47,-8,58,2r52,84r49,-84v7,-12,32,-4,48,-6v4,0,8,3,5,6r-75,127","w":234,"k":{"v":15,"Q":19,"G":15,"-":23,"O":19,"a":11,"e":11,"o":14,"u":13,"y":16,"C":14,"E":12,"L":7,"U":9}},"Y":{"d":"206,-267v5,0,6,3,6,8r-55,125v-7,16,-14,23,-22,26r0,101v-3,14,-29,4,-43,7v-4,0,-7,-3,-7,-7r0,-101v-8,-3,-15,-10,-22,-26r-55,-128v6,-11,32,-3,46,-5v3,0,6,2,7,5v17,38,28,82,49,115v2,0,4,-1,7,-7r43,-108v7,-11,31,-3,46,-5","w":221,"k":{"O":15,"Q":15,"a":32,"e":34,"o":35,"u":25,"y":16,",":34,".":34,"c":33,"C":17,"E":11,"G":17,"v":18,"w":17,"A":27,"S":5,"-":18,"x":16,"s":24,"z":24,"F":11,"d":33,"g":33,"m":17,"n":17,"p":26,"q":33,"r":26,"\/":34}},"Z":{"d":"190,-44v12,5,11,44,0,44r-157,0v-24,4,-24,-32,-14,-47r115,-174v0,-2,0,-3,-3,-3r-100,0v-13,-1,-5,-25,-7,-37v0,-4,3,-6,7,-6r145,0v25,-3,24,34,14,49r-114,172v32,6,78,0,114,2","w":211},"[":{"d":"111,32v12,3,11,38,0,38r-80,0v-4,0,-6,-3,-6,-7r0,-324v0,-4,2,-6,6,-6r80,0v13,0,5,21,7,32v-4,13,-31,3,-45,6r0,261r38,0","w":128,"k":{"j":-12,"A":20}},"\\":{"d":"133,-5v1,13,-26,7,-42,8v-4,0,-5,-4,-6,-8r-80,-257v6,-10,29,-3,43,-5v4,0,6,3,7,7","w":138},"]":{"d":"103,63v0,4,-2,7,-6,7r-80,0v-13,0,-5,-21,-7,-32v4,-13,31,-3,45,-6r0,-261v-15,-2,-40,6,-45,-6v2,-11,-5,-31,7,-32r80,0v4,0,6,2,6,6r0,324","w":128},"^":{"d":"195,-211v2,3,4,8,-2,8v-17,-2,-40,5,-48,-6r-32,-37v-14,13,-23,34,-42,43v-13,-3,-43,8,-40,-8r41,-53v14,-14,48,-3,71,-6v6,0,8,1,12,6"},"_":{"d":"192,15v12,0,10,26,0,26r-196,0v-10,1,-7,-11,-7,-20v0,-4,3,-6,7,-6r196,0","w":188},"a":{"d":"174,-7v-2,13,-25,6,-38,7v-6,1,-8,-6,-7,-13v-45,26,-109,28,-113,-46v-2,-48,44,-66,110,-62v2,-28,-3,-46,-31,-45r-61,3v-10,-1,-10,-34,1,-37v14,-4,35,-6,60,-6v51,0,79,23,79,69r0,130xm126,-45r0,-44v-34,-2,-69,2,-62,32v-2,33,45,22,62,12","w":197,"k":{"y":9,"f":7,"t":10,"v":9,"w":7}},"b":{"d":"192,-115v0,72,-18,118,-87,118v-23,0,-50,-3,-72,-9v-8,-2,-10,-5,-10,-10r0,-251v3,-13,27,-5,41,-7v4,0,7,3,7,7r0,64v73,-14,121,19,121,88xm105,-36v41,1,39,-39,39,-79v0,-46,-29,-59,-73,-49r0,125v7,1,21,3,34,3","w":207,"k":{"y":7,"f":7,"t":7,"v":7,"x":8}},"c":{"d":"152,-35v5,43,-16,36,-54,38v-58,2,-82,-47,-82,-121v0,-79,66,-97,129,-83v13,3,5,21,7,33v0,4,-3,5,-7,5v-38,-2,-81,-15,-81,45v0,39,6,88,34,81v24,0,33,-1,48,-3v4,0,6,1,6,5","w":168,"k":{"e":5,"o":5,"c":5,"s":5,"d":5,"g":5,"q":5}},"d":{"d":"184,-16v0,5,-1,8,-9,10v-22,6,-50,9,-73,9v-68,0,-86,-46,-86,-118v0,-69,48,-102,121,-88r0,-64v2,-13,27,-5,40,-7v4,0,7,3,7,7r0,251xm137,-39r0,-125v-56,-14,-73,13,-73,77v0,30,7,51,38,51v13,0,28,-2,35,-3","w":207},"e":{"d":"189,-114v0,11,4,29,-7,29r-117,1v0,21,8,48,43,46r67,-4v11,0,12,36,-1,39v-82,18,-157,8,-157,-111v0,-56,32,-92,87,-92v55,0,85,38,85,92xm65,-120v22,2,54,2,76,0v0,-28,-15,-45,-37,-45v-22,0,-39,17,-39,45","w":206,"k":{"y":7,"T":33,"f":7,"t":7,"v":7,"x":9}},"f":{"d":"107,-278v11,1,24,0,28,8v-1,9,4,27,-5,28v-21,1,-41,-4,-38,21r0,18v14,2,39,-6,42,7v-1,11,4,28,-7,29r-35,0r0,159v-2,14,-26,6,-40,8v-4,0,-7,-4,-7,-8r0,-159v-18,-5,-47,2,-40,-29v3,-13,26,-5,40,-7v-5,-53,18,-79,62,-75","w":142,"k":{"q":7,"g":5,"e":7,"o":9,",":21,".":21,"c":5,"s":4}},"g":{"d":"190,-203v19,5,11,40,-7,37v27,50,-9,103,-77,97v-25,3,-41,-14,-45,3v4,19,37,17,55,22v49,15,80,18,80,61v0,37,-27,56,-88,56v-81,0,-113,-56,-71,-103v-19,-14,-23,-47,-2,-62v-33,-48,-12,-111,71,-111r84,0xm106,-105v31,0,40,-10,39,-31v0,-17,-8,-31,-39,-31v-32,1,-40,14,-39,34v0,13,6,28,39,28xm108,37v37,-2,41,-6,41,-23v0,-8,-5,-13,-43,-22r-32,-7v-15,23,-18,55,34,52","w":210},"h":{"d":"190,-8v0,15,-27,6,-41,8v-4,0,-7,-4,-7,-8r0,-118v5,-54,-40,-42,-71,-27r0,145v-2,14,-26,6,-40,8v-4,0,-8,-4,-8,-8r0,-259v3,-13,27,-5,41,-7v4,0,7,3,7,7r0,75v14,-8,28,-14,54,-14v92,1,65,114,65,198","w":213,"k":{"w":7,"v":7,"t":7,"y":7,"f":7}},"i":{"d":"73,-269v-2,13,6,37,-7,39v-15,-2,-39,6,-43,-7v2,-14,-6,-37,8,-39v14,2,39,-6,42,7xm72,-8v-2,14,-26,6,-40,8v-4,0,-8,-4,-8,-8r0,-188v3,-13,27,-5,41,-7v4,0,7,3,7,7r0,188","w":96},"j":{"d":"73,-269v-2,13,6,37,-7,39v-14,-2,-39,6,-42,-7v2,-13,-6,-37,7,-39v14,2,39,-6,42,7xm19,72v-10,0,-30,2,-31,-9v2,-11,-6,-29,8,-29v0,0,28,4,28,-19r0,-211v3,-13,27,-5,41,-7v4,0,7,3,7,7r0,211v0,44,-20,57,-53,57","w":96},"k":{"d":"186,-7v3,3,0,7,-4,7v-19,-2,-46,6,-55,-7r-56,-82r0,81v-2,14,-26,6,-40,8v-4,0,-8,-4,-8,-8r0,-259v3,-13,27,-5,41,-7v4,0,7,3,7,7r0,150r61,-82v11,-9,32,-2,49,-4v6,-1,6,4,4,8r-72,88","w":197,"k":{"q":13,"g":13,"d":12,"a":6,"e":14,"o":13,"u":10,"c":12}},"l":{"d":"73,-8v-2,15,-27,6,-41,8v-4,0,-7,-4,-7,-8r0,-259v2,-13,28,-5,41,-7v4,0,7,3,7,7r0,259","w":97},"m":{"d":"282,-8v-2,14,-26,6,-40,8v-4,0,-8,-4,-8,-8r0,-122v2,-46,-29,-39,-59,-26r1,148v-2,14,-26,6,-40,8v-4,0,-7,-4,-7,-8r0,-122v2,-47,-29,-39,-58,-23r0,145v-2,14,-26,6,-40,8v-4,0,-8,-4,-8,-8r0,-188v2,-13,26,-6,39,-7v7,-1,8,7,7,15v22,-20,77,-26,94,-1v18,-10,34,-17,59,-17v91,1,51,118,60,198","w":305,"k":{"v":7,"t":7,"y":5,"f":7}},"n":{"d":"190,-8v-2,15,-27,6,-41,8v-4,0,-7,-4,-7,-8r0,-117v7,-54,-41,-44,-71,-27r0,144v-2,14,-26,6,-40,8v-4,0,-8,-4,-8,-8r0,-188v2,-13,26,-6,39,-7v7,-1,8,7,7,15v21,-13,34,-18,58,-18v93,0,55,116,63,198","w":213,"k":{"y":9,"f":7,"t":7,"v":9,"w":9}},"o":{"d":"189,-116v0,70,-18,119,-86,119v-68,0,-86,-49,-86,-119v0,-51,29,-90,86,-90v57,0,86,39,86,90xm103,-38v35,0,39,-37,39,-78v0,-30,-14,-49,-39,-49v-35,0,-38,38,-38,78v0,30,13,49,38,49","w":206,"k":{"y":9,"f":7,"t":9,"v":9,"w":5,"x":14,"z":5}},"p":{"d":"192,-115v0,86,-35,132,-121,115r0,64v-2,13,-27,5,-40,7v-4,0,-8,-3,-8,-7r0,-250v0,-5,2,-8,10,-10v22,-6,49,-10,72,-10v58,0,87,35,87,91xm105,-36v41,1,40,-39,39,-79v0,-30,-8,-52,-39,-52v-13,0,-27,2,-34,3r0,125v10,1,25,3,34,3","w":207,"k":{"x":11,"w":4,"v":7,"t":7,"y":7,"f":7}},"q":{"d":"184,64v-2,13,-27,5,-40,7v-4,0,-7,-3,-7,-7r0,-64v-84,16,-121,-25,-121,-115v0,-56,28,-91,86,-91v23,0,51,4,73,10v8,2,9,5,9,10r0,250xm137,-39r0,-125v-7,-1,-22,-3,-35,-3v-41,-1,-38,40,-38,80v0,47,30,58,73,48","w":207},"r":{"d":"121,-206v12,4,11,41,0,41v-19,0,-35,5,-50,13r0,144v-2,14,-26,6,-40,8v-4,0,-8,-4,-8,-8r0,-188v2,-13,26,-6,39,-7v7,-1,8,7,7,15v18,-14,38,-18,52,-18","w":135,"k":{"q":6,"g":7,"d":6,"a":9,"e":7,"o":9,",":11,".":11,"c":5}},"s":{"d":"89,3v-21,0,-84,9,-71,-37v15,-19,93,18,94,-19v-18,-39,-96,-42,-96,-99v0,-61,88,-60,133,-46v9,2,11,35,-1,36v-14,2,-84,-18,-84,10v19,31,96,51,96,99v0,31,-24,56,-71,56","w":176,"k":{"t":4,"v":3}},"t":{"d":"137,-6v-2,10,-23,7,-32,9v-41,0,-57,-9,-57,-57r0,-113v-18,-5,-48,3,-41,-29v2,-13,28,-5,41,-7v2,-13,-6,-34,7,-37v13,1,35,-14,41,0r0,37v14,2,37,-6,40,7v-1,11,4,29,-7,29r-33,0r0,113v-4,28,14,20,33,20v14,0,6,18,8,28","w":145,"k":{"q":3,"o":4}},"u":{"d":"71,-78v-8,53,46,44,71,27r0,-144v2,-15,27,-6,41,-8v4,0,7,4,7,8r0,188v-2,13,-27,5,-41,7v-7,1,-8,-7,-7,-15v-51,37,-119,17,-119,-63r0,-117v2,-14,27,-6,41,-8v4,0,7,4,7,8r0,117","w":213},"v":{"d":"148,-203v14,2,44,-6,41,8r-45,164v-15,48,-77,48,-90,0r-45,-166v3,-13,28,-3,41,-6v3,0,7,2,8,7r34,151v2,13,12,12,14,0r34,-151v1,-5,5,-7,8,-7","w":198,"k":{"q":9,"g":12,"d":7,".":18,"a":8,"e":7,"o":9,",":20}},"w":{"d":"243,-203v14,2,41,-7,42,8r-32,166v1,43,-66,39,-76,2r-30,-112r-29,112v-6,22,-18,28,-44,28v-22,0,-28,-8,-32,-30r-33,-167v3,-14,28,-4,42,-7v4,0,7,3,7,6r24,158v14,-37,22,-85,32,-126v6,-23,24,-14,46,-16v12,0,16,2,20,16r32,126v12,-49,16,-107,25,-158v0,-3,2,-6,6,-6","w":294,"k":{"a":5,"e":7,"o":5,",":10,".":17,"c":5}},"x":{"d":"193,-7v-2,15,-32,4,-46,7v-4,0,-6,-1,-10,-7r-41,-64r-39,64v-7,15,-30,4,-47,7v-4,0,-5,-4,-3,-7r65,-98r-62,-93v8,-9,48,-11,56,2r37,56r33,-56v8,-14,30,-4,47,-7v5,0,7,5,3,7r-59,91","w":200,"k":{"w":13,"t":9,"q":18,"g":14,"d":15,"e":16,"o":14,"u":13,"c":11}},"y":{"d":"95,-50v2,8,2,8,8,8r39,-155v5,-12,30,-4,44,-6v5,0,9,5,6,8r-60,210v-11,39,-24,57,-73,57v-17,0,-40,0,-46,-11v2,-11,-5,-30,8,-29v35,2,70,11,72,-32v-18,0,-28,1,-37,-30r-47,-167v4,-11,42,-10,50,0","w":201,"k":{"a":9,"e":7,"o":9,",":20,".":23,"c":10,"d":7,"g":10,"q":7}},"z":{"d":"162,-36v-2,12,6,36,-7,36r-126,0v-18,1,-19,-30,-10,-41r88,-122v-22,-6,-57,-2,-83,-2v-13,0,-5,-20,-7,-31v0,-4,3,-7,7,-7r123,0v18,0,16,29,12,44r-84,115v22,6,56,0,81,2v4,0,6,2,6,6","w":176,"k":{"e":9,"o":5,"d":3}},"{":{"d":"104,33v27,-11,31,33,16,38v-57,2,-85,-6,-85,-60v0,-40,8,-81,-22,-95r0,-29v29,-15,21,-55,21,-94v0,-54,28,-62,86,-60v13,0,5,21,7,32v-6,16,-53,-6,-45,28v-1,47,8,92,-28,109v37,17,28,61,29,109v0,17,3,22,21,22","w":130,"k":{"j":-12,"A":20}},"|":{"d":"73,63v-2,14,-28,4,-41,7v-4,0,-7,-3,-7,-7r0,-323v3,-14,28,-4,42,-7v4,0,6,3,6,7r0,323","w":98},"}":{"d":"117,-84v-30,15,-21,55,-21,95v0,55,-28,62,-86,60v-11,-1,-4,-21,-6,-32v5,-16,52,6,44,-28v1,-47,-8,-92,28,-109v-36,-18,-28,-61,-28,-109v0,-25,-16,-22,-38,-22v-12,0,-4,-21,-6,-32v0,-11,18,-4,27,-6v78,-7,64,50,65,114v0,19,6,30,21,40r0,29","w":130},"~":{"d":"199,-180v6,52,-35,72,-74,52v-15,-7,-27,-23,-45,-27v-19,-4,-6,29,-20,32v-15,-1,-37,7,-32,-17v-3,-48,39,-60,74,-43v15,7,28,24,46,27v19,4,6,-28,19,-32v12,2,31,-6,32,8"},"'":{"d":"36,-274v12,2,42,-6,38,7r-25,74v-2,13,-29,8,-39,4r19,-78v1,-5,3,-7,7,-7","w":79,"k":{",":18,".":18}},"`":{"d":"97,-232v1,3,2,6,-2,6v-13,-2,-32,4,-39,-4v-14,-17,-32,-30,-44,-48v12,-3,43,-7,51,3","w":149},"\u00a0":{"w":90}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 2004 Monotype Imaging, Inc. All Rights Reserved.
 * 
 * Trademark:
 * Neo Sans is a trademark of Monotype Imaging, Inc. and may be registered in
 * certain jurisdictions.
 * 
 * Full name:
 * NeoSansStd-Italic
 * 
 * Vendor URL:
 * http://www.monotypeimaging.com.
 * 
 * License information:
 * http://www.monotypeimaging.com/html/type/license.html.
 */
Cufon.registerFont({"w":217,"face":{"font-family":"Neo Sans Std","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 4 3 5 4 11 2 4","ascent":"275","descent":"-85","x-height":"3","bbox":"-23.1761 -307.291 330.785 76","underline-thickness":"20.52","underline-position":"-7.56","slope":"-12","stemh":"26","stemv":"22","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":98},"!":{"d":"69,-264v3,-11,35,-11,33,0r-36,187v-1,10,-27,11,-27,0xm31,-41v3,-11,32,-10,31,0v-5,19,1,49,-31,41v-14,-4,0,-29,0,-41","w":78},"\"":{"d":"144,-271v8,1,27,-5,22,7r-33,68v-3,10,-21,9,-28,4r30,-72v2,-5,5,-7,9,-7xm82,-271v8,1,28,-5,23,7r-33,68v-3,10,-21,9,-28,4v8,-25,20,-48,30,-72v2,-5,4,-7,8,-7","w":130,"k":{",":23,".":23}},"#":{"d":"212,-191v15,2,47,-9,38,15v-5,13,-28,5,-43,7r-20,73v15,2,48,-9,38,15v-5,13,-29,5,-44,7r-18,67v0,10,-25,11,-28,2r18,-69r-56,0r-17,67v0,9,-29,12,-29,0r18,-67v-14,-2,-45,9,-36,-15v5,-13,28,-5,42,-7r19,-73v-15,-2,-46,8,-36,-15v5,-12,27,-5,42,-7r18,-70v1,-8,28,-11,29,0r-18,70r55,0r19,-70v1,-8,27,-10,28,0xm179,-169r-56,0r-20,73r56,0","w":237},"$":{"d":"154,-307v9,1,24,-4,22,7r-5,30v26,5,67,-7,54,26v-1,4,-2,6,-7,6v-45,1,-122,-21,-122,38v0,40,118,72,107,120v0,46,-36,75,-80,81v-4,19,2,50,-31,41v-14,-4,1,-27,0,-39v-24,-1,-45,-1,-57,-10v3,-8,0,-23,11,-23v52,0,122,14,122,-46v0,-42,-105,-67,-105,-121v0,-46,35,-67,77,-72v4,-13,0,-36,14,-38"},"%":{"d":"189,-89v3,-77,111,-77,96,0v-9,45,-21,92,-64,92v-45,0,-44,-53,-32,-92xm260,-267v7,1,26,-5,18,6r-195,255v-5,10,-19,8,-30,5r198,-260v4,-5,5,-6,9,-6xm54,-212v3,-77,111,-77,96,0v-9,45,-21,92,-64,92v-45,0,-44,-53,-32,-92xm257,-56v4,-25,20,-71,-13,-71v-30,0,-41,53,-41,86v0,17,9,23,22,23v16,0,27,-12,32,-38xm122,-179v4,-25,20,-71,-13,-71v-30,0,-41,53,-41,87v0,17,9,22,22,22v16,0,27,-12,32,-38","w":285},"&":{"d":"215,-130v2,-10,30,-9,28,0v-6,32,-17,63,-39,88v9,13,20,24,28,39v-5,6,-28,4,-35,0r-14,-19v-40,36,-153,38,-153,-32v0,-39,24,-59,66,-83v-15,-20,-30,-41,-29,-65v0,-48,32,-68,78,-68v46,0,71,19,71,49v0,37,-36,64,-80,89r52,70v15,-20,22,-44,27,-68xm187,-221v0,-16,-10,-25,-42,-25v-62,0,-59,67,-24,94v30,-19,66,-29,66,-69xm169,-41r-58,-76v-26,15,-49,29,-49,62v0,49,84,36,107,14","w":244},"(":{"d":"149,-269v-73,92,-111,219,-62,341v-3,5,-23,6,-27,-1v-56,-105,-19,-259,58,-338v6,-7,22,-5,31,-2","w":109},")":{"d":"0,73v73,-91,112,-219,62,-340v2,-6,23,-7,27,0v56,105,19,259,-58,338v-6,7,-22,5,-31,2","w":109},"*":{"d":"181,-231v6,2,12,18,3,21r-45,14v9,17,44,41,16,55v-15,-10,-21,-29,-33,-42v-12,13,-18,32,-33,42v-5,-4,-18,-8,-12,-17r28,-38v-16,-9,-60,-5,-46,-32v14,-7,36,10,53,12r-1,-47v-1,-8,8,-7,16,-7v13,7,2,37,5,54","w":167},"+":{"d":"207,-154v10,0,13,26,0,26r-62,0r0,62v1,10,-12,6,-20,7v-4,0,-5,-3,-5,-7r0,-62r-62,0v-10,1,-7,-11,-7,-20v0,-4,3,-6,7,-6r62,0r0,-62v-1,-10,12,-6,20,-7v4,0,5,3,5,7r0,62r62,0","w":214},",":{"d":"44,-46v8,1,29,-4,23,6r-39,68v-3,10,-20,9,-27,4r34,-72v2,-5,5,-6,9,-6","w":77,"k":{"\"":23,"'":23}},"-":{"d":"117,-119v10,2,5,27,-5,27r-72,0v-8,-2,-6,-26,5,-27r72,0","w":119},".":{"d":"30,-41v3,-11,32,-10,31,0v-5,18,1,50,-31,41v-14,-4,0,-28,0,-41","w":77,"k":{"\"":23,"'":23}},"\/":{"d":"144,-267v9,1,26,-3,21,7r-125,253v-2,10,-25,10,-31,3r127,-256v2,-4,4,-7,8,-7","w":127,"k":{"\/":12}},"0":{"d":"157,-270v79,0,75,90,60,161v-18,81,-51,112,-108,112v-77,0,-77,-89,-61,-161v18,-81,53,-112,109,-112xm184,-109v9,-49,29,-133,-32,-133v-57,0,-80,95,-82,167v0,37,15,50,43,50v32,0,61,-25,71,-84"},"1":{"d":"180,0r-148,0v-11,0,-3,-14,-3,-22v10,-14,45,-3,65,-6r37,-206r-61,24v-3,1,-8,2,-7,-3v3,-8,0,-20,7,-23v32,-10,54,-29,93,-31v4,0,6,2,5,6r-41,233r58,0v11,0,3,14,3,22v-1,4,-4,6,-8,6"},"2":{"d":"227,-216v0,90,-164,101,-163,188r120,0v10,0,4,14,4,22v-1,4,-5,6,-9,6r-143,0v-14,-4,0,-25,0,-36v0,-59,63,-93,112,-121v28,-17,47,-29,47,-59v0,-38,-76,-26,-113,-21v-10,2,-5,-12,-4,-19v38,-27,149,-22,149,40"},"3":{"d":"224,-216v0,32,-16,63,-46,77v19,10,24,29,24,46v0,90,-86,109,-164,88v-10,-1,-4,-12,-3,-19v1,-4,2,-7,8,-6v64,12,129,8,126,-62v0,-17,-8,-34,-35,-34r-65,0v-10,1,-4,-12,-4,-19v1,-4,2,-7,8,-7r66,0v35,0,51,-27,51,-59v0,-46,-72,-31,-112,-26v-8,-2,-6,-26,6,-26v52,-14,140,-11,140,47"},"4":{"d":"184,-99v20,0,47,-5,34,21v-3,14,-25,4,-39,7r-11,64v-1,12,-18,6,-29,7v-4,0,-5,-2,-4,-7r11,-64r-104,0v-23,1,-11,-31,-3,-41r132,-150v5,-7,21,-4,33,-5v7,0,9,2,8,7xm151,-99r20,-120v-38,37,-72,78,-106,119v26,3,58,0,86,1"},"5":{"d":"97,-267r124,0v13,0,2,14,3,21v-1,4,-3,6,-8,6r-103,0r-20,78v65,-3,113,13,113,62v0,91,-86,118,-170,96v-10,-1,-5,-12,-4,-20v1,-4,4,-7,9,-6v69,15,135,2,132,-68v7,-43,-62,-37,-110,-37v-5,0,-6,-3,-5,-6r31,-120v1,-4,4,-6,8,-6"},"6":{"d":"47,-163v18,-105,87,-117,174,-101v11,1,5,13,4,21v-1,6,-3,7,-9,6v-18,-4,-38,-6,-61,-6v-54,-1,-67,36,-76,84v51,-14,132,-10,132,53v0,64,-40,109,-106,109v-87,0,-70,-96,-58,-166xm178,-104v0,-51,-67,-35,-103,-30v-11,39,-23,110,35,110v45,0,68,-39,68,-80"},"7":{"d":"199,-267v36,-3,43,22,30,42r-142,220v-6,9,-20,3,-32,5v-6,-1,-4,-5,-2,-9r149,-229v-38,-3,-84,0,-124,-1v-11,0,-4,-15,-3,-22v1,-4,2,-6,8,-6r116,0","k":{"\/":36}},"8":{"d":"234,-214v0,31,-17,61,-46,74v17,10,25,29,25,48v0,63,-43,96,-106,95v-42,0,-75,-24,-75,-64v0,-33,17,-64,47,-79v-17,-9,-25,-25,-25,-44v0,-60,48,-87,104,-86v44,0,76,19,76,56xm202,-208v1,-26,-19,-36,-52,-35v-34,0,-64,21,-64,57v0,26,27,33,61,33v33,0,55,-23,55,-55xm181,-90v0,-26,-25,-37,-61,-37v-37,0,-55,31,-55,64v0,28,18,39,50,38v41,0,66,-25,66,-65"},"9":{"d":"156,-270v87,0,70,95,58,165v-18,105,-87,117,-174,101v-12,-2,-5,-12,-4,-20v1,-6,3,-8,9,-7v19,4,38,6,61,6v54,1,67,-36,76,-84v-51,14,-132,10,-132,-53v0,-64,40,-108,106,-108xm186,-134v12,-43,22,-109,-35,-109v-45,0,-68,38,-68,79v0,51,67,37,103,30"},":":{"d":"57,-191v3,-11,32,-11,32,0v-5,19,2,49,-31,41v-15,-4,-1,-28,-1,-41xm31,-41v3,-11,33,-10,31,0v-4,19,1,50,-31,41v-14,-4,0,-28,0,-41","w":78},";":{"d":"57,-191v3,-11,32,-11,32,0v-5,19,1,49,-32,41v-14,-3,0,-29,0,-41xm40,-46v8,1,29,-4,23,7r-39,68v-3,10,-20,9,-27,4r34,-72v2,-5,5,-7,9,-7","w":78},"<":{"d":"189,-60v5,3,6,9,-1,10v-13,-1,-24,2,-32,-5r-87,-74v-8,-8,-8,-16,0,-24r87,-73v7,-8,27,-7,37,-2v0,2,-1,5,-4,7r-94,80","w":214},"=":{"d":"205,-194v12,0,10,26,0,26r-138,0v-10,1,-8,-11,-8,-20v0,-4,4,-6,8,-6r138,0xm205,-114v12,0,10,26,0,26r-138,0v-10,1,-8,-11,-8,-20v0,-4,4,-6,8,-6r138,0","w":214},">":{"d":"203,-153v9,8,9,16,0,24r-87,74v-7,9,-19,4,-32,5v-6,-1,-5,-7,0,-10r94,-81r-94,-80v-4,-3,-7,-10,0,-10v13,0,24,-2,32,5","w":214},"?":{"d":"76,-70v-9,-1,-23,4,-21,-7v-4,-67,85,-86,88,-145v2,-30,-57,-18,-84,-16v-8,-4,-4,-26,6,-27v45,-10,113,-9,113,39v0,69,-91,81,-93,149v-1,4,-5,7,-9,7xm55,-48v9,1,26,-3,23,8v-4,19,1,47,-31,40v-12,-7,-3,-43,8,-48","w":160},"@":{"d":"162,-175v25,0,48,-3,52,14r-23,113v49,-8,62,-54,62,-97v0,-47,-30,-70,-81,-70v-94,0,-121,78,-128,169v-4,63,71,71,135,63v3,1,6,20,-4,19v-79,14,-175,-13,-152,-105r11,-56v14,-73,64,-111,142,-111v59,0,101,36,101,92v0,94,-51,125,-138,125v-66,0,-62,-50,-49,-99v12,-43,32,-57,72,-57xm180,-147v-31,-5,-55,-1,-60,30v-5,28,-26,82,27,72v5,0,9,0,14,-1","w":276},"A":{"d":"219,-8v1,12,-17,7,-28,8v-3,0,-5,-2,-5,-5r-9,-83r-93,0r-38,83v-2,8,-36,9,-34,-3r108,-235v10,-22,26,-27,42,-27v15,0,28,5,31,27xm175,-117r-12,-118v0,-10,-12,-8,-14,0r-54,118r80,0","w":227,"k":{"O":9,"Q":9,"a":4,"e":4,"o":4,"u":4,"y":19,"C":8,"G":8,"L":6,"S":6,"T":32,"U":9,"V":25,"W":12,"Y":31,"c":4,"d":4,"f":16,"g":4,"q":4,"t":16,"v":19,"w":14}},"B":{"d":"219,-91v-1,92,-93,103,-179,90v-9,-1,-10,-5,-9,-13r42,-240v7,-23,38,-16,71,-16v55,0,97,15,94,63v-2,37,-21,60,-50,69v19,8,31,26,31,47xm88,-152v61,3,125,-1,117,-58v5,-38,-61,-32,-101,-31xm66,-27v62,6,122,1,120,-63v7,-38,-59,-39,-102,-36","w":221,"k":{"T":12,"Y":12,"A":7}},"C":{"d":"50,-159v25,-117,85,-117,174,-105v11,1,1,16,1,23v-11,10,-42,1,-66,1v-35,0,-64,21,-77,81v-11,48,-24,132,40,132v21,0,47,-2,60,-3v13,-1,2,14,3,21v-1,4,-2,6,-8,7v-61,12,-140,10,-139,-78v1,-27,7,-54,12,-79","w":196,"k":{"O":10,"Q":10,"o":4,"y":8,"C":6,"G":10}},"D":{"d":"149,-270v65,-4,101,42,89,112r-8,49v-14,103,-95,123,-194,108v-6,-1,-7,-4,-6,-9r43,-247v9,-19,41,-11,76,-13xm205,-158v17,-69,-32,-95,-101,-83r-38,215v70,4,116,-5,131,-83","w":230,"k":{"T":13,"V":7,"W":4,"Y":11,"A":8,"X":11,"Z":8}},"E":{"d":"183,-23v3,38,-44,24,-79,26v-46,3,-71,-24,-64,-67r24,-139v9,-53,38,-67,88,-67v41,0,60,1,70,3v6,2,2,27,-5,27v-50,3,-113,-12,-121,37r-8,50r110,0v10,0,4,13,4,21v-1,4,-3,7,-9,7r-110,0v0,37,-42,102,27,98r68,0v4,0,6,0,5,4","w":198},"F":{"d":"217,-240v-50,2,-113,-12,-121,37r-8,50r110,0v10,-1,4,14,4,21v-1,4,-3,7,-9,7r-110,0r-21,118v0,10,-16,6,-26,7v-5,0,-7,-3,-6,-7r34,-196v9,-54,38,-67,88,-67v39,0,55,1,68,3v12,2,1,14,2,22v0,3,-2,5,-5,5","w":198,"k":{"O":4,"o":10,",":33,".":33,"A":22}},"G":{"d":"49,-158v22,-121,95,-118,184,-107v11,1,1,16,1,23v0,4,-2,4,-6,4v-76,-4,-130,-16,-147,80r-11,77v-4,60,52,56,95,52r18,-103v0,-10,32,-12,33,0r-22,121v-1,4,-4,7,-8,8v-64,12,-148,14,-148,-79v0,-26,7,-52,11,-76","w":220,"k":{"V":5}},"H":{"d":"230,-260v-1,-10,17,-6,27,-7v4,0,6,2,5,7r-44,253v-2,10,-16,6,-27,7v-4,0,-7,-3,-6,-7r21,-120r-123,0r-21,120v0,10,-17,6,-27,7v-4,0,-6,-3,-5,-7r44,-253v0,-10,17,-6,27,-7v4,0,7,2,6,7r-19,104r123,0","w":244},"I":{"d":"78,-261v1,-10,17,-5,27,-6v5,0,7,1,6,6r-45,254v-1,12,-17,6,-28,7v-5,0,-6,-3,-5,-7","w":96},"J":{"d":"78,-261v1,-10,17,-5,27,-6v4,0,7,1,6,6r-49,274v-4,40,-39,59,-82,49v-9,-10,2,-30,22,-23v19,0,24,-8,27,-26","w":92},"K":{"d":"208,-264v10,-5,44,-7,39,4r-133,122r87,134v-4,7,-30,6,-38,0r-79,-124r-22,121v0,10,-17,6,-27,7v-4,0,-6,-3,-5,-7r44,-254v1,-10,17,-5,27,-6v4,0,7,1,6,6r-20,113","w":218,"k":{"w":18,"v":21,"t":10,"q":13,"d":16,"V":4,"T":5,"Q":17,"G":25,"-":14,"O":17,"e":16,"o":13,"u":15,"y":20,"C":25,"L":6,"U":6,"c":16,"f":5,"E":13}},"L":{"d":"177,-27v6,1,8,24,-2,26v-10,2,-37,4,-71,4v-44,0,-73,-21,-64,-72r34,-191v0,-10,17,-6,27,-7v4,0,7,3,6,7r-36,211v-3,34,72,19,106,22","w":185,"k":{"O":16,"Q":16,"e":8,"o":9,"y":19,"C":12,"G":14,"S":6,"T":36,"U":14,"V":33,"W":13,"Y":37,"v":18,"w":10,"E":7,"-":14}},"M":{"d":"246,-261v5,-11,23,-4,37,-6v6,0,10,3,9,10r-44,250v0,10,-17,6,-27,7v-4,0,-6,-3,-5,-7r36,-214r-70,107v-6,14,-44,16,-49,0r-33,-108r-38,215v-1,10,-17,6,-27,7v-4,0,-6,-3,-5,-7r43,-250v-1,-14,41,-16,45,-4r38,123v2,6,6,5,9,0","w":273,"k":{"V":6,"Y":13}},"N":{"d":"231,-261r-38,212r-76,-211v-2,-11,-41,-12,-44,3r-44,253v1,5,29,9,32,-3r38,-211r76,212v2,10,41,11,44,-4r44,-252v-1,-8,-30,-9,-32,1","w":244,"k":{"T":12,"V":8,"Y":6}},"O":{"d":"167,-270v79,0,87,84,69,159v-19,79,-56,114,-117,114v-56,0,-93,-47,-78,-114r8,-46v15,-85,61,-113,118,-113xm203,-111v11,-53,25,-136,-41,-129v-64,-7,-88,82,-90,157v0,41,19,56,52,56v39,0,67,-26,79,-84","w":237,"k":{"T":16,"V":8,"W":4,"Y":14,"A":9,"X":16,"Z":13}},"P":{"d":"84,-267v75,-11,164,-1,146,80v-17,76,-74,83,-150,79r-18,101v0,10,-17,6,-27,7v-4,0,-6,-3,-5,-7r43,-251v1,-5,6,-8,11,-9xm198,-187v15,-55,-42,-58,-95,-54r-19,106v57,6,113,-5,114,-52","w":213,"k":{"a":8,"e":6,"o":6,",":39,".":39,"A":22,"Z":12}},"Q":{"d":"167,-270v79,0,87,84,69,159v-18,72,-49,108,-102,113v-1,17,-12,38,16,36v16,-1,35,-3,26,18v-14,16,-89,13,-78,-24r5,-31v-67,-3,-70,-90,-54,-158v20,-84,61,-113,118,-113xm203,-111v11,-53,25,-136,-41,-129v-64,-7,-88,82,-90,157v0,41,19,56,52,56v39,0,67,-26,79,-84","w":237,"k":{"X":16,"W":4,"V":8,"T":16,"Y":14,"A":9,"Z":13}},"R":{"d":"236,-206v0,50,-29,82,-71,89r47,113v-4,7,-32,8,-36,-1r-45,-107r-51,-1r-18,106v-1,10,-16,6,-27,7v-4,0,-6,-2,-5,-7r44,-252v8,-17,53,-11,74,-11v52,0,88,19,88,64xm202,-190v15,-53,-47,-52,-99,-49r-18,98v51,3,114,1,117,-49","w":225,"k":{"g":5,"W":3,"V":12,"T":15,"Q":7,"G":7,"O":7,"e":8,"o":9,"y":7,"C":7,"Y":15,"c":5}},"S":{"d":"54,-202v0,-74,93,-73,159,-64v12,1,3,14,3,22v-1,4,-2,6,-8,6v-43,0,-122,-18,-122,34v0,48,118,71,107,129v4,72,-89,88,-161,72v-10,-2,-4,-12,-4,-20v1,-5,3,-7,9,-6v52,4,126,9,122,-46v-4,-48,-105,-64,-105,-127","w":198,"k":{"y":6,"V":9,"W":5,"Y":8,"t":14,"v":8,"A":6,"x":5}},"T":{"d":"165,-239r-41,232v-2,11,-17,6,-28,7v-4,0,-6,-3,-5,-7r41,-232r-70,0v-11,1,-3,-15,-3,-22v1,-5,4,-6,8,-6r173,0v11,-1,3,15,3,22v-1,4,-2,6,-8,6r-70,0","w":212,"k":{"x":14,"w":12,"v":12,"t":12,"r":17,"q":29,"p":14,"n":14,"m":14,"g":23,"d":30,"Q":16,"G":11,"F":6,"O":16,"a":31,"e":29,"o":32,"u":15,"y":23,",":27,".":27,"C":14,"c":28,"A":32,"E":10,"s":28,"z":13}},"U":{"d":"224,-261v1,-10,18,-5,28,-6v4,0,6,1,5,6r-28,164v-13,71,-48,100,-110,100v-57,0,-86,-39,-75,-100r29,-164v1,-10,17,-5,27,-6v4,0,7,1,6,6r-29,164v-7,41,1,71,47,71v45,0,63,-25,71,-71","w":238,"k":{"A":9}},"V":{"d":"231,-262v2,-9,19,-4,29,-5v5,0,8,2,5,8r-108,234v-10,23,-27,28,-41,28v-13,0,-29,-5,-32,-28r-26,-234v-1,-14,17,-6,28,-8v5,0,5,2,5,5r23,229v1,12,12,9,14,0","w":231,"k":{"x":14,"w":9,"v":9,"r":12,"q":18,"p":9,"n":9,"m":9,"g":17,"Q":8,"G":8,"O":8,"a":19,"e":18,"o":18,"u":13,"y":12,",":27,".":27,"C":9,"S":8,"c":17,"A":25,"E":9,"s":18,"z":10}},"W":{"d":"297,-261v3,-10,18,-5,29,-6v4,0,6,2,4,7r-82,243v-5,26,-56,27,-59,0r-13,-136v-1,0,-3,0,-4,3r-59,133v-7,16,-17,20,-38,18v-12,0,-20,-3,-20,-18r3,-243v0,-11,18,-6,28,-7v4,0,5,2,5,6r-4,234r62,-138v6,-18,22,-15,43,-15v9,0,13,5,14,15r13,138v29,-74,52,-157,78,-234","w":297,"k":{"Q":5,"G":4,"O":5,"a":9,"e":11,"o":13,"C":4,"A":16}},"X":{"d":"228,-264v8,-6,37,-6,29,5r-100,124r59,129v0,9,-27,9,-31,1r-49,-104r-83,104v-6,9,-19,3,-31,5v-7,1,-5,-6,-3,-9r104,-128r-57,-124v0,-9,24,-8,30,-3r48,102","w":232,"k":{"v":15,"Q":16,"G":13,"O":16,"e":10,"o":12,"u":12,"y":13,"C":13}},"Y":{"d":"217,-267v10,1,33,-4,25,9r-78,125v-9,14,-17,21,-24,24r-18,102v0,10,-17,6,-27,7v-5,0,-6,-3,-5,-7r18,-102v-6,-3,-12,-10,-16,-24r-33,-125v-4,-13,16,-8,27,-9v4,0,5,2,6,5r29,116v6,15,9,13,17,0r70,-116v2,-4,4,-5,9,-5","w":209,"k":{"O":14,"Q":14,"a":31,"e":34,"o":35,"u":26,"y":19,",":33,".":33,"C":16,"G":16,"S":8,"c":33,"d":33,"f":13,"g":33,"q":35,"t":13,"v":21,"w":20,"A":31,"E":10,"-":28,"x":19,"s":26,"z":25,"m":17,"n":17,"p":27,"r":27,"\/":33}},"Z":{"d":"198,-267v44,1,41,30,20,55r-156,180v38,6,90,0,132,2v13,1,2,16,3,24v-1,4,-1,6,-8,6r-124,0v-40,2,-44,-32,-25,-54r153,-177v3,-4,4,-6,-1,-7r-117,0v-12,1,-4,-15,-4,-23v1,-4,3,-6,9,-6r118,0","w":214},"[":{"d":"149,-267v10,0,4,12,4,19v-6,14,-33,4,-50,7r-50,285v18,3,56,-11,45,19v-11,16,-52,3,-75,7v-3,0,-5,-3,-5,-7r57,-324v1,-4,3,-6,7,-6r67,0","w":117},"\\":{"d":"120,-14v6,18,-11,14,-24,14v-4,0,-5,-3,-5,-7r-37,-254v0,-9,16,-5,25,-6v4,0,5,3,5,7","w":127},"]":{"d":"130,-267v3,0,5,2,5,6r-57,324v-1,4,-3,7,-7,7r-67,0v-11,0,-6,-12,-4,-19v5,-14,33,-4,49,-7r50,-285r-41,0v-10,-2,-6,-27,5,-26r67,0","w":117},"^":{"d":"207,-210v2,3,2,7,-3,7v-41,6,-47,-31,-69,-49v-20,17,-32,61,-72,46v11,-22,29,-38,42,-58v9,-12,32,-3,49,-6v5,0,7,1,11,6","w":214},"_":{"d":"179,18v9,-1,5,9,4,14v-1,4,-4,6,-8,6r-185,0v-9,0,-7,-9,-5,-15v1,-4,4,-5,8,-5r186,0","w":177},"a":{"d":"35,-118v16,-87,84,-93,157,-74v6,1,7,3,6,8r-31,177v0,9,-14,7,-23,7v-10,0,-3,-13,-3,-19v-48,46,-130,19,-112,-64xm164,-170v-49,-12,-91,4,-98,55v-5,33,-16,91,24,91v17,0,32,-8,52,-21","w":189,"k":{"y":8,"f":7,"t":9,"v":11}},"b":{"d":"91,-197v83,-22,129,31,101,111v-9,83,-77,102,-159,82v-7,-1,-7,-3,-6,-8r44,-252v0,-10,16,-6,26,-7v4,0,7,1,6,7xm160,-86v6,-37,19,-87,-31,-87v-12,0,-31,1,-43,3r-25,143v57,9,90,-5,99,-59","w":194,"k":{"f":7,"t":11,"x":8}},"c":{"d":"169,-170v-75,-20,-106,30,-106,107v0,46,45,39,81,35v12,-2,5,11,5,19v-6,15,-34,11,-55,12v-61,3,-68,-61,-56,-116v16,-74,63,-98,136,-84v12,2,4,18,4,21v-1,4,-3,7,-9,6","w":162,"k":{"o":13}},"d":{"d":"185,-264v2,-11,16,-6,27,-7v4,0,6,2,5,7r-45,252v-1,5,-3,7,-9,8v-23,4,-45,7,-67,7v-64,2,-70,-59,-58,-115v17,-77,59,-99,135,-85xm168,-170v-78,-20,-102,34,-106,107v-2,41,42,41,81,36","w":194},"e":{"d":"134,-201v60,0,75,51,61,104v-1,5,-3,8,-8,8r-121,0v-8,35,1,65,41,65v21,0,46,-2,63,-5v10,-2,4,10,4,17v-1,5,-2,7,-8,8v-67,18,-146,7,-132,-82v10,-64,39,-115,100,-115xm166,-113v6,-34,-2,-60,-37,-60v-32,0,-52,27,-59,60r96,0","w":195,"k":{"y":7,"T":33,"f":7,"t":11,"v":7,"w":2,"x":10}},"f":{"d":"161,-249v-26,0,-41,-4,-45,25r-4,26r38,0v10,-1,4,12,4,19v-5,12,-32,3,-47,6r-32,182v-10,51,-38,53,-80,48v-11,-1,-4,-10,-4,-18v12,-14,47,7,53,-30r32,-182v-17,-3,-48,6,-38,-19v4,-12,28,-4,42,-6v5,-54,28,-89,85,-74v10,3,3,11,3,18v-1,4,-2,5,-7,5","w":133,"k":{"q":7,"g":8,"d":4,"e":9,"o":8,",":20,".":20,"c":8,"s":5}},"g":{"d":"98,3v-60,0,-79,-60,-60,-115v11,-91,82,-100,159,-80v7,1,7,3,6,8r-33,184v-10,56,-33,71,-85,71v-27,0,-51,-5,-61,-7v-11,-2,-3,-11,-3,-18v1,-5,2,-6,8,-5v45,4,113,17,110,-44v-9,2,-30,6,-41,6xm168,-170v-51,-11,-90,0,-99,58v-6,38,-19,88,34,88v10,0,29,-1,41,-4","w":194},"h":{"d":"91,-195v58,-18,119,7,108,67r-22,121v0,10,-15,6,-25,7v-4,0,-7,-2,-6,-7r22,-136v5,-38,-53,-33,-82,-25r-28,161v0,10,-16,7,-26,7v-6,0,-7,-3,-6,-7r45,-257v0,-10,16,-6,26,-7v4,0,7,2,6,7","w":200,"k":{"t":7,"y":7,"f":7}},"i":{"d":"75,-266v1,-10,16,-6,27,-7v14,3,1,25,1,36v0,11,-17,6,-27,7v-14,-3,0,-25,-1,-36xm62,-191v2,-12,15,-6,26,-7v4,0,7,1,6,7r-32,184v-1,10,-16,7,-26,7v-5,0,-7,-3,-6,-7","w":88},"j":{"d":"75,-266v1,-10,16,-6,27,-7v14,3,1,25,1,36v0,11,-17,6,-27,7v-14,-3,0,-25,-1,-36xm24,23r38,-214v2,-12,15,-6,26,-7v4,0,7,1,6,7r-38,214v-7,44,-34,52,-73,46v-10,-2,-2,-12,-3,-19v10,-14,46,8,44,-27","w":88},"k":{"d":"167,-198v9,1,38,-2,27,8r-93,86r66,99v-3,8,-29,9,-35,0r-59,-89r-15,87v-1,11,-16,6,-26,7v-4,0,-7,-3,-6,-7r45,-257v2,-10,15,-7,26,-7v4,0,7,2,6,7r-26,147r82,-78v3,-3,4,-3,8,-3","w":178,"k":{"q":14,"g":14,"d":14,"a":13,"e":14,"o":14,"u":11,"c":14}},"l":{"d":"75,-264v0,-11,16,-6,26,-7v4,0,6,2,5,7r-45,257v0,10,-16,6,-26,7v-4,0,-6,-3,-5,-7","w":87},"m":{"d":"176,-184v51,-35,122,-16,110,51r-22,126v-2,10,-15,6,-26,7v-4,0,-6,-3,-5,-7r23,-141v-1,-37,-44,-26,-72,-14v-1,57,-16,103,-23,155v-2,10,-16,6,-27,7v-4,0,-6,-4,-5,-7r25,-146v-2,-37,-56,-12,-70,-6r-26,152v-2,10,-16,6,-27,7v-4,0,-6,-3,-5,-7r32,-184v0,-10,16,-6,26,-7v10,0,4,13,4,14v28,-20,69,-25,88,0","w":286,"k":{"t":7,"y":5,"f":7}},"n":{"d":"146,-201v96,0,36,127,31,194v-1,10,-15,6,-25,7v-4,0,-7,-3,-6,-7r21,-119v3,-28,3,-47,-32,-47v-14,0,-28,3,-51,14r-26,152v-2,10,-16,6,-27,7v-4,0,-6,-4,-5,-7r32,-184v0,-9,14,-7,24,-7v10,-1,7,8,6,15v17,-10,34,-18,58,-18","w":200,"k":{"y":8,"f":7,"t":7,"v":8,"w":7}},"o":{"d":"133,-201v64,0,73,59,60,116v-13,54,-38,88,-95,88v-62,0,-74,-59,-60,-116v14,-57,41,-88,95,-88xm162,-85v7,-39,16,-88,-33,-88v-48,0,-65,56,-66,109v0,26,11,39,39,39v32,0,54,-25,60,-60","w":196,"k":{"y":8,"f":7,"t":11,"v":8,"w":6,"x":13,"z":6}},"p":{"d":"134,-201v64,-2,70,59,58,115v-16,76,-59,100,-135,85r-12,65v-1,10,-31,12,-32,0r44,-248v1,-5,3,-7,9,-8v20,-5,46,-9,68,-9xm160,-86v6,-36,19,-91,-31,-88v-15,0,-33,2,-43,4r-25,142v54,13,90,-3,99,-58","w":194,"k":{"x":11,"w":5,"t":11,"y":7,"f":7}},"q":{"d":"38,-112v7,-85,82,-102,159,-80v7,1,7,3,6,8r-44,248v-2,10,-15,6,-26,7v-4,0,-7,-3,-6,-7r12,-65v-79,22,-130,-29,-101,-111xm168,-170v-74,-23,-106,34,-106,110v0,43,47,38,82,32","w":194},"r":{"d":"84,-158r-26,151v-2,10,-16,6,-27,7v-4,0,-6,-3,-5,-7r32,-184v2,-10,15,-6,25,-7v8,0,6,9,4,15v20,-15,36,-18,54,-18v13,0,4,14,4,22v-1,4,-4,6,-10,6v-21,0,-33,4,-51,15","w":123,"k":{"q":10,"g":9,"d":10,"a":10,"e":9,"o":9,",":11,".":11,"c":9}},"s":{"d":"44,-148v0,-59,82,-56,127,-48v10,2,4,12,4,19v-14,20,-95,-20,-99,29v9,35,86,50,83,93v-5,62,-76,65,-133,52v-10,-1,-5,-12,-4,-20v1,-5,3,-6,9,-5v40,3,93,16,96,-27v-7,-34,-83,-47,-83,-93","w":167,"k":{"y":4,"f":4,"t":5,"v":5}},"t":{"d":"114,-198r39,0v9,0,4,13,3,19v-3,17,-31,5,-47,8r-23,136v-2,18,23,12,38,12v10,0,3,12,3,18v-24,20,-81,8,-72,-41r22,-125v-16,-4,-48,4,-38,-21v5,-13,29,-3,43,-6v4,-22,2,-48,33,-45v5,-1,6,2,5,6","w":135,"k":{"q":5,"g":4,"d":4,"o":5,"c":4}},"u":{"d":"178,-191v0,-10,16,-6,26,-7v5,0,7,4,6,7r-33,184v-2,10,-15,6,-25,7v-7,0,-5,-8,-4,-14v-53,35,-124,17,-110,-62r20,-115v2,-11,15,-6,26,-7v4,0,7,2,6,7r-23,139v0,41,56,27,84,13","w":200},"v":{"d":"186,-198v10,1,30,-4,24,9r-75,163v-10,23,-26,29,-40,29v-14,0,-27,-6,-30,-29r-17,-163v-2,-13,14,-8,25,-9v3,0,6,2,6,7r12,156v2,17,11,14,18,0r68,-156v2,-5,4,-7,9,-7","w":190,"k":{"q":8,".":17,"a":8,"e":7,"o":8,",":18}},"w":{"d":"270,-192v2,-9,17,-5,27,-6v4,0,9,2,6,9r-65,167v-9,32,-55,36,-59,-2v-4,-40,-4,-87,-12,-124v-21,39,-36,84,-55,124v-7,31,-58,41,-59,2r-6,-168v-1,-11,29,-13,32,-2r3,167v25,-42,42,-95,63,-141v6,-14,20,-11,37,-11v8,0,11,3,12,11r14,141v24,-52,40,-113,62,-167","w":282,"k":{"e":5,"o":6,"c":6}},"x":{"d":"188,-198v9,0,34,-3,23,9r-77,87r50,97v-2,8,-29,8,-34,0r-37,-72v-25,25,-44,55,-72,77v-9,0,-33,3,-24,-8r83,-95r-46,-90v3,-8,28,-8,33,0r34,67v23,-23,41,-52,67,-72","w":196,"k":{"q":13,"g":13,"d":13,"a":7,"e":13,"o":13,"c":10,"f":2}},"y":{"d":"187,-198v10,1,31,-4,25,9r-96,207v-19,49,-51,58,-105,50v-11,-2,-5,-11,-4,-19v2,-13,29,-1,41,-4v26,5,39,-21,47,-45v-17,0,-25,-2,-28,-28r-18,-161v-2,-15,15,-7,26,-9v4,0,5,3,5,6r15,156v1,10,3,8,11,8r73,-165v1,-4,3,-5,8,-5","w":192,"k":{"e":7,"o":8,",":13,"c":9,"g":9,"q":7}},"z":{"d":"149,-198v32,0,35,30,19,48r-115,121v26,6,65,0,95,2v11,1,4,13,4,20v-1,5,-3,7,-9,7v-48,-2,-150,16,-114,-46r117,-124v-27,-3,-63,0,-92,-1v-9,0,-5,-13,-4,-20v1,-6,5,-7,9,-7r90,0","w":167,"k":{"e":7,"o":6,"c":4,"d":5,"q":4}},"{":{"d":"132,-267v9,1,24,-3,23,7v4,36,-60,2,-56,42v-10,47,-7,99,-46,120v34,31,7,83,3,129v-1,16,23,13,39,13v13,11,0,32,-20,26v-82,3,-40,-74,-37,-129v0,-13,-4,-20,-15,-29r3,-21v62,-26,3,-172,106,-158","w":119},"|":{"d":"89,63v0,11,-16,6,-26,7v-4,0,-6,-3,-6,-7r0,-324v0,-10,16,-5,25,-6v4,0,7,2,7,6r0,324","w":89},"}":{"d":"131,-109r-4,21v-65,31,6,179,-122,158v-9,-1,-7,-26,4,-26v26,0,46,2,46,-24v11,-47,6,-98,46,-118v-36,-32,-5,-85,-3,-130v7,-26,-54,5,-42,-32v3,-10,15,-6,26,-7v82,-1,34,74,34,129v0,12,4,20,15,29","w":119},"~":{"d":"209,-178v9,48,-33,70,-66,46v-13,-8,-33,-29,-46,-32v-30,-4,3,43,-33,38v-7,0,-7,-9,-7,-17v0,-44,38,-58,67,-37v14,11,27,28,46,32v29,6,-5,-42,32,-37v4,0,7,3,7,7","w":214},"'":{"d":"82,-271v8,1,28,-5,23,7r-33,68v-3,10,-21,9,-28,4v8,-25,20,-48,30,-72v2,-5,4,-7,8,-7","w":69,"k":{",":23,".":23}},"`":{"d":"127,-230v2,10,-15,5,-23,6v-17,-14,-28,-36,-41,-54v8,-3,31,-6,37,3","w":133},"\u00a0":{"w":98}}});










function checkRequiredFields(parentForm){
	var valid = true;
	var badFieldLabels = new Array();
	var form = document.getElementById(parentForm);
	var emailPattern = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/;
	
	if(form.human_scan.value != ''){
		valid = false;
		badFieldLabels.push('You are not human.');
	} 

	if(form.last_name.value == '' || form.last_name.value == '*Name'){
		valid = false;
		badFieldLabels.push('Name');
	}
	
	if(form.email.value == '' || ! emailPattern.test(form.email.value)){
		valid = false;
		badFieldLabels.push('Email');
	}
	
	if(!valid){
		var errorMessage = 'The following fields cannot be blank: \n\n';
		for(var i=0;i<badFieldLabels.length;i++){
			errorMessage += badFieldLabels[i] + '\n';	
		}
		alert(errorMessage);
		return false;
	}
	else{
		if(form.company.value=='Company'){
			form.company.value='';
			}
		if(form.phone.value=='Phone'){
			form.phone.value='';
			}
		if(form.description.value=='Comments'){
			form.description.value='';
			}
			
		return true;
	}
}

function checkRequiredFieldsModal(parentForm){
	var valid = true;
	var badFieldLabels = new Array();
	var form = document.getElementById(parentForm);
	var emailPattern = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/;
	
	if(form.human_scan.value != ''){
		valid = false;
		badFieldLabels.push('You are not human.');
	} 

	if(form.last_name.value == '' || form.last_name.value == '*Name'){
		valid = false;
		badFieldLabels.push('Name');
	}
	
	if(form.email.value == '' || ! emailPattern.test(form.email.value)){
		valid = false;
		badFieldLabels.push('Email');
	}
	
	if(!valid){
		var errorMessage = 'The following fields cannot be blank: \n\n';
		for(var i=0;i<badFieldLabels.length;i++){
			errorMessage += badFieldLabels[i] + '\n';	
		}
		alert(errorMessage);
		return false;
	}
	else{
		if(form.company.value=='Company'){
			form.company.value='';
			}
		if(form.phone.value=='Phone'){
			form.phone.value='';
			}
		if(form.description.value=='Comments'){
			form.description.value='';
			}
			
		return true;
	}
}

function checkRequiredFieldsCP(parentForm){
	var valid = true;
	var badFieldLabels = new Array();
	var form = document.getElementById(parentForm);
	var emailPattern = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/;
	
	if(form.human_scan.value != ''){
		valid = false;
		badFieldLabels.push('You are not human.');
	} 

	if(form.last_name.value == '' || form.last_name.value == '*Name'){
		valid = false;
		badFieldLabels.push('Name');
	}
	
	if(form.email.value == '' || ! emailPattern.test(form.email.value)){
		valid = false;
		badFieldLabels.push('Email');
	}
	
	if(!valid){
		var errorMessage = 'The following fields cannot be blank: \n\n';
		for(var i=0;i<badFieldLabels.length;i++){
			errorMessage += badFieldLabels[i] + '\n';	
		}
		alert(errorMessage);
		return false;
	}
	else{
		if(form.company.value=='Company'){
			form.company.value='';
			}
		if(form.phone.value=='Phone'){
			form.phone.value='';
			}
		if(form.description.value=='Comments'){
			form.description.value='';
			}
			
		return true;
	}
}

function checkRequiredFieldsInline(parentForm){
	var valid = true;
	var badFieldLabels = new Array();
	var form = document.getElementById(parentForm);
	var emailPattern = /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}$/;
	
	if(form.human_scan.value != ''){
		valid = false;
		badFieldLabels.push('You are not human.');
	} 

	if(form.last_name.value == '' || form.last_name.value == '*Name'){
		valid = false;
		badFieldLabels.push('Name');
	}
	
	if(form.email.value == '' || ! emailPattern.test(form.email.value)){
		valid = false;
		badFieldLabels.push('Email');
	}
	
	if(!valid){
		var errorMessage = 'The following fields cannot be blank: \n\n';
		for(var i=0;i<badFieldLabels.length;i++){
			errorMessage += badFieldLabels[i] + '\n';	
		}
		alert(errorMessage);
		return false;
	}
	else{
		if(form.company.value=='Company'){
			form.company.value='';
			}
		if(form.phone.value=='Phone'){
			form.phone.value='';
			}
		if(form.description.value=='Comments'){
			form.description.value='';
			}
			
		return true;
	}
}


