
 $(document).ready(function(){

// Open Comments block
   $('.commentOpen').click(function(event){
   	event.preventDefault();
    $('.comments').css ({
     	display: 'block'
     })
   });	

// Popup animation (Coda-style)
	$(function () {
 
 
  $('.bubble').each(function () {
    // options
    var distance = 10;
    var time = 250;
    var hideDelay = 750;

    var hideDelayTimer = null;

    // tracker
    var beingShown = false;
    var shown = false;
    
    var trigger = $('.trigger', this);
    var popup = $('.popup', this).css('opacity', 0);

    // set the mouseover and mouseout on both element
    $([trigger.get(0), popup.get(0)]).mouseover(function () {
      // stops the hide event if we move from the trigger to the popup element
      if (hideDelayTimer) clearTimeout(hideDelayTimer);

      // don't trigger the animation again if we're being shown, or already visible
      if (beingShown || shown) {
        return;
      } else {
        beingShown = true;

        // reset position of popup box
        popup.css({
          top: -85,
          left: -65,
          display: 'block' // brings the popup back in to view
        })
        


        // (we're using chaining on the popup) now animate it's opacity and position
        .animate({
          top: '-=' + distance + 'px',
          opacity: 1
        }, time, 'swing', function() {
          // once the animation is complete, set the tracker variables
          beingShown = false;
          shown = true;
        });
      }
    }).mouseout(function () {
      // reset the timer if we get fired again - avoids double animations
      if (hideDelayTimer) clearTimeout(hideDelayTimer);
      
      // store the timer so that it can be cleared in the mouseover if required
      hideDelayTimer = setTimeout(function () {
        hideDelayTimer = null;
        popup.animate({
          top: '-=' + distance + 'px',
          opacity: 0
        }, time, 'swing', function () {
          // once the animate is complete, set the tracker variables
          shown = false;
          // hide the popup entirely after the effect (opacity alone doesn't do the job)
          popup.css('display', 'none');
        });
      }, hideDelay);
    });
  });
});

});
//Cufon script
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
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("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.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 fonts: Rockwell 400-700
Cufon.registerFont({"w":195,"face":{"font-family":"rockwell","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 6 6 3 3 4 5 2 1 3","ascent":"244","descent":"-116","x-height":"5","bbox":"-13 -263 360 81.0149","underline-thickness":"18","underline-position":"-18","stemh":"30","stemv":"34","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":90,"k":{"T":14,"V":29,"W":29,"Y":36}},"!":{"d":"44,-66r-9,-104r0,-74r35,0v2,64,-3,121,-8,178r-18,0xm31,0r0,-43r43,0r0,43r-43,0","w":105},"\"":{"d":"27,-153v-3,-29,-6,-58,-5,-91r29,0v1,33,-2,62,-5,91r-19,0xm100,-153v-3,-29,-6,-58,-5,-91r29,0v1,33,-2,62,-5,91r-19,0","w":146},"#":{"d":"15,-178r56,0r15,-70r26,0r-15,70r70,0r14,-70r26,0r-14,70r32,0r0,24r-38,0r-12,62r50,0r0,25r-55,0r-15,70r-26,0r15,-70r-70,0r-15,70r-26,0r15,-70r-33,0r0,-25r38,0r13,-62r-51,0r0,-24xm91,-154r-12,62r70,0r13,-62r-71,0","w":240},"$":{"d":"82,31r0,-27v-39,-3,-72,-27,-71,-78r32,0v2,30,13,45,39,49r0,-81v-45,-9,-67,-31,-67,-68v0,-40,25,-65,67,-69r0,-14r27,0r0,14v39,4,63,29,59,78r-30,0v0,-29,-8,-43,-29,-48r0,78v44,8,71,24,71,66v0,42,-26,68,-71,73r0,27r-27,0xm82,-141r0,-74v-41,5,-42,67,0,74xm109,-100r0,75v26,-5,38,-17,38,-39v0,-21,-10,-30,-38,-36"},"%":{"d":"222,-58v0,-39,20,-64,51,-64v31,0,51,25,51,64v0,39,-20,63,-51,63v-31,0,-51,-24,-51,-63xm251,-58v0,28,7,41,22,41v15,0,23,-13,23,-41v0,-28,-8,-41,-23,-41v-15,0,-22,13,-22,41xm24,-184v0,-39,21,-64,52,-64v31,0,51,25,51,64v0,39,-20,63,-51,63v-31,0,-52,-24,-52,-63xm53,-184v0,28,8,41,23,41v15,0,22,-13,22,-41v0,-28,-7,-42,-22,-42v-15,0,-23,14,-23,42xm65,0r194,-244r25,0r-193,244r-26,0","w":348},"&":{"d":"185,-129r50,0r0,30r-25,0v-6,23,-15,40,-25,52r13,16r37,0r0,31r-55,0r-17,-22v-54,54,-153,18,-152,-56v0,-32,19,-57,56,-74v-35,-38,-11,-96,42,-96v33,0,59,22,59,52v0,24,-13,42,-51,56r49,67v9,-15,15,-34,19,-56xm145,-46r-60,-83v-57,19,-40,102,18,102v15,0,30,-6,42,-19xm99,-163v26,-12,36,-21,36,-34v0,-14,-11,-22,-25,-22v-32,0,-33,31,-11,56","w":243},"(":{"d":"65,-85v0,78,20,110,60,136r0,27v-57,-27,-96,-81,-96,-163v0,-82,39,-137,96,-164r0,27v-40,26,-60,59,-60,137","w":135},")":{"d":"70,-85v0,-78,-20,-111,-60,-137r0,-27v57,27,96,82,96,164v0,82,-39,136,-96,163r0,-27v40,-26,60,-58,60,-136","w":135},"*":{"d":"84,-165v-36,-8,-47,0,-72,-12r10,-31r29,9v6,8,19,17,38,24v-1,-27,-15,-42,-11,-73r31,0v3,31,-9,46,-11,73v19,-7,32,-16,38,-24r30,-9r9,31r-28,9v-10,-3,-23,-2,-44,3v14,16,24,25,33,28r18,25r-26,18r-19,-24v-1,-11,-7,-31,-15,-41v-8,10,-15,30,-16,41r-19,24r-26,-18r18,-25v9,-3,19,-12,33,-28","w":187},"+":{"d":"106,-104r-82,0r0,-27r82,0r0,-83r28,0r0,83r82,0r0,27r-82,0r0,83r-28,0r0,-83","w":240},",":{"d":"31,0r0,-43r43,0v0,46,6,95,-43,92r0,-18v15,-4,22,-11,22,-31r-22,0","w":105,"k":{" ":29}},"-":{"d":"11,-99r106,0r0,30r-106,0r0,-30","w":127},".":{"d":"31,0r0,-43r43,0r0,43r-43,0","w":105,"k":{" ":29}},"\/":{"d":"127,-244r29,0r-125,249r-29,0","w":157},"0":{"d":"13,-122v0,-79,31,-126,85,-126v53,0,84,47,84,126v0,80,-31,126,-84,126v-54,0,-85,-46,-85,-126xm97,-220v-35,0,-49,36,-49,98v0,63,14,98,49,98v31,0,50,-26,50,-98v0,-71,-19,-98,-50,-98"},"1":{"d":"85,-30r0,-185r-33,0r0,-29r67,0r0,214r31,0r0,30r-98,0r0,-30r33,0"},"2":{"d":"171,-182v0,74,-111,87,-121,151r91,0r2,-56r30,0r-2,87r-157,0v0,-33,12,-66,41,-95v38,-38,80,-49,80,-86v0,-23,-16,-39,-40,-39v-34,0,-42,20,-42,67r-32,0v-5,-66,29,-95,74,-95v57,0,76,37,76,66"},"3":{"d":"73,-113r0,-30v35,2,62,-5,62,-37v0,-24,-15,-40,-38,-40v-28,0,-40,19,-40,49r-34,0v-2,-48,26,-77,71,-77v76,0,99,92,40,119v81,24,47,133,-39,133v-48,0,-84,-26,-83,-87r32,0v-8,69,100,79,101,15v0,-34,-32,-48,-72,-45"},"4":{"d":"108,-66r-82,0v-3,-11,-8,-19,-16,-27r102,-154r28,0r0,152r40,0r0,29r-40,0r0,36r23,0r0,30r-81,0r0,-30r26,0r0,-36xm108,-95r-1,-97r-63,97r64,0"},"5":{"d":"54,-141v46,-40,125,-8,125,63v0,45,-27,82,-84,82v-50,0,-78,-29,-82,-82r31,0v4,34,23,54,51,54v29,0,49,-22,49,-54v1,-60,-69,-68,-94,-22v-8,-8,-16,-13,-26,-18r11,-126r130,0r0,65r-30,0r0,-34r-75,0"},"6":{"d":"174,-172r-30,0v-4,-29,-21,-48,-44,-48v-36,0,-50,43,-50,91v41,-51,125,-24,125,49v0,49,-30,84,-73,84v-53,0,-84,-47,-84,-125v0,-80,32,-127,86,-127v41,0,69,29,70,76xm51,-92v5,45,21,66,49,66v26,0,44,-21,44,-51v0,-58,-65,-59,-93,-15"},"7":{"d":"39,0r0,-30r33,0v4,-63,29,-130,63,-183r-84,0r0,33r-30,0r0,-64r153,0r0,23v-35,49,-67,131,-67,191r29,0r0,30r-97,0"},"8":{"d":"55,-128v-63,-31,-38,-120,41,-120v80,0,107,87,44,120v28,11,43,33,43,61v0,44,-33,71,-84,71v-100,0,-114,-103,-44,-132xm98,-141v28,0,44,-16,44,-40v0,-24,-16,-38,-46,-38v-27,0,-43,14,-43,38v0,24,17,40,45,40xm98,-24v30,0,49,-19,49,-45v0,-27,-20,-44,-51,-44v-29,0,-48,17,-48,44v0,27,20,45,50,45"},"9":{"d":"18,-72r30,0v4,29,21,48,44,48v26,0,50,-25,50,-92v-41,51,-125,24,-125,-49v0,-49,30,-83,73,-83v53,0,84,46,84,124v0,80,-32,128,-86,128v-41,0,-69,-29,-70,-76xm140,-153v-5,-45,-20,-66,-48,-66v-26,0,-44,22,-44,52v0,58,65,59,92,14"},":":{"d":"31,-127r0,-43r43,0r0,43r-43,0xm31,0r0,-43r43,0r0,43r-43,0","w":105,"k":{" ":29}},";":{"d":"31,0r0,-43r43,0v0,46,6,95,-43,92r0,-18v15,-4,22,-11,22,-31r-22,0xm31,-127r0,-43r43,0r0,43r-43,0","w":105,"k":{" ":29}},"<":{"d":"61,-117r155,63r0,30r-192,-81r0,-25r192,-81r0,30","w":240},"=":{"d":"24,-173r192,0r0,28r-192,0r0,-28xm24,-90r192,0r0,28r-192,0r0,-28","w":240},">":{"d":"179,-117r-155,-64r0,-30r192,81r0,25r-192,81r0,-30","w":240},"?":{"d":"85,-66r-18,0r-5,-76v29,1,61,-3,60,-39v0,-24,-14,-39,-38,-39v-27,0,-42,17,-40,50r-34,0v-5,-62,41,-78,72,-78v46,0,75,27,75,69v0,33,-21,67,-68,66xm54,0r0,-43r43,0r0,43r-43,0","w":168},"@":{"d":"321,-3r33,0v-32,48,-79,79,-157,79v-121,0,-178,-69,-178,-158v0,-72,44,-181,175,-181v93,0,150,65,150,138v0,62,-48,126,-106,126v-21,0,-34,-9,-34,-29v-42,54,-118,24,-118,-50v0,-81,96,-156,145,-80r6,-27r32,0r-31,141v-2,9,5,15,12,15v16,0,68,-32,68,-97v0,-63,-54,-111,-126,-111v-85,0,-147,65,-147,152v0,81,51,135,152,135v55,0,99,-19,124,-53xm120,-76v0,28,15,50,37,50v55,0,98,-139,23,-139v-42,0,-60,61,-60,89","w":363},"A":{"d":"171,-86r-88,0r-19,55r30,0r0,31r-97,0r0,-31r30,0r67,-186r-29,0r0,-27r125,0r0,27r-29,0r66,186r27,0r0,31r-96,0r0,-31r31,0xm161,-114r-32,-103r-3,0r-34,103r69,0","w":251,"k":{"v":22,"w":4,"y":14,"C":7,"G":11,"O":11,"Q":14,"T":7,"U":9,"V":22,"W":14,"Y":18}},"B":{"d":"38,-31r0,-183r-30,0r0,-30r99,0v83,-3,96,85,45,114v27,9,42,32,42,61v0,28,-15,69,-90,69r-96,0r0,-31r30,0xm75,-143v38,4,75,-7,70,-36v3,-32,-32,-37,-70,-35r0,71xm75,-31v43,3,87,-4,82,-41v7,-29,-38,-45,-82,-40r0,81","w":209,"k":{"U":7,",":7,".":7}},"C":{"d":"224,-99r32,17v-14,53,-59,86,-118,86v-72,0,-123,-52,-123,-126v0,-111,124,-160,203,-100r0,-22r31,0r0,78r-31,0v-14,-31,-44,-50,-79,-50v-49,0,-83,39,-83,93v0,106,143,131,168,24","w":273,"k":{",":14,".":14,"A":9}},"D":{"d":"38,-214r-33,0r0,-30r115,0v95,0,124,60,124,119v0,79,-40,125,-128,125r-111,0r0,-31r33,0r0,-183xm75,-214r0,183r43,0v68,0,89,-41,89,-92v0,-68,-50,-100,-132,-91","w":262,"k":{"V":25,"W":25,"Y":25,",":22,".":22,"A":4}},"E":{"d":"42,-31r0,-183r-32,0r0,-30r203,0r0,73r-30,0r0,-43r-105,0r0,73r91,0r0,30r-91,0r0,80r105,0r0,-44r30,0r0,75r-203,0r0,-31r32,0","w":225},"F":{"d":"37,-31r0,-183r-31,0r0,-30r190,0r0,73r-30,0r0,-43r-92,0r0,73r79,0r0,30r-79,0r0,80r32,0r0,31r-100,0r0,-31r31,0","w":198,"k":{",":50,".":50,"A":32,"a":29,"e":29,"o":29}},"G":{"d":"182,-118r89,0v2,89,-60,122,-124,122v-104,0,-130,-79,-130,-127v0,-57,34,-125,123,-125v35,0,60,9,86,31r0,-27r31,0r0,80r-31,0v-14,-31,-46,-52,-82,-52v-51,0,-87,38,-87,93v0,55,38,95,90,95v41,0,73,-24,79,-59r-44,0r0,-31","w":288,"k":{",":22,".":22}},"H":{"d":"37,-31r0,-183r-27,0r0,-30r93,0r0,30r-29,0r0,70r107,0r0,-70r-29,0r0,-30r94,0r0,30r-28,0r0,183r28,0r0,31r-94,0r0,-31r29,0r0,-82r-107,0r0,82r29,0r0,31r-93,0r0,-31r27,0","w":254},"I":{"d":"38,-31r0,-183r-27,0r0,-30r90,0r0,30r-26,0r0,183r26,0r0,31r-90,0r0,-31r27,0","w":112},"J":{"d":"-13,73r0,-34v27,6,53,6,53,-28r0,-225r-31,0r0,-30r99,0r0,30r-31,0r0,232v-5,60,-48,65,-90,55","w":112,"k":{"u":5,",":11,".":11,"A":4,"a":13,"e":14,"o":14}},"K":{"d":"37,-31r0,-183r-31,0r0,-30r99,0r0,30r-31,0r0,183r28,0r0,31r-96,0r0,-31r31,0xm76,-129r78,-85r-28,0r0,-30r95,0r0,30r-26,0r-74,85r77,98r26,0r0,31r-99,0r0,-31r26,0","w":225,"k":{"y":29,"O":14,"u":7,"e":9,"o":7}},"L":{"d":"37,-31r0,-183r-32,0r0,-30r100,0r0,30r-31,0r0,183r76,0r0,-83r34,0r0,114r-179,0r0,-31r32,0","w":187,"k":{"y":7,"V":36,"W":27,"Y":27}},"M":{"d":"39,-31r0,-183r-30,0r0,-30r84,0r64,167r64,-167r85,0r0,30r-29,0r0,183r29,0r0,31r-89,0r0,-31r26,0r-1,-183r-83,217r-7,0r-83,-217r0,183r26,0r0,31r-86,0r0,-31r30,0","w":315},"N":{"d":"36,-31r0,-183r-35,0r0,-30r84,0r107,190r0,-160r-35,0r0,-30r101,0r0,30r-36,0r0,217r-39,0r-116,-209r0,175r35,0r0,31r-101,0r0,-31r35,0","w":258,"k":{",":14,".":14,"A":5}},"O":{"d":"18,-122v0,-74,53,-126,126,-126v73,0,127,53,127,126v0,73,-54,126,-127,126v-74,0,-126,-52,-126,-126xm58,-122v0,53,37,94,86,94v49,0,86,-41,86,-94v0,-53,-37,-94,-86,-94v-49,0,-86,41,-86,94","w":288,"k":{"V":25,"W":25,"Y":27,",":29,".":29,"A":22,"X":27}},"P":{"d":"197,-169v-1,69,-50,78,-122,75r0,63r32,0r0,31r-100,0r0,-31r31,0r0,-183r-31,0r0,-30r109,0v68,0,81,44,81,75xm75,-123v48,5,93,-10,85,-46v2,-46,-39,-48,-85,-45r0,91","w":206,"k":{",":50,".":50,"A":27,"a":7,"e":11,"o":11}},"Q":{"d":"161,3v24,10,48,18,64,13r-13,30v-43,10,-82,-46,-124,-18r-11,-15v7,-9,17,-10,28,-15v-54,-16,-87,-65,-87,-121v0,-73,53,-125,126,-125v74,0,127,52,127,125v0,80,-62,124,-110,126xm58,-123v0,54,37,95,86,95v49,0,86,-42,86,-95v0,-53,-37,-93,-87,-93v-50,0,-85,39,-85,93","w":288,"k":{"U":11,",":32,".":32}},"R":{"d":"38,-31r0,-183r-33,0r0,-30r113,0v96,-7,100,108,27,124r43,89r30,0r0,31r-53,0r-55,-114r-35,0r0,83r32,0r0,31r-102,0r0,-31r33,0xm75,-145r41,0v61,1,52,-72,4,-69r-45,0r0,69","w":217,"k":{"O":7,"V":7,"W":7,"Y":7}},"S":{"d":"143,-68v1,-60,-132,-22,-131,-113v1,-69,80,-84,126,-48r0,-17r30,0r0,74r-30,0v6,-56,-93,-60,-93,-14v0,52,79,29,114,65v43,45,13,125,-56,125v-22,0,-43,-8,-61,-24r0,20r-30,0r0,-89r30,0r0,22v15,26,34,40,57,40v25,0,44,-18,44,-41","w":191,"k":{",":9,".":9}},"T":{"d":"202,-244r0,92r-30,0r0,-62r-51,0r0,183r32,0r0,31r-100,0r0,-31r32,0r0,-183r-51,0r0,62r-30,0r0,-92r198,0","w":206,"k":{"O":5,",":29,".":29,"A":9,"a":11,"e":18,"o":22,"h":-5,"-":45}},"U":{"d":"172,-214r-29,0r0,-30r96,0r0,30r-31,0r0,141v0,63,-45,77,-84,77v-130,1,-78,-115,-89,-218r-30,0r0,-30r95,0r0,30r-28,0r0,142v0,35,21,46,49,46v36,0,51,-15,51,-49r0,-139","w":243,"k":{",":27,".":27,"A":9}},"V":{"d":"111,3r-81,-217r-31,0r0,-30r97,0r0,30r-29,0r63,164r60,-164r-28,0r0,-30r94,0r0,30r-30,0r-81,217r-34,0","w":254,"k":{"G":18,"O":18,"u":18,",":65,".":65,"A":22,"a":40,"e":40,"o":40,"-":43,":":13,";":13}},"W":{"d":"92,3r-62,-217r-30,0r0,-30r94,0r0,30r-30,0r47,160r44,-160r-29,0r0,-30r112,0r0,30r-29,0r46,160r45,-160r-30,0r0,-30r90,0r0,30r-29,0r-61,217r-35,0r-55,-194r-54,194r-34,0","w":360,"k":{"y":18,"O":18,"u":20,",":58,".":58,"A":14,"a":32,"e":32,"o":32,"-":31,":":13,";":13}},"X":{"d":"37,-31r62,-92r-62,-91r-32,0r0,-30r98,0r0,30r-27,0r42,62r43,-62r-29,0r0,-30r94,0r0,30r-30,0r-60,88r65,95r32,0r0,31r-101,0r0,-31r29,0r-45,-66r-44,66r29,0r0,31r-97,0r0,-31r33,0","w":236},"Y":{"d":"99,-31r0,-80r-73,-103r-30,0r0,-30r101,0r0,30r-31,0r54,75r49,-75r-30,0r0,-30r97,0r0,30r-32,0r-68,103r0,80r33,0r0,31r-103,0r0,-31r33,0","w":232,"k":{"O":27,"u":29,",":43,".":43,"A":18,"a":45,"e":41,"o":43,"-":45,":":13,";":13}},"Z":{"d":"9,0r0,-31r131,-183r-95,0r0,43r-30,0r0,-73r172,0r0,27r-134,186r108,0r0,-47r30,0r0,78r-182,0","w":202},"[":{"d":"38,-245r87,0r0,26r-53,0r0,267r53,0r0,25r-87,0r0,-318","w":135},"\\":{"d":"127,5r-125,-249r29,0r125,249r-29,0","w":157},"]":{"d":"97,73r-87,0r0,-25r53,0r0,-267r-53,0r0,-26r87,0r0,318","w":135},"^":{"d":"96,-244r75,126r-31,0r-55,-94r-57,94r-31,0r76,-126r23,0","w":168},"_":{"d":"182,45r-184,0r0,-18r184,0r0,18","w":180},"a":{"d":"187,-30r0,30r-59,0r0,-21v-39,42,-109,26,-112,-30v-1,-49,68,-71,108,-41v13,-55,-50,-73,-74,-35r-32,-8v14,-26,38,-40,73,-40v92,0,62,71,67,145r29,0xm124,-43r0,-20v-24,-22,-76,-26,-76,12v0,39,54,32,76,8","w":191},"b":{"d":"9,0r0,-30r30,0r0,-185r-29,0r0,-29r63,0r0,98v47,-59,144,-22,144,59v0,82,-100,119,-144,61r0,26r-64,0xm74,-85v0,33,22,58,53,58v31,0,54,-25,54,-60v0,-41,-30,-57,-53,-57v-32,0,-54,24,-54,59","w":232,"k":{"v":14,"y":14,"b":7,"l":7,"u":4,",":22,".":22}},"c":{"d":"144,-106v-3,-23,-20,-38,-45,-38v-30,0,-50,23,-50,57v0,67,81,81,103,28r27,13v-15,33,-43,51,-80,51v-59,0,-86,-48,-86,-91v0,-68,77,-116,131,-72r0,-12r30,0r0,64r-30,0","w":187},"d":{"d":"224,-30r0,30r-65,0r0,-25v-48,53,-141,30,-144,-59v-3,-78,94,-122,144,-64r0,-67r-32,0r0,-29r66,0r0,214r31,0xm51,-85v0,35,22,58,54,58v32,0,54,-25,54,-60v0,-34,-22,-57,-54,-57v-30,0,-54,25,-54,59","w":225,"k":{"v":4,"w":4,"y":9}},"e":{"d":"193,-77r-143,0v4,60,84,69,113,25r30,13v-41,73,-180,49,-180,-46v0,-55,45,-90,89,-90v47,0,91,36,91,98xm51,-101r108,0v-5,-27,-29,-47,-56,-47v-27,0,-47,19,-52,47","w":206,"k":{"v":13,"w":7,"y":14,"b":5,",":7,".":7,"x":4}},"f":{"d":"37,-30r0,-110r-25,0r0,-30r25,0v-5,-44,9,-79,45,-79v24,0,40,14,44,39r-30,4v-1,-11,-4,-16,-12,-16v-19,-1,-12,33,-13,52r28,0r0,30r-28,0r0,110r32,0r0,30r-90,0r0,-30r24,0","w":105,"k":{"l":-4,",":-14,".":-14,"a":-9,"e":-9,"f":-4,"i":-4,"o":-7}},"g":{"d":"221,-170r0,30r-31,0r0,141v-7,89,-102,97,-158,57r22,-25v40,38,117,16,102,-56v-45,56,-143,21,-143,-59v0,-79,93,-122,144,-64r0,-24r64,0xm49,-83v0,35,22,59,53,59v32,0,55,-26,55,-59v0,-33,-23,-58,-54,-58v-31,0,-54,25,-54,58","w":225,"k":{"y":11,",":14,".":14,"a":5,"e":7,"o":7,"g":4}},"h":{"d":"38,-30r0,-185r-30,0r0,-29r64,0r0,94v39,-35,103,-41,103,27r0,93r29,0r0,30r-63,0r0,-116v-1,-46,-41,-29,-69,-7r0,93r29,0r0,30r-94,0r0,-30r31,0","w":206,"k":{"y":11}},"i":{"d":"36,-30r0,-110r-27,0r0,-30r60,0r0,140r27,0r0,30r-87,0r0,-30r27,0xm52,-248v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":105,"k":{"v":7}},"j":{"d":"-6,75r0,-31v28,6,46,-2,46,-33r0,-151r-26,0r0,-30r60,0r0,169v0,40,-2,77,-61,77v-7,0,-12,0,-19,-1xm56,-248v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":105},"k":{"d":"39,-30r0,-185r-30,0r0,-29r64,0r0,152r64,-51r-29,0r0,-27r95,0r0,27r-27,0r-63,53r60,60r29,0r0,30r-43,0r-86,-86r0,56r25,0r0,30r-90,0r0,-30r31,0","w":206,"k":{"y":7,"e":11,"o":11}},"l":{"d":"40,-30r0,-185r-31,0r0,-29r64,0r0,214r27,0r0,30r-91,0r0,-30r31,0","w":105,"k":{"w":5,"y":7}},"m":{"d":"41,-30r0,-110r-28,0r0,-30r62,0r0,21v32,-29,80,-36,99,3v24,-19,42,-27,61,-27v63,-3,42,85,45,143r29,0r0,30r-63,0r0,-118v-4,-43,-45,-22,-69,-3r0,91r30,0r0,30r-63,0r0,-118v-8,-42,-39,-22,-69,-3r0,91r29,0r0,30r-94,0r0,-30r31,0","w":311,"k":{"y":7}},"n":{"d":"73,-170r0,21v23,-17,40,-24,58,-24v24,0,45,15,45,48r0,95r29,0r0,30r-63,0r0,-111v-1,-51,-43,-30,-69,-10r0,91r30,0r0,30r-93,0r0,-30r30,0r0,-110r-30,0r0,-30r63,0","w":206,"k":{"v":9,"y":11,"u":4}},"o":{"d":"14,-85v0,-51,38,-90,89,-90v51,0,90,39,90,90v0,51,-39,90,-90,90v-51,0,-89,-39,-89,-90xm50,-85v0,33,23,58,53,58v31,0,54,-25,54,-58v0,-33,-23,-58,-54,-58v-30,0,-53,25,-53,58","w":206,"k":{"v":14,"w":16,"y":18,",":18,".":18,"x":14}},"p":{"d":"33,47r0,-187r-28,0r0,-30r62,0v1,8,-2,21,1,27v44,-60,142,-22,142,59v0,79,-93,118,-143,63r0,68r33,0r0,29r-97,0r0,-29r30,0xm67,-83v0,33,22,57,53,57v33,0,55,-24,55,-60v0,-33,-22,-57,-53,-57v-32,0,-55,25,-55,60","w":225,"k":{"y":11,",":14,".":14}},"q":{"d":"190,47r31,0r0,29r-98,0r0,-29r33,0r0,-69v-49,56,-143,17,-143,-63v0,-81,97,-117,143,-58r0,-27r62,0r0,30r-28,0r0,187xm157,-83v0,-35,-24,-60,-56,-60v-31,0,-53,25,-53,58v0,36,22,59,55,59v31,0,54,-24,54,-57","w":221},"r":{"d":"42,-30r0,-110r-34,0r0,-30r61,0r0,38v17,-36,36,-44,76,-41r0,34v-70,-10,-73,42,-69,109r37,0r0,30r-104,0r0,-30r33,0","w":150,"k":{"v":-5,"y":-5,"l":7,"u":-5,",":22,".":22,"a":9,"e":18,"i":-7,"o":14,"g":11,"c":14,"d":14,"k":7,"n":-11,"p":-5,"q":11,"r":-5,"t":-5}},"s":{"d":"46,-124v0,32,108,9,108,75v0,47,-72,66,-109,40r0,9r-30,0r0,-58r30,0v0,22,17,32,40,33v21,0,35,-8,35,-21v2,-36,-105,-8,-105,-77v0,-44,64,-63,101,-40r0,-7r29,0r0,56r-29,0v2,-38,-70,-41,-70,-10","w":164},"t":{"d":"11,-140r0,-30r22,0r0,-26r34,-31r0,57r31,0r0,30r-31,0r0,98v0,17,14,16,31,10r0,30v-31,11,-65,6,-65,-35r0,-103r-22,0","w":108},"u":{"d":"199,-30r0,30r-63,0r0,-19v-38,33,-103,33,-103,-31r0,-90r-24,0r0,-30r58,0r0,119v3,43,47,21,69,3r0,-92r-29,0r0,-30r63,0r0,140r29,0","w":202},"v":{"d":"85,3r-56,-143r-30,0r0,-30r86,0r0,30r-22,0r36,96r37,-96r-24,0r0,-30r84,0r0,30r-26,0r-55,143r-30,0","k":{",":36,".":36,"a":5,"e":9,"o":13}},"w":{"d":"66,3r-45,-143r-21,0r0,-30r71,0r0,30r-22,0r33,102r32,-102r-19,0r0,-30r83,0r0,30r-19,0r33,102r33,-102r-24,0r0,-30r77,0r0,30r-25,0r-45,143r-32,0r-39,-123r-39,123r-32,0","w":277,"k":{",":29,".":29,"a":5,"e":9,"o":13,"h":7}},"x":{"d":"100,-68r-33,38r22,0r0,30r-83,0r0,-30r25,0r51,-57r-49,-53r-23,0r0,-30r80,0r0,30r-21,0r31,32r29,-32r-17,0r0,-30r80,0r0,30r-28,0r-46,53r53,57r22,0r0,30r-81,0r0,-30r24,0","w":198,"k":{"e":14}},"y":{"d":"87,-3r-56,-137r-28,0r0,-30r84,0r0,30r-20,0r37,94r36,-94r-23,0r0,-30r82,0r0,30r-25,0r-84,216r-57,0r0,-29r34,0","w":202,"k":{",":36,".":36,"a":7,"e":18,"o":18}},"z":{"d":"6,0r0,-28r106,-115r-70,0r0,33r-28,0r0,-60r138,0r0,30r-107,112r77,0r0,-35r30,0r0,63r-146,0","w":161,"k":{"e":4,"o":5}},"{":{"d":"10,-71r0,-27v81,-3,-17,-164,102,-146r0,25v-38,-7,-36,23,-36,59v0,46,-8,63,-37,76v36,11,38,48,37,100v-1,31,9,35,36,34r0,26v-62,6,-66,-34,-66,-93v0,-29,-4,-54,-36,-54","w":119},"|":{"d":"81,-244r28,0r0,320r-28,0r0,-320","w":189},"}":{"d":"110,-98r0,28v-83,3,16,164,-102,146r0,-26v38,7,36,-22,36,-58v0,-46,8,-63,37,-76v-36,-11,-38,-48,-37,-100v1,-31,-9,-36,-36,-35r0,-25v62,-6,65,34,65,93v0,29,5,53,37,53","w":119},"~":{"d":"15,-98r0,-36v33,-43,94,-6,134,3v15,0,32,-10,46,-25r0,38v-53,60,-132,-47,-180,20","w":209},"'":{"d":"23,-153v-3,-29,-6,-58,-5,-91r28,0v1,33,-2,62,-5,91r-18,0","w":63},"`":{"d":"93,-193r-23,0r-51,-55r49,0","w":119},"\u00a0":{"w":90,"k":{"T":14,"V":29,"W":29,"Y":36}}}});Cufon.registerFont({"w":198,"face":{"font-family":"rockwell","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 6 8 3 3 4 5 2 1 3","ascent":"244","descent":"-116","x-height":"4","bbox":"-3 -262 366 79","underline-thickness":"18","underline-position":"-18","stemh":"39","stemv":"55","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":90,"k":{"T":27,"V":36,"W":36,"Y":45}},"!":{"d":"36,-244r55,0v3,60,-6,109,-14,159r-26,0v-8,-50,-18,-98,-15,-159xm34,0r0,-59r59,0r0,59r-59,0","w":127},"\"":{"d":"128,-121v-4,-39,-6,-79,-5,-123r39,0v1,44,-1,84,-5,123r-29,0xm42,-121v-4,-39,-6,-79,-5,-123r39,0v1,44,-1,84,-5,123r-29,0"},"#":{"d":"13,-185r52,0r14,-66r41,0r-14,66r54,0r13,-66r42,0r-14,66r27,0r0,39r-35,0r-10,47r45,0r0,39r-53,0r-14,65r-41,0r14,-65r-55,0r-13,65r-42,0r14,-65r-25,0r0,-39r34,0r10,-47r-44,0r0,-39xm98,-146r-10,47r54,0r10,-47r-54,0","w":240},"$":{"d":"108,35r-24,0r0,-31v-41,-6,-66,-27,-67,-72r43,0v-1,14,7,34,24,36r0,-75v-46,-22,-63,-41,-63,-71v0,-33,26,-58,63,-61r0,-15r24,0r0,15v43,4,67,30,67,65r-43,0v-3,-18,-10,-27,-24,-29r0,58v45,18,78,37,78,82v0,39,-32,66,-78,67r0,31xm108,-31v48,-3,44,-54,0,-65r0,65xm84,-157r0,-46v-28,6,-26,34,0,46","w":202},"%":{"d":"318,-58v0,41,-20,64,-57,64v-37,0,-58,-23,-58,-64v0,-41,21,-64,58,-64v37,0,57,23,57,64xm276,-57v0,-29,-4,-39,-16,-39v-10,0,-14,11,-14,36v0,29,3,40,15,40v12,0,15,-18,15,-37xm130,-185v0,41,-21,64,-58,64v-37,0,-57,-23,-57,-64v0,-41,20,-64,57,-64v37,0,58,23,58,64xm87,-184v0,-29,-3,-39,-15,-39v-10,0,-15,11,-15,36v0,29,4,40,16,40v12,0,14,-18,14,-37xm63,0r177,-244r31,0r-177,244r-31,0","w":333},"&":{"d":"274,-39r0,39r-72,0r-22,-27v-50,54,-169,34,-167,-44v0,-36,28,-61,68,-79v-40,-41,-14,-98,48,-98v75,0,86,81,22,105r35,44v11,-15,25,-37,30,-50r58,0r0,39r-30,0v-7,15,-19,36,-28,46r19,25r39,0xm152,-61r-46,-59v-49,13,-48,77,5,79v14,0,26,-6,41,-20xm127,-174v28,-8,31,-38,3,-42v-27,6,-24,19,-3,42","w":288},"(":{"d":"72,-86v0,67,8,109,42,127r0,36v-55,-23,-97,-74,-97,-163v0,-89,42,-139,97,-162r0,35v-34,18,-42,60,-42,127","w":123},")":{"d":"51,-86v0,-67,-7,-109,-41,-127r0,-35v55,23,97,73,97,162v0,89,-42,140,-97,163r0,-36v34,-18,41,-60,41,-127","w":123},"*":{"d":"135,-73r-18,-25v0,-13,-4,-25,-14,-42v-10,17,-14,29,-14,42r-18,25r-35,-25r17,-25v14,-5,21,-11,36,-29v-27,-6,-34,-4,-45,0r-30,-11r14,-40r29,9v8,11,15,15,37,26v-1,-34,-17,-41,-13,-76r44,0v3,34,-10,43,-13,76v22,-11,29,-15,37,-26r29,-9r15,40r-30,11v-13,-6,-24,-4,-46,0v13,15,23,24,36,29r18,25","w":206},"+":{"d":"143,-144r76,0r0,45r-76,0r0,77r-46,0r0,-77r-76,0r0,-45r76,0r0,-77r46,0r0,77","w":240},",":{"d":"34,-59r59,0v1,61,8,129,-58,123r0,-26v20,-3,29,-13,29,-38r-30,0r0,-59","w":127},"-":{"d":"13,-61r0,-48r98,0r0,48r-98,0","w":123},".":{"d":"34,-59r59,0r0,59r-59,0r0,-59","w":127,"k":{" ":27}},"\/":{"d":"131,-244r50,0r-129,248r-51,0","w":182},"0":{"d":"15,-123v0,-81,30,-126,84,-126v54,0,84,45,84,126v0,81,-30,126,-84,126v-54,0,-84,-45,-84,-126xm99,-36v19,0,28,-23,28,-87v0,-67,-10,-86,-28,-86v-19,0,-28,27,-28,87v0,59,9,86,28,86"},"1":{"d":"41,0r0,-39r34,0r0,-166r-36,0r0,-39r90,0r0,205r32,0r0,39r-120,0"},"2":{"d":"174,-71r0,71r-158,0v-8,-107,100,-129,101,-185v0,-15,-10,-26,-23,-26v-21,0,-28,17,-30,52r-45,-2v-12,-115,154,-112,154,-20v0,72,-96,75,-109,142r71,0r0,-32r39,0"},"3":{"d":"16,-75r47,-3v1,26,8,42,32,42v19,0,32,-14,32,-36v0,-24,-14,-40,-46,-36r0,-41v45,7,54,-60,14,-60v-17,0,-26,11,-26,32r-46,-3v2,-43,30,-69,76,-69v77,0,103,93,39,120v79,24,46,132,-38,132v-51,0,-80,-26,-84,-78"},"4":{"d":"175,-36r0,36r-97,0r0,-36r26,0r0,-31r-90,0v-4,-13,-8,-24,-13,-34r106,-147r47,0r0,147r24,0r0,34r-24,0r0,31r21,0xm104,-101r-1,-85r-59,85r60,0"},"5":{"d":"13,-66r46,-5v4,25,13,35,32,35v23,0,33,-17,33,-41v0,-48,-43,-57,-61,-24r-39,-20r7,-123r137,0r0,57r-35,0r-4,-18r-63,0r-3,58v52,-36,117,2,117,67v0,38,-19,83,-85,83v-47,0,-76,-24,-82,-69"},"6":{"d":"176,-183r-42,4v-5,-16,-11,-31,-29,-31v-20,0,-36,23,-36,69v43,-36,110,-9,110,58v0,58,-28,86,-75,86v-60,0,-88,-39,-88,-123v0,-82,29,-128,91,-128v41,0,65,24,69,65xm69,-107v0,43,8,71,34,71v17,0,27,-16,27,-42v1,-40,-34,-48,-61,-29"},"7":{"d":"152,-39r0,39r-118,0r0,-39r30,0v3,-49,30,-122,62,-167r-62,0r0,34r-40,0r0,-72r153,0r0,30v-28,34,-56,121,-56,175r31,0"},"8":{"d":"58,-129v-64,-31,-41,-120,41,-120v81,0,105,88,42,120v71,28,58,132,-42,132v-99,0,-111,-105,-41,-132xm99,-145v19,0,29,-13,29,-33v0,-17,-8,-33,-29,-33v-18,0,-28,13,-28,33v0,19,11,33,28,33xm100,-35v20,0,32,-15,32,-38v0,-22,-11,-38,-32,-38v-20,0,-33,15,-33,38v0,23,13,38,33,38"},"9":{"d":"22,-62r42,-4v5,16,11,31,29,31v20,0,37,-23,37,-69v-44,34,-111,9,-111,-58v0,-58,28,-86,75,-86v60,0,89,39,89,123v0,82,-30,128,-92,128v-41,0,-65,-24,-69,-65xm130,-139v0,-43,-9,-70,-35,-70v-17,0,-26,16,-26,42v-1,41,35,48,61,28"},":":{"d":"34,-170r59,0r0,59r-59,0r0,-59xm34,-59r59,0r0,59r-59,0r0,-59","w":127,"k":{" ":27}},";":{"d":"34,-59r59,0v1,61,8,129,-58,123r0,-26v20,-3,29,-13,29,-38r-30,0r0,-59xm34,-170r59,0r0,59r-59,0r0,-59","w":127,"k":{" ":27}},"<":{"d":"21,-99r0,-42r198,-82r0,49r-135,54r135,53r0,50","w":240},"=":{"d":"21,-101r198,0r0,46r-198,0r0,-46xm21,-185r198,0r0,45r-198,0r0,-45","w":240},">":{"d":"219,-99r-198,82r0,-50r135,-53r-135,-54r0,-49r198,82r0,42","w":240},"?":{"d":"102,-85r-25,0v0,-20,-7,-46,-3,-63v27,7,54,-3,54,-31v0,-14,-10,-32,-34,-32v-19,0,-34,12,-30,36r-54,0v0,-48,35,-74,88,-74v53,0,86,28,86,72v0,40,-28,69,-76,67xm59,-59r59,0r0,59r-59,0r0,-59","w":202},"@":{"d":"155,-32v36,0,54,-55,54,-86v0,-26,-14,-41,-32,-41v-41,0,-55,57,-55,84v0,29,14,43,33,43xm192,-262v89,0,149,57,149,134v0,68,-49,128,-117,128v-16,0,-28,-5,-32,-21v-42,46,-115,11,-115,-57v0,-39,30,-112,95,-112v20,0,36,6,47,23r4,-19r46,0r-29,136v-2,9,1,14,7,14v13,0,62,-33,62,-94v0,-43,-31,-100,-120,-100v-98,0,-144,70,-144,145v0,81,53,128,149,128v46,0,89,-10,118,-46r38,0v-28,54,-81,78,-160,78v-127,0,-179,-74,-179,-160v0,-73,44,-177,181,-177","w":352},"A":{"d":"252,-41r0,41r-119,0r0,-41r30,0r-11,-42r-63,0r-14,42r33,0r0,41r-109,0r0,-41r31,0r48,-162r-33,0r0,-41r159,0r0,41r-32,0r51,162r29,0xm142,-119v-8,-24,-12,-52,-21,-74r-22,74r43,0","w":251,"k":{"v":11,"w":4,"y":11,"C":7,"G":7,"O":11,"Q":11,"T":11,"U":5,"V":16,"W":11,"Y":11}},"B":{"d":"12,-244v89,5,210,-26,212,64v0,24,-12,40,-35,50v74,28,55,130,-46,130r-131,0r0,-41r30,0r0,-162r-30,0r0,-41xm106,-41v34,4,64,-5,61,-33v-3,-34,-28,-34,-61,-33r0,66xm106,-148v28,2,56,-1,54,-28v4,-24,-25,-30,-54,-27r0,55","w":251,"k":{"U":5,",":14,".":14}},"C":{"d":"215,-158v-23,-79,-133,-52,-133,36v0,48,27,81,68,81v34,0,60,-24,69,-64r48,23v-18,66,-73,85,-121,85v-104,0,-133,-72,-133,-125v0,-104,121,-161,202,-103r0,-19r42,0r0,86r-42,0","w":281,"k":{",":14,".":14,"A":7}},"D":{"d":"140,-244v81,-6,134,51,134,122v0,63,-39,122,-117,122r-145,0r0,-41r37,0r0,-162r-37,0r0,-41r128,0xm113,-41v63,6,96,-21,95,-80v-1,-61,-32,-88,-95,-82r0,162","w":288,"k":{"V":14,"W":18,"Y":18,",":27,".":27,"A":11}},"E":{"d":"12,0r0,-41r29,0r0,-162r-29,0r0,-41r215,0r0,77r-46,0r0,-36r-76,0r0,56r61,0r0,42r-61,0r0,64r76,0r0,-37r46,0r0,78r-215,0","w":240},"F":{"d":"10,0r0,-41r35,0r0,-162r-35,0r0,-41r219,0r0,75r-47,0r0,-34r-73,0r0,56r53,0r0,42r-53,0r0,64r37,0r0,41r-136,0","w":232,"k":{",":54,".":54,"A":22,"a":36,"e":36,"o":36}},"G":{"d":"223,-158v-8,-27,-34,-47,-67,-47v-42,0,-70,32,-70,78v0,96,104,113,128,45r-43,0r0,-41r115,0v5,98,-77,126,-133,126v-91,0,-136,-57,-136,-126v0,-104,129,-159,206,-101r0,-20r42,0r0,86r-42,0","w":303,"k":{",":29,".":29}},"H":{"d":"11,0r0,-41r29,0r0,-162r-29,0r0,-41r118,0r0,41r-25,0r0,54r66,0r0,-54r-25,0r0,-41r118,0r0,41r-29,0r0,162r29,0r0,41r-118,0r0,-41r25,0r0,-67r-66,0r0,67r25,0r0,41r-118,0","w":273},"I":{"d":"8,0r0,-41r37,0r0,-162r-37,0r0,-41r138,0r0,41r-37,0r0,162r37,0r0,41r-138,0","w":153},"J":{"d":"0,71r0,-44v25,7,44,2,45,-27r0,-203r-36,0r0,-41r133,0r0,41r-33,0r0,198v2,65,-46,91,-109,76","w":146,"k":{",":18,".":18,"A":5,"a":11,"e":14,"o":14,"u":9}},"K":{"d":"7,0r0,-41r33,0r0,-162r-33,0r0,-41r127,0r0,41r-30,0r0,162r30,0r0,41r-127,0xm151,0r0,-41r29,0r-74,-88r80,-74r-29,0r0,-41r119,0r0,41r-30,0r-69,67r80,95r25,0r0,41r-131,0","w":281,"k":{"y":22,"O":11,"e":4,"o":4,"u":7}},"L":{"d":"10,0r0,-41r35,0r0,-162r-35,0r0,-41r134,0r0,41r-35,0r0,162r72,0r0,-76r48,0r0,117r-219,0","w":232,"k":{"T":9,"V":27,"W":22,"Y":27}},"M":{"d":"10,0r0,-41r32,0r0,-162r-32,0r0,-41r122,0r54,143r56,-143r124,0r0,41r-32,0r0,162r32,0r0,41r-126,0r0,-41r32,0r0,-162r-6,0r-76,203r-27,0r-76,-203r-6,0r0,162r32,0r0,41r-103,0","w":375},"N":{"d":"8,0r0,-41r32,0r0,-162r-32,0r0,-41r102,0r90,152r0,-111r-32,0r0,-41r110,0r0,41r-34,0r0,203r-55,0r-105,-180r0,139r30,0r0,41r-106,0","w":285,"k":{",":29,".":29,"A":5}},"O":{"d":"154,-248v91,0,136,61,136,126v0,63,-43,125,-136,125v-92,0,-136,-62,-136,-125v0,-65,46,-126,136,-126xm154,-204v-32,0,-68,24,-68,83v0,47,28,80,68,80v33,0,67,-26,67,-82v0,-50,-29,-81,-67,-81","w":307,"k":{"T":9,"V":27,"W":27,"Y":27,",":36,".":36,"A":22,"X":27}},"P":{"d":"139,-41r0,41r-128,0r0,-41r31,0r0,-162r-31,0r0,-41r139,0v51,0,83,34,83,77v0,56,-53,87,-128,78r0,48r34,0xm105,-130v35,2,62,-5,61,-36v-1,-33,-26,-40,-61,-37r0,73","w":240,"k":{",":58,".":58,"A":27,"a":5,"e":9,"o":9}},"Q":{"d":"243,21r-15,40v-49,4,-96,-59,-139,-16r-16,-24v10,-12,23,-18,42,-21v-134,-29,-136,-247,39,-248v92,0,136,62,136,126v1,74,-57,118,-121,125v31,11,45,23,74,18xm154,-204v-32,0,-68,24,-68,83v0,47,28,80,68,80v33,0,67,-26,67,-82v0,-50,-29,-81,-67,-81","w":307,"k":{"U":9,",":36,".":36}},"R":{"d":"263,-41r0,41r-74,0r-55,-107r-29,0r0,66r31,0r0,41r-128,0r0,-41r34,0r0,-162r-34,0r0,-41r153,0v83,-3,98,104,31,129r39,74r32,0xm105,-147v31,4,68,-6,63,-28v0,-10,-6,-28,-30,-28r-33,0r0,56","w":262,"k":{"O":9,"T":9,"U":7,"V":14,"W":14,"Y":14}},"S":{"d":"16,0r0,-83r41,0v-6,44,65,63,65,18v0,-45,-109,-38,-109,-115v1,-71,79,-85,112,-44r0,-20r41,0r0,74r-41,0v-3,-22,-17,-36,-36,-36v-14,0,-24,8,-24,20v0,40,113,31,113,117v0,83,-85,89,-121,48r0,21r-41,0","w":191,"k":{",":9,".":9}},"T":{"d":"233,-244r0,98r-43,0r0,-57r-36,0r0,162r36,0r0,41r-137,0r0,-41r37,0r0,-162r-37,0r0,57r-42,0r0,-98r222,0","w":243,"k":{"w":-7,"O":9,",":29,".":29,"A":11,"a":14,"e":29,"o":29,"-":36}},"U":{"d":"5,-203r0,-41r114,0r0,41r-21,0r0,124v0,24,7,40,31,40v21,0,34,-10,34,-38r0,-126r-20,0r0,-41r94,0r0,41r-30,0r0,137v0,57,-50,69,-85,69v-48,0,-88,-18,-88,-78r0,-128r-29,0","w":243,"k":{",":29,".":29,"A":9}},"V":{"d":"102,2r-73,-205r-29,0r0,-41r121,0r0,41r-28,0r41,122r41,-122r-27,0r0,-41r103,0r0,41r-29,0r-70,205r-50,0","w":251,"k":{"G":22,"O":27,",":45,".":45,"A":16,"a":36,"e":36,"o":36,"u":16,"i":5,"-":36,":":18,";":18}},"W":{"d":"96,2r-70,-205r-26,0r0,-41r109,0r0,41r-24,0r40,117r37,-117r-23,0r0,-41r88,0r0,41r-23,0r41,117r38,-117r-25,0r0,-41r99,0r0,41r-27,0r-68,205r-45,0r-39,-112r-37,112r-45,0","w":356,"k":{"y":18,"O":27,",":54,".":54,"A":11,"a":36,"e":36,"o":36,"u":14,"i":5,"-":36,":":22,";":22,"h":-9}},"X":{"d":"-1,0r0,-41r36,0r60,-85r-60,-77r-33,0r0,-41r125,0r0,38r-23,0r36,46r34,-46r-23,0r0,-38r109,0r0,41r-34,0r-58,80r62,82r37,0r0,41r-131,0r0,-39r25,0r-38,-51r-36,51r25,0r0,39r-113,0","w":266},"Y":{"d":"62,0r0,-41r34,0r0,-66r-67,-96r-30,0r0,-41r120,0r0,41r-23,0r38,60r35,-60r-21,0r0,-41r105,0r0,41r-31,0r-64,96r0,66r35,0r0,41r-131,0","w":251,"k":{"O":27,",":29,".":29,"A":11,"a":36,"e":45,"o":45,"u":29,"i":5,"-":45,":":27,";":27}},"Z":{"d":"18,0r0,-41r116,-162r-68,0r0,44r-42,0r0,-85r189,0r0,36r-119,167r80,0r0,-47r42,0r0,88r-198,0","w":232},"[":{"d":"40,73r0,-317r99,0r0,36r-44,0r0,245r44,0r0,36r-99,0","w":150},"\\":{"d":"51,-244r130,248r-50,0r-130,-248r50,0","w":182},"]":{"d":"111,73r-100,0r0,-36r44,0r0,-245r-44,0r0,-36r100,0r0,317","w":150},"^":{"d":"20,-104r66,-140r39,0r65,140r-50,0r-35,-86r-34,86r-51,0","w":209},"_":{"d":"-2,27r184,0r0,18r-184,0r0,-18","w":180},"a":{"d":"205,-39r0,39r-82,0r0,-13v-38,33,-109,11,-109,-38v0,-46,63,-71,109,-49v7,-41,-42,-52,-64,-26r-44,-8v14,-28,40,-40,83,-40v88,0,82,58,80,135r27,0xm123,-63v-22,-17,-52,-17,-56,9v4,31,36,28,56,5r0,-14","w":209},"b":{"d":"89,-244r0,93v46,-52,126,-10,122,65v-5,93,-74,110,-122,67r0,19r-84,0r0,-39r29,0r0,-166r-29,0r0,-39r84,0xm155,-86v0,-28,-12,-44,-33,-44v-21,0,-33,18,-33,46v0,27,12,44,33,44v21,0,33,-17,33,-46","w":225,"k":{"y":7,"b":7,"l":9,",":14,".":14}},"c":{"d":"186,-170r0,69r-37,0v-15,-43,-82,-37,-82,15v0,57,62,62,82,20r42,18v-29,85,-179,59,-179,-37v0,-70,80,-114,137,-71r0,-14r37,0","w":202,"k":{"l":5,",":7,".":7,"k":5}},"d":{"d":"218,-39r0,39r-81,0r0,-20v-50,53,-123,8,-123,-66v0,-73,76,-116,123,-66r0,-53r-26,0r0,-39r81,0r0,205r26,0xm138,-86v0,-26,-13,-44,-35,-44v-21,0,-33,17,-33,45v0,27,12,45,33,45v17,0,35,-13,35,-46","w":225,"k":{"v":5,"w":5,"y":7,"d":7}},"e":{"d":"150,-51r43,13v-39,70,-180,49,-180,-44v0,-53,39,-92,92,-92v51,0,92,39,88,100r-125,0v-4,38,55,62,82,23xm68,-104r71,0v-3,-22,-16,-35,-36,-35v-20,0,-32,12,-35,35","w":206,"k":{"p":7,"w":5,"y":7,",":7,".":7}},"f":{"d":"117,-39r0,39r-105,0r0,-39r23,0r0,-92r-23,0r0,-39r23,0v-3,-45,12,-79,67,-79v26,0,44,8,56,24r-41,31v-4,-13,-6,-18,-14,-18v-14,0,-14,25,-13,42r27,0r0,39r-27,0r0,92r27,0","w":127},"g":{"d":"220,-170r0,39r-29,0v-6,102,31,210,-90,210v-34,0,-59,-6,-76,-19r26,-35v32,24,92,10,85,-30r0,-16v-52,51,-123,11,-123,-64v0,-74,78,-117,123,-64r0,-21r84,0xm136,-84v0,-27,-13,-44,-34,-44v-21,0,-33,17,-33,43v0,26,13,44,33,44v20,0,34,-17,34,-43","w":225,"k":{",":22,".":22,"e":7,"o":7,"g":5}},"h":{"d":"10,0r0,-39r26,0r0,-166r-26,0r0,-39r81,0r0,87v41,-35,101,-14,101,36r0,82r25,0r0,39r-80,0r0,-109v0,-30,-28,-23,-46,-10r0,80r25,0r0,39r-106,0","w":225,"k":{"y":14}},"i":{"d":"15,-131r0,-39r80,0r0,131r25,0r0,39r-105,0r0,-39r25,0r0,-92r-25,0xm68,-248v17,0,30,12,30,29v0,17,-13,30,-30,30v-17,0,-29,-13,-29,-30v0,-17,12,-29,29,-29","w":127},"j":{"d":"14,-131r0,-39r81,0r0,175v2,58,-35,73,-98,70r0,-44v24,1,44,0,43,-26r0,-136r-26,0xm66,-248v17,0,30,12,30,29v0,17,-13,30,-30,30v-17,0,-30,-13,-30,-30v0,-17,13,-29,30,-29","w":127},"k":{"d":"13,0r0,-38r26,0r0,-167r-26,0r0,-39r81,0r1,154r58,-46r-38,0r0,-34r106,0r0,34r-19,0r-49,43r45,55r23,0r0,38r-52,0r-75,-90r0,52r21,0r0,38r-102,0","w":232,"k":{"e":11,"o":14}},"l":{"d":"13,0r0,-39r26,0r0,-166r-26,0r0,-39r81,0r0,205r25,0r0,39r-106,0","w":127,"k":{"w":5,"y":5}},"m":{"d":"7,-131r0,-39r87,0r0,14v36,-24,83,-23,106,7v44,-34,125,-42,125,32r0,78r34,0r0,39r-89,0r0,-99v0,-38,-36,-29,-60,-16r0,76r30,0r0,39r-86,0r0,-99v0,-38,-34,-29,-60,-16r0,76r30,0r0,39r-117,0r0,-39r32,0r0,-92r-32,0","w":356,"k":{"y":13}},"n":{"d":"13,-131r0,-39r81,0r0,16v41,-30,101,-32,101,39r0,76r25,0r0,39r-80,0r0,-108v-1,-30,-30,-19,-46,-8r0,77r23,0r0,39r-104,0r0,-39r26,0r0,-92r-26,0","w":225,"k":{"v":5,"y":13}},"o":{"d":"193,-85v0,54,-37,89,-90,89v-50,0,-89,-32,-89,-89v0,-60,43,-89,89,-89v50,0,90,32,90,89xm137,-85v0,-30,-12,-47,-34,-47v-22,0,-34,17,-34,48v0,29,13,46,34,46v22,0,34,-17,34,-47","w":206,"k":{"v":5,"w":5,"y":9,",":14,".":14,"x":9}},"p":{"d":"122,37r0,39r-116,0r0,-39r29,0r0,-168r-29,0r0,-39r84,0r0,21v46,-55,122,-8,122,65v0,75,-73,116,-122,67r0,54r32,0xm156,-84v0,-27,-13,-44,-34,-44v-21,0,-32,16,-32,44v0,28,12,46,33,46v21,0,33,-17,33,-46","w":225,"k":{"y":7,",":14,".":14}},"q":{"d":"103,37r32,0r0,-54v-49,49,-122,8,-122,-67v0,-73,76,-120,122,-65r0,-21r84,0r0,39r-29,0r0,168r29,0r0,39r-116,0r0,-39xm69,-84v0,29,12,46,33,46v21,0,33,-18,33,-47v0,-27,-12,-43,-32,-43v-21,0,-34,17,-34,44","w":225},"r":{"d":"130,-39r0,39r-120,0r0,-39r31,0r0,-92r-28,0r0,-39r78,0r0,43v12,-32,33,-48,68,-46r0,52v-55,-2,-66,33,-63,82r34,0","w":161,"k":{"p":-18,"v":-27,"y":-22,",":14,".":14,"u":-20,"i":-9,"m":-18,"n":-18,"r":-11,"t":-16}},"s":{"d":"126,-49v2,-28,-110,-7,-112,-74v-2,-44,64,-62,106,-42r0,-5r39,0r0,49r-39,0v-3,-12,-15,-18,-37,-18v-14,0,-23,5,-23,13v0,24,111,1,111,72v0,33,-23,57,-67,57v-24,0,-36,-4,-44,-12r0,9r-39,0r0,-59r39,0v-4,29,63,38,66,10","w":183,"k":{",":11,".":11}},"t":{"d":"7,-131r0,-39r21,0r0,-27r56,-39r0,66r30,0r0,39r-30,0r0,74v-2,23,15,18,30,14r0,37v-36,15,-86,15,-86,-32r0,-93r-21,0","w":123},"u":{"d":"212,-39r0,39r-81,0r0,-14v-39,31,-101,20,-101,-36r0,-81r-25,0r0,-39r80,0r0,106v-1,33,29,23,46,10r0,-77r-23,0r0,-39r78,0r0,131r26,0","w":225},"v":{"d":"81,3r-58,-134r-24,0r0,-39r100,0r0,39r-18,0r27,77r31,-77r-17,0r0,-39r86,0r0,39r-25,0r-56,134r-46,0","w":206,"k":{",":36,".":36,"a":5,"e":9,"o":7}},"w":{"d":"66,3r-44,-134r-22,0r0,-39r93,0r0,39r-19,0r21,63r35,-102r45,0r35,102r20,-63r-20,0r0,-39r82,0r0,39r-21,0r-44,134r-47,0r-33,-101r-33,101r-48,0","w":292,"k":{",":36,".":36,"a":5,"e":9,"o":9,"h":9}},"x":{"d":"8,0r0,-39r25,0r36,-44r-36,-48r-25,0r0,-39r65,0r31,47r34,-47r51,0r0,39r-23,0r-34,41r40,51r23,0r0,39r-66,0r-33,-48r-35,48r-53,0","w":202,"k":{"e":9}},"y":{"d":"44,76r0,-39r33,0r11,-30r-62,-138r-25,0r0,-39r99,0r0,39r-16,0r28,76r30,-76r-18,0r0,-39r86,0r0,39r-25,0r-81,207r-60,0","w":213,"k":{",":50,".":50,"a":7,"e":14,"o":9}},"z":{"d":"13,0r0,-35r100,-100r-55,0r0,26r-37,0r0,-61r156,0r0,35r-99,100r64,0r0,-28r35,0r0,63r-164,0","w":191,"k":{"e":7,"o":7}},"{":{"d":"10,-104v38,2,42,-33,39,-73v-3,-42,19,-72,82,-67r0,41v-37,0,-37,1,-37,49v0,40,-9,55,-32,70v23,15,32,30,32,70v0,48,0,49,37,49r0,42v-73,4,-82,-29,-82,-90v0,-33,-9,-51,-39,-51r0,-40","w":138},"|":{"d":"87,-244r46,0r0,321r-46,0r0,-321","w":219},"}":{"d":"128,-64v-38,-2,-40,34,-38,73v3,42,-19,73,-82,68r0,-42v37,0,37,-1,37,-49v0,-40,9,-55,32,-70v-23,-15,-32,-30,-32,-70v0,-48,0,-49,-37,-49r0,-41v72,-3,82,29,82,89v0,33,8,51,38,51r0,40","w":138},"~":{"d":"12,-91r0,-46v52,-67,139,42,186,-25r0,47v-13,12,-32,24,-51,24v-51,0,-97,-51,-135,0","w":209},"'":{"d":"36,-121v-4,-39,-6,-79,-5,-123r39,0v1,44,-1,84,-5,123r-29,0","w":101},"`":{"d":"96,-192r-28,0r-65,-56r65,0","w":119},"\u00a0":{"w":90,"k":{"T":27,"V":36,"W":36,"Y":45}}}});
