function displayLatestPostsBubble(id, cycle) {
    cycle = cycle || false;

    function abbreviate(str, maxChars) {
        return (str.length > maxChars) ? str.substr(0, maxChars) + "..." : str;
    }

    function cycleThrough(id, i) {
        if (i >= rssPostTitles.length)
            cycleThrough(id, 0);
        else {
            document.getElementById(id).innerHTML = '<a href="/load_testing/blog/">' + abbreviate(rssPostTitles[i], 68) + ' »</a>';
            if (cycle == true) 
                setTimeout(function() {cycleThrough(id, i + 1);}, 6000);
        }
    }
    cycleThrough(id, 0);
}

function changePanel(targetClass) {
    targetClass = targetClass || "t1";

    $("#panels a").removeClass("selected");
    $("#header a." + targetClass).addClass("selected");
    $("#panels ul").attr("class", targetClass);
    $("#messages div").hide();
    $("#messages div." + targetClass).fadeIn(350);
}

function notClass(className, elemClass) {
    return elemClass.search(className) < 1;
}

function tabbify(containingDiv) {
    hideAllSections(containingDiv);

    var initialSection = $(containingDiv + " .current a").attr("href");

    displaySection(initialSection);

    $(containingDiv + " .tabbed a").click(function(){
        hideAllSections(containingDiv);

        displaySection($(this).attr("href"));

        $(containingDiv + " .tabbed li").removeClass("current");

        $(this).parent().addClass("current");

        return false;
    });

    function hideAllSections(containingDiv) {
        $(containingDiv + " .section").hide();
    }
    
    function displaySection(sectionId) {
        $(sectionId).show();
    }
}

/*
 * 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}})());

Cufon.registerFont({"w":219,"face":{"font-family":"tradegothicbold2","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 8 0 0 0 0 0 0 0","ascent":"260","descent":"-100","x-height":"4","bbox":"-13 -352 360 81.9651","underline-thickness":"18","underline-position":"-18","stemh":"30","stemv":"45","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":109},"!":{"d":"86,-260r-9,172r-35,0r-9,-172r53,0xm85,0r-50,0r0,-51r50,0r0,51","w":119},"\"":{"d":"71,-162r0,-98r40,0r0,98r-40,0xm9,-162r0,-98r40,0r0,98r-40,0","w":119},"#":{"d":"187,-108r0,32r-33,0r-10,76r-34,0r10,-76r-35,0r-10,76r-34,0r10,-76r-29,0r0,-32r33,0r7,-44r-29,0r0,-32r33,0r10,-76r34,0r-10,76r35,0r10,-76r34,0r-10,76r29,0r0,32r-33,0r-7,44r29,0xm130,-152r-34,0r-6,44r34,0"},"$":{"d":"121,-106r0,70v19,0,40,-7,40,-33v0,-21,-17,-31,-40,-37xm95,-159r0,-65v-22,1,-37,11,-37,34v0,17,11,24,37,31xm95,-36r0,-78v-41,-9,-77,-32,-77,-72v0,-48,36,-73,77,-74r0,-26r26,0r0,26v28,1,50,13,74,36r-28,27v-14,-14,-27,-24,-46,-27r0,72v51,15,80,37,80,82v0,48,-36,68,-80,70r0,43r-26,0r0,-43v-32,-3,-60,-16,-80,-43r31,-26v13,20,28,28,49,33"},"%":{"d":"77,-260v36,0,65,30,65,65v0,35,-29,65,-65,65v-36,0,-65,-30,-65,-65v0,-35,29,-65,65,-65xm77,-225v-41,0,-35,59,0,59v16,0,30,-14,30,-29v0,-15,-14,-30,-30,-30xm243,-130v36,0,65,30,65,65v0,35,-29,65,-65,65v-36,0,-65,-30,-65,-65v0,-35,29,-65,65,-65xm243,-94v-16,0,-30,14,-30,29v0,15,14,30,30,30v16,0,30,-15,30,-30v0,-15,-14,-29,-30,-29xm71,4r149,-268r31,0r-149,268r-31,0","w":320},"&":{"d":"99,-234v-28,1,-25,51,-8,70v15,-11,31,-26,31,-43v0,-14,-8,-27,-23,-27xm184,-130r39,10v-8,22,-17,44,-31,64v11,10,23,18,36,18r0,42v-25,0,-35,-4,-65,-28v-44,50,-149,33,-149,-48v0,-32,19,-51,44,-68v-39,-43,-25,-124,44,-124v34,0,61,25,61,58v0,34,-26,54,-50,73v14,19,30,38,46,52v10,-15,19,-32,25,-49xm82,-108v-33,16,-23,70,17,70v13,0,26,-6,35,-15v-21,-16,-38,-34,-52,-55","w":240},"\u2019":{"d":"28,-155r19,-54r-22,0r0,-51r50,0r0,51r-23,54r-24,0","w":100,"k":{"\u2019":20,"s":20,"t":6}},"(":{"d":"67,-264r44,0v-70,87,-71,207,0,294r-44,0v-64,-84,-65,-210,0,-294","w":119},")":{"d":"53,30r-44,0v70,-87,71,-207,0,-294r44,0v64,84,65,210,0,294","w":119},"*":{"d":"81,-206v1,-17,-8,-36,-10,-54r36,0v-2,18,-9,38,-8,54r46,-26r11,32r-52,8r38,39r-26,21v-10,-15,-15,-35,-27,-48r-23,47r-27,-19v11,-14,31,-25,37,-40r-52,-6r9,-32","w":180},"+":{"d":"127,-113r75,0r0,39r-75,0r0,74r-38,0r0,-74r-75,0r0,-39r75,0r0,-74r38,0r0,74","w":216},",":{"d":"33,54r18,-54r-21,0r0,-51r50,0r0,51r-23,54r-24,0","w":109},"-":{"d":"104,-74r-88,0r0,-39r88,0r0,39","w":119},".":{"d":"80,0r-50,0r0,-51r50,0r0,51","w":109},"\/":{"d":"110,-264r-81,268r-39,0r81,-268r39,0","w":100},"0":{"d":"15,-130v0,-75,26,-134,95,-134v69,0,94,59,94,134v0,75,-25,134,-94,134v-69,0,-95,-59,-95,-134xm62,-130v0,71,20,95,48,95v28,0,48,-24,48,-95v0,-71,-20,-95,-48,-95v-28,0,-48,24,-48,95"},"1":{"d":"180,0r-127,0r0,-36r40,0r0,-179r-46,0r0,-31v24,-1,44,-6,56,-18r37,0r0,228r40,0r0,36"},"2":{"d":"195,0r-175,0r0,-43v8,-41,128,-98,128,-146v0,-23,-14,-36,-38,-36v-26,0,-41,17,-47,41r-42,-9v5,-40,44,-71,90,-71v46,0,84,26,84,75v0,63,-58,90,-123,149r123,0r0,40"},"3":{"d":"70,-118r0,-39v38,0,70,-6,70,-37v0,-19,-16,-31,-38,-31v-22,0,-36,12,-49,26r-31,-28v25,-27,52,-37,79,-37v48,0,85,23,85,67v0,26,-14,46,-39,57v31,10,48,33,48,65v-3,99,-149,101,-184,28r38,-21v13,21,29,33,54,33v23,0,45,-15,45,-40v0,-42,-47,-43,-78,-43"},"4":{"d":"45,-96r81,0r-1,-116xm9,-60r0,-45r111,-155r50,0r0,164r37,0r0,36r-37,0r0,60r-44,0r0,-60r-117,0"},"5":{"d":"32,-122r9,-138r141,0r0,40r-105,0r-4,59v8,-9,21,-15,49,-15v47,0,77,45,77,87v0,57,-32,93,-95,93v-41,0,-71,-20,-85,-49r39,-20v20,46,102,35,95,-24v5,-48,-66,-64,-84,-25"},"6":{"d":"156,-80v5,-55,-75,-62,-92,-18v-5,77,90,84,92,18xm194,-244r-21,37v-42,-41,-111,-4,-109,62v51,-46,139,-13,139,63v0,54,-40,86,-92,86v-54,0,-93,-39,-93,-118v0,-121,86,-185,176,-130"},"7":{"d":"21,-220r0,-40r178,0r0,27r-107,233r-51,0r105,-220r-125,0"},"8":{"d":"110,-264v93,0,115,98,44,126v32,14,52,35,52,71v0,42,-41,71,-96,71v-55,0,-97,-29,-97,-71v0,-36,21,-57,53,-71v-26,-14,-43,-30,-43,-61v0,-40,34,-65,87,-65xm110,-32v33,0,49,-15,49,-38v0,-23,-40,-47,-52,-47v-12,0,-47,21,-47,47v0,23,17,38,50,38xm109,-228v-29,0,-39,13,-39,30v0,55,80,48,80,0v0,-17,-11,-30,-41,-30"},"9":{"d":"60,-180v-5,57,74,62,91,18v5,-76,-89,-84,-91,-18xm22,-16r20,-37v42,40,111,5,109,-61v-51,45,-138,11,-138,-64v0,-54,40,-86,92,-86v54,0,93,40,93,119v0,120,-87,183,-176,129"},":":{"d":"80,-108r-50,0r0,-51r50,0r0,51xm80,0r-50,0r0,-51r50,0r0,51","w":109},";":{"d":"33,54r18,-54r-21,0r0,-51r50,0r0,51r-23,54r-24,0xm80,-108r-50,0r0,-51r50,0r0,51","w":109},"<":{"d":"202,-37r0,40r-188,-80r0,-33r188,-80r0,40r-134,56","w":216},"=":{"d":"202,-153r0,39r-188,0r0,-39r188,0xm202,-73r0,38r-188,0r0,-38r188,0","w":216},">":{"d":"14,3r0,-40r134,-57r-134,-56r0,-40r188,80r0,33","w":216},"?":{"d":"143,-206v0,52,-59,62,-52,119r-40,0v-10,-56,43,-81,47,-121v-9,-38,-52,-15,-53,12r-41,-11v7,-72,138,-79,139,1xm97,0r-50,0r0,-51r50,0r0,51","w":159},"@":{"d":"137,-90v39,4,56,-70,11,-72v-39,-4,-55,70,-11,72xm185,-177r4,-18r32,0r-20,101v0,5,1,8,5,8v16,0,36,-20,36,-59v0,-58,-40,-88,-93,-88v-59,0,-97,44,-97,103v0,94,109,132,172,78r32,0v-63,105,-240,50,-240,-78v0,-76,61,-134,134,-134v62,0,121,43,121,109v0,79,-66,104,-88,104v-10,0,-20,-7,-20,-19v-31,41,-92,7,-92,-44v0,-62,73,-117,114,-63","w":288},"A":{"d":"112,-210v-13,35,-20,76,-32,113r61,0xm5,0r75,-260r61,0r74,260r-49,0r-14,-56r-83,0r-15,56r-49,0"},"B":{"d":"28,0r0,-260v81,1,184,-15,185,64v0,27,-12,48,-40,59v34,14,46,29,46,69v0,40,-29,68,-95,68r-96,0xm78,-116r0,76v42,0,96,6,91,-38v4,-44,-48,-39,-91,-38xm78,-220r0,64v38,1,85,5,85,-32v0,-36,-47,-33,-85,-32","w":240},"C":{"d":"206,-195r-45,11v-7,-22,-23,-38,-47,-38v-33,0,-54,31,-54,92v0,95,72,126,106,53r46,13v-15,45,-49,68,-97,68v-66,0,-104,-49,-104,-134v0,-85,38,-134,104,-134v50,0,79,23,91,69"},"D":{"d":"28,0r0,-260v119,-6,203,0,203,130v0,129,-84,137,-203,130xm78,-218r0,176r33,0v57,0,70,-42,70,-88v0,-59,-29,-98,-103,-88","w":240},"E":{"d":"206,0r-176,0r0,-260r172,0r0,42r-122,0r0,62r89,0r0,42r-89,0r0,72r126,0r0,42"},"F":{"d":"78,0r-50,0r0,-260r166,0r0,42r-116,0r0,62r87,0r0,42r-87,0r0,114","w":200,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":46,".":46}},"G":{"d":"213,-197r-46,12v-12,-26,-26,-37,-52,-37v-37,0,-55,37,-55,95v0,55,21,89,56,89v32,0,53,-22,54,-52r-49,0r0,-41r97,0r0,131r-36,0r0,-27v-21,23,-41,31,-68,31v-71,0,-103,-57,-103,-130v0,-66,25,-138,108,-138v52,0,82,29,94,67","w":240},"H":{"d":"80,0r-50,0r0,-260r50,0r0,104r100,0r0,-104r50,0r0,260r-50,0r0,-112r-100,0r0,112","w":259},"I":{"d":"85,0r-50,0r0,-260r50,0r0,260","w":119},"J":{"d":"-2,-31r34,-26v15,27,48,29,48,-12r0,-191r50,0r0,190v9,82,-101,97,-132,39","w":159},"K":{"d":"78,0r-50,0r0,-260r50,0r0,116r87,-116r57,0r-74,98r86,162r-55,0r-65,-123r-36,45r0,78","w":240},"L":{"d":"191,0r-163,0r0,-260r50,0r0,218r113,0r0,42","w":200,"k":{"T":33,"V":27,"W":27,"y":20,"\u00fd":20,"\u00ff":20,"Y":33,"\u00dd":33,"\u2019":46}},"M":{"d":"72,0r-43,0r0,-260r70,0r51,182r50,-182r71,0r0,260r-43,0r-1,-204r-59,204r-37,0r-59,-204r0,204","w":299},"N":{"d":"76,0r-47,0r0,-260r52,0r103,177r0,-177r47,0r0,260r-48,0r-107,-185r0,185","w":259},"O":{"d":"179,-130v0,-61,-18,-92,-59,-92v-41,0,-60,31,-60,92v0,61,19,92,60,92v41,0,59,-31,59,-92xm229,-130v0,85,-38,134,-109,134v-71,0,-109,-49,-109,-134v0,-85,38,-134,109,-134v71,0,109,49,109,134","w":240},"P":{"d":"74,0r-50,0r0,-260v87,0,187,-13,187,77v0,71,-61,83,-137,78r0,105xm74,-220r0,75v42,3,95,-1,88,-38v7,-37,-46,-40,-88,-37","k":{"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":46,".":46}},"Q":{"d":"120,-69r0,-45v26,3,40,14,53,33v4,-13,6,-29,6,-49v0,-61,-18,-92,-59,-92v-41,0,-60,31,-60,92v0,76,38,109,91,83v-8,-11,-17,-19,-31,-22xm236,-22r0,41v-33,0,-39,-5,-61,-28v-85,39,-164,-13,-164,-121v0,-85,38,-134,109,-134v71,0,109,49,109,134v0,40,-9,73,-26,96v9,7,20,12,33,12","w":240},"R":{"d":"78,0r-50,0r0,-260r104,0v98,-6,110,121,35,144r58,116r-55,0r-49,-106r-43,0r0,106xm78,-220r0,74v42,2,95,-1,87,-37v3,-41,-46,-38,-87,-37","w":240,"k":{"T":6,"V":6,"W":6,"Y":6,"\u00dd":6}},"S":{"d":"196,-205r-45,14v-8,-20,-24,-34,-47,-34v-22,0,-37,9,-37,29v0,45,134,36,134,120v0,53,-33,80,-91,80v-42,0,-82,-24,-97,-62r41,-18v12,24,28,41,57,41v25,0,43,-10,43,-35v0,-51,-133,-41,-133,-121v0,-46,38,-73,83,-73v42,0,77,21,92,59"},"T":{"d":"7,-260r186,0r0,41r-68,0r0,219r-50,0r0,-219r-68,0r0,-41","w":200,"k":{"\u00fc":27,"\u00f2":27,"\u00f6":27,"\u00ec":27,"\u00ee":27,"\u00ed":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"w":27,"y":27,"\u00fd":27,"\u00ff":27,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":33,".":33,"-":27,"a":27,"\u00e6":27,"\u00e1":27,"c":27,"\u00e7":27,"e":27,"\u00e9":27,"i":27,"\u00ef":27,"o":27,"\u00f8":27,"\u00f3":27,"\u00f4":27,"\u00f5":27,"r":27,"s":27,"u":27,"\u00fa":27,"\u00fb":27,"\u00f9":27,":":27,";":27}},"U":{"d":"180,-95r0,-165r50,0r0,163v0,76,-47,101,-100,101v-53,0,-100,-25,-100,-101r0,-163r50,0r0,165v0,42,17,57,50,57v33,0,50,-15,50,-57","w":259},"V":{"d":"72,0r-68,-260r49,0r46,192r49,-192r49,0r-69,260r-56,0","w":200,"k":{"\u00f6":13,"\u00f4":13,"\u00ee":6,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e4":13,"\u00e2":13,"y":6,"\u00fd":6,"\u00ff":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":33,".":33,"-":13,"a":13,"\u00e6":13,"\u00e1":13,"e":13,"\u00e9":13,"i":6,"\u00ed":6,"\u00ef":6,"\u00ec":6,"o":13,"\u00f8":13,"\u00f3":13,"\u00f2":13,"\u00f5":13,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,":":13,";":13}},"W":{"d":"62,0r-55,-260r47,0r33,175r37,-175r51,0r35,175r36,-175r46,0r-54,260r-50,0r-39,-185r-37,185r-50,0","w":299,"k":{"\u00fc":6,"\u00f6":13,"\u00ea":13,"\u00e4":13,"y":6,"\u00fd":6,"\u00ff":6,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":20,".":20,"-":13,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"e":13,"\u00e9":13,"\u00eb":13,"\u00e8":13,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":13,"\u00f8":13,"\u00f3":13,"\u00f4":13,"\u00f2":13,"\u00f5":13,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,":":13,";":13}},"X":{"d":"73,-133r-66,-127r54,0r39,80r39,-80r54,0r-66,127r70,133r-54,0r-43,-88r-43,88r-54,0","w":200},"Y":{"d":"55,-260r45,103r45,-103r52,0r-72,156r0,104r-50,0r0,-104r-71,-156r51,0","w":200,"k":{"\u00fc":13,"\u00f6":20,"v":13,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":33,".":33,"-":20,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00f9":13,":":20,";":20,"p":13,"q":20}},"Z":{"d":"191,-42r0,42r-185,0r0,-42r121,-176r-113,0r0,-42r176,0r0,40r-126,178r127,0","w":200},"[":{"d":"103,27r-84,0r0,-287r84,0r0,22r-45,0r0,243r45,0r0,22","w":119},"\\":{"d":"71,4r-81,-268r39,0r81,268r-39,0","w":100},"]":{"d":"101,27r-84,0r0,-22r45,0r0,-243r-45,0r0,-22r84,0r0,287","w":119},"^":{"d":"64,-125r-39,0r65,-135r36,0r65,135r-40,0r-43,-95","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"\u2018":{"d":"72,-264r-19,54r22,0r0,52r-50,0r0,-52r23,-54r24,0","w":100,"k":{"\u2018":20}},"a":{"d":"162,0r-44,0r-2,-16v-34,32,-110,25,-110,-30v0,-42,35,-65,108,-74v11,-52,-58,-43,-69,-15r-28,-22v32,-51,141,-52,141,42v0,39,-4,83,4,115xm114,-49r0,-41v-30,6,-63,13,-63,39v0,36,50,17,63,2","w":180},"b":{"d":"23,0r0,-260r45,0r0,90v9,-12,31,-21,46,-21v48,0,75,46,75,92v0,84,-72,135,-126,79r-5,20r-35,0xm68,-139r0,90v26,31,76,17,76,-45v0,-60,-46,-76,-76,-45","w":200},"c":{"d":"164,-141r-37,15v-7,-16,-15,-29,-37,-29v-25,0,-37,19,-37,61v0,73,58,78,78,32r34,19v-18,33,-41,47,-75,47v-51,0,-81,-39,-81,-98v0,-59,30,-97,81,-97v35,0,64,19,74,50","w":180},"d":{"d":"177,-260r0,260r-38,0r-2,-20v-53,56,-125,6,-125,-79v0,-46,26,-92,74,-92v15,0,37,9,46,21r0,-90r45,0xm132,-49r0,-90v-30,-31,-76,-16,-76,45v0,61,50,77,76,45","w":200},"e":{"d":"53,-117r72,0v-1,-26,-14,-41,-36,-41v-22,0,-35,15,-36,41xm166,-86r-113,0v-2,66,58,65,81,31r32,20v-17,27,-42,39,-78,39v-49,0,-79,-39,-79,-98v0,-59,30,-97,81,-97v55,0,81,47,76,105","w":180},"f":{"d":"113,-151r-38,0r0,151r-45,0r0,-151r-26,0r0,-36r26,0v-7,-62,19,-85,82,-77r0,36v-32,-3,-41,9,-37,41r38,0r0,36","w":119},"g":{"d":"77,-4v-24,0,-32,14,-32,22v0,14,13,21,50,21v29,0,39,-15,39,-21v0,-9,-14,-22,-57,-22xm116,-127v0,-17,-14,-31,-31,-31v-19,0,-32,14,-32,31v0,17,13,31,32,31v17,0,31,-14,31,-31xm176,-191r0,30v-10,0,-22,1,-29,5v25,41,1,93,-61,93v-19,0,-35,1,-35,12v0,30,124,-11,124,64v0,27,-27,55,-87,55v-50,0,-84,-14,-84,-44v-1,-24,20,-33,34,-36v-9,-5,-28,-10,-28,-30v0,-18,22,-31,30,-34v-49,-33,-31,-117,46,-115v16,0,34,7,46,17v9,-12,23,-18,44,-17","w":180},"h":{"d":"68,0r-45,0r0,-260r45,0r0,93v33,-38,109,-30,109,39r0,128r-45,0r0,-122v4,-52,-51,-31,-64,-13r0,135","w":200},"i":{"d":"72,-187r0,187r-44,0r0,-187r44,0xm72,-222r-44,0r0,-42r44,0r0,42","w":100},"j":{"d":"1,66r0,-37v18,2,32,4,31,-22r0,-194r45,0r0,201v3,47,-32,60,-76,52xm77,-222r-45,0r0,-42r45,0r0,42","w":100},"k":{"d":"68,0r-45,0r0,-260r45,0r1,145r55,-72r51,0r-55,70r59,117r-47,0r-42,-84r-22,26r0,58","w":180},"l":{"d":"72,0r-44,0r0,-260r44,0r0,260","w":100},"m":{"d":"68,0r-45,0r0,-187r41,0r0,20v25,-29,84,-35,102,4v28,-31,110,-54,110,28r0,135r-44,0r0,-131v0,-37,-45,-24,-60,-4r0,135r-45,0r0,-131v0,-36,-44,-24,-59,-4r0,135","w":299},"n":{"d":"68,0r-45,0r0,-187r41,0r0,20v37,-37,113,-32,113,39r0,128r-45,0r0,-122v4,-52,-51,-31,-64,-13r0,135","w":200},"o":{"d":"127,-94v0,-42,-12,-61,-37,-61v-25,0,-37,19,-37,61v0,42,12,62,37,62v25,0,37,-20,37,-62xm9,-94v0,-59,30,-97,81,-97v51,0,81,38,81,97v0,59,-30,98,-81,98v-51,0,-81,-39,-81,-98","w":180},"p":{"d":"23,68r0,-255r43,0r0,17v52,-51,123,-1,123,81v0,46,-27,93,-75,93v-15,0,-37,-9,-46,-21r0,85r-45,0xm68,-138r0,90v31,31,76,15,76,-46v0,-61,-50,-75,-76,-44","w":200},"q":{"d":"177,-187r0,255r-45,0r0,-85v-9,12,-31,21,-46,21v-48,0,-74,-47,-74,-93v0,-84,72,-134,125,-78r5,-20r35,0xm132,-48r0,-90v-26,-31,-76,-18,-76,44v0,60,45,78,76,46","w":200},"r":{"d":"65,0r-45,0r0,-187r41,0v1,10,-2,24,1,32v11,-22,25,-35,52,-36r0,47v-26,-4,-49,24,-49,30r0,114","w":119,"k":{",":20,".":20,"-":13}},"s":{"d":"142,-162r-28,24v-10,-20,-60,-30,-60,-1v0,32,94,18,94,86v0,73,-113,72,-140,19r30,-23v10,14,24,27,43,27v16,0,27,-8,27,-21v0,-32,-94,-20,-94,-85v0,-66,96,-69,128,-26","w":159},"t":{"d":"4,-187r26,0r0,-62r45,0r0,62r37,0r0,36r-37,0r0,106v-1,19,25,12,37,9r0,37v-40,8,-82,1,-82,-41r0,-111r-26,0r0,-36","w":119},"u":{"d":"132,-187r45,0r0,187r-41,0r0,-20v-37,37,-113,32,-113,-39r0,-128r45,0r0,121v-4,53,51,33,64,14r0,-135","w":200},"v":{"d":"56,0r-52,-187r44,0r32,127r32,-127r44,0r-53,187r-47,0","w":159,"k":{",":20,".":20}},"w":{"d":"52,0r-48,-187r42,0r26,116r27,-116r42,0r26,116r27,-116r43,0r-49,187r-40,0r-28,-117r-28,117r-40,0","w":240,"k":{",":20,".":20}},"x":{"d":"1,0r56,-97r-53,-90r49,0r26,52r27,-52r48,0r-52,90r56,97r-47,0r-31,-58r-31,58r-48,0","w":159},"y":{"d":"4,30v41,12,61,-20,49,-57r-50,-160r45,0r32,115r32,-115r45,0r-59,187v-23,62,-40,72,-94,67r0,-37","w":159,"k":{",":27,".":27}},"z":{"d":"14,-151r0,-36r139,0r0,31r-90,120r90,0r0,36r-147,0r0,-32r91,-119r-83,0","w":159},"{":{"d":"3,-106r0,-21v59,-4,-14,-146,71,-137r26,0r0,22v-18,-2,-33,1,-33,18v0,43,11,101,-27,108v40,5,27,65,27,107v0,17,15,20,33,18r0,21v-40,2,-72,-3,-72,-43v0,-36,14,-92,-25,-93","w":119},"|":{"d":"21,4r0,-268r38,0r0,268r-38,0","w":79},"}":{"d":"117,-127r0,21v-59,4,14,145,-71,136r-26,0r0,-21v18,2,33,-1,33,-18v0,-43,-12,-101,27,-108v-40,-5,-27,-65,-27,-107v0,-17,-15,-20,-33,-18r0,-22v40,-2,72,3,72,43v0,36,-14,93,25,94","w":119},"~":{"d":"144,-62v-29,0,-43,-26,-75,-25v-17,0,-25,13,-31,26r-13,-33v8,-15,21,-31,45,-31v27,0,59,25,77,25v14,0,23,-13,31,-26r13,32v-10,15,-23,32,-47,32","w":216},"\u00a1":{"d":"33,65r10,-172r34,0r10,172r-54,0xm35,-195r50,0r0,51r-50,0r0,-51","w":119},"\u00a2":{"d":"83,-45r39,-108v-33,-8,-51,12,-51,59v0,23,4,39,12,49xm139,-142r-39,108v26,7,41,-8,52,-28r34,19v-21,39,-52,54,-98,44r-16,44r-21,0r18,-52v-26,-15,-39,-46,-39,-87v-1,-68,41,-108,105,-94r13,-38r21,0r-16,46v15,8,26,22,32,39r-37,15v-3,-6,-6,-11,-9,-16"},"\u00a3":{"d":"141,-113r-42,0v0,16,-2,46,-10,60v14,8,27,15,43,15v25,0,26,-21,28,-40r43,0v0,45,-19,82,-60,82v-35,0,-51,-8,-74,-23v-11,13,-29,24,-50,23r0,-45v34,-5,35,-40,32,-72r-34,0r0,-34r29,0v-15,-62,3,-117,74,-117v48,0,77,30,77,77r-43,0v-3,-23,-10,-38,-36,-38v-38,0,-32,49,-24,78r47,0r0,34"},"\u00a5":{"d":"130,-73r0,73r-41,0r0,-73r-65,0r0,-34r64,0r-12,-24r-52,0r0,-34r35,0r-49,-95r45,0r55,112r55,-112r45,0r-49,95r34,0r0,34r-51,0r-12,24r63,0r0,34r-65,0"},"\u00a7":{"d":"146,-235r-25,20v-8,-17,-47,-30,-47,-4v0,29,88,71,88,120v0,16,-9,36,-39,41v33,29,17,88,-33,88v-24,0,-43,-13,-58,-30r25,-19v8,20,51,32,51,2v0,-33,-90,-78,-90,-123v0,-23,16,-40,39,-41v-31,-29,-18,-83,32,-83v26,0,38,7,57,29xm128,-97v-3,-14,-63,-95,-76,-46v-3,8,53,65,60,61v9,0,16,-6,16,-15","w":180},"\u00a4":{"d":"203,-201r-18,19v21,29,21,75,0,104r18,19r-22,23r-20,-18v-28,20,-75,20,-103,0r-19,18r-23,-23r19,-19v-22,-29,-22,-75,0,-104r-19,-19r23,-23r19,18v28,-20,75,-20,103,0r20,-18xm59,-130v0,31,22,53,51,53v29,0,50,-22,50,-53v0,-31,-21,-53,-50,-53v-29,0,-51,22,-51,53"},"'":{"d":"20,-162r0,-98r40,0r0,98r-40,0","w":79},"\u201c":{"d":"142,-264r-19,54r22,0r0,52r-50,0r0,-52r23,-54r24,0xm62,-264r-19,54r22,0r0,52r-50,0r0,-52r23,-54r24,0","w":159},"\u00ab":{"d":"22,-93r43,-58r40,0r-44,58r44,57r-40,0xm95,-93r43,-58r41,0r-45,58r45,57r-41,0","w":200},"\u2013":{"d":"180,-78r-180,0r0,-31r180,0r0,31","w":180},"\u00b7":{"d":"82,-94v0,15,-13,28,-28,28v-15,0,-27,-13,-27,-28v0,-15,12,-27,27,-27v15,0,28,12,28,27","w":109},"\u00b6":{"d":"79,24r0,-157v-42,0,-71,-23,-71,-62v0,-97,118,-57,203,-65r0,30r-26,0r0,254r-37,0r0,-254r-32,0r0,254r-37,0","w":223},"\u201d":{"d":"18,-155r18,-54r-21,0r0,-51r49,0r0,51r-23,54r-23,0xm98,-155r19,-54r-22,0r0,-51r50,0r0,51r-23,54r-24,0","w":159},"\u00bb":{"d":"179,-95r-44,59r-40,0r44,-59r-44,-56r40,0xm105,-95r-43,59r-40,0r44,-59r-44,-56r40,0","w":200},"\u2026":{"d":"325,0r-51,0r0,-51r51,0r0,51xm206,0r-52,0r0,-51r52,0r0,51xm86,0r-51,0r0,-51r51,0r0,51","w":360},"\u00bf":{"d":"17,11v0,-52,59,-62,52,-119r39,0v10,56,-42,81,-46,121v9,36,52,15,53,-12r41,11v-7,71,-138,78,-139,-1xm63,-195r50,0r0,51r-50,0r0,-51","w":159},"`":{"d":"-10,-264r55,0r34,53r-37,0","w":100},"\u00b4":{"d":"55,-264r55,0r-52,53r-37,0","w":100},"\u00af":{"d":"112,-222r-124,0r0,-27r124,0r0,27","w":100},"\u00a8":{"d":"-6,-256r43,0r0,41r-43,0r0,-41xm63,-256r43,0r0,41r-43,0r0,-41","w":100},"\u00b8":{"d":"8,73r6,-15v12,4,48,15,47,-9v-1,-23,-34,-1,-38,-17r21,-32r19,0r-15,23v21,-6,45,1,45,25v0,39,-55,40,-85,25","w":100},"\u2014":{"d":"360,-78r-360,0r0,-31r360,0r0,31","w":360},"\u00c6":{"d":"55,0r-52,0r130,-260r189,0r0,42r-109,0r0,62r76,0r0,42r-76,0r0,72r113,0r0,42r-163,0r0,-61r-79,0xm105,-103r58,0r0,-121","w":339},"\u00aa":{"d":"103,-149r-30,0r-2,-10v-19,20,-69,13,-69,-18v0,-26,23,-39,68,-44v1,-13,-2,-19,-16,-19v-14,0,-21,4,-27,10r-18,-13v21,-30,92,-32,92,25v0,23,-2,49,2,69xm70,-179r0,-24v-18,3,-37,7,-37,23v0,18,32,8,37,1","w":108},"\u00d8":{"d":"173,-180r-87,131v50,30,93,-3,93,-81v0,-20,-2,-37,-6,-50xm66,-81r87,-131v-52,-28,-93,5,-93,82v0,19,2,36,6,49xm236,-274r-33,49v17,23,26,55,26,95v0,111,-84,162,-168,118r-24,36r-41,0r40,-60v-17,-23,-25,-54,-25,-94v0,-110,84,-162,167,-118r17,-26r41,0","w":240},"\u00ba":{"d":"76,-205v0,-24,-8,-35,-22,-35v-15,0,-22,11,-22,35v0,24,7,35,22,35v14,0,22,-11,22,-35xm1,-205v0,-36,20,-59,53,-59v33,0,53,23,53,59v0,36,-20,58,-53,58v-33,0,-53,-22,-53,-58","w":108},"\u00e6":{"d":"115,-49r0,-41v-31,6,-64,13,-64,39v0,36,48,17,64,2xm156,-117r73,0v-1,-26,-14,-41,-36,-41v-22,0,-36,15,-37,41xm17,-157v18,-37,99,-45,124,-14v12,-13,30,-20,51,-20v58,2,82,47,78,105r-114,0v-14,58,61,69,82,31r32,20v-27,44,-102,58,-137,9v-36,26,-56,30,-76,30v-34,0,-51,-24,-51,-50v0,-42,35,-65,109,-74v11,-51,-58,-43,-70,-15","w":280},"\u00f8":{"d":"124,-123r-48,88v43,20,58,-40,48,-88xm58,-3r-22,39r-32,0r30,-55v-48,-49,-26,-172,56,-172v13,0,25,2,35,7r20,-36r32,0r-29,53v53,60,9,211,-90,164xm57,-61r50,-90v-45,-25,-63,42,-50,90","w":180},"\u00df":{"d":"64,0r-45,0r0,-198v0,-35,22,-62,67,-62v75,0,94,86,44,117v25,7,43,30,43,72v0,70,-48,88,-94,66r11,-32v23,13,38,0,38,-36v0,-31,-9,-52,-42,-48r0,-36v19,1,26,-7,28,-32v4,-41,-50,-50,-50,-8r0,197","w":180},"\u00b9":{"d":"109,-105r-82,0r0,-24r24,0r0,-104r-28,0r0,-20v25,0,34,-14,61,-11r0,135r25,0r0,24","w":131},"\u00ac":{"d":"163,-35r0,-79r-149,0r0,-39r188,0r0,118r-39,0","w":216},"\u00b5":{"d":"132,-187r45,0r0,187r-41,0r0,-20v-20,13,-40,28,-68,23r0,65r-45,0r0,-255r45,0r0,121v-4,53,51,33,64,14r0,-135","w":200},"\u2122":{"d":"214,-260r34,93r33,-93r54,0r0,148r-36,0v-2,-32,4,-73,-2,-101r-36,101r-27,0v-14,-33,-21,-71,-38,-101r0,101r-36,0r0,-148r54,0xm131,-260r0,30r-44,0r0,118r-36,0r0,-118r-43,0r0,-30r123,0","w":360},"\u00d0":{"d":"28,0r0,-112r-24,0r0,-44r24,0r0,-104v119,-6,203,0,203,130v0,129,-84,137,-203,130xm78,-218r0,62r53,0r0,44r-53,0r0,70r33,0v57,0,70,-42,70,-88v0,-59,-29,-98,-103,-88","w":240},"\u00bd":{"d":"70,4r149,-268r32,0r-149,268r-32,0xm113,-105r-82,0r0,-24r24,0r0,-104r-28,0r0,-20v25,0,34,-14,61,-11r0,135r25,0r0,24xm305,0r-113,0r0,-26v5,-24,82,-59,82,-85v0,-33,-52,-23,-55,3r-27,-6v3,-55,114,-61,113,1v0,38,-37,53,-77,87r77,0r0,26","w":329},"\u00b1":{"d":"89,-140r0,-47r38,0r0,47r75,0r0,39r-75,0r0,48r-38,0r0,-48r-75,0r0,-39r75,0xm14,0r0,-39r188,0r0,39r-188,0","w":216},"\u00de":{"d":"74,0r-50,0r0,-260r50,0r0,48v75,-4,137,6,137,77v0,71,-61,83,-137,78r0,57xm74,-172r0,74v42,2,95,0,88,-37v7,-37,-46,-40,-88,-37"},"\u00bc":{"d":"264,-60v-1,-20,2,-45,-1,-63r-45,63r46,0xm191,-36r0,-30r69,-90r37,0r0,96r23,0r0,24r-23,0r0,36r-33,0r0,-36r-73,0xm76,4r149,-268r31,0r-148,268r-32,0xm113,-105r-82,0r0,-24r24,0r0,-104r-28,0r0,-20v25,0,34,-14,61,-11r0,135r25,0r0,24","w":329},"\u00f7":{"d":"202,-74r-188,0r0,-39r188,0r0,39xm108,-194v41,0,41,64,0,64v-40,0,-41,-64,0,-64xm108,-57v45,0,39,63,0,63v-17,0,-32,-15,-32,-31v0,-16,15,-32,32,-32","w":216},"\u00a6":{"d":"21,4r0,-102r38,0r0,102r-38,0xm21,-162r0,-102r38,0r0,102r-38,0","w":79},"\u00b0":{"d":"72,-161v-29,0,-51,-22,-51,-51v0,-29,22,-52,51,-52v29,0,51,23,51,52v0,29,-22,51,-51,51xm44,-212v0,16,12,30,28,30v16,0,28,-14,28,-30v0,-16,-12,-30,-28,-30v-16,0,-28,14,-28,30","w":144},"\u00fe":{"d":"23,68r0,-328r43,0r0,90v52,-51,123,-1,123,81v0,46,-27,93,-75,93v-15,0,-37,-9,-46,-21r0,85r-45,0xm68,-138r0,90v31,31,76,15,76,-46v0,-61,-50,-75,-76,-44","w":200},"\u00be":{"d":"49,-176r0,-24v24,0,43,-3,43,-20v-1,-26,-46,-19,-55,-2r-20,-17v26,-38,105,-33,107,15v1,17,-11,27,-25,35v61,21,23,86,-29,86v-24,0,-48,-11,-60,-33r25,-12v10,25,63,28,63,-4v0,-23,-29,-24,-49,-24xm81,4r149,-268r31,0r-148,268r-32,0xm191,-36r0,-30r69,-90r37,0r0,96r23,0r0,24r-23,0r0,36r-33,0r0,-36r-73,0xm264,-60v-1,-20,2,-45,-1,-63r-45,63r46,0","w":329},"\u00b2":{"d":"121,-105r-114,0r0,-26v5,-24,82,-59,82,-85v0,-36,-51,-23,-54,3r-27,-6v3,-55,113,-62,113,0v0,38,-38,54,-78,88r78,0r0,26","w":131},"\u00ae":{"d":"121,-118r0,61r-31,0r0,-146v51,0,114,-9,114,44v0,27,-15,38,-40,39r38,63r-32,0r-34,-61r-15,0xm121,-179r0,36v22,1,52,2,52,-19v0,-22,-30,-16,-52,-17xm144,4v-72,0,-138,-50,-138,-134v0,-84,66,-134,138,-134v72,0,138,50,138,134v0,84,-66,134,-138,134xm246,-130v0,-64,-46,-108,-102,-108v-57,0,-102,44,-102,108v0,64,45,108,102,108v56,0,102,-44,102,-108","w":288},"\u00f0":{"d":"90,-32v25,0,37,-20,37,-56v0,-36,-12,-55,-37,-55v-25,0,-37,19,-37,55v0,36,12,56,37,56xm50,-248r39,-12v7,5,14,11,20,17r36,-17r13,23r-32,16v55,65,75,225,-36,225v-51,0,-81,-38,-81,-92v0,-59,37,-99,96,-89v-4,-10,-9,-19,-15,-27r-37,18r-13,-24r33,-15v-7,-8,-15,-16,-23,-23","w":180},"\u00d7":{"d":"108,-66r-66,66r-28,-28r66,-66r-66,-66r28,-27r66,65r66,-65r28,27r-66,66r66,66r-28,28","w":216},"\u00b3":{"d":"43,-176r0,-24v24,0,43,-3,43,-20v-1,-26,-46,-19,-55,-2r-20,-17v26,-38,105,-33,107,15v1,17,-11,27,-25,35v61,21,23,86,-29,86v-24,0,-48,-11,-60,-33r25,-12v10,25,63,28,63,-4v0,-23,-29,-24,-49,-24","w":131},"\u00a9":{"d":"144,4v-72,0,-138,-50,-138,-134v0,-84,66,-134,138,-134v72,0,138,50,138,134v0,84,-66,134,-138,134xm246,-130v0,-64,-46,-108,-102,-108v-57,0,-102,44,-102,108v0,64,45,108,102,108v56,0,102,-44,102,-108xm181,-110r33,0v-6,37,-34,57,-65,57v-45,0,-75,-34,-75,-78v0,-84,127,-111,138,-23r-31,0v-14,-40,-74,-25,-69,22v-6,47,60,66,69,22","w":288},"\u00c1":{"d":"112,-210v-13,35,-20,76,-32,113r61,0xm5,0r75,-260r61,0r74,260r-49,0r-14,-56r-83,0r-15,56r-49,0xm115,-327r55,0r-52,53r-37,0"},"\u00c2":{"d":"112,-210v-13,35,-20,76,-32,113r61,0xm5,0r75,-260r61,0r74,260r-49,0r-14,-56r-83,0r-15,56r-49,0xm87,-327r45,0r42,53r-41,0r-23,-30r-23,30r-40,0"},"\u00c4":{"d":"112,-210v-13,35,-20,76,-32,113r61,0xm5,0r75,-260r61,0r74,260r-49,0r-14,-56r-83,0r-15,56r-49,0xm54,-320r44,0r0,42r-44,0r0,-42xm123,-320r43,0r0,42r-43,0r0,-42"},"\u00c0":{"d":"112,-210v-13,35,-20,76,-32,113r61,0xm5,0r75,-260r61,0r74,260r-49,0r-14,-56r-83,0r-15,56r-49,0xm50,-327r55,0r34,53r-36,0"},"\u00c5":{"d":"112,-210v-13,35,-20,76,-32,113r61,0xm5,0r75,-260r61,0r74,260r-49,0r-14,-56r-83,0r-15,56r-49,0xm71,-313v0,-22,17,-39,39,-39v22,0,39,17,39,39v0,22,-17,39,-39,39v-22,0,-39,-17,-39,-39xm91,-313v0,11,8,20,19,20v11,0,20,-9,20,-20v0,-11,-9,-19,-20,-19v-11,0,-19,8,-19,19"},"\u00c3":{"d":"112,-210v-13,35,-20,76,-32,113r61,0xm5,0r75,-260r61,0r74,260r-49,0r-14,-56r-83,0r-15,56r-49,0xm153,-323r23,0v-5,22,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v3,-22,16,-44,41,-44v28,1,58,29,68,-2"},"\u00c7":{"d":"206,-195r-45,11v-7,-22,-23,-38,-47,-38v-33,0,-54,31,-54,92v0,96,71,125,106,53r46,13v-14,42,-45,64,-87,67r-14,20v21,-6,45,1,45,25v0,39,-55,40,-85,25r6,-15v12,4,48,15,47,-9v-1,-23,-33,-1,-38,-17r19,-29v-60,-5,-94,-52,-94,-133v0,-85,38,-134,104,-134v50,0,79,23,91,69"},"\u00c9":{"d":"206,0r-176,0r0,-260r172,0r0,42r-122,0r0,62r89,0r0,42r-89,0r0,72r126,0r0,42xm122,-327r55,0r-52,53r-37,0"},"\u00ca":{"d":"206,0r-176,0r0,-260r172,0r0,42r-122,0r0,62r89,0r0,42r-89,0r0,72r126,0r0,42xm94,-327r45,0r41,53r-40,0r-23,-30r-23,30r-40,0"},"\u00cb":{"d":"206,0r-176,0r0,-260r172,0r0,42r-122,0r0,62r89,0r0,42r-89,0r0,72r126,0r0,42xm61,-320r43,0r0,42r-43,0r0,-42xm130,-320r43,0r0,42r-43,0r0,-42"},"\u00c8":{"d":"206,0r-176,0r0,-260r172,0r0,42r-122,0r0,62r89,0r0,42r-89,0r0,72r126,0r0,42xm57,-327r55,0r34,53r-37,0"},"\u00cd":{"d":"85,0r-50,0r0,-260r50,0r0,260xm64,-327r55,0r-52,53r-37,0","w":119},"\u00ce":{"d":"85,0r-50,0r0,-260r50,0r0,260xm36,-327r45,0r41,53r-40,0r-23,-30r-23,30r-40,0","w":119},"\u00cf":{"d":"85,0r-50,0r0,-260r50,0r0,260xm3,-320r43,0r0,42r-43,0r0,-42xm72,-320r43,0r0,42r-43,0r0,-42","w":119},"\u00cc":{"d":"85,0r-50,0r0,-260r50,0r0,260xm-1,-327r55,0r34,53r-37,0","w":119},"\u00d1":{"d":"76,0r-47,0r0,-260r52,0r103,177r0,-177r47,0r0,260r-48,0r-107,-185r0,185xm172,-323r24,0v-5,22,-14,44,-40,44v-26,0,-61,-29,-70,2r-22,0v3,-22,16,-44,41,-44v28,0,58,29,67,-2","w":259},"\u00d3":{"d":"179,-130v0,-61,-18,-92,-59,-92v-41,0,-60,31,-60,92v0,61,19,92,60,92v41,0,59,-31,59,-92xm229,-130v0,85,-38,134,-109,134v-71,0,-109,-49,-109,-134v0,-85,38,-134,109,-134v71,0,109,49,109,134xm125,-327r55,0r-52,53r-37,0","w":240},"\u00d4":{"d":"179,-130v0,-61,-18,-92,-59,-92v-41,0,-60,31,-60,92v0,61,19,92,60,92v41,0,59,-31,59,-92xm229,-130v0,85,-38,134,-109,134v-71,0,-109,-49,-109,-134v0,-85,38,-134,109,-134v71,0,109,49,109,134xm98,-327r44,0r42,53r-41,0r-23,-30r-23,30r-40,0","w":240},"\u00d6":{"d":"179,-130v0,-61,-18,-92,-59,-92v-41,0,-60,31,-60,92v0,61,19,92,60,92v41,0,59,-31,59,-92xm229,-130v0,85,-38,134,-109,134v-71,0,-109,-49,-109,-134v0,-85,38,-134,109,-134v71,0,109,49,109,134xm64,-320r44,0r0,42r-44,0r0,-42xm133,-320r43,0r0,42r-43,0r0,-42","w":240},"\u00d2":{"d":"179,-130v0,-61,-18,-92,-59,-92v-41,0,-60,31,-60,92v0,61,19,92,60,92v41,0,59,-31,59,-92xm229,-130v0,85,-38,134,-109,134v-71,0,-109,-49,-109,-134v0,-85,38,-134,109,-134v71,0,109,49,109,134xm60,-327r56,0r33,53r-36,0","w":240},"\u00d5":{"d":"179,-130v0,-61,-18,-92,-59,-92v-41,0,-60,31,-60,92v0,61,19,92,60,92v41,0,59,-31,59,-92xm229,-130v0,85,-38,134,-109,134v-71,0,-109,-49,-109,-134v0,-85,38,-134,109,-134v71,0,109,49,109,134xm163,-323r23,0v-5,22,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v3,-22,16,-44,41,-44v28,1,58,29,68,-2","w":240},"\u00da":{"d":"180,-95r0,-165r50,0r0,163v0,76,-47,101,-100,101v-53,0,-100,-25,-100,-101r0,-163r50,0r0,165v0,42,17,57,50,57v33,0,50,-15,50,-57xm134,-327r55,0r-53,53r-36,0","w":259},"\u00db":{"d":"180,-95r0,-165r50,0r0,163v0,76,-47,101,-100,101v-53,0,-100,-25,-100,-101r0,-163r50,0r0,165v0,42,17,57,50,57v33,0,50,-15,50,-57xm106,-327r45,0r41,53r-40,0r-23,-30r-23,30r-40,0","w":259},"\u00dc":{"d":"180,-95r0,-165r50,0r0,163v0,76,-47,101,-100,101v-53,0,-100,-25,-100,-101r0,-163r50,0r0,165v0,42,17,57,50,57v33,0,50,-15,50,-57xm73,-320r43,0r0,42r-43,0r0,-42xm141,-320r44,0r0,42r-44,0r0,-42","w":259},"\u00d9":{"d":"180,-95r0,-165r50,0r0,163v0,76,-47,101,-100,101v-53,0,-100,-25,-100,-101r0,-163r50,0r0,165v0,42,17,57,50,57v33,0,50,-15,50,-57xm69,-327r55,0r34,53r-37,0","w":259},"\u00dd":{"d":"55,-260r45,103r45,-103r52,0r-72,156r0,104r-50,0r0,-104r-71,-156r51,0xm105,-327r55,0r-52,53r-37,0","w":200,"k":{"v":13,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":33,".":33,"-":20,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":20,";":20,"p":13,"q":20}},"\u00e1":{"d":"162,0r-44,0r-2,-16v-34,32,-110,25,-110,-30v0,-42,35,-65,108,-74v11,-52,-58,-43,-69,-15r-28,-22v32,-51,141,-52,141,42v0,39,-4,83,4,115xm114,-49r0,-41v-30,6,-63,13,-63,39v0,36,50,17,63,2xm95,-264r55,0r-52,53r-37,0","w":180},"\u00e2":{"d":"162,0r-44,0r-2,-16v-34,32,-110,25,-110,-30v0,-42,35,-65,108,-74v11,-52,-58,-43,-69,-15r-28,-22v32,-51,141,-52,141,42v0,39,-4,83,4,115xm114,-49r0,-41v-30,6,-63,13,-63,39v0,36,50,17,63,2xm67,-264r45,0r41,53r-40,0r-23,-29r-23,29r-40,0","w":180},"\u00e4":{"d":"162,0r-44,0r-2,-16v-34,32,-110,25,-110,-30v0,-42,35,-65,108,-74v11,-52,-58,-43,-69,-15r-28,-22v32,-51,141,-52,141,42v0,39,-4,83,4,115xm114,-49r0,-41v-30,6,-63,13,-63,39v0,36,50,17,63,2xm34,-256r43,0r0,41r-43,0r0,-41xm103,-256r43,0r0,41r-43,0r0,-41","w":180},"\u00e0":{"d":"162,0r-44,0r-2,-16v-34,32,-110,25,-110,-30v0,-42,35,-65,108,-74v11,-52,-58,-43,-69,-15r-28,-22v32,-51,141,-52,141,42v0,39,-4,83,4,115xm114,-49r0,-41v-30,6,-63,13,-63,39v0,36,50,17,63,2xm30,-264r55,0r34,53r-37,0","w":180},"\u00e5":{"d":"162,0r-44,0r-2,-16v-34,32,-110,25,-110,-30v0,-42,35,-65,108,-74v11,-52,-58,-43,-69,-15r-28,-22v32,-51,141,-52,141,42v0,39,-4,83,4,115xm114,-49r0,-41v-30,6,-63,13,-63,39v0,36,50,17,63,2xm51,-249v0,-22,17,-39,39,-39v22,0,39,17,39,39v0,22,-17,38,-39,38v-22,0,-39,-16,-39,-38xm71,-249v0,11,8,19,19,19v11,0,19,-8,19,-19v0,-11,-8,-20,-19,-20v-11,0,-19,9,-19,20","w":180},"\u00e3":{"d":"162,0r-44,0r-2,-16v-34,32,-110,25,-110,-30v0,-42,35,-65,108,-74v11,-52,-58,-43,-69,-15r-28,-22v32,-51,141,-52,141,42v0,39,-4,83,4,115xm114,-49r0,-41v-30,6,-63,13,-63,39v0,36,50,17,63,2xm132,-260r24,0v-5,22,-14,44,-40,44v-26,0,-61,-29,-70,2r-22,0v3,-22,16,-44,41,-44v28,1,58,31,67,-2","w":180},"\u00e7":{"d":"164,-141r-37,15v-7,-16,-15,-29,-37,-29v-25,0,-37,19,-37,61v0,73,58,78,78,32r34,19v-16,30,-36,43,-64,46r-13,20v21,-6,44,1,44,25v0,39,-54,40,-84,25r6,-15v12,4,48,15,47,-9v-1,-23,-34,-1,-38,-17r19,-29v-46,-4,-73,-41,-73,-97v0,-59,30,-97,81,-97v35,0,64,19,74,50","w":180},"\u00e9":{"d":"53,-117r72,0v-1,-26,-14,-41,-36,-41v-22,0,-35,15,-36,41xm166,-86r-113,0v-2,66,58,65,81,31r32,20v-17,27,-42,39,-78,39v-49,0,-79,-39,-79,-98v0,-59,30,-97,81,-97v55,0,81,47,76,105xm95,-264r55,0r-52,53r-37,0","w":180},"\u00ea":{"d":"53,-117r72,0v-1,-26,-14,-41,-36,-41v-22,0,-35,15,-36,41xm166,-86r-113,0v-2,66,58,65,81,31r32,20v-17,27,-42,39,-78,39v-49,0,-79,-39,-79,-98v0,-59,30,-97,81,-97v55,0,81,47,76,105xm67,-264r45,0r41,53r-40,0r-23,-29r-23,29r-40,0","w":180},"\u00eb":{"d":"53,-117r72,0v-1,-26,-14,-41,-36,-41v-22,0,-35,15,-36,41xm166,-86r-113,0v-2,66,58,65,81,31r32,20v-17,27,-42,39,-78,39v-49,0,-79,-39,-79,-98v0,-59,30,-97,81,-97v55,0,81,47,76,105xm34,-256r43,0r0,41r-43,0r0,-41xm103,-256r43,0r0,41r-43,0r0,-41","w":180},"\u00e8":{"d":"53,-117r72,0v-1,-26,-14,-41,-36,-41v-22,0,-35,15,-36,41xm166,-86r-113,0v-2,66,58,65,81,31r32,20v-17,27,-42,39,-78,39v-49,0,-79,-39,-79,-98v0,-59,30,-97,81,-97v55,0,81,47,76,105xm30,-264r55,0r34,53r-37,0","w":180},"\u00ed":{"d":"72,-187r0,187r-44,0r0,-187r44,0xm55,-264r56,0r-53,53r-36,0","w":100},"\u00ee":{"d":"72,-187r0,187r-44,0r0,-187r44,0xm28,-264r45,0r41,53r-41,0r-22,-29r-23,29r-41,0","w":100},"\u00ef":{"d":"72,-187r0,187r-44,0r0,-187r44,0xm-5,-256r43,0r0,41r-43,0r0,-41xm63,-256r44,0r0,41r-44,0r0,-41","w":100},"\u00ec":{"d":"72,-187r0,187r-44,0r0,-187r44,0xm-9,-264r55,0r34,53r-37,0","w":100},"\u00f1":{"d":"68,0r-45,0r0,-187r41,0r0,20v37,-37,113,-32,113,39r0,128r-45,0r0,-122v4,-52,-51,-31,-64,-13r0,135xm141,-260r23,0v-5,22,-14,44,-40,44v0,0,-60,-30,-69,2r-23,0v3,-22,16,-44,41,-44v28,1,58,31,68,-2","w":200},"\u00f3":{"d":"127,-94v0,-42,-12,-61,-37,-61v-25,0,-37,19,-37,61v0,42,12,62,37,62v25,0,37,-20,37,-62xm9,-94v0,-59,30,-97,81,-97v51,0,81,38,81,97v0,59,-30,98,-81,98v-51,0,-81,-39,-81,-98xm94,-264r55,0r-53,53r-36,0","w":180},"\u00f4":{"d":"127,-94v0,-42,-12,-61,-37,-61v-25,0,-37,19,-37,61v0,42,12,62,37,62v25,0,37,-20,37,-62xm9,-94v0,-59,30,-97,81,-97v51,0,81,38,81,97v0,59,-30,98,-81,98v-51,0,-81,-39,-81,-98xm66,-264r45,0r41,53r-40,0r-23,-29r-23,29r-40,0","w":180},"\u00f6":{"d":"127,-94v0,-42,-12,-61,-37,-61v-25,0,-37,19,-37,61v0,42,12,62,37,62v25,0,37,-20,37,-62xm9,-94v0,-59,30,-97,81,-97v51,0,81,38,81,97v0,59,-30,98,-81,98v-51,0,-81,-39,-81,-98xm33,-256r43,0r0,41r-43,0r0,-41xm102,-256r43,0r0,41r-43,0r0,-41","w":180},"\u00f2":{"d":"127,-94v0,-42,-12,-61,-37,-61v-25,0,-37,19,-37,61v0,42,12,62,37,62v25,0,37,-20,37,-62xm9,-94v0,-59,30,-97,81,-97v51,0,81,38,81,97v0,59,-30,98,-81,98v-51,0,-81,-39,-81,-98xm29,-264r55,0r34,53r-37,0","w":180},"\u00f5":{"d":"127,-94v0,-42,-12,-61,-37,-61v-25,0,-37,19,-37,61v0,42,12,62,37,62v25,0,37,-20,37,-62xm9,-94v0,-59,30,-97,81,-97v51,0,81,38,81,97v0,59,-30,98,-81,98v-51,0,-81,-39,-81,-98xm131,-260r24,0v-5,22,-14,44,-40,44v-26,0,-61,-29,-70,2r-22,0v3,-22,16,-44,41,-44v28,0,57,30,67,-2","w":180},"\u00fa":{"d":"132,-187r45,0r0,187r-41,0r0,-20v-37,37,-113,32,-113,-39r0,-128r45,0r0,121v-4,53,51,33,64,14r0,-135xm105,-264r55,0r-52,53r-37,0","w":200},"\u00fb":{"d":"132,-187r45,0r0,187r-41,0r0,-20v-37,37,-113,32,-113,-39r0,-128r45,0r0,121v-4,53,51,33,64,14r0,-135xm77,-264r45,0r41,53r-40,0r-23,-29r-23,29r-40,0","w":200},"\u00fc":{"d":"132,-187r45,0r0,187r-41,0r0,-20v-37,37,-113,32,-113,-39r0,-128r45,0r0,121v-4,53,51,33,64,14r0,-135xm44,-256r43,0r0,41r-43,0r0,-41xm113,-256r43,0r0,41r-43,0r0,-41","w":200},"\u00f9":{"d":"132,-187r45,0r0,187r-41,0r0,-20v-37,37,-113,32,-113,-39r0,-128r45,0r0,121v-4,53,51,33,64,14r0,-135xm40,-264r55,0r34,53r-36,0","w":200},"\u00fd":{"d":"4,30v41,12,61,-20,49,-57r-50,-160r45,0r32,115r32,-115r45,0r-59,187v-23,62,-40,72,-94,67r0,-37xm85,-264r55,0r-53,53r-36,0","w":159,"k":{",":27,".":27}},"\u00ff":{"d":"4,30v41,12,61,-20,49,-57r-50,-160r45,0r32,115r32,-115r45,0r-59,187v-23,62,-40,72,-94,67r0,-37xm24,-256r43,0r0,41r-43,0r0,-41xm93,-256r43,0r0,41r-43,0r0,-41","w":159,"k":{",":27,".":27}},"\u00a0":{"w":109},"\u00ad":{"d":"104,-74r-88,0r0,-39r88,0r0,39","w":119}}});

$(document).ready(function(){
  /* current nav marker */
  var path = location.pathname.substring(1);
  if (path) {
    $('#dhSubNav a[href$="'+path+'"]').parent("li").addClass("current");
  }

  /* current subnav marker */
  var subNavMarker = $("#dhSubNav").attr("class");
  if (subNavMarker) {
      $("#dhSubNav li#" + subNavMarker).addClass("current");
  }

  /* search field*/
  var search_input = $("form#search input");
  search_input.addClass("labeled");
  search_input.focus(function(){
    if ($(this).val() == "search...") {
      $(this).val("").removeClass("labeled");
    }
  });
  search_input.blur(function(){
    if (search_input.val() == "") {
      search_input.val("search...").addClass("labeled");
    }
  });

  /* popup subnav */
  if ($('#dhWrapper').attr('class') == 'single') {
    $('.single #dhSubNav').click(function(){
      $(this).addClass('show');
      $('#dhContent').click(function(){
        $('.single #dhSubNav.show').removeClass('show');
      });
    });
  };

  /* latest blog posts bubble */
  if (navigator.platform.search(/win/i) > -1) {
      $("#latest-posts-bubble").addClass("alt");
  }
  setTimeout(function() {
      $("#latest-posts-bubble")
          .css("display", "none")
          .fadeIn(800)
          .css("padding-bottom", "8px")
          .animate({"top": "10px"}, {duration: 400, queue: false});
      displayLatestPostsBubble("latest-posts-bubble", true);
  }, 800);

  /* prevent sidebar overlap */
  $(window).load(function(){
      var contentHeight = $('#dhContent').height();
      var sidebarHeight = $('#dhSubNav').height() + 
        ($('#tag-cloud').height() + 31 || 0) + 
        ($('.side-quotes-services').height() || 0);

      if (contentHeight < sidebarHeight) {
          $('#dhContent').css('min-height', sidebarHeight);
      }
  });

  /* homepage panels */
  $("#panels a[class^=t]").click(function(){
      if (notClass("selected", $(this).attr("class"))) {
          changePanel($(this).attr("class"));
      }

      return false;
  });

  $('a.lightbox').fancybox({
    padding: 0,
    scrolling: 'no',
    width: 768,
    height: 590
  });
});

