/*!
 * Copyright (c) 2011 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */

var Cufon = (function() {

	var api = function() {
		return api.replace.apply(null, arguments);
	};

	var DOM = api.DOM = {

		ready: (function() {

			var complete = false, readyStatus = { loaded: 1, complete: 1 };

			var queue = [], perform = function() {
				if (complete) return;
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};

			// Gecko, Opera, WebKit r26101+

			if (document.addEventListener) {
				document.addEventListener('DOMContentLoaded', perform, false);
				window.addEventListener('pageshow', perform, false); // For cached Gecko pages
			}

			// Old WebKit, Internet Explorer

			if (!window.opera && document.readyState) (function() {
				readyStatus[document.readyState] ? perform() : setTimeout(arguments.callee, 10);
			})();

			// Internet Explorer

			if (document.readyState && document.createStyleSheet) (function() {
				try {
					document.body.doScroll('left');
					perform();
				}
				catch (e) {
					setTimeout(arguments.callee, 1);
				}
			})();

			addEvent(window, 'load', perform); // Fallback

			return function(listener) {
				if (!arguments.length) perform();
				else complete ? listener() : queue.push(listener);
			};

		})(),

		root: function() {
			return document.documentElement || document.body;
		},

		strict: (function() {
			var doctype;
			// no doctype (doesn't always catch it though.. IE I'm looking at you)
			if (document.compatMode == 'BackCompat') return false;
			// WebKit, Gecko, Opera, IE9+
			doctype = document.doctype;
			if (doctype) {
				return !/frameset|transitional/i.test(doctype.publicId);
			}
			// IE<9, firstChild is the doctype even if there's an XML declaration
			doctype = document.firstChild;
			if (doctype.nodeType != 8 || /^DOCTYPE.+(transitional|frameset)/i.test(doctype.data)) {
				return false;
			}
			return true;
		})()

	};

	var CSS = api.CSS = {

		Size: function(value, base) {

			this.value = parseFloat(value);
			this.unit = String(value).match(/[a-z%]*$/)[0] || 'px';

			this.convert = function(value) {
				return value / base * this.value;
			};

			this.convertFrom = function(value) {
				return value / this.value * base;
			};

			this.toString = function() {
				return this.value + this.unit;
			};

		},

		addClass: function(el, className) {
			var current = el.className;
			el.className = current + (current && ' ') + className;
			return el;
		},

		color: cached(function(value) {
			var parsed = {};
			parsed.color = value.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function($0, $1, $2) {
				parsed.opacity = parseFloat($2);
				return 'rgb(' + $1 + ')';
			});
			return parsed;
		}),

		// has no direct CSS equivalent.
		// @see http://msdn.microsoft.com/en-us/library/system.windows.fontstretches.aspx
		fontStretch: cached(function(value) {
			if (typeof value == 'number') return value;
			if (/%$/.test(value)) return parseFloat(value) / 100;
			return {
				'ultra-condensed': 0.5,
				'extra-condensed': 0.625,
				condensed: 0.75,
				'semi-condensed': 0.875,
				'semi-expanded': 1.125,
				expanded: 1.25,
				'extra-expanded': 1.5,
				'ultra-expanded': 2
			}[value] || 1;
		}),

		getStyle: function(el) {
			var view = document.defaultView;
			if (view && view.getComputedStyle) return new Style(view.getComputedStyle(el, null));
			if (el.currentStyle) return new Style(el.currentStyle);
			return new Style(el.style);
		},

		gradient: cached(function(value) {
			var gradient = {
				id: value,
				type: value.match(/^-([a-z]+)-gradient\(/)[1],
				stops: []
			}, colors = value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);
			for (var i = 0, l = colors.length, stop; i < l; ++i) {
				stop = colors[i].split('=', 2).reverse();
				gradient.stops.push([ stop[1] || i / (l - 1), stop[0] ]);
			}
			return gradient;
		}),

		quotedList: cached(function(value) {
			// doesn't work properly with empty quoted strings (""), but
			// it's not worth the extra code.
			var list = [], re = /\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g, match;
			while (match = re.exec(value)) list.push(match[3] || match[1]);
			return list;
		}),

		recognizesMedia: cached(function(media) {
			var el = document.createElement('style'), sheet, container, supported;
			el.type = 'text/css';
			el.media = media;
			try { // this is cached anyway
				el.appendChild(document.createTextNode('/**/'));
			} catch (e) {}
			container = elementsByTagName('head')[0];
			container.insertBefore(el, container.firstChild);
			sheet = (el.sheet || el.styleSheet);
			supported = sheet && !sheet.disabled;
			container.removeChild(el);
			return supported;
		}),

		removeClass: function(el, className) {
			var re = RegExp('(?:^|\\s+)' + className +  '(?=\\s|$)', 'g');
			el.className = el.className.replace(re, '');
			return el;
		},

		supports: function(property, value) {
			var checker = document.createElement('span').style;
			if (checker[property] === undefined) return false;
			checker[property] = value;
			return checker[property] === value;
		},

		textAlign: function(word, style, position, wordCount) {
			if (style.get('textAlign') == 'right') {
				if (position > 0) word = ' ' + word;
			}
			else if (position < wordCount - 1) word += ' ';
			return word;
		},

		textShadow: cached(function(value) {
			if (value == 'none') return null;
			var shadows = [], currentShadow = {}, result, offCount = 0;
			var re = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
			while (result = re.exec(value)) {
				if (result[0] == ',') {
					shadows.push(currentShadow);
					currentShadow = {};
					offCount = 0;
				}
				else if (result[1]) {
					currentShadow.color = result[1];
				}
				else {
					currentShadow[[ 'offX', 'offY', 'blur' ][offCount++]] = result[2];
				}
			}
			shadows.push(currentShadow);
			return shadows;
		}),

		textTransform: (function() {
			var map = {
				uppercase: function(s) {
					return s.toUpperCase();
				},
				lowercase: function(s) {
					return s.toLowerCase();
				},
				capitalize: function(s) {
					return s.replace(/(?:^|\s)./g, function($0) {
						return $0.toUpperCase();
					});
				}
			};
			return function(text, style) {
				var transform = map[style.get('textTransform')];
				return transform ? transform(text) : text;
			};
		})(),

		whiteSpace: (function() {
			var ignore = {
				inline: 1,
				'inline-block': 1,
				'run-in': 1
			};
			var wsStart = /^\s+/, wsEnd = /\s+$/;
			return function(text, style, node, previousElement, simple) {
				if (simple) return text.replace(wsStart, '').replace(wsEnd, ''); // @fixme too simple
				if (previousElement) {
					if (previousElement.nodeName.toLowerCase() == 'br') {
						text = text.replace(wsStart, '');
					}
				}
				if (ignore[style.get('display')]) return text;
				if (!node.previousSibling) text = text.replace(wsStart, '');
				if (!node.nextSibling) text = text.replace(wsEnd, '');
				return text;
			};
		})()

	};

	CSS.ready = (function() {

		// don't do anything in Safari 2 (it doesn't recognize any media type)
		var complete = !CSS.recognizesMedia('all'), hasLayout = false;

		var queue = [], perform = function() {
			complete = true;
			for (var fn; fn = queue.shift(); fn());
		};

		var links = elementsByTagName('link'), styles = elementsByTagName('style');

		var checkTypes = {
			'': 1,
			'text/css': 1
		};

		function isContainerReady(el) {
			if (!checkTypes[el.type.toLowerCase()]) return true;
			return el.disabled || isSheetReady(el.sheet, el.media || 'screen');
		}

		function isSheetReady(sheet, media) {
			// in Opera sheet.disabled is true when it's still loading,
			// even though link.disabled is false. they stay in sync if
			// set manually.
			if (!CSS.recognizesMedia(media || 'all')) return true;
			if (!sheet || sheet.disabled) return false;
			try {
				var rules = sheet.cssRules, rule;
				if (rules) {
					// needed for Safari 3 and Chrome 1.0.
					// in standards-conforming browsers cssRules contains @-rules.
					// Chrome 1.0 weirdness: rules[<number larger than .length - 1>]
					// returns the last rule, so a for loop is the only option.
					search: for (var i = 0, l = rules.length; rule = rules[i], i < l; ++i) {
						switch (rule.type) {
							case 2: // @charset
								break;
							case 3: // @import
								if (!isSheetReady(rule.styleSheet, rule.media.mediaText)) return false;
								break;
							default:
								// only @charset can precede @import
								break search;
						}
					}
				}
			}
			catch (e) {} // probably a style sheet from another domain
			return true;
		}

		function allStylesLoaded() {
			// Internet Explorer's style sheet model, there's no need to do anything
			if (document.createStyleSheet) return true;
			// standards-compliant browsers
			var el, i;
			for (i = 0; el = links[i]; ++i) {
				if (el.rel.toLowerCase() == 'stylesheet' && !isContainerReady(el)) return false;
			}
			for (i = 0; el = styles[i]; ++i) {
				if (!isContainerReady(el)) return false;
			}
			return true;
		}

		DOM.ready(function() {
			// getComputedStyle returns null in Gecko if used in an iframe with display: none
			if (!hasLayout) hasLayout = CSS.getStyle(document.body).isUsable();
			if (complete || (hasLayout && allStylesLoaded())) perform();
			else setTimeout(arguments.callee, 10);
		});

		return function(listener) {
			if (complete) listener();
			else queue.push(listener);
		};

	})();

	function Font(data) {

		var face = this.face = data.face, wordSeparators = {
			'\u0020': 1,
			'\u00a0': 1,
			'\u3000': 1
		};

		this.glyphs = (function(glyphs) {
			var key, fallbacks = {
				'\u2011': '\u002d',
				'\u00ad': '\u2011'
			};
			for (key in fallbacks) {
				if (!hasOwnProperty(fallbacks, key)) continue;
				if (!glyphs[key]) glyphs[key] = glyphs[fallbacks[key]];
			}
			return glyphs;
		})(data.glyphs);

		this.w = data.w;
		this.baseSize = parseInt(face['units-per-em'], 10);

		this.family = face['font-family'].toLowerCase();
		this.weight = face['font-weight'];
		this.style = face['font-style'] || 'normal';

		this.viewBox = (function () {
			var parts = face.bbox.split(/\s+/);
			var box = {
				minX: parseInt(parts[0], 10),
				minY: parseInt(parts[1], 10),
				maxX: parseInt(parts[2], 10),
				maxY: parseInt(parts[3], 10)
			};
			box.width = box.maxX - box.minX;
			box.height = box.maxY - box.minY;
			box.toString = function() {
				return [ this.minX, this.minY, this.width, this.height ].join(' ');
			};
			return box;
		})();

		this.ascent = -parseInt(face.ascent, 10);
		this.descent = -parseInt(face.descent, 10);

		this.height = -this.ascent + this.descent;

		this.spacing = function(chars, letterSpacing, wordSpacing) {
			var glyphs = this.glyphs, glyph,
				kerning, k,
				jumps = [],
				width = 0, w,
				i = -1, j = -1, chr;
			while (chr = chars[++i]) {
				glyph = glyphs[chr] || this.missingGlyph;
				if (!glyph) continue;
				if (kerning) {
					width -= k = kerning[chr] || 0;
					jumps[j] -= k;
				}
				w = glyph.w;
				if (isNaN(w)) w = +this.w; // may have been a String in old fonts
				if (w > 0) {
					w += letterSpacing;
					if (wordSeparators[chr]) w += wordSpacing;
				}
				width += jumps[++j] = ~~w; // get rid of decimals
				kerning = glyph.k;
			}
			jumps.total = width;
			return jumps;
		};

	}

	function FontFamily() {

		var styles = {}, mapping = {
			oblique: 'italic',
			italic: 'oblique'
		};

		this.add = function(font) {
			(styles[font.style] || (styles[font.style] = {}))[font.weight] = font;
		};

		this.get = function(style, weight) {
			var weights = styles[style] || styles[mapping[style]]
				|| styles.normal || styles.italic || styles.oblique;
			if (!weights) return null;
			// we don't have to worry about "bolder" and "lighter"
			// because IE's currentStyle returns a numeric value for it,
			// and other browsers use the computed value anyway
			weight = {
				normal: 400,
				bold: 700
			}[weight] || parseInt(weight, 10);
			if (weights[weight]) return weights[weight];
			// http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight
			// Gecko uses x99/x01 for lighter/bolder
			var up = {
				1: 1,
				99: 0
			}[weight % 100], alts = [], min, max;
			if (up === undefined) up = weight > 400;
			if (weight == 500) weight = 400;
			for (var alt in weights) {
				if (!hasOwnProperty(weights, alt)) continue;
				alt = parseInt(alt, 10);
				if (!min || alt < min) min = alt;
				if (!max || alt > max) max = alt;
				alts.push(alt);
			}
			if (weight < min) weight = min;
			if (weight > max) weight = max;
			alts.sort(function(a, b) {
				return (up
					? (a >= weight && b >= weight) ? a < b : a > b
					: (a <= weight && b <= weight) ? a > b : a < b) ? -1 : 1;
			});
			return weights[alts[0]];
		};

	}

	function HoverHandler() {

		function contains(node, anotherNode) {
			try {
				if (node.contains) return node.contains(anotherNode);
				return node.compareDocumentPosition(anotherNode) & 16;
			}
			catch(e) {} // probably a XUL element such as a scrollbar
			return false;
		}

		// mouseover/mouseout (standards) mode
		function onOverOut(e) {
			var related = e.relatedTarget;
			// there might be no relatedTarget if the element is right next
			// to the window frame
			if (related && contains(this, related)) return;
			trigger(this, e.type == 'mouseover');
		}

		// mouseenter/mouseleave (probably ie) mode
		function onEnterLeave(e) {
			if (!e) e = window.event;
			// ie model, we don't have access to "this", but
			// mouseenter/leave doesn't bubble so it's fine.
			trigger(e.target || e.srcElement, e.type == 'mouseenter');
		}

		function trigger(el, hoverState) {
			// A timeout is needed so that the event can actually "happen"
			// before replace is triggered. This ensures that styles are up
			// to date.
			setTimeout(function() {
				var options = sharedStorage.get(el).options;
				if (hoverState) {
					options = merge(options, options.hover);
					options._mediatorMode = 1;
				}
				api.replace(el, options, true);
			}, 10);
		}

		this.attach = function(el) {
			if (el.onmouseenter === undefined) {
				addEvent(el, 'mouseover', onOverOut);
				addEvent(el, 'mouseout', onOverOut);
			}
			else {
				addEvent(el, 'mouseenter', onEnterLeave);
				addEvent(el, 'mouseleave', onEnterLeave);
			}
		};

		this.detach = function(el) {
			if (el.onmouseenter === undefined) {
				removeEvent(el, 'mouseover', onOverOut);
				removeEvent(el, 'mouseout', onOverOut);
			}
			else {
				removeEvent(el, 'mouseenter', onEnterLeave);
				removeEvent(el, 'mouseleave', onEnterLeave);
			}
		};

	}

	function ReplaceHistory() {

		var list = [], map = {};

		function filter(keys) {
			var values = [], key;
			for (var i = 0; key = keys[i]; ++i) values[i] = list[map[key]];
			return values;
		}

		this.add = function(key, args) {
			map[key] = list.push(args) - 1;
		};

		this.repeat = function() {
			var snapshot = arguments.length ? filter(arguments) : list, args;
			for (var i = 0; args = snapshot[i++];) api.replace(args[0], args[1], true);
		};

	}

	function Storage() {

		var map = {}, at = 0;

		function identify(el) {
			return el.cufid || (el.cufid = ++at);
		}

		this.get = function(el) {
			var id = identify(el);
			return map[id] || (map[id] = {});
		};

	}

	function Style(style) {

		var custom = {}, sizes = {};

		this.extend = function(styles) {
			for (var property in styles) {
				if (hasOwnProperty(styles, property)) custom[property] = styles[property];
			}
			return this;
		};

		this.get = function(property) {
			return custom[property] != undefined ? custom[property] : style[property];
		};

		this.getSize = function(property, base) {
			return sizes[property] || (sizes[property] = new CSS.Size(this.get(property), base));
		};

		this.isUsable = function() {
			return !!style;
		};

	}

	function addEvent(el, type, listener) {
		if (el.addEventListener) {
			el.addEventListener(type, listener, false);
		}
		else if (el.attachEvent) {
			// we don't really need "this" right now, saves code
			el.attachEvent('on' + type, listener);
		}
	}

	function attach(el, options) {
		if (options._mediatorMode) return el;
		var storage = sharedStorage.get(el);
		var oldOptions = storage.options;
		if (oldOptions) {
			if (oldOptions === options) return el;
			if (oldOptions.hover) hoverHandler.detach(el);
		}
		if (options.hover && options.hoverables[el.nodeName.toLowerCase()]) {
			hoverHandler.attach(el);
		}
		storage.options = options;
		return el;
	}

	function cached(fun) {
		var cache = {};
		return function(key) {
			if (!hasOwnProperty(cache, key)) cache[key] = fun.apply(null, arguments);
			return cache[key];
		};
	}

	function getFont(el, style) {
		var families = CSS.quotedList(style.get('fontFamily').toLowerCase()), family;
		for (var i = 0; family = families[i]; ++i) {
			if (fonts[family]) return fonts[family].get(style.get('fontStyle'), style.get('fontWeight'));
		}
		return null;
	}

	function elementsByTagName(query) {
		return document.getElementsByTagName(query);
	}

	function hasOwnProperty(obj, property) {
		return obj.hasOwnProperty(property);
	}

	function merge() {
		var merged = {}, arg, key;
		for (var i = 0, l = arguments.length; arg = arguments[i], i < l; ++i) {
			for (key in arg) {
				if (hasOwnProperty(arg, key)) merged[key] = arg[key];
			}
		}
		return merged;
	}

	function process(font, text, style, options, node, el) {
		var fragment = document.createDocumentFragment(), processed;
		if (text === '') return fragment;
		var separate = options.separate;
		var parts = text.split(separators[separate]), needsAligning = (separate == 'words');
		if (needsAligning && HAS_BROKEN_REGEXP) {
			// @todo figure out a better way to do this
			if (/^\s/.test(text)) parts.unshift('');
			if (/\s$/.test(text)) parts.push('');
		}
		for (var i = 0, l = parts.length; i < l; ++i) {
			processed = engines[options.engine](font,
				needsAligning ? CSS.textAlign(parts[i], style, i, l) : parts[i],
				style, options, node, el, i < l - 1);
			if (processed) fragment.appendChild(processed);
		}
		return fragment;
	}

	function removeEvent(el, type, listener) {
		if (el.removeEventListener) {
			el.removeEventListener(type, listener, false);
		}
		else if (el.detachEvent) {
			el.detachEvent('on' + type, listener);
		}
	}

	function replaceElement(el, options) {
		var name = el.nodeName.toLowerCase();
		if (options.ignore[name]) return;
		if (options.ignoreClass && options.ignoreClass.test(el.className)) return;
		if (options.onBeforeReplace) options.onBeforeReplace(el, options);
		var replace = !options.textless[name], simple = (options.trim === 'simple');
		var style = CSS.getStyle(attach(el, options)).extend(options);
		// may cause issues if the element contains other elements
		// with larger fontSize, however such cases are rare and can
		// be fixed by using a more specific selector
		if (parseFloat(style.get('fontSize')) === 0) return;
		var font = getFont(el, style), node, type, next, anchor, text, lastElement;
		var isShy = options.softHyphens, anyShy = false, pos, shy, reShy = /\u00ad/g;
		var modifyText = options.modifyText;
		if (!font) return;
		for (node = el.firstChild; node; node = next) {
			type = node.nodeType;
			next = node.nextSibling;
			if (replace && type == 3) {
				if (isShy && el.nodeName.toLowerCase() != TAG_SHY) {
					pos = node.data.indexOf('\u00ad');
					if (pos >= 0) {
						node.splitText(pos);
						next = node.nextSibling;
						next.deleteData(0, 1);
						shy = document.createElement(TAG_SHY);
						shy.appendChild(document.createTextNode('\u00ad'));
						el.insertBefore(shy, next);
						next = shy;
						anyShy = true;
					}
				}
				// Node.normalize() is broken in IE 6, 7, 8
				if (anchor) {
					anchor.appendData(node.data);
					el.removeChild(node);
				}
				else anchor = node;
				if (next) continue;
			}
			if (anchor) {
				text = anchor.data;
				if (!isShy) text = text.replace(reShy, '');
				text = CSS.whiteSpace(text, style, anchor, lastElement, simple);
				// modify text only on the first replace
				if (modifyText) text = modifyText(text, anchor, el, options);
				el.replaceChild(process(font, text, style, options, node, el), anchor);
				anchor = null;
			}
			if (type == 1) {
				if (node.firstChild) {
					if (node.nodeName.toLowerCase() == 'cufon') {
						engines[options.engine](font, null, style, options, node, el);
					}
					else arguments.callee(node, options);
				}
				lastElement = node;
			}
		}
		if (isShy && anyShy) {
			updateShy(el);
			if (!trackingShy) addEvent(window, 'resize', updateShyOnResize);
			trackingShy = true;
		}
		if (options.onAfterReplace) options.onAfterReplace(el, options);
	}

	function updateShy(context) {
		var shys, shy, parent, glue, newGlue, next, prev, i;
		shys = context.getElementsByTagName(TAG_SHY);
		// unfortunately there doesn't seem to be any easy
		// way to avoid having to loop through the shys twice.
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = C_SHY_DISABLED;
			glue = parent = shy.parentNode;
			if (glue.nodeName.toLowerCase() != TAG_GLUE) {
				newGlue = document.createElement(TAG_GLUE);
				newGlue.appendChild(shy.previousSibling);
				parent.insertBefore(newGlue, shy);
				newGlue.appendChild(shy);
			}
			else {
				// get rid of double glue (edge case fix)
				glue = glue.parentNode;
				if (glue.nodeName.toLowerCase() == TAG_GLUE) {
					parent = glue.parentNode;
					while (glue.firstChild) {
						parent.insertBefore(glue.firstChild, glue);
					}
					parent.removeChild(glue);
				}
			}
		}
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = '';
			glue = shy.parentNode;
			parent = glue.parentNode;
			next = glue.nextSibling || parent.nextSibling;
			// make sure we're comparing same types
			prev = (next.nodeName.toLowerCase() == TAG_GLUE) ? glue : shy.previousSibling;
			if (prev.offsetTop >= next.offsetTop) {
				shy.className = C_SHY_DISABLED;
				if (prev.offsetTop < next.offsetTop) {
					// we have an annoying edge case, double the glue
					newGlue = document.createElement(TAG_GLUE);
					parent.insertBefore(newGlue, glue);
					newGlue.appendChild(glue);
					newGlue.appendChild(next);
				}
			}
		}
	}

	function updateShyOnResize() {
		if (ignoreResize) return; // needed for IE
		CSS.addClass(DOM.root(), C_VIEWPORT_RESIZING);
		clearTimeout(shyTimer);
		shyTimer = setTimeout(function() {
			ignoreResize = true;
			CSS.removeClass(DOM.root(), C_VIEWPORT_RESIZING);
			updateShy(document);
			ignoreResize = false;
		}, 100);
	}

	var HAS_BROKEN_REGEXP = ' '.split(/\s+/).length == 0;
	var TAG_GLUE = 'cufonglue';
	var TAG_SHY = 'cufonshy';
	var C_SHY_DISABLED = 'cufon-shy-disabled';
	var C_VIEWPORT_RESIZING = 'cufon-viewport-resizing';

	var sharedStorage = new Storage();
	var hoverHandler = new HoverHandler();
	var replaceHistory = new ReplaceHistory();
	var initialized = false;
	var trackingShy = false;
	var shyTimer;
	var ignoreResize = false;

	var engines = {}, fonts = {}, defaultOptions = {
		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,
			noscript: 1,
			optgroup: 1,
			option: 1,
			script: 1,
			select: 1,
			style: 1,
			textarea: 1,
			title: 1,
			pre: 1
		},
		ignoreClass: null,
		modifyText: null,
		onAfterReplace: null,
		onBeforeReplace: null,
		printable: true,
		selector: (
				window.Sizzle
			||	(window.jQuery && function(query) { return jQuery(query); }) // avoid noConflict issues
			||	(window.dojo && dojo.query)
			||	(window.glow && glow.dom && glow.dom.get)
			||	(window.Ext && Ext.query)
			||	(window.YAHOO && YAHOO.util && YAHOO.util.Selector && YAHOO.util.Selector.query)
			||	(window.$$ && function(query) { return $$(query); })
			||	(window.$ && function(query) { return $(query); })
			||	(document.querySelectorAll && function(query) { return document.querySelectorAll(query); })
			||	elementsByTagName
		),
		separate: 'words', // 'none' and 'characters' are also accepted
		softHyphens: true,
		textless: {
			dl: 1,
			html: 1,
			ol: 1,
			table: 1,
			tbody: 1,
			thead: 1,
			tfoot: 1,
			tr: 1,
			ul: 1
		},
		textShadow: 'none',
		trim: 'advanced'
	};

	var separators = {
		// The first pattern may cause unicode characters above
		// code point 255 to be removed in Safari 3.0. Luckily enough
		// Safari 3.0 does not include non-breaking spaces in \s, so
		// we can just use a simple alternative pattern.
		words: /\s/.test('\u00a0') ? /[^\S\u00a0]+/ : /\s+/,
		characters: '',
		none: /^/
	};

	api.now = function() {
		DOM.ready();
		return api;
	};

	api.refresh = function() {
		replaceHistory.repeat.apply(replaceHistory, arguments);
		return api;
	};

	api.registerEngine = function(id, engine) {
		if (!engine) return api;
		engines[id] = engine;
		return api.set('engine', id);
	};

	api.registerFont = function(data) {
		if (!data) return api;
		var font = new Font(data), family = font.family;
		if (!fonts[family]) fonts[family] = new FontFamily();
		fonts[family].add(font);
		return api.set('fontFamily', '"' + family + '"');
	};

	api.replace = function(elements, options, ignoreHistory) {
		options = merge(defaultOptions, options);
		if (!options.engine) return api; // there's no browser support so we'll just stop here
		if (!initialized) {
			CSS.addClass(DOM.root(), 'cufon-active cufon-loading');
			CSS.ready(function() {
				// fires before any replace() calls, but it doesn't really matter
				CSS.addClass(CSS.removeClass(DOM.root(), 'cufon-loading'), 'cufon-ready');
			});
			initialized = true;
		}
		if (options.hover) options.forceHitArea = true;
		if (options.autoDetect) delete options.fontFamily;
		if (typeof options.ignoreClass == 'string') {
			options.ignoreClass = new RegExp('(?:^|\\s)(?:' + options.ignoreClass.replace(/\s+/g, '|') + ')(?:\\s|$)');
		}
		if (typeof options.textShadow == 'string') {
			options.textShadow = CSS.textShadow(options.textShadow);
		}
		if (typeof options.color == 'string' && /^-/.test(options.color)) {
			options.textGradient = CSS.gradient(options.color);
		}
		else delete options.textGradient;
		if (typeof elements == 'string') {
			if (!ignoreHistory) replaceHistory.add(elements, arguments);
			elements = [ elements ];
		}
		else if (elements.nodeType) elements = [ elements ];
		CSS.ready(function() {
			for (var i = 0, l = elements.length; i < l; ++i) {
				var el = elements[i];
				if (typeof el == 'string') api.replace(options.selector(el), options, true);
				else replaceElement(el, options);
			}
		});
		return api;
	};

	api.set = function(option, value) {
		defaultOptions[option] = value;
		return api;
	};

	return api;

})();

Cufon.registerEngine('vml', (function() {

	var ns = document.namespaces;
	if (!ns) return;
	ns.add('cvml', 'urn:schemas-microsoft-com:vml');
	ns = null;

	var check = document.createElement('cvml:shape');
	check.style.behavior = 'url(#default#VML)';
	if (!check.coordsize) return; // VML isn't supported
	check = null;

	var HAS_BROKEN_LINEHEIGHT = (document.documentMode || 0) < 8;

	document.write(('<style type="text/css">' +
		'cufoncanvas{text-indent:0;}' +
		'@media screen{' +
			'cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}' +
			'cufoncanvas{position:absolute;text-align:left;}' +
			'cufon{display:inline-block;position:relative;vertical-align:' +
			(HAS_BROKEN_LINEHEIGHT
				? 'middle'
				: 'text-bottom') +
			';}' +

			'cufon cufontext{position:absolute;left:-10000in;font-size:1px;text-align:left;}' +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
			'a cufon{cursor:pointer}' + // ignore !important here
		'}' +
		'@media print{' +
			'cufon cufoncanvas{display:none;}' +
		'}' +
	'</style>').replace(/;/g, '!important;'));

	function getFontSizeInPixels(el, value) {
		return getSizeInPixels(el, /(?:em|ex|%)$|^[a-z-]+$/i.test(value) ? '1em' : value);
	}

	// Original by Dead Edwards.
	// Combined with getFontSizeInPixels it also works with relative units.
	function getSizeInPixels(el, value) {
		if (!isNaN(value) || /px$/i.test(value)) return parseFloat(value);
		var style = el.style.left, runtimeStyle = el.runtimeStyle.left;
		el.runtimeStyle.left = el.currentStyle.left;
		el.style.left = value.replace('%', 'em');
		var result = el.style.pixelLeft;
		el.style.left = style;
		el.runtimeStyle.left = runtimeStyle;
		return result;
	}

	function getSpacingValue(el, style, size, property) {
		var key = 'computed' + property, value = style[key];
		if (isNaN(value)) {
			value = style.get(property);
			style[key] = value = (value == 'normal') ? 0 : ~~size.convertFrom(getSizeInPixels(el, value));
		}
		return value;
	}

	var fills = {};

	function gradientFill(gradient) {
		var id = gradient.id;
		if (!fills[id]) {
			var stops = gradient.stops, fill = document.createElement('cvml:fill'), colors = [];
			fill.type = 'gradient';
			fill.angle = 180;
			fill.focus = '0';
			fill.method = 'none';
			fill.color = stops[0][1];
			for (var j = 1, k = stops.length - 1; j < k; ++j) {
				colors.push(stops[j][0] * 100 + '% ' + stops[j][1]);
			}
			fill.colors = colors.join(',');
			fill.color2 = stops[k][1];
			fills[id] = fill;
		}
		return fills[id];
	}

	return function(font, text, style, options, node, el, hasNext) {

		var redraw = (text === null);

		if (redraw) text = node.alt;

		var viewBox = font.viewBox;

		var size = style.computedFontSize || (style.computedFontSize = new Cufon.CSS.Size(getFontSizeInPixels(el, style.get('fontSize')) + 'px', font.baseSize));

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-vml';
			wrapper.alt = text;

			canvas = document.createElement('cufoncanvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}

			// ie6, for some reason, has trouble rendering the last VML element in the document.
			// we can work around this by injecting a dummy element where needed.
			// @todo find a better solution
			if (!hasNext) wrapper.appendChild(document.createElement('cvml:shape'));
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height), roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var minX = viewBox.minX, minY = viewBox.minY;

		cStyle.height = roundedHeight;
		cStyle.top = Math.round(size.convert(minY - font.ascent));
		cStyle.left = Math.round(size.convert(minX));

		wStyle.height = size.convert(font.height) + 'px';

		var color = style.get('color');
		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			getSpacingValue(el, style, size, 'letterSpacing'),
			getSpacingValue(el, style, size, 'wordSpacing')
		);

		if (!jumps.length) return null;

		var width = jumps.total;
		var fullWidth = -minX + width + (viewBox.width - jumps[jumps.length - 1]);

		var shapeWidth = size.convert(fullWidth * stretchFactor), roundedShapeWidth = Math.round(shapeWidth);

		var coordSize = fullWidth + ',' + viewBox.height, coordOrigin;
		var stretch = 'r' + coordSize + 'ns';

		var fill = options.textGradient && gradientFill(options.textGradient);

		var glyphs = font.glyphs, offsetX = 0;
		var shadows = options.textShadow;
		var i = -1, j = 0, chr;

		while (chr = chars[++i]) {

			var glyph = glyphs[chars[i]] || font.missingGlyph, shape;
			if (!glyph) continue;

			if (redraw) {
				// some glyphs may be missing so we can't use i
				shape = canvas.childNodes[j];
				while (shape.firstChild) shape.removeChild(shape.firstChild); // shadow, fill
			}
			else {
				shape = document.createElement('cvml:shape');
				canvas.appendChild(shape);
			}

			shape.stroked = 'f';
			shape.coordsize = coordSize;
			shape.coordorigin = coordOrigin = (minX - offsetX) + ',' + minY;
			shape.path = (glyph.d ? 'm' + glyph.d + 'xe' : '') + 'm' + coordOrigin + stretch;
			shape.fillcolor = color;

			if (fill) shape.appendChild(fill.cloneNode(false));

			// it's important to not set top/left or IE8 will grind to a halt
			var sStyle = shape.style;
			sStyle.width = roundedShapeWidth;
			sStyle.height = roundedHeight;

			if (shadows) {
				// due to the limitations of the VML shadow element there
				// can only be two visible shadows. opacity is shared
				// for all shadows.
				var shadow1 = shadows[0], shadow2 = shadows[1];
				var color1 = Cufon.CSS.color(shadow1.color), color2;
				var shadow = document.createElement('cvml:shadow');
				shadow.on = 't';
				shadow.color = color1.color;
				shadow.offset = shadow1.offX + ',' + shadow1.offY;
				if (shadow2) {
					color2 = Cufon.CSS.color(shadow2.color);
					shadow.type = 'double';
					shadow.color2 = color2.color;
					shadow.offset2 = shadow2.offX + ',' + shadow2.offY;
				}
				shadow.opacity = color1.opacity || (color2 && color2.opacity) || 1;
				shape.appendChild(shadow);
			}

			offsetX += jumps[j++];
		}

		// addresses flickering issues on :hover

		var cover = shape.nextSibling, coverFill, vStyle;

		if (options.forceHitArea) {

			if (!cover) {
				cover = document.createElement('cvml:rect');
				cover.stroked = 'f';
				cover.className = 'cufon-vml-cover';
				coverFill = document.createElement('cvml:fill');
				coverFill.opacity = 0;
				cover.appendChild(coverFill);
				canvas.appendChild(cover);
			}

			vStyle = cover.style;

			vStyle.width = roundedShapeWidth;
			vStyle.height = roundedHeight;

		}
		else if (cover) canvas.removeChild(cover);

		wStyle.width = Math.max(Math.ceil(size.convert(width * stretchFactor)), 0);

		if (HAS_BROKEN_LINEHEIGHT) {

			var yAdjust = style.computedYAdjust;

			if (yAdjust === undefined) {
				var lineHeight = style.get('lineHeight');
				if (lineHeight == 'normal') lineHeight = '1em';
				else if (!isNaN(lineHeight)) lineHeight += 'em'; // no unit
				style.computedYAdjust = yAdjust = 0.5 * (getSizeInPixels(el, lineHeight) - parseFloat(wStyle.height));
			}

			if (yAdjust) {
				wStyle.marginTop = Math.ceil(yAdjust) + 'px';
				wStyle.marginBottom = yAdjust + 'px';
			}

		}

		return wrapper;

	};

})());

Cufon.registerEngine('canvas', (function() {

	// Safari 2 doesn't support .apply() on native methods

	var check = document.createElement('canvas');
	if (!check || !check.getContext || !check.getContext.apply) return;
	check = null;

	var HAS_INLINE_BLOCK = Cufon.CSS.supports('display', 'inline-block');

	// Firefox 2 w/ non-strict doctype (almost standards mode)
	var HAS_BROKEN_LINEHEIGHT = !HAS_INLINE_BLOCK && (document.compatMode == 'BackCompat' || /frameset|transitional/i.test(document.doctype.publicId));

	var styleSheet = document.createElement('style');
	styleSheet.type = 'text/css';
	styleSheet.appendChild(document.createTextNode((
		'cufon{text-indent:0;}' +
		'@media screen,projection{' +
			'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;' +
			(HAS_BROKEN_LINEHEIGHT
				? ''
				: 'font-size:1px;line-height:1px;') +
			'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-align:left;text-indent:-10000in;}' +
			(HAS_INLINE_BLOCK
				? 'cufon canvas{position:relative;}'
				: 'cufon canvas{position:absolute;}') +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
		'}' +
		'@media print{' +
			'cufon{padding:0;}' + // Firefox 2
			'cufon canvas{display:none;}' +
		'}'
	).replace(/;/g, '!important;')));
	document.getElementsByTagName('head')[0].appendChild(styleSheet);

	function generateFromVML(path, context) {
		var atX = 0, atY = 0;
		var code = [], re = /([mrvxe])([^a-z]*)/g, match;
		generate: for (var i = 0; match = re.exec(path); ++i) {
			var c = match[2].split(',');
			switch (match[1]) {
				case 'v':
					code[i] = { m: 'bezierCurveTo', a: [ atX + ~~c[0], atY + ~~c[1], atX + ~~c[2], atY + ~~c[3], atX += ~~c[4], atY += ~~c[5] ] };
					break;
				case 'r':
					code[i] = { m: 'lineTo', a: [ atX += ~~c[0], atY += ~~c[1] ] };
					break;
				case 'm':
					code[i] = { m: 'moveTo', a: [ atX = ~~c[0], atY = ~~c[1] ] };
					break;
				case 'x':
					code[i] = { m: 'closePath' };
					break;
				case 'e':
					break generate;
			}
			context[code[i].m].apply(context, code[i].a);
		}
		return code;
	}

	function interpret(code, context) {
		for (var i = 0, l = code.length; i < l; ++i) {
			var line = code[i];
			context[line.m].apply(context, line.a);
		}
	}

	return function(font, text, style, options, node, el) {

		var redraw = (text === null);

		if (redraw) text = node.getAttribute('alt');

		var viewBox = font.viewBox;

		var size = style.getSize('fontSize', font.baseSize);

		var expandTop = 0, expandRight = 0, expandBottom = 0, expandLeft = 0;
		var shadows = options.textShadow, shadowOffsets = [];
		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				var x = size.convertFrom(parseFloat(shadow.offX));
				var y = size.convertFrom(parseFloat(shadow.offY));
				shadowOffsets[i] = [ x, y ];
				if (y < expandTop) expandTop = y;
				if (x > expandRight) expandRight = x;
				if (y > expandBottom) expandBottom = y;
				if (x < expandLeft) expandLeft = x;
			}
		}

		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			~~size.convertFrom(parseFloat(style.get('letterSpacing')) || 0),
			~~size.convertFrom(parseFloat(style.get('wordSpacing')) || 0)
		);

		if (!jumps.length) return null; // there's nothing to render

		var width = jumps.total;

		expandRight += viewBox.width - jumps[jumps.length - 1];
		expandLeft += viewBox.minX;

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-canvas';
			wrapper.setAttribute('alt', text);

			canvas = document.createElement('canvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height);
		var roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var stretchedWidth = width * stretchFactor;

		var canvasWidth = Math.ceil(size.convert(stretchedWidth + expandRight - expandLeft));
		var canvasHeight = Math.ceil(size.convert(viewBox.height - expandTop + expandBottom));

		canvas.width = canvasWidth;
		canvas.height = canvasHeight;

		// needed for WebKit and full page zoom
		cStyle.width = canvasWidth + 'px';
		cStyle.height = canvasHeight + 'px';

		// minY has no part in canvas.height
		expandTop += viewBox.minY;

		cStyle.top = Math.round(size.convert(expandTop - font.ascent)) + 'px';
		cStyle.left = Math.round(size.convert(expandLeft)) + 'px';

		var wrapperWidth = Math.max(Math.ceil(size.convert(stretchedWidth)), 0) + 'px';

		if (HAS_INLINE_BLOCK) {
			wStyle.width = wrapperWidth;
			wStyle.height = size.convert(font.height) + 'px';
		}
		else {
			wStyle.paddingLeft = wrapperWidth;
			wStyle.paddingBottom = (size.convert(font.height) - 1) + 'px';
		}

		var g = canvas.getContext('2d'), scale = height / viewBox.height;
		var pixelRatio = window.devicePixelRatio || 1;
		if (pixelRatio != 1) {
			canvas.width = canvasWidth * pixelRatio;
			canvas.height = canvasHeight * pixelRatio;
			g.scale(pixelRatio, pixelRatio);
		}

		// proper horizontal scaling is performed later
		g.scale(scale, scale * roundingFactor);
		g.translate(-expandLeft, -expandTop);
		g.save();

		function renderText() {
			var glyphs = font.glyphs, glyph, i = -1, j = -1, chr;
			g.scale(stretchFactor, 1);
			while (chr = chars[++i]) {
				var glyph = glyphs[chars[i]] || font.missingGlyph;
				if (!glyph) continue;
				if (glyph.d) {
					g.beginPath();
					// the following moveTo is for Opera 9.2. if we don't
					// do this, it won't forget the previous path which
					// results in garbled text.
					g.moveTo(0, 0);
					if (glyph.code) interpret(glyph.code, g);
					else glyph.code = generateFromVML('m' + glyph.d, g);
					g.fill();
				}
				g.translate(jumps[++j], 0);
			}
			g.restore();
		}

		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				g.save();
				g.fillStyle = shadow.color;
				g.translate.apply(g, shadowOffsets[i]);
				renderText();
			}
		}

		var gradient = options.textGradient;
		if (gradient) {
			var stops = gradient.stops, fill = g.createLinearGradient(0, viewBox.minY, 0, viewBox.maxY);
			for (var i = 0, l = stops.length; i < l; ++i) {
				fill.addColorStop.apply(fill, stops[i]);
			}
			g.fillStyle = fill;
		}
		else g.fillStyle = style.get('color');

		renderText();

		return wrapper;

	};

})());
																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																									 /*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2009 by Dino dos Santos _DSType. All rights reserved.
 * 
 * Trademark:
 * Glosa Display Medium Italic is a trademark of Dino dos Santos _DSType.
 * 
 * Full name:
 * GlosaDisplay-MediumItalic
 * 
 * Description:
 * Copyright (c) 2009 by Dino dos Santos _DSType. All rights reserved.
 * 
 * Manufacturer:
 * Dino dos Santos _DSType
 * 
 * Designer:
 * Dino dos Santos
 * 
 * Vendor URL:
 * http://www.dstype.com
 * 
 * License information:
 * www.dstype.com
 */
Cufon.registerFont({"w":560,"face":{"font-family":"Glosa Italic","font-weight":500,"font-style":"italic","font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 6 3 0 0 0 9 0 4","ascent":"750","descent":"-250","x-height":"10","bbox":"-99.8048 -855 1101 265","underline-thickness":"50","underline-position":"-50","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":230},"!":{"d":"103,-54v5,-36,38,-65,73,-65v36,0,61,29,56,65v-4,35,-39,64,-74,64v-35,0,-60,-29,-55,-64xm194,-200r-10,0r13,-500r120,0","w":320},"\"":{"d":"209,-562r-10,-198r80,0r-64,198r-6,0xm359,-562r-10,-198r80,0r-64,198r-6,0","w":416},"#":{"d":"64,-195r155,0r20,-145r-155,0r2,-15r155,0r22,-156r15,0r-22,156r145,0r22,-156r15,0r-22,156r156,0r-2,15r-156,0r-20,145r156,0r-2,15r-156,0r-22,155r-15,0r22,-155r-145,0r-22,155r-15,0r22,-155r-155,0xm254,-340r-20,145r145,0r20,-145r-145,0"},"$":{"d":"270,100r13,-90v-157,5,-226,-72,-213,-134v7,-33,31,-59,64,-59v75,0,68,111,-27,111r-1,10v22,37,94,70,178,61r43,-300v-100,-46,-208,-101,-189,-224v16,-107,111,-183,246,-185r13,-90r10,0r-13,90v137,3,186,76,178,134v-4,33,-31,59,-64,59v-75,0,-68,-111,27,-111r1,-10v-22,-30,-69,-61,-143,-62r-40,279v99,38,198,105,181,224v-17,122,-125,197,-241,206r-13,91r-10,0xm231,-575v-11,81,50,121,113,150r39,-275v-70,3,-141,45,-152,125xm434,-141v12,-83,-41,-126,-98,-156r-42,295v79,-11,129,-56,140,-139"},"%":{"d":"724,-700r14,0r-384,700r-15,0xm608,-145v13,-86,87,-155,173,-155v82,0,135,69,121,155v-14,86,-87,155,-174,155v-81,0,-134,-69,-120,-155xm661,-145v-16,110,21,144,74,144v49,0,97,-34,113,-144v15,-110,-24,-144,-73,-144v-49,0,-99,34,-114,144xm176,-555v14,-86,86,-155,172,-155v82,0,136,69,122,155v-15,86,-87,155,-174,155v-81,0,-134,-69,-120,-155xm229,-555v-16,110,24,144,73,144v49,0,98,-34,114,-144v15,-110,-24,-144,-73,-144v-49,0,-99,34,-114,144","w":980},"&":{"d":"202,-205v-12,88,29,165,113,165v28,0,91,-2,152,-47r-184,-272v-44,34,-72,91,-81,154xm487,-590v7,-50,-3,-110,-69,-110v-65,0,-91,60,-97,104v-10,75,18,121,55,177v79,-48,102,-104,111,-171xm531,0r-59,-78v-78,70,-151,88,-202,88v-115,0,-192,-70,-176,-187v10,-72,79,-131,185,-189v-49,-75,-73,-129,-64,-192v13,-94,108,-152,200,-152v88,0,152,53,140,137v-8,56,-60,112,-175,161r164,243v28,-35,70,-99,103,-191r-105,-38r1,-10r227,0r-1,10r-109,38v-41,102,-77,161,-110,201r112,144r24,5r-1,10r-154,0","w":790},"'":{"d":"209,-562r-10,-198r80,0r-64,198r-6,0","w":266},"(":{"d":"438,-855v-215,288,-323,727,-158,1120r-10,0v-101,-161,-138,-375,-112,-560v26,-185,124,-399,270,-560r10,0","w":375},")":{"d":"19,265v215,-288,323,-727,158,-1120r10,0v101,161,138,375,112,560v-26,185,-124,399,-270,560r-10,0","w":375},"*":{"d":"304,-559v-7,40,28,134,-23,131v-14,0,-23,-11,-21,-25v1,-9,32,-90,34,-107v-11,14,-65,85,-72,91v-29,25,-55,-16,-30,-35v7,-6,84,-49,99,-58v-18,0,-102,18,-111,18v-14,0,-23,-10,-21,-24v8,-54,95,-1,135,-4v-14,-9,-79,-55,-84,-62v-9,-10,-7,-24,4,-34v11,-10,27,-12,35,-1v6,7,40,80,47,94v9,-41,-27,-137,24,-135v14,0,24,9,22,24v-1,10,-33,94,-36,111v11,-14,65,-86,75,-94v11,-10,25,-10,34,0v8,10,7,24,-5,35v-9,8,-86,52,-102,62v19,0,101,-21,112,-21v14,0,23,11,21,25v-8,52,-94,3,-134,6v13,9,76,51,83,58v9,10,7,25,-5,35v-11,9,-26,10,-35,0v-6,-7,-39,-76,-46,-90","w":442},"+":{"d":"350,-451r-25,176r176,0r-2,15r-176,0r-25,175r-15,0r25,-175r-175,0r2,-15r175,0r25,-176r15,0"},",":{"d":"98,-17r15,-106v112,-15,135,51,128,102v-14,95,-99,164,-157,186r-3,-10v94,-35,176,-172,17,-172","w":335},"-":{"d":"135,-275r366,0r-2,15r-366,0"},".":{"d":"103,-54v5,-36,38,-65,73,-65v36,0,61,29,56,65v-4,35,-39,64,-74,64v-35,0,-60,-29,-55,-64","w":320},"\/":{"d":"434,-710r20,0r-309,710r-20,0","w":480},"0":{"d":"102,-350v24,-170,127,-360,297,-360v170,0,221,190,197,360v-24,170,-128,360,-298,360v-170,0,-220,-187,-196,-360xm219,-350v-28,197,-23,350,81,350v103,0,151,-153,179,-350v28,-196,22,-350,-81,-350v-104,0,-151,154,-179,350","w":600},"1":{"d":"38,-10r121,-5r92,-658r-122,18r1,-10r232,-45r-97,695r119,5r-1,10r-346,0","w":420},"2":{"d":"171,-91r-1,10r318,-5r-11,86r-434,0r1,-10v335,-219,375,-389,390,-497v14,-100,-21,-181,-116,-181v-58,0,-99,18,-137,53r-2,10v100,-22,84,105,2,105v-28,0,-52,-21,-47,-57v8,-57,88,-133,223,-133v157,0,199,110,186,199v-11,80,-75,244,-372,420","w":510},"3":{"d":"232,0v89,0,150,-75,165,-188v14,-101,-27,-193,-148,-180r2,-12v109,10,161,-77,172,-153v10,-68,-23,-132,-100,-132v-100,0,-146,71,-174,125r-10,0v32,-84,120,-170,225,-170v113,0,182,63,169,158v-12,84,-84,149,-215,174r-1,5v129,9,207,68,191,180v-19,136,-146,203,-278,203v-118,0,-186,-68,-177,-135v5,-32,33,-55,64,-55v78,0,65,122,-32,108r-1,10v18,19,54,62,148,62","w":535},"4":{"d":"467,-172r90,0r-2,12r-90,0r-22,160r-106,0r22,-160r-300,0r2,-16r402,-507r79,-27xm411,-602r-331,420r-1,10r282,0r60,-430r-10,0","w":570},"5":{"d":"230,10v-118,0,-186,-69,-177,-135v5,-30,31,-55,65,-55v75,0,67,119,-34,110r-1,10v29,31,76,60,145,60v99,0,158,-95,173,-200v13,-94,-15,-204,-193,-204r-44,0r52,-296r339,0r-14,94r-331,0r-33,192v291,-69,348,107,334,207v-18,126,-125,217,-281,217","w":535},"6":{"d":"424,-210v15,-105,-11,-199,-87,-199v-42,0,-87,26,-118,55v-46,185,-26,354,66,354v71,0,122,-91,139,-210xm223,-382r8,3v47,-35,98,-54,153,-54v114,0,175,97,159,212v-20,141,-141,231,-261,231v-151,0,-213,-127,-192,-277v32,-224,204,-401,422,-443r1,10v-138,29,-253,149,-290,318","w":565},"7":{"d":"509,-610r2,-10r-359,10r-31,77r-10,0r29,-167r421,0r-2,10r-341,690r-100,0","w":490},"8":{"d":"470,-552v11,-81,-22,-148,-86,-148v-64,0,-115,66,-125,139v-14,95,60,134,130,167v43,-32,71,-83,81,-158xm428,-161v11,-77,-48,-128,-152,-174v-48,32,-86,91,-95,156v-14,102,24,179,105,179v79,0,130,-72,142,-161xm536,-192v-19,132,-142,202,-264,202v-120,0,-210,-63,-193,-189v10,-69,73,-135,187,-161v-93,-54,-122,-121,-113,-186v17,-117,133,-184,239,-184v101,0,185,61,170,171v-9,64,-74,123,-166,150v119,55,151,117,140,197","w":565},"9":{"d":"238,-490v-14,105,12,199,87,199v43,0,88,-26,119,-55v45,-185,26,-354,-66,-354v-71,0,-123,91,-140,210xm439,-318r-8,-3v-46,35,-98,54,-153,54v-114,0,-174,-97,-158,-212v20,-141,140,-231,260,-231v151,0,213,127,192,277v-31,224,-204,401,-422,443r0,-10v137,-29,252,-149,289,-318","w":565},":":{"d":"111,-110v6,-36,37,-65,73,-65v35,0,61,29,55,65v-5,35,-37,64,-73,64v-35,0,-60,-29,-55,-64xm150,-390v5,-35,38,-64,74,-64v35,0,59,29,54,64v-5,35,-37,64,-73,64v-35,0,-60,-29,-55,-64","w":320},";":{"d":"155,-390v5,-35,38,-64,74,-64v35,0,59,29,54,64v-5,35,-37,64,-73,64v-35,0,-60,-29,-55,-64xm98,-17r15,-106v112,-15,135,51,128,102v-14,95,-99,164,-157,186r-3,-10v94,-35,176,-172,17,-172","w":335},"<":{"d":"443,-453r-254,184r202,186r-1,10r-257,-185r3,-20r309,-185","w":480},"=":{"d":"145,-345r366,0r-2,15r-366,0xm125,-205r366,0r-2,15r-366,0"},">":{"d":"111,-83r254,-186r-202,-184r2,-10r257,185r-3,20r-309,185","w":480},"?":{"d":"193,-54v5,-36,38,-65,73,-65v36,0,61,29,56,65v-4,35,-39,64,-74,64v-35,0,-60,-29,-55,-64xm557,-530v-10,69,-74,157,-248,185r-25,145r-10,0r16,-152v127,-35,151,-110,160,-175v14,-96,-30,-165,-125,-165v-49,0,-109,23,-138,54r-1,10v97,-7,75,108,-2,108v-30,0,-51,-24,-47,-55v9,-65,99,-135,227,-135v144,0,205,91,193,180","w":536},"@":{"d":"419,-11v107,0,119,-156,155,-250v32,-85,-3,-110,-31,-110v-60,0,-105,74,-139,164v-34,89,-43,196,15,196xm599,-315v33,-16,58,-41,89,-60r10,0r-84,258v-14,42,-31,105,18,105v59,0,170,-98,191,-247v29,-209,-115,-295,-268,-295v-177,0,-325,186,-352,381v-27,189,38,319,224,319v81,0,183,-38,256,-91r4,8v-81,60,-186,96,-289,96v-188,0,-313,-142,-287,-330v33,-234,247,-393,448,-393v168,0,302,100,274,301v-23,162,-139,271,-247,271v-54,0,-73,-35,-70,-74v-27,45,-75,76,-120,76v-109,0,-122,-137,-75,-232v44,-89,132,-164,215,-164v41,0,68,30,63,71","w":884},"A":{"d":"132,-48r102,38r-1,10r-226,0r1,-10r108,-38r276,-597r88,-65r162,695r52,5r-1,10r-266,0r1,-10r90,-5r-48,-235r-246,0xm397,-605r-10,0r-159,343r239,0","w":700},"B":{"d":"319,-690r-45,322v143,11,222,-48,234,-152v10,-90,-9,-170,-112,-170r-77,0xm347,-358r-74,0r-49,348r97,0v113,0,157,-90,170,-180v13,-95,-21,-168,-144,-168xm621,-530v-10,82,-104,147,-240,165v174,3,233,103,222,180v-15,110,-106,185,-256,185r-310,0r1,-10r81,-5r94,-670r-80,-5r2,-10r280,0v150,0,218,70,206,170","w":613,"k":{",":30,"T":20,"V":30,"Y":30,"W":30,"A":20}},"C":{"d":"610,-50v-44,25,-132,60,-232,60v-195,0,-316,-150,-286,-360v29,-210,192,-360,387,-360v100,0,178,35,215,60r-18,163r-10,0r-35,-106v-14,-53,-71,-107,-146,-107v-143,0,-244,120,-276,350v-33,230,32,350,178,350v75,0,142,-50,178,-107r68,-106r10,0","w":650},"D":{"d":"224,-10r117,0v169,0,265,-182,288,-340v26,-185,-28,-340,-203,-340r-107,0xm340,0r-303,0r1,-10r81,-5r94,-670r-80,-5r2,-10r303,0v215,0,339,130,308,350v-29,206,-191,350,-406,350","w":740,"k":{"T":20,"U":10,"V":40,"Y":40,"W":30,"A":60,"J":20,"X":30,"Z":10,"B":10,"D":10,"E":10,"F":10,"H":10,"I":10,"K":10,"L":10,"P":10,"R":10,"N":20,"M":20}},"E":{"d":"319,-690r-47,335r175,-4r58,-114r10,0r-34,241r-10,0r-27,-109r-173,-4r-47,335r250,-5r102,-148r10,0r-33,163r-516,0r1,-10r81,-5r94,-670r-80,-5r2,-10r506,0r-18,163r-10,0r-55,-148","w":600},"F":{"d":"319,-690r-49,355r174,-4r58,-114r10,0r-34,241r-10,0r-27,-109r-173,-4r-43,310r79,5r-1,10r-266,0r1,-10r81,-5r94,-670r-80,-5r2,-10r506,0r-18,163r-10,0r-55,-148","w":575,"k":{"y":60,"w":60,"v":60,"u":40,"s":40,"r":40,"q":50,"p":40,"o":50,"n":40,"m":40,"i":40,"g":60,"e":50,"d":50,"c":50,"a":50,"Q":20,"O":20,"J":60,"G":20,"C":20,"A":100,",":140}},"G":{"d":"92,-350v29,-210,192,-360,387,-360v100,0,178,35,215,60r-18,163r-10,0r-35,-106v-14,-53,-73,-107,-146,-107v-143,0,-244,120,-276,350v-31,220,42,350,171,350v58,0,113,-22,146,-45r32,-230r-79,-5r1,-10r243,0r-1,10r-57,5r-29,205v-44,30,-158,80,-258,80v-195,0,-316,-150,-286,-360","w":710,"k":{",":50,"v":30,"w":30,"y":30,"V":30,"Y":30,"W":30,"A":40}},"H":{"d":"559,-15r47,-335r-334,0r-47,335r79,5r-1,10r-266,0r1,-10r81,-5r94,-670r-80,-5r2,-10r266,0r-2,10r-80,5r-46,323r334,0r46,-323r-80,-5r2,-10r266,0r-2,10r-80,5r-94,670r79,5r-1,10r-266,0r1,-10","w":780,"k":{"C":10,"G":10,"O":10,"Q":10,"a":20,"c":20,"d":20,"e":20,"o":20,"q":20,"u":30,"v":30,"w":30,"y":30,"g":20,"J":20}},"I":{"d":"38,-10r81,-5r94,-670r-80,-5r2,-10r266,0r-2,10r-80,5r-94,670r79,5r-1,10r-266,0","w":340,"k":{"C":10,"G":10,"O":10,"Q":10,"a":20,"c":20,"d":20,"e":20,"o":20,"q":20,"u":30,"v":30,"w":30,"y":30,"g":20,"J":20}},"J":{"d":"200,-170r73,-515r-81,-5r2,-10r267,0r-2,10r-80,5r-69,488v-16,114,-117,207,-215,207v-52,0,-74,-25,-69,-57v11,-77,143,-71,96,39v60,6,65,-70,78,-162","w":390,"k":{",":100,"C":10,"G":10,"O":10,"Q":10,"a":20,"c":20,"d":20,"e":20,"o":20,"q":20,"u":20,"v":30,"w":30,"y":30,"A":80,"-":50,"i":40,"m":40,"n":40,"p":40,"r":40}},"K":{"d":"343,-360r281,-292r-106,-38r2,-10r256,0r-2,10r-130,38r-242,246r246,391r71,5r-1,10r-300,0r1,-10r91,-5r-201,-335r-37,0r-47,335r79,5r-1,10r-266,0r1,-10r81,-5r94,-670r-80,-5r2,-10r266,0r-2,10r-80,5r-46,325r70,0","w":735,"k":{"C":60,"G":60,"O":60,"Q":60,"a":70,"c":70,"d":70,"e":70,"o":70,"q":70,"u":50,"v":120,"w":120,"y":120,"T":20,"V":10,"Y":10,"g":20,"W":10}},"L":{"d":"224,-10r250,-5r102,-148r10,0r-33,163r-516,0r1,-10r81,-5r94,-670r-80,-5r2,-10r266,0r-2,10r-80,5","w":580,"k":{"C":20,"G":20,"O":20,"Q":20,"v":70,"w":70,"y":70,"T":100,"V":130,"Y":120,"W":120}},"M":{"d":"491,-168r10,0r250,-532r190,0r-2,10r-80,5r-94,670r79,5r-1,10r-266,0r1,-10r81,-5r88,-628r-10,0r-301,648r-20,0r-170,-622r-10,0r-75,569r103,38r-1,10r-226,0r1,-10r108,-38r90,-637r-103,-5r2,-10r211,0","w":880,"k":{"C":10,"G":10,"O":10,"Q":10,"a":20,"c":20,"d":20,"e":20,"o":20,"q":20,"u":30,"v":30,"w":30,"y":30,"g":20,"J":20}},"N":{"d":"605,-188r10,0r61,-464r-103,-38r2,-10r226,0r-2,10r-108,38r-92,657r-20,0r-332,-628r-10,0r-76,575r103,38r-1,10r-226,0r1,-10r108,-38r90,-637r-103,-5r2,-10r206,0","w":730,"k":{"C":30,"G":30,"O":30,"Q":30,"a":30,"c":30,"d":30,"e":30,"o":30,"q":30,"u":30,"v":50,"w":50,"y":50,"A":40,"i":50,"m":50,"n":50,"p":50,"r":50}},"O":{"d":"92,-350v29,-210,209,-360,397,-360v188,0,326,150,297,360v-30,210,-210,360,-398,360v-188,0,-326,-150,-296,-360xm209,-350v-32,223,45,350,181,350v136,0,248,-127,279,-350v32,-223,-45,-350,-181,-350v-136,0,-248,127,-279,350","w":780,"k":{"T":20,"U":10,"V":40,"Y":40,"W":30,"A":60,"J":20,"X":30,"Z":10,"B":10,"D":10,"E":10,"F":10,"H":10,"I":10,"K":10,"L":10,"P":10,"R":10,"N":20,"M":20}},"P":{"d":"266,-307r67,0v133,0,185,-75,202,-193v15,-110,-6,-186,-119,-190r-97,0xm338,-297r-73,0r-40,282r79,5r-1,10r-266,0r1,-10r81,-5r94,-670r-80,-5r2,-10r310,0v150,0,219,80,203,190v-14,100,-100,213,-310,213","w":610,"k":{",":200,"a":40,"c":40,"d":40,"e":40,"o":40,"q":40,"V":20,"Y":20,"g":40,"W":20,"A":100,"i":20,"m":20,"n":20,"p":20,"r":20,"J":60,"B":10,"D":10,"E":10,"F":10,"H":10,"I":10,"K":10,"L":10,"P":10,"R":10}},"Q":{"d":"293,-4r0,5r447,157r-1,10r-122,62r-394,-265v-91,-62,-151,-174,-131,-315v29,-210,209,-360,397,-360v188,0,327,150,297,360v-33,235,-265,409,-493,346xm209,-350v-32,223,45,350,181,350v136,0,248,-127,279,-350v32,-223,-45,-350,-181,-350v-136,0,-248,127,-279,350","w":780,"k":{"T":20,"U":10,"V":40,"Y":40,"W":30,"A":60,"J":20,"X":30,"Z":10,"B":10,"D":10,"E":10,"F":10,"H":10,"I":10,"K":10,"L":10,"P":10,"R":10,"N":20,"M":20}},"R":{"d":"326,-320r-59,0r-42,305r79,5r-1,10r-266,0r1,-10r81,-5r94,-670r-80,-5r2,-10r300,0v150,0,219,77,203,187v-12,87,-95,170,-239,185r-1,10v45,4,67,35,88,74r123,229r45,5r-1,10r-170,0xm269,-330r67,0v133,0,175,-79,189,-173v13,-93,-5,-187,-119,-187r-87,0","w":670,"k":{"C":30,"G":30,"O":30,"Q":30,"a":40,"c":40,"d":40,"e":40,"o":40,"q":40,"v":50,"w":50,"y":50,"T":40,"V":70,"Y":70,"g":20,"W":70}},"S":{"d":"80,-63r-19,68r-10,0r25,-218r10,0r17,70v25,104,90,143,162,143v81,0,146,-45,159,-141v15,-104,-70,-144,-140,-176v-95,-43,-174,-99,-158,-208v15,-108,113,-185,250,-185v61,0,120,20,158,60r18,-55r10,0r-24,203r-10,0r-19,-78v-21,-85,-67,-120,-133,-120v-67,0,-145,43,-157,125v-12,88,65,128,133,157v94,40,188,105,172,221v-19,130,-127,207,-261,207v-73,0,-137,-32,-183,-73","w":540,"k":{"V":10,"Y":10,"W":10,"A":20}},"T":{"d":"101,-537r29,-163r536,0r-18,163r-10,0r-56,-146r-133,-5r-94,673r79,5r-1,10r-266,0r1,-10r81,-5r94,-673r-135,5r-97,146r-10,0","w":600,"k":{",":120,"C":20,"G":20,"O":20,"Q":20,"a":90,"c":90,"d":90,"e":90,"o":90,"q":90,"u":70,"v":70,"w":70,"y":70,"g":80,"A":90,"-":120,"i":70,"m":70,"n":70,"p":70,"r":70,"J":60,"s":80}},"U":{"d":"646,-263r55,-389r-98,-38r2,-10r226,0r-2,10r-113,38r-54,382v-25,180,-126,280,-289,280v-182,0,-253,-107,-229,-280r59,-415r-80,-5r2,-10r266,0r-2,10r-80,5r-61,438v-23,160,35,234,160,234v128,0,217,-97,238,-250","w":760,"k":{",":100,"C":30,"G":30,"O":30,"Q":30,"a":50,"c":50,"d":50,"e":50,"o":50,"q":50,"v":50,"w":50,"y":50,"A":110,"-":50,"i":40,"m":40,"n":40,"p":40,"r":40}},"V":{"d":"317,5r-161,-690r-53,-5r2,-10r266,0r-2,10r-89,5r122,580r10,0r252,-547r-101,-38r2,-10r226,0r-2,10r-109,38r-306,657r-57,0","w":700,"k":{",":200,"C":60,"G":60,"O":60,"Q":60,"a":120,"c":120,"d":120,"e":120,"o":120,"q":120,"u":70,"v":80,"w":80,"y":80,"g":110,"A":140,"-":80,"i":70,"m":70,"n":70,"p":70,"r":70,"J":60,"s":100,"S":10}},"W":{"d":"574,-464r-222,469r-60,0r-136,-690r-53,-5r2,-10r263,0r-2,10r-86,5r103,577r10,0r177,-383r-34,-194r-67,-5r2,-10r270,0r-2,10r-79,5r84,577r10,0r220,-544r-101,-38r2,-10r226,0r-2,10r-109,38r-269,657r-67,0","w":1010,"k":{",":200,"C":40,"G":40,"O":40,"Q":40,"a":120,"c":120,"d":120,"e":120,"o":120,"q":120,"u":70,"v":80,"w":80,"y":80,"g":110,"A":110,"-":80,"i":70,"m":70,"n":70,"p":70,"r":70,"J":60,"s":100,"S":10}},"X":{"d":"357,-323r-151,-362r-78,-5r2,-10r291,0r-2,10r-85,5r118,281r194,-248r-103,-38r2,-10r231,0r-2,10r-108,38r-208,260r159,377r77,5r-1,10r-301,0r1,-10r94,-5r-125,-297r-216,264r113,38r-1,10r-241,0r1,-10r108,-38","w":710,"k":{"C":30,"G":30,"O":30,"Q":30,"a":60,"c":60,"d":60,"e":60,"o":60,"q":60,"u":40,"v":100,"w":100,"y":100,"g":20}},"Y":{"d":"294,-15r32,-228r-160,-442r-63,-5r2,-10r263,0r-2,10r-75,5r134,382r10,0r212,-349r-94,-38r2,-10r216,0r-2,10r-103,38r-229,369r-37,268r79,5r-1,10r-266,0r1,-10","w":680,"k":{",":150,"C":50,"G":50,"O":50,"Q":50,"a":110,"c":110,"d":110,"e":110,"o":110,"q":110,"u":70,"v":80,"w":80,"y":80,"g":110,"A":100,"-":80,"i":60,"m":60,"n":60,"p":60,"r":60,"J":60,"s":100,"S":10}},"Z":{"d":"649,-690r-479,670r-1,10r301,-5r106,-148r10,0r-38,163r-511,0r1,-10r482,-670r1,-10r-273,5r-107,148r-10,0r29,-163r491,0","w":600,"k":{"v":50,"w":50,"y":50}},"[":{"d":"120,250r181,0r-1,10r-244,0r157,-1115r244,0r-2,10r-181,0","w":380},"\\":{"d":"335,0r-111,-710r20,0r111,710r-20,0","w":480},"]":{"d":"56,260r1,-10r181,0r154,-1095r-181,0r2,-10r244,0r-157,1115r-244,0","w":380},"^":{"d":"343,-625r-165,135r-10,0r183,-230r10,0r117,230r-10,0","w":510},"_":{"d":"89,50r416,0r-2,15r-416,0","w":610},"`":{"d":"331,-550r-136,-180r103,0r43,180r-10,0","w":369},"a":{"d":"388,-139r-10,0v-35,88,-90,149,-170,149v-103,0,-168,-110,-142,-260v30,-174,188,-307,373,-243v33,-5,62,-15,98,-17r-70,487r9,10r102,-34r0,10v-68,34,-125,47,-155,47v-88,2,-47,-95,-35,-149xm250,-32v150,0,145,-288,175,-444v-21,-15,-44,-24,-79,-24v-72,0,-147,103,-169,250v-20,133,13,218,73,218","w":558,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10,"t":10}},"b":{"d":"357,-468v-150,0,-145,288,-175,444v21,15,44,24,79,24v71,0,147,-103,169,-250v20,-133,-13,-218,-73,-218xm280,-730r-61,369r10,0v35,-88,90,-149,170,-149v103,0,167,110,142,260v-25,147,-142,260,-285,260v-31,0,-112,-13,-179,-52r94,-668r-93,0r0,-10","w":547,"k":{"u":10,"v":10,"w":10,"y":10,"i":10,"m":10,"n":10,"p":10,"r":10,"h":10,"k":10,"l":10,"x":20,"z":20}},"c":{"d":"263,10v-159,0,-218,-123,-199,-258v24,-170,163,-262,288,-262v117,0,153,63,145,122v-4,33,-33,58,-63,58v-79,0,-64,-120,34,-106r1,-10v-14,-24,-40,-51,-107,-51v-100,0,-171,90,-189,216v-20,142,37,220,135,220v73,0,125,-44,155,-89r10,0v-31,83,-105,160,-210,160","w":488,"k":{"u":10,"v":10,"w":10,"y":10,"i":10,"m":10,"n":10,"p":10,"r":10,"h":10,"k":10,"l":10,"x":20,"z":20}},"d":{"d":"388,-139r-10,0v-35,88,-90,149,-170,149v-103,0,-168,-110,-142,-260v29,-169,179,-301,361,-247r30,-213r-92,0r0,-10r202,-10r-100,707r9,10r102,-34r0,10v-68,34,-125,47,-155,47v-88,2,-47,-95,-35,-149xm250,-32v150,0,145,-288,175,-444v-21,-15,-44,-24,-79,-24v-72,0,-147,103,-169,250v-20,133,13,218,73,218","w":558,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10}},"e":{"d":"263,10v-159,0,-218,-123,-199,-258v24,-170,163,-262,288,-262v233,0,179,313,-183,282v-1,108,54,167,139,167v73,0,125,-44,155,-89r10,0v-31,83,-105,160,-210,160xm343,-497v-94,-2,-169,119,-174,259v248,20,293,-259,174,-259","w":483,"k":{"u":10,"v":10,"w":10,"y":10,"i":10,"m":10,"n":10,"p":10,"r":10,"h":10,"k":10,"l":10,"x":20,"z":20}},"f":{"d":"95,50r77,-535r-74,0r1,-10r75,-5v9,-128,113,-228,218,-230v36,0,75,14,69,57v-4,28,-27,52,-60,52v-25,0,-65,-22,-36,-91v-71,-13,-67,126,-85,212r124,0r-2,15r-124,0r-71,500v-18,122,-119,215,-217,215v-36,0,-74,-14,-68,-57v3,-28,27,-52,60,-52v24,0,65,22,36,91v61,6,64,-70,77,-162","w":337,"k":{"a":50,"c":50,"d":50,"e":50,"o":50,"q":50}},"g":{"d":"185,-170r2,-9v-57,-27,-98,-82,-90,-153v17,-144,219,-230,357,-143v32,-35,69,-54,114,-54v36,0,58,23,54,51v-9,67,-128,70,-92,-35v-19,2,-52,22,-70,44v38,31,52,84,46,133v-17,132,-162,208,-305,162v-12,10,-34,25,-37,48v-4,26,23,36,66,39r151,13v110,8,143,61,133,127v-16,112,-153,177,-316,177v-138,0,-199,-47,-190,-115v6,-48,59,-89,125,-109r2,-9v-36,-11,-65,-35,-59,-75v5,-37,42,-64,109,-92xm314,19r-167,-17v-82,59,-117,219,66,218v147,0,209,-53,217,-110v7,-49,-24,-82,-116,-91xm205,-334v-7,125,25,164,80,164v67,0,106,-53,113,-168v7,-118,-20,-162,-76,-162v-61,0,-111,46,-117,166","w":550,"k":{"a":50,"c":50,"d":50,"e":50,"o":50,"q":50,"h":10,"k":10,"l":10}},"h":{"d":"73,0r100,-710r-93,0r0,-10r202,-10r-74,420r10,0v53,-135,131,-200,204,-200v67,0,103,40,88,150r-48,337r9,10r102,-34r0,10v-68,34,-127,47,-157,47v-53,0,-61,-32,-54,-80r46,-323v7,-52,0,-80,-36,-80v-48,0,-139,91,-165,276r-27,197r-107,0","w":553,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10,"t":10}},"i":{"d":"157,-653v6,-39,41,-70,80,-70v38,0,66,31,60,70v-5,38,-41,70,-80,70v-39,0,-65,-32,-60,-70xm251,-430r-59,407r9,10r102,-34r0,10v-68,34,-126,47,-156,47v-54,0,-62,-32,-55,-80r59,-407r-9,-10r-102,34r0,-10v68,-34,127,-47,157,-47v53,0,61,32,54,80","w":283,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10,"t":10}},"j":{"d":"77,33r73,-510r-9,-10r-102,34r0,-10v68,-34,126,-47,156,-47v54,0,62,32,55,80r-60,407v-24,166,-123,253,-221,253v-35,0,-75,-14,-68,-57v4,-28,28,-52,61,-52v24,0,64,22,35,91v62,5,64,-70,80,-179xm156,-653v6,-39,41,-70,79,-70v39,0,65,31,60,70v-5,38,-41,70,-79,70v-39,0,-65,-32,-60,-70","w":266},"k":{"d":"285,-730r-102,730r-106,0r99,-710r-70,0r2,-10xm337,-281r0,10r150,253r74,-29r0,10v-63,34,-99,47,-129,47v-53,0,-74,-32,-95,-70r-110,-199v133,-36,240,-99,267,-132r0,-10v-104,10,-97,-109,-17,-109v41,0,63,24,63,62v0,57,-67,110,-203,167","w":541,"k":{"a":20,"c":20,"d":20,"e":20,"o":20,"q":20}},"l":{"d":"79,-70r90,-640r-92,0r0,-10r202,-10r-100,707r9,10r102,-34r0,10v-68,34,-126,47,-156,47v-54,0,-62,-32,-55,-80","w":270,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10}},"m":{"d":"247,-430r-29,120r10,0v53,-135,131,-200,204,-200v78,0,105,70,84,177r2,0v52,-119,121,-177,194,-177v67,0,103,40,88,150r-48,337r9,10r102,-34r0,10v-74,31,-106,50,-174,43v-38,-4,-43,-35,-37,-76v14,-108,30,-216,46,-323v4,-33,9,-80,-35,-80v-71,0,-148,142,-164,263r-29,210r-107,0r55,-393v5,-38,4,-80,-35,-80v-62,0,-143,112,-170,305r-23,168r-107,0r66,-477r-9,-10r-100,34r0,-10v68,-34,125,-47,155,-47v53,0,64,33,52,80","w":843,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10,"t":10}},"n":{"d":"247,-430r-29,120r10,0v53,-135,131,-200,204,-200v67,0,103,40,88,150r-48,337r9,10r102,-34r0,10v-68,34,-126,47,-156,47v-54,0,-62,-32,-55,-80r46,-323v7,-52,0,-80,-36,-80v-48,0,-139,91,-165,276r-27,197r-107,0r66,-477r-9,-10r-100,34r0,-10v68,-34,125,-47,155,-47v54,0,64,33,52,80","w":563,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10,"t":10}},"o":{"d":"327,-500v-77,0,-124,89,-147,250v-23,161,0,250,77,250v77,0,123,-89,146,-250v22,-161,2,-250,-76,-250xm255,10v-139,0,-213,-107,-191,-260v21,-153,125,-260,264,-260v138,0,213,107,191,260v-22,153,-126,260,-264,260","w":523,"k":{"u":10,"v":10,"w":10,"y":10,"i":10,"m":10,"n":10,"p":10,"r":10,"h":10,"k":10,"l":10,"x":20,"z":20}},"p":{"d":"367,-468v-150,0,-145,288,-175,444v21,15,45,24,79,24v72,0,147,-103,169,-250v20,-133,-13,-218,-73,-218xm54,205r96,-682r-9,-10r-102,34r0,-10v68,-34,125,-47,155,-47v89,-2,46,95,35,149r10,0v35,-88,90,-149,170,-149v104,0,168,110,142,260v-29,169,-179,301,-361,247r-30,208r80,5r-1,10r-266,0r2,-10","w":557,"k":{"u":10,"v":10,"w":10,"y":10,"i":10,"m":10,"n":10,"p":10,"r":10,"h":10,"k":10,"l":10,"x":20,"z":20}},"q":{"d":"330,205r58,-344r-10,0v-35,88,-90,149,-170,149v-103,0,-168,-110,-142,-260v30,-174,188,-307,373,-243v33,-5,62,-15,98,-17r-101,715r79,5r-1,10r-266,0r1,-10xm250,-32v150,0,145,-288,175,-444v-21,-15,-44,-24,-79,-24v-72,0,-147,103,-169,250v-20,133,13,218,73,218","w":537},"r":{"d":"215,-290r10,0v57,-170,129,-220,184,-220v42,0,65,30,60,64v-12,78,-132,77,-125,-12r-10,0v-29,23,-97,117,-118,271r-26,187r-107,0r66,-477r-9,-10r-100,34r0,-10v68,-34,125,-47,155,-47v54,0,63,33,52,80","w":440,"k":{"a":60,"c":60,"d":60,"e":60,"o":60,"q":60,"g":30,"h":30,"k":30,"l":30}},"s":{"d":"195,10v-122,0,-168,-63,-160,-122v4,-33,34,-58,68,-58v72,0,98,112,-6,131r-1,10v22,21,66,28,99,28v61,0,101,-37,110,-89v11,-63,-36,-96,-103,-125v-77,-33,-125,-72,-113,-157v11,-80,86,-138,196,-138v122,0,172,63,164,122v-4,33,-31,55,-61,55v-77,0,-90,-110,8,-119r1,-10v-22,-21,-58,-38,-112,-38v-57,0,-94,40,-100,86v-7,59,46,87,92,106v85,36,149,75,136,165v-13,95,-112,153,-218,153","w":434},"t":{"d":"254,-485r-52,368v-19,123,49,110,128,82r-1,10v-97,47,-257,73,-235,-85r53,-375r-73,0r1,-10r74,-5r114,-120r10,0r-17,120r140,0r-2,15r-140,0","w":370,"k":{"a":50,"c":50,"d":50,"e":50,"o":50,"q":50}},"u":{"d":"376,-70r29,-120r-10,0v-53,135,-131,200,-204,200v-67,0,-103,-40,-88,-150r48,-337r-9,-10r-102,34r0,-10v68,-34,127,-47,157,-47v53,0,61,32,54,80r-46,323v-7,52,0,80,36,80v48,0,139,-91,165,-276r27,-197r107,0r-66,477r9,10r100,-34r0,10v-68,34,-125,47,-155,47v-53,0,-64,-33,-52,-80","w":563,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10,"t":10}},"v":{"d":"312,-70r10,0v52,-85,136,-207,168,-317r0,-10v-126,19,-113,-113,-36,-113v42,0,64,32,64,70v0,99,-156,326,-227,445r-69,0r-107,-477r-9,-10r-86,29r0,-10v68,-34,122,-47,152,-47v53,0,66,29,75,79","w":518,"k":{"a":30,"c":30,"d":30,"e":30,"o":30,"q":30,"h":30,"k":30,"l":30}},"w":{"d":"612,-70r10,0v52,-85,136,-207,168,-317r0,-10v-126,19,-113,-113,-36,-113v42,0,64,32,64,70v0,99,-156,326,-227,445r-69,0r-63,-281v-52,99,-125,210,-168,281r-69,0r-107,-477r-9,-10r-86,29r0,-10v68,-34,122,-47,152,-47v53,0,66,29,75,79r65,361r10,0v38,-62,93,-144,132,-226r-39,-176r-9,-10r-86,29r0,-10v68,-34,122,-47,152,-47v53,0,66,29,75,79","w":818,"k":{"a":30,"c":30,"d":30,"e":30,"o":30,"q":30,"h":30,"k":30,"l":30}},"x":{"d":"280,-203r-10,0v-64,167,-136,213,-191,213v-38,0,-64,-28,-57,-64v13,-70,113,-81,129,2r10,0v25,-17,76,-73,105,-185r-79,-231r-9,-10r-90,25r0,-10v73,-34,134,-47,164,-47v53,0,62,27,76,75r34,118r10,0v65,-146,128,-193,183,-193v38,0,64,28,57,64v-13,70,-117,80,-129,-2r-10,0v-25,17,-61,64,-98,158r88,256r9,10r83,-23r0,10v-72,34,-127,47,-157,47v-54,0,-62,-28,-76,-76","w":584,"k":{"a":30,"c":30,"d":30,"e":30,"o":30,"q":30}},"y":{"d":"263,44v-64,93,-141,186,-241,186v-50,0,-72,-33,-68,-65v10,-68,135,-74,104,40v60,3,111,-60,181,-153r-124,-524r-9,-10r-86,29r0,-10v68,-34,122,-47,152,-47v53,0,66,29,75,79r65,361r10,0v52,-85,136,-207,168,-317r0,-10v-126,19,-113,-113,-36,-113v42,0,64,32,64,70v0,99,-177,372,-255,484","w":518,"k":{"a":30,"c":30,"d":30,"e":30,"o":30,"q":30,"h":30,"k":30,"l":30}},"z":{"d":"133,-101r0,10r323,-3r22,-46r9,4v-25,95,-58,186,-183,136r-189,-76r-89,81r-6,-8r381,-397r0,-10r-293,3r-22,46r-9,-4v25,-95,59,-189,183,-134r161,71r86,-77r6,7","w":493,"k":{"a":30,"c":30,"d":30,"e":30,"o":30,"q":30}},"{":{"d":"503,-855r-2,10v-81,4,-203,-1,-210,159v-2,38,10,180,0,241v-20,123,-131,146,-165,161v50,8,136,26,122,148v-6,53,-59,197,-68,235v-37,160,88,144,167,151r-1,10v-150,0,-239,-12,-220,-148v9,-69,61,-211,62,-282v1,-76,-11,-100,-102,-110r1,-9v96,-13,114,-48,135,-123v19,-71,8,-219,18,-288v19,-136,113,-155,263,-155","w":430},"|":{"d":"85,100r130,-920r15,0r-130,920r-15,0","w":215},"}":{"d":"10,260r1,-10v81,-7,203,9,210,-151v2,-38,-10,-182,-2,-235v20,-122,112,-140,165,-148v-28,-13,-136,-37,-122,-161v12,-102,89,-221,74,-319v-12,-81,-107,-78,-171,-81r2,-10v150,0,238,19,219,155v-10,69,-63,217,-64,288v-2,74,11,112,101,123r-1,9v-95,10,-113,34,-134,110v-19,71,-7,213,-16,282v-19,136,-112,148,-262,148","w":430},"~":{"d":"146,-326r-7,-4v27,-43,77,-117,123,-117v40,0,143,48,185,48v25,0,39,-6,62,-36r8,5v-27,42,-71,107,-117,107v-47,0,-135,-47,-182,-47v-34,0,-42,10,-72,44","w":550},"\u00a0":{"w":230}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (C) 2000, 2007 Hoefler & Frere-Jones. http://www.typography.com
 * 
 * Trademark:
 * Gotham is a trademark of Hoefler & Frere-Jones, which may be registered in
 * certain jurisdictions.
 * 
 * Full name:
 * Gotham-Bold
 * 
 * Manufacturer:
 * Hoefler & Frere-Jones
 * 
 * Designer:
 * Tobias Frere-Jones
 * 
 * Vendor URL:
 * www.typography.com
 * 
 * License information:
 * http://www.typography.com/support/eula.html
 */
Cufon.registerFont({"w":675,"face":{"font-family":"Gotham Bold","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"12","bbox":"-28 -798 1092 163.315","underline-thickness":"50","underline-position":"-50","stemh":"160","stemv":"152","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":300},"A":{"d":"24,0r300,-705r142,0r300,705r-161,0r-64,-157r-296,0r-64,157r-157,0xm300,-293r186,0r-93,-227","w":790},"B":{"d":"409,-700v132,0,231,60,231,183v0,79,-42,123,-92,151v82,31,132,78,131,174v0,128,-104,192,-262,192r-333,0r0,-700r325,0xm234,-417v100,-4,253,24,253,-76v0,-46,-36,-72,-101,-72r-152,0r0,148xm234,-135v110,-8,294,34,292,-78v0,-47,-35,-76,-114,-76r-178,0r0,154","w":722,"k":{"?":5,"&":-15,"v":10,"X":20,"V":20,"T":10,"W":15,"Y":30,"w":10,"y":10}},"C":{"d":"412,12v-207,0,-360,-159,-359,-362v0,-199,150,-362,365,-362v132,0,211,44,276,108r-98,113v-54,-49,-109,-79,-179,-79v-119,0,-204,98,-203,220v0,120,83,220,203,220v80,0,129,-32,184,-82r98,99v-72,77,-152,125,-287,125","w":738,"k":{"V":5,"X":10,"v":10,"x":10,"W":5,"Y":10,"w":10,"y":10,"d":10,"g":10,"q":10,"c":10,"e":10,"o":10,"-":10,"C":20,"G":20,"O":20,"Q":20}},"D":{"d":"84,0r0,-700r273,0v221,0,373,151,372,350v0,197,-152,350,-372,350r-273,0xm238,-139r119,0v127,0,212,-85,211,-211v0,-124,-85,-211,-211,-211r-119,0r0,422","w":782,"k":{"V":45,"X":55,"\\":40,"?":20,"x":10,"J":40,"}":20,"]":20,")":30,"\/":40,"T":40,"W":40,"Y":65,"A":50,"Z":40,".":40,",":40,"S":10}},"E":{"d":"84,0r0,-700r528,0r0,137r-375,0r0,142r330,0r0,137r-330,0r0,147r380,0r0,137r-533,0","w":670,"k":{"v":10,"w":10,"y":10,"d":10,"g":10,"q":10,"c":10,"e":10,"o":10}},"F":{"d":"84,0r0,-700r533,0r0,140r-379,0r0,149r334,0r0,140r-334,0r0,271r-154,0","w":656,"k":{"\/":70,"?":-10,"&":15,"v":15,"J":110,"w":10,"y":15,"A":80,"Z":10,".":100,",":100,"a":25,"d":10,"g":10,"q":10,"c":15,"e":15,"o":15,"s":10,"z":15}},"G":{"d":"421,12v-219,0,-369,-153,-368,-362v0,-199,155,-362,367,-362v126,0,202,34,275,96r-97,117v-54,-45,-102,-71,-183,-71v-113,0,-202,99,-201,220v0,128,88,222,212,222v56,0,106,-14,145,-42r0,-100r-155,0r0,-133r304,0r0,304v-72,61,-171,111,-299,111","w":784,"k":{"V":25,"X":10,"\\":15,"?":10,"v":5,"T":10,"W":20,"Y":30,"y":5,"a":-10}},"H":{"d":"84,0r0,-700r154,0r0,277r284,0r0,-277r154,0r0,700r-154,0r0,-281r-284,0r0,281r-154,0","w":760},"I":{"d":"91,0r0,-700r154,0r0,700r-154,0","w":336},"J":{"d":"491,-242v0,162,-92,251,-248,252v-109,0,-181,-48,-229,-105r97,-108v40,44,79,70,128,70v58,0,94,-35,94,-116r0,-451r158,0r0,458","w":564,"k":{"J":20,"A":25,".":15,",":15}},"K":{"d":"84,0r0,-700r154,0r0,306r284,-306r186,0r-285,297r298,403r-185,0r-217,-298r-81,84r0,214r-154,0","w":730,"k":{"V":30,"v":60,"T":10,"W":30,"Y":30,"w":50,"y":50,"A":20,"a":10,"d":25,"g":25,"q":25,"c":30,"e":30,"o":30,"f":20,"t":25,"u":20,"S":10,"-":50,"C":55,"G":55,"O":55,"Q":55,"U":15}},"L":{"d":"84,0r0,-700r154,0r0,560r349,0r0,140r-503,0","w":619,"k":{"V":115,"*":80,"\\":120,"?":60,"v":60,"T":100,"W":100,"Y":130,"w":50,"y":60,"d":5,"g":5,"q":5,"c":10,"e":10,"o":10,"f":20,"t":20,"-":40,"C":40,"G":40,"O":40,"Q":40,"U":20}},"M":{"d":"84,0r0,-700r166,0r184,296r184,-296r166,0r0,700r-153,0r0,-457r-197,299r-4,0r-195,-296r0,454r-151,0","w":868},"N":{"d":"84,0r0,-700r142,0r328,431r0,-431r152,0r0,700r-131,0r-339,-445r0,445r-152,0","w":790},"O":{"d":"424,12v-217,0,-372,-161,-371,-362v0,-199,157,-362,373,-362v217,0,372,161,371,362v0,199,-157,362,-373,362xm426,-130v125,0,211,-98,210,-220v0,-120,-88,-220,-212,-220v-125,0,-211,98,-210,220v0,120,88,220,212,220","w":850,"k":{"V":45,"X":50,"\\":40,"?":20,"x":5,"J":30,"}":20,"]":20,")":30,"\/":40,"T":30,"W":40,"Y":60,"A":45,"Z":35,".":40,",":40,"S":5}},"P":{"d":"84,0r0,-700r286,0v168,0,269,99,268,244v0,162,-126,246,-283,246r-117,0r0,210r-154,0xm238,-347r122,0v78,0,123,-46,122,-108v0,-69,-48,-106,-125,-106r-119,0r0,214","w":668,"k":{"\/":60,"v":-10,"X":30,"V":10,"J":100,"W":5,"Y":10,"w":-10,"y":-10,"A":70,"Z":15,".":100,",":100,"a":10,"c":5,"e":5,"o":5,"f":-15,"t":-15,"u":-5}},"Q":{"d":"807,-88r-98,109r-77,-69v-59,38,-130,60,-208,60v-217,0,-372,-161,-371,-362v0,-199,157,-362,373,-362v217,0,372,161,371,362v0,74,-23,143,-62,201xm214,-352v0,154,151,269,304,203r-114,-97r98,-110r115,104v62,-150,-34,-318,-193,-318v-124,0,-210,98,-210,218","w":850,"k":{")":10,"?":20,"V":45,"T":30,"W":40,"Y":65}},"R":{"d":"404,-700v158,0,263,79,264,233v0,113,-61,184,-150,217r171,250r-180,0r-150,-224r-121,0r0,224r-154,0r0,-700r320,0xm238,-360r156,0v76,0,119,-40,118,-101v0,-66,-46,-100,-121,-100r-153,0r0,201","w":723,"k":{"V":20,"J":5,"W":15,"Y":25,"d":5,"g":5,"q":5,"c":10,"e":10,"o":10,"f":-10,"t":-10}},"S":{"d":"333,10v-106,0,-213,-37,-297,-112r91,-109v63,52,129,85,209,85v64,-1,102,-24,101,-68v0,-39,-24,-59,-141,-89v-142,-36,-233,-75,-232,-216v0,-127,102,-211,245,-211v102,0,189,32,260,89r-80,116v-62,-43,-123,-69,-182,-69v-60,1,-91,26,-90,63v0,46,30,61,151,92v143,38,223,88,222,212v0,139,-106,217,-257,217","w":640,"k":{"V":30,"X":25,"\\":20,"?":10,"v":15,"x":15,"T":15,"W":25,"Y":30,"w":10,"y":15,"A":15,"Z":10,"z":5,"f":5,"t":5,"S":10}},"T":{"d":"247,0r0,-558r-213,0r0,-142r580,0r0,142r-213,0r0,558r-154,0","w":648,"k":{"v":50,"x":50,"J":110,"\/":90,"&":45,"j":10,"w":40,"y":50,"A":90,"Z":10,".":100,",":100,"a":105,"d":95,"g":95,"q":95,"c":105,"e":105,"o":105,"s":90,"z":80,"f":30,"t":20,"u":50,"S":15,":":10,";":10,"-":90,"b":5,"h":5,"k":5,"l":5,"m":60,"n":60,"p":60,"r":60,"i":10,"C":30,"G":30,"O":30,"Q":30}},"U":{"d":"376,11v-188,0,-303,-105,-303,-311r0,-400r154,0r0,396v0,114,57,173,151,173v94,0,151,-57,151,-168r0,-401r154,0r0,395v0,212,-119,316,-307,316","w":756,"k":{"X":10,"x":5,"J":20,"\/":15,"A":25,".":15,",":15}},"V":{"d":"307,5r-283,-705r170,0r183,493r183,-493r166,0r-283,705r-136,0","w":750,"k":{"\/":120,"&":40,"x":50,"v":40,"j":20,"X":20,"V":10,"J":120,"W":10,"Y":20,"w":35,"y":40,"A":100,"Z":10,".":120,",":120,"a":70,"d":65,"g":65,"q":65,"c":70,"e":70,"o":70,"s":60,"z":55,"f":25,"t":20,"u":40,"S":25,":":20,";":20,"-":40,"b":10,"h":10,"k":10,"l":10,"m":40,"n":40,"p":40,"r":40,"i":20,"C":45,"G":45,"O":45,"Q":45}},"W":{"d":"269,5r-239,-705r165,0r145,474r157,-476r132,0r157,476r145,-474r161,0r-239,705r-134,0r-158,-458r-158,458r-134,0","w":1122,"k":{"V":10,"X":15,"v":35,"x":40,"J":105,"\/":100,"&":30,"j":15,"W":10,"Y":20,"w":35,"y":35,"A":90,"Z":10,".":100,",":100,"a":70,"d":60,"g":60,"q":60,"c":65,"e":65,"o":65,"s":60,"z":55,"f":30,"t":25,"u":35,"S":20,":":15,";":15,"-":35,"b":10,"h":10,"k":10,"l":10,"m":35,"n":35,"p":35,"r":35,"i":15,"C":40,"G":40,"O":40,"Q":40}},"X":{"d":"31,0r244,-356r-234,-344r180,0r146,227r149,-227r175,0r-234,342r244,358r-180,0r-157,-240r-158,240r-175,0","w":732,"k":{"?":15,"&":10,"v":50,"j":10,"V":20,"J":10,"W":15,"Y":30,"w":40,"y":40,"A":20,"a":10,"d":40,"g":40,"q":40,"c":45,"e":45,"o":45,"f":20,"t":20,"u":20,"S":30,"-":50,"b":10,"h":10,"k":10,"l":10,"i":10,"C":50,"G":50,"O":50,"Q":50,"U":10}},"Y":{"d":"281,0r0,-276r-269,-424r180,0r167,281r170,-281r175,0r-269,421r0,279r-154,0","w":716,"k":{"V":20,"X":30,"v":60,"x":70,"J":130,"\/":110,"&":55,"j":20,"W":20,"Y":20,"w":55,"y":60,"A":110,"Z":10,".":130,",":130,"a":100,"d":105,"g":105,"q":105,"c":110,"e":110,"o":110,"s":100,"z":80,"f":40,"t":30,"u":75,"S":35,":":40,";":40,"-":80,"b":10,"h":10,"k":10,"l":10,"m":75,"n":75,"p":75,"r":75,"i":20,"C":60,"G":60,"O":60,"Q":60}},"Z":{"d":"63,0r0,-117r385,-448r-373,0r0,-135r571,0r0,117r-385,448r385,0r0,135r-583,0","w":708,"k":{"v":20,"w":15,"y":15,"Z":10,"d":20,"g":20,"q":20,"c":25,"e":25,"o":25,"f":10,"S":10,"-":30,"C":35,"G":35,"O":35,"Q":35}},"a":{"d":"290,-542v160,-1,238,80,239,231r0,311r-147,0r0,-58v-37,41,-88,68,-162,68v-102,0,-185,-58,-184,-166v0,-117,89,-171,216,-171v54,0,93,9,131,22v3,-71,-36,-106,-115,-107v-58,0,-99,11,-148,29r-38,-116v59,-26,117,-43,208,-43xm266,-95v81,0,128,-43,119,-121v-62,-33,-202,-31,-202,56v0,41,34,65,83,65","w":592,"k":{"*":15,"\\":75,"?":35,"v":20,"w":20,"y":20,"t":5}},"b":{"d":"387,10v-81,0,-131,-37,-167,-80r0,70r-152,0r0,-730r152,0r0,271v37,-50,88,-87,167,-87v125,0,245,99,244,279v0,179,-117,277,-244,277xm348,-119v72,0,132,-59,131,-150v0,-89,-60,-148,-131,-148v-72,0,-131,60,-130,150v0,89,59,148,130,148","k":{"*":15,"\\":70,"?":35,"v":25,"x":30,"}":15,"]":20,")":30,"w":20,"y":25,".":10,",":10,"z":15}},"c":{"d":"321,12v-162,0,-280,-124,-279,-279v0,-153,117,-279,281,-279v101,0,164,34,214,90r-93,100v-34,-36,-68,-59,-122,-59v-77,0,-131,67,-130,148v0,82,53,148,136,148v51,0,86,-22,123,-57r89,90v-52,57,-112,98,-219,98","w":571,"k":{"\\":40,"?":15,"v":5,"x":10,")":15,"w":5,"y":5,"d":10,"g":10,"q":10,"c":15,"e":15,"o":15}},"d":{"d":"288,10v-125,0,-245,-99,-244,-279v0,-179,117,-277,244,-277v81,0,131,37,167,80r0,-264r152,0r0,730r-152,0r0,-77v-37,50,-88,87,-167,87xm327,-119v72,0,131,-60,130,-150v0,-89,-59,-148,-130,-148v-72,0,-132,59,-131,150v0,89,60,148,131,148"},"e":{"d":"322,12v-162,0,-281,-113,-280,-279v0,-153,109,-279,265,-279v192,0,274,153,259,331r-373,0v23,124,182,135,261,50r87,77v-50,62,-122,100,-219,100xm191,-310r229,0v-9,-68,-49,-114,-113,-114v-63,0,-104,45,-116,114","w":613,"k":{"*":20,"\\":80,"?":40,"v":25,"x":30,"}":10,"]":20,")":30,"w":25,"y":25,".":10,",":10,"z":15}},"f":{"d":"94,-531v-8,-133,42,-207,166,-206v48,0,80,6,108,15r0,126v-56,-23,-140,-22,-124,66r123,0r0,124r-121,0r0,406r-152,0r0,-406r-63,0r0,-125r63,0","w":382,"k":{"*":-30,"\\":-30,"?":-35,"}":-30,"]":-20,")":-30,"\/":45,".":45,",":45,"a":15,"d":10,"g":10,"q":10,"c":10,"e":10,"o":10,"z":10}},"g":{"d":"607,-121v0,201,-99,283,-299,283v-87,0,-169,-20,-237,-56r52,-114v55,31,110,49,181,49v114,0,159,-59,153,-172v-45,54,-94,87,-175,87v-126,0,-239,-92,-238,-252v0,-160,115,-250,238,-250v83,0,132,35,173,80r0,-70r152,0r0,415xm326,-170v75,0,132,-51,131,-126v0,-73,-57,-124,-131,-124v-75,0,-131,51,-130,126v0,74,56,124,130,124","k":{"\\":50}},"h":{"d":"68,0r0,-730r152,0r0,270v35,-45,80,-86,157,-86v115,0,182,76,182,199r0,347r-152,0r0,-299v0,-72,-34,-109,-92,-109v-58,0,-95,37,-95,109r0,299r-152,0","w":623,"k":{"*":15,"\\":75,"?":30,"v":20,"w":15,"y":15}},"i":{"d":"71,-595r0,-135r160,0r0,135r-160,0xm75,0r0,-536r152,0r0,536r-152,0","w":302},"j":{"d":"71,-595r0,-135r160,0r0,135r-160,0xm227,-9v6,143,-102,191,-238,166r0,-119v49,9,86,0,86,-59r0,-515r152,0r0,527","w":302},"k":{"d":"68,0r0,-730r152,0r0,389r178,-195r182,0r-204,211r211,325r-174,0r-140,-219r-53,56r0,163r-152,0","w":592,"k":{"\\":40,"v":20,"w":20,"y":15,"a":10,"d":25,"g":25,"q":25,"c":25,"e":25,"o":25,"t":10,"u":10,"-":20}},"l":{"d":"75,0r0,-730r152,0r0,730r-152,0","w":302},"m":{"d":"68,0r0,-536r152,0r0,76v35,-45,81,-86,158,-86v70,0,123,31,151,85v47,-55,103,-85,176,-85v113,0,181,68,181,197r0,349r-152,0r0,-299v0,-72,-32,-109,-89,-109v-57,0,-92,37,-92,109r0,299r-152,0r0,-299v0,-72,-32,-109,-89,-109v-57,0,-92,37,-92,109r0,299r-152,0","w":950,"k":{"*":15,"\\":75,"?":30,"v":20,"w":15,"y":15}},"n":{"d":"68,0r0,-536r152,0r0,76v35,-45,80,-86,157,-86v115,0,182,76,182,199r0,347r-152,0r0,-299v0,-72,-34,-109,-92,-109v-58,0,-95,37,-95,109r0,299r-152,0","w":623,"k":{"*":15,"\\":75,"?":30,"v":20,"w":15,"y":15}},"o":{"d":"331,12v-167,0,-290,-123,-289,-279v0,-154,124,-279,291,-279v167,0,290,123,289,279v0,154,-124,279,-291,279xm333,-119v88,0,140,-67,139,-148v0,-79,-57,-148,-141,-148v-88,0,-140,67,-139,148v0,79,57,148,141,148","w":664,"k":{"*":20,"\\":80,"?":50,"v":30,"x":35,"}":15,"]":20,")":30,"w":25,"y":30,".":20,",":20,"z":20}},"p":{"d":"68,160r0,-696r152,0r0,77v37,-50,88,-87,167,-87v125,0,245,99,244,279v0,179,-117,277,-244,277v-81,0,-131,-37,-167,-80r0,230r-152,0xm348,-119v72,0,132,-59,131,-150v0,-89,-60,-148,-131,-148v-72,0,-131,60,-130,150v0,89,59,148,130,148","k":{"*":15,"\\":70,"?":35,"v":25,"x":30,"}":15,"]":20,")":30,"w":20,"y":25,".":10,",":10,"z":15}},"q":{"d":"455,160r0,-237v-37,50,-88,87,-167,87v-125,0,-245,-99,-244,-279v0,-179,117,-277,244,-277v81,0,131,37,167,80r0,-70r152,0r0,696r-152,0xm327,-119v72,0,131,-60,130,-150v0,-89,-59,-148,-130,-148v-72,0,-132,59,-131,150v0,89,60,148,131,148","k":{"\\":50}},"r":{"d":"68,0r0,-536r152,0r0,108v31,-74,81,-122,171,-118r0,159v-109,-3,-171,58,-171,189r0,198r-152,0","w":418,"k":{"*":-20,"\\":30,"\/":75,".":90,",":90,"a":25,"d":10,"g":10,"q":10,"c":15,"e":15,"o":15,"z":10}},"s":{"d":"256,10v-75,0,-159,-25,-230,-81r65,-100v58,42,119,64,169,64v45,-1,65,-15,64,-42v0,-33,-52,-44,-111,-62v-75,-22,-160,-57,-160,-163v0,-109,88,-170,196,-170v68,0,142,23,200,62r-58,105v-53,-31,-106,-50,-145,-50v-38,1,-57,15,-56,39v0,30,51,44,109,64v75,25,162,61,162,161v0,119,-89,173,-205,173","w":502,"k":{"\\":75,"?":35,"v":20,"x":25,"}":10,"]":15,")":20,"w":15,"y":15,"s":10,"z":10,"t":10}},"t":{"d":"249,9v-93,0,-156,-37,-156,-161r0,-254r-64,0r0,-130r64,0r0,-137r152,0r0,137r126,0r0,130r-126,0r0,229v-5,70,84,56,124,33r0,122v-32,19,-69,31,-120,31","w":415,"k":{"\\":40,"d":15,"g":15,"q":15,"c":15,"e":15,"o":15}},"u":{"d":"246,10v-115,0,-182,-76,-182,-199r0,-347r152,0r0,299v0,72,34,109,92,109v58,0,95,-37,95,-109r0,-299r152,0r0,536r-152,0r0,-76v-35,45,-80,86,-157,86","w":623,"k":{"\\":50}},"v":{"d":"231,4r-211,-540r161,0r120,359r121,-359r158,0r-211,540r-138,0","w":600,"k":{"}":10,"]":20,"\\":50,"\/":70,"?":10,"x":10,"v":15,"w":15,"y":15,".":85,",":85,"a":25,"d":25,"g":25,"q":25,"c":30,"e":30,"o":30,"s":20,"z":5,"-":15}},"w":{"d":"189,4r-165,-540r154,0r86,325r101,-327r131,0r102,328r88,-326r151,0r-167,540r-137,0r-103,-329r-105,329r-136,0","w":861,"k":{"\\":50,"?":10,"v":15,"x":10,"}":10,"]":20,"\/":60,"w":10,"y":10,".":70,",":70,"a":20,"d":20,"g":20,"q":20,"c":25,"e":25,"o":25,"s":15,"z":5,"-":10}},"x":{"d":"398,0r-108,-167r-108,167r-159,0r188,-272r-181,-264r163,0r100,157r101,-157r159,0r-181,262r189,274r-163,0","w":584,"k":{"}":10,"]":10,"\\":50,"?":15,"v":10,"w":10,"y":10,"a":15,"d":30,"g":30,"q":30,"c":35,"e":35,"o":35,"s":20,"-":30}},"y":{"d":"196,163v-55,0,-96,-14,-135,-37r51,-110v41,24,97,38,118,-14r-210,-538r161,0r122,365r117,-365r158,0r-206,549v-41,109,-85,150,-176,150","w":600,"k":{"\\":50,"?":10,"v":15,"x":10,"}":10,"]":20,"\/":70,"w":10,"y":10,".":85,",":85,"a":25,"d":25,"g":25,"q":25,"c":30,"e":30,"o":30,"s":20,"z":5,"-":15}},"z":{"d":"50,0r0,-107r277,-306r-268,0r0,-123r457,0r0,107r-278,306r278,0r0,123r-466,0","w":563,"k":{"\\":45,"d":15,"g":15,"q":15,"c":15,"e":15,"o":15}},"0":{"d":"364,12v-188,0,-311,-158,-310,-362v0,-203,126,-362,312,-362v186,0,311,158,310,362v0,203,-125,362,-312,362xm366,-127v94,0,153,-95,152,-223v0,-127,-62,-223,-154,-223v-92,0,-153,94,-152,223v0,128,61,223,154,223","w":730,"k":{"\/":35,"7":25,"3":10,"2":10,"1":5,".":20,",":20}},"1":{"d":"178,0r0,-549r-122,30r-32,-126r201,-60r105,0r0,705r-152,0","w":422},"2":{"d":"49,0r0,-122r233,-191v87,-72,121,-110,121,-168v0,-59,-39,-91,-94,-91v-54,0,-91,30,-143,94r-108,-87v69,-94,136,-145,261,-145v146,0,242,85,241,218v0,117,-60,175,-184,271r-114,88r305,0r0,133r-518,0","w":623,"k":{"7":5,"4":15}},"3":{"d":"311,12v-126,0,-213,-50,-273,-121r106,-101v48,54,98,84,169,84v59,0,99,-33,99,-87v0,-77,-101,-97,-201,-89r-24,-98r167,-168r-275,0r0,-132r473,0r0,116r-177,169v96,16,189,67,188,198v0,132,-96,229,-252,229","w":621,"k":{"\/":10,"9":5,"7":20,"5":5}},"4":{"d":"398,0r0,-151r-342,0r-25,-109r384,-445r130,0r0,429r94,0r0,125r-94,0r0,151r-147,0xm212,-276r186,0r0,-218","w":689,"k":{"\/":20,"9":10,"7":30,"1":20}},"5":{"d":"305,12v-112,0,-194,-40,-262,-105r93,-111v53,48,105,76,167,76v73,0,117,-35,117,-99v0,-106,-164,-112,-241,-69r-89,-59r20,-345r430,0r0,135r-298,0r-8,121v167,-40,337,20,337,214v0,148,-105,242,-266,242","w":630,"k":{"\/":20,"9":5,"7":30,"3":5,"2":10}},"6":{"d":"339,12v-91,0,-153,-26,-202,-75v-51,-51,-83,-128,-83,-267v0,-216,98,-382,307,-382v95,0,157,28,219,77r-81,119v-46,-35,-83,-56,-143,-56v-87,0,-131,70,-141,162v35,-23,76,-45,145,-45v140,0,247,77,246,225v0,143,-115,242,-267,242xm333,-120v77,0,121,-43,120,-105v0,-59,-46,-102,-122,-102v-77,0,-121,42,-120,103v0,59,46,104,122,104","w":662,"k":{"\/":10,"9":10,"7":15,"3":10,"1":10}},"7":{"d":"84,0r313,-567r-329,0r0,-133r504,0r0,116r-314,584r-174,0","w":619,"k":{"\/":140,"9":15,"8":10,"6":20,"5":25,"4":85,"3":20,"2":15,"1":-10,"0":20,".":100,",":100,"-":30}},"8":{"d":"315,10v-156,-1,-271,-80,-270,-204v0,-85,39,-135,113,-169v-54,-33,-90,-78,-89,-155v0,-107,98,-192,246,-192v149,1,247,84,246,194v0,75,-35,120,-89,153v72,38,114,82,113,167v0,130,-115,206,-270,206xm315,-414v62,0,101,-36,100,-87v0,-43,-37,-82,-100,-82v-64,1,-101,38,-100,83v0,49,39,86,100,86xm315,-117v77,-1,122,-37,121,-89v0,-54,-51,-86,-121,-86v-71,0,-122,32,-121,88v0,48,45,87,121,87","w":630,"k":{"9":5,"7":10}},"9":{"d":"302,12v-102,0,-171,-34,-230,-83r81,-117v51,41,94,60,153,60v86,0,132,-65,142,-159v-34,29,-81,48,-142,48v-153,0,-251,-84,-250,-228v0,-141,109,-245,267,-245v94,0,149,23,202,76v50,50,83,128,83,266v0,227,-107,382,-306,382xm331,-367v77,0,121,-44,120,-106v0,-62,-46,-107,-123,-107v-77,0,-120,44,-119,108v0,62,46,105,122,105","w":662,"k":{"\/":25,"7":10,"5":5,"3":10,"2":10,".":10,",":10}},".":{"d":"62,0r0,-160r162,0r0,160r-162,0","w":286,"k":{"V":120,"v":85,"j":-15,"1":50,"7":20,"0":20,"T":100,"W":100,"Y":130,"w":70,"y":60,"d":10,"g":10,"q":10,"c":20,"e":20,"o":20,"f":15,"t":25,"C":40,"G":40,"O":40,"Q":40,"U":15}},",":{"d":"39,162r-13,-63v69,-7,103,-42,98,-99r-62,0r0,-160r162,0r0,135v0,132,-66,185,-185,187","w":286,"k":{"y":60,"V":120,"v":85,"j":-15,"1":50,"7":20,"0":20,"T":100,"W":100,"Y":130,"w":70,"d":10,"g":10,"q":10,"c":20,"e":20,"o":20,"f":15,"t":25,"C":40,"G":40,"O":40,"Q":40,"U":15}},":":{"d":"67,-376r0,-160r162,0r0,160r-162,0xm67,0r0,-160r162,0r0,160r-162,0","w":296,"k":{"V":20,"T":10,"W":15,"Y":40}},";":{"d":"67,-376r0,-160r162,0r0,160r-162,0xm44,162r-13,-63v69,-7,103,-42,98,-99r-62,0r0,-160r162,0r0,135v0,132,-66,185,-185,187","w":296,"k":{"V":20,"T":10,"W":15,"Y":40}},"&":{"d":"555,14r-81,-82v-57,47,-124,78,-205,78v-135,0,-236,-78,-235,-204v0,-89,48,-152,136,-192v-105,-139,-39,-326,163,-326v120,0,198,78,197,178v0,94,-60,149,-147,183r93,93v23,-36,46,-77,68,-120r113,62v-27,49,-57,101,-92,148r103,103xm303,-432v62,-24,94,-48,93,-95v0,-40,-27,-65,-66,-65v-42,0,-69,29,-68,73v0,31,12,54,41,87xm287,-116v35,0,69,-15,101,-40r-134,-136v-99,43,-82,177,33,176","w":696,"k":{"V":55,"T":50,"W":45,"Y":60}},"!":{"d":"120,-238r-47,-442r0,-20r178,0r0,20r-47,442r-84,0xm81,0r0,-160r162,0r0,160r-162,0","w":324},"?":{"d":"197,-238r-23,-162r5,-5v127,-6,176,-37,175,-93v0,-45,-34,-71,-92,-71v-56,0,-104,23,-150,69r-92,-101v58,-64,136,-108,245,-108v145,0,243,74,242,209v0,127,-88,179,-197,201r-11,61r-102,0xm164,0r0,-160r162,0r0,160r-162,0","w":544},"-":{"d":"50,-237r0,-146r308,0r0,146r-308,0","w":408,"k":{"V":40,"X":50,"v":15,"x":30,"1":30,"7":40,"3":10,"T":90,"W":35,"Y":80,"w":10,"y":15,"A":40,"Z":30,"z":10}},"_":{"d":"-2,160r0,-116r604,0r0,116r-604,0","w":600},"\/":{"d":"-28,128r443,-926r129,0r-443,926r-129,0","w":530,"k":{"\/":160,"9":20,"8":15,"7":10,"6":35,"5":20,"4":95,"3":10,"2":20,"1":-10,"0":35,"x":50,"v":50,"J":130,"w":50,"y":50,"A":120,"Z":20,"a":65,"d":70,"g":70,"q":70,"c":80,"e":80,"o":80,"s":85,"z":60,"f":25,"t":20,"u":50,"S":30,"m":50,"n":50,"p":50,"r":50,"C":40,"G":40,"O":40,"Q":40}},"\\":{"d":"429,128r-443,-926r129,0r443,926r-129,0","w":530,"k":{"v":70,"j":-30,"V":120,"T":90,"W":100,"Y":110,"w":60,"y":60,"f":10,"t":30,"C":40,"G":40,"O":40,"Q":40,"U":15}},"|":{"d":"115,128r0,-926r120,0r0,926r-120,0","w":350},"(":{"d":"336,141v-184,-100,-277,-236,-277,-428v0,-192,93,-328,277,-428r67,101v-135,94,-193,186,-193,327v0,141,58,233,193,327","w":445,"k":{"j":-30,"g":30,"J":15,"d":30,"q":30,"c":30,"e":30,"o":30,"s":15,"C":30,"G":30,"O":30,"Q":30}},")":{"d":"109,141r-67,-101v135,-94,193,-186,193,-327v0,-141,-58,-233,-193,-327r67,-101v184,100,277,236,277,428v0,192,-93,328,-277,428","w":445},"[":{"d":"83,130r0,-830r323,0r0,119r-177,0r0,592r177,0r0,119r-323,0","w":465,"k":{"x":10,"v":20,"j":-30,"J":10,"w":20,"y":10,"a":10,"d":20,"g":20,"q":20,"c":20,"e":20,"o":20,"s":15,"C":20,"G":20,"O":20,"Q":20}},"]":{"d":"59,130r0,-119r177,0r0,-592r-177,0r0,-119r323,0r0,830r-323,0","w":465},"{":{"d":"416,141v-214,-45,-242,-99,-231,-267v6,-88,-46,-107,-136,-103r0,-116v89,4,142,-15,136,-103v-11,-167,16,-222,231,-267r27,101v-140,39,-119,75,-119,193v0,73,-37,112,-104,134v93,25,101,97,101,208v0,61,16,89,122,119","w":490,"k":{"x":10,"v":10,"j":-35,"g":15,"J":10,"w":10,"y":10,"d":15,"q":15,"c":15,"e":15,"o":15,"s":10,"z":10,"C":20,"G":20,"O":20,"Q":20}},"}":{"d":"74,141r-27,-101v140,-39,119,-75,119,-193v0,-73,37,-112,104,-134v-93,-25,-101,-97,-101,-208v0,-61,-16,-89,-122,-119r27,-101v214,45,242,99,231,267v-6,88,46,107,136,103r0,116v-89,-4,-142,15,-136,103v11,167,-16,222,-231,267","w":490},"@":{"d":"499,162v-256,0,-446,-197,-446,-436v0,-239,193,-438,438,-438v245,0,436,191,436,396v0,167,-89,251,-199,251v-81,0,-128,-31,-153,-60v-34,31,-83,60,-148,60v-102,0,-183,-74,-183,-193v0,-141,107,-251,224,-251v69,0,110,30,138,68r11,-53r118,19r-47,269v-12,55,11,94,70,94v71,0,127,-71,127,-204v0,-185,-169,-356,-394,-356v-226,0,-396,179,-396,398v0,220,168,396,404,396v99,0,170,-23,245,-67r20,32v-77,47,-161,75,-265,75xm462,-168v63,0,119,-62,119,-144v0,-57,-39,-94,-93,-94v-65,0,-120,61,-120,141v0,62,39,97,94,97","w":980},"*":{"d":"174,-372r16,-120r-97,74r-42,-72r112,-47r-112,-47r42,-72r97,74r-16,-120r82,0r-16,120r97,-74r42,72r-112,47r112,47r-42,72r-97,-74r16,120r-82,0","w":430,"k":{"J":80,"A":100,"a":10,"d":15,"g":15,"q":15,"c":20,"e":20,"o":20,"s":10,"t":-10}},"$":{"d":"280,98r0,-101v-86,-11,-170,-45,-236,-95r78,-114v54,41,104,69,163,81r0,-159v-145,-40,-216,-93,-215,-214v0,-110,84,-183,210,-196r0,-58r104,0r0,61v71,9,131,35,186,73r-67,117v-40,-27,-83,-48,-124,-59r0,152v153,42,218,102,217,216v0,112,-86,184,-212,197r0,99r-104,0xm450,-190v0,-36,-16,-55,-71,-76r0,140v47,-7,71,-28,71,-64xm216,-513v0,35,13,53,69,74r0,-136v-49,6,-69,30,-69,62","w":646,"k":{"7":10}},"#":{"d":"630,-278r0,128r-111,0r-25,150r-132,0r25,-150r-144,0r-26,150r-132,0r25,-150r-75,0r0,-128r97,0r26,-148r-88,0r0,-128r110,0r25,-146r132,0r-25,146r145,0r25,-146r132,0r-25,146r76,0r0,128r-98,0r-26,148r89,0xm287,-430r-26,156r151,0r26,-156r-151,0","w":700},"%":{"d":"214,-350v-102,0,-170,-79,-169,-179v0,-99,69,-179,171,-179v102,0,170,79,169,179v0,98,-69,179,-171,179xm216,-441v43,0,65,-42,64,-88v0,-47,-26,-88,-66,-88v-43,0,-65,41,-64,88v0,47,26,88,66,88xm395,-377r231,-323r119,0r-280,377r-231,323r-119,0xm644,8v-102,0,-170,-79,-169,-179v0,-99,69,-179,171,-179v102,0,170,79,169,179v0,98,-69,179,-171,179xm646,-83v43,0,65,-42,64,-88v0,-47,-26,-88,-66,-88v-43,0,-65,41,-64,88v0,47,26,88,66,88","w":860},"\"":{"d":"293,-381r18,-319r168,0r-109,319r-77,0xm57,-381r18,-319r168,0r-109,319r-77,0","w":520},"'":{"d":"57,-381r18,-319r170,0r-109,319r-79,0","w":286},"+":{"d":"249,-103r0,-180r-181,0r0,-138r181,0r0,-180r142,0r0,180r181,0r0,138r-181,0r0,180r-142,0","w":640},"=":{"d":"73,-413r0,-138r494,0r0,138r-494,0xm73,-153r0,-138r494,0r0,138r-494,0","w":640},"<":{"d":"552,-71r-484,-212r0,-138r484,-212r0,141r-338,139r338,139r0,143","w":640},">":{"d":"88,-71r0,-141r338,-139r-338,-139r0,-143r484,212r0,138","w":640},"^":{"d":"50,-493r148,-207r104,0r148,207r-110,0r-91,-117r-91,117r-108,0","w":500},"~":{"d":"130,-224r-81,-25v23,-84,54,-138,124,-138v95,0,169,90,207,-10r81,25v-23,84,-54,138,-124,138v-95,0,-169,-90,-207,10","w":510},"`":{"d":"240,-595r-130,-120r131,-57r111,177r-112,0","w":500},"\u00a0":{"w":300}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (C) 2000, 2007 Hoefler & Frere-Jones. http://www.typography.com
 * 
 * Trademark:
 * Gotham is a trademark of Hoefler & Frere-Jones, which may be registered in
 * certain jurisdictions.
 * 
 * Full name:
 * Gotham-Medium
 * 
 * Manufacturer:
 * Hoefler & Frere-Jones
 * 
 * Designer:
 * Tobias Frere-Jones
 * 
 * Vendor URL:
 * www.typography.com
 * 
 * License information:
 * http://www.typography.com/support/eula.html
 */
Cufon.registerFont({"w":670,"face":{"font-family":"Gotham Medium","font-weight":350,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 6 4 3 0 0 2 0 4","ascent":"800","descent":"-200","x-height":"12","bbox":"-25 -798 1080 163.075","underline-thickness":"20","underline-position":"-113","stemh":"112","stemv":"121","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":300},"A":{"d":"30,0r308,-705r114,0r308,705r-130,0r-71,-169r-331,0r-72,169r-126,0xm273,-278r241,0r-121,-280","w":790},"B":{"d":"404,-700v130,0,230,58,230,180v0,84,-48,129,-100,156v83,28,140,75,139,172v0,125,-103,192,-259,192r-324,0r0,-700r314,0xm211,-405r168,0v80,0,133,-31,132,-97v0,-55,-44,-89,-123,-89r-177,0r0,186xm211,-109r204,0v85,0,136,-33,135,-98v0,-59,-47,-94,-144,-94r-195,0r0,192","w":722,"k":{"?":5,"&":-10,"v":10,"X":20,"V":20,"T":13,"W":15,"Y":30,"w":10,"y":10}},"C":{"d":"415,12v-205,0,-357,-159,-356,-362v0,-199,149,-362,361,-362v129,0,207,45,274,109r-79,91v-56,-52,-116,-87,-196,-87v-135,0,-232,110,-231,249v0,137,97,249,231,249v86,0,141,-35,201,-91r79,80v-73,76,-153,124,-284,124","w":738,"k":{"V":3,"X":10,"v":10,"x":10,"W":3,"Y":10,"w":10,"y":10,"d":10,"g":10,"q":10,"c":10,"e":10,"o":10,"C":20,"G":20,"O":20,"Q":20,"-":10}},"D":{"d":"90,0r0,-700r261,0v221,0,373,151,372,350v0,197,-152,350,-372,350r-261,0xm213,-112r138,0v148,0,244,-99,243,-238v0,-137,-96,-238,-243,-238r-138,0r0,476","w":782,"k":{"V":45,"X":55,"\\":40,"?":20,"x":10,"J":40,"}":20,"]":20,")":30,"\/":40,"T":45,"W":38,"Y":65,"A":48,"Z":42,".":40,",":40,"S":10}},"E":{"d":"90,0r0,-700r519,0r0,110r-396,0r0,182r351,0r0,110r-351,0r0,188r401,0r0,110r-524,0","k":{"v":10,"w":10,"y":10,"d":10,"g":10,"q":10,"c":10,"e":10,"o":10}},"F":{"d":"90,0r0,-700r521,0r0,112r-398,0r0,191r353,0r0,112r-353,0r0,285r-123,0","w":656,"k":{"\/":70,"?":-10,"&":20,"v":15,"J":110,"w":10,"y":15,"A":80,"Z":10,".":100,",":100,"a":25,"d":10,"g":10,"q":10,"c":15,"e":15,"o":15,"C":6,"G":6,"O":6,"Q":6,"s":10,"z":15}},"G":{"d":"422,12v-220,0,-364,-156,-363,-362v0,-196,150,-362,361,-362v122,0,197,34,269,95r-78,93v-54,-46,-107,-75,-196,-75v-130,0,-228,113,-227,249v0,144,95,250,238,250v66,0,126,-21,169,-53r0,-131r-179,0r0,-107r298,0r0,294v-69,59,-168,109,-292,109","w":784,"k":{"V":23,"X":10,"\\":15,"?":10,"v":5,"T":13,"W":18,"Y":30,"y":5,"a":-10}},"H":{"d":"90,0r0,-700r123,0r0,291r334,0r0,-291r123,0r0,700r-123,0r0,-295r-334,0r0,295r-123,0","w":760},"I":{"d":"97,0r0,-700r123,0r0,700r-123,0","w":317},"J":{"d":"480,-238v1,157,-86,248,-235,248v-108,0,-178,-50,-224,-113r81,-83v41,52,82,82,141,82v66,0,111,-44,111,-137r0,-459r126,0r0,462","w":559,"k":{"J":20,"A":25,".":15,",":15}},"K":{"d":"90,0r0,-700r123,0r0,352r333,-352r151,0r-291,301r304,399r-149,0r-239,-315r-109,112r0,203r-123,0","w":725,"k":{"V":30,"v":60,"&":3,"T":10,"W":30,"Y":33,"w":50,"y":50,"A":14,"a":10,"d":25,"g":25,"q":25,"c":30,"e":30,"o":30,"C":53,"G":53,"O":53,"Q":53,"f":20,"t":25,"u":20,"S":10,"-":50,"U":15}},"L":{"d":"90,0r0,-700r123,0r0,588r368,0r0,112r-491,0","w":619,"k":{"V":115,"*":80,"\\":120,"?":60,"v":60,"&":3,"T":100,"W":100,"Y":130,"w":50,"y":60,"d":5,"g":5,"q":5,"c":10,"e":10,"o":10,"C":40,"G":40,"O":40,"Q":40,"f":20,"t":20,"-":40,"U":20}},"M":{"d":"90,0r0,-700r131,0r213,331r213,-331r131,0r0,700r-123,0r0,-502r-221,330r-4,0r-219,-328r0,500r-121,0","w":868},"N":{"d":"90,0r0,-700r114,0r375,484r0,-484r121,0r0,700r-103,0r-386,-498r0,498r-121,0","w":790},"O":{"d":"424,12v-216,0,-366,-163,-365,-362v0,-197,152,-362,367,-362v216,0,366,163,365,362v0,197,-152,362,-367,362xm426,-101v140,0,237,-111,236,-249v0,-136,-99,-249,-238,-249v-140,0,-237,111,-236,249v0,136,99,249,238,249","w":850,"k":{"V":43,"X":50,"\\":40,"?":20,"x":5,"J":30,"}":20,"]":20,")":30,"\/":40,"T":38,"W":38,"Y":60,"A":43,"Z":37,".":40,",":40,"S":5}},"P":{"d":"90,0r0,-700r276,0v164,0,267,93,266,236v0,157,-126,239,-280,239r-139,0r0,225r-123,0xm213,-336r143,0v94,0,152,-52,151,-127v0,-82,-59,-125,-151,-125r-143,0r0,252","w":668,"k":{"\/":60,"&":6,"v":-10,"X":30,"V":10,"J":100,"W":5,"Y":10,"w":-10,"y":-10,"A":70,"Z":15,".":100,",":100,"a":10,"c":5,"e":5,"o":5,"f":-15,"t":-15,"u":-5}},"Q":{"d":"721,21r-84,-75v-59,42,-131,66,-213,66v-216,0,-366,-163,-365,-362v0,-197,152,-362,367,-362v216,0,366,163,365,362v0,79,-25,154,-71,215r80,68xm426,-101v46,0,87,-13,120,-34r-120,-102r79,-90r121,110v97,-159,-13,-387,-202,-382v-140,4,-237,111,-236,249v0,136,99,249,238,249","w":850,"k":{")":10,"?":20,"V":43,"T":38,"W":38,"Y":65}},"R":{"d":"402,-700v154,0,260,76,260,223v0,115,-69,184,-167,212r189,265r-145,0r-172,-244r-154,0r0,244r-123,0r0,-700r312,0xm213,-353r180,0v89,0,145,-46,144,-119v0,-75,-54,-116,-145,-116r-179,0r0,235","w":723,"k":{"V":20,"J":5,"T":3,"W":15,"Y":25,"d":5,"g":5,"q":5,"c":10,"e":10,"o":10,"f":-10,"t":-10}},"S":{"d":"335,10v-107,0,-208,-37,-292,-112r74,-88v67,58,134,91,221,91v77,-1,125,-35,124,-90v0,-50,-28,-76,-158,-107v-150,-36,-234,-80,-233,-211v0,-120,100,-203,239,-203v102,0,183,31,254,88r-66,93v-63,-47,-126,-72,-190,-72v-73,1,-115,36,-114,85v0,54,32,78,166,110v149,37,226,89,225,207v0,131,-103,209,-250,209","w":640,"k":{"V":30,"X":25,"\\":20,"?":10,"v":15,"x":15,"T":15,"W":25,"Y":30,"w":10,"y":15,"A":15,"Z":10,"z":5,"f":5,"t":5,"S":10}},"T":{"d":"262,0r0,-586r-222,0r0,-114r568,0r0,114r-222,0r0,586r-124,0","w":648,"k":{"v":65,"x":65,"J":110,"\/":90,"&":53,"j":19,"w":58,"y":65,"A":90,"Z":13,".":100,",":100,"a":114,"d":104,"g":104,"q":104,"c":114,"e":114,"o":114,"C":38,"G":38,"O":38,"Q":38,"s":98,"z":89,"f":36,"t":29,"u":65,"S":15,":":22,";":22,"-":90,"b":10,"h":10,"k":10,"l":10,"m":72,"n":72,"p":72,"r":72,"i":19}},"U":{"d":"377,11v-182,0,-298,-105,-298,-308r0,-403r123,0r0,398v0,130,67,200,177,200v109,0,176,-66,176,-195r0,-403r123,0r0,397v0,209,-118,314,-301,314","w":757,"k":{"X":10,"x":5,"J":20,"\/":15,"A":25,".":15,",":15}},"V":{"d":"321,5r-291,-705r136,0r211,538r210,-538r133,0r-291,705r-108,0","w":750,"k":{"\/":120,"&":45,"x":50,"v":40,"j":20,"X":20,"V":10,"J":120,"W":10,"Y":20,"w":35,"y":40,"A":100,"Z":10,".":120,",":120,"a":70,"d":65,"g":65,"q":65,"c":70,"e":70,"o":70,"C":43,"G":43,"O":43,"Q":43,"s":60,"z":55,"f":25,"t":20,"u":40,"S":25,":":20,";":20,"-":40,"b":10,"h":10,"k":10,"l":10,"m":40,"n":40,"p":40,"r":40,"i":20}},"W":{"d":"280,5r-244,-705r133,0r167,519r172,-521r104,0r172,521r167,-519r129,0r-244,705r-106,0r-172,-503r-172,503r-106,0","w":1116,"k":{"V":10,"X":15,"v":35,"x":40,"J":105,"\/":100,"&":35,"j":15,"W":10,"Y":20,"w":35,"y":35,"A":90,"Z":10,".":100,",":100,"a":70,"d":60,"g":60,"q":60,"c":65,"e":65,"o":65,"C":38,"G":38,"O":38,"Q":38,"s":60,"z":55,"f":30,"t":25,"u":35,"S":20,":":15,";":15,"-":35,"b":10,"h":10,"k":10,"l":10,"m":35,"n":35,"p":35,"r":35,"i":15}},"X":{"d":"37,0r255,-356r-245,-344r145,0r174,251r175,-251r141,0r-244,342r254,358r-145,0r-184,-265r-185,265r-141,0","w":729,"k":{"?":15,"&":10,"v":50,"j":10,"V":20,"J":10,"W":15,"Y":27,"w":40,"y":40,"A":14,"a":10,"d":40,"g":40,"q":40,"c":45,"e":45,"o":45,"C":50,"G":50,"O":50,"Q":50,"f":20,"t":20,"u":20,"S":30,"-":50,"b":10,"h":10,"k":10,"l":10,"i":10,"U":10}},"Y":{"d":"296,0r0,-276r-278,-424r145,0r196,310r198,-310r141,0r-278,421r0,279r-124,0","w":716,"k":{"V":20,"X":27,"v":60,"x":70,"J":130,"\/":110,"&":60,"j":20,"W":20,"Y":14,"w":55,"y":60,"A":110,"Z":10,".":130,",":130,"a":100,"d":105,"g":105,"q":105,"c":110,"e":110,"o":110,"C":60,"G":60,"O":60,"Q":60,"s":100,"z":80,"f":40,"t":30,"u":75,"S":35,":":40,";":40,"-":80,"b":10,"h":10,"k":10,"l":10,"m":75,"n":75,"p":75,"r":75,"i":20}},"Z":{"d":"65,0r0,-91r413,-500r-400,0r0,-109r560,0r0,91r-413,500r413,0r0,109r-573,0","w":702,"k":{"v":20,"&":5,"w":15,"y":15,"Z":10,"d":20,"g":20,"q":20,"c":25,"e":25,"o":25,"C":37,"G":37,"O":37,"Q":37,"f":10,"S":10,"-":30}},"a":{"d":"519,0r-120,0r0,-65v-36,43,-91,76,-171,76v-101,0,-189,-57,-188,-165v0,-117,91,-173,214,-173v64,0,105,9,146,22v3,-81,-42,-122,-130,-123v-59,0,-103,13,-151,33r-33,-97v58,-26,115,-44,201,-44v156,0,232,82,232,223r0,313xm262,-80v91,0,151,-49,140,-141v-31,-12,-74,-21,-121,-21v-77,1,-122,31,-121,84v0,50,45,78,102,78","w":587,"k":{"*":15,"\\":75,"?":35,"v":20,"w":20,"y":20,"t":5}},"b":{"d":"376,11v-87,0,-142,-44,-179,-93r0,82r-121,0r0,-730r121,0r0,290v39,-55,94,-99,179,-99v125,0,247,100,246,276v0,175,-120,274,-246,274xm348,-94v84,0,152,-66,151,-171v0,-102,-69,-169,-151,-169v-83,0,-155,69,-154,171v0,102,72,169,154,169","k":{"*":15,"\\":70,"?":35,"v":25,"x":30,"}":15,"]":20,")":30,"w":20,"y":25,".":10,",":10,"z":15}},"c":{"d":"320,12v-158,0,-274,-123,-273,-275v0,-150,116,-276,274,-276v100,0,162,37,211,91r-75,81v-37,-39,-76,-66,-137,-66v-89,0,-153,76,-152,170v0,94,65,170,158,170v57,0,99,-27,137,-66r73,72v-52,58,-113,99,-216,99","w":571,"k":{"\\":40,"?":15,"v":5,"x":10,")":15,"w":5,"y":5,"d":10,"g":10,"q":10,"c":15,"e":15,"o":15}},"d":{"d":"294,11v-124,0,-246,-100,-245,-276v0,-175,119,-274,245,-274v87,0,142,44,180,93r0,-284r121,0r0,730r-121,0r0,-88v-39,55,-94,99,-180,99xm323,-94v82,0,154,-69,153,-171v0,-102,-72,-169,-153,-169v-84,0,-153,65,-152,171v0,102,70,169,152,169"},"e":{"d":"318,12v-154,0,-272,-111,-271,-276v0,-151,107,-275,258,-275v179,0,265,145,251,318r-388,0v17,152,209,172,295,71r71,63v-50,60,-119,99,-216,99xm167,-301r271,0v-8,-78,-54,-139,-134,-139v-74,0,-126,57,-137,139","w":604,"k":{"*":20,"\\":80,"?":40,"v":25,"x":30,"}":10,"]":20,")":30,"w":25,"y":25,".":10,",":10,"z":15}},"f":{"d":"103,-525v-8,-133,40,-212,162,-211v42,0,71,6,98,14r0,102v-64,-24,-147,-22,-141,67r0,29r140,0r0,100r-138,0r0,424r-121,0r0,-424r-67,0r0,-101r67,0","w":376,"k":{"*":-30,"\\":-30,"?":-35,"}":-30,"]":-20,")":-30,"\/":45,".":45,",":45,"a":15,"d":10,"g":10,"q":10,"c":10,"e":10,"o":10,"z":10}},"g":{"d":"595,-108v0,186,-100,270,-284,270v-87,0,-168,-22,-236,-63r45,-91v56,35,116,56,188,56v123,1,177,-72,167,-203v-44,57,-99,97,-186,97v-125,0,-241,-93,-240,-249v0,-156,117,-248,240,-248v89,0,144,41,185,90r0,-79r121,0r0,420xm321,-144v85,0,156,-60,155,-147v0,-87,-71,-146,-155,-146v-85,0,-151,58,-150,147v0,87,67,146,150,146","k":{"\\":50}},"h":{"d":"76,0r0,-730r121,0r0,284v34,-50,83,-93,165,-93v119,0,188,80,188,203r0,336r-121,0r0,-300v0,-82,-41,-129,-113,-129v-70,0,-119,49,-119,131r0,298r-121,0","w":620,"k":{"*":15,"\\":75,"?":30,"v":20,"w":15,"y":15}},"i":{"d":"78,-609r0,-115r130,0r0,115r-130,0xm83,0r0,-528r121,0r0,528r-121,0","w":286},"j":{"d":"78,-609r0,-115r130,0r0,115r-130,0xm204,7v4,129,-89,172,-212,151r0,-97v51,9,91,0,91,-61r0,-528r121,0r0,535","w":286},"k":{"d":"76,0r0,-730r121,0r0,436r219,-234r147,0r-210,215r217,313r-140,0r-159,-228r-74,77r0,151r-121,0","w":582,"k":{"\\":40,"v":20,"w":20,"y":15,"a":10,"d":25,"g":25,"q":25,"c":25,"e":25,"o":25,"t":10,"u":10,"-":20}},"l":{"d":"83,0r0,-730r121,0r0,730r-121,0","w":286},"m":{"d":"76,0r0,-528r121,0r0,80v34,-47,80,-91,161,-91v76,0,129,37,157,93v43,-56,99,-93,179,-93v115,0,185,73,185,202r0,337r-121,0r0,-300v0,-84,-39,-129,-107,-129v-66,0,-113,46,-113,131r0,298r-121,0r0,-301v0,-82,-40,-128,-107,-128v-67,0,-113,50,-113,132r0,297r-121,0","w":950,"k":{"*":15,"\\":75,"?":30,"v":20,"w":15,"y":15}},"n":{"d":"76,0r0,-528r121,0r0,82v34,-50,83,-93,165,-93v119,0,188,80,188,203r0,336r-121,0r0,-300v0,-82,-41,-129,-113,-129v-70,0,-119,49,-119,131r0,298r-121,0","w":620,"k":{"*":15,"\\":75,"?":30,"v":20,"w":15,"y":15}},"o":{"d":"327,12v-162,0,-281,-123,-280,-275v0,-151,120,-276,282,-276v163,0,282,123,281,276v0,150,-120,275,-283,275xm329,-93v99,0,161,-77,160,-170v0,-93,-67,-170,-162,-170v-98,0,-160,76,-159,170v0,92,67,170,161,170","w":657,"k":{"*":20,"\\":80,"?":50,"v":30,"x":35,"}":15,"]":20,")":30,"w":25,"y":30,".":20,",":20,"z":20}},"p":{"d":"76,160r0,-688r121,0r0,88v39,-55,94,-99,179,-99v125,0,247,100,246,276v0,175,-120,274,-246,274v-87,0,-142,-44,-179,-93r0,242r-121,0xm348,-94v84,0,152,-66,151,-171v0,-102,-69,-169,-151,-169v-83,0,-155,69,-154,171v0,102,72,169,154,169","k":{"*":15,"\\":70,"?":35,"v":25,"x":30,"}":15,"]":20,")":30,"w":20,"y":25,".":10,",":10,"z":15}},"q":{"d":"474,160r0,-248v-39,55,-94,99,-180,99v-124,0,-246,-100,-245,-276v0,-175,119,-274,245,-274v87,0,142,44,180,93r0,-82r121,0r0,688r-121,0xm323,-94v82,0,154,-69,153,-171v0,-102,-72,-169,-153,-169v-84,0,-153,65,-152,171v0,102,70,169,152,169","k":{"\\":50}},"r":{"d":"76,0r0,-528r121,0r0,119v33,-79,94,-133,187,-129r0,128v-113,-2,-187,66,-187,209r0,201r-121,0","w":413,"k":{"*":-20,"\\":30,"\/":75,".":90,",":90,"a":25,"d":15,"g":15,"q":15,"c":18,"e":18,"o":18,"z":10}},"s":{"d":"453,-158v0,211,-294,202,-420,89r54,-82v57,43,119,65,173,65v53,-1,83,-22,82,-59v0,-41,-56,-56,-118,-74v-78,-23,-165,-54,-165,-157v0,-100,83,-161,188,-161v66,0,138,23,194,60r-48,86v-51,-31,-105,-50,-149,-50v-48,1,-75,22,-74,55v0,38,57,54,119,74v77,24,164,59,164,154","w":500,"k":{"\\":75,"?":35,"v":20,"x":25,"}":10,"]":15,")":20,"w":15,"y":15,"s":10,"z":10,"t":10}},"t":{"d":"362,-18v-105,53,-261,37,-261,-128r0,-278r-67,0r0,-104r67,0r0,-145r121,0r0,145r142,0r0,104r-142,0r0,259v-4,81,88,75,140,48r0,99","w":410,"k":{"\\":40,"d":15,"g":15,"q":15,"c":15,"e":15,"o":15}},"u":{"d":"258,11v-119,0,-188,-80,-188,-203r0,-336r121,0r0,300v0,82,41,129,113,129v70,0,119,-49,119,-131r0,-298r121,0r0,528r-121,0r0,-82v-34,50,-83,93,-165,93","w":620,"k":{"\\":50}},"v":{"d":"243,4r-217,-532r130,0r142,388r143,-388r127,0r-216,532r-109,0","w":595,"k":{"}":10,"]":20,"\\":50,"\/":70,"?":10,"x":10,"v":15,"w":15,"y":15,".":85,",":85,"a":25,"d":25,"g":25,"q":25,"c":30,"e":30,"o":30,"s":20,"z":5,"-":15}},"w":{"d":"203,4r-171,-532r124,0r106,362r117,-364r103,0r118,364r108,-362r121,0r-173,532r-108,0r-118,-361r-119,361r-108,0","w":861,"k":{"\\":50,"?":10,"v":15,"x":10,"}":10,"]":20,"\/":60,"w":10,"y":10,".":70,",":70,"a":20,"d":20,"g":20,"q":20,"c":25,"e":25,"o":25,"s":15,"z":5,"-":10}},"x":{"d":"30,0r194,-268r-187,-260r132,0r122,174r122,-174r129,0r-187,257r195,271r-132,0r-130,-185r-129,185r-129,0","w":580,"k":{"}":10,"]":10,"\\":50,"?":15,"v":10,"w":10,"y":10,"a":15,"d":30,"g":30,"q":30,"c":35,"e":35,"o":35,"s":20,"-":30}},"y":{"d":"184,163v-51,0,-88,-12,-125,-32r41,-90v59,30,119,35,146,-41r-220,-528r129,0r150,392r137,-392r126,0r-210,543v-42,108,-89,148,-174,148","w":596,"k":{"\\":50,"?":10,"v":15,"x":10,"}":10,"]":20,"\/":70,"w":10,"y":10,".":85,",":85,"a":25,"d":25,"g":25,"q":25,"c":30,"e":30,"o":30,"s":20,"z":5,"-":15}},"z":{"d":"52,0r0,-83r305,-346r-294,0r0,-99r448,0r0,83r-305,346r305,0r0,99r-459,0","w":560,"k":{"\\":45,"d":15,"g":15,"q":15,"c":15,"e":15,"o":15}},"0":{"d":"361,12v-185,0,-305,-161,-304,-362v0,-200,122,-362,306,-362v184,0,305,161,304,362v0,200,-122,362,-306,362xm363,-99v110,0,178,-112,177,-251v0,-138,-71,-251,-179,-251v-109,0,-178,111,-177,251v0,138,70,251,179,251","w":724,"k":{"\/":35,"7":27,"3":10,"2":10,"1":5,".":20,",":20}},"1":{"d":"178,0r0,-580r-126,35r-26,-100r188,-60r86,0r0,705r-122,0","w":396},"2":{"d":"49,0r0,-97r241,-205v96,-81,131,-126,131,-189v0,-69,-49,-109,-113,-109v-64,0,-108,35,-162,105r-87,-68v67,-94,133,-147,258,-147v138,0,231,84,231,211v0,158,-217,287,-326,391r333,0r0,108r-506,0","w":613,"k":{"7":8,"4":20}},"3":{"d":"311,12v-122,0,-209,-51,-268,-123r86,-80v50,59,106,92,184,92v70,0,121,-42,121,-108v0,-86,-103,-117,-218,-108r-20,-77r189,-201r-303,0r0,-107r463,0r0,92r-195,200v107,14,207,67,206,199v0,129,-100,221,-245,221","w":618,"k":{"\/":10,"9":5,"7":22,"5":5}},"4":{"d":"412,0r0,-157r-353,0r-23,-88r389,-460r105,0r0,447r100,0r0,101r-100,0r0,157r-118,0xm182,-258r230,0r0,-277","w":681,"k":{"\/":20,"9":10,"7":33,"1":20}},"5":{"d":"304,12v-107,0,-191,-43,-257,-107r76,-89v56,52,115,84,180,84v85,0,140,-48,139,-123v0,-71,-60,-116,-145,-116v-50,0,-93,14,-129,31r-74,-49r20,-343r418,0r0,109r-312,0r-11,164v162,-57,354,11,354,202v0,143,-104,237,-259,237","w":622,"k":{"\/":20,"9":5,"7":30,"3":5,"2":10}},"6":{"d":"337,12v-86,0,-148,-27,-195,-73v-54,-53,-85,-129,-85,-270v0,-214,102,-381,300,-381v91,0,153,29,214,78r-66,95v-49,-38,-91,-61,-152,-61v-104,0,-162,94,-168,222v37,-36,85,-70,167,-70v137,0,246,80,245,222v0,139,-113,238,-260,238xm334,-94v88,0,141,-55,140,-129v0,-70,-56,-122,-143,-122v-88,1,-143,56,-142,125v0,71,57,126,145,126","w":656,"k":{"\/":10,"9":10,"7":18,"3":10,"1":13}},"7":{"d":"106,0r314,-592r-352,0r0,-108r492,0r0,93r-316,607r-138,0","w":609,"k":{"\/":140,"9":15,"8":10,"6":20,"5":25,"4":85,"3":20,"2":15,"1":-10,"0":20,".":100,",":100,"-":30}},"8":{"d":"315,10v-154,-1,-268,-80,-267,-202v0,-85,47,-138,126,-171v-59,-31,-103,-78,-102,-158v0,-107,103,-189,243,-189v141,1,244,81,243,191v0,78,-43,125,-102,156v77,36,127,85,126,170v0,125,-114,203,-267,203xm315,-404v73,0,126,-43,125,-105v0,-54,-50,-98,-125,-98v-76,1,-126,44,-125,99v0,61,53,104,125,104xm315,-93v93,-1,148,-46,147,-107v0,-64,-64,-106,-147,-106v-84,1,-148,42,-147,108v0,57,55,105,147,105","w":630,"k":{"9":5,"7":10}},"9":{"d":"299,12v-97,0,-165,-35,-224,-84r67,-94v53,45,100,66,160,66v103,0,165,-91,169,-220v-35,42,-89,74,-164,74v-150,0,-249,-87,-248,-224v0,-137,106,-242,261,-242v88,0,145,25,194,74v52,52,85,131,85,269v0,225,-112,381,-300,381xm325,-349v90,-1,143,-58,142,-128v0,-73,-57,-129,-146,-129v-88,0,-140,58,-139,132v0,73,56,125,143,125","w":656,"k":{"\/":25,"7":15,"5":5,"3":10,"2":10,".":10,",":10}},".":{"d":"68,0r0,-137r133,0r0,137r-133,0","w":269,"k":{"V":120,"v":85,"j":-15,"1":50,"7":20,"0":20,"T":100,"W":100,"Y":130,"w":70,"y":60,"d":10,"g":10,"q":10,"c":20,"e":20,"o":20,"C":40,"G":40,"O":40,"Q":40,"f":15,"t":25,"U":15}},",":{"d":"47,145r-13,-51v61,-12,90,-43,85,-94r-51,0r0,-137r133,0r0,116v0,111,-53,158,-154,166","w":269,"k":{"y":60,"V":120,"v":85,"j":-15,"1":50,"7":20,"0":20,"T":100,"W":100,"Y":130,"w":70,"d":10,"g":10,"q":10,"c":20,"e":20,"o":20,"C":40,"G":40,"O":40,"Q":40,"f":15,"t":25,"U":15}},":":{"d":"73,-391r0,-137r133,0r0,137r-133,0xm73,0r0,-137r133,0r0,137r-133,0","w":279,"k":{"V":20,"T":22,"W":15,"Y":40}},";":{"d":"73,-391r0,-137r133,0r0,137r-133,0xm52,145r-13,-51v61,-12,90,-43,85,-94r-51,0r0,-137r133,0r0,116v0,111,-53,158,-154,166","w":279,"k":{"V":20,"T":22,"W":15,"Y":40}},"&":{"d":"575,14r-93,-95v-60,56,-130,91,-215,91v-131,0,-229,-79,-228,-202v0,-90,53,-155,149,-196v-115,-129,-54,-324,143,-324v112,0,187,75,186,171v0,92,-61,147,-154,182r120,122v27,-40,52,-86,75,-135r93,49v-28,56,-59,111,-95,160r110,112xm298,-425v73,-27,111,-58,110,-111v0,-47,-33,-79,-80,-79v-51,0,-84,35,-83,86v0,35,14,61,53,104xm280,-92v48,0,92,-23,132,-61r-156,-159v-66,29,-94,70,-93,118v0,59,49,102,117,102","w":696,"k":{"V":57,"T":62,"W":47,"Y":63,"S":3}},"!":{"d":"118,-221r-38,-444r0,-35r142,0r0,35r-37,444r-67,0xm85,0r0,-137r133,0r0,137r-133,0","w":302},"?":{"d":"207,-221r-20,-162r5,-5v128,-6,186,-45,185,-114v0,-56,-43,-95,-115,-95v-63,0,-115,28,-163,79r-75,-80v58,-66,133,-111,241,-111v141,0,235,78,234,205v0,126,-90,183,-201,202r-10,81r-81,0xm178,0r0,-137r134,0r0,137r-134,0","w":541},"-":{"d":"56,-247r0,-119r296,0r0,119r-296,0","w":408,"k":{"V":40,"X":50,"v":15,"x":30,"1":30,"7":40,"3":10,"T":90,"W":35,"Y":80,"w":10,"y":15,"A":40,"Z":30,"z":10}},"_":{"d":"-2,160r0,-94r604,0r0,94r-604,0","w":600},"\/":{"d":"-25,128r452,-926r105,0r-452,926r-105,0","w":521,"k":{"\/":163,"9":20,"8":15,"7":10,"6":35,"5":20,"4":95,"3":10,"2":20,"1":-10,"0":35,"x":50,"v":50,"J":130,"w":50,"y":50,"A":120,"Z":20,"a":65,"d":70,"g":70,"q":70,"c":80,"e":80,"o":80,"C":40,"G":40,"O":40,"Q":40,"s":85,"z":60,"f":25,"t":20,"u":50,"S":30,"m":50,"n":50,"p":50,"r":50}},"\\":{"d":"441,128r-452,-926r105,0r452,926r-105,0","w":521,"k":{"v":70,"j":-30,"V":120,"T":90,"W":100,"Y":110,"w":60,"y":60,"C":40,"G":40,"O":40,"Q":40,"f":10,"t":30,"U":15}},"|":{"d":"117,128r0,-926r97,0r0,926r-97,0","w":331},"(":{"d":"340,141v-182,-100,-277,-239,-277,-428v0,-189,95,-328,277,-428r53,81v-142,94,-209,198,-209,347v0,149,67,253,209,347","w":440,"k":{"j":-30,"g":30,"J":15,"d":30,"q":30,"c":30,"e":30,"o":30,"C":30,"G":30,"O":30,"Q":30,"s":15}},")":{"d":"101,141r-53,-81v142,-94,209,-198,209,-347v0,-149,-67,-253,-209,-347r53,-81v181,100,277,239,277,428v0,189,-96,328,-277,428","w":440},"[":{"d":"88,130r0,-830r307,0r0,95r-192,0r0,640r192,0r0,95r-307,0","w":454,"k":{"x":10,"v":20,"j":-30,"J":10,"w":20,"y":10,"a":10,"d":20,"g":20,"q":20,"c":20,"e":20,"o":20,"C":20,"G":20,"O":20,"Q":20,"s":15}},"]":{"d":"59,130r0,-95r192,0r0,-640r-192,0r0,-95r308,0r0,830r-308,0","w":454},"{":{"d":"416,141v-214,-46,-234,-102,-225,-272v5,-88,-44,-115,-139,-110r0,-92v94,5,144,-22,139,-110v-10,-170,10,-226,225,-272r21,80v-153,42,-134,81,-134,211v0,78,-38,116,-104,137v67,22,104,59,104,137v0,129,-20,170,134,211","w":487,"k":{"x":10,"v":10,"j":-35,"g":15,"J":10,"w":10,"y":10,"d":15,"q":15,"c":15,"e":15,"o":15,"C":20,"G":20,"O":20,"Q":20,"s":10,"z":10}},"}":{"d":"71,141r-21,-80v153,-42,134,-81,134,-211v0,-78,38,-116,104,-137v-67,-22,-104,-59,-104,-137v0,-129,20,-170,-134,-211r21,-80v214,46,234,102,225,272v-5,88,44,115,139,110r0,92v-94,-5,-144,22,-139,110v10,170,-10,226,-225,272","w":487},"@":{"d":"499,162v-256,0,-446,-197,-446,-436v0,-239,193,-438,438,-438v245,0,436,189,436,396v0,168,-91,249,-194,249v-78,0,-125,-33,-148,-70v-36,37,-85,70,-155,70v-100,0,-181,-74,-181,-189v0,-141,111,-250,227,-250v72,0,115,34,141,74r12,-60r97,15r-44,252v-16,67,6,114,73,114v71,0,132,-68,132,-205v0,-184,-169,-358,-396,-358v-228,0,-398,180,-398,400v0,221,168,398,406,398v99,0,171,-23,247,-67r18,30v-77,47,-161,75,-265,75xm457,-154v73,0,138,-71,138,-158v0,-64,-45,-108,-105,-108v-73,0,-139,68,-139,158v0,69,44,108,106,108","w":980},"*":{"d":"180,-382r14,-122r-100,73r-36,-61r114,-50r-114,-50r36,-61r100,73r-14,-122r70,0r-14,122r100,-73r36,61r-114,50r114,50r-36,61r-100,-73r14,122r-70,0","w":430,"k":{"J":80,"A":100,"a":10,"d":15,"g":15,"q":15,"c":20,"e":20,"o":20,"s":10,"t":-10}},"$":{"d":"285,98r0,-100v-87,-10,-168,-45,-236,-99r64,-91v57,46,111,76,176,86r0,-196v-147,-39,-215,-93,-214,-207v0,-108,85,-181,210,-191r0,-58r87,0r0,60v73,9,133,35,188,76r-56,94v-44,-33,-89,-54,-136,-64r0,190v153,39,218,98,217,208v0,109,-86,182,-213,193r0,99r-87,0xm289,-423r0,-176v-64,6,-97,39,-96,85v0,41,19,68,96,91xm368,-102v64,-6,100,-37,99,-87v0,-44,-21,-71,-99,-94r0,181","w":642,"k":{"7":10}},"#":{"d":"101,0r28,-161r-90,0r0,-104r108,0r29,-174r-100,0r0,-104r118,0r27,-157r107,0r-27,157r164,0r26,-157r107,0r-27,157r89,0r0,104r-107,0r-29,174r100,0r0,104r-118,0r-28,161r-107,0r28,-161r-164,0r-27,161r-107,0xm253,-265r164,0r30,-174r-164,0","w":700},"%":{"d":"212,-350v-99,0,-165,-81,-164,-179v0,-97,67,-179,166,-179v99,0,165,81,164,179v0,97,-67,179,-166,179xm119,0r512,-700r99,0r-512,700r-99,0xm635,8v-99,0,-165,-81,-164,-179v0,-97,67,-179,166,-179v99,0,165,81,164,179v0,97,-67,179,-166,179xm214,-427v48,0,76,-47,75,-102v0,-56,-32,-102,-77,-102v-48,0,-76,47,-75,102v0,57,32,102,77,102xm637,-69v48,0,76,-47,75,-102v0,-56,-32,-102,-77,-102v-48,0,-76,47,-75,102v0,57,32,102,77,102","w":849},"\"":{"d":"279,-401r24,-299r137,0r-98,299r-63,0xm60,-401r23,-299r137,0r-97,299r-63,0","w":487},"'":{"d":"60,-401r23,-299r139,0r-98,299r-64,0","w":269},"+":{"d":"260,-106r0,-191r-192,0r0,-111r192,0r0,-190r114,0r0,190r192,0r0,111r-192,0r0,191r-114,0","w":634},"=":{"d":"76,-421r0,-112r482,0r0,112r-482,0xm76,-171r0,-112r482,0r0,112r-482,0","w":634},"<":{"d":"545,-77r-478,-221r0,-108r478,-221r0,115r-358,159r358,160r0,116","w":634},">":{"d":"90,-77r0,-115r357,-159r-357,-160r0,-116r478,221r0,108","w":634},"^":{"d":"56,-493r151,-208r86,0r151,208r-93,0r-102,-132r-102,132r-91,0","w":500},"~":{"d":"126,-229r-67,-21v22,-80,51,-124,112,-124v87,0,164,93,198,-10r67,20v-22,81,-51,125,-112,125v-87,0,-164,-93,-198,10","w":495},"`":{"d":"247,-595r-123,-115r110,-49r104,164r-91,0","w":500},"\u00a0":{"w":300}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2009 by Dino dos Santos _DSType. All rights reserved.
 * 
 * Trademark:
 * Glosa Display Roman Italic is a trademark of Dino dos Santos _DSType.
 * 
 * Full name:
 * GlosaDisplay-RomanItalic
 * 
 * Description:
 * Copyright (c) 2009 by Dino dos Santos _DSType. All rights reserved.
 * 
 * Manufacturer:
 * Dino dos Santos _DSType
 * 
 * Designer:
 * Dino dos Santos
 * 
 * Vendor URL:
 * http://www.dstype.com
 * 
 * License information:
 * www.dstype.com
 */
Cufon.registerFont({"w":560,"face":{"font-family":"Glosa Display","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 5 3 0 0 0 9 0 4","ascent":"750","descent":"-250","x-height":"10","bbox":"-87.5806 -855 1098 265","underline-thickness":"50","underline-position":"-50","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":230},"!":{"d":"107,-50v4,-33,35,-60,68,-60v33,0,56,27,52,60v-5,33,-36,60,-69,60v-33,0,-56,-27,-51,-60xm194,-200r-10,0r20,-500r106,0","w":320},"\"":{"d":"209,-565r-3,-195r66,0r-57,195r-6,0xm359,-565r-3,-195r66,0r-57,195r-6,0","w":416},"#":{"d":"67,-195r152,0r20,-145r-152,0r2,-15r152,0r22,-153r15,0r-22,153r145,0r22,-153r15,0r-22,153r153,0r-2,15r-153,0r-20,145r153,0r-2,15r-153,0r-22,152r-15,0r22,-152r-145,0r-22,152r-15,0r22,-152r-152,0xm254,-340r-20,145r145,0r20,-145r-145,0"},"$":{"d":"270,100r13,-90v-156,5,-219,-72,-207,-130v7,-32,30,-55,58,-55v66,0,64,94,-20,105r-1,10v14,30,89,69,171,59r45,-315v-100,-43,-198,-102,-180,-216v15,-97,101,-176,235,-178r13,-90r10,0r-13,90v137,2,183,76,175,130v-4,32,-30,55,-58,55v-66,0,-64,-94,20,-105r1,-10v-16,-25,-61,-59,-139,-60r-42,292v98,39,191,105,175,218v-16,113,-116,190,-233,199r-13,91r-10,0xm220,-570v-12,88,58,130,122,158r41,-288v-85,3,-153,58,-163,130xm445,-146v13,-93,-47,-136,-107,-166r-44,310v89,-11,139,-59,151,-144"},"%":{"d":"724,-700r14,0r-384,700r-15,0xm611,-145v13,-86,84,-155,170,-155v82,0,132,69,118,155v-14,86,-84,155,-171,155v-81,0,-131,-69,-117,-155xm645,-145v-16,110,34,144,90,144v56,0,114,-34,130,-144v15,-110,-34,-144,-90,-144v-56,0,-115,34,-130,144xm179,-555v14,-86,83,-155,169,-155v82,0,133,69,119,155v-15,86,-84,155,-171,155v-81,0,-131,-69,-117,-155xm213,-555v-16,110,33,144,89,144v56,0,115,-34,131,-144v15,-110,-34,-144,-90,-144v-56,0,-115,34,-130,144","w":980},"&":{"d":"195,-205v-12,88,36,165,120,165v28,0,94,0,160,-54r-184,-271v-57,37,-87,97,-96,160xm497,-590v7,-50,-8,-110,-79,-110v-70,0,-101,60,-107,104v-10,75,15,116,56,182v98,-54,121,-106,130,-176xm545,0r-65,-85v-82,76,-158,95,-207,95v-115,0,-185,-70,-169,-187v10,-72,82,-132,183,-195v-43,-71,-74,-123,-65,-186v13,-94,103,-152,193,-152v88,0,145,53,133,137v-8,56,-57,109,-177,166r168,245v27,-33,73,-101,108,-198r-102,-35r1,-10r220,0r-1,10r-105,35v-46,111,-82,168,-115,208r107,137r27,5r-1,10r-133,0","w":790},"'":{"d":"209,-565r-3,-195r66,0r-57,195r-6,0","w":266},"(":{"d":"196,-295v-29,207,9,395,81,560r-10,0v-84,-164,-122,-375,-96,-560v26,-185,124,-396,254,-560r10,0v-119,165,-210,353,-239,560","w":375},")":{"d":"261,-295v29,-207,-10,-395,-81,-560r10,0v84,164,122,375,96,560v-26,185,-124,396,-254,560r-10,0v118,-165,210,-353,239,-560","w":375},"*":{"d":"304,-559v-7,40,28,134,-23,131v-14,0,-23,-11,-21,-25v1,-9,32,-90,34,-107v-11,14,-65,85,-72,91v-29,25,-55,-16,-30,-35v7,-6,84,-49,99,-58v-18,0,-102,18,-111,18v-14,0,-23,-10,-21,-24v8,-54,95,-1,135,-4v-14,-9,-79,-55,-84,-62v-9,-10,-7,-24,4,-34v11,-10,27,-12,35,-1v6,7,40,80,47,94v9,-41,-27,-137,24,-135v14,0,24,9,22,24v-1,10,-33,94,-36,111v11,-14,65,-86,75,-94v11,-10,25,-10,34,0v8,10,7,24,-5,35v-9,8,-86,52,-102,62v19,0,101,-21,112,-21v14,0,23,11,21,25v-8,52,-94,3,-134,6v13,9,76,51,83,58v9,10,7,25,-5,35v-11,9,-26,10,-35,0v-6,-7,-39,-76,-46,-90","w":442},"+":{"d":"349,-448r-24,173r173,0r-2,15r-173,0r-24,172r-15,0r24,-172r-172,0r2,-15r172,0r24,-173r15,0"},",":{"d":"102,-20r14,-100v112,-15,127,60,121,100v-13,92,-96,159,-150,180r-3,-10v82,-33,183,-170,18,-170","w":335},"-":{"d":"138,-275r360,0r-2,15r-360,0"},".":{"d":"107,-50v4,-33,35,-60,68,-60v33,0,56,27,52,60v-5,33,-36,60,-69,60v-33,0,-56,-27,-51,-60","w":320},"\/":{"d":"434,-710r20,0r-309,710r-20,0","w":480},"0":{"d":"109,-350v24,-170,120,-360,290,-360v170,0,214,190,190,360v-24,170,-121,360,-291,360v-170,0,-213,-190,-189,-360xm199,-350v-26,180,-19,350,101,350v120,0,173,-170,199,-350v25,-180,19,-350,-101,-350v-120,0,-174,170,-199,350","w":600},"1":{"d":"41,-10r131,-5r92,-660r-132,20r1,-10r206,-45r10,0r-97,695r129,5r-1,10r-340,0","w":420},"2":{"d":"158,-75r-1,10r322,-5r-9,70r-420,0r1,-10v337,-219,384,-383,400,-500v14,-100,-25,-180,-125,-180v-61,0,-105,21,-142,55r-2,10v92,-20,74,95,2,95v-28,0,-47,-22,-43,-50v8,-54,83,-130,218,-130v145,0,190,110,177,199v-11,80,-76,252,-378,436","w":510},"3":{"d":"240,0v96,0,158,-82,174,-188v15,-103,-31,-195,-162,-180r2,-12v112,11,171,-79,183,-156v10,-68,-23,-134,-103,-134v-100,0,-149,65,-177,119r-10,0v32,-84,122,-159,217,-159v107,0,175,63,162,158v-12,84,-83,144,-201,173r-1,5v118,11,193,70,177,182v-19,136,-143,202,-268,202v-109,0,-186,-65,-177,-130v4,-28,29,-50,57,-50v73,0,58,114,-28,95r-1,10v22,20,56,65,156,65","w":535},"4":{"d":"454,-172r100,0r-2,12r-100,0r-22,160r-80,0r22,-160r-310,0r2,-16r405,-514r60,-20xm427,-620r-344,438r-1,10r292,0r63,-448r-10,0","w":570},"5":{"d":"233,10v-109,0,-186,-65,-177,-130v4,-28,29,-50,57,-50v70,0,62,106,-27,100r-1,10v32,33,83,60,150,60v100,0,167,-90,183,-200v13,-94,-8,-204,-197,-204r-55,0r52,-296r330,0r-11,76r-323,0r-35,209v282,-62,339,108,325,208v-18,126,-121,217,-271,217","w":535},"6":{"d":"444,-210v15,-105,-26,-196,-107,-196v-49,0,-101,27,-139,64v-48,194,-11,342,87,342v77,0,142,-91,159,-210xm202,-370r7,3v62,-46,117,-63,172,-63v106,0,171,94,155,209v-20,141,-134,231,-254,231v-151,0,-206,-127,-185,-277v32,-224,197,-401,415,-443r1,10v-152,29,-268,141,-311,330","w":565},"7":{"d":"513,-625r2,-10r-358,10r-32,85r-10,0r28,-160r415,0r-2,10r-358,690r-70,0","w":490},"8":{"d":"487,-552v11,-81,-32,-148,-103,-148v-71,0,-131,66,-141,139v-14,95,57,136,151,179v55,-38,82,-93,93,-170xm448,-165v11,-79,-60,-135,-171,-182v-58,30,-103,101,-112,166v-14,102,30,181,121,181v89,0,148,-71,162,-165xm531,-192v-19,132,-143,202,-259,202v-115,0,-205,-65,-187,-193v10,-69,77,-135,182,-168v-80,-49,-118,-110,-109,-175v17,-117,135,-184,235,-184v100,0,182,63,167,173v-9,64,-74,125,-159,160v106,52,141,105,130,185","w":565},"9":{"d":"218,-490v-14,105,27,196,108,196v49,0,101,-27,139,-64v47,-194,11,-342,-87,-342v-77,0,-143,91,-160,210xm461,-330r-8,-3v-61,46,-117,63,-172,63v-106,0,-170,-94,-154,-209v20,-141,133,-231,253,-231v151,0,206,127,185,277v-31,224,-197,401,-415,443r0,-10v152,-29,267,-141,311,-330","w":565},":":{"d":"115,-110v5,-33,35,-60,68,-60v33,0,57,27,52,60v-5,33,-35,60,-68,60v-33,0,-57,-27,-52,-60xm154,-390v5,-33,36,-60,69,-60v33,0,56,27,51,60v-4,33,-35,60,-68,60v-33,0,-56,-27,-52,-60","w":320},";":{"d":"159,-390v5,-33,36,-60,69,-60v33,0,56,27,51,60v-4,33,-35,60,-68,60v-33,0,-56,-27,-52,-60xm102,-20r14,-100v112,-15,127,60,121,100v-13,92,-96,159,-150,180r-3,-10v82,-33,183,-170,18,-170","w":335},"<":{"d":"443,-453r-280,184r228,186r-1,10r-254,-185r3,-20r306,-185","w":480},"=":{"d":"148,-345r360,0r-2,15r-360,0xm128,-205r360,0r-2,15r-360,0"},">":{"d":"111,-83r280,-186r-228,-184r2,-10r254,185r-3,20r-306,185","w":480},"?":{"d":"197,-50v4,-33,35,-60,68,-60v33,0,56,27,52,60v-5,33,-36,60,-69,60v-33,0,-56,-27,-51,-60xm550,-530v-10,69,-77,156,-241,185r-25,145r-10,0r16,-152v146,-38,161,-113,170,-178v14,-97,-28,-165,-123,-165v-48,0,-116,21,-148,55r-1,10v85,0,64,100,-4,100v-28,0,-47,-22,-43,-50v8,-54,88,-130,218,-130v140,0,203,91,191,180","w":536},"@":{"d":"405,-5v115,0,126,-162,164,-262v34,-88,-11,-109,-39,-109v-63,0,-112,79,-146,169v-34,89,-40,202,21,202xm592,-315v29,-16,49,-41,76,-60r10,0r-84,258v-14,42,-28,108,21,108v59,0,174,-99,195,-250v29,-209,-108,-295,-255,-295v-177,0,-335,186,-362,381v-27,189,43,316,229,316v81,0,182,-38,255,-92r4,9v-81,60,-183,96,-286,96v-188,0,-298,-139,-271,-327v30,-217,236,-393,435,-393v168,0,289,103,261,301v-21,153,-133,271,-241,271v-54,0,-73,-35,-70,-74v-27,45,-73,76,-120,76v-109,0,-122,-137,-75,-232v44,-89,129,-164,215,-164v37,0,69,25,63,71","w":884},"A":{"d":"131,-45r100,35r-1,10r-220,0r1,-10r104,-35r277,-600r82,-65r160,695r57,5r-1,10r-250,0r1,-10r98,-5r-50,-235r-265,0xm408,-630r-10,0r-170,368r258,0","w":700},"B":{"d":"306,-690r-45,322r60,0v140,0,195,-66,207,-152v12,-80,-12,-170,-132,-170r-90,0xm350,-358r-90,0r-49,348r110,0v130,0,179,-100,190,-180v13,-88,-21,-168,-161,-168xm614,-530v-10,82,-106,147,-233,166v154,4,226,102,215,179v-15,110,-106,185,-256,185r-300,0r1,-10r91,-5r94,-670r-90,-5r2,-10r270,0v150,0,218,70,206,170","w":610,"k":{",":30,"T":20,"V":30,"Y":30,"W":30,"A":20}},"C":{"d":"607,-50v-44,25,-129,60,-229,60v-188,0,-309,-150,-279,-360v29,-210,192,-360,380,-360v100,0,175,35,212,60r-18,160r-10,0r-26,-100v-14,-61,-79,-110,-159,-110v-149,0,-257,120,-289,350v-33,230,42,350,191,350v80,0,150,-43,190,-110r59,-100r10,0","w":650},"D":{"d":"211,-10r130,0v182,0,285,-182,308,-340v26,-185,-35,-340,-223,-340r-120,0xm340,0r-300,0r1,-10r91,-5r94,-670r-90,-5r2,-10r300,0v215,0,332,130,301,350v-29,206,-184,350,-399,350","w":740,"k":{"T":20,"U":10,"V":40,"Y":40,"W":30,"A":60,"J":20,"X":30,"Z":10,"B":10,"D":10,"E":10,"F":10,"H":10,"I":10,"K":10,"L":10,"P":10,"R":10,"N":20,"M":20}},"E":{"d":"306,-690r-47,335r191,-3r51,-112r10,0r-33,235r-10,0r-20,-107r-190,-3r-47,335r276,-5r85,-145r10,0r-32,160r-510,0r1,-10r91,-5r94,-670r-90,-5r2,-10r500,0r-18,160r-10,0r-39,-145","w":600},"F":{"d":"306,-690r-49,355r190,-3r51,-112r10,0r-33,235r-10,0r-20,-107r-190,-3r-43,310r89,5r-1,10r-260,0r1,-10r91,-5r94,-670r-90,-5r2,-10r500,0r-18,160r-10,0r-39,-145","w":575,"k":{"y":60,"w":60,"v":60,"u":40,"s":40,"r":40,"q":50,"p":40,"o":50,"n":40,"m":40,"i":40,"g":60,"e":50,"d":50,"c":50,"a":50,"Q":20,"O":20,"J":60,"G":20,"C":20,"A":100,",":140}},"G":{"d":"99,-350v29,-210,192,-360,380,-360v100,0,175,35,212,60r-18,160r-10,0r-26,-100v-14,-61,-79,-110,-159,-110v-149,0,-257,120,-289,350v-31,220,52,350,191,350v69,0,134,-30,167,-52r31,-223r-89,-5r1,-10r230,0r-1,10r-61,5r-29,205v-44,30,-151,80,-251,80v-188,0,-309,-150,-279,-360","w":710,"k":{",":50,"v":30,"w":30,"y":30,"V":30,"Y":30,"W":30,"A":40}},"H":{"d":"572,-15r47,-335r-360,0r-47,335r89,5r-1,10r-260,0r1,-10r91,-5r94,-670r-90,-5r2,-10r260,0r-2,10r-90,5r-46,323r360,0r46,-323r-90,-5r2,-10r260,0r-2,10r-90,5r-94,670r89,5r-1,10r-260,0r1,-10","w":780,"k":{"C":10,"G":10,"O":10,"Q":10,"a":20,"c":20,"d":20,"e":20,"o":20,"q":20,"u":30,"v":30,"w":30,"y":30,"g":20,"J":20}},"I":{"d":"41,-10r91,-5r94,-670r-90,-5r2,-10r260,0r-2,10r-90,5r-94,670r89,5r-1,10r-260,0","w":340,"k":{"C":10,"G":10,"O":10,"Q":10,"a":20,"c":20,"d":20,"e":20,"o":20,"q":20,"u":30,"v":30,"w":30,"y":30,"g":20,"J":20}},"J":{"d":"193,-170r73,-515r-90,-5r2,-10r260,0r-2,10r-90,5r-70,495v-16,115,-105,200,-193,200v-45,0,-62,-22,-58,-50v10,-70,124,-65,91,30v63,6,65,-75,77,-160","w":370,"k":{",":100,"C":10,"G":10,"O":10,"Q":10,"a":20,"c":20,"d":20,"e":20,"o":20,"q":20,"u":20,"v":30,"w":30,"y":30,"A":80,"-":50,"i":40,"m":40,"n":40,"p":40,"r":40}},"K":{"d":"340,-360r288,-295r-107,-35r2,-10r250,0r-2,10r-123,35r-269,270r259,370r78,5r-1,10r-290,0r1,-10r102,-5r-224,-335r-45,0r-47,335r89,5r-1,10r-260,0r1,-10r91,-5r94,-670r-90,-5r2,-10r260,0r-2,10r-90,5r-46,325r80,0","w":735,"k":{"C":60,"G":60,"O":60,"Q":60,"a":70,"c":70,"d":70,"e":70,"o":70,"q":70,"u":50,"v":120,"w":120,"y":120,"T":20,"V":10,"Y":10,"g":20,"W":10}},"L":{"d":"211,-10r276,-5r85,-145r10,0r-32,160r-510,0r1,-10r91,-5r94,-670r-90,-5r2,-10r260,0r-2,10r-90,5","w":580,"k":{"C":20,"G":20,"O":20,"Q":20,"v":70,"w":70,"y":70,"T":100,"V":130,"Y":120,"W":120}},"M":{"d":"477,-125r10,0r276,-575r175,0r-2,10r-90,5r-94,670r89,5r-1,10r-260,0r1,-10r91,-5r89,-635r-10,0r-312,655r-20,0r-171,-635r-10,0r-77,585r100,35r-1,10r-220,0r1,-10r105,-35r90,-640r-100,-5r2,-10r185,0","w":880,"k":{"C":10,"G":10,"O":10,"Q":10,"a":20,"c":20,"d":20,"e":20,"o":20,"q":20,"u":30,"v":30,"w":30,"y":30,"g":20,"J":20}},"N":{"d":"600,-150r10,0r67,-505r-101,-35r2,-10r220,0r-2,10r-104,35r-93,660r-20,0r-330,-645r-10,0r-78,595r100,35r-1,10r-220,0r1,-10r105,-35r90,-640r-100,-5r2,-10r185,0","w":730,"k":{"C":30,"G":30,"O":30,"Q":30,"a":30,"c":30,"d":30,"e":30,"o":30,"q":30,"u":30,"v":50,"w":50,"y":50,"A":40,"i":50,"m":50,"n":50,"p":50,"r":50}},"O":{"d":"99,-350v29,-210,202,-360,390,-360v188,0,319,150,290,360v-30,210,-203,360,-391,360v-188,0,-319,-150,-289,-360xm189,-350v-31,220,62,350,201,350v139,0,268,-130,299,-350v31,-220,-62,-350,-201,-350v-139,0,-268,130,-299,350","w":780,"k":{"T":20,"U":10,"V":40,"Y":40,"W":30,"A":60,"J":20,"X":30,"Z":10,"B":10,"D":10,"E":10,"F":10,"H":10,"I":10,"K":10,"L":10,"P":10,"R":10,"N":20,"M":20}},"P":{"d":"253,-310r80,0v150,0,207,-82,222,-190v14,-100,-9,-184,-139,-190r-110,0xm332,-300r-80,0r-40,285r89,5r-1,10r-260,0r1,-10r91,-5r94,-670r-90,-5r2,-10r300,0v150,0,219,80,203,190v-14,100,-99,210,-309,210","w":610,"k":{",":200,"a":40,"c":40,"d":40,"e":40,"o":40,"q":40,"V":20,"Y":20,"g":40,"W":20,"A":100,"i":20,"m":20,"n":20,"p":20,"r":20,"J":60,"B":10,"D":10,"E":10,"F":10,"H":10,"I":10,"K":10,"L":10,"P":10,"R":10}},"Q":{"d":"300,-2r-1,4r437,163r-1,10r-98,55r-399,-255v-97,-65,-160,-176,-139,-325v29,-210,202,-360,390,-360v188,0,320,150,290,360v-32,230,-248,404,-479,348xm189,-350v-31,220,62,350,201,350v139,0,268,-130,299,-350v31,-220,-62,-350,-201,-350v-139,0,-268,130,-299,350","w":780,"k":{"T":20,"U":10,"V":40,"Y":40,"W":30,"A":60,"J":20,"X":30,"Z":10,"B":10,"D":10,"E":10,"F":10,"H":10,"I":10,"K":10,"L":10,"P":10,"R":10,"N":20,"M":20}},"R":{"d":"329,-320r-75,0r-42,305r89,5r-1,10r-260,0r1,-10r91,-5r94,-670r-90,-5r2,-10r290,0v150,0,219,75,204,185v-13,93,-105,170,-237,190r-1,10v29,4,41,19,68,65r135,235r54,5r-1,10r-150,0xm256,-330r80,0v150,0,197,-87,209,-175v13,-90,-9,-185,-139,-185r-100,0","w":670,"k":{"C":30,"G":30,"O":30,"Q":30,"a":40,"c":40,"d":40,"e":40,"o":40,"q":40,"v":50,"w":50,"y":50,"T":40,"V":70,"Y":70,"g":20,"W":70}},"S":{"d":"84,-70r-20,75r-10,0r25,-215r10,0r15,70v24,110,98,140,164,140v91,0,154,-50,167,-146v16,-114,-76,-152,-146,-184v-95,-43,-164,-100,-150,-202v14,-98,100,-178,237,-178v61,0,115,20,154,67r19,-62r10,0r-24,200r-10,0r-18,-85v-16,-80,-65,-110,-131,-110v-84,0,-155,55,-166,130v-13,95,71,136,139,165v95,40,183,105,167,215v-17,120,-116,200,-250,200v-72,0,-138,-35,-182,-80","w":540,"k":{"V":10,"Y":10,"W":10,"A":20}},"T":{"d":"105,-540r28,-160r530,0r-18,160r-10,0r-40,-143r-159,-5r-94,673r89,5r-1,10r-260,0r1,-10r91,-5r94,-673r-161,5r-80,143r-10,0","w":600,"k":{",":120,"C":20,"G":20,"O":20,"Q":20,"a":90,"c":90,"d":90,"e":90,"o":90,"q":90,"u":70,"v":70,"w":70,"y":70,"g":80,"A":90,"-":120,"i":70,"m":70,"n":70,"p":70,"r":70,"J":60,"s":80}},"U":{"d":"646,-260r56,-395r-96,-35r2,-10r220,0r-2,10r-109,35r-55,385v-25,180,-126,280,-289,280v-176,0,-240,-107,-216,-280r59,-415r-90,-5r2,-10r260,0r-2,10r-90,5r-61,435v-23,160,31,240,166,240v125,0,223,-90,245,-250","w":760,"k":{",":100,"C":30,"G":30,"O":30,"Q":30,"a":50,"c":50,"d":50,"e":50,"o":50,"q":50,"v":50,"w":50,"y":50,"A":110,"-":50,"i":40,"m":40,"n":40,"p":40,"r":40}},"V":{"d":"324,5r-160,-690r-58,-5r2,-10r250,0r-2,10r-97,5r132,605r10,0r264,-575r-99,-35r2,-10r220,0r-2,10r-105,35r-307,660r-50,0","w":700,"k":{",":200,"C":60,"G":60,"O":60,"Q":60,"a":120,"c":120,"d":120,"e":120,"o":120,"q":120,"u":70,"v":80,"w":80,"y":80,"g":110,"A":140,"-":80,"i":70,"m":70,"n":70,"p":70,"r":70,"J":60,"s":100,"S":10}},"W":{"d":"583,-497r-234,502r-50,0r-135,-690r-58,-5r2,-10r250,0r-2,10r-97,5r109,600r10,0r201,-440r-25,-160r-78,-5r2,-10r260,0r-2,10r-87,5r84,600r10,0r232,-570r-99,-35r2,-10r220,0r-2,10r-105,35r-272,660r-55,0","w":1010,"k":{",":200,"C":40,"G":40,"O":40,"Q":40,"a":120,"c":120,"d":120,"e":120,"o":120,"q":120,"u":70,"v":80,"w":80,"y":80,"g":110,"A":110,"-":80,"i":70,"m":70,"n":70,"p":70,"r":70,"J":60,"s":100,"S":10}},"X":{"d":"367,-335r-146,-350r-90,-5r2,-10r285,0r-2,10r-97,5r123,294r205,-264r-101,-35r2,-10r225,0r-2,10r-104,35r-219,275r154,365r89,5r-1,10r-295,0r1,-10r106,-5r-130,-309r-226,279r110,35r-1,10r-235,0r1,-10r105,-35","w":710,"k":{"C":30,"G":30,"O":30,"Q":30,"a":60,"c":60,"d":60,"e":60,"o":60,"q":60,"u":40,"v":100,"w":100,"y":100,"g":20}},"Y":{"d":"307,-15r32,-228r-163,-442r-70,-5r2,-10r250,0r-2,10r-85,5r140,390r10,0r227,-360r-92,-35r2,-10r210,0r-2,10r-99,35r-244,379r-36,261r89,5r-1,10r-260,0r1,-10","w":680,"k":{",":150,"C":50,"G":50,"O":50,"Q":50,"a":110,"c":110,"d":110,"e":110,"o":110,"q":110,"u":70,"v":80,"w":80,"y":80,"g":110,"A":100,"-":80,"i":60,"m":60,"n":60,"p":60,"r":60,"J":60,"s":100,"S":10}},"Z":{"d":"646,-690r-504,670r-1,10r341,-5r90,-145r10,0r-37,160r-505,0r1,-10r504,-670r1,-10r-310,5r-91,145r-10,0r28,-160r485,0","w":600,"k":{"v":50,"w":50,"y":50}},"[":{"d":"94,250r200,0r-1,10r-230,0r157,-1115r230,0r-2,10r-200,0","w":380},"\\":{"d":"335,0r-111,-710r20,0r111,710r-20,0","w":480},"]":{"d":"63,260r1,-10r200,0r154,-1095r-200,0r2,-10r230,0r-157,1115r-230,0","w":380},"^":{"d":"344,-635r-166,145r-10,0r183,-230r10,0r117,230r-10,0","w":510},"_":{"d":"92,50r410,0r-2,15r-410,0","w":610},"`":{"d":"331,-550r-134,-180r89,0r55,180r-10,0","w":369},"a":{"d":"395,-145r-10,0v-39,96,-96,155,-181,155v-100,0,-161,-110,-138,-260v24,-156,179,-312,367,-243v29,-5,54,-15,86,-17r-72,490r9,10r109,-40r0,10v-65,35,-118,50,-148,50v-85,0,-29,-104,-22,-155xm240,-25v95,0,141,-115,154,-205r37,-241v-139,-86,-250,33,-280,221v-22,135,19,225,89,225","w":545,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10,"t":10}},"b":{"d":"345,-475v-95,0,-141,115,-154,205r-37,241v139,86,250,-33,280,-221v22,-135,-19,-225,-89,-225xm252,-730r-62,375r10,0v39,-96,96,-155,181,-155v100,0,163,110,138,260v-22,131,-126,260,-278,260v-36,0,-113,-20,-166,-50r94,-670r-99,0r0,-10","w":525,"k":{"u":10,"v":10,"w":10,"y":10,"i":10,"m":10,"n":10,"p":10,"r":10,"h":10,"k":10,"l":10,"x":20,"z":20}},"c":{"d":"257,10v-155,0,-212,-125,-193,-260v24,-170,156,-260,276,-260v120,0,151,65,144,115v-4,32,-30,55,-58,55v-70,0,-56,-110,32,-96r1,-10v-16,-26,-41,-52,-116,-52v-110,0,-181,101,-197,217v-21,148,32,236,139,236v75,0,131,-45,163,-95r10,0v-31,80,-106,150,-201,150","w":475,"k":{"u":10,"v":10,"w":10,"y":10,"i":10,"m":10,"n":10,"p":10,"r":10,"h":10,"k":10,"l":10,"x":20,"z":20}},"d":{"d":"395,-145r-10,0v-39,96,-96,155,-181,155v-100,0,-161,-110,-138,-260v24,-156,179,-312,367,-243r32,-217r-99,0r0,-10r182,-10r-101,710r9,10r109,-40r0,10v-65,35,-118,50,-148,50v-85,0,-29,-104,-22,-155xm240,-25v95,0,141,-115,154,-205r37,-241v-139,-86,-250,33,-280,221v-22,135,19,225,89,225","w":545,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10}},"e":{"d":"257,10v-155,0,-212,-125,-193,-260v24,-170,156,-260,276,-260v234,0,175,308,-199,280v-3,117,50,185,144,185v75,0,131,-45,163,-95r10,0v-31,80,-106,150,-201,150xm331,-498v-111,1,-183,122,-189,257v286,21,317,-257,189,-257","w":470,"k":{"u":10,"v":10,"w":10,"y":10,"i":10,"m":10,"n":10,"p":10,"r":10,"h":10,"k":10,"l":10,"x":20,"z":20}},"f":{"d":"111,50r77,-535r-80,0r1,-10r81,-5v7,-129,100,-230,197,-230v22,0,64,6,58,51v-3,24,-25,47,-54,47v-20,0,-58,-18,-37,-78v-74,-10,-66,127,-84,210r130,0r-2,15r-130,0r-74,515v-17,115,-105,200,-193,200v-22,0,-64,-6,-58,-51v3,-24,25,-47,54,-47v20,0,58,18,37,78v63,6,65,-75,77,-160","w":340,"k":{"a":50,"c":50,"d":50,"e":50,"o":50,"q":50}},"g":{"d":"185,-170r2,-9v-56,-30,-92,-80,-84,-151v16,-145,218,-235,350,-142v31,-36,71,-57,115,-57v33,0,55,21,51,47v-8,57,-113,74,-95,-29v-17,4,-49,24,-65,45v34,31,46,83,40,131v-17,133,-157,207,-298,161v-14,10,-39,26,-43,54v-4,32,34,40,64,43r157,14v105,9,135,62,125,128v-16,117,-160,165,-310,165v-130,0,-192,-50,-183,-120v7,-50,63,-95,126,-116r2,-9v-41,-12,-60,-39,-56,-70v5,-32,36,-55,102,-85xm315,8r-164,-18v-33,26,-71,63,-78,109v-7,52,10,121,133,121v163,0,225,-55,233,-114v7,-48,-22,-87,-124,-98xm188,-334v-6,126,32,164,97,164v75,0,123,-56,129,-168v6,-112,-27,-162,-92,-162v-70,0,-129,48,-134,166","w":550,"k":{"a":50,"c":50,"d":50,"e":50,"o":50,"q":50,"h":10,"k":10,"l":10}},"h":{"d":"70,0r99,-710r-99,0r0,-10r182,-10r-75,425r10,0v55,-125,136,-205,209,-205v67,0,100,40,84,150r-48,340r9,10r109,-40r0,10v-65,35,-120,50,-150,50v-45,0,-49,-30,-43,-70r47,-330v8,-55,-1,-90,-42,-90v-51,0,-158,95,-182,265r-30,215r-80,0","w":530,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10,"t":10}},"i":{"d":"161,-650v4,-33,35,-60,68,-60v33,0,56,27,52,60v-5,33,-36,60,-69,60v-33,0,-56,-27,-51,-60xm233,-440r-61,420r9,10r109,-40r0,10v-65,35,-120,50,-150,50v-45,0,-49,-30,-43,-70r61,-420r-9,-10r-109,40r0,-10v65,-35,120,-50,150,-50v45,0,49,30,43,70","w":270,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10,"t":10}},"j":{"d":"81,45r75,-525r-9,-10r-109,40r0,-10v65,-35,120,-50,150,-50v45,0,49,30,43,70r-62,420v-26,175,-111,250,-199,250v-21,0,-63,-6,-57,-51v4,-24,25,-47,54,-47v19,0,57,18,36,78v63,6,65,-75,78,-165xm159,-650v4,-33,35,-60,68,-60v33,0,56,27,52,60v-5,33,-36,60,-69,60v-33,0,-56,-27,-51,-60","w":250},"k":{"d":"262,-730r-102,730r-80,0r99,-710r-80,0r2,-10xm297,-272r0,10r169,247r79,-35r0,10v-58,35,-93,50,-123,50v-45,0,-64,-27,-85,-60r-133,-203v144,-44,244,-114,270,-147r0,-10v-87,2,-75,-100,-10,-100v39,0,56,23,56,55v0,50,-63,111,-223,183","w":525,"k":{"a":20,"c":20,"d":20,"e":20,"o":20,"q":20}},"l":{"d":"77,-60r92,-650r-99,0r0,-10r182,-10r-100,710r9,10r109,-40r0,10v-65,35,-120,50,-150,50v-45,0,-49,-30,-43,-70","w":250,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10}},"m":{"d":"850,-40v-59,29,-90,50,-150,50v-45,0,-49,-30,-43,-70v14,-110,31,-220,47,-330v4,-33,10,-90,-39,-90v-81,0,-169,145,-185,263r-30,217r-80,0r54,-390v4,-33,7,-90,-42,-90v-67,0,-160,112,-188,308r-24,172r-80,0r65,-480r-9,-10r-106,40r0,-10v65,-35,118,-50,148,-50v45,0,53,31,43,70r-34,135r10,0v55,-125,136,-205,209,-205v67,0,84,39,84,150v0,11,-7,28,-3,35v53,-115,126,-185,199,-185v67,0,100,40,84,150r-48,340r9,10r109,-40r0,10","w":830,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10,"t":10}},"n":{"d":"231,-440r-34,135r10,0v55,-125,136,-205,209,-205v67,0,100,40,84,150r-48,340r9,10r109,-40r0,10v-65,35,-120,50,-150,50v-45,0,-49,-30,-43,-70r47,-330v8,-55,-1,-90,-42,-90v-51,0,-158,95,-182,265r-30,215r-80,0r65,-480r-9,-10r-106,40r0,-10v65,-35,118,-50,148,-50v45,0,53,31,43,70","w":550,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10,"t":10}},"o":{"d":"320,-500v-85,0,-142,80,-166,250v-24,170,11,250,96,250v85,0,142,-80,166,-250v24,-170,-11,-250,-96,-250xm248,10v-140,0,-205,-116,-184,-260v20,-144,117,-260,257,-260v140,0,205,116,185,260v-21,144,-118,260,-258,260","w":510,"k":{"u":10,"v":10,"w":10,"y":10,"i":10,"m":10,"n":10,"p":10,"r":10,"h":10,"k":10,"l":10,"x":20,"z":20}},"p":{"d":"364,-475v-95,0,-141,115,-154,205r-37,241v139,86,250,-33,280,-221v22,-135,-19,-225,-89,-225xm60,205r97,-685r-9,-10r-109,40r0,-10v65,-35,118,-50,148,-50v85,0,29,104,22,155r10,0v39,-96,96,-155,181,-155v100,0,161,110,138,260v-24,156,-179,312,-367,243r-31,212r90,5r-1,10r-259,0r1,-10","w":544,"k":{"u":10,"v":10,"w":10,"y":10,"i":10,"m":10,"n":10,"p":10,"r":10,"h":10,"k":10,"l":10,"x":20,"z":20}},"q":{"d":"336,205r59,-350r-10,0v-39,96,-96,155,-181,155v-100,0,-161,-110,-138,-260v24,-156,179,-312,367,-243v29,-5,54,-15,86,-17r-103,715r89,5r-1,10r-260,0r1,-10xm240,-25v95,0,141,-115,154,-205r37,-241v-139,-86,-250,33,-280,221v-22,135,19,225,89,225","w":519},"r":{"d":"195,-295r10,0v58,-161,131,-215,181,-215v39,0,57,28,53,56v-10,68,-115,69,-109,-11r-10,0v-30,25,-100,109,-121,260r-29,205r-80,0r65,-480r-9,-10r-106,40r0,-10v65,-35,118,-50,148,-50v45,0,53,31,43,70","w":410,"k":{"a":60,"c":60,"d":60,"e":60,"o":60,"q":60,"g":30,"h":30,"k":30,"l":30}},"s":{"d":"193,10v-125,0,-164,-65,-157,-115v4,-32,32,-55,65,-55v65,0,87,102,-15,116r-1,10v21,25,75,34,115,34v61,0,107,-40,118,-101v14,-79,-57,-100,-111,-123v-73,-31,-127,-66,-115,-151v11,-80,86,-135,189,-135v125,0,165,65,158,115v-4,32,-30,55,-58,55v-67,0,-78,-103,22,-103r1,-10v-21,-25,-60,-47,-132,-47v-60,0,-99,40,-106,90v-9,65,53,95,105,115v70,27,146,65,133,155v-13,95,-109,150,-211,150","w":425},"t":{"d":"233,-485r-53,375v-16,119,57,106,139,75r-1,10v-53,25,-85,35,-135,35v-70,0,-95,-35,-83,-120r53,-375r-80,0r1,-10r81,-5r87,-120r10,0r-17,120r150,0r-2,15r-150,0","w":370,"k":{"a":50,"c":50,"d":50,"e":50,"o":50,"q":50}},"u":{"d":"379,-60r34,-135r-10,0v-55,125,-136,205,-209,205v-67,0,-100,-40,-84,-150r48,-340r-9,-10r-109,40r0,-10v65,-35,120,-50,150,-50v45,0,49,30,43,70r-47,330v-8,55,1,90,42,90v51,0,158,-95,182,-265r30,-215r80,0r-65,480r9,10r106,-40r0,10v-65,35,-118,50,-148,50v-45,0,-53,-31,-43,-70","w":550,"k":{"a":10,"c":10,"d":10,"e":10,"o":10,"q":10,"u":10,"v":10,"w":10,"y":10,"t":10}},"v":{"d":"296,-60r10,0v55,-96,140,-215,173,-340r0,-10v-107,18,-98,-100,-30,-100v39,0,56,33,56,65v0,94,-148,323,-221,450r-55,0r-105,-480r-9,-10r-95,35r0,-10v65,-35,115,-50,145,-50v45,0,53,31,60,70","w":505,"k":{"a":30,"c":30,"d":30,"e":30,"o":30,"q":30,"h":30,"k":30,"l":30}},"w":{"d":"596,-60r10,0v55,-96,140,-215,173,-340r0,-10v-107,18,-98,-100,-30,-100v39,0,56,33,56,65v0,94,-148,323,-221,450r-55,0r-69,-312v-49,104,-129,230,-176,312r-55,0r-105,-480r-9,-10r-95,35r0,-10v65,-35,115,-50,145,-50v45,0,53,31,60,70r71,380r10,0v44,-78,109,-171,149,-270r-31,-145r-9,-10r-95,35r0,-10v65,-35,115,-50,145,-50v45,0,53,31,60,70","w":805,"k":{"a":30,"c":30,"d":30,"e":30,"o":30,"q":30,"h":30,"k":30,"l":30}},"x":{"d":"276,-210r-10,0v-72,183,-145,220,-195,220v-32,0,-56,-25,-49,-56v14,-60,100,-73,115,1r10,0v23,-12,82,-74,116,-201r-76,-224r-9,-10r-98,30r0,-10v71,-35,130,-50,160,-50v45,0,50,28,60,65r38,135r10,0v70,-160,135,-200,185,-200v32,0,56,25,49,56v-14,60,-106,71,-115,-1r-10,0v-23,12,-63,64,-107,170r86,252r9,10r89,-27r0,10v-71,35,-121,50,-151,50v-45,0,-49,-28,-60,-65","w":554,"k":{"a":30,"c":30,"d":30,"e":30,"o":30,"q":30}},"y":{"d":"240,61v-53,75,-123,169,-218,169v-45,0,-65,-30,-61,-58v9,-60,116,-67,97,33r10,0v40,0,108,-69,170,-167r-114,-513r-9,-10r-95,35r0,-10v65,-35,115,-50,145,-50v45,0,53,31,60,70r71,380r10,0v55,-96,140,-215,173,-340r0,-10v-107,18,-98,-100,-30,-100v39,0,56,33,56,65v0,94,-180,385,-265,506","w":505,"k":{"a":30,"c":30,"d":30,"e":30,"o":30,"q":30,"h":30,"k":30,"l":30}},"z":{"d":"120,-90r0,10r320,0r21,-53r9,4v-25,95,-46,175,-173,129r-190,-69r-82,74r-5,-6r380,-409r0,-10r-290,0r-21,52r-9,-4v25,-95,48,-180,173,-128r160,67r82,-72r5,5","w":480,"k":{"a":30,"c":30,"d":30,"e":30,"o":30,"q":30}},"{":{"d":"500,-855r-2,10v-82,2,-220,2,-226,154v-2,38,8,185,-2,257v-16,112,-92,136,-141,149v50,6,116,31,100,146v-8,59,-61,208,-70,246v-37,154,106,136,185,143r-1,10v-150,0,-226,-12,-207,-148v9,-69,61,-211,62,-282v1,-76,-11,-100,-109,-110r1,-8v104,-15,120,-42,141,-117v20,-71,9,-222,18,-291v19,-136,101,-159,251,-159","w":430},"|":{"d":"85,100r130,-920r15,0r-130,920r-15,0","w":215},"}":{"d":"13,260r1,-10v81,-7,219,11,225,-143v2,-38,-8,-187,0,-246v16,-115,90,-140,142,-146v-43,-10,-117,-36,-101,-149v10,-72,63,-219,72,-257v8,-31,7,-55,2,-75v-19,-78,-121,-77,-186,-79r2,-10v150,0,224,23,205,159v-9,69,-63,220,-64,291v-2,74,12,104,109,117r-1,8v-102,10,-120,34,-141,110v-19,71,-7,213,-16,282v-19,136,-99,148,-249,148","w":430},"~":{"d":"152,-326r-6,-4v27,-43,69,-110,115,-110v40,0,137,46,176,46v24,0,41,-6,65,-41r8,5v-27,42,-63,100,-109,100v-47,0,-124,-44,-171,-44v-36,0,-45,10,-78,48","w":550},"\u00a0":{"w":230}}});

