/*
* Copyright (c) 2009 Simo Kinnunen.
* Licensed under the MIT license.
*
* @version 1.09i
*/
var Cufon = (function () { var m = function () { return m.replace.apply(null, arguments) }; var x = m.DOM = { ready: (function () { var C = false, E = { loaded: 1, complete: 1 }; var B = [], D = function () { if (C) { return } C = true; for (var F; F = B.shift(); F()) { } }; if (document.addEventListener) { document.addEventListener("DOMContentLoaded", D, false); window.addEventListener("pageshow", D, false) } if (!window.opera && document.readyState) { (function () { E[document.readyState] ? D() : setTimeout(arguments.callee, 10) })() } if (document.readyState && document.createStyleSheet) { (function () { try { document.body.doScroll("left"); D() } catch (F) { setTimeout(arguments.callee, 1) } })() } q(window, "load", D); return function (F) { if (!arguments.length) { D() } else { C ? F() : B.push(F) } } })(), root: function () { return document.documentElement || document.body } }; var n = m.CSS = { Size: function (C, B) { this.value = parseFloat(C); this.unit = String(C).match(/[a-z%]*$/)[0] || "px"; this.convert = function (D) { return D / B * this.value }; this.convertFrom = function (D) { return D / this.value * B }; this.toString = function () { return this.value + this.unit } }, addClass: function (C, B) { var D = C.className; C.className = D + (D && " ") + B; return C }, color: j(function (C) { var B = {}; B.color = C.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function (E, D, F) { B.opacity = parseFloat(F); return "rgb(" + D + ")" }); return B }), fontStretch: j(function (B) { if (typeof B == "number") { return B } if (/%$/.test(B)) { return parseFloat(B) / 100 } return { "ultra-condensed": 0.5, "extra-condensed": 0.625, condensed: 0.75, "semi-condensed": 0.875, "semi-expanded": 1.125, expanded: 1.25, "extra-expanded": 1.5, "ultra-expanded": 2}[B] || 1 }), getStyle: function (C) { var B = document.defaultView; if (B && B.getComputedStyle) { return new a(B.getComputedStyle(C, null)) } if (C.currentStyle) { return new a(C.currentStyle) } return new a(C.style) }, gradient: j(function (F) { var G = { id: F, type: F.match(/^-([a-z]+)-gradient\(/)[1], stops: [] }, C = F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig); for (var E = 0, B = C.length, D; E < B; ++E) { D = C[E].split("=", 2).reverse(); G.stops.push([D[1] || E / (B - 1), D[0]]) } return G }), quotedList: j(function (E) { var D = [], C = /\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g, B; while (B = C.exec(E)) { D.push(B[3] || B[1]) } return D }), recognizesMedia: j(function (G) { var E = document.createElement("style"), D, C, B; E.type = "text/css"; E.media = G; try { E.appendChild(document.createTextNode("/**/")) } catch (F) { } C = g("head")[0]; C.insertBefore(E, C.firstChild); D = (E.sheet || E.styleSheet); B = D && !D.disabled; C.removeChild(E); return B }), removeClass: function (D, C) { var B = RegExp("(?:^|\\s+)" + C + "(?=\\s|$)", "g"); D.className = D.className.replace(B, ""); return D }, supports: function (D, C) { var B = document.createElement("span").style; if (B[D] === undefined) { return false } B[D] = C; return B[D] === C }, textAlign: function (E, D, B, C) { if (D.get("textAlign") == "right") { if (B > 0) { E = " " + E } } else { if (B < C - 1) { E += " " } } return E }, textShadow: j(function (F) { if (F == "none") { return null } var E = [], G = {}, B, C = 0; var D = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig; while (B = D.exec(F)) { if (B[0] == ",") { E.push(G); G = {}; C = 0 } else { if (B[1]) { G.color = B[1] } else { G[["offX", "offY", "blur"][C++]] = B[2] } } } E.push(G); return E }), textTransform: (function () { var B = { uppercase: function (C) { return C.toUpperCase() }, lowercase: function (C) { return C.toLowerCase() }, capitalize: function (C) { return C.replace(/\b./g, function (D) { return D.toUpperCase() }) } }; return function (E, D) { var C = B[D.get("textTransform")]; return C ? C(E) : E } })(), whiteSpace: (function () { var D = { inline: 1, "inline-block": 1, "run-in": 1 }; var C = /^\s+/, B = /\s+$/; return function (H, F, G, E) { if (E) { if (E.nodeName.toLowerCase() == "br") { H = H.replace(C, "") } } if (D[F.get("display")]) { return H } if (!G.previousSibling) { H = H.replace(C, "") } if (!G.nextSibling) { H = H.replace(B, "") } return H } })() }; n.ready = (function () { var B = !n.recognizesMedia("all"), E = false; var D = [], H = function () { B = true; for (var K; K = D.shift(); K()) { } }; var I = g("link"), J = g("style"); function C(K) { return K.disabled || G(K.sheet, K.media || "screen") } function G(M, P) { if (!n.recognizesMedia(P || "all")) { return true } if (!M || M.disabled) { return false } try { var Q = M.cssRules, O; if (Q) { search: for (var L = 0, K = Q.length; O = Q[L], L < K; ++L) { switch (O.type) { case 2: break; case 3: if (!G(O.styleSheet, O.media.mediaText)) { return false } break; default: break search } } } } catch (N) { } return true } function F() { if (document.createStyleSheet) { return true } var L, K; for (K = 0; L = I[K]; ++K) { if (L.rel.toLowerCase() == "stylesheet" && !C(L)) { return false } } for (K = 0; L = J[K]; ++K) { if (!C(L)) { return false } } return true } x.ready(function () { if (!E) { E = n.getStyle(document.body).isUsable() } if (B || (E && F())) { H() } else { setTimeout(arguments.callee, 10) } }); return function (K) { if (B) { K() } else { D.push(K) } } })(); function s(D) { var C = this.face = D.face, B = { "\u0020": 1, "\u00a0": 1, "\u3000": 1 }; this.glyphs = D.glyphs; this.w = D.w; this.baseSize = parseInt(C["units-per-em"], 10); this.family = C["font-family"].toLowerCase(); this.weight = C["font-weight"]; this.style = C["font-style"] || "normal"; this.viewBox = (function () { var F = C.bbox.split(/\s+/); var E = { minX: parseInt(F[0], 10), minY: parseInt(F[1], 10), maxX: parseInt(F[2], 10), maxY: parseInt(F[3], 10) }; E.width = E.maxX - E.minX; E.height = E.maxY - E.minY; E.toString = function () { return [this.minX, this.minY, this.width, this.height].join(" ") }; return E })(); this.ascent = -parseInt(C.ascent, 10); this.descent = -parseInt(C.descent, 10); this.height = -this.ascent + this.descent; this.spacing = function (L, N, E) { var O = this.glyphs, M, K, G, P = [], F = 0, J = -1, I = -1, H; while (H = L[++J]) { M = O[H] || this.missingGlyph; if (!M) { continue } if (K) { F -= G = K[H] || 0; P[I] -= G } F += P[++I] = ~ ~(M.w || this.w) + N + (B[H] ? E : 0); K = M.k } P.total = F; return P } } function f() { var C = {}, B = { oblique: "italic", italic: "oblique" }; this.add = function (D) { (C[D.style] || (C[D.style] = {}))[D.weight] = D }; this.get = function (H, I) { var G = C[H] || C[B[H]] || C.normal || C.italic || C.oblique; if (!G) { return null } I = { normal: 400, bold: 700}[I] || parseInt(I, 10); if (G[I]) { return G[I] } var E = { 1: 1, 99: 0}[I % 100], K = [], F, D; if (E === undefined) { E = I > 400 } if (I == 500) { I = 400 } for (var J in G) { if (!k(G, J)) { continue } J = parseInt(J, 10); if (!F || J < F) { F = J } if (!D || J > D) { D = J } K.push(J) } if (I < F) { I = F } if (I > D) { I = D } K.sort(function (M, L) { return (E ? (M >= I && L >= I) ? M < L : M > L : (M <= I && L <= I) ? M > L : M < L) ? -1 : 1 }); return G[K[0]] } } function r() { function D(F, G) { if (F.contains) { return F.contains(G) } return F.compareDocumentPosition(G) & 16 } function B(G) { var F = G.relatedTarget; if (!F || D(this, F)) { return } C(this, G.type == "mouseover") } function E(F) { C(this, F.type == "mouseenter") } function C(F, G) { setTimeout(function () { var H = d.get(F).options; m.replace(F, G ? h(H, H.hover) : H, true) }, 10) } this.attach = function (F) { if (F.onmouseenter === undefined) { q(F, "mouseover", B); q(F, "mouseout", B) } else { q(F, "mouseenter", E); q(F, "mouseleave", E) } } } function u() { var C = [], D = {}; function B(H) { var E = [], G; for (var F = 0; G = H[F]; ++F) { E[F] = C[D[G]] } return E } this.add = function (F, E) { D[F] = C.push(E) - 1 }; this.repeat = function () { var E = arguments.length ? B(arguments) : C, F; for (var G = 0; F = E[G++]; ) { m.replace(F[0], F[1], true) } } } function A() { var D = {}, B = 0; function C(E) { return E.cufid || (E.cufid = ++B) } this.get = function (E) { var F = C(E); return D[F] || (D[F] = {}) } } function a(B) { var D = {}, C = {}; this.extend = function (E) { for (var F in E) { if (k(E, F)) { D[F] = E[F] } } return this }; this.get = function (E) { return D[E] != undefined ? D[E] : B[E] }; this.getSize = function (F, E) { return C[F] || (C[F] = new n.Size(this.get(F), E)) }; this.isUsable = function () { return !!B } } function q(C, B, D) { if (C.addEventListener) { C.addEventListener(B, D, false) } else { if (C.attachEvent) { C.attachEvent("on" + B, function () { return D.call(C, window.event) }) } } } function v(C, B) { var D = d.get(C); if (D.options) { return C } if (B.hover && B.hoverables[C.nodeName.toLowerCase()]) { b.attach(C) } D.options = B; return C } function j(B) { var C = {}; return function (D) { if (!k(C, D)) { C[D] = B.apply(null, arguments) } return C[D] } } function c(F, E) { var B = n.quotedList(E.get("fontFamily").toLowerCase()), D; for (var C = 0; D = B[C]; ++C) { if (i[D]) { return i[D].get(E.get("fontStyle"), E.get("fontWeight")) } } return null } function g(B) { return document.getElementsByTagName(B) } function k(C, B) { return C.hasOwnProperty(B) } function h() { var C = {}, B, F; for (var E = 0, D = arguments.length; B = arguments[E], E < D; ++E) { for (F in B) { if (k(B, F)) { C[F] = B[F] } } } return C } function o(E, M, C, N, F, D) { var K = document.createDocumentFragment(), H; if (M === "") { return K } var L = N.separate; var I = M.split(p[L]), B = (L == "words"); if (B && t) { if (/^\s/.test(M)) { I.unshift("") } if (/\s$/.test(M)) { I.push("") } } for (var J = 0, G = I.length; J < G; ++J) { H = z[N.engine](E, B ? n.textAlign(I[J], C, J, G) : I[J], C, N, F, D, J < G - 1); if (H) { K.appendChild(H) } } return K } function l(D, M) { var C = D.nodeName.toLowerCase(); if (M.ignore[C]) { return } var E = !M.textless[C]; var B = n.getStyle(v(D, M)).extend(M); var F = c(D, B), G, K, I, H, L, J; if (!F) { return } for (G = D.firstChild; G; G = I) { K = G.nodeType; I = G.nextSibling; if (E && K == 3) { if (H) { H.appendData(G.data); D.removeChild(G) } else { H = G } if (I) { continue } } if (H) { D.replaceChild(o(F, n.whiteSpace(H.data, B, H, J), B, M, G, D), H); H = null } if (K == 1) { if (G.firstChild) { if (G.nodeName.toLowerCase() == "cufon") { z[M.engine](F, null, B, M, G, D) } else { arguments.callee(G, M) } } J = G } } } var t = " ".split(/\s+/).length == 0; var d = new A(); var b = new r(); var y = new u(); var e = false; var z = {}, i = {}, w = { autoDetect: false, engine: null, forceHitArea: false, hover: false, hoverables: { a: true }, ignore: { applet: 1, canvas: 1, col: 1, colgroup: 1, head: 1, iframe: 1, map: 1, optgroup: 1, option: 1, script: 1, select: 1, style: 1, textarea: 1, title: 1, pre: 1 }, printable: true, selector: (window.Sizzle || (window.jQuery && function (B) { return jQuery(B) }) || (window.dojo && dojo.query) || (window.Ext && Ext.query) || (window.YAHOO && YAHOO.util && YAHOO.util.Selector && YAHOO.util.Selector.query) || (window.$$ && function (B) { return $$(B) }) || (window.$ && function (B) { return $(B) }) || (document.querySelectorAll && function (B) { return document.querySelectorAll(B) }) || g), separate: "words", textless: { dl: 1, html: 1, ol: 1, table: 1, tbody: 1, thead: 1, tfoot: 1, tr: 1, ul: 1 }, textShadow: "none" }; var p = { words: /\s/.test("\u00a0") ? /[^\S\u00a0]+/ : /\s+/, characters: "", none: /^/ }; m.now = function () { x.ready(); return m }; m.refresh = function () { y.repeat.apply(y, arguments); return m }; m.registerEngine = function (C, B) { if (!B) { return m } z[C] = B; return m.set("engine", C) }; m.registerFont = function (D) { if (!D) { return m } var B = new s(D), C = B.family; if (!i[C]) { i[C] = new f() } i[C].add(B); return m.set("fontFamily", '"' + C + '"') }; m.replace = function (D, C, B) { C = h(w, C); if (!C.engine) { return m } if (!e) { n.addClass(x.root(), "cufon-active cufon-loading"); n.ready(function () { n.addClass(n.removeClass(x.root(), "cufon-loading"), "cufon-ready") }); e = true } if (C.hover) { C.forceHitArea = true } if (C.autoDetect) { delete C.fontFamily } if (typeof C.textShadow == "string") { C.textShadow = n.textShadow(C.textShadow) } if (typeof C.color == "string" && /^-/.test(C.color)) { C.textGradient = n.gradient(C.color) } else { delete C.textGradient } if (!B) { y.add(D, arguments) } if (D.nodeType || typeof D == "string") { D = [D] } n.ready(function () { for (var F = 0, E = D.length; F < E; ++F) { var G = D[F]; if (typeof G == "string") { m.replace(C.selector(G), C, true) } else { l(G, C) } } }); return m }; m.set = function (B, C) { w[B] = C; return m }; return m })(); Cufon.registerEngine("vml", (function () { var e = document.namespaces; if (!e) { return } e.add("cvml", "urn:schemas-microsoft-com:vml"); e = null; var b = document.createElement("cvml:shape"); b.style.behavior = "url(#default#VML)"; if (!b.coordsize) { return } b = null; var h = (document.documentMode || 0) < 8; document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:' + (h ? "middle" : "text-bottom") + ";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g, "!important;")); function c(i, j) { return a(i, /(?:em|ex|%)$|^[a-z-]+$/i.test(j) ? "1em" : j) } function a(l, m) { if (m === "0") { return 0 } if (/px$/i.test(m)) { return parseFloat(m) } var k = l.style.left, j = l.runtimeStyle.left; l.runtimeStyle.left = l.currentStyle.left; l.style.left = m.replace("%", "em"); var i = l.style.pixelLeft; l.style.left = k; l.runtimeStyle.left = j; return i } function f(l, k, j, n) { var i = "computed" + n, m = k[i]; if (isNaN(m)) { m = k.get(n); k[i] = m = (m == "normal") ? 0 : ~ ~j.convertFrom(a(l, m)) } return m } var g = {}; function d(p) { var q = p.id; if (!g[q]) { var n = p.stops, o = document.createElement("cvml:fill"), i = []; o.type = "gradient"; o.angle = 180; o.focus = "0"; o.method = "sigma"; o.color = n[0][1]; for (var m = 1, l = n.length - 1; m < l; ++m) { i.push(n[m][0] * 100 + "% " + n[m][1]) } o.colors = i.join(","); o.color2 = n[l][1]; g[q] = o } return g[q] } return function (ac, G, Y, C, K, ad, W) { var n = (G === null); if (n) { G = K.alt } var I = ac.viewBox; var p = Y.computedFontSize || (Y.computedFontSize = new Cufon.CSS.Size(c(ad, Y.get("fontSize")) + "px", ac.baseSize)); var y, q; if (n) { y = K; q = K.firstChild } else { y = document.createElement("cufon"); y.className = "cufon cufon-vml"; y.alt = G; q = document.createElement("cufoncanvas"); y.appendChild(q); if (C.printable) { var Z = document.createElement("cufontext"); Z.appendChild(document.createTextNode(G)); y.appendChild(Z) } if (!W) { y.appendChild(document.createElement("cvml:shape")) } } var ai = y.style; var R = q.style; var l = p.convert(I.height), af = Math.ceil(l); var V = af / l; var P = V * Cufon.CSS.fontStretch(Y.get("fontStretch")); var U = I.minX, T = I.minY; R.height = af; R.top = Math.round(p.convert(T - ac.ascent)); R.left = Math.round(p.convert(U)); ai.height = p.convert(ac.height) + "px"; var F = Y.get("color"); var ag = Cufon.CSS.textTransform(G, Y).split(""); var L = ac.spacing(ag, f(ad, Y, p, "letterSpacing"), f(ad, Y, p, "wordSpacing")); if (!L.length) { return null } var k = L.total; var x = -U + k + (I.width - L[L.length - 1]); var ah = p.convert(x * P), X = Math.round(ah); var O = x + "," + I.height, m; var J = "r" + O + "ns"; var u = C.textGradient && d(C.textGradient); var o = ac.glyphs, S = 0; var H = C.textShadow; var ab = -1, aa = 0, w; while (w = ag[++ab]) { var D = o[ag[ab]] || ac.missingGlyph, v; if (!D) { continue } if (n) { v = q.childNodes[aa]; while (v.firstChild) { v.removeChild(v.firstChild) } } else { v = document.createElement("cvml:shape"); q.appendChild(v) } v.stroked = "f"; v.coordsize = O; v.coordorigin = m = (U - S) + "," + T; v.path = (D.d ? "m" + D.d + "xe" : "") + "m" + m + J; v.fillcolor = F; if (u) { v.appendChild(u.cloneNode(false)) } var ae = v.style; ae.width = X; ae.height = af; if (H) { var s = H[0], r = H[1]; var B = Cufon.CSS.color(s.color), z; var N = document.createElement("cvml:shadow"); N.on = "t"; N.color = B.color; N.offset = s.offX + "," + s.offY; if (r) { z = Cufon.CSS.color(r.color); N.type = "double"; N.color2 = z.color; N.offset2 = r.offX + "," + r.offY } N.opacity = B.opacity || (z && z.opacity) || 1; v.appendChild(N) } S += L[aa++] } var M = v.nextSibling, t, A; if (C.forceHitArea) { if (!M) { M = document.createElement("cvml:rect"); M.stroked = "f"; M.className = "cufon-vml-cover"; t = document.createElement("cvml:fill"); t.opacity = 0; M.appendChild(t); q.appendChild(M) } A = M.style; A.width = X; A.height = af } else { if (M) { q.removeChild(M) } } ai.width = Math.max(Math.ceil(p.convert(k * P)), 0); if (h) { var Q = Y.computedYAdjust; if (Q === undefined) { var E = Y.get("lineHeight"); if (E == "normal") { E = "1em" } else { if (!isNaN(E)) { E += "em" } } Y.computedYAdjust = Q = 0.5 * (a(ad, E) - parseFloat(ai.height)) } if (Q) { ai.marginTop = Math.ceil(Q) + "px"; ai.marginBottom = Q + "px" } } return y } })()); Cufon.registerEngine("canvas", (function () { var b = document.createElement("canvas"); if (!b || !b.getContext || !b.getContext.apply) { return } b = null; var a = Cufon.CSS.supports("display", "inline-block"); var e = !a && (document.compatMode == "BackCompat" || /frameset|transitional/i.test(document.doctype.publicId)); var f = document.createElement("style"); f.type = "text/css"; f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;" + (e ? "" : "font-size:1px;line-height:1px;") + "}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}" + (a ? "cufon canvas{position:relative;}" : "cufon canvas{position:absolute;}") + "}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g, "!important;"))); document.getElementsByTagName("head")[0].appendChild(f); function d(p, h) { var n = 0, m = 0; var g = [], o = /([mrvxe])([^a-z]*)/g, k; generate: for (var j = 0; k = o.exec(p); ++j) { var l = k[2].split(","); switch (k[1]) { case "v": g[j] = { m: "bezierCurveTo", a: [n + ~ ~l[0], m + ~ ~l[1], n + ~ ~l[2], m + ~ ~l[3], n += ~ ~l[4], m += ~ ~l[5]] }; break; case "r": g[j] = { m: "lineTo", a: [n += ~ ~l[0], m += ~ ~l[1]] }; break; case "m": g[j] = { m: "moveTo", a: [n = ~ ~l[0], m = ~ ~l[1]] }; break; case "x": g[j] = { m: "closePath" }; break; case "e": break generate } h[g[j].m].apply(h, g[j].a) } return g } function c(m, k) { for (var j = 0, h = m.length; j < h; ++j) { var g = m[j]; k[g.m].apply(k, g.a) } } return function (V, w, P, t, C, W) { var k = (w === null); if (k) { w = C.getAttribute("alt") } var A = V.viewBox; var m = P.getSize("fontSize", V.baseSize); var B = 0, O = 0, N = 0, u = 0; var z = t.textShadow, L = []; if (z) { for (var U = z.length; U--; ) { var F = z[U]; var K = m.convertFrom(parseFloat(F.offX)); var I = m.convertFrom(parseFloat(F.offY)); L[U] = [K, I]; if (I < B) { B = I } if (K > O) { O = K } if (I > N) { N = I } if (K < u) { u = K } } } var Z = Cufon.CSS.textTransform(w, P).split(""); var E = V.spacing(Z, ~ ~m.convertFrom(parseFloat(P.get("letterSpacing")) || 0), ~ ~m.convertFrom(parseFloat(P.get("wordSpacing")) || 0)); if (!E.length) { return null } var h = E.total; O += A.width - E[E.length - 1]; u += A.minX; var s, n; if (k) { s = C; n = C.firstChild } else { s = document.createElement("cufon"); s.className = "cufon cufon-canvas"; s.setAttribute("alt", w); n = document.createElement("canvas"); s.appendChild(n); if (t.printable) { var S = document.createElement("cufontext"); S.appendChild(document.createTextNode(w)); s.appendChild(S) } } var aa = s.style; var H = n.style; var j = m.convert(A.height); var Y = Math.ceil(j); var M = Y / j; var G = M * Cufon.CSS.fontStretch(P.get("fontStretch")); var J = h * G; var Q = Math.ceil(m.convert(J + O - u)); var o = Math.ceil(m.convert(A.height - B + N)); n.width = Q; n.height = o; H.width = Q + "px"; H.height = o + "px"; B += A.minY; H.top = Math.round(m.convert(B - V.ascent)) + "px"; H.left = Math.round(m.convert(u)) + "px"; var r = Math.max(Math.ceil(m.convert(J)), 0) + "px"; if (a) { aa.width = r; aa.height = m.convert(V.height) + "px" } else { aa.paddingLeft = r; aa.paddingBottom = (m.convert(V.height) - 1) + "px" } var X = n.getContext("2d"), D = j / A.height; X.scale(D, D * M); X.translate(-u, -B); X.save(); function T() { var x = V.glyphs, ab, l = -1, g = -1, y; X.scale(G, 1); while (y = Z[++l]) { var ab = x[Z[l]] || V.missingGlyph; if (!ab) { continue } if (ab.d) { X.beginPath(); if (ab.code) { c(ab.code, X) } else { ab.code = d("m" + ab.d, X) } X.fill() } X.translate(E[++g], 0) } X.restore() } if (z) { for (var U = z.length; U--; ) { var F = z[U]; X.save(); X.fillStyle = F.color; X.translate.apply(X, L[U]); T() } } var q = t.textGradient; if (q) { var v = q.stops, p = X.createLinearGradient(0, A.minY, 0, A.maxY); for (var U = 0, R = v.length; U < R; ++U) { p.addColorStop.apply(p, v[U]) } X.fillStyle = p } else { X.fillStyle = P.get("color") } T(); return s } })());


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Part of the digitally encoded machine readable outline data for producing the
 * Typefaces provided is copyrighted © 2003 - 2006 Linotype GmbH, www.linotype.com.
 * All rights reserved. This software is the property of Linotype GmbH, and may not
 * be reproduced, modified, disclosed or transferred without the express written
 * approval of Linotype GmbH. Copyright © 1988, 1990, 1993 Adobe Systems
 * Incorporated. All Rights Reserved. Helvetica is a trademark of Heidelberger
 * Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be
 * registered in certain jurisdictions. This typeface is original artwork of
 * Linotype Design Studio. The design may be protected in certain jurisdictions.
 * 
 * Trademark:
 * Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively
 * licensed through Linotype GmbH, and may be registered in certain jurisdictions.
 * 
 * Description:
 * Helvetica is one of the most famous and popular typefaces in the world. It
 * lends an air of lucid efficiency to any typographic message with its clean,
 * no-nonsense shapes. The original typeface was called Haas Grotesk, and was
 * designed in 1957 by Max Miedinger for the Haas'sche Schriftgiesserei (Haas Type
 * Foundry) in Switzerland. In 1960 the name was changed to Helvetica (an
 * adaptation of "Helvetia", the Latin name for Switzerland). Over the years, the
 * Helvetica family was expanded to include many different weights, but these were
 * not as well coordinated with each other as they might have been. In 1983, D.
 * Stempel AG and Linotype re-designed and digitized Neue Helvetica and updated it
 * into a cohesive font family. Today, the original Helvetica family consists of 34
 * different font weights, and the Neue Helvetica family consists of 51 font
 * weights. The Helvetica family now forms an integral part of many digital
 * printers and operating systems and has become a stylistic anchor in our visual
 * culture. It is the quintessential sans serif font, timeless and neutral, and can
 * be used for all types of communication. Helvetica World, an update to the
 * classic Helvetica design using the OpenType font format, contains the following
 * Microsoft code pages: 1252 Latin 1, 1250 Latin 2 Eastern, 1251 Cyrillic, 1253
 * Greek, 1254 Turk, 1255 Hebrew, 1256 Arabic, 1257 Windows Baltic, 1258 Windows
 * Vietnamese, as well as a mixture of box drawing element glyphs and mathematical
 * symbols & operators. In total, each weight of Helvetica World contains more than
 * 1850 different glyph characters!
 * 
 * Manufacturer:
 * Linotype GmbH
 * 
 * Designer:
 * Linotype Design Studio
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * http://www.linotype.com/license
 */
Cufon.registerFont({"w":166,"face":{"font-family":"helvetica","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 6 3 5 2 3 2 4","ascent":"257","descent":"-103","x-height":"5","bbox":"-8 -276 278 68.0176","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":86,"k":{"Y":13,"W":13,"V":13,"T":13,"A":13}},"!":{"d":"30,-35r33,0r0,35r-33,0r0,-35xm30,-257r33,0r-6,190r-21,0","w":92},"\"":{"d":"91,-257r24,0r0,91r-24,0r0,-91xm31,-257r24,0r0,91r-24,0r0,-91","w":146},"#":{"d":"64,-98r39,0r6,-55r-38,0xm38,-74r-30,0r0,-24r33,0r7,-55r-32,0r0,-24r35,0r9,-73r24,0r-9,73r38,0r9,-73r23,0r-9,73r29,0r0,24r-32,0r-7,55r30,0r0,24r-33,0r-9,74r-24,0r10,-74r-38,0r-10,74r-24,0","w":172},"$":{"d":"54,-124v-65,-17,-52,-138,24,-131r0,-21r15,0r0,21v44,1,64,26,65,70r-32,0v1,-27,-10,-41,-33,-44r0,88v35,13,72,22,72,72v0,48,-29,70,-72,74r0,34r-15,0r0,-34v-51,-1,-71,-30,-70,-83r31,0v-1,32,8,56,39,57r0,-94xm78,-229v-33,-1,-43,46,-25,68v6,6,15,11,25,15r0,-83xm93,-21v43,1,52,-68,15,-83r-15,-6r0,89","w":172},"%":{"d":"257,-64v0,38,-7,69,-47,69v-41,0,-48,-30,-48,-69v0,-39,7,-69,48,-69v40,0,47,31,47,69xm111,-186v0,40,-6,69,-47,69v-41,0,-47,-30,-47,-69v0,-40,7,-69,47,-69v39,0,47,29,47,69xm189,-84v0,28,-8,70,21,70v28,0,20,-42,20,-70v0,-17,-4,-30,-20,-30v-16,0,-21,12,-21,30xm179,-255r25,0r-112,260r-25,0xm43,-206v-1,28,-7,70,21,70v28,0,19,-42,20,-70v-1,-16,-3,-29,-20,-29v-17,0,-20,13,-21,29","w":273},"&":{"d":"89,-257v58,-7,71,66,32,94r-22,19r51,73v5,-15,8,-29,10,-50r28,0v-1,28,-11,56,-21,75r33,46r-34,0r-17,-24v-36,50,-140,32,-140,-42v0,-43,28,-63,54,-81v-9,-19,-27,-33,-27,-60v0,-32,23,-46,53,-50xm41,-69v0,55,71,61,93,23r-57,-81v-19,11,-36,29,-36,58xm90,-233v-42,1,-21,55,-4,70v11,-14,29,-22,30,-45v0,-13,-11,-26,-26,-25","w":200},"'":{"d":"31,-257r24,0r0,91r-24,0r0,-91","w":86},"(":{"d":"15,-95v0,-66,23,-119,53,-162r17,0v-52,83,-51,240,0,323r-17,0v-31,-41,-53,-96,-53,-161","w":86},")":{"d":"19,-257v67,77,67,246,0,323r-18,0v55,-82,50,-240,0,-323r18,0","w":86},"*":{"d":"53,-257r21,0r0,43r39,-15r8,21r-41,12r27,34r-18,13r-26,-36r-26,36r-18,-13r28,-34r-41,-12r8,-21r39,15r0,-43","w":126},"+":{"d":"96,-79r-79,0r0,-24r79,0r0,-79r24,0r0,79r79,0r0,24r-79,0r0,79r-24,0r0,-79","w":216},",":{"d":"27,36v14,-5,15,-17,15,-36r-15,0r0,-38r33,0v-1,40,5,84,-33,91r0,-17","w":86,"k":{" ":13}},"-":{"d":"19,-116r88,0r0,28r-88,0r0,-28","w":126},".":{"d":"27,-38r33,0r0,38r-33,0r0,-38","w":86,"k":{" ":13}},"\/":{"d":"80,-262r24,0r-84,267r-24,0","w":100},"0":{"d":"86,-231v-44,0,-41,59,-41,107v0,47,-3,105,41,105v44,0,41,-58,41,-105v0,-48,4,-107,-41,-107xm159,-124v0,68,-7,129,-73,129v-75,0,-75,-81,-72,-158v2,-54,16,-102,72,-102v67,0,73,62,73,131","w":172},"1":{"d":"24,-213v34,-1,63,-7,63,-42r22,0r0,255r-31,0r0,-192r-54,0r0,-21","w":172},"2":{"d":"88,-255v75,-4,84,93,43,134v-29,29,-71,48,-83,93r110,0r0,28r-143,0v1,-89,80,-102,108,-164v6,-31,-3,-66,-35,-65v-30,1,-42,23,-40,55r-32,0v0,-50,22,-78,72,-81","w":172},"3":{"d":"127,-71v0,-36,-21,-53,-62,-49r0,-24v37,5,55,-14,55,-45v0,-24,-9,-42,-34,-42v-28,0,-36,22,-36,50r-32,0v0,-46,23,-70,68,-74v73,-7,88,108,26,121v26,9,48,23,47,60v-2,48,-24,78,-73,79v-49,0,-71,-27,-72,-74r32,0v1,28,12,49,40,50v30,0,41,-21,41,-52","w":172},"4":{"d":"103,-255r30,0r0,168r29,0r0,25r-29,0r0,62r-30,0r0,-62r-92,0r0,-28xm38,-87r65,0r-1,-118","w":172},"5":{"d":"84,-143v-19,0,-30,13,-36,25r-27,-1r14,-131r114,0r0,28r-90,0v-2,24,-9,52,-9,75v41,-44,120,-5,108,65v15,90,-120,121,-141,36v-2,-8,-3,-15,-3,-20r32,0v1,26,12,47,39,47v35,1,42,-34,42,-66v0,-32,-11,-57,-43,-58","w":172},"6":{"d":"88,-137v-31,0,-40,28,-40,59v0,31,8,59,40,59v32,0,41,-28,41,-59v0,-31,-9,-59,-41,-59xm13,-89v-3,-82,-2,-166,77,-166v41,0,62,22,64,61r-31,0v0,-21,-13,-37,-34,-37v-42,0,-47,54,-44,97v9,-15,24,-29,49,-29v46,2,65,34,66,81v0,51,-23,86,-72,87v-56,1,-73,-43,-75,-94","w":172},"7":{"d":"159,-224v-41,57,-76,132,-85,224r-35,0v12,-86,46,-163,91,-222r-116,0r0,-28r145,0r0,26","w":172},"8":{"d":"86,-124v-29,1,-41,22,-41,53v0,31,12,50,41,52v31,1,42,-23,42,-52v0,-29,-11,-54,-42,-53xm120,-189v0,-23,-9,-43,-34,-42v-24,0,-33,19,-33,42v0,23,8,41,33,41v25,0,34,-18,34,-41xm86,5v-83,5,-99,-123,-28,-141v-23,-9,-36,-24,-37,-54v0,-41,26,-61,65,-65v71,-6,90,103,28,119v30,10,45,32,45,66v-1,46,-25,72,-73,75","w":172},"9":{"d":"85,-113v32,0,40,-29,40,-59v0,-31,-8,-59,-40,-59v-32,0,-41,28,-41,59v0,31,8,59,41,59xm159,-161v3,80,3,165,-76,166v-42,0,-62,-24,-65,-61r32,0v0,21,12,38,34,37v42,-3,47,-54,44,-97v-9,15,-24,29,-49,29v-47,-1,-66,-33,-66,-81v0,-51,22,-87,72,-87v55,0,72,41,74,94","w":172},":":{"d":"27,-38r33,0r0,38r-33,0r0,-38xm27,-182r33,0r0,38r-33,0r0,-38","w":86,"k":{" ":13}},";":{"d":"27,-182r33,0r0,38r-33,0r0,-38xm27,36v14,-5,15,-17,15,-36r-15,0r0,-38r33,0v-1,40,5,84,-33,91r0,-17","w":86},"<":{"d":"17,-102r182,-83r0,24r-154,70r154,70r0,24r-182,-83r0,-22","w":216},"=":{"d":"17,-66r182,0r0,24r-182,0r0,-24xm17,-140r182,0r0,24r-182,0r0,-24","w":216},">":{"d":"17,-21r154,-70r-154,-70r0,-24r182,83r0,22r-182,83r0,-24","w":216},"?":{"d":"59,-35r34,0r0,35r-34,0r0,-35xm81,-234v-30,0,-38,25,-38,53r-30,0v1,-47,20,-76,67,-79v68,-4,84,85,44,125v-17,17,-38,32,-34,68r-28,0v-9,-65,54,-68,54,-127v0,-22,-11,-40,-35,-40","w":159},"@":{"d":"147,-205v23,0,33,13,42,30r8,-23r20,0r-34,118v0,6,6,9,11,9v39,-5,60,-37,60,-78v0,-61,-47,-91,-110,-91v-68,0,-110,45,-110,111v0,67,41,112,110,112v45,0,78,-13,98,-40r22,0v-22,40,-60,64,-120,62v-81,-2,-134,-54,-134,-134v0,-79,53,-133,134,-133v77,0,134,38,134,111v0,59,-37,102,-93,102v-16,0,-24,-7,-26,-22v-25,36,-100,24,-96,-32v4,-55,28,-102,84,-102xm147,-183v-40,0,-61,39,-61,78v0,20,15,34,34,34v36,0,56,-39,56,-76v0,-19,-10,-36,-29,-36","w":288},"A":{"d":"56,-96r69,0r-34,-125xm71,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0","w":180,"k":{"p":-4,"Y":20,"W":7,"V":7,"T":20,"Q":-4}},"B":{"d":"132,-189v0,-43,-36,-44,-79,-42r0,85v43,2,79,1,79,-43xm174,-73v4,79,-75,75,-153,73r0,-257v72,-2,149,-8,145,66v-1,28,-16,46,-38,54v30,7,45,29,46,64xm141,-73v0,-48,-39,-52,-88,-49r0,96v48,3,88,0,88,-47","w":186},"C":{"d":"100,-21v37,0,44,-31,45,-67r33,0v-3,53,-23,92,-78,93v-71,0,-83,-64,-83,-134v1,-70,13,-132,83,-133v53,-1,74,30,76,80r-33,0v-2,-30,-10,-55,-43,-54v-50,2,-50,57,-50,107v0,51,0,108,50,108","w":186},"D":{"d":"183,-129v-2,69,-17,129,-87,129r-72,0r0,-257r69,0v75,-2,91,54,90,128xm150,-128v0,-53,-6,-104,-61,-103r-33,0r0,205r33,0v54,0,61,-50,61,-102","w":200,"k":{"Y":7}},"E":{"d":"21,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0r0,-257"},"F":{"d":"21,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,120r-32,0r0,-257","w":159,"k":{"r":7,"o":7,"i":6,"e":9,"a":7,"A":19,".":40,",":40}},"G":{"d":"100,-262v49,0,76,27,76,76r-33,0v-2,-29,-12,-50,-43,-50v-50,2,-50,57,-50,107v0,51,0,108,50,108v42,0,47,-44,47,-87r-51,0r0,-26r80,0r0,134r-24,0r0,-35v-6,21,-29,41,-56,40v-69,-1,-79,-65,-79,-134v0,-70,13,-133,83,-133","w":193},"H":{"d":"172,0r-31,0r0,-124r-88,0r0,124r-32,0r0,-257r32,0r0,105r88,0r0,-105r31,0r0,257","w":193},"I":{"d":"21,-257r32,0r0,257r-32,0r0,-257","w":73},"J":{"d":"68,-21v31,0,33,-24,33,-54r0,-182r31,0r0,183v2,50,-16,79,-64,79v-46,0,-64,-30,-60,-80r30,0v-1,29,0,54,30,54","w":153},"K":{"d":"21,-257r32,0r0,125r89,-125r35,0r-77,107r84,150r-35,0r-70,-124r-26,37r0,87r-32,0r0,-257","w":180,"k":{"y":4,"u":7,"o":7}},"L":{"d":"21,-257r32,0r0,229r104,0r0,28r-136,0r0,-257","w":159,"k":{"y":13,"Y":33,"W":27,"V":27,"T":34}},"M":{"d":"22,-257r53,0r52,204r52,-204r53,0r0,257r-32,0r-1,-225r-56,225r-32,0r-58,-225r0,225r-31,0r0,-257","w":253},"N":{"d":"21,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0r0,-257","w":200},"O":{"d":"150,-129v0,-50,0,-107,-50,-107v-50,0,-50,57,-50,107v0,51,0,108,50,108v50,0,50,-57,50,-108xm17,-129v0,-70,13,-133,83,-133v70,0,83,63,83,133v0,70,-13,134,-83,134v-70,0,-83,-64,-83,-134","w":200,"k":{"Y":9,"X":9}},"P":{"d":"133,-185v0,-43,-34,-49,-80,-46r0,96v47,4,80,-4,80,-50xm166,-183v0,63,-46,79,-113,74r0,109r-32,0r0,-257v76,-3,145,-5,145,74","w":173,"k":{"o":6,"e":6,"a":6,"A":13,".":46,",":46}},"Q":{"d":"50,-129v-2,59,11,128,73,102r-24,-22r17,-20r24,22v9,-21,10,-51,10,-82v0,-50,0,-107,-50,-107v-50,0,-47,57,-50,107xm100,-262v96,-1,92,133,73,213v-2,8,-7,16,-11,22r26,24r-18,18r-26,-23v-11,9,-24,13,-44,13v-70,-1,-83,-64,-83,-134v0,-70,13,-132,83,-133","w":200},"R":{"d":"137,-190v0,-41,-41,-43,-84,-41r0,91v47,2,84,-1,84,-50xm144,0v-22,-30,15,-117,-49,-114r-42,0r0,114r-32,0r0,-257v71,-1,149,-9,149,64v0,35,-14,57,-40,66v38,3,39,46,39,87v0,19,2,34,14,40r-39,0","w":186,"k":{"Y":6,"W":-7,"U":-7,"T":6}},"S":{"d":"53,-129v-63,-25,-45,-133,37,-133v50,0,70,24,72,72r-32,0v0,-28,-11,-46,-40,-46v-28,0,-44,14,-42,42v5,75,121,35,121,123v0,88,-137,104,-154,27v-3,-11,-4,-23,-4,-37r32,0v-1,37,9,60,48,60v45,0,59,-61,26,-82v-18,-11,-43,-18,-64,-26","w":180},"T":{"d":"99,0r-32,0r0,-229r-64,0r0,-28r161,0r0,28r-65,0r0,229","k":{"y":20,"w":27,"u":27,"r":27,"o":27,"i":6,"e":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"U":{"d":"93,5v-53,0,-75,-28,-75,-81r0,-181r32,0r0,181v0,35,9,55,43,55v35,0,43,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81","w":186},"V":{"d":"-1,-257r33,0r52,221r50,-221r33,0r-65,257r-40,0","k":{"u":6,"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":33,"-":6,",":33}},"W":{"d":"3,-257r32,0r40,210r36,-210r38,0r37,210r39,-210r32,0r-53,257r-38,0r-36,-208r-37,208r-39,0","w":259,"k":{"o":6,"e":6,"a":6,"A":6,".":27,"-":6,",":27}},"X":{"d":"6,-257r35,0r47,96r47,-96r33,0r-64,126r68,131r-35,0r-51,-103r-52,103r-33,0r68,-131","w":173},"Y":{"d":"-1,-257r35,0r49,120r51,-120r33,0r-68,156r0,101r-32,0r0,-101","k":{"u":22,"o":27,"i":11,"e":27,"a":27,"A":20,";":13,":":13,".":40,"-":27,",":40}},"Z":{"d":"8,-27r116,-202r-109,0r0,-28r142,0r0,29r-116,200r117,0r0,28r-150,0r0,-27"},"[":{"d":"28,-257r65,0r0,24r-37,0r0,275r37,0r0,24r-65,0r0,-323","w":93},"\\":{"d":"-4,-262r24,0r84,267r-24,0","w":100},"]":{"d":"65,66r-64,0r0,-24r36,0r0,-275r-36,0r0,-24r64,0r0,323","w":93},"^":{"d":"99,-250r18,0r82,156r-24,0r-67,-130r-67,130r-24,0","w":216},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"`":{"d":"30,-270r25,51r-22,0r-39,-51r36,0","w":73},"a":{"d":"69,-19v41,0,41,-42,39,-86v-21,19,-68,12,-66,53v0,20,7,33,27,33xm78,-174v-24,0,-32,17,-33,39r-30,0v0,-45,19,-60,65,-63v83,-5,54,92,59,163v-2,12,5,20,16,14v3,18,-1,26,-26,23v-13,-1,-18,-12,-20,-25v-7,15,-25,26,-46,28v-64,6,-71,-98,-16,-109v22,-13,62,-5,62,-42v0,-19,-10,-28,-31,-28","w":159,"k":{"w":-4,"v":-4,"t":-4,"p":-4,"g":-4}},"b":{"d":"91,5v-22,0,-36,-13,-42,-29r0,24r-29,0r0,-257r30,0r1,86v5,-15,23,-28,44,-27v51,1,59,52,59,102v0,51,-12,99,-63,101xm87,-172v-36,0,-39,40,-39,76v0,36,3,75,39,75v34,0,35,-39,35,-75v0,-38,-1,-76,-35,-76"},"c":{"d":"12,-94v0,-56,12,-104,68,-104v41,0,61,24,62,64r-30,0v-2,-21,-7,-41,-31,-40v-43,2,-38,56,-37,102v1,26,8,53,36,53v26,1,30,-25,32,-48r30,0v-2,41,-21,72,-64,72v-55,0,-65,-40,-66,-99","w":153,"k":{"y":7,"l":7}},"d":{"d":"73,-198v21,-1,37,14,44,27r0,-86r30,0r0,257r-29,0v-1,-7,2,-18,-1,-24v-5,17,-20,29,-41,29v-53,0,-62,-47,-63,-101v-1,-52,9,-101,60,-102xm80,-172v-36,0,-36,39,-36,76v0,36,1,75,36,75v37,0,38,-38,38,-75v0,-37,-3,-76,-38,-76","k":{"y":-4}},"e":{"d":"82,-198v57,0,66,48,65,105r-102,0v1,34,1,74,37,74v24,-1,32,-20,33,-44r30,0v-3,38,-22,68,-65,68v-55,-1,-67,-40,-67,-99v0,-55,13,-103,69,-104xm81,-174v-29,1,-35,28,-35,57r69,0v0,-30,-4,-57,-34,-57","w":159},"f":{"d":"93,-234v-18,0,-34,-1,-34,18r0,23r33,0r0,24r-33,0r0,169r-30,0r0,-169r-28,0r0,-24r28,0v-5,-49,11,-74,64,-67r0,26","w":93},"g":{"d":"76,-198v22,0,36,14,42,30r0,-25r29,0r0,181v11,72,-73,102,-119,58v-6,-7,-9,-16,-10,-28r30,0v1,17,14,24,31,24v39,0,41,-34,37,-68v-6,15,-24,26,-44,26v-49,-2,-58,-47,-59,-96v0,-54,11,-102,63,-102xm118,-96v0,-37,-3,-76,-38,-76v-36,0,-36,39,-36,76v0,32,3,70,35,70v36,0,39,-34,39,-70","k":{"y":-4}},"h":{"d":"88,-172v-23,1,-38,15,-38,39r0,133r-30,0r0,-257r30,0r1,86v15,-37,95,-37,95,15r1,156r-30,0r-1,-145v-1,-17,-10,-27,-28,-27"},"i":{"d":"22,-257r30,0r0,35r-30,0r0,-35xm22,-193r30,0r0,193r-30,0r0,-193","w":73},"j":{"d":"52,-222r-30,0r0,-35r30,0r0,35xm-8,39v21,6,30,-7,30,-31r0,-201r30,0r0,212v1,37,-22,51,-60,46r0,-26","w":73},"k":{"d":"164,0r-35,0r-54,-95r-25,30r0,65r-30,0r0,-257r30,0r1,153r67,-89r36,0r-59,73","w":159},"l":{"d":"22,-257r30,0r0,257r-30,0r0,-257","w":73,"k":{"w":-4}},"m":{"d":"89,-172v-23,1,-35,15,-36,39r0,133r-30,0r0,-193r28,0v1,7,-2,18,1,23v6,-16,26,-28,47,-28v25,0,36,11,42,31v7,-15,23,-31,45,-31v39,0,51,21,51,61r0,137r-30,0r-1,-145v-1,-15,-8,-27,-25,-27v-23,1,-35,15,-36,39r0,133r-30,0r-1,-145v-1,-15,-8,-27,-25,-27","w":259},"n":{"d":"88,-172v-23,1,-38,15,-38,39r0,133r-30,0r0,-193r29,0r0,23v6,-16,26,-28,47,-28v40,-1,52,23,51,61r0,137r-30,0r-1,-145v-1,-17,-10,-27,-28,-27","k":{"y":-4}},"o":{"d":"80,5v-57,0,-70,-46,-70,-101v0,-55,13,-102,70,-102v57,0,69,46,69,102v0,56,-13,101,-69,101xm42,-96v0,36,1,77,37,77v37,0,39,-40,39,-77v0,-37,-2,-78,-39,-78v-36,0,-37,42,-37,78","w":159,"k":{"y":-4,"w":-4}},"p":{"d":"91,5v-21,1,-33,-14,-41,-27r0,85r-30,0r0,-256r29,0r0,24v6,-17,21,-29,42,-29v52,0,63,45,63,98v0,51,-12,103,-63,105xm87,-172v-37,0,-39,39,-39,76v0,35,3,75,39,75v35,0,35,-41,35,-79v0,-36,-2,-72,-35,-72"},"q":{"d":"80,-21v35,0,38,-39,38,-75v0,-38,-2,-76,-38,-76v-34,0,-36,37,-36,72v0,37,0,79,36,79xm76,-198v21,0,35,13,42,29r0,-24r29,0r0,256r-30,0r-1,-85v-6,15,-20,27,-40,27v-52,-2,-64,-50,-63,-105v1,-53,11,-98,63,-98"},"r":{"d":"106,-166v-32,-7,-57,12,-56,44r0,122r-30,0r0,-193r30,0v1,9,-2,22,1,29v8,-20,26,-40,55,-32r0,30","w":106,"k":{"y":-6,"v":-6,".":27,"-":13,",":27}},"s":{"d":"13,-145v-6,-58,87,-69,112,-31v7,10,8,25,8,40r-30,0v0,-24,-5,-38,-29,-38v-46,0,-34,52,-1,59v33,7,65,17,65,60v0,66,-94,78,-121,33v-7,-10,-8,-27,-8,-41r30,0v1,25,8,45,36,44v20,-1,34,-10,32,-32v-6,-55,-100,-25,-94,-94","w":146,"k":{"w":-4}},"t":{"d":"92,0v-34,5,-63,3,-63,-36r0,-133r-28,0r0,-24r28,0r0,-56r30,0r0,56r34,0r0,24r-34,0r0,124v-2,21,14,23,33,20r0,25","w":93},"u":{"d":"78,-21v66,-4,30,-111,39,-172r30,0r0,193r-29,0v-1,-7,2,-18,-1,-23v-6,16,-26,28,-46,28v-40,1,-52,-23,-51,-61r0,-137r30,0r1,145v1,16,9,27,27,27"},"v":{"d":"4,-193r33,0r36,155r36,-155r34,0r-53,193r-34,0","w":146,"k":{".":20,",":20}},"w":{"d":"4,-193r31,0r32,158r33,-158r35,0r33,158r30,-158r32,0r-46,193r-33,0r-35,-158r-32,158r-35,0","w":233,"k":{".":13,",":13}},"x":{"d":"6,-193r33,0r35,69r35,-69r33,0r-50,93r52,100r-33,0r-39,-76r-37,76r-33,0r53,-100","w":146},"y":{"d":"4,-193r33,0r39,155r33,-155r34,0r-62,225v-7,25,-33,36,-68,30r0,-23v29,7,44,-11,47,-35","w":146,"k":{"a":-4,".":20,",":20}},"z":{"d":"14,-193r116,0r0,25r-86,142r86,0r0,26r-120,0r0,-24r87,-143r-83,0r0,-26","w":140},"{":{"d":"93,66v-120,21,-25,-140,-92,-151r0,-21v68,-9,-29,-173,92,-151r0,24v-78,-18,0,123,-69,138v43,6,29,71,33,118v-3,20,16,20,36,19r0,24","w":93},"|":{"d":"28,-262r24,0r0,267r-24,0r0,-267","w":79},"}":{"d":"1,-257v119,-20,22,143,92,151r0,21v-69,8,27,173,-92,151r0,-24v76,18,-1,-123,68,-138v-43,-6,-32,-69,-32,-118v0,-18,-16,-21,-36,-19r0,-24","w":93},"~":{"d":"125,-95v23,16,48,-4,56,-21r15,17v-14,38,-77,41,-105,12v-23,-15,-47,4,-56,20r-15,-16v14,-39,77,-41,105,-12","w":216},"\u00a0":{"w":86,"k":{"Y":13,"W":13,"V":13,"T":13,"A":13}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Part of the digitally encoded machine readable outline data for producing the
 * Typefaces provided is copyrighted © 2003 - 2006 Linotype GmbH, www.linotype.com.
 * All rights reserved. This software is the property of Linotype GmbH, and may not
 * be reproduced, modified, disclosed or transferred without the express written
 * approval of Linotype GmbH. Copyright © 1988, 1990, 1993 Adobe Systems
 * Incorporated. All Rights Reserved. Helvetica is a trademark of Heidelberger
 * Druckmaschinen AG, exclusively licensed through Linotype GmbH, and may be
 * registered in certain jurisdictions. This typeface is original artwork of
 * Linotype Design Studio. The design may be protected in certain jurisdictions.
 * 
 * Trademark:
 * Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively
 * licensed through Linotype GmbH, and may be registered in certain jurisdictions.
 * 
 * Description:
 * Helvetica is one of the most famous and popular typefaces in the world. It
 * lends an air of lucid efficiency to any typographic message with its clean,
 * no-nonsense shapes. The original typeface was called Haas Grotesk, and was
 * designed in 1957 by Max Miedinger for the Haas'sche Schriftgiesserei (Haas Type
 * Foundry) in Switzerland. In 1960 the name was changed to Helvetica (an
 * adaptation of "Helvetia", the Latin name for Switzerland). Over the years, the
 * Helvetica family was expanded to include many different weights, but these were
 * not as well coordinated with each other as they might have been. In 1983, D.
 * Stempel AG and Linotype re-designed and digitized Neue Helvetica and updated it
 * into a cohesive font family. Today, the original Helvetica family consists of 34
 * different font weights, and the Neue Helvetica family consists of 51 font
 * weights. The Helvetica family now forms an integral part of many digital
 * printers and operating systems and has become a stylistic anchor in our visual
 * culture. It is the quintessential sans serif font, timeless and neutral, and can
 * be used for all types of communication. Helvetica World, an update to the
 * classic Helvetica design using the OpenType font format, contains the following
 * Microsoft code pages: 1252 Latin 1, 1250 Latin 2 Eastern, 1251 Cyrillic, 1253
 * Greek, 1254 Turk, 1255 Hebrew, 1256 Arabic, 1257 Windows Baltic, 1258 Windows
 * Vietnamese, as well as a mixture of box drawing element glyphs and mathematical
 * symbols & operators. In total, each weight of Helvetica World contains more than
 * 1850 different glyph characters!
 * 
 * Manufacturer:
 * Linotype GmbH
 * 
 * Designer:
 * Linotype Design Studio
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * http://www.linotype.com/license
 */
Cufon.registerFont({"w":187,"face":{"font-family":"helvetica-bold","font-weight":900,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 6 3 7 2 4 2 4","ascent":"257","descent":"-103","x-height":"5","bbox":"-10 -276 280 66.9926","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":93,"k":{"Y":13,"W":13,"V":13,"T":13,"A":13}},"!":{"d":"25,-171r0,-86r63,0v2,65,-2,124,-8,182r-48,0xm27,-57r60,0r0,57r-60,0r0,-57","w":113},"\"":{"d":"20,-257r50,0r0,135r-50,0r0,-135xm103,-257r50,0r0,135r-50,0r0,-135","w":173},"#":{"d":"102,-62r-33,0r-7,62r-40,0r8,-62r-26,0r0,-42r31,0r5,-42r-26,0r0,-42r32,0r8,-62r39,0r-8,62r32,0r8,-62r40,0r-8,62r27,0r0,42r-32,0r-5,42r26,0r0,42r-32,0r-7,62r-40,0xm75,-104r32,0r5,-42r-32,0"},"$":{"d":"128,-146v76,17,72,157,-21,151r0,32r-33,0r0,-32v-47,-5,-72,-26,-69,-80r64,0v-10,40,50,46,44,12v-10,-58,-105,-30,-105,-114v0,-45,22,-71,66,-78r0,-21r33,0r0,21v47,5,68,26,69,77r-63,0v8,-35,-40,-43,-40,-10v0,30,33,32,55,42"},"%":{"d":"63,-117v-46,0,-57,-26,-57,-69v0,-44,13,-69,57,-69v44,0,57,26,56,69v0,43,-10,69,-56,69xm217,5v-44,0,-56,-26,-56,-69v0,-43,12,-69,56,-69v44,0,57,25,57,69v0,44,-13,69,-57,69xm63,-226v-21,0,-10,38,-12,61v0,12,2,20,12,20v20,-4,12,-37,12,-61v0,-11,-2,-20,-12,-20xm177,-255r40,0r-114,260r-40,0xm217,-104v-21,2,-9,36,-12,60v1,10,1,20,12,20v22,-1,10,-36,13,-60v-1,-11,-1,-21,-13,-20","w":280},"&":{"d":"80,-100v-30,15,-10,69,24,52v4,-2,7,-4,10,-6xm98,-222v-30,2,-17,35,-2,49v19,-12,33,-45,2,-49xm220,-125v-2,32,-12,59,-30,77r35,48r-72,0r-11,-15v-45,36,-146,23,-141,-52v2,-36,20,-60,48,-75v-10,-15,-24,-34,-24,-58v2,-41,30,-60,73,-60v43,0,73,19,73,60v0,31,-23,51,-45,66r30,39v5,-8,6,-19,8,-30r56,0","w":219},"'":{"d":"22,-257r50,0r0,135r-50,0r0,-135","w":93},"(":{"d":"114,-257v-56,81,-57,242,0,323r-52,0v-29,-45,-51,-93,-51,-161v0,-68,22,-118,51,-162r52,0","w":113},")":{"d":"-1,66v56,-81,57,-242,0,-323r52,0v29,45,51,94,51,162v0,67,-22,117,-51,161r-52,0","w":113},"*":{"d":"73,-155r-27,39r-29,-21r28,-38r-46,-15r11,-34r45,15r0,-48r36,0r0,48r45,-15r12,34r-46,15r27,38r-29,21","w":146},"+":{"d":"83,-182r50,0r0,66r66,0r0,50r-66,0r0,66r-50,0r0,-66r-66,0r0,-50r66,0r0,-66","w":216},",":{"d":"17,32v20,-1,23,-13,23,-34r-23,0r0,-69r60,0v-1,64,12,138,-60,134r0,-31","w":93,"k":{" ":13}},"-":{"d":"10,-131r112,0r0,54r-112,0r0,-54","w":132},".":{"d":"17,-71r60,0r0,71r-60,0r0,-71","w":93},"\/":{"d":"74,-262r54,0r-82,267r-54,0","w":119},"0":{"d":"94,-213v-21,2,-19,17,-20,46r0,84v1,29,-1,44,20,46v20,-2,18,-18,19,-46r0,-84v-1,-28,1,-43,-19,-46xm94,5v-75,0,-87,-53,-87,-130v0,-77,12,-130,87,-130v74,0,86,53,86,130v0,77,-12,130,-86,130"},"1":{"d":"18,-215v38,0,59,-11,67,-40r48,0r0,255r-67,0r0,-174r-48,0r0,-41"},"2":{"d":"90,-213v-19,1,-18,23,-18,45r-63,0v-2,-59,24,-87,84,-87v92,0,100,99,50,145v-20,18,-42,35,-56,60r88,0r0,50r-168,0v-3,-84,62,-111,97,-161v7,-15,8,-54,-14,-52"},"3":{"d":"88,-213v-17,1,-18,14,-18,35r-60,0v2,-53,27,-76,80,-77v53,-1,80,20,80,71v-1,27,-14,45,-36,51v28,5,38,25,41,56v9,84,-94,103,-148,64v-16,-12,-19,-34,-20,-63r62,0v1,19,2,39,20,39v22,1,17,-19,19,-39v2,-30,-14,-34,-42,-32r0,-42v29,3,40,-9,39,-36v0,-18,-2,-27,-17,-27"},"4":{"d":"6,-98r80,-152r73,0r0,154r22,0r0,48r-22,0r0,48r-63,0r0,-48r-90,0r0,-50xm99,-96r-1,-85r-42,85r43,0"},"5":{"d":"88,-130v-13,0,-18,8,-19,22r-60,0r6,-142r148,0r0,51r-97,0r-3,42v11,-11,26,-17,47,-18v47,0,64,30,64,81v0,64,-21,99,-84,99v-58,0,-85,-25,-83,-81r62,0v0,21,0,40,19,39v23,-1,19,-28,19,-54v0,-22,-2,-39,-19,-39"},"6":{"d":"95,-120v-18,0,-19,18,-19,42v0,25,-1,41,19,41v18,0,18,-17,18,-41v0,-25,1,-42,-18,-42xm7,-103v0,-85,2,-155,88,-152v49,2,80,18,80,66r-62,0v0,-16,-4,-23,-19,-24v-24,1,-19,42,-17,65v5,-12,24,-20,43,-20v46,0,60,30,60,77v0,62,-24,96,-85,96v-67,1,-88,-38,-88,-108"},"7":{"d":"175,-200v-32,55,-60,121,-66,200r-69,0v8,-79,34,-144,72,-195r-103,0r0,-55r166,0r0,50"},"8":{"d":"94,-112v-17,2,-20,13,-20,37v0,24,1,38,20,38v18,0,18,-15,19,-38v0,-20,-2,-36,-19,-37xm94,-213v-25,0,-25,61,0,61v24,0,24,-61,0,-61xm180,-76v1,58,-29,81,-86,81v-57,0,-87,-22,-87,-81v0,-33,16,-53,42,-59v-24,-7,-37,-21,-37,-51v0,-50,31,-69,82,-69v51,0,81,20,82,69v0,30,-16,43,-38,52v29,4,42,25,42,58"},"9":{"d":"93,-213v-18,2,-19,17,-19,42v1,25,-1,41,19,41v18,0,18,-17,18,-41v0,-25,0,-40,-18,-42xm180,-146v0,84,-2,151,-87,151v-51,0,-80,-17,-81,-65r63,0v0,15,4,22,18,23v25,0,17,-38,18,-64v-6,11,-25,20,-43,20v-45,-1,-61,-30,-61,-78v0,-62,24,-96,85,-96v68,-1,88,39,88,109"},":":{"d":"17,-71r60,0r0,71r-60,0r0,-71xm17,-195r60,0r0,72r-60,0r0,-72","w":93,"k":{" ":13}},";":{"d":"17,-195r60,0r0,72r-60,0r0,-72xm17,32v20,-1,23,-13,23,-34r-23,0r0,-69r60,0v-1,64,12,138,-60,134r0,-31","w":93},"<":{"d":"17,-114r182,-75r0,49r-122,49r122,49r0,48r-182,-74r0,-46","w":216},"=":{"d":"17,-76r182,0r0,50r-182,0r0,-50xm17,-157r182,0r0,51r-182,0r0,-51","w":216},">":{"d":"17,-42r122,-49r-122,-49r0,-49r182,75r0,46r-182,74r0,-48","w":216},"?":{"d":"58,-57r60,0r0,57r-60,0r0,-57xm90,-220v-20,1,-17,22,-18,44r-60,0v0,-57,23,-86,80,-86v72,0,96,73,60,122v-15,19,-37,30,-35,65r-58,0v-10,-66,41,-70,47,-122v1,-13,-4,-23,-16,-23","w":180},"@":{"d":"69,-119v0,-67,78,-109,119,-60r2,-13r34,0r-17,92v0,5,2,8,6,8v23,-4,31,-27,31,-56v-1,-56,-39,-81,-95,-81v-63,0,-96,39,-99,101v-5,92,109,124,175,79r39,0v-26,35,-61,54,-120,54v-81,0,-134,-54,-134,-134v0,-79,53,-133,134,-133v75,0,134,35,134,108v0,57,-38,92,-92,97v-13,2,-17,-9,-23,-15v-33,34,-94,5,-94,-47xm147,-161v-38,-2,-47,63,-8,65v40,4,52,-65,8,-65","w":288},"A":{"d":"100,-204r-19,109r38,0xm58,-257r84,0r63,257r-71,0r-7,-45r-54,0r-6,45r-72,0","w":200,"k":{"y":6,"w":6,"v":6,"Y":27,"W":13,"V":13,"U":4,"T":20}},"B":{"d":"127,-80v0,-25,-15,-34,-42,-31r0,63v27,3,42,-5,42,-32xm122,-182v0,-21,-13,-30,-37,-27r0,53v23,3,37,-5,37,-26xm197,-76v0,50,-27,76,-78,76r-101,0r0,-257r101,0v78,-13,94,108,30,122v31,4,48,27,48,59","w":206,"k":{".":13,",":13}},"C":{"d":"100,-262v60,0,88,33,83,97r-65,0v0,-25,3,-52,-18,-52v-38,9,-22,83,-22,131v0,23,1,46,22,46v25,0,18,-35,20,-63r65,0v5,69,-21,108,-85,108v-81,0,-93,-54,-92,-134v0,-78,14,-133,92,-133","w":193},"D":{"d":"194,-129v0,73,-9,129,-81,129r-97,0r0,-257r97,0v71,0,81,55,81,128xm125,-129v0,-43,9,-87,-42,-80r0,161v51,7,42,-38,42,-81","w":206,"k":{"Y":11,"W":4,"A":6,".":13,",":13}},"E":{"d":"16,-257r152,0r0,55r-85,0r0,44r80,0r0,52r-80,0r0,51r88,0r0,55r-155,0r0,-257","w":180},"F":{"d":"16,-257r152,0r0,55r-85,0r0,44r80,0r0,52r-80,0r0,106r-67,0r0,-257","w":173,"k":{"A":13,".":40,",":40}},"G":{"d":"81,-172v0,52,-22,136,32,130v12,-9,12,-30,13,-52r-24,0r0,-46r87,0r0,140r-46,0v-1,-7,1,-18,-2,-23v-8,20,-28,28,-55,28v-73,2,-70,-62,-74,-134v-5,-94,38,-152,128,-128v33,9,49,37,49,81r-65,0v-2,-23,0,-41,-19,-41v-22,0,-24,21,-24,45","w":200,"k":{".":13,",":13}},"H":{"d":"16,-257r67,0r0,94r41,0r0,-94r67,0r0,257r-67,0r0,-106r-41,0r0,106r-67,0r0,-257","w":206},"I":{"d":"13,-257r67,0r0,257r-67,0r0,-257","w":93},"J":{"d":"78,-40v15,-1,17,-11,17,-31r0,-186r67,0r0,177v0,60,-26,85,-84,85v-58,0,-79,-31,-78,-89r61,0v0,21,-1,44,17,44","w":173,"k":{".":13,",":13}},"K":{"d":"13,-257r67,0r1,99r50,-99r71,0r-65,112r73,145r-76,0r-40,-90r-14,22r0,68r-67,0r0,-257","w":200},"L":{"d":"16,-257r67,0r0,202r82,0r0,55r-149,0r0,-257","w":166,"k":{"y":13,"Y":33,"W":27,"V":27,"T":27}},"M":{"d":"13,-257r96,0r28,152r27,-152r96,0r0,257r-63,0r-1,-192r-35,192r-49,0r-36,-192r0,192r-63,0r0,-257","w":272},"N":{"d":"16,-257r75,0r44,158r0,-158r62,0r0,257r-73,0r-46,-159r0,159r-62,0r0,-257","w":213,"k":{".":13,",":13}},"O":{"d":"100,-217v-38,9,-22,83,-22,131v0,23,1,45,22,46v39,-9,22,-83,22,-132v0,-23,-1,-44,-22,-45xm100,5v-78,0,-92,-56,-92,-134v0,-78,14,-133,92,-133v78,0,92,55,92,133v0,78,-14,134,-92,134","w":200,"k":{"Y":10,".":13,",":13}},"P":{"d":"80,-146v26,2,39,-6,39,-31v0,-27,-13,-34,-39,-32r0,63xm188,-178v0,63,-40,84,-108,80r0,98r-67,0r0,-257r101,0v50,1,73,30,74,79","w":193,"k":{"A":13,".":46,",":46}},"Q":{"d":"192,-129v-1,46,-4,80,-22,105r31,32r-40,35r-37,-40v-91,15,-118,-44,-116,-132v2,-78,14,-133,92,-133v78,0,92,55,92,133xm100,-217v-38,9,-22,83,-22,131v0,23,1,45,22,46v39,-9,22,-83,22,-132v0,-23,-1,-44,-22,-45","w":200},"R":{"d":"124,-179v0,-27,-14,-32,-41,-30r0,61v26,3,41,-8,41,-31xm129,0v-21,-38,21,-115,-46,-103r0,103r-67,0r0,-257v79,2,175,-18,175,68v0,34,-14,58,-44,62v52,0,44,61,44,109v0,10,8,9,9,18r-71,0","w":206,"k":{"Y":9,"T":6}},"S":{"d":"64,-108v-80,-21,-67,-164,31,-154v57,6,83,22,84,79r-63,0v8,-37,-40,-46,-40,-11v15,59,109,32,109,120v0,56,-34,79,-91,79v-57,0,-89,-22,-86,-81r65,0v-9,41,44,48,43,11v-1,-30,-30,-32,-52,-43","w":193,"k":{".":13,",":13}},"T":{"d":"50,-200r-51,0r0,-57r168,0r0,57r-50,0r0,200r-67,0r0,-200","w":166,"k":{"y":20,"w":27,"u":27,"r":27,"o":27,"i":4,"e":27,"a":27,"A":20,";":18,":":18,".":33,"-":19,",":33}},"U":{"d":"100,5v-125,0,-79,-153,-87,-262r67,0r0,185v-1,21,5,30,20,32v15,-2,21,-11,20,-32r0,-185r67,0v-8,109,38,262,-87,262","w":200,"k":{"A":4,".":13,",":13}},"V":{"d":"-5,-257r71,0r28,194r27,-194r71,0r-55,257r-87,0","k":{"u":6,"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":33,",":33}},"W":{"d":"110,-257r60,0r27,178r18,-178r65,0r-44,257r-73,0r-23,-173r-23,173r-73,0r-44,-257r65,0r21,178","w":280,"k":{"o":6,"e":6,"a":6,"A":9,".":27,",":27}},"X":{"d":"0,-257r75,0v8,24,12,52,22,74r21,-74r75,0r-56,127r60,130r-75,0r-26,-77r-25,77r-75,0r61,-130","w":192},"Y":{"d":"60,-101r-65,-156r73,0r26,90r25,-90r74,0r-66,156r0,101r-67,0r0,-101","k":{"u":17,"o":25,"i":6,"e":25,"a":25,"O":10,"A":22,";":13,":":13,".":40,"-":19,",":40}},"Z":{"d":"7,-48r81,-154r-75,0r0,-55r153,0r0,48r-82,154r82,0r0,55r-159,0r0,-48","w":173},"[":{"d":"16,-257r97,0r0,45r-37,0r0,233r37,0r0,45r-97,0r0,-323","w":113},"\\":{"d":"-8,-262r54,0r82,267r-54,0","w":119},"]":{"d":"37,-212r-37,0r0,-45r97,0r0,323r-97,0r0,-45r37,0r0,-233","w":113},"^":{"d":"80,-250r56,0r63,132r-50,0r-41,-86r-41,86r-50,0","w":216},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"`":{"d":"0,-265r61,0r16,52r-42,0","w":93},"a":{"d":"68,-60v0,11,5,21,16,21v24,0,21,-33,19,-55v-13,9,-35,8,-35,34xm164,-137v0,45,-6,102,6,137r-62,0v-4,-5,-2,-16,-5,-22v-6,16,-23,27,-44,27v-63,0,-69,-87,-26,-111v21,-12,69,-4,71,-36v0,-12,-6,-18,-17,-18v-15,1,-18,8,-18,26r-56,0v-1,-47,31,-66,74,-66v46,0,77,15,77,63","w":180},"b":{"d":"97,-152v-27,3,-17,51,-17,81v0,16,3,27,17,28v27,-3,17,-50,17,-80v0,-16,-2,-28,-17,-29xm122,5v-26,0,-37,-12,-45,-32r0,27r-63,0r0,-257r65,0r1,84v5,-18,19,-27,40,-27v51,0,60,44,60,98v0,60,-6,107,-58,107","k":{".":6,",":6}},"c":{"d":"7,-94v0,-83,50,-124,123,-100v28,9,39,37,38,76r-58,0v0,-21,-1,-40,-19,-40v-24,0,-19,34,-19,61v0,27,-5,59,19,60v19,1,19,-22,19,-44r58,0v1,57,-19,86,-77,86v-63,0,-84,-34,-84,-99","w":173,"k":{".":6,",":6}},"d":{"d":"90,-152v-27,3,-17,51,-17,81v0,16,3,27,17,28v28,-4,18,-48,18,-80v0,-16,-3,-28,-18,-29xm67,-200v21,0,36,9,41,27r0,-84r65,0r0,257r-62,0v-1,-8,2,-21,-1,-27v-8,20,-18,32,-44,32v-53,0,-59,-47,-59,-107v0,-52,10,-98,60,-98"},"e":{"d":"90,-160v-19,0,-18,19,-18,38r36,0v0,-19,1,-39,-18,-38xm90,-200v65,0,81,45,78,114r-96,0v0,23,-4,53,18,51v16,-1,18,-15,18,-33r58,0v-1,50,-24,72,-76,73v-65,1,-83,-36,-83,-102v0,-65,19,-103,83,-103","w":173,"k":{"x":6,".":13,",":13}},"f":{"d":"113,-219v-17,-5,-30,3,-26,24r26,0r0,44r-26,0r0,151r-65,0r0,-151r-22,0r0,-44r22,0v-9,-61,34,-74,91,-65r0,41","w":113,"k":{".":20,",":20}},"g":{"d":"69,-200v23,-1,36,13,44,32r0,-27r60,0r0,192v10,78,-115,89,-151,42v-5,-6,-6,-16,-6,-27r59,0v-1,12,11,17,23,14v18,-4,14,-41,12,-61v-7,19,-22,30,-44,30v-47,0,-57,-44,-57,-97v0,-54,9,-96,60,-98xm93,-152v-21,2,-19,25,-19,49v0,23,-3,49,19,49v20,0,15,-27,18,-49v-2,-22,1,-46,-18,-49","k":{".":13,",":13}},"h":{"d":"94,-152v-13,0,-16,8,-16,23r0,129r-65,0r0,-257r65,0r0,84v19,-42,96,-34,96,26r0,147r-65,0r0,-129v0,-14,-2,-23,-15,-23"},"i":{"d":"14,-257r65,0r0,48r-65,0r0,-48xm14,-195r65,0r0,195r-65,0r0,-195","w":92},"j":{"d":"14,-257r65,0r0,48r-65,0r0,-48xm-10,18v14,-1,24,-1,24,-14r0,-199r65,0r0,208v3,49,-40,54,-89,49r0,-44","w":92},"k":{"d":"11,-257r65,0r1,130r36,-68r69,0r-54,81r61,114r-69,0r-33,-67v-14,12,-11,41,-11,67r-65,0r0,-257","w":180},"l":{"d":"14,-257r65,0r0,257r-65,0r0,-257","w":92},"m":{"d":"188,-152v-13,1,-16,9,-16,23r0,129r-64,0r0,-129v-1,-14,-3,-23,-16,-23v-13,0,-16,9,-16,23r0,129r-65,0r0,-195r63,0v1,7,-2,18,1,24v12,-39,85,-38,94,1v8,-20,26,-30,49,-30v33,0,52,18,51,53r0,147r-65,0r0,-129v0,-15,-3,-23,-16,-23","w":280},"n":{"d":"94,-152v-13,0,-16,8,-16,23r0,129r-65,0r0,-195r63,0r0,24v16,-46,98,-37,98,24r0,147r-65,0r0,-129v0,-14,-2,-23,-15,-23"},"o":{"d":"90,-158v-29,3,-14,57,-17,91v2,15,1,31,17,30v29,-3,17,-56,17,-90v0,-17,-1,-33,-17,-31xm90,-200v67,0,83,39,83,103v0,61,-20,102,-83,102v-67,0,-83,-39,-83,-103v0,-61,20,-102,83,-102","w":180},"p":{"d":"97,-152v-27,3,-17,51,-17,81v0,16,3,27,17,28v27,-4,17,-49,17,-80v0,-16,-2,-28,-17,-29xm120,5v-22,0,-33,-11,-41,-27r0,85r-65,0r0,-258r63,0r0,27v7,-21,23,-32,45,-32v52,2,58,47,58,107v0,55,-9,96,-60,98"},"q":{"d":"90,-43v28,-4,18,-48,18,-80v0,-16,-3,-28,-18,-29v-27,3,-17,51,-17,81v0,16,3,27,17,28xm66,-200v27,0,35,14,45,32r0,-27r62,0r0,258r-65,0r0,-85v-5,18,-20,27,-41,27v-51,0,-60,-43,-60,-98v0,-61,6,-105,59,-107"},"r":{"d":"129,-139v-29,-5,-53,1,-53,33r0,106r-65,0r0,-195r63,0v1,10,-2,23,1,31v7,-24,23,-39,54,-36r0,61","w":126,"k":{"y":-6,"v":-6,".":33,"-":6,",":33}},"s":{"d":"136,-108v52,36,14,119,-54,113v-49,-5,-75,-19,-76,-65r57,0v-6,28,35,33,37,9v-17,-42,-97,-18,-94,-88v2,-43,33,-60,78,-61v49,0,73,20,73,61r-57,0v0,-15,-3,-21,-17,-21v-16,0,-22,19,-9,27v18,10,44,13,62,25","w":166},"t":{"d":"113,0v-49,5,-91,7,-91,-48r0,-103r-21,0r0,-44r21,0r0,-57r65,0r0,57r26,0r0,44r-26,0r0,93v-1,15,12,15,26,15r0,43","w":113},"u":{"d":"112,-24v-18,44,-99,39,-99,-24r0,-147r65,0r0,129v0,15,3,23,16,23v13,0,15,-9,15,-23r0,-129r65,0r0,195r-62,0r0,-24"},"v":{"d":"-2,-195r67,0r19,140r18,-140r67,0r-48,195r-76,0","w":166,"k":{".":20,",":20}},"w":{"d":"0,-195r63,0r17,140r19,-140r69,0r20,140r16,-140r62,0r-39,195r-74,0r-20,-138r-20,138r-73,0","w":266,"k":{".":13,",":13}},"x":{"d":"1,-195r65,0r19,52r22,-52r65,0r-49,95r52,100r-65,0r-23,-59r-24,59r-64,0r51,-100","w":173,"k":{"e":6}},"y":{"d":"18,17v22,5,40,-4,33,-28r-51,-184r67,0r20,132r19,-132r65,0r-62,229v-11,30,-49,32,-91,28r0,-45","w":166,"k":{".":20,",":20}},"z":{"d":"8,-195r145,0r0,48r-73,97r75,0r0,50r-150,0r0,-50r70,-94r-67,0r0,-51","w":159},"{":{"d":"120,66v-51,2,-97,2,-97,-49v0,-34,16,-89,-25,-88r0,-49v40,4,25,-54,25,-88v0,-51,46,-51,97,-49r0,45v-22,-2,-37,0,-37,23r0,60v2,26,-21,29,-39,34v50,-4,40,56,40,101v0,17,18,15,36,15r0,45","w":119},"|":{"d":"15,-262r50,0r0,267r-50,0r0,-267","w":79},"}":{"d":"97,-50v0,57,9,122,-54,116r-43,0r0,-45v21,2,37,0,37,-22r0,-61v-1,-25,21,-29,39,-34v-51,5,-40,-56,-40,-101v0,-17,-18,-15,-36,-15r0,-45v51,-2,100,-2,97,49v5,33,-16,90,25,88r0,49v-16,-1,-25,6,-25,21","w":119},"~":{"d":"191,-85v-12,30,-52,38,-82,19v-22,-14,-60,-23,-71,13r-13,-45v13,-44,75,-28,105,-10v23,14,38,-5,48,-22","w":216},"\u00a0":{"w":93,"k":{"Y":13,"W":13,"V":13,"T":13,"A":13}}}});

