// Give the selection the height of the viewport of if bigger the height of the argument
// Change those heights if the size of the viewport changes
$.fn.maxHeight = function(ref) {
  // Equal the height of #sidebar with the viewport of the browser / or if bigger the height of #container
  var selection = $(this);
  $(this).height(function() {
	var window_height = $(window).height();
	var container_height = $(ref).height();	  
	if (window_height > container_height) {
		return window_height;
		}
	else {
		return container_height;}
  });
  
  // When the height of the viewport resizes, change the height of the #sidebar to the new height / or if bigger remain the height of arument ref  
  function resizeSelection() {
	var window_height2 = $(window).height();
	var container_height2 = $(ref).height();
	if (window_height2 > container_height2) {		
		selection.height(window_height2);}
	else {		
		selection.height(container_height2);}
  };
  
  var resizeTimer = null;
  $(window).bind('resize', function() {
	  if (resizeTimer) clearTimeout(resizeTimer);
	  resizeTimer = setTimeout(resizeSelection, 1);
  }); 

};

/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
*/

// t: current time, b: begInnIng value, c: change In value, d: duration
jQuery.easing['jswing'] = jQuery.easing['swing'];

jQuery.extend( jQuery.easing,
{
	def: 'easeOutQuad',
	swing: function (x, t, b, c, d) {
		//alert(jQuery.easing.default);
		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;
	}
});


/*
 * jQuery Cycle Plugin (core)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.86 (05-APR-2010)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 */
(function($){var ver="2.86";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}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(){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(opts2.currSlide,opts2.nextSlide,opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts2.rev);},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,1);}}}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]:[];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=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=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.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;}var buffer=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{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}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"){$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||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=false;}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.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(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; 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{var roll=(opts.nextSlide+1)==els.length;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(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,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(curr,next,opts,fwd);while((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,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){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,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);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();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,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,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,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,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,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null};})(jQuery);

$.fn.cycle.transitions.hideFirstThenSlideRight = function($cont, $slides, opts) { 
    var $el = $($slides[0]); 
    var w = $el.width(); 
    var h = $el.height(); 
    opts.cssBefore = { top:  0, 
        left: -290, 
        display: 'block'  }; 
    opts.animIn    = { left: 0	 }; 
    opts.animOut   = {  top: 0,
		left:-300 };     
};
  
/*------------------------------------------------------------------------------
/* FROM HERE STARTS THE CUFON SCRIPT TO USE A CUSTOM FONT 
----------------------------------------------------------------------------- */

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 * 
 * Cufon - Add custom fonts
 */
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("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.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}})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1990, 2002 Adobe Systems Incorporated.  All Rights Reserved. ©
 * 1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively
 * licensed through Linotype Library GmbH, and may be registered in certain
 * jurisdictions.
 * 
 * Full name:
 * HelveticaNeueLTStd-ThCn
 * 
 * Designer:
 * Linotype Staff
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1990, 2002 Adobe Systems Incorporated.  All Rights Reserved. ©
 * 1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Helvetica is a trademark of Heidelberger Druckmaschinen AG, exclusively
 * licensed through Linotype Library GmbH, and may be registered in certain
 * jurisdictions.
 * 
 * Full name:
 * HelveticaNeueLTStd-Cn
 * 
 * Designer:
 * Linotype Staff
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"44,-96v0,46,8,75,36,75v33,0,38,-31,38,-75v0,-37,-6,-76,-38,-76v-28,0,-36,30,-36,76xm147,-257r0,257r-29,0v-1,-7,2,-18,-1,-24v-4,14,-20,29,-41,29v-46,0,-63,-40,-63,-101v0,-40,6,-102,60,-102v18,-1,35,12,44,27r0,-86r30,0","w":166,"k":{"y":-4}},{"d":"95,-120r69,120r-35,0r-54,-95r-25,30r0,65r-30,0r0,-257r30,0r1,153r67,-89r36,0"},{"d":"1,-85r0,-21v57,-1,-6,-160,66,-151r26,0r0,24v-53,-11,-37,46,-37,91v0,37,-25,43,-32,47v8,1,32,11,32,46r0,62v-4,22,12,33,37,29r0,24v-40,1,-63,1,-65,-47v-1,-39,9,-104,-27,-104","w":93},{"d":"20,0r0,-193r29,0r0,23v8,-18,28,-28,47,-28v51,0,51,38,51,61r0,137r-30,0r0,-133v0,-15,-2,-39,-29,-39v-16,0,-38,11,-38,39r0,133r-30,0","w":166,"k":{"y":-4}},{"d":"28,66r0,-323r65,0r0,24r-37,0r0,275r37,0r0,24r-65,0","w":93},{"d":"48,-96v0,37,7,75,39,75v28,0,35,-29,35,-79v0,-42,-7,-72,-35,-72v-33,0,-39,32,-39,76xm20,63r0,-256r29,0r0,24v4,-14,21,-29,42,-29v46,0,63,41,63,98v0,44,-13,105,-63,105v-18,1,-32,-12,-41,-27r0,85r-30,0","w":166},{"d":"62,-67v-9,-63,55,-72,54,-127v0,-21,-12,-40,-35,-40v-35,0,-38,35,-38,53r-30,0v0,-42,21,-79,67,-79v43,0,67,29,67,68v0,55,-62,69,-57,125r-28,0xm59,0r0,-35r34,0r0,35r-34,0"},{"d":"27,-144r0,-38r33,0r0,38r-33,0xm27,0r0,-38r33,0r0,38r-33,0","w":86,"k":{" ":13}},{"d":"56,0r-52,-193r33,0r36,155r36,-155r34,0r-53,193r-34,0","w":146,"k":{",":20,".":20}},{"d":"8,0r0,-27r116,-202r-109,0r0,-28r142,0r0,29r-116,200r117,0r0,28r-150,0","w":166},{"d":"80,-172v-28,0,-36,30,-36,76v0,31,5,70,35,70v33,0,39,-30,39,-70v0,-37,-6,-76,-38,-76xm147,-193r0,181v0,58,-27,78,-66,78v-12,0,-58,0,-63,-48r30,0v1,18,15,24,31,24v50,0,38,-36,37,-68v-6,16,-25,26,-44,26v-56,0,-59,-70,-59,-96v0,-52,14,-102,63,-102v22,-1,36,17,42,30r0,-25r29,0","w":166,"k":{"y":-4}},{"d":"21,0r0,-257v71,-1,149,-10,149,64v0,29,-12,57,-40,66v57,-1,24,105,53,127r-39,0v-10,-15,-7,-52,-10,-77v-6,-53,-39,-33,-81,-37r0,114r-32,0xm53,-231r0,91v45,-3,78,14,84,-50v3,-39,-41,-44,-84,-41","w":186,"k":{"T":6,"W":-7,"Y":6,"U":-7}},{"w":86,"k":{"T":13,"V":13,"W":13,"Y":13,"A":13}},{"d":"65,-120r0,-24v36,4,56,-13,55,-45v0,-23,-10,-42,-34,-42v-33,0,-36,31,-36,50r-32,0v0,-44,21,-74,68,-74v53,0,65,38,65,66v1,27,-14,48,-39,56v29,6,47,24,47,59v0,46,-24,79,-73,79v-69,0,-72,-58,-72,-74r32,0v0,23,11,50,40,50v19,0,41,-9,41,-52v1,-36,-21,-53,-62,-49","w":172},{"d":"20,0r0,-257r30,0r1,86v8,-16,29,-27,46,-27v50,0,50,38,50,61r0,137r-30,0r0,-133v0,-15,-2,-39,-29,-39v-16,0,-38,11,-38,39r0,133r-30,0","w":166},{"d":"27,0r0,-38r33,0v-1,42,8,79,-33,91r0,-17v16,-7,15,-17,15,-36r-15,0xm27,-144r0,-38r33,0r0,38r-33,0","w":86},{"d":"36,-67r-6,-190r33,0r-6,190r-21,0xm30,0r0,-35r33,0r0,35r-33,0","w":92},{"d":"46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm147,-93r-102,0v0,30,0,74,37,74v29,0,33,-30,33,-44r30,0v0,21,-12,68,-65,68v-47,0,-67,-33,-67,-99v0,-48,10,-104,69,-104v64,0,65,56,65,105xm37,-271r36,0r25,51r-22,0"},{"d":"17,-94r82,-156r18,0r82,156r-24,0r-67,-130r-67,130r-24,0","w":216},{"d":"29,-193r0,-56r30,0r0,56r34,0r0,24r-34,0r0,124v-3,21,16,23,33,20r0,25v-29,6,-72,-1,-63,-36r0,-133r-28,0r0,-24r28,0","w":93},{"d":"67,-101r-68,-156r35,0r49,120r51,-120r33,0r-68,156r0,101r-32,0r0,-101","w":166,"k":{"\u00f6":27,"a":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"A":20,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"i":11,"\u00ef":11,"o":27,"\u00f4":27,",":40,".":40,"u":22,"\u00f9":22,"-":27,":":13,";":13}},{"d":"170,15r-26,-23v-11,8,-26,13,-44,13v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133v71,0,83,68,83,133v0,37,-4,76,-21,102r26,24xm123,-27r-24,-22r17,-20r24,22v15,-51,26,-189,-40,-189v-44,0,-50,48,-50,107v0,69,15,127,73,102","w":200},{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},{"d":"86,5v-93,0,-95,-121,-28,-141v-63,-19,-41,-127,28,-119v69,-8,92,100,28,119v67,21,64,141,-28,141xm86,-231v-23,0,-33,18,-33,42v0,24,10,41,33,41v23,0,34,-17,34,-41v0,-24,-11,-42,-34,-42xm45,-71v0,30,11,52,41,52v30,0,42,-22,42,-52v0,-30,-12,-53,-42,-53v-30,0,-41,23,-41,53","w":172},{"d":"31,-166r0,-91r24,0r0,91r-24,0xm91,-166r0,-91r24,0r0,91r-24,0","w":146},{"d":"45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,12,7,20,16,14r0,21v-19,3,-43,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm108,-105v-19,21,-66,11,-66,53v0,19,6,33,27,33v40,0,42,-43,39,-86xm30,-220r36,-51r28,0r36,51r-28,0r-22,-31r-22,31r-28,0"},{"d":"99,-229r0,229r-32,0r0,-229r-64,0r0,-28r161,0r0,28r-65,0","w":166,"k":{"\u00f6":27,"\u00e8":27,"\u00eb":27,"\u00ea":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"w":27,"y":20,"a":27,"A":20,"e":27,"\u00e9":27,"i":6,"\u00ef":6,"o":27,"\u00f4":27,"r":27,",":33,".":33,"u":27,"\u00f9":27,"-":20,":":27,";":27}},{"d":"132,-257r0,183v0,46,-11,79,-64,79v-51,0,-63,-34,-60,-80r30,0v-2,29,2,55,30,54v29,0,33,-19,33,-54r0,-182r31,0","w":153},{"d":"-6,-271r36,0r25,51r-22,0","w":73},{"d":"22,0r0,-193r30,0r0,193r-30,0xm-6,-228r0,-37r28,0r0,37r-28,0xm52,-228r0,-37r28,0r0,37r-28,0","w":73},{"d":"147,-66v-25,0,-54,-27,-76,-27v-17,0,-30,16,-36,26r-15,-16v11,-15,26,-34,49,-34v25,0,53,28,76,28v17,0,30,-17,36,-27r15,17v-11,15,-26,33,-49,33","w":216},{"d":"93,-106r0,21v-58,0,5,160,-67,151r-25,0r0,-24v52,10,36,-47,36,-91v0,-37,25,-43,32,-47v-8,-1,-32,-11,-32,-46r0,-62v4,-21,-11,-33,-36,-29r0,-24v39,-1,62,-1,64,47v1,40,-8,104,28,104","w":93},{"d":"103,-205v-24,37,-43,79,-65,118r65,0r0,-118xm11,-90r92,-165r30,0r0,168r29,0r0,25r-29,0r0,62r-30,0r0,-62r-92,0r0,-28","w":172},{"d":"53,-214r0,-43r21,0r0,43r39,-15r8,21r-41,12r27,34r-18,13r-26,-36r-26,36r-18,-13r28,-34r-41,-12r8,-21","w":126},{"d":"29,0r0,-169r-28,0r0,-24r28,0v-5,-49,12,-74,64,-67r0,26v-18,-1,-34,-1,-34,18r0,23r33,0r0,24r-33,0r0,169r-30,0","w":93},{"d":"18,-76r0,-181r32,0r0,181v0,38,12,55,43,55v34,0,44,-19,44,-55r0,-181r32,0r0,181v0,49,-26,81,-76,81v-51,0,-75,-28,-75,-81","w":186},{"d":"21,-119r14,-131r114,0r0,28r-90,0v-2,24,-9,52,-9,75v43,-42,108,-11,108,65v0,48,-21,87,-74,87v-60,0,-70,-50,-70,-71r32,0v0,13,5,47,39,47v36,0,42,-40,42,-66v0,-28,-11,-58,-43,-58v-22,0,-36,19,-36,25","w":172},{"d":"107,-51v0,-56,-94,-21,-94,-94v0,-36,28,-53,61,-53v56,0,59,39,59,62r-30,0v0,-24,-7,-38,-29,-38v-10,0,-31,2,-31,29v0,50,95,21,95,90v0,41,-27,60,-63,60v-66,0,-66,-48,-66,-68r30,0v0,23,6,44,36,44v10,0,32,-5,32,-32","w":146,"k":{"w":-4}},{"d":"24,-192r0,-21v32,-2,62,-6,63,-42r22,0r0,255r-31,0r0,-192r-54,0","w":172},{"d":"28,5r0,-267r24,0r0,267r-24,0","w":79},{"d":"60,36v-13,-9,6,-21,11,-31v-42,-4,-59,-36,-59,-99v0,-48,9,-104,68,-104v53,0,62,42,62,64r-30,0v0,-19,-8,-40,-31,-40v-19,0,-38,9,-38,80v0,25,1,75,37,75v26,0,32,-27,32,-48r30,0v0,29,-14,67,-56,72v-2,5,-10,10,-9,15v18,-6,37,1,39,25v1,32,-49,38,-74,24r6,-12v9,4,48,7,42,-11v2,-13,-24,-15,-30,-10","w":153,"k":{"l":7,"y":7}},{"d":"22,0r0,-257r30,0r0,257r-30,0","w":73,"k":{"w":-4}},{"d":"45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,12,7,20,16,14r0,21v-19,3,-43,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm108,-105v-19,21,-66,11,-66,53v0,19,6,33,27,33v40,0,42,-43,39,-86"},{"d":"46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm147,-93r-102,0v0,30,0,74,37,74v29,0,33,-30,33,-44r30,0v0,21,-12,68,-65,68v-47,0,-67,-33,-67,-99v0,-48,10,-104,69,-104v64,0,65,56,65,105xm62,-220r25,-51r35,0r-38,51r-22,0"},{"d":"17,-116r0,-24r182,0r0,24r-182,0xm17,-42r0,-24r182,0r0,24r-182,0","w":216},{"d":"-4,5r84,-267r24,0r-84,267r-24,0","w":100},{"d":"20,0r0,-193r30,0v1,9,-2,22,1,29v10,-22,27,-40,55,-32r0,30v-26,-7,-56,5,-56,44r0,122r-30,0","w":106,"k":{"v":-6,"y":-6,",":27,".":27,"-":13}},{"d":"52,-193r0,212v2,37,-22,51,-60,46r0,-26v23,5,30,-7,30,-31r0,-201r30,0xm52,-257r0,35r-30,0r0,-35r30,0","w":73},{"d":"62,0r-63,-257r33,0r52,221r50,-221r33,0r-65,257r-40,0","w":166,"k":{"\u00f6":6,"\u00f4":6,"\u00e8":6,"\u00eb":6,"\u00ea":6,"\u00e0":6,"\u00e4":6,"\u00e2":6,"a":6,"A":13,"e":6,"\u00e9":6,"o":6,",":33,".":33,"u":6,"\u00f9":6,"-":6,":":6,";":6}},{"d":"31,-166r0,-91r24,0r0,91r-24,0","w":86},{"d":"27,0r0,-38r33,0v-1,42,8,79,-33,91r0,-17v16,-7,15,-17,15,-36r-15,0","w":86,"k":{" ":13}},{"d":"55,-100r-49,-93r33,0r35,69r35,-69r33,0r-50,93r52,100r-33,0r-39,-76r-37,76r-33,0","w":146},{"d":"172,-257r0,257r-31,0r0,-124r-88,0r0,124r-32,0r0,-257r32,0r0,105r88,0r0,-105r31,0","w":193},{"d":"21,0r0,-257r41,0r86,215r0,-215r31,0r0,257r-43,0r-83,-208r0,208r-32,0","w":200},{"d":"46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm147,-93r-102,0v0,30,0,74,37,74v29,0,33,-30,33,-44r30,0v0,21,-12,68,-65,68v-47,0,-67,-33,-67,-99v0,-48,10,-104,69,-104v64,0,65,56,65,105"},{"d":"158,-28r0,28r-143,0v0,-61,41,-93,76,-122v21,-18,34,-33,34,-61v0,-22,-10,-46,-37,-46v-39,0,-40,41,-40,55r-32,0v0,-48,20,-81,72,-81v59,0,69,46,69,68v3,80,-91,94,-109,159r110,0","w":172},{"d":"118,-96v0,-44,-5,-76,-38,-76v-28,0,-36,30,-36,72v0,50,8,79,36,79v32,0,38,-38,38,-75xm117,63r-1,-85v-7,17,-23,27,-40,27v-50,0,-63,-52,-63,-105v0,-57,17,-98,63,-98v22,-1,36,17,42,29r0,-24r29,0r0,256r-30,0","w":166},{"d":"17,3r0,-24r154,-70r-154,-70r0,-24r182,83r0,22","w":216},{"d":"27,0r0,-38r33,0r0,38r-33,0","w":86,"k":{" ":13}},{"d":"154,-194r-31,0v0,-21,-12,-37,-34,-37v-49,0,-47,66,-44,97v5,-9,21,-29,49,-29v44,0,66,33,66,81v0,49,-24,87,-72,87v-71,0,-75,-68,-75,-121v0,-58,3,-139,77,-139v59,0,64,49,64,61xm48,-78v0,27,8,59,40,59v32,0,41,-32,41,-59v0,-27,-7,-59,-41,-59v-34,0,-40,32,-40,59","w":172},{"d":"176,-186r-33,0v-1,-27,-12,-50,-43,-50v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,47,-53,47,-87r-51,0r0,-26r80,0r0,134r-24,0r0,-35v-7,22,-28,40,-56,40v-67,0,-79,-65,-79,-134v0,-65,12,-133,83,-133v74,0,76,63,76,76","w":193},{"d":"93,-110r0,89v22,-2,39,-18,39,-43v0,-27,-17,-38,-39,-46xm78,-146r0,-83v-22,3,-34,17,-34,40v0,24,15,35,34,43xm78,-255r0,-21r15,0r0,21v44,2,64,26,65,70r-32,0v0,-24,-8,-41,-33,-44r0,88v33,11,72,20,72,72v0,54,-37,72,-72,74r0,34r-15,0r0,-34v-54,-2,-70,-32,-70,-83r31,0v0,26,2,53,39,57r0,-94v-32,-10,-67,-22,-67,-71v0,-23,9,-65,67,-69","w":172},{"d":"19,66r-18,0v56,-98,52,-225,0,-323r18,0v69,93,69,229,0,323","w":86},{"d":"49,0r-45,-193r31,0r32,158r33,-158r35,0r33,158r30,-158r32,0r-46,193r-33,0r-35,-158r-32,158r-35,0","w":233,"k":{",":13,".":13}},{"d":"45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,12,7,20,16,14r0,21v-19,3,-43,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm108,-105v-19,21,-66,11,-66,53v0,19,6,33,27,33v40,0,42,-43,39,-86xm37,-271r36,0r25,51r-22,0"},{"d":"19,-88r0,-28r88,0r0,28r-88,0","w":126},{"d":"14,-167r0,-26r116,0r0,25r-86,142r86,0r0,26r-120,0r0,-24r87,-143r-83,0","w":140},{"d":"10,-96v0,-54,15,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-7,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm30,-220r36,-51r28,0r36,51r-28,0r-22,-31r-22,31r-28,0","k":{"w":-4,"y":-4}},{"d":"56,-231r0,205r33,0v55,0,61,-56,61,-102v0,-50,-3,-103,-61,-103r-33,0xm24,0r0,-257r69,0v80,0,90,57,90,128v0,65,-16,129,-87,129r-72,0","w":200,"k":{"Y":7}},{"d":"64,-136v20,0,21,-20,21,-50v0,-30,-1,-49,-21,-49v-20,0,-22,19,-22,49v0,30,2,50,22,50xm67,5r112,-260r25,0r-112,260r-25,0xm210,-14v20,0,21,-20,21,-50v0,-30,-1,-50,-21,-50v-20,0,-22,20,-22,50v0,30,2,50,22,50xm64,-117v-43,0,-47,-33,-47,-69v0,-36,4,-69,47,-69v43,0,47,33,47,69v0,36,-4,69,-47,69xm210,5v-43,0,-48,-33,-48,-69v0,-36,5,-69,48,-69v43,0,47,33,47,69v0,36,-4,69,-47,69","w":273},{"d":"162,-190r-32,0v0,-27,-10,-46,-40,-46v-27,0,-42,15,-42,42v0,72,121,29,121,123v0,59,-44,76,-80,76v-60,0,-78,-31,-78,-86r32,0v0,29,2,60,48,60v25,0,45,-18,45,-45v0,-73,-122,-31,-122,-125v0,-24,11,-71,76,-71v49,0,71,25,72,72","w":180},{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0xm41,-271r35,0r26,51r-22,0","w":166},{"d":"10,-96v0,-54,15,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-7,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77","k":{"w":-4,"y":-4}},{"d":"28,0r10,-74r-30,0r0,-24r33,0r7,-55r-32,0r0,-24r35,0r9,-73r24,0r-9,73r38,0r9,-73r23,0r-9,73r29,0r0,24r-32,0r-7,55r30,0r0,24r-33,0r-9,74r-24,0r10,-74r-38,0r-10,74r-24,0xm71,-153r-7,55r39,0r6,-55r-38,0","w":172},{"d":"80,-172v4,8,8,10,13,2v24,-13,36,-63,-3,-63v-35,0,-29,42,-10,61xm134,-46r-57,-81v-21,12,-36,31,-36,58v0,56,70,60,93,23xm99,-144r51,73v5,-13,8,-27,10,-50r28,0v0,19,-11,62,-21,75r33,46r-34,0r-17,-24v-20,19,-36,29,-64,29v-63,0,-76,-48,-76,-71v-1,-37,28,-64,54,-81v-10,-18,-27,-36,-27,-60v0,-30,24,-50,53,-50v32,0,55,14,55,49v0,30,-26,47,-45,64","w":200},{"d":"48,-96v0,40,7,75,39,75v28,0,35,-31,35,-75v0,-46,-7,-76,-35,-76v-32,0,-39,39,-39,76xm20,0r0,-257r30,0r1,86v7,-17,25,-27,44,-27v52,0,59,62,59,102v0,54,-18,101,-63,101v-21,0,-38,-15,-42,-29r0,24r-29,0","w":166},{"d":"18,-56r32,0v0,21,12,37,34,37v49,0,47,-66,44,-97v-5,9,-21,29,-49,29v-44,0,-66,-33,-66,-81v0,-49,24,-87,72,-87v71,0,75,68,75,121v0,58,-3,139,-77,139v-59,0,-65,-49,-65,-61xm125,-172v0,-27,-8,-59,-40,-59v-32,0,-41,32,-41,59v0,27,7,59,41,59v34,0,40,-32,40,-59","w":172},{"d":"68,-257r17,0v-54,98,-51,225,0,323r-17,0v-70,-93,-70,-229,0,-323","w":86},{"d":"69,-131r-63,-126r35,0r47,96r47,-96r33,0r-64,126r68,131r-35,0r-51,-103r-52,103r-33,0","w":173},{"d":"21,0r0,-257r32,0r0,229r104,0r0,28r-136,0","k":{"T":34,"V":27,"W":27,"Y":33,"y":13}},{"d":"21,0r0,-257r32,0r0,125r89,-125r35,0r-77,107r84,150r-35,0r-70,-124r-26,37r0,87r-32,0","w":180,"k":{"y":4,"o":7,"\u00f4":7,"\u00f6":7,"u":7,"\u00f9":7}},{"d":"142,-134r-30,0v0,-19,-8,-40,-31,-40v-19,0,-38,9,-38,80v0,25,1,75,37,75v26,0,32,-27,32,-48r30,0v0,31,-16,72,-64,72v-47,0,-66,-33,-66,-99v0,-48,9,-104,68,-104v53,0,62,42,62,64","w":153,"k":{"l":7,"y":7}},{"d":"53,-122r0,96r43,0v33,0,45,-22,45,-47v-1,-50,-40,-51,-88,-49xm21,0r0,-257v72,2,143,-17,145,66v1,24,-17,45,-38,54v32,8,46,32,46,64v0,79,-75,75,-153,73xm53,-231r0,85v42,-2,72,13,79,-43v5,-41,-36,-45,-79,-42","w":186},{"d":"80,5r-84,-267r24,0r84,267r-24,0","w":100},{"d":"86,5v-69,0,-72,-69,-72,-129v0,-56,3,-131,72,-131v69,0,73,68,73,131v0,54,-4,129,-73,129xm45,-124v0,54,2,105,41,105v39,0,41,-51,41,-105v0,-56,-2,-107,-41,-107v-39,0,-41,51,-41,107","w":172},{"w":86,"k":{"T":13,"V":13,"W":13,"Y":13,"A":13}},{"d":"100,-262v71,0,83,68,83,133v0,65,-12,134,-83,134v-71,0,-83,-69,-83,-134v0,-65,12,-133,83,-133xm100,-236v-44,0,-50,48,-50,107v0,59,6,108,50,108v44,0,50,-49,50,-108v0,-59,-6,-107,-50,-107","w":200,"k":{"Y":9,"X":9}},{"d":"22,0r0,-257r53,0r52,204r52,-204r53,0r0,257r-32,0r-1,-225r-56,225r-32,0r-58,-225r0,225r-31,0","w":253},{"d":"21,0r0,-257r32,0r0,257r-32,0","w":73},{"d":"147,-193r0,193r-29,0v-1,-7,2,-18,-1,-23v-8,18,-27,28,-46,28v-51,0,-51,-38,-51,-61r0,-137r30,0r0,133v0,15,1,39,28,39v16,0,39,-11,39,-39r0,-133r30,0","w":166},{"d":"10,-96v0,-54,15,-102,70,-102v56,0,69,48,69,102v0,54,-14,101,-69,101v-56,0,-70,-47,-70,-101xm79,-19v32,0,39,-35,39,-77v0,-42,-7,-78,-39,-78v-31,0,-37,36,-37,78v0,42,6,77,37,77xm37,-228r0,-37r28,0r0,37r-28,0xm95,-228r0,-37r28,0r0,37r-28,0","k":{"w":-4,"y":-4}},{"d":"54,0r-51,-257r32,0r40,210r36,-210r38,0r37,210r39,-210r32,0r-53,257r-38,0r-36,-208r-37,208r-39,0","w":259,"k":{"\u00f6":6,"\u00ea":6,"\u00e4":6,"a":6,"\u00e2":6,"\u00e0":6,"A":6,"e":6,"\u00e9":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f4":6,",":27,".":27,"-":6}},{"d":"65,-257r0,323r-64,0r0,-24r36,0r0,-275r-36,0r0,-24r64,0","w":93},{"d":"96,0r0,-79r-79,0r0,-24r79,0r0,-79r24,0r0,79r79,0r0,24r-79,0r0,79r-24,0","w":216},{"d":"159,-224v-36,48,-78,136,-85,224r-35,0v12,-86,46,-163,91,-222r-116,0r0,-28r145,0r0,26","w":172},{"d":"60,4r-56,-197r33,0r39,155r33,-155r34,0r-56,206v-4,35,-31,57,-74,49r0,-23v28,7,45,-11,47,-35","w":146,"k":{"a":-4,"\u00e2":-4,"\u00e4":-4,"\u00e0":-4,",":20,".":20}},{"d":"23,0r0,-193r28,0v1,7,-2,18,1,23v15,-35,80,-41,89,3v9,-17,25,-31,45,-31v51,0,51,38,51,61r0,137r-30,0r0,-133v0,-15,-1,-39,-26,-39v-14,0,-36,9,-36,39r0,133r-30,0r0,-133v0,-15,-1,-39,-26,-39v-14,0,-36,9,-36,39r0,133r-30,0","w":259},{"d":"22,0r0,-193r30,0r0,193r-30,0xm22,-222r0,-35r30,0r0,35r-30,0","w":73},{"d":"145,-88r33,0v-3,49,-22,93,-78,93v-73,0,-83,-69,-83,-134v0,-65,12,-133,83,-133v53,0,75,30,76,80r-33,0v-1,-29,-10,-54,-43,-54v-44,0,-50,48,-50,107v0,59,6,108,50,108v39,0,44,-36,45,-67","w":186},{"d":"21,0r0,-257r65,0v22,0,80,0,80,74v0,63,-47,80,-113,74r0,109r-32,0xm53,-231r0,96v46,2,78,1,80,-50v2,-42,-35,-50,-80,-46","w":173,"k":{"\u00e4":6,"a":6,"\u00e2":6,"\u00e0":6,"A":13,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f4":6,"\u00f6":6,",":46,".":46}},{"d":"86,-105v0,20,15,34,34,34v33,0,56,-49,56,-76v0,-16,-11,-36,-29,-36v-35,0,-61,45,-61,78xm188,-175v5,-6,5,-16,9,-23r20,0r-34,118v0,5,4,9,11,9v33,0,60,-38,60,-78v0,-54,-48,-91,-110,-91v-62,0,-110,48,-110,111v0,64,48,112,110,112v44,0,79,-14,98,-40r22,0v-23,40,-65,62,-120,62v-74,0,-134,-60,-134,-134v0,-74,60,-133,134,-133v78,0,134,46,134,111v0,62,-51,102,-93,102v-14,0,-24,-7,-26,-22v-26,37,-96,24,-96,-32v0,-50,33,-102,84,-102v18,0,33,8,41,30","w":288},{"d":"17,-80r0,-22r182,-83r0,24r-154,70r154,70r0,24","w":216},{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,92r105,0r0,28r-137,0","w":166},{"d":"46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm147,-93r-102,0v0,30,0,74,37,74v29,0,33,-30,33,-44r30,0v0,21,-12,68,-65,68v-47,0,-67,-33,-67,-99v0,-48,10,-104,69,-104v64,0,65,56,65,105xm30,-220r36,-51r28,0r36,51r-28,0r-22,-31r-22,31r-28,0"},{"d":"45,-136v-7,3,-21,0,-30,1v0,-44,19,-63,65,-63v59,0,59,35,59,55r0,108v-3,12,7,20,16,14r0,21v-19,3,-43,7,-46,-23v-23,46,-99,33,-99,-28v0,-46,41,-57,77,-66v39,-10,25,-57,-9,-57v-33,0,-33,31,-33,38xm108,-105v-19,21,-66,11,-66,53v0,19,6,33,27,33v40,0,42,-43,39,-86xm37,-228r0,-37r28,0r0,37r-28,0xm95,-228r0,-37r28,0r0,37r-28,0"},{"d":"21,0r0,-257r133,0r0,28r-101,0r0,81r95,0r0,28r-95,0r0,120r-32,0","k":{"\u00eb":9,"\u00e0":7,"\u00e4":7,"a":7,"\u00e2":7,"A":19,"e":9,"\u00e9":9,"\u00ea":9,"\u00e8":9,"i":6,"\u00ef":6,"o":7,"\u00f4":7,"\u00f6":7,"r":7,",":40,".":40}},{"d":"46,-117r69,0v1,-28,-3,-57,-34,-57v-35,0,-35,38,-35,57xm147,-93r-102,0v0,30,0,74,37,74v29,0,33,-30,33,-44r30,0v0,21,-12,68,-65,68v-47,0,-67,-33,-67,-99v0,-48,10,-104,69,-104v64,0,65,56,65,105xm37,-228r0,-37r28,0r0,37r-28,0xm95,-228r0,-37r28,0r0,37r-28,0"},{"d":"-3,0r74,-257r43,0r69,257r-33,0r-19,-71r-82,0r-19,71r-33,0xm92,-221v-15,39,-23,84,-36,125r69,0","w":180,"k":{"p":-4,"Q":-4,"T":20,"V":7,"W":7,"Y":20}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-33-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("1NtB);:]s_Jr1=dF=|I[NElW1?g:O*n^owS(_X~ts)5{UM,fZQ&K;YaP8%T>rCev2k]Bh!c670VJGAK0{;[2lNlJXh:Bt;JrXhW2s_^Yt(VT~k]ZtN>0)K>e*kPh_;{ol|:aO2[5{wdetwfU{[K^Xkf5lKvBg|FKgK^1~[vBg|FKtY6J:=P;(w(kgXv5{wdetw{T~(vBg|FKOwB5?!W8(Z5TUIfOtwWv*Zch^2nP{BvBg|FKg=B7XESegN~]^=(wXESegN~6)2g;~Q&a_Iv?~]W5X|F5{wde~wF*wSKBXESegN~h(B]%:!K>sS:nn|v[XESegN(fXESegNS]^KvBg|FK~&IZ?Y:e)NK]1=lZ1ovP*wdT5|BZ?YdT)|Be?;vK);{]s=vY*_lrtZ6Y)EKesEgJU!]0s_~a~Z6Csk]CXZ,AOY{!{Ber1wVa*kPa)h{KtE(P)Ker~;(V)_Jr{=B&tXg>tE(rtX:5?;WK1onCso6]tX:]1NvC~h[]s_Jr?;fC5!^r~_BK1oK;)!laOh&V)|T%1h&PtB>Q_hK{XwBe_hK{Mo&a1od,")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":159,"face":{"font-family":"Helvetica Neue LT Std","font-weight":400,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 5 6 3 5 2 3 2 4","ascent":"257","descent":"-103","x-height":"5","bbox":"-8 -276 278 76.1111","underline-thickness":"18","underline-position":"-18","stemh":"24","stemv":"30","unicode-range":"U+0020-U+00F9"}}));

