//jquery.cycle.
(function($){var ver="2.75";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(opts2.currSlide,opts2.nextSlide,opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts2.rev);},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth;}if(!h){h=e.offsetHeight;}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).find("a").removeClass(clsName).filter("a:eq("+currSlide+")").addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pagerEvent!="click"){$a.click(function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,prevNextEvent:"click",pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null};})(jQuery);
//cufon-yui.js
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}})());

//helios
Cufon.registerFont({"w":172,"face":{"font-family":"HeliosCond","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-11 -326 346 75","underline-thickness":"20.88","underline-position":"-32.4","stemh":"23","stemv":"27","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":86},"!":{"d":"42,-259r31,0v2,70,-3,133,-8,196r-15,0r-8,-117r0,-79xm42,-35r31,0r0,35r-31,0r0,-35","w":114},"\"":{"d":"15,-177r0,-79r18,0r0,79r-18,0xm54,-177r0,-79r18,0r0,79r-18,0","w":86},"#":{"d":"12,0r27,-88r-37,0r6,-20r37,0r13,-43r-37,0r6,-21r37,0r27,-87r19,0r-27,87r31,0r26,-87r20,0r-27,87r38,0r-6,21r-39,0r-12,43r38,0r-5,20r-40,0r-27,88r-19,0r27,-88r-30,0r-28,88r-18,0xm64,-108r30,0r14,-43r-31,0"},"$":{"d":"156,-190r-28,0v0,-34,-12,-43,-32,-43r0,88v45,20,68,34,68,79v0,45,-23,71,-68,71r0,35r-15,0r0,-35v-53,0,-66,-36,-66,-85r28,0v0,43,9,58,38,58r0,-96v-32,-15,-64,-33,-64,-74v0,-39,26,-67,64,-67r0,-23r15,0r0,23v44,0,60,32,60,69xm81,-151r0,-82v-14,0,-34,10,-34,39v0,25,14,34,34,43xm96,-113r0,91v29,0,38,-16,38,-42v0,-30,-12,-38,-38,-49"},"%":{"d":"206,-259r-115,264r-19,0r116,-264r18,0xm214,-125v36,0,47,29,47,62v0,48,-19,63,-47,63v-29,0,-46,-15,-46,-64v0,-32,10,-61,46,-61xm214,-106v-32,0,-35,87,1,87v21,0,23,-23,23,-39v0,-23,-2,-48,-24,-48xm66,-255v36,0,46,30,46,63v0,48,-18,63,-46,63v-29,0,-47,-15,-47,-64v0,-32,11,-62,47,-62xm66,-235v-33,1,-36,86,0,86v21,0,23,-23,23,-39v0,-23,-1,-47,-23,-47","w":288},"&":{"d":"130,-208v0,-15,-9,-28,-25,-28v-39,0,-22,56,-4,74v15,-12,29,-25,29,-46xm180,-47r33,47r-34,0r-16,-23v-39,54,-137,29,-137,-46v0,-39,22,-59,53,-79v-38,-33,-35,-111,26,-111v31,0,53,19,53,51v0,28,-23,51,-45,65r50,73v5,-16,9,-33,10,-49r26,0v-2,24,-6,50,-19,72xm148,-44r-57,-84v-47,21,-49,109,14,108v18,0,32,-11,43,-24","w":230},"'":{"d":"34,-177r0,-79r18,0r0,79r-18,0","w":86},"(":{"d":"80,-259r18,0v-15,32,-43,77,-43,165v0,64,12,114,45,169r-20,0v-68,-100,-73,-233,0,-334","w":115},")":{"d":"15,-259r20,0v69,100,73,233,0,334r-18,0v15,-32,43,-78,43,-166v0,-64,-13,-113,-45,-168","w":115},"*":{"d":"78,-259r18,0r0,42r38,-14r6,16r-40,13r27,34r-14,11r-27,-35r-25,33r-15,-9r26,-33r-39,-15r6,-15r39,15r0,-43"},"+":{"d":"74,-175r25,0r0,75r59,0r0,24r-59,0r0,76r-25,0r0,-76r-59,0r0,-24r59,0r0,-75"},",":{"d":"28,-35r31,0v1,41,3,75,-31,85r0,-15v14,-4,17,-22,17,-35r-17,0r0,-35","w":86},"-":{"d":"15,-100r90,0r0,24r-90,0r0,-24","w":120},".":{"d":"28,-35r31,0r0,35r-31,0r0,-35","w":86},"\/":{"d":"79,-260r21,0r-83,269r-22,0","w":95},"0":{"d":"46,-127v0,54,3,106,40,106v37,0,41,-52,41,-106v0,-46,-4,-106,-41,-106v-37,0,-40,60,-40,106xm86,5v-67,0,-70,-73,-70,-132v0,-51,4,-132,70,-132v66,0,71,81,71,132v0,59,-3,132,-71,132"},"1":{"d":"81,0r0,-189r-55,0r0,-23v37,0,57,-7,61,-47r22,0r0,259r-28,0"},"2":{"d":"152,-187v0,69,-116,122,-106,161r108,0r0,26r-139,0v0,-46,9,-69,65,-115v21,-18,42,-41,42,-73v0,-26,-8,-45,-38,-45v-34,0,-38,27,-38,62r-29,0v-3,-51,18,-87,68,-88v44,0,67,29,67,72"},"3":{"d":"66,-121r0,-26v33,0,54,-9,54,-44v0,-25,-10,-42,-37,-42v-27,0,-37,24,-37,50r-27,0v0,-43,23,-76,66,-76v72,0,88,108,24,124v31,7,47,30,47,65v0,43,-22,75,-71,75v-49,0,-71,-35,-71,-82r28,0v0,28,8,56,43,56v28,0,42,-19,42,-46v0,-45,-17,-54,-61,-54"},"4":{"d":"104,-214r-72,123r72,0r0,-123xm9,-91r97,-168r27,0r0,168r23,0r0,26r-23,0r0,65r-29,0r0,-65r-95,0r0,-26"},"5":{"d":"37,-254r110,0r0,26r-87,0r-12,76v12,-12,24,-18,42,-18v48,0,66,40,66,82v0,46,-16,93,-70,93v-46,0,-69,-26,-69,-73r30,0v0,27,8,47,38,47v31,0,41,-31,41,-63v0,-30,-6,-60,-43,-60v-17,0,-29,7,-36,23r-26,0"},"6":{"d":"87,-139v-34,0,-40,29,-40,53v0,49,16,65,42,65v34,0,40,-37,40,-63v0,-28,-9,-55,-42,-55xm90,5v-69,0,-75,-67,-75,-120v0,-54,1,-144,76,-144v34,0,60,26,60,62r-28,0v-1,-27,-14,-36,-36,-36v-35,-1,-45,75,-43,101v30,-67,114,-21,114,47v0,55,-29,90,-68,90"},"7":{"d":"15,-254r143,0r0,24v-50,67,-79,148,-86,230r-32,0v10,-82,43,-161,94,-228r-119,0r0,-26"},"8":{"d":"86,-126v-30,0,-40,27,-40,53v0,31,7,52,40,52v33,0,41,-21,41,-52v0,-27,-11,-53,-41,-53xm86,-233v-24,0,-32,16,-32,39v0,26,9,42,33,42v25,0,33,-19,33,-41v0,-22,-9,-40,-34,-40xm65,-140v-61,-13,-56,-119,21,-119v77,0,85,102,25,119v23,4,46,26,46,68v0,49,-25,77,-71,77v-48,0,-70,-27,-70,-77v0,-42,28,-64,49,-68"},"9":{"d":"127,-169v0,-28,-7,-64,-42,-64v-32,0,-40,33,-40,59v0,27,7,59,40,59v32,0,42,-27,42,-54xm84,-259v69,0,74,67,74,120v0,54,0,144,-75,144v-38,0,-62,-25,-62,-62r29,0v0,23,11,36,35,36v36,1,44,-64,44,-100v-31,65,-114,21,-114,-47v0,-55,30,-91,69,-91"},":":{"d":"28,-35r31,0r0,35r-31,0r0,-35xm28,-189r31,0r0,35r-31,0r0,-35","w":86},";":{"d":"28,-35r31,0v1,41,3,75,-31,85r0,-15v14,-4,17,-22,17,-35r-17,0r0,-35xm28,-189r31,0r0,35r-31,0r0,-35","w":86},"<":{"d":"41,-88r118,66r0,25r-145,-80r0,-22r145,-80r0,25"},"=":{"d":"15,-133r143,0r0,24r-143,0r0,-24xm15,-67r143,0r0,25r-143,0r0,-25"},">":{"d":"14,-22r118,-66r-118,-66r0,-25r145,80r0,22r-145,80r0,-25"},"?":{"d":"70,-59v-13,-57,60,-86,60,-133v0,-20,-11,-41,-37,-41v-34,0,-40,26,-40,56r-31,0v0,-42,20,-82,69,-82v45,0,68,25,68,65v0,46,-25,60,-51,94v-5,7,-7,14,-7,41r-31,0xm70,-35r31,0r0,35r-31,0r0,-35"},"@":{"d":"149,-185v-37,0,-60,51,-60,83v0,17,9,33,27,33v31,0,58,-60,58,-91v0,-14,-11,-25,-25,-25xm188,-183r5,-16r24,0v-13,41,-30,79,-40,123v0,6,4,10,10,10v37,0,59,-52,59,-84v0,-57,-49,-92,-102,-92v-64,0,-114,53,-114,116v0,63,52,114,114,114v36,0,72,-18,93,-48r20,0v-22,41,-67,65,-113,65v-75,0,-131,-59,-131,-132v0,-73,60,-132,132,-132v65,0,119,45,119,110v0,43,-34,101,-82,101v-12,0,-26,-5,-30,-18v-29,35,-90,14,-90,-34v0,-62,79,-147,126,-83","w":276},"A":{"d":"5,0r74,-259r38,0r73,259r-32,0r-20,-75r-82,0r-19,75r-32,0xm131,-100r-34,-138r-34,138r68,0","w":195},"B":{"d":"56,-233r0,84v43,1,80,4,80,-44v0,-45,-38,-40,-80,-40xm56,-123r0,97v48,2,88,4,88,-49v0,-52,-40,-49,-88,-48xm27,0r0,-259r68,0v81,-9,93,103,34,121v22,6,46,26,45,64v0,48,-27,74,-75,74r-72,0","w":191},"C":{"d":"175,-181r-28,0v0,-31,-11,-57,-47,-57v-50,0,-50,70,-50,104v0,53,2,114,50,114v37,0,44,-31,47,-74r28,0v-3,60,-18,100,-73,100v-76,0,-82,-78,-82,-139v0,-58,11,-131,82,-131v49,0,73,37,73,83","w":193},"D":{"d":"27,0r0,-259r71,0v81,0,90,65,90,129v0,63,-15,130,-85,130r-76,0xm56,-233r0,207v80,6,102,-7,102,-109v0,-60,-10,-98,-56,-98r-46,0","w":208},"E":{"d":"27,-259r130,0r0,26r-101,0r0,84r94,0r0,26r-94,0r0,97r101,0r0,26r-130,0r0,-259","w":174},"F":{"d":"27,-259r122,0r0,26r-93,0r0,84r86,0r0,26r-86,0r0,123r-29,0r0,-259","w":153},"G":{"d":"99,-107r0,-26r86,0r0,133r-22,0v-1,-12,2,-29,-1,-39v-8,30,-32,45,-61,45v-75,0,-81,-66,-81,-131v0,-63,11,-139,87,-139v49,0,74,30,76,80r-29,0v0,-32,-14,-54,-47,-54v-51,0,-57,53,-57,111v0,66,6,107,50,107v53,0,57,-47,57,-87r-58,0","w":203},"H":{"d":"56,-259r0,110r99,0r0,-110r29,0r0,259r-29,0r0,-123r-99,0r0,123r-29,0r0,-259r29,0","w":210},"I":{"d":"56,-259r0,259r-29,0r0,-259r29,0","w":82},"J":{"d":"100,-259r29,0r0,196v0,52,-24,69,-60,69v-51,1,-62,-34,-60,-86r29,0v1,30,-5,59,30,60v29,0,32,-21,32,-44r0,-195","w":155},"K":{"d":"56,-259r0,133r94,-133r36,0r-83,108r86,151r-34,0r-69,-128r-30,38r0,90r-29,0r0,-259r29,0","w":194},"L":{"d":"56,-259r0,233r106,0r0,26r-135,0r0,-259r29,0","w":171},"M":{"d":"27,-259r51,0v18,81,45,152,56,240v14,-78,40,-161,59,-240r50,0r0,259r-28,0r0,-246r-63,246r-35,0r-62,-246r1,246r-29,0r0,-259","w":270},"N":{"d":"27,-259r47,0r83,240r-1,-240r29,0r0,259r-47,0r-72,-207v-5,-11,-5,-26,-11,-39r1,246r-29,0r0,-259","w":212},"O":{"d":"105,6v-76,0,-85,-64,-85,-136v0,-59,9,-134,85,-134v76,0,86,75,86,134v0,72,-10,136,-86,136xm161,-134v0,-58,-11,-104,-57,-104v-44,0,-54,45,-54,103v0,75,7,115,55,115v48,0,56,-39,56,-114","w":210},"P":{"d":"56,-233r0,97v50,0,91,5,91,-50v0,-51,-43,-48,-91,-47xm56,-110r0,110r-29,0r0,-259v77,-2,152,-7,150,73v-2,75,-53,78,-121,76","w":196},"Q":{"d":"171,-31r30,25r-15,18r-29,-24v-11,11,-33,18,-52,18v-76,0,-85,-66,-85,-138v0,-59,9,-132,85,-132v77,0,86,71,86,130v0,18,-2,80,-20,103xm136,-29r-26,-21r15,-19r24,20v6,-10,12,-48,12,-75v0,-72,-8,-114,-57,-114v-48,0,-54,43,-54,115v0,73,27,125,86,94","w":210},"R":{"d":"56,-114r0,114r-29,0r0,-259v76,-1,154,-11,154,70v0,31,-19,55,-47,61v27,3,45,27,45,59v-1,61,6,49,8,69r-29,0v-15,-37,5,-121,-55,-114r-47,0xm56,-233r0,93v50,-1,95,12,95,-48v0,-58,-47,-43,-95,-45","w":204},"S":{"d":"18,-82r28,0v0,38,11,62,49,62v29,0,50,-12,50,-43v-2,-84,-122,-33,-122,-134v0,-41,28,-67,70,-67v45,0,72,25,74,73r-29,0v0,-28,-14,-47,-43,-47v-53,0,-54,70,-20,81v45,14,100,39,100,90v0,49,-30,73,-80,73v-50,0,-77,-32,-77,-88","w":192},"T":{"d":"101,-233r0,233r-29,0r0,-233r-67,0r0,-26r163,0r0,26r-67,0","w":173},"U":{"d":"27,-259r29,0r0,186v0,20,3,53,49,53v46,0,49,-33,49,-53r0,-186r29,0r0,197v0,46,-31,68,-78,68v-47,0,-78,-22,-78,-68r0,-197","w":209},"V":{"d":"4,-259r32,0r60,238r61,-238r31,0r-74,259r-36,0","w":192},"W":{"d":"6,-259r31,0r34,178v4,17,4,39,9,60v10,-85,31,-158,46,-238r36,0r34,178v4,16,2,38,8,60v10,-85,31,-158,46,-238r32,0r-61,259r-36,0v-14,-82,-34,-149,-41,-240r-2,0v-8,91,-30,158,-46,240r-35,0","w":287},"X":{"d":"9,-259r32,0r54,101r55,-101r32,0r-70,126r71,133r-33,0r-55,-108r-56,108r-32,0r72,-133","w":190},"Y":{"d":"2,-259r32,0r60,130r61,-130r32,0r-78,159r0,100r-29,0r0,-100","w":189},"Z":{"d":"20,-259r149,0r0,25r-123,208r125,0r0,26r-154,0r0,-25r122,-208r-119,0r0,-26","w":187},"[":{"d":"35,-259r60,0r0,21r-33,0r0,289r33,0r0,21r-60,0r0,-331","w":115},"\\":{"d":"77,0r-88,-259r20,0r88,259r-20,0","w":86},"]":{"d":"20,-259r61,0r0,331r-61,0r0,-21r34,0r0,-289r-34,0r0,-21","w":114},"^":{"d":"78,-259r17,0r54,144r-19,0r-44,-117r-44,117r-18,0"},"_":{"d":"173,41r-173,0r0,-20r173,0r0,20"},"`":{"d":"12,-264r38,0r31,48r-23,0","w":115},"a":{"d":"104,-105v-28,17,-61,19,-61,56v0,17,7,30,25,30v47,-1,34,-45,36,-86xm46,-140r-24,0v0,-40,19,-57,55,-57v83,0,54,92,54,162v0,12,6,19,17,15v0,12,4,25,-12,22v-18,1,-24,-5,-30,-28v-6,17,-24,31,-42,31v-33,0,-50,-18,-50,-53v0,-48,53,-59,82,-74v16,-14,10,-59,-21,-52v-21,0,-29,12,-29,34","w":156},"b":{"d":"53,-259r0,87v11,-17,24,-25,41,-25v49,0,60,47,60,98v0,54,-10,104,-59,104v-17,0,-30,-2,-42,-24r0,19r-28,0r0,-259r28,0xm88,-174v-33,0,-35,44,-35,77v0,37,0,79,35,79v28,0,38,-29,38,-81v0,-25,-3,-75,-38,-75"},"c":{"d":"84,-174v-33,0,-38,40,-38,80v0,31,2,76,37,76v30,0,33,-26,34,-49r26,0v0,36,-15,72,-58,72v-59,0,-67,-49,-67,-99v0,-51,12,-103,67,-103v39,0,58,29,58,65r-26,0v0,-21,-7,-42,-33,-42","w":156},"d":{"d":"83,-174v-33,0,-37,45,-37,78v0,37,2,78,37,78v28,0,38,-29,38,-81v0,-25,-3,-75,-38,-75xm121,-259r27,0r0,259r-27,0v-1,-7,2,-18,-1,-24v-12,23,-23,29,-46,29v-48,0,-56,-50,-56,-106v0,-83,59,-126,103,-71r0,-87","w":173},"e":{"d":"46,-113r65,0v0,-29,-4,-61,-31,-61v-30,0,-34,35,-34,61xm112,-64r28,0v0,38,-18,69,-58,69v-40,0,-64,-24,-64,-101v0,-48,11,-101,62,-101v54,0,60,56,60,107r-94,0v0,44,3,72,35,72v26,0,31,-24,31,-46","w":157},"f":{"d":"4,-192r28,0v-4,-45,6,-75,58,-67r0,23v-28,-8,-32,15,-30,44r30,0r0,23r-30,0r0,169r-28,0r0,-169r-28,0r0,-23","w":96},"g":{"d":"83,-174v-33,0,-37,45,-37,78v0,37,2,78,37,78v28,0,38,-29,38,-81v0,-25,-3,-75,-38,-75xm120,-170v3,-5,0,-15,1,-22r27,0r0,191v9,80,-118,92,-125,19r27,0v2,17,13,24,29,24v38,0,44,-23,42,-64r-3,0v-12,20,-23,27,-41,27v-43,0,-59,-32,-59,-101v0,-45,8,-101,59,-101v18,0,34,9,43,27","w":173},"h":{"d":"53,-259r0,88v21,-38,95,-37,95,23r0,148r-27,0r0,-141v0,-20,-7,-33,-29,-33v-66,0,-31,112,-39,174r-28,0r0,-259r28,0","w":173},"i":{"d":"53,-192r0,192r-28,0r0,-192r28,0xm53,-225r-28,0r0,-34r28,0r0,34","w":77},"j":{"d":"25,-192r28,0r0,200v0,45,-12,58,-49,58r0,-26v17,5,21,-11,21,-28r0,-204xm53,-225r-28,0r0,-34r28,0r0,34","w":77},"k":{"d":"53,-259r0,156r66,-89r33,0r-60,75r61,117r-32,0r-48,-96r-20,28r0,68r-28,0r0,-259r28,0","w":158},"l":{"d":"53,-259r0,259r-28,0r0,-259r28,0","w":77},"m":{"d":"53,-192r0,21v14,-29,81,-40,92,3v25,-42,98,-43,98,20r0,148r-27,0r0,-138v0,-22,-6,-36,-29,-36v-21,0,-39,14,-39,44r0,130r-27,0r0,-141v0,-20,-7,-33,-30,-33v-19,0,-38,14,-38,44r0,130r-28,0r0,-192r28,0","w":268},"n":{"d":"53,-192r0,21v21,-38,95,-37,95,23r0,148r-27,0r0,-141v0,-20,-7,-33,-29,-33v-66,0,-31,112,-39,174r-28,0r0,-192r28,0","w":173},"o":{"d":"87,-197v48,0,69,37,69,101v0,78,-27,101,-69,101v-41,0,-69,-23,-69,-102v0,-64,21,-100,69,-100xm87,-174v-29,0,-41,22,-41,80v0,45,9,76,41,76v32,0,40,-31,40,-76v0,-58,-11,-80,-40,-80","w":173},"p":{"d":"89,-174v-33,0,-36,45,-36,78v0,37,1,78,36,78v28,0,38,-29,38,-81v0,-25,-3,-75,-38,-75xm53,-192r0,21v9,-18,26,-26,39,-26v49,0,63,44,63,98v0,58,-13,104,-61,104v-19,0,-31,-10,-41,-25r0,87r-28,0r0,-259r28,0","w":173},"q":{"d":"121,-192r27,0r0,259r-27,0r-1,-88v-42,58,-102,15,-102,-72v0,-57,16,-104,59,-104v18,-1,31,9,44,25r0,-20xm83,-174v-33,0,-37,45,-37,78v0,37,2,78,37,78v28,0,38,-29,38,-81v0,-25,-3,-75,-38,-75","w":173},"r":{"d":"53,-192r0,31v11,-25,27,-37,55,-33r0,27v-78,-13,-50,98,-55,167r-28,0r0,-192r28,0","w":112},"s":{"d":"111,-50v0,-49,-91,-35,-91,-94v0,-33,21,-53,54,-53v36,0,58,19,58,56r-27,0v0,-23,-8,-33,-30,-33v-19,0,-27,12,-27,29v0,51,91,32,91,93v0,37,-23,57,-64,57v-44,0,-60,-20,-60,-61r26,0v0,25,8,38,33,38v22,0,37,-9,37,-32","w":153},"t":{"d":"57,-244r0,52r32,0r0,23r-32,0r0,131v-3,19,15,15,31,15r0,23v-32,-2,-59,11,-58,-32r0,-137r-27,0r0,-23r27,0r0,-52r27,0","w":96},"u":{"d":"25,-192r28,0r0,149v0,16,5,25,24,25v19,0,41,-11,41,-51r0,-123r27,0r0,192r-27,0v-1,-8,2,-19,-1,-25v-18,45,-92,41,-92,-19r0,-148","w":170},"v":{"d":"4,-192r29,0r44,169r44,-169r28,0r-58,192r-29,0","w":153},"w":{"d":"8,-192r27,0r36,169r30,-169r28,0r34,169r33,-169r26,0r-43,192r-32,0r-32,-164r-30,164r-32,0","w":230},"x":{"d":"7,-192r28,0r44,73r42,-73r28,0r-55,93r57,99r-28,0r-45,-79r-46,79r-28,0r58,-99","w":154},"y":{"d":"5,-192r29,0r46,153r42,-153r29,0r-60,193v-10,41,-30,77,-78,61r0,-24v30,13,47,-5,54,-35","w":152},"z":{"d":"14,-192r114,0r0,22r-89,147r90,0r0,23r-118,0r0,-22r89,-147r-86,0r0,-23","w":139},"{":{"d":"34,-150v0,-60,-12,-118,58,-108v-72,9,12,126,-65,145v76,8,-9,121,64,145v-76,7,-57,-49,-57,-107v0,-20,-9,-33,-31,-39v24,-1,31,-19,31,-36","w":94},"|":{"d":"32,0r0,-259r22,0r0,259r-22,0","w":86},"}":{"d":"68,-112v-74,-18,4,-136,-65,-147v72,-7,59,49,59,108v0,19,9,33,31,39v-47,1,-31,58,-31,100v0,35,-16,44,-59,44v47,-9,31,-57,31,-103v0,-22,5,-36,34,-41","w":95},"~":{"d":"27,-58r-12,-16v9,-19,20,-40,40,-40v19,0,49,23,63,23v13,0,23,-16,28,-28r12,16v-8,19,-21,38,-40,38v-19,0,-44,-24,-62,-24v-16,0,-21,17,-29,31"},"\u2026":{"d":"42,-35r31,0r0,35r-31,0r0,-35xm157,-35r31,0r0,35r-31,0r0,-35xm272,-35r31,0r0,35r-31,0r0,-35","w":345},"\u2018":{"d":"54,-180r-32,0v-1,-41,-2,-75,32,-85r0,16v-14,4,-17,21,-17,34r17,0r0,35","w":77},"\u2019":{"d":"23,-259r32,0v1,41,2,74,-32,85r0,-16v14,-4,17,-22,17,-35r-17,0r0,-34","w":77},"\u201c":{"d":"111,-180r-31,0v-1,-41,-3,-75,31,-85r0,16v-14,4,-17,21,-17,34r17,0r0,35xm53,-180r-32,0v-1,-41,-2,-75,32,-85r0,16v-14,4,-17,21,-17,34r17,0r0,35","w":134},"\u201d":{"d":"22,-259r32,0v1,41,2,74,-32,85r0,-16v14,-4,17,-22,17,-35r-17,0r0,-34xm81,-259r31,0v1,40,2,74,-31,85r0,-16v14,-4,17,-22,17,-35r-17,0r0,-34","w":134},"\u2013":{"d":"0,-100r173,0r0,24r-173,0r0,-24"},"\u2014":{"d":"0,-100r346,0r0,24r-346,0r0,-24","w":345},"\u2122":{"d":"118,-259r30,0r35,103r35,-103r31,0r0,146r-19,0r-1,-125r-41,125r-11,0r-40,-125r0,125r-19,0r0,-146xm0,-259r97,0r0,21r-38,0r0,125r-21,0r0,-125r-38,0r0,-21","w":259},"\u0401":{"d":"27,-259r130,0r0,26r-101,0r0,84r94,0r0,26r-94,0r0,97r101,0r0,26r-130,0r0,-259xm76,-292r-27,0r0,-34r27,0r0,34xm128,-292r-28,0r0,-34r28,0r0,34","w":174},"\u0451":{"d":"46,-113r65,0v0,-29,-4,-61,-31,-61v-30,0,-34,35,-34,61xm112,-64r28,0v0,38,-18,69,-58,69v-40,0,-64,-24,-64,-101v0,-48,11,-101,62,-101v54,0,60,56,60,107r-94,0v0,44,3,72,35,72v26,0,31,-24,31,-46xm69,-225r-27,0r0,-34r27,0r0,34xm121,-225r-27,0r0,-34r27,0r0,34","w":157},"\u0410":{"d":"5,0r74,-259r38,0r73,259r-32,0r-20,-75r-82,0r-19,75r-32,0xm131,-100r-34,-138r-34,138r68,0","w":195},"\u0411":{"d":"56,-123r0,97v47,1,88,3,88,-47v0,-50,-39,-51,-88,-50xm27,-259r129,0r0,26r-100,0r0,84v67,-2,117,2,118,76v2,78,-71,76,-147,73r0,-259","w":191},"\u0412":{"d":"56,-233r0,84v43,1,80,4,80,-44v0,-45,-38,-40,-80,-40xm56,-123r0,97v48,2,88,4,88,-49v0,-52,-40,-49,-88,-48xm27,0r0,-259r68,0v81,-9,93,103,34,121v22,6,46,26,45,64v0,48,-27,74,-75,74r-72,0","w":191},"\u0413":{"d":"27,-259r122,0r0,26r-93,0r0,233r-29,0r0,-259","w":153},"\u0414":{"d":"52,-259r138,0r0,233r20,0r0,86r-27,0r0,-60r-148,0r0,60r-27,0r0,-86r17,0v32,-49,26,-144,27,-233xm161,-233r-80,0v1,77,0,164,-25,207r105,0r0,-207","w":217},"\u0415":{"d":"27,-259r130,0r0,26r-101,0r0,84r94,0r0,26r-94,0r0,97r101,0r0,26r-130,0r0,-259","w":174},"\u0416":{"d":"138,-259r29,0r0,133r94,-133r36,0r-82,108r85,151r-34,0r-69,-128r-30,38r0,90r-29,0r0,-90r-30,-38r-69,128r-34,0r86,-151r-83,-108r36,0r94,133r0,-133","w":305},"\u0417":{"d":"50,-191r-29,0v6,-45,33,-73,77,-73v41,0,70,27,70,64v0,35,-19,54,-40,62v69,16,77,142,-30,144v-57,0,-76,-35,-80,-87r29,0v2,39,13,61,52,61v71,-1,62,-101,2,-103r-25,0r0,-26v38,3,63,-8,62,-45v0,-28,-16,-44,-43,-44v-24,0,-42,18,-45,47","w":196},"\u0418":{"d":"27,-259r29,0r0,240v24,-85,62,-160,91,-240r42,0r0,259r-29,0r0,-246v-21,92,-62,162,-91,246r-42,0r0,-259","w":215},"\u0419":{"d":"27,-259r29,0r0,240v24,-85,62,-160,91,-240r42,0r0,259r-29,0r0,-246v-21,92,-62,162,-91,246r-42,0r0,-259xm58,-319r15,0v5,33,61,35,65,0r15,0v0,31,-21,44,-49,44v-25,0,-46,-13,-46,-44","w":215},"\u041a":{"d":"56,-259r0,133r94,-133r36,0r-83,108r86,151r-34,0r-69,-128r-30,38r0,90r-29,0r0,-259r29,0","w":194},"\u041b":{"d":"45,-259r145,0r0,259r-29,0r0,-233r-87,0r0,102v0,65,-1,150,-69,132r0,-25v46,8,40,-32,40,-122r0,-113","w":217},"\u041c":{"d":"27,-259r51,0v18,81,45,152,56,240v14,-78,40,-161,59,-240r50,0r0,259r-28,0r0,-246r-63,246r-35,0r-62,-246r1,246r-29,0r0,-259","w":270},"\u041d":{"d":"56,-259r0,110r99,0r0,-110r29,0r0,259r-29,0r0,-123r-99,0r0,123r-29,0r0,-259r29,0","w":210},"\u041e":{"d":"105,6v-76,0,-85,-64,-85,-136v0,-59,9,-134,85,-134v76,0,86,75,86,134v0,72,-10,136,-86,136xm161,-134v0,-58,-11,-104,-57,-104v-44,0,-54,45,-54,103v0,75,7,115,55,115v48,0,56,-39,56,-114","w":210},"\u041f":{"d":"27,-259r157,0r0,259r-29,0r0,-233r-99,0r0,233r-29,0r0,-259","w":210},"\u0420":{"d":"56,-233r0,97v50,0,91,5,91,-50v0,-51,-43,-48,-91,-47xm56,-110r0,110r-29,0r0,-259v77,-2,152,-7,150,73v-2,75,-53,78,-121,76","w":196},"\u0421":{"d":"175,-181r-28,0v0,-31,-11,-57,-47,-57v-50,0,-50,70,-50,104v0,53,2,114,50,114v37,0,44,-31,47,-74r28,0v-3,60,-18,100,-73,100v-76,0,-82,-78,-82,-139v0,-58,11,-131,82,-131v49,0,73,37,73,83","w":193},"\u0422":{"d":"101,-233r0,233r-29,0r0,-233r-67,0r0,-26r163,0r0,26r-67,0","w":173},"\u0423":{"d":"5,-259r31,0r60,180r56,-180r30,0r-71,216v-16,48,-33,54,-70,46r0,-26v22,6,33,7,41,-21","w":181},"\u0424":{"d":"119,-259r29,0r0,26v54,-2,100,27,100,101v0,73,-45,103,-100,101r0,31r-29,0r0,-31v-56,2,-101,-27,-101,-101v0,-74,47,-103,101,-101r0,-26xm148,-207r0,150v43,2,70,-22,70,-76v0,-53,-27,-76,-70,-74xm119,-57r0,-150v-43,-2,-71,21,-71,74v0,54,27,78,71,76","w":266},"\u0425":{"d":"9,-259r32,0r54,101r55,-101r32,0r-70,126r71,133r-33,0r-55,-108r-56,108r-32,0r72,-133","w":190},"\u0426":{"d":"56,-259r0,233r99,0r0,-233r29,0r0,233r20,0r0,86r-27,0r0,-60r-150,0r0,-259r29,0","w":211},"\u0427":{"d":"25,-259r29,0v3,52,-17,110,48,110v11,0,28,0,42,-3r0,-107r29,0r0,259r-29,0r0,-126v-62,8,-122,6,-119,-64r0,-69","w":200},"\u0428":{"d":"56,-259r0,233r80,0r0,-233r29,0r0,233r81,0r0,-233r29,0r0,259r-248,0r0,-259r29,0","w":301},"\u0429":{"d":"56,-259r0,233r80,0r0,-233r29,0r0,233r81,0r0,-233r29,0r0,233r21,0r0,86r-28,0r0,-60r-241,0r0,-259r29,0","w":302},"\u042a":{"d":"80,-123r0,97v47,1,88,3,88,-47v0,-50,-39,-51,-88,-50xm80,-259r0,110v67,-2,117,2,118,76v2,78,-71,76,-147,73r0,-233r-53,0r0,-26r82,0","w":216},"\u042b":{"d":"56,-123r0,97v47,1,88,3,88,-47v0,-50,-39,-51,-88,-50xm56,-259r0,110v67,-2,117,2,118,76v2,78,-71,76,-147,73r0,-259r29,0xm242,-259r0,259r-29,0r0,-259r29,0","w":268},"\u042c":{"d":"56,-123r0,97v47,1,88,3,88,-47v0,-50,-39,-51,-88,-50xm56,-259r0,110v67,-2,117,2,118,76v2,78,-71,76,-147,73r0,-259r29,0","w":191},"\u042d":{"d":"17,-181v2,-50,29,-83,76,-83v69,0,80,72,80,131v0,60,-4,139,-79,139v-53,0,-76,-37,-76,-100r28,0v2,42,10,74,47,74v44,0,50,-48,50,-103r-68,0r0,-26r68,0v0,-36,-6,-89,-50,-89v-33,0,-45,26,-47,57r-29,0","w":192},"\u042e":{"d":"56,-259r0,110r45,0v0,-55,17,-115,85,-115v76,0,85,75,85,134v0,72,-9,136,-85,136v-73,0,-85,-60,-85,-129r-45,0r0,123r-29,0r0,-259r29,0xm185,-238v-44,0,-54,46,-54,104v0,75,7,114,55,114v48,0,56,-39,56,-114v0,-58,-11,-104,-57,-104","w":291},"\u042f":{"d":"136,-136r0,-97v-47,-1,-88,-3,-88,47v0,51,39,51,88,50xm136,0r0,-110r-38,0r-56,110r-32,0r58,-114v-30,-9,-50,-28,-50,-72v0,-78,71,-76,147,-73r0,259r-29,0","w":191},"\u0430":{"d":"104,-105v-28,17,-61,19,-61,56v0,17,7,30,25,30v47,-1,34,-45,36,-86xm46,-140r-24,0v0,-40,19,-57,55,-57v83,0,54,92,54,162v0,12,6,19,17,15v0,12,4,25,-12,22v-18,1,-24,-5,-30,-28v-6,17,-24,31,-42,31v-33,0,-50,-18,-50,-53v0,-48,53,-59,82,-74v16,-14,10,-59,-21,-52v-21,0,-29,12,-29,34","w":156},"\u0431":{"d":"45,-158v37,-61,111,-23,111,62v0,68,-21,101,-69,101v-51,0,-69,-39,-69,-115v0,-84,22,-118,62,-128v23,-6,40,-10,43,-21r23,0v-6,26,-25,35,-55,41v-27,6,-43,27,-46,60xm87,-18v29,0,40,-27,40,-78v0,-39,-12,-69,-40,-69v-27,0,-41,29,-41,69v0,51,12,78,41,78","w":173},"\u0432":{"d":"53,-169r0,56v30,1,59,3,59,-29v0,-30,-30,-28,-59,-27xm53,-90r0,67v34,1,69,3,63,-34v2,-35,-29,-35,-63,-33xm25,0r0,-192v53,-1,114,-6,114,45v1,26,-15,40,-30,47v21,5,35,21,35,48v-1,62,-60,52,-119,52","w":162},"\u0433":{"d":"25,-192r102,0r0,23r-74,0r0,169r-28,0r0,-192","w":131},"\u0434":{"d":"24,-23v26,-45,22,-101,22,-169r106,0r0,169r18,0r0,75r-25,0r0,-52r-113,0r0,52r-25,0r0,-75r17,0xm124,-23r0,-146r-51,0v0,60,3,105,-21,146r72,0","w":177},"\u0435":{"d":"46,-113r65,0v0,-29,-4,-61,-31,-61v-30,0,-34,35,-34,61xm112,-64r28,0v0,38,-18,69,-58,69v-40,0,-64,-24,-64,-101v0,-48,11,-101,62,-101v54,0,60,56,60,107r-94,0v0,44,3,72,35,72v26,0,31,-24,31,-46","w":157},"\u0436":{"d":"104,-192r28,0r0,89r66,-89r33,0r-60,75r62,117r-32,0r-48,-96r-21,28r0,68r-28,0r0,-68r-20,-28r-48,96r-32,0r61,-117r-60,-75r33,0r66,89r0,-89","w":236},"\u0437":{"d":"39,-141r-25,0v1,-30,23,-56,58,-56v62,0,76,84,23,95v16,7,40,17,39,50v0,34,-24,57,-61,57v-40,0,-59,-20,-62,-65r25,0v-3,58,71,56,71,6v0,-27,-18,-40,-48,-36r0,-23v26,2,42,-5,43,-31v0,-15,-8,-30,-30,-30v-22,0,-32,14,-33,33","w":152},"\u0438":{"d":"25,-192r28,0r0,146v0,7,-2,16,-3,23v18,-63,47,-111,70,-169r33,0r0,192r-28,0r0,-146v0,-5,2,-18,3,-24v-17,64,-47,112,-70,170r-33,0r0,-192","w":177},"\u0439":{"d":"25,-192r28,0r0,146v0,7,-2,16,-3,23v18,-63,47,-111,70,-169r33,0r0,192r-28,0r0,-146v0,-5,2,-18,3,-24v-17,64,-47,112,-70,170r-33,0r0,-192xm46,-255r14,0v6,33,54,35,59,0r15,0v-1,30,-20,43,-45,43v-23,0,-42,-13,-43,-43","w":177},"\u043a":{"d":"53,-192r0,89r66,-89r33,0r-60,75r61,117r-32,0r-48,-96r-20,28r0,68r-28,0r0,-192r28,0","w":158},"\u043b":{"d":"36,-192r113,0r0,192r-27,0r0,-169r-60,0v-4,68,18,192,-58,168r0,-21v32,4,32,-3,32,-73r0,-97","w":174},"\u043c":{"d":"25,-192r43,0v14,56,34,103,41,165v9,-58,27,-110,42,-165r43,0r0,192r-27,0r0,-169r-49,169r-18,0r-49,-169r0,169r-26,0r0,-192","w":218},"\u043d":{"d":"53,-192r0,79r68,0r0,-79r27,0r0,192r-27,0r0,-90r-68,0r0,90r-28,0r0,-192r28,0","w":173},"\u043e":{"d":"87,-197v48,0,69,37,69,101v0,78,-27,101,-69,101v-41,0,-69,-23,-69,-102v0,-64,21,-100,69,-100xm87,-174v-29,0,-41,22,-41,80v0,45,9,76,41,76v32,0,40,-31,40,-76v0,-58,-11,-80,-40,-80","w":173},"\u043f":{"d":"25,-192r123,0r0,192r-27,0r0,-169r-68,0r0,169r-28,0r0,-192","w":173},"\u0440":{"d":"89,-174v-33,0,-36,45,-36,78v0,37,1,78,36,78v28,0,38,-29,38,-81v0,-25,-3,-75,-38,-75xm53,-192r0,21v9,-18,26,-26,39,-26v49,0,63,44,63,98v0,58,-13,104,-61,104v-19,0,-31,-10,-41,-25r0,87r-28,0r0,-259r28,0","w":173},"\u0441":{"d":"84,-174v-33,0,-38,40,-38,80v0,31,2,76,37,76v30,0,33,-26,34,-49r26,0v0,36,-15,72,-58,72v-59,0,-67,-49,-67,-99v0,-51,12,-103,67,-103v39,0,58,29,58,65r-26,0v0,-21,-7,-42,-33,-42","w":156},"\u0442":{"d":"83,0r-28,0r0,-169r-50,0r0,-23r128,0r0,23r-50,0r0,169","w":137},"\u0443":{"d":"5,-192r29,0r46,153r42,-153r29,0r-60,193v-10,41,-30,77,-78,61r0,-24v30,13,47,-5,54,-35","w":152},"\u0444":{"d":"121,-259r27,0r0,88v9,-18,24,-26,39,-26v49,0,64,44,64,97v0,55,-13,105,-62,105v-19,0,-31,-10,-41,-25r0,86r-27,0r0,-86v-10,15,-22,25,-41,25v-51,0,-62,-50,-62,-105v0,-53,14,-97,63,-97v15,0,31,8,40,26r0,-88xm83,-174v-33,0,-37,45,-37,78v0,37,2,78,37,78v28,0,38,-29,38,-81v0,-25,-3,-75,-38,-75xm184,-174v-33,0,-36,45,-36,78v0,37,2,78,37,78v28,0,37,-29,37,-81v0,-25,-3,-75,-38,-75","w":268},"\u0445":{"d":"7,-192r28,0r44,73r42,-73r28,0r-55,93r57,99r-28,0r-45,-79r-46,79r-28,0r58,-99","w":154},"\u0446":{"d":"53,-192r0,169r68,0r0,-169r27,0r0,169r19,0r0,75r-26,0r0,-52r-116,0r0,-192r28,0","w":173},"\u0447":{"d":"18,-192r27,0v4,36,-15,83,30,83v19,0,27,-1,33,-2r0,-81r27,0r0,192r-27,0r0,-90v-40,13,-90,-1,-90,-45r0,-57","w":160},"\u0448":{"d":"53,-192r0,169r62,0r0,-169r28,0r0,169r62,0r0,-169r28,0r0,192r-208,0r0,-192r28,0","w":257},"\u0449":{"d":"53,-192r0,169r62,0r0,-169r28,0r0,169r62,0r0,-169r28,0r0,169r18,0r0,75r-25,0r0,-52r-201,0r0,-192r28,0","w":258},"\u044a":{"d":"63,-90r0,67v34,2,68,1,63,-33v4,-34,-29,-36,-63,-34xm-2,-192r65,0r0,79v53,-6,92,9,92,58v0,60,-59,57,-119,55r0,-169r-38,0r0,-23"},"\u044b":{"d":"53,-90r0,67v34,2,67,0,63,-33v3,-33,-29,-37,-63,-34xm53,-192r0,79v53,-6,91,9,91,58v0,60,-59,57,-119,55r0,-192r28,0xm203,-192r0,192r-27,0r0,-192r27,0","w":228},"\u044c":{"d":"53,-90r0,67v34,2,67,0,63,-33v3,-33,-29,-37,-63,-34xm53,-192r0,79v53,-6,91,9,91,58v0,60,-59,57,-119,55r0,-192r28,0","w":162},"\u044d":{"d":"63,-113r48,0v0,-30,-8,-61,-35,-61v-26,0,-35,21,-35,42r-26,0v0,-36,22,-65,61,-65v55,0,64,56,64,103v0,50,-10,99,-63,99v-44,0,-62,-29,-62,-72r26,0v1,29,7,49,35,49v31,0,35,-33,35,-72r-48,0r0,-23","w":157},"\u044e":{"d":"53,-192r0,79r33,0v0,-51,24,-84,68,-84v48,0,70,36,70,94v0,83,-28,108,-70,108v-39,0,-68,-23,-68,-95r-33,0r0,90r-28,0r0,-192r28,0xm154,-174v-28,0,-40,22,-40,80v0,45,8,76,40,76v33,0,41,-31,41,-76v0,-58,-12,-80,-41,-80","w":241},"\u044f":{"d":"110,-104r0,-65v-34,-1,-69,-1,-64,33v-4,33,31,34,64,32xm110,-81r-29,0r-40,81r-29,0r41,-84v-21,-8,-35,-29,-35,-54v-1,-60,61,-56,120,-54r0,192r-28,0r0,-81","w":162},"\u00a0":{"w":86}}});

//events.js
Cufon.replace('.c, .main_navigation, .header_links, .header_contacts_adres, h2 a, h3 a, .footer_menu, .title_link, .content h2, .sidebar_title a, .content_inside h2, .cform legend, .dsfaq_ol_quest a, h1, h2, h3, h4, h5', {hover: true});
			$(document).ready(function(){
  $('.photos').cycle({
		fx:     'fade', 
    speed:  'slow', 
    timeout: 0, 
    next:   '.next', 
    prev:   '.prev' 
	});
  

$(".prev").hover(function(){
$(".prev").animate({ opacity: "0.6", left: "20px" }, 300 );

});
$(".prev").mouseout(function(){
$(".prev").animate({ left: "68px", opacity: "0" }, 300 );
});

$(".next").hover(function(){
$(".next").animate({ opacity: "0.6", right: "20px" }, 300 );

});
$(".next").mouseout(function(){
$(".next").animate({ right: "68px", opacity: "0" }, 300 );
});

});
