/*
 * 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);


/*
 * SpicySelect jQuery Plugin v1.2
 * http://github.com/paulelliott/jquery-spicyselect
 * Copyright (c) 2009 Paul Elliott (paul@codingfrontier.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
 */

 (function($){$.fn.extend({spicyselect:function(user_settings){var settings=$.extend({defaultText:"",animate:true,label_markup:"<a></a>",label_text_selector:"> a"},user_settings);return this.each(function(){var selectBox=$(this).css({position:'absolute',left:'-9999px'}).focus(function(){$("#"+$(this).data("mask_id")).addClass('focus');}).blur(function(){if(!$.browser.msie){hideMask($("#"+$(this).data("mask_id")),settings);}});var selectOptions=$("> *",this);var maskId=selectBox.attr('id')+'_mask';selectBox.data("mask_id",maskId);selectBox.after("<div id='"+maskId+"'><div></div><ol></ol></div>");var selectMask=$("#"+maskId).addClass("spicyselect").addClass(selectBox.attr("class")).focus(function(){selectMask.addClass("focus");});selectMask.find("> div").html(settings.label_markup);selectMask.data("select_id",selectBox.attr("id"));var label=selectMask.find("> div "+settings.label_text_selector);selectBox.keydown(function(e){if(e.which!=9&&!e.altKey&&!e.ctrlKey&&!e.metaKey){if(e.which==40){if(selectMask.find("> ol").is(":hidden")){showMask(selectMask,settings);}else{var current=selectMask.find(".current");if(current.length==0){selectMask.find("li:first").addClass("current");}else if(!selectMask.find("li:last").is(".current")){var currentIndex=selectMask.find("li").index(current);selectMask.find("li:eq("+(currentIndex+1)+")").addClass("current");current.removeClass("current");}}}else if(e.which==38&&selectMask.find("> ol").is(":visible")){var current=selectMask.find(".current");var currentIndex=selectMask.find("li").index(current);selectMask.find("li:eq("+(currentIndex-1)+")").addClass("current");current.removeClass("current");}else if(e.which==27){hideMask(selectMask,settings);}else if((e.which==13||e.which==32)&&selectMask.find("> ol").is(":visible")){selectOption(selectMask,label,selectMask.find("li.current"));hideMask(selectMask,settings);}else if(e.which==13){}else{showMask(selectMask,settings);keyhandler(selectMask,e);}
 return false;}});if(selectOptions.length&&!selectOptions[0].value){settings.defaultText=selectOptions[0].text;selectOptions=selectOptions.slice(1);}
 label.text(settings.defaultText);var options=selectMask.find("> ol").hide();selectOptions.each(function(){var option=$(this);if(option.is("optgroup")){var optgroup=$("<ol></ol>");optgroup.append(createLi(option));$("option",option[0]).each(function(){optgroup.append(createLi($(this)));$(this).is(":selected")&&label.text(this.text);});options.append(optgroup);}else{if(!this.value){settings.defaultText=this.text;}else{options.append(createLi(option));}}
 option.is(":selected")&&label.text(option.text());});selectMask.find("> div").click(function(){selectBox.focus().click();if(selectMask.find("> ol").is(":visible")){hideMask(selectMask,settings);}else{showMask(selectMask,settings);}
 return false;});selectMask.find("ol li").live('click',function(){if($(this).is(".optgroup_label"))return false;var mask=$(this).addClass("current").closest("div");selectOption(mask,label,$(this));hideMask(mask,settings);}).mouseover(function(){selectMask.find("ol li.current").removeClass("current");$(this).addClass("current");});selectMask.bind('select mousedown',function(){return false;});});}});function hideMask(mask,settings){settings.animate&&mask.find("> ol").slideUp("fast")||mask.find("> ol").hide();mask.removeClass("focus");}
 function showMask(mask,settings){mask.find(".current").removeClass("current");settings.animate&&mask.find("> ol").slideDown("fast")||mask.find("> ol").show();mask.addClass("focus");}
 function selectOption(mask,label,option){if(option.length>0){label.text(option.text());$("#"+mask.data("select_id")).val(option.data("value")).change();}}
 function keyhandler(mask,e){if(e.which==8||e.which==46){mask.data("search_data","");}else{var searchData=((mask.data("search_data")||"")+String.fromCharCode(e.which)).toLowerCase();mask.data("search_data",searchData);mask.find("li.current").removeClass("current");mask.find("li").each(function(){var element=$(this);if(!element.hasClass("optgroup_label")&&element.text().toLowerCase().match(searchData)){element.addClass("current");return false;}});}}
 function createLi(option){var text=option.is("optgroup")?option.attr("label"):option.text();var li=$("<li>"+text+"</li>").addClass(option.attr('class'));li.attr("style",option.attr('style'));option.is("optgroup")&&li.addClass("optgroup_label");li.data('value',option.val());return li;}
 if($.browser.msie){$("*").live('click',function(){if($(this).closest('.spicyselect').length==0){hideMask($(".spicyselect"),{defaultText:"",animate:true,label_markup:"<a></a>",label_text_selector:"> a"});}});}})(jQuery);

/*  Cufon scripts should go last. Don't put anything else below this line.
------------------------------------------------------------------------ */


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
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 (C) 2000, 2007 Hoefler & Frere-Jones. http://www.typography.com
 * 
 * Trademark:
 * Gotham is a trademark of Hoefler & Frere-Jones, which may be registered in
 * certain jurisdictions.
 * 
 * Full name:
 * Gotham-Book
 * 
 * Manufacturer:
 * Hoefler & Frere-Jones
 * 
 * Designer:
 * Tobias Frere-Jones
 * 
 * Vendor URL:
 * www.typography.com
 * 
 * License information:
 * http://www.typography.com/support/eula.html
 */
Cufon.registerFont({"w":239,"face":{"font-family":"Gotham Book","font-weight":325,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 4 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-8 -287 383 59.1584","underline-thickness":"7.2","underline-position":"-40.68","stemh":"25","stemv":"28","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":108},"A":{"d":"14,0r115,-254r27,0r114,254r-30,0r-30,-67r-137,0r-30,67r-29,0xm84,-92r115,0r-57,-129","w":284},"B":{"d":"36,-252v81,2,188,-17,189,63v0,33,-20,50,-40,59v30,9,54,26,54,61v0,43,-36,69,-91,69r-112,0r0,-252xm64,-140v56,-1,132,11,132,-45v0,-50,-79,-41,-132,-41r0,86xm64,-26v59,-1,146,11,146,-45v0,-52,-89,-43,-146,-43r0,88","w":259,"k":{"?":2,"&":-1,"v":4,"X":7,"V":7,"T":6,"W":5,"Y":11,"w":4,"y":4}},"C":{"d":"151,4v-73,0,-127,-57,-127,-130v0,-71,54,-130,128,-130v46,0,73,16,98,40r-19,21v-21,-20,-45,-35,-79,-35v-56,0,-98,45,-98,104v0,97,122,138,179,68r19,18v-26,27,-55,44,-101,44","w":265,"k":{"X":4,"v":4,"x":4,"Y":4,"w":4,"y":4,"d":4,"g":4,"q":4,"c":4,"e":4,"o":4,"C":7,"G":7,"O":7,"Q":7,"-":4}},"D":{"d":"36,0r0,-252r87,0v79,0,134,54,134,126v0,71,-55,126,-134,126r-87,0xm64,-26v93,10,164,-21,164,-100v0,-56,-41,-100,-105,-100r-59,0r0,200","w":281,"k":{"V":16,"X":20,"\\":14,"?":7,"x":4,"J":14,"}":7,"]":7,")":11,"\/":14,"T":18,"W":13,"Y":23,"A":17,"Z":16,".":14,",":14,"S":4}},"E":{"d":"36,0r0,-252r182,0r0,26r-154,0r0,86r138,0r0,26r-138,0r0,88r156,0r0,26r-184,0","w":241,"k":{"v":4,"w":4,"y":4,"d":4,"g":4,"q":4,"c":4,"e":4,"o":4}},"F":{"d":"36,0r0,-252r181,0r0,26r-153,0r0,90r137,0r0,26r-137,0r0,110r-28,0","w":236,"k":{"\/":25,"?":-4,"&":9,"v":5,"J":40,"w":4,"y":5,"A":29,"Z":4,".":36,",":36,"a":9,"d":4,"g":4,"q":4,"c":5,"e":5,"o":5,"C":5,"G":5,"O":5,"Q":5,"s":4,"z":5}},"G":{"d":"153,4v-79,0,-129,-57,-129,-130v0,-69,51,-130,127,-130v42,0,69,12,94,33r-19,22v-19,-17,-40,-29,-76,-29v-56,0,-96,47,-96,104v0,60,39,105,100,105v29,0,55,-11,72,-25r0,-63r-76,0r0,-26r104,0r0,101v-23,21,-59,38,-101,38","w":282,"k":{"V":8,"X":4,"\\":5,"?":4,"v":2,"T":6,"W":6,"Y":11,"y":2,"a":-4}},"H":{"d":"36,0r0,-252r28,0r0,112r146,0r0,-112r28,0r0,252r-28,0r0,-113r-146,0r0,113r-28,0","w":273},"I":{"d":"38,0r0,-252r29,0r0,252r-29,0","w":104},"J":{"d":"167,-84v11,99,-124,112,-156,43r21,-18v25,51,107,51,107,-24r0,-169r28,0r0,168","w":199,"k":{"J":7,"A":9,".":5,",":5}},"K":{"d":"36,0r0,-252r28,0r0,150r145,-150r37,0r-108,110r112,142r-35,0r-97,-122r-54,54r0,68r-28,0","w":258,"k":{"V":11,"v":22,"&":3,"T":4,"W":11,"Y":13,"w":18,"y":18,"A":2,"a":4,"d":9,"g":9,"q":9,"c":11,"e":11,"o":11,"C":18,"G":18,"O":18,"Q":18,"f":7,"t":9,"u":7,"S":4,"-":18,"U":5}},"L":{"d":"36,0r0,-252r28,0r0,226r142,0r0,26r-170,0","w":222,"k":{"V":41,"*":29,"\\":43,"?":22,"v":22,"&":3,"T":36,"W":36,"Y":47,"w":18,"y":22,"d":2,"g":2,"q":2,"c":4,"e":4,"o":4,"C":14,"G":14,"O":14,"Q":14,"f":7,"t":7,"-":14,"U":7}},"M":{"d":"36,0r0,-252r28,0r92,138r92,-138r29,0r0,252r-29,0r0,-204r-91,135r-2,0r-92,-135r0,204r-27,0","w":312},"N":{"d":"36,0r0,-252r26,0r159,202r0,-202r28,0r0,252r-23,0r-163,-207r0,207r-27,0","w":284},"O":{"d":"153,4v-77,0,-129,-60,-129,-130v0,-69,52,-130,129,-130v77,0,129,60,129,130v0,69,-52,130,-129,130xm153,-22v58,0,99,-46,99,-104v0,-57,-41,-104,-99,-104v-58,0,-99,46,-99,104v0,57,41,104,99,104","w":306,"k":{"V":15,"X":18,"\\":14,"?":7,"x":2,"J":11,"}":7,"]":7,")":11,"\/":14,"T":17,"W":13,"Y":22,"A":15,"Z":14,".":14,",":14,"S":2}},"P":{"d":"36,0r0,-252r94,0v57,0,94,30,94,81v-1,76,-77,88,-160,82r0,89r-28,0xm64,-115v62,3,131,1,131,-56v0,-59,-69,-57,-131,-55r0,111","w":240,"k":{"\/":22,"&":5,"v":-4,"X":11,"V":4,"J":36,"W":2,"Y":4,"w":-4,"y":-4,"A":25,"Z":5,".":36,",":36,"a":4,"c":2,"e":2,"o":2,"f":-5,"t":-5,"u":-2}},"Q":{"d":"265,8r-33,-31v-21,17,-48,27,-79,27v-77,0,-129,-60,-129,-130v0,-69,52,-130,129,-130v114,0,167,136,98,215r34,27xm54,-127v0,82,93,135,157,86r-46,-40r19,-21r46,42v51,-62,8,-170,-77,-170v-58,0,-99,46,-99,103","w":306,"k":{")":4,"?":7,"V":15,"T":17,"W":13,"Y":23}},"R":{"d":"36,-252v90,0,200,-15,199,76v0,42,-28,66,-68,73r77,103r-35,0r-73,-98r-72,0r0,98r-28,0r0,-252xm64,-123v63,1,142,8,142,-53v0,-58,-81,-51,-142,-50r0,103","w":260,"k":{"V":7,"J":2,"T":3,"W":5,"Y":9,"d":2,"g":2,"q":2,"c":4,"e":4,"o":4,"f":-4,"t":-4}},"S":{"d":"208,-68v-2,89,-141,89,-189,31r18,-21v26,24,51,36,86,36v34,0,56,-18,56,-44v0,-23,-12,-35,-65,-47v-58,-13,-85,-32,-85,-74v0,-78,126,-88,172,-38r-17,22v-34,-36,-126,-39,-126,14v0,24,13,37,68,49v56,12,82,33,82,72","w":230,"k":{"V":11,"X":9,"\\":7,"?":4,"v":5,"x":5,"T":5,"W":9,"Y":11,"w":4,"y":5,"A":5,"Z":4,"z":2,"f":2,"t":2,"S":4}},"T":{"d":"102,0r0,-226r-84,0r0,-26r198,0r0,26r-85,0r0,226r-29,0","w":233,"k":{"v":31,"x":31,"J":40,"\/":32,"&":23,"j":12,"w":30,"y":31,"A":32,"Z":6,".":36,",":36,"a":46,"d":42,"g":42,"q":42,"c":46,"e":46,"o":46,"C":17,"G":17,"O":17,"Q":17,"s":39,"z":37,"f":16,"t":15,"u":31,"S":5,":":14,";":14,"-":32,"b":6,"h":6,"k":6,"l":6,"m":32,"n":32,"p":32,"r":32,"i":12}},"U":{"d":"136,4v-62,0,-104,-38,-104,-109r0,-147r28,0r0,145v0,54,29,85,77,85v46,0,76,-28,76,-83r0,-147r29,0r0,144v0,73,-43,112,-106,112","w":273,"k":{"X":4,"x":2,"J":7,"\/":5,"A":9,".":5,",":5}},"V":{"d":"122,2r-108,-254r32,0r89,217r90,-217r31,0r-108,254r-26,0","w":270,"k":{"\/":43,"&":18,"x":18,"v":14,"j":7,"X":7,"V":4,"J":43,"W":4,"Y":7,"w":13,"y":14,"A":36,"Z":4,".":43,",":43,"a":25,"d":23,"g":23,"q":23,"c":25,"e":25,"o":25,"C":15,"G":15,"O":15,"Q":15,"s":22,"z":20,"f":9,"t":7,"u":14,"S":9,":":7,";":7,"-":14,"b":4,"h":4,"k":4,"l":4,"m":14,"n":14,"p":14,"r":14,"i":7}},"W":{"d":"106,2r-90,-254r31,0r72,210r69,-211r24,0r69,211r72,-210r30,0r-90,254r-24,0r-70,-205r-69,205r-24,0","w":398,"k":{"V":4,"X":5,"v":13,"x":14,"J":38,"\/":36,"&":15,"j":5,"W":4,"Y":7,"w":13,"y":13,"A":32,"Z":4,".":36,",":36,"a":25,"d":22,"g":22,"q":22,"c":23,"e":23,"o":23,"C":13,"G":13,"O":13,"Q":13,"s":22,"z":20,"f":11,"t":9,"u":13,"S":7,":":5,";":5,"-":13,"b":4,"h":4,"k":4,"l":4,"m":13,"n":13,"p":13,"r":13,"i":5}},"X":{"d":"17,0r96,-129r-93,-123r34,0r77,103r77,-103r33,0r-93,123r96,129r-33,0r-81,-108r-81,108r-32,0","w":261,"k":{"?":5,"&":4,"v":18,"j":4,"V":7,"J":4,"W":5,"Y":8,"w":14,"y":14,"A":2,"a":4,"d":14,"g":14,"q":14,"c":16,"e":16,"o":16,"C":18,"G":18,"O":18,"Q":18,"f":7,"t":7,"u":7,"S":11,"-":18,"b":4,"h":4,"k":4,"l":4,"i":4,"U":4}},"Y":{"d":"114,0r0,-100r-104,-152r34,0r85,126r86,-126r33,0r-105,152r0,100r-29,0","w":257,"k":{"V":7,"X":8,"v":22,"x":25,"J":47,"\/":40,"&":24,"j":7,"W":7,"Y":2,"w":20,"y":22,"A":40,"Z":4,".":47,",":47,"a":36,"d":38,"g":38,"q":38,"c":40,"e":40,"o":40,"C":22,"G":22,"O":22,"Q":22,"s":36,"z":29,"f":14,"t":11,"u":27,"S":13,":":14,";":14,"-":29,"b":4,"h":4,"k":4,"l":4,"m":27,"n":27,"p":27,"r":27,"i":7}},"Z":{"d":"24,0r0,-19r163,-207r-157,0r0,-26r196,0r0,19r-163,207r163,0r0,26r-202,0","w":249,"k":{"v":7,"&":4,"w":5,"y":5,"Z":4,"d":7,"g":7,"q":7,"c":9,"e":9,"o":9,"C":14,"G":14,"O":14,"Q":14,"f":4,"S":4,"-":11}},"a":{"d":"33,-173v56,-30,148,-19,148,59r0,114r-28,0r0,-28v-24,45,-136,45,-136,-27v0,-61,84,-71,136,-53v8,-62,-71,-66,-111,-42xm45,-55v8,60,113,40,109,-13r0,-18v-32,-13,-115,-13,-109,31","w":208,"k":{"*":5,"\\":27,"?":13,"v":7,"w":7,"y":7,"t":2}},"b":{"d":"219,-94v0,101,-121,127,-160,58r0,36r-28,0r0,-263r28,0r0,114v38,-69,160,-46,160,55xm125,-21v36,0,65,-27,65,-72v0,-44,-30,-72,-65,-72v-35,0,-67,29,-67,72v0,43,32,72,67,72","k":{"*":5,"\\":25,"?":13,"v":9,"x":11,"}":5,"]":7,")":11,"w":7,"y":9,".":4,",":4,"z":5}},"c":{"d":"115,4v-54,0,-96,-44,-96,-97v0,-53,42,-97,96,-97v35,0,57,15,74,33r-18,19v-36,-49,-123,-27,-123,45v0,69,88,95,125,45r18,16v-19,21,-41,36,-76,36","w":205,"k":{"\\":14,"?":5,"v":2,"x":4,")":5,"w":2,"y":2,"d":4,"g":4,"q":4,"c":5,"e":5,"o":5}},"d":{"d":"180,-37v-39,69,-160,45,-160,-56v0,-100,121,-126,160,-57r0,-113r28,0r0,263r-28,0r0,-37xm114,-21v35,0,67,-29,67,-73v0,-43,-32,-71,-67,-71v-36,0,-65,26,-65,72v0,44,30,72,65,72"},"e":{"d":"48,-82v4,67,89,79,124,36r17,15v-49,64,-170,35,-170,-62v0,-54,39,-97,90,-97v58,1,89,47,86,108r-147,0xm48,-104r119,0v-3,-34,-22,-63,-59,-63v-32,0,-56,27,-60,63","w":213,"k":{"*":7,"\\":29,"?":14,"v":9,"x":11,"}":4,"]":7,")":11,"w":9,"y":9,".":4,",":4,"z":5}},"f":{"d":"41,-186v-8,-60,32,-90,87,-74r0,25v-37,-15,-66,2,-59,50r59,0r0,23r-59,0r0,162r-28,0r0,-162r-25,0r0,-24r25,0","w":132,"k":{"*":-11,"\\":-11,"?":-13,"}":-11,"]":-7,")":-11,"\/":16,".":16,",":16,"a":5,"d":4,"g":4,"q":4,"c":4,"e":4,"o":4,"z":4}},"g":{"d":"208,-32v5,96,-116,111,-179,64r12,-21v53,43,157,30,140,-65v-37,66,-161,45,-161,-48v0,-91,122,-114,160,-51r0,-33r28,0r0,154xm113,-39v35,0,68,-26,68,-64v0,-38,-33,-63,-68,-63v-35,0,-64,25,-64,64v0,37,29,63,64,63","k":{"\\":18}},"h":{"d":"31,0r0,-263r28,0r0,109v12,-20,31,-36,63,-36v45,0,72,30,72,74r0,116r-28,0v-4,-67,21,-165,-52,-165v-32,0,-55,23,-55,58r0,107r-28,0","w":221,"k":{"*":5,"\\":27,"?":11,"v":7,"w":5,"y":5}},"i":{"d":"32,-227r0,-30r31,0r0,30r-31,0xm33,0r0,-186r28,0r0,186r-28,0","w":94},"j":{"d":"32,-227r0,-30r31,0r0,30r-31,0xm61,11v1,40,-26,54,-62,46r0,-23v20,4,34,-1,34,-24r0,-196r28,0r0,197","w":94},"k":{"d":"31,0r0,-263r28,0r0,182r100,-105r35,0r-78,80r80,106r-33,0r-67,-87r-37,38r0,49r-28,0","w":204,"k":{"\\":14,"v":7,"w":7,"y":5,"a":4,"d":9,"g":9,"q":9,"c":9,"e":9,"o":9,"t":4,"u":4,"-":7}},"l":{"d":"33,0r0,-263r28,0r0,263r-28,0","w":94},"m":{"d":"31,0r0,-186r28,0r0,31v12,-18,29,-35,60,-35v30,0,50,16,60,37v13,-21,33,-37,65,-37v43,0,69,29,69,75r0,115r-28,0v-4,-65,20,-167,-48,-165v-28,0,-51,21,-51,58r0,107r-28,0v-4,-64,20,-165,-47,-165v-68,0,-50,97,-52,165r-28,0","w":342,"k":{"*":5,"\\":27,"?":11,"v":7,"w":5,"y":5}},"n":{"d":"31,0r0,-186r28,0r0,32v12,-20,31,-36,63,-36v45,0,72,30,72,74r0,116r-28,0v-4,-67,21,-165,-52,-165v-32,0,-55,23,-55,58r0,107r-28,0","w":221,"k":{"*":5,"\\":27,"?":11,"v":7,"w":5,"y":5}},"o":{"d":"116,4v-56,0,-97,-43,-97,-97v0,-53,42,-97,98,-97v56,0,96,43,96,97v0,53,-41,97,-97,97xm117,-21v40,0,68,-32,68,-72v0,-40,-30,-73,-69,-73v-40,0,-68,33,-68,73v0,40,30,72,69,72","w":232,"k":{"*":7,"\\":29,"?":18,"v":11,"x":13,"}":5,"]":7,")":11,"w":9,"y":11,".":7,",":7,"z":7}},"p":{"d":"31,58r0,-244r28,0r0,37v38,-69,160,-46,160,56v0,100,-121,126,-160,57r0,94r-28,0xm125,-21v36,0,65,-27,65,-72v0,-44,-30,-72,-65,-72v-35,0,-67,29,-67,72v0,43,32,72,67,72","k":{"*":5,"\\":25,"?":13,"v":9,"x":11,"}":5,"]":7,")":11,"w":7,"y":9,".":4,",":4,"z":5}},"q":{"d":"180,58r0,-95v-39,69,-160,45,-160,-56v0,-100,121,-126,160,-57r0,-36r28,0r0,244r-28,0xm114,-21v35,0,67,-29,67,-73v0,-43,-32,-71,-67,-71v-36,0,-65,26,-65,72v0,44,30,72,65,72","k":{"\\":18}},"r":{"d":"31,0r0,-186r28,0r0,48v14,-31,41,-52,76,-51r0,30v-44,-1,-75,28,-76,85r0,74r-28,0","w":145,"k":{"*":-7,"\\":11,"\/":27,".":32,",":32,"a":9,"d":8,"g":8,"q":8,"c":8,"e":8,"o":8,"z":4}},"s":{"d":"51,-139v7,44,111,27,108,87v-4,70,-104,67,-144,28r15,-20v20,15,42,24,64,24v22,0,40,-11,38,-30v-5,-46,-108,-25,-108,-86v0,-60,90,-65,131,-33r-13,21v-26,-21,-87,-29,-91,9","w":179,"k":{"\\":27,"?":13,"v":7,"x":9,"}":4,"]":5,")":7,"w":5,"y":5,"s":4,"z":4,"t":4}},"t":{"d":"127,-5v-36,17,-86,9,-86,-44r0,-113r-26,0r0,-24r26,0r0,-56r27,0r0,56r59,0r0,24r-59,0r0,109v-1,34,34,36,59,25r0,23","w":145,"k":{"\\":14,"d":5,"g":5,"q":5,"c":5,"e":5,"o":5}},"u":{"d":"99,4v-45,0,-71,-31,-71,-75r0,-115r28,0v4,67,-21,167,51,165v32,0,56,-24,56,-59r0,-106r27,0r0,186r-27,0r0,-32v-13,20,-32,36,-64,36","w":221,"k":{"\\":18}},"v":{"d":"93,1r-80,-187r30,0r63,154r63,-154r30,0r-81,187r-25,0","w":211,"k":{"}":4,"]":7,"\\":18,"\/":25,"?":4,"x":4,"v":5,"w":5,"y":5,".":31,",":31,"a":9,"d":9,"g":9,"q":9,"c":11,"e":11,"o":11,"s":7,"z":2,"-":5}},"w":{"d":"80,1r-65,-187r30,0r49,149r50,-150r23,0r50,150r49,-149r29,0r-66,187r-24,0r-50,-146r-50,146r-25,0","w":309,"k":{"\\":18,"?":4,"v":5,"x":4,"}":4,"]":7,"\/":22,"w":4,"y":4,".":25,",":25,"a":7,"d":7,"g":7,"q":7,"c":9,"e":9,"o":9,"s":5,"z":2,"-":4}},"x":{"d":"14,0r73,-95r-70,-91r32,0r55,72r55,-72r31,0r-71,91r74,95r-32,0r-58,-76r-58,76r-31,0","w":206,"k":{"}":4,"]":4,"\\":18,"?":5,"v":4,"w":4,"y":4,"a":5,"d":11,"g":11,"q":11,"c":13,"e":13,"o":13,"s":7,"-":11}},"y":{"d":"122,6v-21,55,-55,63,-102,43r10,-22v30,13,54,10,67,-28r-85,-185r31,0r68,155r59,-155r30,0","w":212,"k":{"\\":18,"?":4,"v":5,"x":4,"}":4,"]":7,"\/":25,"w":4,"y":4,".":31,",":31,"a":9,"d":9,"g":9,"q":9,"c":11,"e":11,"o":11,"s":7,"z":2,"-":5}},"z":{"d":"20,0r0,-18r124,-145r-120,0r0,-23r157,0r0,18r-123,145r123,0r0,23r-161,0","w":200,"k":{"\\":16,"d":5,"g":5,"q":5,"c":5,"e":5,"o":5}},"0":{"d":"129,4v-65,0,-107,-58,-107,-130v0,-71,42,-130,107,-130v65,0,106,58,106,130v0,71,-41,130,-106,130xm129,-22v47,0,77,-48,77,-104v0,-55,-30,-104,-77,-104v-47,0,-77,48,-77,104v0,55,30,104,77,104","w":257,"k":{"\/":13,"7":10,"3":4,"2":4,"1":2,".":7,",":7}},"1":{"d":"64,0r0,-224r-47,14r-7,-23v28,-7,47,-23,83,-21r0,254r-29,0","w":128},"2":{"d":"17,0r0,-22v41,-42,144,-102,144,-160v0,-30,-23,-48,-50,-48v-29,0,-48,15,-68,43r-21,-15v23,-34,47,-54,91,-54v45,0,78,31,78,72v0,60,-91,116,-131,158r133,0r0,26r-176,0","w":215,"k":{"7":4,"4":9}},"3":{"d":"112,4v-42,0,-73,-18,-94,-45r21,-18v27,47,125,54,128,-12v1,-36,-39,-52,-86,-49r-6,-17r79,-89r-123,0r0,-26r161,0r0,21r-79,88v44,4,83,25,83,71v0,45,-37,76,-84,76","w":220,"k":{"\/":4,"9":2,"7":9,"5":2}},"4":{"d":"156,0r0,-60r-133,0r-8,-20r143,-174r25,0r0,170r39,0r0,24r-39,0r0,60r-27,0xm50,-84r106,0r0,-129","w":241,"k":{"\/":7,"9":4,"7":13,"1":7}},"5":{"d":"109,4v-36,0,-67,-17,-90,-40r19,-20v36,47,129,47,132,-22v3,-53,-77,-66,-115,-39r-19,-12r7,-123r145,0r0,26r-120,0r-6,81v56,-27,137,-1,137,67v0,49,-37,82,-90,82","w":220,"k":{"\/":7,"9":2,"7":11,"3":2,"2":4}},"6":{"d":"120,4v-70,0,-97,-42,-98,-124v0,-77,39,-136,105,-136v30,0,52,10,74,28r-16,22v-62,-55,-139,-10,-134,87v14,-20,35,-39,72,-39v47,0,87,31,87,78v0,49,-39,84,-90,84xm120,-21v37,0,61,-25,61,-58v0,-31,-25,-54,-61,-54v-38,0,-63,27,-63,56v0,32,26,56,63,56","w":232,"k":{"\/":4,"9":4,"7":8,"3":4,"1":6}},"7":{"d":"49,0r114,-226r-139,0r0,-26r171,0r0,21r-114,231r-32,0","w":214,"k":{"\/":50,"9":5,"8":4,"6":7,"5":9,"4":31,"3":7,"2":5,"1":-4,"0":7,".":36,",":36,"-":11}},"8":{"d":"113,4v-54,0,-94,-30,-94,-72v0,-30,22,-51,52,-62v-23,-11,-44,-29,-44,-59v0,-39,40,-67,86,-67v46,0,87,28,86,68v0,29,-20,47,-43,58v30,11,52,31,52,62v0,43,-41,72,-95,72xm113,-140v32,0,58,-19,58,-47v0,-25,-25,-44,-58,-44v-33,0,-57,19,-57,45v0,27,25,46,57,46xm113,-21v41,0,66,-21,66,-48v0,-28,-29,-48,-66,-48v-37,0,-65,20,-65,49v0,26,24,47,65,47","w":226,"k":{"9":2,"7":4}},"9":{"d":"113,-256v70,0,98,42,98,124v0,80,-43,136,-105,136v-33,0,-57,-13,-78,-31r17,-22v62,59,141,15,137,-83v-14,22,-36,40,-71,40v-52,0,-88,-33,-88,-79v0,-48,36,-85,90,-85xm114,-116v39,0,62,-28,62,-58v0,-32,-26,-57,-64,-57v-38,0,-60,28,-60,60v0,32,25,55,62,55","w":232,"k":{"\/":9,"7":8,"5":2,"3":4,"2":4,".":4,",":4}},".":{"d":"28,0r0,-38r33,0r0,38r-33,0","w":88,"k":{"V":43,"v":31,"j":-5,"1":18,"7":7,"0":7,"T":36,"W":36,"Y":47,"w":25,"y":22,"d":4,"g":4,"q":4,"c":7,"e":7,"o":7,"C":14,"G":14,"O":14,"Q":14,"f":5,"t":9,"U":5}},",":{"d":"21,44r-4,-13v18,-6,25,-16,24,-31r-13,0r0,-38r33,0v2,44,-1,76,-40,82","w":88,"k":{"y":22,"V":43,"v":31,"j":-5,"1":18,"7":7,"0":7,"T":36,"W":36,"Y":47,"w":25,"d":4,"g":4,"q":4,"c":7,"e":7,"o":7,"C":14,"G":14,"O":14,"Q":14,"f":5,"t":9,"U":5}},":":{"d":"30,-148r0,-38r33,0r0,38r-33,0xm30,0r0,-38r33,0r0,38r-33,0","w":91,"k":{"V":7,"T":14,"W":5,"Y":14}},";":{"d":"30,-148r0,-38r33,0r0,38r-33,0xm23,44r-5,-13v18,-6,25,-16,24,-31r-12,0r0,-38r33,0v2,44,-1,76,-40,82","w":91,"k":{"V":7,"T":14,"W":5,"Y":14}},"&":{"d":"217,5r-39,-41v-41,60,-163,52,-162,-32v0,-33,22,-57,61,-72v-44,-42,-28,-115,41,-116v35,0,62,26,62,57v0,32,-23,53,-60,66r58,58v11,-16,21,-35,30,-56r23,11v-11,24,-22,45,-36,63r44,45xm104,-149v32,-11,49,-26,49,-49v0,-20,-15,-35,-36,-35v-48,0,-49,53,-13,84xm45,-69v1,59,88,60,116,16r-68,-70v-33,12,-48,33,-48,54","w":250,"k":{"V":21,"T":28,"W":18,"Y":24,"S":3}},"!":{"d":"41,-71r-8,-181r32,0r-8,181r-16,0xm32,0r0,-38r34,0r0,38r-34,0","w":97},"?":{"d":"74,-130v45,-4,73,-20,73,-53v0,-26,-20,-47,-52,-47v-27,0,-48,13,-66,34r-18,-17v21,-25,45,-42,84,-42v49,0,81,30,81,72v0,45,-34,67,-75,73r-3,39r-19,0xm72,0r0,-38r33,0r0,38r-33,0","w":193},"-":{"d":"23,-94r0,-29r100,0r0,29r-100,0","w":146,"k":{"V":14,"X":18,"v":5,"x":11,"1":11,"7":14,"3":4,"T":32,"W":13,"Y":29,"w":4,"y":5,"A":14,"Z":11,"z":4}},"_":{"d":"-1,58r0,-23r218,0r0,23r-218,0","w":216},"\/":{"d":"-8,46r167,-333r26,0r-167,333r-26,0","w":182,"k":{"\/":60,"9":7,"8":5,"7":4,"6":13,"5":7,"4":34,"3":4,"2":7,"1":-4,"0":13,"x":18,"v":18,"J":47,"w":18,"y":18,"A":43,"Z":7,"a":23,"d":25,"g":25,"q":25,"c":29,"e":29,"o":29,"C":14,"G":14,"O":14,"Q":14,"s":31,"z":22,"f":9,"t":7,"u":18,"S":11,"m":18,"n":18,"p":18,"r":18}},"\\":{"d":"165,46r-167,-333r25,0r167,333r-25,0","w":182,"k":{"v":25,"j":-11,"V":43,"T":32,"W":36,"Y":40,"w":22,"y":22,"C":14,"G":14,"O":14,"Q":14,"f":4,"t":11,"U":5}},"|":{"d":"43,46r0,-333r23,0r0,333r-23,0","w":109},"(":{"d":"124,51v-132,-65,-132,-244,0,-308r12,18v-110,62,-111,210,0,271","w":156,"k":{"j":-11,"g":11,"J":5,"d":11,"q":11,"c":11,"e":11,"o":11,"C":11,"G":11,"O":11,"Q":11,"s":5}},")":{"d":"32,51r-12,-19v112,-62,111,-209,0,-271r12,-18v132,65,132,244,0,308","w":156},"[":{"d":"34,47r0,-299r103,0r0,22r-77,0r0,255r77,0r0,22r-103,0","w":158,"k":{"x":4,"v":7,"j":-11,"J":4,"w":7,"y":4,"a":4,"d":7,"g":7,"q":7,"c":7,"e":7,"o":7,"C":7,"G":7,"O":7,"Q":7,"s":5}},"]":{"d":"21,47r0,-22r77,0r0,-255r-77,0r0,-22r103,0r0,299r-103,0","w":158},"{":{"d":"150,51v-77,-17,-80,-38,-78,-100v1,-32,-15,-47,-52,-44r0,-21v49,5,52,-24,52,-71v0,-37,13,-60,78,-72r4,18v-62,16,-56,32,-56,85v0,30,-14,44,-37,51v33,8,37,35,37,77v0,32,6,45,56,58","w":173,"k":{"x":4,"v":4,"j":-13,"g":5,"J":4,"w":4,"y":4,"d":5,"q":5,"c":5,"e":5,"o":5,"C":7,"G":7,"O":7,"Q":7,"s":4,"z":4}},"}":{"d":"24,51r-5,-19v63,-16,57,-32,57,-85v0,-30,14,-43,37,-50v-33,-8,-37,-36,-37,-78v0,-32,-6,-45,-57,-58r5,-18v78,17,80,38,78,100v-1,31,15,45,51,43r0,21v-48,-4,-51,25,-51,71v0,37,-13,61,-78,73","w":173},"@":{"d":"180,58v-92,0,-161,-71,-161,-157v0,-86,70,-157,158,-157v88,0,157,67,157,142v0,61,-35,88,-68,88v-26,0,-43,-12,-50,-30v-30,48,-124,36,-124,-35v0,-77,101,-121,136,-60r5,-25r24,4v-5,33,-17,68,-17,103v0,18,11,29,30,29v26,0,51,-23,51,-74v0,-66,-62,-130,-144,-130v-83,0,-145,65,-145,145v0,80,62,145,148,145v36,0,61,-8,89,-24r6,9v-28,17,-58,27,-95,27xm162,-48v58,0,87,-108,15,-110v-30,0,-59,28,-59,65v0,28,18,45,44,45","w":352},"*":{"d":"68,-143r4,-45r-37,26r-10,-17r42,-19r-42,-19r10,-17r37,26r-4,-45r19,0r-4,45r37,-26r10,17r-42,19r42,19r-10,17r-37,-26r4,45r-19,0","w":154,"k":{"J":29,"A":36,"a":4,"d":5,"g":5,"q":5,"c":7,"e":7,"o":7,"s":4,"t":-4}},"$":{"d":"105,35r0,-36v-32,-3,-60,-15,-85,-37r16,-21v22,19,43,31,70,34r0,-90v-53,-13,-76,-33,-76,-71v0,-37,31,-64,75,-66r0,-21r23,0r0,22v27,3,48,13,69,29r-16,21v-17,-15,-35,-23,-54,-26r0,89v55,13,78,34,78,70v0,39,-32,65,-77,68r0,35r-23,0xm106,-143r0,-85v-30,1,-49,18,-49,41v0,20,9,34,49,44xm127,-24v31,-1,50,-19,50,-43v0,-21,-10,-33,-50,-43r0,86","w":228,"k":{"7":4}},"#":{"d":"45,0r10,-64r-39,0r0,-25r44,0r13,-76r-43,0r0,-25r47,0r11,-62r25,0r-10,62r68,0r11,-62r25,0r-10,62r38,0r0,25r-43,0r-13,76r42,0r0,25r-46,0r-11,64r-25,0r10,-64r-68,0r-11,64r-25,0xm85,-89r69,0r13,-76r-69,0","w":252},"%":{"d":"76,-126v-34,0,-57,-30,-57,-64v0,-34,22,-65,57,-65v34,0,57,30,57,65v0,34,-23,64,-57,64xm45,0r185,-252r25,0r-184,252r-26,0xm224,3v-34,0,-57,-30,-57,-65v0,-34,24,-64,58,-64v34,0,56,30,56,64v0,34,-22,65,-57,65xm76,-146v19,0,33,-20,33,-44v0,-25,-15,-45,-33,-45v-20,0,-33,20,-33,45v0,25,14,44,33,44xm225,-17v20,0,32,-20,32,-45v0,-25,-14,-44,-33,-44v-19,0,-33,20,-33,44v0,25,15,45,34,45","w":300},"\"":{"d":"94,-154r11,-98v10,2,27,-3,33,2r-29,96r-15,0xm23,-154r11,-98v10,2,27,-3,34,2r-29,96r-16,0","w":158},"'":{"d":"23,-154r11,-98v10,2,27,-3,34,2r-29,96r-16,0","w":88},"+":{"d":"99,-40r0,-74r-75,0r0,-26r75,0r0,-74r27,0r0,74r75,0r0,26r-75,0r0,74r-27,0","w":225},"=":{"d":"29,-156r0,-26r167,0r0,26r-167,0xm29,-71r0,-27r167,0r0,27r-167,0","w":225},"<":{"d":"192,-31r-169,-84r0,-24r169,-83r0,27r-139,68r139,68r0,28","w":225},">":{"d":"33,-31r0,-28r139,-67r-139,-68r0,-28r169,83r0,24","w":225},"^":{"d":"23,-177r56,-76r22,0r56,76r-25,0r-42,-56r-43,56r-24,0","w":180},"~":{"d":"43,-85r-17,-5v9,-56,50,-34,83,-23v9,0,13,-5,18,-18r17,4v-8,55,-50,34,-82,24v-9,0,-14,5,-19,18","w":170},"`":{"d":"93,-214r-41,-39r29,-13r33,52r-21,0","w":180},"\u00a0":{"w":108}}});
