jQuery.easing['jswing']=jQuery.easing['swing'];jQuery.extend(jQuery.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return jQuery.easing[jQuery.easing.def](x,t,b,c,d);},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b;},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b;},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b;},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b;},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b;},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b;},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b;},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b;},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b;},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b;},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b;},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b;},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b;},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b;},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b;},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b;},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b;},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b;},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b;},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b;},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b;},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b;},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b;},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;},easeInBounce:function(x,t,b,c,d){return c-jQuery.easing.easeOutBounce(x,d-t,0,c,d)+b;},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b;}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return jQuery.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return jQuery.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b;}});;;(function($){var ver="2.63";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length==0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){options=handleArguments(this,options,arg2);if(options===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=options.slideExpr?$(options.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts=buildOptions($cont,$slides,els,options,o);if(opts===false){return;}if(opts.timeout||opts.continuous){this.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},opts.continuous?10:opts.timeout+(opts.delay||0));}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;default:options={fx:options};}}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(this.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=0;opts.startingSlide=opts.randomMap[0];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var i=0;i<els.length;i++){var $e=$(els[i]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth;}if(!h){h=e.offsetHeight;}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingOp=($.browser.opera&&this.cycleW==42&&this.cycleH==19&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).click(function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).click(function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(var i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];var tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){var tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(var i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}log("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a=($.isFunction(opts.pagerAnchorBuilder))?opts.pagerAnchorBuilder(i,el):'<a href="#">'+(i+1)+"</a>";if(!a){return;}var $a=$(a);if($a.parents("body").length==0){$a.appendTo($p);}$a.bind(opts.pagerEvent,function(){opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250};})(jQuery);;(function($){$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});opts.speed=opts.speed/2;opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(var i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(var i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var t=parseInt(h/2);var l=parseInt(w/2);clip="rect("+t+"px "+l+"px "+t+"px "+l+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;var Cufon=(function(){var k=function(){return k.replace.apply(null,arguments)};var u=k.DOM={ready:(function(){var z=false,B={loaded:1,complete:1};var y=[],A=function(){if(z){return}z=true;for(var C;C=y.shift();C()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",A,false);window.addEventListener("pageshow",A,false)}if(!window.opera&&document.readyState){(function(){B[document.readyState]?A():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");A()}catch(C){setTimeout(arguments.callee,1)}})()}o(window,"load",A);return function(C){if(!arguments.length){A()}else{z?C():y.push(C)}}})()};var l=k.CSS={Size:function(z,y){this.value=parseFloat(z);this.unit=String(z).match(/[a-z%]*$/)[0]||"px";this.convert=function(A){return A/y*this.value};this.convertFrom=function(A){return A/this.value*y};this.toString=function(){return this.value+this.unit}},getStyle:function(z){var y=document.defaultView;if(y&&y.getComputedStyle){return new a(y.getComputedStyle(z,null))}if(z.currentStyle){return new a(z.currentStyle)}return new a(z.style)},quotedList:i(function(B){var A=[],z=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,y;while(y=z.exec(B)){A.push(y[3]||y[1])}return A}),ready:(function(){var A=false;var z=[],B=function(){A=true;for(var D;D=z.shift();D()){}};var y=Object.prototype.propertyIsEnumerable?f("style"):{length:0};var C=f("link");u.ready(function(){var G=0,F;for(var E=0,D=C.length;F=C[E],E<D;++E){if(!F.disabled&&F.rel.toLowerCase()=="stylesheet"){++G}}if(document.styleSheets.length>=y.length+G){B()}else{setTimeout(arguments.callee,10)}});return function(D){if(A){D()}else{z.push(D)}}})(),supports:function(A,z){var y=document.createElement("span").style;if(y[A]===undefined){return false}y[A]=z;return y[A]===z},textAlign:function(B,A,y,z){if(A.get("textAlign")=="right"){if(y>0){B=" "+B}}else{if(y<z-1){B+=" "}}return B},textDecoration:function(D,C){if(!C){C=this.getStyle(D)}var z={underline:null,overline:null,"line-through":null};for(var y=D;y.parentNode&&y.parentNode.nodeType==1;){var B=true;for(var A in z){if(z[A]){continue}if(C.get("textDecoration").indexOf(A)!=-1){z[A]=C.get("color")}B=false}if(B){break}C=this.getStyle(y=y.parentNode)}return z},textShadow:i(function(C){if(C=="none"){return null}var B=[],D={},y,z=0;var A=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(y=A.exec(C)){if(y[0]==","){B.push(D);D={},z=0}else{if(y[1]){D.color=y[1]}else{D[["offX","offY","blur"][z++]]=y[2]}}}B.push(D);return B}),color:i(function(z){var y={};y.color=z.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(B,A,C){y.opacity=parseFloat(C);return"rgb("+A+")"});return y}),textTransform:function(z,y){return z[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[y.get("textTransform")]||"toString"]()}};function q(z){var y=this.face=z.face;this.glyphs=z.glyphs;this.w=z.w;this.baseSize=parseInt(y["units-per-em"],10);this.family=y["font-family"].toLowerCase();this.weight=y["font-weight"];this.style=y["font-style"]||"normal";this.viewBox=(function(){var B=y.bbox.split(/\s+/);var A={minX:parseInt(B[0],10),minY:parseInt(B[1],10),maxX:parseInt(B[2],10),maxY:parseInt(B[3],10)};A.width=A.maxX-A.minX,A.height=A.maxY-A.minY;A.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return A})();this.ascent=-parseInt(y.ascent,10);this.descent=-parseInt(y.descent,10);this.height=-this.ascent+this.descent}function e(){var z={},y={oblique:"italic",italic:"oblique"};this.add=function(A){(z[A.style]||(z[A.style]={}))[A.weight]=A};this.get=function(E,F){var D=z[E]||z[y[E]]||z.normal||z.italic||z.oblique;if(!D){return null}F={normal:400,bold:700}[F]||parseInt(F,10);if(D[F]){return D[F]}var B={1:1,99:0}[F%100],H=[],C,A;if(B===undefined){B=F>400}if(F==500){F=400}for(var G in D){G=parseInt(G,10);if(!C||G<C){C=G}if(!A||G>A){A=G}H.push(G)}if(F<C){F=C}if(F>A){F=A}H.sort(function(J,I){return(B?(J>F&&I>F)?J<I:J>I:(J<F&&I<F)?J>I:J<I)?-1:1});return D[H[0]]}}function p(){function A(C,D){if(C.contains){return C.contains(D)}return C.compareDocumentPosition(D)&16}function y(D){var C=D.relatedTarget;if(!C||A(this,C)){return}z(this)}function B(C){z(this)}function z(C){setTimeout(function(){k.replace(C,d.get(C).options,true)},10)}this.attach=function(C){if(C.onmouseenter===undefined){o(C,"mouseover",y);o(C,"mouseout",y)}else{o(C,"mouseenter",B);o(C,"mouseleave",B)}}}function x(){var A={},y=0;function z(B){return B.cufid||(B.cufid=++y)}this.get=function(B){var C=z(B);return A[C]||(A[C]={})}}function a(y){var A={},z={};this.get=function(B){return A[B]!=undefined?A[B]:y[B]};this.getSize=function(C,B){return z[C]||(z[C]=new l.Size(this.get(C),B))};this.extend=function(B){for(var C in B){A[C]=B[C]}return this}}function o(z,y,A){if(z.addEventListener){z.addEventListener(y,A,false)}else{if(z.attachEvent){z.attachEvent("on"+y,function(){return A.call(z,window.event)})}}}function r(z,y){var A=d.get(z);if(A.options){return z}if(y.hover&&y.hoverables[z.nodeName.toLowerCase()]){b.attach(z)}A.options=y;return z}function i(y){var z={};return function(A){if(!z.hasOwnProperty(A)){z[A]=y.apply(null,arguments)}return z[A]}}function c(D,C){if(!C){C=l.getStyle(D)}var z=l.quotedList(C.get("fontFamily").toLowerCase()),B;for(var A=0,y=z.length;A<y;++A){B=z[A];if(h[B]){return h[B].get(C.get("fontStyle"),C.get("fontWeight"))}}return null}function f(y){return document.getElementsByTagName(y)}function g(){var y={},B;for(var A=0,z=arguments.length;A<z;++A){for(B in arguments[A]){y[B]=arguments[A][B]}}return y}function m(B,J,z,K,C,A){var I=K.separate;if(I=="none"){return w[K.engine].apply(null,arguments)}var H=document.createDocumentFragment(),E;var F=J.split(n[I]),y=(I=="words");if(y&&s){if(/^\s/.test(J)){F.unshift("")}if(/\s$/.test(J)){F.push("")}}for(var G=0,D=F.length;G<D;++G){E=w[K.engine](B,y?l.textAlign(F[G],z,G,D):F[G],z,K,C,A,G<D-1);if(E){H.appendChild(E)}}return H}function j(z,G){var A,y,D,F;for(var B=r(z,G).firstChild;B;B=D){D=B.nextSibling;F=false;if(B.nodeType==1){if(!B.firstChild){continue}if(!/cufon/.test(B.className)){arguments.callee(B,G);continue}else{F=true}}if(!y){y=l.getStyle(z).extend(G)}if(!A){A=c(z,y)}if(!A){continue}if(F){w[G.engine](A,null,y,G,B,z);continue}var E=B.data;if(E===""){continue}var C=m(A,E,y,G,B,z);if(C){B.parentNode.replaceChild(C,B)}else{B.parentNode.removeChild(B)}}}var s=" ".split(/\s+/).length==0;var d=new x();var b=new p();var v=[];var w={},h={},t={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(y){return jQuery(y)})||(window.dojo&&dojo.query)||(window.$$&&function(y){return $$(y)})||(window.$&&function(y){return $(y)})||(document.querySelectorAll&&function(y){return document.querySelectorAll(y)})||f),separate:"words",textShadow:"none"};var n={words:/\s+/,characters:""};k.now=function(){u.ready();return k};k.refresh=function(){var A=v.splice(0,v.length);for(var z=0,y=A.length;z<y;++z){k.replace.apply(null,A[z])}return k};k.registerEngine=function(z,y){if(!y){return k}w[z]=y;return k.set("engine",z)};k.registerFont=function(A){var y=new q(A),z=y.family;if(!h[z]){h[z]=new e()}h[z].add(y);return k.set("fontFamily",'"'+z+'"')};k.replace=function(A,z,y){z=g(t,z);if(!z.engine){return k}if(typeof z.textShadow=="string"){z.textShadow=l.textShadow(z.textShadow)}if(!y){v.push(arguments)}if(A.nodeType||typeof A=="string"){A=[A]}l.ready(function(){for(var C=0,B=A.length;C<B;++C){var D=A[C];if(typeof D=="string"){k.replace(z.selector(D),z,true)}else{j(D,z)}}});return k};k.set=function(y,z){t[y]=z;return k};return k})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(".cufon-canvas{text-indent:0}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(e?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden}"+(a?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));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(S,w,N,s,C,T){var k=(w===null);var A=S.viewBox;var m=N.getSize("fontSize",S.baseSize);var L=N.get("letterSpacing");L=(L=="normal")?0:m.convertFrom(parseInt(L,10));var B=0,M=0,K=0,u=0;var z=s.textShadow,I=[];if(z){for(var R=0,O=z.length;R<O;++R){var E=z[R];var H=m.convertFrom(parseFloat(E.offX));var G=m.convertFrom(parseFloat(E.offY));I[R]=[H,G];if(G<B){B=G}if(H>M){M=H}if(G>K){K=G}if(H<u){u=H}}}var W=Cufon.CSS.textTransform(k?C.alt:w,N).split("");var h=0,v=null;for(var R=0,O=W.length;R<O;++R){var t=S.glyphs[W[R]]||S.missingGlyph;if(!t){continue}h+=v=Number(t.w||S.w)+L}if(v===null){return null}M+=(A.width-v);u+=A.minX;var r,n;if(k){r=C;n=C.firstChild}else{r=document.createElement("span");r.className="cufon cufon-canvas";r.alt=w;n=document.createElement("canvas");r.appendChild(n);if(s.printable){var P=document.createElement("span");P.className="cufon-alt";P.appendChild(document.createTextNode(w));r.appendChild(P)}}var X=r.style;var F=n.style;var j=m.convert(A.height-B+K);var V=Math.ceil(j);var J=V/j;n.width=Math.ceil(m.convert(h+M-u)*J);n.height=V;B+=A.minY;F.top=Math.round(m.convert(B-S.ascent))+"px";F.left=Math.round(m.convert(u))+"px";var q=Math.ceil(m.convert(h*J))+"px";if(a){X.width=q;X.height=m.convert(S.height)+"px"}else{X.paddingLeft=q;X.paddingBottom=(m.convert(S.height)-1)+"px"}var U=n.getContext("2d"),D=V/A.height;U.scale(D,D);U.translate(-u,-B);U.lineWidth=S.face["underline-thickness"];U.save();function o(i,g){U.strokeStyle=g;U.beginPath();U.moveTo(0,i);U.lineTo(h,i);U.stroke()}var p=s.enableTextDecoration?Cufon.CSS.textDecoration(T,N):{};if(p.underline){o(-S.face["underline-position"],p.underline)}if(p.overline){o(S.ascent,p.overline)}U.fillStyle=N.get("color");function Q(){for(var x=0,g=W.length;x<g;++x){var y=S.glyphs[W[x]]||S.missingGlyph;if(!y){continue}U.beginPath();if(y.d){if(y.code){c(y.code,U)}else{y.code=d("m"+y.d,U)}}U.fill();U.translate(Number(y.w||S.w)+L,0)}}if(z){for(var R=0,O=z.length;R<O;++R){var E=z[R];U.save();U.fillStyle=E.color;U.translate.apply(U,I[R]);Q();U.restore()}}Q();U.restore();if(p["line-through"]){o(-S.descent,p["line-through"])}return r}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;document.write('<style type="text/css">.cufon-vml-canvas{text-indent:0}@media screen{cvml\\:shape,cvml\\:group,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute}.cufon-vml-canvas{position:absolute;text-align:left}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>');function c(d,e){return a(d,/(?:em|ex|%)$/i.test(e)?"1em":e)}function a(g,h){if(/px$/i.test(h)){return parseFloat(h)}var f=g.style.left,e=g.runtimeStyle.left;g.runtimeStyle.left=g.currentStyle.left;g.style.left=h;var d=g.style.pixelLeft;g.style.left=f;g.runtimeStyle.left=e;return d}return function(S,y,N,v,C,T,L){var g=(y===null);if(g){y=C.alt}var A=S.viewBox;var h=N.computedFontSize||(N.computedFontSize=new Cufon.CSS.Size(c(T,N.get("fontSize"))+"px",S.baseSize));var K=N.computedLSpacing;if(K==undefined){K=N.get("letterSpacing");N.computedLSpacing=K=(K=="normal")?0:~~h.convertFrom(a(T,K))}var s,j;if(g){s=C;j=C.firstChild}else{s=document.createElement("span");s.className="cufon cufon-vml";s.alt=y;j=document.createElement("span");j.className="cufon-vml-canvas";s.appendChild(j);if(v.printable){var Q=document.createElement("span");Q.className="cufon-alt";Q.appendChild(document.createTextNode(y));s.appendChild(Q)}if(!L){s.appendChild(document.createElement("cvml:group"))}}var Y=s.style;var F=j.style;var e=h.convert(A.height),V=Math.ceil(e);var J=V/e;var I=A.minX,H=A.minY;F.height=V;F.top=Math.round(h.convert(H-S.ascent));F.left=Math.round(h.convert(I));Y.height=h.convert(S.height)+"px";var o=v.enableTextDecoration?Cufon.CSS.textDecoration(T,N):{};var x=N.get("color");var W=Cufon.CSS.textTransform(y,N).split("");var d=0,G=0,p=null;var w,q,z=v.textShadow;for(var R=0,P=0,O=W.length;R<O;++R){w=S.glyphs[W[R]]||S.missingGlyph;if(w){d+=p=~~(w.w||S.w)+K}}if(p===null){return null}var r=-I+d+(A.width-p);var X=h.convert(r*J),M=Math.round(X);var E=r+","+A.height,f;var B="r"+E+"nsnf";for(R=0;R<O;++R){w=S.glyphs[W[R]]||S.missingGlyph;if(!w){continue}if(g){q=j.childNodes[P];if(q.firstChild){q.removeChild(q.firstChild)}}else{q=document.createElement("cvml:shape");j.appendChild(q)}q.stroked="f";q.coordsize=E;q.coordorigin=f=(I-G)+","+H;q.path=(w.d?"m"+w.d+"xe":"")+"m"+f+B;q.fillcolor=x;var U=q.style;U.width=M;U.height=V;if(z){var n=z[0],m=z[1];var u=Cufon.CSS.color(n.color),t;var D=document.createElement("cvml:shadow");D.on="t";D.color=u.color;D.offset=n.offX+","+n.offY;if(m){t=Cufon.CSS.color(m.color);D.type="double";D.color2=t.color;D.offset2=m.offX+","+m.offY}D.opacity=u.opacity||(t&&t.opacity)||1;q.appendChild(D)}G+=~~(w.w||S.w)+K;++P}Y.width=Math.max(Math.ceil(h.convert(d*J)),0);return s}})());;Cufon.registerFont({"w":198,"face":{"font-family":"Anivers","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"272","descent":"-88","x-height":"4","bbox":"-45 -275.128 308 83.1687","underline-thickness":"19.44","underline-position":"-20.16","stemh":"26","stemv":"29","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":89},"!":{"d":"63,-69v-4,4,-19,3,-23,0r-7,-186v9,-5,27,-6,37,-5xm36,0v-3,-7,-4,-28,0,-36v11,1,24,-2,33,1v-1,11,1,25,-1,35r-32,0","w":103},"\"":{"d":"102,-180v-6,2,-18,2,-24,0v0,-20,-7,-46,-2,-63v10,1,24,-2,30,2xm47,-180v-6,2,-18,2,-24,0v0,-20,-7,-46,-2,-63v9,1,23,-3,29,2","w":124},"#":{"d":"45,0v-4,-18,8,-44,10,-64v-12,-1,-30,3,-39,-2v1,-7,-2,-19,2,-23r41,0r12,-64v-12,-1,-29,3,-37,-2v1,-7,-2,-19,2,-23r40,0v5,-21,5,-47,14,-64v8,0,20,-5,25,-1r-12,65r54,0v5,-21,5,-47,14,-64v8,0,20,-5,25,-1r-12,65v14,1,34,-3,45,2v-3,8,-4,17,-9,23r-41,0r-12,64v14,1,34,-3,44,2v-3,7,-3,19,-9,23r-40,0v-5,21,-5,46,-13,64v-8,-1,-20,2,-25,-2r12,-62r-55,0v-5,21,-5,46,-13,64r-23,0xm86,-89r54,0r12,-64r-54,0","w":241},"$":{"d":"79,3v-19,-2,-47,-7,-61,-22v6,-6,7,-15,15,-19v0,0,17,14,46,15r0,-64v-28,-9,-56,-21,-56,-55v0,-29,26,-47,56,-52v1,-8,-2,-21,2,-26v6,0,14,-3,19,-1r0,27v29,2,50,9,52,15v-5,7,-7,16,-13,21v-9,-6,-24,-10,-39,-10r0,59v27,9,57,21,57,58v0,34,-29,48,-57,52v-1,9,2,22,-2,27v-6,-1,-16,2,-19,-2r0,-23xm79,-117r0,-50v-17,2,-27,10,-27,24v0,14,12,21,27,26xm100,-24v16,-3,29,-9,29,-27v0,-15,-13,-23,-29,-29r0,56","w":176},"%":{"d":"64,-131v-40,2,-47,-34,-43,-76v0,-25,18,-39,43,-39v40,-2,46,34,42,76v0,25,-17,39,-42,39xm22,0r181,-244v8,-1,19,4,26,7r-179,237r-28,0xm64,-152v24,2,21,-27,21,-51v0,-14,-8,-21,-21,-21v-26,-2,-22,26,-22,50v0,15,8,22,22,22xm191,4v-40,2,-47,-33,-43,-75v0,-26,18,-39,43,-39v40,-2,47,33,43,75v0,25,-18,39,-43,39xm169,-68v0,24,-4,51,22,51v25,0,21,-27,21,-51v0,-14,-8,-21,-21,-21v-14,0,-22,7,-22,21","w":253},"&":{"d":"165,-6v-3,5,-24,8,-62,10v-41,0,-82,-21,-82,-76v0,-27,12,-51,37,-56v-19,-8,-31,-28,-31,-52v-2,-54,52,-70,103,-61v-2,8,-1,19,-6,24v-35,-1,-68,2,-69,37v-4,38,40,40,82,38v2,-13,0,-30,5,-39v7,0,18,-5,23,-1r0,40v12,1,29,-3,38,2v-4,8,-3,19,-10,24r-28,0r0,110xm49,-72v-1,48,52,56,87,46r0,-90v-46,-4,-89,8,-87,44","w":215},"'":{"d":"47,-180v-6,2,-18,2,-24,0v0,-20,-7,-46,-2,-63v9,1,23,-3,29,2","w":69},"(":{"d":"72,47v0,0,-49,-34,-49,-147v3,-115,44,-148,52,-147v4,6,11,10,14,18v0,0,-37,36,-37,129v0,97,38,123,37,131v-6,5,-9,13,-17,16","w":101},")":{"d":"13,31v-1,-9,37,-33,37,-131v0,-96,-38,-126,-37,-131v6,-5,8,-14,17,-16v0,0,48,34,48,147v-3,114,-44,150,-51,146","w":101},"*":{"d":"170,-136v-18,-3,-36,-24,-55,-27v16,-28,49,-7,63,6xm95,-186v-28,8,-36,-30,-28,-56v8,0,19,-6,24,-2v1,18,-3,48,4,58xm112,-179v-20,-25,14,-49,35,-52v4,7,12,10,14,19v-15,10,-40,19,-49,33xm81,-174v-10,32,-51,11,-63,-4v4,-7,4,-17,10,-22v17,8,31,24,53,26xm84,-156v19,26,-13,46,-35,53v-4,-7,-12,-10,-14,-20v15,-10,41,-19,49,-33xm107,-89v-7,-13,4,-48,-6,-60v30,-5,35,30,28,56","w":195},"+":{"d":"84,-20v-6,-15,0,-41,-2,-60v-15,-1,-36,3,-48,-2v1,-8,-2,-20,2,-24r46,0v1,-17,-3,-40,2,-54v9,0,19,-4,27,-2r0,56v17,1,40,-3,54,2v-3,8,-3,18,-8,24r-46,0v-1,19,3,45,-2,60r-25,0"},",":{"d":"13,42v2,-24,8,-57,16,-79v13,1,28,-2,39,1r-38,81v-5,2,-11,-2,-17,-3","w":88},"-":{"d":"119,-81v-24,4,-66,3,-89,0v1,-9,-2,-22,2,-27v30,2,68,-4,94,2","w":153},".":{"d":"26,0v-3,-7,-4,-29,0,-37v11,1,25,-1,35,1v-1,12,3,28,-2,36r-33,0","w":84},"\/":{"d":"14,27v18,-87,48,-178,69,-266v5,-6,21,-6,29,-5r-74,271r-24,0","w":124},"0":{"d":"24,-66r0,-57v0,-50,39,-70,79,-70v39,0,78,20,78,70r0,57v0,51,-39,70,-78,70v-40,0,-79,-19,-79,-70xm53,-117v-4,51,4,100,50,95v45,4,54,-45,49,-95v0,-34,-21,-50,-49,-50v-28,0,-50,16,-50,50","w":205},"1":{"d":"17,0v-4,-4,-3,-21,0,-26r50,0r0,-137v-12,-1,-28,3,-36,-2v-1,-8,-9,-18,-5,-24v22,2,51,-3,70,2r0,161v17,1,40,-3,54,2v-3,8,-4,18,-9,24r-124,0","w":157},"2":{"d":"30,0v-4,-4,-4,-12,-6,-18v32,-17,105,-63,105,-112v0,-22,-16,-36,-41,-36v-37,0,-47,30,-54,28v-6,-6,-17,-6,-19,-15v0,0,22,-40,76,-40v38,0,68,21,68,62v-9,71,-63,94,-84,105v30,2,67,-4,93,2v-3,8,-2,20,-9,24r-129,0","w":185},"3":{"d":"9,15v4,-8,12,-12,21,-15v0,0,19,31,56,31v28,0,51,-17,51,-50v0,-34,-36,-44,-77,-44v5,-9,-1,-24,17,-24v40,0,54,-17,54,-40v0,-29,-22,-40,-47,-40v-37,0,-48,27,-53,26v-6,-5,-14,-8,-19,-15v0,0,22,-37,72,-37v73,-9,104,90,43,119v28,11,42,30,39,64v0,42,-39,67,-79,67v-57,0,-78,-42,-78,-42","w":187},"4":{"d":"16,-11v-4,-4,-4,-13,-7,-19r114,-157v7,0,16,-4,22,-2r0,152v15,1,36,-3,47,2v-3,8,-4,18,-9,24r-38,0v-1,21,2,46,-1,66v-9,0,-20,4,-27,2r0,-68r-101,0xm46,-37r71,0r0,-99v-21,35,-47,66,-71,99","w":193},"5":{"d":"0,17v3,-9,13,-12,21,-16v0,0,19,31,57,31v28,-1,55,-19,51,-55v6,-48,-72,-50,-94,-35r-12,-15r0,-114v34,-4,88,-4,123,0v-3,8,-3,18,-8,24r-86,0r0,72v53,-11,106,13,106,82v0,42,-40,67,-79,67v-57,0,-79,-41,-79,-41","w":175},"6":{"d":"28,-66r0,-110v0,-41,37,-71,80,-71v51,3,73,36,72,43v-8,4,-12,11,-22,13v0,-1,-18,-30,-50,-30v-33,-3,-58,29,-51,77r-2,17v1,-3,12,-27,53,-27v43,-1,83,27,76,88v0,51,-38,70,-78,70v-39,0,-78,-19,-78,-70xm57,-116v-5,50,5,99,49,94v30,0,49,-17,49,-55v0,-58,-71,-58,-98,-39","w":203},"7":{"d":"30,51v24,-71,61,-143,89,-214r-106,-1v-2,-8,-8,-17,-6,-25v47,2,101,-4,144,2r3,14r-97,229v-9,2,-18,-4,-27,-5","w":163},"8":{"d":"22,-66v0,-24,14,-50,38,-58v-18,-7,-33,-29,-33,-53v0,-46,29,-70,73,-70v72,0,97,97,40,123v23,8,37,34,37,58v0,50,-37,70,-77,70v-40,0,-78,-20,-78,-70xm100,-136v27,0,43,-16,43,-41v0,-27,-16,-44,-43,-44v-28,0,-44,17,-44,44v0,25,16,41,44,41xm51,-66v0,29,21,44,49,44v27,0,48,-16,48,-44v0,-27,-21,-45,-48,-45v-28,0,-49,18,-49,45","w":199},"9":{"d":"23,17v5,-8,13,-13,22,-16v0,0,18,30,50,30v33,3,58,-29,51,-76r2,-17v0,0,-11,28,-53,28v-43,1,-83,-27,-76,-89v0,-50,38,-70,78,-70v39,0,78,20,78,70r0,109v0,42,-37,71,-80,71v-50,0,-72,-40,-72,-40xm48,-117v0,63,69,64,98,45v5,-50,-4,-99,-49,-95v-28,0,-49,16,-49,50","w":203},":":{"d":"61,-142v-8,4,-29,3,-37,0v1,-12,-3,-28,2,-36v11,1,27,-3,35,2r0,34xm26,0v-3,-7,-4,-29,0,-37v11,1,25,-1,35,1v-1,12,3,28,-2,36r-33,0","w":84},";":{"d":"63,-142v-8,4,-29,3,-37,0v1,-12,-3,-28,2,-36v11,1,27,-3,35,2r0,34xm13,42v2,-24,8,-57,16,-79v13,1,28,-2,39,1r-38,81v-5,2,-11,-2,-17,-3","w":88},"<":{"d":"21,-73v-1,-10,3,-25,7,-33r141,-73v4,5,3,23,0,29r-119,62v39,22,84,38,121,62v-1,9,2,22,-2,27"},"=":{"d":"158,-113v-38,3,-84,-1,-124,0v1,-8,-2,-20,2,-25v42,2,91,-4,129,2xm150,-50v-32,5,-84,3,-116,0v1,-8,-2,-20,2,-25v39,2,86,-4,121,2"},">":{"d":"29,1v-4,-5,-3,-23,0,-29r119,-62v-39,-22,-84,-38,-121,-62v1,-9,-2,-22,2,-27r148,74v1,10,-3,24,-7,33"},"?":{"d":"70,-67v-4,-14,-4,-44,0,-58v41,-1,62,-22,55,-70v0,-26,-16,-40,-41,-40v-29,-2,-40,18,-45,41v-8,-3,-22,-1,-26,-8v0,-40,31,-62,71,-62v54,-1,80,38,71,100v0,37,-26,60,-61,64v-1,11,2,26,-3,33r-21,0xm64,0v-2,-9,-2,-27,0,-36v11,1,25,-1,34,1v-1,11,3,27,-2,35r-32,0","w":177},"@":{"d":"153,73v-88,6,-136,-50,-130,-149v0,-102,45,-171,145,-171v98,-1,141,50,135,153v1,68,-32,108,-100,109r-15,-39v0,0,-10,28,-52,28v-33,0,-48,-27,-48,-54v0,-93,37,-132,79,-132v32,2,62,12,64,16r-16,129r8,27v39,-11,54,-47,51,-104v0,-78,-37,-107,-106,-107v-83,0,-119,65,-116,161v-2,81,40,105,105,110xm117,-57v0,19,7,35,30,35v15,0,40,-11,40,-11r13,-115v-43,-18,-81,-7,-83,91","w":324},"A":{"d":"5,0v23,-79,56,-164,85,-241v11,-1,23,-5,33,-3r84,244v-10,-1,-24,2,-31,-2r-20,-58r-100,0r-21,60r-30,0xm65,-87r82,0r-41,-126v-10,45,-28,83,-41,126","w":212},"B":{"d":"35,0v-5,-74,-4,-169,0,-243v69,1,143,-13,145,62v0,23,-12,42,-34,50v25,9,40,31,40,59v-2,78,-75,75,-151,72xm64,-144v40,-1,84,8,85,-36v-1,-44,-45,-34,-85,-35r0,71xm64,-28v46,1,90,4,92,-44v-2,-47,-46,-45,-92,-44r0,88","w":209},"C":{"d":"57,-87v-5,78,104,78,126,28v8,4,19,5,25,11v-12,35,-44,52,-88,52v-57,0,-94,-30,-94,-88r0,-73v-10,-103,148,-119,178,-40v-7,6,-17,9,-28,12v-22,-51,-126,-42,-119,30r0,68","w":225},"D":{"d":"35,0v-5,-74,-4,-169,0,-243r81,0v56,0,95,31,95,89r0,66v2,89,-85,93,-176,88xm64,-29v62,3,117,1,116,-62r0,-60v0,-63,-53,-67,-116,-63r0,185","w":236},"E":{"d":"35,0v-5,-74,-4,-169,0,-243v41,2,90,-4,127,2v-1,9,2,22,-2,27r-96,0r0,72v27,2,62,-4,85,2v-3,9,-2,22,-9,27r-76,0r0,84v31,2,71,-4,98,2v-2,9,-1,21,-6,27r-121,0","w":184},"F":{"d":"35,0v-5,-74,-4,-169,0,-243v40,2,87,-4,123,2v-1,9,1,20,-1,27r-93,0r0,75v29,2,64,-4,89,2v-3,9,-4,20,-9,27r-80,0v-2,35,4,78,-2,110r-27,0","w":173},"G":{"d":"26,-84r0,-73v-10,-103,148,-119,178,-40v-7,6,-17,9,-28,12v-22,-51,-126,-42,-119,30r0,68v0,43,26,63,63,63v40,0,67,-23,64,-71v-14,-1,-33,3,-44,-2v0,-9,-4,-19,-2,-27v24,2,55,-3,76,2v8,79,-21,127,-94,126v-57,0,-94,-30,-94,-88","w":235},"H":{"d":"35,0v-5,-73,-4,-168,0,-242v9,0,21,-4,29,-2r0,102r128,0v2,-32,-3,-71,2,-100v9,0,20,-4,28,-2r-2,244v-9,-1,-23,3,-28,-2r0,-111r-128,0v-2,36,4,80,-2,113r-27,0","w":255},"I":{"d":"35,0v-5,-73,-4,-168,0,-242v9,0,21,-4,29,-2r-2,244r-27,0","w":97},"J":{"d":"103,-61v5,59,-65,83,-102,50v5,-7,6,-19,14,-23v24,18,56,15,58,-30r2,-178v9,0,20,-4,28,-2r0,183","w":135},"K":{"d":"35,0v-5,-73,-4,-168,0,-242v9,0,21,-4,29,-2r0,102v7,0,15,1,20,-1r77,-98v13,0,30,-6,40,-2r-97,114v26,26,45,58,68,87v2,6,18,16,34,16v-4,9,3,29,-13,27v-27,0,-44,-24,-48,-29r-63,-86v-4,-2,-12,-1,-18,-1v-2,37,4,82,-2,115r-27,0","w":213},"L":{"d":"35,0v-5,-73,-4,-168,0,-242v9,0,21,-4,29,-2r0,215v34,2,75,-4,105,2v-3,9,-4,20,-9,27r-125,0","w":170},"M":{"d":"35,0v-5,-73,-4,-168,0,-242v9,0,21,-4,29,-2r81,148r81,-146v10,0,23,-4,31,-2r-1,244v-9,-1,-23,3,-28,-2r0,-190v-20,44,-45,82,-67,124v-6,3,-24,4,-31,0v-22,-42,-48,-79,-66,-124r-2,192r-27,0","w":291},"N":{"d":"35,0v-5,-73,-4,-168,0,-242v9,0,21,-4,29,-2r117,176r9,17r2,-191v9,0,21,-4,29,-2r-2,244v-9,-1,-23,2,-29,-2r-117,-177r-9,-17r-2,196r-27,0","w":254},"O":{"d":"26,-84r0,-73v0,-59,38,-90,94,-90v57,0,95,31,95,90r0,73v0,58,-38,88,-95,88v-56,0,-94,-30,-94,-88xm57,-87v0,43,27,63,63,63v37,0,64,-20,64,-63r0,-68v0,-42,-27,-63,-64,-63v-36,0,-63,21,-63,63r0,68","w":240},"P":{"d":"33,-241v71,-9,159,-5,153,70v0,42,-25,78,-81,78v-19,0,-37,-5,-43,-20v3,33,5,81,0,113v-9,-1,-23,3,-29,-2r0,-239xm64,-126v38,14,93,4,90,-44v-2,-51,-44,-45,-90,-45r0,89","w":199},"Q":{"d":"26,-84r0,-73v0,-59,38,-90,94,-90v57,0,95,31,95,90r0,73v0,57,-36,87,-90,88v-8,12,0,41,18,37v10,1,24,-2,31,2v-1,9,3,24,-2,30v-57,12,-100,-37,-57,-69v-53,-1,-89,-32,-89,-88xm57,-87v0,43,27,63,63,63v37,0,64,-20,64,-63r0,-68v0,-42,-27,-63,-64,-63v-36,0,-63,21,-63,63r0,68","w":240},"R":{"d":"33,-241v70,-9,153,-3,149,70v0,67,-70,70,-70,70v28,24,41,69,84,75v-4,10,2,28,-13,27v-25,0,-42,-22,-48,-30r-59,-71r-12,0v-2,32,4,72,-2,100v-9,-1,-23,3,-29,-2r0,-239xm64,-128v44,1,86,3,88,-43v-2,-46,-43,-45,-88,-44r0,87","w":209},"S":{"d":"163,-66v-5,83,-96,86,-146,46v7,-6,8,-17,18,-20v29,22,97,27,97,-26v0,-58,-108,-32,-108,-111v0,-44,33,-70,72,-70v55,5,75,14,49,42v-26,-18,-95,-19,-90,26v0,54,108,30,108,113","w":182},"T":{"d":"76,0r-1,-214v-22,-2,-51,3,-69,-2v1,-9,-2,-22,2,-27r170,2v-3,9,-4,20,-9,27r-64,0r-2,214r-27,0","w":178},"U":{"d":"31,-84r2,-158v9,0,20,-4,28,-2r0,157v0,43,28,63,64,63v38,0,64,-20,64,-63r1,-155v9,0,21,-4,29,-2r0,160v0,58,-36,88,-94,88v-57,0,-94,-30,-94,-88","w":250},"V":{"d":"87,-5r-81,-236v10,-1,22,-5,31,-3r70,215v20,-73,46,-140,68,-210v8,-4,25,-6,35,-5r-89,247v-11,-3,-25,-3,-34,-8","w":213},"W":{"d":"87,-3r-82,-236v7,-4,23,-6,32,-5r63,207r43,-161v1,-14,-3,-33,2,-44v9,0,21,-4,29,-2v-4,87,30,133,40,207r60,-204v11,-1,24,-5,34,-3r-81,245v-8,4,-23,-2,-31,-6r-39,-145r-43,153","w":313},"X":{"d":"11,0v18,-42,51,-83,74,-124v-21,-39,-51,-78,-67,-117v10,-1,21,-5,30,-3r56,100v16,-34,35,-66,54,-97v11,-1,25,-5,35,-3r-70,120v23,41,55,82,73,124v-11,-1,-27,3,-35,-2r-57,-103r-60,105r-33,0","w":207},"Y":{"d":"79,0v-6,-30,0,-73,-2,-107r-73,-132v8,-5,25,-6,35,-5r54,110r53,-107v11,-1,25,-5,35,-3r-73,137v-2,35,4,76,-2,107r-27,0","w":185},"Z":{"d":"22,0v-4,-4,-4,-13,-6,-19r116,-195v-36,-2,-79,4,-111,-2v2,-9,0,-21,5,-27v47,2,102,-4,145,2r0,17r-116,195v37,2,82,-4,115,2v-1,9,2,22,-2,27r-146,0","w":189},"[":{"d":"35,42v-5,-87,-4,-197,0,-285v20,2,47,-4,63,2v-3,7,-3,17,-9,22r-28,0r0,237v10,1,24,-2,30,2v1,7,7,16,6,22r-62,0","w":110},"\\":{"d":"85,27r-71,-269v8,0,17,-4,24,-2r73,269v-5,5,-18,1,-26,2","w":123},"]":{"d":"14,42v-1,-6,3,-20,8,-24r28,0r0,-237v-10,0,-23,1,-31,-1v-1,-8,-7,-16,-5,-23v20,2,47,-3,64,2r-2,283r-62,0","w":110},"^":{"d":"31,-97v-6,4,-25,3,-30,0r74,-144v10,-1,22,-5,31,-3r73,149v-9,-1,-23,3,-29,-2r-60,-120","w":181},"_":{"d":"14,26v-2,-7,-2,-20,0,-26r174,2v-1,8,2,20,-2,24r-172,0","w":200},"`":{"d":"97,-205v-18,-12,-30,-32,-46,-46v12,-2,31,-2,43,0v6,13,19,26,21,39","w":180},"a":{"d":"28,-164v32,-32,122,-24,117,37v1,43,-5,93,9,123v-4,5,-20,7,-26,4r-10,-26v-10,37,-106,46,-104,-23v0,-53,53,-52,102,-56v10,-52,-40,-63,-72,-40v-8,-4,-10,-13,-16,-19xm45,-48v-4,37,63,23,71,16r0,-61v-11,35,-66,-1,-71,45","w":170},"b":{"d":"29,-2v-5,-78,-4,-178,0,-256v9,0,21,-6,27,-2r-2,106v3,-7,14,-28,50,-28v32,0,56,21,56,63r0,61v8,58,-73,72,-108,53xm56,-28v0,0,17,6,35,6v43,4,42,-48,40,-92v0,-49,-42,-46,-75,-34r0,120","w":181},"c":{"d":"91,4v-70,1,-70,-55,-70,-124v0,-67,111,-86,132,-25v-6,6,-16,7,-26,9v-15,-33,-77,-25,-77,22v0,44,-4,96,40,92v22,0,33,-8,39,-19v10,2,19,4,25,9v-9,24,-32,36,-63,36","w":169},"d":{"d":"22,-59r0,-61v-4,-57,64,-77,105,-50v-2,-25,-5,-63,0,-88v9,0,21,-6,27,-2r0,225v2,11,11,24,7,34v-8,0,-19,5,-24,1r-10,-26v-18,47,-113,37,-105,-33xm50,-114v-3,43,-1,92,39,92v9,0,36,-10,36,-10v-4,-49,18,-126,-37,-124v-22,0,-38,14,-38,42","w":182},"e":{"d":"21,-58r0,-60v0,-41,28,-64,69,-64v46,0,63,28,63,53v0,36,-26,53,-60,53v-35,0,-44,-18,-45,-20v2,35,3,74,42,74v24,0,31,-10,42,-19v7,3,18,3,23,9v-9,23,-33,36,-63,36v-44,0,-71,-21,-71,-62xm50,-114v-3,13,12,12,35,12v20,0,37,-6,37,-28v0,-13,-9,-26,-33,-26v-25,0,-39,14,-39,42","w":171},"f":{"d":"38,71v-7,-68,0,-150,-2,-223v-8,-1,-20,2,-25,-2v1,-8,-2,-20,2,-24r23,0v-13,-74,41,-117,101,-88v-3,10,-10,16,-16,23v-23,-10,-57,-2,-56,26r0,39v18,2,43,-3,58,2v-3,8,-2,20,-9,24r-49,0v-4,77,10,171,-9,234","w":116},"g":{"d":"36,36v8,1,6,20,53,21v26,0,40,-12,40,-25v1,-19,-24,-23,-47,-21v-48,2,-57,-43,-29,-63v0,0,-39,-10,-39,-62v-1,-56,43,-66,104,-66v13,0,30,-10,41,-6v1,7,5,15,3,22r-25,7v44,42,3,132,-74,108v-7,13,0,38,19,34v44,-4,77,12,75,48v-1,66,-123,62,-143,16v4,-8,15,-8,22,-13xm84,-72v28,0,42,-14,42,-42v0,-29,-14,-42,-42,-42v-25,0,-41,14,-41,42v0,27,14,42,41,42","w":174},"h":{"d":"29,0v-5,-78,-4,-179,0,-258v9,0,21,-6,27,-2r-2,106v3,-7,16,-28,52,-28v32,0,56,21,56,62v-2,39,4,85,-2,120v-9,-1,-22,2,-27,-2r0,-112v0,-50,-44,-45,-77,-34v-2,48,4,104,-2,148r-25,0","w":187},"i":{"d":"58,-221v-7,4,-27,3,-33,0v1,-10,-3,-25,2,-31v10,1,23,-2,31,1r0,30xm29,0v-4,-52,-4,-124,0,-176v9,0,21,-6,27,-2r-2,178r-25,0","w":83},"j":{"d":"58,-221v-7,4,-27,3,-33,0v1,-10,-3,-25,2,-31v10,1,23,-2,31,1r0,30xm27,14r2,-190v9,0,21,-6,27,-2r0,194v6,62,-65,86,-101,51v5,-7,7,-16,13,-21v14,14,63,18,59,-32","w":83},"k":{"d":"29,0v-5,-78,-4,-179,0,-258v9,0,21,-6,27,-2r0,147r3,0r54,-63v13,0,30,-6,40,-2v-23,23,-42,50,-67,71v29,25,33,78,79,84v-4,8,2,26,-12,25v-28,0,-41,-20,-48,-30r-46,-72r-3,0r-1,100r-26,0","w":171},"l":{"d":"27,-40r1,-218v9,0,21,-6,27,-2r0,219v0,17,14,14,20,18v-3,8,1,23,-9,24v-10,0,-39,-3,-39,-41","w":88},"m":{"d":"30,0v-9,-52,8,-129,-11,-174v6,-4,20,-7,26,-4r10,25v2,-5,12,-29,51,-29v20,0,36,9,44,26v4,-7,18,-26,53,-26v32,0,55,21,55,62v-2,39,4,85,-2,120v-9,-1,-22,2,-27,-2v-5,-55,20,-156,-38,-154v-8,0,-29,6,-37,8v7,40,6,104,2,148v-9,-1,-22,2,-27,-2v-5,-54,20,-154,-35,-154v-8,0,-30,6,-37,8v-2,48,4,104,-2,148r-25,0","w":284},"n":{"d":"30,0v-9,-52,8,-129,-11,-174v6,-4,20,-7,26,-4r10,25v2,-5,12,-29,51,-29v32,0,57,21,57,62v-2,39,4,85,-2,120v-9,-1,-22,2,-27,-2r0,-112v-1,-49,-44,-46,-77,-34v-2,48,4,104,-2,148r-25,0","w":189},"o":{"d":"21,-58r0,-62v0,-40,30,-62,69,-62v40,0,69,22,69,62r0,62v0,40,-29,62,-69,62v-39,0,-69,-22,-69,-62xm50,-114v-1,44,-6,92,40,92v46,0,42,-47,41,-92v0,-28,-15,-42,-41,-42v-26,0,-40,14,-40,42","w":180},"p":{"d":"56,-8v0,26,4,62,-1,86v-9,0,-19,4,-27,2r0,-220v-1,-12,-11,-26,-7,-36v8,0,19,-6,24,-2r10,25v20,-44,112,-37,106,33r0,62v3,55,-64,78,-105,50xm57,-148v4,49,-19,129,37,126v41,4,40,-49,38,-92v0,-50,-42,-46,-75,-34","w":182},"q":{"d":"22,-59r0,-61v-8,-59,74,-72,107,-51v8,-1,17,-7,25,-5r-2,254v-9,0,-19,4,-27,2r2,-104v-3,7,-14,28,-50,28v-32,0,-55,-21,-55,-63xm50,-114v-2,43,-2,92,39,92v8,0,30,-6,36,-8v-4,-49,19,-128,-37,-126v-22,0,-38,15,-38,42","w":181},"r":{"d":"30,0v-9,-52,8,-129,-11,-174v6,-4,20,-7,26,-4r10,25v-1,-4,20,-35,52,-27v-3,10,-3,24,-8,32v-12,-4,-29,-4,-42,0v-2,48,4,104,-2,148r-25,0","w":111},"s":{"d":"136,-50v3,65,-85,65,-119,36v6,-6,9,-15,16,-20v21,15,73,23,74,-16v0,-36,-89,-17,-89,-79v0,-55,77,-68,112,-37v-6,6,-8,16,-17,19v-20,-16,-67,-11,-65,18v0,40,88,16,88,79","w":152},"t":{"d":"133,-13v-36,35,-105,16,-101,-50r0,-89v-7,-1,-17,2,-21,-2v1,-8,-2,-20,2,-24r20,0v2,-12,1,-29,6,-38v7,0,16,-4,22,-2r0,40v19,2,46,-4,61,2v-3,8,-2,20,-9,24r-52,0v3,49,-15,127,32,130v16,0,23,-13,29,-11","w":136},"u":{"d":"26,-59r1,-117v9,0,21,-6,27,-2r0,113v-3,52,49,46,75,33v2,-47,-4,-101,2,-144v9,0,21,-6,27,-2v3,58,-8,130,9,174v-4,5,-20,7,-26,4r-10,-26v-18,47,-113,37,-105,-33","w":186},"v":{"d":"72,-3v-27,-52,-43,-116,-67,-171v7,-4,25,-7,31,-4r48,148r48,-146v9,0,23,-6,30,-2r-68,181","w":166},"w":{"d":"71,-2v-25,-55,-43,-116,-66,-172v7,-4,24,-7,31,-4r48,148v12,-49,34,-87,36,-146v9,0,21,-6,27,-2v-5,65,21,97,32,148r49,-146v9,0,23,-6,30,-2r-68,181v-9,-3,-20,-3,-27,-8r-32,-102v-10,38,-20,77,-36,110","w":262},"x":{"d":"11,0v13,-31,42,-60,60,-90v-17,-29,-44,-57,-57,-86v9,0,22,-6,29,-2r44,69v15,-22,27,-47,44,-67v10,0,24,-6,32,-2r-59,87v19,30,47,60,61,91v-11,-1,-26,2,-33,-2r-45,-70v-16,23,-29,51,-47,72r-29,0","w":175},"y":{"d":"-1,47v4,-4,11,11,31,10v24,3,36,-40,44,-63v-3,0,-5,-2,-7,-4r-62,-164v7,-4,25,-7,32,-4r48,148r47,-146v9,0,23,-6,30,-2r-75,214v-11,47,-68,62,-99,30","w":167},"z":{"d":"21,0v-6,-2,-4,-12,-6,-18r87,-134v-27,-2,-62,4,-85,-2v3,-8,1,-20,7,-24v37,2,81,-4,114,2r0,17r-88,133v28,2,64,-4,88,2v-1,8,2,20,-2,24r-115,0","w":155},"{":{"d":"49,-17v1,-44,5,-76,-35,-84v3,-7,3,-19,9,-23v30,-8,26,-30,26,-61v-1,-39,31,-64,77,-58v-3,8,-4,17,-9,23v-30,-1,-45,22,-41,58v0,24,-11,44,-31,52v31,12,33,45,31,87v-1,31,21,39,43,43v1,8,9,17,5,23v-47,2,-75,-21,-75,-60","w":138},"|":{"d":"33,79v-7,-105,1,-225,-2,-335v6,-4,21,-5,29,-4r-2,339r-25,0","w":92},"}":{"d":"90,-185v-2,39,1,56,34,65v-3,7,-3,17,-9,22v-35,10,-23,44,-25,81v2,37,-34,67,-77,58v3,-7,3,-18,8,-23v72,7,14,-113,73,-128v-26,-10,-33,-35,-31,-69v1,-31,-22,-39,-44,-43v-1,-7,-7,-16,-5,-22v47,-2,76,20,76,59","w":137},"~":{"d":"50,-97v-6,4,-23,3,-28,0v0,-42,23,-59,49,-59v38,0,46,35,69,35v23,0,24,-19,26,-34v8,1,21,-2,26,2v0,42,-22,59,-49,59v-38,0,-46,-35,-69,-35v-20,0,-24,17,-24,32","w":211}}});;jQuery(function($){Cufon.replace("#menu a,h3,h2,h1",{fontFamily:'Anivers'});if(jQuery.browser.msie&&parseInt(jQuery.browser.version)==6){$(".feature-left").css({"margin-right":"40px"});}else{$(".feature-left").css({"margin-right":"80px"});}
$("#featured").css({"overflow-x":"hidden","overflow-y":"hidden"});$("#menu li").hover(function(){$(this).addClass("selected");Cufon.replace("#menu .selected a",{fontFamily:'Anivers'});},function(){$("#menu li").removeClass("selected");Cufon.replace("#menu a",{fontFamily:'Anivers'});});$("#main a").each(function(i){$("body").append("<div class='tooltip' id='tooltip"+i+"'><p>"+$(this).attr('title')+"</p></div>");var my_tooltip=$("#tooltip"+i);if($(this).attr("title")!=""){$(this).removeAttr("title").mouseover(function(){my_tooltip.css({opacity:0.8,display:"none"}).fadeIn(400);}).mousemove(function(kmouse){my_tooltip.css({left:kmouse.pageX+15,top:kmouse.pageY+15});}).mouseout(function(){my_tooltip.fadeOut(400);});}});if($.browser.msie){if(parseInt($.browser.version)==6){window.drawerHeight=201;}else if(parseInt($.browser.version)==7){window.drawerHeight=179;}else{window.drawerHeight=159;}}else{window.drawerHeight=159;}
$("#hire-me-drawer").css({"top":"-"+window.drawerHeight+"px","display":"block"});$("#drawer-button").click(function(){if(parseInt($("#hire-me-drawer").css("top"))==0){$("#hire-me-drawer").animate({"top":"-"+window.drawerHeight+"px"},1200,"easeOutQuart");$(this).html(window.drawer_handle_text);}else{$("#hire-me-drawer").animate({"top":"0px"},1000,"easeOutBounce");window.drawer_handle_text=$(this).html();$(this).html("close");}}).focus(function(){$(this).blur();});$(".service-icon").each(function(i,element){var src=$(element).find("img").attr("src").replace(".png","-hover.png");$(element).css({background:"url("+src+") no-repeat 1px 1px"});$(element).hover(function(){$(this).find("img").animate({opacity:0},700);},function(){if($(this).find("img:animated").size()==0){$(this).find("img").animate({opacity:1},700);}else{$(this).find("img").stop().animate({opacity:1},300);}});});$("#featured").cycle({fx:"scrollDown",next:".feature-button-next",prev:".feature-button-prev",timeout:0,cleartype:true,cleartypeNoBg:true,easing:"easeOutBounce",speed:1000});$(".form-left br").remove();if(jQuery.browser.opera&&jQuery.browser.version>9&&jQuery.browser.version<10){jQuery("#drawer-form label[for=drawer-contact-message]").css({"margin-left":"-80px","margin-top":"40px"});}});;jQuery(document).ready(function(){jQuery("#drawer-form>form").submit(function(){var str=jQuery(this).serialize();jQuery.ajax({type:"POST",url:jQuery("#blog-url").attr("value"),data:str,success:function(msg){if(msg=="OK"){jQuery("#drawer-form>form").html('<div class="drawer_notification_ok">Your message has been sent. Thank you!</div>');}else{alert(msg.replace("<br />","\n").replace("<br />","\n").replace("<div class=\"notification_error\">","").replace("</div>",""));}}});return false;});});;(function($){jQuery.fn.pngFix=function(settings){settings=jQuery.extend({blankgif:'blank.gif'},settings);var ie55=(navigator.appName=="Microsoft Internet Explorer"&&parseInt(navigator.appVersion)==4&&navigator.appVersion.indexOf("MSIE 5.5")!=-1);var ie6=(navigator.appName=="Microsoft Internet Explorer"&&parseInt(navigator.appVersion)==4&&navigator.appVersion.indexOf("MSIE 6.0")!=-1);if(jQuery.browser.msie&&(ie55||ie6)){jQuery(this).find("img[src$=.png]").each(function(){jQuery(this).attr('width',jQuery(this).width());jQuery(this).attr('height',jQuery(this).height());var prevStyle='';var strNewHTML='';var imgId=(jQuery(this).attr('id'))?'id="'+jQuery(this).attr('id')+'" ':'';var imgClass=(jQuery(this).attr('class'))?'class="'+jQuery(this).attr('class')+'" ':'';var imgTitle=(jQuery(this).attr('title'))?'title="'+jQuery(this).attr('title')+'" ':'';var imgAlt=(jQuery(this).attr('alt'))?'alt="'+jQuery(this).attr('alt')+'" ':'';var imgAlign=(jQuery(this).attr('align'))?'float:'+jQuery(this).attr('align')+';':'';var imgHand=(jQuery(this).parent().attr('href'))?'cursor:hand;':'';if(this.style.border){prevStyle+='border:'+this.style.border+';';this.style.border='';}
if(this.style.padding){prevStyle+='padding:'+this.style.padding+';';this.style.padding='';}
if(this.style.margin){prevStyle+='margin:'+this.style.margin+';';this.style.margin='';}
var imgStyle=(this.style.cssText);strNewHTML+='<span '+imgId+imgClass+imgTitle+imgAlt;strNewHTML+='style="position:relative;white-space:pre-line;display:inline-block;background:transparent;'+imgAlign+imgHand;strNewHTML+='width:'+jQuery(this).width()+'px;'+'height:'+jQuery(this).height()+'px;';strNewHTML+='filter:progid:DXImageTransform.Microsoft.AlphaImageLoader'+'(src=\''+jQuery(this).attr('src')+'\', sizingMethod=\'scale\');';strNewHTML+=imgStyle+'"></span>';if(prevStyle!=''){strNewHTML='<span style="position:relative;display:inline-block;'+prevStyle+imgHand+'width:'+jQuery(this).width()+'px;'+'height:'+jQuery(this).height()+'px;'+'">'+strNewHTML+'</span>';}
jQuery(this).hide();jQuery(this).after(strNewHTML);});jQuery(this).find("*").each(function(){var bgIMG=jQuery(this).css('background-image');if(bgIMG.indexOf(".png")!=-1){var iebg=bgIMG.split('url("')[1].split('")')[0];jQuery(this).css('background-image','none');jQuery(this).get(0).runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+iebg+"',sizingMethod='scale')";}});jQuery(this).find("input[src$=.png]").each(function(){var bgIMG=jQuery(this).attr('src');jQuery(this).get(0).runtimeStyle.filter='progid:DXImageTransform.Microsoft.AlphaImageLoader'+'(src=\''+bgIMG+'\', sizingMethod=\'scale\');';jQuery(this).attr('src',settings.blankgif)});}
return jQuery;};})(jQuery);jQuery(document).ready(function(){jQuery(document).pngFix();});