(function(D){var A="Lite-1.0";D.fn.cycle=function(E){return this.each(function(){E=E||{};if(this.cycleTimeout){clearTimeout(this.cycleTimeout)}this.cycleTimeout=0;this.cyclePause=0;var I=D(this);var J=E.slideExpr?D(E.slideExpr,this):I.children();var G=J.get();if(G.length<2){if(window.console&&window.console.log){window.console.log("terminating; too few slides: "+G.length)}return }var H=D.extend({},D.fn.cycle.defaults,E||{},D.metadata?I.metadata():D.meta?I.data():{});H.before=H.before?[H.before]:[];H.after=H.after?[H.after]:[];H.after.unshift(function(){H.busy=0});var F=this.className;H.width=parseInt((F.match(/w:(\d+)/)||[])[1])||H.width;H.height=parseInt((F.match(/h:(\d+)/)||[])[1])||H.height;H.timeout=parseInt((F.match(/t:(\d+)/)||[])[1])||H.timeout;if(I.css("position")=="static"){I.css("position","relative")}if(H.width){I.width(H.width)}if(H.height&&H.height!="auto"){I.height(H.height)}var K=0;J.css({position:"absolute",top:0,left:0}).hide().each(function(M){D(this).css("z-index",G.length-M)});D(G[K]).css("opacity",1).show();if(D.browser.msie){G[K].style.removeAttribute("filter")}if(H.fit&&H.width){J.width(H.width)}if(H.fit&&H.height&&H.height!="auto"){J.height(H.height)}if(H.pause){I.hover(function(){this.cyclePause=1},function(){this.cyclePause=0})}D.fn.cycle.transitions.fade(I,J,H);J.each(function(){var M=D(this);this.cycleH=(H.fit&&H.height)?H.height:M.height();this.cycleW=(H.fit&&H.width)?H.width:M.width()});J.not(":eq("+K+")").css({opacity:0});if(H.cssFirst){D(J[K]).css(H.cssFirst)}if(H.timeout){if(H.speed.constructor==String){H.speed={slow:600,fast:200}[H.speed]||400}if(!H.sync){H.speed=H.speed/2}while((H.timeout-H.speed)<250){H.timeout+=H.speed}}H.speedIn=H.speed;H.speedOut=H.speed;H.slideCount=G.length;H.currSlide=K;H.nextSlide=1;var L=J[K];if(H.before.length){H.before[0].apply(L,[L,L,H,true])}if(H.after.length>1){H.after[1].apply(L,[L,L,H,true])}if(H.click&&!H.next){H.next=H.click}if(H.next){D(H.next).bind("click",function(){return C(G,H,H.rev?-1:1)})}if(H.prev){D(H.prev).bind("click",function(){return C(G,H,H.rev?1:-1)})}if(H.timeout){this.cycleTimeout=setTimeout(function(){B(G,H,0,!H.rev)},H.timeout+(H.delay||0))}})};function B(J,E,I,K){if(E.busy){return }var H=J[0].parentNode,M=J[E.currSlide],L=J[E.nextSlide];if(H.cycleTimeout===0&&!I){return }if(I||!H.cyclePause){if(E.before.length){D.each(E.before,function(N,O){O.apply(L,[M,L,E,K])})}var F=function(){if(D.browser.msie){this.style.removeAttribute("filter")}D.each(E.after,function(N,O){O.apply(L,[M,L,E,K])})};if(E.nextSlide!=E.currSlide){E.busy=1;D.fn.cycle.custom(M,L,E,F)}var G=(E.nextSlide+1)==J.length;E.nextSlide=G?0:E.nextSlide+1;E.currSlide=G?J.length-1:E.nextSlide-1}if(E.timeout){H.cycleTimeout=setTimeout(function(){B(J,E,0,!E.rev)},E.timeout)}}function C(E,F,I){var H=E[0].parentNode,G=H.cycleTimeout;if(G){clearTimeout(G);H.cycleTimeout=0}F.nextSlide=F.currSlide+I;if(F.nextSlide<0){F.nextSlide=E.length-1}else{if(F.nextSlide>=E.length){F.nextSlide=0}}B(E,F,1,I>=0);return false}D.fn.cycle.custom=function(K,H,I,E){var J=D(K),G=D(H);G.css({opacity:0});var F=function(){G.animate({opacity:1},I.speedIn,I.easeIn,E)};J.animate({opacity:0},I.speedOut,I.easeOut,function(){J.css({display:"none"});if(!I.sync){F()}});if(I.sync){F()}};D.fn.cycle.transitions={fade:function(F,G,E){G.not(":eq(0)").css("opacity",0);E.before.push(function(){D(this).show()})}};D.fn.cycle.ver=function(){return A};D.fn.cycle.defaults={timeout:4000,speed:1000,next:null,prev:null,before:null,after:null,height:"auto",sync:1,fit:0,pause:0,delay:0,slideExpr:null}})(jQuery);
/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
*/
jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return -(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e},easeOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}return g*Math.pow(2,-10*h)*Math.sin((h*k-i)*(2*Math.PI)/j)+l+e},easeInOutElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k/2)==2){return e+l}if(!j){j=k*(0.3*1.5)}if(g<Math.abs(l)){g=l;var i=j/4}else{var i=j/(2*Math.PI)*Math.asin(l/g)}if(h<1){return -0.5*(g*Math.pow(2,10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j))+e}return g*Math.pow(2,-10*(h-=1))*Math.sin((h*k-i)*(2*Math.PI)/j)*0.5+l+e},easeInBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*(f/=h)*f*((g+1)*f-g)+a},easeOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}return i*((f=f/h-1)*f*((g+1)*f+g)+1)+a},easeInOutBack:function(e,f,a,i,h,g){if(g==undefined){g=1.70158}if((f/=h/2)<1){return i/2*(f*f*(((g*=(1.525))+1)*f-g))+a}return i/2*((f-=2)*f*(((g*=(1.525))+1)*f+g)+2)+a},easeInBounce:function(e,f,a,h,g){return h-jQuery.easing.easeOutBounce(e,g-f,0,h,g)+a},easeOutBounce:function(e,f,a,h,g){if((f/=g)<(1/2.75)){return h*(7.5625*f*f)+a}else{if(f<(2/2.75)){return h*(7.5625*(f-=(1.5/2.75))*f+0.75)+a}else{if(f<(2.5/2.75)){return h*(7.5625*(f-=(2.25/2.75))*f+0.9375)+a}else{return h*(7.5625*(f-=(2.625/2.75))*f+0.984375)+a}}}},easeInOutBounce:function(e,f,a,h,g){if(f<g/2){return jQuery.easing.easeInBounce(e,f*2,0,h,g)*0.5+a}return jQuery.easing.easeOutBounce(e,f*2-g,0,h,g)*0.5+h*0.5+a}});
/*
 * jQuery Tools 1.2.3 - The missing UI library for the Web
 * 
 * [overlay]
 * 
 * NO COPYRIGHTS OR LICENSES. DO WHAT YOU LIKE.
 * 
 * http://flowplayer.org/tools/
 * 
 * File generated: Sat Jun 12 11:50:33 GMT 2010
 */
(function(a){function t(d,b){var c=this,i=d.add(c),o=a(window),k,f,m,g=a.tools.expose&&(b.mask||b.expose),n=Math.random().toString().slice(10);if(g){if(typeof g=="string")g={color:g};g.closeOnClick=g.closeOnEsc=false}var p=b.target||d.attr("rel");f=p?a(p):d;if(!f.length)throw"Could not find Overlay: "+p;d&&d.index(f)==-1&&d.click(function(e){c.load(e);return e.preventDefault()});a.extend(c,{load:function(e){if(c.isOpened())return c;var h=q[b.effect];if(!h)throw'Overlay: cannot find effect : "'+b.effect+
'"';b.oneInstance&&a.each(s,function(){this.close(e)});e=e||a.Event();e.type="onBeforeLoad";i.trigger(e);if(e.isDefaultPrevented())return c;m=true;g&&a(f).expose(g);var j=b.top,r=b.left,u=f.outerWidth({margin:true}),v=f.outerHeight({margin:true});if(typeof j=="string")j=j=="center"?Math.max((o.height()-v)/2,0):parseInt(j,10)/100*o.height();if(r=="center")r=Math.max((o.width()-u)/2,0);h[0].call(c,{top:j,left:r},function(){if(m){e.type="onLoad";i.trigger(e)}});g&&b.closeOnClick&&a.mask.getMask().one("click",
c.close);b.closeOnClick&&a(document).bind("click."+n,function(l){a(l.target).parents(f).length||c.close(l)});b.closeOnEsc&&a(document).bind("keydown."+n,function(l){l.keyCode==27&&c.close(l)});return c},close:function(e){if(!c.isOpened())return c;e=e||a.Event();e.type="onBeforeClose";i.trigger(e);if(!e.isDefaultPrevented()){m=false;q[b.effect][1].call(c,function(){e.type="onClose";i.trigger(e)});a(document).unbind("click."+n).unbind("keydown."+n);g&&a.mask.close();return c}},getOverlay:function(){return f},
getTrigger:function(){return d},getClosers:function(){return k},isOpened:function(){return m},getConf:function(){return b}});a.each("onBeforeLoad,onStart,onLoad,onBeforeClose,onClose".split(","),function(e,h){a.isFunction(b[h])&&a(c).bind(h,b[h]);c[h]=function(j){a(c).bind(h,j);return c}});k=f.find(b.close||".close");if(!k.length&&!b.close){k=a('<a class="close"></a>');f.prepend(k)}k.click(function(e){c.close(e)});b.load&&c.load()}a.tools=a.tools||{version:"1.2.3"};a.tools.overlay={addEffect:function(d,
b,c){q[d]=[b,c]},conf:{close:null,closeOnClick:true,closeOnEsc:true,closeSpeed:"fast",effect:"default",fixed:!a.browser.msie||a.browser.version>6,left:"center",load:false,mask:null,oneInstance:true,speed:"normal",target:null,top:"10%"}};var s=[],q={};a.tools.overlay.addEffect("default",function(d,b){var c=this.getConf(),i=a(window);if(!c.fixed){d.top+=i.scrollTop();d.left+=i.scrollLeft()}d.position=c.fixed?"fixed":"absolute";this.getOverlay().css(d).fadeIn(c.speed,b)},function(d){this.getOverlay().fadeOut(this.getConf().closeSpeed,
d)});a.fn.overlay=function(d){var b=this.data("overlay");if(b)return b;if(a.isFunction(d))d={onBeforeLoad:d};d=a.extend(true,{},a.tools.overlay.conf,d);this.each(function(){b=new t(a(this),d);s.push(b);a(this).data("overlay",b)});return d.api?b:this}})(jQuery);
/*
 * 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}})());
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1993, 1994 Adobe Systems Incorporated.  All Rights Reserved.
 * 
 * Trademark:
 * Please refer to the Copyright section for the font trademark attribution
 * notices.
 * 
 * Full name:
 * BaskervilleCyr-Upright
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Baskerville Cyrillic","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"4 0 5 0 0 0 0 0 0 0","ascent":"259","descent":"-101","x-height":"5","cap-height":"1","bbox":"-45 -283 353 101","underline-thickness":"18","underline-position":"-18","stemh":"7","stemv":"32","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":100,"k":{"\u201c":27,"\u2018":14,"Y":27,"W":27,"V":27,"T":27,"A":27}},"\u00a0":{"w":100},"!":{"d":"56,-54v3,-79,-15,-147,-16,-168v0,-34,39,-37,39,0v-1,21,-18,90,-15,168r-8,0xm39,-15v0,-11,10,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20","w":119},"\"":{"d":"113,-160v-18,-12,-14,-41,-14,-71v0,-10,4,-17,14,-17v28,6,8,54,8,80v0,4,-2,8,-8,8xm47,-160v-18,-12,-14,-41,-14,-71v0,-10,4,-17,14,-17v28,6,8,54,8,80v0,4,-2,8,-8,8","w":159},"#":{"d":"119,-96r12,-49r-50,0r-12,49r50,0xm28,0r18,-77r-42,0r0,-19r46,0r12,-49r-43,0r0,-19r47,0r17,-77r20,0r-18,77r50,0r18,-77r19,0r-18,77r43,0r0,19r-47,0r-11,49r42,0r0,19r-46,0r-18,77r-19,0r17,-77r-50,0r-17,77r-20,0"},"$":{"d":"104,-103r0,100v24,-1,49,-16,49,-47v0,-23,-8,-34,-49,-53xm91,-153r0,-86v-27,-1,-45,14,-45,37v0,18,8,30,45,49xm38,-24v-8,-1,-7,37,-17,19r0,-69v0,-6,7,-8,9,-1v6,40,30,67,61,71r0,-105v-47,-22,-69,-39,-69,-76v1,-40,30,-64,69,-63r0,-26r13,0r0,28v30,7,33,24,39,24v5,1,5,-33,14,-18r0,56v1,6,-7,7,-8,2v-7,-26,-22,-48,-45,-55r0,90v55,26,75,42,75,81v0,46,-31,72,-75,72r0,33r-13,0r0,-34v-40,-6,-48,-29,-53,-29"},"%":{"d":"37,-187v0,-35,26,-61,59,-61v29,0,57,23,57,58v0,36,-26,61,-59,61v-29,0,-57,-22,-57,-58xm64,-184v0,33,14,46,29,46v18,0,33,-14,33,-54v0,-33,-15,-47,-30,-47v-17,0,-32,15,-32,55xm207,-52v0,-35,26,-61,59,-61v29,0,57,23,57,58v0,36,-26,61,-59,61v-29,0,-57,-22,-57,-58xm234,-49v0,33,14,46,29,46v18,0,33,-14,33,-54v0,-33,-15,-47,-30,-47v-17,0,-32,15,-32,55xm102,11r133,-263r17,0r-134,263r-16,0","w":360},"&":{"d":"166,-64v21,-20,38,-82,71,-82v16,0,26,9,26,26v0,20,-33,27,-34,6v0,-7,1,-15,-6,-15v-14,0,-22,37,-50,72v42,47,58,53,91,29v1,0,3,1,3,4v0,6,-19,30,-52,30v-16,0,-39,-6,-65,-36v-23,24,-48,36,-74,36v-34,0,-55,-20,-55,-46v0,-26,11,-43,61,-76v-17,-25,-26,-46,-26,-65v0,-45,31,-67,58,-67v28,0,50,18,50,47v0,22,-7,42,-51,75v17,21,34,42,53,62xm53,-57v0,51,65,61,91,21v-17,-18,-49,-57,-58,-71v-22,14,-33,29,-33,50xm78,-206v0,19,7,41,29,71v25,-19,33,-38,33,-61v0,-29,-15,-44,-31,-44v-14,0,-31,11,-31,34","w":280},"'":{"d":"40,-248v29,7,5,55,8,80v0,4,-2,8,-8,8v-18,-10,-8,-46,-14,-71v0,-10,4,-17,14,-17","w":79},"(":{"d":"108,70r-8,6v-101,-107,-100,-217,0,-324r8,7v-41,49,-53,94,-53,155v0,61,12,107,53,156","w":119},")":{"d":"12,-241r8,-7v101,107,100,217,0,324r-8,-6v41,-49,53,-95,53,-156v0,-61,-12,-106,-53,-155","w":119},"*":{"d":"99,-172v10,27,61,7,61,32v0,20,-26,18,-34,1v-5,-12,-22,-17,-31,-25v-14,21,28,64,-5,72v-33,-8,8,-46,-5,-72v-9,8,-25,14,-31,25v-8,17,-34,20,-34,-1v0,-25,51,-6,61,-32v-9,-14,-60,-9,-60,-30v0,-8,7,-14,14,-14v25,6,17,25,49,39v16,-18,-28,-63,6,-71v34,7,-10,48,6,71v32,-14,23,-33,49,-39v20,7,20,27,-10,30v-19,2,-25,7,-36,14","w":180},"+":{"d":"97,0r0,-80r-80,0r0,-22r80,0r0,-80r22,0r0,80r80,0r0,22r-80,0r0,80r-22,0","w":216},",":{"d":"62,0v-10,10,-33,4,-32,-15v0,-11,9,-21,20,-21v12,0,26,9,26,31v0,19,-7,41,-48,63r-4,-7v28,-17,37,-27,38,-51","w":100,"k":{"\u201d":63,"\u201c":63,"\u2019":63,"\u2018":63," ":18}},"-":{"d":"15,-68r0,-24r89,0r0,24r-89,0","w":119},"\u00ad":{"d":"15,-68r0,-24r89,0r0,24r-89,0","w":119},".":{"d":"30,-15v0,-11,9,-21,20,-21v11,0,21,10,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":100,"k":{"\u201d":63,"\u201c":63,"\u2019":63,"\u2018":63,",":27," ":18}},"\/":{"d":"-2,6r83,-254r21,0r-83,254r-21,0","w":100},"0":{"d":"17,-124v0,-72,44,-124,81,-124v62,0,85,82,85,131v0,72,-44,123,-81,123v-62,0,-85,-81,-85,-130xm52,-112v0,64,12,111,46,111v32,0,47,-20,47,-128v0,-85,-17,-111,-45,-111v-27,0,-48,19,-48,128","k":{"1":20,"0":-14}},"1":{"d":"89,-27r0,-166v3,-41,-17,-26,-39,-34v0,-4,2,-6,11,-6v35,3,57,-24,61,-10r-2,216v0,17,7,20,24,20v18,0,15,8,5,8r-90,0v-5,0,-6,-1,-6,-4v7,-9,43,1,36,-24","k":{"9":11,"8":13,"7":20,"6":11,"5":13,"4":13,"3":7,"2":7,"1":34,"0":20,".":27,"-":41}},"2":{"d":"45,-197v0,27,25,48,47,35v2,0,3,2,3,4v0,6,-16,17,-33,17v-25,0,-41,-20,-41,-43v0,-36,29,-64,75,-64v43,0,79,22,79,71v12,52,-118,121,-125,148v39,0,79,-1,116,-1v9,6,-2,42,-8,52v-8,1,-4,-11,-5,-18v-1,-7,-107,-3,-134,-3v21,-60,120,-108,120,-184v0,-71,-94,-73,-94,-14"},"3":{"d":"36,-44v23,1,16,51,47,43v33,0,54,-20,54,-67v0,-42,-12,-61,-38,-61v-21,-7,-33,47,-48,21v0,-4,3,-7,16,-15v35,-21,57,-39,57,-74v0,-29,-14,-42,-36,-42v-41,0,-53,59,-15,63v12,1,14,-6,18,-3v-9,26,-62,22,-62,-15v0,-26,30,-54,69,-54v35,0,60,19,60,46v0,28,-20,45,-56,66v39,-6,70,18,71,58v0,49,-44,84,-95,84v-38,0,-59,-16,-59,-34v0,-9,6,-16,17,-16"},"4":{"d":"88,-7v36,0,21,-42,24,-71r-97,0v-10,-4,-6,-11,1,-21r115,-143v5,-5,11,-11,12,-1r0,153v14,2,41,-6,45,6v-3,11,-31,4,-45,6v3,29,-13,75,24,71v18,-2,15,8,5,8r-90,0v-5,0,-6,-1,-6,-4v0,-3,0,-4,12,-4xm112,-201r-89,111r89,0r0,-111"},"5":{"d":"34,-45v22,2,15,44,50,44v27,0,55,-22,55,-84v0,-63,-63,-74,-85,-33v-1,10,5,24,-5,25v-5,0,-9,-3,-9,-9r6,-138v0,-6,2,-8,4,-8v7,0,14,19,53,19v42,0,42,-30,51,-19v0,17,-21,49,-67,49v-14,0,-26,-3,-34,-6r-3,78v30,-46,125,-30,125,38v0,53,-38,95,-99,95v-36,0,-57,-15,-57,-37v0,-8,6,-14,15,-14"},"6":{"d":"183,-81v0,48,-32,87,-79,87v-54,0,-87,-42,-87,-107v0,-103,46,-147,101,-147v35,0,47,17,47,29v0,8,-7,15,-15,15v-22,0,-19,-35,-48,-35v-30,0,-50,36,-48,112v35,-46,129,-40,129,46xm105,-146v-27,0,-53,24,-53,50v0,69,16,95,49,95v30,0,47,-23,47,-74v0,-51,-14,-71,-43,-71"},"7":{"d":"66,-241r109,-1v5,2,3,6,1,11v-28,60,-66,155,-71,208v-2,21,-9,29,-21,29v-31,-6,-19,-31,-2,-65r75,-152r-104,1v-12,2,-19,24,-23,37v-1,6,-8,5,-8,1r18,-90v1,-6,3,-9,6,-9v10,5,-11,30,20,30","k":{"6":27,"4":34,".":61,"-":49,",":61}},"8":{"d":"28,-184v0,-79,138,-86,139,-8v0,21,-8,38,-37,57v29,16,49,35,49,69v0,41,-33,72,-82,72v-43,0,-76,-24,-76,-60v0,-27,15,-47,51,-69v-31,-13,-44,-31,-44,-61xm156,-50v7,-29,-41,-55,-75,-70v-52,27,-46,119,20,119v30,0,55,-18,55,-49xm50,-199v0,31,44,49,72,61v41,-33,28,-101,-24,-102v-26,0,-48,17,-48,41"},"9":{"d":"17,-161v0,-48,32,-87,79,-87v54,0,87,43,87,108v0,103,-46,146,-101,146v-35,0,-47,-16,-47,-28v0,-8,7,-15,15,-15v22,0,19,34,48,34v30,0,50,-35,48,-111v-35,46,-129,39,-129,-47xm95,-95v27,0,53,-24,53,-50v0,-69,-16,-95,-49,-95v-30,0,-47,22,-47,73v0,51,14,72,43,72"},":":{"d":"30,-141v0,-11,9,-21,20,-21v11,0,21,10,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20xm30,-15v0,-11,9,-21,20,-21v11,0,21,10,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":100,"k":{" ":18}},";":{"d":"62,0v-10,10,-33,4,-32,-15v0,-11,9,-21,20,-21v12,0,26,9,26,31v0,19,-7,41,-48,63r-4,-7v28,-17,37,-27,38,-51xm30,-141v0,-11,9,-21,20,-21v11,0,21,10,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":100,"k":{" ":18}},"<":{"d":"17,-80r0,-22r182,-82r0,22r-155,71r155,71r0,22","w":216},"=":{"d":"17,-116r0,-22r182,0r0,22r-182,0xm17,-44r0,-22r182,0r0,22r-182,0","w":216},">":{"d":"17,-162r0,-22r182,82r0,22r-182,82r0,-22r155,-71","w":216},"?":{"d":"54,-57r0,-72v40,3,72,-5,72,-41v0,-44,-39,-60,-79,-48v-12,0,-17,-6,-17,-16v0,-9,8,-14,22,-14v43,0,84,41,84,91v0,34,-20,59,-74,59r0,41r-8,0xm38,-15v0,-11,9,-21,20,-21v11,0,21,10,21,21v0,11,-10,20,-21,20v-11,0,-20,-9,-20,-20","w":159},"@":{"d":"184,-146v0,-15,-6,-25,-18,-25v-18,0,-50,33,-50,72v0,23,10,32,22,32v21,0,46,-29,46,-79xm229,-26r5,11v-24,13,-56,21,-78,21v-97,0,-139,-72,-139,-122v0,-78,62,-132,135,-132v67,0,119,47,119,109v0,37,-24,86,-68,86v-25,1,-30,-16,-34,-24v-8,12,-23,24,-44,24v-23,0,-35,-16,-35,-44v0,-37,29,-88,73,-88v13,-1,21,6,28,18r4,-14r24,0r-26,105v0,6,3,12,14,12v30,0,50,-41,50,-75v0,-42,-41,-96,-106,-96v-55,0,-105,44,-105,123v0,53,45,106,108,106v27,0,52,-7,75,-20","w":288},"A":{"d":"170,-98r-41,-105r-43,105r84,0xm62,-33v-11,22,17,25,28,29v-12,12,-48,0,-75,5v-6,-1,-12,-7,1,-8v16,-2,27,-9,44,-52r76,-189r13,0r79,206v10,28,22,34,43,38v0,4,0,5,-7,5r-88,0v-7,0,-10,-1,-10,-5v4,-5,36,-2,29,-17v-1,-16,-15,-50,-21,-67r-92,0","w":280,"k":{"\u201d":81,"\u201c":81,"\u2019":81,"\u2018":81,"y":36,"w":36,"v":36,"u":14,"q":7,"o":13,"g":7,"e":7,"d":7,"c":7,"Y":54,"W":45,"V":50,"U":31,"T":34,"Q":18,"O":18,"G":18,"C":18,"-":14}},"B":{"d":"57,-45r0,-152v0,-28,-7,-37,-25,-37v-14,0,-15,-1,-15,-4v20,-10,70,-4,104,-4v54,0,89,16,89,55v0,31,-21,50,-60,57v48,4,85,22,85,68v-1,83,-126,58,-209,63v-8,0,-9,-1,-9,-4v0,-3,1,-4,15,-4v18,0,25,-10,25,-38xm94,-118v5,46,-19,111,37,111v40,0,59,-18,59,-59v0,-46,-26,-58,-79,-58v-15,0,-17,2,-17,6xm94,-227r0,89v0,5,3,6,9,6v44,0,68,-13,68,-51v0,-39,-23,-51,-55,-51v-15,0,-22,2,-22,7","w":259,"k":{"a":11,"Y":34,"W":25,"V":29,"A":18,".":20,",":20}},"C":{"d":"148,-1v59,0,70,-47,86,-83v4,0,3,3,3,9r0,65v0,4,-1,6,-4,6v-7,1,-2,-14,-11,-14v-13,0,-24,24,-77,24v-86,0,-129,-53,-129,-120v0,-90,63,-134,131,-134v47,0,60,19,69,19v8,0,9,-23,15,-8v-2,20,9,52,-1,66v-12,-25,-21,-69,-82,-69v-42,0,-88,32,-88,127v0,85,52,112,88,112","w":259,"k":{"Y":7,"O":4,"A":7}},"D":{"d":"55,-45r0,-152v0,-28,-7,-37,-23,-37v-18,0,-16,-7,-6,-8r102,0v76,0,134,42,134,122v0,68,-35,121,-123,121r-113,0v-5,0,-7,-1,-7,-4v0,-3,1,-4,13,-4v16,0,23,-10,23,-38xm217,-113v0,-113,-51,-122,-110,-120v-13,0,-15,2,-15,11r0,167v0,28,0,47,45,47v71,0,80,-54,80,-105","w":280,"k":{"\u2019":7,"o":-7,"e":-7,"a":4,"Y":27,"W":22,"V":27,"J":14,"A":22,".":27,",":27}},"E":{"d":"54,-45r0,-152v0,-28,-7,-37,-23,-37v-18,0,-15,-8,-5,-8r170,0v3,0,6,0,6,4v-2,15,5,40,-4,48v-3,0,-5,-1,-5,-5v-3,-30,-15,-38,-57,-38v-41,0,-45,0,-45,6r0,97v25,0,59,-6,59,-36v0,-14,7,-15,10,-8r0,90v0,3,-1,5,-4,5v-3,0,-4,-1,-6,-12v-6,-27,-29,-31,-59,-30v6,57,-24,113,55,113v46,0,63,-16,66,-39v1,-10,7,-14,9,-6r-2,49v0,3,-2,5,-6,5r-187,0v-5,0,-7,-1,-7,-4v0,-3,0,-4,12,-4v16,0,23,-10,23,-38","w":240,"k":{"Y":18,"X":9,"T":18}},"F":{"d":"201,-195v-5,-32,-43,-38,-93,-38v-14,0,-14,4,-14,28r0,78v42,0,58,-6,58,-32v0,-13,7,-15,10,-8r0,86v0,3,-1,5,-4,5v-3,0,-4,-2,-6,-13v-7,-31,-27,-30,-58,-29v4,39,-14,113,26,111v17,-2,15,7,6,8r-98,0v-5,0,-7,-1,-7,-4v0,-3,1,-4,13,-4v16,0,23,-10,23,-38r0,-152v0,-28,-7,-37,-23,-37v-18,0,-16,-7,-6,-8r170,0v16,0,8,34,12,47v0,4,-2,5,-4,5v-3,0,-5,-3,-5,-5","w":219,"k":{"u":23,"r":23,"o":23,"i":18,"e":23,"a":27,"J":18,"A":32,".":61,"-":14,",":61}},"G":{"d":"248,-25v-32,0,-73,31,-109,31v-68,0,-123,-41,-123,-121v0,-74,50,-133,126,-133v40,0,57,11,75,19v8,0,4,-12,11,-13v8,9,0,38,2,60v0,8,-1,10,-4,10v-4,0,-4,-3,-7,-13v-6,-21,-17,-55,-70,-55v-66,0,-89,52,-89,123v0,94,49,116,82,116v30,0,66,-11,66,-56v0,-21,-1,-34,-23,-34v-15,0,-13,-8,-6,-9r88,0v4,0,6,0,6,3v0,4,-3,5,-7,5v-28,8,-17,31,-18,67","w":280,"k":{"A":14,".":14,",":14}},"H":{"d":"203,-7v36,1,19,-75,23,-112r-132,0v3,37,-13,114,23,112v18,-1,15,8,5,8r-94,0v-5,0,-7,-1,-7,-4v0,-3,1,-4,13,-4v16,0,23,-10,23,-38r0,-152v0,-28,-7,-37,-23,-37v-18,0,-16,-7,-6,-8r94,0v5,0,7,1,7,4v0,3,0,4,-12,4v-35,0,-20,69,-23,103r132,0v-3,-35,12,-106,-23,-103v-18,2,-15,-8,-5,-8r94,0v5,0,7,1,7,4v0,3,-1,4,-13,4v-16,0,-22,9,-22,37r0,152v0,28,6,38,22,38v18,0,16,7,6,8r-94,0v-5,0,-7,-1,-7,-4v0,-3,0,-4,12,-4","w":320,"k":{"\u201d":-9}},"I":{"d":"61,-45r0,-152v0,-28,-6,-37,-22,-37v-18,0,-16,-7,-6,-8r94,0v5,0,7,1,7,4v0,3,-1,4,-13,4v-16,0,-22,9,-22,37r0,152v0,28,6,38,22,38v18,0,16,7,6,8r-94,0v-5,0,-7,-1,-7,-4v0,-3,1,-4,13,-4v16,0,22,-10,22,-38","w":159},"J":{"d":"-14,59v18,0,12,39,38,34v23,0,44,-7,44,-43r0,-247v0,-28,-6,-37,-22,-37v-18,0,-16,-7,-6,-8r94,0v5,0,7,1,7,4v0,3,0,4,-12,4v-16,0,-23,9,-23,37r0,223v0,63,-42,75,-85,75v-29,0,-51,-11,-51,-27v0,-10,7,-15,16,-15","w":159,"k":{"u":13,"o":13,"e":13,"a":14,"A":20,".":27,",":27}},"K":{"d":"96,-104v55,-63,72,-72,90,-117v6,-16,-28,-10,-28,-18v18,-8,50,1,77,-3v3,0,5,2,5,4v-12,6,-33,10,-39,26r-58,73v33,39,64,81,100,116v7,7,16,16,23,16v13,-1,11,8,2,8r-98,0v-5,0,-7,-1,-7,-4v0,-8,33,1,30,-15v-18,-38,-51,-63,-74,-96r-23,24v1,30,-7,87,22,83v17,-2,16,7,6,8r-94,0v-5,0,-7,-1,-7,-4v0,-3,1,-4,13,-4v16,0,22,-10,22,-38r0,-152v0,-28,-6,-37,-22,-37v-18,0,-16,-7,-6,-8r94,0v5,0,7,1,7,4v0,3,-1,4,-13,4v-16,0,-22,9,-22,37r0,93","w":280,"k":{"y":49,"w":36,"u":23,"o":23,"e":23,"a":7,"O":22,"A":-4}},"L":{"d":"53,-45r0,-152v0,-28,-6,-37,-22,-37v-18,0,-16,-7,-6,-8r94,0v5,0,7,1,7,4v0,3,-1,4,-13,4v-16,0,-22,9,-22,37r0,149v0,29,12,40,56,40v59,0,69,-22,74,-46v0,-7,9,-12,9,-3v0,15,0,40,-1,51v0,14,-15,3,-29,6r-175,1v-7,0,-10,-1,-10,-4v16,-7,38,-1,38,-42","w":240,"k":{"\u201d":81,"\u201c":90,"\u2019":81,"\u2018":90,"y":27,"Y":29,"W":32,"V":49,"T":41,"O":18,"-":14}},"M":{"d":"54,-45r0,-152v0,-28,-7,-37,-23,-37v-18,0,-15,-8,-5,-8v21,4,49,-4,65,3r80,185r78,-183v11,-12,41,0,65,-5v5,0,7,1,7,4v0,3,0,4,-12,4v-16,0,-23,9,-23,37r0,152v0,28,7,38,23,38v18,0,15,8,5,8r-94,0v-5,0,-7,-1,-7,-4v0,-3,1,-4,13,-4v16,0,22,-10,22,-38r0,-162r-91,207v-2,0,-4,-1,-5,-4r-87,-207r0,166v0,28,6,38,22,38v18,0,16,7,6,8r-67,0v-5,0,-7,-1,-7,-4v0,-3,0,-4,12,-4v16,0,23,-10,23,-38","w":339},"N":{"d":"21,-3v12,-11,36,-4,36,-42r0,-162v0,-9,-8,-23,-27,-27v-9,-2,-13,-1,-13,-5v8,-8,43,1,65,-3r155,192r0,-147v4,-37,-21,-32,-36,-41v14,-10,49,1,75,-4v5,0,7,1,7,4v-13,9,-36,3,-36,41r0,203r-12,0r-168,-209r0,158v-5,38,23,31,36,42v-14,10,-49,-1,-75,4v-5,0,-7,-1,-7,-4","w":299,"k":{".":20,",":20}},"O":{"d":"16,-121v0,-75,56,-127,134,-127v78,0,134,52,134,127v0,75,-56,127,-134,127v-78,0,-134,-52,-134,-127xm150,-240v-121,2,-120,237,0,239v119,-2,120,-237,0,-239","w":299,"k":{"Y":27,"X":29,"W":13,"V":18,"T":9,"A":18,".":27,",":27}},"P":{"d":"54,-45r0,-152v0,-28,-7,-37,-23,-37v-18,0,-15,-8,-5,-8r95,0v66,0,90,31,90,62v0,51,-51,72,-120,68v3,35,-12,107,23,105v17,-2,16,7,6,8r-94,0v-5,0,-7,-1,-7,-4v0,-3,0,-4,12,-4v16,0,23,-10,23,-38xm91,-224r0,102v49,5,79,-6,79,-56v0,-42,-26,-56,-60,-56v-16,0,-19,2,-19,10","w":219,"k":{"u":7,"r":7,"o":14,"e":14,"a":14,"Y":9,"A":45,".":68,"-":14,",":68}},"Q":{"d":"119,30v-14,-3,-37,20,-47,20v-11,-6,-5,-13,8,-19v17,-8,35,-15,50,-26v-68,-8,-114,-58,-114,-126v0,-75,56,-127,134,-127v78,0,134,52,134,127v0,75,-56,127,-135,127v-10,6,-23,10,-32,17v70,-11,136,66,176,9v4,0,4,2,4,8v0,32,-27,53,-55,53v-55,0,-71,-63,-123,-63xm150,-240v-121,2,-120,237,0,239v119,-2,120,-237,0,-239","w":299,"k":{".":9,",":9}},"R":{"d":"146,-117v38,37,66,90,115,115v-9,7,-40,-1,-62,2v-22,-29,-46,-56,-68,-85v-14,-18,-19,-26,-33,-26v-5,0,-7,2,-7,6v2,34,-10,101,23,98v17,-2,16,7,6,8r-94,0v-5,0,-7,-1,-7,-4v0,-3,0,-4,12,-4v16,0,23,-10,23,-38r0,-152v0,-28,-7,-37,-23,-37v-18,0,-15,-8,-5,-8v78,2,192,-18,188,62v-2,44,-30,55,-68,63xm113,-234v-15,0,-22,2,-22,7r0,107v52,2,82,-6,82,-59v0,-42,-26,-55,-60,-55","w":259,"k":{"\u2019":27,"y":36,"u":14,"o":14,"e":14,"Y":22,"W":25,"V":29,"U":18,"T":18,"O":14,"G":14,"C":14}},"S":{"d":"21,-3v-11,-11,-2,-44,-5,-64v1,-9,10,-7,10,1v3,15,20,63,69,63v37,0,55,-23,55,-48v0,-71,-127,-46,-127,-132v0,-46,40,-65,73,-65v37,0,43,17,56,17v6,0,5,-14,9,-14v9,4,2,48,5,58v0,5,-1,7,-4,7v-3,0,-5,-5,-7,-13v-9,-30,-34,-46,-58,-46v-26,0,-45,17,-45,39v0,64,132,44,132,134v0,48,-40,72,-89,72v-39,0,-55,-21,-64,-21v-6,0,-4,12,-10,12","k":{"y":18,"w":13,"v":13,"a":5,"Y":11,"V":14,"T":9,"A":18,".":9,",":9}},"T":{"d":"121,-45r0,-180v0,-5,-2,-7,-55,-7v-25,0,-45,4,-47,31v0,16,-6,16,-8,8r0,-44v0,-3,1,-5,6,-5r246,0v5,0,6,2,6,5v-2,16,4,39,-3,49v-3,0,-4,-1,-5,-13v-2,-27,-22,-31,-47,-31v-53,0,-55,2,-55,7r0,180v0,28,6,38,22,38v18,0,16,7,6,8r-94,0v-5,0,-7,-1,-7,-4v0,-3,1,-4,13,-4v16,0,22,-10,22,-38","w":280,"k":{"y":76,"w":76,"u":68,"r":68,"o":68,"i":18,"e":68,"a":72,"O":9,"J":18,"A":34,";":61,":":61,".":68,"-":54,",":68}},"U":{"d":"248,-195v-2,104,23,201,-100,201v-56,0,-93,-24,-93,-78r0,-124v0,-28,-7,-38,-23,-38v-18,0,-16,-7,-6,-8r94,0v5,0,7,1,7,4v0,3,-1,4,-13,4v-16,0,-23,10,-23,38r0,122v0,53,33,67,70,67v110,0,77,-99,77,-188v0,-17,0,-39,-22,-39v-16,0,-20,-6,-9,-8v16,3,68,-4,77,4v0,3,-2,4,-13,4v-22,1,-23,22,-23,39","w":299,"k":{"A":31,".":40,",":40}},"V":{"d":"134,6r-78,-196v-17,-40,-13,-39,-41,-44v-2,0,-3,-1,-3,-4v0,-4,1,-4,4,-4r96,0v4,0,6,0,6,4v-4,10,-27,0,-29,18v-2,17,50,141,65,181v20,-55,53,-120,65,-178v0,-14,-11,-17,-25,-18v-4,0,-4,-1,-4,-4v16,-8,50,1,75,-3v3,0,5,0,5,4v-17,8,-33,16,-41,40v-33,97,-55,136,-83,204r-12,0","w":280,"k":{"u":47,"o":54,"i":18,"e":54,"a":54,"O":18,"G":18,"C":18,"A":50,";":63,":":63,".":99,"-":45,",":99}},"W":{"d":"307,-208v0,-28,-11,-22,-28,-27v-4,-1,-5,-8,1,-7v12,1,50,1,67,0v4,0,6,1,6,4v0,3,-3,3,-13,6v-13,3,-16,18,-21,32r-67,206r-12,0v-8,-24,-52,-170,-57,-185v-19,62,-39,123,-60,185r-12,0r-69,-211v-7,-22,-12,-27,-23,-27v-13,0,-17,-11,-5,-10r90,0v5,0,9,0,9,4v-5,12,-37,0,-33,21v11,55,32,120,50,172r59,-196r12,0r61,195v13,-48,45,-112,45,-162","w":360,"k":{"y":36,"u":36,"r":43,"o":40,"i":9,"e":40,"a":40,"O":13,"A":45,";":45,":":45,".":81,"-":45,",":81}},"X":{"d":"125,-113r-84,-108v-5,-11,-21,-11,-27,-17v21,-10,62,1,95,-4v5,0,8,1,8,4v2,6,-31,2,-28,10v12,34,43,59,62,88v14,-21,45,-55,50,-78v3,-18,-23,-14,-26,-20v14,-10,48,1,74,-4v5,0,7,1,7,4v0,3,-1,4,-9,4v-10,0,-20,9,-26,17r-64,84r89,111v5,12,22,13,30,19v-22,10,-66,-1,-101,4v-5,0,-7,-1,-7,-4v0,-8,32,0,29,-15v-12,-27,-47,-61,-65,-87v-16,25,-50,53,-56,84v-4,17,26,11,28,18v-16,10,-52,-1,-80,4v-5,0,-7,-1,-7,-4v13,-7,26,-7,43,-28","w":280,"k":{"y":36,"e":9,"O":18,"C":18}},"Y":{"d":"203,-220v11,-14,-38,-13,-22,-22v23,1,52,-4,70,3v0,3,-2,4,-9,5v-30,12,-43,54,-60,81r-35,55v2,33,-9,95,23,91v17,-2,16,7,6,8r-95,0v-5,0,-6,-1,-6,-4v0,-3,0,-4,12,-4v30,0,22,-54,23,-85r-62,-112v-10,-19,-17,-30,-33,-30v-3,0,-6,0,-6,-4v19,-10,61,1,93,-4v12,-2,12,9,2,8v-21,-2,-23,16,-14,33r51,94v22,-33,64,-99,62,-113","w":259,"k":{"u":63,"o":65,"i":18,"e":65,"a":63,"S":14,"O":27,"C":27,"A":54,";":45,":":45,".":68,"-":72,",":68}},"Z":{"d":"202,-242r-143,233v61,-2,132,16,136,-50v0,-7,9,-8,9,-1v0,6,-4,25,-4,52v0,8,-5,9,-10,9r-179,0r143,-233r-38,0v-68,0,-72,5,-85,43v-2,4,-7,4,-8,-1v0,-8,3,-19,3,-45v0,-4,1,-7,6,-7r170,0","w":219},"[":{"d":"30,70r0,-311r78,0r0,11r-55,0r0,288r55,0r0,12r-78,0","w":119},"\\":{"d":"81,6r-83,-254r21,0r83,254r-21,0","w":100},"]":{"d":"67,58r0,-288r-55,0r0,-11r78,0r0,311r-78,0r0,-12r55,0","w":119},"^":{"d":"161,-110r-53,-106r-53,106r-22,0r65,-131r20,0r65,131r-22,0","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"`":{"d":"77,-193v-34,-1,-45,-25,-69,-35v-13,-5,-16,-26,1,-27v28,13,45,43,68,62","w":100},"a":{"d":"78,-153v-42,0,-21,31,-45,36v-8,0,-15,-3,-15,-12v0,-18,23,-33,62,-33v89,0,61,58,61,132v0,23,20,24,29,14v3,0,3,2,3,4v0,6,-12,17,-29,17v-15,0,-27,-6,-32,-24v-20,17,-39,24,-58,24v-24,0,-41,-8,-41,-33v0,-24,16,-37,81,-61v19,-7,20,-10,20,-21v0,-33,-5,-43,-36,-43xm69,-8v13,0,42,-9,43,-29r2,-52v-51,20,-69,31,-69,55v0,11,7,26,24,26","w":180,"k":{"y":7,"w":13,"v":13}},"b":{"d":"30,-5r0,-210v0,-20,-2,-24,-20,-24v-9,1,-9,-6,-4,-8v30,-1,53,-15,56,-3r0,106v44,-41,133,-4,127,63v-8,98,-92,103,-136,63v-7,4,-16,25,-23,13xm102,-151v-55,0,-40,66,-40,115v0,25,24,32,39,32v19,0,53,-10,53,-76v0,-31,-9,-71,-52,-71","k":{"y":4,"v":4,".":9,",":9}},"c":{"d":"136,-126v-17,0,-16,-34,-39,-29v-16,0,-51,11,-51,82v0,64,43,69,54,69v5,0,28,0,36,-16v1,-9,14,-11,14,-2v0,9,-17,27,-60,27v-37,0,-80,-19,-80,-81v0,-50,41,-86,93,-86v14,0,45,4,45,23v0,6,-4,13,-12,13","w":159,"k":{"y":7,"k":7,"h":7}},"d":{"d":"100,-153v-22,0,-49,21,-49,74v0,34,9,75,49,75v44,0,48,-31,48,-84v0,-37,-6,-65,-48,-65xm180,-250r0,205v-1,35,13,28,27,34v0,2,0,4,-3,5r-46,11v-4,-12,-5,-15,-7,-28v-9,11,-22,28,-57,28v-42,0,-79,-30,-79,-84v0,-44,33,-83,81,-83v35,0,44,14,52,21r0,-74v0,-20,-2,-24,-20,-24v-9,1,-9,-6,-4,-8v30,-1,53,-15,56,-3","w":219,"k":{"y":11,"w":11,"v":11}},"e":{"d":"51,-107r77,0v5,0,7,-1,7,-11v0,-15,-9,-35,-38,-35v-26,0,-41,19,-46,46xm162,-98r-113,0v-9,55,27,90,59,90v37,0,39,-33,51,-19v0,8,-20,32,-60,32v-40,0,-86,-22,-86,-82v0,-49,42,-85,84,-85v38,0,70,24,70,58v0,4,-1,6,-5,6","w":180,"k":{"y":7,"x":7,"w":7,"v":7}},"f":{"d":"148,-217v-24,-1,-11,-31,-36,-29v-43,3,-34,54,-35,95r39,0v4,0,5,1,5,5v0,4,-1,5,-5,5r-39,0r0,97v0,34,6,37,32,37v8,0,11,6,5,8r-95,0v-3,0,-3,-1,-3,-3v11,-11,29,0,29,-31r0,-108v-10,-2,-27,5,-29,-5v2,-10,19,-3,29,-5v4,-65,-3,-104,68,-104v19,0,46,7,46,27v0,6,-5,11,-11,11","w":140,"k":{"\u201d":-36,"\u2019":-36,"t":7,"o":18,"l":5,"i":9,"f":18,"e":16,"a":7,".":20,",":20}},"g":{"d":"153,50v2,-65,-124,-9,-124,-69v0,-21,20,-28,32,-32v-12,-5,-38,-14,-38,-52v0,-61,83,-72,116,-42v19,-16,52,-22,57,1v-6,27,-38,-17,-51,5v6,9,13,18,13,37v0,13,-3,55,-70,58v-21,1,-41,1,-41,16v0,10,11,10,39,11v49,1,92,4,92,54v0,88,-161,78,-161,13v0,-18,23,-41,39,-26v0,6,-17,9,-17,29v0,6,2,40,59,40v39,0,55,-21,55,-43xm91,-154v-49,1,-55,100,1,102v27,0,35,-27,35,-51v0,-36,-19,-51,-36,-51","k":{"y":-7,"o":9,"e":9,"a":9,".":7,",":7}},"h":{"d":"15,-2v10,-7,32,-8,27,-27r0,-186v0,-20,-2,-24,-20,-24v-9,1,-9,-6,-4,-8v29,-1,55,-16,55,-3r0,118v26,-44,112,-44,112,22r0,81v-4,28,17,20,25,27v-14,7,-57,-1,-81,3v-3,0,-3,-1,-3,-3v11,-6,30,-7,27,-27v-6,-46,16,-121,-35,-121v-24,0,-45,21,-45,48r0,73v-4,28,18,20,26,27v-14,7,-57,-1,-81,3v-3,0,-3,-1,-3,-3","w":219,"k":{"\u2019":18,"y":18}},"i":{"d":"10,-2v11,-6,32,-7,27,-27r0,-98v5,-20,-19,-12,-27,-20v7,-5,59,-20,59,-11r0,129v-4,28,17,20,25,27v-14,7,-57,-1,-81,3v-3,0,-3,-1,-3,-3xm30,-222v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20","w":100,"k":{"v":9}},"j":{"d":"-45,77v14,-33,33,23,51,16v23,0,36,-16,36,-58r0,-162v6,-20,-19,-12,-27,-20v7,-4,58,-21,59,-11r0,193v0,44,-35,66,-68,66v-32,0,-51,-12,-51,-24xm35,-222v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20","w":100},"k":{"d":"15,-2v10,-7,32,-8,27,-27r0,-186v5,-22,-15,-19,-27,-25v6,-4,58,-20,58,-11r0,172v1,0,53,-50,53,-62v0,-11,-17,-5,-19,-13v13,-8,42,1,58,-3v4,0,5,1,5,3v-4,9,-20,4,-27,15v-12,18,-28,32,-43,47v30,28,55,60,88,84v7,0,14,7,5,9v-5,-1,-33,-1,-39,0v-21,-13,-48,-48,-68,-67v-4,-5,-9,-6,-13,-6r0,43v-4,28,18,20,26,27v-14,7,-57,-1,-81,3v-3,0,-3,-1,-3,-3","k":{"y":9,"o":14,"g":7,"e":14}},"l":{"d":"8,-2v10,-7,32,-8,27,-27r0,-186v0,-20,-2,-24,-20,-24v-9,1,-9,-6,-4,-8v30,-1,50,-14,56,-4r0,222v-4,28,17,20,25,27v-14,7,-57,-1,-81,3v-3,0,-3,-1,-3,-3","w":100,"k":{"y":14,"w":9,"v":9}},"m":{"d":"13,-2v10,-7,32,-8,27,-27r0,-83v0,-22,-4,-30,-16,-30v-11,2,-15,-7,-6,-8v13,-1,42,-12,45,-12v6,0,5,27,5,31v20,-41,94,-42,108,1v3,-9,23,-32,53,-32v74,0,53,70,56,133v-4,19,16,20,27,27v-12,8,-56,-1,-78,3v-3,0,-6,-1,-6,-3v7,-7,28,1,25,-27v-6,-46,16,-121,-31,-121v-24,0,-44,19,-44,46r0,75v-4,19,16,21,28,27v-12,8,-61,-1,-84,3v-3,0,-3,-1,-3,-3v10,-7,31,-7,28,-27v-6,-46,16,-121,-31,-121v-24,0,-45,19,-45,46r0,75v-4,27,18,20,25,27v-13,7,-56,-1,-80,3v-3,0,-3,-1,-3,-3","w":320,"k":{"y":18}},"n":{"d":"15,-2v10,-7,32,-8,27,-27r0,-83v0,-22,-4,-30,-16,-30v-11,2,-15,-7,-6,-8v13,-1,42,-12,45,-12v6,0,6,31,6,32v24,-45,114,-48,114,20r0,81v-4,28,17,20,25,27v-14,7,-57,-1,-81,3v-3,0,-3,-1,-3,-3v11,-6,30,-7,27,-27v-6,-46,16,-121,-35,-121v-24,0,-45,21,-45,48r0,73v-4,28,18,20,26,27v-14,7,-57,-1,-81,3v-3,0,-3,-1,-3,-3","w":219,"k":{"\u201d":18,"\u2019":18,"y":18,"w":18,"v":18}},"o":{"d":"13,-77v0,-48,39,-85,89,-85v42,0,85,34,85,83v0,48,-38,84,-88,84v-42,0,-86,-32,-86,-82xm48,-78v0,48,16,77,52,77v36,0,52,-29,52,-77v0,-48,-16,-77,-52,-77v-36,0,-52,29,-52,77","k":{"y":13,"x":13,"w":13,"v":13,".":9,",":9}},"p":{"d":"17,-146v11,-6,52,-22,52,-12v0,8,-2,21,1,27v36,-62,136,-24,136,56v0,68,-87,105,-132,61r0,90v-4,15,22,12,25,18v-17,8,-49,-1,-76,3v-3,0,-6,0,-6,-3v3,-6,30,-3,25,-18r0,-203v5,-19,-16,-13,-25,-19xm120,-152v-48,0,-48,48,-48,98v0,28,7,49,46,49v32,0,52,-28,52,-74v0,-48,-19,-73,-50,-73","w":219,"k":{"y":13,".":9,",":9}},"q":{"d":"11,-76v0,-70,80,-106,134,-72v6,1,26,-19,26,-7r0,231v-4,15,22,12,26,18v-18,8,-50,-1,-77,3v-3,0,-6,0,-6,-3v3,-6,31,-3,26,-18r0,-93v-10,10,-23,22,-53,22v-47,0,-76,-39,-76,-81xm93,-4v53,0,47,-43,47,-88v0,-29,-2,-62,-42,-62v-31,0,-51,27,-51,80v0,32,11,70,46,70","k":{"u":7}},"r":{"d":"18,-2v10,-7,32,-8,27,-27r0,-70v1,-53,-12,-35,-34,-47v12,-4,64,-27,58,-9v2,10,0,23,4,31v6,-14,24,-34,52,-34v23,0,29,10,29,19v0,5,-4,13,-14,13v-14,0,-12,-21,-27,-21v-17,0,-37,17,-37,47r0,71v-4,28,18,20,26,27v-14,7,-57,-1,-81,3v-3,0,-3,-1,-3,-3","w":159,"k":{"\u2019":-9,"q":4,"o":7,"l":7,"k":11,"h":11,"g":7,"e":7,"d":7,"c":7,".":50,"-":27,",":50}},"s":{"d":"19,-50v14,12,11,47,50,47v14,0,31,-8,31,-26v0,-40,-82,-35,-82,-89v0,-40,44,-52,76,-38v5,0,13,-9,16,-5v-4,10,6,42,-3,44v-14,-10,-13,-38,-41,-37v-6,0,-26,0,-26,22v0,35,84,31,84,89v0,22,-15,48,-52,48v-31,-1,-36,-17,-52,-2v-6,-12,0,-34,-4,-50v0,-3,1,-3,3,-3","w":140,"k":{"\u2019":9,"y":9,"w":9,"v":9,".":9,",":9}},"t":{"d":"12,-150v21,-15,41,-37,47,-48v9,6,2,29,4,42r38,0v4,0,5,1,5,5v0,4,-1,5,-5,5r-38,0r0,105v0,19,2,36,23,36v20,0,15,-15,26,-17v3,0,5,2,5,6v0,7,-15,21,-43,21v-26,0,-42,-8,-42,-40r0,-111v-7,-1,-20,3,-20,-4","w":119,"k":{"u":4,"o":4,"e":4}},"u":{"d":"156,5v-8,-2,-6,-28,-8,-36v-20,50,-111,53,-111,-15r0,-86v3,-21,-22,-10,-28,-21v8,-10,37,1,55,-4v13,7,2,6,5,48v4,39,-14,102,26,102v60,0,53,-67,53,-125v0,-21,-21,-10,-27,-21v7,-10,39,1,54,-4v13,7,5,6,5,48r0,74v-1,22,7,22,23,20v3,0,3,2,3,5v-12,9,-34,9,-50,15","w":219,"k":{"\u2019":18,"y":7,"w":7,"v":7}},"v":{"d":"140,-139v2,-13,-18,-8,-20,-16v10,-3,40,-2,54,0v-9,9,-18,3,-26,27v-15,41,-37,94,-54,133r-7,0r-61,-143v-3,-13,-14,-8,-20,-16v16,-8,46,1,71,-3v3,0,5,0,5,3v0,8,-24,0,-21,13v8,38,28,71,40,106v14,-33,31,-65,39,-104","w":180,"k":{"o":13,"e":13,"c":13,"a":7,".":45,"-":14,",":45}},"w":{"d":"219,-139v1,-13,-19,-8,-21,-16v11,-3,41,-2,55,0v-9,8,-19,4,-26,27r-44,133r-8,0r-47,-114r-43,114r-8,0r-43,-129v-6,-26,-15,-21,-28,-30v9,-8,58,1,75,-3v4,0,6,1,6,4v-3,6,-27,1,-24,16v7,37,18,68,30,100r43,-120r4,0r48,121","w":259,"k":{"o":13,"e":13,"d":13,"c":13,"a":7,".":45,"-":14,",":45}},"x":{"d":"85,-154v-1,6,-21,2,-20,9v1,9,27,42,38,51v8,-10,36,-44,32,-47v1,-11,-20,-6,-21,-13v12,-8,39,-1,61,-3v3,0,4,1,4,3v-24,5,-53,46,-71,68v24,25,44,59,73,78v10,-1,17,8,7,9v-20,-3,-66,3,-80,-3v-1,-7,25,-4,21,-10v0,-4,-2,-9,-41,-53v-10,15,-28,28,-33,48v-2,11,31,8,17,18v-20,-2,-48,4,-63,-3v0,-4,2,-5,7,-5v35,-9,43,-44,66,-65v-25,-27,-43,-63,-75,-82v6,-8,52,1,72,-3v4,0,6,0,6,3","k":{"o":11,"e":11,"c":7,"-":27}},"y":{"d":"141,-139v2,-13,-18,-8,-20,-16v10,-3,40,-2,54,0v-8,9,-18,4,-26,27v-21,59,-47,116,-75,179v-17,40,-24,50,-38,50v-24,-14,12,-28,21,-37v0,0,28,-56,28,-65r-58,-137v-2,-13,-15,-8,-20,-16v15,-8,47,1,71,-3v3,0,5,0,5,3v-1,8,-24,0,-21,13v8,38,28,71,40,106v13,-33,32,-63,39,-104","w":180,"k":{"\u2019":-18,"s":7,"o":13,"g":18,"e":13,"d":13,"c":13,"a":7,".":45,"-":7,",":45}},"z":{"d":"72,-149v-43,-5,-33,17,-48,29v-5,-7,0,-25,0,-37r123,0r-95,150r28,0v59,2,50,-14,63,-33v10,3,-1,28,1,41r-131,-2r95,-148r-36,0","w":159,"k":{"o":7,"e":7}},"{":{"d":"19,-86v67,-6,-18,-170,81,-155r0,7v-62,6,3,128,-54,149v58,10,-10,134,54,148r0,7v-32,1,-50,-2,-53,-51v-3,-44,14,-96,-28,-105","w":119},"|":{"d":"39,77r0,-360r22,0r0,360r-22,0","w":100},"}":{"d":"74,-85v-56,-13,10,-137,-55,-149r0,-7v33,-1,51,2,54,51v3,43,-15,96,27,104v-66,8,19,172,-81,156r0,-7v64,-5,-3,-129,55,-148","w":119},"~":{"d":"191,-98v-26,53,-83,16,-123,6v-15,0,-24,13,-30,23r-13,-15v23,-53,85,-16,122,-6v12,0,21,-9,31,-23","w":216},"\u2026":{"d":"60,2v-11,0,-20,-9,-20,-20v0,-11,9,-21,20,-21v11,0,21,10,21,21v0,11,-10,20,-21,20xm180,2v-11,0,-21,-9,-21,-20v0,-11,10,-21,21,-21v11,0,21,10,21,21v0,11,-10,20,-21,20xm300,2v-11,0,-21,-9,-21,-20v0,-11,10,-21,21,-21v11,0,20,10,20,21v0,11,-9,20,-20,20","w":360},"\u2018":{"d":"57,-248r4,6v-20,13,-33,30,-29,49v10,-11,30,-2,30,13v0,11,-9,20,-21,20v-14,0,-23,-11,-23,-32v0,-19,9,-39,39,-56","w":79,"k":{"\u2018":-9,"A":81,".":63,",":63}},"\u2019":{"d":"23,-160r-4,-6v20,-13,33,-30,29,-49v-10,11,-30,2,-30,-13v0,-11,9,-20,21,-20v14,0,23,11,23,32v0,19,-9,39,-39,56","w":79,"k":{"\u2019":-9,"t":9,"s":20,"r":9,"m":9,"d":34,"O":18,"A":99,".":63,",":63}},"\u201c":{"d":"136,-248r4,6v-20,12,-34,32,-28,49v10,-11,30,-2,30,13v0,11,-9,20,-21,20v-14,0,-24,-11,-24,-32v0,-19,9,-39,39,-56xm57,-248r4,6v-20,12,-34,32,-28,49v10,-11,30,-2,30,13v0,11,-9,20,-21,20v-14,0,-24,-11,-24,-32v0,-19,9,-39,39,-56","w":159,"k":{"o":18,"e":18,"O":9,"A":90,".":126,",":126," ":27}},"\u201d":{"d":"24,-160r-5,-6v20,-12,36,-32,29,-49v-10,11,-30,2,-30,-13v0,-11,9,-20,21,-20v14,0,24,11,24,32v0,19,-9,39,-39,56xm103,-160r-4,-6v20,-12,34,-32,28,-49v-10,11,-30,2,-30,-13v0,-11,9,-20,21,-20v14,0,24,11,24,32v0,19,-9,39,-39,56","w":159,"k":{"o":18,"O":9,"A":90,".":126,",":126," ":27}},"\u2013":{"d":"180,-72r-180,0r0,-19r180,0r0,19","w":180},"\u2014":{"d":"313,-72r-266,0r0,-19r266,0r0,19","w":360},"\u2122":{"d":"83,-119v-3,13,10,19,23,16r0,7r-66,0r0,-7v13,2,26,-3,23,-16r0,-113v-25,0,-45,-2,-42,25r-9,0r0,-34r122,0r0,34r-8,0v2,-27,-18,-25,-43,-25r0,113xm318,-228r0,108v0,15,2,16,17,17r0,7r-56,0r0,-7v15,-1,18,-1,18,-17r0,-107r-54,131r-3,0r-55,-131r0,112v0,12,7,12,18,12r0,7r-45,0r0,-7v11,0,18,0,18,-12r0,-106v0,-12,1,-13,-15,-13r0,-7r40,0r46,111r47,-111r41,0r0,7v-6,0,-17,-2,-17,6","w":360}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 2002, Design: James Goggin/Practise, published by www.lineto.com.
 * All rights reserved.
 * 
 * Manufacturer:
 * Design: James Goggin/Practise, published by www.lineto.com
 */
Cufon.registerFont({"w":198,"face":{"font-family":"CourierSans-Light","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 7 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-43.404 -279 242 89","underline-thickness":"20.88","underline-position":"-43.2","stemh":"7","stemv":"15","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":115,"k":{"Y":18,"V":14,"T":13,"A":13}},"\u00d7":{"d":"172,-35v-4,4,-8,3,-13,-2r-54,-54r-54,54v-5,5,-9,6,-12,2v-4,-4,-4,-8,1,-13r54,-54r-54,-54v-5,-5,-5,-9,-1,-13v3,-4,7,-3,12,2r54,54r54,-54v5,-5,9,-6,13,-2v3,4,4,8,-1,13r-54,54r54,54v5,5,4,9,1,13","w":210},"!":{"d":"73,-212r-6,126v0,5,-3,8,-9,8v-6,0,-10,-3,-10,-8r-6,-126v0,-11,6,-18,16,-18v10,0,16,7,15,18xm83,-19v0,15,-10,23,-25,23v-15,0,-26,-9,-26,-23v0,-14,11,-24,26,-24v15,0,25,10,25,24","w":115},"\"":{"d":"102,-241v7,20,-5,55,-4,80v1,6,-2,8,-8,7v-4,0,-4,-3,-4,-7v0,-26,-8,-59,-4,-80r20,0xm48,-241v5,22,-4,55,-4,80v1,6,-2,8,-8,7v-4,0,-5,-3,-5,-7v0,-26,-10,-59,-3,-80r20,0","w":129},"#":{"d":"226,-150v0,3,-1,5,-5,5r-44,0r-21,58r48,0v4,0,6,1,6,5v0,3,-1,5,-6,5r-52,0r-31,85v-2,6,-4,6,-8,5v-3,-1,-6,-3,-3,-9r29,-81r-64,0r-31,85v-2,6,-4,6,-8,5v-3,-1,-6,-3,-3,-9r29,-81v-15,-2,-42,6,-48,-5v7,-12,36,-2,52,-5r21,-58r-50,0v-5,0,-6,0,-6,-4v0,-4,2,-6,6,-6r54,0r30,-85v3,-6,6,-7,9,-6v3,1,5,4,3,10r-29,81r64,0r31,-85v3,-6,4,-7,8,-6v3,1,6,4,3,10r-29,81r40,0v4,0,5,1,5,5xm164,-145r-64,0r-21,58r64,0","w":242},"$":{"d":"51,-158v0,50,116,19,116,88v0,29,-25,50,-62,54r0,49v0,6,-2,10,-7,10v-16,-6,-5,-40,-8,-59v-22,-1,-59,-17,-61,-43v0,-6,2,-11,7,-11v5,0,7,2,8,10v1,15,27,29,54,29v31,0,54,-17,54,-40v0,-63,-118,-16,-116,-88v0,-26,24,-48,54,-52v1,-11,-4,-30,8,-30v11,0,6,19,7,30v17,1,53,16,54,39v0,3,-1,9,-6,9v-5,0,-8,-2,-9,-8v-2,-13,-23,-25,-45,-25v-26,0,-48,17,-48,38","w":195},"%":{"d":"112,-179v0,25,-20,46,-45,46v-25,0,-45,-21,-45,-46v0,-25,20,-45,45,-45v25,0,45,20,45,45xm205,-199v1,3,1,5,-2,8r-171,170v-3,3,-7,4,-9,0v-1,-3,-1,-5,2,-8r170,-169v3,-3,8,-5,10,-1xm210,-41v0,25,-21,45,-46,45v-25,0,-45,-20,-45,-45v0,-25,20,-46,45,-46v25,0,46,21,46,46xm101,-179v0,-19,-15,-34,-34,-34v-19,0,-35,15,-35,34v0,19,16,35,35,35v19,0,34,-16,34,-35xm199,-41v0,-19,-16,-35,-35,-35v-19,0,-34,16,-34,35v0,19,15,35,34,35v19,0,35,-16,35,-35","w":231},"&":{"d":"157,-102v11,3,3,16,1,24v-4,13,-9,27,-17,40v5,13,27,26,19,41v-16,5,-19,-19,-28,-27v-19,29,-68,41,-93,10v-29,-36,-12,-72,29,-102r-16,-24v-29,-49,41,-79,76,-46v4,2,6,7,4,11v-12,13,-25,-10,-41,-10v-26,0,-35,22,-23,39r63,93v8,-15,13,-30,16,-43v1,-5,6,-7,10,-6xm122,-38r-45,-66v-34,23,-49,50,-27,78v22,28,56,15,72,-12","w":185},"'":{"d":"48,-241v5,22,-4,55,-4,80v1,6,-2,8,-8,7v-4,0,-5,-3,-5,-7v0,-26,-10,-59,-3,-80r20,0","w":75},"(":{"d":"88,-207v-48,97,-50,174,0,271v0,7,-8,10,-13,4v-59,-78,-59,-201,0,-279v5,-5,13,-3,13,4","w":117},")":{"d":"29,64v49,-97,49,-173,0,-271v0,-7,9,-10,13,-4v59,77,60,201,0,279v-5,6,-13,3,-13,-4","w":117},"*":{"d":"161,-177v6,0,12,16,6,19r-61,14v13,17,34,32,41,51v-5,3,-10,13,-16,7r-32,-53r-32,53v-5,6,-16,-4,-16,-11r41,-47r-61,-14v-5,-3,0,-19,6,-18r58,24v0,-21,-9,-49,-3,-66v6,1,17,-4,17,4r-6,62"},"+":{"d":"199,-102v0,5,-3,8,-10,8r-73,0r0,72v0,7,-3,10,-8,10v-5,0,-8,-3,-8,-10r0,-72r-72,0v-7,0,-10,-3,-10,-8v0,-5,3,-8,10,-8r72,0r0,-73v0,-7,3,-10,8,-10v5,0,8,3,8,10r0,73r73,0v7,0,10,3,10,8","w":217},",":{"d":"89,-52r-50,105v-3,7,-23,-1,-21,-7r25,-99v5,-12,30,-2,44,-5v3,0,4,2,2,6","w":105},"-":{"d":"190,-102v0,5,-2,8,-10,8r-143,0v-7,0,-10,-3,-10,-8v0,-5,3,-8,10,-8r143,0v8,0,10,3,10,8","w":217,"k":{"V":11,"T":43}},".":{"d":"77,-23v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26v14,0,26,12,26,26","w":101,"k":{"\u2019":11,"\u201d":11,"y":43,"w":14,"v":22,"t":29,"f":25,"W":22,"V":36,"T":43}},"\/":{"d":"52,18v-5,5,-15,-1,-10,-9r127,-259v5,-5,16,1,10,8","w":221,"k":{"z":43,"y":22,"x":22,"w":22,"v":22,"u":43,"t":29,"s":43,"r":43,"q":43,"p":43,"o":65,"n":43,"m":43,"g":43,"f":11,"e":65,"d":65,"c":43,"a":43,"Q":32,"O":23,"J":54,"G":18,"A":36,"4":29,"\/":162}},"0":{"d":"166,-111v0,45,-13,117,-67,117v-54,0,-67,-72,-67,-117v0,-45,13,-117,67,-117v54,0,67,72,67,117xm150,-111v0,-39,-13,-101,-51,-101v-38,0,-51,62,-51,101v0,39,14,101,51,101v37,0,51,-62,51,-101"},"1":{"d":"163,-8v0,5,-3,8,-10,8r-108,0v-7,0,-10,-3,-10,-8v5,-14,39,-4,56,-7r1,-197r-42,11v-7,2,-11,0,-12,-5v-1,-5,1,-8,8,-10r53,-14v5,0,8,3,8,10r0,205r46,0v7,0,10,2,10,7"},"2":{"d":"170,-8v0,5,-2,8,-10,8v-43,-2,-94,4,-132,-3v-3,-3,-3,-7,0,-10r101,-108v46,-35,25,-91,-29,-94v-24,-1,-43,17,-55,33v-4,6,-9,6,-12,2v-7,-25,42,-50,67,-50v37,0,70,30,70,64v0,18,-8,33,-28,54r-89,96r107,1v7,0,10,2,10,7"},"3":{"d":"33,-34v37,33,121,30,123,-28v0,-27,-29,-52,-64,-52v-7,0,-11,-3,-11,-8v0,-5,4,-8,10,-8v26,0,57,-7,57,-39v1,-45,-66,-58,-99,-29v-5,5,-10,2,-13,-2v-2,-4,0,-8,6,-11v43,-37,124,-17,123,42v0,21,-12,38,-33,48v69,29,42,130,-36,126v-24,-1,-60,-9,-71,-31v0,-4,4,-8,8,-8"},"4":{"d":"172,-68v0,12,-21,7,-33,8r0,50v0,7,-3,10,-8,10v-16,-5,-5,-41,-8,-60r-86,0v-12,0,-14,-8,-9,-16r84,-144v5,-11,27,-8,27,5r0,139v12,1,34,-4,33,8xm123,-76r0,-132r-76,132r76,0"},"5":{"d":"154,-73v1,-60,-70,-64,-110,-38v-4,0,-7,-4,-7,-9r0,-99v0,-5,3,-8,10,-8r97,0v7,0,10,3,10,8v0,5,-3,7,-10,7r-92,1r0,80v54,-27,117,-4,117,57v0,73,-73,96,-133,67v-6,-3,-8,-6,-7,-11v14,-14,41,14,62,8v38,0,63,-22,63,-63"},"6":{"d":"165,-69v0,39,-28,74,-61,74v-60,0,-71,-67,-71,-115v0,-72,46,-126,119,-120v7,0,10,3,10,8v1,10,-14,8,-24,8v-50,0,-96,46,-88,116v9,-22,30,-42,54,-42v33,0,61,34,61,71xm149,-67v0,-30,-21,-57,-46,-57v-25,0,-47,27,-47,57v0,30,22,57,47,57v25,0,46,-27,46,-57"},"7":{"d":"156,-228v15,3,13,7,8,24r-62,200v-2,7,-6,8,-11,7v-4,-1,-7,-5,-5,-12r64,-203r-109,0v-7,0,-10,-3,-10,-8v0,-5,3,-8,10,-8r115,0"},"8":{"d":"130,-117v65,26,38,123,-31,123v-68,0,-97,-97,-31,-123v-62,-27,-31,-113,31,-113v63,0,92,87,31,113xm148,-168v0,-25,-22,-46,-49,-46v-27,0,-49,21,-49,46v0,24,21,43,49,43v28,0,49,-19,49,-43xm152,-60v0,-27,-23,-49,-53,-49v-30,0,-53,22,-53,49v0,28,24,50,53,50v30,0,53,-22,53,-50"},"9":{"d":"165,-115v0,72,-46,126,-119,120v-7,0,-10,-3,-10,-8v-1,-10,14,-8,24,-8v50,0,99,-47,88,-116v-9,22,-30,42,-54,42v-33,0,-61,-34,-61,-71v0,-39,28,-74,61,-74v60,0,71,67,71,115xm142,-158v0,-30,-22,-57,-47,-57v-25,0,-46,27,-46,57v0,30,21,57,46,57v25,0,47,-27,47,-57"},":":{"d":"77,-141v0,14,-12,26,-26,26v-14,0,-26,-11,-26,-25v0,-14,12,-26,26,-26v14,0,26,11,26,25xm77,-23v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26v14,0,26,12,26,26","w":101,"k":{"T":11}},";":{"d":"88,-141v0,14,-12,26,-26,26v-14,0,-25,-11,-25,-25v0,-14,11,-26,25,-26v14,0,26,11,26,25xm87,-52r-50,105v-3,7,-23,-1,-21,-7r25,-99v5,-12,30,-2,44,-5v3,0,4,2,2,6","w":113},"<":{"d":"190,-185v2,4,1,8,-5,11r-138,70r138,70v6,3,7,8,5,12v-2,4,-7,5,-13,2r-149,-75v-8,-6,-10,-12,0,-17r150,-76v6,-3,10,-1,12,3","w":216},"=":{"d":"198,-138v0,5,-3,8,-10,8r-160,0v-7,0,-10,-3,-10,-8v0,-5,3,-8,10,-8r160,0v7,0,10,3,10,8xm198,-69v0,5,-3,8,-10,8r-160,0v-7,0,-10,-3,-10,-8v0,-5,3,-8,10,-8r160,0v7,0,10,3,10,8","w":215},">":{"d":"188,-112v11,6,9,12,0,17r-149,75v-14,7,-19,-9,-7,-14r138,-70r-138,-70v-7,-3,-8,-7,-6,-11v2,-4,7,-6,13,-3","w":216},"?":{"d":"150,-157v0,31,-32,49,-59,57v-1,11,4,31,-7,32v-15,0,-7,-25,-9,-38v0,-3,2,-6,5,-6v21,-9,54,-21,54,-45v1,-48,-68,-61,-96,-27v-5,6,-10,6,-14,2v-4,-3,-3,-8,2,-13v37,-45,124,-26,124,38xm112,-20v0,14,-12,23,-28,23v-16,0,-29,-9,-29,-23v0,-14,13,-22,29,-22v16,0,28,8,28,22","w":171},"@":{"d":"91,-240v71,-1,45,103,50,171v0,4,-1,6,-6,6v-5,0,-7,-2,-7,-8v-35,20,-68,1,-68,-37v0,-39,25,-53,68,-53v1,-31,-4,-68,-38,-68v-48,0,-54,81,-54,113v0,41,6,122,64,122v14,1,23,-5,34,-7v9,16,-24,20,-35,20v-64,0,-77,-76,-77,-131v0,-51,10,-128,69,-128xm128,-80r0,-71v-32,0,-55,7,-55,42v0,29,28,44,55,29","w":173},"A":{"d":"187,-15v3,6,8,14,-1,18v-8,3,-9,-6,-12,-12r-24,-59r-98,0r-23,59v-2,6,-4,15,-12,12v-9,-4,-4,-12,-2,-18r73,-189v3,-14,20,-15,26,0xm145,-81r-44,-116r-44,116r88,0","w":202,"k":{"y":27,"w":16,"v":22,"l":-9,"Y":27,"V":25,"T":22}},"B":{"d":"139,-109v68,17,51,110,-16,109r-81,0v-7,0,-10,-3,-10,-8r0,-193v0,-5,3,-7,10,-7v59,-3,126,-1,125,52v0,19,-8,35,-28,47xm153,-156v0,-42,-59,-38,-105,-37r0,79v48,4,105,-2,105,-42xm168,-57v-4,-52,-69,-41,-120,-42r0,83v51,0,124,10,120,-41","w":200},"C":{"d":"112,-215v28,0,68,22,77,45v0,7,-10,10,-15,4v-17,-21,-36,-34,-60,-34v-55,0,-81,43,-81,96v0,83,103,128,148,60v5,-8,15,-3,15,4v-8,22,-48,45,-76,45v-64,0,-102,-48,-102,-109v0,-61,31,-111,94,-111","w":217},"D":{"d":"192,-104v1,88,-62,111,-153,104v-4,0,-7,-1,-7,-8r0,-192v0,-7,3,-8,7,-8r57,0v62,0,96,44,96,104xm176,-104v0,-72,-49,-98,-128,-89r0,177v77,5,128,-11,128,-88","w":209,"k":{"Y":11,"V":11,"A":7}},"E":{"d":"175,-8v0,5,-3,8,-11,8r-126,0v-4,0,-6,-1,-6,-8r0,-192v0,-7,2,-8,6,-8r126,0v8,0,11,2,11,7v0,5,-3,8,-11,8r-116,0r0,71r63,0v8,0,10,3,10,8v0,5,-2,8,-10,8r-62,0r0,90r115,0v8,0,11,3,11,8","w":192,"k":{"y":11,"u":11,"o":14,"g":14,"e":14,"a":11,"S":13}},"F":{"d":"162,-201v0,5,-3,8,-10,8r-104,0r0,71r63,0v7,0,10,3,10,8v0,5,-3,8,-10,8r-63,0r0,100v0,7,-3,10,-8,10v-5,0,-8,-3,-8,-10r0,-194v0,-7,3,-8,7,-8r112,0v8,0,11,2,11,7","w":183,"k":{"y":29,"u":31,"r":20,"o":29,"i":5,"e":31,"a":32,"U":9,"O":9,"G":9,"A":27,"\/":32,".":43,",":29}},"G":{"d":"198,-19v-5,24,-49,24,-72,24v-65,0,-104,-44,-104,-108v0,-61,38,-111,100,-111v24,0,51,10,68,26v5,5,5,10,2,13v-4,4,-8,4,-13,-1v-56,-52,-142,-3,-142,74v0,76,77,113,145,80r0,-54v-18,-3,-52,8,-57,-8v0,-5,3,-8,10,-8r57,0v4,0,6,2,6,6r0,67","w":226},"H":{"d":"166,-6v0,7,-3,10,-8,10v-5,0,-8,-2,-8,-10r0,-96r-102,0r0,96v0,8,-3,10,-8,10v-5,0,-8,-3,-8,-10r0,-198v0,-8,3,-10,8,-10v5,0,8,2,8,10r0,86r102,0r0,-86v0,-8,3,-10,8,-10v5,0,8,2,8,10r0,198","k":{"a":7}},"I":{"d":"173,-8v0,5,-2,8,-10,8r-124,0v-7,0,-10,-3,-10,-8v0,-5,3,-8,10,-8r54,0r0,-177r-54,0v-7,0,-10,-3,-10,-8v0,-5,3,-7,10,-7r124,0v8,0,10,2,10,7v0,5,-2,8,-10,8r-54,0r0,177r54,0v8,0,10,3,10,8","w":201,"k":{"y":20,"x":11,"w":7,"v":14,"u":16,"t":16,"s":18,"q":20,"p":11,"o":16,"n":16,"m":16,"j":23,"g":22,"f":16,"e":22,"d":18,"c":18,"a":22}},"J":{"d":"157,-205v-7,86,32,210,-69,210v-53,0,-72,-23,-70,-76v0,-8,3,-10,8,-10v6,-1,9,5,8,13v0,44,10,57,54,57v40,0,53,-17,53,-58r0,-136v0,-7,3,-10,8,-10v5,0,8,3,8,10","w":186},"K":{"d":"172,-9v4,6,2,10,-2,12v-4,3,-9,1,-12,-5v-17,-32,-43,-94,-83,-102r-27,27r0,71v0,8,-3,10,-8,10v-5,0,-8,-2,-8,-10r0,-199v0,-7,3,-10,8,-10v5,0,8,3,8,10r0,105r110,-111v5,-5,10,-6,13,-2v4,3,4,8,-1,13r-84,85v43,9,68,71,86,106","w":191,"k":{"y":7,"u":9,"o":9,"e":9,"a":11,"O":7}},"L":{"d":"174,-8v0,5,-3,8,-10,8r-125,0v-4,0,-7,-1,-7,-8r0,-196v0,-7,3,-10,8,-10v5,0,8,3,8,10r0,188r116,0v7,0,10,3,10,8","w":190,"k":{"\u2019":32,"\u201d":36,"y":31,"Y":40,"W":22,"V":43,"T":47,"C":5}},"M":{"d":"192,-6v0,8,-2,10,-7,10v-5,0,-8,-3,-8,-10r-6,-189r-46,120v-3,13,-23,12,-28,0r-47,-120r-5,189v0,7,-4,10,-9,10v-5,0,-7,-2,-7,-10r6,-195v0,-19,24,-15,28,-4r48,122r47,-122v3,-11,28,-15,28,4","w":221},"N":{"d":"175,-3v-1,12,-22,10,-25,-1r-102,-186r0,185v0,7,-3,10,-8,10v-5,0,-8,-3,-8,-10r0,-202v2,-11,22,-11,25,1r102,185r0,-184v0,-7,3,-10,8,-10v5,0,8,3,8,10r0,202","w":207},"O":{"d":"206,-104v0,59,-33,109,-94,109v-60,0,-94,-51,-94,-109v0,-59,33,-110,94,-110v61,0,94,51,94,110xm190,-104v0,-50,-26,-94,-78,-94v-52,0,-78,44,-78,94v0,49,27,94,78,94v52,0,78,-44,78,-94","w":224,"k":{"Y":9,"V":9,"T":5,".":9}},"P":{"d":"174,-145v8,55,-59,67,-126,62r0,77v0,8,-3,10,-8,10v-5,0,-8,-2,-8,-10r0,-194v0,-7,3,-8,7,-8v69,-4,144,4,135,63xm158,-146v0,-52,-58,-47,-110,-46r0,93v52,0,110,7,110,-47","w":191,"k":{"o":9,"e":7,"a":11,"A":14,"\/":32,".":25,",":29}},"Q":{"d":"221,-10v9,9,-1,21,-11,11r-29,-28v-16,20,-39,32,-69,32v-60,0,-94,-51,-94,-109v0,-59,33,-110,94,-110v85,0,116,106,78,174xm179,-52v28,-59,4,-146,-67,-146v-52,0,-78,44,-78,94v0,49,27,94,78,94v26,0,45,-11,58,-28r-51,-52v-5,-5,-6,-9,-2,-13v3,-4,8,-3,13,2","w":239,"k":{"A":-14,"\/":-14}},"R":{"d":"181,-10v4,6,3,10,-1,13v-4,3,-9,2,-13,-4r-43,-66v-11,-26,-37,-33,-76,-29r0,90v0,8,-3,10,-8,10v-5,0,-8,-2,-8,-10r0,-194v0,-7,3,-8,7,-8r74,0v33,0,61,25,61,56v0,29,-24,53,-55,56v28,22,41,58,62,86xm156,-152v0,-46,-60,-41,-108,-40r0,80v48,1,108,7,108,-40","w":201,"k":{"Y":11,"V":9}},"S":{"d":"184,-55v0,24,-21,61,-80,61v-52,0,-82,-30,-82,-65v0,-7,3,-10,8,-10v5,0,7,3,7,9v-2,64,131,70,131,5v0,-37,-43,-39,-77,-44v-28,-4,-60,-23,-60,-55v0,-40,32,-60,71,-60v48,0,75,36,75,53v0,15,-15,16,-16,3v-2,-17,-23,-40,-59,-40v-29,0,-56,12,-56,44v0,62,141,23,138,99","w":205,"k":{"V":7,"T":7}},"T":{"d":"192,-200v0,5,-3,8,-11,8r-70,0r0,186v0,8,-3,10,-8,10v-5,0,-8,-2,-8,-10r0,-186r-71,0v-7,0,-10,-3,-10,-8v0,-5,3,-8,10,-8r157,0v8,0,11,3,11,8","w":205,"k":{"y":9,"w":11,"u":18,"r":13,"o":20,"e":34,"a":29,"O":5,"A":18,";":18,":":11,"\/":16,".":43,"-":29,",":29}},"U":{"d":"179,-72v0,48,-28,77,-73,77v-45,0,-74,-29,-74,-77r0,-133v0,-7,3,-10,8,-10v5,0,8,3,8,10v5,78,-25,195,58,195v82,0,52,-118,57,-195v0,-7,3,-10,8,-10v5,0,8,3,8,10r0,133","w":211,"k":{"A":7}},"V":{"d":"197,-201r-72,189v-4,21,-30,21,-33,0r-73,-189v-3,-7,-1,-11,4,-12v4,-2,8,-1,11,6r74,194r74,-194v3,-7,6,-8,11,-6v4,1,7,5,4,12","w":216,"k":{"y":7,"u":5,"o":16,"e":18,"a":18,"O":7,"I":4,"G":7,"A":25,".":36,"-":11}},"W":{"d":"198,-203r-33,198v-1,10,-16,13,-19,1r-36,-122r-37,122v-3,12,-16,9,-18,-1r-33,-198v-1,-7,1,-11,6,-12v5,-1,8,2,9,9r29,172r35,-117v3,-11,15,-11,18,0r35,117r29,-172v1,-7,4,-10,9,-9v5,1,7,5,6,12","w":219,"k":{"y":7,"o":5,"e":7,"a":7,"A":9,".":22,"-":11,",":22}},"X":{"d":"182,-200r-69,95r69,95v9,12,-4,20,-12,9r-67,-90r-66,90v-4,6,-8,7,-12,4v-4,-3,-5,-7,-1,-13r70,-95r-70,-95v-8,-11,5,-20,13,-9r66,91r67,-91v4,-6,8,-7,12,-4v4,3,4,7,0,13","w":206,"k":{"e":9}},"Y":{"d":"169,-201r-66,121r0,74v0,8,-3,10,-8,10v-5,0,-8,-2,-8,-10r1,-74r-66,-121v-4,-6,-2,-10,2,-12v4,-2,9,-1,12,5r59,109r61,-109v3,-6,7,-7,11,-5v4,2,6,6,2,12","w":191,"k":{"u":11,"o":25,"e":18,"a":25,"O":11,"C":7,"A":27,";":13,":":13}},"Z":{"d":"168,-8v0,5,-3,8,-10,8r-133,-1v-4,-3,-5,-7,-1,-13r122,-179r-111,0v-8,0,-11,-3,-11,-8v0,-5,3,-7,11,-7r131,1v4,3,5,7,1,13r-123,178r114,0v7,0,10,3,10,8","w":191},"[":{"d":"88,57v-3,15,-36,5,-52,8v-5,0,-7,-2,-7,-6r0,-283v5,-13,34,-3,49,-6v7,0,10,3,10,8v-1,14,-29,6,-43,8r0,263v14,2,41,-6,43,8","w":117},"\\":{"d":"42,-242v-5,-7,5,-14,10,-8r129,263v-3,12,-13,6,-18,-5","w":221},"]":{"d":"88,59v-5,13,-31,6,-49,6v-7,0,-10,-3,-10,-8v1,-14,29,-6,43,-8r0,-263v-14,-2,-41,6,-43,-8v0,-5,3,-8,10,-8v16,0,44,-7,49,6r0,283","w":117},"^":{"d":"148,-175v1,1,1,3,-1,5v-2,2,-4,1,-5,0r-54,-54r-53,54v-1,1,-4,2,-6,0v-2,-1,-1,-4,0,-5r51,-65v0,-3,16,-4,16,0","w":176},"_":{"d":"205,73v0,5,-3,8,-10,8r-159,0v-8,0,-11,-3,-11,-8v0,-5,3,-8,10,-8r160,0v7,0,10,3,10,8","w":230},"`":{"d":"143,-198r-2,5r-90,-31v-8,-5,2,-24,11,-21","w":216},"a":{"d":"39,-146v31,-34,121,-25,121,24r0,116v-1,7,-2,10,-8,10v-10,1,-8,-16,-8,-26v-38,41,-122,33,-122,-27v-1,-48,66,-65,122,-50v15,-59,-57,-56,-94,-40v-5,2,-11,0,-11,-7xm144,-43r0,-39v-37,-15,-110,-4,-107,33v4,53,83,41,107,6","w":189,"k":{"y":13,"w":7,"v":5,"t":5,"c":4}},"b":{"d":"195,-80v0,79,-109,111,-150,50v-1,12,5,33,-8,33v-5,0,-8,-4,-8,-11r0,-211v0,-7,2,-11,8,-11v5,0,8,4,8,11r0,89v41,-61,150,-29,150,50xm180,-80v0,-38,-30,-69,-68,-69v-38,0,-69,31,-69,69v0,38,31,68,69,68v38,0,68,-30,68,-68","w":214,"k":{"y":14,"v":14,"l":5,"b":9,"a":4,".":5,",":13}},"c":{"d":"102,-10v30,0,51,-15,72,-31v4,0,7,4,7,8v-9,19,-50,37,-79,37v-47,0,-80,-37,-80,-85v0,-48,33,-85,80,-85v29,0,69,17,79,37v0,4,-3,8,-7,8v-21,-15,-42,-31,-72,-31v-38,0,-66,31,-66,70v0,39,28,72,66,72","w":200,"k":{"y":7}},"d":{"d":"186,-8v0,7,-3,11,-9,11v-12,0,-7,-21,-8,-33v-41,61,-149,29,-149,-50v0,-78,108,-112,149,-50r0,-89v0,-7,2,-11,8,-11v6,0,8,4,8,11xm171,-80v0,-38,-30,-69,-68,-69v-38,0,-68,31,-68,69v0,38,30,68,68,68v38,0,68,-30,68,-68","w":214,"k":{"d":7}},"e":{"d":"183,-26v-6,19,-51,30,-76,30v-50,0,-85,-41,-85,-90v0,-42,36,-80,81,-80v44,0,81,35,81,77v0,10,-3,12,-12,12r-135,0v0,14,16,67,70,67v22,0,47,-9,62,-21v6,-5,14,-4,14,5xm168,-93v-5,-33,-32,-58,-65,-58v-46,0,-66,46,-66,58r131,0","w":204,"k":{"y":9,"x":5,"v":5,"t":5}},"f":{"d":"170,-215v0,8,-7,8,-13,7v-48,-14,-88,-1,-77,55r68,0v8,0,10,3,10,8v0,5,-2,8,-10,8r-68,0r0,131v0,7,-2,10,-8,10v-6,0,-9,-3,-9,-10r0,-131v-14,-2,-41,6,-41,-8v0,-14,27,-6,41,-8v-5,-47,11,-76,55,-77v38,0,52,5,52,15","w":179,"k":{"\u2019":-11,"\u201d":-11,"o":9,"g":7,"f":14,"e":5,"a":11,"\/":43,".":43,",":36}},"g":{"d":"171,10v0,53,-51,63,-101,58v-14,-1,-16,-16,-1,-16v44,11,87,-7,87,-46r0,-49v-36,54,-136,27,-136,-46v0,-75,101,-102,136,-46v1,-11,-4,-31,7,-31v5,0,8,2,8,9r0,167xm154,-90v0,-34,-24,-60,-59,-60v-35,0,-59,26,-59,60v0,35,25,60,60,60v35,0,58,-25,58,-60","w":199,"k":{"g":11,"e":5,"a":7}},"h":{"d":"159,-6v0,8,-3,10,-8,10v-5,0,-8,-2,-8,-10r0,-96v0,-31,-21,-46,-44,-46v-27,0,-54,21,-54,51r0,91v0,8,-3,10,-8,10v-5,0,-8,-2,-8,-10r0,-214v0,-8,3,-10,8,-10v5,0,8,3,8,10r0,82v34,-48,112,-24,113,34","w":183,"k":{"y":13,"t":7}},"i":{"d":"55,-223v0,13,1,18,-13,18v-14,0,-13,-5,-13,-18v0,-17,0,-19,13,-19v13,0,13,2,13,19xm50,-6v0,8,-3,10,-8,10v-5,0,-7,-2,-7,-10r0,-150v0,-8,2,-10,7,-10v5,0,8,3,8,10r0,150","w":83,"k":{"l":4,"j":11}},"j":{"d":"75,-223v0,13,0,18,-14,18v-14,0,-13,-5,-13,-18v0,-16,0,-19,13,-19v13,0,14,2,14,19xm69,10v0,54,-50,63,-101,58v-14,-1,-16,-16,-1,-16v44,11,87,-7,87,-46r0,-162v0,-8,2,-10,7,-10v5,0,8,3,8,10r0,166","w":103},"k":{"d":"162,2v-4,3,-8,3,-13,-2r-81,-87r-23,19r0,62v0,8,-3,10,-8,10v-5,0,-8,-2,-8,-10r0,-214v0,-7,3,-10,8,-10v5,0,8,3,8,10r0,132r89,-75v6,-5,10,-5,13,-1v3,4,3,8,-3,13r-64,54r80,86v5,5,5,10,2,13","w":174,"k":{"y":11,"o":9,"e":9,"a":5}},"l":{"d":"48,-220r0,214v0,8,-3,10,-8,10v-5,0,-8,-3,-8,-10r0,-214v0,-7,3,-10,8,-10v5,0,8,3,8,10","w":80,"k":{"y":9,"l":7,"i":4}},"m":{"d":"157,-167v61,4,31,103,38,162v0,7,-3,9,-8,9v-5,0,-8,-3,-8,-10r0,-120v-4,-34,-41,-34,-59,-1r0,121v0,7,-3,10,-8,10v-5,0,-8,-2,-8,-9r0,-120v-4,-35,-40,-35,-59,-2r0,121v0,7,-3,10,-8,10v-5,0,-8,-3,-8,-10r0,-150v0,-8,3,-10,8,-10v7,-1,9,7,8,16v23,-24,55,-25,72,2v13,-16,26,-19,40,-19","w":223,"k":{"y":7}},"n":{"d":"157,-117r0,111v0,8,-3,10,-8,10v-5,0,-8,-2,-8,-10v-6,-57,23,-145,-41,-145v-28,0,-42,19,-55,40r0,105v0,8,-3,10,-8,10v-5,0,-8,-2,-8,-10r0,-150v0,-7,3,-10,8,-10v12,-1,7,20,8,31v26,-51,112,-37,112,18","w":182,"k":{"y":7}},"o":{"d":"192,-81v0,53,-38,85,-86,85v-48,0,-86,-32,-86,-85v0,-53,37,-85,86,-85v48,0,86,32,86,85xm177,-81v0,-44,-32,-69,-72,-69v-40,0,-70,25,-70,69v0,44,30,69,70,69v40,0,72,-25,72,-69","w":211,"k":{"y":9,"v":5}},"p":{"d":"192,-82v0,81,-108,113,-147,49r0,97v0,7,-3,11,-8,11v-5,0,-8,-3,-8,-10r0,-221v0,-8,3,-10,8,-10v13,-1,7,22,8,34v40,-64,147,-30,147,50xm177,-83v0,-37,-30,-68,-65,-68v-36,0,-67,33,-67,69v0,36,30,68,67,68v35,0,65,-32,65,-69","w":211,"k":{"y":11}},"q":{"d":"183,65v0,7,-3,10,-8,10v-5,0,-8,-4,-8,-11r0,-97v-40,63,-147,32,-147,-49v0,-82,107,-114,147,-50v1,-12,-4,-35,8,-34v5,0,8,2,8,10r0,221xm167,-82v0,-36,-31,-69,-67,-69v-35,0,-65,31,-65,68v0,37,30,69,65,69v37,0,67,-32,67,-68","w":211},"r":{"d":"152,-142v-13,10,-21,-13,-37,-8v-22,0,-55,36,-70,51r0,93v0,8,-3,10,-8,10v-5,0,-8,-2,-8,-10r0,-150v0,-8,3,-10,8,-10v15,1,6,31,8,45v25,-25,65,-67,105,-32v3,3,5,8,2,11","w":165,"k":{"s":7,"q":9,"o":5,"g":5,"e":9,"d":9,"c":9,"a":9,".":32,"-":11,",":27}},"s":{"d":"166,-44v0,30,-29,50,-72,50v-66,0,-72,-35,-72,-46v0,-6,3,-10,8,-10v6,0,9,3,9,10v0,17,23,30,55,30v33,0,56,-13,56,-32v0,-31,-37,-33,-55,-35v-30,-4,-65,-10,-65,-47v0,-52,119,-61,128,-2v0,5,-1,9,-6,10v-4,0,-9,-4,-9,-9v-1,-17,-22,-26,-50,-26v-27,0,-47,13,-47,28v0,28,32,28,53,30v25,3,67,9,67,49","w":187,"k":{"v":5,"t":4}},"t":{"d":"182,-21v-21,35,-126,38,-126,-19r0,-98v-17,4,-53,-5,-26,-16r26,0v3,-19,-8,-56,8,-61v16,5,5,42,8,61r78,0v8,0,11,3,11,8v0,5,-3,8,-11,8r-78,0v7,51,-24,128,39,126v19,0,44,-6,57,-14v5,-3,14,-4,14,5","w":194,"k":{"y":13,"t":25,"e":5}},"u":{"d":"159,-6v0,7,-3,10,-8,10v-12,1,-7,-20,-8,-31v-28,47,-114,36,-114,-20r0,-109v0,-7,3,-10,8,-10v5,0,8,3,8,10v6,57,-22,144,42,143v26,0,43,-19,56,-40r0,-103v0,-7,3,-10,8,-10v5,0,8,3,8,10r0,150","w":187},"v":{"d":"170,-153r-67,151v-5,10,-14,10,-19,0r-68,-151v-3,-7,-2,-11,3,-13v4,-2,8,0,11,7r63,140r63,-140v3,-7,7,-9,11,-7v5,2,6,6,3,13","w":186,"k":{"i":-5,"e":5,"a":5,"\/":32,".":22,",":18}},"w":{"d":"200,-154r-47,151v-4,13,-17,12,-21,0r-24,-83r-24,83v-4,11,-18,12,-21,0r-47,-151v-2,-7,0,-11,5,-12v5,-1,8,1,10,8r42,136r25,-88v3,-12,17,-10,20,0r25,88r42,-136v2,-7,5,-9,10,-8v4,1,7,5,5,12","w":216,"k":{"a":9,".":14,",":16}},"x":{"d":"177,2v-4,3,-7,3,-12,-2r-65,-70r-65,70v-5,5,-8,5,-12,2v-4,-3,-5,-7,0,-12r66,-72r-64,-69v-5,-5,-5,-10,-1,-13v4,-3,7,-3,12,2r64,69r63,-69v5,-5,9,-5,13,-2v4,3,4,7,-1,12r-64,70r65,72v5,5,5,9,1,12","w":199,"k":{"e":9,"c":5}},"y":{"d":"184,-154r-111,218v-3,6,-8,7,-12,5v-4,-2,-5,-6,-2,-12r36,-70r-72,-140v-6,-11,8,-19,14,-7r66,129r67,-130v3,-6,7,-7,11,-5v4,2,6,6,3,12","w":200,"k":{"s":5,"o":11,"e":11,"a":7,"\/":43,".":36,",":32}},"z":{"d":"159,-163v13,1,13,15,5,24r-123,123r114,0v7,0,11,3,11,8v0,5,-4,8,-11,8r-124,0v-13,-2,-12,-15,-4,-24r123,-123r-115,0v-7,0,-10,-3,-10,-8v0,-5,3,-8,10,-8r124,0","w":190,"k":{"o":7,"e":9}},"{":{"d":"103,-220v-4,15,-33,9,-30,31v-4,39,11,89,-14,108v26,20,14,69,14,108v0,12,9,21,20,22v7,1,10,2,10,8v0,5,-4,9,-10,9v-48,0,-35,-69,-36,-116v0,-12,-8,-21,-19,-22v-13,0,-12,-18,0,-18v49,-11,-16,-136,55,-138v6,0,10,3,10,8","w":131},"|":{"d":"59,78v0,8,-3,11,-8,11v-5,0,-8,-3,-8,-11r0,-347v0,-7,3,-10,8,-10v5,0,8,3,8,10r0,347","w":102,"k":{"j":-55}},"}":{"d":"29,57v4,-13,33,-8,29,-30v4,-39,-12,-89,15,-108v-27,-19,-15,-68,-15,-108v0,-12,-8,-21,-19,-22v-7,-1,-10,-3,-10,-9v0,-5,4,-8,10,-8v47,0,33,69,35,116v0,12,8,21,19,22v7,0,10,4,10,9v-4,14,-33,9,-29,31v-2,47,13,115,-35,116v-6,0,-10,-4,-10,-9","w":131},"~":{"d":"184,-123v2,26,-47,34,-76,20v-25,-13,-57,-4,-78,4v-2,-25,49,-34,76,-20v27,14,57,4,78,-4","w":214},"\u2122":{"d":"183,-128v1,8,-11,10,-11,1r-2,-76r-18,46v-1,7,-13,7,-16,0r-18,-46r-2,76v0,4,-1,6,-5,6v-3,0,-5,-2,-5,-6r2,-87v0,-10,14,-8,17,-3r19,51r19,-51v2,-5,17,-7,17,3xm99,-216v-3,11,-25,3,-36,5r0,84v0,4,-1,6,-5,6v-3,0,-5,-2,-5,-6r0,-84v-12,-2,-33,5,-37,-5v0,-3,3,-5,7,-5r70,0v4,0,6,2,6,5","w":207},"\u2026":{"d":"199,-17v0,12,-10,22,-22,22v-12,0,-21,-9,-21,-21v0,-13,9,-23,21,-23v13,0,22,10,22,22xm132,-17v0,12,-9,22,-21,22v-13,0,-22,-9,-22,-21v0,-13,10,-23,22,-23v12,0,21,10,21,22xm66,-17v0,12,-10,22,-22,22v-12,0,-22,-9,-22,-21v0,-13,9,-23,21,-23v13,0,23,9,23,22","w":221},"\u2013":{"d":"202,-102v0,5,-3,8,-10,8r-160,0v-7,0,-10,-3,-10,-8v0,-5,3,-8,10,-8r160,0v7,0,10,3,10,8","w":223},"\u2014":{"d":"242,-102v0,5,-3,8,-10,8r-200,0v-7,0,-10,-3,-10,-8v0,-5,3,-8,10,-8r200,0v7,0,10,3,10,8","w":263},"\u201c":{"d":"133,-211v2,26,-14,57,-19,84v-2,9,-21,2,-31,4v-2,0,-4,-2,-3,-6v15,-28,25,-61,43,-86xm72,-211v2,26,-14,57,-19,84v-2,9,-21,2,-31,4v-2,0,-4,-2,-3,-6v15,-28,25,-61,43,-86","w":153,"k":{"A":18}},"\u201d":{"d":"135,-203v-15,28,-26,61,-44,86v-4,-3,-11,-1,-11,-8r20,-79v4,-9,22,-2,32,-4v2,0,4,1,3,5xm74,-203r-43,86v-4,-3,-12,-1,-12,-8r20,-79v4,-9,22,-2,32,-4v2,0,4,1,3,5","w":153},"\u2018":{"d":"72,-211v2,26,-14,57,-19,84v-2,9,-21,2,-31,4v-2,0,-4,-2,-3,-6v15,-28,25,-61,43,-86","w":92,"k":{"A":18}},"\u2019":{"d":"74,-203r-43,86v-4,-3,-12,-1,-12,-8r20,-79v4,-9,22,-2,32,-4v2,0,4,1,3,5","w":92,"k":{"d":16}},"\u00a0":{"w":115,"k":{"Y":18,"V":14,"T":13,"A":13}}}});
/*
 * jQuery doTimeout: Like setTimeout, but better! - v1.0 - 3/3/2010
 * http://benalman.com/projects/jquery-dotimeout-plugin/
 * 
 * Copyright (c) 2010 "Cowboy" Ben Alman
 * Dual licensed under the MIT and GPL licenses.
 * http://benalman.com/about/license/
 */
(function($){var a={},c="doTimeout",d=Array.prototype.slice;$[c]=function(){return b.apply(window,[0].concat(d.call(arguments)))};$.fn[c]=function(){var f=d.call(arguments),e=b.apply(this,[c+f[0]].concat(f));return typeof f[0]==="number"||typeof f[1]==="number"?this:e};function b(l){var m=this,h,k={},g=l?$.fn:$,n=arguments,i=4,f=n[1],j=n[2],p=n[3];if(typeof f!=="string"){i--;f=l=0;j=n[1];p=n[2]}if(l){h=m.eq(0);h.data(l,k=h.data(l)||{})}else{if(f){k=a[f]||(a[f]={})}}k.id&&clearTimeout(k.id);delete k.id;function e(){if(l){h.removeData(l)}else{if(f){delete a[f]}}}function o(){k.id=setTimeout(function(){k.fn()},j)}if(p){k.fn=function(q){if(typeof p==="string"){p=g[p]}p.apply(m,d.call(n,i))===true&&!q?o():e()};o()}else{if(k.fn){j===undefined?e():k.fn(j===false);return true}else{e()}}}})(jQuery);
/*
 *  jQuery Plugin colorBlend v3.0.3
 */
(function(o){var j="3.0.3",e=["play","start","stop","pause","resume","reverse","reset"],r=[];o.extend(o.expr[":"],{blendingParam:function(z,y,C,E){var D=C[3],A=o(z),B=r[z.uniqueID];return(A.is(":hasBlend('"+D+"')")&&B[D].internals.animating)},blendableParam:function(z,y,C,E){var D=C[3],A=o(z),B=r[z.uniqueID];return A.is(":blendingParam('"+D+"')")?(B[D].isQueue&&B[D].cycles>-1):true},paramMyBlend:function(A,C,B,F){var D=B[3].split(","),G=o(A),E=D[0],y=D[1],z=r[A.uniqueID];return(G.is(":hasBlend('"+y+"')")&&z[y].blendId===E)},hasBlend:function(z,y,B,D){var C=B[3],A=r[z.uniqueID];return !q(A)&&!q(A[C])},blending:function(z,y,B,C){var A=r[z.uniqueID];if(!q(A)){for(param in A){if(!q(A[param])&&!A[param].internals.animating){continue}return true}}return false},uniqueIDAssigned:function(z,y,B,D){var A=z.uniqueID;if(q(A)){var C=new Object();C.uniqueID=d();o.extend(z,C)}return true}});o.fn.colorBlend=function(G){if(!G){G=[{}]}var E={fps:60,duration:1000,param:"background-color",cycles:-1,colorList:["current","opposite"],alpha:[],action:"",random:false,strobe:true,isQueue:true,cycleCallBack:function(){},preCallBack:function(){},postCallBack:function(){}},C={currentCycle:0,pos:0,frames:0,delay:0,step:1,tId:0,animating:false,isPOrS:false,pct:function(){return(this.pos/this.frames)},next:function(){if(!q(this.opts)){var I=this;function H(){u(I.opts)}this.tId=setTimeout(H,this.delay)}}},z=[];function F(I,J){var K=[],H=d();J.blendId=H;z=[];o.each(I,function(P,N){var O=o.extend({},E,N),M=o.inArray(O.action.toLowerCase(),e),Q=O.param.toLowerCase(),L;if(Q!=="all"){z.push(Q)}if(M>-1){l(Q,J,e[M]);return true}if(Q==="opacity"){O.colorList=[];O.random=false}O.blendId=H;O.parent=J;O.queue=[];O.internals=o.extend({},C);if(o.inArray(Q,K)==-1){K[Q]=k(O)}});B(J,K)}function D(I,H,J){if(q(r[H])){r[H]=[]}r[H][J]=I}function A(J,I){var H=o.extend(true,{},I);H.parent=o(J);H.internals.opts=H;return H}function B(I,H){o.each(z,function(K,J){var M=I.filter(":not(:hasBlend('"+J+"'))");M.each(function(O,N){D(A(N,H[J]),N.uniqueID,J)});if(M.size()<I.size()){var L=I.not(M).filter(":blendingParam('"+J+"')");L.filter(":blendableParam('"+J+"')").each(function(O,N){r[N.uniqueID][J].queue.push(A(N,H[J]))});I.not(M).not(L).each(function(O,N){D(A(N,H[J]),N.uniqueID,J)})}})}function y(H){if(H.is(":uniqueIDAssigned")){F(G,H);if(!q(H.blendId)){o.each(z,function(J,I){H.filter(":paramMyBlend('"+H.blendId+","+I+"')").each(function(L,K){var M=r[K.uniqueID][I];M.preCallBack();M.internals.animating=true;M.internals.next()})})}}return H}return y(this)};function l(B,A,z){if(B.toLowerCase()==="all"||A.is(":hasBlend('"+B+"')")){var y=B.toLowerCase()==="all"?":blending":":hasBlend('"+B+"')";A.filter(y).each(function(E,C){for(cPrm in r[C.uniqueID]){var D=r[C.uniqueID][cPrm];if(!q(D)&&(cPrm===B||B==="all")){switch(z.toLowerCase()){case"pause":case"stop":D.internals.tId=clearTimeout(D.internals.tId);D.internals.isPOrS=true;if(z.toLowerCase()==="stop"){D.internals.animating=false}break;case"reverse":D.internals.step=-1*D.internals.step;break;case"reset":D.internals.step=1;D.internals.currentCycle=D.cycles>-1?D.cycles:0;D.internals.pos=0;break;case"start":case"play":case"resume":if(D.internals.isPOrS){D.internals.isPOrS=false;D.internals.animating=true;D.internals.next()}break}}}})}}function p(y){y.parent.filter(":paramMyBlend('"+y.blendId+","+y.param+"')").each(function(A,z){if(!q(r[z.uniqueID])){var B=true;r[z.uniqueID][y.param]=null;for(sObj in r[z.uniqueID]){if(q(r[z.uniqueID][sObj])){continue}B=false}if(B){r[z.uniqueID]=null}}})}function v(z){if(z.cycles>-1&&z.internals.pos<=0){z.internals.currentCycle-=z.internals.currentCycle!=0?1:0;if(z.internals.currentCycle==0){z.internals.tId=clearTimeout(z.internals.tId);z.cycleCallBack();if(a(z.queue)&&z.queue.length>0){var y=z.queue.concat();y.splice(0,1);z=o.extend(z,z.queue.shift());z.queue=y.concat();z.internals.animating=true;z.internals.next()}else{z.internals.animating=false;z.internals.isPOrS=false;z.postCallBack();p(z)}}}}function u(y){if(y.internals.animating&&!y.internals.isPOrS){y.parent.css(y.param,c(y));y.internals.pos+=y.internals.step;if(y.internals.pos>y.internals.frames||y.internals.pos<0){if(y.random){y.colorList=[y.colorList[y.colorList.length-1],f()]}if(y.strobe){y.internals.step=-1*y.internals.step;v(y)}else{if(y.internals.pos>=y.internals.frames){y.internals.pos=0;v(y)}}}if(y.internals.animating&&!y.internals.isPOrS){y.internals.next()}}}function k(A){if(!A.internals.animating){if(A.param.toLowerCase()!=="opacity"){if(A.colorList.length==1){A.colorList.push("opposite")}o.each(A.colorList,function(C,B){switch(B.toLowerCase()){case"current":A.colorList[C]=A.parent.css(A.param)==="transparent"?h(A.parent,A.param):A.parent.css(A.param);break;case"parent":case"transparent":A.colorList[C]=h(A.parent,A.param);break;case"opposite":A.colorList[C]=i(w(h(A.parent,A.param)));break;case"random":A.colorList[C]=f();break}});if(A.random){A.strobe=false;A.colorList=[f(),f()]}}var z=Math.floor(1000/A.fps),y=Math.floor(A.duration/z);A.internals.currentCycle=A.cycles>-1?A.cycles:0;A.internals.frames=A.strobe?Math.floor(y/2):y;A.internals.delay=z;return A}}var n={aliceblue:"F0F8FF",antiquewhite:"FAEBD7",aqua:"00FFFF",aquamarine:"7FFFD4",azure:"F0FFFF",beige:"F5F5DC",bisque:"FFE4C4",black:"000000",blanchedalmond:"FFEBCD",blue:"0000FF",blueviolet:"8A2BE2",brown:"A52A2A",burlywood:"DEB887",cadetblue:"5F9EA0",chartreuse:"7FFF00",chocolate:"D2691E",coral:"FF7F50",cornflowerblue:"6495ED",cornsilk:"FFF8DC",crimson:"DC143C",cyan:"00FFFF",darkblue:"00008B",darkcyan:"008B8B",darkgoldenrod:"B8860B",darkgray:"A9A9A9",darkgreen:"006400",darkkhaki:"BDB76B",darkmagenta:"8B008B",darkolivegreen:"556B2F",darkorange:"FF8C00",darkorchid:"9932CC",darkred:"8B0000",darksalmon:"E9967A",darkseagreen:"8FBC8F",darkslateblue:"483D8B",darkslategray:"2F4F4F",darkturquoise:"00CED1",darkviolet:"9400D3",deeppink:"FF1493",deepskyblue:"00BFFF",dimgray:"696969",dodgerblue:"1E90FF",firebrick:"B22222",floralwhite:"FFFAF0",forestgreen:"228B22",fuchsia:"FF00FF",gainsboro:"DCDCDC",ghostwhite:"F8F8FF",gold:"FFD700",goldenrod:"DAA520",gray:"808080",grey:"808080",green:"008000",greenyellow:"ADFF2F",honeydew:"F0FFF0",hotpink:"FF69B4",indianred:"CD5C5C",indigo:"4B0082",ivory:"FFFFF0",khaki:"F0E68C",lavender:"E6E6FA",lavenderblush:"FFF0F5",lawngreen:"7CFC00",lemonchiffon:"FFFACD",lightblue:"ADD8E6",lightcoral:"F08080",lightcyan:"E0FFFF",lightgoldenrodyellow:"FAFAD2",lightgreen:"90EE90",lightgrey:"D3D3D3",lightpink:"FFB6C1",lightsalmon:"FFA07A",lightseagreen:"20B2AA",lightskyblue:"87CEFA",lightslategray:"778899",lightsteelblue:"B0C4DE",lightyellow:"FFFFE0",lime:"00FF00",limegreen:"32CD32",linen:"FAF0E6",magenta:"FF00FF",maroon:"800000",mediumaquamarine:"66CDAA",mediumblue:"0000CD",mediumorchid:"BA55D3",mediumpurple:"9370DB",mediumseagreen:"3CB371",mediumslateblue:"7B68EE",mediumspringgreen:"00FA9A",mediumturquoise:"48D1CC",mediumvioletred:"C71585",midnightblue:"191970",mintcream:"F5FFFA",mistyrose:"FFE4E1",moccasin:"FFE4B5",navajowhite:"FFDEAD",navy:"000080",oldlace:"FDF5E6",olive:"808000",olivedrab:"6B8E23",orange:"FFA500",orangered:"FF4500",orchid:"DA70D6",palegoldenrod:"EEE8AA",palegreen:"98FB98",paleturquoise:"AFEEEE",palevioletred:"DB7093",papayawhip:"FFEFD5",peachpuff:"FFDAB9",peru:"CD853F",pink:"FFC0CB",plum:"DDA0DD",powderblue:"B0E0E6",purple:"800080",red:"FF0000",rosybrown:"BC8F8F",royalblue:"4169E1",saddlebrown:"8B4513",salmon:"FA8072",sandybrown:"F4A460",seagreen:"2E8B57",seashell:"FFF5EE",sienna:"A0522D",silver:"C0C0C0",skyblue:"87CEEB",slateblue:"6A5ACD",slategray:"708090",snow:"FFFAFA",springgreen:"00FF7F",steelblue:"4682B4",tan:"D2B48C",teal:"008080",thistle:"D8BFD8",tomato:"FF6347",turquoise:"40E0D0",violet:"EE82EE",wheat:"F5DEB3",white:"FFFFFF",whitesmoke:"F5F5F5",yellow:"FFFF00",yellowgreen:"9ACD32"};function i(C){C=w(C).split("#").join("").split("");var B="0123456789abcdef",A=B.split("").reverse().join(""),z;for(var y=0;y<C.length;y++){z=B.indexOf(C[y]);C[y]=A.substring(z,z+1)}return"#"+C.join("")}function x(A,z,y){return"#"+(1<<24|(A<<16)|(z<<8)|(y<<0)).toString(16).substring(1)}function m(A){var z=[];if(q(A)){return"0, 0, 0"}A=A.split("#").join("");for(var y=0;y<3;y++){z.push(parseInt(A.substr(y*2,2),16))}return z.join(", ")}function t(z){var y;if(z&&z.constructor==Array&&z.length==3){return z}if(y=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(z)){return[parseInt(y[1]),parseInt(y[2]),parseInt(y[3])]}if(y=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(z)){return[parseFloat(y[1])*2.55,parseFloat(y[2])*2.55,parseFloat(y[3])*2.55]}if(y=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(z)){return[parseInt(y[1],16),parseInt(y[2],16),parseInt(y[3],16)]}if(y=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(z)){return[parseInt(y[1]+y[1],16),parseInt(y[2]+y[2],16),parseInt(y[3]+y[3],16)]}return m(n[o.trim(z).toLowerCase()]).split(",")}function w(z){var y=t(z);return x(parseInt(y[0]),parseInt(y[1]),parseInt(y[2]))}function c(y){return(y.param.toLowerCase()==="opacity")?s(y):g(y)}function s(y){var B=((y.alpha.length-1)*y.internals.pct()),E=y.internals.frames,z=Math.floor(B),D=(B-z),F=(E*D),A=y.alpha[z],C=y.alpha[z+1],G=0;if(C>-1&&C<101&&A>-1&&A<101){G=Math.floor(A*((E-F)/E)+C*(F/E))*0.01}return G}function g(y){var B=((y.colorList.length-1)*y.internals.pct()),F=y.internals.frames,z=Math.floor(B),E=(B-z),G=(F*E),H=[0,0,0],A=t(y.colorList[z]),C=t(y.colorList[z+1]);for(var D=0;D<3;D++){H[D]=Math.floor(parseInt(A[D])*((F-G)/F)+parseInt(C[D])*(G/F))}return x(H[0],H[1],H[2])}function h(A,z){var y="#ffffff";o(A).parents().each(function(){var B=o(this).css(z);if(B!="transparent"&&B!=""){y=B;return false}});return y}function f(){var A=[],y;for(var z=0;z<3;z++){y=b(0,255).toString(16);A[A.length]=(y.length==1?"0"+y:y)}return"#"+A.join("")}function d(){var z=[];for(var y=0;y<7;y++){z.push(b(0,15).toString(16))}return z.join("")}function b(z,y){return Math.floor(Math.random()*(y-z+1))+z}function a(y){return y.constructor==Array}function q(y){return typeof(y)=="undefined"?true:y==null?true:false}})(jQuery);
/**
 * jQuery.ScrollTo - Easy element scrolling using jQuery.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 5/25/2009
 * @author Ariel Flesler
 * @version 1.4.2
 *
 * http://flesler.blogspot.com/2007/10/jqueryscrollto.html
 */
;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);
