Drupal.behaviors.fusionSuperfish = function (context) {

  $("#header-main-menu ul.sf-menu").superfish({

    hoverClass: 'sfHover',

    delay: 0,

    animation:   {opacity:'show',height:'show'},

    speed: 'fast',

    autoArrows: true

  });

  

};







jQuery(document).ready(function () {

	Cufon.replace('h1, h2');

	//Cufon.replace('#main-menu');

});;
/**

* hoverIntent r6 // 2011.02.26 // jQuery 1.5.1+

* <http://cherne.net/brian/resources/jquery.hoverIntent.html>

* 

* @param  f  onMouseOver function || An object with configuration options

* @param  g  onMouseOut function  || Nothing (use configuration options object)

* @author    Brian Cherne brian(at)cherne(dot)net

*/

(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev])}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev])};var handleHover=function(e){var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t)}if(e.type=="mouseenter"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob)},cfg.timeout)}}};return this.bind('mouseenter',handleHover).bind('mouseleave',handleHover)}})(jQuery);;
/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

(function($){
  $.fn.superfish = function(op){
    var sf = $.fn.superfish,
      c = sf.c,
      $arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
      over = function(){
        var $$ = $(this), menu = getMenu($$);
        clearTimeout(menu.sfTimer);
        $$.showSuperfishUl().siblings().hideSuperfishUl();
      },
      out = function(){
        var $$ = $(this), menu = getMenu($$), o = sf.op;
        clearTimeout(menu.sfTimer);
        menu.sfTimer=setTimeout(function(){
          o.retainPath=($.inArray($$[0],o.$path)>-1);
          $$.hideSuperfishUl();
          if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
        },o.delay);
      },
      getMenu = function($menu){
        var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
        sf.op = sf.o[menu.serial];
        return menu;
      },
      addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };

    return this.each(function() {
      var s = this.serial = sf.o.length;
      var o = $.extend({},sf.defaults,op);
      o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
        $(this).addClass([o.hoverClass,c.bcClass].join(' '))
          .filter('li:has(ul)').removeClass(o.pathClass);
      });
      sf.o[s] = sf.op = o;

      $('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
        if (o.autoArrows) addArrow( $('>a:first-child',this) );
      })
      .not('.'+c.bcClass)
        .hideSuperfishUl();

      var $a = $('a',this);
      $a.each(function(i){
        var $li = $a.eq(i).parents('li');
        $a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
      });
      o.onInit.call(this);

    }).each(function() {
      var menuClasses = [c.menuClass];
      if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
      $(this).addClass(menuClasses.join(' '));
    });
  };

  var sf = $.fn.superfish;
  sf.o = [];
  sf.op = {};
  sf.IE7fix = function(){
    var o = sf.op;
    if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
      this.toggleClass(sf.c.shadowClass+'-off');
    };
  sf.c = {
    bcClass: 'sf-breadcrumb',
    menuClass: 'sf-js-enabled',
    anchorClass: 'sf-with-ul',
    arrowClass: 'sf-sub-indicator',
    shadowClass: 'sf-shadow'
  };
  sf.defaults = {
    hoverClass: 'sfHover',
    pathClass: 'overideThisToUse',
    pathLevels: 1,
    delay: 800,
    animation: {opacity:'show'},
    speed: 'normal',
    autoArrows: true,
    dropShadows: true,
    disableHI: false, // true disables hoverIntent detection
    onInit: function(){}, // callback functions
    onBeforeShow: function(){},
    onShow: function(){},
    onHide: function(){}
  };
  $.fn.extend({
    hideSuperfishUl : function(){
      var o = sf.op,
        not = (o.retainPath===true) ? o.$path : '';
      o.retainPath = false;
      var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
          .find('>ul').hide().css('visibility','hidden');
      o.onHide.call($ul);
      return this;
    },
    showSuperfishUl : function(){
      var o = sf.op,
        sh = sf.c.shadowClass+'-off',
        $ul = this.addClass(o.hoverClass)
          .find('>ul:hidden').css('visibility','visible');
      sf.IE7fix.call($ul);
      o.onBeforeShow.call($ul);
      $ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
      return this;
    }
  });
})(jQuery);;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1993 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":212,"face":{"font-family":"futura-book-bt","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 2 2 2 4 2 3 3","ascent":"288","descent":"-72","x-height":"7","bbox":"-4 -282 360 85","underline-thickness":"20.5664","underline-position":"-29.0039","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":106},"!":{"d":"58,7v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-9,21,-20,21xm44,-58r0,-205r28,0r0,205r-28,0","w":114},"\"":{"d":"87,-252r0,97r-21,0r0,-97r21,0xm37,-252r0,97r-20,0r0,-97r20,0","w":103},"#":{"d":"171,-152r-46,0r-17,48r46,0xm162,-256r-29,83r46,0r29,-83r25,0r-29,83r54,0r-7,21r-55,0r-16,48r58,0r-8,22r-58,0r-29,82r-26,0r30,-82r-47,0r-30,82r-25,0r30,-82r-57,0r8,-22r56,0r17,-48r-60,0r7,-21r61,0r29,-83r26,0","w":276},"$":{"d":"30,-200v0,-39,27,-61,64,-64r0,-18r14,0r0,18v30,3,50,16,61,39r-26,16v-7,-15,-17,-26,-35,-29r0,84v43,16,72,34,72,83v0,44,-30,75,-72,78r0,26r-14,0r0,-26v-41,-2,-64,-24,-72,-61r26,-15v5,27,19,46,46,49r0,-106v-37,-14,-64,-32,-64,-74xm94,-238v-28,2,-43,36,-26,60v5,7,14,13,26,18r0,-78xm108,-20v37,-2,52,-49,32,-79v-6,-8,-17,-15,-32,-21r0,100"},"%":{"d":"205,-126v37,0,53,28,53,66v0,38,-17,67,-53,67v-36,0,-53,-29,-53,-67v0,-38,16,-66,53,-66xm205,-108v-38,0,-37,97,0,97v37,0,38,-97,0,-97xm63,-242v-37,0,-38,97,0,97v21,0,27,-22,27,-48v0,-27,-5,-49,-27,-49xm63,-260v36,0,53,29,53,67v0,38,-16,66,-53,66v-37,0,-53,-28,-53,-66v0,-38,17,-67,53,-67xm48,7r148,-267r21,0r-147,267r-22,0","w":266},"&":{"d":"54,-95v-28,42,20,93,68,66v10,-5,20,-12,31,-22r-63,-75v-13,9,-31,22,-36,31xm106,-230v-29,-2,-39,35,-21,54r16,18v34,-6,53,-69,5,-72xm223,-89v-10,15,-20,28,-33,40r42,49r-38,0r-24,-30v-38,51,-160,47,-155,-38v2,-40,27,-61,59,-79v-12,-15,-28,-29,-27,-55v0,-32,26,-54,59,-54v34,0,61,21,59,54v-2,34,-21,47,-47,65r56,67v11,-11,20,-26,30,-40","w":240},"'":{"d":"37,-252r0,97r-20,0r0,-97r20,0","w":53},"(":{"d":"90,-261v-48,84,-50,248,0,330r-19,10v-54,-89,-57,-261,0,-349","w":103},")":{"d":"33,-270v55,88,55,260,0,349r-19,-10v50,-82,48,-246,0,-330","w":103},"*":{"d":"27,-158r-9,-15r39,-23r-39,-23r9,-15r40,23r-1,-46r18,0r0,45r38,-22r9,16r-39,22r39,22r-9,16r-38,-22r0,44r-18,0r0,-45","w":149},"+":{"d":"160,-215r0,97r95,0r0,21r-95,0r0,97r-20,0r0,-97r-95,0r0,-21r95,0r0,-97r20,0","w":299},",":{"d":"21,51r34,-96r30,11r-44,93","w":106},"-":{"d":"25,-94r82,0r0,28r-82,0r0,-28","w":131,"k":{"x":6,"s":-7,"q":-7,"o":-7,"e":-7,"d":-7,"c":-7,"Y":28,"X":13,"W":20,"V":21,"T":33,"S":-7,"Q":-13,"O":-13,"J":-20,"G":-13,"C":-7}},".":{"d":"53,3v-11,0,-21,-9,-21,-20v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,11,-10,20,-21,20","w":106},"\/":{"d":"126,-263r24,0r-126,296r-24,0","w":150},"0":{"d":"195,-127v0,73,-25,134,-88,134v-63,0,-90,-62,-90,-134v0,-71,26,-133,89,-133v64,0,89,59,89,133xm49,-127v0,56,12,109,57,109v46,0,58,-51,58,-108v0,-59,-11,-109,-58,-109v-45,0,-57,53,-57,108"},"1":{"d":"98,0r0,-228r-52,0r17,-27r65,0r0,255r-30,0"},"2":{"d":"103,-260v70,0,100,65,66,122v-17,29,-63,78,-91,109r97,0r0,29r-155,0v36,-45,133,-144,133,-187v0,-27,-23,-45,-51,-45v-33,0,-51,21,-50,56r-29,0v-3,-53,28,-84,80,-84"},"3":{"d":"98,7v-47,0,-80,-24,-78,-72r31,0v-1,29,19,45,48,45v34,0,53,-17,53,-49v0,-39,-25,-54,-65,-50r0,-25v38,2,62,-11,62,-46v0,-27,-18,-45,-46,-44v-30,0,-46,14,-48,43r-31,0v3,-44,32,-69,80,-69v45,-1,77,25,77,68v0,32,-19,55,-46,61v30,5,50,28,49,63v0,48,-35,76,-86,75"},"4":{"d":"128,0r0,-55r-120,0r138,-205r13,0r0,180r30,0r0,25r-30,0r0,55r-31,0xm128,-80r0,-113r-75,113r75,0"},"5":{"d":"156,-85v4,-63,-81,-78,-119,-43r-5,-2r30,-125r113,0r0,26r-92,0r-16,67v56,-28,128,8,122,74v11,93,-127,128,-172,57r21,-25v10,22,28,36,57,36v38,0,59,-27,61,-65"},"6":{"d":"104,-132v-31,-1,-51,25,-51,57v0,34,21,56,53,56v32,0,53,-23,53,-56v0,-35,-21,-57,-55,-57xm100,7v-49,0,-79,-35,-79,-84v0,-51,77,-144,109,-191r26,15r-83,108v49,-35,117,4,117,67v0,53,-36,85,-90,85"},"7":{"d":"41,-3r109,-225r-119,0r0,-27r163,0r-128,265"},"8":{"d":"152,-194v0,-26,-18,-43,-45,-43v-27,0,-46,16,-46,43v0,27,18,42,45,42v29,0,46,-15,46,-42xm52,-70v0,33,20,52,54,52v34,0,54,-19,54,-52v1,-34,-21,-53,-54,-53v-33,0,-54,21,-54,53xm20,-68v1,-37,22,-59,53,-68v-78,-24,-43,-132,34,-124v81,-11,104,107,33,124v31,9,53,31,53,68v0,48,-35,76,-86,75v-50,0,-88,-26,-87,-75"},"9":{"d":"106,-121v30,1,52,-25,52,-57v0,-34,-21,-57,-53,-57v-32,0,-53,23,-53,57v0,35,20,57,54,57xm111,-260v48,0,79,36,78,84v0,50,-76,143,-108,190r-27,-14r83,-108v-49,32,-117,-6,-117,-67v0,-53,37,-85,91,-85"},":":{"d":"58,-115v-12,0,-21,-9,-21,-21v0,-12,10,-21,21,-21v11,0,20,10,20,21v0,11,-9,21,-20,21xm58,3v-12,0,-21,-9,-21,-21v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,11,-9,21,-20,21","w":114},";":{"d":"71,-115v-12,0,-21,-9,-21,-21v0,-12,10,-21,21,-21v11,0,21,9,21,21v0,12,-9,21,-21,21xm23,51r34,-96r29,11r-43,93","w":114},"<":{"d":"253,-179r-175,72r175,71r0,23r-207,-85r0,-18r207,-85r0,22","w":299},"=":{"d":"255,-84r0,21r-210,0r0,-21r210,0xm255,-151r0,20r-210,0r0,-20r210,0","w":299},">":{"d":"253,-116r0,18r-207,85r0,-23r176,-71r-176,-72r0,-22","w":299},"?":{"d":"93,-81v20,0,27,-15,27,-36r27,0v2,39,-18,62,-55,62v-32,0,-51,-20,-51,-52v0,-51,81,-66,84,-103v1,-16,-14,-27,-31,-27v-21,0,-34,14,-33,37r-29,0v-2,-39,24,-63,61,-63v37,-1,62,20,62,56v0,50,-86,64,-86,104v0,14,10,22,24,22xm90,7v-12,0,-21,-9,-21,-21v0,-12,9,-21,21,-21v12,0,20,10,21,21v0,12,-9,21,-21,21","w":187},"@":{"d":"43,-90v-7,128,167,151,248,90r8,12v-31,22,-67,39,-116,38v-97,-2,-163,-48,-163,-142v0,-104,72,-164,176,-164v83,0,144,40,144,119v0,66,-34,111,-97,116v-23,2,-37,-9,-35,-32v-10,18,-26,31,-52,32v-37,0,-51,-22,-55,-59v-7,-70,90,-134,126,-68r10,-22r20,0r-27,114v0,10,7,17,19,16v46,-5,68,-46,69,-95v2,-65,-55,-105,-125,-103v-92,3,-145,56,-150,148xm125,-78v0,40,42,50,67,27v20,-17,21,-48,30,-75v-4,-19,-16,-33,-37,-33v-37,0,-60,41,-60,81","w":360},"A":{"d":"112,-200r-41,95r82,0xm112,-268r117,268r-33,0r-33,-79r-101,0r-33,79r-33,0","w":225,"k":{"\u2019":43,"\u2018":46,"\u201d":43,"\u201c":46,"Y":20,"W":6,"V":6,"U":6,"T":20,"Q":6,"O":6,"G":6,"C":6,";":-7,":":-7,".":-11,",":-11}},"B":{"d":"187,-73v0,75,-72,77,-156,73r0,-257v76,-3,145,-3,144,67v0,29,-16,46,-38,54v30,4,50,29,50,63xm154,-73v0,-48,-42,-50,-93,-48r0,94v51,1,93,2,93,-46xm144,-186v0,-47,-36,-45,-83,-45r0,86v44,0,83,3,83,-41","w":202,"k":{"\u2019":6,"\u201d":6,"Y":6,"W":6,"V":6,".":10,"-":-10,",":10}},"C":{"d":"155,-263v36,-1,61,12,85,27r0,40v-22,-23,-47,-39,-86,-39v-63,0,-99,44,-103,107v-6,105,137,140,189,66r0,41v-23,16,-51,29,-87,28v-81,-3,-134,-54,-134,-134v0,-83,52,-133,136,-136","w":261,"k":{"\u2019":-10,"\u201d":-10,";":-7,":":-7,"-":-8}},"D":{"d":"210,-129v0,-84,-49,-107,-148,-100r0,200v98,6,148,-15,148,-100xm242,-128v5,114,-85,137,-211,128r0,-257r49,0v114,-7,158,34,162,129","w":261,"k":{"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"Y":6,"W":6,"V":6,"A":6,".":21,"-":-11,",":21}},"E":{"d":"31,0r0,-257r136,0r0,28r-105,0r0,73r105,0r0,29r-105,0r0,99r105,0r0,28r-136,0","w":187,"k":{";":-7,":":-7,".":-7,"-":-7,",":-7}},"F":{"d":"31,0r0,-257r136,0r0,28r-105,0r0,73r105,0r0,29r-105,0r0,127r-31,0","w":182,"k":{"\u2019":-7,"\u201d":-7,"u":6,"r":6,"o":13,"i":6,"e":6,"a":6,"A":20,";":15,":":15,".":71,"-":18,",":71}},"G":{"d":"52,-126v0,86,102,138,165,82v17,-16,27,-36,29,-61r-74,0r0,-28r107,0v3,87,-46,140,-129,140v-83,0,-124,-53,-131,-133v-12,-135,177,-183,242,-83r-25,20v-16,-28,-42,-46,-83,-46v-60,-1,-101,46,-101,109","w":293,"k":{"\u2019":16,"\u201d":16,"Y":6,"T":6,";":-7,":":-7,".":10,"-":-8,",":10}},"H":{"d":"31,0r0,-257r31,0r0,99r136,0r0,-99r31,0r0,257r-31,0r0,-129r-136,0r0,129r-31,0","w":259,"k":{".":6,",":6}},"I":{"d":"31,0r0,-257r31,0r0,257r-31,0","w":93},"J":{"d":"55,-21v24,0,25,-19,25,-51r0,-185r31,0r0,200v10,69,-79,82,-111,38r20,-20v11,11,18,18,35,18","w":139,"k":{"\u2019":6,"\u201d":6,";":11,":":11,".":18,",":18}},"K":{"d":"31,0r0,-257r30,0r0,114r108,-114r37,0r-111,115r122,142r-40,0r-116,-139r0,139r-30,0","k":{"\u2019":8,"\u2018":13,"\u201d":8,"\u201c":13,"y":13,"u":6,"o":6,"e":6,"a":6,"Y":13,"W":13,"U":6,"T":13,"O":13,"C":13,";":-7,":":-7,".":-7,"-":11,",":-7}},"L":{"d":"31,0r0,-257r31,0r0,228r97,0r0,29r-128,0","w":164,"k":{"\u2019":48,"\u2018":60,"\u201d":48,"\u201c":60,"y":13,"u":6,"o":6,"e":6,"a":6,"Y":26,"W":20,"V":20,"U":6,"T":20,"O":13,";":-7,":":-7,".":-7,"-":6,",":-7}},"M":{"d":"151,10r-80,-185r-33,175r-29,0r52,-268r90,213r90,-213r52,268r-30,0r-33,-175","w":301,"k":{"\u2018":6,"\u201c":6}},"N":{"d":"31,0r0,-268r188,206r0,-195r29,0r0,267r-188,-203r0,193r-29,0","w":278,"k":{"\u2018":6,"\u201c":6,";":10,":":10,".":16,",":16}},"O":{"d":"51,-128v0,63,42,106,106,106v63,0,105,-43,105,-106v0,-63,-42,-107,-105,-107v-64,0,-106,43,-106,107xm157,-263v81,0,137,53,137,135v0,82,-56,135,-137,135v-81,0,-138,-53,-138,-135v0,-82,56,-135,138,-135","w":313,"k":{"\u2019":6,"\u201d":6,"Y":13,"X":6,"V":6,"T":20,"A":6,";":-7,":":-7,".":15,"-":-10,",":15}},"P":{"d":"176,-187v-1,61,-44,77,-115,72r0,115r-30,0r0,-257v77,-3,147,-3,145,70xm143,-185v0,-43,-33,-44,-82,-44r0,86v48,0,83,1,82,-42","w":182,"k":{"\u2019":-8,"\u2018":-7,"\u201d":-8,"\u201c":-7,"s":6,"r":6,"o":20,"n":6,"e":20,"a":20,"A":20,";":16,":":16,".":86,"-":34,",":86}},"Q":{"d":"52,-128v-3,80,79,127,152,93r-53,-57r38,0r38,41v20,-16,35,-41,34,-76v-1,-67,-43,-107,-104,-107v-63,0,-103,42,-105,106xm294,-128v1,46,-19,78,-46,100r49,53r-37,0r-35,-37v-91,48,-211,-11,-206,-116v5,-81,56,-135,138,-135v83,0,134,52,137,135","w":313,"k":{";":-7,":":-7,"-":-10}},"R":{"d":"175,-187v0,45,-27,66,-75,64r98,123r-39,0r-94,-123r-4,0r0,123r-30,0r0,-257r60,0v58,-3,84,21,84,70xm144,-187v0,-47,-36,-45,-83,-45r0,87v46,0,83,2,83,-42","w":192,"k":{"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6,"Y":6,"-":10}},"S":{"d":"136,-208v-11,-38,-83,-41,-83,7v0,69,122,41,122,129v0,69,-82,100,-133,63v-14,-10,-23,-25,-28,-44r28,-14v2,60,105,62,102,0v-4,-76,-122,-48,-122,-133v0,-69,116,-87,139,-25","w":185,"k":{";":-7,":":-7,".":6,"-":-11,",":6}},"T":{"d":"76,0r0,-228r-73,0r0,-29r176,0r0,29r-72,0r0,228r-31,0","w":182,"k":{"y":43,"w":43,"u":36,"s":43,"r":36,"o":43,"e":43,"c":43,"a":43,"O":20,"C":13,"A":26,";":23,":":23,".":46,"-":33,",":46}},"U":{"d":"130,7v-67,0,-101,-35,-100,-104r0,-160r31,0r0,160v0,51,19,75,69,75v49,0,68,-24,68,-75r0,-160r31,0r0,160v1,70,-32,104,-99,104","w":259,"k":{"A":6,";":11,":":11,".":21,"-":10,",":21}},"V":{"d":"104,10r-108,-267r33,0r75,197r76,-197r33,0","w":208,"k":{"\u2019":-10,"\u201d":-10,"y":10,"u":20,"o":20,"e":20,"a":20,"O":6,"A":6,";":24,":":24,".":60,"-":29,",":60}},"W":{"d":"-2,-257r33,0r65,189r68,-200r69,200r65,-189r33,0r-99,267r-68,-199r-67,199","w":328,"k":{"\u2019":-7,"\u201d":-7,"y":6,"u":13,"r":13,"o":20,"e":20,"a":20,"A":6,";":21,":":21,".":44,"-":21,",":44}},"X":{"d":"-2,0r79,-137r-74,-120r37,0r55,98r53,-98r35,0r-73,123r82,134r-36,0r-63,-111r-60,111r-35,0","w":190,"k":{"\u2018":13,"\u201c":13,"O":6,"C":6,";":6,":":6,".":-7,"-":18,",":-7}},"Y":{"d":"88,0r0,-118r-88,-139r36,0r67,111r67,-111r35,0r-87,139r0,118r-30,0","w":205,"k":{"u":38,"o":40,"i":6,"e":40,"a":40,"O":13,"C":6,"A":20,";":38,":":38,".":48,"-":43,",":48}},"Z":{"d":"-2,0r145,-229r-118,0r0,-28r170,0r-143,228r137,0r0,29r-191,0","w":203,"k":{"\u2018":6,"\u201c":6,";":-7,":":-7,".":-7,"-":6,",":-7}},"[":{"d":"58,49r32,0r0,23r-57,0r0,-335r57,0r0,24r-32,0r0,288","w":103},"\\":{"d":"126,33r-126,-296r24,0r126,296r-24,0","w":150},"]":{"d":"46,49r0,-288r-32,0r0,-24r56,0r0,335r-56,0r0,-23r32,0","w":103},"^":{"d":"194,-256r91,98r-27,0r-78,-77r-78,77r-28,0r92,-98r28,0","w":360},"_":{"d":"180,64r0,21r-180,0r0,-21r180,0","w":180},"`":{"d":"115,-186r-21,0r-50,-61r35,0","w":180},"a":{"d":"99,-21v34,0,52,-23,52,-58v1,-34,-20,-61,-53,-60v-35,0,-53,23,-53,58v0,36,18,60,54,60xm91,-167v29,0,49,14,59,36r0,-30r28,0r0,161r-27,0r0,-29v-11,21,-30,35,-58,36v-47,0,-77,-38,-77,-87v0,-49,28,-87,75,-87","w":204,"k":{"\u2019":13,"\u2018":20,"\u201d":13,"\u201c":20}},"b":{"d":"109,-139v-33,-1,-55,25,-55,59v0,35,20,60,54,60v34,-1,53,-26,53,-63v0,-34,-19,-56,-52,-56xm113,7v-27,-1,-48,-16,-59,-36r0,29r-26,0r0,-272r27,0r0,141v11,-22,29,-36,59,-36v47,0,76,38,76,87v0,49,-30,87,-77,87","w":205,"k":{"\u2019":13,"\u2018":20,"\u201d":13,"\u201c":20,"-":-7}},"c":{"d":"44,-78v0,56,72,74,108,40r0,32v-57,33,-137,0,-137,-73v0,-71,73,-108,134,-77r0,30v-39,-29,-105,-9,-105,48","w":161},"d":{"d":"97,-20v34,0,54,-24,54,-60v0,-34,-21,-60,-54,-59v-33,0,-52,22,-52,56v0,37,18,62,52,63xm92,-167v29,0,48,14,58,36r0,-141r28,0r0,272r-27,0r0,-29v-10,21,-30,35,-58,36v-47,0,-77,-38,-77,-87v0,-49,29,-87,76,-87","w":205},"e":{"d":"142,-99v1,-41,-54,-57,-82,-32v-9,8,-15,19,-16,32r98,0xm94,-167v51,0,81,37,78,91v-41,2,-91,-4,-128,2v-1,33,22,59,54,58v26,-1,41,-15,52,-35r21,14v-14,27,-38,43,-75,44v-49,1,-82,-38,-82,-88v0,-48,32,-87,80,-86","w":185,"k":{"-":-7}},"f":{"d":"105,-244v-29,-12,-42,-3,-42,40r0,43r42,0r0,23r-42,0r0,138r-28,0r0,-138r-31,0r0,-23r31,0v2,-55,-11,-115,47,-115v9,0,16,2,23,4r0,28","w":104,"k":{"\u2019":-25,"\u2018":-32,"\u201d":-25,"\u201c":-32,".":13,",":13}},"g":{"d":"99,-21v33,0,52,-24,52,-59v1,-34,-20,-61,-53,-60v-35,0,-53,23,-53,58v0,36,18,62,54,61xm16,-81v0,-83,104,-117,134,-50r0,-30r28,0r0,158v12,83,-85,98,-137,65v-15,-10,-20,-28,-21,-48r30,0v0,28,19,40,48,40v48,0,57,-32,53,-85v-11,20,-29,36,-58,36v-48,1,-77,-37,-77,-86","w":205,"k":{".":6,"-":6,",":6}},"h":{"d":"104,-143v-64,0,-47,81,-49,143r-27,0r0,-272r27,0r0,136v13,-19,30,-30,59,-31v37,0,60,21,60,57r0,110r-28,0v-5,-57,21,-143,-42,-143","w":200,"k":{"\u2019":20,"\u2018":20,"\u201d":20,"\u201c":20}},"i":{"d":"43,-218v-11,0,-20,-9,-20,-20v0,-11,8,-21,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20xm30,0r0,-161r27,0r0,161r-27,0","w":87,"k":{"\u2018":6,"\u201c":6}},"j":{"d":"43,-218v-11,0,-20,-9,-20,-20v0,-11,8,-21,20,-20v11,0,20,9,20,20v0,11,-9,20,-20,20xm30,78r0,-239r27,0r0,239r-27,0","w":87,"k":{"\u2019":6,"\u201d":6}},"k":{"d":"28,0r0,-272r28,0r0,184r78,-73r36,0r-80,74r88,87r-39,0r-83,-85r0,85r-28,0","w":177,"k":{"\u2019":-13,"\u201d":-13,"-":15}},"l":{"d":"30,0r0,-272r28,0r0,272r-28,0","w":87},"m":{"d":"222,-167v78,-4,54,96,57,167r-27,0v-5,-55,21,-143,-40,-143v-61,0,-42,82,-45,143r-27,0v-5,-55,21,-143,-40,-143v-62,0,-42,82,-45,143r-27,0r0,-161r27,0r0,25v18,-39,95,-41,110,2v12,-20,28,-32,57,-33","w":305,"k":{"\u2019":20,"\u2018":20,"\u201d":20,"\u201c":20}},"n":{"d":"104,-143v-64,0,-47,81,-49,143r-27,0r0,-161r27,0r0,25v13,-19,30,-30,59,-31v37,0,60,21,60,57r0,110r-28,0v-5,-57,21,-143,-42,-143","w":200,"k":{"\u2019":20,"\u2018":20,"\u201d":20,"\u201c":20}},"o":{"d":"103,-141v-32,0,-59,28,-59,61v0,33,27,61,59,61v32,0,57,-28,57,-61v0,-33,-25,-61,-57,-61xm103,7v-52,0,-88,-35,-88,-87v0,-52,35,-87,88,-87v51,0,87,34,87,87v0,53,-37,87,-87,87","w":204,"k":{"\u2018":13,"\u201c":13,"-":-7}},"p":{"d":"109,-140v-34,0,-54,24,-54,60v0,34,22,60,54,60v33,0,52,-23,52,-57v0,-37,-18,-62,-52,-63xm190,-80v0,83,-104,118,-135,51r0,107r-27,0r0,-239r26,0r0,30v11,-21,31,-35,59,-36v47,-1,77,38,77,87","w":205,"k":{"\u2019":20,"\u2018":13,"\u201d":20,"\u201c":13,"-":-7}},"q":{"d":"97,-20v32,0,54,-26,54,-60v0,-36,-20,-60,-54,-60v-34,1,-52,26,-52,63v0,35,18,57,52,57xm93,-167v28,1,47,15,58,36r0,-30r27,0r0,239r-28,0r0,-107v-10,22,-29,36,-58,36v-47,0,-76,-36,-76,-87v0,-49,30,-88,77,-87","w":205},"r":{"d":"116,-138v-69,-23,-62,69,-60,138r-28,0r0,-161r25,0r0,34v13,-29,35,-45,73,-36","w":126,"k":{"\u2019":-15,"\u201d":-15,".":36,"-":13,",":36}},"s":{"d":"133,-44v3,63,-102,65,-122,17r24,-16v7,28,71,38,71,2v0,-15,-10,-20,-25,-25v-36,-12,-64,-31,-64,-52v0,-57,97,-65,114,-17r-22,14v-6,-27,-63,-33,-64,1v7,34,96,24,88,76","w":146,"k":{"\u2018":13,"\u201c":13,"-":-7}},"t":{"d":"32,-138r-29,0r0,-23r29,0r0,-65r28,0r0,65r30,0r0,23r-30,0r0,138r-28,0r0,-138","w":93,"k":{"\u2019":-10,"\u2018":-7,"\u201d":-10,"\u201c":-7,"-":8}},"u":{"d":"98,7v-85,4,-74,-87,-73,-168r29,0v5,57,-20,141,45,141v65,0,40,-84,45,-141r28,0r0,94v-1,49,-26,72,-74,74","w":196,"k":{"\u2019":13,"\u201d":13}},"v":{"d":"81,10r-80,-171r31,0r49,112r48,-112r31,0","w":161,"k":{"\u2019":-20,"\u2018":-17,"\u201d":-20,"\u201c":-17,".":28,",":28}},"w":{"d":"127,-167r48,116r43,-110r31,0r-71,171r-53,-123r-53,123r-72,-171r31,0r42,110r49,-116r5,0","w":249,"k":{"\u2019":-20,"\u2018":-10,"\u201d":-20,"\u201c":-10,".":26,"-":-7,",":26}},"x":{"d":"0,0r62,-83r-60,-78r34,0r42,58r42,-58r34,0r-60,78r62,83r-34,0r-44,-62r-44,62r-34,0","w":155,"k":{"-":11}},"y":{"d":"22,78r43,-94r-63,-145r32,0r47,116r49,-116r30,0r-107,239r-31,0","w":158,"k":{"\u2019":-20,"\u2018":-20,"\u201d":-20,"\u201c":-20,".":31,"-":6,",":31}},"z":{"d":"5,0r93,-137r-87,0r0,-24r135,0r-92,137r91,0r0,24r-140,0","w":155},"{":{"d":"81,-153v0,-67,-1,-116,70,-107r0,23v-85,-22,-6,135,-79,144v41,6,35,53,35,101v0,37,8,44,44,43r0,22v-50,1,-70,-11,-70,-64v0,-49,8,-99,-51,-91r0,-22v38,1,51,-11,51,-49","w":180},"|":{"d":"101,-275r0,360r-22,0r0,-360r22,0","w":180},"}":{"d":"29,-260v50,0,72,10,70,65v-2,50,-6,98,51,91r0,22v-56,-8,-53,40,-51,91v2,55,-19,65,-70,64r0,-22v87,20,5,-135,79,-144v-41,-7,-35,-54,-35,-102v0,-36,-9,-44,-44,-43r0,-22","w":180},"~":{"d":"201,-105v28,0,46,-12,68,-28r0,23v-20,14,-39,24,-68,25v-33,1,-76,-26,-102,-24v-29,2,-46,12,-68,28r0,-23v20,-15,40,-25,68,-26v33,-1,74,25,102,25","w":299},"\u2122":{"d":"167,-256r28,71r26,-71r23,0r0,94r-14,0r0,-81r-30,81r-10,0r-32,-81r0,81r-14,0r0,-94r23,0xm122,-256r0,12r-30,0r0,82r-17,0r0,-82r-30,0r0,-12r77,0","w":299},"\u2026":{"d":"60,3v-11,0,-21,-9,-21,-20v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,11,-10,20,-21,20xm180,3v-11,0,-21,-9,-21,-20v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,11,-10,20,-21,20xm300,3v-11,0,-21,-9,-21,-20v0,-12,9,-21,21,-21v12,0,21,9,21,21v0,11,-10,20,-21,20","w":360},"\u2013":{"d":"0,-90r180,0r0,20r-180,0r0,-20","w":180},"\u2014":{"d":"0,-70r0,-20r360,0r0,20r-360,0","w":360},"\u201c":{"d":"142,-255r-34,96r-30,-11r44,-93xm78,-255r-33,96r-30,-11r43,-93","w":156,"k":{"v":-10,"r":20,"q":13,"l":-7,"k":-7,"h":-7,"g":13,"f":-10,"d":13,"b":-17,"Y":-11,"X":-11,"W":-8,"V":-10,"T":-7,"Q":6,"O":15,"J":48,"A":48}},"\u201d":{"d":"78,-168r33,-95r31,10r-44,94xm15,-168r34,-95r29,10r-43,94","w":156},"\u2018":{"d":"85,-255r-33,96r-31,-11r44,-93","w":106,"k":{"v":-10,"r":20,"q":13,"l":-7,"k":-7,"h":-7,"g":13,"f":-10,"d":13,"b":-17,"Y":-11,"X":-11,"W":-8,"V":-10,"T":-7,"Q":6,"O":15,"J":48,"A":48}},"\u2019":{"d":"21,-168r34,-95r30,10r-44,94","w":106},"\u00d7":{"d":"151,-122r83,-83r15,14r-84,84r84,83r-15,15r-83,-84r-84,84r-14,-15r83,-83r-83,-84r14,-14","w":299},"\u0427":{"d":"151,-122r83,-83r15,14r-84,84r84,83r-15,15r-83,-84r-84,84r-14,-15r83,-83r-83,-84r14,-14","w":299},"\u00a0":{"w":106}}});
;

