/*Start of added script*/
sfHover = function() {
	var sfEls = document.getElementById("menu").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

/*End of Added Script*/

var IEPNGFix=window.IEPNGFix||{};IEPNGFix.tileBG=function(elm,pngSrc,ready){var data=this.data[elm.uniqueID],elmW=Math.max(elm.clientWidth,elm.scrollWidth),elmH=Math.max(elm.clientHeight,elm.scrollHeight),bgX=elm.currentStyle.backgroundPositionX,bgY=elm.currentStyle.backgroundPositionY,bgR=elm.currentStyle.backgroundRepeat;if(!data.tiles){data.tiles={elm:elm,src:'',cache:[],img:new Image(),old:{}};}
var tiles=data.tiles,pngW=tiles.img.width,pngH=tiles.img.height;if(pngSrc){if(!ready&&pngSrc!=tiles.src){tiles.img.onload=function(){this.onload=null;IEPNGFix.tileBG(elm,pngSrc,1);};return tiles.img.src=pngSrc;}}else{if(tiles.src)ready=1;pngW=pngH=0;}
tiles.src=pngSrc;if(!ready&&elmW==tiles.old.w&&elmH==tiles.old.h&&bgX==tiles.old.x&&bgY==tiles.old.y&&bgR==tiles.old.r){return;}
var pos={top:'0%',left:'0%',center:'50%',bottom:'100%',right:'100%'},x,y,pc;x=pos[bgX]||bgX;y=pos[bgY]||bgY;if(pc=x.match(/(\d+)%/)){x=Math.round((elmW-pngW)*(parseInt(pc[1])/100));}
if(pc=y.match(/(\d+)%/)){y=Math.round((elmH-pngH)*(parseInt(pc[1])/100));}
x=parseInt(x);y=parseInt(y);var repeatX={'repeat':1,'repeat-x':1}[bgR],repeatY={'repeat':1,'repeat-y':1}[bgR];if(repeatX){x%=pngW;if(x>0)x-=pngW;}
if(repeatY){y%=pngH;if(y>0)y-=pngH;}
this.hook.enabled=0;if(!({relative:1,absolute:1}[elm.currentStyle.position])){elm.style.position='relative';}
var count=0,xPos,maxX=repeatX?elmW:x+0.1,yPos,maxY=repeatY?elmH:y+0.1,d,s,isNew;if(pngW&&pngH){for(xPos=x;xPos<maxX;xPos+=pngW){for(yPos=y;yPos<maxY;yPos+=pngH){isNew=0;if(!tiles.cache[count]){tiles.cache[count]=document.createElement('div');isNew=1;}
var clipR=Math.max(0,xPos+pngW>elmW?elmW-xPos:pngW),clipB=Math.max(0,yPos+pngH>elmH?elmH-yPos:pngH);d=tiles.cache[count];s=d.style;s.behavior='none';s.left=(xPos-parseInt(elm.currentStyle.paddingLeft))+'px';s.top=yPos+'px';s.width=clipR+'px';s.height=clipB+'px';s.clip='rect('+
(yPos<0?0-yPos:0)+'px,'+
clipR+'px,'+
clipB+'px,'+
(xPos<0?0-xPos:0)+'px)';s.display='block';if(isNew){s.position='absolute';s.zIndex=-999;if(elm.firstChild){elm.insertBefore(d,elm.firstChild);}else{elm.appendChild(d);}}
this.fix(d,pngSrc,0);count++;}}}
while(count<tiles.cache.length){this.fix(tiles.cache[count],'',0);tiles.cache[count++].style.display='none';}
this.hook.enabled=1;tiles.old={w:elmW,h:elmH,x:bgX,y:bgY,r:bgR};};IEPNGFix.update=function(){for(var i in IEPNGFix.data){var t=IEPNGFix.data[i].tiles;if(t&&t.elm&&t.src){IEPNGFix.tileBG(t.elm,t.src);}}};IEPNGFix.update.timer=0;if(window.attachEvent&&!window.opera){window.attachEvent('onresize',function(){clearTimeout(IEPNGFix.update.timer);IEPNGFix.update.timer=setTimeout(IEPNGFix.update,100);});}



/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.97 (14-FEB-2011)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.3.2 or later
 */
;(function($){var ver="2.97";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>1){opts.after[1].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.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};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:	 2.73
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
;(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.fadeout=function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css({display:"block",opacity:1});opts.before.push(function(curr,next,opts,w,h,rev){$(curr).css("zIndex",opts.slideCount+(!rev===true?1:0));$(next).css("zIndex",opts.slideCount+(!rev===true?0:1));});opts.animIn.opacity=1;opts.animOut.opacity=0;opts.cssBefore.opacity=1;opts.cssBefore.display="block";opts.cssAfter.zIndex=0;};$.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;opts.cssBefore.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;opts.cssBefore.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;opts.cssBefore.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;opts.cssBefore.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){if(opts.rev){fwd=!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){if(opts.rev){fwd=!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;opts.cssBefore.top=0;opts.cssBefore.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;opts.cssBefore.top=0;opts.cssBefore.height=0;opts.animIn.height="show";opts.animOut.height=0;};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,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);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){if(opts.rev){fwd=!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();}});});};$.extend(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.animOut.width=next.cycleW;});opts.cssFirst.top=0;opts.cssBefore.left=0;opts.cssBefore.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;opts.cssBefore.top=0;opts.cssBefore.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;opts.cssBefore.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;});$.extend(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;$.extend(opts.animIn,{top:0,left:0,width:next.cycleW,height:next.cycleH});$.extend(opts.animOut,{width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2});});opts.cssFirst.top=0;opts.cssFirst.left=0;opts.cssBefore.width=0;opts.cssBefore.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;$.extend(opts.animIn,{top:0,left:0,width:next.cycleW,height:next.cycleH});});opts.cssBefore.width=0;opts.cssBefore.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;opts.cssBefore.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;opts.cssBefore.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;opts.cssBefore.left=w;opts.animIn.top=0;opts.animIn.left=0;opts.animOut.top=h;opts.animOut.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;opts.animIn.width=this.cycleW;opts.animOut.left=0;});opts.cssBefore.top=0;opts.cssBefore.width=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;opts.animIn.height=this.cycleH;opts.animOut.top=0;});opts.cssBefore.height=0;opts.cssBefore.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;opts.animIn.width=this.cycleW;opts.animOut.left=curr.cycleW/2;opts.animOut.width=0;});opts.cssBefore.top=0;opts.cssBefore.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;opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH/2;opts.animOut.height=0;});opts.cssBefore.height=0;opts.cssBefore.left=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;opts.animIn.top=0;opts.cssBefore.top=0;opts.cssBefore.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;opts.animIn.top=0;opts.cssBefore.top=0;opts.cssBefore.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){$.extend(opts.animOut,{left:w*2,top:-h/2,opacity:0});}else{opts.animOut.opacity=0;}});opts.cssBefore.left=0;opts.cssBefore.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 top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"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");})();});$.extend(opts.cssBefore,{display:"block",opacity:1,top:0,left:0});opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1993 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":181,"face":{"font-family":"Humanst521 Lt BT","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 4 7 6 4 5 5 4 2 4","ascent":"288","descent":"-72","x-height":"3","bbox":"-20 -275 360 85","underline-thickness":"12.6562","underline-position":"-34.2773","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":90},"!":{"d":"40,-70r-5,-176r22,0r-6,176r-11,0xm34,0r0,-36r23,0r0,36r-23,0","w":90},"\"":{"d":"79,-252r0,97r-15,0r0,-97r15,0xm33,-252r0,97r-15,0r0,-97r15,0","w":96},"#":{"d":"172,-152r-47,0r-18,49r48,0xm161,-256r-31,88r48,0r31,-88r19,0r-30,88r56,0r-5,16r-57,0r-18,49r61,0r-5,16r-62,0r-30,87r-20,0r31,-87r-47,0r-32,87r-19,0r30,-87r-58,0r5,-16r59,0r18,-49r-64,0r5,-16r65,0r31,-88r19,0","w":276},"$":{"d":"98,-19v17,-1,30,-6,40,-14v10,-8,14,-18,14,-31v0,-12,-4,-21,-12,-29v-8,-8,-22,-14,-42,-20r0,94xm82,-140r0,-87v-16,1,-29,5,-38,12v-9,7,-13,17,-13,29v0,11,4,20,13,28v9,8,21,13,38,18xm82,40r0,-40v-13,0,-26,-3,-38,-8v-12,-5,-24,-13,-34,-22r0,-22v13,11,25,20,37,25v12,5,23,8,35,8r0,-99v-24,-8,-41,-16,-52,-27v-11,-11,-17,-24,-17,-39v0,-17,6,-31,19,-42v13,-11,29,-17,50,-18r0,-26r16,0r0,26v12,0,22,1,33,5v11,4,21,10,31,17r0,20v-12,-9,-23,-15,-33,-19v-10,-4,-20,-6,-29,-6r-2,0r0,93v26,7,45,16,56,27v11,11,17,24,17,41v0,19,-7,34,-20,46v-13,12,-31,19,-53,20r0,40r-16,0"},"%":{"d":"182,-62v0,14,4,25,14,35v10,10,22,14,36,14v14,0,24,-4,34,-14v10,-10,15,-21,15,-35v0,-14,-5,-26,-15,-36v-10,-10,-20,-14,-34,-14v-14,0,-25,4,-35,14v-10,10,-15,22,-15,36xm165,-62v0,-19,6,-35,19,-48v13,-13,29,-19,48,-19v19,0,34,6,47,19v13,13,19,29,19,48v0,19,-6,34,-19,47v-13,13,-28,19,-47,19v-19,0,-35,-6,-48,-19v-13,-13,-19,-28,-19,-47xm64,4r165,-254r19,0r-166,254r-18,0xm31,-183v0,14,5,25,14,35v9,10,21,15,35,15v14,0,25,-5,35,-15v10,-10,14,-21,14,-35v0,-14,-4,-26,-14,-36v-10,-10,-21,-14,-35,-14v-14,0,-26,4,-35,14v-9,10,-14,22,-14,36xm13,-183v0,-19,7,-34,20,-47v13,-13,28,-20,47,-20v19,0,34,7,47,20v13,13,20,28,20,47v0,19,-7,34,-20,47v-13,13,-28,19,-47,19v-19,0,-34,-6,-47,-19v-13,-13,-20,-28,-20,-47","w":311},"&":{"d":"145,-53r-61,-64v-18,7,-31,16,-40,26v-9,10,-13,21,-13,33v0,12,4,23,13,31v9,8,20,12,33,12v13,0,25,-3,36,-9v11,-6,23,-16,32,-29xm90,-139v15,-7,26,-15,33,-23v7,-8,11,-17,11,-27v0,-11,-3,-19,-10,-26v-7,-7,-16,-10,-28,-10v-10,0,-19,3,-26,10v-7,7,-11,15,-11,25v0,8,3,17,8,25v5,8,13,17,23,26xm195,0r-37,-38v-11,14,-23,24,-37,31v-14,7,-29,10,-46,10v-19,0,-35,-6,-47,-17v-12,-11,-19,-25,-19,-43v0,-15,5,-29,16,-42v11,-13,26,-24,45,-33v-10,-10,-17,-19,-22,-28v-5,-9,-7,-19,-7,-29v0,-15,5,-28,16,-38v11,-10,24,-15,41,-15v16,0,30,5,40,15v10,10,15,22,15,37v0,13,-4,25,-12,36v-8,11,-22,20,-39,28r55,58v6,-7,10,-16,14,-25v4,-9,8,-19,11,-31r21,0v-3,13,-7,26,-13,37v-6,11,-12,22,-20,32r51,55r-26,0","w":222},"'":{"d":"33,-252r0,97r-15,0r0,-97r15,0","w":50},"(":{"d":"98,-250v-23,25,-40,51,-51,78v-11,27,-16,56,-16,87v0,31,5,59,16,86v11,27,28,54,51,79r-17,0v-23,-25,-41,-52,-53,-79v-12,-27,-17,-56,-17,-86v0,-30,5,-60,17,-87v12,-27,30,-53,53,-78r17,0","w":100},")":{"d":"2,80v23,-25,40,-52,51,-79v11,-27,17,-55,17,-86v0,-31,-6,-60,-17,-87v-11,-27,-28,-53,-51,-78r18,0v23,25,40,51,52,78v12,27,18,57,18,87v0,30,-6,59,-18,86v-12,27,-29,54,-52,79r-18,0","w":100},"*":{"d":"70,-107r8,-66r-43,52r-12,-13r52,-42r-67,6r0,-17r67,7r-52,-43r12,-12r43,52r-8,-67r19,0r-8,67r43,-52r12,12r-52,43r67,-7r0,17r-67,-6r52,42r-12,13r-43,-52r8,66r-19,0","w":159},"+":{"d":"157,-215r0,101r98,0r0,14r-98,0r0,100r-14,0r0,-100r-98,0r0,-14r98,0r0,-101r14,0","w":299},",":{"d":"44,0r-10,0r0,-36r23,0r0,27v0,13,-1,23,-5,31v-4,8,-10,14,-18,20r0,-14v3,-3,5,-6,7,-10v2,-4,3,-10,3,-16r0,-2","w":90},"-":{"d":"17,-73r0,-17r86,0r0,17r-86,0","w":119},".":{"d":"34,0r0,-36r23,0r0,36r-23,0","w":90},"\/":{"d":"16,33r-17,0r104,-283r17,0","w":100},"0":{"d":"32,-123v0,34,5,60,16,80v11,20,25,29,43,29v18,0,32,-9,43,-29v11,-20,16,-46,16,-80v0,-34,-5,-59,-16,-79v-11,-20,-25,-30,-43,-30v-18,0,-32,9,-43,29v-11,20,-16,46,-16,80xm13,-123v0,-39,7,-70,21,-93v14,-23,33,-34,57,-34v24,0,43,11,57,34v14,23,21,54,21,93v0,39,-7,70,-21,93v-14,23,-33,34,-57,34v-24,0,-43,-11,-57,-34v-14,-23,-21,-54,-21,-93"},"1":{"d":"82,0r0,-246r18,0r0,246r-18,0"},"2":{"d":"15,0r0,-3v37,-37,65,-70,84,-100v19,-30,29,-55,29,-76v0,-16,-5,-29,-16,-39v-11,-10,-25,-15,-42,-15v-8,0,-16,2,-25,6v-9,4,-18,10,-27,19r0,-20v9,-8,18,-13,27,-17v9,-4,19,-5,29,-5v21,0,39,7,52,20v13,13,21,31,21,52v0,19,-8,42,-23,68v-15,26,-37,56,-69,92r115,0r0,18r-155,0"},"3":{"d":"17,-9r0,-19v9,5,17,9,26,11v9,2,17,3,26,3v19,0,33,-4,44,-14v11,-10,17,-23,17,-39v0,-17,-6,-30,-17,-40v-11,-10,-26,-14,-46,-14r0,-18v19,-1,33,-6,44,-14v11,-8,16,-20,16,-34v0,-14,-6,-24,-16,-33v-10,-9,-24,-14,-41,-14v-8,0,-16,2,-24,5v-8,3,-16,7,-25,13r0,-18v8,-5,15,-9,24,-12v9,-3,18,-4,27,-4v22,0,40,6,53,17v13,11,20,26,20,45v0,14,-3,26,-10,36v-7,10,-18,16,-32,21v15,5,26,13,34,23v8,10,12,24,12,40v0,22,-8,39,-22,52v-14,13,-33,20,-57,20v-10,0,-20,-1,-29,-3v-9,-2,-17,-6,-24,-10"},"4":{"d":"118,-110r0,-102r-85,102r85,0xm118,0r0,-93r-111,0r0,-8r123,-148r7,0r0,139r35,0r0,17r-35,0r0,93r-19,0"},"5":{"d":"20,-14r0,-21v10,7,19,13,29,16v10,3,20,5,30,5v18,0,33,-6,44,-17v11,-11,16,-26,16,-44v0,-19,-5,-33,-17,-44v-12,-11,-27,-16,-47,-16v-4,0,-10,-1,-16,0v-6,1,-12,2,-19,3r0,-114r105,0r0,18r-86,0r0,77v3,0,7,-1,10,-1r10,0v25,0,45,6,59,20v14,14,21,32,21,56v0,24,-8,43,-23,58v-15,15,-34,22,-59,22v-11,0,-21,-1,-31,-4v-10,-3,-18,-8,-26,-14"},"6":{"d":"42,-115v9,-7,17,-12,26,-15v9,-3,18,-5,28,-5v20,0,37,7,50,20v13,13,19,29,19,49v0,21,-7,38,-20,51v-13,13,-30,19,-52,19v-22,0,-41,-8,-54,-24v-13,-16,-19,-37,-19,-64v0,-30,9,-59,26,-87v17,-28,44,-54,79,-79r9,12v-27,20,-48,40,-63,60v-15,20,-25,42,-29,63xm40,-94r0,1v0,6,-1,10,-1,13v0,20,5,36,15,48v10,12,23,18,40,18v15,0,28,-5,37,-14v9,-9,15,-21,15,-35v0,-17,-5,-30,-15,-40v-10,-10,-22,-14,-39,-14v-9,0,-18,2,-27,6v-9,4,-17,9,-25,17"},"7":{"d":"41,-3r104,-225r-135,0r0,-18r161,0r0,3r-113,248"},"8":{"d":"57,-127v-11,-7,-19,-15,-24,-25v-5,-10,-8,-20,-8,-32v0,-18,6,-34,19,-47v13,-13,28,-19,47,-19v19,0,34,6,47,19v13,13,19,28,19,47v0,12,-3,22,-8,32v-5,10,-14,17,-24,24v12,8,22,17,28,27v6,10,9,22,9,35v0,20,-6,37,-20,50v-14,13,-31,20,-51,20v-20,0,-38,-7,-51,-20v-13,-13,-20,-30,-20,-50v0,-13,3,-25,9,-35v6,-10,16,-18,28,-26xm43,-185v0,13,4,25,14,35v10,10,21,14,34,14v13,0,25,-5,34,-14v9,-9,14,-22,14,-35v0,-13,-5,-25,-14,-34v-9,-9,-21,-14,-34,-14v-13,0,-25,5,-34,14v-9,9,-14,21,-14,34xm39,-66v0,15,5,27,15,37v10,10,23,16,37,16v15,0,27,-5,37,-15v10,-10,15,-23,15,-38v0,-15,-5,-28,-15,-38v-10,-10,-22,-16,-37,-16v-14,0,-27,5,-37,16v-10,11,-15,23,-15,38"},"9":{"d":"139,-131v-9,7,-18,12,-27,15v-9,3,-18,5,-28,5v-20,0,-36,-6,-49,-19v-13,-13,-20,-30,-20,-50v0,-21,7,-38,20,-51v13,-13,31,-19,53,-19v22,0,40,8,53,24v13,16,20,37,20,64v0,31,-8,59,-26,87v-18,28,-44,54,-79,79r-10,-12v27,-20,49,-40,64,-60v15,-20,25,-42,29,-63xm141,-152r0,-1v0,-6,1,-10,1,-12v0,-21,-5,-37,-15,-49v-10,-12,-24,-18,-41,-18v-15,0,-28,5,-37,14v-9,9,-14,20,-14,35v0,17,4,30,14,40v10,10,23,14,40,14v9,0,17,-2,26,-6v9,-4,18,-9,26,-17"},":":{"d":"34,-127r0,-35r23,0r0,35r-23,0xm34,0r0,-36r23,0r0,36r-23,0","w":90},";":{"d":"34,-127r0,-35r23,0r0,35r-23,0xm44,0r-10,0r0,-36r23,0r0,27v0,13,-1,23,-5,31v-4,8,-10,14,-18,20r0,-14v3,-3,5,-6,7,-10v2,-4,3,-10,3,-16r0,-2","w":90},"<":{"d":"253,-182r-183,75r183,74r0,16r-207,-85r0,-11r207,-85r0,16","w":299},"=":{"d":"255,-82r0,14r-210,0r0,-14r210,0xm255,-146r0,14r-210,0r0,-14r210,0","w":299},">":{"d":"253,-113r0,11r-207,85r0,-16r184,-74r-184,-75r0,-16","w":299},"?":{"d":"49,-61v-5,-5,-9,-10,-12,-16v-3,-6,-4,-13,-4,-20v0,-11,9,-29,26,-56r2,-3v5,-7,8,-14,11,-22v3,-8,4,-14,4,-20v0,-11,-2,-20,-7,-26v-5,-6,-11,-10,-20,-10v-5,0,-11,1,-15,4v-4,3,-9,8,-14,14r-3,-2r8,-25v4,-2,7,-4,11,-5v4,-1,9,-2,14,-2v13,0,23,5,32,15v9,10,13,22,13,37v0,8,-2,16,-5,25v-3,9,-8,20,-15,31r-9,14v-11,16,-17,29,-17,39v0,4,0,8,1,12v1,4,3,8,5,11xm38,0r0,-36r24,0r0,36r-24,0","w":114},"@":{"d":"229,-145r11,-23r14,0r-24,97v-1,4,-2,8,-3,11v-1,3,-1,6,-1,8v0,5,1,9,5,12v4,3,9,4,16,4v6,0,11,-1,17,-3v6,-2,12,-6,18,-10v12,-9,22,-20,29,-36v7,-16,11,-33,11,-50v0,-32,-13,-57,-36,-77v-23,-20,-54,-30,-92,-30v-20,0,-38,3,-55,9v-17,6,-31,14,-45,25v-18,15,-32,32,-41,52v-9,20,-13,42,-13,66v0,38,12,69,38,92v26,23,61,34,104,34v19,0,38,-2,57,-8v19,-6,37,-15,53,-26r5,8v-17,13,-35,23,-54,29v-19,6,-39,10,-60,10v-22,0,-42,-3,-60,-8v-18,-5,-35,-13,-49,-24v-18,-13,-31,-29,-40,-47v-9,-18,-13,-39,-13,-62v0,-19,3,-37,9,-54v6,-17,15,-32,26,-46v17,-21,37,-36,61,-47v24,-11,50,-16,79,-16v19,0,36,3,53,8v17,5,32,13,44,22v15,11,26,24,34,39v8,15,12,32,12,49v0,20,-4,38,-11,54v-7,16,-18,30,-32,41v-8,6,-17,12,-26,15v-9,3,-19,5,-28,5v-11,0,-19,-3,-25,-7v-6,-4,-9,-11,-9,-19v0,-1,1,-3,1,-6r0,-1v-6,10,-13,18,-22,24v-9,6,-18,9,-29,9v-18,0,-32,-5,-41,-15v-9,-10,-14,-24,-14,-43v0,-27,8,-48,24,-67v16,-19,35,-28,57,-28v11,0,20,2,28,7v8,5,13,13,17,23xm214,-82r11,-45v-3,-12,-7,-20,-14,-26v-7,-6,-16,-9,-27,-9v-18,0,-33,8,-45,24v-12,16,-18,36,-18,60v0,13,3,23,10,31v7,8,16,12,28,12v13,0,25,-5,35,-13v10,-8,16,-20,20,-34","w":360},"A":{"d":"55,-102r94,0r-47,-112xm-9,0r107,-248r8,0r107,248r-21,0r-36,-86r-108,0r-36,86r-21,0","w":203},"B":{"d":"49,-117r0,100r40,0v25,0,43,-3,55,-11v12,-8,18,-21,18,-38v0,-15,-6,-28,-18,-37v-12,-9,-29,-14,-49,-14r-46,0xm49,-230r0,97r40,0v16,0,28,-5,38,-14v10,-9,15,-20,15,-35v0,-15,-5,-26,-15,-35v-10,-9,-24,-13,-42,-13r-36,0xm29,0r0,-246r58,0v23,0,41,6,55,17v14,11,20,26,20,45v0,13,-3,24,-9,33v-6,9,-14,16,-26,22v19,5,33,13,42,24v9,11,15,25,15,42v0,11,-3,20,-8,29v-5,9,-12,16,-21,22v-7,4,-16,7,-25,9v-9,2,-23,3,-43,3r-58,0","w":196},"C":{"d":"233,-18v-15,8,-29,13,-43,17v-14,4,-29,5,-43,5v-14,0,-27,-1,-40,-5v-13,-4,-25,-10,-36,-17v-18,-12,-32,-26,-42,-45v-10,-19,-15,-39,-15,-61v0,-17,3,-32,10,-48v7,-16,16,-29,28,-41v13,-12,27,-22,43,-28v16,-6,33,-9,52,-9v13,0,28,2,42,6v14,4,29,9,44,17r0,20v-17,-9,-32,-15,-46,-19v-14,-4,-27,-7,-40,-7v-11,0,-23,2,-33,5v-10,3,-21,8,-30,14v-15,10,-27,23,-35,39v-8,16,-13,33,-13,52v0,14,3,28,8,42v5,14,13,26,23,36v10,10,22,17,36,23v14,6,28,9,44,9v13,0,26,-3,40,-7v14,-4,29,-10,46,-19r0,21","w":244},"D":{"d":"109,-228r-59,0r0,211r59,0v16,0,30,-1,42,-4v12,-3,22,-7,30,-13v14,-9,24,-21,32,-37v8,-16,12,-33,12,-52v0,-19,-4,-35,-12,-51v-8,-16,-18,-29,-32,-38v-8,-6,-18,-9,-30,-12v-12,-3,-26,-4,-42,-4xm114,-246v19,0,35,1,48,5v13,4,25,9,36,17v15,11,27,26,36,44v9,18,13,37,13,57v0,20,-4,39,-13,57v-9,18,-21,32,-36,43v-11,8,-23,14,-36,18v-13,4,-30,5,-48,5r-85,0r0,-246r85,0","w":263},"E":{"d":"29,0r0,-246r133,0r0,16r-113,0r0,97r109,0r0,16r-109,0r0,100r116,0r0,17r-136,0","w":177},"F":{"d":"29,0r0,-246r125,0r0,17r-105,0r0,90r95,0r0,17r-95,0r0,122r-20,0","w":160},"G":{"d":"233,-18v-15,8,-30,13,-44,17v-14,4,-28,5,-42,5v-14,0,-27,-1,-40,-5v-13,-4,-25,-10,-36,-17v-18,-12,-32,-26,-42,-45v-10,-19,-15,-39,-15,-61v0,-17,3,-32,10,-48v7,-16,16,-29,28,-41v13,-12,27,-22,43,-28v16,-6,33,-9,52,-9v14,0,28,2,42,6v14,4,29,9,44,17r0,20v-17,-9,-32,-15,-46,-19v-14,-4,-27,-7,-40,-7v-11,0,-23,2,-33,5v-10,3,-21,8,-30,14v-15,10,-27,23,-35,39v-8,16,-13,33,-13,52v0,14,3,28,8,42v5,14,13,26,23,36v10,10,22,17,36,23v14,6,28,9,44,9v10,0,21,-1,32,-4v11,-3,23,-8,35,-13r0,-66r-52,0r0,-17r71,0r0,95","w":257},"H":{"d":"29,0r0,-246r20,0r0,114r163,0r0,-114r20,0r0,246r-20,0r0,-115r-163,0r0,115r-20,0","w":261},"I":{"d":"30,0r0,-246r21,0r0,246r-21,0","w":81},"J":{"d":"31,0r0,-246r21,0r0,244v0,26,-4,44,-13,56v-9,12,-24,18,-43,18r-3,0v0,0,-3,-1,-4,-1r-3,-18r3,0r6,0v13,0,23,-4,28,-12v5,-8,8,-21,8,-41","w":82},"K":{"d":"30,0r0,-246r20,0r0,121r117,-121r25,0r-116,121r129,125r-27,0r-128,-123r0,123r-20,0","w":195},"L":{"d":"30,0r0,-246r20,0r0,229r116,0r0,17r-136,0","w":170},"M":{"d":"29,0r0,-246r20,0r92,113r92,-113r20,0r0,246r-20,0r0,-217r-92,114r-92,-114r0,217r-20,0","w":282},"N":{"d":"29,0r0,-246r20,0r180,215r0,-215r20,0r0,246r-18,0r-182,-217r0,217r-20,0","w":277},"O":{"d":"36,-123v0,14,3,28,8,42v5,14,13,26,23,36v10,10,22,17,35,23v13,6,28,9,42,9v15,0,28,-4,41,-9v13,-5,25,-13,35,-23v10,-10,18,-23,23,-36v5,-13,8,-27,8,-42v0,-15,-3,-29,-8,-42v-5,-13,-13,-25,-23,-35v-10,-10,-22,-18,-35,-24v-13,-6,-27,-9,-41,-9v-14,0,-28,3,-41,9v-13,6,-26,14,-36,24v-10,10,-18,22,-23,35v-5,13,-8,27,-8,42xm14,-124v0,-17,3,-33,10,-48v7,-15,16,-29,28,-41v12,-12,26,-21,42,-27v16,-6,33,-10,50,-10v17,0,33,4,49,10v16,6,30,15,42,27v12,12,22,26,28,41v6,15,10,32,10,49v0,13,-2,25,-6,37v-4,12,-9,24,-16,34v-12,18,-27,32,-46,42v-19,10,-39,14,-61,14v-17,0,-34,-3,-50,-9v-16,-6,-30,-16,-42,-28v-12,-12,-22,-26,-28,-42v-6,-16,-10,-32,-10,-49","w":286},"P":{"d":"49,-229r0,98r37,0v21,0,37,-5,47,-13v10,-8,15,-20,15,-37v0,-16,-5,-28,-15,-36v-10,-8,-24,-12,-43,-12r-41,0xm29,-246r60,0v27,0,46,6,60,17v14,11,21,27,21,49v0,20,-7,36,-20,48v-13,12,-31,18,-53,18r-48,0r0,114r-20,0r0,-246","w":180},"Q":{"d":"36,-123v0,14,3,28,8,42v5,14,13,26,23,36v10,10,21,17,35,23v14,6,28,9,42,9v15,0,28,-4,41,-9v13,-5,25,-13,35,-23v10,-10,18,-23,23,-36v5,-13,8,-27,8,-42v0,-15,-3,-29,-8,-42v-5,-13,-13,-25,-23,-35v-10,-10,-22,-18,-35,-24v-13,-6,-27,-9,-41,-9v-14,0,-28,3,-41,9v-13,6,-26,14,-36,24v-10,10,-18,22,-23,35v-5,13,-8,27,-8,42xm127,3v-34,-5,-61,-20,-82,-43v-21,-23,-31,-51,-31,-84v0,-16,3,-32,10,-48v7,-16,16,-29,28,-41v12,-12,26,-21,42,-27v16,-6,32,-10,49,-10v17,0,34,4,50,10v16,6,30,15,42,27v13,12,22,27,28,42v6,15,10,31,10,48v0,33,-11,61,-32,84v-21,23,-49,37,-83,42v15,9,28,16,41,21v13,5,23,8,33,8v5,0,10,-2,15,-3v5,-1,9,-3,14,-6r3,3r-21,26v-18,-1,-37,-5,-56,-13v-19,-8,-39,-20,-60,-36","w":286},"R":{"d":"49,-229r0,94r15,0v19,0,32,0,39,-1v7,-1,13,-3,18,-5v9,-4,15,-10,20,-17v5,-7,7,-15,7,-26v0,-14,-5,-26,-15,-34v-10,-8,-24,-11,-43,-11r-41,0xm29,-246r60,0v26,0,46,5,60,16v14,11,21,26,21,46v0,15,-4,27,-12,37v-8,10,-19,18,-35,23r12,9v0,0,7,7,10,11r67,104r-22,0r-39,-60v-8,-12,-14,-22,-20,-30v-6,-8,-11,-13,-14,-16v-4,-4,-10,-7,-17,-9v-7,-2,-17,-3,-31,-3r-20,0r0,118r-20,0r0,-246","w":201},"S":{"d":"145,-211v-10,-7,-20,-12,-29,-15v-9,-3,-19,-5,-28,-5v-15,0,-27,4,-36,13v-9,9,-15,20,-15,33v0,11,4,19,10,26v6,7,19,14,39,23v2,1,1,1,5,2v23,9,38,18,46,27v5,6,9,13,12,20v3,7,4,15,4,23v0,20,-6,36,-20,49v-14,13,-32,19,-53,19v-11,0,-21,-2,-31,-6v-10,-4,-21,-9,-32,-16r0,-24v12,9,23,16,33,20v10,4,20,7,30,7v16,0,29,-5,38,-14v9,-9,14,-21,14,-36v0,-11,-3,-20,-9,-27v-6,-7,-21,-16,-44,-25v-24,-10,-39,-19,-48,-29v-9,-10,-13,-23,-13,-38v0,-19,6,-35,19,-47v13,-12,31,-18,52,-18v10,0,19,1,28,4v9,3,19,6,28,12r0,22","w":164},"T":{"d":"94,0r0,-228r-92,0r0,-18r205,0r0,18r-92,0r0,228r-21,0","w":209},"U":{"d":"47,-102v0,26,7,47,22,63v15,16,34,23,59,23v25,0,44,-7,59,-23v15,-16,23,-37,23,-63r0,-144r20,0r0,143v0,33,-10,60,-28,79v-18,19,-43,29,-74,29v-31,0,-56,-10,-74,-29v-18,-19,-27,-46,-27,-79r0,-143r20,0r0,144","w":256},"V":{"d":"-8,-246r22,0r84,206r85,-206r21,0r-104,250r-3,0","w":195},"W":{"d":"90,-41r73,-205r7,0r75,205r72,-205r22,0r-92,250r-4,0r-76,-206r-75,206r-4,0r-94,-250r22,0","w":333},"X":{"d":"-3,0r111,-127r-104,-119r25,0r91,104r92,-104r26,0r-105,119r112,127r-26,0r-98,-113r-99,113r-25,0","w":241},"Y":{"d":"88,0r0,-132r-96,-114r25,0r81,97r81,-97r24,0r-95,114r0,132r-20,0","w":195},"Z":{"d":"3,0r0,-8r185,-222r-174,0r0,-16r206,0r0,8r-184,221r184,0r0,17r-217,0","w":225},"[":{"d":"38,59r64,0r0,17r-83,0r0,-322r83,0r0,17r-64,0r0,288","w":100},"\\":{"d":"84,33r-104,-283r16,0r105,283r-17,0","w":100},"]":{"d":"62,59r0,-288r-64,0r0,-17r83,0r0,322r-83,0r0,-17r64,0","w":100},"^":{"d":"190,-256r95,98r-22,0r-83,-83r-83,83r-22,0r94,-98r21,0","w":360},"_":{"d":"180,71r0,14r-180,0r0,-14r180,0","w":180},"`":{"d":"96,-185r-47,-62r26,0r37,62r-16,0","w":180},"a":{"d":"104,-33r0,-50v-23,0,-41,4,-55,12v-14,8,-21,19,-21,32v0,8,3,15,9,20v6,5,13,7,23,7v7,0,14,-2,21,-5v7,-3,14,-9,23,-16xm105,-16v-9,7,-17,12,-25,15v-8,3,-16,5,-25,5v-13,0,-25,-4,-33,-12v-8,-8,-12,-18,-12,-30v0,-18,8,-33,24,-43v16,-10,40,-16,70,-17r0,-17v0,-12,-2,-21,-8,-27v-6,-6,-15,-8,-28,-8v-8,0,-16,2,-24,5v-8,3,-17,8,-26,15r0,-18v9,-6,19,-11,27,-14v8,-3,16,-4,24,-4v19,0,33,4,41,13v8,9,12,23,12,42r0,85v0,4,1,6,2,8v1,2,2,3,4,3v3,0,8,-4,15,-10r3,-3r1,16v-5,5,-11,9,-15,11v-4,2,-9,4,-12,4v-5,0,-9,-1,-11,-4v-2,-3,-4,-8,-4,-15","w":148},"b":{"d":"41,-28v5,4,10,8,17,10v7,2,14,3,22,3v19,0,36,-6,48,-19v12,-13,19,-30,19,-51v0,-19,-6,-34,-16,-46v-10,-12,-23,-18,-39,-18v-10,0,-19,2,-27,7v-8,5,-16,11,-24,21r0,93xm23,-9r0,-237r18,0r0,104v9,-9,18,-14,27,-18v9,-4,19,-6,30,-6v20,0,37,7,50,22v13,15,19,34,19,58v0,26,-9,48,-25,64v-16,16,-38,25,-64,25v-8,0,-17,-1,-26,-3v-9,-2,-19,-5,-29,-9","w":177},"c":{"d":"139,-7v-7,3,-14,6,-21,8v-7,2,-13,2,-20,2v-25,0,-46,-8,-62,-24v-16,-16,-24,-35,-24,-60v0,-24,8,-45,25,-61v17,-16,37,-24,62,-24v6,0,12,1,18,2v6,1,12,3,18,5r0,20v-6,-4,-12,-6,-18,-8v-6,-2,-13,-2,-20,-2v-18,0,-33,7,-46,20v-13,13,-19,29,-19,48v0,19,5,35,18,48v13,13,29,20,47,20v7,0,13,-2,20,-4v7,-2,15,-6,22,-10r0,20","w":145},"d":{"d":"136,-32r0,-99v-6,-6,-13,-11,-20,-14v-7,-3,-15,-5,-24,-5v-18,0,-33,6,-44,19v-11,13,-17,29,-17,49v0,20,6,36,17,49v11,13,26,19,44,19v9,0,17,-1,24,-4v7,-3,14,-8,20,-14xm136,-12v-7,5,-13,9,-21,11v-8,2,-16,4,-25,4v-24,0,-43,-7,-58,-23v-15,-16,-22,-36,-22,-61v0,-25,7,-45,22,-61v15,-16,34,-24,58,-24v9,0,17,2,25,4v8,2,14,6,21,11r0,-95r17,0r0,246r-17,0r0,-12","w":176},"e":{"d":"155,-18v-11,7,-21,12,-31,16v-10,4,-20,6,-31,6v-24,0,-43,-8,-58,-24v-15,-16,-22,-38,-22,-64v0,-25,6,-44,20,-59v14,-15,32,-23,55,-23v21,0,38,8,51,22v13,14,19,33,19,56r0,1r-126,0r0,2v0,21,6,38,17,51v11,13,26,20,44,20v11,0,21,-2,31,-6v10,-4,20,-10,31,-18r0,20xm34,-103r103,0v-2,-14,-8,-25,-17,-34v-9,-9,-20,-13,-33,-13v-13,0,-25,4,-35,13v-10,9,-16,20,-18,34","w":172},"f":{"d":"24,0r0,-147r-28,0r0,-15r28,0r0,-18v0,-24,5,-41,14,-52v9,-11,23,-17,42,-17v2,0,5,1,8,1v3,0,6,0,10,1r0,16v-3,-1,-5,-1,-8,-1v-3,0,-6,-1,-8,-1v-14,0,-24,4,-30,11v-6,7,-9,20,-9,37r0,23r30,0r0,15r-30,0r0,147r-19,0","w":73},"g":{"d":"76,8v-19,0,-33,3,-42,8v-9,5,-13,12,-13,23v0,9,5,16,14,21v9,5,22,7,39,7v19,0,32,-2,42,-7v10,-5,15,-14,15,-24v0,-10,-5,-16,-14,-21v-9,-5,-22,-7,-41,-7xm32,-104v0,12,4,21,12,29v8,8,18,12,30,12v12,0,22,-4,30,-12v8,-8,12,-18,12,-30v0,-12,-4,-22,-12,-30v-8,-8,-18,-12,-30,-12v-12,0,-22,5,-30,13v-8,8,-12,18,-12,30xm54,-51v-13,-5,-23,-12,-30,-21v-7,-9,-10,-20,-10,-33v0,-10,2,-20,7,-28v5,-8,13,-15,22,-21v5,-3,10,-5,16,-6v6,-1,17,-2,30,-2r60,0r0,15r-35,0v7,6,12,13,15,20v3,7,5,14,5,22v0,15,-5,27,-13,36v-8,9,-21,17,-39,22v-3,1,-7,2,-12,3v-19,5,-29,11,-29,20v0,8,13,14,39,16r2,0v25,2,43,7,52,13v9,6,14,16,14,30v0,16,-6,27,-18,35v-12,8,-32,12,-57,12v-22,0,-39,-4,-51,-11v-12,-7,-18,-18,-18,-32v0,-11,4,-20,12,-27v8,-7,17,-11,31,-13v-7,-2,-12,-4,-16,-8v-4,-4,-6,-9,-6,-15v0,-6,3,-11,8,-16v5,-5,12,-9,21,-11","w":150},"h":{"d":"23,0r0,-246r18,0r0,110v8,-10,16,-17,25,-22v9,-5,20,-7,31,-7v18,0,33,6,43,17v10,11,15,28,15,49r0,99r-19,0r0,-90v0,-20,-3,-34,-10,-44v-7,-10,-17,-15,-31,-15v-11,0,-21,3,-30,9v-9,6,-17,15,-24,26r0,114r-18,0","w":175},"i":{"d":"23,-216r0,-30r18,0r0,30r-18,0xm23,0r0,-162r18,0r0,162r-18,0","w":64},"j":{"d":"24,-216r0,-30r18,0r0,30r-18,0xm24,19r0,-181r18,0r0,182v0,20,-3,35,-11,45v-8,10,-20,15,-38,17r-5,-16v13,-1,23,-4,28,-11v5,-7,8,-19,8,-36","w":65},"k":{"d":"130,0r-87,-86r76,-76r24,0r-76,75r87,87r-24,0xm23,0r0,-246r18,0r0,246r-18,0","w":148},"l":{"d":"23,0r0,-246r18,0r0,246r-18,0","w":64},"m":{"d":"22,0r0,-162r18,0r0,26v8,-10,15,-17,24,-22v9,-5,19,-7,30,-7v12,0,22,3,30,8v8,5,14,13,20,25v9,-11,19,-20,28,-25v9,-5,19,-8,30,-8v18,0,31,6,41,17v10,11,15,28,15,49r0,99r-19,0r0,-90v0,-20,-2,-34,-9,-44v-7,-10,-17,-15,-30,-15v-11,0,-20,3,-29,9v-9,6,-16,15,-22,26r0,114r-18,0r0,-90v0,-20,-3,-34,-10,-44v-7,-10,-17,-15,-30,-15v-11,0,-20,3,-29,9v-9,6,-15,15,-22,26r0,114r-18,0","w":278},"n":{"d":"22,0r0,-162r18,0r0,26v8,-10,16,-17,25,-22v9,-5,20,-7,31,-7v18,0,32,6,42,17v10,11,15,28,15,49r0,99r-18,0r0,-90v0,-20,-3,-34,-10,-44v-7,-10,-17,-15,-31,-15v-11,0,-21,3,-30,9v-9,6,-17,15,-24,26r0,114r-18,0","w":174},"o":{"d":"31,-81v0,19,6,35,19,48v13,13,27,20,45,20v18,0,33,-7,46,-20v13,-13,19,-29,19,-48v0,-19,-7,-35,-19,-48v-12,-13,-28,-20,-46,-20v-18,0,-33,7,-46,20v-13,13,-18,29,-18,48xm11,-81v0,-24,8,-44,24,-60v16,-16,36,-25,60,-25v23,0,44,9,60,25v16,16,25,37,25,60v0,11,-3,22,-7,32v-4,10,-10,20,-18,28v-8,8,-17,14,-27,18v-10,4,-22,6,-33,6v-24,0,-44,-8,-60,-24v-16,-16,-24,-36,-24,-60","w":190},"p":{"d":"41,-131r0,100v6,6,12,11,19,14v7,3,15,4,24,4v18,0,34,-6,45,-19v11,-13,17,-29,17,-49v0,-20,-6,-36,-17,-49v-11,-13,-27,-19,-45,-19v-9,0,-17,1,-24,4v-7,3,-13,8,-19,14xm23,82r0,-244r18,0r0,11v7,-5,13,-9,21,-11v8,-2,15,-4,24,-4v24,0,43,8,58,24v15,16,22,36,22,61v0,25,-7,45,-22,61v-15,16,-34,23,-58,23v-9,0,-17,-2,-24,-4v-7,-2,-14,-6,-21,-11r0,94r-18,0","w":176},"q":{"d":"136,-31r0,-100v-6,-6,-13,-11,-20,-14v-7,-3,-15,-4,-24,-4v-18,0,-33,6,-44,19v-11,13,-17,29,-17,49v0,20,6,36,17,49v11,13,26,19,44,19v9,0,17,-1,24,-4v7,-3,14,-8,20,-14xm136,-12v-6,5,-14,9,-21,11v-7,2,-16,4,-25,4v-24,0,-43,-7,-58,-23v-15,-16,-22,-36,-22,-61v0,-25,7,-45,22,-61v15,-16,34,-24,58,-24v9,0,17,2,25,4v8,2,14,6,21,11r0,-11r17,0r0,244r-17,0r0,-94","w":176},"r":{"d":"24,0r0,-162r18,0r0,40v10,-15,20,-26,28,-33v8,-7,17,-10,26,-10v5,0,9,1,14,3v5,2,10,5,15,9r-10,17v-5,-4,-10,-6,-14,-8v-4,-2,-7,-3,-11,-3v-7,0,-14,3,-22,10v-8,7,-17,18,-26,34r0,103r-18,0","w":119},"s":{"d":"12,-30v8,6,17,10,25,13v8,3,16,4,24,4v10,0,18,-3,24,-8v6,-5,9,-11,9,-20v0,-13,-10,-23,-32,-31r-13,-5v-12,-5,-21,-11,-27,-18v-6,-7,-9,-16,-9,-26v0,-13,4,-24,14,-32v10,-8,22,-13,37,-13v7,0,15,1,22,3v7,2,14,6,22,11r0,18v-8,-5,-15,-8,-23,-11v-8,-3,-15,-4,-22,-4v-10,0,-18,2,-24,7v-6,5,-9,12,-9,20v0,7,2,13,8,18v6,5,17,11,32,16v16,6,28,11,34,18v6,7,9,16,9,27v0,14,-4,26,-14,34v-10,8,-23,13,-40,13v-8,0,-16,-2,-24,-4v-8,-2,-15,-6,-23,-11r0,-19","w":124},"t":{"d":"47,-40v0,11,2,18,5,22v3,4,8,5,16,5v4,0,9,-1,13,-2v4,-1,9,-3,14,-6r0,17v-5,2,-10,4,-15,5v-5,1,-9,2,-14,2v-13,0,-23,-4,-29,-10v-6,-6,-8,-17,-8,-33r0,-107r-35,0r0,-15r36,0r0,-38r13,-15r4,0r0,53r44,0r0,15r-44,0r0,107","w":95},"u":{"d":"135,-25v-8,9,-17,16,-26,21v-9,5,-20,7,-31,7v-18,0,-32,-6,-42,-17v-10,-11,-15,-28,-15,-49r0,-99r18,0r0,91v0,20,3,33,10,43v7,10,17,15,31,15v11,0,22,-3,31,-9v9,-6,17,-14,24,-25r0,-115r18,0r0,162r-18,0r0,-25","w":174},"v":{"d":"71,3r-73,-165r20,0r59,135r57,-135r18,0r-69,165r-12,0","w":151},"w":{"d":"67,3r-69,-165r19,0r54,133r52,-133r10,0r48,133r57,-133r20,0r-73,165r-10,0r-48,-132r-50,132r-10,0","w":257},"x":{"d":"-1,0r65,-83r-64,-79r22,0r54,66r53,-66r21,0r-62,80r67,82r-23,0r-56,-69r-56,69r-21,0","w":153},"y":{"d":"70,-32r-68,-130r20,0r58,110r54,-110r18,0r-119,244r-19,0","w":151},"z":{"d":"4,0r0,-7r106,-138r-98,0r0,-17r128,0r0,7r-106,138r106,0r0,17r-136,0","w":148},"{":{"d":"149,-244r-6,0v-16,0,-26,3,-32,9v-6,6,-9,18,-9,37r0,43v0,21,-2,34,-7,43v-5,9,-14,15,-27,19v13,4,22,10,27,18v5,8,7,23,7,44r0,42v0,19,3,31,8,37v5,6,16,9,32,9r7,0r0,16r-7,0v-22,0,-38,-4,-46,-13v-8,-9,-12,-27,-12,-53r0,-42v0,-19,-3,-31,-10,-39v-7,-8,-18,-12,-35,-12v-1,0,-2,1,-4,1r-4,0r0,-16r4,0r5,0v16,0,27,-3,34,-11v7,-8,10,-20,10,-39r0,-42v0,-27,4,-44,12,-53v8,-9,24,-14,46,-14r7,0r0,16","w":180},"|":{"d":"98,-275r0,360r-16,0r0,-360r16,0","w":180},"}":{"d":"96,-193r0,42v0,19,3,31,10,39v7,8,18,11,35,11r4,0r4,0r0,16r-4,0v0,0,-3,-1,-4,-1v-17,0,-28,4,-35,12v-7,8,-10,20,-10,39r0,42v0,26,-4,44,-12,53v-8,9,-24,13,-46,13r-7,0r0,-16r7,0v16,0,27,-3,32,-9v5,-6,8,-18,8,-37r0,-42v0,-20,2,-35,7,-44v5,-9,14,-14,27,-18v-13,-4,-22,-10,-27,-19v-5,-9,-7,-22,-7,-43r0,-43v0,-19,-3,-31,-9,-37v-6,-6,-16,-9,-32,-9r-6,0r0,-16r7,0v22,0,38,5,46,14v8,9,12,26,12,53","w":180},"~":{"d":"269,-114v-12,9,-25,16,-36,20v-11,4,-22,6,-32,6v-12,0,-27,-4,-47,-11v-2,-1,-3,-1,-4,-1v-1,0,-4,-1,-6,-2v-20,-7,-34,-11,-45,-11v-10,0,-19,3,-30,7v-11,4,-24,11,-38,21r0,-16v12,-9,25,-15,36,-19v11,-4,21,-6,32,-6v12,0,28,3,48,10v1,1,2,2,3,2v1,1,2,0,5,1v20,7,35,11,46,11v10,0,20,-3,31,-7v11,-4,23,-11,37,-21r0,16","w":299},"\u2122":{"d":"163,-256r30,78r29,-78r18,0r0,94r-11,0r0,-85r-31,85r-9,0r-33,-85r0,85r-11,0r0,-94r18,0xm122,-256r0,9r-31,0r0,85r-11,0r0,-85r-32,0r0,-9r74,0","w":299},"\u2026":{"d":"49,0r0,-36r23,0r0,36r-23,0xm169,0r0,-36r23,0r0,36r-23,0xm289,0r0,-36r23,0r0,36r-23,0","w":360},"\u2013":{"d":"0,-75r0,-13r180,0r0,13r-180,0","w":180},"\u2014":{"d":"0,-75r0,-13r360,0r0,13r-360,0","w":360},"\u201c":{"d":"39,-208r10,0r0,36r-23,0r0,-27v0,-13,1,-23,5,-31v4,-8,9,-14,18,-20r0,14v-4,3,-5,6,-7,10v-2,4,-3,10,-3,16r0,2xm87,-208r10,0r0,36r-24,0r0,-27v0,-13,2,-23,6,-31v4,-8,9,-14,18,-20r0,14v-3,2,-6,6,-8,10v-2,4,-2,9,-2,15r0,3","w":122},"\u201d":{"d":"36,-210r-10,0r0,-36r23,0r0,27v0,13,-1,23,-5,31v-4,8,-9,14,-18,20r0,-14v3,-3,5,-6,7,-10v2,-4,3,-9,3,-15r0,-3xm83,-210r-10,0r0,-36r24,0r0,27v0,13,-2,23,-6,31v-4,8,-10,14,-18,20r0,-14v3,-3,6,-6,8,-10v2,-4,2,-9,2,-15r0,-3","w":122},"\u2018":{"d":"39,-208r10,0r0,36r-23,0r0,-27v0,-13,1,-23,5,-31v4,-8,9,-14,18,-20r0,14v-4,3,-5,6,-7,10v-2,4,-3,10,-3,16r0,2","w":74},"\u2019":{"d":"36,-210r-10,0r0,-36r23,0r0,27v0,13,-1,23,-5,31v-4,8,-9,14,-18,20r0,-14v3,-3,5,-6,7,-10v2,-4,3,-9,3,-15r0,-3","w":74},"\u00d7":{"d":"150,-117r86,-86r10,10r-86,86r86,85r-10,10r-86,-85r-85,85r-11,-10r86,-85r-86,-86r11,-10","w":299},"\u00a0":{"w":90}}});


jQuery.noConflict();
jQuery(document).ready(function($) {
	$('#cycle').cycle();
	$('#menu li:first').addClass('first');
});

Cufon.replace('#home-quote');
Cufon.replace('#main-quote');
