/*
Cache: l10n, jquery-masonry, tipsy, cufon-yui, helvetica-neue-font, jquery.linkify, jquery.sparkline, jquery.tallest, reload.blog, swfobject
*/
/* l10n: (http://www.reload-vivaki.com/blog/wp-includes/js/l10n.js) */
function convertEntities(b){var d,a;d=function(c){if(/&[^;]+;/.test(c)){var f=document.createElement("div");f.innerHTML=c;return !f.firstChild?c:f.firstChild.nodeValue}return c};if(typeof b==="string"){return d(b)}else{if(typeof b==="object"){for(a in b){if(typeof b[a]==="string"){b[a]=d(b[a])}}}}return b};
/* jquery-masonry: (http://www.reload-vivaki.com/blog/wp-content/themes/reload/javascripts/jquery.masonry.min.js) */
/*************************************************
**  jQuery Masonry version 1.3.2
**  Copyright David DeSandro, licensed MIT
**  http://desandro.com/resources/jquery-masonry
**************************************************/
(function(e){var n=e.event,o;n.special.smartresize={setup:function(){e(this).bind("resize",n.special.smartresize.handler)},teardown:function(){e(this).unbind("resize",n.special.smartresize.handler)},handler:function(j,l){var g=this,d=arguments;j.type="smartresize";o&&clearTimeout(o);o=setTimeout(function(){jQuery.event.handle.apply(g,d)},l==="execAsap"?0:100)}};e.fn.smartresize=function(j){return j?this.bind("smartresize",j):this.trigger("smartresize",["execAsap"])};e.fn.masonry=function(j,l){var g=
{getBricks:function(d,b,a){var c=a.itemSelector===undefined;b.$bricks=a.appendedContent===undefined?c?d.children():d.find(a.itemSelector):c?a.appendedContent:a.appendedContent.filter(a.itemSelector)},placeBrick:function(d,b,a,c,h){b=Math.min.apply(Math,a);for(var i=b+d.outerHeight(true),f=a.length,k=f,m=c.colCount+1-f;f--;)if(a[f]==b)k=f;d.applyStyle({left:c.colW*k+c.posLeft,top:b},e.extend(true,{},h.animationOptions));for(f=0;f<m;f++)c.colY[k+f]=i},setup:function(d,b,a){g.getBricks(d,a,b);if(a.masoned)a.previousData=
d.data("masonry");a.colW=b.columnWidth===undefined?a.masoned?a.previousData.colW:a.$bricks.outerWidth(true):b.columnWidth;a.colCount=Math.floor(d.width()/a.colW);a.colCount=Math.max(a.colCount,1)},arrange:function(d,b,a){var c;if(!a.masoned||b.appendedContent!==undefined)a.$bricks.css("position","absolute");if(a.masoned){a.posTop=a.previousData.posTop;a.posLeft=a.previousData.posLeft}else{d.css("position","relative");var h=e(document.createElement("div"));d.prepend(h);a.posTop=Math.round(h.position().top);
a.posLeft=Math.round(h.position().left);h.remove()}if(a.masoned&&b.appendedContent!==undefined){a.colY=a.previousData.colY;for(c=a.previousData.colCount;c<a.colCount;c++)a.colY[c]=a.posTop}else{a.colY=[];for(c=a.colCount;c--;)a.colY.push(a.posTop)}e.fn.applyStyle=a.masoned&&b.animate?e.fn.animate:e.fn.css;b.singleMode?a.$bricks.each(function(){var i=e(this);g.placeBrick(i,a.colCount,a.colY,a,b)}):a.$bricks.each(function(){var i=e(this),f=Math.ceil(i.outerWidth(true)/a.colW);f=Math.min(f,a.colCount);
if(f===1)g.placeBrick(i,a.colCount,a.colY,a,b);else{var k=a.colCount+1-f,m=[];for(c=0;c<k;c++){var p=a.colY.slice(c,c+f);m[c]=Math.max.apply(Math,p)}g.placeBrick(i,k,m,a,b)}});a.wallH=Math.max.apply(Math,a.colY);d.applyStyle({height:a.wallH-a.posTop},e.extend(true,[],b.animationOptions));a.masoned||setTimeout(function(){d.addClass("masoned")},1);l.call(a.$bricks);d.data("masonry",a)},resize:function(d,b,a){a.masoned=!!d.data("masonry");var c=d.data("masonry").colCount;g.setup(d,b,a);a.colCount!=c&&
g.arrange(d,b,a)}};return this.each(function(){var d=e(this),b={};b.masoned=!!d.data("masonry");var a=b.masoned?d.data("masonry").options:{},c=e.extend({},e.fn.masonry.defaults,a,j),h=a.resizeable;b.options=c.saveOptions?c:a;l=l||function(){};g.getBricks(d,b,c);if(!b.$bricks.length)return this;g.setup(d,c,b);g.arrange(d,c,b);!h&&c.resizeable&&e(window).bind("smartresize.masonry",function(){g.resize(d,c,b)});h&&!c.resizeable&&e(window).unbind("smartresize.masonry")})};e.fn.masonry.defaults={singleMode:false,
columnWidth:undefined,itemSelector:undefined,appendedContent:undefined,saveOptions:true,resizeable:true,animate:false,animationOptions:{}}})(jQuery);
/* tipsy: (http://www.reload-vivaki.com/blog/wp-content/themes/reload/javascripts/tipsy/jquery.tipsy.js) */
(function($) {
    $.fn.tipsy = function(options) {

        options = $.extend({}, $.fn.tipsy.defaults, options);
        
        return this.each(function() {
            
            var opts = $.fn.tipsy.elementOptions(this, options);
            
            $(this).hover(function() {

                $.data(this, 'cancel.tipsy', true);

                var tip = $.data(this, 'active.tipsy');
                if (!tip) {
                    tip = $('<div class="tipsy"><div class="tipsy-inner"/></div>');
                    tip.css({position: 'absolute', zIndex: 100000});
                    $.data(this, 'active.tipsy', tip);
                }

                if ($(this).attr('title') || typeof($(this).attr('original-title')) != 'string') {
                    $(this).attr('original-title', $(this).attr('title') || '').removeAttr('title');
                }

                var title;
                if (typeof opts.title == 'string') {
                    title = $(this).attr(opts.title == 'title' ? 'original-title' : opts.title);
                } else if (typeof opts.title == 'function') {
                    title = opts.title.call(this);
                }

                tip.find('.tipsy-inner')[opts.html ? 'html' : 'text'](title || opts.fallback);

                var pos = $.extend({}, $(this).offset(), {width: this.offsetWidth, height: this.offsetHeight});
                tip.get(0).className = 'tipsy'; // reset classname in case of dynamic gravity
                tip.remove().css({top: 0, left: 0, visibility: 'hidden', display: 'block'}).appendTo(document.body);
                var actualWidth = tip[0].offsetWidth, actualHeight = tip[0].offsetHeight;
                var gravity = (typeof opts.gravity == 'function') ? opts.gravity.call(this) : opts.gravity;

                switch (gravity.charAt(0)) {
                    case 'n':
                        tip.css({top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2}).addClass('tipsy-north');
                        break;
                    case 's':
                        tip.css({top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2}).addClass('tipsy-south');
                        break;
                    case 'e':
                        tip.css({top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth}).addClass('tipsy-east');
                        break;
                    case 'w':
                        tip.css({top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width}).addClass('tipsy-west');
                        break;
                }

                if (opts.fade) {
                    tip.css({opacity: 0, display: 'block', visibility: 'visible'}).animate({opacity: 0.8});
                } else {
                    tip.css({visibility: 'visible'});
                }

            }, function() {
                $.data(this, 'cancel.tipsy', false);
                var self = this;
                setTimeout(function() {
                    if ($.data(this, 'cancel.tipsy')) return;
                    var tip = $.data(self, 'active.tipsy');
                    if (opts.fade) {
                        tip.stop().fadeOut(function() { $(this).remove(); });
                    } else {
                        tip.remove();
                    }
                }, 100);

            });
            
        });
        
    };
    
    // Overwrite this method to provide options on a per-element basis.
    // For example, you could store the gravity in a 'tipsy-gravity' attribute:
    // return $.extend({}, options, {gravity: $(ele).attr('tipsy-gravity') || 'n' });
    // (remember - do not modify 'options' in place!)
    $.fn.tipsy.elementOptions = function(ele, options) {
        return $.metadata ? $.extend({}, options, $(ele).metadata()) : options;
    };
    
    $.fn.tipsy.defaults = {
        fade: false,
        fallback: '',
        gravity: 'n',
        html: false,
        title: 'title'
    };
    
    $.fn.tipsy.autoNS = function() {
        return $(this).offset().top > ($(document).scrollTop() + $(window).height() / 2) ? 's' : 'n';
    };
    
    $.fn.tipsy.autoWE = function() {
        return $(this).offset().left > ($(document).scrollLeft() + $(window).width() / 2) ? 'e' : 'w';
    };
    
})(jQuery);

/* cufon-yui: (http://www.reload-vivaki.com/blog/wp-content/themes/reload/javascripts/cufon-yui.js) */
/*
 * 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}})());
/* helvetica-neue-font: (http://www.reload-vivaki.com/blog/wp-content/themes/reload/assets/Helvetica_Neue_LT_Std_400-Helvetica_Neue_LT_Std_700-Helvetica_Neue_LT_Std_italic_400-Helvetica_Neue_LT_Std_italic_700.font.js) */
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1988, 1990, 1993, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * HelveticaNeueLTStd-Roman
 * 
 * Designer:
 * Linotype Staff
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":278,"face":{"font-family":"Helvetica Neue LT Std","font-weight":400,"font-stretch":"normal","units-per-em":"500","panose-1":"2 11 6 4 2 2 2 2 2 4","ascent":"357","descent":"-143","x-height":"6","bbox":"-20 -454 517 107","underline-thickness":"25","underline-position":"-25","stemh":"38","stemv":"42","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":139},"!":{"d":"88,-357v2,95,-5,180,-12,265r-22,0r-13,-155r0,-110r47,0xm37,0r0,-56r55,0r0,56r-55,0","w":129},"\"":{"d":"54,-228r0,-129r34,0r0,129r-34,0xm124,-228r0,-129r34,0r0,129r-34,0","w":213},"#":{"d":"51,0r15,-103r-49,0r0,-34r53,0r11,-75r-51,0r0,-34r56,0r14,-102r34,0r-14,102r62,0r14,-102r35,0r-15,102r45,0r0,34r-49,0r-10,75r45,0r0,34r-51,0r-14,103r-34,0r14,-103r-62,0r-14,103r-35,0xm178,-212r-62,0r-11,75r62,0"},"$":{"d":"126,-208r0,-118v-32,4,-58,23,-58,61v0,36,24,47,58,57xm153,-157r0,125v38,-3,65,-21,65,-64v0,-38,-29,-51,-65,-61xm12,-109r43,0v2,44,31,71,71,77r0,-132v-70,-17,-103,-38,-103,-96v0,-60,45,-102,103,-106r0,-32r27,0r0,33v54,6,86,41,99,99r-43,0v-6,-32,-26,-52,-56,-58r0,123v50,13,109,21,109,101v0,64,-45,103,-109,108r0,42r-27,0r0,-42v-66,-6,-108,-48,-114,-117"},"%":{"d":"293,-93v0,-54,19,-101,81,-101v62,0,80,46,80,100v0,52,-22,100,-80,100v-60,0,-81,-45,-81,-99xm330,-94v0,29,4,72,42,72v38,0,44,-41,44,-72v0,-30,-4,-73,-42,-73v-37,0,-44,43,-44,73xm46,-253v0,-54,19,-101,81,-101v62,0,80,46,80,100v0,52,-22,100,-80,100v-60,0,-81,-45,-81,-99xm84,-254v0,29,4,72,42,72v38,0,44,-41,44,-72v0,-30,-5,-73,-43,-73v-37,0,-43,43,-43,73xm94,11r269,-372r43,0r-269,372r-43,0","w":500},"&":{"d":"206,-74r-82,-98v-34,19,-62,38,-62,80v0,36,34,60,68,60v32,0,58,-16,76,-42xm267,0r-38,-44v-22,34,-62,50,-101,50v-96,0,-112,-69,-112,-98v0,-56,38,-84,84,-108v-20,-28,-40,-48,-40,-84v0,-39,29,-73,81,-73v44,0,87,25,87,73v0,42,-34,72,-68,92r65,79v6,-18,10,-36,11,-55r41,0v-4,42,-9,56,-24,88r69,80r-55,0xm138,-220v20,-13,47,-32,47,-62v0,-20,-15,-38,-41,-38v-20,0,-41,12,-41,38v0,22,19,42,35,62","w":315},"\u2019":{"d":"42,-302r0,-55r55,0v2,61,3,129,-55,129r0,-25v22,0,29,-26,29,-49r-29,0","w":139,"k":{"\u2019":48,"s":37,"t":9}},"(":{"d":"134,99r-32,0v-100,-140,-106,-324,0,-465r32,0v-91,147,-89,318,0,465","w":129},")":{"d":"28,99r-33,0v91,-147,89,-318,0,-465r33,0v100,140,106,324,0,465","w":129},"*":{"d":"100,-357r0,57r54,-20r10,24r-54,18r32,46r-20,16r-34,-48r-33,48r-23,-16r33,-46r-53,-18r9,-24r53,20r0,-57r26,0","w":176},"+":{"d":"167,-253r0,109r109,0r0,34r-109,0r0,110r-34,0r0,-110r-109,0r0,-34r109,0r0,-109r34,0","w":300},",":{"d":"42,0r0,-56r55,0v2,65,1,115,-55,130r0,-26v22,-8,30,-32,29,-48r-29,0","w":139},"-":{"d":"25,-119r0,-40r145,0r0,40r-145,0","w":194},".":{"d":"42,0r0,-56r55,0r0,56r-55,0","w":139},"\/":{"d":"-9,8r148,-374r37,0r-148,374r-37,0","w":166},"0":{"d":"21,-174v0,-78,7,-180,118,-180v111,0,118,102,118,180v0,78,-7,180,-118,180v-111,0,-118,-102,-118,-180xm66,-174v0,53,1,142,73,142v72,0,73,-89,73,-142v0,-52,-1,-143,-73,-143v-72,0,-73,91,-73,143"},"1":{"d":"178,-354r0,354r-42,0r0,-254r-92,0r0,-34v48,0,92,-12,102,-66r32,0"},"2":{"d":"247,-252v0,120,-163,124,-185,214r182,0r0,38r-232,0v7,-84,50,-114,100,-145v60,-37,90,-59,90,-108v0,-38,-30,-64,-68,-64v-50,0,-72,46,-70,88r-42,0v-4,-72,39,-125,114,-125v62,0,111,36,111,102"},"3":{"d":"109,-166r0,-36v48,3,86,-13,86,-58v0,-37,-27,-57,-63,-57v-46,0,-67,35,-67,77r-43,0v2,-68,39,-114,110,-114v62,0,108,28,108,94v1,32,-24,58,-49,72v43,10,64,44,64,86v0,71,-56,108,-122,108v-72,0,-120,-43,-118,-116r43,0v2,46,27,78,75,78v42,0,77,-25,77,-68v0,-53,-47,-76,-101,-66"},"4":{"d":"210,-354r0,234r48,0r0,37r-48,0r0,83r-40,0r0,-83r-156,0r0,-41r162,-230r34,0xm50,-120r120,0r0,-174r-2,0"},"5":{"d":"235,-348r0,37r-143,0r-18,103v69,-60,180,-13,180,96v0,60,-42,118,-124,118v-62,0,-110,-38,-112,-102r42,0v2,36,32,64,74,64v40,0,76,-28,76,-84v0,-80,-107,-106,-146,-46r-37,-2r33,-184r175,0"},"6":{"d":"143,-190v-48,0,-73,36,-73,80v0,44,27,78,73,78v46,0,71,-36,71,-78v0,-44,-23,-80,-71,-80xm250,-264r-43,0v-4,-32,-25,-53,-59,-53v-72,0,-84,81,-86,135v20,-32,51,-46,89,-46v68,0,109,49,109,115v0,52,-29,119,-119,119v-105,0,-122,-96,-122,-170v0,-98,30,-190,131,-190v58,0,95,32,100,90"},"7":{"d":"254,-348r0,36v-72,71,-130,201,-136,312r-47,0v8,-120,66,-229,140,-308r-186,0r0,-40r229,0"},"8":{"d":"65,-100v0,42,31,68,75,68v42,0,73,-28,73,-68v0,-38,-33,-68,-73,-68v-42,0,-75,27,-75,68xm32,-264v0,-58,50,-90,104,-90v123,0,138,124,59,164v42,14,63,44,63,88v0,68,-52,108,-118,108v-68,0,-120,-36,-120,-108v0,-42,22,-74,62,-88v-30,-12,-50,-42,-50,-74xm78,-262v0,39,27,56,62,56v34,0,59,-20,59,-56v0,-36,-25,-55,-59,-55v-34,0,-62,19,-62,55"},"9":{"d":"204,-236v0,-44,-24,-81,-72,-81v-50,0,-70,40,-70,84v0,39,29,75,70,75v44,0,72,-36,72,-78xm24,-86r43,0v3,34,31,54,65,54v52,0,81,-49,79,-138v-16,30,-48,50,-82,50v-72,0,-112,-49,-112,-119v0,-68,49,-115,117,-115v66,0,121,35,121,169v0,122,-37,191,-123,191v-60,0,-102,-31,-108,-92"},":":{"d":"42,0r0,-56r55,0r0,56r-55,0xm97,-258r0,55r-55,0r0,-55r55,0","w":139},";":{"d":"42,0r0,-56r55,0v2,65,1,115,-55,130r0,-26v22,-8,30,-32,29,-48r-29,0xm97,-258r0,55r-55,0r0,-55r55,0","w":139},"<":{"d":"277,-257r0,34r-213,97r213,96r0,34r-254,-115r0,-31","w":300},"=":{"d":"276,-194r0,34r-252,0r0,-34r252,0xm24,-59r0,-34r252,0r0,34r-252,0","w":300},">":{"d":"23,4r0,-34r213,-96r-213,-97r0,-34r254,115r0,31","w":300},"?":{"d":"245,-266v0,87,-96,87,-87,179r-42,0v-13,-99,84,-99,84,-183v0,-36,-24,-58,-60,-58v-48,0,-70,36,-70,82r-42,0v-1,-68,42,-120,112,-120v62,0,105,36,105,100xm109,0r0,-56r55,0r0,56r-55,0"},"@":{"d":"210,-252v-47,0,-80,60,-80,104v0,28,18,48,43,48v44,0,77,-65,77,-106v0,-24,-19,-46,-40,-46xm309,-277r-42,142v-4,14,-11,41,7,41v30,0,68,-61,68,-115v0,-79,-65,-129,-135,-129v-86,0,-152,72,-152,160v0,89,71,159,155,159v48,0,96,-25,124,-61r31,0v-32,55,-93,88,-157,88v-106,0,-187,-82,-187,-188v0,-103,83,-186,185,-186v92,0,170,64,170,154v0,87,-69,146,-116,146v-20,0,-28,-16,-34,-33v-38,57,-134,33,-134,-45v0,-70,48,-142,118,-142v23,0,44,10,56,40r12,-31r31,0","w":400},"A":{"d":"-4,0r140,-357r52,0r140,357r-52,0r-40,-108r-150,0r-40,108r-50,0xm162,-314v-23,53,-40,112,-62,166r122,0","w":324},"B":{"d":"86,-164r0,124r120,0v41,0,66,-25,66,-64v0,-84,-108,-55,-186,-60xm39,-357v115,4,265,-28,266,87v0,40,-24,64,-53,82v107,25,82,188,-40,188r-173,0r0,-357xm86,-317r0,113v70,-1,177,15,172,-56v-5,-84,-99,-50,-172,-57","w":342},"C":{"d":"338,-250r-48,0v-10,-50,-50,-76,-100,-76v-85,0,-121,71,-121,145v0,82,35,149,121,149v62,0,100,-43,104,-102r47,0v-9,89,-65,142,-155,142v-111,0,-164,-82,-164,-186v0,-104,58,-188,168,-188v74,0,137,40,148,116","w":361},"D":{"d":"39,0r0,-357r123,0v110,0,171,55,171,170v0,120,-52,187,-171,187r-123,0xm86,-317r0,277r80,0v32,0,120,-8,120,-140v0,-85,-32,-137,-120,-137r-80,0","w":352},"E":{"d":"39,0r0,-357r247,0r0,40r-200,0r0,113r186,0r0,40r-186,0r0,124r201,0r0,40r-248,0","w":305},"F":{"d":"39,0r0,-357r235,0r0,40r-188,0r0,113r164,0r0,40r-164,0r0,164r-47,0","w":287,"k":{"A":28,"\u00c2":28,"\u00c4":28,"\u00c0":28,",":78,".":78}},"G":{"d":"318,0r-12,-44v-28,38,-72,52,-114,52v-106,0,-170,-87,-170,-180v0,-104,57,-194,170,-194v78,0,139,35,153,119r-47,0v-10,-54,-53,-79,-106,-79v-164,0,-165,294,0,294v74,0,117,-51,114,-116r-114,0r0,-40r156,0r0,188r-30,0","w":379},"H":{"d":"39,0r0,-357r47,0r0,153r188,0r0,-153r48,0r0,357r-48,0r0,-164r-188,0r0,164r-47,0","w":361},"I":{"d":"41,0r0,-357r47,0r0,357r-47,0","w":129},"J":{"d":"220,-357r0,268v0,48,-25,97,-105,97v-74,0,-110,-46,-104,-126r47,0v-2,50,6,86,58,86v44,0,57,-24,57,-64r0,-261r47,0","w":259},"K":{"d":"39,0r0,-357r47,0r0,178r182,-178r61,0r-151,144r157,213r-60,0r-129,-180r-60,55r0,125r-47,0","w":333},"L":{"d":"39,0r0,-357r47,0r0,317r190,0r0,40r-237,0","k":{"T":46,"V":46,"W":28,"y":18,"\u00ff":18,"Y":56,"\u0178":56,"\u2019":37}},"M":{"d":"40,0r0,-357r65,0r113,300r112,-300r66,0r0,357r-46,0r0,-297r-112,297r-40,0r-113,-297r0,297r-45,0","w":435},"N":{"d":"38,0r0,-357r51,0r189,289r0,-289r45,0r0,357r-52,0r-187,-286r0,286r-46,0","w":361},"O":{"d":"19,-178v0,-97,57,-188,171,-188v114,0,171,91,171,188v0,97,-57,186,-171,186v-114,0,-171,-89,-171,-186xm190,-326v-167,2,-168,293,0,294v169,-1,166,-292,0,-294","w":380},"P":{"d":"39,0r0,-357r157,0v71,0,109,39,109,105v0,66,-38,106,-109,106r-110,0r0,146r-47,0xm86,-317r0,131r94,0v54,0,78,-24,78,-66v0,-42,-24,-65,-78,-65r-94,0","w":324,"k":{"A":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,",":90,".":90}},"Q":{"d":"354,1r-24,30r-54,-44v-24,14,-52,21,-86,21v-114,0,-171,-89,-171,-186v0,-97,57,-188,171,-188v175,0,219,226,117,330xm200,-73r25,-29r47,38v75,-78,52,-262,-82,-262v-167,0,-168,293,0,294v18,0,35,-4,50,-10","w":380},"R":{"d":"86,-192v79,-5,181,24,182,-64v0,-35,-20,-61,-64,-61r-118,0r0,125xm275,0v-24,-37,12,-152,-73,-152r-116,0r0,152r-47,0r0,-357r168,0v67,0,109,36,109,93v1,44,-21,78,-62,92v82,14,34,121,74,172r-53,0","w":342,"k":{"T":9,"V":9,"W":9,"Y":18,"\u0178":18}},"S":{"d":"290,-252r-44,0v-6,-51,-40,-74,-89,-74v-40,0,-80,16,-80,62v0,44,57,50,115,63v57,13,114,33,114,103v0,76,-75,106,-140,106v-80,0,-148,-39,-148,-126r46,0v0,60,50,86,104,86v43,0,90,-12,90,-64v0,-49,-57,-58,-114,-70v-57,-12,-114,-29,-114,-95v0,-72,64,-105,129,-105v73,0,128,36,131,114","w":324},"T":{"d":"120,0r0,-317r-119,0r0,-40r285,0r0,40r-118,0r0,317r-48,0","w":287,"k":{"\u00fc":46,"\u00e8":56,"\u00eb":56,"\u00ea":56,"\u00e0":56,"\u00e4":56,"\u00e2":56,"w":56,"y":56,"\u00ff":56,"A":46,"\u00c2":46,"\u00c4":46,"\u00c0":46,",":56,".":56,"c":56,"\u00e7":56,"e":56,"\u00e9":56,"o":56,"\u0153":56,"\u00f4":56,"-":64,"a":56,"r":46,"s":56,"u":46,"\u00fb":46,"\u00f9":46,":":56,";":56}},"U":{"d":"324,-357r0,228v0,90,-51,137,-140,137v-92,0,-147,-42,-147,-137r0,-228r47,0r0,228v0,63,37,97,100,97v60,0,92,-34,92,-97r0,-228r48,0","w":361},"V":{"d":"306,-357r-126,357r-54,0r-126,-357r51,0r103,309r103,-309r49,0","w":305,"k":{"\u00f4":28,"\u00ee":9,"\u00e8":28,"\u00eb":28,"\u00ea":28,"\u00e0":28,"\u00e4":28,"\u00e2":28,"y":9,"\u00ff":9,"A":23,"\u00c2":23,"\u00c4":23,"\u00c0":23,",":64,".":64,"e":28,"\u00e9":28,"o":28,"\u0153":28,"-":28,"a":28,"r":18,"u":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,":":23,";":23,"i":9,"\u00ef":9}},"W":{"d":"457,-357r-95,357r-50,0r-82,-300r-83,300r-49,0r-92,-357r48,0r70,297r2,0r80,-297r51,0r80,297r73,-297r47,0","w":463,"k":{"\u00fc":9,"\u00ea":28,"\u00e4":18,"A":12,"\u00c2":12,"\u00c4":12,"\u00c0":12,",":37,".":37,"e":28,"\u00e9":28,"\u00eb":28,"\u00e8":28,"o":28,"\u0153":28,"\u00f4":28,"a":18,"\u00e2":18,"\u00e0":18,"r":9,"u":9,"\u00fb":9,"\u00f9":9,":":9,";":9}},"X":{"d":"0,0r124,-184r-118,-173r58,0r88,139r94,-139r52,0r-118,173r126,184r-58,0r-96,-148r-99,148r-53,0","w":305},"Y":{"d":"323,-357r-137,211r0,146r-47,0r0,-146r-138,-211r57,0r106,170r105,-170r54,0","w":324,"k":{"\u00fc":37,"v":28,"A":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,",":70,".":70,"e":56,"\u00e9":56,"\u00ea":56,"\u00eb":56,"\u00e8":56,"o":56,"\u0153":56,"\u00f4":56,"q":46,"-":56,"a":46,"\u00e2":46,"\u00e4":46,"\u00e0":46,"u":37,"\u00fb":37,"\u00f9":37,":":46,";":46,"i":18,"\u00ee":18,"\u00ef":18,"p":37}},"Z":{"d":"11,0r0,-40r222,-277r-205,0r0,-40r261,0r0,40r-221,277r227,0r0,40r-284,0","w":305},"[":{"d":"130,-366r0,34r-54,0r0,397r54,0r0,34r-94,0r0,-465r94,0","w":129},"\\":{"d":"28,-366r148,374r-37,0r-148,-374r37,0","w":166},"]":{"d":"0,99r0,-34r54,0r0,-397r-54,0r0,-34r94,0r0,465r-94,0","w":129},"^":{"d":"25,-132r109,-216r32,0r109,216r-35,0r-90,-180r-90,180r-35,0","w":300},"_":{"d":"0,62r0,-24r250,0r0,24r-250,0","w":250},"\u2018":{"d":"98,-284r0,56r-56,0v-2,-61,-3,-129,55,-129r0,25v-22,0,-29,25,-29,48r30,0","w":139,"k":{"\u2018":48}},"a":{"d":"192,-134v-34,25,-130,2,-129,64v0,28,24,38,50,38v77,0,83,-38,79,-102xm261,-34r0,33v-26,13,-71,10,-67,-33v-43,58,-176,60,-176,-32v0,-58,44,-72,88,-80v47,-9,86,-6,86,-38v0,-37,-30,-43,-57,-43v-36,0,-63,11,-65,49r-42,0v2,-64,52,-86,110,-86v46,0,96,10,96,70r0,134v-2,27,7,32,27,26","w":268},"b":{"d":"156,-32v105,-1,106,-196,-2,-195v-57,0,-80,49,-80,97v0,51,24,98,82,98xm34,0r0,-357r42,0r1,133v14,-28,47,-40,83,-40v80,0,118,63,118,136v0,73,-39,134,-118,134v-27,1,-63,-12,-84,-40r0,34r-42,0","w":296},"c":{"d":"252,-176r-44,0v-6,-32,-29,-51,-64,-51v-62,0,-81,49,-81,101v0,48,21,94,75,94v41,0,66,-23,72,-62r43,0v-10,63,-49,100,-114,100v-79,0,-121,-55,-121,-132v0,-78,40,-138,122,-138v58,0,106,26,112,88","w":268},"d":{"d":"263,-357r0,357r-43,0r0,-35v-14,28,-47,41,-83,41v-80,0,-119,-63,-119,-136v0,-73,39,-134,118,-134v26,0,65,10,84,40r0,-133r43,0xm63,-127v0,48,25,95,80,95v57,0,79,-49,79,-97v0,-51,-24,-98,-82,-98v-58,0,-77,50,-77,100","w":296},"e":{"d":"210,-82r42,0v-12,57,-52,88,-110,88v-82,0,-124,-57,-124,-136v0,-78,52,-134,122,-134v92,0,118,86,116,148r-193,0v-2,45,25,84,81,84v35,0,58,-16,66,-50xm63,-154r149,0v-2,-40,-33,-73,-75,-73v-44,0,-71,33,-74,73","w":268},"f":{"d":"50,0r0,-221r-44,0r0,-37r44,0v-11,-74,26,-117,98,-99r0,37v-25,-8,-56,-6,-56,26r0,36r50,0r0,37r-50,0r0,221r-42,0","w":148,"k":{"\u2019":-9,"f":9}},"g":{"d":"136,-34v56,0,77,-52,77,-100v0,-46,-19,-93,-73,-93v-54,0,-77,44,-77,94v0,46,17,99,73,99xm255,-258r0,236v0,84,-38,127,-120,127v-48,0,-105,-20,-107,-76r42,0v2,31,40,42,68,42v61,1,82,-52,76,-115v-14,32,-48,47,-80,47v-77,0,-116,-61,-116,-131v0,-61,30,-136,120,-136v33,-1,59,16,77,42r0,-36r40,0","w":287},"h":{"d":"32,0r0,-357r42,0v2,44,-4,97,2,137v14,-31,50,-44,81,-44v131,-3,78,152,89,264r-42,0r0,-175v0,-32,-21,-52,-53,-52v-107,-1,-71,130,-77,227r-42,0"},"i":{"d":"34,0r0,-258r43,0r0,258r-43,0xm77,-357r0,52r-43,0r0,-52r43,0","w":111},"j":{"d":"77,-258r0,291v0,55,-35,73,-84,64r0,-37v26,6,41,1,41,-34r0,-284r43,0xm77,-357r0,52r-43,0r0,-52r43,0","w":111},"k":{"d":"34,0r0,-357r43,0r0,211r118,-112r57,0r-102,94r110,164r-54,0r-89,-135r-40,37r0,98r-43,0","w":259},"l":{"d":"34,0r0,-357r43,0r0,357r-43,0","w":111},"m":{"d":"32,0r0,-258r40,0v1,12,-2,28,1,38v29,-54,131,-65,155,0v33,-64,166,-63,166,30r0,190r-42,0r0,-170v0,-32,-8,-57,-50,-57v-41,0,-68,26,-68,66r0,161r-42,0r0,-170v0,-34,-10,-57,-48,-57v-50,0,-70,46,-70,66r0,161r-42,0","w":426},"n":{"d":"32,0r0,-258r40,0v1,13,-2,29,1,40v18,-32,47,-46,84,-46v131,-3,78,152,89,264r-42,0r0,-175v0,-32,-21,-52,-53,-52v-107,-1,-71,130,-77,227r-42,0"},"o":{"d":"18,-129v0,-76,44,-135,126,-135v82,0,125,59,125,135v0,76,-43,135,-125,135v-82,0,-126,-59,-126,-135xm63,-129v0,62,37,97,81,97v44,0,80,-35,80,-97v0,-63,-36,-98,-80,-98v-44,0,-81,35,-81,98","w":287},"p":{"d":"156,-32v105,-1,106,-196,-2,-195v-57,0,-80,49,-80,97v0,51,24,98,82,98xm34,99r0,-357r42,0v1,11,-2,25,1,34v14,-28,47,-40,83,-40v80,0,118,63,118,136v0,73,-39,134,-118,134v-27,1,-63,-12,-84,-40r0,133r-42,0","w":296},"q":{"d":"263,-258r0,357r-43,0r0,-134v-14,28,-47,41,-83,41v-80,0,-119,-63,-119,-136v0,-73,39,-134,118,-134v26,0,65,10,84,40r0,-34r43,0xm63,-127v0,48,25,95,80,95v57,0,79,-49,79,-97v0,-51,-24,-98,-82,-98v-58,0,-77,50,-77,100","w":296},"r":{"d":"30,0r0,-258r40,0v2,17,-4,41,2,54v20,-42,48,-62,94,-60r0,44v-112,-6,-92,116,-93,220r-43,0","w":166,"k":{",":46,".":46,"c":9,"\u00e7":9,"d":9,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"g":14,"n":-9,"o":9,"\u0153":9,"\u00f4":9,"q":9,"-":28}},"s":{"d":"16,-82r42,0v2,38,35,50,70,50v26,0,62,-6,62,-38v0,-33,-42,-38,-84,-48v-42,-10,-85,-23,-85,-73v0,-52,52,-73,97,-73v57,0,102,17,106,80r-43,0v-3,-33,-32,-43,-60,-43v-26,0,-55,7,-55,33v0,30,44,35,84,45v42,10,85,23,85,73v0,62,-58,82,-110,82v-58,0,-107,-24,-109,-88","w":250},"t":{"d":"91,-336r0,78r51,0r0,37r-51,0r0,161v-5,27,25,21,51,22r0,38v-54,0,-94,6,-94,-56r0,-165r-44,0r0,-37r44,0r0,-78r43,0","w":157},"u":{"d":"246,-258r0,258r-40,0v-1,-13,2,-30,-1,-41v-18,32,-47,47,-84,47v-131,3,-78,-152,-89,-264r42,0r0,174v0,32,21,52,53,52v107,1,71,-129,77,-226r42,0"},"v":{"d":"243,-258r-95,258r-45,0r-96,-258r47,0r74,215r70,-215r45,0","w":250,"k":{",":37,".":37}},"w":{"d":"370,-258r-82,258r-45,0r-53,-206r-52,206r-46,0r-84,-258r48,0r59,211r52,-211r47,0r54,211r58,-211r44,0","w":379,"k":{",":28,".":28}},"x":{"d":"4,0r98,-136r-90,-122r54,0r62,90r64,-90r52,0r-90,118r100,140r-54,0r-72,-107r-72,107r-52,0","w":259},"y":{"d":"246,-258r-112,292v-24,61,-48,80,-105,65r0,-39v25,10,51,6,60,-18r17,-44r-102,-256r48,0r76,211r73,-211r45,0","w":250,"k":{",":37,".":37}},"z":{"d":"11,0r0,-32r156,-189r-146,0r0,-37r201,0r0,28r-158,192r165,0r0,38r-218,0","w":240},"{":{"d":"154,-366r0,30v-71,-14,-48,75,-48,135v0,50,-34,61,-44,69v12,2,44,15,44,66r0,92v-2,31,12,50,48,43r0,30v-53,5,-88,-8,-88,-65r0,-92v0,-36,-21,-58,-42,-58r0,-34v21,0,42,-24,42,-59r0,-91v5,-56,35,-72,88,-66","w":166},"|":{"d":"38,107r0,-500r34,0r0,500r-34,0","w":111},"}":{"d":"12,99r0,-30v72,15,49,-75,49,-135v0,-50,33,-60,43,-68v-12,-2,-43,-16,-43,-67r0,-91v2,-34,-13,-50,-49,-44r0,-30v54,-5,89,8,89,66v0,58,-9,150,41,150r0,34v-21,0,-41,23,-41,58r0,92v-5,57,-35,70,-89,65","w":166},"~":{"d":"97,-158v34,-1,78,36,107,36v20,0,32,-20,44,-38r18,26v-15,21,-32,42,-63,42v-41,0,-66,-36,-109,-36v-22,0,-34,20,-42,38r-18,-24v11,-21,29,-44,63,-44","w":300},"'":{"d":"52,-228r0,-129r34,0r0,129r-34,0","w":139},"\u201c":{"d":"180,-284r0,56r-56,0v-2,-62,-2,-129,56,-129r0,25v-22,0,-30,25,-30,48r30,0xm88,-284r0,56r-55,0v-2,-61,-3,-129,55,-129r0,25v-22,0,-29,25,-29,48r29,0","w":213},"\u00ab":{"d":"199,-57r-76,-60r0,-44r76,-60r0,43r-50,39r50,39r0,43xm101,-57r-76,-60r0,-44r76,-60r0,43r-50,39r50,39r0,43","w":231},"\u2039":{"d":"101,-57r-76,-60r0,-44r76,-60r0,43r-50,39r50,39r0,43","w":129},"\u203a":{"d":"28,-221r76,60r0,44r-76,60r0,-43r50,-39r-50,-39r0,-43","w":129},"\u2013":{"d":"0,-119r0,-40r250,0r0,40r-250,0","w":250},"\u201d":{"d":"124,-302r0,-55r56,0v2,61,3,129,-55,129r0,-25v22,0,29,-26,29,-49r-30,0xm33,-302r0,-55r55,0v2,61,3,129,-54,129r0,-25v22,0,28,-26,28,-49r-29,0","w":213},"\u00bb":{"d":"32,-221r76,60r0,44r-76,60r0,-43r50,-39r-50,-39r0,-43xm130,-221r76,60r0,44r-76,60r0,-43r50,-39r-50,-39r0,-43","w":231},"\u2026":{"d":"56,0r0,-56r55,0r0,56r-55,0xm222,0r0,-56r56,0r0,56r-56,0xm388,0r0,-56r56,0r0,56r-56,0","w":500},"`":{"d":"54,-294r-66,-72r55,0r43,72r-32,0","w":111},"\u2014":{"d":"65,-119r0,-40r370,0r0,40r-370,0","w":500},"\u0152":{"d":"276,-252v1,-47,-39,-74,-89,-74v-81,0,-121,70,-121,150v0,80,42,144,120,144v50,0,90,-29,90,-70r0,-150xm276,0v-2,-10,3,-27,-2,-34v-18,28,-56,42,-92,42v-106,0,-163,-82,-163,-186v0,-108,61,-188,167,-188v35,0,72,15,90,38r0,-29r238,0r0,40r-191,0r0,113r175,0r0,40r-175,0r0,124r194,0r0,40r-241,0","w":537},"\u0153":{"d":"432,-116r-188,0v-2,45,25,84,75,84v34,0,60,-18,70,-50r41,0v-17,58,-53,88,-111,88v-44,0,-78,-13,-94,-51v-16,38,-51,51,-89,51v-82,0,-118,-62,-118,-136v0,-76,38,-134,118,-134v40,0,72,9,89,45v18,-30,55,-45,91,-45v86,0,120,66,116,148xm244,-154r143,0v0,-44,-27,-73,-71,-73v-44,0,-72,31,-72,73xm208,-130v0,-48,-14,-97,-72,-97v-97,0,-102,193,0,195v57,0,72,-52,72,-98","w":445},"\u2122":{"d":"195,-357r0,27r-65,0r0,179r-34,0r0,-179r-64,0r0,-27r163,0xm464,-357r0,206r-34,0r0,-172r-2,0r-67,172r-21,0r-69,-172r0,172r-34,0r0,-206r53,0r61,157r61,-157r52,0","w":495},"\u00b0":{"d":"28,-282v0,-40,32,-72,72,-72v40,0,72,32,72,72v0,40,-32,72,-72,72v-40,0,-72,-32,-72,-72xm100,-330v-63,0,-62,95,0,94v30,0,47,-22,47,-46v0,-24,-17,-48,-47,-48","w":200},"\u00d7":{"d":"60,-12r-24,-24r90,-91r-90,-90r24,-24r90,90r90,-90r24,24r-90,90r91,91r-24,24r-91,-91","w":300},"\u00c2":{"d":"-4,0r140,-357r52,0r140,357r-52,0r-40,-108r-150,0r-40,108r-50,0xm162,-314v-23,53,-40,112,-62,166r122,0xm87,-382r51,-72r47,0r52,72r-42,0r-35,-48r-34,48r-39,0","w":324},"\u00c4":{"d":"-4,0r140,-357r52,0r140,357r-52,0r-40,-108r-150,0r-40,108r-50,0xm162,-314v-23,53,-40,112,-62,166r122,0xm186,-384r0,-52r46,0r0,52r-46,0xm92,-384r0,-52r46,0r0,52r-46,0","w":324},"\u00c0":{"d":"-4,0r140,-357r52,0r140,357r-52,0r-40,-108r-150,0r-40,108r-50,0xm162,-314v-23,53,-40,112,-62,166r122,0xm160,-382r-65,-72r55,0r42,72r-32,0","w":324},"\u00c7":{"d":"338,-250r-48,0v-10,-50,-50,-76,-100,-76v-85,0,-121,71,-121,145v0,82,35,149,121,149v62,0,100,-43,104,-102r47,0v-9,88,-63,141,-151,142v-4,7,-14,13,-13,20v23,-11,60,2,59,32v-3,51,-68,52,-108,36r8,-22v18,7,62,12,62,-10v0,-16,-29,-18,-44,-11r-8,-14r24,-31v-100,-8,-148,-87,-148,-186v0,-104,58,-188,168,-188v74,0,137,40,148,116","w":361},"\u00c9":{"d":"39,0r0,-357r247,0r0,40r-200,0r0,113r186,0r0,40r-186,0r0,124r201,0r0,40r-248,0xm122,-382r44,-72r54,0r-66,72r-32,0","w":305},"\u00ca":{"d":"39,0r0,-357r247,0r0,40r-200,0r0,113r186,0r0,40r-186,0r0,124r201,0r0,40r-248,0xm78,-382r52,-72r46,0r52,72r-42,0r-34,-48r-36,48r-38,0","w":305},"\u00cb":{"d":"39,0r0,-357r247,0r0,40r-200,0r0,113r186,0r0,40r-186,0r0,124r201,0r0,40r-248,0xm178,-384r0,-52r44,0r0,52r-44,0xm84,-384r0,-52r44,0r0,52r-44,0","w":305},"\u00c8":{"d":"39,0r0,-357r247,0r0,40r-200,0r0,113r186,0r0,40r-186,0r0,124r201,0r0,40r-248,0xm152,-382r-66,-72r54,0r44,72r-32,0","w":305},"\u00ce":{"d":"41,0r0,-357r47,0r0,357r-47,0xm-10,-382r52,-72r46,0r52,72r-42,0r-34,-48r-36,48r-38,0","w":129},"\u00cf":{"d":"41,0r0,-357r47,0r0,357r-47,0xm90,-384r0,-52r44,0r0,52r-44,0xm-4,-384r0,-52r44,0r0,52r-44,0","w":129},"\u00d4":{"d":"19,-178v0,-97,57,-188,171,-188v114,0,171,91,171,188v0,97,-57,186,-171,186v-114,0,-171,-89,-171,-186xm190,-326v-167,2,-168,293,0,294v169,-1,166,-292,0,-294xm115,-382r51,-72r47,0r52,72r-42,0r-35,-48r-34,48r-39,0","w":380},"\u00db":{"d":"324,-357r0,228v0,90,-51,137,-140,137v-92,0,-147,-42,-147,-137r0,-228r47,0r0,228v0,63,37,97,100,97v60,0,92,-34,92,-97r0,-228r48,0xm106,-382r51,-72r47,0r52,72r-42,0r-35,-48r-35,48r-38,0","w":361},"\u00dc":{"d":"324,-357r0,228v0,90,-51,137,-140,137v-92,0,-147,-42,-147,-137r0,-228r47,0r0,228v0,63,37,97,100,97v60,0,92,-34,92,-97r0,-228r48,0xm205,-384r0,-52r45,0r0,52r-45,0xm111,-384r0,-52r45,0r0,52r-45,0","w":361},"\u00d9":{"d":"324,-357r0,228v0,90,-51,137,-140,137v-92,0,-147,-42,-147,-137r0,-228r47,0r0,228v0,63,37,97,100,97v60,0,92,-34,92,-97r0,-228r48,0xm179,-382r-65,-72r54,0r43,72r-32,0","w":361},"\u0178":{"d":"323,-357r-137,211r0,146r-47,0r0,-146r-138,-211r57,0r106,170r105,-170r54,0xm186,-384r0,-52r46,0r0,52r-46,0xm92,-384r0,-52r46,0r0,52r-46,0","w":324,"k":{"v":28,"A":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,",":70,".":70,"e":56,"\u00e9":56,"\u00ea":56,"\u00eb":56,"\u00e8":56,"o":56,"\u0153":56,"\u00f4":56,"q":46,"-":56,"a":46,"\u00e2":46,"\u00e4":46,"\u00e0":46,"u":37,"\u00fb":37,"\u00fc":37,"\u00f9":37,":":46,";":46,"i":18,"\u00ee":18,"\u00ef":18,"p":37}},"\u00e2":{"d":"192,-134v-34,25,-130,2,-129,64v0,28,24,38,50,38v77,0,83,-38,79,-102xm261,-34r0,33v-26,13,-71,10,-67,-33v-43,58,-176,60,-176,-32v0,-58,44,-72,88,-80v47,-9,86,-6,86,-38v0,-37,-30,-43,-57,-43v-36,0,-63,11,-65,49r-42,0v2,-64,52,-86,110,-86v46,0,96,10,96,70r0,134v-2,27,7,32,27,26xm60,-294r51,-72r47,0r52,72r-42,0r-35,-48r-35,48r-38,0","w":268},"\u00e4":{"d":"192,-134v-34,25,-130,2,-129,64v0,28,24,38,50,38v77,0,83,-38,79,-102xm261,-34r0,33v-26,13,-71,10,-67,-33v-43,58,-176,60,-176,-32v0,-58,44,-72,88,-80v47,-9,86,-6,86,-38v0,-37,-30,-43,-57,-43v-36,0,-63,11,-65,49r-42,0v2,-64,52,-86,110,-86v46,0,96,10,96,70r0,134v-2,27,7,32,27,26xm159,-296r0,-52r45,0r0,52r-45,0xm65,-296r0,-52r45,0r0,52r-45,0","w":268},"\u00e0":{"d":"192,-134v-34,25,-130,2,-129,64v0,28,24,38,50,38v77,0,83,-38,79,-102xm261,-34r0,33v-26,13,-71,10,-67,-33v-43,58,-176,60,-176,-32v0,-58,44,-72,88,-80v47,-9,86,-6,86,-38v0,-37,-30,-43,-57,-43v-36,0,-63,11,-65,49r-42,0v2,-64,52,-86,110,-86v46,0,96,10,96,70r0,134v-2,27,7,32,27,26xm133,-294r-65,-72r54,0r43,72r-32,0","w":268},"\u00e7":{"d":"252,-176r-44,0v-6,-32,-29,-51,-64,-51v-62,0,-81,49,-81,101v0,48,21,94,75,94v41,0,66,-23,72,-62r43,0v-9,60,-47,98,-107,100v-4,7,-15,14,-15,22v23,-11,60,2,59,32v-3,51,-68,52,-108,36r8,-22v18,7,62,12,62,-10v0,-16,-29,-18,-44,-11r-8,-14r26,-34v-70,-6,-108,-59,-108,-131v0,-78,40,-138,122,-138v58,0,106,26,112,88","w":268},"\u00e9":{"d":"210,-82r42,0v-12,57,-52,88,-110,88v-82,0,-124,-57,-124,-136v0,-78,52,-134,122,-134v92,0,118,86,116,148r-193,0v-2,45,25,84,81,84v35,0,58,-16,66,-50xm63,-154r149,0v-2,-40,-33,-73,-75,-73v-44,0,-71,33,-74,73xm104,-294r43,-72r55,0r-66,72r-32,0","w":268},"\u00ea":{"d":"210,-82r42,0v-12,57,-52,88,-110,88v-82,0,-124,-57,-124,-136v0,-78,52,-134,122,-134v92,0,118,86,116,148r-193,0v-2,45,25,84,81,84v35,0,58,-16,66,-50xm63,-154r149,0v-2,-40,-33,-73,-75,-73v-44,0,-71,33,-74,73xm60,-294r51,-72r47,0r52,72r-42,0r-35,-48r-35,48r-38,0","w":268},"\u00eb":{"d":"210,-82r42,0v-12,57,-52,88,-110,88v-82,0,-124,-57,-124,-136v0,-78,52,-134,122,-134v92,0,118,86,116,148r-193,0v-2,45,25,84,81,84v35,0,58,-16,66,-50xm63,-154r149,0v-2,-40,-33,-73,-75,-73v-44,0,-71,33,-74,73xm159,-296r0,-52r45,0r0,52r-45,0xm65,-296r0,-52r45,0r0,52r-45,0","w":268},"\u00e8":{"d":"210,-82r42,0v-12,57,-52,88,-110,88v-82,0,-124,-57,-124,-136v0,-78,52,-134,122,-134v92,0,118,86,116,148r-193,0v-2,45,25,84,81,84v35,0,58,-16,66,-50xm63,-154r149,0v-2,-40,-33,-73,-75,-73v-44,0,-71,33,-74,73xm133,-294r-65,-72r54,0r43,72r-32,0","w":268},"\u00ee":{"d":"77,0r-43,0r0,-258r43,0r0,258xm-20,-294r52,-72r46,0r52,72r-42,0r-34,-48r-35,48r-39,0","w":111},"\u00ef":{"d":"77,0r-43,0r0,-258r43,0r0,258xm80,-296r0,-52r45,0r0,52r-45,0xm-14,-296r0,-52r45,0r0,52r-45,0","w":111},"\u00f4":{"d":"18,-129v0,-76,44,-135,126,-135v82,0,125,59,125,135v0,76,-43,135,-125,135v-82,0,-126,-59,-126,-135xm63,-129v0,62,37,97,81,97v44,0,80,-35,80,-97v0,-63,-36,-98,-80,-98v-44,0,-81,35,-81,98xm68,-294r52,-72r46,0r52,72r-42,0r-34,-48r-35,48r-39,0","w":287},"\u00fb":{"d":"246,-258r0,258r-40,0v-1,-13,2,-30,-1,-41v-18,32,-47,47,-84,47v-131,3,-78,-152,-89,-264r42,0r0,174v0,32,21,52,53,52v107,1,71,-129,77,-226r42,0xm64,-294r52,-72r46,0r52,72r-42,0r-34,-48r-36,48r-38,0"},"\u00fc":{"d":"246,-258r0,258r-40,0v-1,-13,2,-30,-1,-41v-18,32,-47,47,-84,47v-131,3,-78,-152,-89,-264r42,0r0,174v0,32,21,52,53,52v107,1,71,-129,77,-226r42,0xm164,-296r0,-52r44,0r0,52r-44,0xm70,-296r0,-52r44,0r0,52r-44,0"},"\u00f9":{"d":"246,-258r0,258r-40,0v-1,-13,2,-30,-1,-41v-18,32,-47,47,-84,47v-131,3,-78,-152,-89,-264r42,0r0,174v0,32,21,52,53,52v107,1,71,-129,77,-226r42,0xm138,-294r-66,-72r54,0r44,72r-32,0"},"\u00ff":{"d":"246,-258r-112,292v-24,61,-48,80,-105,65r0,-39v25,10,51,6,60,-18r17,-44r-102,-256r48,0r76,211r73,-211r45,0xm150,-296r0,-52r44,0r0,52r-44,0xm56,-296r0,-52r44,0r0,52r-44,0","w":250,"k":{",":37,".":37}},"\u20ac":{"d":"46,-225v15,-75,59,-137,142,-137v30,0,61,10,91,31r-23,41v-42,-42,-98,-48,-134,-2v-14,18,-22,39,-28,67r142,0r-14,31r-131,0v-1,10,-1,18,0,26r125,0r-14,30r-108,0v7,114,111,136,172,72r0,52v-101,54,-212,6,-221,-124r-39,0r14,-30r23,0v-1,-9,-1,-19,0,-26r-37,0r14,-31r26,0"},"\u00a0":{"w":139}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1988, 1990, 1993, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * HelveticaNeueLTStd-Bd
 * 
 * Designer:
 * Linotype Staff
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":278,"face":{"font-family":"Helvetica Neue LT Std","font-weight":700,"font-stretch":"normal","units-per-em":"500","panose-1":"2 11 8 4 2 2 2 2 2 4","ascent":"357","descent":"-143","x-height":"7","bbox":"-24 -460 526 109.044","underline-thickness":"25","underline-position":"-25","stemh":"54","stemv":"71","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":139},"!":{"d":"106,-357v4,93,-9,170,-19,250r-35,0v-10,-80,-24,-156,-20,-250r74,0xm30,0r0,-77r79,0r0,77r-79,0","w":139},"\"":{"d":"136,-196r0,-161r53,0r0,161r-53,0xm42,-196r0,-161r54,0r0,161r-54,0","w":231},"#":{"d":"44,0r14,-99r-42,0r0,-45r48,0r9,-62r-41,0r0,-45r47,0r14,-99r49,0r-14,99r48,0r14,-99r48,0r-14,99r38,0r0,45r-44,0r-8,62r36,0r0,45r-43,0r-13,99r-49,0r13,-99r-48,0r-14,99r-48,0xm170,-206r-48,0r-10,62r49,0"},"$":{"d":"124,-226r0,-81v-22,0,-45,13,-45,41v0,22,13,32,45,40xm154,-146r0,96v24,-2,54,-17,54,-49v0,-26,-14,-36,-54,-47xm124,-154v-55,-17,-116,-31,-116,-104v0,-68,56,-104,116,-108r0,-38r30,0r0,38v60,6,108,38,112,107r-71,0v0,-26,-19,-48,-41,-48r0,89v8,2,16,4,25,6v98,27,99,82,99,116v0,28,-24,98,-124,104r0,43r-30,0r0,-43v-74,-6,-116,-46,-124,-124r70,0v0,37,24,60,54,66r0,-104"},"%":{"d":"38,-258v0,-54,26,-99,84,-99v62,0,82,46,82,101v0,54,-26,94,-84,94v-62,0,-82,-41,-82,-96xm88,-257v0,22,0,57,32,57v31,0,34,-35,34,-56v0,-20,-2,-64,-32,-64v-32,0,-34,40,-34,63xm296,-92v0,-54,26,-96,84,-96v62,0,82,43,82,98v0,54,-26,97,-84,97v-62,0,-82,-44,-82,-99xm346,-91v0,22,0,61,32,61v31,0,34,-39,34,-60v0,-20,-2,-60,-32,-60v-32,0,-34,36,-34,59xm127,11r207,-372r42,0r-206,372r-43,0","w":500},"&":{"d":"191,-280v0,-18,-15,-34,-33,-34v-48,0,-32,66,-4,86v20,-13,37,-26,37,-52xm194,-83r-60,-75v-25,11,-50,31,-50,60v0,26,23,46,50,46v26,0,44,-13,60,-31xm261,0r-29,-36v-63,74,-216,50,-216,-64v0,-50,38,-84,80,-104v-19,-24,-34,-45,-34,-76v0,-50,45,-81,93,-81v54,0,98,29,98,85v0,42,-27,71,-63,90r46,56v7,-13,10,-28,12,-42r62,0v-4,32,-14,63,-34,88r72,84r-87,0","w":342},"\u2019":{"d":"34,-280r0,-77r71,0r0,77v2,44,-29,78,-71,84r0,-34v26,-8,33,-26,33,-50r-33,0","w":139,"k":{"\u2019":32,"s":37,"t":9}},"(":{"d":"92,-366r60,0v-74,141,-73,314,-1,457r-59,0v-86,-137,-88,-318,0,-457","w":148},")":{"d":"56,91r-60,0v74,-141,73,-314,1,-457r59,0v86,137,89,319,0,457","w":148},"*":{"d":"121,-357r0,63r58,-22r13,38r-58,20r36,48r-32,25r-38,-51r-34,51r-34,-25r37,-48r-58,-20r13,-38r57,22r0,-63r40,0","w":203},"+":{"d":"177,-252r0,99r99,0r0,53r-99,0r0,100r-53,0r0,-100r-100,0r0,-53r100,0r0,-99r53,0","w":300},",":{"d":"30,0r0,-77r79,0r0,77v0,46,-35,77,-78,83r0,-36v21,-4,36,-25,35,-47r-36,0","w":139},"-":{"d":"26,-106r0,-61r151,0r0,61r-151,0","w":203},".":{"d":"30,0r0,-77r78,0r0,77r-78,0","w":139},"\/":{"d":"-6,8r140,-374r57,0r-139,374r-58,0","w":185},"0":{"d":"10,-176v0,-136,59,-181,128,-181v70,0,130,45,130,181v0,140,-60,183,-130,183v-69,0,-128,-43,-128,-183xm82,-176v0,40,-1,124,56,124v58,0,58,-84,58,-124v0,-36,0,-122,-58,-122v-57,0,-56,86,-56,122"},"1":{"d":"196,-350r0,350r-71,0r0,-227r-88,0r0,-53v50,1,95,-16,103,-70r56,0"},"2":{"d":"266,-248v0,109,-117,117,-164,187r166,0r0,61r-258,0v0,-81,51,-115,111,-156v31,-21,73,-43,73,-86v0,-33,-22,-54,-52,-54v-42,0,-56,43,-56,80r-68,0v-2,-80,44,-141,128,-141v64,0,120,41,120,109"},"3":{"d":"114,-158r0,-50v30,2,74,-4,74,-44v0,-30,-23,-46,-49,-46v-36,0,-54,26,-54,62r-67,0v2,-72,48,-121,120,-121v56,0,118,35,118,97v0,33,-17,63,-49,72v38,8,62,41,62,80v0,74,-62,115,-130,115v-78,0,-132,-47,-130,-127r67,0v2,38,21,68,62,68v32,0,57,-21,57,-54v0,-53,-47,-52,-81,-52"},"4":{"d":"156,0r0,-81r-148,0r0,-65r152,-204r64,0r0,210r46,0r0,59r-46,0r0,81r-68,0xm156,-140v-2,-39,4,-86,-2,-121r-90,121r92,0"},"5":{"d":"250,-350r0,58r-144,0r-14,81v19,-20,41,-27,69,-27v69,0,108,53,108,119v0,72,-60,126,-130,126v-68,0,-129,-37,-130,-111r71,0v4,31,27,52,58,52v37,0,60,-32,60,-67v0,-64,-85,-88,-114,-37r-64,0r34,-194r196,0"},"6":{"d":"81,-196v57,-83,187,-22,187,75v0,72,-50,128,-123,128v-106,0,-135,-93,-135,-181v0,-86,38,-183,138,-183v60,0,106,35,114,97r-68,0v-4,-24,-23,-44,-47,-44v-51,0,-68,70,-66,108xm143,-182v-38,0,-57,32,-57,66v0,32,21,64,57,64v34,0,53,-32,53,-64v0,-33,-17,-66,-53,-66"},"7":{"d":"258,-350r0,61v-74,64,-113,195,-114,289r-76,0v8,-104,52,-204,118,-284r-166,0r0,-66r238,0"},"8":{"d":"78,-106v0,36,28,60,62,60v34,0,60,-25,60,-60v0,-34,-27,-56,-60,-56v-34,0,-62,20,-62,56xm22,-262v0,-63,61,-95,118,-95v87,0,116,60,116,94v0,36,-21,60,-50,75v42,10,65,41,65,85v0,146,-264,149,-264,1v0,-46,29,-73,66,-88v-34,-10,-51,-38,-51,-72xm86,-255v0,30,26,46,54,46v29,0,52,-16,52,-46v0,-18,-8,-49,-52,-49v-28,0,-54,18,-54,49"},"9":{"d":"197,-154v-57,83,-187,22,-187,-75v0,-72,50,-128,123,-128v106,0,135,93,135,181v0,86,-38,183,-138,183v-60,0,-106,-35,-114,-97r68,0v4,24,23,44,47,44v51,0,68,-70,66,-108xm135,-168v38,0,57,-32,57,-66v0,-32,-21,-64,-57,-64v-34,0,-53,32,-53,64v0,33,17,66,53,66"},":":{"d":"30,0r0,-77r79,0r0,77r-79,0xm109,-254r0,77r-79,0r0,-77r79,0","w":139},";":{"d":"30,0r0,-77r79,0r0,77v0,46,-35,77,-78,83r0,-36v21,-4,36,-25,35,-47r-36,0xm109,-254r0,77r-79,0r0,-77r79,0","w":139},"<":{"d":"277,-257r0,57r-183,74r183,72r0,58r-254,-101r0,-59","w":300},"=":{"d":"276,-206r0,53r-252,0r0,-53r252,0xm276,-100r0,54r-252,0r0,-54r252,0","w":300},">":{"d":"23,4r0,-58r183,-72r-183,-74r0,-57r254,101r0,59","w":300},"?":{"d":"104,-107v-12,-95,80,-91,80,-155v0,-30,-17,-45,-43,-45v-36,0,-51,29,-51,65r-74,0v2,-72,49,-124,122,-124v94,0,124,59,124,97v0,99,-92,72,-91,162r-67,0xm96,0r0,-77r79,0r0,77r-79,0"},"@":{"d":"146,-160v0,26,15,45,38,45v36,0,62,-41,62,-75v0,-24,-16,-43,-38,-43v-36,0,-62,40,-62,73xm311,-272r-31,128v-4,14,-8,34,4,34v28,0,59,-38,59,-92v0,-80,-59,-124,-135,-124v-86,0,-142,64,-142,148v0,135,169,189,255,106r42,0v-34,52,-91,80,-153,80v-106,0,-192,-79,-192,-186v0,-106,86,-188,190,-188v91,0,174,61,174,153v0,103,-86,145,-118,145v-22,1,-33,-14,-37,-28v-41,61,-133,14,-133,-57v0,-63,44,-127,110,-127v22,0,46,8,58,34r8,-26r41,0","w":400},"A":{"d":"-4,0r136,-357r80,0r134,357r-82,0r-26,-80r-134,0r-28,80r-80,0xm172,-269v-18,41,-31,88,-48,131r93,0","w":342},"B":{"d":"113,-159r0,98v60,-4,141,20,142,-47v2,-68,-80,-48,-142,-51xm34,0r0,-357v116,7,284,-35,282,89v0,35,-17,59,-48,74v44,12,66,46,66,90v0,134,-169,100,-300,104xm113,-296r0,84v54,-3,128,16,127,-43v-1,-59,-74,-36,-127,-41","w":352},"C":{"d":"348,-237r-76,0v-5,-36,-39,-63,-78,-63v-70,0,-96,61,-96,123v0,60,26,119,96,119v48,0,76,-33,82,-80r76,0v-8,89,-70,146,-158,146v-110,0,-175,-82,-175,-185v0,-106,65,-189,175,-189v78,0,144,47,154,129","w":370},"D":{"d":"34,0r0,-357r154,0v92,0,162,59,162,177v0,104,-53,180,-162,180r-154,0xm113,-291r0,225v95,3,159,4,159,-107v0,-72,-25,-118,-103,-118r-56,0","w":370},"E":{"d":"34,0r0,-357r268,0r0,66r-189,0r0,77r173,0r0,60r-173,0r0,88r193,0r0,66r-272,0","w":324},"F":{"d":"34,0r0,-357r252,0r0,66r-173,0r0,83r149,0r0,60r-149,0r0,148r-79,0","w":296,"k":{"A":28,"\u00c2":28,"\u00c4":28,"\u00c0":28,",":64,".":64}},"G":{"d":"300,0r-8,-40v-28,36,-64,48,-98,48v-110,0,-175,-82,-175,-185v0,-106,65,-189,175,-189v73,0,143,45,151,126r-75,0v-9,-40,-39,-60,-76,-60v-70,0,-96,61,-96,123v0,60,26,119,96,119v51,0,82,-26,86,-76r-80,0r0,-59r150,0r0,193r-50,0","w":379},"H":{"d":"34,0r0,-357r79,0r0,137r145,0r0,-137r78,0r0,357r-78,0r0,-154r-145,0r0,154r-79,0","w":370},"I":{"d":"34,0r0,-357r79,0r0,357r-79,0","w":147},"J":{"d":"244,-357r0,245v0,46,-14,120,-120,120v-70,0,-128,-46,-117,-141r71,0v-1,42,3,75,46,75v42,0,41,-33,41,-58r0,-241r79,0"},"K":{"d":"34,0r0,-357r79,0r0,148r139,-148r98,0r-139,141r153,216r-98,0r-108,-160r-45,45r0,115r-79,0","w":361},"L":{"d":"34,0r0,-357r79,0r0,291r174,0r0,66r-253,0","w":296,"k":{"T":56,"V":46,"W":28,"y":18,"\u00ff":18,"Y":56,"\u0178":56,"\u2019":37}},"M":{"d":"34,0r0,-357r111,0r83,245r2,0r78,-245r111,0r0,357r-73,0r0,-253r-2,0r-87,253r-61,0r-88,-250r0,250r-74,0","w":453},"N":{"d":"34,0r0,-357r78,0r150,239r0,-239r74,0r0,357r-78,0r-150,-239r0,239r-74,0","w":370},"O":{"d":"19,-177v0,-106,65,-189,175,-189v110,0,176,83,176,189v0,103,-66,185,-176,185v-110,0,-175,-82,-175,-185xm98,-177v0,60,26,119,96,119v70,0,98,-59,98,-119v0,-62,-28,-123,-98,-123v-70,0,-96,61,-96,123","w":389},"P":{"d":"34,0r0,-357r162,0v89,0,123,57,123,115v0,58,-34,114,-123,114r-83,0r0,128r-79,0xm113,-296r0,107v61,-3,130,16,130,-53v0,-69,-69,-51,-130,-54","w":333,"k":{"A":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,",":64,".":64}},"Q":{"d":"368,-5r-36,39r-51,-46v-24,14,-53,20,-87,20v-110,0,-175,-82,-175,-185v0,-106,65,-189,175,-189v165,0,226,212,130,320xm192,-93r37,-39r41,37v43,-64,26,-205,-76,-205v-70,0,-96,61,-96,123v0,71,47,138,128,115","w":389},"R":{"d":"264,0v-20,-49,5,-140,-72,-140r-79,0r0,140r-79,0r0,-357r193,0v112,-6,144,152,48,188v69,22,40,108,67,169r-78,0xm113,-296r0,100v60,-3,140,19,140,-50v0,-66,-80,-48,-140,-50","w":361,"k":{"T":9,"V":-3,"W":-3,"Y":18,"\u0178":18}},"S":{"d":"12,-118r76,0v0,48,37,66,79,66v28,0,69,-9,69,-45v0,-38,-54,-45,-106,-59v-53,-14,-106,-35,-106,-102v0,-146,279,-146,276,8r-76,0v-2,-43,-32,-54,-70,-54v-25,0,-54,10,-54,40v0,28,16,31,106,54v26,6,106,23,106,104v0,66,-51,114,-148,114v-79,0,-153,-38,-152,-126","w":324},"T":{"d":"114,0r0,-291r-108,0r0,-66r293,0r0,66r-107,0r0,291r-78,0","w":305,"k":{"\u00fc":46,"\u00e8":56,"\u00eb":56,"\u00ea":56,"\u00e0":56,"\u00e4":56,"\u00e2":56,"w":56,"y":46,"\u00ff":46,"A":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,",":56,".":56,"c":56,"\u00e7":56,"e":56,"\u00e9":56,"o":56,"\u0153":56,"\u00f4":56,"-":64,"a":56,"r":46,"s":56,"u":46,"\u00fb":46,"\u00f9":46,":":44,";":44}},"U":{"d":"338,-357r0,222v0,96,-57,143,-153,143v-96,0,-152,-46,-152,-143r0,-222r79,0r0,222v0,39,9,77,73,77v56,0,74,-24,74,-77r0,-222r79,0","w":370},"V":{"d":"319,-357r-119,357r-88,0r-116,-357r81,0r79,251r2,0r80,-251r81,0","w":315,"k":{"\u00f4":28,"\u00ee":9,"\u00e8":28,"\u00eb":28,"\u00ea":28,"\u00e0":28,"\u00e4":28,"\u00e2":28,"y":9,"\u00ff":9,"A":23,"\u00c2":23,"\u00c4":23,"\u00c0":23,",":64,".":64,"e":28,"\u00e9":28,"o":28,"\u0153":28,"-":28,"a":28,"r":18,"u":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,":":25,";":25,"i":9,"\u00ef":9}},"W":{"d":"470,-357r-96,357r-78,0r-61,-243r-59,243r-80,0r-94,-357r78,0r56,243r2,0r62,-243r73,0r62,246r59,-246r76,0","w":472,"k":{"\u00fc":9,"\u00ea":18,"\u00e4":18,"A":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,",":37,".":37,"e":18,"\u00e9":18,"\u00eb":18,"\u00e8":18,"o":18,"\u0153":18,"\u00f4":18,"a":18,"\u00e2":18,"\u00e0":18,"r":9,"u":9,"\u00fb":9,"\u00f9":9,":":9,";":9}},"X":{"d":"-3,0r125,-187r-115,-170r91,0r70,114r72,-114r86,0r-114,171r124,186r-93,0r-78,-124r-79,124r-89,0","w":333},"Y":{"d":"127,0r0,-139r-131,-218r88,0r84,141r82,-141r88,0r-132,220r0,137r-79,0","w":333,"k":{"\u00fc":37,"v":28,"A":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,",":56,".":56,"e":46,"\u00e9":46,"\u00ea":46,"\u00eb":46,"\u00e8":46,"o":46,"\u0153":46,"\u00f4":46,"q":46,"-":56,"a":46,"\u00e2":46,"\u00e4":46,"\u00e0":46,"u":37,"\u00fb":37,"\u00f9":37,":":40,";":34,"i":6,"\u00ee":6,"\u00ef":6,"p":37}},"Z":{"d":"12,0r0,-62r191,-229r-177,0r0,-66r282,0r0,62r-192,229r196,0r0,66r-300,0","w":324},"[":{"d":"34,91r0,-457r132,0r0,56r-61,0r0,345r61,0r0,56r-132,0","w":166},"\\":{"d":"52,-366r139,374r-57,0r-140,-374r58,0","w":185},"]":{"d":"132,-366r0,457r-132,0r0,-56r62,0r0,-345r-62,0r0,-56r132,0","w":166},"^":{"d":"30,-158r86,-192r68,0r86,192r-59,0r-61,-137r-61,137r-59,0","w":300},"_":{"d":"0,62r0,-24r250,0r0,24r-250,0","w":250},"\u2018":{"d":"105,-274r0,78r-71,0r0,-77v-2,-44,29,-78,71,-84r0,33v-26,8,-33,26,-33,50r33,0","w":139,"k":{"\u2018":32}},"a":{"d":"188,-126v-27,20,-102,2,-101,52v0,26,20,34,43,34v69,0,57,-43,58,-86xm95,-179r-71,0v4,-66,64,-87,122,-87v52,0,113,12,113,74v0,61,-8,147,9,192r-72,0v-2,-8,-5,-17,-5,-25v-50,52,-175,45,-175,-45v0,-58,44,-73,88,-79v44,-6,84,-5,84,-34v0,-30,-21,-35,-46,-35v-27,0,-45,11,-47,39","w":287},"b":{"d":"27,0r0,-357r71,0r1,130v66,-77,189,-40,189,97v0,95,-56,137,-108,137v-40,0,-66,-15,-86,-40r0,33r-67,0xm216,-129v0,-44,-18,-83,-60,-83v-42,0,-60,39,-60,83v0,43,18,83,60,83v42,0,60,-40,60,-83","w":305},"c":{"d":"272,-168r-69,0v-4,-29,-23,-44,-53,-44v-46,0,-60,46,-60,84v0,37,15,82,59,82v33,0,53,-21,57,-53r68,0v-9,68,-56,106,-124,106v-78,0,-131,-55,-131,-133v0,-80,48,-140,132,-140v61,0,117,32,121,98","w":287},"d":{"d":"212,0v-2,-10,3,-27,-2,-33v-16,28,-45,40,-78,40v-78,0,-116,-67,-116,-139v0,-70,38,-134,114,-134v31,-1,60,15,78,39r0,-130r71,0r0,357r-67,0xm210,-130v0,-42,-14,-82,-60,-82v-46,0,-63,40,-63,82v0,40,19,84,63,84v47,0,60,-42,60,-84","w":305},"e":{"d":"272,-112r-186,0v2,45,23,66,63,66v28,0,52,-18,56,-34r63,0v-20,61,-64,87,-122,87v-82,0,-132,-56,-132,-136v0,-78,54,-137,132,-137v88,0,131,74,126,154xm86,-157r115,0v-6,-36,-23,-55,-57,-55v-45,0,-57,35,-58,55","w":287},"f":{"d":"42,0r0,-211r-42,0r0,-47r42,0v-9,-75,43,-109,124,-97r0,53v-33,-7,-60,0,-52,44r48,0r0,47r-48,0r0,211r-72,0","w":166,"k":{"\u2019":-9,"f":9}},"g":{"d":"276,-258r0,242v0,42,-15,114,-134,114v-51,0,-110,-24,-114,-83r70,0v6,26,28,35,53,35v52,1,63,-47,56,-98v-16,27,-46,40,-77,40v-78,0,-111,-59,-111,-130v0,-67,39,-128,111,-128v35,-1,59,14,78,42r0,-34r68,0xm148,-61v40,0,60,-34,60,-71v0,-42,-14,-80,-60,-80v-40,0,-58,36,-58,74v0,37,14,77,58,77","w":305},"h":{"d":"27,0r0,-357r71,0v2,44,-4,96,2,135v18,-29,49,-44,75,-44v136,-4,85,150,95,266r-72,0r0,-146v0,-42,-12,-64,-45,-64v-81,0,-49,133,-55,210r-71,0","w":296},"i":{"d":"29,0r0,-258r71,0r0,258r-71,0xm100,-357r0,59r-71,0r0,-59r71,0","w":129},"j":{"d":"-10,89r0,-59v18,4,44,6,44,-20r0,-268r70,0r0,271v7,61,-41,85,-114,76xm104,-357r0,59r-70,0r0,-59r70,0","w":139},"k":{"d":"34,0r0,-357r70,0r0,191r90,-92r84,0r-98,94r109,164r-86,0r-71,-116r-28,27r0,89r-70,0","w":287},"l":{"d":"29,0r0,-357r71,0r0,357r-71,0","w":129},"m":{"d":"29,0r0,-258r67,0v1,11,-2,25,1,34v31,-53,127,-60,155,2v36,-66,172,-62,172,49r0,173r-71,0r0,-146v0,-34,-3,-64,-43,-64v-40,0,-48,34,-48,66r0,144r-71,0r0,-145v0,-30,2,-65,-43,-65v-14,0,-48,10,-48,60r0,150r-71,0","w":453},"n":{"d":"27,0r0,-258r67,0v2,11,-3,29,2,36v18,-29,49,-44,79,-44v136,-4,85,150,95,266r-72,0r0,-146v0,-42,-12,-64,-45,-64v-81,0,-49,133,-55,210r-71,0","w":296},"o":{"d":"19,-129v0,-82,52,-137,133,-137v82,0,134,55,134,137v0,82,-52,136,-134,136v-81,0,-133,-54,-133,-136xm90,-129v0,41,14,83,62,83v88,0,87,-166,0,-166v-48,0,-62,41,-62,83","w":305},"p":{"d":"27,91r0,-349r67,0v2,10,-3,26,2,32v17,-28,44,-40,76,-40v81,0,118,66,118,140v0,69,-38,133,-114,133v-32,1,-59,-15,-78,-39r0,123r-71,0xm158,-46v46,0,61,-40,61,-82v0,-41,-16,-84,-62,-84v-46,0,-61,42,-61,84v0,42,16,82,62,82","w":305},"q":{"d":"279,-258r0,349r-71,0r-1,-123v-16,28,-50,39,-81,39v-48,0,-110,-35,-110,-135v0,-71,38,-138,116,-138v34,0,61,15,80,40r0,-32r67,0xm87,-129v0,42,15,83,61,83v86,1,83,-166,2,-166v-46,0,-63,41,-63,83","w":305},"r":{"d":"27,0r0,-258r67,0v2,15,-4,37,2,48v16,-36,56,-64,98,-53r0,66v-61,-15,-96,25,-96,81r0,116r-71,0","w":194,"k":{",":46,".":46,"c":9,"\u00e7":9,"d":9,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"n":-9,"o":9,"\u0153":9,"\u00f4":9,"q":9,"-":28}},"s":{"d":"14,-84r68,0v0,31,26,44,54,44v20,0,47,-9,47,-34v0,-22,-30,-29,-81,-40v-41,-9,-82,-22,-82,-68v0,-66,57,-84,113,-84v56,0,108,19,114,83r-67,0v-2,-28,-23,-35,-49,-35v-16,0,-39,3,-39,24v0,26,40,28,80,38v42,10,82,25,82,73v0,68,-59,90,-118,90v-60,0,-119,-23,-122,-91","w":268},"t":{"d":"117,-336r0,78r52,0r0,47r-52,0r0,128v-5,33,25,32,52,28r0,55v-56,6,-124,9,-123,-58r0,-153r-43,0r0,-47r43,0r0,-78r71,0","w":176},"u":{"d":"270,-258r0,258r-68,0v-2,-11,3,-29,-2,-36v-18,29,-48,43,-78,43v-135,4,-85,-149,-95,-265r71,0r0,146v0,42,13,63,46,63v81,0,47,-133,54,-209r72,0","w":296},"v":{"d":"258,-258r-88,258r-79,0r-89,-258r75,0r55,176r55,-176r71,0","w":260,"k":{",":28,".":28}},"w":{"d":"404,-258r-82,258r-72,0r-46,-174r-2,0r-44,174r-73,0r-82,-258r75,0r48,175r44,-175r68,0r44,174r2,0r47,-174r73,0","w":407,"k":{",":28,".":28}},"x":{"d":"0,0r93,-136r-85,-122r81,0r45,67r46,-67r78,0r-85,120r95,138r-80,0r-54,-82r-54,82r-80,0","w":268},"y":{"d":"262,-258r-108,290v-17,56,-66,65,-132,56r0,-58v14,1,28,2,42,2v24,0,32,-28,24,-48r-91,-242r76,0r59,176r57,-176r73,0","w":259,"k":{",":28,".":28}},"z":{"d":"11,0r0,-54r135,-151r-125,0r0,-53r218,0r0,53r-135,151r144,0r0,54r-237,0","w":259},"{":{"d":"166,-366r0,56r-26,0v-48,6,-28,69,-28,113v0,52,-37,53,-49,61v15,2,49,12,49,54v0,53,-26,128,54,117r0,56v-68,2,-124,7,-124,-67r0,-98v0,-30,-30,-42,-46,-42r0,-43v16,0,46,-11,46,-45r0,-94v8,-73,56,-70,124,-68","w":166},"|":{"d":"29,107r0,-500r53,0r0,500r-53,0","w":111},"}":{"d":"0,91r0,-56r27,0v48,-7,27,-73,27,-117v0,-45,38,-48,50,-56v-15,-2,-50,-10,-50,-59v0,-52,25,-125,-54,-113r0,-56v68,-2,125,-7,125,68r0,94v0,34,30,45,46,45r0,43v-16,0,-46,12,-46,42r0,98v-8,73,-57,69,-125,67","w":166},"~":{"d":"96,-170v33,-1,77,34,106,34v20,0,32,-18,44,-36r20,46v-15,21,-31,44,-62,44v-40,0,-64,-35,-108,-34v-22,0,-34,18,-42,36r-20,-47v11,-21,28,-43,62,-43","w":300},"'":{"d":"43,-196r0,-161r53,0r0,161r-53,0","w":139},"\u201c":{"d":"204,-274r0,78r-70,0r0,-77v-2,-44,28,-78,70,-84r0,33v-26,8,-32,26,-32,50r32,0xm98,-274r0,78r-71,0r0,-77v-2,-44,29,-78,71,-84r0,33v-26,8,-33,26,-33,50r33,0","w":231},"\u00ab":{"d":"201,-40r-79,-62r0,-68r79,-62r0,60r-45,36r45,36r0,60xm100,-40r-79,-62r0,-68r79,-62r0,60r-46,36r46,36r0,60","w":222},"\u2039":{"d":"100,-40r-79,-62r0,-68r79,-62r0,60r-46,36r46,36r0,60","w":120},"\u203a":{"d":"21,-232r79,62r0,68r-79,62r0,-60r45,-36r-45,-36r0,-60","w":120},"\u2013":{"d":"0,-106r0,-61r250,0r0,61r-250,0","w":250},"\u201d":{"d":"134,-280r0,-77r70,0r0,77v2,44,-28,78,-70,84r0,-34v26,-8,32,-26,32,-50r-32,0xm27,-280r0,-77r71,0r0,77v2,44,-29,78,-71,84r0,-34v26,-8,33,-26,33,-50r-33,0","w":231},"\u00bb":{"d":"122,-232r79,62r0,68r-79,62r0,-60r46,-36r-46,-36r0,-60xm21,-232r79,62r0,68r-79,62r0,-60r45,-36r-45,-36r0,-60","w":222},"\u2026":{"d":"44,0r0,-77r78,0r0,77r-78,0xm210,0r0,-77r79,0r0,77r-79,0xm377,0r0,-77r79,0r0,77r-79,0","w":500},"`":{"d":"53,-290r-77,-72r78,0r48,72r-49,0","w":129},"\u2014":{"d":"65,-106r0,-61r370,0r0,61r-370,0","w":500},"\u0152":{"d":"272,0v-1,-8,2,-21,-1,-27v-21,23,-55,35,-86,35v-106,0,-166,-85,-166,-184v0,-99,61,-190,167,-190v32,-1,64,11,86,34r0,-25r250,0r0,66r-177,0r0,77r162,0r0,60r-162,0r0,88r181,0r0,66r-254,0xm269,-139r0,-85v0,-45,-33,-76,-77,-76v-70,0,-94,62,-94,122v0,58,25,120,92,120v48,0,79,-33,79,-81","w":546},"\u0153":{"d":"264,-157r114,0v-2,-33,-20,-55,-58,-55v-36,0,-54,25,-56,55xm145,-46v48,0,57,-46,57,-84v0,-34,-8,-82,-56,-82v-44,0,-56,44,-56,84v0,36,13,82,55,82xm448,-112r-184,0v-10,66,95,93,114,30r68,0v-20,93,-157,122,-214,45v-18,32,-58,44,-92,44v-80,0,-121,-63,-121,-137v0,-76,50,-136,127,-136v34,0,71,12,89,42v18,-26,56,-42,87,-42v92,0,126,72,126,154","w":463},"\u2122":{"d":"464,-357r0,206r-48,0r-1,-146r-53,146r-34,0r-54,-146r0,146r-48,0r0,-206r68,0r51,135r51,-135r68,0xm199,-357r0,40r-59,0r0,166r-50,0r0,-166r-59,0r0,-40r168,0","w":500},"\u00b0":{"d":"26,-283v0,-41,33,-74,74,-74v41,0,74,33,74,74v0,41,-33,74,-74,74v-41,0,-74,-33,-74,-74xm58,-283v0,24,20,44,42,44v22,0,42,-20,42,-44v0,-24,-20,-44,-42,-44v-22,0,-42,20,-42,44","w":200},"\u00d7":{"d":"70,-8r-38,-38r80,-80r-79,-80r38,-38r79,80r80,-80r38,38r-80,80r80,80r-38,38r-80,-81","w":300},"\u00c2":{"d":"-4,0r136,-357r80,0r134,357r-82,0r-26,-80r-134,0r-28,80r-80,0xm172,-269v-18,41,-31,88,-48,131r93,0xm84,-389r55,-71r65,0r55,71r-59,0r-30,-41r-32,41r-54,0","w":342},"\u00c4":{"d":"-4,0r136,-357r80,0r134,357r-82,0r-26,-80r-134,0r-28,80r-80,0xm172,-269v-18,41,-31,88,-48,131r93,0xm189,-397r0,-59r67,0r0,59r-67,0xm86,-397r0,-59r68,0r0,59r-68,0","w":342},"\u00c0":{"d":"-4,0r136,-357r80,0r134,357r-82,0r-26,-80r-134,0r-28,80r-80,0xm172,-269v-18,41,-31,88,-48,131r93,0xm160,-389r-78,-71r79,0r48,71r-49,0","w":342},"\u00c7":{"d":"348,-237r-76,0v-5,-36,-39,-63,-78,-63v-70,0,-96,61,-96,123v0,60,26,119,96,119v48,0,76,-33,82,-80r76,0v-8,88,-69,145,-156,146v-3,6,-12,14,-12,18v26,-7,63,4,63,33v0,65,-84,53,-121,39r11,-24v14,6,61,21,62,-8v0,-20,-26,-17,-40,-12r-11,-12r24,-35v-97,-10,-153,-88,-153,-184v0,-106,65,-189,175,-189v78,0,144,47,154,129","w":370},"\u00c9":{"d":"34,0r0,-357r268,0r0,66r-189,0r0,77r173,0r0,60r-173,0r0,88r193,0r0,66r-272,0xm251,-460r-77,71r-50,0r48,-71r79,0","w":324},"\u00ca":{"d":"34,0r0,-357r268,0r0,66r-189,0r0,77r173,0r0,60r-173,0r0,88r193,0r0,66r-272,0xm74,-389r56,-71r65,0r55,71r-58,0r-32,-41r-32,41r-54,0","w":324},"\u00cb":{"d":"34,0r0,-357r268,0r0,66r-189,0r0,77r173,0r0,60r-173,0r0,88r193,0r0,66r-272,0xm180,-397r0,-59r68,0r0,59r-68,0xm77,-397r0,-59r67,0r0,59r-67,0","w":324},"\u00c8":{"d":"34,0r0,-357r268,0r0,66r-189,0r0,77r173,0r0,60r-173,0r0,88r193,0r0,66r-272,0xm150,-389r-76,-71r78,0r48,71r-50,0","w":324},"\u00ce":{"d":"34,0r0,-357r79,0r0,357r-79,0xm-14,-389r56,-71r64,0r56,71r-59,0r-31,-41r-32,41r-54,0","w":147},"\u00cf":{"d":"34,0r0,-357r79,0r0,357r-79,0xm92,-397r0,-59r67,0r0,59r-67,0xm-12,-397r0,-59r68,0r0,59r-68,0","w":147},"\u00d4":{"d":"19,-177v0,-106,65,-189,175,-189v110,0,176,83,176,189v0,103,-66,185,-176,185v-110,0,-175,-82,-175,-185xm98,-177v0,60,26,119,96,119v70,0,98,-59,98,-119v0,-62,-28,-123,-98,-123v-70,0,-96,61,-96,123xm107,-389r55,-71r66,0r54,71r-58,0r-31,-41r-32,41r-54,0","w":389},"\u00db":{"d":"338,-357r0,222v0,96,-57,143,-153,143v-96,0,-152,-46,-152,-143r0,-222r79,0r0,222v0,39,9,77,73,77v56,0,74,-24,74,-77r0,-222r79,0xm98,-389r55,-71r65,0r55,71r-59,0r-30,-41r-32,41r-54,0","w":370},"\u00dc":{"d":"338,-357r0,222v0,96,-57,143,-153,143v-96,0,-152,-46,-152,-143r0,-222r79,0r0,222v0,39,9,77,73,77v56,0,74,-24,74,-77r0,-222r79,0xm203,-397r0,-59r67,0r0,59r-67,0xm100,-397r0,-59r68,0r0,59r-68,0","w":370},"\u00d9":{"d":"338,-357r0,222v0,96,-57,143,-153,143v-96,0,-152,-46,-152,-143r0,-222r79,0r0,222v0,39,9,77,73,77v56,0,74,-24,74,-77r0,-222r79,0xm174,-389r-78,-71r79,0r48,71r-49,0","w":370},"\u0178":{"d":"127,0r0,-139r-131,-218r88,0r84,141r82,-141r88,0r-132,220r0,137r-79,0xm184,-397r0,-59r68,0r0,59r-68,0xm82,-397r0,-59r67,0r0,59r-67,0","w":333,"k":{"v":28,"A":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,",":56,".":56,"e":46,"\u00e9":46,"\u00ea":46,"\u00eb":46,"\u00e8":46,"o":46,"\u0153":46,"\u00f4":46,"q":46,"-":56,"a":46,"\u00e2":46,"\u00e4":46,"\u00e0":46,"u":37,"\u00fb":37,"\u00fc":37,"\u00f9":37,":":40,";":34,"i":6,"\u00ee":6,"\u00ef":6,"p":37}},"\u00e2":{"d":"188,-126v-27,20,-102,2,-101,52v0,26,20,34,43,34v69,0,57,-43,58,-86xm95,-179r-71,0v4,-66,64,-87,122,-87v52,0,113,12,113,74v0,61,-8,147,9,192r-72,0v-2,-8,-5,-17,-5,-25v-50,52,-175,45,-175,-45v0,-58,44,-73,88,-79v44,-6,84,-5,84,-34v0,-30,-21,-35,-46,-35v-27,0,-45,11,-47,39xm56,-290r56,-72r64,0r56,72r-59,0r-31,-41r-32,41r-54,0","w":287},"\u00e4":{"d":"188,-126v-27,20,-102,2,-101,52v0,26,20,34,43,34v69,0,57,-43,58,-86xm95,-179r-71,0v4,-66,64,-87,122,-87v52,0,113,12,113,74v0,61,-8,147,9,192r-72,0v-2,-8,-5,-17,-5,-25v-50,52,-175,45,-175,-45v0,-58,44,-73,88,-79v44,-6,84,-5,84,-34v0,-30,-21,-35,-46,-35v-27,0,-45,11,-47,39xm162,-298r0,-59r67,0r0,59r-67,0xm58,-298r0,-59r68,0r0,59r-68,0","w":287},"\u00e0":{"d":"188,-126v-27,20,-102,2,-101,52v0,26,20,34,43,34v69,0,57,-43,58,-86xm95,-179r-71,0v4,-66,64,-87,122,-87v52,0,113,12,113,74v0,61,-8,147,9,192r-72,0v-2,-8,-5,-17,-5,-25v-50,52,-175,45,-175,-45v0,-58,44,-73,88,-79v44,-6,84,-5,84,-34v0,-30,-21,-35,-46,-35v-27,0,-45,11,-47,39xm132,-290r-77,-72r79,0r48,72r-50,0","w":287},"\u00e7":{"d":"272,-168r-69,0v-4,-29,-23,-44,-53,-44v-46,0,-60,46,-60,84v0,37,15,82,59,82v33,0,53,-21,57,-53r68,0v-8,66,-53,103,-118,105r-14,20v27,-7,64,3,64,33v0,65,-84,53,-121,39r11,-24v14,6,61,21,62,-8v0,-20,-26,-17,-40,-12r-11,-12r25,-36v-68,-7,-113,-60,-113,-132v0,-80,48,-140,132,-140v61,0,117,32,121,98","w":287},"\u00e9":{"d":"272,-112r-186,0v2,45,23,66,63,66v28,0,52,-18,56,-34r63,0v-20,61,-64,87,-122,87v-82,0,-132,-56,-132,-136v0,-78,54,-137,132,-137v88,0,131,74,126,154xm86,-157r115,0v-6,-36,-23,-55,-57,-55v-45,0,-57,35,-58,55xm232,-362r-76,72r-50,0r48,-72r78,0","w":287},"\u00ea":{"d":"272,-112r-186,0v2,45,23,66,63,66v28,0,52,-18,56,-34r63,0v-20,61,-64,87,-122,87v-82,0,-132,-56,-132,-136v0,-78,54,-137,132,-137v88,0,131,74,126,154xm86,-157r115,0v-6,-36,-23,-55,-57,-55v-45,0,-57,35,-58,55xm56,-290r56,-72r64,0r56,72r-59,0r-31,-41r-32,41r-54,0","w":287},"\u00eb":{"d":"272,-112r-186,0v2,45,23,66,63,66v28,0,52,-18,56,-34r63,0v-20,61,-64,87,-122,87v-82,0,-132,-56,-132,-136v0,-78,54,-137,132,-137v88,0,131,74,126,154xm86,-157r115,0v-6,-36,-23,-55,-57,-55v-45,0,-57,35,-58,55xm162,-298r0,-59r67,0r0,59r-67,0xm58,-298r0,-59r68,0r0,59r-68,0","w":287},"\u00e8":{"d":"272,-112r-186,0v2,45,23,66,63,66v28,0,52,-18,56,-34r63,0v-20,61,-64,87,-122,87v-82,0,-132,-56,-132,-136v0,-78,54,-137,132,-137v88,0,131,74,126,154xm86,-157r115,0v-6,-36,-23,-55,-57,-55v-45,0,-57,35,-58,55xm132,-290r-77,-72r79,0r48,72r-50,0","w":287},"\u00ee":{"d":"29,0r0,-258r71,0r0,258r-71,0xm-23,-290r55,-72r66,0r54,72r-58,0r-31,-41r-32,41r-54,0","w":129},"\u00ef":{"d":"29,0r0,-258r71,0r0,258r-71,0xm82,-298r0,-59r68,0r0,59r-68,0xm-20,-298r0,-59r67,0r0,59r-67,0","w":129},"\u00f4":{"d":"19,-129v0,-82,52,-137,133,-137v82,0,134,55,134,137v0,82,-52,136,-134,136v-81,0,-133,-54,-133,-136xm90,-129v0,41,14,83,62,83v88,0,87,-166,0,-166v-48,0,-62,41,-62,83xm65,-290r55,-72r66,0r54,72r-58,0r-31,-41r-32,41r-54,0","w":305},"\u00fb":{"d":"270,-258r0,258r-68,0v-2,-11,3,-29,-2,-36v-18,29,-48,43,-78,43v-135,4,-85,-149,-95,-265r71,0r0,146v0,42,13,63,46,63v81,0,47,-133,54,-209r72,0xm60,-290r56,-72r65,0r55,72r-58,0r-32,-41r-32,41r-54,0","w":296},"\u00fc":{"d":"270,-258r0,258r-68,0v-2,-11,3,-29,-2,-36v-18,29,-48,43,-78,43v-135,4,-85,-149,-95,-265r71,0r0,146v0,42,13,63,46,63v81,0,47,-133,54,-209r72,0xm166,-298r0,-59r68,0r0,59r-68,0xm63,-298r0,-59r67,0r0,59r-67,0","w":296},"\u00f9":{"d":"270,-258r0,258r-68,0v-2,-11,3,-29,-2,-36v-18,29,-48,43,-78,43v-135,4,-85,-149,-95,-265r71,0r0,146v0,42,13,63,46,63v81,0,47,-133,54,-209r72,0xm136,-290r-76,-72r78,0r48,72r-50,0","w":296},"\u00ff":{"d":"262,-258r-108,290v-17,56,-66,65,-132,56r0,-58v14,1,28,2,42,2v24,0,32,-28,24,-48r-91,-242r76,0r59,176r57,-176r73,0xm148,-298r0,-59r67,0r0,59r-67,0xm44,-298r0,-59r68,0r0,59r-68,0","w":259,"k":{",":28,".":28}},"\u20ac":{"d":"48,-228v15,-108,133,-170,240,-108r-30,62v-60,-38,-119,-30,-136,46r122,0r-16,36r-112,0r0,22r106,0r-15,36r-87,0v14,90,91,97,151,47r-1,75v-23,14,-48,20,-76,20v-87,1,-136,-61,-148,-142r-38,0r16,-36r20,0r0,-22r-36,0r15,-36r25,0"},"\u00a0":{"w":139}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1988, 1990, 1993, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * HelveticaNeueLTStd-It
 * 
 * Designer:
 * Linotype Staff
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":278,"face":{"font-family":"Helvetica Neue LT Std","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"500","panose-1":"2 11 6 4 2 2 2 9 2 4","ascent":"357","descent":"-143","x-height":"6","bbox":"-64 -449 553 107","underline-thickness":"25","underline-position":"-25","slope":"-12","stemh":"38","stemv":"42","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":139},"!":{"d":"0,0r12,-56r56,0r-12,56r-56,0xm126,-357v-18,93,-43,179,-68,265r-24,0r22,-154r24,-111r46,0","w":129},"\"":{"d":"73,-228r0,-129r34,0r0,129r-34,0xm143,-228r0,-129r34,0r0,129r-34,0","w":213},"#":{"d":"51,0r15,-103r-49,0r5,-34r48,0r10,-75r-50,0r4,-34r52,0r14,-102r34,0r-14,102r61,0r15,-102r34,0r-14,102r45,0r-5,34r-45,0r-11,75r47,0r-5,34r-46,0r-14,103r-35,0r15,-103r-62,0r-14,103r-35,0xm176,-212r-60,0r-11,75r61,0"},"$":{"d":"130,-209r24,-119v-30,0,-76,15,-76,64v0,30,26,46,52,55xm146,-161r-26,132v26,6,93,-12,93,-69v0,-47,-32,-51,-67,-63xm77,48r9,-42v-63,-10,-94,-55,-91,-123r45,0v-2,48,15,77,54,85r27,-135v-48,-15,-89,-35,-89,-93v0,-68,63,-112,129,-106r7,-31r26,0r-7,35v48,13,85,48,81,110r-45,0v2,-42,-15,-64,-43,-74r-25,124v54,14,103,41,103,99v0,80,-80,121,-146,111r-8,40r-27,0"},"%":{"d":"74,-229v0,30,10,47,39,47v44,0,58,-60,58,-102v0,-28,-12,-43,-37,-43v-44,0,-60,64,-60,98xm40,-227v0,-54,28,-127,92,-127v48,0,73,24,73,72v0,57,-27,128,-93,128v-44,0,-72,-28,-72,-73xm256,-66v0,-54,29,-128,93,-128v48,0,73,24,73,72v0,57,-28,128,-94,128v-44,0,-72,-27,-72,-72xm290,-68v0,30,11,46,40,46v44,0,58,-60,58,-102v0,-28,-11,-42,-36,-42v-44,0,-62,64,-62,98xm104,14r218,-376r32,0r-218,376r-32,0","w":463},"&":{"d":"192,-65r-64,-104v-34,17,-75,42,-75,85v0,68,103,63,139,19xm234,0r-22,-37v-54,65,-202,58,-202,-49v0,-60,53,-89,100,-113v-14,-22,-30,-47,-30,-79v0,-48,38,-79,90,-79v42,0,81,22,81,68v0,50,-48,79,-88,101r56,92v14,-19,28,-48,31,-72r42,0v-10,48,-28,75,-52,103r42,65r-48,0xm169,-320v-57,-1,-53,72,-23,103v25,-14,62,-34,62,-65v0,-22,-17,-38,-39,-38","w":315},"\u2019":{"d":"69,-302r12,-55r55,0v-13,56,-12,123,-82,129r4,-24v26,-4,33,-28,39,-50r-28,0","w":139,"k":{"\u2019":48,"s":28,"t":9}},"(":{"d":"86,99r-28,0v-24,-52,-40,-126,-40,-184v0,-114,54,-198,128,-281r36,0v-107,122,-156,283,-96,465","w":129},")":{"d":"-24,99r-34,0v109,-122,154,-283,95,-465r28,0v24,54,41,126,41,185v0,114,-56,198,-130,280","w":129},"*":{"d":"136,-357r-12,57r54,-6r3,24r-53,7r24,50r-24,11r-24,-51r-39,43r-19,-18r39,-42r-47,-24r12,-23r48,25r11,-53r27,0","w":176},"+":{"d":"167,-253r0,109r109,0r0,34r-109,0r0,110r-34,0r0,-110r-109,0r0,-34r109,0r0,-109r34,0","w":300},",":{"d":"8,0r12,-56r55,0v-13,56,-13,124,-83,130r5,-24v26,-4,33,-28,39,-50r-28,0","w":139},"-":{"d":"13,-119r8,-40r145,0r-8,40r-145,0","w":194},".":{"d":"8,0r12,-56r55,0r-12,56r-55,0","w":139},"\/":{"d":"-9,8r148,-374r37,0r-148,374r-37,0","w":166},"0":{"d":"12,-132v0,-80,45,-222,156,-222v62,0,95,39,95,134v0,65,-36,226,-153,226v-74,0,-98,-62,-98,-138xm58,-124v0,56,15,92,57,92v79,0,103,-144,103,-176v0,-40,7,-109,-54,-109v-77,0,-106,143,-106,193"},"1":{"d":"216,-354r-75,354r-45,0r58,-270v-32,8,-60,10,-92,10r7,-34v42,0,94,-20,115,-60r32,0"},"2":{"d":"261,-260v0,123,-171,131,-215,222r185,0r-8,38r-226,0v8,-108,103,-130,173,-182v26,-20,46,-41,46,-76v0,-37,-24,-59,-60,-59v-48,0,-75,39,-77,83r-45,0v8,-73,52,-120,128,-120v57,0,99,35,99,94"},"3":{"d":"107,-168r7,-34v45,2,98,-5,98,-66v0,-42,-31,-49,-60,-49v-40,0,-66,23,-72,72r-44,0v8,-58,43,-109,119,-109v62,0,103,28,103,88v0,42,-32,71,-64,81v34,15,46,42,46,73v0,49,-40,118,-128,118v-70,0,-114,-36,-112,-116r46,0v-2,38,11,78,67,78v48,0,82,-30,82,-78v0,-54,-45,-58,-88,-58"},"4":{"d":"47,-120r114,0r33,-161xm136,0r18,-83r-156,0r8,-42r210,-229r36,0r-48,234r46,0r-7,37r-47,0r-18,83r-42,0"},"5":{"d":"244,-126v0,72,-60,132,-134,132v-64,0,-106,-37,-106,-101r44,0v0,41,21,63,64,63v56,0,86,-41,86,-92v0,-79,-102,-94,-133,-38r-38,0r55,-186r180,0r-8,37r-146,0r-28,96v18,-7,41,-19,64,-19v64,0,100,48,100,108"},"6":{"d":"125,-32v91,0,110,-159,13,-158v-50,0,-78,39,-78,87v0,42,21,71,65,71xm14,-114v0,-115,46,-240,166,-240v58,0,91,35,92,92r-44,0v0,-36,-19,-55,-56,-55v-65,-1,-91,75,-102,125v53,-72,178,-27,178,68v0,74,-49,130,-127,130v-74,0,-107,-52,-107,-120"},"7":{"d":"288,-348r-6,35v-82,76,-152,208,-185,313r-49,0v36,-115,104,-221,188,-311r-185,0r9,-37r228,0"},"8":{"d":"97,-258v0,37,26,52,60,52v34,0,57,-23,57,-57v0,-36,-21,-54,-56,-54v-36,0,-61,23,-61,59xm124,-32v44,0,77,-27,77,-72v0,-38,-23,-64,-65,-64v-46,0,-80,25,-80,73v0,42,28,63,68,63xm52,-260v0,-62,50,-94,108,-94v52,0,100,32,100,88v1,40,-28,70,-64,80v34,14,50,48,50,84v0,66,-56,108,-118,108v-62,0,-117,-32,-117,-100v-1,-54,35,-88,85,-100v-25,-11,-44,-38,-44,-66"},"9":{"d":"137,-157v50,0,77,-40,77,-87v0,-44,-22,-73,-68,-73v-87,-1,-106,161,-9,160xm260,-236v0,111,-44,242,-161,242v-59,0,-98,-29,-97,-90r45,0v0,34,16,52,51,52v68,0,92,-70,108,-122r-2,0v-55,70,-177,25,-177,-70v0,-72,48,-130,123,-130v75,0,110,47,110,118"},":":{"d":"8,0r10,-56r57,0r-11,56r-56,0xm117,-258r-11,55r-56,0r11,-55r56,0","w":139},";":{"d":"8,0r12,-56r55,0v-13,56,-13,124,-83,130r5,-24v26,-4,33,-28,39,-50r-28,0xm117,-258r-12,55r-55,0r12,-55r55,0","w":139},"<":{"d":"277,-257r0,34r-213,97r213,96r0,34r-254,-115r0,-31","w":300},"=":{"d":"276,-194r0,34r-252,0r0,-34r252,0xm24,-59r0,-34r252,0r0,34r-252,0","w":300},">":{"d":"23,4r0,-34r213,-96r-213,-97r0,-34r254,115r0,31","w":300},"?":{"d":"86,-244r-43,0v4,-67,53,-117,121,-117v50,0,104,27,104,83v-1,108,-118,99,-128,186r-42,0v8,-52,35,-82,77,-109v24,-16,47,-38,47,-70v0,-36,-23,-53,-57,-53v-48,0,-75,36,-79,80xm72,0r12,-56r56,0r-12,56r-56,0"},"@":{"d":"210,-252v-47,0,-80,60,-80,104v0,28,18,48,43,48v44,0,77,-65,77,-106v0,-24,-19,-46,-40,-46xm309,-277r-42,142v-4,14,-11,41,7,41v30,0,68,-61,68,-115v0,-79,-65,-129,-135,-129v-86,0,-152,72,-152,160v0,89,71,159,155,159v48,0,96,-25,124,-61r31,0v-32,55,-93,88,-157,88v-106,0,-187,-82,-187,-188v0,-103,83,-186,185,-186v92,0,170,64,170,154v0,87,-69,146,-116,146v-20,0,-28,-16,-34,-33v-38,57,-134,33,-134,-45v0,-70,48,-142,118,-142v23,0,44,10,56,40r12,-31r31,0","w":400},"A":{"d":"206,-315r-96,167r122,0xm-28,0r216,-357r52,0r64,357r-49,0r-17,-108r-150,0r-62,108r-54,0","w":333},"B":{"d":"84,-164r-26,124r114,0v24,0,87,-5,87,-70v0,-81,-103,-47,-175,-54xm4,0r74,-357r144,0v127,-13,125,154,31,171r0,2v32,10,53,36,53,74v0,68,-56,110,-126,110r-176,0xm116,-317r-24,113v80,-1,190,16,182,-68v-6,-70,-94,-38,-158,-45","w":342},"C":{"d":"282,-120r48,0v-18,80,-70,128,-158,128v-98,0,-153,-58,-153,-156v0,-116,74,-218,196,-218v77,0,136,42,136,124r-47,0v0,-56,-37,-84,-89,-84v-100,0,-149,92,-149,178v0,69,34,116,106,116v58,0,94,-32,110,-88","w":361},"D":{"d":"4,0r75,-357r125,0v89,0,135,53,135,137v0,134,-81,220,-199,220r-136,0xm117,-317r-59,277r83,0v101,0,151,-90,151,-176v0,-52,-20,-101,-99,-101r-76,0","w":352},"E":{"d":"4,0r75,-357r246,0r-8,40r-199,0r-24,113r186,0r-8,40r-186,0r-26,124r201,0r-9,40r-248,0","w":305},"F":{"d":"4,0r74,-357r235,0r-9,40r-187,0r-23,113r164,0r-8,40r-165,0r-34,164r-47,0","w":287,"k":{"A":28,"\u00c2":28,"\u00c4":28,"\u00c0":28,",":64,".":64}},"G":{"d":"282,0r-4,-36v-27,30,-68,44,-106,44v-98,0,-153,-58,-153,-156v0,-116,74,-218,196,-218v79,0,143,38,143,120r-47,0v0,-54,-44,-80,-96,-80v-100,0,-149,92,-149,178v0,69,34,116,106,116v76,0,112,-47,129,-116r-114,0r8,-40r155,0r-38,188r-30,0","w":379},"H":{"d":"4,0r74,-357r48,0r-32,153r187,0r32,-153r47,0r-74,357r-48,0r34,-164r-186,0r-35,164r-47,0","w":361},"I":{"d":"4,0r74,-357r48,0r-75,357r-47,0","w":129},"J":{"d":"262,-357r-56,269v-13,62,-40,96,-112,96v-79,0,-112,-46,-94,-125r48,0v-13,43,-1,85,48,85v48,0,60,-41,68,-80r52,-245r46,0","w":259},"K":{"d":"4,0r75,-357r47,0r-36,177r202,-177r64,0r-172,147r114,210r-52,0r-98,-181r-72,61r-25,120r-47,0","w":333},"L":{"d":"4,0r74,-357r48,0r-66,317r188,0r-8,40r-236,0","k":{"T":50,"V":40,"W":18,"Y":37,"\u0178":37,"\u2019":76,"y":18,"\u00ff":18}},"M":{"d":"4,0r74,-357r66,0r49,307r177,-307r66,0r-76,357r-46,0r74,-312r-2,0r-182,312r-45,0r-47,-312r-63,312r-45,0","w":435},"N":{"d":"4,0r75,-357r51,0r128,295r60,-295r46,0r-76,357r-50,0r-128,-294r-60,294r-46,0","w":361},"O":{"d":"19,-148v0,-116,74,-218,196,-218v92,0,149,70,149,158v0,112,-73,216,-192,216v-98,0,-153,-58,-153,-156xm66,-148v0,69,34,116,106,116v94,0,144,-91,144,-176v0,-66,-35,-118,-101,-118v-100,0,-149,92,-149,178","w":379},"P":{"d":"4,0r74,-357r140,0v68,0,106,34,106,99v0,44,-31,112,-136,112r-106,0r-31,146r-47,0xm118,-317r-28,131r108,0v51,0,79,-30,79,-72v0,-83,-87,-54,-159,-59","w":324,"k":{"A":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,",":64,".":64}},"Q":{"d":"332,9r-28,28r-49,-48v-24,12,-52,19,-83,19v-98,0,-153,-58,-153,-156v0,-116,74,-218,196,-218v92,0,149,70,149,158v0,68,-28,135,-76,175xm190,-73r28,-29r39,39v80,-63,90,-263,-42,-263v-100,0,-149,92,-149,178v0,89,74,139,157,106","w":379},"R":{"d":"118,-317r-26,125r106,0v75,0,88,-45,88,-71v-3,-78,-97,-48,-168,-54xm4,0r75,-357v113,4,251,-28,255,91v1,49,-34,87,-80,97v66,20,15,114,36,169r-49,0v-4,-13,-6,-40,1,-76v15,-85,-34,-76,-54,-76r-105,0r-32,152r-47,0","w":342,"k":{"T":3,"V":-3,"W":-3}},"S":{"d":"307,-252r-47,0v2,-56,-33,-74,-82,-74v-35,0,-83,17,-83,59v0,53,63,58,106,71v44,13,86,32,86,96v0,74,-75,108,-139,108v-86,0,-146,-37,-140,-125r47,0v-3,64,37,85,95,85v44,0,90,-20,90,-68v0,-53,-67,-58,-112,-72v-42,-13,-80,-38,-80,-90v0,-69,66,-104,130,-104v70,0,131,34,129,114","w":324},"T":{"d":"326,-357r-8,40r-120,0r-68,317r-47,0r67,-317r-120,0r8,-40r288,0","w":287,"k":{"\u00fc":46,"\u00ee":10,"\u00e8":46,"\u00eb":46,"\u00ea":46,"\u00e0":46,"\u00e4":46,"\u00e2":46,"A":46,"\u00c2":46,"\u00c4":46,"\u00c0":46,",":56,".":56,"y":46,"\u00ff":46,"e":46,"\u00e9":46,"-":56,"a":46,"c":46,"\u00e7":46,"i":10,"\u00ef":10,"o":46,"\u0153":46,"\u00f4":46,"r":46,"s":46,"u":46,"\u00fb":46,"\u00f9":46,"w":46,":":56,";":56}},"U":{"d":"364,-357r-44,214v-10,97,-69,151,-158,151v-104,0,-150,-55,-129,-155r45,-210r47,0r-47,222v-16,69,15,103,84,103v78,0,96,-44,110,-111r44,-214r48,0","w":361},"V":{"d":"346,-357r-202,357r-54,0r-50,-357r48,0r36,311r2,0r169,-311r51,0","w":305,"k":{"\u00f4":18,"\u00ee":9,"\u00e8":18,"\u00eb":18,"\u00ea":18,"\u00e0":18,"\u00e4":18,"\u00e2":18,"A":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,",":64,".":64,"e":18,"\u00e9":18,"-":28,"a":18,"i":9,"\u00ef":9,"o":18,"\u0153":18,"r":9,"u":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,":":25,";":25}},"W":{"d":"492,-357r-164,357r-50,0r-22,-308r-2,0r-140,308r-52,0r-22,-357r47,0r13,301r138,-301r54,0r20,301r130,-301r50,0","w":463,"k":{"\u00fc":9,"\u00ea":9,"\u00e4":9,"A":10,"\u00c2":10,"\u00c4":10,"\u00c0":10,",":37,".":37,"e":9,"\u00e9":9,"\u00eb":9,"\u00e8":9,"-":9,"a":9,"\u00e2":9,"\u00e0":9,"o":9,"\u0153":9,"\u00f4":9,"r":9,"u":9,"\u00fb":9,"\u00f9":9,":":28,";":28}},"X":{"d":"-22,0r155,-186r-86,-171r51,0r66,141r114,-141r54,0r-147,177r91,180r-50,0r-72,-151r-122,151r-54,0","w":305},"Y":{"d":"96,0r31,-144r-94,-213r51,0r72,173r136,-173r55,0r-173,213r-31,144r-47,0","w":305,"k":{"\u00fc":18,"A":28,"\u00c2":28,"\u00c4":28,"\u00c0":28,",":64,".":64,"e":28,"\u00e9":28,"\u00ea":28,"\u00eb":28,"\u00e8":28,"v":9,"-":37,"a":28,"\u00e2":28,"\u00e4":28,"\u00e0":28,"i":6,"\u00ee":6,"\u00ef":6,"o":28,"\u0153":28,"\u00f4":28,"u":18,"\u00fb":18,"\u00f9":18,":":25,";":37,"p":18,"q":28}},"Z":{"d":"-19,0r9,-40r268,-277r-205,0r10,-40r261,0r-9,41r-270,276r228,0r-9,40r-283,0","w":305},"[":{"d":"-14,99r96,-465r94,0r-7,33r-54,0r-82,399r54,0r-7,33r-94,0","w":129},"\\":{"d":"28,-366r148,374r-37,0r-148,-374r37,0","w":166},"]":{"d":"126,-366r-96,465r-94,0r7,-33r54,0r82,-399r-54,0r7,-33r94,0","w":129},"^":{"d":"25,-132r109,-216r32,0r109,216r-35,0r-90,-180r-90,180r-35,0","w":300},"_":{"d":"0,62r0,-24r250,0r0,24r-250,0","w":250},"\u2018":{"d":"123,-284r-12,56r-55,0v13,-56,12,-123,82,-129r-4,24v-26,4,-33,27,-39,49r28,0","w":139,"k":{"\u2018":48}},"a":{"d":"179,-132v-38,25,-141,0,-141,64v0,56,101,40,118,2v14,-20,17,-42,23,-66xm69,-180r-43,0v8,-58,57,-84,112,-84v50,0,95,14,95,66v0,55,-27,99,-31,154v-1,20,14,18,26,12r-7,32v-26,14,-66,3,-59,-30r-2,-2v-31,52,-165,60,-165,-35v0,-75,74,-80,131,-85v45,-4,64,-7,64,-41v0,-28,-30,-34,-52,-34v-32,0,-64,13,-69,47","w":259},"b":{"d":"227,-153v0,-41,-19,-74,-59,-74v-74,0,-106,76,-106,131v0,40,29,64,71,64v62,0,94,-71,94,-121xm-2,0r75,-357r43,0r-27,131v19,-24,47,-38,79,-38v69,0,102,45,102,111v0,80,-49,159,-137,159v-49,1,-80,-30,-88,-54r-9,48r-38,0","w":296},"c":{"d":"250,-176r-42,0v0,-32,-21,-51,-54,-51v-66,0,-101,65,-101,121v0,40,16,74,64,74v36,0,63,-20,75,-52r43,0v-15,58,-58,90,-118,90v-70,0,-107,-42,-107,-112v0,-82,52,-158,144,-158v58,0,94,28,96,88","w":268},"d":{"d":"51,-100v0,42,21,68,67,68v64,0,100,-74,100,-128v0,-38,-22,-67,-64,-67v-68,0,-103,70,-103,127xm303,-357r-75,357r-40,0r8,-37v-57,83,-188,41,-188,-63v0,-78,54,-164,144,-164v34,0,68,15,82,45r27,-138r42,0","w":296},"e":{"d":"55,-154r150,0v3,-36,-14,-73,-61,-73v-50,0,-77,33,-89,73xm244,-116r-195,0v-22,96,117,111,140,35r43,0v-14,57,-62,87,-118,87v-86,0,-109,-59,-109,-104v0,-99,62,-166,133,-166v88,0,122,65,106,148","w":268},"f":{"d":"12,0r48,-221r-44,0r7,-37r44,0v14,-52,15,-103,83,-103v12,0,24,1,36,4r-7,36v-51,-15,-64,24,-70,63r49,0r-6,37r-50,0r-48,221r-42,0","w":148},"g":{"d":"53,-105v0,37,21,69,63,69v64,0,94,-72,94,-124v0,-40,-22,-67,-66,-67v-60,0,-91,74,-91,122xm276,-258r-46,220v-12,82,-53,143,-138,143v-52,0,-101,-22,-103,-80r43,0v2,34,32,43,64,43v65,0,83,-54,92,-106v-18,28,-48,40,-80,40v-64,0,-98,-45,-98,-107v0,-76,51,-159,135,-159v39,-1,74,22,83,53r8,-47r40,0","w":287},"h":{"d":"-2,0r75,-357r43,0r-30,137v35,-56,171,-69,164,22v-5,64,-27,136,-39,198r-43,0r34,-151v13,-38,5,-79,-40,-76v-104,7,-98,138,-122,227r-42,0"},"i":{"d":"-2,0r54,-258r42,0r-54,258r-42,0xm115,-357r-11,52r-43,0r11,-52r43,0","w":111},"j":{"d":"-60,96r8,-38v31,11,38,-1,47,-45r57,-271r42,0r-65,306v-8,42,-43,59,-89,48xm115,-357r-11,52r-43,0r11,-52r43,0","w":111},"k":{"d":"-2,0r75,-357r42,0r-45,210r2,1r130,-112r55,0r-113,95r64,163r-47,0r-51,-138r-50,46r-20,92r-42,0","w":240},"l":{"d":"-2,0r74,-357r43,0r-75,357r-42,0","w":111},"m":{"d":"-2,0r54,-258r40,0v-2,12,-11,29,-8,39v33,-48,134,-73,154,1v20,-28,55,-46,89,-46v36,0,72,16,72,58v0,74,-28,137,-40,206r-43,0r40,-192v-5,-55,-83,-33,-104,0v-33,50,-33,128,-52,192r-43,0r39,-193v-3,-56,-78,-29,-100,-1v-38,49,-36,129,-56,194r-42,0","w":426},"n":{"d":"-2,0r54,-258r41,0v-2,12,-8,28,-7,38v35,-56,171,-69,164,22v-5,64,-27,136,-39,198r-43,0r34,-151v13,-38,5,-79,-40,-76v-104,7,-98,138,-122,227r-42,0"},"o":{"d":"51,-102v0,42,25,70,71,70v62,0,96,-71,96,-122v0,-40,-22,-73,-68,-73v-65,0,-99,71,-99,125xm8,-102v0,-84,55,-162,145,-162v69,0,107,37,107,106v0,84,-52,164,-142,164v-68,0,-110,-46,-110,-108","w":287},"p":{"d":"228,-158v0,-42,-21,-69,-67,-69v-64,0,-101,75,-101,129v0,38,23,66,65,66v68,0,103,-69,103,-126xm-24,99r75,-357r40,0v-2,11,-9,26,-8,36v57,-82,187,-39,187,64v0,78,-54,164,-144,164v-33,1,-69,-14,-81,-46r-27,139r-42,0","w":296},"q":{"d":"280,-258r-75,357r-43,0r27,-132v-20,24,-49,39,-81,39v-68,0,-100,-48,-100,-112v0,-80,50,-158,136,-158v39,-1,69,12,85,46r9,-40r42,0xm51,-106v0,40,19,74,66,74v68,0,99,-77,99,-132v0,-39,-25,-63,-67,-63v-63,0,-98,67,-98,121","w":296},"r":{"d":"-2,0r54,-258r40,0v-3,18,-11,39,-12,55v23,-40,55,-65,109,-61r-10,45v-120,-10,-114,124,-139,219r-42,0","w":166,"k":{",":46,".":46,"y":-9,"\u00ff":-9,"e":-3,"\u00e9":-3,"\u00ea":-3,"\u00eb":-3,"\u00e8":-3,"m":-3,"n":-3,"v":-9,"z":-3,"-":28}},"s":{"d":"163,-71v0,-54,-141,-46,-137,-119v6,-97,195,-105,194,8r-42,0v2,-30,-24,-45,-54,-45v-26,0,-55,7,-55,33v0,53,137,46,137,120v0,58,-56,80,-106,80v-59,0,-104,-22,-104,-88r42,0v-2,38,30,50,66,50v28,0,59,-9,59,-39","w":240},"t":{"d":"126,-335r-16,77r52,0r-8,37r-52,0r-32,152v-9,34,22,42,49,30r-7,39v-48,11,-98,-2,-86,-60r34,-161r-44,0r8,-37r44,0r16,-77r42,0","w":157},"u":{"d":"260,-258r-54,258r-42,0r8,-39v-34,57,-169,71,-164,-21v4,-65,27,-136,38,-198r43,0r-33,150v-12,38,-6,79,39,76v104,-6,100,-137,123,-226r42,0"},"v":{"d":"247,-258r-143,258r-46,0r-37,-258r45,0r23,214r112,-214r46,0","w":240,"k":{",":46,".":46}},"w":{"d":"381,-258r-133,258r-46,0r-12,-201r-2,0r-92,201r-45,0r-31,-258r46,0r16,205r94,-205r48,0r13,205r98,-205r46,0","w":379,"k":{",":37,".":37}},"x":{"d":"-33,0r121,-137r-58,-121r50,0r38,94r78,-94r51,0r-111,124r66,134r-48,0r-48,-106r-88,106r-51,0","w":240},"y":{"d":"252,-258r-170,302v-22,42,-60,76,-114,54r8,-34v48,27,71,-34,90,-64r-45,-258r45,0r30,205r2,0r108,-205r46,0","w":240,"k":{",":46,".":46}},"z":{"d":"-26,0r6,-32r180,-189r-140,0r8,-37r196,0r-6,30r-182,190r155,0r-7,38r-210,0","w":222},"{":{"d":"198,-366r-7,30v-76,-12,-61,82,-77,135v-15,49,-46,61,-58,69v14,-3,36,31,30,66r-20,108v-4,28,17,29,42,27r-7,30v-50,7,-85,-10,-75,-65r20,-112v0,-23,-14,-38,-31,-38r7,-34v21,0,46,-23,54,-59r19,-91v16,-56,45,-72,103,-66","w":166},"|":{"d":"38,107r0,-500r34,0r0,500r-34,0","w":111},"}":{"d":"-46,99r7,-30v76,12,61,-82,77,-135v15,-49,46,-60,58,-68v-14,3,-37,-32,-30,-67r20,-107v4,-28,-16,-31,-42,-28r7,-30v50,-7,86,12,75,66v-6,37,-20,72,-20,112v0,24,14,38,31,38r-7,34v-21,0,-46,23,-54,58r-19,92v-16,56,-46,70,-103,65","w":166},"~":{"d":"97,-158v34,-1,78,36,107,36v20,0,32,-20,44,-38r18,26v-15,21,-32,42,-63,42v-41,0,-66,-36,-109,-36v-22,0,-34,20,-42,38r-18,-24v11,-21,29,-44,63,-44","w":300},"'":{"d":"71,-228r0,-129r34,0r0,129r-34,0","w":139},"\u201c":{"d":"203,-284r-12,56r-55,0v13,-56,12,-123,82,-129r-4,24v-26,4,-33,27,-39,49r28,0xm112,-284r-12,56r-56,0v13,-56,14,-123,84,-129r-6,24v-26,4,-32,27,-38,49r28,0","w":213},"\u00ab":{"d":"76,-57r-61,-68r11,-46r87,-50r-11,43r-60,34r44,44xm174,-57r-61,-68r11,-46r87,-50r-11,43r-60,34r44,44","w":231},"\u2039":{"d":"76,-57r-61,-68r11,-46r87,-50r-11,43r-60,34r44,44","w":129},"\u203a":{"d":"46,-221r62,68r-12,46r-86,50r10,-43r60,-34r-44,-44","w":129},"\u2013":{"d":"-12,-119r8,-40r250,0r-8,40r-250,0","w":250},"\u201d":{"d":"58,-302r12,-55r56,0v-13,56,-14,123,-84,129r6,-24v26,-4,32,-28,38,-50r-28,0xm149,-302r12,-55r55,0v-13,56,-12,123,-82,129r4,-24v26,-4,33,-28,39,-50r-28,0","w":213},"\u00bb":{"d":"50,-221r62,68r-12,46r-86,50r10,-43r60,-34r-44,-44xm148,-221r62,68r-12,46r-86,50r10,-43r60,-34r-44,-44","w":231},"\u2026":{"d":"20,0r12,-56r55,0r-12,56r-55,0xm186,0r12,-56r56,0r-12,56r-56,0xm352,0r12,-56r56,0r-12,56r-56,0","w":500},"`":{"d":"88,-366r34,72r-34,0r-50,-72r50,0","w":111},"\u2014":{"d":"54,-119r8,-40r370,0r-8,40r-370,0","w":500},"\u0152":{"d":"164,-32v56,0,95,-45,105,-96r28,-139v6,-29,-47,-59,-83,-59v-96,0,-146,94,-146,180v0,58,32,114,96,114xm553,-357r-8,40r-189,0r-24,113r173,0r-8,40r-173,0r-26,124r192,0r-8,40r-238,0r6,-28v-20,26,-56,36,-88,36v-94,0,-141,-70,-141,-158v0,-106,72,-216,188,-216v38,0,82,14,103,49r8,-40r233,0","w":537},"\u0153":{"d":"376,-82r43,0v-20,58,-65,88,-125,88v-40,0,-74,-11,-90,-51v-43,80,-196,67,-196,-51v0,-82,54,-168,144,-168v40,0,74,10,88,50v18,-34,56,-50,94,-50v86,-2,113,68,95,148r-189,0v-14,47,11,84,62,84v34,0,62,-21,74,-50xm51,-98v0,36,21,66,64,66v71,0,93,-86,93,-140v0,-36,-26,-55,-60,-55v-64,0,-97,76,-97,129xm334,-227v-48,0,-78,32,-88,73r145,0v5,-40,-12,-73,-57,-73","w":453},"\u2122":{"d":"195,-357r0,27r-65,0r0,179r-34,0r0,-179r-64,0r0,-27r163,0xm463,-357r0,206r-34,0r-1,-172r-68,172r-21,0r-67,-172r-2,0r0,172r-34,0r0,-206r53,0r61,157r61,-157r52,0","w":495},"\u00b0":{"d":"38,-280v0,-41,33,-74,74,-74v41,0,74,33,74,74v0,41,-33,74,-74,74v-41,0,-74,-33,-74,-74xm64,-280v0,28,20,48,48,48v28,0,50,-20,50,-48v0,-28,-22,-50,-50,-50v-28,0,-48,22,-48,50","w":200},"\u00d7":{"d":"60,-12r-24,-24r90,-91r-90,-90r24,-24r90,90r90,-90r24,24r-90,90r91,91r-24,24r-91,-91","w":300},"\u00c2":{"d":"206,-315r-96,167r122,0xm-28,0r216,-357r52,0r64,357r-49,0r-17,-108r-150,0r-62,108r-54,0xm136,-378r67,-71r43,0r38,71r-38,0r-25,-46r-43,46r-42,0","w":333},"\u00c4":{"d":"206,-315r-96,167r122,0xm-28,0r216,-357r52,0r64,357r-49,0r-17,-108r-150,0r-62,108r-54,0xm232,-380r10,-52r44,0r-10,52r-44,0xm150,-380r10,-52r45,0r-11,52r-44,0","w":333},"\u00c0":{"d":"206,-315r-96,167r122,0xm-28,0r216,-357r52,0r64,357r-49,0r-17,-108r-150,0r-62,108r-54,0xm210,-449r34,71r-34,0r-50,-71r50,0","w":333},"\u00c7":{"d":"351,-242r-47,0v0,-56,-37,-84,-89,-84v-100,0,-149,92,-149,178v0,69,34,116,106,116v58,0,94,-32,110,-88r48,0v-18,81,-70,129,-160,128r-16,18v29,-7,59,5,59,36v0,49,-71,51,-109,32r10,-22v17,8,59,16,62,-7v-1,-19,-30,-17,-44,-11r-10,-16r26,-32v-83,-8,-129,-64,-129,-154v0,-116,74,-218,196,-218v77,0,136,42,136,124","w":361},"\u00c9":{"d":"4,0r75,-357r246,0r-8,40r-199,0r-24,113r186,0r-8,40r-186,0r-26,124r201,0r-9,40r-248,0xm181,-378r47,-71r56,0r-68,71r-35,0","w":305},"\u00ca":{"d":"4,0r75,-357r246,0r-8,40r-199,0r-24,113r186,0r-8,40r-186,0r-26,124r201,0r-9,40r-248,0xm128,-378r66,-71r43,0r37,71r-36,0r-26,-46r-44,46r-40,0","w":305},"\u00cb":{"d":"4,0r75,-357r246,0r-8,40r-199,0r-24,113r186,0r-8,40r-186,0r-26,124r201,0r-9,40r-248,0xm222,-380r11,-52r45,0r-11,52r-45,0xm141,-380r11,-52r44,0r-10,52r-45,0","w":305},"\u00c8":{"d":"4,0r75,-357r246,0r-8,40r-199,0r-24,113r186,0r-8,40r-186,0r-26,124r201,0r-9,40r-248,0xm201,-449r33,71r-33,0r-51,-71r51,0","w":305},"\u00ce":{"d":"4,0r74,-357r48,0r-75,357r-47,0xm30,-378r66,-71r43,0r37,71r-36,0r-26,-46r-44,46r-40,0","w":129},"\u00cf":{"d":"4,0r74,-357r48,0r-75,357r-47,0xm124,-380r11,-52r45,0r-11,52r-45,0xm43,-380r11,-52r44,0r-10,52r-45,0","w":129},"\u00d4":{"d":"19,-148v0,-116,74,-218,196,-218v92,0,149,70,149,158v0,112,-73,216,-192,216v-98,0,-153,-58,-153,-156xm66,-148v0,69,34,116,106,116v94,0,144,-91,144,-176v0,-66,-35,-118,-101,-118v-100,0,-149,92,-149,178xm150,-378r66,-71r43,0r37,71r-36,0r-26,-46r-44,46r-40,0","w":379},"\u00db":{"d":"364,-357r-44,214v-10,97,-69,151,-158,151v-104,0,-150,-55,-129,-155r45,-210r47,0r-47,222v-16,69,15,103,84,103v78,0,96,-44,110,-111r44,-214r48,0xm145,-378r67,-71r42,0r38,71r-37,0r-25,-46r-44,46r-41,0","w":361},"\u00dc":{"d":"364,-357r-44,214v-10,97,-69,151,-158,151v-104,0,-150,-55,-129,-155r45,-210r47,0r-47,222v-16,69,15,103,84,103v78,0,96,-44,110,-111r44,-214r48,0xm240,-380r10,-52r45,0r-11,52r-44,0xm158,-380r11,-52r45,0r-11,52r-45,0","w":361},"\u00d9":{"d":"364,-357r-44,214v-10,97,-69,151,-158,151v-104,0,-150,-55,-129,-155r45,-210r47,0r-47,222v-16,69,15,103,84,103v78,0,96,-44,110,-111r44,-214r48,0xm218,-449r34,71r-34,0r-50,-71r50,0","w":361},"\u0178":{"d":"96,0r31,-144r-94,-213r51,0r72,173r136,-173r55,0r-173,213r-31,144r-47,0xm208,-380r10,-52r44,0r-10,52r-44,0xm126,-380r10,-52r45,0r-11,52r-44,0","w":305,"k":{"A":28,"\u00c2":28,"\u00c4":28,"\u00c0":28,",":64,".":64,"e":28,"\u00e9":28,"\u00ea":28,"\u00eb":28,"\u00e8":28,"v":9,"-":37,"a":28,"\u00e2":28,"\u00e4":28,"\u00e0":28,"i":6,"\u00ee":6,"\u00ef":6,"o":28,"\u0153":28,"\u00f4":28,"u":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,":":25,";":37,"p":18,"q":28}},"\u00e2":{"d":"179,-132v-38,25,-141,0,-141,64v0,56,101,40,118,2v14,-20,17,-42,23,-66xm69,-180r-43,0v8,-58,57,-84,112,-84v50,0,95,14,95,66v0,55,-27,99,-31,154v-1,20,14,18,26,12r-7,32v-26,14,-66,3,-59,-30r-2,-2v-31,52,-165,60,-165,-35v0,-75,74,-80,131,-85v45,-4,64,-7,64,-41v0,-28,-30,-34,-52,-34v-32,0,-64,13,-69,47xm77,-294r67,-72r42,0r38,72r-37,0r-25,-46r-44,46r-41,0","w":259},"\u00e4":{"d":"179,-132v-38,25,-141,0,-141,64v0,56,101,40,118,2v14,-20,17,-42,23,-66xm69,-180r-43,0v8,-58,57,-84,112,-84v50,0,95,14,95,66v0,55,-27,99,-31,154v-1,20,14,18,26,12r-7,32v-26,14,-66,3,-59,-30r-2,-2v-31,52,-165,60,-165,-35v0,-75,74,-80,131,-85v45,-4,64,-7,64,-41v0,-28,-30,-34,-52,-34v-32,0,-64,13,-69,47xm172,-296r10,-52r45,0r-11,52r-44,0xm90,-296r11,-52r45,0r-11,52r-45,0","w":259},"\u00e0":{"d":"179,-132v-38,25,-141,0,-141,64v0,56,101,40,118,2v14,-20,17,-42,23,-66xm69,-180r-43,0v8,-58,57,-84,112,-84v50,0,95,14,95,66v0,55,-27,99,-31,154v-1,20,14,18,26,12r-7,32v-26,14,-66,3,-59,-30r-2,-2v-31,52,-165,60,-165,-35v0,-75,74,-80,131,-85v45,-4,64,-7,64,-41v0,-28,-30,-34,-52,-34v-32,0,-64,13,-69,47xm150,-366r34,72r-34,0r-50,-72r50,0","w":259},"\u00e7":{"d":"250,-176r-42,0v0,-32,-21,-51,-54,-51v-66,0,-101,65,-101,121v0,40,16,74,64,74v36,0,63,-20,75,-52r43,0v-14,54,-54,87,-109,90r-18,20v29,-7,59,5,59,36v0,49,-71,51,-109,32r10,-22v17,8,59,16,62,-7v-1,-19,-30,-17,-44,-11r-10,-16r28,-33v-62,-5,-94,-47,-94,-111v0,-82,52,-158,144,-158v58,0,94,28,96,88","w":268},"\u00e9":{"d":"55,-154r150,0v3,-36,-14,-73,-61,-73v-50,0,-77,33,-89,73xm244,-116r-195,0v-22,96,117,111,140,35r43,0v-14,57,-62,87,-118,87v-86,0,-109,-59,-109,-104v0,-99,62,-166,133,-166v88,0,122,65,106,148xm135,-294r47,-72r56,0r-68,72r-35,0","w":268},"\u00ea":{"d":"55,-154r150,0v3,-36,-14,-73,-61,-73v-50,0,-77,33,-89,73xm244,-116r-195,0v-22,96,117,111,140,35r43,0v-14,57,-62,87,-118,87v-86,0,-109,-59,-109,-104v0,-99,62,-166,133,-166v88,0,122,65,106,148xm82,-294r66,-72r43,0r37,72r-36,0r-26,-46r-44,46r-40,0","w":268},"\u00eb":{"d":"55,-154r150,0v3,-36,-14,-73,-61,-73v-50,0,-77,33,-89,73xm244,-116r-195,0v-22,96,117,111,140,35r43,0v-14,57,-62,87,-118,87v-86,0,-109,-59,-109,-104v0,-99,62,-166,133,-166v88,0,122,65,106,148xm176,-296r11,-52r45,0r-11,52r-45,0xm95,-296r11,-52r44,0r-10,52r-45,0","w":268},"\u00e8":{"d":"55,-154r150,0v3,-36,-14,-73,-61,-73v-50,0,-77,33,-89,73xm244,-116r-195,0v-22,96,117,111,140,35r43,0v-14,57,-62,87,-118,87v-86,0,-109,-59,-109,-104v0,-99,62,-166,133,-166v88,0,122,65,106,148xm155,-366r33,72r-33,0r-51,-72r51,0","w":268},"\u00ee":{"d":"40,0r-42,0r54,-258r42,0xm10,-294r66,-72r44,0r37,72r-37,0r-26,-46r-43,46r-41,0","w":111},"\u00ef":{"d":"40,0r-42,0r54,-258r42,0xm105,-296r11,-52r44,0r-10,52r-45,0xm24,-296r10,-52r44,0r-10,52r-44,0","w":111},"\u00f4":{"d":"51,-102v0,42,25,70,71,70v62,0,96,-71,96,-122v0,-40,-22,-73,-68,-73v-65,0,-99,71,-99,125xm8,-102v0,-84,55,-162,145,-162v69,0,107,37,107,106v0,84,-52,164,-142,164v-68,0,-110,-46,-110,-108xm90,-294r67,-72r43,0r38,72r-38,0r-25,-46r-43,46r-42,0","w":287},"\u00fb":{"d":"260,-258r-54,258r-42,0r8,-39v-34,57,-169,71,-164,-21v4,-65,27,-136,38,-198r43,0r-33,150v-12,38,-6,79,39,76v104,-6,100,-137,123,-226r42,0xm88,-294r67,-72r43,0r38,72r-38,0r-25,-46r-43,46r-42,0"},"\u00fc":{"d":"260,-258r-54,258r-42,0r8,-39v-34,57,-169,71,-164,-21v4,-65,27,-136,38,-198r43,0r-33,150v-12,38,-6,79,39,76v104,-6,100,-137,123,-226r42,0xm166,-296r11,-52r45,0r-11,52r-45,0xm85,-296r11,-52r44,0r-10,52r-45,0"},"\u00f9":{"d":"260,-258r-54,258r-42,0r8,-39v-34,57,-169,71,-164,-21v4,-65,27,-136,38,-198r43,0r-33,150v-12,38,-6,79,39,76v104,-6,100,-137,123,-226r42,0xm150,-366r34,72r-34,0r-50,-72r50,0"},"\u00ff":{"d":"252,-258r-170,302v-22,42,-60,76,-114,54r8,-34v48,27,71,-34,90,-64r-45,-258r45,0r30,205r2,0r108,-205r46,0xm151,-296r11,-52r44,0r-10,52r-45,0xm70,-296r10,-52r44,0r-10,52r-44,0","w":240,"k":{",":46,".":46}},"\u20ac":{"d":"293,-330r-21,38v-20,-18,-42,-28,-70,-28v-58,0,-93,45,-111,95r163,0r-18,29r-154,0r-4,29r150,0r-18,29r-133,0v2,60,27,108,93,108v38,0,62,-16,92,-36r-10,50v-28,16,-54,24,-88,24v-87,0,-126,-66,-128,-146r-39,0r17,-29r23,0r4,-29r-33,0r16,-29r24,0v22,-106,146,-178,245,-105"},"\u00a0":{"w":139}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1988, 1990, 1993, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Helvetica is a trademark of Linotype Corp. registered in the U.S. Patent and
 * Trademark Office and may be registered in certain other jurisdictions in the
 * name of Linotype Corp. or its licensee Linotype GmbH.
 * 
 * Full name:
 * HelveticaNeueLTStd-BdIt
 * 
 * Designer:
 * Linotype Staff
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":278,"face":{"font-family":"Helvetica Neue LT Std","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"500","panose-1":"2 11 8 4 2 2 2 9 2 4","ascent":"357","descent":"-143","x-height":"7","bbox":"-66 -460 564 109.044","underline-thickness":"25","underline-position":"-25","slope":"-12","stemh":"54","stemv":"71","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":139},"!":{"d":"-2,0r16,-77r80,0r-17,77r-79,0xm150,-357v-15,93,-45,170,-73,250r-35,0v6,-88,12,-176,33,-250r75,0","w":148},"\"":{"d":"156,-196r0,-161r54,0r0,161r-54,0xm64,-196r0,-161r53,0r0,161r-53,0","w":240},"#":{"d":"40,0r14,-99r-41,0r5,-45r42,0r10,-62r-42,0r5,-45r43,0r14,-99r48,0r-14,99r48,0r14,-99r48,0r-13,99r42,0r-5,45r-44,0r-8,62r42,0r-5,45r-43,0r-14,99r-48,0r13,-99r-48,0r-14,99r-49,0xm166,-206r-48,0r-9,62r49,0"},"$":{"d":"156,-148r-19,98v26,0,59,-14,59,-52v0,-27,-21,-38,-40,-46xm146,-222r16,-85v-28,-1,-56,13,-57,44v0,22,19,34,41,41xm93,52r9,-45v-66,-8,-101,-46,-99,-127r69,0v-1,44,15,64,41,68r20,-104v-51,-18,-98,-33,-97,-102v0,-75,66,-108,137,-108r8,-39r24,0r-9,43v50,10,91,45,86,109r-69,0v2,-27,-12,-42,-29,-49r-16,88v51,16,96,32,96,102v0,86,-72,120,-138,120r-8,44r-25,0"},"%":{"d":"36,-241v0,-59,33,-116,97,-116v50,0,79,26,79,76v0,61,-36,119,-102,119v-48,0,-74,-33,-74,-79xm88,-232v0,18,7,32,26,32v36,0,47,-64,47,-92v0,-14,-9,-28,-24,-28v-39,0,-49,58,-49,88xm322,-63v0,18,7,33,26,33v36,0,48,-64,48,-92v0,-14,-9,-28,-24,-28v-39,0,-50,57,-50,87xm271,-72v0,-59,33,-116,97,-116v50,0,78,26,78,76v0,61,-36,119,-102,119v-48,0,-73,-33,-73,-79xm88,11r268,-372r43,0r-269,372r-42,0","w":481},"&":{"d":"182,-78r-48,-80v-28,16,-58,29,-58,66v0,53,79,46,106,14xm230,0r-16,-28v-65,63,-206,40,-206,-64v0,-60,45,-93,96,-113v-51,-61,-12,-156,75,-156v50,0,93,27,93,81v0,49,-44,77,-82,97r39,62v14,-14,22,-33,26,-51r63,0v-7,38,-27,76,-56,102r46,70r-78,0xm182,-314v-46,-1,-45,61,-19,87v20,-10,51,-29,51,-53v0,-20,-14,-34,-32,-34","w":342},"\u2019":{"d":"55,-280r16,-77r79,0v-18,76,-13,157,-112,161r7,-36v30,-6,39,-20,45,-48r-35,0","w":139,"k":{"\u2019":20,"s":18}},"(":{"d":"131,-366r63,0v-113,151,-137,273,-96,457r-54,0v-18,-42,-31,-118,-31,-160v0,-124,44,-203,118,-297","w":148},")":{"d":"6,91r-62,0v113,-151,135,-272,96,-457r54,0v63,177,21,334,-88,457","w":148},"*":{"d":"156,-355r-12,64r61,-11r7,39r-60,9r28,52r-36,20r-27,-54r-43,48r-29,-28r45,-46r-54,-26r16,-36r55,27r9,-60","w":203},"+":{"d":"24,-100r0,-53r100,0r0,-99r53,0r0,99r99,0r0,53r-99,0r0,100r-53,0r0,-100r-100,0","w":300},",":{"d":"-6,0r16,-77r78,0v-18,72,-14,157,-112,161r8,-36v30,-5,38,-20,44,-48r-34,0","w":139},"-":{"d":"14,-106r12,-61r151,0r-13,61r-150,0","w":203},".":{"d":"-6,0r16,-77r79,0r-17,77r-78,0","w":139},"\/":{"d":"-1,8r139,-374r58,0r-140,374r-57,0","w":194},"0":{"d":"-2,-128v0,-99,54,-229,166,-229v79,0,116,55,116,133v0,102,-53,231,-171,231v-80,0,-111,-63,-111,-135xm69,-113v0,34,10,61,49,61v72,0,92,-136,92,-184v0,-35,-16,-62,-52,-62v-70,0,-89,136,-89,185"},"1":{"d":"236,-350r-74,350r-76,0r48,-227r-86,0r12,-53v52,-2,92,-16,118,-70r58,0"},"2":{"d":"90,-224r-68,0v7,-84,60,-133,140,-133v64,0,117,33,117,105v0,102,-145,133,-199,191r172,0r-14,61r-259,0v6,-88,74,-123,141,-160v35,-19,88,-41,88,-87v0,-35,-24,-49,-54,-49v-38,0,-62,34,-64,72"},"3":{"d":"108,-158r10,-50v43,2,88,-4,88,-47v0,-30,-22,-43,-48,-43v-40,0,-59,20,-67,60r-67,0v10,-76,61,-119,135,-119v56,0,115,23,115,91v1,42,-30,72,-66,82v36,11,50,37,50,72v0,82,-66,119,-144,119v-85,0,-128,-45,-123,-127r67,0v-4,41,16,68,58,68v38,0,67,-23,67,-63v0,-40,-34,-46,-75,-43"},"4":{"d":"53,-140r104,0r29,-134v-48,41,-88,90,-133,134xm269,-350r-45,210r47,0r-13,59r-46,0r-18,81r-67,0r17,-81r-162,0r13,-65r205,-204r69,0"},"5":{"d":"278,-350r-12,58r-150,0r-22,76v57,-48,166,-14,166,82v0,87,-62,141,-146,141v-74,0,-120,-34,-122,-109r68,0v0,34,26,50,60,50v38,0,70,-30,70,-73v0,-67,-88,-77,-116,-30r-64,0r61,-195r207,0"},"6":{"d":"139,-182v-75,0,-88,131,-11,130v41,0,66,-30,66,-70v0,-39,-22,-60,-55,-60xm288,-260r-68,0v0,-26,-18,-44,-44,-44v-54,0,-82,62,-91,106v54,-74,181,-31,181,70v0,75,-60,135,-136,135v-89,0,-124,-61,-124,-143v0,-122,64,-221,172,-221v61,0,107,29,110,97"},"7":{"d":"296,-350r-14,61v-80,67,-146,189,-172,289r-76,0v24,-96,97,-216,171,-284r-172,0r14,-66r249,0"},"8":{"d":"61,-100v0,34,29,54,61,54v42,0,69,-24,69,-60v0,-38,-32,-56,-62,-56v-38,0,-68,22,-68,62xm34,-254v0,-64,58,-103,132,-103v117,0,149,146,42,172v28,9,55,42,54,79v0,72,-70,113,-142,113v-76,0,-130,-43,-130,-103v0,-56,43,-77,88,-94v-24,-12,-44,-34,-44,-64xm98,-254v0,67,114,55,114,-2v0,-33,-27,-48,-56,-48v-36,0,-58,20,-58,50"},"9":{"d":"144,-168v76,0,88,-131,10,-130v-41,0,-66,30,-66,70v0,39,23,60,56,60xm-6,-90r68,0v0,26,19,44,45,44v55,0,78,-60,91,-106v-55,73,-181,32,-181,-70v0,-75,59,-135,135,-135v89,0,124,61,124,143v0,122,-64,221,-172,221v-61,0,-107,-29,-110,-97"},":":{"d":"-6,0r16,-77r79,0r-17,77r-78,0xm126,-254r-16,77r-80,0r17,-77r79,0","w":139},";":{"d":"-6,0r16,-77r78,0v-18,72,-14,157,-112,161r8,-36v30,-5,38,-20,44,-48r-34,0xm30,-177r17,-77r79,0r-16,77r-80,0","w":139},"<":{"d":"277,-257r0,57r-183,74r183,72r0,58r-254,-101r0,-59","w":300},"=":{"d":"276,-206r0,53r-252,0r0,-53r252,0xm276,-100r0,54r-252,0r0,-54r252,0","w":300},">":{"d":"23,4r0,-58r183,-72r-183,-74r0,-57r254,101r0,59","w":300},"?":{"d":"108,-246r-71,0v4,-80,63,-120,139,-120v58,0,109,29,109,93v0,48,-32,74,-69,95v-30,16,-54,32,-58,68r-66,0v10,-66,35,-82,83,-108v44,-13,49,-89,-8,-89v-36,0,-55,29,-59,61xm62,0r16,-77r79,0r-17,77r-78,0","w":287},"@":{"d":"146,-160v0,26,15,45,38,45v36,0,62,-41,62,-75v0,-24,-16,-43,-38,-43v-36,0,-62,40,-62,73xm311,-272r-31,128v-4,14,-8,34,4,34v28,0,58,-38,58,-92v0,-80,-59,-124,-134,-124v-86,0,-142,64,-142,148v0,135,169,189,255,106r42,0v-34,52,-91,80,-153,80v-106,0,-192,-79,-192,-186v0,-106,86,-188,190,-188v91,0,174,61,174,153v0,103,-86,145,-118,145v-22,1,-33,-14,-37,-28v-41,61,-133,14,-133,-57v0,-63,44,-127,110,-127v22,0,46,8,58,34r8,-26r41,0","w":400},"A":{"d":"120,-138r96,0r-18,-142xm-38,0r210,-357r81,0r59,357r-78,0r-11,-80r-133,0r-46,80r-82,0","w":342},"B":{"d":"108,-159r-22,98v70,-3,164,18,160,-57v-3,-63,-82,-35,-138,-41xm-2,0r75,-357v108,8,266,-35,266,83v0,40,-25,79,-67,84v34,9,53,39,53,73v0,78,-65,117,-137,117r-190,0xm136,-296r-18,84v61,-2,141,16,142,-48v1,-56,-76,-30,-124,-36","w":361},"C":{"d":"356,-233r-78,0v0,-44,-26,-67,-64,-67v-80,0,-117,82,-117,150v0,49,24,92,81,92v44,0,77,-32,84,-70r78,0v-32,100,-85,136,-163,136v-100,0,-159,-58,-159,-158v0,-116,76,-216,196,-216v82,0,144,46,142,133","w":370},"D":{"d":"-2,0r76,-357r128,0v100,0,152,51,152,139v0,124,-68,218,-206,218r-150,0xm138,-291r-48,225r61,0v80,0,125,-62,125,-138v0,-52,-22,-87,-78,-87r-60,0","w":370},"E":{"d":"-2,0r75,-357r273,0r-14,66r-194,0r-16,77r180,0r-14,60r-179,0r-19,88r198,0r-14,66r-276,0","w":333},"F":{"d":"-2,0r76,-357r254,0r-15,66r-175,0r-18,83r154,0r-14,60r-152,0r-32,148r-78,0","w":296,"k":{"A":28,"\u00c2":28,"\u00c4":28,"\u00c0":28,",":64,".":64}},"G":{"d":"268,0v-1,-11,2,-27,-1,-36v-24,32,-57,44,-90,44v-100,0,-159,-58,-159,-158v0,-116,76,-216,196,-216v84,0,151,39,151,127r-79,0v-2,-43,-28,-61,-72,-61v-80,0,-117,82,-117,150v0,49,24,92,81,92v60,0,85,-30,99,-76r-83,0r13,-59r151,0r-40,193r-50,0","w":379},"H":{"d":"-2,0r76,-357r78,0r-28,137r144,0r29,-137r79,0r-76,357r-78,0r32,-154r-144,0r-33,154r-79,0","w":370},"I":{"d":"-2,0r76,-357r78,0r-75,357r-79,0","w":148},"J":{"d":"282,-357r-52,255v-16,70,-53,110,-131,110v-56,0,-109,-24,-109,-86v0,-19,4,-37,7,-55r71,0v-12,37,-7,75,32,75v40,0,47,-28,54,-60r50,-239r78,0"},"K":{"d":"-2,0r74,-357r79,0r-30,149r162,-149r104,0r-171,147r109,210r-89,0r-81,-160r-55,47r-23,113r-79,0","w":361},"L":{"d":"-2,0r75,-357r79,0r-61,291r173,0r-14,66r-252,0","w":287,"k":{"T":46,"V":37,"W":28,"Y":46,"\u0178":46,"\u2019":56,"y":9,"\u00ff":9}},"M":{"d":"-2,0r76,-357r108,0r28,259r138,-259r110,0r-76,357r-74,0r66,-284r-2,0r-150,284r-60,0r-36,-284r-54,284r-74,0","w":453},"N":{"d":"-2,0r76,-357r80,0r98,254r52,-254r72,0r-76,357r-78,0r-98,-250r-2,0r-50,250r-74,0","w":370},"O":{"d":"97,-150v0,49,24,92,81,92v77,0,116,-81,116,-149v0,-50,-22,-93,-80,-93v-80,0,-117,82,-117,150xm18,-150v0,-116,76,-216,196,-216v96,0,158,54,158,154v0,118,-70,220,-195,220v-100,0,-159,-58,-159,-158","w":389},"P":{"d":"138,-296r-22,107v70,0,148,11,145,-63v-2,-61,-69,-40,-123,-44xm-2,0r74,-357v122,4,268,-29,268,104v0,79,-66,125,-140,125r-96,0r-28,128r-78,0","w":333,"k":{"A":37,"\u00c2":37,"\u00c4":37,"\u00c0":37,",":76,".":76}},"Q":{"d":"181,-94r42,-35r31,35v52,-59,68,-206,-40,-206v-80,0,-117,82,-117,150v0,60,45,109,112,87xm341,4r-42,36r-42,-48v-24,11,-50,16,-80,16v-100,0,-159,-58,-159,-158v0,-116,76,-216,196,-216v96,0,158,54,158,154v0,68,-24,132,-69,174","w":389},"R":{"d":"-2,0r75,-357v118,8,277,-39,277,93v0,51,-38,86,-82,98v65,19,20,105,40,166r-77,0v-7,-30,1,-64,1,-96v0,-61,-72,-40,-126,-44r-30,140r-78,0xm139,-296r-21,100v68,0,154,8,154,-56v0,-64,-77,-39,-133,-44","w":361,"k":{"T":9,"V":9,"W":9,"Y":9,"\u0178":9}},"S":{"d":"2,-118r75,0v-2,50,32,66,77,66v32,0,68,-15,68,-51v0,-35,-46,-41,-90,-55v-45,-14,-90,-34,-90,-96v0,-80,72,-112,141,-112v73,0,134,34,134,116r-75,0v2,-40,-28,-54,-64,-54v-30,0,-62,11,-62,44v0,36,61,44,85,50v56,14,95,36,95,100v0,86,-77,118,-145,118v-98,0,-149,-40,-149,-126","w":324},"T":{"d":"78,0r61,-291r-112,0r14,-66r298,0r-14,66r-107,0r-61,291r-79,0","w":305,"k":{"\u00fc":37,"\u00ee":12,"\u00e8":37,"\u00eb":37,"\u00ea":37,"\u00e0":37,"\u00e4":37,"\u00e2":37,"A":28,"\u00c2":28,"\u00c4":28,"\u00c0":28,",":46,".":46,"y":28,"\u00ff":28,"-":49,"a":37,"c":37,"\u00e7":37,"e":37,"\u00e9":37,"i":12,"\u00ef":12,"o":37,"\u0153":37,"\u00f4":37,"r":37,"s":37,"u":37,"\u00fb":37,"\u00f9":37,"w":37,":":25,";":25}},"U":{"d":"375,-357r-43,207v-22,102,-61,158,-172,158v-70,0,-141,-28,-141,-106v0,-92,35,-172,51,-259r78,0r-50,251v0,18,12,48,66,48v64,0,76,-34,88,-88r44,-211r79,0","w":370},"V":{"d":"356,-357r-190,357r-89,0r-41,-357r78,0r25,268r135,-268r82,0","w":315,"k":{"\u00f4":18,"\u00e8":12,"\u00eb":12,"\u00ea":12,"\u00e0":18,"\u00e4":18,"\u00e2":18,"A":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,",":46,".":46,"-":18,"a":18,"e":12,"\u00e9":12,"i":3,"\u00ee":3,"\u00ef":3,"o":18,"\u0153":18,"r":9,"u":9,"\u00fb":9,"\u00fc":9,"\u00f9":9,":":16,";":16}},"W":{"d":"506,-357r-167,357r-78,0r-10,-255r-111,255r-79,0r-25,-357r79,0r6,261r113,-261r75,0r10,261r109,-261r78,0","w":472,"k":{"\u00fc":9,"\u00ea":18,"\u00e4":18,"A":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,",":37,".":37,"-":18,"a":18,"\u00e2":18,"\u00e0":18,"e":18,"\u00e9":18,"\u00eb":18,"\u00e8":18,"i":3,"\u00ee":3,"\u00ef":3,"o":18,"\u0153":18,"\u00f4":18,"r":9,"u":9,"\u00fb":9,"\u00f9":9,":":16,";":22}},"X":{"d":"-35,0r163,-188r-84,-169r86,0r50,118r92,-118r92,0r-148,173r88,184r-86,0r-56,-128r-102,128r-95,0","w":333},"Y":{"d":"88,0r28,-138r-86,-219r81,0r53,152r112,-152r92,0r-174,222r-28,135r-78,0","w":324,"k":{"\u00fc":18,"A":28,"\u00c2":28,"\u00c4":28,"\u00c0":28,",":49,".":49,"v":9,"-":30,"a":28,"\u00e2":28,"\u00e4":28,"\u00e0":28,"e":28,"\u00e9":28,"\u00ea":28,"\u00eb":28,"\u00e8":28,"i":9,"\u00ee":9,"\u00ef":9,"o":28,"\u0153":28,"\u00f4":28,"u":18,"\u00fb":18,"\u00f9":18,":":18,";":18,"p":18,"q":28}},"Z":{"d":"-22,0r14,-65r238,-226r-182,0r14,-66r282,0r-13,63r-241,228r202,0r-13,66r-301,0","w":324},"[":{"d":"-18,91r96,-457r128,0r-12,56r-62,0r-72,345r62,0r-12,56r-128,0","w":166},"\\":{"d":"56,-366r140,374r-58,0r-139,-374r57,0","w":194},"]":{"d":"169,-366r-96,457r-129,0r12,-56r62,0r73,-345r-63,0r12,-56r129,0","w":166},"^":{"d":"30,-158r86,-192r68,0r86,192r-59,0r-61,-137r-61,137r-59,0","w":300},"_":{"d":"0,62r0,-24r250,0r0,24r-250,0","w":250},"\u2018":{"d":"134,-274r-16,78r-79,0v18,-76,13,-158,113,-161r-8,35v-30,6,-38,20,-44,48r34,0","w":139,"k":{"\u2018":20}},"a":{"d":"180,-124v-39,22,-110,-4,-112,54v0,20,18,30,38,30v56,-2,63,-44,74,-84xm96,-180r-66,0v9,-65,64,-86,122,-86v46,0,110,10,108,68v-2,67,-36,128,-30,198r-70,0r0,-26v-41,56,-164,36,-164,-35v0,-50,38,-80,100,-88v67,-8,98,-4,98,-37v0,-52,-94,-38,-98,6","w":287},"b":{"d":"162,-212v-56,0,-76,65,-76,111v0,32,19,55,51,55v54,0,76,-64,76,-108v0,-32,-15,-58,-51,-58xm-6,0r75,-357r71,0r-26,126v22,-24,43,-35,77,-35v66,0,93,50,93,110v0,80,-46,163,-134,163v-37,1,-68,-13,-82,-47r-8,40r-66,0","w":305},"c":{"d":"267,-169r-71,0v0,-30,-17,-43,-48,-43v-54,0,-72,66,-72,110v0,31,13,56,49,56v32,0,49,-22,57,-48r72,0v-22,64,-67,101,-134,101v-72,0,-115,-35,-115,-111v0,-88,53,-162,146,-162v63,0,114,29,116,97"},"d":{"d":"175,0v1,-11,7,-24,6,-33v-16,28,-45,40,-77,40v-62,0,-99,-40,-99,-102v0,-85,45,-171,141,-171v32,0,59,18,74,42r28,-133r71,0r-75,357r-69,0xm154,-212v-54,0,-78,62,-78,108v0,31,16,58,50,58v53,0,78,-66,78,-110v0,-33,-16,-56,-50,-56","w":305},"e":{"d":"264,-112r-190,0v-6,40,12,65,56,66v28,0,43,-20,53,-36r71,0v-22,58,-60,89,-134,89v-69,0,-115,-39,-115,-113v0,-82,55,-160,143,-160v86,0,136,63,116,154xm81,-157r119,0v0,-26,-6,-55,-48,-55v-40,0,-61,26,-71,55","w":287},"f":{"d":"8,0r45,-211r-42,0r10,-47r43,0v14,-66,26,-102,100,-102v16,0,30,2,46,4r-10,51v-45,-6,-62,7,-66,47r51,0r-10,47r-51,0r-44,211r-72,0","w":176},"g":{"d":"152,-212v-48,0,-72,56,-72,98v0,30,15,56,48,56v51,0,75,-54,75,-98v0,-32,-17,-56,-51,-56xm295,-258r-51,244v-18,78,-57,112,-143,112v-52,0,-111,-22,-111,-84r72,0v-1,26,23,36,46,36v44,1,61,-43,71,-90v-52,72,-171,28,-171,-70v0,-76,48,-156,131,-156v37,-1,64,15,80,47r8,-39r68,0","w":305},"h":{"d":"-6,0r74,-357r72,0r-26,129v11,-15,40,-38,86,-38v68,0,81,54,68,114r-32,152r-72,0r32,-152v10,-29,1,-61,-30,-58v-93,8,-75,134,-101,210r-71,0","w":305},"i":{"d":"-6,0r55,-258r71,0r-54,258r-72,0xm142,-357r-14,59r-71,0r13,-59r72,0","w":129},"j":{"d":"-66,88r12,-56r26,0v19,0,23,-32,26,-46r52,-244r71,0r-57,268v-9,67,-54,90,-130,78xm142,-357r-14,59r-71,0r13,-59r72,0","w":129},"k":{"d":"-6,0r75,-357r71,0r-40,195r102,-96r88,0r-116,98r66,160r-78,0r-42,-116r-38,32r-17,84r-71,0"},"l":{"d":"-6,0r76,-357r71,0r-76,357r-71,0","w":129},"m":{"d":"-6,0r54,-258r68,0v-2,11,-8,26,-7,36v32,-50,136,-68,153,2v34,-58,166,-69,166,20v0,70,-28,133,-40,200r-70,0r36,-182v0,-16,-14,-28,-32,-28v-38,0,-59,40,-66,72r-29,138r-71,0r36,-182v0,-16,-14,-28,-32,-28v-38,0,-59,40,-66,72r-29,138r-71,0","w":453},"n":{"d":"-6,0r54,-258r68,0v-2,11,-8,26,-7,36v37,-59,173,-65,166,26v-6,69,-27,131,-39,196r-72,0r32,-152v10,-29,1,-61,-30,-58v-93,8,-75,134,-101,210r-71,0","w":305},"o":{"d":"5,-104v0,-88,57,-162,149,-162v71,0,120,36,120,110v0,91,-56,163,-150,163v-72,0,-119,-37,-119,-111xm76,-104v0,30,17,58,51,58v53,0,76,-65,76,-109v0,-34,-15,-57,-52,-57v-52,0,-75,64,-75,108","w":296},"p":{"d":"162,-212v-53,0,-78,66,-78,110v0,33,16,56,50,56v54,0,78,-62,78,-108v0,-31,-16,-58,-50,-58xm-30,91r75,-349r69,0v-1,10,-10,25,-6,32v16,-28,45,-40,77,-40v62,0,98,40,98,102v0,85,-45,171,-141,171v-32,0,-59,-17,-74,-41r-26,125r-72,0","w":305},"q":{"d":"295,-258r-73,349r-72,0r23,-111v-16,16,-37,27,-73,27v-66,0,-95,-50,-95,-110v0,-80,46,-163,134,-163v37,-1,68,14,82,48r9,-40r65,0xm154,-212v-56,0,-78,64,-78,108v0,32,14,58,52,58v51,0,78,-66,78,-112v0,-32,-20,-54,-52,-54","w":305},"r":{"d":"-6,0r54,-258r68,0v-3,15,-10,33,-10,47v20,-42,60,-61,111,-53r-15,69v-116,-30,-115,105,-137,195r-71,0","w":194,"k":{",":37,".":37,"y":-9,"\u00ff":-9,"v":-9,"-":18}},"s":{"d":"242,-183r-66,0v0,-22,-13,-35,-40,-35v-25,0,-44,8,-44,26v0,21,47,30,68,37v38,13,68,30,68,74v0,64,-62,88,-122,88v-53,0,-115,-23,-110,-91r66,0v-4,31,23,43,50,44v22,0,46,-8,46,-32v0,-37,-54,-31,-80,-46v-36,-12,-56,-26,-56,-66v0,-61,64,-82,114,-82v56,0,107,17,106,83","w":259},"t":{"d":"155,-337r-16,79r51,0r-11,47r-51,0r-28,141v2,28,29,16,50,17r-12,55v-61,10,-124,0,-109,-74r29,-139r-46,0r10,-47r46,0r16,-79r71,0","w":185},"u":{"d":"293,-258r-54,258r-68,0v2,-11,8,-26,7,-36v-36,58,-184,62,-166,-26r40,-196r70,0r-36,182v0,16,18,27,34,27v93,0,76,-133,102,-209r71,0","w":305},"v":{"d":"272,-258r-142,258r-81,0r-34,-258r73,0r17,184r91,-184r76,0","w":259,"k":{",":28,".":28}},"w":{"d":"417,-258r-135,258r-74,0r-10,-182r-80,182r-74,0r-29,-258r73,0r10,182r80,-182r72,0r9,180r83,-180r75,0","w":407,"k":{",":18,".":18}},"x":{"d":"266,-258r-108,124r66,134r-76,0r-37,-85r-69,85r-80,0r120,-138r-59,-120r76,0r29,74r58,-74r80,0","w":259},"y":{"d":"272,-258r-165,294v-26,55,-71,59,-139,52r12,-58v10,0,20,2,30,2v34,0,36,-20,46,-34r-46,-256r74,0r23,184r89,-184r76,0","w":259,"k":{",":28,".":28}},"z":{"d":"-26,0r12,-52r162,-153r-125,0r11,-53r218,0r-12,52r-162,152r142,0r-11,54r-235,0","w":250},"{":{"d":"206,-366r-12,56v-75,-14,-66,62,-78,113v-12,51,-49,53,-62,61v16,-1,47,20,38,54v-8,33,-15,64,-18,100v-2,20,28,18,48,17r-12,56v-62,3,-124,3,-110,-67r21,-106v0,-24,-25,-34,-39,-34r10,-43v16,0,48,-11,55,-45r19,-94v24,-71,65,-71,140,-68","w":166},"|":{"d":"29,107r0,-500r53,0r0,500r-53,0","w":111},"}":{"d":"-55,91r11,-56v37,4,55,-6,62,-37r16,-76v9,-52,49,-52,62,-60v-16,1,-47,-21,-38,-55v8,-32,14,-63,18,-99v2,-20,-27,-19,-48,-18r12,-56v63,-3,120,-5,111,68v-4,36,-21,67,-21,106v0,24,24,33,38,33r-9,43v-16,0,-48,12,-55,46r-20,94v-24,70,-65,70,-139,67","w":166},"~":{"d":"96,-170v33,-1,77,34,106,34v20,0,32,-18,44,-36r20,46v-15,21,-31,44,-62,44v-40,0,-64,-35,-108,-34v-22,0,-34,18,-42,36r-20,-47v11,-21,28,-43,62,-43","w":300},"'":{"d":"55,-196r0,-161r53,0r0,161r-53,0","w":139},"\u201c":{"d":"128,-274r-16,78r-79,0v18,-76,13,-158,113,-161r-8,35v-30,6,-38,20,-44,48r34,0xm234,-274r-16,78r-80,0v18,-76,13,-158,113,-161r-7,35v-30,6,-39,20,-45,48r35,0","w":240},"\u00ab":{"d":"172,-40r-64,-69r14,-65r91,-58r-13,62r-55,34r39,42xm74,-40r-64,-69r14,-65r91,-58r-13,62r-55,34r39,42","w":231},"\u2039":{"d":"72,-40r-64,-69r14,-65r91,-58r-13,62r-55,34r39,42","w":129},"\u203a":{"d":"38,-232r64,70r-14,64r-90,58r12,-62r56,-34r-39,-42","w":129},"\u2013":{"d":"-14,-106r12,-61r250,0r-12,61r-250,0","w":250},"\u201d":{"d":"154,-280r16,-77r80,0v-18,76,-14,157,-113,161r7,-36v30,-6,39,-20,45,-48r-35,0xm49,-280r16,-77r79,0v-18,76,-13,157,-112,161r7,-36v30,-6,39,-20,45,-48r-35,0","w":240},"\u00bb":{"d":"44,-232r64,70r-14,64r-91,58r13,-62r55,-34r-39,-42xm142,-232r64,70r-14,64r-91,58r13,-62r55,-34r-39,-42","w":231},"\u2026":{"d":"174,0r17,-77r79,0r-16,77r-80,0xm341,0r17,-77r78,0r-16,77r-79,0xm8,0r16,-77r80,0r-17,77r-79,0","w":500},"`":{"d":"88,-362r44,72r-50,0r-70,-72r76,0","w":129},"\u2014":{"d":"50,-106r14,-61r370,0r-14,61r-370,0","w":500},"\u0152":{"d":"241,0v1,-9,7,-21,5,-29v-22,25,-57,37,-91,37v-90,0,-137,-68,-137,-152v0,-116,72,-222,196,-222v35,0,69,12,90,42r7,-33r253,0r-14,66r-180,0r-16,77r164,0r-12,60r-165,0r-19,88r184,0r-14,66r-251,0xm170,-58v90,0,113,-104,113,-183v0,-41,-34,-59,-71,-59v-80,0,-115,88,-115,156v0,48,21,86,73,86","w":555},"\u0153":{"d":"260,-157r116,0v8,-29,-12,-55,-46,-55v-42,0,-58,25,-70,55xm359,-80r71,0v-25,90,-165,123,-222,44v-21,30,-56,43,-92,43v-85,0,-111,-60,-111,-117v0,-76,63,-156,151,-156v34,0,68,12,86,42v17,-26,58,-42,89,-42v86,-2,131,67,110,154r-189,0v-7,38,12,65,50,66v27,0,49,-12,57,-34xm76,-100v0,29,14,54,48,54v54,0,74,-75,74,-120v0,-24,-14,-46,-46,-46v-55,0,-76,74,-76,112","w":463},"\u2122":{"d":"464,-357r0,206r-48,0r-1,-146r-53,146r-34,0r-54,-146r0,146r-48,0r0,-206r68,0r51,135r51,-135r68,0xm199,-357r0,40r-59,0r0,166r-50,0r0,-166r-59,0r0,-40r168,0","w":495},"\u00b0":{"d":"41,-283v0,-41,33,-74,74,-74v41,0,74,33,74,74v0,41,-33,74,-74,74v-41,0,-74,-33,-74,-74xm74,-283v0,24,19,44,41,44v22,0,41,-20,41,-44v0,-24,-19,-44,-41,-44v-22,0,-41,20,-41,44","w":200},"\u00d7":{"d":"70,-8r-38,-38r80,-80r-79,-80r38,-38r79,80r80,-80r38,38r-80,80r80,80r-38,38r-80,-81","w":300},"\u00c2":{"d":"120,-138r96,0r-18,-142xm-38,0r210,-357r81,0r59,357r-78,0r-11,-80r-133,0r-46,80r-82,0xm124,-389r69,-71r63,0r42,71r-50,0r-26,-41r-43,41r-55,0","w":342},"\u00c4":{"d":"120,-138r96,0r-18,-142xm-38,0r210,-357r81,0r59,357r-78,0r-11,-80r-133,0r-46,80r-82,0xm226,-397r12,-59r66,0r-12,59r-66,0xm128,-397r12,-59r66,0r-12,59r-66,0","w":342},"\u00c0":{"d":"120,-138r96,0r-18,-142xm-38,0r210,-357r81,0r59,357r-78,0r-11,-80r-133,0r-46,80r-82,0xm208,-460r44,71r-50,0r-70,-71r76,0","w":342},"\u00c7":{"d":"356,-233r-78,0v0,-44,-26,-67,-64,-67v-80,0,-117,82,-117,150v0,49,24,92,81,92v44,0,77,-32,84,-70r78,0v-32,100,-85,136,-164,136v-3,6,-12,14,-12,18v26,-7,63,4,63,33v0,65,-84,53,-121,39r11,-24v14,6,61,21,62,-8v0,-20,-26,-17,-40,-12r-11,-12r25,-36v-86,-8,-135,-64,-135,-156v0,-116,76,-216,196,-216v82,0,144,46,142,133","w":370},"\u00c9":{"d":"-2,0r75,-357r273,0r-14,66r-194,0r-16,77r180,0r-14,60r-179,0r-19,88r198,0r-14,66r-276,0xm302,-460r-70,71r-50,0r44,-71r76,0","w":333},"\u00ca":{"d":"-2,0r75,-357r273,0r-14,66r-194,0r-16,77r180,0r-14,60r-179,0r-19,88r198,0r-14,66r-276,0xm120,-389r68,-71r64,0r41,71r-50,0r-25,-41r-44,41r-54,0","w":333},"\u00cb":{"d":"-2,0r75,-357r273,0r-14,66r-194,0r-16,77r180,0r-14,60r-179,0r-19,88r198,0r-14,66r-276,0xm222,-397r12,-59r66,0r-12,59r-66,0xm124,-397r12,-59r66,0r-12,59r-66,0","w":333},"\u00c8":{"d":"-2,0r75,-357r273,0r-14,66r-194,0r-16,77r180,0r-14,60r-179,0r-19,88r198,0r-14,66r-276,0xm204,-460r44,71r-50,0r-70,-71r76,0","w":333},"\u00ce":{"d":"-2,0r76,-357r78,0r-75,357r-79,0xm26,-389r68,-71r64,0r41,71r-50,0r-25,-41r-44,41r-54,0","w":148},"\u00cf":{"d":"-2,0r76,-357r78,0r-75,357r-79,0xm130,-397r12,-59r65,0r-12,59r-65,0xm32,-397r12,-59r65,0r-12,59r-65,0","w":148},"\u00d4":{"d":"97,-150v0,49,24,92,81,92v77,0,116,-81,116,-149v0,-50,-22,-93,-80,-93v-80,0,-117,82,-117,150xm18,-150v0,-116,76,-216,196,-216v96,0,158,54,158,154v0,118,-70,220,-195,220v-100,0,-159,-58,-159,-158xm134,-389r69,-71r63,0r42,71r-50,0r-26,-41r-43,41r-55,0","w":389},"\u00db":{"d":"375,-357r-43,207v-22,102,-61,158,-172,158v-70,0,-141,-28,-141,-106v0,-92,35,-172,51,-259r78,0r-50,251v0,18,12,48,66,48v64,0,76,-34,88,-88r44,-211r79,0xm138,-389r69,-71r63,0r42,71r-50,0r-26,-41r-43,41r-55,0","w":370},"\u00dc":{"d":"375,-357r-43,207v-22,102,-61,158,-172,158v-70,0,-141,-28,-141,-106v0,-92,35,-172,51,-259r78,0r-50,251v0,18,12,48,66,48v64,0,76,-34,88,-88r44,-211r79,0xm240,-397r12,-59r66,0r-12,59r-66,0xm142,-397r12,-59r66,0r-12,59r-66,0","w":370},"\u00d9":{"d":"375,-357r-43,207v-22,102,-61,158,-172,158v-70,0,-141,-28,-141,-106v0,-92,35,-172,51,-259r78,0r-50,251v0,18,12,48,66,48v64,0,76,-34,88,-88r44,-211r79,0xm222,-460r44,71r-50,0r-70,-71r76,0","w":370},"\u0178":{"d":"88,0r28,-138r-86,-219r81,0r53,152r112,-152r92,0r-174,222r-28,135r-78,0xm204,-397r12,-59r66,0r-12,59r-66,0xm106,-397r12,-59r66,0r-12,59r-66,0","w":324,"k":{"A":28,"\u00c2":28,"\u00c4":28,"\u00c0":28,",":49,".":49,"v":9,"-":30,"a":28,"\u00e2":28,"\u00e4":28,"\u00e0":28,"e":28,"\u00e9":28,"\u00ea":28,"\u00eb":28,"\u00e8":28,"i":9,"\u00ee":9,"\u00ef":9,"o":28,"\u0153":28,"\u00f4":28,"u":18,"\u00fb":18,"\u00fc":18,"\u00f9":18,":":18,";":18,"p":18,"q":28}},"\u00e2":{"d":"180,-124v-39,22,-110,-4,-112,54v0,20,18,30,38,30v56,-2,63,-44,74,-84xm96,-180r-66,0v9,-65,64,-86,122,-86v46,0,110,10,108,68v-2,67,-36,128,-30,198r-70,0r0,-26v-41,56,-164,36,-164,-35v0,-50,38,-80,100,-88v67,-8,98,-4,98,-37v0,-52,-94,-38,-98,6xm84,-290r68,-72r63,0r41,72r-50,0r-24,-41r-44,41r-54,0","w":287},"\u00e4":{"d":"180,-124v-39,22,-110,-4,-112,54v0,20,18,30,38,30v56,-2,63,-44,74,-84xm96,-180r-66,0v9,-65,64,-86,122,-86v46,0,110,10,108,68v-2,67,-36,128,-30,198r-70,0r0,-26v-41,56,-164,36,-164,-35v0,-50,38,-80,100,-88v67,-8,98,-4,98,-37v0,-52,-94,-38,-98,6xm186,-298r12,-59r65,0r-12,59r-65,0xm88,-298r12,-59r65,0r-12,59r-65,0","w":287},"\u00e0":{"d":"180,-124v-39,22,-110,-4,-112,54v0,20,18,30,38,30v56,-2,63,-44,74,-84xm96,-180r-66,0v9,-65,64,-86,122,-86v46,0,110,10,108,68v-2,67,-36,128,-30,198r-70,0r0,-26v-41,56,-164,36,-164,-35v0,-50,38,-80,100,-88v67,-8,98,-4,98,-37v0,-52,-94,-38,-98,6xm167,-362r44,72r-50,0r-70,-72r76,0","w":287},"\u00e7":{"d":"267,-169r-71,0v0,-30,-17,-43,-48,-43v-54,0,-72,66,-72,110v0,31,13,56,49,56v32,0,49,-22,57,-48r72,0v-20,61,-62,96,-123,100v-3,6,-12,15,-13,20v26,-7,63,4,63,33v0,65,-84,53,-121,39r11,-24v14,6,61,21,62,-8v0,-20,-26,-17,-40,-12r-11,-12r25,-36v-64,-4,-102,-39,-102,-110v0,-88,53,-162,146,-162v63,0,114,29,116,97"},"\u00e9":{"d":"264,-112r-190,0v-6,40,12,65,56,66v28,0,43,-20,53,-36r71,0v-22,58,-60,89,-134,89v-69,0,-115,-39,-115,-113v0,-82,55,-160,143,-160v86,0,136,63,116,154xm81,-157r119,0v0,-26,-6,-55,-48,-55v-40,0,-61,26,-71,55xm266,-362r-70,72r-50,0r44,-72r76,0","w":287},"\u00ea":{"d":"264,-112r-190,0v-6,40,12,65,56,66v28,0,43,-20,53,-36r71,0v-22,58,-60,89,-134,89v-69,0,-115,-39,-115,-113v0,-82,55,-160,143,-160v86,0,136,63,116,154xm81,-157r119,0v0,-26,-6,-55,-48,-55v-40,0,-61,26,-71,55xm84,-290r68,-72r63,0r41,72r-50,0r-24,-41r-44,41r-54,0","w":287},"\u00eb":{"d":"264,-112r-190,0v-6,40,12,65,56,66v28,0,43,-20,53,-36r71,0v-22,58,-60,89,-134,89v-69,0,-115,-39,-115,-113v0,-82,55,-160,143,-160v86,0,136,63,116,154xm81,-157r119,0v0,-26,-6,-55,-48,-55v-40,0,-61,26,-71,55xm186,-298r12,-59r65,0r-12,59r-65,0xm88,-298r12,-59r65,0r-12,59r-65,0","w":287},"\u00e8":{"d":"264,-112r-190,0v-6,40,12,65,56,66v28,0,43,-20,53,-36r71,0v-22,58,-60,89,-134,89v-69,0,-115,-39,-115,-113v0,-82,55,-160,143,-160v86,0,136,63,116,154xm81,-157r119,0v0,-26,-6,-55,-48,-55v-40,0,-61,26,-71,55xm167,-362r44,72r-50,0r-70,-72r76,0","w":287},"\u00ee":{"d":"120,-258r-54,258r-72,0r55,-258r71,0xm4,-290r69,-72r63,0r42,72r-50,0r-26,-41r-43,41r-55,0","w":129},"\u00ef":{"d":"120,-258r-54,258r-72,0r55,-258r71,0xm106,-298r12,-59r66,0r-12,59r-66,0xm8,-298r12,-59r66,0r-12,59r-66,0","w":129},"\u00f4":{"d":"5,-104v0,-88,57,-162,149,-162v71,0,120,36,120,110v0,91,-56,163,-150,163v-72,0,-119,-37,-119,-111xm76,-104v0,30,17,58,51,58v53,0,76,-65,76,-109v0,-34,-15,-57,-52,-57v-52,0,-75,64,-75,108xm88,-290r68,-72r64,0r41,72r-50,0r-25,-41r-44,41r-54,0","w":296},"\u00fb":{"d":"293,-258r-54,258r-68,0v2,-11,8,-26,7,-36v-36,58,-184,62,-166,-26r40,-196r70,0r-36,182v0,16,18,27,34,27v93,0,76,-133,102,-209r71,0xm92,-290r69,-72r63,0r42,72r-50,0r-26,-41r-43,41r-55,0","w":305},"\u00fc":{"d":"293,-258r-54,258r-68,0v2,-11,8,-26,7,-36v-36,58,-184,62,-166,-26r40,-196r70,0r-36,182v0,16,18,27,34,27v93,0,76,-133,102,-209r71,0xm201,-298r12,-59r65,0r-12,59r-65,0xm103,-298r12,-59r65,0r-12,59r-65,0","w":305},"\u00f9":{"d":"293,-258r-54,258r-68,0v2,-11,8,-26,7,-36v-36,58,-184,62,-166,-26r40,-196r70,0r-36,182v0,16,18,27,34,27v93,0,76,-133,102,-209r71,0xm176,-362r44,72r-50,0r-70,-72r76,0","w":305},"\u00ff":{"d":"272,-258r-165,294v-26,55,-71,59,-139,52r12,-58v10,0,20,2,30,2v34,0,36,-20,46,-34r-46,-256r74,0r23,184r89,-184r76,0xm154,-298r12,-59r66,0r-12,59r-66,0xm56,-298r12,-59r66,0r-12,59r-66,0","w":259,"k":{",":28,".":28}},"\u20ac":{"d":"53,-228v20,-102,143,-179,239,-101r-30,57v-51,-53,-113,-31,-138,44r122,0r-18,36r-114,0r-2,22r106,0r-17,36r-89,0v7,99,83,99,150,49r-12,74v-26,12,-54,19,-80,19v-83,0,-123,-59,-128,-142r-38,0r18,-36r20,0r4,-22r-29,0r17,-36r19,0"},"\u00a0":{"w":139}}});

/* jquery.linkify: (http://www.reload-vivaki.com/blog/wp-content/themes/reload/javascripts/jquery.linkify-1.0-min.js) */
// encoding: utf-8
// $.fn.linkify 1.0 - MIT/GPL Licensed - More info: http://github.com/maranomynet/linkify/
(function(b){var x=/(^|["'(\s]|&lt;)(www\..+?\..+?)((?:[:?]|\.+)?(?:\s|$)|&gt;|[)"',])/g,y=/(^|["'(\s]|&lt;)((?:(?:https?|ftp):\/\/|mailto:).+?)((?:[:?]|\.+)?(?:\s|$)|&gt;|[)"',])/g,z=function(h){return h.replace(x,'$1<a href="<``>://$2">$2</a>$3').replace(y,'$1<a href="$2">$2</a>$3').replace(/"<``>/g,'"http')},s=b.fn.linkify=function(c){if(!b.isPlainObject(c)){c={use:(typeof c=='string')?c:undefined,handleLinks:b.isFunction(c)?c:arguments[1]}}var d=c.use,k=s.plugins||{},l=[z],f,m=[],n=c.handleLinks;if(d==undefined||d=='*'){for(var i in k){l.push(k[i])}}else{d=b.isArray(d)?d:b.trim(d).split(/ *, */);var o,i;for(var p=0,A=d.length;p<A;p++){i=d[p];o=k[i];if(o){l.push(o)}}}this.each(function(){var h=this.childNodes,t=h.length;while(t--){var e=h[t];if(e.nodeType==3){var a=e.nodeValue;if(a.length>1&&/\S/.test(a)){var q,r;f=f||b('<div/>')[0];f.innerHTML='';f.appendChild(e.cloneNode(false));var u=f.childNodes;for(var v=0,g;(g=l[v]);v++){var w=u.length,j;while(w--){j=u[w];if(j.nodeType==3){a=j.nodeValue;if(a.length>1&&/\S/.test(a)){r=a;a=a.replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;');a=b.isFunction(g)?g(a):a.replace(g.re,g.tmpl);q=q||r!=a;r!=a&&b(j).after(a).remove()}}}}a=f.innerHTML;if(n){a=b('<div/>').html(a);m=m.concat(a.find('a').toArray().reverse());a=a.contents()}q&&b(e).after(a).remove()}}else if(e.nodeType==1&&!/^(a|button|textarea)$/i.test(e.tagName)){arguments.callee.call(e)}}});n&&n(b(m.reverse()));return this};s.plugins={mailto:{re:/(^|["'(\s]|&lt;)([^"'(\s&]+?@.+\.[a-z]{2,7})(([:?]|\.+)?(\s|$)|&gt;|[)"',])/gi,tmpl:'$1<a href="mailto:$2">$2</a>$3'}}})(jQuery);

/* jquery.sparkline: (http://www.reload-vivaki.com/blog/wp-content/themes/reload/javascripts/jquery.sparkline.js) */
/**
*
* jquery.sparkline.js
*
* v1.6
* (c) Splunk, Inc 
* Contact: Gareth Watts (gareth@splunk.com)
* http://omnipotent.net/jquery.sparkline/
*
* Generates inline sparkline charts from data supplied either to the method
* or inline in HTML
* 
* Compatible with Internet Explorer 6.0+ and modern browsers equipped with the canvas tag
* (Firefox 2.0+, Safari, Opera, etc)
*
* License: New BSD License
* 
* Copyright (c) 2010, Splunk Inc.
* All rights reserved.
* 
* Redistribution and use in source and binary forms, with or without modification, 
* are permitted provided that the following conditions are met:
* 
*     * Redistributions of source code must retain the above copyright notice, 
*       this list of conditions and the following disclaimer.
*     * Redistributions in binary form must reproduce the above copyright notice, 
*       this list of conditions and the following disclaimer in the documentation 
*       and/or other materials provided with the distribution.
*     * Neither the name of Splunk Inc nor the names of its contributors may 
*       be used to endorse or promote products derived from this software without 
*       specific prior written permission.
* 
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT 
* SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 
* OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* 
*
* Usage: 
*  $(selector).sparkline(values, options)
*
* If values is undefined or set to 'html' then the data values are read from the specified tag:
*   <p>Sparkline: <span class="sparkline">1,4,6,6,8,5,3,5</span></p>
*   $('.sparkline').sparkline();
* There must be no spaces in the enclosed data set
*
* Otherwise values must be an array of numbers or null values
*    <p>Sparkline: <span id="sparkline1">This text replaced if the browser is compatible</span></p>
*    $('#sparkline1').sparkline([1,4,6,6,8,5,3,5])
*    $('#sparkline2').sparkline([1,4,6,null,null,5,3,5])
*
* Values can also be specified in an HTML comment, or as a values attribute:
*    <p>Sparkline: <span class="sparkline"><!--1,4,6,6,8,5,3,5 --></span></p>
*    <p>Sparkline: <span class="sparkline" values="1,4,6,6,8,5,3,5"></span></p>
*    $('.sparkline').sparkline();
*
* For line charts, x values can also be specified:
*   <p>Sparkline: <span class="sparkline">1:1,2.7:4,3.4:6,5:6,6:8,8.7:5,9:3,10:5</span></p>
*    $('#sparkline1').sparkline([ [1,1], [2.7,4], [3.4,6], [5,6], [6,8], [8.7,5], [9,3], [10,5] ])
*
* By default, options should be passed in as teh second argument to the sparkline function:
*   $('.sparkline').sparkline([1,2,3,4], {type: 'bar'})
*
* Options can also be set by passing them on the tag itself.  This feature is disabled by default though
* as there's a slight performance overhead:
*   $('.sparkline').sparkline([1,2,3,4], {enableTagOptions: true})
*   <p>Sparkline: <span class="sparkline" sparkType="bar" sparkBarColor="red">loading</span></p>
* Prefix all options supplied as tag attribute with "spark" (configurable by setting tagOptionPrefix)
*
* Supported options:
*   lineColor - Color of the line used for the chart
*   fillColor - Color used to fill in the chart - Set to '' or false for a transparent chart
*   width - Width of the chart - Defaults to 3 times the number of values in pixels
*   height - Height of the chart - Defaults to the height of the containing element
*   chartRangeMin - Specify the minimum value to use for the Y range of the chart - Defaults to the minimum value supplied
*   chartRangeMax - Specify the maximum value to use for the Y range of the chart - Defaults to the maximum value supplied
*   chartRangeClip - Clip out of range values to the max/min specified by chartRangeMin and chartRangeMax
*   chartRangeMinX - Specify the minimum value to use for the X range of the chart - Defaults to the minimum value supplied
*   chartRangeMaxX - Specify the maximum value to use for the X range of the chart - Defaults to the maximum value supplied
*   composite - If true then don't erase any existing chart attached to the tag, but draw
*           another chart over the top - Note that width and height are ignored if an
*           existing chart is detected.
*   tagValuesAttribute - Name of tag attribute to check for data values - Defaults to 'values'
*   enableTagOptions - Whether to check tags for sparkline options 
*   tagOptionPrefix - Prefix used for options supplied as tag attributes - Defaults to 'spark'
*
* There are 7 types of sparkline, selected by supplying a "type" option of 'line' (default),
* 'bar', 'tristate', 'bullet', 'discrete', 'pie' or 'box'
*    line - Line chart.  Options:
*       spotColor - Set to '' to not end each line in a circular spot
*       minSpotColor - If set, color of spot at minimum value
*       maxSpotColor - If set, color of spot at maximum value
*       spotRadius - Radius in pixels
*       lineWidth - Width of line in pixels
*       normalRangeMin 
*       normalRangeMax - If set draws a filled horizontal bar between these two values marking the "normal"
*                      or expected range of values
*       normalRangeColor - Color to use for the above bar
*       drawNormalOnTop - Draw the normal range above the chart fill color if true
*       defaultPixelsPerValue - Defaults to 3 pixels of width for each value in the chart
*
*   bar - Bar chart.  Options:
*       barColor - Color of bars for postive values
*       negBarColor - Color of bars for negative values
*       zeroColor - Color of bars with zero values
*       nullColor - Color of bars with null values - Defaults to omitting the bar entirely
*       barWidth - Width of bars in pixels
*       colorMap - Optional mappnig of values to colors to override the *BarColor values above
*                  can be an Array of values to control the color of individual bars
*       barSpacing - Gap between bars in pixels
*       zeroAxis - Centers the y-axis around zero if true
*
*   tristate - Charts values of win (>0), lose (<0) or draw (=0)
*       posBarColor - Color of win values
*       negBarColor - Color of lose values
*       zeroBarColor - Color of draw values
*       barWidth - Width of bars in pixels
*       barSpacing - Gap between bars in pixels
*       colorMap - Optional mappnig of values to colors to override the *BarColor values above
*                  can be an Array of values to control the color of individual bars
*
*   discrete - Options:
*       lineHeight - Height of each line in pixels - Defaults to 30% of the graph height
*       thesholdValue - Values less than this value will be drawn using thresholdColor instead of lineColor
*       thresholdColor
*
*   bullet - Values for bullet graphs msut be in the order: target, performance, range1, range2, range3, ...
*       options:
*       targetColor - The color of the vertical target marker
*       targetWidth - The width of the target marker in pixels
*       performanceColor - The color of the performance measure horizontal bar
*       rangeColors - Colors to use for each qualitative range background color
*
*   pie - Pie chart. Options:
*       sliceColors - An array of colors to use for pie slices
*       offset - Angle in degrees to offset the first slice - Try -90 or +90
*
*   box - Box plot. Options:
*       raw - Set to true to supply pre-computed plot points as values
*             values should be: low_outlier, low_whisker, q1, median, q3, high_whisker, high_outlier
*             When set to false you can supply any number of values and the box plot will
*             be computed for you.  Default is false.
*       showOutliers - Set to true (default) to display outliers as circles
*       outlierIRQ - Interquartile range used to determine outliers.  Default 1.5
*       boxLineColor - Outline color of the box
*       boxFillColor - Fill color for the box
*       whiskerColor - Line color used for whiskers
*       outlierLineColor - Outline color of outlier circles
*       outlierFillColor - Fill color of the outlier circles
*       spotRadius - Radius of outlier circles
*       medianColor - Line color of the median line
*       target - Draw a target cross hair at the supplied value (default undefined)
*      
*   
*       
*   Examples:
*   $('#sparkline1').sparkline(myvalues, { lineColor: '#f00', fillColor: false });
*   $('.barsparks').sparkline('html', { type:'bar', height:'40px', barWidth:5 });
*   $('#tristate').sparkline([1,1,-1,1,0,0,-1], { type:'tristate' }):
*   $('#discrete').sparkline([1,3,4,5,5,3,4,5], { type:'discrete' });
*   $('#bullet').sparkline([10,12,12,9,7], { type:'bullet' });
*   $('#pie').sparkline([1,1,2], { type:'pie' });
*/
(function($) {
    /*
     * Default configuration settings
     */
    var defaults = {
        // Settings common to most/all chart types
        common: {
            type : 'line',
            lineColor : '#00f',
            fillColor : '#cdf',
            defaultPixelsPerValue : 3,
            width : 'auto', 
            height : 'auto',
            composite : false,
            tagValuesAttribute: 'values',
            tagOptionsPrefix: 'spark',
            enableTagOptions: false
        },
        // Defaults for line charts
        line: {
            spotColor : '#f80',
            spotRadius : 1.5,
            minSpotColor : '#f80',
            maxSpotColor : '#f80',
            lineWidth: 1, 
            normalRangeMin : undefined,
            normalRangeMax : undefined,
            normalRangeColor : '#ccc',
            drawNormalOnTop: false,
            chartRangeMin : undefined,
            chartRangeMax : undefined,
            chartRangeMinX : undefined,
            chartRangeMaxX : undefined
        },
        // Defaults for bar charts
        bar: {
            barColor : '#00f',
            negBarColor : '#f44',
            zeroColor: undefined,
            nullColor: undefined,
            zeroAxis : undefined,
            barWidth : 4,
            barSpacing : 1,
            chartRangeMax: undefined,
            chartRangeMin: undefined,
            chartRangeClip: false,
            colorMap : undefined
        },
        // Defaults for tristate charts
        tristate: {
            barWidth : 4,
            barSpacing : 1,
            posBarColor: '#6f6',
            negBarColor : '#f44',
            zeroBarColor : '#999',
            colorMap : {}
        },
        // Defaults for discrete charts
        discrete: {
            lineHeight: 'auto',
            thresholdColor: undefined,
            thresholdValue : 0,
            chartRangeMax: undefined,
            chartRangeMin: undefined,
            chartRangeClip: false
        },
        // Defaults for bullet charts
        bullet: {
            targetColor : 'red',
            targetWidth : 3, // width of the target bar in pixels
            performanceColor : 'blue',
            rangeColors : ['#D3DAFE', '#A8B6FF', '#7F94FF' ],
            base : undefined // set this to a number to change the base start number
        },
        // Defaults for pie charts
        pie: {
            sliceColors : ['#f00', '#0f0', '#00f']
        },
        // Defaults for box plots
        box: {
            raw: false,
            boxLineColor: 'black',
            boxFillColor: '#cdf',
            whiskerColor: 'black',
            outlierLineColor: '#333',
            outlierFillColor: 'white',
            medianColor: 'red',
            showOutliers: true,
            outlierIQR: 1.5,
            spotRadius: 1.5,
            target: undefined,
            targetColor: '#4a2',
            chartRangeMax: undefined,
            chartRangeMin: undefined
        }
    };
    // Provide a cross-browser interface to a few simple drawing primitives
    var VCanvas_base, VCanvas_canvas, VCanvas_vml;
    $.fn.simpledraw = function(width, height, use_existing) {
        if (use_existing && this[0].VCanvas) {
            return this[0].VCanvas;
        }
        if (width === undefined) { 
            width=$(this).innerWidth();
        }
        if (height === undefined) {
            height=$(this).innerHeight();
        }
        if ($.browser.hasCanvas) {
            return new VCanvas_canvas(width, height, this);
        } else if ($.browser.msie) {
            return new VCanvas_vml(width, height, this);
        } else {
            return false;
        }
    };
    var pending = [];
    $.fn.sparkline = function(uservalues, userOptions) {
        return this.each(function() {
            var options = new $.fn.sparkline.options(this, userOptions);
            var render = function() {
                var values, width, height;
                if (uservalues==='html' || uservalues===undefined) {
                    var vals = this.getAttribute(options.get('tagValuesAttribute'));
                    if (vals===undefined || vals===null) {
                        vals = $(this).html();
                    }
                    values = vals.replace(/(^\s*<!--)|(-->\s*$)|\s+/g, '').split(',');
                } else {
                    values = uservalues;
                }
                width = options.get('width')=='auto' ? values.length*options.get('defaultPixelsPerValue') : options.get('width');
                if (options.get('height') == 'auto') {
                    if (!options.get('composite') || !this.VCanvas) {
                        // must be a better way to get the line height
                        var tmp = document.createElement('span');
                        tmp.innerHTML = 'a';
                        $(this).html(tmp);
                        height = $(tmp).innerHeight();
                        $(tmp).remove();
                    }
                } else {
                    height = options.get('height');
                }
                $.fn.sparkline[options.get('type')].call(this, values, options, width, height);
            };
            // jQuery 1.3.0 completely changed the meaning of :hidden :-/
            if (($(this).html() && $(this).is(':hidden')) || ($.fn.jquery < "1.3.0" && $(this).parents().is(':hidden')) || !$(this).parents('body').length) {
                pending.push([this, render]);
            } else {
                render.call(this);
            }
        });
    };
    $.fn.sparkline.defaults = defaults;
    $.sparkline_display_visible = function() {
        for (var i=pending.length-1; i>=0; i--) {
            var el = pending[i][0];
            if ($(el).is(':visible') && !$(el).parents().is(':hidden')) {
                pending[i][1].call(el);
                pending.splice(i, 1);
            }
        }
    };
    /**
     * User option handler
     */
    var UNSET_OPTION = {};
    var normalizeValue = function(val) {
        switch(val) {
            case 'undefined':
                val = undefined;
                break;
            case 'null':
                val = null;
                break;
            case 'true':
                val = true;
                break;
            case 'false':
                val = false;
                break;
            default:
                var nf = parseFloat(val);
                if (val == nf) {
                    val = nf;
                }
        }
        return val;
    };
    $.fn.sparkline.options = function(tag, userOptions) {
        var extendedOptions;
        this.userOptions = userOptions = userOptions || {};
        this.tag = tag;
        this.tagValCache = {};
        var defaults = $.fn.sparkline.defaults;
        var base = defaults.common;
        this.tagOptionsPrefix = userOptions.enableTagOptions && (userOptions.tagOptionsPrefix || base.tagOptionsPrefix);
        var tagOptionType = this.getTagSetting('type');
        if (tagOptionType === UNSET_OPTION) {
            extendedOptions = defaults[userOptions.type || base.type];
        } else {
            extendedOptions = defaults[tagOptionType];
        }
        this.mergedOptions = $.extend({}, base, extendedOptions, userOptions);
    };
    $.fn.sparkline.options.prototype.getTagSetting = function(key) {
        var val, i, prefix = this.tagOptionsPrefix;
        if (prefix === false || prefix === undefined) {
            return UNSET_OPTION;
        }
        if (this.tagValCache.hasOwnProperty(key)) {
            val = this.tagValCache.key;
        } else {
            val = this.tag.getAttribute(prefix + key);
            if (val === undefined || val === null) {
                val = UNSET_OPTION;
            } else if (val.substr(0, 1) == '[') {
                val = val.substr(1, val.length-2).split(',');
                for(i=val.length; i--;) {
                    val[i] = normalizeValue(val[i].replace(/(^\s*)|(\s*$)/g, ''));
                }
            } else if (val.substr(0, 1) == '{') {
                var pairs= val.substr(1, val.length-2).split(',');
                val = {};
                for(i=pairs.length; i--;) {
                    var keyval = pairs[i].split(':', 2);
                    val[keyval[0].replace(/(^\s*)|(\s*$)/g, '')] = normalizeValue(keyval[1].replace(/(^\s*)|(\s*$)/g, ''));
                }
            } else {
                val = normalizeValue(val);
            }
            this.tagValCache.key = val;
        }
        return val; 
    };
    $.fn.sparkline.options.prototype.get = function(key) {
        var tagOption = this.getTagSetting(key);
        if (tagOption !== UNSET_OPTION) {
            return tagOption;
        }
        return this.mergedOptions[key];
    };
    /**
     * Line charts
     */
    $.fn.sparkline.line = function(values, options, width, height) {
        var xvalues = [], yvalues = [], yminmax = [];
        for (var i=0; i<values.length; i++) {
            var val = values[i];
            var isstr = typeof(values[i])=='string';
            var isarray = typeof(values[i])=='object' && values[i] instanceof Array;
            var sp = isstr && values[i].split(':');
            if (isstr && sp.length == 2) { // x:y
                xvalues.push(Number(sp[0]));
                yvalues.push(Number(sp[1]));
                yminmax.push(Number(sp[1]));
            } else if (isarray) {
                xvalues.push(val[0]);
                yvalues.push(val[1]);
                yminmax.push(val[1]);
            } else {
                xvalues.push(i);
                if (values[i]===null || values[i]=='null') {
                    yvalues.push(null);
                } else {
                    yvalues.push(Number(val));
                    yminmax.push(Number(val));
                }
            }
        }
        if (options.get('xvalues')) {
            xvalues = options.get('xvalues');
        }
        var maxy = Math.max.apply(Math, yminmax);
        var maxyval = maxy;
        var miny = Math.min.apply(Math, yminmax);
        var minyval = miny;
        var maxx = Math.max.apply(Math, xvalues);
        var minx = Math.min.apply(Math, xvalues);
        var normalRangeMin = options.get('normalRangeMin');
        var normalRangeMax = options.get('normalRangeMax');
        if (normalRangeMin!==undefined) {
            if (normalRangeMin<miny) {
                miny = normalRangeMin;
            }
            if (normalRangeMax>maxy) {
                maxy = normalRangeMax;
            }
        }
        if (options.get('chartRangeMin')!==undefined && (options.get('chartRangeClip') ||  options.get('chartRangeMin')<miny)) {
            miny = options.get('chartRangeMin');
        }
        if (options.get('chartRangeMax')!==undefined && (options.get('chartRangeClip') || options.get('chartRangeMax')>maxy)) {
            maxy = options.get('chartRangeMax');
        }
        if (options.get('chartRangeMinX')!==undefined && (options.get('chartRangeClipX') || options.get('chartRangeMinX')<minx)) {
            minx = options.get('chartRangeMinX');
        }
        if (options.get('chartRangeMaxX')!==undefined && (options.get('chartRangeClipX') || options.get('chartRangeMaxX')>maxx)) {
            maxx = options.get('chartRangeMaxX');
        }
        var rangex = maxx-minx === 0 ? 1 : maxx-minx;
        var rangey = maxy-miny === 0 ? 1 : maxy-miny;
        var vl = yvalues.length-1;
        if (vl<1) {
            this.innerHTML = '';
            return;
        }
        var target = $(this).simpledraw(width, height, options.get('composite'));
        if (target) {
            var canvas_width = target.pixel_width;
            var canvas_height = target.pixel_height;
            var canvas_top = 0;
            var canvas_left = 0;
            var spotRadius = options.get('spotRadius');
            if (spotRadius && (canvas_width < (spotRadius*4) || canvas_height < (spotRadius*4))) {
                spotRadius = 0;
            }
            if (spotRadius) {
                // adjust the canvas size as required so that spots will fit
                if (options.get('minSpotColor') || (options.get('spotColor') && yvalues[vl]==miny)) {
                    canvas_height -= Math.ceil(spotRadius);
                }
                if (options.get('maxSpotColor') || (options.get('spotColor') && yvalues[vl]==maxy)) {
                    canvas_height -= Math.ceil(spotRadius);
                    canvas_top += Math.ceil(spotRadius);
                }
                if (options.get('minSpotColor') || options.get('maxSpotColor') && (yvalues[0]==miny || yvalues[0]==maxy)) {
                    canvas_left += Math.ceil(spotRadius);
                    canvas_width -= Math.ceil(spotRadius);
                }
                if (options.get('spotColor') || (options.get('minSpotColor') || options.get('maxSpotColor') && (yvalues[vl]==miny||yvalues[vl]==maxy))) {
                    canvas_width -= Math.ceil(spotRadius);
                }
            }
            canvas_height--;
            var drawNormalRange = function() {
                if (normalRangeMin!==undefined) {
                    var ytop = canvas_top+Math.round(canvas_height-(canvas_height*((normalRangeMax-miny)/rangey)));
                    var height = Math.round((canvas_height*(normalRangeMax-normalRangeMin))/rangey);
                    target.drawRect(canvas_left, ytop, canvas_width, height, undefined, options.get('normalRangeColor'));
                }
            };
            if (!options.get('drawNormalOnTop')) {
                drawNormalRange();
            }
            var path = [];
            var paths = [path];
            var x, y, vlen=yvalues.length;
            for(i=0; i<vlen; i++) {
                x=xvalues[i];
                y=yvalues[i];
                if (y===null) {
                    if (i) {
                        if (yvalues[i-1]!==null) {
                            path = [];
                            paths.push(path);
                        }
                    }
                } else {
                    if (y < miny) {
                        y=miny;
                    }
                    if (y > maxy) {
                        y=maxy;
                    }
                    if (!path.length) {
                        // previous value was null
                        path.push([canvas_left+Math.round((x-minx)*(canvas_width/rangex)), canvas_top+canvas_height]);
                    }
                    path.push([canvas_left+Math.round((x-minx)*(canvas_width/rangex)), canvas_top+Math.round(canvas_height-(canvas_height*((y-miny)/rangey)))]);
                }
            }
            var lineshapes = [];
            var fillshapes = [];
            var plen=paths.length;
            for(i=0; i<plen; i++) {
                path = paths[i];
                if (!path.length) {
                    continue; // last value was null
                }
                if (options.get('fillColor')) {
                    path.push([path[path.length-1][0], canvas_top+canvas_height-1]);
                    fillshapes.push(path.slice(0));
                    path.pop();
                }
                // if there's only a single point in this path, then we want to display it as a vertical line
                // which means we keep path[0]  as is
                if (path.length>2) {
                    // else we want the first value 
                    path[0] = [ path[0][0], path[1][1] ];
                }
                lineshapes.push(path);
            }
            // draw the fill first, then optionally the normal range, then the line on top of that
            plen = fillshapes.length;
            for(i=0; i<plen; i++) {
                target.drawShape(fillshapes[i], undefined, options.get('fillColor'));
            }
            if (options.get('drawNormalOnTop')) {
                drawNormalRange();
            }
            plen = lineshapes.length;
            for(i=0; i<plen; i++) {
                target.drawShape(lineshapes[i], options.get('lineColor'), undefined, options.get('lineWidth'));
            }
            if (spotRadius && options.get('spotColor')) {
                target.drawCircle(canvas_left+Math.round(xvalues[xvalues.length-1]*(canvas_width/rangex)),  canvas_top+Math.round(canvas_height-(canvas_height*((yvalues[vl]-miny)/rangey))), spotRadius, undefined, options.get('spotColor'));
            }
            if (maxy!=minyval) {
                if (spotRadius && options.get('minSpotColor')) {
                    x = xvalues[$.inArray(minyval, yvalues)];
                    target.drawCircle(canvas_left+Math.round((x-minx)*(canvas_width/rangex)),  canvas_top+Math.round(canvas_height-(canvas_height*((minyval-miny)/rangey))), spotRadius, undefined, options.get('minSpotColor'));
                }
                if (spotRadius && options.get('maxSpotColor')) {
                    x = xvalues[$.inArray(maxyval, yvalues)];
                    target.drawCircle(canvas_left+Math.round((x-minx)*(canvas_width/rangex)),  canvas_top+Math.round(canvas_height-(canvas_height*((maxyval-miny)/rangey))), spotRadius, undefined, options.get('maxSpotColor'));
                }
            }
        } else {
            // Remove the tag contents if sparklines aren't supported
            this.innerHTML = '';
        }
    };
    /** 
     * Bar charts
     */
    $.fn.sparkline.bar = function(values, options, width, height) {
        width = (values.length * options.get('barWidth')) + ((values.length-1) * options.get('barSpacing'));
        var num_values = [];
        for(var i=0, vlen=values.length; i<vlen; i++) {
            if (values[i]=='null' || values[i]===null) {
                values[i] = null;
            } else {
                values[i] = Number(values[i]);
                num_values.push(Number(values[i]));
            }
        }
        var max = Math.max.apply(Math, num_values),
            min = Math.min.apply(Math, num_values);
        if (options.get('chartRangeMin')!==undefined && (options.get('chartRangeClip') || options.get('chartRangeMin')<min)) {
            min = options.get('chartRangeMin');
        }
        if (options.get('chartRangeMax')!==undefined && (options.get('chartRangeClip') || options.get('chartRangeMax')>max)) {
            max = options.get('chartRangeMax');
        }
        var zeroAxis = options.get('zeroAxis');
        if (zeroAxis === undefined) {
            zeroAxis = min<0;
        }
        var range = max-min === 0 ? 1 : max-min;
        var colorMapByIndex, colorMapByValue;
        if ($.isArray(options.get('colorMap'))) {
            colorMapByIndex = options.get('colorMap');
            colorMapByValue = null;
        } else {
            colorMapByIndex = null;
            colorMapByValue = options.get('colorMap');
        }
        var target = $(this).simpledraw(width, height, options.get('composite'));
        if (target) {
            var color,
                canvas_height = target.pixel_height,
                yzero = min<0 && zeroAxis ? canvas_height-Math.round(canvas_height * (Math.abs(min)/range))-1 : canvas_height-1;
            for(i=values.length; i--;) {
                var x = i*(options.get('barWidth')+options.get('barSpacing')),
                    y, 
                    val = values[i];
                if (val===null) {
                    if (options.get('nullColor')) {
                        color = options.get('nullColor');
                        val = (zeroAxis && min<0) ? 0 : min;
                        height = 1;
                        y = (zeroAxis && min<0) ? yzero : canvas_height - height;
                    } else {
                        continue;
                    }
                } else {
                    if (val < min) {
                        val=min;
                    }
                    if (val > max) {
                        val=max;
                    }
                    color = (val < 0) ? options.get('negBarColor') : options.get('barColor');
                    if (zeroAxis && min<0) {
                        height = Math.round(canvas_height*((Math.abs(val)/range)))+1;
                        y = (val < 0) ? yzero : yzero-height;
                    } else {
                        height = Math.round(canvas_height*((val-min)/range))+1;
                        y = canvas_height-height;
                    }
                    if (val===0 && options.get('zeroColor')!==undefined) {
                        color = options.get('zeroColor');
                    }
                    if (colorMapByValue && colorMapByValue[val]) {
                        color = colorMapByValue[val];
                    } else if (colorMapByIndex && colorMapByIndex.length>i) {
                        color = colorMapByIndex[i];
                    }
                    if (color===null) {
                        continue;
                    }
                }
                target.drawRect(x, y, options.get('barWidth')-1, height-1, color, color);
            }
        } else {
            // Remove the tag contents if sparklines aren't supported
            this.innerHTML = '';
        }
    };
    /**
     * Tristate charts
     */
    $.fn.sparkline.tristate = function(values, options, width, height) {
        values = $.map(values, Number);
        width = (values.length * options.get('barWidth')) + ((values.length-1) * options.get('barSpacing'));
        var colorMapByIndex, colorMapByValue;
        if ($.isArray(options.get('colorMap'))) {
            colorMapByIndex = options.get('colorMap');
            colorMapByValue = null;
        } else {
            colorMapByIndex = null;
            colorMapByValue = options.get('colorMap');
        }
        var target = $(this).simpledraw(width, height, options.get('composite'));
        if (target) {
            var canvas_height = target.pixel_height,
                half_height = Math.round(canvas_height/2);
            for(var i=values.length; i--;) {
                var x = i*(options.get('barWidth')+options.get('barSpacing')),
                    y, color;
                if (values[i] < 0) {
                    y = half_height;
                    height = half_height-1;
                    color = options.get('negBarColor');
                } else if (values[i] > 0) {
                    y = 0;
                    height = half_height-1;
                    color = options.get('posBarColor');
                } else {
                    y = half_height-1;
                    height = 2;
                    color = options.get('zeroBarColor');
                }
                if (colorMapByValue && colorMapByValue[values[i]]) {
                    color = colorMapByValue[values[i]];
                } else if (colorMapByIndex && colorMapByIndex.length>i) {
                    color = colorMapByIndex[i];
                }
                if (color===null) {
                    continue;
                }
                target.drawRect(x, y, options.get('barWidth')-1, height-1, color, color);
            }
        } else {
            // Remove the tag contents if sparklines aren't supported
            this.innerHTML = '';
        }
    };
    /** 
     * Discrete charts
     */
    $.fn.sparkline.discrete = function(values, options, width, height) {
        values = $.map(values, Number);
        width = options.get('width')=='auto' ? values.length*2 : width;
        var interval = Math.floor(width / values.length);
        var target = $(this).simpledraw(width, height, options.get('composite'));
        if (target) {
            var canvas_height = target.pixel_height,
                line_height = options.get('lineHeight') == 'auto' ? Math.round(canvas_height * 0.3) : options.get('lineHeight'),
                pheight = canvas_height - line_height,
                min = Math.min.apply(Math, values),
                max = Math.max.apply(Math, values);
            if (options.get('chartRangeMin')!==undefined && (options.get('chartRangeClip') || options.get('chartRangeMin')<min)) {
                min = options.get('chartRangeMin');
            }
            if (options.get('chartRangeMax')!==undefined && (options.get('chartRangeClip')  || options.get('chartRangeMax')>max)) {
                max = options.get('chartRangeMax');
            }
            var range = max-min;
            for(var i=values.length; i--;) {
                var val = values[i];
                if (val < min) {
                    val=min;
                }
                if (val > max) {
                    val=max;
                }
                var x = (i*interval),
                    ytop = Math.round(pheight-pheight*((val-min)/range));
                target.drawLine(x, ytop, x, ytop+line_height, (options.get('thresholdColor') && val < options.get('thresholdValue')) ? options.get('thresholdColor') : options.get('lineColor'));
            }
        }  else {
            // Remove the tag contents if sparklines aren't supported
            this.innerHTML = '';
        }
    };
    /**
     * Bullet charts
     */
    $.fn.sparkline.bullet = function(values, options, width, height) {
        values = $.map(values, Number);
        // target, performance, range1, range2, range3
        width = options.get('width')=='auto' ? '4.0em' : width;
        var target = $(this).simpledraw(width, height, options.get('composite'));
        if (target && values.length>1) {
            var canvas_width = target.pixel_width-Math.ceil(options.get('targetWidth')/2),
                canvas_height = target.pixel_height,
                min = Math.min.apply(Math, values),
                max = Math.max.apply(Math, values);
            if (options.get('base') === undefined) {
                min = min < 0 ? min : 0;
            } else {
                min = options.get('base');
            }
            var range = max-min;
            // draw range values
            for(var i=2, vlen=values.length; i<vlen; i++) {
                var rangeval = values[i],
                    rangewidth = Math.round(canvas_width*((rangeval-min)/range));
                target.drawRect(0, 0, rangewidth-1, canvas_height-1, options.get('rangeColors')[i-2], options.get('rangeColors')[i-2]);
            }
            // draw the performance bar
            var perfval = values[1],
                perfwidth = Math.round(canvas_width*((perfval-min)/range));
            target.drawRect(0, Math.round(canvas_height*0.3), perfwidth-1, Math.round(canvas_height*0.4)-1, options.get('performanceColor'), options.get('performanceColor'));
            // draw the target line
            var targetval = values[0],
                x = Math.round(canvas_width*((targetval-min)/range)-(options.get('targetWidth')/2)),
                targettop = Math.round(canvas_height*0.10),
                targetheight = canvas_height-(targettop*2);
            target.drawRect(x, targettop, options.get('targetWidth')-1, targetheight-1, options.get('targetColor'), options.get('targetColor'));
        }  else {
            // Remove the tag contents if sparklines aren't supported
            this.innerHTML = '';
        }
    };
    /**
     * Pie charts
     */
    $.fn.sparkline.pie = function(values, options, width, height) {
        values = $.map(values, Number);
        width = options.get('width')=='auto' ? height : width;
        var target = $(this).simpledraw(width, height, options.get('composite'));
        if (target && values.length>1) {
            var canvas_width = target.pixel_width,
                canvas_height = target.pixel_height,
                radius = Math.floor(Math.min(canvas_width, canvas_height)/2),
                total = 0,
                next = 0,
                circle = 2*Math.PI;
            for(var i=values.length; i--;) {
                total += values[i];
            }
            if (options.get('offset')) {
                next += (2*Math.PI)*(options.get('offset')/360);
            }
            var vlen = values.length;
            for(i=0; i<vlen; i++) {
                var start = next;
                var end = next;
                if (total > 0) {  // avoid divide by zero
                    end = next + (circle*(values[i]/total));
                }
                target.drawPieSlice(radius, radius, radius, start, end, undefined, options.get('sliceColors')[i % options.get('sliceColors').length]);
                next = end;
            }
        }
    };
    /**
     * Box plots
     */
    var quartile = function(values, q) {
        if (q==2) {
            var vl2 = Math.floor(values.length/2);
            return values.length % 2 ? values[vl2] : (values[vl2]+values[vl2+1])/2;
        } else {
            var vl4 = Math.floor(values.length/4);
            return values.length % 2 ? (values[vl4*q]+values[vl4*q+1])/2 : values[vl4*q];
        }
    };
    $.fn.sparkline.box = function(values, options, width, height) {
        values = $.map(values, Number);
        width = options.get('width')=='auto' ? '4.0em' : width;
        var minvalue = options.get('chartRangeMin')===undefined ? Math.min.apply(Math, values) : options.get('chartRangeMin'),
            maxvalue = options.get('chartRangeMax')===undefined ? Math.max.apply(Math, values) : options.get('chartRangeMax'),
            target = $(this).simpledraw(width, height, options.get('composite')),
            vlen = values.length,
            lwhisker, loutlier, q1, q2, q3, rwhisker, routlier;
        if (target && values.length>1) {
            var canvas_width = target.pixel_width,
                canvas_height = target.pixel_height;
            if (options.get('raw')) {
                if (options.get('showOutliers') && values.length>5) {
                    loutlier=values[0]; lwhisker=values[1]; q1=values[2]; q2=values[3]; q3=values[4]; rwhisker=values[5]; routlier=values[6];
                } else {
                    lwhisker=values[0]; q1=values[1]; q2=values[2]; q3=values[3]; rwhisker=values[4];
                }
            } else {
                values.sort(function(a, b) { return a-b; });
                q1 = quartile(values, 1);
                q2 = quartile(values, 2);
                q3 = quartile(values, 3);
                var iqr = q3-q1;
                if (options.get('showOutliers')) {
                    lwhisker=undefined; rwhisker=undefined;
                    for(var i=0; i<vlen; i++) {
                        if (lwhisker===undefined && values[i] > q1-(iqr*options.get('outlierIQR'))) {
                            lwhisker = values[i];
                        }
                        if (values[i] < q3+(iqr*options.get('outlierIQR'))) {
                            rwhisker = values[i];
                        }
                    }
                    loutlier = values[0];
                    routlier = values[vlen-1];
                } else {
                    lwhisker = values[0];
                    rwhisker = values[vlen-1];
                }
            }
            var unitsize = canvas_width / (maxvalue-minvalue+1),
                canvas_left = 0;
            if (options.get('showOutliers')) {
                canvas_left = Math.ceil(options.get('spotRadius'));
                canvas_width -= 2*Math.ceil(options.get('spotRadius'));
                unitsize = canvas_width / (maxvalue-minvalue+1);
                if (loutlier < lwhisker) {
                    target.drawCircle((loutlier-minvalue)*unitsize+canvas_left, canvas_height/2, options.get('spotRadius'), options.get('outlierLineColor'), options.get('outlierFillColor'));
                }
                if (routlier > rwhisker) {
                    target.drawCircle((routlier-minvalue)*unitsize+canvas_left, canvas_height/2, options.get('spotRadius'), options.get('outlierLineColor'), options.get('outlierFillColor'));
                }
            }
            // box
            target.drawRect(
                Math.round((q1-minvalue)*unitsize+canvas_left),
                Math.round(canvas_height*0.1),
                Math.round((q3-q1)*unitsize), 
                Math.round(canvas_height*0.8), 
                options.get('boxLineColor'), 
                options.get('boxFillColor'));
            // left whisker
            target.drawLine(
                Math.round((lwhisker-minvalue)*unitsize+canvas_left), 
                Math.round(canvas_height/2), 
                Math.round((q1-minvalue)*unitsize+canvas_left), 
                Math.round(canvas_height/2), 
                options.get('lineColor'));
            target.drawLine(
                Math.round((lwhisker-minvalue)*unitsize+canvas_left), 
                Math.round(canvas_height/4), 
                Math.round((lwhisker-minvalue)*unitsize+canvas_left), 
                Math.round(canvas_height-canvas_height/4), 
                options.get('whiskerColor'));
            // right whisker
            target.drawLine(Math.round((rwhisker-minvalue)*unitsize+canvas_left), 
                Math.round(canvas_height/2), 
                Math.round((q3-minvalue)*unitsize+canvas_left), 
                Math.round(canvas_height/2), 
                options.get('lineColor'));
            target.drawLine(
                Math.round((rwhisker-minvalue)*unitsize+canvas_left), 
                Math.round(canvas_height/4), 
                Math.round((rwhisker-minvalue)*unitsize+canvas_left), 
                Math.round(canvas_height-canvas_height/4), 
                options.get('whiskerColor'));
            // median line
            target.drawLine(
                Math.round((q2-minvalue)*unitsize+canvas_left), 
                Math.round(canvas_height*0.1),
                Math.round((q2-minvalue)*unitsize+canvas_left), 
                Math.round(canvas_height*0.9),
                options.get('medianColor'));
            if (options.get('target')) {
                var size = Math.ceil(options.get('spotRadius'));
                target.drawLine(
                    Math.round((options.get('target')-minvalue)*unitsize+canvas_left), 
                    Math.round((canvas_height/2)-size), 
                    Math.round((options.get('target')-minvalue)*unitsize+canvas_left), 
                    Math.round((canvas_height/2)+size), 
                    options.get('targetColor'));
                target.drawLine(
                    Math.round((options.get('target')-minvalue)*unitsize+canvas_left-size), 
                    Math.round(canvas_height/2), 
                    Math.round((options.get('target')-minvalue)*unitsize+canvas_left+size), 
                    Math.round(canvas_height/2), 
                    options.get('targetColor'));
            }
        }  else {
            // Remove the tag contents if sparklines aren't supported
            this.innerHTML = '';
        }
    };
    // Setup a very simple "virtual canvas" to make drawing the few shapes we need easier
    // This is accessible as $(foo).simpledraw()
    if ($.browser.msie && !document.namespaces.v) {
        document.namespaces.add('v', 'urn:schemas-microsoft-com:vml', '#default#VML');
    }
    if ($.browser.hasCanvas === undefined) {
        var t = document.createElement('canvas');
        $.browser.hasCanvas = t.getContext!==undefined;
    }
    VCanvas_base = function(width, height, target) {
    };
    VCanvas_base.prototype = {
        init : function(width, height, target) {
            this.width = width;
            this.height = height;
            this.target = target;
            if (target[0]) {
                target=target[0];
            }
            target.VCanvas = this;
        },
        drawShape : function(path, lineColor, fillColor, lineWidth) {
            alert('drawShape not implemented');
        },
        drawLine : function(x1, y1, x2, y2, lineColor, lineWidth) {
            return this.drawShape([ [x1,y1], [x2,y2] ], lineColor, lineWidth);
        },
        drawCircle : function(x, y, radius, lineColor, fillColor) {
            alert('drawCircle not implemented');
        },
        drawPieSlice : function(x, y, radius, startAngle, endAngle, lineColor, fillColor) {
            alert('drawPieSlice not implemented');
        },
        drawRect : function(x, y, width, height, lineColor, fillColor) {
            alert('drawRect not implemented');
        },
        getElement : function() {
            return this.canvas;
        },
        _insert : function(el, target) {
            $(target).html(el);
        }
    };
    VCanvas_canvas = function(width, height, target) {
        return this.init(width, height, target);
    };
    VCanvas_canvas.prototype = $.extend(new VCanvas_base(), {
        _super : VCanvas_base.prototype,
        init : function(width, height, target) {
            this._super.init(width, height, target);
            this.canvas = document.createElement('canvas');
            if (target[0]) {
                target=target[0];
            }
            target.VCanvas = this;
            $(this.canvas).css({ display:'inline-block', width:width, height:height, verticalAlign:'top' });
            this._insert(this.canvas, target);
            this.pixel_height = $(this.canvas).height();
            this.pixel_width = $(this.canvas).width();
            this.canvas.width = this.pixel_width;
            this.canvas.height = this.pixel_height;
            $(this.canvas).css({width: this.pixel_width, height: this.pixel_height});
        },
        _getContext : function(lineColor, fillColor, lineWidth) {
            var context = this.canvas.getContext('2d');
            if (lineColor !== undefined) {
                context.strokeStyle = lineColor;
            }
            context.lineWidth = lineWidth===undefined ? 1 : lineWidth;
            if (fillColor !== undefined) {
                context.fillStyle = fillColor;
            }
            return context;
        },
        drawShape : function(path, lineColor, fillColor, lineWidth) {
            var context = this._getContext(lineColor, fillColor, lineWidth);
            context.beginPath();
            context.moveTo(path[0][0]+0.5, path[0][1]+0.5);
            for(var i=1, plen=path.length; i<plen; i++) {
                context.lineTo(path[i][0]+0.5, path[i][1]+0.5); // the 0.5 offset gives us crisp pixel-width lines
            }
            if (lineColor !== undefined) {
                context.stroke();
            }
            if (fillColor !== undefined) {
                context.fill();
            }
        },
        drawCircle : function(x, y, radius, lineColor, fillColor) {
            var context = this._getContext(lineColor, fillColor);
            context.beginPath();
            context.arc(x, y, radius, 0, 2*Math.PI, false);
            if (lineColor !== undefined) {
                context.stroke();
            }
            if (fillColor !== undefined) {
                context.fill();
            }
        }, 
        drawPieSlice : function(x, y, radius, startAngle, endAngle, lineColor, fillColor) {
            var context = this._getContext(lineColor, fillColor);
            context.beginPath();
            context.moveTo(x, y);
            context.arc(x, y, radius, startAngle, endAngle, false);
            context.lineTo(x, y);
            context.closePath();
            if (lineColor !== undefined) {
                context.stroke();
            }
            if (fillColor) {
                context.fill();
            }
        },
        drawRect : function(x, y, width, height, lineColor, fillColor) {
            return this.drawShape([ [x,y], [x+width, y], [x+width, y+height], [x, y+height], [x, y] ], lineColor, fillColor);
        }
    });
    VCanvas_vml = function(width, height, target) {
        return this.init(width, height, target);
    };
    VCanvas_vml.prototype = $.extend(new VCanvas_base(), {
        _super : VCanvas_base.prototype,
        init : function(width, height, target) {
            this._super.init(width, height, target);
            if (target[0]) {
                target=target[0];
            }
            target.VCanvas = this;
            this.canvas = document.createElement('span');
            $(this.canvas).css({ display:'inline-block', position: 'relative', overflow:'hidden', width:width, height:height, margin:'0px', padding:'0px', verticalAlign: 'top'});
            this._insert(this.canvas, target);
            this.pixel_height = $(this.canvas).height();
            this.pixel_width = $(this.canvas).width();
            this.canvas.width = this.pixel_width;
            this.canvas.height = this.pixel_height;
            var groupel = '<v:group coordorigin="0 0" coordsize="'+this.pixel_width+' '+this.pixel_height+'"' +
                    ' style="position:absolute;top:0;left:0;width:'+this.pixel_width+'px;height='+this.pixel_height+'px;"></v:group>';
            this.canvas.insertAdjacentHTML('beforeEnd', groupel);
            this.group = $(this.canvas).children()[0];
        },
        drawShape : function(path, lineColor, fillColor, lineWidth) {
            var vpath = [];
            for(var i=0, plen=path.length; i<plen; i++) {
                vpath[i] = ''+(path[i][0])+','+(path[i][1]);
            }
            var initial = vpath.splice(0,1);
            lineWidth = lineWidth === undefined ? 1 : lineWidth;
            var stroke = lineColor === undefined ? ' stroked="false" ' : ' strokeWeight="'+lineWidth+'" strokeColor="'+lineColor+'" ';
            var fill = fillColor === undefined ? ' filled="false"' : ' fillColor="'+fillColor+'" filled="true" ';
            var closed = vpath[0] == vpath[vpath.length-1] ? 'x ' : '';
            var vel = '<v:shape coordorigin="0 0" coordsize="'+this.pixel_width+' '+this.pixel_height+'" ' +
                 stroke +
                 fill +
                ' style="position:absolute;left:0px;top:0px;height:'+this.pixel_height+'px;width:'+this.pixel_width+'px;padding:0px;margin:0px;" ' +
                ' path="m '+initial+' l '+vpath.join(', ')+' '+closed+'e">' +
                ' </v:shape>';
             this.group.insertAdjacentHTML('beforeEnd', vel);
        },
        drawCircle : function(x, y, radius, lineColor, fillColor) {
            x -= radius+1;
            y -= radius+1;
            var stroke = lineColor === undefined ? ' stroked="false" ' : ' strokeWeight="1" strokeColor="'+lineColor+'" ';
            var fill = fillColor === undefined ? ' filled="false"' : ' fillColor="'+fillColor+'" filled="true" ';
            var vel = '<v:oval ' +
                stroke +
                fill +
                ' style="position:absolute;top:'+y+'px; left:'+x+'px; width:'+(radius*2)+'px; height:'+(radius*2)+'px"></v:oval>';
            this.group.insertAdjacentHTML('beforeEnd', vel);
        },
        drawPieSlice : function(x, y, radius, startAngle, endAngle, lineColor, fillColor) {
            if (startAngle == endAngle) {
                return;  // VML seems to have problem when start angle equals end angle.
            }
            if ((endAngle - startAngle) == (2*Math.PI)) {
                startAngle = 0.0;  // VML seems to have a problem when drawing a full circle that doesn't start 0
                endAngle = (2*Math.PI);
            }
            var startx = x + Math.round(Math.cos(startAngle) * radius);
            var starty = y + Math.round(Math.sin(startAngle) * radius);
            var endx = x + Math.round(Math.cos(endAngle) * radius);
            var endy = y + Math.round(Math.sin(endAngle) * radius);
            // Prevent very small slices from being mistaken as a whole pie
            if (startx==endx && starty==endy && (endAngle-startAngle) < Math.PI) {
                return;
            }
            var vpath = [  x-radius, y-radius, x+radius, y+radius, startx, starty, endx, endy ]; 
            var stroke = lineColor === undefined ? ' stroked="false" ' : ' strokeWeight="1" strokeColor="'+lineColor+'" ';
            var fill = fillColor === undefined ? ' filled="false"' : ' fillColor="'+fillColor+'" filled="true" ';
            var vel = '<v:shape coordorigin="0 0" coordsize="'+this.pixel_width+' '+this.pixel_height+'" ' +
                 stroke +
                 fill +
                ' style="position:absolute;left:0px;top:0px;height:'+this.pixel_height+'px;width:'+this.pixel_width+'px;padding:0px;margin:0px;" ' +
                ' path="m '+x+','+y+' wa '+vpath.join(', ')+' x e">' +
                ' </v:shape>';
             this.group.insertAdjacentHTML('beforeEnd', vel);
        },
        drawRect : function(x, y, width, height, lineColor, fillColor) {
            return this.drawShape( [ [x, y], [x, y+height], [x+width, y+height], [x+width, y], [x, y] ], lineColor, fillColor);
        }
    });
})(jQuery);

/* jquery.tallest: (http://www.reload-vivaki.com/blog/wp-content/themes/reload/javascripts/jquery.tallest.js) */
/**
 *	Tallest.
 *	Given a jQuery result set, this set of functions will return the:
 *	- tallest()		(biggest height)
 *	- shortest()	(smallest height)
 *	- widest()		(biggest width)
 *	- thinnest()	(smallest width)
 *	Add "Size" onto the end of those functions (eg: "tallestSize()") and it will
 *	return just the pixel size, not the element.
 *
 *	@author	nickf
 *	@date	2009-08-19
 *	@version 1.0 $Id: jquery.tallest.js 100 2009-08-19 00:40:09Z spadgos $
 */
jQuery(function($) {

	$.fn.tallest = function()       { return this._extremities({ 'aspect' : 'height', 'max' : true  })[0] };
	$.fn.tallestSize = function()   { return this._extremities({ 'aspect' : 'height', 'max' : true  })[1] };
	$.fn.shortest = function()      { return this._extremities({ 'aspect' : 'height', 'max' : false })[0] };
	$.fn.shortestSize = function()  { return this._extremities({ 'aspect' : 'height', 'max' : false })[1] };
	$.fn.widest = function()        { return this._extremities({ 'aspect' : 'width',  'max' : true  })[0] };
	$.fn.widestSize = function()    { return this._extremities({ 'aspect' : 'width',  'max' : true  })[1] };
	$.fn.thinnest = function()      { return this._extremities({ 'aspect' : 'width',  'max' : false })[0] };
	$.fn.thinnestSize = function()  { return this._extremities({ 'aspect' : 'width',  'max' : false })[1] };

	/**
	 *	Returns an array: the first item is the matched element, and the second item is the dimension
	 */
	$.fn._extremities = function(options) {
		var defaults = {
			aspect : 'height', // or 'width'
			max : true	// or false to find the min
		};
		options = $.extend(defaults, options);

		if (this.length < 2) {
			return [this, this[options.aspect]()];
		}

		var bestIndex = 0,
			bestSize = this.eq(0)[options.aspect](),
			thisSize
		;
		for (var i = 1; i < this.length; ++i) {
			thisSize = this.eq(i)[options.aspect]();
			if ((options.max && thisSize > bestSize) || (!options.max && thisSize < bestSize)) {
				bestSize = thisSize;
				bestIndex = i;
			}
		}

		return [ this.eq(bestIndex), bestSize ];
	};
});
/* reload.blog: (http://www.reload-vivaki.com/blog/wp-content/themes/reload/javascripts/reload.blog.js) */


/* Module profil Twitter */
function makecard(twitters) {
    var statusHTML = [];
    for (var i=0; i<twitters.length; i++){
        var username = twitters[i].user.screen_name;
        var followers_count = twitters[i].user.followers_count;
        var profile_image_url = twitters[i].user.profile_image_url;
        var url = twitters[i].user.url;
        var followers_count = twitters[i].followers_count;
        var status = twitters[i].text.replace(/((https?|s?ftp|ssh)\:\/\/[^"\s\<\>]*[^.,;'">\:\s\<\>\)\]\!])/g, function(url) {
            return '<a href="'+url+'">'+url+'</a>';
        }).replace(/\B@([_a-z0-9]+)/ig, function(reply) {
            return  reply.charAt(0)+'<a href="http://twitter.com/'+reply.substring(1)+'">'+reply.substring(1)+'</a>';
        }); 
        statusHTML.push('<img src="'+profile_image_url+'" /><div><a href="http://twitter.com/'+username+'">'+username+' ('+twitters[i].user.name+')</a></div><div><div>Bio:<em>'+twitters[i].user.description+'</em></div><ul><li>'+twitters[i].user.statuses_count+'</li><li>'+twitters[i].user.friends_count+' following</li><li>'+twitters[i].user.followers_count+'</li><li>'+twitters[i].user.favourites_count+' favourites </li></ul>   <span><a href="http://twitter.com/reloadvivaki" class="twitter button">suivez-nous sur Twitter</a></span>');
    }
    document.getElementById('twitter-inner').innerHTML = statusHTML.join('');
}
function showhovercard(username){
    var src1 = "http://twitter.com/statuses/user_timeline/"+username+".json?callback=makecard&count=1";
    var s1 = document.createElement('script');
    s1.setAttribute('src',src1);
    document.getElementsByTagName('head')[0].appendChild(s1);
}



  
$(document).ready(function(){
    showhovercard("reloadvivaki");


    /* Tooltip pour "a propos" dans entĂȘte */
    $('#menu-item-537 a').tipsy({
        title: function() { 
            return $("#a-propos h3").next().html(); 
        },
        html:true,
        fade: true,
        delayOut: 2000
    }
    );
        
    /* Onglets pour Reload live */
    $(".tab_content").hide(); //Hide all content
    $("ul.tabs li:first").addClass("active").show(); //Activate first tab
    $(".tab_content:first").show(); //Show first tab content
    //On Click Event
    $("ul.tabs li").click(function() {
        $("ul.tabs li").removeClass("active"); //Remove any "active" class
        $(this).addClass("active"); //Add "active" class to selected tab
        $(".tab_content").hide(); //Hide all tab content
        var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
        $(activeTab).fadeIn(); //Fade in the active content
        return false;
    });

    /* faire des liens dans le flux Twitter */
    $('.home .twitter_feed').linkify();
    /* commentaires cachĂ©s */
    $(".toggle").click(function(){
        $("#toggle-comment").toggle()
    }); 
    $(".showall").click(function(){
        $(".show_hide_comments").toggle();
        if($(".showall").html()=='Showall')$(".showall").html("Hideall");else $(".showall").html("Showall")
    }); 
            
    $('.home .chiffre p:nth-child(2), .chiffre .entry p:nth-child(1), .page-content .chiffre p:first-child').addClass('chiffre-figure');
    $('.chiffre-comment p').removeClass('chiffre-figure');
    /* Polices custom avec Cufon */
    Cufon.replace('h1,h2,h3,h4,#filters-title,.filter-title,#menu-main-menu,.presentation strong,.chiffre .chiffre-figure');
    Cufon.replace('.featured-post h3',{
        textShadow: '.5px .5px rgba(0, 0, 0, 0.6)'
    });   
    
    /* Enlever Ă©tat actif pour liens "tout" sur la home */
    $('.home #filters #filter-dates .all_time').removeClass('active');
    
    /* Hauteur Ă©gale pour tous les panneaux de Reload Live */

    $("#reload-live-container").height(
        $(".reload-live-content").tallestSize() + 80
        );  
});



/* swfobject: (http://www.reload-vivaki.com/blog/wp-includes/js/swfobject.js) */
/*	SWFObject v2.2 <http://code.google.com/p/swfobject/> 
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();

