/* jquery.cycle 2.52 */
;(function($){var ver="2.65";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length==0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){options=handleArguments(this,options,arg2);if(options===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=options.slideExpr?$(options.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts=buildOptions($cont,$slides,els,options,o);if(opts===false){return;}if(opts.timeout||opts.continuous){this.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},opts.continuous?10:opts.timeout+(opts.delay||0));}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;default:options={fx:options};}}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=0;opts.startingSlide=opts.randomMap[0];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var i=0;i<els.length;i++){var $e=$(els[i]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth;}if(!h){h=e.offsetHeight;}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}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 requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingOp=($.browser.opera&&this.cycleW==42&&this.cycleH==19&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).click(function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).click(function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(var i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];var 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){var 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(var i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}log("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a=($.isFunction(opts.pagerAnchorBuilder))?opts.pagerAnchorBuilder(i,el):'<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);});$a=$(arr);}else{$a.appendTo($p);}}$a.bind(opts.pagerEvent,function(){opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250};})(jQuery);
;(function($){$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});opts.speed=opts.speed/2;opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(var i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(var i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var t=parseInt(h/2);var l=parseInt(w/2);clip="rect("+t+"px "+l+"px "+t+"px "+l+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);

/* cufon */
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},textDecoration:function(G,F){if(!F){F=this.getStyle(G)}var C={underline:null,overline:null,"line-through":null};for(var B=G;B.parentNode&&B.parentNode.nodeType==1;){var E=true;for(var D in C){if(!k(C,D)||C[D]){continue}if(F.get("textDecoration").indexOf(D)!=-1){C[D]=F.get("color")}E=false}if(E){break}F=this.getStyle(B=B.parentNode)}return C},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 B={inline:1,"inline-block":1,"run-in":1};return function(E,C,D){if(B[C.get("display")]){return E}if(!D.previousSibling){E=E.replace(/^\s+/,"")}if(!D.nextSibling){E=E.replace(/\s+$/,"")}return E}})()};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(C){var B=this.face=C.face;this.glyphs=C.glyphs;this.w=C.w;this.baseSize=parseInt(B["units-per-em"],10);this.family=B["font-family"].toLowerCase();this.weight=B["font-weight"];this.style=B["font-style"]||"normal";this.viewBox=(function(){var E=B.bbox.split(/\s+/);var D={minX:parseInt(E[0],10),minY:parseInt(E[1],10),maxX:parseInt(E[2],10),maxY:parseInt(E[3],10)};D.width=D.maxX-D.minX;D.height=D.maxY-D.minY;D.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return D})();this.ascent=-parseInt(B.ascent,10);this.descent=-parseInt(B.descent,10);this.height=-this.ascent+this.descent}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)}function E(F){C(this)}function C(F){setTimeout(function(){m.replace(F,d.get(F).options,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 B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E){for(F in D){if(k(D,F)){B[F]=D[F]}}}return B}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(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E)}else{F=E}if(G){continue}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,E),B,J,E,C),F);F=null}if(H==1&&E.firstChild){if(/cufon/.test(E.className)){z[J.engine](D,null,B,J,E,C)}else{arguments.callee(E,J)}}}}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={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||(window.Ext&&Ext.query)||g),separate:"words",textShadow:"none"};var p={words:/[^\S\u00a0]+/,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){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.removeClass(x.root(),"cufon-loading")});e=true}if(C.hover){C.forceHitArea=true}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)}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode((".cufon-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").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(ah,H,Z,D,L,ai){var n=(H===null);if(n){H=L.alt}var J=ah.viewBox;var p=Z.getSize("fontSize",ah.baseSize);var X=Z.get("letterSpacing");X=(X=="normal")?0:p.convertFrom(parseInt(X,10));var K=0,Y=0,W=0,F=0;var I=D.textShadow,U=[];if(I){for(var ag=I.length;ag--;){var O=I[ag];var T=p.convertFrom(parseFloat(O.offX));var R=p.convertFrom(parseFloat(O.offY));U[ag]=[T,R];if(R<K){K=R}if(T>Y){Y=T}if(R>W){W=R}if(T<F){F=T}}}var al=Cufon.CSS.textTransform(H,Z).split(""),B;var o=ah.glyphs,E,r,ac;var h=0,v,N=[];for(var ag=0,ae=0,ab=al.length;ag<ab;++ag){E=o[B=al[ag]]||ah.missingGlyph;if(!E){continue}if(r){h-=ac=r[B]||0;N[ae-1]-=ac}h+=v=N[ae++]=~~(E.w||ah.w)+X;r=E.k}if(v===undefined){return null}Y+=J.width-v;F+=J.minX;var C,q;if(n){C=L;q=L.firstChild}else{C=document.createElement("span");C.className="cufon cufon-canvas";C.alt=H;q=document.createElement("canvas");C.appendChild(q);if(D.printable){var ad=document.createElement("span");ad.className="cufon-alt";ad.appendChild(document.createTextNode(H));C.appendChild(ad)}}var am=C.style;var Q=q.style;var m=p.convert(J.height);var ak=Math.ceil(m);var V=ak/m;var P=V*Cufon.CSS.fontStretch(Z.get("fontStretch"));var S=h*P;var aa=Math.ceil(p.convert(S+Y-F));var t=Math.ceil(p.convert(J.height-K+W));q.width=aa;q.height=t;Q.width=aa+"px";Q.height=t+"px";K+=J.minY;Q.top=Math.round(p.convert(K-ah.ascent))+"px";Q.left=Math.round(p.convert(F))+"px";var A=Math.ceil(p.convert(S))+"px";if(a){am.width=A;am.height=p.convert(ah.height)+"px"}else{am.paddingLeft=A;am.paddingBottom=(p.convert(ah.height)-1)+"px"}var aj=q.getContext("2d"),M=m/J.height;aj.scale(M,M*V);aj.translate(-F,-K);aj.lineWidth=ah.face["underline-thickness"];aj.save();function s(i,g){aj.strokeStyle=g;aj.beginPath();aj.moveTo(0,i);aj.lineTo(h,i);aj.stroke()}var u=D.enableTextDecoration?Cufon.CSS.textDecoration(ai,Z):{};if(u.underline){s(-ah.face["underline-position"],u.underline)}if(u.overline){s(ah.ascent,u.overline)}function af(){aj.scale(P,1);for(var x=0,k=0,g=al.length;x<g;++x){var y=o[al[x]]||ah.missingGlyph;if(!y){continue}if(y.d){aj.beginPath();if(y.code){c(y.code,aj)}else{y.code=d("m"+y.d,aj)}aj.fill()}aj.translate(N[k++],0)}aj.restore()}if(I){for(var ag=I.length;ag--;){var O=I[ag];aj.save();aj.fillStyle=O.color;aj.translate.apply(aj,U[ag]);af()}}var z=D.textGradient;if(z){var G=z.stops,w=aj.createLinearGradient(0,J.minY,0,J.maxY);for(var ag=0,ab=G.length;ag<ab;++ag){w.addColorStop.apply(w,G[ag])}aj.fillStyle=w}else{aj.fillStyle=Z.get("color")}af();if(u["line-through"]){s(-ah.descent,u["line-through"])}return C}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var f=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(f?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function c(g,h){return a(g,/(?:em|ex|%)$|^[a-z-]+$/i.test(h)?"1em":h)}function a(j,k){if(/px$/i.test(k)){return parseFloat(k)}var i=j.style.left,h=j.runtimeStyle.left;j.runtimeStyle.left=j.currentStyle.left;j.style.left=k.replace("%","em");var g=j.style.pixelLeft;j.style.left=i;j.runtimeStyle.left=h;return g}var e={};function d(n){var o=n.id;if(!e[o]){var l=n.stops,m=document.createElement("cvml:fill"),g=[];m.type="gradient";m.angle=180;m.focus="0";m.method="sigma";m.color=l[0][1];for(var i=1,h=l.length-1;i<h;++i){g.push(l[i][0]*100+"% "+l[i][1])}m.colors=g.join(",");m.color2=l[h][1];e[o]=m}return e[o]}return function(ai,J,ac,F,N,aj,aa){var n=(J===null);if(n){J=N.alt}var L=ai.viewBox;var p=ac.computedFontSize||(ac.computedFontSize=new Cufon.CSS.Size(c(aj,ac.get("fontSize"))+"px",ai.baseSize));var Z=ac.computedLSpacing;if(Z==undefined){Z=ac.get("letterSpacing");ac.computedLSpacing=Z=(Z=="normal")?0:~~p.convertFrom(a(aj,Z))}var B,q;if(n){B=N;q=N.firstChild}else{B=document.createElement("span");B.className="cufon cufon-vml";B.alt=J;q=document.createElement("span");q.className="cufon-vml-canvas";B.appendChild(q);if(F.printable){var af=document.createElement("span");af.className="cufon-alt";af.appendChild(document.createTextNode(J));B.appendChild(af)}if(!aa){B.appendChild(document.createElement("cvml:shape"))}}var ao=B.style;var U=q.style;var h=p.convert(L.height),al=Math.ceil(h);var Y=al/h;var S=Y*Cufon.CSS.fontStretch(ac.get("fontStretch"));var X=L.minX,W=L.minY;U.height=al;U.top=Math.round(p.convert(W-ai.ascent));U.left=Math.round(p.convert(X));ao.height=p.convert(ai.height)+"px";var u=F.enableTextDecoration?Cufon.CSS.textDecoration(aj,ac):{};var I=ac.get("color");var an=Cufon.CSS.textTransform(J,ac).split(""),A;var o=ai.glyphs,G,r,ae;var g=0,O=[],V=0,w;var y,K=F.textShadow;for(var ah=0,ag=0,ad=an.length;ah<ad;++ah){G=o[A=an[ah]]||ai.missingGlyph;if(!G){continue}if(r){g-=ae=r[A]||0;O[ag-1]-=ae}g+=w=O[ag++]=~~(G.w||ai.w)+Z;r=G.k}if(w===undefined){return null}var z=-X+g+(L.width-w);var am=p.convert(z*S),ab=Math.round(am);var R=z+","+L.height,m;var M="r"+R+"ns";var x=F.textGradient&&d(F.textGradient);for(ah=0,ag=0;ah<ad;++ah){G=o[an[ah]]||ai.missingGlyph;if(!G){continue}if(n){y=q.childNodes[ag];while(y.firstChild){y.removeChild(y.firstChild)}}else{y=document.createElement("cvml:shape");q.appendChild(y)}y.stroked="f";y.coordsize=R;y.coordorigin=m=(X-V)+","+W;y.path=(G.d?"m"+G.d+"xe":"")+"m"+m+M;y.fillcolor=I;if(x){y.appendChild(x.cloneNode(false))}var ak=y.style;ak.width=ab;ak.height=al;if(K){var t=K[0],s=K[1];var E=Cufon.CSS.color(t.color),C;var Q=document.createElement("cvml:shadow");Q.on="t";Q.color=E.color;Q.offset=t.offX+","+t.offY;if(s){C=Cufon.CSS.color(s.color);Q.type="double";Q.color2=C.color;Q.offset2=s.offX+","+s.offY}Q.opacity=E.opacity||(C&&C.opacity)||1;y.appendChild(Q)}V+=O[ag++]}var P=y.nextSibling,v,D;if(F.forceHitArea){if(!P){P=document.createElement("cvml:rect");P.stroked="f";P.className="cufon-vml-cover";v=document.createElement("cvml:fill");v.opacity=0;P.appendChild(v);q.appendChild(P)}D=P.style;D.width=ab;D.height=al}else{if(P){q.removeChild(P)}}ao.width=Math.max(Math.ceil(p.convert(g*S)),0);if(f){var T=ac.computedYAdjust;if(T===undefined){var H=ac.get("lineHeight");if(H=="normal"){H="1em"}else{if(!isNaN(H)){H+="em"}}ac.computedYAdjust=T=0.5*(a(aj,H)-parseFloat(ao.height))}if(T){ao.marginTop=Math.ceil(T)+"px";ao.marginBottom=T+"px"}}return B}})());
Cufon.replace('h1');
Cufon.replace('h2');
Cufon.replace('h3');
Cufon.replace('h4');
Cufon.replace('h5');
Cufon.replace('h6');

/* aurulent_sans_400.font */
Cufon.registerFont({"w":550,"face":{"font-family":"Aurulent Sans","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"12","bbox":"-75 -794 926 205","underline-thickness":"71","underline-position":"-1","stemh":"71","stemv":"95","unicode-range":"U+0020-U+201D"},"glyphs":{" ":{"w":250},"!":{"d":"174,-565r-9,370r-76,0r-9,-370r0,-158r94,0r0,158xm174,0r-94,0r0,-95r94,0r0,95","w":255},"\"":{"d":"310,-770v3,87,-3,166,-14,240r-67,0v-10,-74,-17,-152,-14,-240r95,0xm135,-770v3,87,-3,166,-14,240r-67,0v-10,-74,-17,-152,-14,-240r95,0","w":350},"#":{"d":"392,-445r-122,0r-32,167r122,0xm615,-495r-9,50r-147,0r-32,167r147,0r-9,50r-148,0r-43,228r-67,0r44,-228r-123,0r-43,228r-67,0r44,-228r-147,0r9,-50r147,0r32,-167r-147,0r9,-50r148,0r43,-228r67,0r-44,228r123,0r43,-228r67,0r-44,228r147,0","w":630},"$":{"d":"298,71r-53,0r0,-71v-66,-2,-140,-23,-205,-62r0,-77v66,39,140,66,205,68r0,-263v-90,-28,-205,-85,-205,-208v0,-99,89,-167,205,-179r0,-73r53,0r0,71v50,2,109,15,165,37r0,88v-54,-22,-110,-45,-165,-52r0,233v117,45,194,105,194,213v0,113,-84,186,-194,201r0,74xm245,-436r0,-215v-59,7,-110,40,-110,96v0,66,67,102,110,119xm298,-311r0,236v58,-12,99,-49,99,-111v0,-60,-38,-96,-99,-125","w":532},"%":{"d":"581,-57v95,-1,94,-239,0,-240v-95,1,-94,239,0,240xm726,-177v0,92,-59,177,-145,177v-87,0,-145,-85,-145,-177v0,-93,58,-177,145,-177v86,0,145,84,145,177xm185,-426v95,-1,94,-239,0,-240v-95,1,-94,239,0,240xm330,-546v0,93,-58,177,-145,177v-86,0,-145,-84,-145,-177v0,-92,59,-177,145,-177v87,0,145,85,145,177xm687,-741r-515,759r-93,0r515,-759r93,0","w":765},"&":{"d":"463,-48v-133,128,-423,65,-423,-156v0,-114,85,-199,160,-220v-30,-45,-46,-97,-46,-144v0,-100,72,-173,162,-173v87,0,160,69,160,163v0,90,-69,167,-138,197r131,199v23,-53,34,-116,34,-180r79,0v0,91,-22,181,-66,250r73,112r-93,0xm288,-450v62,-30,93,-78,93,-131v0,-48,-26,-89,-66,-89v-88,0,-78,160,-27,220xm135,-203v-2,171,204,186,287,95r-172,-248v-77,28,-115,83,-115,153","w":630},"'":{"d":"134,-770v2,94,-2,181,-11,264r-72,0v-9,-83,-13,-170,-11,-264r94,0","w":175},"(":{"d":"250,129r-81,0v-61,-144,-129,-304,-129,-444v0,-140,68,-300,129,-444r81,0v-61,142,-115,289,-115,444v0,155,54,302,115,444","w":250},")":{"d":"210,-315v0,140,-68,300,-129,444r-81,0v61,-142,115,-289,115,-444v0,-155,-54,-302,-115,-444r81,0v61,144,129,304,129,444","w":250},"*":{"d":"448,-282r-33,58v-54,-30,-100,-67,-150,-101v3,54,12,107,12,160r0,20r-66,0v-2,-63,8,-119,12,-180v-45,30,-86,64,-133,91r-17,10r-33,-58v50,-31,108,-54,162,-79v-54,-27,-112,-48,-162,-80r33,-58v54,30,100,67,150,101v-3,-54,-12,-107,-12,-160r0,-20r66,0v2,63,-8,119,-12,180v45,-30,86,-64,133,-91r17,-10r33,58v-50,31,-108,54,-162,79v54,27,112,48,162,80","w":488},"+":{"d":"534,-259r-208,0r0,199r-78,0r0,-199r-208,0r0,-72r208,0r0,-199r78,0r0,199r208,0r0,72","w":575},",":{"d":"174,-32r-71,174r-59,0v13,-78,40,-142,36,-237r94,0r0,63","w":255},"-":{"d":"260,-259r-220,0r0,-72r220,0r0,72","w":300},".":{"d":"174,0r-94,0r0,-95r94,0r0,95","w":255},"\/":{"d":"279,-759r-199,888r-81,0r199,-888r81,0","w":278},"0":{"d":"275,-53v119,-14,135,-191,135,-310v0,-120,-16,-294,-135,-309v-118,14,-135,191,-135,309v0,121,16,295,135,310xm275,-743v96,0,240,72,240,380v0,310,-144,381,-240,381v-96,0,-240,-71,-240,-381v0,-308,144,-380,240,-380"},"1":{"d":"494,0r-388,0r0,-71r153,0r0,-572r-153,60r0,-71r172,-75r76,0r0,658r140,0r0,71"},"2":{"d":"470,-539v0,196,-288,286,-336,468r336,0r0,71r-430,0r0,-78v71,-211,335,-281,335,-461v0,-74,-61,-133,-135,-133v-64,0,-126,20,-182,51r0,-79v56,-31,119,-43,182,-43v123,0,230,86,230,204"},"3":{"d":"393,-205v0,-110,-113,-153,-230,-143r0,-71v114,10,212,-37,212,-132v0,-56,-23,-121,-115,-121v-56,0,-110,15,-162,36r0,-81v51,-20,107,-26,162,-26v133,0,210,79,210,192v0,81,-62,137,-143,163v150,26,161,149,161,183v0,137,-97,223,-228,223v-61,0,-123,-7,-180,-30r0,-82v58,24,118,41,180,41v81,0,133,-61,133,-152"},"4":{"d":"438,0r-95,0r0,-218r-333,0r0,-71r333,-436r95,0r0,436r67,0r0,71r-67,0r0,218xm105,-289r238,0r0,-312"},"5":{"d":"175,-457v262,7,313,143,313,238v0,95,-49,237,-301,237v-37,0,-74,-2,-109,-16r0,-80v128,51,318,34,315,-141v0,-53,-21,-107,-67,-132v-67,-37,-142,-37,-230,-35r0,-339r374,0r0,71r-295,0r0,197"},"6":{"d":"415,-225v0,-79,-42,-174,-121,-174v-86,0,-156,68,-156,154v0,97,49,192,137,192v110,0,140,-78,140,-172xm294,-464v126,0,216,88,216,239v0,194,-129,243,-235,243v-74,0,-142,-39,-179,-103v-49,-83,-56,-182,-56,-278v0,-99,13,-201,73,-280v76,-99,226,-130,350,-70r0,80v-41,-23,-85,-39,-132,-39v-78,0,-190,46,-196,281v38,-45,95,-73,159,-73"},"7":{"d":"510,-640v-128,176,-240,393,-281,640r-96,0v48,-245,165,-467,301,-640r-394,0r0,-85r470,0r0,85"},"8":{"d":"396,-574v0,-63,-56,-112,-121,-112v-65,0,-121,49,-121,112v0,72,76,110,146,135v56,-23,96,-74,96,-135xm415,-187v0,-89,-79,-152,-165,-183v-71,28,-115,103,-115,183v0,81,61,148,140,148v79,0,140,-67,140,-148xm510,-187v0,119,-110,205,-235,205v-125,0,-235,-86,-235,-205v0,-95,69,-171,159,-206v-73,-39,-130,-100,-130,-181v0,-101,98,-169,206,-169v108,0,206,68,206,169v0,75,-58,130,-130,158v91,48,159,129,159,229"},"9":{"d":"135,-500v0,79,42,174,121,174v86,0,156,-68,156,-154v0,-97,-49,-192,-137,-192v-110,0,-140,78,-140,172xm40,-500v0,-194,129,-243,235,-243v74,0,142,39,179,103v49,83,56,182,56,277v0,100,-13,202,-73,281v-76,99,-226,130,-350,70r0,-80v41,23,85,39,132,39v78,0,190,-46,196,-281v-38,45,-95,73,-159,73v-126,0,-216,-88,-216,-239"},":":{"d":"174,-435r-94,0r0,-95r94,0r0,95xm174,0r-94,0r0,-95r94,0r0,95","w":255},";":{"d":"174,-435r-94,0r0,-95r94,0r0,95xm174,-32r-71,174r-59,0v13,-78,40,-142,36,-237r94,0r0,63","w":255},"<":{"d":"508,-55r-468,-225r0,-30r468,-225r0,81r-324,159r324,159r0,81","w":547},"=":{"d":"534,-188r-494,0r0,-71r494,0r0,71xm534,-331r-494,0r0,-71r494,0r0,71","w":575},">":{"d":"508,-280r-468,225r0,-81r324,-159r-324,-159r0,-81r468,225r0,30","w":547},"?":{"d":"285,0r-95,0r0,-95r95,0r0,95xm510,-569v0,154,-235,150,-225,327r0,47r-95,0v-2,-61,1,-113,26,-153v53,-90,199,-108,199,-211v0,-75,-77,-111,-162,-111v-63,0,-132,20,-195,53r0,-78v155,-89,452,-49,452,126"},"@":{"d":"566,-519v-7,-54,-35,-139,-176,-139v-164,0,-263,114,-263,361v0,285,126,396,346,349r0,62v-26,7,-54,9,-79,9v-203,0,-346,-121,-346,-421v0,-299,143,-419,345,-419v78,0,144,18,190,59v65,58,65,143,65,228r0,365r-79,0r0,-52v-115,102,-277,58,-278,-170v0,-208,140,-243,213,-243v23,0,44,4,62,11xm528,-483v-91,0,-151,66,-151,183v0,170,109,202,192,124r0,-300v-13,-5,-27,-7,-41,-7","w":735},"A":{"d":"648,0r-100,0r-76,-202r-305,0r-74,202r-83,0r265,-725r100,0xm444,-277r-127,-336r-123,336r250,0","w":658},"B":{"d":"388,-381v134,30,186,118,186,197v0,55,-21,103,-65,134v-107,77,-268,43,-429,50r0,-725v153,7,302,-27,403,48v48,36,66,88,66,133v0,65,-45,137,-161,163xm180,-75v135,1,292,18,294,-113v0,-43,-20,-82,-52,-110v-68,-58,-144,-44,-242,-46r0,269xm247,-419v91,9,203,-31,202,-124v0,-27,-10,-58,-38,-79v-57,-44,-144,-24,-231,-28r0,231r67,0","w":615},"C":{"d":"35,-362v0,-238,129,-381,337,-381v70,0,146,16,218,43r0,85v-126,-52,-281,-90,-375,8v-60,62,-70,156,-70,245v0,88,10,182,70,244v104,106,263,53,375,-17r0,93v-69,39,-146,60,-222,60v-202,0,-333,-143,-333,-380","w":630},"D":{"d":"480,-157v88,-103,91,-302,7,-412v-84,-110,-168,-75,-307,-81r0,575v131,-3,213,19,300,-82xm557,-619v120,131,118,387,-6,513v-135,136,-270,100,-471,106r0,-725v206,8,345,-38,477,106","w":687},"E":{"d":"570,0r-490,0r0,-725r478,0r0,75r-378,0r0,224r305,0r0,75r-305,0r0,276r390,0r0,75","w":598},"F":{"d":"542,-650r-362,0r0,224r292,0r0,75r-292,0r0,351r-100,0r0,-725r462,0r0,75","w":582},"G":{"d":"35,-362v0,-240,139,-381,352,-381v75,0,155,17,231,44r0,83v-134,-50,-297,-89,-398,9v-63,62,-75,155,-75,245v0,89,12,182,75,244v73,72,188,73,298,39r0,-191r-93,0r0,-75r193,0r0,316v-77,26,-156,47,-235,47v-209,0,-348,-144,-348,-380","w":657},"H":{"d":"630,0r-100,0r0,-325r-350,0r0,325r-100,0r0,-725r100,0r0,325r350,0r0,-325r100,0r0,725","w":710},"I":{"d":"180,0r-100,0r0,-725r100,0r0,725","w":260},"J":{"d":"148,-57v104,0,128,-92,128,-193r0,-475r100,0r0,454v0,86,-2,170,-56,230v-61,67,-205,73,-310,35r0,-83v44,15,93,32,138,32","w":456},"K":{"d":"592,0r-100,0r-273,-326r-39,44r0,282r-100,0r0,-725r100,0r0,324r291,-324r106,0r-306,341","w":615},"L":{"d":"538,0r-458,0r0,-725r100,0r0,650r358,0r0,75","w":548},"M":{"d":"752,0r-100,0r0,-613r-190,562r-100,0r-199,-561r0,612r-83,0r0,-725r143,0r197,554r187,-554r145,0r0,725","w":831},"N":{"d":"163,0r-83,0r0,-725r100,0r367,591r0,-591r83,0r0,725r-100,0r-367,-591r0,591","w":710},"O":{"d":"623,-363v0,-89,-12,-183,-76,-245v-85,-82,-241,-82,-326,0v-64,62,-76,156,-76,245v0,90,12,184,76,246v85,82,241,82,326,0v64,-62,76,-156,76,-246xm384,-743v209,0,349,145,349,380v0,239,-142,381,-349,381v-211,0,-349,-146,-349,-381v0,-235,140,-380,349,-380","w":767},"P":{"d":"532,-671v103,81,94,235,-4,321v-92,81,-208,58,-348,61r0,289r-100,0r0,-725v170,8,343,-32,452,54xm180,-364v110,-6,209,24,277,-41v61,-59,66,-158,2,-211v-66,-55,-174,-29,-279,-34r0,286","w":632},"Q":{"d":"533,-105v71,-56,90,-154,90,-258v0,-89,-12,-183,-76,-245v-85,-82,-241,-82,-326,0v-64,62,-76,156,-76,245v0,90,12,184,76,246v61,59,155,75,247,47v-35,-62,-79,-97,-132,-111r19,-73v90,25,155,97,178,149xm384,-743v209,0,349,145,349,380v0,149,-58,273,-165,335v41,72,97,108,160,108r0,75v-109,0,-196,-81,-228,-154v-263,70,-465,-87,-465,-364v0,-235,140,-380,349,-380","w":767},"R":{"d":"568,-513v0,43,-10,180,-183,214r241,299r-116,0r-234,-289r-96,0r0,289r-100,0r0,-725v161,7,317,-27,420,55v50,40,68,99,68,157xm180,-364v95,-2,181,14,242,-39v62,-54,66,-157,5,-212v-59,-54,-151,-31,-247,-35r0,286","w":629},"S":{"d":"562,-199v0,233,-330,268,-522,157r0,-93v81,45,169,78,255,78v85,0,167,-33,167,-118v0,-70,-55,-110,-165,-145r-45,-15v-166,-55,-212,-103,-212,-191v0,-224,286,-259,472,-174r0,85v-68,-27,-138,-53,-212,-53v-77,0,-160,28,-160,114v0,66,49,84,167,123r46,14v152,50,209,123,209,218","w":602},"T":{"d":"578,-650r-234,0r0,650r-100,0r0,-650r-234,0r0,-75r568,0r0,75","w":587},"U":{"d":"630,-277v0,86,1,173,-71,232v-105,87,-303,87,-408,1v-73,-59,-71,-147,-71,-233r0,-448r100,0r0,466v0,58,-1,118,46,159v66,59,193,59,259,0v46,-41,45,-101,45,-159r0,-466r100,0r0,448","w":710},"V":{"d":"336,-114r219,-611r83,0r-260,725r-100,0r-268,-725r100,0","w":648},"W":{"d":"926,-725r-173,725r-124,0r-163,-573r-149,573r-126,0r-181,-725r100,0r153,613r159,-613r100,0r175,612r146,-612r83,0","w":936},"X":{"d":"645,0r-114,0r-211,-293r-218,293r-101,0r270,-361r-263,-364r114,0r206,286r213,-286r100,0r-263,354","w":648},"Y":{"d":"373,0r-100,0r0,-290r-263,-435r100,0r221,365r214,-365r83,0r-255,435r0,290","w":638},"Z":{"d":"574,0r-534,0r0,-93r432,-557r-416,0r0,-75r518,0r0,93r-432,557r432,0r0,75","w":613},"[":{"d":"258,129r-218,0r0,-888r218,0r0,72r-123,0r0,744r123,0r0,72","w":268},"\\":{"d":"279,129r-81,0r-199,-888r81,0","w":278},"]":{"d":"228,-759r0,888r-218,0r0,-72r123,0r0,-744r-123,0r0,-72r218,0","w":268},"^":{"d":"501,-362r-89,0r-155,-281r-155,281r-89,0r200,-361r88,0","w":515},"_":{"d":"500,71r-500,0r0,-71r500,0r0,71","w":500},"`":{"d":"170,-593r-59,1r-72,-131r0,-47r95,-1v-4,75,24,119,36,178","w":222},"a":{"d":"42,-134v0,-149,172,-177,320,-175v-2,-91,15,-162,-110,-162v-58,0,-118,15,-175,39r0,-73v60,-26,124,-37,188,-37v191,0,192,105,192,209r0,333r-95,0r0,-70v-48,48,-107,82,-174,82v-89,0,-146,-61,-146,-146xm362,-252v-102,-4,-225,15,-225,113v0,48,33,80,85,80v54,0,100,-34,140,-77r0,-116","w":522},"b":{"d":"505,-303v0,146,-56,315,-278,315v-41,0,-100,-5,-152,-29r0,-753r95,0r0,315v38,-52,95,-87,163,-87v77,0,172,44,172,239xm231,-59v135,0,169,-112,169,-231v0,-139,-44,-181,-101,-181v-58,0,-106,42,-129,98r0,307v20,5,40,7,61,7","w":542},"c":{"d":"137,-265v0,126,50,206,162,206v50,0,105,-16,159,-32r0,77v-54,16,-110,26,-159,26v-159,0,-257,-97,-257,-277v0,-179,97,-277,258,-277v48,0,104,8,158,22r0,75v-54,-13,-110,-26,-157,-26v-114,0,-164,79,-164,206","w":499},"d":{"d":"37,-249v0,-234,150,-293,278,-293v16,0,36,1,57,4r0,-232r95,0r0,770r-95,0r0,-65v-35,46,-86,77,-146,77v-89,0,-189,-67,-189,-261xm372,-464v-139,-27,-229,28,-230,208v0,139,53,197,117,197v53,0,95,-40,113,-92r0,-313","w":542},"e":{"d":"147,-325r248,0v-8,-97,-54,-146,-117,-146v-60,0,-115,44,-131,146xm309,12v-170,0,-272,-88,-272,-281v0,-207,131,-273,236,-273v117,0,235,94,218,288r-349,0v-2,233,170,211,338,169r0,71v-58,17,-117,26,-171,26","w":534},"f":{"d":"95,-530v2,-165,33,-252,170,-252v34,0,60,6,85,14r0,73v-22,-7,-47,-16,-74,-16v-85,0,-86,86,-86,181r95,0r0,71r-95,0r0,459r-95,0r0,-459r-71,0r0,-71r71,0","w":340},"g":{"d":"252,-231v93,0,111,-54,111,-120v0,-69,-22,-120,-111,-120v-97,0,-110,65,-110,120v0,69,20,120,110,120xm37,-351v0,-78,53,-191,215,-191v39,0,79,7,113,24v33,-36,77,-60,126,-60r0,72v-29,0,-57,5,-81,18v112,120,62,326,-158,329v-23,0,-46,-3,-69,-9v-46,52,6,81,80,95r93,18v59,11,144,31,144,120v0,103,-132,129,-263,129v-47,0,-123,-4,-195,-23r0,-83v83,23,168,34,244,34v62,0,120,-8,120,-50v0,-41,-60,-48,-76,-51r-94,-18v-57,-11,-148,-31,-148,-114v0,-31,16,-59,39,-80v-59,-35,-90,-98,-90,-160","w":515},"h":{"d":"396,-347v0,-69,-2,-124,-74,-124v-65,0,-117,48,-152,109r0,362r-95,0r0,-770r95,0r0,324v48,-57,112,-96,188,-96v135,0,133,121,133,213r0,329r-95,0r0,-347","w":565},"i":{"d":"170,-630r-95,0r0,-95r95,0r0,95xm170,0r-95,0r0,-530r95,0r0,530","w":245},"j":{"d":"169,-630r-95,0r0,-95r95,0r0,95xm1,134v73,0,73,-69,73,-146r0,-518r95,0r0,490v0,128,0,245,-154,245v-37,0,-64,-7,-90,-16r0,-74v23,9,49,19,76,19","w":245},"k":{"d":"477,0r-96,0r-181,-227r-30,36r0,191r-95,0r0,-770r95,0r0,461r183,-221r99,0r-196,235","w":492},"l":{"d":"170,0r-95,0r0,-770r95,0r0,770","w":245},"m":{"d":"369,-346v5,-61,-14,-125,-75,-125v-56,0,-98,41,-124,94r0,377r-95,0r0,-530r95,0r0,64v40,-46,94,-76,157,-76v52,0,105,20,125,90v41,-54,98,-90,167,-90v139,0,136,131,136,214r0,328r-95,0r0,-346v0,-58,0,-125,-74,-125v-56,0,-98,41,-124,94r1,377r-94,0r0,-346","w":830},"n":{"d":"396,-347v0,-69,-2,-124,-74,-124v-65,0,-117,48,-152,109r0,362r-95,0r0,-530r95,0r0,84v48,-57,112,-96,188,-96v135,0,133,121,133,213r0,329r-95,0r0,-347","w":565},"o":{"d":"416,-265v0,-60,-5,-123,-46,-168v-47,-50,-135,-50,-182,0v-41,45,-46,108,-46,168v0,60,5,123,46,168v47,50,135,50,182,0v41,-45,46,-108,46,-168xm279,-542v145,0,242,109,242,277v0,167,-95,277,-242,277v-145,0,-242,-109,-242,-277v0,-167,95,-277,242,-277","w":559},"p":{"d":"505,-303v0,146,-56,315,-278,315v-17,0,-36,0,-57,-3r0,184r-95,0r0,-723r95,0r0,75v38,-52,95,-87,163,-87v77,0,172,44,172,239xm231,-59v135,0,169,-112,169,-231v0,-139,-44,-181,-101,-181v-58,0,-106,42,-129,98r0,307v20,5,40,7,61,7","w":542},"q":{"d":"37,-249v0,-234,150,-293,278,-293v38,0,98,5,152,29r0,706r-95,0r0,-258v-35,46,-86,77,-146,77v-89,0,-189,-67,-189,-261xm372,-464v-139,-27,-229,28,-230,208v0,139,53,197,117,197v53,0,95,-40,113,-92r0,-313","w":542},"r":{"d":"398,-450v-111,-28,-197,32,-228,122r0,328r-95,0r0,-530r95,0r0,101v45,-78,116,-128,228,-109r0,88","w":410},"s":{"d":"444,-159v0,101,-87,171,-221,171v-33,0,-102,-3,-164,-31r0,-77v62,27,130,37,174,37v72,0,116,-31,116,-80v0,-79,-101,-82,-163,-105v-69,-26,-127,-74,-127,-145v0,-92,95,-153,208,-153v41,0,92,8,142,22r0,76v-50,-14,-100,-27,-145,-27v-58,0,-111,21,-111,66v0,67,105,74,162,95v67,25,129,66,129,151","w":485},"t":{"d":"190,-173v0,63,1,114,64,114v19,0,47,-4,68,-8r0,71v-31,5,-62,8,-89,8v-134,0,-138,-77,-138,-203r0,-268r-71,0r0,-71r71,0r0,-120r95,0r0,120r132,0r0,71r-132,0r0,286","w":334},"u":{"d":"170,-185v0,62,1,126,75,126v65,0,116,-47,151,-108r0,-363r95,0r0,530r-95,0r0,-84v-48,57,-111,96,-185,96v-139,0,-136,-131,-136,-215r0,-327r95,0r0,345","w":565},"v":{"d":"259,-110r146,-420r79,0r-185,530r-95,0r-194,-530r95,0","w":495},"w":{"d":"710,-530r-132,530r-109,0r-103,-386r-108,386r-105,0r-143,-530r85,0r114,424r118,-424r85,0r114,424r105,-424r79,0","w":720},"x":{"d":"484,0r-95,0r-148,-209r-145,209r-93,0r191,-275r-180,-255r95,0r144,203r141,-203r93,0r-188,269","w":495},"y":{"d":"484,-530r-253,723r-79,0r59,-168r-201,-555r95,0r154,418r146,-418r79,0","w":495},"z":{"d":"458,0r-416,0r0,-80r312,-379r-300,0r0,-71r404,0r0,80r-312,379r312,0r0,71","w":499},"{":{"d":"113,-315v24,19,52,57,52,82r0,204v2,57,45,95,113,86r0,72v-112,10,-191,-61,-191,-158r0,-198v-14,-31,-43,-52,-77,-52r0,-72v34,0,63,-21,77,-52r0,-198v3,-96,80,-168,191,-158r0,72v-68,-8,-113,28,-113,86r0,204v0,25,-26,62,-52,82","w":287},"|":{"d":"158,129r-78,0r0,-888r78,0r0,888","w":238},"}":{"d":"175,-315v-24,-19,-52,-57,-52,-82r0,-204v-2,-57,-45,-95,-113,-86r0,-72v112,-10,191,61,191,158r0,198v14,31,43,52,77,52r0,72v-34,0,-63,21,-77,52r0,198v-3,96,-80,168,-191,158r0,-72v68,8,113,-28,113,-86r0,-204v0,-25,26,-62,52,-82","w":287},"~":{"d":"179,-384v94,0,144,107,210,107v42,0,50,-48,50,-89r95,0v0,87,-61,160,-139,160v-94,0,-144,-107,-210,-107v-42,0,-50,48,-50,89r-95,0v0,-87,61,-160,139,-160","w":575},"\u2018":{"d":"150,-770v-13,78,-40,142,-36,237r-94,0r0,-63r71,-174r59,0","w":215},"\u2019":{"d":"194,-707r-71,174r-59,0v13,-78,40,-142,36,-237r94,0r0,63","w":215},"\u201c":{"d":"346,-770v-13,78,-40,142,-36,237r-95,0r0,-63r71,-174r60,0xm171,-770v-13,78,-40,142,-36,237r-95,0r0,-63r71,-174r60,0","w":390},"\u201d":{"d":"350,-707r-71,174r-60,0v13,-78,40,-142,36,-237r95,0r0,63xm175,-707r-71,174r-60,0v13,-78,40,-142,36,-237r95,0r0,63","w":390},"\u00a0":{"w":250}}});

