
// remap jQuery to $
(function($){

	var ver="2.99";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){$.fn.cycle.debug&&log(s);}function log(){window.console&&console.log&&console.log("[cycle] "+Array.prototype.join.call(arguments," "));}$.expr[":"].paused=function(el){return el.cyclePause;};$.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(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.backwards);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts.backwards);},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"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);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 checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var 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,!options.backwards);}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}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]:[];if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.backwards);});}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);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}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;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{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||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}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.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);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.cssAfter=opts.cssAfter||{};opts.cssFirst=opts.cssFirst||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);$($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;}var buffer=opts.fx=="none"?0:opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){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{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}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){opts.after[0].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0);});}if(opts.pager||opts.pagerAnchorBuilder){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"){$s.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||opts.pagerAnchorBuilder){$.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){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=0;}if(opts.busy){debug("transition active, ignoring new tx request");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.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;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(){opts.busy=0;$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing("+fx+"); currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){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];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.backwards);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while(opts.fx!="none"&&(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,1);};$.fn.cycle.prev=function(opts){advance(opts,0);};function advance(opts,moveForward){var val=moveForward?1:-1;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;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,moveForward);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);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}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);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$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;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",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){debug("applying clearType background-color hack");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&&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();if(typeof opts.cssBefore.opacity=="undefined"){opts.cssBefore.opacity=1;}opts.cssBefore.display="block";if(opts.slideResize&&w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(opts.slideResize&&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,fwd,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,function(){cb();});};$l.animate(opts.animOut,speedOut,easeOut,function(){$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={activePagerClass:"activeSlide",after:null,allowPagerClickBubble:false,animIn:null,animOut:null,autostop:0,autostopCount:0,backwards:false,before:null,cleartype:!$.support.opacity,cleartypeNoBg:false,containerResize:1,continuous:0,cssAfter:null,cssBefore:null,delay:0,easeIn:null,easeOut:null,easing:null,end:null,fastOnEvent:0,fit:0,fx:"fade",fxFn:null,height:"auto",manualTrump:true,next:null,nowrap:0,onPagerEvent:null,onPrevNextEvent:null,pager:null,pagerAnchorBuilder:null,pagerEvent:"click.cycle",pause:0,pauseOnPagerHover:0,prev:null,prevNextEvent:"click.cycle",random:0,randomizeEffects:1,requeueOnImageNotLoaded:true,requeueTimeout:250,rev:0,shuffle:null,slideExpr:null,slideResize:1,speed:1000,speedIn:null,speedOut:null,startingSlide:0,sync:1,timeout:4000,timeoutFn:null,updateActivePagerLink:null};

	var height=$.fn.height,width=$.fn.width;$.fn.extend({height:function(){if(this[0]==window)return self.innerHeight||$.boxModel&&document.documentElement.clientHeight||document.body.clientHeight;if(this[0]==document)return Math.max(document.body.scrollHeight,document.body.offsetHeight);return height.apply(this,arguments)},width:function(){if(this[0]==window)return self.innerWidth||$.boxModel&&document.documentElement.clientWidth||document.body.clientWidth;if(this[0]==document)return Math.max(document.body.scrollWidth,document.body.offsetWidth);return width.apply(this,arguments)},innerHeight:function(){return this[0]==window||this[0]==document?this.height():this.is(':visible')?this[0].offsetHeight-num(this,'borderTopWidth')-num(this,'borderBottomWidth'):this.height()+num(this,'paddingTop')+num(this,'paddingBottom')},innerWidth:function(){return this[0]==window||this[0]==document?this.width():this.is(':visible')?this[0].offsetWidth-num(this,'borderLeftWidth')-num(this,'borderRightWidth'):this.width()+num(this,'paddingLeft')+num(this,'paddingRight')},outerHeight:function(){return this[0]==window||this[0]==document?this.height():this.is(':visible')?this[0].offsetHeight:this.height()+num(this,'borderTopWidth')+num(this,'borderBottomWidth')+num(this,'paddingTop')+num(this,'paddingBottom')},outerWidth:function(){return this[0]==window||this[0]==document?this.width():this.is(':visible')?this[0].offsetWidth:this.width()+num(this,'borderLeftWidth')+num(this,'borderRightWidth')+num(this,'paddingLeft')+num(this,'paddingRight')},scrollLeft:function(val){if(val!=undefined)return this.each(function(){if(this==window||this==document)window.scrollTo(val,$(window).scrollTop());else this.scrollLeft=val});if(this[0]==window||this[0]==document)return self.pageXOffset||$.boxModel&&document.documentElement.scrollLeft||document.body.scrollLeft;return this[0].scrollLeft},scrollTop:function(val){if(val!=undefined)return this.each(function(){if(this==window||this==document)window.scrollTo($(window).scrollLeft(),val);else this.scrollTop=val});if(this[0]==window||this[0]==document)return self.pageYOffset||$.boxModel&&document.documentElement.scrollTop||document.body.scrollTop;return this[0].scrollTop},position:function(options,returnObject){var elem=this[0],parent=elem.parentNode,op=elem.offsetParent,options=$.extend({margin:false,border:false,padding:false,scroll:false},options||{}),x=elem.offsetLeft,y=elem.offsetTop,sl=elem.scrollLeft,st=elem.scrollTop;if($.browser.mozilla||$.browser.msie){x+=num(elem,'borderLeftWidth');y+=num(elem,'borderTopWidth')}if($.browser.mozilla){do{if($.browser.mozilla&&parent!=elem&&$.css(parent,'overflow')!='visible'){x+=num(parent,'borderLeftWidth');y+=num(parent,'borderTopWidth')}if(parent==op)break}while((parent=parent.parentNode)&&(parent.tagName.toLowerCase()!='body'||parent.tagName.toLowerCase()!='html'))}var returnValue=handleOffsetReturn(elem,options,x,y,sl,st);if(returnObject){$.extend(returnObject,returnValue);return this}else{return returnValue}},offset:function(options,returnObject){var x=0,y=0,sl=0,st=0,elem=this[0],parent=this[0],op,parPos,elemPos=$.css(elem,'position'),mo=$.browser.mozilla,ie=$.browser.msie,sf=$.browser.safari,oa=$.browser.opera,absparent=false,relparent=false,options=$.extend({margin:true,border:false,padding:false,scroll:true,lite:false},options||{});if(options.lite)return this.offsetLite(options,returnObject);if(elem.tagName.toLowerCase()=='body'){x=elem.offsetLeft;y=elem.offsetTop;if(mo){x+=num(elem,'marginLeft')+(num(elem,'borderLeftWidth')*2);y+=num(elem,'marginTop')+(num(elem,'borderTopWidth')*2)}else if(oa){x+=num(elem,'marginLeft');y+=num(elem,'marginTop')}else if(ie&&jQuery.boxModel){x+=num(elem,'borderLeftWidth');y+=num(elem,'borderTopWidth')}}else{do{parPos=$.css(parent,'position');x+=parent.offsetLeft;y+=parent.offsetTop;if(mo||ie){x+=num(parent,'borderLeftWidth');y+=num(parent,'borderTopWidth');if(mo&&parPos=='absolute')absparent=true;if(ie&&parPos=='relative')relparent=true}op=parent.offsetParent;if(options.scroll||mo){do{if(options.scroll){sl+=parent.scrollLeft;st+=parent.scrollTop}if(mo&&parent!=elem&&$.css(parent,'overflow')!='visible'){x+=num(parent,'borderLeftWidth');y+=num(parent,'borderTopWidth')}parent=parent.parentNode}while(parent!=op)}parent=op;if(parent.tagName.toLowerCase()=='body'||parent.tagName.toLowerCase()=='html'){if((sf||(ie&&$.boxModel))&&elemPos!='absolute'&&elemPos!='fixed'){x+=num(parent,'marginLeft');y+=num(parent,'marginTop')}if((mo&&!absparent&&elemPos!='fixed')||(ie&&elemPos=='static'&&!relparent)){x+=num(parent,'borderLeftWidth');y+=num(parent,'borderTopWidth')}break}}while(parent)}var returnValue=handleOffsetReturn(elem,options,x,y,sl,st);if(returnObject){$.extend(returnObject,returnValue);return this}else{return returnValue}},offsetLite:function(options,returnObject){var x=0,y=0,sl=0,st=0,parent=this[0],op,options=$.extend({margin:true,border:false,padding:false,scroll:true},options||{});do{x+=parent.offsetLeft;y+=parent.offsetTop;op=parent.offsetParent;if(options.scroll){do{sl+=parent.scrollLeft;st+=parent.scrollTop;parent=parent.parentNode}while(parent!=op)}parent=op}while(parent&&parent.tagName.toLowerCase()!='body'&&parent.tagName.toLowerCase()!='html');var returnValue=handleOffsetReturn(this[0],options,x,y,sl,st);if(returnObject){$.extend(returnObject,returnValue);return this}else{return returnValue}}});var num=function(el,prop){return parseInt($.css(el.jquery?el[0]:el,prop))||0};var handleOffsetReturn=function(elem,options,x,y,sl,st){if(!options.margin){x-=num(elem,'marginLeft');y-=num(elem,'marginTop')}if(options.border&&($.browser.safari||$.browser.opera)){x+=num(elem,'borderLeftWidth');y+=num(elem,'borderTopWidth')}else if(!options.border&&!($.browser.safari||$.browser.opera)){x-=num(elem,'borderLeftWidth');y-=num(elem,'borderTopWidth')}if(options.padding){x+=num(elem,'paddingLeft');y+=num(elem,'paddingTop')}if(options.scroll){sl-=elem.scrollLeft;st-=elem.scrollTop}return options.scroll?{top:y-st,left:x-sl,scrollTop:st,scrollLeft:sl}:{top:y,left:x}};

	var helper={},current,title,tID,IE=$.browser.msie&&/MSIE\s(5\.5|6\.)/.test(navigator.userAgent),track=false;$.tooltip={blocked:false,defaults:{delay:200,fade:false,showURL:true,extraClass:"",top:15,left:15,id:"tooltip"},block:function(){$.tooltip.blocked=!$.tooltip.blocked;}};$.fn.extend({tooltip:function(settings){settings=$.extend({},$.tooltip.defaults,settings);createHelper(settings);return this.each(function(){$.data(this,"tooltip",settings);this.tOpacity=helper.parent.css("opacity");this.tooltipText=this.title;$(this).removeAttr("title");this.alt="";}).mouseover(save).mouseout(hide).click(hide);},fixPNG:IE?function(){return this.each(function(){var image=$(this).css('backgroundImage');if(image.match(/^url\(["']?(.*\.png)["']?\)$/i)){image=RegExp.$1;$(this).css({'backgroundImage':'none','filter':"progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src='"+image+"')"}).each(function(){var position=$(this).css('position');if(position!='absolute'&&position!='relative')$(this).css('position','relative');});}});}:function(){return this;},unfixPNG:IE?function(){return this.each(function(){$(this).css({'filter':'',backgroundImage:''});});}:function(){return this;},hideWhenEmpty:function(){return this.each(function(){$(this)[$(this).html()?"show":"hide"]();});},url:function(){return this.attr('href')||this.attr('src');}});function createHelper(settings){if(helper.parent)return;helper.parent=$('<div id="'+settings.id+'"><h3></h3><div class="body"></div><div class="url"></div></div>').appendTo(document.body).hide();if($.fn.bgiframe)helper.parent.bgiframe();helper.title=$('h3',helper.parent);helper.body=$('div.body',helper.parent);helper.url=$('div.url',helper.parent);}function settings(element){return $.data(element,"tooltip");}function handle(event){if(settings(this).delay)tID=setTimeout(show,settings(this).delay);else
	show();track=!!settings(this).track;$(document.body).bind('mousemove',update);update(event);}function save(){if($.tooltip.blocked||this==current||(!this.tooltipText&&!settings(this).bodyHandler))return;current=this;title=this.tooltipText;if(settings(this).bodyHandler){helper.title.hide();var bodyContent=settings(this).bodyHandler.call(this);if(bodyContent.nodeType||bodyContent.jquery){helper.body.empty().append(bodyContent)}else{helper.body.html(bodyContent);}helper.body.show();}else if(settings(this).showBody){var parts=title.split(settings(this).showBody);helper.title.html(parts.shift()).show();helper.body.empty();for(var i=0,part;(part=parts[i]);i++){if(i>0)helper.body.append("<br/>");helper.body.append(part);}helper.body.hideWhenEmpty();}else{helper.title.html(title).show();helper.body.hide();}if(settings(this).showURL&&$(this).url())helper.url.html($(this).url().replace('http://','')).show();else
	helper.url.hide();helper.parent.addClass(settings(this).extraClass);if(settings(this).fixPNG)helper.parent.fixPNG();handle.apply(this,arguments);}function show(){tID=null;if((!IE||!$.fn.bgiframe)&&settings(current).fade){if(helper.parent.is(":animated"))helper.parent.stop().show().fadeTo(settings(current).fade,current.tOpacity);else
	helper.parent.is(':visible')?helper.parent.fadeTo(settings(current).fade,current.tOpacity):helper.parent.fadeIn(settings(current).fade);}else{helper.parent.show();}update();}function update(event){if($.tooltip.blocked)return;if(event&&event.target.tagName=="OPTION"){return;}if(!track&&helper.parent.is(":visible")){$(document.body).unbind('mousemove',update)}if(current==null){$(document.body).unbind('mousemove',update);return;}helper.parent.removeClass("viewport-right").removeClass("viewport-bottom");var left=helper.parent[0].offsetLeft;var top=helper.parent[0].offsetTop;if(event){left=event.pageX+settings(current).left;top=event.pageY+settings(current).top;var right='auto';if(settings(current).positionLeft){right=$(window).width()-left;left='auto';}helper.parent.css({left:left,right:right,top:top});}var v=viewport(),h=helper.parent[0];if(v.x+v.cx<h.offsetLeft+h.offsetWidth){left-=h.offsetWidth+20+settings(current).left;helper.parent.css({left:left+'px'}).addClass("viewport-right");}if(v.y+v.cy<h.offsetTop+h.offsetHeight){top-=h.offsetHeight+20+settings(current).top;helper.parent.css({top:top+'px'}).addClass("viewport-bottom");}}function viewport(){return{x:$(window).scrollLeft(),y:$(window).scrollTop(),cx:$(window).width(),cy:$(window).height()};}function hide(event){if($.tooltip.blocked)return;if(tID)clearTimeout(tID);current=null;var tsettings=settings(this);function complete(){helper.parent.removeClass(tsettings.extraClass).hide().css("opacity","");}if((!IE||!$.fn.bgiframe)&&tsettings.fade){if(helper.parent.is(':animated'))helper.parent.stop().fadeTo(tsettings.fade,0,complete);else
	helper.parent.stop().fadeOut(tsettings.fade,complete);}else
	complete();if(settings(this).fixPNG)helper.parent.unfixPNG();}

})(this.jQuery);

$(function(){
	$('#index_slider').before('<div id="index_slider_pager" />').cycle({fx:'fade',pager:'#index_slider_pager',speed:'4000',pause:true});
	$("map > area").tooltip({track:true,delay: 0,showURL:false}).css('cursor','pointer');
});

var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());
Cufon.registerFont({"w":576,"face":{"font-family":"Siemens Serif","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 2 5 0 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"10","bbox":"-52 -884 1026 225.215","underline-thickness":"56","underline-position":"-131","stemh":"37","stemv":"91","unicode-range":"U+0020-U+04C0"},"glyphs":{" ":{"w":250},"!":{"d":"176,-203r-35,0r-41,-447v0,-30,24,-52,59,-52v34,0,61,22,58,52xm158,-102v32,0,56,24,56,56v0,32,-24,56,-56,56v-32,0,-56,-24,-56,-57v0,-31,24,-55,56,-55","w":317},"\"":{"d":"85,-450r-38,0r-25,-204v0,-29,17,-48,44,-48v45,0,46,47,40,94xm241,-450r-38,0r-25,-204v0,-29,17,-48,44,-48v45,0,46,47,40,94","w":288},"#":{"d":"115,0r29,-207r-90,0r0,-58r98,0r23,-163r-89,0r0,-58r97,0r29,-206r60,0r-29,206r128,0r29,-206r60,0r-29,206r90,0r0,58r-98,0r-23,163r89,0r0,58r-97,0r-29,207r-60,0r29,-207r-128,0r-29,207r-60,0xm212,-265r128,0r23,-163r-128,0"},"$":{"d":"77,-32r0,-138r70,0r12,114v35,21,72,32,111,33r0,-288v-75,-32,-108,-48,-132,-65v-43,-31,-61,-69,-61,-129v0,-114,70,-185,193,-196r0,-74r43,0r0,73v60,1,119,18,168,48r0,132r-68,0r-11,-113v-26,-21,-55,-32,-89,-34r0,272v69,29,89,38,119,57v53,33,77,78,77,143v0,117,-72,192,-196,205r0,75r-43,0r0,-73v-65,-1,-132,-16,-193,-42xm313,-293r0,267v67,-12,111,-65,111,-137v0,-64,-24,-92,-111,-130xm270,-416r0,-252v-110,13,-146,157,-62,220v13,9,26,16,62,32"},"%":{"d":"191,-698v99,0,149,66,149,196v0,130,-50,196,-149,196v-100,0,-149,-66,-149,-198v0,-128,51,-194,149,-194xm190,-670v-50,0,-77,57,-77,167v0,111,26,169,77,169v53,0,79,-56,79,-168v0,-111,-27,-168,-79,-168xm331,20r-52,0r233,-732r52,0xm650,-386v99,0,149,66,149,196v0,130,-50,196,-149,196v-100,0,-149,-66,-149,-198v0,-128,51,-194,149,-194xm649,-358v-50,0,-77,57,-77,167v0,111,26,169,77,169v53,0,79,-56,79,-168v0,-111,-27,-168,-79,-168","w":840},"&":{"d":"56,-180v0,-103,66,-162,167,-193v-61,-78,-82,-124,-82,-179v0,-93,70,-150,184,-150v116,0,187,54,187,141v0,80,-54,134,-184,181r190,222v34,-46,56,-124,57,-199r-59,0r0,-32r193,0r0,32r-60,0v-1,86,-28,155,-96,239v39,49,80,97,123,86r33,0r0,32r-107,0v-58,6,-80,-23,-111,-59v-68,53,-113,69,-198,69v-150,0,-237,-70,-237,-190xm303,-407v78,-27,129,-84,129,-150v0,-68,-44,-113,-108,-113v-64,0,-109,41,-109,101v0,44,30,98,88,162xm465,-90r-220,-255v-64,34,-94,84,-94,158v0,96,67,160,166,160v56,0,104,-21,148,-63","w":734},"(":{"d":"344,142r-12,17v-163,-100,-247,-255,-247,-456v0,-201,84,-356,247,-456r12,17v-119,111,-169,241,-169,439v0,198,50,328,169,439","w":380},")":{"d":"36,-736r12,-17v163,100,247,255,247,456v0,201,-84,356,-247,456r-12,-17v119,-111,169,-241,169,-439v0,-198,-50,-328,-169,-439","w":380},"*":{"d":"220,-538r-108,-17v-36,-5,-48,-15,-48,-38v0,-36,31,-50,66,-32r100,52r-19,-133v0,-21,15,-35,38,-35v35,0,42,23,36,62r-17,106v42,-19,83,-50,131,-61v20,0,36,18,36,41v0,23,-12,33,-48,38r-109,17r80,81v37,27,19,74,-19,74v-17,0,-27,-8,-38,-29r-52,-103r-52,103v-14,46,-75,33,-77,-10v0,-12,3,-18,20,-35","w":500},"+":{"d":"35,-223r0,-60r223,0r0,-224r60,0r0,224r223,0r0,60r-223,0r0,223r-60,0r0,-223r-223,0"},",":{"d":"91,183r-25,-21v40,-54,62,-105,71,-159v-32,-7,-48,-25,-48,-54v0,-33,23,-56,57,-56v37,0,61,25,61,65v0,55,-42,136,-116,225","w":288},"-":{"d":"50,-245r0,-65r244,0r0,65r-244,0","w":344,"k":{"\u0443":13,"\u0442":1,"\u0423":55,"\u0422":37,"\u0410":4,"Y":58,"W":8,"V":22,"T":50,"A":3}},".":{"d":"144,-107v33,0,58,25,58,58v0,34,-25,59,-58,59v-34,0,-59,-25,-59,-59v0,-33,25,-58,59,-58","w":288},"\/":{"d":"10,20r140,-732r59,0r-141,732r-58,0","w":219},"0":{"d":"288,-702v150,0,230,124,230,356v0,232,-80,356,-230,356v-151,0,-230,-123,-230,-359v0,-229,81,-353,230,-353xm288,-670v-94,0,-138,103,-138,321v0,225,43,327,138,327v94,0,138,-103,138,-324v0,-221,-44,-324,-138,-324"},"1":{"d":"151,0r0,-32r97,-3v8,-122,4,-304,5,-442v0,-44,-2,-118,-3,-140v-33,25,-78,50,-145,77r-15,-33v83,-32,149,-72,197,-119r57,0v-3,53,-5,128,-5,215r0,262v0,62,2,142,5,180r97,3r0,32r-290,0"},"2":{"d":"72,0r4,-76v78,-71,133,-125,192,-189v94,-102,129,-172,129,-257v0,-90,-47,-143,-126,-143v-40,0,-78,11,-121,36r-9,98r-70,0r0,-120v92,-37,155,-51,223,-51v126,0,195,60,195,169v0,95,-39,160,-178,295r-175,160r348,0r-5,78r-407,0"},"3":{"d":"307,-364v125,9,187,57,187,171v0,122,-93,203,-231,203v-65,0,-126,-12,-199,-38r4,-121r70,0r7,97v118,73,257,8,257,-139v0,-119,-92,-166,-235,-153r0,-36v133,14,227,-45,227,-156v0,-124,-133,-168,-230,-107r-6,103r-70,0r-4,-123v84,-29,137,-39,199,-39v126,0,202,63,202,168v0,94,-63,154,-178,170"},"4":{"d":"224,0r0,-32r84,-3v3,-34,5,-127,4,-176r-288,0r0,-60r313,-421r63,0r-3,421r123,0r-4,60r-119,0r4,176r84,3r0,32r-261,0xm312,-271r3,-331r-245,331r242,0"},"5":{"d":"81,-32r5,-118r70,0r6,98v130,78,252,-2,252,-170v0,-108,-57,-177,-145,-177v-50,0,-93,21,-141,69r-26,0r15,-362r352,0r-3,78r-314,0r-9,231v56,-44,96,-59,158,-59v127,0,205,81,205,213v0,147,-91,239,-237,239v-61,0,-119,-13,-188,-42"},"6":{"d":"451,-732r5,29v-178,23,-267,124,-293,331v39,-48,89,-71,152,-71v125,0,207,87,207,221v0,143,-87,232,-228,232v-151,0,-232,-92,-232,-263v0,-267,124,-458,389,-479xm302,-409v-88,0,-150,80,-150,192v0,119,54,195,139,195v84,0,139,-77,139,-195v0,-119,-49,-192,-128,-192"},"7":{"d":"217,0r-92,0v26,-164,113,-327,325,-614r-362,0r8,-78r426,0r0,33v-175,260,-297,522,-305,659"},"8":{"d":"340,-380v94,47,176,91,176,201v0,116,-90,189,-233,189v-132,0,-223,-73,-223,-180v0,-80,43,-130,159,-183v-97,-59,-126,-98,-126,-172v0,-108,77,-177,197,-177v118,0,193,58,193,149v0,68,-36,112,-143,173xm306,-396v60,-36,103,-91,103,-154v0,-74,-47,-120,-121,-120v-73,0,-121,48,-121,123v0,61,36,100,139,151xm251,-335v-69,32,-117,93,-117,164v0,89,60,149,149,149v91,0,151,-52,151,-133v0,-49,-21,-86,-69,-118v-31,-21,-51,-32,-114,-62"},"9":{"d":"125,40r-5,-29v178,-23,267,-124,293,-331v-39,47,-90,71,-153,71v-125,0,-206,-86,-206,-220v0,-144,87,-233,228,-233v151,0,232,92,232,263v0,267,-124,458,-389,479xm285,-670v-84,0,-139,77,-139,195v0,119,48,192,128,192v88,0,150,-80,150,-192v0,-119,-55,-195,-139,-195"},":":{"d":"144,-473v33,0,58,25,58,58v0,34,-25,59,-58,59v-34,0,-59,-25,-59,-59v0,-33,25,-58,59,-58xm144,-107v33,0,58,25,58,58v0,34,-25,59,-58,59v-34,0,-59,-25,-59,-59v0,-33,25,-58,59,-58","w":288},";":{"d":"91,183r-25,-21v40,-54,62,-105,71,-159v-32,-7,-48,-25,-48,-54v0,-33,23,-56,57,-56v37,0,61,25,61,65v0,55,-42,136,-116,225xm152,-473v33,0,58,25,58,58v0,34,-25,59,-58,59v-34,0,-59,-25,-59,-59v0,-33,25,-58,59,-58","w":288},"<":{"d":"112,-254r426,199r0,65r-506,-238r0,-52r506,-237r0,65"},"=":{"d":"35,-295r0,-60r506,0r0,60r-506,0xm35,-151r0,-60r506,0r0,60r-506,0"},">":{"d":"464,-254r-426,-198r0,-65r506,237r0,52r-506,238r0,-65"},"?":{"d":"211,-196r-34,0r0,-46v0,-82,0,-82,60,-141v64,-64,89,-112,89,-173v0,-102,-114,-145,-192,-90r-9,94r-69,0r-6,-105v73,-33,119,-45,178,-45v111,0,183,60,183,152v0,102,-55,138,-140,200v-68,50,-59,69,-60,154xm190,-102v32,0,56,24,56,56v0,32,-24,56,-56,56v-32,0,-56,-24,-56,-57v0,-31,24,-55,56,-55","w":426},"@":{"d":"50,-349v0,-212,160,-353,382,-353v216,0,350,114,350,298v0,141,-86,252,-195,252v-47,0,-75,-26,-79,-75v-34,52,-75,76,-129,76v-80,0,-127,-52,-127,-141v0,-133,90,-243,198,-243v39,0,65,10,94,35r4,-26r68,0r-40,232v-9,49,-18,99,31,99v71,0,135,-98,135,-206v0,-160,-117,-265,-297,-265v-189,0,-310,124,-310,317v0,250,251,396,480,294r12,29v-56,26,-103,36,-170,36v-244,0,-407,-144,-407,-359xm536,-467v-104,-97,-210,54,-210,171v0,67,27,100,80,100v40,0,69,-22,95,-72","w":832},"A":{"d":"-5,0r0,-32r56,-3v69,-153,197,-500,254,-657r41,0v6,24,36,102,57,153r197,504r58,3r0,32r-244,0r0,-32r78,-3v-17,-65,-50,-144,-74,-207r-239,0r-30,77v-13,34,-37,106,-43,130r73,3r0,32r-184,0xm405,-279r-105,-282r-108,282r213,0","w":653,"k":{"y":51,"w":36,"v":45,"u":12,"t":8,"q":4,"o":9,"g":23,"e":8,"d":4,"c":10,"Y":26,"W":45,"V":55,"U":33,"T":71,"Q":27,"O":31,"G":31,"C":31,".":-20,"-":3,",":-22}},"B":{"d":"537,-186v0,142,-93,186,-259,186r-248,0r0,-34r83,-3v8,-113,4,-297,5,-427v0,-75,-2,-155,-5,-193r-83,-3r0,-32v135,4,349,-14,420,33v44,29,70,79,70,142v0,91,-49,141,-157,158v125,16,174,55,174,173xm428,-517v0,-118,-89,-147,-220,-140r-2,282v134,7,222,-35,222,-142xm209,-37v142,8,233,-35,233,-152v0,-118,-89,-157,-236,-149","w":600,"k":{"Y":1,"W":11,"V":4}},"C":{"d":"161,-340v0,181,66,311,227,311v45,0,88,-11,136,-34r9,-117r70,0r0,148v-91,30,-154,42,-218,42v-200,0,-322,-138,-322,-352v0,-226,117,-360,313,-360v74,0,135,13,218,48r0,142r-68,0r-11,-112v-194,-114,-354,16,-354,284","w":653,"k":{"O":2,"K":-22,"H":-22,"A":-40}},"D":{"d":"30,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r205,0v155,0,229,19,292,75v65,57,98,148,98,267v0,128,-38,222,-115,282v-63,50,-131,68,-258,68r-222,0xm213,-37v216,11,315,-77,315,-307v-1,-238,-96,-326,-315,-311v-3,55,-5,121,-5,178r0,262v0,57,2,123,5,178","w":688,"k":{"Y":26,"X":35,"W":27,"V":29,"T":-7,"J":16,"A":36}},"E":{"d":"30,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r481,0r0,180r-68,0r-13,-143r-217,0v-5,67,-5,199,-5,285r238,0r0,37r-238,0r0,118v0,61,2,142,5,178r233,0r14,-143r70,0r0,180r-500,0","w":574},"F":{"d":"30,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r483,0r0,180r-68,0r-13,-143r-219,0v-3,58,-5,121,-5,178r0,105r241,0r0,37r-241,0r0,120v0,69,2,150,5,180r83,3r0,32r-266,0","w":555,"k":{"o":25,"j":-16,"i":-15,"e":25,"a":30,"O":5,"J":-18,"A":64,".":90,"-":4,",":91}},"G":{"d":"385,10v-200,0,-322,-138,-322,-352v0,-226,117,-360,313,-360v76,0,138,13,223,48r0,142r-68,0r-11,-112v-198,-114,-360,16,-360,283v0,253,152,370,353,284r0,-225r-80,-3r0,-32r246,0r0,32r-76,3r3,249v-95,31,-156,43,-221,43","w":707,"k":{"Y":-12,"W":-2,"V":-9,"T":1,"A":-14}},"H":{"d":"30,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-5,68,-5,199,-5,286r338,0r0,-106v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,32r-266,0r0,-32r83,-3v6,-73,5,-208,5,-299r-338,0r0,119v0,62,2,142,5,180r83,3r0,32r-266,0","w":754},"I":{"d":"36,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,32r-266,0","w":338},"J":{"d":"-49,57v151,1,183,-62,183,-242r0,-292v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,129,-4,318,-5,462v0,96,-4,133,-18,167v-38,87,-134,134,-258,121","w":342,"k":{"A":3}},"K":{"d":"30,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r256,0r0,32r-73,3v-5,71,-5,204,-5,293r301,-293r-87,-3r0,-32r201,0r0,32r-47,3v-21,18,-62,54,-114,104r-169,163r225,265v39,46,60,69,82,90r49,3r0,32r-240,0r0,-32r70,0r-271,-325r0,142v0,62,2,142,5,180r73,3r0,32r-256,0","w":649,"k":{"y":50,"u":15,"o":11,"e":11,"a":-17,"T":-39,"S":-27,"O":33,"G":34,"C":34,"-":60}},"L":{"d":"30,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-3,54,-5,123,-5,180r0,262v0,57,2,120,5,178r227,0r13,-143r70,0r0,180r-493,0","w":563,"k":{"y":51,"u":15,"Y":48,"W":52,"V":66,"U":18,"T":50,"S":-7,"O":2,"G":1,"C":1,"A":-45,"-":-6}},"M":{"d":"30,0r0,-32r79,-3v3,-40,5,-141,5,-225r0,-397r-84,-3r0,-32r188,0v48,135,159,376,221,526r157,-362v36,-81,53,-123,67,-164r184,0r0,32r-88,3r0,442v0,40,3,151,5,180r83,3r0,32r-266,0r0,-32r83,-3v3,-36,5,-120,5,-180r0,-379r-241,555r-28,0r-243,-555r0,330v0,88,2,190,5,229r79,3r0,32r-211,0","w":877},"N":{"d":"30,0r0,-32r79,-3v3,-38,5,-165,5,-255r0,-367r-84,-3r0,-32r189,0v92,159,251,377,357,541r0,-326v0,-60,-2,-142,-5,-180r-79,-3r0,-32r211,0r0,32r-79,3v-3,36,-5,120,-5,180r0,477r-58,0v-10,-26,-55,-88,-81,-127r-323,-481r0,322v0,83,3,214,5,251r79,3r0,32r-211,0","w":733,"k":{"u":13,"o":11,"e":11,"a":12,"O":8,"G":8,"C":8,"A":-8,".":7,",":7}},"O":{"d":"63,-350v2,-196,111,-352,312,-352v198,0,314,154,313,356v-1,201,-109,356,-313,356v-198,0,-314,-153,-312,-360xm375,-670v-136,0,-215,117,-215,321v0,210,77,327,215,327v138,0,216,-117,216,-324v0,-207,-78,-324,-216,-324","w":751,"k":{"Y":26,"X":35,"W":22,"V":29,"T":-5,"A":31}},"P":{"d":"529,-499v0,164,-123,205,-321,193r0,92v0,58,2,123,5,179r99,3r0,32r-282,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32v137,6,352,-20,427,35v46,34,72,88,72,158xm208,-343v145,10,220,-34,223,-158v3,-126,-85,-167,-223,-156r0,314","w":579,"k":{"o":17,"e":16,"a":9,"J":24,"A":68,".":99,"-":11,",":95}},"Q":{"d":"688,-346v-2,187,-91,333,-268,354v43,89,84,124,170,121r4,34v-139,15,-222,-36,-274,-157v-158,-23,-257,-158,-257,-352v0,-201,110,-356,312,-356v198,0,314,154,313,356xm375,-670v-137,0,-217,117,-217,321v0,210,78,327,217,327v139,0,218,-117,218,-324v0,-207,-79,-324,-218,-324","w":751},"R":{"d":"292,-692v152,-4,231,50,231,178v0,96,-58,151,-170,162v98,14,127,51,159,207r25,110r63,3r0,32r-147,0r-29,-132v-40,-179,-72,-203,-216,-199r0,116v0,57,2,125,5,180r83,3r0,32r-266,0r0,-32r83,-3v2,-28,5,-125,5,-180r0,-262v0,-62,-2,-142,-5,-180r-83,-3r0,-32r262,0xm428,-515v0,-117,-86,-151,-220,-142r0,291v138,6,220,-39,220,-149","w":610,"k":{"y":-12,"o":8,"e":8,"a":-12,"Y":6,"W":16,"V":9,"U":17,"T":-9,"O":9,"G":9,"C":9,"-":-1}},"S":{"d":"70,-32r0,-148r70,0r12,124v103,72,265,26,265,-107v0,-34,-10,-63,-30,-82v-10,-29,-253,-111,-275,-147v-27,-24,-42,-63,-42,-109v0,-124,86,-201,224,-201v69,0,122,14,180,48r0,142r-68,0r-11,-123v-87,-74,-240,-27,-240,97v0,65,27,91,150,141v158,65,197,104,197,200v0,128,-88,207,-231,207v-67,0,-130,-13,-201,-42","w":562,"k":{"Y":-26,"W":-16,"V":-23,"T":-8,"A":-1}},"T":{"d":"155,0r0,-32r91,-3v3,-55,5,-137,5,-200r0,-222v0,-64,-2,-134,-5,-198r-145,0r-13,143r-68,0r0,-180r552,0r0,180r-68,0r-13,-143r-145,0v-3,64,-5,134,-5,198r0,222v0,73,2,159,5,200r91,3r0,32r-282,0","w":592,"k":{"y":69,"w":70,"v":69,"u":81,"s":48,"r":37,"o":78,"j":-27,"i":-26,"g":31,"e":73,"c":78,"a":60,"Y":-12,"W":-8,"V":-12,"T":-42,"S":-17,"O":-5,"J":-29,"G":-6,"C":-6,"A":71,";":35,":":39,".":59,"-":50,",":57}},"U":{"d":"30,-692r266,0r0,32r-83,3v-7,101,-5,265,-5,382v0,93,3,127,16,160v22,56,79,88,158,88v77,0,133,-32,165,-88v34,-58,23,-253,23,-362v0,-58,-2,-123,-5,-180r-79,-3r0,-32r211,0r0,32r-79,3v-7,108,-4,277,-5,401v0,94,-9,134,-39,177v-43,60,-108,89,-202,89v-101,0,-175,-31,-216,-90v-54,-51,-38,-267,-38,-397v0,-62,-2,-142,-5,-180r-83,-3r0,-32","w":727,"k":{"r":16,"p":15,"n":16,"m":16,"A":31,".":24,",":22}},"V":{"d":"-9,-692r244,0r0,32r-76,3v37,127,138,385,190,530r123,-334v52,-148,54,-154,66,-196r-75,-3r0,-32r194,0r0,32r-59,3v-14,33,-46,110,-74,185r-104,273v-35,95,-39,104,-71,199r-48,0v-29,-84,-36,-105,-72,-199r-104,-273r-75,-185r-59,-3r0,-32","w":648,"k":{"y":-3,"u":9,"r":12,"o":53,"i":-12,"g":53,"e":53,"a":43,"T":-12,"O":29,"G":28,"C":28,"A":55,";":21,":":25,".":80,"-":22,",":76}},"W":{"d":"0,-692r238,0r0,32r-77,3v17,95,87,356,120,483r151,-467v9,-28,11,-35,14,-51r48,0r174,525r79,-312v29,-118,34,-144,40,-178r-77,-3r0,-32r194,0r0,32r-59,3v-25,82,-39,130,-54,185r-73,273v-23,86,-44,172,-49,199r-48,0v-30,-126,-126,-403,-174,-551r-127,394v-16,52,-40,137,-43,157r-48,0r-50,-208r-120,-449r-59,-3r0,-32","w":904,"k":{"y":-8,"u":3,"r":7,"o":32,"i":-10,"g":36,"e":32,"a":35,"T":-8,"S":2,"O":22,"G":22,"C":22,"A":45,";":2,":":2,".":52,"-":9,",":47}},"X":{"d":"4,0r0,-32r60,-3v78,-95,147,-200,220,-300r-130,-201v-47,-71,-55,-83,-83,-121r-59,-3r0,-32r243,0r0,32r-66,3v21,44,111,182,155,249r150,-208v7,-9,16,-23,27,-41r-68,-3r0,-32r183,0r0,32r-57,3v-36,43,-158,209,-210,281r138,214v48,73,53,80,87,127r60,3r0,32r-242,0r0,-32r60,-3v-41,-79,-113,-185,-162,-264r-119,170v-20,29,-46,69,-61,94r70,3r0,32r-196,0","w":658,"k":{"y":37,"u":17,"o":13,"e":13,"a":-15,"Q":31,"O":35,"C":35,"-":38}},"Y":{"d":"182,0r0,-32r85,-3r3,-186v0,-33,-1,-67,-3,-97r-158,-238v-39,-59,-52,-77,-72,-101r-52,-3r0,-32r238,0r0,32r-69,3v41,74,134,214,187,298r97,-180v30,-57,52,-101,59,-118r-73,-3r0,-32r183,0r0,32r-56,3v-54,84,-133,240,-188,341r-3,141v0,48,1,78,3,140r85,3r0,32r-266,0","w":600,"k":{"v":11,"u":20,"p":22,"o":59,"i":-11,"g":59,"e":59,"a":56,"T":-12,"S":1,"O":30,"G":29,"C":29,"A":11,";":22,":":26,".":58,"-":42,",":56}},"Z":{"d":"58,0r0,-37r262,-404v75,-117,102,-160,132,-214r-302,0r-13,143r-70,0r0,-180r497,0r0,40r-348,536r-48,79r318,0r13,-143r72,0r0,180r-513,0","w":629,"k":{"y":21,"v":24}},"[":{"d":"120,-750r175,0r0,32r-90,0r0,842r90,0r0,32r-175,0r0,-906","w":380},"\\":{"d":"160,20r-140,-732r66,0r140,732r-66,0","w":246},"]":{"d":"260,156r-175,0r0,-32r90,0r0,-842r-90,0r0,-32r175,0r0,906","w":380},"^":{"d":"288,-620r-190,366r-64,0r230,-438r49,0r230,438r-64,0"},"_":{"d":"-16,215r0,-56r532,0r0,56r-532,0","w":500},"a":{"d":"428,-116v0,91,40,91,89,56r17,25v-41,32,-73,45,-110,45v-45,0,-65,-19,-76,-71v-51,50,-96,71,-155,71v-83,0,-140,-55,-140,-137v0,-128,134,-169,290,-166v2,-116,3,-192,-88,-192v-35,0,-67,16,-91,45r-8,82r-67,0r-3,-114v97,-59,243,-62,313,8v41,41,29,244,29,348xm343,-260v-116,-1,-205,24,-205,115v0,56,42,99,97,99v37,0,69,-15,108,-48r0,-166","w":526,"k":{"y":18,"w":14,"v":13,"j":1}},"b":{"d":"28,0r0,-32r73,-3v8,-135,4,-331,5,-481v0,-62,-2,-142,-5,-180r-73,-3r0,-32r168,-5r-5,298v53,-58,95,-79,156,-79v122,0,199,102,199,263v0,161,-78,264,-199,264v-66,0,-110,-22,-158,-81r-3,71r-158,0xm191,-387r0,268v41,55,81,80,129,80v82,0,136,-86,136,-216v0,-132,-52,-213,-136,-213v-48,0,-88,25,-129,81","w":602,"k":{"y":18,"w":14,"v":13}},"c":{"d":"436,-490r-3,124r-67,0r-9,-101v-124,-58,-209,40,-209,206v0,197,142,293,269,186r24,27v-41,41,-85,58,-150,58v-150,0,-235,-97,-235,-268v0,-165,85,-259,235,-259v50,0,99,9,145,27","w":470,"k":{"k":8,"h":8}},"d":{"d":"416,0r-3,-73v-46,58,-95,83,-161,83v-120,0,-196,-100,-196,-259v0,-164,78,-268,200,-268v64,0,107,22,155,79r0,-78v0,-62,-2,-142,-5,-180r-73,-3r0,-32r168,-5v-3,104,-5,172,-5,215r0,271v0,95,1,148,5,215r73,3r0,32r-158,0xm411,-118r0,-266v-37,-56,-81,-84,-131,-84v-81,0,-134,87,-134,222v0,124,55,207,136,207v48,0,87,-24,129,-79","w":608},"e":{"d":"148,-259v-2,139,49,228,160,228v48,0,88,-16,129,-51r24,28v-49,44,-102,64,-172,64v-150,0,-233,-96,-233,-268v0,-164,79,-259,214,-259v143,0,207,95,204,258r-326,0xm148,-291r234,0v-2,-135,-36,-194,-111,-194v-76,0,-120,69,-123,194","w":526,"k":{"y":11,"x":-11,"w":7,"v":6,"t":14}},"f":{"d":"37,0r0,-32r77,-3v7,-109,5,-307,5,-437r-82,0r0,-35r82,0v-1,-74,4,-152,27,-179v54,-65,145,-69,236,-28r-3,108r-64,0r-6,-86v-34,-29,-76,-18,-95,19v-10,19,-10,113,-10,166r114,0r0,35r-114,0r0,257v0,59,2,139,5,180r91,3r0,32r-263,0","w":354,"k":{"t":16,"s":1,"r":-16,"o":6,"n":-16,"m":-16,"l":-1,"j":-2,"i":-1,"f":-1,"e":6,"a":6,"?":-30,"!":-30}},"g":{"d":"253,-12v-125,0,-197,-104,-197,-247v0,-156,78,-258,197,-258v63,0,102,21,155,81r3,-76r158,5r0,32r-73,3v-3,49,-5,145,-5,202r0,214v0,132,-7,171,-42,209v-80,88,-240,93,-365,29r5,-111r69,0r5,84v29,22,63,33,102,33v144,0,144,-111,141,-279v-49,57,-92,79,-153,79xm406,-138r0,-241v-43,-63,-80,-89,-131,-89v-80,0,-129,80,-129,212v0,123,47,191,132,191v47,0,83,-21,128,-73","w":597,"k":{"y":15,"u":12,"t":18,"l":20,"e":17,"a":10}},"h":{"d":"37,0r0,-32r73,-3v8,-126,4,-336,5,-481v0,-58,-2,-123,-5,-180r-73,-3r0,-32r168,-5v-5,153,-5,169,-5,215r0,102v63,-70,115,-98,180,-98v62,0,109,32,131,85v25,60,9,307,20,397r73,3r0,32r-241,0r0,-32r73,-3v3,-82,18,-310,-10,-376v-14,-34,-40,-50,-79,-50v-50,0,-99,31,-147,92r0,154v0,63,2,149,5,180r73,3r0,32r-241,0","w":634,"k":{"y":26}},"i":{"d":"37,0r0,-32r73,-3v7,-105,7,-331,0,-437r-73,-3r0,-32r168,-5v-3,47,-5,150,-5,211r0,86v0,54,2,138,5,180r73,3r0,32r-241,0xm158,-735v32,0,55,23,55,55v0,32,-23,55,-54,55v-33,0,-56,-23,-56,-56v0,-31,23,-54,55,-54","w":312,"k":{"j":15}},"j":{"d":"35,-507r176,-5v-4,79,-5,142,-5,239v0,125,11,366,-30,406v-36,62,-111,92,-208,82r2,-32v62,0,98,-14,122,-48v44,-37,29,-306,29,-427v0,-58,-2,-123,-5,-180r-81,-3r0,-32xm164,-735v32,0,55,23,55,55v0,32,-23,55,-54,55v-33,0,-56,-23,-56,-56v0,-31,23,-54,55,-54","w":315},"k":{"d":"34,0r0,-32r73,-3v3,-47,5,-121,5,-180r0,-301v0,-59,-2,-133,-5,-180r-73,-3r0,-32r168,-5v-3,94,-5,163,-5,215r0,239r221,-190r-76,-3r0,-32r187,0r0,32r-45,3v-69,49,-141,115,-205,171r129,160v62,78,71,88,88,104r57,5r0,32r-147,0v-41,-68,-152,-199,-209,-274r5,239r73,3r0,32r-241,0","w":565,"k":{"u":-6,"s":-20,"o":21,"g":24,"e":20,"a":-8,".":-8,"-":62,",":-10}},"l":{"d":"37,0r0,-32r73,-3v8,-122,4,-338,5,-481v0,-67,-2,-136,-5,-180r-73,-3r0,-32r168,-5v-3,106,-5,178,-5,215r0,309v0,62,2,137,5,177r73,3r0,32r-241,0","w":312,"k":{"y":3,"v":3}},"m":{"d":"37,0r0,-32r73,-3v7,-118,8,-310,-2,-437r-71,-3r0,-32r158,-5r3,90v63,-69,110,-95,173,-95v70,0,115,36,135,107v61,-75,115,-107,181,-107v61,0,108,32,128,86v27,39,8,352,20,396r73,3r0,32r-241,0r0,-32r73,-3v-1,-107,18,-306,-9,-376v-14,-34,-39,-50,-76,-50v-47,0,-96,32,-140,91r0,155v0,70,2,143,5,180r73,3r0,32r-241,0r0,-32r73,-3v3,-89,18,-305,-9,-376v-13,-35,-39,-50,-76,-50v-49,0,-95,30,-140,89r0,157v0,70,2,151,5,180r73,3r0,32r-241,0","w":938,"k":{"y":25,"w":22,"v":21,"p":15}},"n":{"d":"37,0r0,-32r73,-3v7,-111,8,-321,-2,-437r-71,-3r0,-32r158,-5r3,95v63,-71,116,-100,183,-100v61,0,108,33,130,85v25,60,9,307,20,397r73,3r0,32r-241,0r0,-32r73,-3v3,-83,18,-310,-10,-376v-14,-34,-40,-50,-79,-50v-50,0,-99,31,-147,92r0,154v0,57,3,151,5,180r73,3r0,32r-241,0","w":634,"k":{"y":26,"w":22,"v":21,"p":15,"T":33}},"o":{"d":"289,-517v150,0,234,95,234,264v0,168,-84,263,-234,263v-150,0,-233,-95,-233,-267v0,-165,85,-260,233,-260xm289,-485v-91,0,-141,81,-141,229v0,153,49,234,141,234v93,0,142,-81,142,-231v0,-151,-50,-232,-142,-232","w":579,"k":{"y":20,"x":16,"w":16,"v":16,"t":21,"T":78}},"p":{"d":"34,215r0,-32r73,-3v8,-130,4,-326,5,-472v0,-58,-2,-123,-5,-180r-73,-3r0,-32r158,-5r3,75v58,-61,95,-80,159,-80v121,0,198,102,198,263v0,160,-78,264,-199,264v-64,0,-105,-20,-156,-79r5,249r83,3r0,32r-251,0xm197,-387r0,268v41,55,81,80,129,80v82,0,136,-86,136,-216v0,-131,-52,-213,-136,-213v-48,0,-88,25,-129,81","w":608,"k":{"y":18,"t":17}},"q":{"d":"323,215r0,-32r83,-3r5,-251v-45,56,-93,81,-157,81v-121,0,-198,-100,-198,-260v0,-161,79,-267,199,-267v62,0,107,23,158,79r3,-74r158,5r0,32r-73,3v-3,57,-5,122,-5,180r0,292v0,58,2,123,5,180r73,3r0,32r-251,0xm411,-118r0,-266v-37,-56,-81,-84,-130,-84v-82,0,-135,87,-135,222v0,124,55,207,136,207v48,0,87,-24,129,-79","w":606,"k":{"u":12,"c":17}},"r":{"d":"328,-465v-166,-18,-127,263,-123,430r79,3r0,32r-247,0r0,-32r73,-3v3,-46,5,-121,5,-180r0,-77v0,-61,-3,-132,-7,-180r-71,-3r0,-32r154,-5r3,90v43,-85,119,-107,218,-80r-5,133r-70,0","w":434,"k":{"z":-19,"y":-12,"x":-18,"w":-20,"v":-20,"u":-12,"t":-29,"s":-13,"r":-26,"q":-5,"p":-12,"o":-5,"n":-26,"m":-26,"l":13,"k":11,"j":-27,"i":-26,"h":13,"g":-7,"f":-26,"e":-6,"d":-5,"c":-5,"a":-1,";":-2,":":-2,".":60,"-":33,",":58}},"s":{"d":"59,-24r3,-120r70,0r9,98v72,46,193,22,193,-74v0,-26,-9,-50,-24,-63v-17,-15,-28,-21,-98,-41v-116,-34,-154,-69,-154,-144v0,-93,66,-149,176,-149v56,0,107,10,160,32r-3,119r-68,0r-9,-93v-65,-51,-187,-22,-187,63v0,49,23,66,119,94v81,23,100,32,125,53v28,24,43,61,43,106v0,98,-66,153,-185,153v-58,0,-110,-10,-170,-34","w":466,"k":{"t":-4}},"t":{"d":"119,-472r-88,0r0,-35v92,3,121,-28,141,-141r33,0r0,141r134,0r0,35r-134,0r0,323v-8,126,60,139,126,90r20,26v-36,31,-66,43,-111,43v-89,0,-121,-42,-121,-159r0,-323","w":355,"k":{"r":-16,"o":6,"n":-16,"m":-16,"h":-2,"e":6,"a":6,"S":-17,";":-10,":":-8}},"u":{"d":"30,-507r168,-5v2,127,-22,326,10,421v12,36,40,52,79,52v49,0,101,-35,147,-99r0,-334r-78,-3r0,-32r168,-5r-5,297v0,60,2,134,5,180r73,3r0,32r-154,0r-3,-92v-67,75,-116,102,-184,102v-65,0,-110,-32,-133,-86v-24,-57,-10,-308,-18,-396r-75,-3r0,-32","w":634},"v":{"d":"6,-507r205,0r0,32r-54,3v14,44,20,60,42,120r92,241r93,-238v15,-39,31,-85,44,-123r-81,-3r0,-32r181,0r0,32r-50,3v-63,137,-137,334,-186,472r-50,0r-123,-327v-17,-43,-45,-107,-63,-145r-50,-3r0,-32","w":534,"k":{"s":-2,"o":16,"l":5,"g":9,"e":13,"c":17,"a":-9,";":9,":":10,".":69,"-":9,",":64}},"w":{"d":"7,-507r204,0r0,32r-56,4v18,79,72,251,100,344r134,-380r38,0r128,377r61,-198v28,-96,32,-109,39,-143r-78,-4r0,-32r180,0r0,32r-50,4v-50,128,-108,325,-151,471r-43,0r-131,-385r-133,385r-43,0r-98,-325v-14,-49,-35,-109,-50,-146r-51,-4r0,-32","w":764,"k":{"s":-1,"o":16,"l":5,"g":10,"e":14,"c":17,"a":-9,";":1,":":2,".":56,"-":2,",":51}},"x":{"d":"222,-246r-68,-107v-38,-58,-66,-99,-82,-119r-55,-3r0,-32r218,0r0,32r-55,3v16,31,72,117,100,163r64,-87v26,-36,46,-65,52,-76r-66,-3r0,-32r172,0r0,32r-53,3v-29,31,-112,143,-148,195r98,154v40,60,47,71,63,88r51,3r0,32r-221,0r0,-32r59,-3v-26,-54,-75,-124,-108,-177r-125,177r57,3r0,32r-173,0r0,-32r61,-3v50,-58,110,-144,159,-211","w":527,"k":{"q":17,"o":22,"e":21,"c":23,"a":-7}},"y":{"d":"6,-507r205,0r0,32r-54,3v15,45,33,95,49,136r88,220r90,-233v22,-60,36,-101,43,-123r-80,-3r0,-32r181,0r0,32r-50,3v-61,130,-145,367,-207,517v-61,147,-104,190,-236,170r13,-69v113,38,158,-30,201,-148r-127,-318v-33,-81,-46,-111,-66,-152r-50,-3r0,-32","w":535,"k":{"s":3,"o":21,"l":5,"g":14,"e":18,"c":22,"a":-4,";":10,":":15,".":69,"-":13,",":69}},"z":{"d":"44,0r0,-32r315,-443r-229,0r-11,103r-68,0r0,-135r412,0r0,32r-314,443r241,0r12,-101r70,0r0,133r-428,0","w":515},"{":{"d":"147,-297v69,22,84,48,84,150r0,170v-3,104,22,103,99,101r0,32v-72,1,-140,0,-160,-41v-35,-44,-24,-189,-24,-278v0,-60,-7,-83,-32,-102v-12,-10,-25,-14,-55,-16r0,-32v37,-3,50,-8,65,-25v54,-64,-4,-294,46,-371v25,-38,87,-43,160,-41r0,32v-76,-1,-99,-3,-99,101r0,170v1,104,-16,127,-84,150","w":380},"|":{"d":"102,215r0,-946r85,0r0,946r-85,0","w":288},"}":{"d":"233,-297v-69,-22,-84,-48,-84,-150r0,-170v3,-104,-22,-103,-99,-101r0,-32v72,-1,140,0,160,41v35,44,24,189,24,278v0,60,7,83,32,102v12,10,25,14,55,16r0,32v-37,3,-50,8,-65,25v-54,64,4,294,-46,371v-25,38,-87,43,-160,41r0,-32v76,1,99,3,99,-101r0,-170v-1,-104,16,-127,84,-150","w":380},"~":{"d":"395,-179v-45,14,-168,-93,-213,-83v-34,0,-55,14,-102,72r-45,-36v54,-74,93,-101,145,-101v40,-16,172,92,210,83v34,4,71,-29,106,-74r45,38v-51,70,-96,101,-146,101"},"'":{"d":"91,-450r-38,0r-25,-204v0,-29,17,-48,44,-48v45,0,46,47,40,94","w":144},"`":{"d":"342,-615r-13,23v-66,-27,-115,-53,-151,-83v-31,-25,-49,-47,-49,-58v0,-5,5,-8,15,-8r73,0v22,41,77,96,125,126","w":500},"\u0401":{"d":"32,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r481,0r0,180r-68,0r-13,-143r-217,0v-5,67,-5,199,-5,285r238,0r0,37r-238,0r0,118v0,61,2,142,5,178r233,0r14,-143r70,0r0,180r-500,0xm198,-859v30,0,53,23,53,54v0,30,-23,53,-53,53v-31,0,-54,-23,-54,-54v0,-30,23,-53,54,-53xm390,-859v30,0,53,23,53,54v0,30,-23,53,-53,53v-31,0,-54,-23,-54,-54v0,-30,23,-53,54,-53","w":578},"\u0419":{"d":"32,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r264,0r0,32r-83,3v-3,38,-5,118,-5,180r0,323r326,-442r-3,-61r-83,-3r0,-32r264,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,32r-264,0r0,-32r83,-3v9,-141,4,-340,5,-496r-326,441v1,32,1,35,3,55r83,3r0,32r-264,0xm227,-883r34,0v6,64,40,92,111,92v71,0,106,-28,112,-92r34,0v-4,95,-53,145,-146,145v-92,0,-142,-50,-145,-145","w":744},"\u0403":{"d":"32,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r497,0r0,180r-68,0r-13,-143r-233,0v-3,58,-5,121,-5,178r0,262v0,69,2,150,5,180r83,3r0,32r-266,0xm215,-735r-13,-23v48,-30,103,-85,125,-126r73,0v10,0,15,3,15,8v0,11,-18,33,-49,58v-36,30,-85,56,-151,83","w":551,"k":{"\u0459":1,"\u0454":39,"\u044f":30,"\u044e":-24,"\u044a":-33,"\u0447":-31,"\u0446":-15,"\u0445":-29,"\u0444":36,"\u0443":-39,"\u0442":-34,"\u0441":40,"\u0440":-25,"\u043f":-19,"\u043e":39,"\u043d":-19,"\u043c":-19,"\u043b":1,"\u043a":-14,"\u0438":-19,"\u0437":-12,"\u0436":-30,"\u0435":37,"\u0434":15,"\u0432":-15,"\u0430":14,"\u040b":-40,"\u0409":-5,"\u0404":-5,"\u0427":-46,"\u0424":8,"\u0423":-46,"\u0422":-40,"\u0421":-4,"\u041e":-3,"\u041b":-5,"\u0414":5,"\u045e":-47,"\u040e":-43}},"\u0407":{"d":"36,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,32r-266,0xm73,-859v30,0,53,23,53,54v0,30,-23,53,-53,53v-31,0,-54,-23,-54,-54v0,-30,23,-53,54,-53xm265,-859v30,0,53,23,53,54v0,30,-23,53,-53,53v-31,0,-54,-23,-54,-54v0,-30,23,-53,54,-53","w":338},"\u040c":{"d":"32,0r0,-32r73,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-73,-3r0,-32r246,0r0,32r-73,3v-5,67,-5,197,-5,283v115,3,151,1,209,-96r111,-187r-77,-3r0,-32r191,0r0,32r-47,3v-26,37,-100,158,-137,216v-31,49,-49,63,-91,77v104,21,145,67,193,220r38,109r52,3r0,32r-136,0v-30,-87,-71,-234,-112,-284v-33,-41,-106,-59,-194,-55r0,124v0,62,2,142,5,180r73,3r0,32r-246,0xm286,-735r-13,-23v48,-30,103,-85,125,-126r73,0v10,0,15,3,15,8v0,11,-18,33,-49,58v-36,30,-85,56,-151,83","w":654,"k":{"\u0454":18,"\u0447":35,"\u0444":17,"\u0443":28,"\u0442":9,"\u0441":22,"\u043e":22,"\u0437":-22,"\u0435":22,"\u0431":24,"\u0430":-6,"\u0404":28,"\u0424":41,"\u0421":28,"\u041e":32,"\u0417":-21,"\u045e":18}},"\u040e":{"d":"122,0r6,-80v96,9,129,12,175,-83r11,-20r-189,-365v-33,-61,-46,-83,-63,-109r-52,-3r0,-32r238,0r0,32r-69,3v8,21,41,94,67,149r113,235r125,-266v24,-54,44,-101,50,-118r-73,-3r0,-32r183,0r0,32r-56,3v-12,19,-36,67,-62,122r-199,424v-54,116,-83,120,-205,111xm206,-883r34,0v6,64,40,92,111,92v71,0,106,-28,112,-92r34,0v-4,95,-53,145,-146,145v-92,0,-142,-50,-145,-145","w":626,"k":{"\u0459":41,"\u0454":66,"\u044f":62,"\u044e":18,"\u0447":9,"\u0446":23,"\u0445":11,"\u0444":66,"\u0442":6,"\u0441":67,"\u0440":17,"\u043f":21,"\u043e":66,"\u043d":21,"\u043c":21,"\u043b":41,"\u043a":26,"\u0438":21,"\u0437":28,"\u0436":10,"\u0435":65,"\u0434":53,"\u0431":5,"\u0430":50,"\u040b":-57,"\u0409":-22,"\u0404":24,"\u042f":10,"\u0427":-63,"\u0424":50,"\u0422":-57,"\u0421":28,"\u041e":29,"\u041b":-22,"\u0417":-38,"\u0414":-11,"\u0410":80,"\u040e":-59}},"\u0451":{"d":"150,-259v-2,139,49,228,160,228v48,0,88,-16,129,-51r24,28v-49,44,-102,64,-172,64v-150,0,-233,-96,-233,-268v0,-164,79,-259,214,-259v143,0,207,95,204,258r-326,0xm150,-291r234,0v-2,-135,-36,-194,-111,-194v-76,0,-120,69,-123,194xm178,-731v30,0,53,23,53,54v0,30,-23,53,-53,53v-31,0,-54,-23,-54,-54v0,-30,23,-53,54,-53xm370,-731v30,0,53,23,53,54v0,30,-23,53,-53,53v-31,0,-54,-23,-54,-54v0,-30,23,-53,54,-53","w":530},"\u0439":{"d":"39,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r233,0r0,32r-70,3v-7,105,-5,247,-5,363r239,-351r0,-12r-70,-3r0,-32r233,0r0,32r-73,3v-3,42,-5,126,-5,180r0,77v0,54,2,138,5,180r73,3r0,32r-233,0r0,-32r70,-3v2,-34,5,-119,5,-180r0,-189r-240,351r1,18r70,3r0,32r-233,0xm174,-731r34,0v6,64,40,92,111,92v71,0,106,-28,112,-92r34,0v-4,95,-53,145,-146,145v-92,0,-142,-50,-145,-145","w":638,"k":{"\u0459":-35}},"\u0453":{"d":"39,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r421,0r-4,141r-67,0r-8,-109r-174,0v-3,42,-5,126,-5,180r0,80v0,54,2,138,5,180r87,3r0,32r-255,0xm189,-592r-13,-23v48,-30,103,-85,125,-126r73,0v10,0,15,3,15,8v0,11,-18,33,-49,58v-36,30,-85,56,-151,83","w":474,"k":{"\u0459":-8,"\u0454":-10,"\u044f":-6,"\u0444":-10,"\u0441":-10,"\u043e":-10,"\u043b":-8,"\u0434":1}},"\u0457":{"d":"37,0r0,-32r73,-3v3,-46,5,-121,5,-180r0,-77v0,-61,-2,-132,-5,-180r-73,-3r0,-32r168,-5r-5,297v0,54,2,138,5,180r73,3r0,32r-241,0xm56,-731v30,0,53,23,53,54v0,30,-23,53,-53,53v-31,0,-54,-23,-54,-54v0,-30,23,-53,54,-53xm248,-731v30,0,53,23,53,54v0,30,-23,53,-53,53v-31,0,-54,-23,-54,-54v0,-30,23,-53,54,-53","w":312},"\u045c":{"d":"49,0r0,-32r63,-3v7,-106,7,-331,0,-437r-63,-3r0,-32r221,0r0,32r-63,3v-3,36,-5,132,-5,196v84,1,109,2,154,-67r84,-130r-58,-2r0,-32r154,0r0,32r-37,2v-24,30,-81,113,-110,157v-19,27,-34,40,-58,48v77,18,105,49,140,157r28,77r50,2r0,32r-124,0v-49,-116,-52,-266,-223,-246r5,211r63,3r0,32r-221,0xm253,-592r-13,-23v48,-30,103,-85,125,-126r73,0v10,0,15,3,15,8v0,11,-18,33,-49,58v-36,30,-85,56,-151,83","w":563,"k":{"\u0454":7,"\u0444":7,"\u0441":7,"\u043e":7,"\u0437":-24,"\u0435":7,"\u0431":-7,"\u0430":-8,"\u045e":-45}},"\u045e":{"d":"8,-507r205,0r0,32r-54,3v15,45,33,95,49,136r88,220r90,-233v22,-60,36,-101,43,-123r-80,-3r0,-32r181,0r0,32r-50,3v-61,130,-145,367,-207,517v-61,147,-104,190,-236,170r13,-69v113,38,158,-30,201,-148r-127,-318v-33,-81,-46,-111,-66,-152r-50,-3r0,-32xm138,-731r34,0v6,64,40,92,111,92v71,0,106,-28,112,-92r34,0v-4,95,-53,145,-146,145v-92,0,-142,-50,-145,-145","w":539,"k":{"\u0454":19,"\u044f":10,"\u0447":-46,"\u0444":16,"\u0442":-49,"\u0441":20,"\u043e":19,"\u043b":-14,"\u0437":-30,"\u0435":17,"\u0434":-5,"\u0430":-6}},"\u0410":{"d":"-3,0r0,-32r56,-3v69,-153,197,-500,254,-657r41,0v6,24,36,102,57,153r197,504r58,3r0,32r-244,0r0,-32r78,-3v-17,-65,-50,-144,-74,-207r-239,0r-30,77v-13,34,-37,106,-43,130r73,3r0,32r-184,0xm407,-279r-105,-282r-108,282r213,0","w":657,"k":{"\u0459":-59,"\u0447":57,"\u0444":6,"\u0443":53,"\u0442":-1,"\u0441":11,"\u043e":11,"\u043b":-59,"\u0437":-33,"\u040b":14,"\u0409":-59,"\u0404":26,"\u042a":12,"\u0427":66,"\u0424":47,"\u0423":-3,"\u0422":14,"\u0421":33,"\u041e":33,"\u041b":-59,"\u0417":-32,"\u045e":48,";":-21,":":-21,".":-21,"-":4,",":-18}},"\u0411":{"d":"539,-202v0,150,-87,202,-259,202r-248,0r0,-34r83,-3v8,-117,4,-306,5,-440v0,-62,-2,-142,-5,-180r-83,-3r0,-32r467,0r0,180r-68,0r-13,-143r-203,0v-5,57,-5,174,-5,250r55,0v199,0,274,55,274,203xm213,-37v145,9,231,-40,231,-167v0,-129,-85,-172,-234,-164","w":604,"k":{"\u0459":15,"\u044a":8,"\u0443":2,"\u0442":7,"\u0436":11,"\u040b":1,"\u0428":6,"\u0427":-5,"\u0423":-5,"\u0422":1,"\u0410":5,"\u045e":-6,"\u040e":-1}},"\u0412":{"d":"539,-186v0,142,-93,186,-259,186r-248,0r0,-34r83,-3v8,-113,4,-297,5,-427v0,-75,-2,-155,-5,-193r-83,-3r0,-32v135,4,349,-14,420,33v44,29,70,79,70,142v0,91,-49,141,-157,158v125,16,174,55,174,173xm430,-517v0,-118,-89,-147,-220,-140r-2,282v134,7,222,-35,222,-142xm211,-37v142,8,233,-35,233,-152v0,-118,-89,-157,-236,-149","w":604,"k":{"\u0459":12,"\u044a":-12,"\u0447":-10,"\u0443":-14,"\u0442":-13,"\u0436":-9,"\u040b":-10,"\u0428":3,"\u0427":15,"\u0423":15,"\u0422":-10,"\u0416":10,"\u0410":3,"\u045e":-17,"\u040e":18}},"\u0413":{"d":"32,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r497,0r0,180r-68,0r-13,-143r-233,0v-3,58,-5,121,-5,178r0,262v0,69,2,150,5,180r83,3r0,32r-266,0","w":551,"k":{"\u0459":1,"\u0454":39,"\u044f":30,"\u044e":-24,"\u044a":-33,"\u0447":-31,"\u0446":-15,"\u0445":-29,"\u0444":36,"\u0443":-39,"\u0442":-34,"\u0441":40,"\u0440":-25,"\u043f":-19,"\u043e":39,"\u043d":-19,"\u043c":-19,"\u043b":1,"\u043a":-14,"\u0438":-19,"\u0437":-12,"\u0436":-30,"\u0435":37,"\u0434":15,"\u0432":-15,"\u0430":14,"\u040b":-40,"\u0409":-5,"\u0404":-5,"\u0427":-46,"\u0424":8,"\u0423":-46,"\u0422":-40,"\u0421":-4,"\u041e":-3,"\u041b":-5,"\u0414":5,"\u045e":-47,"\u040e":-43,";":26,":":22,".":105,"-":42,",":107}},"\u0414":{"d":"561,0r-487,0r-15,166r-65,0r0,-198r35,-4v55,-19,83,-80,112,-263r33,-211v12,-76,12,-82,19,-145r-79,-5r0,-32r526,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,198r-64,0xm105,-37r352,0v8,-122,4,-303,5,-440v0,-60,-2,-141,-5,-178r-207,0v-5,23,-17,78,-30,163r-30,192v-27,173,-44,226,-85,263","w":672},"\u0415":{"d":"32,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r481,0r0,180r-68,0r-13,-143r-217,0v-5,67,-5,199,-5,285r238,0r0,37r-238,0r0,118v0,61,2,142,5,178r233,0r14,-143r70,0r0,180r-500,0","w":578,"k":{"\u0424":13}},"\u0416":{"d":"354,0r0,-32r73,-3v6,-74,5,-212,5,-304v-173,2,-192,63,-240,208r-43,131r-137,0r0,-32r53,-3r38,-109v48,-151,85,-194,187,-219v-73,-19,-106,-114,-144,-177v-40,-67,-58,-102,-68,-117r-57,-3r0,-32r191,0r0,32r-67,3r93,176v54,97,86,112,194,107r0,-103v0,-62,-2,-142,-5,-180r-73,-3r0,-32r246,0r0,32r-73,3v-5,67,-5,197,-5,283v108,5,143,-9,195,-107r93,-176r-67,-3r0,-32r191,0r0,32r-57,3v-16,22,-92,157,-121,210v-26,47,-51,70,-91,84v102,24,139,68,187,219r38,109r53,3r0,32r-137,0v-30,-87,-70,-235,-112,-284v-31,-38,-91,-57,-172,-55r0,124v0,62,2,142,5,180r73,3r0,32r-246,0","w":955,"k":{"\u0454":14,"\u0447":32,"\u0444":14,"\u0443":26,"\u0442":6,"\u0441":19,"\u043e":18,"\u0437":-25,"\u0435":18,"\u0431":21,"\u0430":-9,"\u0404":19,"\u0424":35,"\u0421":23,"\u041e":23,"\u0417":-24,"\u045e":15}},"\u0417":{"d":"283,-364v135,9,207,57,207,177v0,124,-90,197,-243,197v-79,0,-146,-18,-195,-53r32,-53v41,46,100,72,166,72v93,0,148,-60,148,-160v0,-122,-100,-169,-255,-160r0,-36v146,8,247,-46,247,-156v0,-126,-146,-167,-250,-107r-6,131r-70,0r-4,-151v89,-29,144,-39,209,-39v132,0,212,63,212,168v0,94,-69,154,-198,170","w":550,"k":{"\u0459":9,"\u044f":4,"\u0447":-15,"\u0445":-14,"\u0443":-20,"\u0442":-18,"\u043b":9,"\u040b":-17,"\u0409":10,"\u042f":1,"\u0427":2,"\u0425":4,"\u0423":2,"\u0422":-17,"\u041b":8,"\u0417":3,"\u0416":7,"\u0414":-1,"\u045e":-24,"\u040e":6}},"\u0418":{"d":"32,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r264,0r0,32r-83,3v-3,38,-5,118,-5,180r0,323r326,-442r-3,-61r-83,-3r0,-32r264,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,32r-264,0r0,-32r83,-3v9,-141,4,-340,5,-496r-326,441v1,32,1,35,3,55r83,3r0,32r-264,0","w":744},"\u041a":{"d":"32,0r0,-32r73,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-73,-3r0,-32r246,0r0,32r-73,3v-5,67,-5,197,-5,283v115,3,151,1,209,-96r111,-187r-77,-3r0,-32r191,0r0,32r-47,3v-26,37,-100,158,-137,216v-31,49,-49,63,-91,77v104,21,145,67,193,220r38,109r52,3r0,32r-136,0v-30,-87,-71,-234,-112,-284v-33,-41,-106,-59,-194,-55r0,124v0,62,2,142,5,180r73,3r0,32r-246,0","w":654,"k":{"\u0454":14,"\u0447":32,"\u0444":14,"\u0443":25,"\u0442":6,"\u0441":19,"\u043e":18,"\u0437":-25,"\u0435":18,"\u0431":21,"\u0430":-9,"\u0404":19,"\u0424":35,"\u0421":23,"\u041e":23,"\u0417":-24,"\u045e":14}},"\u041b":{"d":"10,0r0,-19v53,-24,92,-80,122,-160v29,-77,43,-303,32,-476r-72,-5r0,-32r547,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,32r-266,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-60,-2,-141,-5,-178r-233,0r0,115v0,315,-24,431,-111,544","w":671},"\u041c":{"d":"32,0r0,-32r79,-3v3,-40,5,-141,5,-225r0,-397r-84,-3r0,-32r188,0v48,135,159,376,221,526r157,-362v36,-81,53,-123,67,-164r184,0r0,32r-88,3r0,442v0,40,3,151,5,180r83,3r0,32r-266,0r0,-32r83,-3v3,-36,5,-120,5,-180r0,-379r-241,555r-28,0r-243,-555r0,330v0,88,2,190,5,229r79,3r0,32r-211,0","w":881},"\u041d":{"d":"32,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-5,68,-5,199,-5,286r338,0r0,-106v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,32r-266,0r0,-32r83,-3v6,-73,5,-208,5,-299r-338,0r0,119v0,62,2,142,5,180r83,3r0,32r-266,0","w":758},"\u041e":{"d":"65,-350v2,-196,111,-352,312,-352v198,0,314,154,313,356v-1,201,-109,356,-313,356v-198,0,-314,-153,-312,-360xm377,-670v-136,0,-215,117,-215,321v0,210,77,327,215,327v138,0,216,-117,216,-324v0,-207,-78,-324,-216,-324","w":755,"k":{"\u0459":15,"\u043b":15,"\u040b":-3,"\u0409":22,"\u042f":11,"\u042a":-13,"\u0427":21,"\u0425":37,"\u0423":39,"\u0422":-3,"\u041b":22,"\u0417":15,"\u0416":23,"\u0414":22,"\u0410":33,"\u040e":43}},"\u041f":{"d":"32,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r668,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,32r-266,0r0,-32r83,-3v8,-122,4,-303,5,-440v0,-62,-2,-142,-5,-180r-302,0v-8,122,-4,303,-5,440v0,62,2,142,5,180r83,3r0,32r-266,0","w":732},"\u0420":{"d":"531,-499v0,164,-123,205,-321,193r0,92v0,58,2,123,5,179r99,3r0,32r-282,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32v137,6,352,-20,427,35v46,34,72,88,72,158xm210,-343v145,10,220,-34,223,-158v3,-126,-85,-167,-223,-156r0,314","w":583,"k":{"\u0459":7,"\u0454":19,"\u0444":18,"\u0441":20,"\u043e":19,"\u043b":7,"\u0437":-8,"\u0435":18,"\u0434":16,"\u0433":-13,"\u0432":-9,"\u0430":11,"\u0409":39,"\u042f":8,"\u0427":2,"\u0421":3,"\u041b":39,"\u0414":45,"\u0410":70,";":13,":":7,".":99,"-":12,",":100}},"\u0421":{"d":"163,-340v0,181,66,311,227,311v45,0,88,-11,136,-34r9,-117r70,0r0,148v-91,30,-154,42,-218,42v-200,0,-322,-138,-322,-352v0,-226,117,-360,313,-360v74,0,135,13,218,48r0,142r-68,0r-11,-112v-194,-114,-354,16,-354,284","w":657,"k":{"\u0459":-25,"\u0447":-16,"\u0443":-24,"\u0442":-19,"\u040b":-21,"\u0409":-28,"\u042f":-30,"\u0425":-33,"\u0424":16,"\u0423":-23,"\u0422":-21,"\u0421":4,"\u041e":4,"\u041b":-30,"\u0417":-9,"\u0416":-30,"\u0410":-38,"\u045e":-28,"\u040e":-19}},"\u0422":{"d":"157,0r0,-32r91,-3v3,-55,5,-137,5,-200r0,-222v0,-64,-2,-134,-5,-198r-145,0r-13,143r-68,0r0,-180r552,0r0,180r-68,0r-13,-143r-145,0v-3,64,-5,134,-5,198r0,222v0,73,2,159,5,200r91,3r0,32r-282,0","w":596,"k":{"\u0459":1,"\u0454":39,"\u044f":29,"\u044a":-33,"\u0447":-31,"\u0446":-15,"\u0445":-29,"\u0444":36,"\u0443":-39,"\u0442":-34,"\u0441":40,"\u0440":-25,"\u043f":-19,"\u043e":39,"\u043d":-19,"\u043c":-19,"\u043b":1,"\u043a":-14,"\u0438":-19,"\u0437":-12,"\u0436":-30,"\u0435":37,"\u0434":15,"\u0433":-19,"\u0432":-15,"\u0430":14,"\u040b":-40,"\u0409":-5,"\u0404":-5,"\u042f":-7,"\u0424":8,"\u0423":-46,"\u0422":-40,"\u0421":-4,"\u041e":-3,"\u041b":-5,"\u0417":-21,"\u0414":5,"\u0410":14,"\u045e":-47,"\u040e":-43,";":14,":":14,".":59,"-":37,",":61}},"\u0423":{"d":"122,0r6,-80v96,9,129,12,175,-83r11,-20r-189,-365v-33,-61,-46,-83,-63,-109r-52,-3r0,-32r238,0r0,32r-69,3v8,21,41,94,67,149r113,235r125,-266v24,-54,44,-101,50,-118r-73,-3r0,-32r183,0r0,32r-56,3v-12,19,-36,67,-62,122r-199,424v-54,116,-83,120,-205,111","w":626,"k":{"\u0459":38,"\u0454":63,"\u044f":58,"\u044e":15,"\u0447":6,"\u0446":20,"\u0445":7,"\u0444":62,"\u0442":3,"\u0441":64,"\u0440":13,"\u043f":17,"\u043e":63,"\u043d":17,"\u043c":17,"\u043b":38,"\u043a":22,"\u0438":17,"\u0437":25,"\u0436":6,"\u0435":62,"\u0434":50,"\u0431":2,"\u0430":47,"\u040b":-60,"\u0409":-25,"\u0404":21,"\u042f":6,"\u0427":-66,"\u0424":46,"\u0423":-66,"\u0422":-60,"\u0421":24,"\u041e":25,"\u041b":-25,"\u0417":-41,"\u0414":-14,"\u0410":76,"\u045e":-6,";":37,":":35,".":96,"-":36,",":98}},"\u0424":{"d":"804,-346v0,167,-138,288,-325,294v0,37,0,53,3,89r83,3r0,32r-260,0r0,-32r83,-3v3,-38,3,-47,3,-89v-191,-8,-326,-127,-326,-295v0,-166,129,-282,326,-293v0,-31,-1,-57,-3,-89r-83,-3r0,-32r260,0r0,32r-83,3v-3,35,-3,52,-3,89v189,7,324,126,325,294xm393,-85r0,-522v-151,17,-231,108,-231,260v0,153,81,245,231,262xm477,-607r0,522v149,-17,230,-108,230,-261v0,-153,-80,-244,-230,-261","w":869,"k":{"\u0459":23,"\u043b":23,"\u0434":25,"\u0409":34,"\u042f":23,"\u042a":-1,"\u0427":22,"\u0425":51,"\u0423":63,"\u041b":34,"\u0416":35,"\u0414":35,"\u0410":46,"\u040e":67}},"\u0425":{"d":"6,0r0,-32r60,-3v78,-95,147,-200,220,-300r-130,-201v-47,-71,-55,-83,-83,-121r-59,-3r0,-32r243,0r0,32r-66,3v21,44,111,182,155,249r150,-208v7,-9,16,-23,27,-41r-68,-3r0,-32r183,0r0,32r-57,3v-36,43,-158,209,-210,281r138,214v48,73,53,80,87,127r60,3r0,32r-242,0r0,-32r60,-3v-41,-79,-113,-185,-162,-264r-119,170v-20,29,-46,69,-61,94r70,3r0,32r-196,0","w":662,"k":{"\u0454":11,"\u0447":47,"\u0444":11,"\u0443":39,"\u0442":3,"\u0441":16,"\u043e":15,"\u0437":-28,"\u0435":15,"\u0430":-12,"\u0404":31,"\u0424":51,"\u0421":37,"\u041e":37,"\u0417":-27}},"\u0426":{"d":"32,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,303,-5,440v0,62,2,142,5,180r302,0v8,-122,4,-303,5,-440v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,198r-64,0r-15,-166r-589,0","w":732},"\u0427":{"d":"188,-518v0,179,17,272,181,273v52,0,87,-8,127,-27r0,-205v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,32r-266,0r0,-32r83,-3v3,-42,5,-132,5,-196v-121,55,-314,32,-365,-66v-45,-49,-27,-251,-38,-360r-83,-3r0,-32r266,0r0,32r-83,3v-2,31,-5,102,-5,139","w":706},"\u0428":{"d":"32,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,303,-5,440v0,62,2,142,5,180r264,0v8,-122,4,-303,5,-440v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,304,-5,442v0,60,2,141,5,178r264,0v8,-122,4,-303,5,-440v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,32r-994,0","w":1058},"\u0429":{"d":"32,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,303,-5,440v0,62,2,142,5,180r264,0v8,-122,4,-303,5,-440v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,304,-5,442v0,60,2,141,5,178r264,0v8,-122,4,-303,5,-440v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,198r-64,0r-15,-166r-915,0","w":1058},"\u042a":{"d":"660,-202v0,150,-87,202,-259,202r-248,0r0,-34r83,-3v8,-117,4,-306,5,-441v0,-59,-2,-140,-5,-177r-153,0r-13,143r-68,0r0,-180r417,0r0,32r-83,3v-5,58,-5,175,-5,252r55,0v199,0,274,55,274,203xm334,-37v145,9,231,-40,231,-167v0,-129,-85,-172,-234,-164","w":692,"k":{"\u044a":-5,"\u040b":42,"\u042a":32,"\u0427":22,"\u0423":32,"\u0422":42,"\u040e":36}},"\u042b":{"d":"539,-202v0,150,-87,202,-259,202r-248,0r0,-34r83,-3v8,-117,4,-306,5,-440v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-5,58,-5,175,-5,252r55,0v199,0,274,55,274,203xm213,-37v145,9,231,-40,231,-167v0,-129,-85,-172,-234,-164xm585,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,32r-266,0","w":883},"\u042c":{"d":"539,-202v0,150,-87,202,-259,202r-248,0r0,-34r83,-3v8,-117,4,-306,5,-440v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-5,58,-5,175,-5,252r55,0v199,0,274,55,274,203xm213,-37v145,9,231,-40,231,-167v0,-129,-85,-172,-234,-164","w":571,"k":{"\u044a":-5,"\u040b":42,"\u042a":32,"\u0427":22,"\u0423":32,"\u0422":42,"\u040e":36}},"\u042d":{"d":"533,-335v0,199,-93,345,-288,345v-77,0,-144,-18,-193,-53r32,-53v40,42,99,66,161,66v138,0,191,-135,190,-303r-245,0r0,-37r244,0v-6,-185,-74,-295,-184,-295v-37,0,-70,12,-107,41r-11,112r-68,0r0,-142v73,-35,126,-48,191,-48v175,0,278,136,278,367","w":598,"k":{"\u0459":12,"\u040b":-5,"\u0409":18,"\u042f":7,"\u042a":-15,"\u0427":22,"\u0423":34,"\u0422":-5,"\u041b":18,"\u0414":18,"\u0410":27,"\u040e":38}},"\u042e":{"d":"705,10v-187,0,-298,-152,-301,-344r-194,0r0,119v0,62,2,142,5,180r83,3r0,32r-266,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-5,68,-5,199,-5,286r195,0v13,-210,123,-331,300,-331v192,0,300,158,300,356v0,198,-104,356,-300,356xm704,-670v-129,0,-203,117,-203,321v0,210,73,327,203,327v130,0,204,-117,204,-324v0,-207,-74,-324,-204,-324","w":1070,"k":{"\u0459":12,"\u043b":12,"\u040b":-4,"\u0409":22,"\u042f":11,"\u042a":-14,"\u0427":22,"\u0425":36,"\u0423":38,"\u0422":-4,"\u041b":22,"\u0417":15,"\u0416":23,"\u0414":18,"\u0410":31,"\u040e":41}},"\u042f":{"d":"89,-510v0,-130,79,-182,231,-182r288,0r0,32r-83,3v-8,122,-4,304,-5,442v0,55,3,152,5,180r83,3r0,32r-266,0r0,-32r83,-3v3,-55,5,-123,5,-180r0,-108v-161,-4,-202,7,-242,194r-29,129r-147,0r0,-32r63,-3r25,-107v33,-152,61,-189,159,-202v-112,-11,-170,-67,-170,-166xm358,-657v-117,-3,-169,43,-174,146v-6,121,99,162,246,153r0,-299r-72,0","w":640},"\u0490":{"d":"32,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r416,0r23,-157r68,0r-10,194r-314,0v-3,58,-5,121,-5,178r0,262v0,69,2,150,5,180r83,3r0,32r-266,0","w":551,"k":{"\u0459":68,"\u0454":119,"\u044f":77,"\u044e":87,"\u044a":117,"\u0447":119,"\u0446":87,"\u0445":69,"\u0444":94,"\u0443":115,"\u0442":116,"\u0441":119,"\u0440":124,"\u043f":87,"\u043e":119,"\u043d":87,"\u043c":87,"\u043b":68,"\u043a":92,"\u0438":87,"\u0437":95,"\u0436":72,"\u0435":119,"\u0434":70,"\u0432":89,"\u0430":111,"\u040b":-41,"\u0409":-6,"\u0404":36,"\u042f":21,"\u0427":-47,"\u0424":65,"\u0423":-47,"\u0422":-41,"\u0421":39,"\u041e":40,"\u041b":-6,"\u0414":4,"\u045e":10,"\u040e":-44}},"\u0402":{"d":"157,0r0,-32r91,-3v3,-55,5,-137,5,-200r0,-222v0,-64,-2,-134,-5,-198r-145,0r-13,143r-68,0r0,-180r572,0r0,180r-68,0r-13,-143r-165,0r-5,275v131,-35,286,-40,354,39v31,35,35,137,34,229v0,144,-22,225,-75,274v-40,37,-79,49,-171,53r-2,-33v129,-15,158,-68,158,-289v0,-164,7,-259,-142,-258v-51,0,-103,8,-156,23r0,107v0,73,2,159,5,200r83,3r0,32r-274,0","w":793},"\u0404":{"d":"163,-333v-3,173,64,301,208,303v64,0,123,-24,163,-66r32,53v-50,36,-115,53,-197,53v-199,0,-304,-121,-304,-351v0,-227,107,-361,288,-361v69,0,125,13,201,48r0,142r-68,0r-11,-112v-113,-81,-233,-40,-282,90v-19,48,-26,88,-29,164r264,0r0,37r-265,0","w":618},"\u0405":{"d":"72,-32r0,-148r70,0r12,124v103,72,265,26,265,-107v0,-34,-10,-63,-30,-82v-10,-29,-253,-111,-275,-147v-27,-24,-42,-63,-42,-109v0,-124,86,-201,224,-201v69,0,122,14,180,48r0,142r-68,0r-11,-123v-87,-74,-240,-27,-240,97v0,65,27,91,150,141v158,65,197,104,197,200v0,128,-88,207,-231,207v-67,0,-130,-13,-201,-42","w":566},"\u0406":{"d":"38,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,32r-266,0","w":342},"\u04c0":{"d":"38,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,32r-266,0","w":342},"\u0408":{"d":"-47,57v151,1,183,-62,183,-242r0,-292v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,129,-4,318,-5,462v0,96,-4,133,-18,167v-38,87,-134,134,-258,121","w":346},"\u0409":{"d":"880,-202v0,150,-87,202,-259,202r-248,0r0,-34r83,-3v8,-116,4,-304,5,-438v0,-62,-2,-142,-5,-180r-233,0r0,115v0,315,-24,431,-111,544r-102,-4r0,-19v53,-24,92,-80,122,-160v29,-77,43,-303,32,-476r-72,-5r0,-32r547,0r0,32r-83,3v-5,58,-5,175,-5,252r55,0v199,0,274,55,274,203xm554,-37v145,9,231,-40,231,-167v0,-129,-85,-172,-234,-164","w":912,"k":{"\u044a":-5,"\u040b":42,"\u042a":32,"\u0427":22,"\u0423":32,"\u0422":42,"\u040e":36}},"\u040a":{"d":"937,-202v0,150,-87,202,-259,202r-248,0r0,-34r83,-3v6,-73,5,-223,5,-317r-308,0r0,139v0,62,2,142,5,180r83,3r0,32r-266,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-5,62,-5,185,-5,266r308,0r0,-86v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-5,58,-5,175,-5,252r55,0v199,0,274,55,274,203xm611,-37v145,9,231,-40,231,-167v0,-129,-85,-172,-234,-164","w":969,"k":{"\u044a":-6,"\u040b":42,"\u042a":32,"\u0427":22,"\u0423":32,"\u0422":42,"\u040e":36}},"\u040b":{"d":"157,0r0,-32r91,-3v3,-55,5,-137,5,-200r0,-222v0,-64,-2,-134,-5,-198r-145,0r-13,143r-68,0r0,-180r572,0r0,180r-68,0r-13,-143r-165,0r-5,275v144,-42,324,-36,380,61v28,49,17,195,25,284r83,3r0,32r-266,0r0,-32r83,-3v3,-38,5,-107,5,-154v0,-126,-44,-176,-154,-176v-50,0,-103,8,-156,23r0,107v0,73,2,159,5,200r83,3r0,32r-274,0","w":847},"\u040f":{"d":"32,0r0,-32r83,-3v8,-122,4,-304,5,-442v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,303,-5,440v0,62,2,142,5,180r302,0v8,-122,4,-303,5,-440v0,-62,-2,-142,-5,-180r-83,-3r0,-32r266,0r0,32r-83,3v-8,122,-4,304,-5,442v0,62,2,142,5,180r83,3r0,32r-292,0r-12,166r-60,0r-12,-166r-292,0","w":732},"\u0430":{"d":"450,-116v0,91,40,91,89,56r17,25v-41,32,-73,45,-110,45v-45,0,-65,-19,-76,-71v-55,50,-103,71,-165,71v-92,0,-150,-53,-150,-136v0,-132,149,-170,310,-167v0,-58,2,-137,-15,-149v-36,-61,-140,-53,-184,2r-8,82r-67,0r-3,-114v103,-59,257,-62,332,8v43,41,30,243,30,348xm365,-94r0,-166v-163,3,-225,37,-225,121v-1,117,156,115,225,45","w":550,"k":{"\u0459":-49,"\u0447":19,"\u0443":20,"\u045e":16}},"\u0431":{"d":"289,10v-156,0,-221,-104,-221,-293v0,-252,22,-336,101,-392v58,-40,141,-59,296,-68r2,65v-150,-1,-205,6,-242,25v-44,22,-70,99,-72,224v59,-67,99,-88,171,-88v120,0,192,101,192,268v0,164,-84,259,-227,259xm298,-468v-64,0,-106,36,-145,91r0,112v0,163,44,243,136,243v88,0,137,-84,137,-236v0,-128,-50,-210,-128,-210","w":574,"k":{"\u044f":13,"\u0447":17,"\u0445":16,"\u0443":18,"\u0442":-15,"\u0437":6,"\u0436":15,"\u045e":15}},"\u0432":{"d":"282,-507v140,-1,214,18,214,129v0,64,-35,100,-110,115v86,13,123,50,123,125v0,97,-62,138,-208,138r-258,0r0,-32r69,-3v7,-104,7,-333,0,-437r-64,-3r0,-32r234,0xm202,-277r72,0v89,0,136,-35,136,-100v0,-68,-42,-100,-128,-100r-75,0xm202,-245r5,213r62,0v106,0,151,-32,151,-107v0,-73,-44,-106,-141,-106r-77,0","w":559,"k":{"\u044f":1,"\u0447":2,"\u0445":-7,"\u0443":3,"\u0442":-19,"\u0437":1,"\u0436":-4}},"\u0433":{"d":"39,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r421,0r-4,141r-67,0r-8,-109r-174,0v-3,42,-5,126,-5,180r0,80v0,54,2,138,5,180r87,3r0,32r-255,0","w":474,"k":{"\u0459":-8,"\u0454":-10,"\u044f":-6,"\u0444":-10,"\u0441":-10,"\u043e":-10,"\u043b":-8,"\u0434":1,"\u045e":-48,";":-4,":":-8,".":74,"-":4,",":76}},"\u0434":{"d":"457,0r-375,0r-12,166r-64,0r0,-198v76,-2,90,-38,114,-188r40,-255r-61,-4r0,-28r434,0r0,32r-73,3v-3,42,-5,126,-5,180r0,77v0,54,2,138,5,180r73,3r0,198r-64,0xm104,-32r261,0v7,-108,7,-334,0,-443r-153,0r-46,256v-20,121,-33,161,-62,187","w":572},"\u0435":{"d":"150,-259v-2,139,49,228,160,228v48,0,88,-16,129,-51r24,28v-49,44,-102,64,-172,64v-150,0,-233,-96,-233,-268v0,-164,79,-259,214,-259v143,0,207,95,204,258r-326,0xm150,-291r234,0v-2,-135,-36,-194,-111,-194v-76,0,-120,69,-123,194","w":530,"k":{"\u044f":-1,"\u0447":13,"\u0445":-9,"\u0443":13,"\u043b":-5,"\u0437":1,"\u0436":-6,"\u045e":10}},"\u0436":{"d":"269,0r0,-32r63,-3v4,-40,5,-145,5,-211v-113,2,-134,47,-169,150r-34,96r-124,0r0,-32r50,-2r28,-77v35,-107,63,-139,136,-156v-48,-7,-80,-80,-107,-123v-23,-37,-42,-67,-53,-83r-47,-2r0,-32r154,0r0,32r-48,2r64,116v40,75,66,83,150,81r-5,-196r-63,-3r0,-32r217,0r0,32r-63,3v-3,36,-5,132,-5,196v84,2,109,-7,150,-81r64,-116r-48,-2r0,-32r154,0r0,32r-47,2v-18,26,-63,99,-87,140v-25,42,-42,57,-73,66v73,17,101,49,136,156r28,77r50,2r0,32r-124,0v-48,-110,-49,-257,-203,-246r5,211r63,3r0,32r-217,0","w":755,"k":{"\u0454":15,"\u0444":15,"\u0441":15,"\u043e":15,"\u0437":-23,"\u0435":15,"\u0431":-9,"\u045e":-46}},"\u0437":{"d":"329,-139v0,-77,-31,-107,-122,-104r-56,0r0,-32v105,5,174,-6,174,-101v0,-74,-38,-109,-116,-109v-34,0,-59,5,-81,18r-9,101r-67,0r-3,-122v57,-20,108,-29,168,-29v127,0,196,52,196,148v0,54,-21,89,-69,113v50,19,77,61,77,118v0,96,-69,148,-196,148v-74,0,-145,-19,-181,-48r28,-43v39,41,79,58,139,58v77,0,118,-40,118,-116","w":470,"k":{"\u044f":1,"\u0447":1,"\u0445":-6,"\u0443":1,"\u0442":-22,"\u043b":-1,"\u0436":-3,"\u045e":-2}},"\u0438":{"d":"39,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r233,0r0,32r-70,3v-7,105,-5,247,-5,363r239,-351r0,-12r-70,-3r0,-32r233,0r0,32r-73,3v-3,42,-5,126,-5,180r0,77v0,54,2,138,5,180r73,3r0,32r-233,0r0,-32r70,-3v2,-34,5,-119,5,-180r0,-189r-240,351r1,18r70,3r0,32r-233,0","w":638},"\u043a":{"d":"49,0r0,-32r63,-3v7,-106,7,-331,0,-437r-63,-3r0,-32r221,0r0,32r-63,3v-3,36,-5,132,-5,196v84,1,109,2,154,-67r84,-130r-58,-2r0,-32r154,0r0,32r-37,2v-24,30,-81,113,-110,157v-19,27,-34,40,-58,48v77,18,105,49,140,157r28,77r50,2r0,32r-124,0v-49,-116,-52,-266,-223,-246r5,211r63,3r0,32r-221,0","w":563,"k":{"\u0454":17,"\u0444":17,"\u0441":20,"\u043e":20,"\u0437":-21,"\u0435":17,"\u0431":-4,"\u0430":-5,"\u045e":-41}},"\u043b":{"d":"2,-13v98,-80,144,-173,142,-368v0,-30,-1,-66,-3,-91r-61,-3r0,-32r444,0r0,32r-73,3v-3,42,-5,126,-5,180r0,77v0,54,2,138,5,180r73,3r0,32r-241,0r0,-32r73,-3v7,-107,7,-332,0,-440r-168,0v1,28,3,89,3,113v0,181,-30,286,-104,364r-85,-2r0,-13","w":563},"\u043c":{"d":"39,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r171,0v37,97,128,264,178,370r125,-250v28,-54,44,-89,56,-120r167,0r0,32r-73,3v-3,42,-5,126,-5,180r0,77v0,54,2,139,5,180r73,3r0,32r-237,0r0,-32r73,-3v7,-93,5,-261,5,-372r-189,379r-36,0r-187,-379r0,192v0,54,2,139,5,180r73,3r0,32r-204,0","w":775},"\u043d":{"d":"39,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r241,0r0,32r-73,3r-5,196r248,0r-5,-196r-73,-3r0,-32r241,0r0,32r-73,3v-3,42,-5,126,-5,180r0,77v0,54,2,138,5,180r73,3r0,32r-241,0r0,-32r73,-3v4,-39,5,-143,5,-209r-248,0r5,209r73,3r0,32r-241,0","w":652},"\u043e":{"d":"291,-517v150,0,234,95,234,264v0,168,-84,263,-234,263v-150,0,-233,-95,-233,-267v0,-165,85,-260,233,-260xm291,-485v-91,0,-141,81,-141,229v0,153,49,234,141,234v93,0,142,-81,142,-231v0,-151,-50,-232,-142,-232","w":583,"k":{"\u0459":18,"\u044a":-12,"\u0445":18,"\u0443":22,"\u0442":-14,"\u043b":18,"\u0437":6,"\u0436":15,"\u045e":19}},"\u043f":{"d":"39,0r0,-32r73,-3v7,-103,7,-333,0,-437r-73,-3r0,-32r553,0r0,32r-73,3r-5,257v0,57,3,151,5,180r73,3r0,32r-241,0r0,-32r73,-3v7,-104,7,-335,0,-440r-217,0r-5,260v0,57,3,151,5,180r73,3r0,32r-241,0","w":631},"\u0440":{"d":"36,215r0,-32r73,-3v8,-130,4,-326,5,-472v0,-58,-2,-123,-5,-180r-73,-3r0,-32r158,-5r3,75v58,-61,95,-80,159,-80v121,0,198,102,198,263v0,160,-78,264,-199,264v-64,0,-105,-20,-156,-79r5,249r83,3r0,32r-251,0xm199,-387r0,268v41,55,81,80,129,80v82,0,136,-86,136,-216v0,-131,-52,-213,-136,-213v-48,0,-88,25,-129,81","w":612,"k":{"\u0454":2,"\u044f":13,"\u0447":17,"\u0445":14,"\u0443":20,"\u0442":-14,"\u043b":18,"\u0437":6,"\u0436":15,"\u045e":16,";":-23,":":-23,".":14,"-":-26,",":14}},"\u0441":{"d":"438,-490r-3,124r-67,0r-9,-101v-124,-58,-209,40,-209,206v0,197,142,293,269,186r24,27v-41,41,-85,58,-150,58v-150,0,-235,-97,-235,-268v0,-165,85,-259,235,-259v50,0,99,9,145,27","w":474,"k":{"\u0459":-26,"\u044f":-24,"\u0447":-30,"\u0445":-32,"\u0444":-2,"\u0443":-34,"\u0442":-33,"\u043e":-2,"\u043b":-27,"\u0437":-17,"\u0436":-29,"\u0430":-3,"\u040e":22}},"\u0442":{"d":"118,0r0,-32r91,-3v7,-114,7,-306,0,-435r-119,0r-13,104r-67,0r0,-141r493,0r0,141r-67,0r-13,-104r-119,0r-5,235v0,73,2,159,5,200r91,3r0,32r-277,0","w":513,"k":{"\u0459":-10,"\u0454":-14,"\u044f":-10,"\u0447":-42,"\u0444":-14,"\u0443":-46,"\u0442":-45,"\u0441":-14,"\u043e":-14,"\u043b":-10,"\u0437":-26,"\u0435":-15,"\u0434":-1,"\u0430":-6,"\u045e":-50,";":-7,":":-11,".":43,",":45}},"\u0443":{"d":"8,-507r205,0r0,32r-54,3v15,45,33,95,49,136r88,220r90,-233v22,-60,36,-101,43,-123r-80,-3r0,-32r181,0r0,32r-50,3v-61,130,-145,367,-207,517v-61,147,-104,190,-236,170r13,-69v113,38,158,-30,201,-148r-127,-318v-33,-81,-46,-111,-66,-152r-50,-3r0,-32","w":539,"k":{"\u0459":-11,"\u0454":22,"\u044f":13,"\u0447":-43,"\u0444":19,"\u0442":-46,"\u0441":24,"\u043e":23,"\u043b":-11,"\u0437":-26,"\u0435":20,"\u0434":-1,"\u0430":-2,";":9,":":10,".":69,"-":14,",":73}},"\u0444":{"d":"288,215r0,-32r83,-3v3,-41,6,-166,5,-233v-41,47,-73,63,-126,63v-116,0,-192,-104,-192,-264v0,-160,75,-263,191,-263v52,0,82,15,127,62r0,-61v0,-67,-2,-136,-5,-180r-73,-3r0,-32r157,-5r-5,281v45,-47,75,-62,127,-62v116,0,191,103,191,263v0,160,-76,264,-192,264v-52,0,-85,-16,-126,-63r5,233r73,3r0,32r-240,0xm376,-102r0,-302v-96,-134,-235,-45,-235,150v0,191,136,287,235,152xm450,-404r0,302v98,135,235,39,235,-152v0,-194,-139,-285,-235,-150","w":826,"k":{"\u0459":18,"\u044f":10,"\u044a":-12,"\u0447":17,"\u0445":13,"\u0443":19,"\u0442":-14,"\u043b":18,"\u0437":6,"\u0436":15,"\u0434":20,"\u0433":16,"\u045e":15}},"\u0445":{"d":"224,-246r-68,-107v-38,-58,-66,-99,-82,-119r-55,-3r0,-32r218,0r0,32r-55,3v16,31,72,117,100,163r64,-87v26,-36,46,-65,52,-76r-66,-3r0,-32r172,0r0,32r-53,3v-29,31,-112,143,-148,195r98,154v40,60,47,71,63,88r51,3r0,32r-221,0r0,-32r59,-3v-26,-54,-75,-124,-108,-177r-125,177r57,3r0,32r-173,0r0,-32r61,-3v50,-58,110,-144,159,-211","w":531,"k":{"\u0454":20,"\u0444":19,"\u0441":24,"\u043e":24,"\u0437":-20,"\u0435":24,"\u0430":-4,"\u045e":-41}},"\u0446":{"d":"39,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r235,0r0,32r-67,3v-3,42,-5,126,-5,180r0,80v0,54,2,138,5,180r222,0v7,-107,7,-332,0,-440r-67,-3r0,-32r235,0r0,32r-73,3v-3,42,-5,126,-5,180r0,77v0,54,2,138,5,180r73,3r0,198r-64,0r-12,-166r-482,0","w":636},"\u0447":{"d":"315,0r0,-32r73,-3r4,-128v-106,36,-255,11,-289,-66v-15,-33,-17,-32,-20,-191v-1,-29,-1,-32,-2,-52r-65,-3r0,-32r227,0r0,32r-71,3v-2,26,-3,79,-3,127v0,120,34,162,133,162v36,0,60,-5,91,-18r0,-91v0,-62,-2,-147,-5,-180r-69,-3r0,-32r237,0r0,32r-73,3v-3,42,-5,126,-5,180r0,77v0,54,2,138,5,180r73,3r0,32r-241,0","w":595},"\u0448":{"d":"39,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r235,0r0,32r-67,3v-3,42,-5,126,-5,180r0,80v0,54,2,138,5,180r206,0v7,-107,7,-332,0,-440r-67,-3r0,-32r235,0r0,32r-73,3v-3,42,-5,126,-5,180r0,80v0,54,2,138,5,180r206,0v7,-107,7,-332,0,-440r-67,-3r0,-32r235,0r0,32r-73,3v-3,42,-5,126,-5,180r0,77v0,54,2,138,5,180r73,3r0,32r-843,0","w":921},"\u0449":{"d":"39,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r235,0r0,32r-67,3v-3,42,-5,126,-5,180r0,80v0,54,2,138,5,180r206,0v7,-107,7,-332,0,-440r-67,-3r0,-32r235,0r0,32r-73,3v-3,42,-5,126,-5,180r0,80v0,54,2,138,5,180r206,0v7,-107,7,-332,0,-440r-67,-3r0,-32r235,0r0,32r-73,3v-3,42,-5,126,-5,180r0,77v0,54,2,138,5,180r73,3r0,198r-64,0r-12,-166r-767,0","w":921},"\u044a":{"d":"121,0r0,-32r73,-3v7,-107,7,-332,0,-440r-106,0r-8,109r-65,0r-3,-141r350,0r0,32r-73,3v-2,31,-3,61,-5,153r49,0v161,0,221,43,221,159v0,112,-62,160,-209,160r-224,0xm289,-32v110,8,176,-31,176,-129v0,-100,-68,-133,-181,-126r0,75v0,54,2,138,5,180","k":{"\u044a":22,"\u0447":9,"\u0443":40,"\u0442":19,"\u0441":-13,"\u0435":-13,"\u045e":31}},"\u044b":{"d":"39,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r241,0r0,32r-73,3v-2,31,-3,62,-5,153r49,0v161,0,221,43,221,159v0,112,-62,160,-209,160r-224,0xm207,-32v110,8,176,-31,176,-129v0,-100,-68,-133,-181,-126r0,75v0,54,2,138,5,180xm509,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r241,0r0,32r-73,3v-3,42,-5,126,-5,180r0,77v0,54,2,138,5,180r73,3r0,32r-241,0","w":789},"\u044c":{"d":"39,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r241,0r0,32r-73,3v-2,31,-3,62,-5,153r49,0v161,0,221,43,221,159v0,112,-62,160,-209,160r-224,0xm207,-32v110,8,176,-31,176,-129v0,-100,-68,-133,-181,-126r0,75v0,54,2,138,5,180","w":494,"k":{"\u044a":22,"\u0447":9,"\u0443":40,"\u0442":19,"\u0441":-13,"\u0435":-13,"\u045e":31}},"\u044d":{"d":"147,-244r0,-32r205,0v-4,-177,-89,-242,-223,-191r-9,101r-67,0r-3,-124v51,-18,108,-27,165,-27v151,0,229,89,229,263v0,176,-75,264,-225,264v-73,0,-135,-17,-175,-48r29,-43v37,37,78,54,134,54v102,0,145,-98,145,-217r-205,0","w":502,"k":{"\u0459":18,"\u044f":13,"\u044a":-11,"\u0447":17,"\u0443":22,"\u0442":-14,"\u043b":18,"\u045e":18}},"\u044e":{"d":"39,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r241,0r0,32r-73,3r-5,196r157,0v6,-154,86,-241,221,-241v142,0,222,95,222,264v0,168,-80,263,-222,263v-139,0,-218,-90,-221,-254r-157,0r5,209r73,3r0,32r-241,0xm580,-485v-83,0,-129,81,-129,229v0,153,45,234,129,234v85,0,130,-81,130,-231v0,-151,-45,-232,-130,-232","w":860,"k":{"\u0459":18,"\u044a":-11,"\u0447":17,"\u0445":14,"\u0443":21,"\u0442":-14,"\u043b":18,"\u0437":7,"\u0436":15,"\u045e":18}},"\u044f":{"d":"80,-370v0,-101,67,-137,188,-137r289,0r0,32r-73,3v-3,41,-5,126,-5,180r0,77v0,54,2,138,5,180r73,3r0,32r-241,0r0,-32r73,-3v3,-35,5,-129,5,-192v-136,-1,-193,-13,-222,135r-23,92r-129,0r0,-32r51,-2r19,-74v24,-99,45,-126,109,-138v-79,-12,-119,-54,-119,-124xm297,-475v-85,-3,-128,33,-128,105v0,74,47,111,142,111r83,0r-5,-216r-92,0","w":596},"\u0491":{"d":"39,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r342,0r18,-123r67,0r-6,155r-253,0v-3,42,-5,126,-5,180r0,80v0,54,2,138,5,180r87,3r0,32r-255,0","w":474,"k":{"\u0459":-9,"\u0454":20,"\u044f":11,"\u0444":17,"\u0441":22,"\u043e":21,"\u043b":-9}},"\u0452":{"d":"207,-736r-3,115r147,0r0,37r-149,0r0,165v63,-70,114,-98,180,-98v62,0,111,31,131,85v19,29,14,182,15,264v0,131,-6,208,-18,246v-28,88,-103,134,-220,137r2,-32v61,-7,90,-23,115,-63v39,-40,37,-268,36,-404v0,-70,-4,-102,-15,-127v-15,-34,-40,-50,-80,-50v-49,0,-98,31,-146,92r0,154v0,66,2,148,5,180r73,3r0,32r-241,0r0,-32r73,-3v9,-150,4,-381,5,-549r-78,0r0,-37r76,0v-1,-36,-2,-61,-3,-75r-73,-3r0,-32","w":618},"\u0454":{"d":"150,-244v1,116,39,217,145,217v56,0,97,-17,134,-54r29,43v-41,31,-102,48,-175,48v-150,0,-225,-88,-225,-265v0,-173,78,-262,229,-262v57,0,114,9,165,27r-3,124r-67,0r-9,-101v-133,-52,-220,14,-223,191r205,0r0,32r-205,0","w":502},"\u0455":{"d":"61,-24r3,-120r70,0r9,98v72,46,193,22,193,-74v0,-26,-9,-50,-24,-63v-17,-15,-28,-21,-98,-41v-116,-34,-154,-69,-154,-144v0,-93,66,-149,176,-149v56,0,107,10,160,32r-3,119r-68,0r-9,-93v-65,-51,-187,-22,-187,63v0,49,23,66,119,94v81,23,100,32,125,53v28,24,43,61,43,106v0,98,-66,153,-185,153v-58,0,-110,-10,-170,-34","w":470},"\u0456":{"d":"39,0r0,-32r73,-3v7,-105,7,-331,0,-437r-73,-3r0,-32r168,-5v-3,47,-5,150,-5,211r0,86v0,54,2,138,5,180r73,3r0,32r-241,0xm160,-735v32,0,55,23,55,55v0,32,-23,55,-54,55v-33,0,-56,-23,-56,-56v0,-31,23,-54,55,-54","w":316},"\u0458":{"d":"37,-507r176,-5v-4,79,-5,142,-5,239v0,125,11,366,-30,406v-36,62,-111,92,-208,82r2,-32v62,0,98,-14,122,-48v44,-37,29,-306,29,-427v0,-58,-2,-123,-5,-180r-81,-3r0,-32xm166,-735v32,0,55,23,55,55v0,32,-23,55,-54,55v-33,0,-56,-23,-56,-56v0,-31,23,-54,55,-54","w":319},"\u0459":{"d":"2,-13v98,-80,144,-173,142,-368v0,-30,-1,-66,-3,-91r-61,-3r0,-32r457,0r0,32r-73,3v-2,31,-3,62,-5,153r49,0v161,0,221,43,221,159v0,112,-62,160,-209,160r-224,0r0,-32r73,-3v7,-107,7,-332,0,-440r-181,0v1,32,3,91,3,113v0,181,-30,286,-104,364r-85,-2r0,-13xm464,-32v110,8,176,-31,176,-129v0,-100,-68,-133,-181,-126r0,75v0,54,2,138,5,180","w":751,"k":{"\u044a":22,"\u0447":9,"\u0443":40,"\u0442":19,"\u045e":31}},"\u045a":{"d":"39,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r241,0r0,32r-73,3v-3,43,-5,124,-5,178r248,0r-5,-178r-73,-3r0,-32r241,0r0,32r-73,3v-2,35,-3,70,-5,173r49,0v166,0,229,41,229,149v0,106,-64,150,-217,150r-224,0r0,-32r73,-3v4,-44,5,-158,5,-227r-248,0r5,227r73,3r0,32r-241,0xm540,-32v110,7,184,-27,184,-118v0,-93,-75,-124,-189,-117","w":835,"k":{"\u0454":-12,"\u044a":31,"\u0447":14,"\u0443":44,"\u0442":29,"\u0441":-12,"\u0435":-12,"\u045e":35}},"\u045b":{"d":"207,-736r-3,115r147,0r0,37r-149,0r0,165v63,-70,114,-98,180,-98v62,0,109,32,131,85v25,60,9,307,20,397r73,3r0,32r-241,0r0,-32r73,-3v3,-80,17,-310,-10,-376v-14,-34,-40,-50,-80,-50v-49,0,-98,31,-146,92r0,154v0,66,2,148,5,180r73,3r0,32r-241,0r0,-32r73,-3v9,-150,4,-381,5,-549r-78,0r0,-37r76,0v-1,-36,-2,-61,-3,-75r-73,-3r0,-32","w":638},"\u045f":{"d":"39,0r0,-32r73,-3v7,-106,7,-331,0,-437r-73,-3r0,-32r235,0r0,32r-67,3v-3,42,-5,126,-5,180r0,80v0,54,2,138,5,180r222,0v7,-107,7,-332,0,-440r-67,-3r0,-32r235,0r0,32r-73,3v-3,42,-5,126,-5,180r0,77v0,54,2,138,5,180r73,3r0,32r-239,0r-8,166r-64,0r-8,-166r-239,0","w":636},"\u00a0":{"w":250}}});
Cufon.replace('h2,.h2,h3',{fontFamily:'Siemens Serif'});
Cufon('nav .siemens',{fontFamily:'Siemens Serif',hover:{color:'#e4222c'}});


// usage: log('inside coolFunc',this,arguments);
// paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
window.log = function(){
  log.history = log.history || [];   // store logs to an array for reference
  log.history.push(arguments);
  if(this.console){
    console.log( Array.prototype.slice.call(arguments) );
  }
};



// catch all document.write() calls
(function(doc){
  var write = doc.write;
  doc.write = function(q){ 
    log('document.write(): ',arguments); 
    if (/docwriteregexwhitelist/.test(q)) write.apply(doc,arguments);  
  };
})(document);

function loadJS(url) {
	var s = document.createElement("script");
	s.setAttribute("type", "text/javascript");
	s.setAttribute("src", url);
	var h = document.getElementsByTagName("head")[0];
	h.appendChild(s);
}



