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=(xPos+pngW>elmW?elmW-xPos:pngW),clipB=(yPos+pngH>elmH?elmH-yPos:pngH);d=tiles.cache[count];s=d.style;s.behavior='none';s.left=xPos+'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 (core engine only)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.99 (12-MAR-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.99";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){$.fn.cycle.debug&&log(s);}function log(){window.console&&console.log&&console.log("[cycle] "+Array.prototype.join.call(arguments," "));}$.expr[":"].paused=function(el){return el.cyclePause;};$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.backwards);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts.backwards);},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,!options.backwards);}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.backwards);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.cssAfter=opts.cssAfter||{};opts.cssFirst=opts.cssFirst||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);$($slides[first]).css(opts.cssFirst);if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="none"?0:opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length){opts.after[0].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$s.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=0;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){opts.busy=0;$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing("+fx+"); currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.backwards);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while(opts.fx!="none"&&(t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,1);};$.fn.cycle.prev=function(opts){advance(opts,0);};function advance(opts,moveForward){var val=moveForward?1:-1;var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,moveForward);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v&&v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();if(typeof opts.cssBefore.opacity=="undefined"){opts.cssBefore.opacity=1;}opts.cssBefore.display="block";if(opts.slideResize&&w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(opts.slideResize&&h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,function(){cb();});};$l.animate(opts.animOut,speedOut,easeOut,function(){$l.css(opts.cssAfter);if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={activePagerClass:"activeSlide",after:null,allowPagerClickBubble:false,animIn:null,animOut:null,autostop:0,autostopCount:0,backwards:false,before:null,cleartype:!$.support.opacity,cleartypeNoBg:false,containerResize:1,continuous:0,cssAfter:null,cssBefore:null,delay:0,easeIn:null,easeOut:null,easing:null,end:null,fastOnEvent:0,fit:0,fx:"fade",fxFn:null,height:"auto",manualTrump:true,next:null,nowrap:0,onPagerEvent:null,onPrevNextEvent:null,pager:null,pagerAnchorBuilder:null,pagerEvent:"click.cycle",pause:0,pauseOnPagerHover:0,prev:null,prevNextEvent:"click.cycle",random:0,randomizeEffects:1,requeueOnImageNotLoaded:true,requeueTimeout:250,rev:0,shuffle:null,slideExpr:null,slideResize:1,speed:1000,speedIn:null,speedOut:null,startingSlide:0,sync:1,timeout:4000,timeoutFn:null,updateActivePagerLink:null};})(jQuery);
/**
* hoverIntent r6 // 2011.02.26 // jQuery 1.5.1+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne brian(at)cherne(dot)net
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev])}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev])};var handleHover=function(e){var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t)}if(e.type=="mouseenter"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob)},cfg.interval)}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob)},cfg.timeout)}}};return this.bind('mouseenter',handleHover).bind('mouseleave',handleHover)}})(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}})());

Cufon.registerFont({"w":1264,"face":{"font-family":"Futura","font-weight":500,"font-stretch":"normal","units-per-em":"2048","panose-1":"2 11 6 2 2 2 4 2 3 3","ascent":"1638","descent":"-410","x-height":"28","bbox":"-38 -1763 2165 532.018","underline-thickness":"160","underline-position":"-120","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":632},"\u2013":{"d":"237,-593r838,0r0,196r-838,0r0,-196","w":1313},"\u2014":{"d":"0,-593r1336,0r0,196r-1336,0r0,-196","w":1336},"\u2018":{"d":"317,-961r-201,-78r285,-572r152,62","w":669},"\u02bb":{"d":"317,-961r-201,-78r285,-572r152,62","w":669},"\u2019":{"d":"353,-1611r200,78r-285,572r-152,-63","w":669},"\u02bc":{"d":"353,-1611r200,78r-285,572r-152,-63","w":669},"\u201c":{"d":"717,-961r-201,-78r285,-572r152,62xm317,-961r-201,-78r285,-572r152,62","w":1069},"\u201d":{"d":"353,-1611r200,78r-285,572r-152,-63xm753,-1611r200,78r-285,572r-152,-63","w":1069},"\u2026":{"d":"322,28v-77,0,-139,-62,-139,-140v0,-73,66,-138,139,-138v74,0,139,65,139,139v0,75,-63,139,-139,139xm967,28v-77,0,-140,-64,-140,-140v0,-73,66,-138,139,-138v75,0,140,65,140,139v0,75,-63,139,-139,139xm1612,28v-77,0,-140,-64,-140,-140v0,-73,66,-138,139,-138v74,0,139,65,139,139v0,74,-63,139,-138,139","w":1934},"!":{"d":"340,28v-77,0,-139,-62,-139,-140v0,-73,66,-138,139,-138v74,0,139,65,139,139v0,75,-63,139,-139,139xm227,-344r0,-1200r226,0r0,1200r-226,0","w":679},"\"":{"d":"322,-923r-170,0r-43,-621r256,0xm688,-923r-170,0r-43,-621r256,0","w":840},"#":{"d":"1227,-1110r0,176r-243,0r-36,287r222,0r0,176r-244,0r-59,478r-176,-23r57,-455r-297,0r-60,478r-178,-23r57,-459r-228,0r0,-172r253,0r36,-287r-231,0r0,-176r253,0r55,-448r175,23r-53,425r295,0r56,-448r175,23r-53,425r224,0xm803,-934r-294,0r-36,287r296,0"},"$":{"d":"226,-1175v0,-231,152,-339,342,-392r0,-196r175,0r0,196v181,32,251,112,336,259r-195,109v-59,-107,-135,-160,-230,-160v-110,0,-205,76,-204,182v0,47,17,86,47,118v59,63,300,160,386,213v136,84,232,208,232,388v0,241,-166,425,-372,474r0,207r-175,0r0,-201v-279,-49,-386,-177,-451,-453r220,-46v54,172,102,274,291,279v143,4,260,-107,257,-252v-2,-120,-64,-173,-153,-224v-41,-24,-91,-51,-154,-80v-129,-58,-213,-112,-255,-160v-64,-73,-97,-160,-97,-261"},"%":{"d":"446,-832v-197,0,-369,-173,-369,-369v0,-190,183,-359,372,-359v195,0,372,170,372,364v0,197,-176,364,-375,364xm449,-1393v-105,0,-198,92,-198,195v0,109,91,200,199,200v105,0,197,-92,197,-198v0,-105,-92,-197,-198,-197xm1326,-1571r109,62r-884,1534r-110,-66xm1423,14v-197,0,-369,-171,-369,-369v0,-189,183,-358,372,-358v196,0,373,169,373,364v0,197,-176,363,-376,363xm1426,-547v-105,0,-197,92,-197,196v0,109,90,200,198,200v107,0,197,-92,197,-198v0,-106,-91,-198,-198,-198","w":1876},"&":{"d":"685,-1569v201,0,367,140,367,335v0,67,-19,127,-57,181v-37,54,-105,119,-203,194r278,336r94,-106v27,-31,52,-63,77,-95r152,156v-47,68,-124,149,-182,215r286,353r-290,0r-154,-189v-141,146,-288,219,-441,219v-262,0,-488,-198,-488,-457v0,-154,74,-282,222,-384r122,-85v-102,-109,-153,-216,-153,-321v0,-209,159,-352,370,-352xm399,-560v-138,152,31,380,202,380v90,0,194,-59,311,-177r-305,-371v-91,62,-174,131,-208,168xm682,-1376v-79,0,-149,56,-149,134v0,86,79,162,124,219v46,-38,112,-81,146,-125v20,-25,30,-55,30,-91v1,-83,-64,-137,-151,-137","w":1497},"'":{"d":"322,-923r-170,0r-43,-621r256,0","w":474},"(":{"d":"414,-639v0,423,61,661,197,987r-208,80v-291,-583,-291,-1552,0,-2134r208,80v-134,326,-197,565,-197,987","w":750},")":{"d":"337,-639v0,-427,-64,-659,-198,-987r208,-80v291,583,291,1552,0,2134r-208,-80v136,-330,198,-556,198,-987","w":750},"*":{"d":"546,-1419r-15,-270r201,0r-16,270r253,-98r62,191r-262,68r171,210r-162,118r-147,-228r-146,228r-163,-118r172,-209r-262,-69r62,-191"},"+":{"d":"99,-710r0,-186r440,0r0,-432r185,0r0,432r440,0r0,186r-440,0r0,432r-185,0r0,-432r-440,0"},",":{"d":"281,-289r200,78r-285,571r-152,-63","w":632},"-":{"d":"0,-593r446,0r0,196r-446,0r0,-196","w":446},
".":{"d":"316,28v-77,0,-139,-62,-139,-140v0,-73,66,-138,139,-138v74,0,139,65,139,139v0,75,-63,139,-139,139","w":632},"\/":{"d":"868,-1706r186,82r-884,2046r-184,-83","w":1061},"0":{"d":"87,-782v0,-246,60,-440,172,-589v197,-263,541,-257,746,0v218,274,219,923,0,1197v-206,257,-548,263,-746,0v-112,-149,-172,-349,-172,-608xm406,-1193v-115,212,-112,628,-1,839v116,220,336,219,454,0v113,-210,114,-629,0,-839v-118,-218,-334,-218,-453,0"},"1":{"d":"555,-1326r-267,0r128,-218r372,0r0,1544r-233,0r0,-1326"},"2":{"d":"587,-1570v269,0,503,203,498,466v-3,162,-79,282,-167,396v-44,58,-98,126,-165,205r-240,284r575,0r0,219r-1037,0r536,-649r133,-168v65,-87,135,-182,138,-288v4,-142,-120,-254,-264,-254v-156,0,-245,92,-268,277r-232,0v37,-325,202,-488,493,-488"},"3":{"d":"842,-457v-5,-181,-104,-266,-312,-260r0,-199v99,0,165,-11,199,-33v61,-39,91,-101,91,-186v0,-132,-101,-226,-235,-224v-149,3,-195,72,-226,209r-232,0v45,-270,168,-416,461,-421v259,-5,459,174,459,427v0,141,-56,251,-168,330v128,75,192,198,192,367v0,277,-218,476,-499,472v-276,-4,-463,-154,-485,-443r225,0v21,141,112,229,269,231v151,2,265,-118,261,-270"},"4":{"d":"1010,-431r164,0r0,212r-164,0r0,219r-233,0r0,-219r-758,0r991,-1440r0,1228xm777,-431r0,-517r-356,517r356,0"},"5":{"d":"525,-1070v342,-39,575,214,575,535v0,321,-254,560,-577,560v-205,0,-366,-96,-484,-288r176,-149v86,138,144,218,328,225v185,7,330,-158,330,-343v0,-191,-143,-339,-329,-339v-105,0,-195,46,-271,137r-77,0r243,-812r638,0r0,218r-476,0"},"6":{"d":"636,25v-268,0,-523,-234,-523,-502v0,-122,50,-251,151,-388r540,-733r171,128r-369,502v306,-57,545,198,545,478v0,274,-240,515,-515,515xm633,-187v155,0,291,-136,291,-288v0,-160,-135,-294,-292,-294v-158,0,-292,134,-292,291v0,158,134,291,293,291"},"7":{"d":"868,-1326r-762,0r0,-218r1151,0r-974,1597r-185,-117"},"8":{"d":"640,25v-274,0,-493,-197,-493,-464v0,-173,70,-295,209,-364v-113,-80,-170,-189,-170,-327v0,-248,203,-440,452,-440v249,0,448,192,448,441v0,133,-56,241,-169,325v116,60,198,194,200,362v3,270,-205,467,-477,467xm636,-1359v-122,0,-231,108,-231,228v0,128,106,234,231,234v123,0,231,-108,231,-231v0,-123,-108,-231,-231,-231xm632,-701v-135,0,-256,118,-256,254v0,139,117,260,256,260v138,0,256,-120,256,-257v0,-139,-118,-257,-256,-257"},"9":{"d":"628,-1570v269,0,523,236,523,502v0,120,-50,250,-152,389r-539,732r-171,-127r369,-503r-85,8v-247,6,-460,-231,-460,-485v0,-276,240,-516,515,-516xm631,-1359v-155,0,-291,136,-291,288v0,162,134,296,292,296v158,0,292,-136,292,-292v0,-157,-135,-292,-293,-292"},":":{"d":"316,28v-77,0,-139,-62,-139,-140v0,-73,66,-138,139,-138v74,0,139,65,139,139v0,75,-63,139,-139,139xm316,-723v-76,0,-139,-63,-139,-141v0,-72,66,-137,139,-137v74,0,139,65,139,139v0,75,-63,139,-139,139","w":632},";":{"d":"281,-289r200,78r-285,571r-152,-63xm365,-723v-75,0,-139,-63,-139,-140v0,-73,66,-138,139,-138v74,0,139,65,139,139v0,75,-63,139,-139,139","w":632},"<":{"d":"1134,-1372r0,230r-758,359r758,359r0,228r-1004,-490r0,-197"},"=":{"d":"99,-880r0,-170r1065,0r0,170r-1065,0xm99,-556r0,-170r1065,0r0,170r-1065,0"},">":{"d":"130,-195r0,-230r757,-358r-757,-360r0,-228r1003,490r0,197"},"?":{"d":"381,-684v0,70,47,117,118,117v73,0,113,-51,120,-154r226,0v6,217,-153,366,-350,366v-189,0,-345,-159,-339,-347v6,-193,105,-247,271,-310v98,-37,160,-65,186,-87v27,-22,40,-56,40,-102v1,-91,-61,-150,-152,-150v-124,0,-178,107,-139,235r-233,0r-5,-82v-4,-207,165,-368,375,-368v211,0,381,162,381,371v0,109,-36,196,-109,263v-46,42,-133,83,-260,122v-87,27,-130,69,-130,126xm504,28v-77,0,-140,-64,-140,-140v0,-73,66,-138,139,-138v74,0,139,65,139,139v0,74,-63,139,-138,139","w":1002},"@":{"d":"467,-741v0,-252,181,-454,425,-454v112,0,202,43,271,130r14,-111r151,0r-68,580v-7,64,0,125,60,125v58,0,111,-41,158,-123v47,-81,70,-173,70,-276v0,-330,-271,-562,-609,-562v-362,0,-668,295,-657,658v12,392,267,651,677,651v158,0,340,-45,505,-127r52,144v-326,170,-795,183,-1080,-19v-182,-129,-323,-367,-328,-647v-8,-447,378,-799,829,-799v407,0,758,292,758,689v0,152,-39,282,-118,391v-79,110,-172,165,-279,165v-85,0,-143,-40,-174,-121v-82,84,-173,126,-274,126v-222,0,-383,-188,-383,-420xm859,-494v141,2,265,-150,265,-296v0,-122,-100,-217,-221,-217v-140,0,-230,128,-230,275v0,126,69,236,186,238","w":1803},"A":{"d":"1092,-375r-661,0r-172,375r-251,0r764,-1641r737,1641r-255,0xm997,-594r-229,-525r-240,525r469,0","w":1517},"B":{"d":"836,-831v153,50,262,196,266,389v4,194,-141,366,-301,413v-156,46,-412,25,-616,29r0,-1544v157,1,366,-6,479,24v180,47,299,199,299,408v0,111,-42,204,-127,281xm742,-1108v1,-149,-90,-223,-242,-222r-82,0r0,449r73,0v166,1,250,-70,251,-227xm872,-451v0,-166,-125,-240,-336,-235r-118,0r0,467r144,0v188,5,310,-75,310,-232","w":1211},"C":{"d":"906,28v-429,0,-798,-365,-798,-793v0,-197,67,-370,195,-526v238,-289,669,-376,1023,-170r0,276v-135,-113,-274,-169,-418,-169v-313,0,-565,271,-565,587v0,314,254,582,566,577v199,-3,302,-83,417,-176r0,281v-133,75,-273,113,-420,113","w":1435},"D":{"d":"185,0r0,-1544v233,2,534,-7,692,46v284,95,502,377,502,726v0,237,-81,432,-249,576v-174,149,-302,194,-625,196r-320,0xm1144,-772v-7,-344,-237,-564,-621,-553r-105,0r0,1106v133,2,276,-3,366,-33v203,-68,365,-271,360,-520","w":1487},"E":{"d":"1037,-1325r-619,0r0,371r601,0r0,219r-601,0r0,516r619,0r0,219r-852,0r0,-1544r852,0r0,219","w":1158},"F":{"d":"956,-1325r-538,0r0,371r519,0r0,219r-519,0r0,735r-233,0r0,-1544r771,0r0,219","w":1041},"G":{"d":"919,-1354v-320,0,-577,261,-577,585v0,172,63,313,185,425v199,183,477,214,684,39v91,-78,142,-171,153,-280r-385,0r0,-219r638,0v4,269,-44,444,-176,591v-144,160,-326,242,-547,242v-423,0,-786,-374,-786,-798v0,-437,370,-817,807,-805v299,7,468,126,633,314r-166,159v-127,-169,-281,-253,-463,-253","w":1725},"H":{"d":"418,-940r666,0r0,-604r233,0r0,1544r-233,0r0,-721r-666,0r0,721r-233,0r0,-1544r233,0r0,604","w":1502},"I":{"d":"418,-1544r0,1544r-233,0r0,-1544r233,0","w":604},"J":{"d":"655,-1544r0,999v-1,222,-21,323,-110,436v-130,164,-396,176,-583,61r114,-199v102,76,246,83,303,-22v28,-53,42,-145,42,-276r0,-999r234,0","w":840},"K":{"d":"418,-928r601,-616r311,0r-698,699r702,845r-312,0r-556,-687r-48,48r0,639r-233,0r0,-1544r233,0r0,616","w":1357},"L":{"d":"418,-1544r0,1325r454,0r0,219r-687,0r0,-1544r233,0","w":908},"M":{"d":"131,0r325,-1660r530,1200r549,-1200r292,1660r-239,0r-149,-932r-457,1003r-444,-1004r-166,933r-241,0","w":1969},"N":{"d":"185,0r0,-1649r1126,1178r0,-1073r233,0r0,1638r-1126,-1175r0,1081r-233,0","w":1729},"O":{"d":"1722,-770v0,435,-379,798,-815,798v-199,0,-378,-69,-537,-207v-175,-153,-262,-353,-262,-600v0,-425,382,-794,811,-794v428,0,803,375,803,803xm916,-1354v-314,0,-573,262,-573,578v0,321,265,586,567,586v317,0,577,-266,577,-582v0,-319,-254,-582,-571,-582","w":1830},"P":{"d":"1051,-1087v0,292,-221,465,-525,460r-108,0r0,627r-233,0r0,-1544v178,1,438,-6,557,27v174,49,309,224,309,430xm418,-843r87,0v214,0,321,-82,321,-247v0,-159,-110,-239,-331,-239r-77,0r0,486","w":1106},"Q":{"d":"108,-765v0,-441,374,-808,807,-808v196,0,372,66,527,198v187,159,280,366,280,621v0,200,-74,378,-221,533r255,249r-293,0r-121,-124v-307,195,-714,152,-975,-84v-171,-155,-259,-348,-259,-585xm343,-763v0,417,454,715,834,504r-363,-352r301,0r224,223v99,-103,148,-230,148,-381v0,-323,-254,-585,-575,-585v-327,0,-569,261,-569,591","w":1830},"R":{"d":"1050,-1091v1,225,-149,396,-342,433r478,658r-285,0r-441,-632r-42,0r0,632r-233,0r0,-1544r273,0v204,0,351,38,442,115v100,85,150,198,150,338xm418,-835r74,0v221,0,331,-84,331,-253v0,-158,-107,-237,-322,-237r-83,0r0,490","w":1233},"S":{"d":"177,-1165v0,-237,218,-409,464,-409v178,0,317,87,417,260r-189,112v-64,-105,-95,-147,-230,-152v-119,-5,-226,78,-225,191v0,75,56,137,168,182v252,101,516,192,516,517v0,278,-221,495,-497,492v-286,-3,-458,-187,-493,-454r236,-52v11,91,30,153,56,188v49,66,118,100,210,100v171,0,298,-161,240,-340v-47,-144,-219,-183,-356,-243v-210,-92,-317,-220,-317,-392","w":1194},"T":{"d":"611,-1325r0,1325r-233,0r0,-1325r-355,0r0,-219r942,0r0,219r-354,0","w":988},"U":{"d":"756,28v-314,0,-571,-248,-571,-578r0,-994r233,0r0,930v-9,274,112,424,338,424v226,0,339,-147,339,-424r0,-930r233,0r0,994v9,330,-259,578,-572,578","w":1513},"V":{"d":"263,-1544r427,1070r433,-1070r255,0r-693,1660r-677,-1660r255,0","w":1385},"W":{"d":"261,-1544r402,1032r420,-1107r402,1107r427,-1032r253,0r-690,1642r-397,-1094r-414,1095r-656,-1643r253,0","w":2172},"X":{"d":"508,-807r-425,-737r265,0r295,523r310,-523r267,0r-445,737r467,807r-261,0r-342,-591r-352,591r-264,0","w":1265},"Y":{"d":"497,-667r-504,-877r268,0r353,617r354,-617r268,0r-506,877r0,667r-233,0r0,-667","w":1229},"Z":{"d":"452,-219r741,0r0,219r-1124,0r758,-1325r-634,0r0,-219r1017,0","w":1280},"[":{"d":"430,-1478r0,1676r194,0r0,212r-423,0r0,-2099r423,0r0,211r-194,0","w":732},"\\":{"d":"194,-1706r883,2045r-184,83r-885,-2046","w":1061},
"]":{"d":"303,198r0,-1676r-195,0r0,-211r423,0r0,2099r-423,0r0,-212r195,0","w":732},"^":{"d":"281,-812r-245,0r391,-739r304,0r392,739r-246,0r-298,-555","w":1158},"_":{"d":"0,129r1158,0r0,210r-1158,0r0,-210","w":1158},"`":{"d":"197,-1454r211,-110r276,364r-124,76","w":1158},"a":{"d":"96,-490v0,-276,193,-511,459,-511v113,0,215,47,305,140r0,-113r226,0r0,974r-226,0r0,-102v-93,87,-192,130,-299,130v-274,0,-465,-237,-465,-518xm597,-798v-158,0,-271,144,-271,308v0,174,107,317,269,317v171,0,279,-139,279,-312v0,-173,-109,-313,-277,-313","w":1228},"b":{"d":"1132,-490v0,282,-191,518,-463,518v-113,0,-213,-43,-302,-130r0,102r-225,0r0,-1689r225,0r0,828v90,-93,192,-140,306,-140v265,0,459,237,459,511xm630,-173v160,0,272,-142,272,-307v0,-173,-108,-318,-269,-318v-168,0,-279,136,-279,311v0,179,106,314,276,314","w":1228},"c":{"d":"96,-483v0,-286,243,-518,532,-518v96,0,187,23,272,69r0,299v-89,-101,-131,-160,-279,-165v-169,-6,-295,140,-295,312v0,175,120,319,290,313v151,-5,192,-62,284,-167r0,297v-91,47,-183,71,-274,71v-292,0,-530,-223,-530,-511","w":976},"d":{"d":"96,-490v0,-274,192,-511,458,-511v114,0,216,47,306,140r0,-828r226,0r0,1689r-226,0r0,-102v-89,87,-189,130,-301,130v-272,0,-463,-238,-463,-518xm597,-798v-158,0,-271,144,-271,308v0,174,107,317,269,317v171,0,279,-139,279,-312v0,-173,-109,-313,-277,-313","w":1228},"e":{"d":"566,-1001v312,2,485,228,463,567r-698,0v9,149,103,265,255,261v153,-4,181,-73,262,-188r190,106v-96,160,-213,281,-460,283v-294,3,-482,-215,-482,-514v0,-295,181,-517,470,-515xm798,-618v-33,-144,-155,-213,-304,-168v-77,23,-126,86,-148,168r452,0","w":1133},"f":{"d":"477,-1500v-103,9,-102,74,-102,205r0,321r245,0r0,210r-245,0r0,764r-226,0r0,-764r-80,0r0,-210r80,0r0,-376v-6,-254,103,-366,320,-366v40,0,90,12,151,35r0,230v-42,-23,-110,-52,-143,-49","w":608},"g":{"d":"96,-481v0,-280,183,-520,457,-520v123,0,225,46,306,137r0,-110r225,0r0,951v1,182,-25,306,-111,403v-89,100,-209,152,-363,152v-265,2,-449,-160,-471,-404r226,0v20,133,111,202,247,202v165,0,247,-101,247,-303r0,-136v-89,91,-192,137,-309,137v-270,0,-454,-233,-454,-509xm595,-173v168,0,273,-137,273,-312v0,-177,-107,-314,-273,-314v-168,0,-269,138,-269,315v0,176,100,311,269,311","w":1226},"h":{"d":"580,-798v-185,0,-213,116,-213,327r0,471r-225,0r0,-1689r225,0r0,796v80,-72,168,-108,265,-108v228,0,348,141,348,404r0,597r-225,0r0,-576v-1,-145,-40,-222,-175,-222","w":1123},"i":{"d":"367,-974r0,974r-225,0r0,-974r225,0xm255,-1231v-80,0,-147,-68,-147,-148v0,-77,69,-145,146,-145v79,0,147,67,147,146v0,79,-67,147,-146,147","w":510},"j":{"d":"367,-974r0,1504r-225,0r0,-1504r225,0xm255,-1231v-80,0,-147,-68,-147,-148v0,-77,69,-145,146,-145v79,0,147,67,147,146v0,79,-67,147,-146,147","w":510},"k":{"d":"367,-1689r0,1030r317,-315r302,0r-423,409r454,565r-292,0r-322,-411r-36,36r0,375r-225,0r0,-1689r225,0","w":1020},"l":{"d":"367,-1689r0,1689r-225,0r0,-1689r225,0","w":510},"m":{"d":"549,-798v-150,0,-182,120,-182,295r0,503r-225,0r0,-974r225,0r0,90v79,-77,107,-117,234,-117v110,0,197,48,261,144v71,-96,166,-144,287,-144v219,0,329,133,329,399r0,602r-226,0r0,-541v-3,-158,-18,-257,-149,-257v-149,0,-178,120,-178,295r0,503r-226,0r0,-538v0,-173,-50,-260,-150,-260","w":1620},"n":{"d":"573,-799v-179,0,-205,119,-205,329r0,470r-226,0r0,-974r226,0r0,90v79,-78,167,-117,266,-117v233,0,347,138,347,404r0,597r-226,0r0,-544v-4,-174,-25,-255,-182,-255","w":1123},"o":{"d":"611,28v-287,0,-515,-232,-515,-522v0,-277,240,-507,519,-507v283,0,520,231,520,515v0,287,-237,514,-524,514xm615,-798v-172,0,-289,133,-289,308v0,187,111,317,289,317v178,0,290,-130,290,-312v0,-182,-113,-313,-290,-313","w":1231},"p":{"d":"1132,-482v0,276,-191,510,-459,510v-114,0,-216,-46,-306,-137r0,639r-225,0r0,-1504r225,0r0,106v89,-89,189,-133,302,-133v272,0,463,238,463,519xm631,-173v159,0,271,-144,271,-308v0,-174,-108,-317,-270,-317v-170,0,-278,136,-278,312v0,173,108,313,277,313","w":1228},"q":{"d":"96,-482v0,-279,192,-519,462,-519v113,0,213,44,302,133r0,-106r226,0r0,1504r-226,0r0,-639v-89,91,-191,137,-306,137v-267,0,-458,-235,-458,-510xm597,-798v-157,0,-271,144,-271,306v0,174,107,319,269,319v170,0,279,-137,279,-312v0,-173,-109,-313,-277,-313","w":1228},"r":{"d":"367,-887v73,-72,108,-114,226,-114v59,0,121,19,186,58r-103,206v-43,-31,-84,-46,-125,-46v-123,0,-184,93,-184,278r0,505r-225,0r0,-974r225,0r0,87","w":766},"s":{"d":"127,-708v-6,-167,138,-293,303,-293v125,0,217,64,278,193r-186,99v-29,-60,-66,-90,-109,-90v-41,-1,-75,32,-75,73v0,37,43,74,130,111v119,51,200,99,241,142v41,43,62,102,62,175v0,183,-161,326,-348,326v-163,0,-279,-80,-347,-239r192,-89v48,83,67,127,159,127v76,0,114,-35,114,-104v1,-87,-147,-139,-225,-178v-119,-59,-184,-106,-189,-253","w":831},"t":{"d":"374,-764r0,764r-225,0r0,-764r-96,0r0,-210r96,0r0,-357r225,0r0,357r175,0r0,210r-175,0","w":560},"u":{"d":"974,-410v10,282,-157,432,-416,438v-183,5,-335,-101,-388,-236v-18,-46,-28,-113,-28,-202r0,-564r225,0r0,559v0,161,64,242,191,242v127,0,191,-81,191,-242r0,-559r225,0r0,564","w":1116},"v":{"d":"263,-974r252,547r251,-547r253,0r-506,1041r-502,-1041r252,0","w":1029},"w":{"d":"264,-974r255,556r275,-645r277,645r252,-556r252,0r-510,1047r-271,-627r-274,627r-509,-1047r253,0","w":1585},"x":{"d":"444,-527r-350,-447r268,0r217,284r221,-284r276,0r-360,447r417,527r-268,0r-286,-364r-293,364r-275,0","w":1143},"y":{"d":"449,-181r-438,-793r261,0r298,560r278,-560r254,0r-776,1504r-257,0","w":1113},"z":{"d":"465,-212r579,0r0,212r-1025,0r631,-764r-497,0r0,-210r942,0","w":1113},"{":{"d":"225,-1380v-4,-245,98,-347,345,-324r58,2r0,201v-144,-2,-172,28,-172,181r0,402v-2,154,-34,218,-140,280v93,56,140,130,140,222r0,453v-2,155,27,190,172,185r0,202r-128,4v-213,-4,-275,-113,-275,-339r0,-492v-1,-77,-60,-132,-130,-147r0,-193v95,-23,129,-74,130,-191r0,-446","w":732},"|":{"d":"463,-1544r232,0r0,1929r-232,0r0,-1929","w":1158},"}":{"d":"508,102v5,245,-99,348,-345,323r-58,0r0,-203v142,5,172,-28,172,-181r0,-400v2,-155,33,-219,140,-281v-93,-56,-140,-130,-140,-221r0,-455v2,-156,-29,-189,-172,-185r0,-202r127,-4v213,3,276,114,276,339r0,494v1,77,60,132,130,147r0,192v-94,24,-129,75,-130,191r0,446","w":732},"~":{"d":"212,-1409v76,-157,137,-294,331,-294v69,0,153,23,253,70v90,43,161,64,212,64v110,0,129,-62,176,-116v16,-18,28,-28,41,-28v31,0,66,28,107,85v-51,101,-103,174,-156,218v-53,44,-116,65,-189,65v-60,0,-145,-31,-261,-78v-118,-48,-170,-76,-262,-41v-23,9,-38,19,-45,29r-64,89v-13,17,-26,26,-39,26v-30,0,-65,-30,-104,-89","w":1544},"\u2122":{"d":"352,-1393r0,729r-160,0r0,-729r-194,0r0,-151r548,0r0,151r-194,0xm600,-664r189,-960r293,650r293,-650r189,960r-164,0r-82,-479r-236,495r-236,-495r-83,479r-163,0","w":1627},"\u00d7":{"d":"175,-1133r127,-127r329,330r330,-330r127,127r-330,330r330,330r-127,126r-330,-329r-329,329r-127,-126r330,-330"},"\u00a0":{"w":632}}});Cufon.registerFont({"w":1232,"face":{"font-family":"Futura","font-weight":800,"font-stretch":"condensed","units-per-em":"2048","panose-1":"2 11 8 6 2 2 4 3 2 4","ascent":"1638","descent":"-410","x-height":"22","bbox":"-12 -1768 2166 501","underline-thickness":"240","underline-position":"-120","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":616},"\u2013":{"d":"1096,-401r-960,0r0,-309r960,0r0,309","w":1233},"\u2014":{"d":"1506,-401r-1506,0r0,-309r1506,0r0,309","w":1506},"\u2018":{"d":"93,-801r269,-743r330,0r-190,743r-409,0","w":768},"\u02bb":{"d":"93,-801r269,-743r330,0r-190,743r-409,0","w":768},"\u2019":{"d":"676,-1544r-270,743r-329,0r189,-743r410,0","w":753},"\u02bc":{"d":"676,-1544r-270,743r-329,0r189,-743r410,0","w":753},"\u201c":{"d":"93,-801r269,-743r330,0r-190,743r-409,0xm641,-801r270,-743r329,0r-189,743r-410,0","w":1317},"\u201d":{"d":"1240,-1544r-270,743r-329,0r189,-743r410,0xm692,-1544r-270,743r-329,0r189,-743r410,0","w":1317},"\u2026":{"d":"384,-445v129,0,237,109,237,239v0,122,-108,228,-233,228v-125,0,-236,-108,-236,-235v0,-125,108,-232,232,-232xm1156,-445v129,0,238,110,238,239v0,123,-108,228,-234,228v-125,0,-236,-108,-236,-235v0,-125,108,-232,232,-232xm1928,-445v130,0,238,109,238,239v0,123,-108,228,-234,228v-125,0,-236,-108,-236,-235v0,-125,108,-232,232,-232","w":2317},"!":{"d":"372,-446v129,0,235,107,235,237v0,124,-113,231,-235,231v-123,0,-233,-111,-233,-234v0,-126,109,-234,233,-234xm582,-553r-407,0r0,-1079r407,0r0,1079","w":746},"\"":{"d":"386,-908r-258,0r-55,-636r368,0xm811,-908r-258,0r-55,-636r369,0","w":939},
"#":{"d":"1053,-692r0,227r-174,0r-57,465r-238,0r57,-465r-124,0r-57,465r-236,0r57,-465r-150,0r0,-227r178,0r23,-189r-148,0r0,-228r177,0r53,-435r236,0r-54,435r124,0r55,-435r237,0r-54,435r144,0r0,228r-172,0r-23,189r146,0xm692,-881r-124,0r-23,189r125,0"},"$":{"d":"729,-1184v-57,0,-105,36,-105,91v0,55,125,147,180,190v120,95,216,200,216,407v0,223,-99,383,-298,479r0,234r-190,0r0,-197v-155,-6,-214,-24,-320,-68r0,-482v76,115,165,173,268,173v81,0,121,-33,121,-99v0,-72,-104,-148,-159,-192v-136,-112,-230,-205,-230,-413v0,-235,111,-398,334,-491r0,-216r188,0r0,204v83,11,165,36,247,77r0,468v-86,-110,-170,-165,-252,-165"},"%":{"d":"401,-1567v204,0,331,162,331,375v0,210,-127,380,-327,380v-215,0,-343,-160,-343,-385v0,-215,130,-370,339,-370xm461,-1185v0,-103,-21,-155,-63,-155v-43,0,-64,50,-64,151v0,101,22,151,65,151v41,0,62,-49,62,-147xm1204,-732v204,0,331,162,331,375v0,210,-128,379,-327,379v-216,0,-343,-159,-343,-384v0,-215,130,-370,339,-370xm1264,-349v0,-104,-21,-156,-63,-156v-43,0,-64,51,-64,152v0,101,22,151,65,151v41,0,62,-49,62,-147xm330,53r-161,-115r1093,-1545r166,116","w":1597},"&":{"d":"669,-1572v242,0,469,184,469,417v0,154,-88,288,-263,402r152,199v48,-52,95,-111,144,-178r212,284v-53,61,-103,107,-159,160r212,288r-451,0r-60,-84v-111,74,-226,111,-343,111v-263,0,-489,-218,-489,-477v0,-171,89,-308,266,-409v-79,-101,-119,-202,-119,-303v0,-224,200,-410,429,-410xm488,-458v0,67,52,128,120,128v36,0,71,-14,105,-42r-152,-201v-49,29,-73,67,-73,115xm703,-1255v-50,2,-87,32,-87,81v0,30,25,82,74,155v64,-62,96,-113,96,-154v0,-46,-38,-84,-83,-82","w":1459},"'":{"d":"386,-908r-258,0r-55,-636r368,0","w":514},"(":{"d":"466,-603v0,345,105,689,232,931r-300,161v-387,-687,-386,-1496,0,-2185r300,161v-127,244,-232,586,-232,932","w":775},")":{"d":"308,-603v0,-353,-107,-681,-231,-932r300,-161v386,686,387,1499,0,2185r-300,-161v131,-255,231,-581,231,-931","w":775},"*":{"d":"485,-1689r262,0r-15,254r237,-93r81,249r-247,64r163,197r-213,155r-137,-216r-137,216r-212,-155r162,-197r-247,-63r81,-250r238,93"},"+":{"d":"106,-667r0,-241r386,0r0,-412r247,0r0,412r386,0r0,241r-386,0r0,412r-247,0r0,-412r-386,0"},",":{"d":"587,-369r-270,742r-329,0r189,-742r410,0","w":616},"-":{"d":"502,-401r-502,0r0,-309r502,0r0,309","w":502},".":{"d":"305,-445v129,0,237,109,237,239v0,122,-108,228,-233,228v-125,0,-236,-108,-236,-235v0,-125,108,-232,232,-232","w":616},"\/":{"d":"225,489r-217,-123r1104,-2062r218,116","w":1368},"0":{"d":"1019,-1357v184,260,189,909,-1,1171v-101,139,-225,213,-387,213v-175,0,-313,-72,-412,-215v-99,-143,-148,-342,-148,-598v0,-242,49,-433,148,-574v99,-141,233,-212,402,-212v170,0,299,74,398,215xm750,-765v0,-298,-45,-447,-135,-447v-89,0,-134,133,-134,400v0,319,44,478,131,478v47,0,82,-34,104,-104v22,-70,34,-179,34,-327"},"1":{"d":"893,0r-417,0r0,-1181r-167,0r0,-363r584,0r0,1544"},"2":{"d":"654,-1572v287,-2,502,214,495,505v-8,329,-214,540,-405,725v63,-5,126,-8,190,-10v64,-2,128,-3,195,-3r0,355r-1063,0r422,-563v79,-106,145,-200,198,-305v37,-73,55,-147,55,-224v1,-74,-30,-137,-97,-137v-67,0,-100,63,-100,188r2,57r-405,0v-30,-343,197,-586,513,-588"},"3":{"d":"598,27v-295,0,-518,-184,-507,-481r407,0v0,93,34,139,102,139v72,0,115,-65,115,-143v0,-135,-100,-180,-241,-158r0,-329v132,14,221,-32,221,-155v0,-85,-30,-128,-89,-128v-53,0,-79,52,-82,124r-403,0v19,-277,208,-468,500,-468v262,0,481,196,481,449v0,142,-62,250,-187,325v138,79,207,199,207,358v0,281,-232,467,-524,467"},"4":{"d":"1039,0r-416,0r0,-313r-561,0r0,-326r466,-905r511,0r0,899r132,0r0,332r-132,0r0,313xm642,-645r0,-289r10,-177r-62,132v-57,120,-117,232,-184,334r236,0"},"5":{"d":"1121,-533v0,318,-263,560,-587,560v-144,0,-285,-40,-424,-120r49,-366v123,71,234,107,331,107v116,0,214,-65,214,-173v0,-123,-110,-174,-248,-173v-86,0,-176,18,-271,54r120,-900r768,0r0,363r-440,0r-33,173v29,-2,52,-3,70,-3v252,-5,451,218,451,478"},"6":{"d":"603,27v-309,0,-505,-240,-505,-558v0,-179,83,-427,249,-743r141,-270r448,0r-280,494r-43,67v290,-161,527,155,527,450v0,320,-219,560,-537,560xm739,-522v0,-136,-40,-204,-119,-204v-76,0,-114,69,-114,206v0,143,38,214,114,214v79,0,119,-72,119,-216"},"7":{"d":"539,0r-449,0r372,-822v59,-128,122,-243,199,-359r-523,0r0,-363r1095,0"},"8":{"d":"1115,-1139v-2,182,-78,268,-211,335v159,69,239,191,239,364v0,274,-242,467,-527,467v-275,0,-526,-202,-526,-466v0,-173,88,-295,263,-365v-155,-53,-232,-160,-232,-323v0,-261,221,-445,489,-445v270,0,508,179,505,433xm618,-329v75,0,100,-75,100,-156v0,-104,-34,-156,-102,-156v-138,0,-136,312,2,312xm617,-1240v-59,0,-85,61,-85,128v0,94,29,141,87,141v57,0,86,-45,86,-134v0,-70,-27,-135,-88,-135"},"9":{"d":"629,-1572v308,0,505,241,505,559v0,179,-83,426,-250,743r-141,270r-448,0r247,-439v21,-39,52,-84,77,-122v-291,162,-527,-156,-527,-450v0,-320,218,-561,537,-561xm493,-1023v0,137,40,205,120,205v76,0,114,-69,114,-207v0,-143,-38,-215,-115,-215v-79,0,-119,72,-119,217"},":":{"d":"305,-1104v129,0,237,108,237,238v0,122,-108,228,-233,228v-127,0,-236,-109,-236,-235v0,-124,108,-231,232,-231xm305,-445v129,0,237,109,237,239v0,122,-108,228,-233,228v-125,0,-236,-108,-236,-235v0,-125,108,-232,232,-232","w":616},";":{"d":"587,-369r-270,742r-329,0r189,-742r410,0xm393,-1104v129,0,237,109,237,239v0,124,-108,229,-234,229v-126,0,-235,-110,-235,-236v0,-125,108,-232,232,-232","w":616},"<":{"d":"1118,-1522r0,436r-541,303r538,305r0,433r-1001,-557r0,-365"},"=":{"d":"91,-852r0,-218r1050,0r0,218r-1050,0xm91,-505r0,-218r1050,0r0,218r-1050,0"},">":{"d":"114,-45r0,-436r540,-304r-538,-305r0,-432r1002,556r0,365"},"?":{"d":"593,-448v129,0,234,112,234,239v0,124,-112,231,-233,231v-123,0,-233,-111,-233,-234v0,-124,105,-236,232,-236xm1085,-1144v-3,233,-106,377,-296,426r0,159r-397,0r0,-378v175,17,280,-31,280,-200v0,-114,-30,-171,-90,-171v-58,0,-87,59,-87,176r-402,0v1,-249,88,-391,261,-471v68,-31,144,-49,229,-49v289,0,505,219,502,508","w":1178},"@":{"d":"477,-738v0,-233,137,-455,348,-456v54,0,105,21,154,64r11,-46r176,0r-64,554v-4,42,-5,107,33,107v43,0,82,-37,117,-111v36,-75,54,-156,54,-244v0,-281,-195,-506,-469,-506v-301,0,-519,290,-519,603v0,325,217,602,528,602v159,0,306,-40,441,-121r89,171v-292,179,-719,204,-983,-8v-166,-134,-288,-364,-293,-644v-8,-427,321,-796,738,-796v370,0,669,310,669,685v0,152,-38,282,-114,391v-76,109,-165,164,-269,164v-59,0,-110,-32,-153,-97v-71,67,-139,101,-203,101v-182,-1,-291,-209,-291,-413xm784,-529v93,0,161,-158,161,-271v0,-92,-36,-189,-109,-189v-95,0,-139,146,-139,264v0,89,21,196,87,196","w":1606},"A":{"d":"1220,0r-431,0r-31,-196r-281,0r-34,196r-431,0r371,-1544r510,0xm709,-527r-31,-207r-34,-295r-13,-146r-27,219r-71,429r176,0","w":1233},"B":{"d":"1158,-442v3,266,-197,442,-466,442r-584,0r0,-1544r485,0v329,-7,536,149,536,438v0,193,-96,298,-288,314v207,31,315,125,317,350xm732,-484v-1,-107,-87,-156,-207,-147r0,296v117,15,207,-42,207,-149xm715,-1077v3,-105,-76,-145,-190,-132r0,265v109,7,188,-35,190,-133","w":1228},"C":{"d":"495,-773v4,215,59,398,264,398v72,0,144,-33,217,-100r-24,446v-269,112,-509,52,-685,-134v-133,-141,-198,-343,-198,-603v0,-455,250,-808,683,-806v67,0,136,13,206,38r0,441v-62,-62,-126,-93,-191,-93v-196,0,-276,190,-272,413","w":1031},"D":{"d":"1175,-771v0,466,-205,774,-677,771r-390,0r0,-1544r360,0v470,-5,707,321,707,773xm525,-373v149,-7,224,-136,224,-386v0,-123,-18,-221,-57,-292v-42,-76,-89,-111,-167,-108r0,786","w":1245},"E":{"d":"108,0r0,-1544r775,0r0,363r-358,0r0,225r321,0r0,349r-321,0r0,236r358,0r0,371r-775,0","w":953},"F":{"d":"525,0r-417,0r0,-1544r737,0r0,363r-320,0r0,225r298,0r0,349r-298,0r0,607","w":899},"G":{"d":"790,-1042v-10,-82,-45,-158,-123,-158v-115,0,-172,158,-172,473v0,134,14,231,38,292v32,80,106,116,181,75v60,-33,84,-113,85,-208r-154,0r0,-325r582,0v5,306,-39,572,-133,706v-99,141,-240,214,-429,214v-407,0,-596,-348,-596,-792v0,-250,53,-447,159,-591v106,-144,251,-216,435,-216v244,0,421,127,531,382","w":1297},"H":{"d":"1141,0r-417,0r0,-621r-199,0r0,621r-417,0r0,-1544r417,0r0,546r199,0r0,-546r417,0r0,1544","w":1249},"I":{"d":"525,0r-417,0r0,-1544r417,0r0,1544","w":633},"J":{"d":"712,-472v10,326,-141,499,-440,499v-78,0,-169,-17,-272,-50r0,-432v47,61,103,92,167,92v85,0,128,-64,128,-192r0,-989r417,0r0,1072","w":820},"K":{"d":"1241,0r-450,0r-277,-712r11,712r-417,0r0,-1544r417,0r-11,662r246,-662r440,0r-333,745","w":1253},"L":{"d":"838,0r-730,0r0,-1544r417,0r0,1173r313,0r0,371","w":854},
"M":{"d":"1697,0r-436,0r-44,-985v-5,54,-10,106,-16,155v-6,49,-13,96,-22,142r-131,688r-340,0r-112,-689v-7,-40,-16,-109,-27,-206v-1,-15,-4,-45,-9,-90r-10,285r-37,700r-444,0r180,-1544r519,0r87,520v16,94,26,194,35,302v29,-301,94,-543,142,-822r515,0","w":1774},"N":{"d":"108,0r0,-1544r398,0r209,542r86,253r43,136v-15,-134,-27,-249,-35,-344v-19,-212,-10,-373,-12,-587r398,0r0,1544r-398,0r-210,-568r-59,-170v-18,-53,-34,-104,-47,-152v9,109,15,203,19,284v4,81,6,151,6,212r0,394r-398,0","w":1303},"O":{"d":"1243,-767v0,235,-54,427,-161,574v-107,147,-246,220,-417,220v-152,0,-282,-56,-391,-169v-137,-143,-205,-357,-205,-642v0,-273,71,-482,214,-627v106,-107,232,-161,377,-161v178,0,320,73,425,218v105,145,158,341,158,587xm810,-764v0,-279,-49,-419,-148,-419v-49,0,-86,38,-118,110v-55,122,-50,475,-2,603v53,141,176,141,226,1v26,-72,42,-169,42,-295","w":1313},"P":{"d":"1132,-1018v0,328,-185,518,-542,512r-65,0r0,506r-417,0r0,-1544r404,0v395,-8,620,177,620,526xm525,-853v115,10,186,-62,185,-173v0,-109,-67,-192,-185,-181r0,354","w":1170},"Q":{"d":"1260,30r-335,184r-143,-207v-48,13,-89,20,-124,20v-165,0,-303,-67,-413,-202v-117,-143,-176,-341,-176,-594v0,-245,54,-439,160,-584v107,-146,249,-219,428,-219v174,0,315,72,424,217v109,145,163,333,163,565v0,265,-58,467,-175,608xm721,-390v120,-122,112,-497,49,-682v-20,-58,-52,-111,-116,-111v-47,0,-86,37,-112,112v-62,182,-67,562,48,681v36,38,95,37,131,0","w":1330},"R":{"d":"535,-1544v384,-8,600,175,600,515v0,187,-80,316,-239,387r310,642r-451,0r-206,-550v-6,-27,-20,-65,-29,-92r3,102r0,540r-415,0r0,-1544r427,0xm525,-829v124,11,195,-80,196,-195v1,-120,-67,-177,-196,-173r0,368","w":1236},"S":{"d":"881,-497v8,291,-206,524,-491,524v-98,0,-203,-22,-315,-65r0,-485v82,112,171,168,266,168v66,0,122,-39,122,-100v0,-68,-90,-135,-142,-174v-134,-105,-252,-211,-252,-436v0,-275,184,-508,469,-507v99,0,199,26,300,79r0,472v-54,-84,-133,-164,-244,-170v-58,-3,-108,40,-111,93v-4,64,97,133,151,172v150,112,241,208,247,429","w":936},"T":{"d":"647,0r-417,0r0,-1174r-230,0r0,-370r886,0r0,370r-239,0r0,1174","w":886},"U":{"d":"632,-363v100,0,106,-67,106,-184r0,-997r417,0r0,1092v-3,201,-61,291,-183,383v-87,65,-195,96,-321,96v-333,-1,-543,-194,-543,-538r0,-1033r417,0r0,996v2,114,12,185,107,185","w":1263},"V":{"d":"779,0r-425,0r-354,-1544r438,0r76,441v29,169,52,357,69,566v26,-369,103,-674,164,-1007r453,0","w":1200},"W":{"d":"1432,0r-402,0r-96,-541v-19,-105,-33,-195,-42,-272r-19,-153r-27,273r-96,693r-406,0r-344,-1544r412,0r68,425v26,169,44,302,54,399r14,141r13,-121v28,-302,84,-564,132,-844r359,0r70,371v33,173,62,377,87,613v7,-106,15,-200,24,-282v9,-82,18,-156,29,-223r76,-479r407,0","w":1745},"X":{"d":"1197,0r-463,0r-77,-220v-25,-67,-45,-132,-60,-194v-30,127,-96,289,-143,414r-454,0r375,-801r-354,-743r464,0r91,277v7,26,14,55,21,88v17,-67,31,-118,42,-154r64,-211r467,0r-352,743","w":1197},"Y":{"d":"800,0r-417,0r0,-654r-383,-890r435,0r115,358v12,41,22,81,31,119r70,-246r76,-231r432,0r-359,890r0,654","w":1159},"Z":{"d":"626,-352r153,-10r323,-9r0,371r-1063,0r0,-33r362,-827v67,-123,93,-192,178,-321r-448,0r0,-363r1023,0r0,43r-380,841","w":1192},"[":{"d":"730,206r0,276r-591,0r0,-2171r591,0r0,276r-237,0r0,1619r237,0","w":808},"\\":{"d":"1143,489r-1104,-2069r218,-116r1104,2062","w":1368},"]":{"d":"77,-1413r0,-276r591,0r0,2171r-591,0r0,-276r238,0r0,-1619r-238,0","w":808},"^":{"d":"397,-781r-383,0r323,-775r484,0r323,775r-382,0r-182,-479","w":1158},"_":{"d":"0,111r1158,0r0,256r-1158,0r0,-256","w":1158},"`":{"d":"703,-1228r-230,0r-203,-342r324,0","w":1158},"a":{"d":"1058,0r-402,0r14,-182v-69,136,-162,204,-279,204v-101,0,-179,-52,-241,-152v-113,-182,-116,-644,3,-824v64,-98,143,-150,248,-150v107,0,194,65,260,194r-12,-171r409,0r0,1081xm652,-554v0,-89,-1,-169,-45,-208v-10,-9,-24,-12,-39,-12v-68,0,-102,90,-102,271v0,129,30,194,91,194v63,0,95,-82,95,-245","w":1150},"b":{"d":"741,22v-134,-1,-191,-78,-247,-167r9,145r-410,0r0,-1689r401,0r0,592v0,50,-2,107,-6,172v66,-111,109,-179,257,-179v109,0,191,52,254,151v114,179,119,652,-3,829v-65,95,-146,146,-255,146xm674,-539v0,-155,-34,-232,-102,-232v-60,0,-90,73,-90,219v0,153,31,229,93,229v66,0,99,-72,99,-216","w":1150},"c":{"d":"477,-554v-1,105,65,221,178,201r0,369r-108,7v-314,0,-476,-257,-485,-569v-9,-302,215,-564,512,-558r81,4r0,352v-119,8,-178,73,-178,194","w":701},"d":{"d":"406,-1104v149,0,191,68,257,179r-7,-172r0,-592r402,0r0,1689r-410,0r8,-145v-68,103,-107,167,-246,167v-109,0,-191,-51,-256,-146v-122,-178,-116,-651,-2,-829v63,-99,145,-151,254,-151xm477,-545v0,148,33,222,99,222v62,0,93,-76,93,-229v0,-146,-30,-219,-90,-219v-68,0,-102,75,-102,226","w":1150},"e":{"d":"567,-1103v332,2,513,282,484,647r-588,0v5,111,36,166,94,166v45,0,75,-25,89,-76r392,8v-52,238,-204,378,-481,380v-317,2,-495,-219,-495,-543v0,-321,199,-584,505,-582xm655,-672v-2,-72,-26,-137,-93,-137v-62,0,-95,67,-94,137r187,0","w":1115},"f":{"d":"139,-1280v-1,-262,108,-423,356,-425v58,0,121,9,189,28r0,372v-35,-25,-63,-38,-82,-38v-83,0,-59,170,-62,262r144,0r0,323r-144,0r0,758r-401,0r0,-758r-116,0r0,-323r116,0r0,-199","w":697},"g":{"d":"409,-1104v132,0,170,69,243,165r-8,-142r405,0r0,1112v9,316,-191,470,-487,470v-299,0,-447,-125,-485,-391r410,0v3,59,31,88,84,88v133,1,83,-196,93,-324v-135,190,-381,184,-506,-13v-123,-193,-125,-615,0,-808v67,-103,148,-157,251,-157xm660,-544v0,-156,-29,-234,-86,-234v-65,0,-97,76,-97,228v0,157,31,235,94,235v59,0,89,-76,89,-229","w":1141},"h":{"d":"769,-1104v190,0,275,160,275,367r0,737r-401,0r0,-572v-2,-80,-2,-132,-65,-132v-56,0,-84,53,-84,159r0,545r-401,0r0,-1689r401,0r-2,736r-7,78v65,-153,159,-229,284,-229","w":1136},"i":{"d":"494,0r-402,0r0,-1081r402,0r0,1081xm293,-1652v128,0,235,107,235,236v0,123,-112,232,-234,232v-126,0,-234,-111,-234,-235v0,-126,111,-233,233,-233","w":587},"j":{"d":"494,473r-399,0r0,-1554r399,0r0,1554xm292,-1652v128,0,235,107,235,236v0,123,-112,232,-234,232v-126,0,-234,-111,-234,-235v0,-126,111,-233,233,-233","w":587},"k":{"d":"685,0r-155,-420v-7,-19,-19,-60,-36,-123r0,543r-401,0r0,-1689r401,0r0,1095v56,-170,127,-325,191,-487r434,0r-266,496r293,585r-461,0","w":1146},"l":{"d":"494,0r-401,0r0,-1689r401,0r0,1689","w":587},"m":{"d":"1321,-1104v193,0,285,139,285,362r0,742r-401,0r0,-612v0,-69,-20,-103,-61,-103v-61,0,-91,56,-91,168r0,547r-401,0r0,-597v0,-73,-23,-110,-68,-110v-83,0,-90,66,-90,169r0,538r-401,0r0,-1081r401,0r0,56v0,44,-2,85,-6,124v71,-135,164,-203,279,-203v129,0,224,75,286,224v54,-149,143,-224,268,-224","w":1699},"n":{"d":"769,-1104v190,0,275,160,275,367r0,737r-401,0r0,-572v-2,-80,-2,-132,-65,-132v-56,0,-84,53,-84,159r0,545r-401,0r0,-1081r401,0r-9,206v65,-153,159,-229,284,-229","w":1136},"o":{"d":"560,-1104v327,0,507,239,507,580v0,321,-195,546,-508,546v-313,0,-497,-235,-497,-559v0,-322,189,-567,498,-567xm565,-279v150,-34,145,-413,46,-503v-49,-44,-100,-13,-129,53v-51,117,-50,444,83,450","w":1129},"p":{"d":"485,-147v14,199,8,417,9,629r-401,0r0,-1563r401,0r-9,153v52,-96,107,-175,248,-176v104,0,185,54,254,156v126,187,125,632,4,819v-64,99,-144,151,-251,151v-97,0,-182,-56,-255,-169xm572,-315v118,0,113,-294,72,-401v-15,-40,-39,-58,-69,-58v-62,0,-93,76,-93,227v0,155,30,232,90,232","w":1146},"q":{"d":"413,-1104v141,1,196,80,248,176r-9,-153r401,0r0,1563r-401,0r2,-566v1,-18,4,-39,7,-63v-73,113,-158,169,-255,169v-105,0,-187,-52,-251,-151v-122,-187,-121,-633,4,-819v68,-102,149,-156,254,-156xm477,-555v0,160,32,240,97,240v60,0,90,-77,90,-231v0,-152,-31,-228,-93,-228v-29,0,-52,19,-69,58v-17,39,-25,92,-25,161","w":1146},"r":{"d":"662,-693v-120,2,-168,96,-168,229r0,464r-401,0r0,-1081r401,0r-21,211v61,-158,161,-237,301,-237r0,450v-44,-24,-81,-36,-112,-36","w":797},"s":{"d":"872,-357v3,228,-194,379,-432,379v-159,0,-274,-51,-386,-111r146,-300v72,75,139,113,201,113v52,0,78,-19,78,-56v0,-32,-35,-61,-105,-86v-189,-67,-283,-172,-283,-317v0,-221,210,-369,443,-369v104,0,211,29,322,88r-137,293v-67,-63,-122,-95,-165,-95v-42,0,-63,17,-63,51v0,37,40,71,120,103v100,39,167,81,204,125v37,44,57,105,57,182","w":914},"t":{"d":"549,0r-402,0r0,-758r-114,0r0,-323r114,0r0,-318r402,0r0,318r133,0r0,323r-133,0r0,758","w":697},"u":{"d":"579,-312v84,0,84,-57,84,-160r0,-609r401,0r0,663v2,187,-70,291,-186,362v-169,103,-429,102,-598,0v-118,-71,-187,-175,-187,-362r0,-663r401,0r0,609v4,96,0,160,85,160","w":1157},"v":{"d":"717,0r-419,0r-298,-1081r406,0r62,316v22,109,33,229,46,368v9,-77,18,-143,27,-200v9,-57,17,-105,26,-146r69,-338r396,0","w":1032},"w":{"d":"1265,0r-397,0r-82,-648r-124,648r-393,0r-269,-1081r394,0r61,347v7,44,14,91,21,141v7,50,14,104,20,163v20,-239,77,-438,123,-651r342,0r58,348v7,45,14,93,20,143v6,50,12,103,17,160v11,-77,21,-147,32,-210v11,-63,22,-120,33,-173r58,-268r401,0","w":1580},"x":{"d":"1117,0r-466,0r-77,-208v-5,-14,-10,-30,-15,-48r-62,156r-47,100r-450,0r329,-556r-311,-525r458,0r77,233r88,-233r445,0r-320,516","w":1117},"y":{"d":"559,453r-413,0r175,-498r-321,-1036r403,0r77,310v23,92,39,194,50,303r14,-99v33,-238,64,-326,111,-514r401,0","w":1056},"z":{"d":"905,0r-866,0r262,-561v28,-64,69,-134,102,-197r-305,0r0,-323r871,0r-255,551v-30,65,-65,132,-106,203r297,0r0,327","w":1008},
"{":{"d":"579,-904v-2,165,-34,228,-140,301v93,66,140,134,140,302r0,344v5,159,6,157,164,163r66,-2r0,280r-191,8v-266,-6,-374,-95,-374,-357r0,-414v-3,-134,-18,-179,-127,-205r0,-261v98,-23,127,-60,127,-181r0,-418v3,-260,108,-350,374,-352r191,5r0,280r-70,0v-154,4,-160,5,-160,161r0,346","w":849},"|":{"d":"358,-1544r442,0r0,1929r-442,0r0,-1929","w":1158},"}":{"d":"270,-302v2,-182,33,-220,139,-301v-93,-64,-139,-137,-139,-302r0,-345v-6,-158,-6,-157,-164,-163r-66,2r0,-280r191,-8v265,6,374,96,374,357r0,415v3,134,18,179,127,205r0,261v-97,22,-126,61,-127,181r0,417v-4,260,-109,350,-375,352r-190,-5r0,-280r70,0v154,-3,160,-6,160,-161r0,-345","w":849},"~":{"d":"1332,-1603v-79,177,-147,294,-359,294v-49,0,-134,-32,-258,-88v-83,-38,-142,-53,-175,-53v-64,0,-123,50,-177,151r-147,-121v83,-199,195,-298,336,-298v52,0,140,27,263,81v95,42,157,63,188,63v67,0,128,-50,183,-150","w":1544},"\u2122":{"d":"383,-664r-258,0r0,-657r-132,0r0,-223r529,0r0,223r-139,0r0,657xm1508,-664r-269,0r-21,-452r-89,452r-210,0r-72,-430r-25,430r-276,0r106,-880r315,0r66,379r74,-379r312,0","w":1544},"\u00d7":{"d":"124,-1103r177,-177r318,318r315,-316r173,173r-316,315r318,318r-177,177r-318,-318r-315,316r-173,-173r316,-315"},"\u00a0":{"w":616}}});


jQuery.noConflict();
jQuery(document).ready(function($) {
	$('#slides').cycle({
		timeout: 6000,
		prev: '#controls .prev',
		next: '#controls .next'	
	});
	
	$('#slider').hoverIntent(ShowControls, HideControls);
	
	function ShowControls() {
		$('#controls').show();
		}
		
	function HideControls() {
		$('#controls').hide();
		}	
	
	$('#controls .play').hide();
	$('#controls .pause').click(function() {
		 $('#slides').cycle('pause'); 
		 $(this).hide();
		
		 $('#controls .play').show();
	});
	$('#controls .play').click(function() {
		 $('#slides').cycle('resume'); 
		 $(this).hide();
		 $('#controls .pause').show();
		
	});
	
	$('#sidebar ul li h2').click(function() {
		$(this).next('ul').slideToggle();	
	});
	
	var currentPost = $('#single #content .post');
	var currentPostAttr = $('#single #content .post').attr('class');
	var firstAttr = currentPostAttr.split(" ")[0];
	$('#single #sidebar li ul li.'+firstAttr).addClass('current');
	$('#single #sidebar li ul li.'+firstAttr).parent().slideDown();
	
	});

Cufon.replace('h1');

	Cufon.replace('h2');

	Cufon.replace('#footer');

	Cufon.replace('#nav li a');

