/*================================ 
 Cleveland Vibrator
 
 Last Updated By: Ryan Perry
 Last Updated:01/11/2012
================================*/

/*================================================
 Browser Detection
================================================*/
/* jQBrowser v0.2 - Extend jQuery's browser detection capabilities
 *  http://davecardwell.co.uk/javascript/jquery/plugins/jquery-browserdetect/0.2/
*
* Copyright (c) 2006 Dave Cardwell, dual licensed under the MIT and GPL licenses:
 *   * http://www.opensource.org/licenses/mit-license.php
 *   * http://www.gnu.org/licenses/gpl.txt
*/
(function(){var BrowserDetect={init:function(){this.browser=this.searchString(this.dataBrowser)||"An unknown browser";this.version=this.searchVersion(navigator.userAgent)||this.searchVersion(navigator.appVersion)||"an unknown version";this.OS=this.searchString(this.dataOS)||"an unknown OS";},searchString:function(data){for(var i=0;i<data.length;i++){var dataString=data[i].string;var dataProp=data[i].prop;this.versionSearchString=data[i].versionSearch||data[i].identity;if(dataString){if(dataString.indexOf(data[i].subString)!=-1)
return data[i].identity;}
else if(dataProp)
return data[i].identity;}},searchVersion:function(dataString){var index=dataString.indexOf(this.versionSearchString);if(index==-1)return;return parseFloat(dataString.substring(index+this.versionSearchString.length+1));},dataBrowser:[{string:navigator.userAgent,subString:"Chrome",identity:"Chrome"},{string:navigator.userAgent,subString:"OmniWeb",versionSearch:"OmniWeb/",identity:"OmniWeb"},{string:navigator.vendor,subString:"Apple",identity:"Safari",versionSearch:"Version"},{prop:window.opera,identity:"Opera"},{string:navigator.vendor,subString:"iCab",identity:"iCab"},{string:navigator.vendor,subString:"KDE",identity:"Konqueror"},{string:navigator.userAgent,subString:"Firefox",identity:"Firefox"},{string:navigator.vendor,subString:"Camino",identity:"Camino"},{string:navigator.userAgent,subString:"Netscape",identity:"Netscape"},{string:navigator.userAgent,subString:"MSIE",identity:"Explorer",versionSearch:"MSIE"},{string:navigator.userAgent,subString:"Gecko",identity:"Mozilla",versionSearch:"rv"},{string:navigator.userAgent,subString:"Mozilla",identity:"Netscape",versionSearch:"Mozilla"}],dataOS:[{string:navigator.platform,subString:"Win",identity:"Windows"},{string:navigator.platform,subString:"Mac",identity:"Mac"},{string:navigator.userAgent,subString:"iPhone",identity:"iPhone/iPod"},{string:navigator.platform,subString:"Linux",identity:"Linux"}]};BrowserDetect.init();window.$.client={os:BrowserDetect.OS,browser:BrowserDetect.browser};})();


/*================================================
 Cycle Plugin
================================================*/
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.99 (12-MAR-2011)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.3.2 or later
 */
(function($){var ver="2.99";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){$.fn.cycle.debug&&log(s);}function log(){window.console&&console.log&&console.log("[cycle] "+Array.prototype.join.call(arguments," "));}$.expr[":"].paused=function(el){return el.cyclePause;};$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.backwards);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts.backwards);},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,!options.backwards);}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.backwards);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.cssAfter=opts.cssAfter||{};opts.cssFirst=opts.cssFirst||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);$($slides[first]).css(opts.cssFirst);if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="none"?0:opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length){opts.after[0].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$s.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=0;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){opts.busy=0;$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing("+fx+"); currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.backwards);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while(opts.fx!="none"&&(t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,1);};$.fn.cycle.prev=function(opts){advance(opts,0);};function advance(opts,moveForward){var val=moveForward?1:-1;var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,moveForward);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v&&v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();if(typeof opts.cssBefore.opacity=="undefined"){opts.cssBefore.opacity=1;}opts.cssBefore.display="block";if(opts.slideResize&&w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(opts.slideResize&&h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,function(){cb();});};$l.animate(opts.animOut,speedOut,easeOut,function(){$l.css(opts.cssAfter);if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={activePagerClass:"activeSlide",after:null,allowPagerClickBubble:false,animIn:null,animOut:null,autostop:0,autostopCount:0,backwards:false,before:null,cleartype:!$.support.opacity,cleartypeNoBg:false,containerResize:1,continuous:0,cssAfter:null,cssBefore:null,delay:0,easeIn:null,easeOut:null,easing:null,end:null,fastOnEvent:0,fit:0,fx:"fade",fxFn:null,height:"auto",manualTrump:true,next:null,nowrap:0,onPagerEvent:null,onPrevNextEvent:null,pager:null,pagerAnchorBuilder:null,pagerEvent:"click.cycle",pause:0,pauseOnPagerHover:0,prev:null,prevNextEvent:"click.cycle",random:0,randomizeEffects:1,requeueOnImageNotLoaded:true,requeueTimeout:250,rev:0,shuffle:null,slideExpr:null,slideResize:1,speed:1000,speedIn:null,speedOut:null,startingSlide:0,sync:1,timeout:4000,timeoutFn:null,updateActivePagerLink:null};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:	 2.73
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.fadeout=function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css({display:"block",opacity:1});opts.before.push(function(curr,next,opts,w,h,rev){$(curr).css("zIndex",opts.slideCount+(!rev===true?1:0));$(next).css("zIndex",opts.slideCount+(!rev===true?0:1));});opts.animIn.opacity=1;opts.animOut.opacity=0;opts.cssBefore.opacity=1;opts.cssBefore.display="block";opts.cssAfter.zIndex=0;};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore.top=h;opts.cssBefore.left=0;opts.cssFirst.top=0;opts.animIn.top=0;opts.animOut.top=-h;};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst.top=0;opts.cssBefore.top=-h;opts.cssBefore.left=0;opts.animIn.top=0;opts.animOut.top=h;};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst.left=0;opts.cssBefore.left=w;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.left=0-w;};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst.left=0;opts.cssBefore.left=-w;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.left=w;};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){if(opts.rev){fwd=!fwd;}$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst.left=0;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.top=0;};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){if(opts.rev){fwd=!fwd;}$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst.top=0;opts.cssBefore.left=0;opts.animIn.top=0;opts.animOut.left=0;};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore.left=0;opts.cssBefore.top=0;opts.cssBefore.width=0;opts.animIn.width="show";opts.animOut.width=0;};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore.left=0;opts.cssBefore.top=0;opts.cssBefore.height=0;opts.animIn.height="show";opts.animOut.height=0;};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){if(opts.rev){fwd=!fwd;}var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};$.extend(opts.cssBefore,{display:"block",opacity:1,top:0,left:0});};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;opts.animOut.width=next.cycleW;});opts.cssFirst.top=0;opts.cssBefore.left=0;opts.cssBefore.height=0;opts.animIn.top=0;opts.animOut.height=0;};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst.top=0;opts.cssBefore.left=0;opts.cssBefore.top=0;opts.cssBefore.height=0;opts.animOut.height=0;};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore.top=0;opts.cssBefore.width=0;opts.animIn.left=0;opts.animOut.width=0;};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});$.extend(opts.cssBefore,{top:0,left:0,width:0});opts.animIn.left=0;opts.animOut.width=0;};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;$.extend(opts.animIn,{top:0,left:0,width:next.cycleW,height:next.cycleH});$.extend(opts.animOut,{width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2});});opts.cssFirst.top=0;opts.cssFirst.left=0;opts.cssBefore.width=0;opts.cssBefore.height=0;};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;$.extend(opts.animIn,{top:0,left:0,width:next.cycleW,height:next.cycleH});});opts.cssBefore.width=0;opts.cssBefore.height=0;opts.animOut.opacity=0;};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore.left=w;opts.cssBefore.top=0;opts.animIn.left=0;opts.animOut.left=w;};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore.top=h;opts.cssBefore.left=0;opts.animIn.top=0;opts.animOut.top=h;};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore.top=h;opts.cssBefore.left=w;opts.animIn.top=0;opts.animIn.left=0;opts.animOut.top=h;opts.animOut.left=w;};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn.left=0;opts.animIn.width=this.cycleW;opts.animOut.left=0;});opts.cssBefore.top=0;opts.cssBefore.width=0;};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn.top=0;opts.animIn.height=this.cycleH;opts.animOut.top=0;});opts.cssBefore.height=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn.left=0;opts.animIn.width=this.cycleW;opts.animOut.left=curr.cycleW/2;opts.animOut.width=0;});opts.cssBefore.top=0;opts.cssBefore.width=0;};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn.top=0;opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH/2;opts.animOut.height=0;});opts.cssBefore.height=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn.left=0;opts.animIn.top=0;opts.cssBefore.top=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn.left=0;opts.animIn.top=0;opts.cssBefore.top=0;opts.cssBefore.left=0;};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){$.extend(opts.animOut,{left:w*2,top:-h/2,opacity:0});}else{opts.animOut.opacity=0;}});opts.cssBefore.left=0;opts.cssBefore.top=0;opts.animIn.left=0;};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});$.extend(opts.cssBefore,{display:"block",opacity:1,top:0,left:0});opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);


/*================================================
 Equal Column Height Plugin
================================================*/
function equalHeight(group) {var tallest = 0;group.each(function() {var thisHeight = $(this).height();if(thisHeight > tallest) {tallest = thisHeight;}});group.height(tallest);}


/*================================================
 Clear Default Input Values Plugin
================================================*/
(function($){$.fn.clearDefault=function(){return this.each(function(){var default_value=$(this).val();$(this).focus(function(){if($(this).val()==default_value)$(this).val("");});$(this).blur(function(){if($(this).val()=="")$(this).val(default_value);});});};})(jQuery);


/*================================================
 Stylish Select Plugin
================================================*/
/**
* Stylish Select 0.4.5 - jQuery plugin to replace a select drop down box with a stylable unordered list
* http://github.com/sko77sun/Stylish-Select
*
* Requires: jQuery 1.3 or newer
*
* Contributions from Justin Beasley: http://www.harvest.org/ Anatoly Ressin: http://www.artazor.lv/ Wilfred Hughes: https://github.com/Wilfred
*
* Dual licensed under the MIT and GPL licenses.
*/
(function(a){a("html").addClass("stylish-select");if(!Array.prototype.indexOf){Array.prototype.indexOf=function(d){if(this===void 0||this===null){throw new TypeError()}var e=Object(this);var b=e.length>>>0;if(b===0){return -1}var f=0;if(arguments.length>0){f=Number(arguments[1]);if(f!==f){f=0}else{if(f!==0&&f!==(1/0)&&f!==-(1/0)){f=(f>0||-1)*Math.floor(Math.abs(f))}}}if(f>=b){return -1}var c=f>=0?f:Math.max(b-Math.abs(f),0);for(;c<b;c++){if(c in e&&e[c]===d){return c}}return -1}}a.fn.extend({getSetSSValue:function(b){if(b){a(this).val(b).change();return this}else{return a(this).find(":selected").val()}},resetSS:function(){var b=a(this).data("ssOpts");$this=a(this);$this.next().remove();$this.unbind(".sSelect").sSelect(b)}});a.fn.sSelect=function(b){return this.each(function(){var l={defaultText:"Please select",animationSpeed:0,ddMaxHeight:"",containerClass:""};var o=a.extend(l,b),f=a(this),m=a('<div class="selectedTxt"></div>'),u=a('<div class="newListSelected '+o.containerClass+'"></div>'),k=a('<div class="SSContainerDivWrapper" style="visibility:hidden;"></div>'),C=a('<ul class="newList"></ul>'),w=-1,e=-1,j=-1,p=[],z=false,y=false,A;a(this).data("ssOpts",b);u.insertAfter(f);u.attr("tabindex",f.attr("tabindex")||"0");m.prependTo(u);C.appendTo(u);C.wrap(k);k=C.parent();f.hide();m.data("ssReRender",!m.is(":visible"));if(f.children("optgroup").length==0){f.children().each(function(E){var F=a(this).html();var D=a(this).val();p.push(F.charAt(0).toLowerCase());if(a(this).attr("selected")=="selected"||a(this).attr("selected")==true){o.defaultText=F;e=j=E}C.append(a('<li><a href="JavaScript:void(0);">'+F+"</a></li>").data("key",D))});A=C.children().children()}else{f.children("optgroup").each(function(){var D=a(this).attr("label"),F=a('<li class="newListOptionTitle">'+D+"</li>"),E=a("<ul></ul>");F.appendTo(C);E.appendTo(F);a(this).children().each(function(){++w;var H=a(this).html();var G=a(this).val();p.push(H.charAt(0).toLowerCase());if(a(this).attr("selected")=="selected"||a(this).attr("selected")==true){o.defaultText=H;e=j=w}E.append(a('<li><a href="JavaScript:void(0);">'+H+"</a></li>").data("key",G))})});A=C.find("ul li a")}var r=C.height(),q=u.height(),B=A.length;if(e!=-1){i(e)}else{m.text(o.defaultText)}function s(){var E=u.offset().top,D=a(window).height(),F=a(window).scrollTop();if(r>parseInt(o.ddMaxHeight)){r=parseInt(o.ddMaxHeight)}E=E-F;if(E+r>=D){C.css({height:r});k.css({top:"-"+r+"px",height:r});f.onTop=true}else{C.css({height:r});k.css({top:q+"px",height:r});f.onTop=false}}s();a(window).bind("resize.sSelect scroll.sSelect",s);function v(){u.css("position","relative")}function d(){u.css({position:"static"})}m.bind("click.sSelect",function(D){D.stopPropagation();if(a(this).data("ssReRender")){r=C.height("").height();k.height("");q=u.height();a(this).data("ssReRender",false);s()}a(".SSContainerDivWrapper").not(a(this).next()).hide().parent().css("position","static").removeClass("newListSelFocus");k.toggle();v();if(e==-1){e=0}A.eq(e).focus()});function c(E,D){if(E==true){j=e;f.change()}if(D==true){e=j;i(e)}k.hide();d()}A.bind("click.sSelect",function(E){var D=a(E.target);e=A.index(D);y=true;i(e,true);c()});A.bind("mouseenter.sSelect",function(E){var D=a(E.target);D.addClass("newListHover")}).bind("mouseleave.sSelect",function(E){var D=a(E.target);D.removeClass("newListHover")});function i(D,H){if(D==-1){m.text(o.defaultText);A.removeClass("hiLite")}else{A.removeClass("hiLite").eq(D).addClass("hiLite");var G=A.eq(D).text(),F=A.eq(D).parent().data("key");try{f.val(F)}catch(E){f[0].selectedIndex=D}m.text(G);if(H==true){j=D;f.change()}if(k.is(":visible")){A.eq(D).focus()}}}f.bind("change.sSelect",function(E){var D=a(E.target);if(y==true){y=false;return false}var F=D.find(":selected");e=D.find("option").index(F);i(e)});function t(D){a(D).unbind("keydown.sSelect").bind("keydown.sSelect",function(G){var F=G.which;y=true;switch(F){case 40:case 39:x();return false;break;case 38:case 37:n();return false;break;case 33:case 36:h();return false;break;case 34:case 35:g();return false;break;case 13:case 27:c(true);return false;break}keyPressed=String.fromCharCode(F).toLowerCase();var E=p.indexOf(keyPressed);if(typeof E!="undefined"){++e;e=p.indexOf(keyPressed,e);if(e==-1||e==null||z!=keyPressed){e=p.indexOf(keyPressed)}i(e);z=keyPressed;return false}})}function x(){if(e<(B-1)){++e;i(e)}}function n(){if(e>0){--e;i(e)}}function h(){e=0;i(e)}function g(){e=B-1;i(e)}u.bind("click.sSelect",function(D){D.stopPropagation();t(this)});u.bind("focus.sSelect",function(){a(this).addClass("newListSelFocus");t(this)});u.bind("blur.sSelect",function(){a(this).removeClass("newListSelFocus")});a(document).bind("click.sSelect",function(){u.removeClass("newListSelFocus");if(k.is(":visible")){c(false,true)}else{c(false)}});m.bind("mouseenter.sSelect",function(E){var D=a(E.target);D.parent().addClass("newListSelHover")}).bind("mouseleave.sSelect",function(E){var D=a(E.target);D.parent().removeClass("newListSelHover")});k.css({left:"0",display:"none",visibility:"visible"})})}})(jQuery);


/*================================================
 jQModal Plugin
================================================*/
/*jqModal - Minimalist Modaling with jQuery
 *   (http://dev.iceburg.net/jquery/jqModal/)
 *
 * Copyright (c) 2007,2008 Brice Burgess <bhb@iceburg.net>
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 * 
 * $Version: 03/01/2009 +r14
 */
(function($){$.fn.jqm=function(o){var p={overlay:50,overlayClass:'jqmOverlay',closeClass:'jqmClose',trigger:'.jqModal',ajax:F,ajaxText:'',target:F,modal:F,toTop:F,onShow:F,onHide:F,onLoad:F};return this.each(function(){if(this._jqm)return H[this._jqm].c=$.extend({},H[this._jqm].c,o);s++;this._jqm=s;H[s]={c:$.extend(p,$.jqm.params,o),a:F,w:$(this).addClass('jqmID'+s),s:s};if(p.trigger)$(this).jqmAddTrigger(p.trigger);});};$.fn.jqmAddClose=function(e){return hs(this,e,'jqmHide');};$.fn.jqmAddTrigger=function(e){return hs(this,e,'jqmShow');};$.fn.jqmShow=function(t){return this.each(function(){t=t||window.event;$.jqm.open(this._jqm,t);});};$.fn.jqmHide=function(t){return this.each(function(){t=t||window.event;$.jqm.close(this._jqm,t)});};$.jqm={hash:{},open:function(s,t){var h=H[s],c=h.c,cc='.'+c.closeClass,z=(parseInt(h.w.css('z-index'))),z=(z>0)?z:3000,o=$('<div></div>').css({height:'100%',width:'100%',position:'fixed',left:0,top:0,'z-index':z-1,opacity:c.overlay/100});if(h.a)return F;h.t=t;h.a=true;h.w.css('z-index',z);if(c.modal){if(!A[0])L('bind');A.push(s);}
else if(c.overlay>0)h.w.jqmAddClose(o);else o=F;h.o=(o)?o.addClass(c.overlayClass).prependTo('body'):F;if(ie6){$('html,body').css({height:'100%',width:'100%'});if(o){o=o.css({position:'absolute'})[0];for(var y in{Top:1,Left:1})o.style.setExpression(y.toLowerCase(),"(_=(document.documentElement.scroll"+y+" || document.body.scroll"+y+"))+'px'");}}
if(c.ajax){var r=c.target||h.w,u=c.ajax,r=(typeof r=='string')?$(r,h.w):$(r),u=(u.substr(0,1)=='@')?$(t).attr(u.substring(1)):u;r.html(c.ajaxText).load(u,function(){if(c.onLoad)c.onLoad.call(this,h);if(cc)h.w.jqmAddClose($(cc,h.w));e(h);});}
else if(cc)h.w.jqmAddClose($(cc,h.w));if(c.toTop&&h.o)h.w.before('<span id="jqmP'+h.w[0]._jqm+'"></span>').insertAfter(h.o);(c.onShow)?c.onShow(h):h.w.show();e(h);return F;},close:function(s){var h=H[s];if(!h.a)return F;h.a=F;if(A[0]){A.pop();if(!A[0])L('unbind');}
if(h.c.toTop&&h.o)$('#jqmP'+h.w[0]._jqm).after(h.w).remove();if(h.c.onHide)h.c.onHide(h);else{h.w.hide();if(h.o)h.o.remove();}return F;},params:{}};var s=0,H=$.jqm.hash,A=[],ie6=$.browser.msie&&($.browser.version=="6.0"),F=false,i=$('<iframe src="javascript:false;document.write(\'\');" class="jqm"></iframe>').css({opacity:0}),e=function(h){if(ie6)if(h.o)h.o.html('<p style="width:100%;height:100%"/>').prepend(i);else if(!$('iframe.jqm',h.w)[0])h.w.prepend(i);f(h);},f=function(h){try{$(':input:visible',h.w)[0].focus();}catch(_){}},L=function(t){$()[t]("keypress",m)[t]("keydown",m)[t]("mousedown",m);},m=function(e){var h=H[A[A.length-1]],r=(!$(e.target).parents('.jqmID'+h.s)[0]);if(r)f(h);return!r;},hs=function(w,t,c){return w.each(function(){var s=this._jqm;$(t).each(function(){if(!this[c]){this[c]=[];$(this).click(function(){for(var i in{jqmShow:1,jqmHide:1})for(var s in this[i])if(H[this[i][s]])H[this[i][s]].w[i](this);return F;});}this[c].push(s);});});};})(jQuery);


/*================================================
 jQuery Tools
================================================*/
/*!
 * jQuery Tools v1.2.5 - The missing UI library for the Web
 * 
 * overlay/overlay.js
 * scrollable/scrollable.js
 * tabs/tabs.js
 * tooltip/tooltip.js
 * 
 * NO COPYRIGHTS OR LICENSES. DO WHAT YOU LIKE.
 * 
 * http://flowplayer.org/tools/
 * 
 */
(function(a){a.tools=a.tools||{version:"v1.2.5"},a.tools.overlay={addEffect:function(a,b,d){c[a]=[b,d]},conf:{close:null,closeOnClick:!0,closeOnEsc:!0,closeSpeed:"fast",effect:"default",fixed:!a.browser.msie||a.browser.version>6,left:"center",load:!1,mask:null,oneInstance:!0,speed:"normal",target:null,top:"10%"}};var b=[],c={};a.tools.overlay.addEffect("default",function(b,c){var d=this.getConf(),e=a(window);d.fixed||(b.top+=e.scrollTop(),b.left+=e.scrollLeft()),b.position=d.fixed?"fixed":"absolute",this.getOverlay().css(b).fadeIn(d.speed,c)},function(a){this.getOverlay().fadeOut(this.getConf().closeSpeed,a)});function d(d,e){var f=this,g=d.add(f),h=a(window),i,j,k,l=a.tools.expose&&(e.mask||e.expose),m=Math.random().toString().slice(10);l&&(typeof l=="string"&&(l={color:l}),l.closeOnClick=l.closeOnEsc=!1);var n=e.target||d.attr("rel");j=n?a(n):null||d;if(!j.length)throw"Could not find Overlay: "+n;d&&d.index(j)==-1&&d.click(function(a){f.load(a);return a.preventDefault()}),a.extend(f,{load:function(d){if(f.isOpened())return f;var i=c[e.effect];if(!i)throw"Overlay: cannot find effect : \""+e.effect+"\"";e.oneInstance&&a.each(b,function(){this.close(d)}),d=d||a.Event(),d.type="onBeforeLoad",g.trigger(d);if(d.isDefaultPrevented())return f;k=!0,l&&a(j).expose(l);var n=e.top,o=e.left,p=j.outerWidth({margin:!0}),q=j.outerHeight({margin:!0});typeof n=="string"&&(n=n=="center"?Math.max((h.height()-q)/2,0):parseInt(n,10)/100*h.height()),o=="center"&&(o=Math.max((h.width()-p)/2,0)),i[0].call(f,{top:n,left:o},function(){k&&(d.type="onLoad",g.trigger(d))}),l&&e.closeOnClick&&a.mask.getMask().one("click",f.close),e.closeOnClick&&a(document).bind("click."+m,function(b){a(b.target).parents(j).length||f.close(b)}),e.closeOnEsc&&a(document).bind("keydown."+m,function(a){a.keyCode==27&&f.close(a)});return f},close:function(b){if(!f.isOpened())return f;b=b||a.Event(),b.type="onBeforeClose",g.trigger(b);if(!b.isDefaultPrevented()){k=!1,c[e.effect][1].call(f,function(){b.type="onClose",g.trigger(b)}),a(document).unbind("click."+m).unbind("keydown."+m),l&&a.mask.close();return f}},getOverlay:function(){return j},getTrigger:function(){return d},getClosers:function(){return i},isOpened:function(){return k},getConf:function(){return e}}),a.each("onBeforeLoad,onStart,onLoad,onBeforeClose,onClose".split(","),function(b,c){a.isFunction(e[c])&&a(f).bind(c,e[c]),f[c]=function(b){b&&a(f).bind(c,b);return f}}),i=j.find(e.close||".close"),!i.length&&!e.close&&(i=a("<a class=\"close\"></a>"),j.prepend(i)),i.click(function(a){f.close(a)}),e.load&&f.load()}a.fn.overlay=function(c){var e=this.data("overlay");if(e)return e;a.isFunction(c)&&(c={onBeforeLoad:c}),c=a.extend(!0,{},a.tools.overlay.conf,c),this.each(function(){e=new d(a(this),c),b.push(e),a(this).data("overlay",e)});return c.api?e:this}})(jQuery);
(function(a){a.tools=a.tools||{version:"v1.2.5"},a.tools.scrollable={conf:{activeClass:"active",circular:!1,clonedClass:"cloned",disabledClass:"disabled",easing:"swing",initialIndex:0,item:null,items:".items",keyboard:!0,mousewheel:!1,next:".next",prev:".prev",speed:400,vertical:!1,touch:!0,wheelSpeed:0}};function b(a,b){var c=parseInt(a.css(b),10);if(c)return c;var d=a[0].currentStyle;return d&&d.width&&parseInt(d.width,10)}function c(b,c){var d=a(c);return d.length<2?d:b.parent().find(c)}var d;function e(b,e){var f=this,g=b.add(f),h=b.children(),i=0,j=e.vertical;d||(d=f),h.length>1&&(h=a(e.items,b)),a.extend(f,{getConf:function(){return e},getIndex:function(){return i},getSize:function(){return f.getItems().size()},getNaviButtons:function(){return m.add(n)},getRoot:function(){return b},getItemWrap:function(){return h},getItems:function(){return h.children(e.item).not("."+e.clonedClass)},move:function(a,b){return f.seekTo(i+a,b)},next:function(a){return f.move(1,a)},prev:function(a){return f.move(-1,a)},begin:function(a){return f.seekTo(0,a)},end:function(a){return f.seekTo(f.getSize()-1,a)},focus:function(){d=f;return f},addItem:function(b){b=a(b),e.circular?(h.children("."+e.clonedClass+":last").before(b),h.children("."+e.clonedClass+":first").replaceWith(b.clone().addClass(e.clonedClass))):h.append(b),g.trigger("onAddItem",[b]);return f},seekTo:function(b,c,k){b.jquery||(b*=1);if(e.circular&&b===0&&i==-1&&c!==0)return f;if(!e.circular&&b<0||b>f.getSize()||b<-1)return f;var l=b;b.jquery?b=f.getItems().index(b):l=f.getItems().eq(b);var m=a.Event("onBeforeSeek");if(!k){g.trigger(m,[b,c]);if(m.isDefaultPrevented()||!l.length)return f}var n=j?{top:-l.position().top}:{left:-l.position().left};i=b,d=f,c===undefined&&(c=e.speed),h.animate(n,c,e.easing,k||function(){g.trigger("onSeek",[b])});return f}}),a.each(["onBeforeSeek","onSeek","onAddItem"],function(b,c){a.isFunction(e[c])&&a(f).bind(c,e[c]),f[c]=function(b){b&&a(f).bind(c,b);return f}});if(e.circular){var k=f.getItems().slice(-1).clone().prependTo(h),l=f.getItems().eq(1).clone().appendTo(h);k.add(l).addClass(e.clonedClass),f.onBeforeSeek(function(a,b,c){if(!a.isDefaultPrevented()){if(b==-1){f.seekTo(k,c,function(){f.end(0)});return a.preventDefault()}b==f.getSize()&&f.seekTo(l,c,function(){f.begin(0)})}}),f.seekTo(0,0,function(){})}var m=c(b,e.prev).click(function(){f.prev()}),n=c(b,e.next).click(function(){f.next()});!e.circular&&f.getSize()>1&&(f.onBeforeSeek(function(a,b){setTimeout(function(){a.isDefaultPrevented()||(m.toggleClass(e.disabledClass,b<=0),n.toggleClass(e.disabledClass,b>=f.getSize()-1))},1)}),e.initialIndex||m.addClass(e.disabledClass)),e.mousewheel&&a.fn.mousewheel&&b.mousewheel(function(a,b){if(e.mousewheel){f.move(b<0?1:-1,e.wheelSpeed||50);return!1}});if(e.touch){var o={};h[0].ontouchstart=function(a){var b=a.touches[0];o.x=b.clientX,o.y=b.clientY},h[0].ontouchmove=function(a){if(a.touches.length==1&&!h.is(":animated")){var b=a.touches[0],c=o.x-b.clientX,d=o.y-b.clientY;f[j&&d>0||!j&&c>0?"next":"prev"](),a.preventDefault()}}}e.keyboard&&a(document).bind("keydown.scrollable",function(b){if(e.keyboard&&!b.altKey&&!b.ctrlKey&&!a(b.target).is(":input")){if(e.keyboard!="static"&&d!=f)return;var c=b.keyCode;if(j&&(c==38||c==40)){f.move(c==38?-1:1);return b.preventDefault()}if(!j&&(c==37||c==39)){f.move(c==37?-1:1);return b.preventDefault()}}}),e.initialIndex&&f.seekTo(e.initialIndex,0,function(){})}a.fn.scrollable=function(b){var c=this.data("scrollable");if(c)return c;b=a.extend({},a.tools.scrollable.conf,b),this.each(function(){c=new e(a(this),b),a(this).data("scrollable",c)});return b.api?c:this}})(jQuery);
(function(a){a.tools=a.tools||{version:"v1.2.5"},a.tools.tabs={conf:{tabs:"a",current:"current",onBeforeClick:null,onClick:null,effect:"default",initialIndex:0,event:"click",rotate:!1,history:!1},addEffect:function(a,c){b[a]=c}};var b={"default":function(a,b){this.getPanes().hide().eq(a).show(),b.call()},fade:function(a,b){var c=this.getConf(),d=c.fadeOutSpeed,e=this.getPanes();d?e.fadeOut(d):e.hide(),e.eq(a).fadeIn(c.fadeInSpeed,b)},slide:function(a,b){this.getPanes().slideUp(200),this.getPanes().eq(a).slideDown(400,b)},ajax:function(a,b){this.getPanes().eq(0).load(this.getTabs().eq(a).attr("href"),b)}},c;a.tools.tabs.addEffect("horizontal",function(b,d){c||(c=this.getPanes().eq(0).width()),this.getCurrentPane().animate({width:0},function(){a(this).hide()}),this.getPanes().eq(b).animate({width:c},function(){a(this).show(),d.call()})});function d(c,d,e){var f=this,g=c.add(this),h=c.find(e.tabs),i=d.jquery?d:c.children(d),j;h.length||(h=c.children()),i.length||(i=c.parent().find(d)),i.length||(i=a(d)),a.extend(this,{click:function(c,d){var i=h.eq(c);typeof c=="string"&&c.replace("#","")&&(i=h.filter("[href*="+c.replace("#","")+"]"),c=Math.max(h.index(i),0));if(e.rotate){var k=h.length-1;if(c<0)return f.click(k,d);if(c>k)return f.click(0,d)}if(!i.length){if(j>=0)return f;c=e.initialIndex,i=h.eq(c)}if(c===j)return f;d=d||a.Event(),d.type="onBeforeClick",g.trigger(d,[c]);if(!d.isDefaultPrevented()){b[e.effect].call(f,c,function(){d.type="onClick",g.trigger(d,[c])}),j=c,h.removeClass(e.current),i.addClass(e.current);return f}},getConf:function(){return e},getTabs:function(){return h},getPanes:function(){return i},getCurrentPane:function(){return i.eq(j)},getCurrentTab:function(){return h.eq(j)},getIndex:function(){return j},next:function(){return f.click(j+1)},prev:function(){return f.click(j-1)},destroy:function(){h.unbind(e.event).removeClass(e.current),i.find("a[href^=#]").unbind("click.T");return f}}),a.each("onBeforeClick,onClick".split(","),function(b,c){a.isFunction(e[c])&&a(f).bind(c,e[c]),f[c]=function(b){b&&a(f).bind(c,b);return f}}),e.history&&a.fn.history&&(a.tools.history.init(h),e.event="history"),h.each(function(b){a(this).bind(e.event,function(a){f.click(b,a);return a.preventDefault()})}),i.find("a[href^=#]").bind("click.T",function(b){f.click(a(this).attr("href"),b)}),location.hash&&e.tabs=="a"&&c.find("[href="+location.hash+"]").length?f.click(location.hash):(e.initialIndex===0||e.initialIndex>0)&&f.click(e.initialIndex)}a.fn.tabs=function(b,c){var e=this.data("tabs");e&&(e.destroy(),this.removeData("tabs")),a.isFunction(c)&&(c={onBeforeClick:c}),c=a.extend({},a.tools.tabs.conf,c),this.each(function(){e=new d(a(this),b,c),a(this).data("tabs",e)});return c.api?e:this}})(jQuery);
(function(a){a.tools=a.tools||{version:"v1.2.5"},a.tools.tooltip={conf:{effect:"toggle",fadeOutSpeed:"fast",predelay:0,delay:30,opacity:1,tip:0,position:["top","center"],offset:[0,0],relative:!1,cancelDefault:!0,events:{def:"mouseenter,mouseleave",input:"focus,blur",widget:"focus mouseenter,blur mouseleave",tooltip:"mouseenter,mouseleave"},layout:"<div/>",tipClass:"tooltip"},addEffect:function(a,c,d){b[a]=[c,d]}};var b={toggle:[function(a){var b=this.getConf(),c=this.getTip(),d=b.opacity;d<1&&c.css({opacity:d}),c.show(),a.call()},function(a){this.getTip().hide(),a.call()}],fade:[function(a){var b=this.getConf();this.getTip().fadeTo(b.fadeInSpeed,b.opacity,a)},function(a){this.getTip().fadeOut(this.getConf().fadeOutSpeed,a)}]};function c(b,c,d){var e=d.relative?b.position().top:b.offset().top,f=d.relative?b.position().left:b.offset().left,g=d.position[0];e-=c.outerHeight()-d.offset[0],f+=b.outerWidth()+d.offset[1],/iPad/i.test(navigator.userAgent)&&(e-=a(window).scrollTop());var h=c.outerHeight()+b.outerHeight();g=="center"&&(e+=h/2),g=="bottom"&&(e+=h),g=d.position[1];var i=c.outerWidth()+b.outerWidth();g=="center"&&(f-=i/2),g=="left"&&(f-=i);return{top:e,left:f}}function d(d,e){var f=this,g=d.add(f),h,i=0,j=0,k=d.attr("title"),l=d.attr("data-tooltip"),m=b[e.effect],n,o=d.is(":input"),p=o&&d.is(":checkbox, :radio, select, :button, :submit"),q=d.attr("type"),r=e.events[q]||e.events[o?p?"widget":"input":"def"];if(!m)throw"Nonexistent effect \""+e.effect+"\"";r=r.split(/,\s*/);if(r.length!=2)throw"Tooltip: bad events configuration for "+q;d.bind(r[0],function(a){clearTimeout(i),e.predelay?j=setTimeout(function(){f.show(a)},e.predelay):f.show(a)}).bind(r[1],function(a){clearTimeout(j),e.delay?i=setTimeout(function(){f.hide(a)},e.delay):f.hide(a)}),k&&e.cancelDefault&&(d.removeAttr("title"),d.data("title",k)),a.extend(f,{show:function(b){if(!h){l?h=a(l):e.tip?h=a(e.tip).eq(0):k?h=a(e.layout).addClass(e.tipClass).appendTo(document.body).hide().append(k):(h=d.next(),h.length||(h=d.parent().next()));if(!h.length)throw"Cannot find tooltip for "+d}if(f.isShown())return f;h.stop(!0,!0);var o=c(d,h,e);e.tip&&h.html(d.data("title")),b=b||a.Event(),b.type="onBeforeShow",g.trigger(b,[o]);if(b.isDefaultPrevented())return f;o=c(d,h,e),h.css({position:"absolute",top:o.top,left:o.left}),n=!0,m[0].call(f,function(){b.type="onShow",n="full",g.trigger(b)});var p=e.events.tooltip.split(/,\s*/);h.data("__set")||(h.bind(p[0],function(){clearTimeout(i),clearTimeout(j)}),p[1]&&!d.is("input:not(:checkbox, :radio), textarea")&&h.bind(p[1],function(a){a.relatedTarget!=d[0]&&d.trigger(r[1].split(" ")[0])}),h.data("__set",!0));return f},hide:function(c){if(!h||!f.isShown())return f;c=c||a.Event(),c.type="onBeforeHide",g.trigger(c);if(!c.isDefaultPrevented()){n=!1,b[e.effect][1].call(f,function(){c.type="onHide",g.trigger(c)});return f}},isShown:function(a){return a?n=="full":n},getConf:function(){return e},getTip:function(){return h},getTrigger:function(){return d}}),a.each("onHide,onBeforeShow,onShow,onBeforeHide".split(","),function(b,c){a.isFunction(e[c])&&a(f).bind(c,e[c]),f[c]=function(b){b&&a(f).bind(c,b);return f}})}a.fn.tooltip=function(b){var c=this.data("tooltip");if(c)return c;b=a.extend(!0,{},a.tools.tooltip.conf,b),typeof b.position=="string"&&(b.position=b.position.split(/,?\s/)),this.each(function(){c=new d(a(this),b),a(this).data("tooltip",c)});return b.api?c:this}})(jQuery);


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



/*================================================
 Cufon - OnRamp Font
================================================*/
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2011 by Michael Spitz. All rights reserved.
 * 
 * Trademark:
 * ONRAMP is a trademark of Michael Spitz.
 * 
 * Description:
 * Copyright (c) 2011 by Michael Spitz. All rights reserved.
 * 
 * Manufacturer:
 * Michael Spitz
 * 
 * Designer:
 * Michael Spitz
 * 
 * Vendor URL:
 * losttype.com
 */
Cufon.registerFont({"w":160,"face":{"font-family":"OnRamp","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","bbox":"-17 -243 230 34.6561","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":95,"k":{"Y":-6}},"\u00a0":{"w":95},"C":{"d":"112,-157v23,-3,18,30,18,53r-37,0r0,-19r-45,0r0,90r45,0r0,-20r37,0v0,23,6,54,-18,53r-82,0v-10,0,-18,-7,-18,-17r0,-123v6,-33,67,-13,100,-17","w":140,"k":{"Y":6}},"D":{"d":"139,-17v1,10,-9,17,-18,17r-107,0r0,-157r107,0v9,0,19,7,18,17r0,123xm102,-123r-51,0r0,90r51,0r0,-90","w":151},"E":{"d":"54,-123r0,28r45,0r0,33r-45,0r0,29r81,0r0,33r-118,0r0,-157r118,0r0,34r-81,0","w":146,"k":{"A":-3,"Y":6,"O":3,"I":11}},"G":{"d":"120,-158v23,0,18,31,18,54r-37,0r0,-20r-53,0r0,91r53,0r0,-20r-23,0r0,-34r60,0v-4,31,13,87,-18,87r-90,0v-9,0,-19,-7,-18,-17r0,-124v-1,-10,9,-17,18,-17r90,0","w":146,"k":{"Y":6}},"F":{"d":"53,-123r0,28r45,0r0,33r-45,0r0,62r-36,0r0,-157r118,0r0,34r-82,0","w":143,"k":{"A":19,"Y":8,"V":3,"R":6,"Q":11,"O":11}},"H":{"d":"136,-157r0,157r-37,0r0,-53r-51,0r0,53r-37,0r0,-157r37,0r0,71r51,0r0,-71r37,0","w":146,"k":{"A":-5}},"I":{"d":"60,0r-37,0r0,-157r37,0r0,157","w":78,"k":{"S":5,"N":-9,"I":11}},"J":{"d":"30,0v-31,-2,-14,-54,-18,-87r37,0r0,54r44,0r0,-124r38,0r0,140v-7,32,-67,12,-101,17","w":143},"K":{"d":"111,0r-31,-45r-31,45r-32,0r0,-157r37,0r0,75r51,-75r53,0r-52,75r54,82r-49,0","w":174,"k":{"Y":11,"O":6,"E":9}},"L":{"d":"52,-33r69,0r0,33r-107,0r0,-157r38,0r0,124","w":132,"k":{"Y":28,"V":22,"O":9,"I":9}},"M":{"d":"182,-157r0,157r-37,0r0,-123r-35,66r-24,0r-35,-66r0,123r-37,0r0,-157r58,0r26,40r27,-40r57,0","w":194},"N":{"d":"154,0r-32,0r-71,-107r0,107r-36,0r0,-157r53,0r49,75r0,-75r37,0r0,157","w":165,"k":{"G":-9,"D":-3}},"O":{"d":"147,-17v1,10,-9,17,-18,17r-90,0v-9,0,-19,-7,-18,-17r0,-124v-1,-10,9,-16,18,-16r90,0v9,0,19,6,18,16r0,124xm58,-33r52,0r0,-91r-52,0r0,91","w":165,"k":{"Y":11,"T":3,"R":3,"Q":6,"O":6,"K":6,"C":-3}},"P":{"d":"143,-141v-4,31,14,87,-18,87r-70,0r0,54r-38,0r0,-157r108,0v9,0,19,6,18,16xm106,-124r-51,0r0,37r51,0r0,-37","w":157,"k":{"V":6,"O":5}},"Q":{"d":"144,-17v1,9,-8,15,-15,17r16,24r-43,0r-16,-24v-26,-3,-69,10,-69,-17r0,-124v-1,-10,10,-16,19,-16r90,0v9,0,19,6,18,16r0,124xm107,-33r0,-91r-53,0r0,91r53,0","k":{"W":3,"Y":11,"X":5,"V":5,"E":6}},"R":{"d":"143,-141v-4,31,14,85,-18,87r36,54r-44,0r-36,-54r-26,0r0,54r-37,0r0,-157r107,0v9,0,19,6,18,16xm55,-87r51,0r0,-37r-51,0r0,37"},"S":{"d":"128,-80v0,29,12,80,-18,80r-93,0r0,-33r74,0r0,-30v-28,-3,-71,10,-74,-17v3,-29,-12,-78,19,-78r92,0r0,33r-73,0r0,28v27,3,73,-11,73,17","w":140,"k":{"A":-3,"I":3}},"T":{"d":"121,-124r-36,0r0,124r-37,0r0,-124r-36,0r0,-33r109,0r0,33","w":132,"k":{"A":14,"'":-6,"Y":3,"O":6}},"U":{"d":"145,-17v1,10,-9,17,-18,17r-91,0v-9,0,-19,-7,-18,-17r0,-141r37,0r0,125r53,0r0,-125r37,0r0,141","w":163},"V":{"d":"157,-157r-47,157r-57,0r-47,-157r38,0r37,123r38,-123r38,0","k":{"A":14,"Y":6,"X":3,"Q":5,"E":3}},"X":{"d":"114,-79r55,79r-49,0r-30,-43r-30,43r-48,0r54,-79r-54,-78r48,0r30,43r30,-43r49,0","w":180,"k":{"Y":6,"V":6,"Q":9,"O":6}},"Y":{"d":"108,-72r0,72r-37,0r0,-72r-59,-85r51,0r27,38r26,-38r51,0","w":174,"k":{"A":22,"B":6,"X":8,"S":5,"Q":8,"O":11,"J":28,"I":3,"C":5}},"Z":{"d":"125,-157r0,29r-66,95r66,0r0,33r-113,0r0,-35r63,-89r-63,0r0,-33r113,0","w":137,"k":{"Y":11}},"W":{"d":"17,0r0,-157r37,0r0,123r35,-66r24,0r35,66r0,-123r37,0r0,157r-58,0r-26,-41r-27,41r-57,0","w":199,"k":{"Y":5}},"\u00c0":{"d":"121,-37r12,37r39,0r-52,-157r-57,0r-51,157r38,0r13,-37r58,0xm74,-71r18,-53r17,53r-35,0xm120,-177r-57,-12r0,-28r57,12r0,28","w":180},"\u00c1":{"d":"133,0r-12,-37r-59,0r-12,37r-38,0r51,-157r57,0r52,157r-39,0xm92,-124r-18,53r35,0xm63,-205r57,-12r0,28r-57,12r0,-28","w":180},"\u00c2":{"d":"130,0r-12,-37r-59,0r-12,37r-39,0r52,-157r57,0r51,157r-38,0xm88,-124r-17,53r35,0xm88,-189r-33,12r0,-28r33,-12r34,12r0,28","w":174},"\u00c4":{"d":"51,-37r-12,37r-39,0r51,-157r57,0r52,157r-38,0r-13,-37r-58,0xm98,-71r-18,-53r-18,53r36,0xm44,-178r0,-28r28,0r0,28r-28,0xm89,-178r0,-28r27,0r0,28r-27,0","w":203},"\u00c6":{"d":"207,-124r-82,0r0,29r45,0r0,33r-45,0r0,29r82,0r0,33r-118,0r0,-37r-30,0r-12,37r-39,0r52,-157r147,0r0,33xm89,-71r0,-53r-18,53r18,0","w":227},"\u00c7":{"d":"119,-157v23,-3,18,30,18,53r-37,0r0,-20r-45,0r0,91r45,0r0,-20r37,0v0,23,6,54,-18,53r-41,0v-3,10,14,1,12,11v-1,12,5,26,-13,22r-13,0r0,-11v6,2,22,-3,7,-5v-8,0,-7,-9,-7,-17v-21,0,-46,4,-46,-17r0,-124v7,-31,67,-12,101,-16"},"\u00c8":{"d":"110,-178r-56,-12r0,-27r56,12r0,27xm141,-158r-118,0r0,158r118,0r0,-33r-82,0r0,-29r45,0r0,-33r-45,0r0,-29r82,0r0,-34","w":157},"\u00c9":{"d":"51,-205r56,-12r0,27r-56,12r0,-27xm138,-124r-81,0r0,29r45,0r0,33r-45,0r0,29r81,0r0,33r-118,0r0,-158r118,0r0,34","w":154},"\u00ca":{"d":"135,-124r-81,0r0,29r45,0r0,33r-45,0r0,29r81,0r0,33r-118,0r0,-158r118,0r0,34xm76,-190r-34,12r0,-27r34,-12r34,12r0,27","w":151},"\u00cb":{"d":"138,-124r-81,0r0,29r45,0r0,33r-45,0r0,29r81,0r0,33r-118,0r0,-158r118,0r0,34xm47,-178r0,-27r28,0r0,27r-28,0xm91,-178r0,-27r27,0r0,27r-27,0","w":157},"\u00cc":{"d":"71,-177r-57,-13r0,-27r57,12r0,28xm62,0r-38,0r0,-158r38,0r0,158","w":87},"\u00cd":{"d":"13,-205r56,-12r0,27r-56,13r0,-28xm22,-158r37,0r0,158r-37,0r0,-158","w":87},"\u00cf":{"d":"18,-178r0,-27r27,0r0,27r-27,0xm62,-178r0,-27r27,0r0,27r-27,0xm34,-158r37,0r0,158r-37,0r0,-158","w":104},"\u00ce":{"d":"26,-158r37,0r0,158r-37,0r0,-158xm44,-190r-34,13r0,-28r34,-12r34,12r0,28","w":87},"\u00d0":{"d":"153,-17v1,10,-9,17,-18,17r-107,0r0,-57r-23,0r0,-33r23,0r0,-68r107,0v9,0,19,7,18,17r0,124xm116,-124r-51,0v1,11,-2,25,1,34r34,0r0,33r-35,0r0,24r51,0r0,-91","w":177},"\u00d1":{"d":"165,-158r0,158r-32,0r-71,-107r0,107r-36,0r0,-158r52,0r51,76r0,-76r36,0xm129,-217r0,27r-22,12r-23,-12r-22,12r0,-27r22,-12r23,12","w":191},"\u00d2":{"d":"43,0v-9,0,-19,-7,-19,-17r0,-124v10,-31,73,-10,109,-16v9,0,19,6,18,16r0,124v1,10,-9,17,-18,17r-90,0xm114,-124r-53,0r0,91r53,0r0,-91xm116,-205r0,28r-57,-13r0,-27","w":171},"\u00d3":{"d":"149,-17v1,10,-9,17,-18,17r-90,0v-9,0,-19,-7,-18,-17r0,-124v-1,-10,9,-16,18,-16r90,0v9,0,19,6,18,16r0,124xm60,-33r52,0r0,-91r-52,0r0,91xm114,-217r0,27r-56,13r0,-28","w":171},"\u00d4":{"d":"152,-17v1,10,-9,17,-18,17r-90,0v-9,0,-19,-7,-18,-17r0,-124v-1,-10,9,-17,18,-17r90,0v9,0,19,7,18,17r0,124xm63,-33r52,0r0,-91r-52,0r0,91xm55,-178r0,-27r34,-12r34,12r0,27r-34,-12","w":177},"\u00d5":{"d":"121,-217r0,27r-23,12r-22,-12r-23,12r0,-27r23,-12r22,12xm153,-17v-9,33,-73,17,-109,17v-9,0,-19,-7,-18,-17r0,-124v-1,-10,9,-17,18,-17r90,0v9,0,19,7,19,17r0,124xm63,-33r53,0r0,-91r-53,0r0,91","w":182},"\u00d6":{"d":"53,-205r28,0r0,27r-28,0r0,-27xm97,-205r28,0r0,27r-28,0r0,-27xm152,-17v1,10,-9,17,-18,17r-90,0v-9,0,-19,-7,-18,-17r0,-124v-1,-10,9,-16,18,-16r90,0v9,0,19,6,18,16r0,124xm63,-33r52,0r0,-91r-52,0r0,91","w":171},"\u00d8":{"d":"28,-141v4,-26,48,-13,75,-16r7,-21r27,0r-6,21v13,-1,24,5,25,16r0,124v-3,27,-48,14,-76,17r-6,21r-28,0r7,-21v-14,1,-24,-5,-25,-17r0,-124xm66,-39r27,-85r-27,0r0,85xm118,-33r0,-86r-27,86r27,0","w":182},"\u00d9":{"d":"153,-17v1,11,-10,17,-19,17r-90,0v-9,0,-19,-7,-18,-17r0,-141r37,0r0,125r53,0r0,-125r37,0r0,141xm118,-206r0,28r-57,-12r0,-27","w":180},"\u00da":{"d":"150,-17v1,11,-10,17,-19,17r-90,0v-9,0,-19,-7,-18,-17r0,-141r37,0r0,125r53,0r0,-125r37,0r0,141xm115,-217r0,27r-57,12r0,-28","w":177},"\u00db":{"d":"153,-17v1,10,-9,17,-18,17r-91,0v-9,0,-19,-7,-18,-17r0,-141r37,0r0,125r53,0r0,-125r37,0r0,141xm56,-178r0,-27r33,-12r34,12r0,27r-34,-12","w":177},"\u00dc":{"d":"150,-17v1,10,-9,17,-18,17r-91,0v-9,0,-19,-7,-18,-17r0,-141r37,0r0,125r53,0r0,-125r37,0r0,141xm51,-206r27,0r0,28r-27,0r0,-28xm95,-206r27,0r0,28r-27,0r0,-28","w":168},"\u00dd":{"d":"69,-205r57,-12r0,27r-57,13r0,-28xm175,-157r-59,85r0,72r-37,0r0,-72r-59,-85r51,0r26,38r27,-38r51,0","w":188},"\u00fb":{"d":"128,-17v-9,33,-73,17,-109,17v-9,0,-19,-6,-19,-17r0,-141r37,0r0,125r53,0r0,-125r38,0r0,141xm30,-178r0,-27r34,-12r34,12r0,27r-34,-12","w":159},"\u00fc":{"d":"128,-17v-9,33,-73,17,-109,17v-9,0,-19,-7,-19,-17r0,-141r37,0r0,125r53,0r0,-125r38,0r0,141xm28,-206r27,0r0,28r-27,0r0,-28xm72,-206r28,0r0,28r-28,0r0,-28","w":159},"\u00fd":{"d":"49,-205r57,-12r0,27r-57,13r0,-28xm155,-157r-59,85r0,72r-37,0r0,-72r-59,-85r51,0r26,38r27,-38r51,0","w":193},"\u00fa":{"d":"127,-17v1,10,-9,17,-18,17r-91,0v-9,0,-19,-7,-18,-17r0,-141r37,0r0,125r53,0r0,-125r37,0r0,141xm92,-217r0,27r-57,12r0,-28","w":159},"\u00f9":{"d":"127,-17v1,10,-9,17,-18,17r-91,0v-9,0,-19,-7,-18,-17r0,-141r37,0r0,125r53,0r0,-125r37,0r0,141xm92,-206r0,28r-57,-12r0,-27","w":159},"\u00f8":{"d":"0,-141v3,-27,48,-13,75,-16r6,-21r28,0r-7,21v13,-1,25,4,25,16r0,124v-2,28,-48,14,-75,17r-7,21r-27,0r6,-21v-13,1,-24,-5,-24,-17r0,-124xm37,-39r27,-85r-27,0r0,85xm90,-33r0,-86r-27,86r27,0","w":152},"\u00f6":{"d":"28,-205r27,0r0,27r-27,0r0,-27xm72,-205r27,0r0,27r-27,0r0,-27xm127,-17v-9,33,-73,17,-109,17v-9,0,-19,-7,-18,-17r0,-124v-1,-10,9,-16,18,-16r90,0v9,0,19,7,19,16r0,124xm37,-33r53,0r0,-91r-53,0r0,91","w":152},"\u00f2":{"d":"17,0v-9,0,-19,-7,-18,-17r0,-124v-1,-10,9,-16,18,-16r90,0v9,0,19,7,19,16r0,124v-9,33,-73,17,-109,17xm89,-124r-53,0r0,91r53,0r0,-91xm91,-205r0,28r-57,-13r0,-27","w":152},"\u00f3":{"d":"127,-17v-9,33,-73,17,-109,17v-9,0,-19,-7,-18,-17r0,-124v-1,-10,9,-16,18,-16r90,0v9,0,19,7,19,16r0,124xm37,-33r53,0r0,-91r-53,0r0,91xm92,-217r0,27r-57,13r0,-28","w":152},"\u00f4":{"d":"127,-17v-9,33,-73,17,-109,17v-9,0,-19,-7,-18,-17r0,-124v-1,-10,9,-17,18,-17r90,0v9,0,19,7,19,17r0,124xm37,-33r53,0r0,-91r-53,0r0,91xm30,-178r0,-27r33,-12r34,12r0,27r-34,-12","w":152},"\u00f5":{"d":"95,-217r0,27r-23,12r-22,-12r-23,12r0,-27r23,-12r22,12xm127,-17v1,10,-9,17,-18,17r-90,0v-9,0,-19,-6,-19,-17r0,-124v-1,-11,10,-17,19,-17r90,0v9,0,19,7,18,17r0,124xm37,-33r53,0r0,-91r-53,0r0,91","w":152},"\u00ec":{"d":"78,-177r-57,-13r0,-27r57,12r0,28xm68,0r-37,0r0,-158r37,0r0,158","w":95},"\u00ed":{"d":"13,-205r56,-12r0,27r-56,13r0,-28xm22,-158r37,0r0,158r-37,0r0,-158","w":87},"\u00ee":{"d":"23,-158r37,0r0,158r-37,0r0,-158xm41,-190r-33,13r0,-28r33,-12r34,12r0,28","w":78},"\u00ef":{"d":"15,-178r0,-27r27,0r0,27r-27,0xm59,-178r0,-27r27,0r0,27r-27,0xm31,-158r37,0r0,158r-37,0r0,-158","w":98},"\u00f1":{"d":"165,-158r0,158r-32,0r-71,-107r0,107r-36,0r0,-158r52,0r51,76r0,-76r36,0xm129,-217r0,27r-22,12r-23,-12r-22,12r0,-27r22,-12r23,12","w":191},"\u00ff":{"d":"42,-178r0,-27r27,0r0,27r-27,0xm86,-178r0,-27r27,0r0,27r-27,0xm155,-157r-59,85r0,72r-37,0r0,-72r-59,-85r51,0r27,38r26,-38r51,0","w":193},"\u00a5":{"d":"99,-73r23,0r0,27r-23,0r0,32r-30,0r0,-32r-23,0r0,-27r23,0r-48,-70r35,0r28,41r29,-41r35,0","w":171},"\u00a3":{"d":"16,-158v22,0,58,-8,58,14r0,30r-30,0r0,-17r-13,0r0,44r28,0r0,27r-28,0r0,19r56,0r0,27r-86,0r0,-46r-18,0r0,-27r18,0v3,-25,-11,-71,15,-71","w":107},"$":{"d":"18,-80v0,-29,-13,-71,30,-63r0,-27r30,0r0,27r31,0r0,27r-60,0r0,23v22,2,57,-8,60,13v-3,30,14,75,-31,66r0,27r-30,0r0,-27r-30,0r0,-28r60,0r0,-24v-23,-2,-60,8,-60,-14","w":125},"\u20ac":{"d":"42,-143v29,0,75,-11,83,13r0,31r-31,0r0,-17r-37,0r0,27r29,0r0,28r-29,0r0,19r37,0r0,-16r31,0v0,20,4,46,-16,44v-28,-3,-76,12,-82,-14r0,-33r-18,0r0,-28r18,0v2,-21,-7,-54,15,-54","w":140},"\u0161":{"d":"111,-80v-3,30,12,80,-19,80r-92,0r0,-33r74,0r0,-30v-28,-3,-74,11,-74,-17v0,-29,-12,-78,19,-78r92,0r0,34r-74,0r0,28v27,3,71,-10,74,16xm89,-217r0,27r-34,12r-33,-12r0,-27r33,12","w":146},"\u0160":{"d":"111,-80v-3,30,12,80,-19,80r-92,0r0,-33r74,0r0,-30v-28,-3,-74,11,-74,-17v0,-29,-12,-78,19,-78r92,0r0,34r-74,0r0,28v27,3,71,-10,74,16xm89,-217r0,27r-34,12r-33,-12r0,-27r33,12","w":146},"\u00e4":{"d":"56,-37r-12,37r-39,0r52,-157r57,0r52,157r-39,0r-12,-37r-59,0xm103,-71r-18,-53r-17,53r35,0xm50,-178r0,-28r27,0r0,28r-27,0xm94,-178r0,-28r27,0r0,28r-27,0","w":174},"\u00e6":{"d":"216,-124r-82,0r0,29r45,0r0,33r-45,0r0,29r82,0r0,33r-119,0r0,-37r-29,0r-13,37r-38,0r52,-157r147,0r0,33xm97,-71r0,-53r-17,53r17,0","w":230},"\u00e7":{"d":"122,-157v23,-2,18,30,18,53r-37,0r0,-20r-45,0r0,91r45,0r0,-20r37,0v0,23,6,54,-18,53r-41,0v-2,9,14,2,13,11v-1,11,4,26,-13,22r-13,0r0,-11v6,2,22,-3,7,-5v-8,0,-7,-9,-7,-17v-21,0,-46,3,-47,-17r0,-124v8,-30,67,-12,101,-16","w":157},"\u00e8":{"d":"110,-178r-56,-12r0,-27r56,12r0,27xm141,-158r-118,0r0,158r118,0r0,-33r-82,0r0,-29r45,0r0,-33r-45,0r0,-29r82,0r0,-34"},"\u00e9":{"d":"51,-205r56,-12r0,27r-56,12r0,-27xm138,-124r-81,0r0,29r45,0r0,33r-45,0r0,29r81,0r0,33r-118,0r0,-158r118,0r0,34","w":157},"\u00ea":{"d":"141,-124r-82,0r0,29r45,0r0,33r-45,0r0,29r82,0r0,33r-118,0r0,-158r118,0r0,34xm82,-190r-34,12r0,-27r34,-12r34,12r0,27"},"\u00eb":{"d":"132,-124r-81,0r0,29r45,0r0,33r-45,0r0,29r81,0r0,33r-118,0r0,-158r118,0r0,34xm41,-178r0,-27r28,0r0,27r-28,0xm85,-178r0,-27r28,0r0,27r-28,0","w":146},"\u00e0":{"d":"118,-37r12,37r39,0r-52,-157r-57,0r-51,157r38,0r13,-37r58,0xm71,-71r18,-53r18,53r-36,0xm117,-177r-57,-12r0,-28r57,12r0,28","w":174},"\u00e1":{"d":"130,0r-12,-37r-59,0r-12,37r-38,0r51,-157r57,0r52,157r-39,0xm89,-124r-18,53r36,0xm60,-205r57,-12r0,28r-57,12r0,-28","w":177},"\u00e2":{"d":"130,0r-12,-37r-59,0r-12,37r-39,0r52,-157r57,0r51,157r-38,0xm88,-124r-17,53r35,0xm88,-189r-33,12r0,-28r33,-12r34,12r0,28","w":177},"\u00e3":{"d":"130,0r-12,-37r-59,0r-12,37r-39,0r52,-157r57,0r51,157r-38,0xm89,-124r-18,53r35,0xm122,-217r0,27r-22,13r-23,-13r-22,13r0,-28r22,-12r23,12","w":177},"1":{"d":"87,-157r0,157r-37,0r0,-124r-39,0r0,-33r76,0","w":101},"2":{"d":"118,-157v33,4,13,63,18,95r-82,0r0,29r82,0r0,33r-119,0v5,-33,-15,-95,19,-95r63,0r0,-28r-82,0r0,-34r101,0","w":149},"3":{"d":"110,-157v9,0,19,7,19,16r0,124v-9,33,-76,11,-112,17r0,-33r74,0r0,-29r-74,0r0,-33r74,0r0,-29r-74,0r0,-33r93,0","w":143},"4":{"d":"129,-157r0,157r-38,0r0,-53r-74,0r0,-104r37,0r0,71r37,0r0,-71r38,0","w":143},"5":{"d":"128,-80v-3,30,12,80,-19,80r-92,0r0,-33r74,0r0,-30r-74,0r0,-95r111,0r0,33r-74,0r0,29v27,3,71,-10,74,16","w":143},"6":{"d":"17,-141v-1,-10,9,-16,18,-16r93,0r0,33r-74,0r0,29v28,3,74,-11,74,17v0,29,12,78,-19,78v-32,0,-92,14,-92,-17r0,-124xm54,-62r0,29r37,0r0,-29r-37,0","w":143},"7":{"d":"134,-158r-70,158r-37,0r52,-125r-65,0r0,-33r120,0","w":140,"k":{"5":3,"3":6,"2":5}},"8":{"d":"17,-141v5,-31,61,-17,93,-17v9,0,19,7,18,17r0,124v-4,31,-60,17,-92,17v-9,0,-19,-7,-19,-17r0,-124xm91,-62r-37,0r0,29r37,0r0,-29xm54,-96r37,0r0,-28r-37,0r0,28","w":143,"k":{"7":3}},"9":{"d":"14,-79v0,-29,-12,-79,18,-79v33,0,93,-14,93,17r0,124v-9,33,-75,11,-111,17r0,-34r74,0r0,-28v-27,-3,-74,11,-74,-17xm88,-125r-37,0r0,29r37,0r0,-29","w":140},"+":{"d":"119,-65r-29,0r0,28r-30,0r0,-28r-29,0r0,-30r29,0r0,-29r30,0r0,29r29,0r0,30","w":149,"k":{"1":14}},",":{"d":"42,-33v1,28,3,56,-31,50r0,-50r31,0","w":56},"=":{"d":"31,-123r87,0r0,30r-87,0r0,-30xm31,-65r87,0r0,30r-87,0r0,-30","w":149,"k":{"1":17}},"<":{"d":"124,-105r-50,26r50,27r0,39r-101,-54r0,-24r101,-53r0,39","w":154},">":{"d":"37,-144r101,53r0,24r-101,54r0,-39r50,-27r-50,-26r0,-39","w":165},";":{"d":"20,-108r31,0r0,34r-31,0r0,-34xm20,0v32,6,33,-20,31,-50r-31,0r0,50","w":67},":":{"d":"48,-108r0,34r-31,0r0,-34r31,0xm17,-50r31,0r0,34r-31,0r0,-34","w":64},"@":{"d":"157,-15v0,8,-7,16,-17,15r-98,0v-27,0,-14,-40,-17,-65v4,-27,54,-11,82,-15r0,51r17,0r0,-66r-99,0r0,-29r117,0v8,1,15,7,15,16r0,93xm58,-29r17,0r0,-21r-17,0r0,21","w":180},"!":{"d":"57,-33r0,33r-37,0r0,-33r37,0xm20,-50r0,-108r37,0r0,108r-37,0","w":78},"%":{"d":"108,-157r39,0r-74,157r-39,0xm23,-150v2,15,-6,43,8,43v15,0,41,6,44,-7v-2,-16,7,-43,-9,-43v-15,0,-41,-6,-43,7xm40,-142r17,0r0,20r-17,0r0,-20xm106,-43v2,15,-7,42,8,43v15,-2,41,6,44,-8v-2,-15,7,-41,-9,-42v-15,2,-40,-6,-43,7xm123,-35r17,0r0,20r-17,0r0,-20xm147,-157r-74,157","w":177},"\u02c6":{"d":"146,-96r-39,0r-26,-41r-27,41r-39,0r54,-82r24,0","w":162},"^":{"d":"149,-96r-39,0r-27,-41r-26,41r-39,0r53,-82r24,0","w":169},"_":{"d":"131,0r0,30r-111,0r0,-30r111,0","w":149,"k":{"A":-6,"T":20}},"[":{"d":"71,-157r0,157r24,0r0,34r-61,0r0,-225r61,0r0,34r-24,0","w":123},"(":{"d":"31,-174v2,-25,41,-15,67,-17r0,34r-30,0r0,157r30,0r0,34v-26,-2,-67,9,-67,-17r0,-191","w":123},"]":{"d":"35,-157r0,-34r61,0r0,225r-61,0r0,-34r24,0r0,-157r-24,0","w":129},")":{"d":"92,17v-1,26,-41,15,-66,17r0,-34r29,0r0,-157r-29,0r0,-34v26,2,65,-9,66,17r0,191","w":123},"*":{"d":"57,-151r12,8r-9,12r-9,-6r0,13r-16,0r0,-13r-9,6r-9,-12r12,-8r-12,-7r9,-13r9,6r0,-13r16,0r0,13r9,-6r9,13","w":84},"\u017d":{"d":"20,-158r113,0r0,30r-65,95r65,0r0,33r-113,0r0,-35r63,-89r-63,0r0,-34xm76,-205r34,-12r0,27r-34,13r-33,-13r0,-27","w":149},"\u017e":{"d":"22,-158r113,0r0,30r-65,95r65,0r0,33r-113,0r0,-35r63,-89r-63,0r0,-34xm78,-205r34,-12r0,27r-34,13r-33,-13r0,-27","w":155},"\u0141":{"d":"83,-33r69,0r0,33r-107,0r0,-49r-31,16r0,-39r31,-17r0,-69r38,0r0,50r31,-17r0,39r-31,17r0,36","w":165},"\u0142":{"d":"86,-33r69,0r0,33r-107,0r0,-49r-31,16r0,-39r31,-17r0,-69r38,0r0,50r31,-17r0,39r-31,17r0,36","w":168},"\ufb01":{"d":"163,-158r0,158r-37,0r0,-124r-64,0r0,29r46,0r0,33r-46,0r0,62r-36,0r0,-158r137,0","w":188},"-":{"d":"99,-94r0,30r-68,0r0,-30r68,0","w":132},"\u2013":{"d":"153,-94r0,30r-139,0r0,-30r139,0","w":165},"\u2014":{"d":"185,-94r0,30r-168,0r0,-30r168,0","w":202},"\/":{"d":"120,-158r-47,158r-39,0r47,-158r39,0","w":143},"\u0178":{"d":"42,-178r0,-27r27,0r0,27r-27,0xm86,-178r0,-27r27,0r0,27r-27,0xm155,-157r-59,85r0,72r-37,0r0,-72r-59,-85r51,0r27,38r26,-38r51,0","w":193},"\u00a1":{"d":"0,-124r0,-34r37,0r0,34r-37,0xm37,-107r0,107r-37,0r0,-107r37,0","w":78},"\u00a2":{"d":"87,-143v16,-1,33,-1,33,14r0,30r-30,0r0,-17r-37,0r0,74r37,0r0,-16r30,0v2,28,2,51,-33,44r0,26r-30,0r0,-26v-16,1,-33,1,-34,-14r0,-101v1,-14,18,-15,34,-14r0,-28r30,0r0,28","w":132},"\u02dc":{"d":"114,-177r0,37r-31,17r-31,-17r-30,17r0,-38r30,-16r31,16","w":137},"|":{"d":"24,33r0,-224r38,0r0,224r-38,0","w":84},"{":{"d":"71,-99v5,-32,-15,-92,19,-92r48,0r0,33r-30,0r0,158r30,0r0,33v-25,-2,-67,9,-67,-16r0,-76r-36,0r0,-40r36,0","w":163},"}":{"d":"92,-59v-5,32,15,91,-19,92r-47,0r0,-33r29,0r0,-158r-29,0r0,-33v25,2,66,-9,66,16r0,76r37,0r0,40r-37,0","w":154},"\u00d7":{"d":"81,-37r-20,-20r-20,20r-22,-21r21,-21r-21,-20r22,-21r20,20r20,-20r22,21r-21,20r21,21","w":115},"\u00f7":{"d":"54,-142r28,0r0,28r-28,0r0,-28xm25,-64r0,-30r87,0r0,30r-87,0xm54,-43r28,0r0,27r-28,0r0,-27","w":128},".":{"d":"46,-33r0,33r-30,0r0,-33r30,0","w":64},"\u0153":{"d":"0,-141v-1,-11,10,-17,19,-17r189,0r0,34r-81,0r0,29r45,0r0,33r-45,0r0,29r81,0r0,33r-189,0v-9,0,-19,-6,-19,-17r0,-124xm90,-33r0,-91r-53,0r0,91r53,0","w":276},"\u0152":{"d":"0,-141v-1,-11,10,-17,19,-17r189,0r0,34r-81,0r0,29r45,0r0,33r-45,0r0,29r81,0r0,33r-189,0v-9,0,-19,-6,-19,-17r0,-124xm90,-33r0,-91r-53,0r0,91r53,0","w":276},"\u00bf":{"d":"23,-158r37,0r0,34r-37,0r0,-34xm77,-62v-22,-1,-54,7,-54,-16r0,-29r37,0r0,12v23,1,54,-5,54,17v0,29,12,78,-19,78r-72,0r0,-33r54,0r0,-29","w":129},"0":{"d":"17,-141v4,-31,61,-17,93,-17v9,0,19,7,19,17r0,124v-6,31,-62,17,-94,17v-9,0,-19,-7,-18,-17r0,-124xm92,-124r-38,0r0,91r38,0r0,-91","w":143},"\u02dd":{"d":"30,-178r24,0r-12,54r-24,0xm66,-178r24,0r-12,54r-24,0","w":107},"`":{"d":"53,-124r-23,0r-13,-54r24,0","w":75},"\u201c":{"d":"53,-124v2,-25,-10,-60,24,-54r0,54r-24,0xm17,-124v2,-25,-10,-60,24,-54r0,54r-24,0","w":92},"\u201d":{"d":"42,-178v-2,25,10,60,-24,54r0,-54r24,0xm78,-178v-2,25,10,60,-24,54r0,-54r24,0","w":92},"\u2019":{"d":"38,-178v-2,25,10,60,-24,54r0,-54r24,0","w":53},"\u2018":{"d":"18,-124v2,-24,-10,-60,24,-54r0,54r-24,0","w":56},"\u00b4":{"d":"53,-178r-13,54r-23,0r11,-54r25,0","w":71},"#":{"d":"119,-87r-15,0r0,15r15,0r0,30r-15,0r0,15r-30,0r0,-15r-15,0r0,15r-30,0r0,-15r-15,0r0,-30r15,0r0,-15r-15,0r0,-31r15,0r0,-14r30,0r0,14r15,0r0,-14r30,0r0,14r15,0r0,31xm74,-72r0,-15r-15,0r0,15r15,0","w":136},"&":{"d":"132,-157v23,-2,18,30,18,53r-37,0r0,-20r-45,0r0,28r34,0r0,34r-34,0r0,29r45,0r0,-20r54,0r0,22r-17,0v9,51,-61,31,-100,31v-9,0,-19,-7,-19,-17r0,-124v8,-30,67,-12,101,-16","w":181},"\"":{"d":"32,-124r0,-54r24,0r0,54r-24,0xm68,-124r0,-54r24,0r0,54r-24,0","w":123},"'":{"d":"32,-124r0,-54r24,0r0,54r-24,0","w":92,"k":{"S":34}},"\ufb02":{"d":"230,-34r0,34r-107,0r0,-124r-64,0r0,29r45,0r0,33r-45,0r0,62r-37,0r0,-158r138,0r0,124r70,0","w":244},"\u02d9":{"d":"0,-206r27,0r0,28r-27,0r0,-28","w":57},"\u02c7":{"d":"68,-217r0,27r-34,12r-34,-12r0,-27r34,12","w":91},"\\":{"d":"114,0r-39,0r-47,-158r39,0","w":140},"\u00a9":{"d":"54,-115v-8,10,-35,1,-50,4v-10,-10,-1,-40,-4,-57v11,-6,42,-4,54,0r0,53xm7,-118r39,0r0,-47r-39,0r0,47xm39,-147v3,-13,-9,-10,-20,-10v-9,2,-2,19,-4,28v3,5,29,7,24,-7v-8,-2,-6,6,-17,4r0,-18v8,-2,7,4,17,3","w":66},"\u2122":{"d":"49,-149v3,-6,8,-10,19,-8r0,31r-9,0r0,-24v-4,4,-4,14,-13,13r-8,-13r0,24r-8,0r0,-31v11,-2,16,2,19,8xm25,-157r0,7r-8,0r0,24r-9,0r0,-24r-8,0r0,-7r25,0","w":78},"\u00ae":{"d":"44,-126v-13,-6,3,-22,-8,-31r-21,0r0,31r7,0v0,-5,-1,-12,6,-10v4,5,5,12,16,10xm22,-150v6,0,12,-1,10,7v-6,0,-12,1,-10,-7xm55,-115v-8,10,-36,1,-51,4v-10,-10,-1,-40,-4,-57v10,-6,43,-4,55,0r0,53xm7,-118r41,0r0,-47r-41,0r0,47","w":76},"\u00b0":{"d":"35,-128v-5,5,-29,5,-35,0v2,-10,-5,-27,4,-30v10,2,28,-4,31,4r0,26xm8,-132r19,0r0,-19r-19,0r0,19","w":43},"\u00b2":{"d":"101,-157v33,4,13,63,18,95r-82,0r0,29r82,0r0,33r-119,0v5,-33,-15,-95,19,-95r63,0r0,-28r-82,0r0,-34r101,0"},"\u00b3":{"d":"93,-157v9,0,19,7,19,16r0,124v-9,33,-76,11,-112,17r0,-33r74,0r0,-29r-74,0r0,-33r74,0r0,-29r-74,0r0,-33r93,0"},"\u00b9":{"d":"90,-157r0,157r-37,0r0,-124r-39,0r0,-33r76,0","w":130},"\u00ba":{"d":"152,-17v1,10,-9,17,-18,17r-90,0v-9,0,-19,-7,-19,-17r0,-124v10,-31,73,-10,109,-16v9,0,19,6,18,16r0,124xm62,-33r53,0r0,-91r-53,0r0,91","w":177},"\u2212":{"d":"140,-94r0,30r-140,0r0,-30r140,0","w":167},"\u2026":{"d":"55,-33r0,33r-31,0r0,-33r31,0xm81,-33r30,0r0,33r-30,0r0,-33xm138,-33r30,0r0,33r-30,0r0,-33","w":190},"\u2044":{"d":"111,-243r-47,158r-39,0r47,-158r39,0","w":120},"\u00a8":{"d":"0,-178r0,-27r27,0r0,27r-27,0xm44,-178r0,-27r27,0r0,27r-27,0","w":92},"\u00b7":{"d":"30,-95r0,33r-30,0r0,-33r30,0","w":50},"\u00b1":{"d":"105,-115r0,30r-28,0r0,29r-31,0r0,-29r-28,0r0,-30r28,0r0,-29r31,0r0,29r28,0xm18,-44r87,0r0,30r-87,0r0,-30","w":126},"?":{"d":"17,-34r37,0r0,34r-37,0r0,-34xm108,-141v-3,29,12,78,-18,78r-36,0r0,13r-37,0v-1,-22,-3,-46,19,-46r35,0r0,-28r-54,0r0,-34v32,5,87,-14,91,17","w":106},"B":{"d":"139,-17v0,10,-10,17,-19,17r-106,0r0,-157r106,0v9,0,19,7,19,17r0,123xm50,-123r0,28r52,0r0,-28r-52,0xm102,-33r0,-29r-52,0r0,29r52,0","w":149,"k":{"Q":-3}},"\u00c3":{"d":"130,0r-12,-37r-58,0r-13,37r-38,0r51,-157r57,0r52,157r-39,0xm89,-124r-18,53r36,0xm123,-217r0,27r-23,13r-23,-13r-22,13r0,-28r22,-12r23,12","w":177},"A":{"d":"123,0r-12,-37r-58,0r-13,37r-38,0r52,-157r56,0r52,157r-39,0xm82,-124r-18,53r36,0","k":{"Y":22,"T":11,"S":3,"N":-3}},"a":{"d":"123,0r-12,-37r-58,0r-13,37r-38,0r52,-157r56,0r52,157r-39,0xm82,-124r-18,53r36,0"},"b":{"d":"139,-17v0,10,-10,17,-19,17r-106,0r0,-157r106,0v9,0,19,7,19,17r0,123xm50,-123r0,28r52,0r0,-28r-52,0xm102,-33r0,-29r-52,0r0,29r52,0","w":149},"c":{"d":"112,-157v23,-3,18,30,18,53r-37,0r0,-19r-45,0r0,90r45,0r0,-20r37,0v0,23,6,54,-18,53r-82,0v-10,0,-18,-7,-18,-17r0,-123v6,-33,67,-13,100,-17","w":140},"d":{"d":"139,-17v1,10,-9,17,-18,17r-107,0r0,-157r107,0v9,0,19,7,18,17r0,123xm102,-123r-51,0r0,90r51,0r0,-90","w":151},"e":{"d":"54,-123r0,28r45,0r0,33r-45,0r0,29r81,0r0,33r-118,0r0,-157r118,0r0,34r-81,0","w":146},"f":{"d":"53,-123r0,28r45,0r0,33r-45,0r0,62r-36,0r0,-157r118,0r0,34r-82,0","w":143},"g":{"d":"120,-158v23,0,18,31,18,54r-37,0r0,-20r-53,0r0,91r53,0r0,-20r-23,0r0,-34r60,0v-4,31,13,87,-18,87r-90,0v-9,0,-19,-7,-18,-17r0,-124v-1,-10,9,-17,18,-17r90,0","w":146},"h":{"d":"136,-157r0,157r-37,0r0,-53r-51,0r0,53r-37,0r0,-157r37,0r0,71r51,0r0,-71r37,0","w":146},"i":{"d":"60,0r-37,0r0,-157r37,0r0,157","w":78},"j":{"d":"30,0v-31,-2,-14,-54,-18,-87r37,0r0,54r44,0r0,-124r38,0r0,140v-7,32,-67,12,-101,17","w":143},"k":{"d":"111,0r-31,-45r-31,45r-32,0r0,-157r37,0r0,75r51,-75r53,0r-52,75r54,82r-49,0","w":174},"l":{"d":"52,-33r69,0r0,33r-107,0r0,-157r38,0r0,124","w":132},"m":{"d":"182,-157r0,157r-37,0r0,-123r-35,66r-24,0r-35,-66r0,123r-37,0r0,-157r58,0r26,40r27,-40r57,0","w":194},"n":{"d":"154,0r-32,0r-71,-107r0,107r-36,0r0,-157r53,0r49,75r0,-75r37,0r0,157","w":165},"o":{"d":"147,-17v1,10,-9,17,-18,17r-90,0v-9,0,-19,-7,-18,-17r0,-124v-1,-10,9,-16,18,-16r90,0v9,0,19,6,18,16r0,124xm58,-33r52,0r0,-91r-52,0r0,91","w":165},"p":{"d":"143,-141v-4,31,14,87,-18,87r-70,0r0,54r-38,0r0,-157r108,0v9,0,19,6,18,16xm106,-124r-51,0r0,37r51,0r0,-37","w":157},"q":{"d":"144,-17v1,9,-8,15,-15,17r16,24r-43,0r-16,-24v-26,-3,-69,10,-69,-17r0,-124v-1,-10,10,-16,19,-16r90,0v9,0,19,6,18,16r0,124xm107,-33r0,-91r-53,0r0,91r53,0"},"r":{"d":"143,-141v-4,31,14,85,-18,87r36,54r-44,0r-36,-54r-26,0r0,54r-37,0r0,-157r107,0v9,0,19,6,18,16xm55,-87r51,0r0,-37r-51,0r0,37"},"s":{"d":"128,-80v0,29,12,80,-18,80r-93,0r0,-33r74,0r0,-30v-28,-3,-71,10,-74,-17v3,-29,-12,-78,19,-78r92,0r0,33r-73,0r0,28v27,3,73,-11,73,17","w":140},"t":{"d":"121,-124r-36,0r0,124r-37,0r0,-124r-36,0r0,-33r109,0r0,33","w":132},"u":{"d":"145,-17v1,10,-9,17,-18,17r-91,0v-9,0,-19,-7,-18,-17r0,-141r37,0r0,125r53,0r0,-125r37,0r0,141","w":163},"v":{"d":"157,-157r-47,157r-57,0r-47,-157r38,0r37,123r38,-123r38,0"},"w":{"d":"17,0r0,-157r37,0r0,123r35,-66r24,0r35,66r0,-123r37,0r0,157r-58,0r-26,-41r-27,41r-57,0","w":199},"x":{"d":"114,-79r55,79r-49,0r-30,-43r-30,43r-48,0r54,-79r-54,-78r48,0r30,43r30,-43r49,0","w":180},"y":{"d":"108,-72r0,72r-37,0r0,-72r-59,-85r51,0r27,38r26,-38r51,0","w":174},"z":{"d":"125,-157r0,29r-66,95r66,0r0,33r-113,0r0,-35r63,-89r-63,0r0,-33r113,0","w":137},"~":{"d":"114,-177r0,37r-31,17r-31,-17r-30,17r0,-38r30,-16r31,16","w":138}}});


/*================================================
 Cufon - Futura Font
================================================*/
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  Copyright (c) 1987, 1991, 1993 Fundicion Tipografica Neufville S. A.
 This
 * record material and the data recorded thereon is the property of
 Fundicion
 * Tipografica Neufville S. A. and Adobe Systems Incorporated, 
 or its licensors,
 * and may not be reproduced, used, displayed, modified,
 disclosed or transferred
 * in any manner without the express written
 approval of Fundicion Tipografica
 * Neufville S. A. and Adobe Systems
 Incorporated.
 */
Cufon.registerFont({"w":246,"face":{"font-family":"Futura","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"6","bbox":"-62 -374 519 95","underline-thickness":"18","underline-position":"-36","stemh":"57","stemv":"66","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":123},"!":{"d":"69,-77v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42xm35,-92r0,-179r68,0r0,179r-68,0","w":138},"\"":{"d":"17,-271r61,0r-10,119r-41,0xm102,-271r61,0r-10,119r-41,0","w":180},"#":{"d":"95,-261r39,0r-14,73r36,0r14,-73r38,0r-14,73r28,0r0,40r-35,0r-8,45r33,0r0,41r-42,0r-12,62r-38,0r12,-62r-37,0r-11,62r-39,0r12,-62r-33,0r0,-41r41,0r9,-45r-35,0r0,-40r42,0xm112,-148r-9,45r37,0r9,-45r-37,0"},"$":{"d":"24,-31r30,-55v17,15,42,31,65,31v15,0,34,-9,34,-27v0,-20,-29,-24,-57,-34v-28,-10,-56,-26,-56,-70v0,-42,29,-82,73,-85r0,-44r34,0r0,44v23,2,46,8,65,21r-26,52v-13,-10,-29,-18,-46,-18v-16,0,-31,7,-31,21v0,17,22,24,35,28v41,14,78,28,78,78v0,50,-28,76,-75,88r0,45r-34,0r0,-43v-36,-1,-67,-14,-89,-32"},"%":{"d":"81,-275v40,0,74,23,74,66v0,44,-33,67,-74,67v-41,0,-74,-23,-74,-67v0,-43,34,-66,74,-66xm81,-239v-17,0,-31,14,-31,31v0,17,14,30,31,30v17,0,31,-13,31,-30v0,-17,-14,-31,-31,-31xm237,-271r35,0r-158,271r-35,0xm270,-129v40,0,74,23,74,66v0,44,-33,67,-74,67v-41,0,-74,-23,-74,-67v0,-43,34,-66,74,-66xm270,-93v-17,0,-31,13,-31,30v0,17,14,31,31,31v17,0,31,-14,31,-31v0,-17,-14,-30,-31,-30","w":351},"&":{"d":"155,-67r-43,-46v-30,9,-33,58,5,57v13,0,27,-5,38,-11xm141,-172v26,-8,39,-56,2,-59v-35,3,-22,45,-2,59xm217,0r-23,-25v-57,47,-178,47,-180,-46v-1,-44,29,-62,64,-78v-10,-17,-25,-28,-25,-55v0,-47,41,-75,85,-75v43,0,84,28,84,74v0,34,-22,51,-50,65r34,36v13,-12,26,-24,36,-38r40,38v-13,13,-24,28,-38,40r61,64r-88,0","w":305},"\u2019":{"d":"66,-271r61,0r-66,119r-42,0","w":133},"(":{"d":"70,-284r39,22v-57,98,-55,228,0,326r-39,22v-71,-107,-69,-264,0,-370","w":126},")":{"d":"18,-262r39,-22v70,106,71,263,0,370r-39,-22v55,-98,56,-228,0,-326","w":126},"*":{"d":"71,-271r32,0r-2,38r32,-20r16,27r-34,18r34,19r-16,27r-32,-21r2,37r-33,0r2,-36r-30,19r-16,-27r32,-18r-34,-18r17,-28r31,20","w":173},"+":{"d":"96,-120r0,-65r54,0r0,65r66,0r0,54r-66,0r0,66r-54,0r0,-66r-65,0r0,-54r65,0"},",":{"d":"55,-69r61,0r-66,120r-42,0","w":123},"-":{"d":"19,-143r103,0r0,54r-103,0r0,-54","w":141},".":{"d":"62,-77v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42","w":123},"\/":{"d":"147,-299r52,0r-138,332r-51,0","w":208},"0":{"d":"123,-282v157,2,156,290,0,293v-155,-3,-155,-291,0,-293xm123,-220v-36,0,-45,58,-45,84v0,26,9,85,45,85v36,0,45,-59,45,-85v0,-26,-9,-84,-45,-84"},"1":{"d":"97,-212r-39,0r0,-59r109,0r0,271r-70,0r0,-212"},"2":{"d":"141,-60r89,0r0,60r-218,0r111,-121v16,-17,31,-41,31,-66v0,-17,-12,-35,-31,-35v-23,0,-34,21,-29,44r-77,0v2,-62,41,-104,105,-104v57,0,105,37,105,96v0,61,-53,92,-86,126"},"3":{"d":"26,-193v6,-54,42,-85,101,-89v75,-6,119,94,58,134v29,8,45,41,45,69v0,92,-130,117,-187,59v-16,-17,-32,-44,-31,-68r72,0v0,22,16,38,38,38v22,0,38,-14,38,-36v0,-25,-25,-42,-50,-34r0,-47v23,2,38,-8,38,-30v0,-17,-11,-28,-27,-28v-18,0,-29,14,-29,32r-66,0"},"4":{"d":"203,-110r33,0r0,54r-33,0r0,56r-65,0r0,-56r-132,0r0,-45r105,-170r92,0r0,161xm138,-110r-1,-105r-64,105r65,0"},"5":{"d":"223,-85v3,92,-129,123,-202,71r10,-66v21,19,48,31,76,31v22,0,43,-16,43,-40v0,-52,-71,-54,-111,-35r23,-147r141,0r0,59r-94,0r-4,31v68,-14,117,32,118,96","w":248},"6":{"d":"122,11v-58,0,-115,-42,-114,-98v3,-77,66,-132,102,-184r80,0r-76,92v64,-29,125,23,125,87v0,67,-55,103,-117,103xm122,-45v25,0,43,-20,43,-45v0,-24,-18,-44,-43,-44v-24,0,-45,20,-45,44v0,25,21,45,45,45"},"7":{"d":"139,-212r-113,0r0,-59r222,0r-155,271r-78,0"},"8":{"d":"123,-233v-17,0,-29,13,-29,30v0,17,12,31,29,31v17,0,30,-14,30,-31v0,-17,-13,-30,-30,-30xm123,-114v-18,0,-32,15,-32,34v0,18,14,33,32,33v18,0,33,-15,33,-33v0,-19,-15,-34,-33,-34xm31,-205v0,-103,185,-103,185,0v0,29,-18,54,-43,62v32,11,54,36,54,72v0,56,-57,82,-104,82v-47,0,-103,-26,-103,-82v0,-36,22,-61,54,-72v-25,-8,-43,-33,-43,-62"},"9":{"d":"125,-282v59,0,116,42,114,98v-3,77,-66,132,-102,184r-80,0r77,-92v-65,29,-126,-24,-126,-88v0,-67,55,-102,117,-102xm125,-226v-25,0,-43,19,-43,44v0,25,18,45,43,45v25,0,45,-20,45,-45v0,-25,-20,-44,-45,-44"},":":{"d":"62,-77v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42xm62,-198v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42","w":123},";":{"d":"50,-69r61,0r-66,120r-42,0xm78,-198v23,0,43,19,43,42v0,23,-20,42,-43,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42","w":123},"<":{"d":"36,-71r0,-43r176,-66r0,54r-99,34r99,33r0,54"},"=":{"d":"31,-163r185,0r0,54r-185,0r0,-54xm31,-76r185,0r0,54r-185,0r0,-54"},">":{"d":"212,-114r0,43r-176,66r0,-54r98,-34r-98,-33r0,-54"},"?":{"d":"104,-279v48,-1,94,38,94,85v0,41,-28,66,-65,78r0,25r-66,0r0,-70v27,7,61,-4,62,-33v0,-15,-12,-27,-27,-27v-17,0,-25,12,-25,27r-72,0v0,-55,48,-85,99,-85xm101,-77v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42","w":214},"@":{"d":"136,-169v-38,-2,-51,73,-8,75v39,1,49,-75,8,-75xm264,-163v0,54,-36,111,-78,108v-10,0,-19,-9,-22,-21v-30,41,-106,15,-106,-46v0,-64,74,-118,117,-64r4,-19r34,0r-18,93v-2,9,-6,25,4,24v13,-1,34,-31,36,-62v3,-61,-42,-95,-97,-95v-60,0,-102,46,-102,109v0,94,101,132,173,95r29,24v-25,13,-58,24,-97,24v-77,0,-139,-61,-139,-143v0,-81,60,-143,137,-143v65,0,125,52,125,116","w":266},"A":{"d":"189,-47r-97,0r-19,47r-74,0r104,-271r77,0r102,271r-75,0xm170,-101r-29,-87r-29,87r58,0","w":281},"B":{"d":"94,-112r0,58v27,0,65,4,65,-29v0,-36,-38,-28,-65,-29xm230,-76v0,96,-115,74,-207,76r0,-271v82,3,184,-20,181,70v0,24,-7,45,-29,56v39,5,55,31,55,69xm94,-217r0,52v23,0,46,0,46,-26v0,-27,-24,-26,-46,-26","w":243},"C":{"d":"9,-135v0,-100,109,-178,208,-130r0,85v-37,-55,-134,-29,-134,45v0,73,95,98,134,45r0,85v-102,42,-208,-31,-208,-130","w":237},"D":{"d":"23,0r0,-271r100,0v76,0,138,59,138,135v0,76,-63,136,-138,136r-100,0xm94,-212r0,152v54,3,94,-17,94,-76v0,-55,-38,-80,-94,-76","w":270},"E":{"d":"177,-212r-83,0r0,46r79,0r0,59r-79,0r0,47r83,0r0,60r-154,0r0,-271r154,0r0,59","w":198},"F":{"d":"179,-212r-85,0r0,46r77,0r0,59r-77,0r0,107r-71,0r0,-271r156,0r0,59","w":195},"G":{"d":"294,-152v7,87,-56,161,-140,161v-85,0,-145,-58,-145,-143v0,-88,61,-146,148,-146v56,0,99,25,122,76r-67,28v-10,-26,-31,-44,-59,-44v-93,2,-93,170,1,171v31,0,54,-16,57,-47r-57,0r0,-56r140,0","w":303},"H":{"d":"94,-167r101,0r0,-104r71,0r0,271r-71,0r0,-111r-101,0r0,111r-71,0r0,-271r71,0r0,104","w":289},"I":{"d":"94,-271r0,271r-71,0r0,-271r71,0","w":116},"J":{"d":"84,-271r70,0v-8,116,37,281,-90,278v-30,0,-53,-15,-69,-40r40,-43v8,11,20,23,29,23v21,0,20,-25,20,-40r0,-178","w":176},"K":{"d":"180,-271r87,0r-108,128r118,143r-92,0r-91,-118r0,118r-71,0r0,-271r71,0r0,112","w":272},"L":{"d":"94,-271r0,211r84,0r0,60r-155,0r0,-271r71,0","w":178},"M":{"d":"7,0r46,-271r69,0r55,145r59,-145r70,0r41,271r-71,0r-20,-156r-65,156r-28,0r-63,-156r-23,156r-70,0","w":353},"N":{"d":"23,0r0,-271r71,0r130,166r0,-166r70,0r0,271r-70,0r-130,-166r0,166r-71,0","w":317},"O":{"d":"159,-280v78,0,151,57,151,139v0,88,-64,150,-151,150v-87,0,-150,-62,-150,-150v0,-82,72,-139,150,-139xm159,-212v-42,0,-76,35,-76,72v0,47,34,81,76,81v42,0,77,-34,77,-81v0,-37,-35,-72,-77,-72","w":319},"P":{"d":"23,0r0,-271v99,0,207,-15,207,89v0,80,-54,97,-136,92r0,90r-71,0xm94,-215r0,68v31,0,62,4,62,-33v0,-38,-30,-35,-62,-35","w":237},"Q":{"d":"204,-114r20,19v33,-50,-7,-118,-64,-117v-42,0,-77,35,-77,72v0,54,46,93,98,77r-43,-43xm320,7r-64,10r-22,-26v-101,53,-225,-16,-225,-132v0,-82,72,-139,150,-139v85,0,151,57,151,145v0,36,-12,67,-35,95","w":319},"R":{"d":"163,-111r86,111r-88,0r-67,-104r0,104r-71,0r0,-271v94,0,202,-16,200,83v0,37,-21,70,-60,77xm94,-217r0,67v27,0,55,-2,55,-34v0,-32,-28,-33,-55,-33","w":244},"S":{"d":"211,-91v0,100,-129,125,-200,67r30,-57v18,15,39,28,63,28v17,0,34,-8,34,-27v0,-20,-28,-27,-43,-31v-44,-13,-73,-24,-73,-77v0,-92,110,-112,178,-68r-28,54v-13,-11,-30,-18,-47,-18v-13,0,-30,8,-30,23v0,23,30,25,49,31v38,11,67,31,67,75","w":221},"T":{"d":"131,-212r0,212r-71,0r0,-212r-58,0r0,-59r187,0r0,59r-58,0","w":191},"U":{"d":"188,-271r70,0r0,152v0,35,0,71,-28,96v-47,42,-133,42,-180,0v-28,-25,-28,-61,-28,-96r0,-152r70,0r0,142v0,35,3,74,48,74v45,0,48,-39,48,-74r0,-142","w":280},"V":{"d":"71,-271r66,164r66,-164r76,0r-116,271r-54,0r-114,-271r76,0","w":273},"W":{"d":"68,-271r48,175r57,-175r56,0r54,175r51,-175r74,0r-87,271r-72,0r-48,-157r-54,157r-71,0r-81,-271r73,0","w":402},"X":{"d":"103,-145r-86,-126r86,0r42,70r41,-70r87,0r-87,126r101,145r-85,0r-57,-89r-63,89r-85,0","w":284},"Y":{"d":"93,-130r-100,-141r85,0r51,73r50,-73r85,0r-100,141r0,130r-71,0r0,-130","w":257},"Z":{"d":"123,-60r114,0r0,60r-233,0r128,-212r-106,0r0,-59r225,0","w":254},"[":{"d":"69,-246r0,294r38,0r0,38r-88,0r0,-370r88,0r0,38r-38,0","w":126},"\\":{"d":"10,-299r52,0r137,299r-51,0","w":208},"]":{"d":"57,48r0,-294r-38,0r0,-38r88,0r0,370r-88,0r0,-38r38,0","w":126},"^":{"d":"78,-122r-41,-25r65,-135r43,0r65,135r-41,25r-46,-97"},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"\u2018":{"d":"68,-152r-61,0r66,-119r42,0","w":133},"a":{"d":"118,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm224,-185r0,185r-66,0v-1,-6,2,-16,-1,-21v-49,63,-149,5,-149,-72v0,-77,95,-131,150,-74r0,-18r66,0","w":245},"b":{"d":"19,0r0,-299r66,0r0,132v54,-57,150,-3,150,74v0,77,-99,134,-150,72r0,21r-66,0xm125,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42","w":245},"c":{"d":"155,-180r0,55v-28,-26,-79,-10,-79,32v0,42,51,60,79,33r0,56v-68,31,-147,-14,-147,-86v0,-74,79,-124,147,-90","w":173},"d":{"d":"161,0v-1,-6,2,-16,-1,-21v-49,63,-149,6,-149,-72v0,-78,94,-131,150,-74r0,-132r65,0r0,299r-65,0xm121,-134v-27,0,-43,19,-43,42v0,23,16,41,43,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42","w":245},"e":{"d":"75,-119r75,0v-5,-38,-70,-39,-75,0xm110,-191v66,0,103,42,101,110r-138,0v-6,43,55,55,73,24r63,0v-10,44,-52,63,-94,63v-61,0,-107,-34,-107,-98v0,-62,42,-99,102,-99","w":219},"f":{"d":"28,-185v-12,-77,41,-135,111,-111r0,57v-20,-12,-49,-10,-45,24r0,30r45,0r0,54r-45,0r0,131r-66,0r0,-131r-23,0r0,-54r23,0","w":139},"g":{"d":"86,22v3,11,17,18,31,18v38,0,43,-27,42,-62v-52,58,-150,10,-150,-69v0,-78,97,-135,150,-74r0,-20r65,0r0,167v0,78,-39,110,-107,110v-42,0,-99,-21,-105,-70r74,0xm119,-135v-27,0,-42,18,-42,41v0,23,15,42,42,42v27,0,42,-19,42,-42v0,-23,-15,-41,-42,-41","w":243},"h":{"d":"22,-299r65,0r1,138v36,-55,128,-31,128,48r0,113r-65,0r0,-95v0,-22,-4,-44,-30,-44v-56,0,-27,87,-34,139r-65,0r0,-299","w":237},"i":{"d":"87,-185r0,185r-65,0r0,-185r65,0xm54,-292v20,0,37,16,37,36v0,20,-17,37,-37,37v-20,0,-36,-17,-36,-37v0,-20,16,-36,36,-36","w":108},"j":{"d":"87,-185r0,277r-65,0r0,-277r65,0xm54,-292v20,0,37,16,37,36v0,20,-17,37,-37,37v-20,0,-36,-17,-36,-37v0,-20,16,-36,36,-36","w":108},"k":{"d":"87,-299r0,181r68,-67r90,0r-93,86r99,99r-92,0r-72,-75r0,75r-65,0r0,-299r65,0","w":247},"l":{"d":"87,-299r0,299r-65,0r0,-299r65,0","w":108},"m":{"d":"87,-185v1,7,-2,18,1,23v28,-43,98,-38,121,6v13,-23,38,-35,63,-35v90,-1,57,111,63,191r-66,0r0,-88v0,-19,1,-51,-27,-51v-30,0,-31,29,-31,51r0,88r-66,0r0,-88v0,-21,0,-52,-29,-52v-29,0,-29,31,-29,52r0,88r-65,0r0,-185r65,0","w":356},"n":{"d":"87,-185v1,7,-2,18,1,24v15,-22,33,-30,59,-30v93,-2,65,107,69,191r-65,0r0,-90v0,-18,2,-49,-30,-49v-57,0,-26,87,-34,139r-65,0r0,-185r65,0","w":237},"o":{"d":"119,-191v59,0,111,36,111,99v0,63,-52,98,-111,98v-59,0,-111,-35,-111,-98v0,-63,52,-99,111,-99xm119,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42","w":238},"p":{"d":"85,-185v1,6,-2,16,1,21v49,-63,149,-5,149,72v0,77,-95,131,-150,74r0,110r-66,0r0,-277r66,0xm125,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42","w":245},"q":{"d":"226,-185r0,277r-65,0r0,-110v-55,57,-150,4,-150,-74v0,-78,98,-134,150,-72r0,-21r65,0xm121,-134v-27,0,-43,19,-43,42v0,23,16,41,43,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42","w":245},"r":{"d":"87,-185v1,10,-2,23,1,31v16,-26,37,-35,72,-33r0,63v-39,-18,-73,5,-73,49r0,75r-65,0r0,-185r65,0","w":163},"s":{"d":"166,-179r-22,42v-16,-7,-49,-18,-56,3v0,13,20,15,29,17v31,6,54,20,54,54v0,79,-108,83,-162,48r24,-46v13,9,36,19,52,19v8,0,20,-4,20,-14v0,-14,-20,-16,-41,-21v-21,-5,-41,-15,-41,-48v2,-68,87,-79,143,-54","w":184},"t":{"d":"93,-131r0,131r-65,0r0,-131r-22,0r0,-54r22,0r0,-55r65,0r0,55r37,0r0,54r-37,0","w":129},"u":{"d":"21,-185r65,0r0,99v0,23,6,40,33,40v58,0,25,-88,33,-139r65,0r0,112v0,61,-43,79,-98,79v-55,0,-98,-18,-98,-79r0,-112","w":237},"v":{"d":"68,-185r44,95r44,-95r74,0r-97,185r-42,0r-96,-185r73,0","w":224},"w":{"d":"67,-185r46,100r47,-100r39,0r46,100r47,-100r72,0r-97,185r-42,0r-46,-101r-45,101r-43,0r-96,-185r72,0","w":358},"x":{"d":"87,-100r-75,-85r83,0r33,38r33,-38r85,0r-76,85r92,100r-86,0r-48,-55r-47,55r-86,0","w":256},"y":{"d":"84,-25r-89,-160r75,0r50,95r48,-95r74,0r-148,277r-73,0","w":235},"z":{"d":"112,-54r78,0r0,54r-187,0r87,-130r-76,0r0,-55r185,0","w":201},"{":{"d":"13,-82r0,-37v7,0,25,2,25,-19r0,-91v7,-55,30,-58,76,-55r0,43v-63,-8,10,136,-60,141v11,1,34,4,34,42r0,80v-3,13,7,24,26,21r0,43v-46,2,-76,1,-76,-54r0,-91v0,-25,-18,-23,-25,-23","w":126},"|":{"d":"131,-283r0,360r-54,0r0,-360r54,0","w":208},"}":{"d":"114,-119r0,37v-7,0,-25,-2,-25,23r0,91v-7,54,-30,57,-76,54r0,-43v47,5,18,-62,26,-101v0,-40,25,-39,34,-43v-11,-2,-34,-7,-34,-38r0,-81v3,-13,-7,-24,-26,-21r0,-43v46,-2,76,-1,76,55r0,91v0,21,18,19,25,19","w":126},"~":{"d":"81,-142v29,-1,58,37,85,38v10,0,18,-20,22,-30r41,35v-13,21,-33,56,-63,56v-33,0,-60,-38,-84,-38v-9,0,-19,18,-24,30r-40,-35v15,-19,33,-56,63,-56"},"\u00a1":{"d":"69,-192v23,0,42,20,42,43v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-43,42,-43xm35,-92r68,0r0,179r-68,0r0,-179","w":138},"\u00a2":{"d":"142,-4r0,-35v-50,-2,-91,-47,-91,-97v0,-54,38,-93,91,-98r0,-33r33,0r0,35r21,6r0,59v-25,-28,-77,-10,-77,30v0,39,51,59,77,31r0,58v-7,3,-14,5,-21,6r0,38r-33,0"},"\u00a3":{"d":"46,-135v-41,-67,19,-141,92,-141v71,0,99,31,100,102r-70,0v3,-27,-10,-47,-33,-47v-44,0,-39,60,-19,86r56,0r0,27r-51,0v4,12,5,35,0,48v21,7,71,30,76,-4r43,0v-3,40,-24,70,-66,70v-32,0,-63,-19,-95,-19v-9,0,-20,3,-23,13r-47,0v6,-31,28,-64,62,-64v7,-15,3,-31,-6,-44r-58,0r0,-27r39,0"},"\u2044":{"d":"96,-271r35,0r-157,271r-36,0","w":69},"\u00a5":{"d":"228,-161r-51,0r-20,31r71,0r0,27r-71,0r0,103r-67,0r0,-103r-72,0r0,-27r72,0r-21,-31r-51,0r0,-27r33,0r-55,-83r80,0r47,73r48,-73r80,0r-56,83r33,0r0,27"},"\u0192":{"d":"170,-182r39,0r-5,28r-39,0v-18,91,-19,226,-129,219r-38,-3r11,-59v28,6,53,5,62,-22v14,-41,19,-90,28,-135r-31,0r4,-28r32,0v6,-58,25,-119,88,-117v16,0,32,3,46,12r-10,57v-8,-6,-18,-11,-28,-11v-28,2,-25,35,-30,59"},"\u00a7":{"d":"103,-97r60,30v31,-45,-49,-57,-76,-77v-22,15,-6,42,16,47xm203,-212r-57,0v-2,-25,-44,-31,-46,-3v7,32,51,34,74,52v30,15,53,28,53,65v0,23,-12,43,-30,57v49,53,-9,124,-76,124v-50,0,-103,-27,-100,-84r66,0v-4,35,61,47,63,9v-21,-56,-130,-41,-129,-117v0,-23,13,-45,30,-59v-42,-47,6,-111,66,-111v43,0,84,19,86,67"},"\u00a4":{"d":"18,-55r23,-23v-23,-29,-24,-88,0,-117r-23,-25r22,-22r24,24v30,-24,89,-26,118,0r24,-24r23,22r-23,23v25,30,27,89,0,118r23,24r-21,23r-24,-23v-29,25,-91,25,-120,-1r-24,24xm125,-183v-27,0,-48,21,-48,48v0,27,21,45,48,45v27,0,47,-18,47,-45v0,-27,-20,-48,-47,-48"},"'":{"d":"14,-271r62,0r-10,119r-42,0","w":90},"\u201c":{"d":"160,-152r-61,0r66,-119r42,0xm68,-152r-61,0r66,-119r42,0","w":226},"\u00ab":{"d":"152,-115r46,62r-37,26r-62,-88r62,-89r36,25xm62,-115r46,62r-37,26r-62,-88r62,-89r36,25","w":217},"\u2039":{"d":"62,-115r46,62r-37,26r-62,-88r62,-89r36,25","w":127},"\u203a":{"d":"19,-53r47,-62r-46,-64r36,-25r62,89r-62,88","w":127},"\ufb01":{"d":"26,-185v-12,-77,41,-135,111,-111r0,57v-20,-12,-50,-10,-46,24r0,30r46,0r0,54r-46,0r0,131r-65,0r0,-131r-23,0r0,-54r23,0xm223,-185r0,185r-66,0r0,-185r66,0xm190,-292v20,0,37,16,37,36v0,20,-17,37,-37,37v-20,0,-37,-17,-37,-37v0,-20,17,-36,37,-36","w":244},"\ufb02":{"d":"227,-299r0,299r-66,0r0,-299r66,0xm26,-185v-12,-77,41,-135,111,-111r0,57v-20,-12,-50,-10,-46,24r0,30r46,0r0,54r-46,0r0,131r-65,0r0,-131r-23,0r0,-54r23,0","w":248},"\u2013":{"d":"0,-143r180,0r0,54r-180,0r0,-54","w":180},"\u2020":{"d":"94,-271r59,0r0,73r64,0r0,52r-64,0r0,211r-59,0r0,-211r-64,0r0,-52r64,0r0,-73"},"\u2021":{"d":"94,-271r60,0r0,66r63,0r0,52r-63,0r0,51r63,0r0,52r-63,0r0,114r-60,0r0,-114r-64,0r0,-52r64,0r0,-51r-64,0r0,-52r64,0r0,-66"},"\u00b7":{"d":"62,-134v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42","w":123},"\u00b6":{"d":"95,-271r135,0r0,32r-23,0r0,300r-37,0r0,-299r-33,0r0,299r-37,0r0,-165v-42,-4,-77,-22,-83,-78v-5,-44,36,-89,78,-89"},"\u2022":{"d":"124,-204v39,0,68,31,68,68v0,37,-29,68,-68,68v-39,0,-68,-31,-68,-68v0,-37,29,-68,68,-68"},"\u201a":{"d":"54,-69r61,0r-66,119r-42,0","w":121},"\u201e":{"d":"54,-69r61,0r-66,119r-42,0xm146,-69r61,0r-66,119r-42,0","w":213},"\u201d":{"d":"66,-271r61,0r-66,119r-42,0xm158,-271r61,0r-66,119r-42,0","w":226},"\u00bb":{"d":"19,-53r47,-62r-46,-64r36,-25r62,89r-62,88xm109,-53r46,-62r-45,-64r36,-25r62,89r-62,88","w":217},"\u2026":{"d":"180,-77v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42xm300,-77v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42xm60,-77v23,0,42,19,42,42v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-42,42,-42","w":360},"\u2030":{"d":"81,-275v40,0,74,23,74,66v0,44,-33,67,-74,67v-41,0,-74,-23,-74,-67v0,-43,34,-66,74,-66xm81,-239v-17,0,-31,14,-31,31v0,17,14,30,31,30v17,0,31,-13,31,-30v0,-17,-14,-31,-31,-31xm237,-271r35,0r-158,271r-35,0xm270,-129v40,0,74,23,74,66v0,44,-33,67,-74,67v-41,0,-74,-23,-74,-67v0,-43,34,-66,74,-66xm270,-93v-17,0,-31,13,-31,30v0,17,14,31,31,31v17,0,31,-14,31,-31v0,-17,-14,-30,-31,-30xm445,-129v40,0,74,23,74,66v0,44,-33,67,-74,67v-41,0,-75,-23,-75,-67v0,-43,35,-66,75,-66xm445,-93v-17,0,-31,13,-31,30v0,17,14,31,31,31v17,0,30,-14,30,-31v0,-17,-13,-30,-30,-30","w":525},"\u00bf":{"d":"110,95v-49,0,-94,-38,-94,-85v0,-41,28,-65,65,-77r0,-26r66,0r0,70v-28,-7,-60,5,-61,34v0,15,11,27,26,27v17,0,25,-13,25,-28r72,0v0,55,-48,85,-99,85xm113,-192v23,0,42,20,42,43v0,23,-19,42,-42,42v-23,0,-42,-19,-42,-42v0,-23,19,-43,42,-43","w":214},"`":{"d":"27,-266r40,-29r51,62r-29,21","w":144},"\u00b4":{"d":"118,-266r-62,54r-29,-21r51,-62","w":144},"\u02c6":{"d":"27,-239r78,-59r80,59r-28,30r-52,-40r-51,40","w":212},"\u02dc":{"d":"27,-222v-2,-29,14,-55,40,-56v25,-2,65,29,73,-1r31,0v-2,26,-16,57,-47,57v-22,0,-60,-30,-67,0r-30,0","w":197},"\u00af":{"d":"27,-271r163,0r0,39r-163,0r0,-39","w":217},"\u02d8":{"d":"27,-282r40,0v4,31,56,32,60,0r40,0v-2,40,-31,61,-70,61v-39,0,-68,-21,-70,-61","w":194},"\u02d9":{"d":"73,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":144},"\u00a8":{"d":"63,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm155,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":217},"\u02da":{"d":"27,-252v1,-57,110,-56,111,0v-1,57,-110,56,-111,0xm103,-252v-1,-21,-41,-21,-42,0v1,21,41,21,42,0","w":164},"\u00b8":{"d":"109,34r-54,51r-28,-17r47,-57","w":136},"\u02dd":{"d":"91,-293r-18,77r-33,0r5,-77r46,0xm154,-293r-18,77r-33,0r5,-77r46,0","w":194},"\u02db":{"d":"27,46v0,-25,22,-54,57,-45v-18,5,-33,43,-5,43v7,0,14,-3,20,-7r-8,33v-25,15,-64,6,-64,-24","w":126},"\u02c7":{"d":"27,-268r27,-30r51,40r52,-40r28,30r-80,59","w":212},"\u2014":{"d":"47,-143r266,0r0,54r-266,0r0,-54","w":360},"\u00c6":{"d":"169,-101r-29,-81r-31,81r60,0xm206,0r-18,-47r-98,0r-17,47r-74,0r104,-271r167,0r22,59r-90,0r17,46r89,0r22,59r-89,0r17,47r90,0r21,60r-163,0","w":369},"\u00aa":{"d":"75,-194v15,0,28,-12,28,-26v0,-14,-13,-25,-28,-25v-15,0,-27,11,-27,25v0,14,12,26,27,26xm101,-164v-1,-4,2,-10,-1,-12v-32,36,-102,2,-96,-44v-5,-47,63,-79,97,-44r0,-11r43,0r0,111r-43,0","w":147},"\u0141":{"d":"7,-84r0,-51r30,-19r0,-117r70,0r0,72r41,-26r0,52r-41,26r0,87r85,0r0,60r-155,0r0,-103","w":191},"\u00d8":{"d":"94,-99r104,-103v-64,-37,-146,35,-104,103xm227,-173r-106,103v61,40,143,-32,106,-103xm8,-14r32,-32v-19,-25,-31,-58,-31,-95v-2,-117,148,-178,240,-111r35,-34r28,29r-33,32v19,22,31,51,31,84v0,124,-145,191,-241,122r-33,33","w":319},"\u0152":{"d":"238,0r0,-30v-79,91,-229,7,-229,-106v0,-112,145,-192,229,-111r0,-24r152,0r0,59r-82,0r0,46r76,0r0,59r-76,0r0,47r82,0r0,60r-152,0xm159,-212v-42,0,-76,34,-76,76v0,42,34,77,76,77v42,0,75,-35,75,-77v0,-42,-33,-76,-75,-76","w":410},"\u00ba":{"d":"74,-279v39,0,72,21,72,59v0,38,-33,59,-72,59v-39,0,-72,-21,-72,-59v0,-38,33,-59,72,-59xm74,-244v-15,0,-27,10,-27,24v0,14,12,25,27,25v15,0,27,-11,27,-25v0,-14,-12,-24,-27,-24","w":147},"\u00e6":{"d":"195,-119r76,0v-5,-38,-70,-38,-76,0xm134,-58v-4,-26,-60,-28,-63,-1v3,28,57,27,63,1xm330,-81r-137,0v-6,42,54,55,72,24r63,0v-10,44,-52,63,-94,63v-28,0,-62,-8,-74,-36v-18,23,-46,36,-75,36v-35,0,-77,-18,-77,-59v0,-62,74,-74,124,-52v3,-51,-60,-40,-95,-28r0,-49v45,-14,99,-16,123,24v15,-22,43,-33,69,-33v66,0,103,42,101,110","w":338},"\u0131":{"d":"87,-185r0,185r-65,0r0,-185r65,0","w":108},"\u0142":{"d":"33,0r0,-119r-30,18r0,-44r30,-19r0,-135r66,0r0,96r30,-18r0,45r-30,18r0,158r-66,0","w":131},"\u00f8":{"d":"80,-77r55,-54v-35,-12,-69,18,-55,54xm159,-108r-55,55v37,10,66,-17,55,-55xm8,-6r23,-23v-15,-16,-23,-37,-23,-63v-2,-86,101,-121,172,-84r26,-26r25,23r-24,23v14,16,23,38,23,64v2,85,-100,120,-172,84r-25,25","w":238},"\u0153":{"d":"222,-119r76,0v-5,-38,-70,-38,-76,0xm119,-134v-23,0,-42,19,-42,42v0,23,19,41,42,41v23,0,42,-18,42,-41v0,-23,-19,-42,-42,-42xm259,-191v66,0,103,42,101,110r-138,0v-5,42,55,55,73,24r63,0v-15,71,-129,85,-169,31v-55,65,-181,28,-181,-66v0,-94,120,-129,181,-71v16,-21,44,-28,70,-28","w":367},"\u00df":{"d":"22,-159v2,-49,-9,-93,22,-120v53,-46,163,-26,161,56v0,26,-12,42,-32,57v63,15,69,107,25,148v-24,22,-56,25,-92,24r0,-56v27,1,49,-15,49,-43v0,-27,-23,-46,-49,-44r0,-52v20,1,36,-8,36,-30v0,-17,-11,-27,-28,-27v-26,0,-27,21,-27,41r0,205r-65,0r0,-107r-19,0r0,-52r19,0","w":234},"\u00f7":{"d":"31,-120r185,0r0,54r-185,0r0,-54xm123,-46v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-25,-12,-25,-26v0,-14,11,-26,25,-26xm123,-191v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-25,-12,-25,-26v0,-14,11,-26,25,-26"},"\u00be":{"d":"331,-66r21,0r0,32r-21,0r0,34r-42,0r0,-34r-86,0r0,-27r68,-102r60,0r0,97xm289,-66v-1,-20,2,-45,-1,-63r-41,63r42,0xm263,-271r35,0r-157,271r-36,0xm65,-155v1,13,10,23,24,23v14,0,25,-9,25,-22v0,-15,-16,-25,-33,-21r0,-28v15,1,25,-5,25,-18v0,-10,-8,-16,-18,-16v-12,0,-19,9,-19,19r-42,0v-1,-64,122,-74,122,-6v0,13,-6,26,-19,33v59,25,19,95,-39,95v-37,0,-73,-25,-73,-59r47,0","w":370},"\u00bc":{"d":"61,-236r-25,0r0,-35r71,0r0,162r-46,0r0,-127xm313,-66r21,0r0,32r-21,0r0,34r-42,0r0,-34r-86,0r0,-27r68,-102r60,0r0,97xm271,-66v-1,-20,2,-45,-1,-63r-41,63r42,0xm232,-271r35,0r-157,271r-35,0","w":370},"\u00b9":{"d":"59,-240r-26,0r0,-36r71,0r0,163r-45,0r0,-127","w":148},"\u00d7":{"d":"86,-92r-55,-55r38,-38r54,55r54,-55r38,38r-53,55r54,54r-39,38r-54,-54r-54,54r-38,-38"},"\u00ae":{"d":"144,7v-80,0,-143,-63,-143,-142v0,-80,63,-144,143,-144v79,0,143,64,143,144v0,79,-64,142,-143,142xm144,-27v61,0,109,-45,109,-108v0,-64,-48,-110,-109,-110v-62,0,-109,46,-109,110v0,63,47,108,109,108xm176,-126r36,63r-36,0r-33,-63r-23,0r0,63r-33,0r0,-148v56,5,131,-20,130,45v0,27,-15,38,-41,40xm120,-148v27,-3,69,11,66,-22v-2,-24,-42,-13,-66,-15r0,37","w":288},"\u00de":{"d":"23,0r0,-271r71,0r0,43v78,-5,135,13,136,89v1,80,-54,97,-136,92r0,47r-71,0xm94,-171r0,67v31,0,62,4,62,-33v0,-38,-30,-34,-62,-34","w":237},"\u00a6":{"d":"131,-58r0,90r-54,0r0,-90r54,0xm131,-238r0,90r-54,0r0,-90r54,0","w":208},"\u00d0":{"d":"94,-212r0,45r39,0r0,56r-39,0r0,51v54,3,94,-17,94,-76v0,-55,-38,-80,-94,-76xm23,0r0,-111r-30,0r0,-56r30,0r0,-104r91,0v86,0,147,56,147,135v0,80,-64,136,-146,136r-92,0","w":270},"\u00bd":{"d":"61,-236r-25,0r0,-35r71,0r0,162r-46,0r0,-127xm333,-111v0,36,-35,55,-56,75r57,0r0,36r-141,0r72,-72v17,-14,34,-61,0,-61v-15,0,-20,11,-19,26r-50,0v1,-37,27,-62,69,-62v37,0,68,22,68,58xm222,-271r35,0r-157,271r-36,0","w":370},"\u2212":{"d":"31,-120r185,0r0,54r-185,0r0,-54"},"\u00e7":{"d":"155,-180r0,55v-28,-26,-79,-10,-79,32v0,42,51,60,79,33r0,56v-68,31,-147,-14,-147,-86v0,-74,79,-124,147,-90xm128,34r-54,51r-28,-17r47,-57","w":173},"\u00f0":{"d":"15,-268r38,-37v38,18,47,24,57,30r46,-25r23,27r-38,20v46,38,89,77,89,146v0,80,-56,113,-113,113v-46,0,-109,-29,-109,-98v0,-67,58,-102,119,-92v-12,-14,-25,-29,-40,-41r-47,25r-24,-25r39,-21v-13,-8,-26,-16,-40,-22xm119,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42","w":238},"\u00b1":{"d":"96,-184r0,-51r54,0r0,51r66,0r0,54r-66,0r0,51r-54,0r0,-51r-65,0r0,-54r65,0xm31,-54r185,0r0,54r-185,0r0,-54"},"\u00c7":{"d":"9,-135v0,-100,109,-178,208,-130r0,85v-37,-55,-134,-29,-134,45v0,73,95,98,134,45r0,85v-102,42,-208,-31,-208,-130xm169,34r-55,51r-28,-17r47,-57","w":237},"\u00fe":{"d":"85,-299r1,135v49,-63,149,-5,149,72v0,77,-95,131,-150,74r0,110r-66,0r0,-391r66,0xm125,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42","w":245},"\u00a9":{"d":"144,7v-80,0,-143,-63,-143,-142v0,-80,63,-144,143,-144v79,0,143,64,143,144v0,79,-64,142,-143,142xm144,-27v61,0,109,-45,109,-108v0,-64,-48,-110,-109,-110v-62,0,-109,46,-109,110v0,63,47,108,109,108xm217,-165r-33,0v-18,-53,-79,-21,-79,27v0,27,17,56,45,56v17,0,33,-11,34,-28r33,0v-18,93,-153,57,-146,-27v-11,-89,132,-113,146,-28","w":288},"\u00ac":{"d":"162,-51r0,-58r-131,0r0,-54r185,0r0,112r-54,0"},"\u00b2":{"d":"141,-224v0,37,-34,56,-56,75r58,0r0,36r-142,0r72,-72v18,-14,35,-61,0,-61v-15,0,-21,13,-18,26r-51,0v1,-37,27,-62,69,-62v37,0,68,22,68,58","w":148},"\u00b3":{"d":"1,-166r47,0v0,13,11,23,25,23v14,0,24,-9,24,-22v0,-15,-16,-24,-32,-20r0,-28v14,1,25,-6,25,-18v0,-10,-8,-17,-18,-17v-12,0,-19,9,-19,19r-43,0v-1,-64,122,-74,122,-6v0,13,-5,26,-18,33v60,26,18,95,-40,95v-37,0,-72,-26,-73,-59","w":148},"\u2122":{"d":"324,-271r0,145r-32,0r-1,-117r-42,117r-19,0r-42,-117r0,117r-32,0r0,-145r51,0r33,86r33,-86r51,0xm138,-271r0,28r-44,0r0,117r-35,0r0,-117r-44,0r0,-28r123,0","w":338},"\u00b0":{"d":"126,-224v0,30,-24,53,-54,53v-30,0,-54,-23,-54,-53v0,-30,24,-55,54,-55v30,0,54,25,54,55xm95,-225v0,-13,-10,-23,-23,-23v-13,0,-23,10,-23,23v0,13,10,24,23,24v13,0,23,-11,23,-24","w":144},"\u03bc":{"d":"21,-185r65,0r0,99v0,23,6,40,33,40v58,0,25,-88,33,-139r65,0r0,112v-1,85,-91,95,-131,61r0,104r-65,0r0,-277","w":237},"\u00c1":{"d":"189,-47r-97,0r-19,47r-74,0r104,-271r77,0r102,271r-75,0xm170,-101r-29,-87r-29,87r58,0xm194,-342r-62,54r-29,-21r51,-62","w":281},"\u00c2":{"d":"189,-47r-97,0r-19,47r-74,0r104,-271r77,0r102,271r-75,0xm170,-101r-29,-87r-29,87r58,0xm62,-315r78,-59r80,59r-28,30r-52,-40r-51,40","w":281},"\u00c4":{"d":"189,-47r-97,0r-19,47r-74,0r104,-271r77,0r102,271r-75,0xm170,-101r-29,-87r-29,87r58,0xm95,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm187,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":281},"\u00c0":{"d":"189,-47r-97,0r-19,47r-74,0r104,-271r77,0r102,271r-75,0xm170,-101r-29,-87r-29,87r58,0xm88,-342r40,-29r51,62r-29,21","w":281},"\u00c5":{"d":"189,-47r-97,0r-19,47r-74,0r104,-271r77,0r102,271r-75,0xm170,-101r-29,-87r-29,87r58,0xm85,-323v1,-57,110,-56,111,0v-1,57,-110,56,-111,0xm161,-323v-1,-21,-41,-21,-42,0v1,21,41,21,42,0","w":281},"\u00c3":{"d":"189,-47r-97,0r-19,47r-74,0r104,-271r77,0r102,271r-75,0xm170,-101r-29,-87r-29,87r58,0xm69,-298v-2,-29,14,-55,40,-56v25,-2,65,29,73,-1r31,0v-2,26,-16,57,-47,57v-22,0,-60,-30,-67,0r-30,0","w":281},"\u00c9":{"d":"177,-212r-83,0r0,46r79,0r0,59r-79,0r0,47r83,0r0,60r-154,0r0,-271r154,0r0,59xm145,-342r-62,54r-29,-21r51,-62","w":198},"\u00ca":{"d":"177,-212r-83,0r0,46r79,0r0,59r-79,0r0,47r83,0r0,60r-154,0r0,-271r154,0r0,59xm20,-315r78,-59r80,59r-28,30r-52,-40r-51,40","w":198},"\u00cb":{"d":"177,-212r-83,0r0,46r79,0r0,59r-79,0r0,47r83,0r0,60r-154,0r0,-271r154,0r0,59xm53,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm145,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":198},"\u00c8":{"d":"177,-212r-83,0r0,46r79,0r0,59r-79,0r0,47r83,0r0,60r-154,0r0,-271r154,0r0,59xm54,-342r40,-29r51,62r-29,21","w":198},"\u00cd":{"d":"94,-271r0,271r-71,0r0,-271r71,0xm109,-342r-62,54r-29,-21r51,-62","w":116},"\u00ce":{"d":"94,-271r0,271r-71,0r0,-271r71,0xm-15,-315r78,-59r80,59r-28,30r-52,-40r-51,40","w":116},"\u00cf":{"d":"94,-271r0,271r-71,0r0,-271r71,0xm13,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm105,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":116},"\u00cc":{"d":"94,-271r0,271r-71,0r0,-271r71,0xm8,-342r40,-29r51,62r-29,21","w":116},"\u00d1":{"d":"23,0r0,-271r71,0r130,166r0,-166r70,0r0,271r-70,0r-130,-166r0,166r-71,0xm87,-298v-2,-29,14,-55,40,-56v25,-2,65,29,73,-1r31,0v-2,26,-16,57,-47,57v-22,0,-60,-30,-67,0r-30,0","w":317},"\u00d3":{"d":"159,-280v78,0,151,57,151,139v0,88,-64,150,-151,150v-87,0,-150,-62,-150,-150v0,-82,72,-139,150,-139xm159,-212v-42,0,-76,35,-76,72v0,47,34,81,76,81v42,0,77,-34,77,-81v0,-37,-35,-72,-77,-72xm213,-342r-62,54r-29,-21r51,-62","w":319},"\u00d4":{"d":"159,-280v78,0,151,57,151,139v0,88,-64,150,-151,150v-87,0,-150,-62,-150,-150v0,-82,72,-139,150,-139xm159,-212v-42,0,-76,35,-76,72v0,47,34,81,76,81v42,0,77,-34,77,-81v0,-37,-35,-72,-77,-72xm81,-315r78,-59r80,59r-28,30r-52,-40r-51,40","w":319},"\u00d6":{"d":"159,-280v78,0,151,57,151,139v0,88,-64,150,-151,150v-87,0,-150,-62,-150,-150v0,-82,72,-139,150,-139xm159,-212v-42,0,-76,35,-76,72v0,47,34,81,76,81v42,0,77,-34,77,-81v0,-37,-35,-72,-77,-72xm114,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm206,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":319},"\u00d2":{"d":"159,-280v78,0,151,57,151,139v0,88,-64,150,-151,150v-87,0,-150,-62,-150,-150v0,-82,72,-139,150,-139xm159,-212v-42,0,-76,35,-76,72v0,47,34,81,76,81v42,0,77,-34,77,-81v0,-37,-35,-72,-77,-72xm107,-342r40,-29r51,62r-29,21","w":319},"\u00d5":{"d":"159,-280v78,0,151,57,151,139v0,88,-64,150,-151,150v-87,0,-150,-62,-150,-150v0,-82,72,-139,150,-139xm159,-212v-42,0,-76,35,-76,72v0,47,34,81,76,81v42,0,77,-34,77,-81v0,-37,-35,-72,-77,-72xm88,-298v-2,-29,14,-55,40,-56v25,-2,65,29,73,-1r31,0v-2,26,-16,57,-47,57v-22,0,-60,-30,-67,0r-30,0","w":319},"\u0160":{"d":"211,-91v0,100,-129,125,-200,67r30,-57v18,15,39,28,63,28v17,0,34,-8,34,-27v0,-20,-28,-27,-43,-31v-44,-13,-73,-24,-73,-77v0,-92,110,-112,178,-68r-28,54v-13,-11,-30,-18,-47,-18v-13,0,-30,8,-30,23v0,23,30,25,49,31v38,11,67,31,67,75xm32,-344r27,-30r51,40r52,-40r28,30r-80,59","w":221},"\u00da":{"d":"188,-271r70,0r0,152v0,35,0,71,-28,96v-47,42,-133,42,-180,0v-28,-25,-28,-61,-28,-96r0,-152r70,0r0,142v0,35,3,74,48,74v45,0,48,-39,48,-74r0,-142xm193,-342r-62,54r-29,-21r51,-62","w":280},"\u00db":{"d":"188,-271r70,0r0,152v0,35,0,71,-28,96v-47,42,-133,42,-180,0v-28,-25,-28,-61,-28,-96r0,-152r70,0r0,142v0,35,3,74,48,74v45,0,48,-39,48,-74r0,-142xm61,-315r78,-59r80,59r-28,30r-52,-40r-51,40","w":280},"\u00dc":{"d":"188,-271r70,0r0,152v0,35,0,71,-28,96v-47,42,-133,42,-180,0v-28,-25,-28,-61,-28,-96r0,-152r70,0r0,142v0,35,3,74,48,74v45,0,48,-39,48,-74r0,-142xm94,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm186,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":280},"\u00d9":{"d":"188,-271r70,0r0,152v0,35,0,71,-28,96v-47,42,-133,42,-180,0v-28,-25,-28,-61,-28,-96r0,-152r70,0r0,142v0,35,3,74,48,74v45,0,48,-39,48,-74r0,-142xm87,-342r40,-29r51,62r-29,21","w":280},"\u00dd":{"d":"93,-130r-100,-141r85,0r51,73r50,-73r85,0r-100,141r0,130r-71,0r0,-130xm189,-342r-62,54r-29,-21r51,-62","w":257},"\u0178":{"d":"93,-130r-100,-141r85,0r51,73r50,-73r85,0r-100,141r0,130r-71,0r0,-130xm86,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm178,-364v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":257},"\u017d":{"d":"123,-60r114,0r0,60r-233,0r128,-212r-106,0r0,-59r225,0xm52,-344r27,-30r51,40r52,-40r28,30r-80,59","w":254},"\u00e1":{"d":"118,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm224,-185r0,185r-66,0v-1,-6,2,-16,-1,-21v-49,63,-149,5,-149,-72v0,-77,95,-131,150,-74r0,-18r66,0xm176,-266r-62,54r-29,-21r51,-62","w":245},"\u00e2":{"d":"118,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm224,-185r0,185r-66,0v-1,-6,2,-16,-1,-21v-49,63,-149,5,-149,-72v0,-77,95,-131,150,-74r0,-18r66,0xm44,-239r78,-59r80,59r-28,30r-52,-40r-51,40","w":245},"\u00e4":{"d":"118,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm224,-185r0,185r-66,0v-1,-6,2,-16,-1,-21v-49,63,-149,5,-149,-72v0,-77,95,-131,150,-74r0,-18r66,0xm77,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm169,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":245},"\u00e0":{"d":"118,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm224,-185r0,185r-66,0v-1,-6,2,-16,-1,-21v-49,63,-149,5,-149,-72v0,-77,95,-131,150,-74r0,-18r66,0xm77,-266r40,-29r51,62r-29,21","w":245},"\u00e5":{"d":"118,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm224,-185r0,185r-66,0v-1,-6,2,-16,-1,-21v-49,63,-149,5,-149,-72v0,-77,95,-131,150,-74r0,-18r66,0xm68,-252v1,-57,110,-56,111,0v-1,57,-110,56,-111,0xm144,-252v-1,-21,-41,-21,-42,0v1,21,41,21,42,0","w":245},"\u00e3":{"d":"118,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm224,-185r0,185r-66,0v-1,-6,2,-16,-1,-21v-49,63,-149,5,-149,-72v0,-77,95,-131,150,-74r0,-18r66,0xm51,-222v-2,-29,14,-55,40,-56v25,-2,65,29,73,-1r31,0v-2,26,-16,57,-47,57v-22,0,-60,-30,-67,0r-30,0","w":245},"\u00e9":{"d":"75,-119r75,0v-5,-38,-70,-39,-75,0xm110,-191v66,0,103,42,101,110r-138,0v-6,43,55,55,73,24r63,0v-10,44,-52,63,-94,63v-61,0,-107,-34,-107,-98v0,-62,42,-99,102,-99xm164,-266r-62,54r-29,-21r51,-62","w":219},"\u00ea":{"d":"75,-119r75,0v-5,-38,-70,-39,-75,0xm110,-191v66,0,103,42,101,110r-138,0v-6,43,55,55,73,24r63,0v-10,44,-52,63,-94,63v-61,0,-107,-34,-107,-98v0,-62,42,-99,102,-99xm31,-239r78,-59r80,59r-28,30r-52,-40r-51,40","w":219},"\u00eb":{"d":"75,-119r75,0v-5,-38,-70,-39,-75,0xm110,-191v66,0,103,42,101,110r-138,0v-6,43,55,55,73,24r63,0v-10,44,-52,63,-94,63v-61,0,-107,-34,-107,-98v0,-62,42,-99,102,-99xm64,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm156,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":219},"\u00e8":{"d":"75,-119r75,0v-5,-38,-70,-39,-75,0xm110,-191v66,0,103,42,101,110r-138,0v-6,43,55,55,73,24r63,0v-10,44,-52,63,-94,63v-61,0,-107,-34,-107,-98v0,-62,42,-99,102,-99xm55,-266r40,-29r51,62r-29,21","w":219},"\u00ed":{"d":"87,-185r0,185r-65,0r0,-185r65,0xm105,-266r-62,54r-29,-21r51,-62","w":108},"\u00ee":{"d":"87,-185r0,185r-65,0r0,-185r65,0xm-25,-239r78,-59r80,59r-28,30r-52,-40r-51,40","w":108},"\u00ef":{"d":"87,-185r0,185r-65,0r0,-185r65,0xm9,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm101,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":108},"\u00ec":{"d":"87,-185r0,185r-65,0r0,-185r65,0xm4,-266r40,-29r51,62r-29,21","w":108},"\u00f1":{"d":"87,-185v1,7,-2,18,1,24v15,-22,33,-30,59,-30v93,-2,65,107,69,191r-65,0r0,-90v0,-18,2,-49,-30,-49v-57,0,-26,87,-34,139r-65,0r0,-185r65,0xm47,-222v-2,-29,14,-55,40,-56v25,-2,65,29,73,-1r31,0v-2,26,-16,57,-47,57v-22,0,-60,-30,-67,0r-30,0","w":237},"\u00f3":{"d":"119,-191v59,0,111,36,111,99v0,63,-52,98,-111,98v-59,0,-111,-35,-111,-98v0,-63,52,-99,111,-99xm119,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm174,-266r-62,54r-29,-21r51,-62","w":238},"\u00f4":{"d":"119,-191v59,0,111,36,111,99v0,63,-52,98,-111,98v-59,0,-111,-35,-111,-98v0,-63,52,-99,111,-99xm119,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm40,-239r78,-59r80,59r-28,30r-52,-40r-51,40","w":238},"\u00f6":{"d":"119,-191v59,0,111,36,111,99v0,63,-52,98,-111,98v-59,0,-111,-35,-111,-98v0,-63,52,-99,111,-99xm119,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm73,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm165,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":238},"\u00f2":{"d":"119,-191v59,0,111,36,111,99v0,63,-52,98,-111,98v-59,0,-111,-35,-111,-98v0,-63,52,-99,111,-99xm119,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm65,-266r40,-29r51,62r-29,21","w":238},"\u00f5":{"d":"119,-191v59,0,111,36,111,99v0,63,-52,98,-111,98v-59,0,-111,-35,-111,-98v0,-63,52,-99,111,-99xm119,-134v-27,0,-42,19,-42,42v0,23,15,41,42,41v27,0,42,-18,42,-41v0,-23,-15,-42,-42,-42xm48,-222v-2,-29,14,-55,40,-56v25,-2,65,29,73,-1r31,0v-2,26,-16,57,-47,57v-22,0,-60,-30,-67,0r-30,0","w":238},"\u0161":{"d":"166,-179r-22,42v-16,-7,-49,-18,-56,3v0,13,20,15,29,17v31,6,54,20,54,54v0,79,-108,83,-162,48r24,-46v13,9,36,19,52,19v8,0,20,-4,20,-14v0,-14,-20,-16,-41,-21v-21,-5,-41,-15,-41,-48v2,-68,87,-79,143,-54xm13,-268r27,-30r51,40r52,-40r28,30r-80,59","w":184},"\u00fa":{"d":"21,-185r65,0r0,99v0,23,6,40,33,40v58,0,25,-88,33,-139r65,0r0,112v0,61,-43,79,-98,79v-55,0,-98,-18,-98,-79r0,-112xm175,-266r-62,54r-29,-21r51,-62","w":237},"\u00fb":{"d":"21,-185r65,0r0,99v0,23,6,40,33,40v58,0,25,-88,33,-139r65,0r0,112v0,61,-43,79,-98,79v-55,0,-98,-18,-98,-79r0,-112xm40,-239r78,-59r80,59r-28,30r-52,-40r-51,40","w":237},"\u00fc":{"d":"21,-185r65,0r0,99v0,23,6,40,33,40v58,0,25,-88,33,-139r65,0r0,112v0,61,-43,79,-98,79v-55,0,-98,-18,-98,-79r0,-112xm73,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm165,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":237},"\u00f9":{"d":"21,-185r65,0r0,99v0,23,6,40,33,40v58,0,25,-88,33,-139r65,0r0,112v0,61,-43,79,-98,79v-55,0,-98,-18,-98,-79r0,-112xm63,-266r40,-29r51,62r-29,21","w":237},"\u00fd":{"d":"84,-25r-89,-160r75,0r50,95r48,-95r74,0r-148,277r-73,0xm178,-266r-62,54r-29,-21r51,-62","w":235},"\u00ff":{"d":"84,-25r-89,-160r75,0r50,95r48,-95r74,0r-148,277r-73,0xm77,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35xm169,-288v19,0,35,16,35,35v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-19,16,-35,36,-35","w":235},"\u017e":{"d":"112,-54r78,0r0,54r-187,0r87,-130r-76,0r0,-55r185,0xm22,-268r27,-30r51,40r52,-40r28,30r-80,59","w":201},"\u00a0":{"w":123}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  Copyright (c) 1987, 1991, 1993 Fundicion Tipografica Neufville S. A.
 *  This record material and the data recorded thereon is the property of
 *  Fundicion Tipografica Neufville S. A. and Adobe Systems Incorporated,
 *  or its licensors, and may not be reproduced, used, displayed, modified,
 *  disclosed or transferred in any manner without the express written
 *  approval of Fundicion Tipografica Neufville S. A. and Adobe Systems
 *  Incorporated.
 */
Cufon.registerFont({"w":208,"face":{"font-family":"Futura","font-weight":500,"font-style":"oblique","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"6","bbox":"-58 -358 444 96.0821","underline-thickness":"18","underline-position":"-36","stemh":"30","stemv":"32","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":104},"!":{"d":"39,-15v1,-24,47,-30,42,0v-1,25,-46,29,-42,0xm52,-63r33,-208r32,0r-33,208r-32,0","w":115},"\"":{"d":"75,-271r36,0r-26,118r-22,0xm133,-271r36,0r-26,118r-22,0","w":158},"#":{"d":"119,-258r28,0r-24,69r44,0r24,-69r28,0r-23,69r33,0r-5,29r-38,0r-19,56r37,0r-5,28r-42,0r-26,76r-27,0r25,-76r-44,0r-26,76r-27,0r25,-76r-36,0r5,-28r41,0r18,-56r-37,0r4,-29r43,0xm114,-160r-19,56r44,0r19,-56r-44,0"},"$":{"d":"140,-126r-16,98v23,-5,42,-26,46,-49v4,-24,-12,-39,-30,-49xm146,-277r5,-33r18,0r-5,33v27,3,46,18,55,42r-31,16v-5,-14,-14,-22,-29,-27r-14,85v34,16,65,39,58,83v-6,39,-44,79,-84,84r-5,34r-18,0r5,-34v-42,-1,-72,-35,-72,-76r34,-7v1,31,12,47,43,51r17,-108v-30,-14,-60,-32,-53,-72v6,-36,40,-68,76,-71xm129,-170r12,-76v-19,3,-37,18,-40,37v-3,21,11,32,28,39"},"%":{"d":"113,-277v34,0,59,27,54,62v-5,34,-39,61,-73,61v-34,0,-59,-27,-54,-61v5,-35,39,-62,73,-62xm110,-256v-22,0,-44,19,-48,41v-3,22,13,40,35,40v49,0,70,-80,13,-81xm243,-277r14,9r-201,274r-16,-9xm204,-118v34,0,59,27,54,62v-5,34,-39,62,-73,62v-34,0,-59,-28,-54,-62v5,-35,39,-62,73,-62xm201,-96v-22,0,-44,18,-48,40v-3,22,13,40,35,40v48,0,70,-79,13,-80","w":254},"&":{"d":"125,-134v-23,13,-57,32,-62,59v-4,26,16,51,42,51v25,0,48,-19,68,-36xm131,-188v4,5,5,15,12,9v14,-12,36,-22,39,-42v3,-19,-9,-30,-27,-30v-31,-2,-46,42,-24,63xm213,0r-24,-37v-24,24,-56,43,-88,43v-45,0,-77,-33,-70,-80v5,-43,45,-63,78,-84v-44,-40,-13,-119,51,-119v33,0,60,20,54,56v-5,31,-35,51,-60,68r46,68r37,-36r18,22r-39,39r39,60r-42,0","w":249},"\u2019":{"d":"94,-277r26,11r-63,96r-19,-8","w":99},"(":{"d":"128,-271v-51,85,-80,200,-51,321r-30,19v-36,-133,-2,-266,57,-360","w":105},")":{"d":"13,50v50,-86,78,-201,51,-321r29,-20v36,133,2,266,-57,360","w":105},"*":{"d":"109,-271r25,0r-5,34r32,-18r9,22r-34,18r28,18r-16,21r-26,-18r-6,34r-24,0r5,-35r-34,18r-9,-21r33,-17r-27,-18r14,-21r30,18","w":155},"+":{"d":"118,-184r31,0r-12,76r76,0r-5,31r-76,0r-12,77r-31,0r12,-77r-77,0r5,-31r77,0"},",":{"d":"66,-43r26,11r-63,96r-18,-8","w":104},"-":{"d":"41,-129r79,0r-5,27r-78,0","w":119},".":{"d":"34,-15v1,-24,46,-29,41,0v-1,25,-46,29,-41,0","w":104},"\/":{"d":"211,-312r24,11r-205,346r-24,-11","w":198},"0":{"d":"103,6v-70,0,-81,-87,-72,-142v9,-56,47,-141,117,-141v70,0,81,85,72,141v-9,55,-47,142,-117,142xm143,-248v-49,0,-74,75,-80,112v-6,37,-4,112,45,112v49,0,74,-75,80,-112v6,-37,4,-112,-45,-112"},"1":{"d":"130,-240r-48,0r24,-31r61,0r-43,271r-33,0"},"2":{"d":"87,-31r109,0r-4,31r-176,0r142,-146v13,-14,29,-30,32,-48v5,-28,-17,-52,-45,-52v-28,0,-54,22,-60,49r-34,0v13,-48,50,-80,99,-80v77,0,90,90,44,137"},"3":{"d":"120,-130r4,-28v29,0,55,-10,60,-43v4,-27,-13,-47,-40,-47v-24,0,-44,16,-51,39r-33,0v14,-45,45,-68,90,-68v43,0,74,28,67,73v-4,27,-19,48,-44,61v70,45,3,149,-72,149v-42,0,-76,-28,-71,-73r32,0v7,70,100,45,106,-10v4,-35,-14,-56,-48,-53"},"4":{"d":"180,-69r31,0r-5,29r-31,0r-6,40r-33,0r7,-40r-134,0r205,-243xm147,-69r17,-112r-94,112r77,0"},"5":{"d":"228,-240r-85,0r-26,55v65,-10,97,37,91,94v-10,91,-151,137,-191,49r29,-24v5,23,30,41,54,41v37,0,70,-31,76,-67v12,-62,-73,-84,-109,-40r-6,0r63,-139r109,0"},"6":{"d":"180,-277r22,16r-87,99v54,-23,103,24,93,78v-9,50,-55,90,-104,90v-47,0,-85,-39,-77,-87v4,-27,22,-51,41,-72xm108,-24v30,0,62,-26,67,-56v5,-34,-20,-58,-49,-58v-30,0,-61,26,-66,56v-5,31,17,58,48,58"},"7":{"d":"195,-240r-140,0r5,-31r195,0r-213,277r-23,-16"},"8":{"d":"124,-127v-27,0,-56,22,-61,51v-4,27,18,52,45,52v27,0,57,-25,61,-52v5,-29,-18,-51,-45,-51xm31,-76v5,-29,23,-55,53,-65v-62,-41,-4,-136,64,-136v43,0,73,31,66,75v-4,27,-22,48,-46,61v27,10,38,36,33,65v-8,50,-52,82,-98,82v-46,0,-80,-32,-72,-82xm143,-248v-24,0,-49,20,-53,46v-3,22,16,46,39,46v23,0,50,-24,53,-46v4,-26,-15,-46,-39,-46"},"9":{"d":"76,6r-22,-17r87,-98v-56,21,-102,-27,-93,-79v9,-50,55,-89,104,-89v47,0,85,39,77,87v-4,27,-22,50,-41,71xm130,-133v69,0,95,-114,20,-114v-32,0,-64,26,-69,57v-5,32,21,57,49,57"},":":{"d":"34,-15v1,-24,46,-29,41,0v-1,25,-46,29,-41,0xm55,-153v1,-24,47,-30,42,0v-1,25,-46,29,-42,0","w":104},";":{"d":"63,-43r26,11r-63,96r-18,-8xm72,-153v1,-24,47,-30,42,0v-1,25,-46,29,-42,0","w":104},"<":{"d":"225,-179r-6,34r-146,53r129,53r-5,34r-173,-75r4,-25"},"=":{"d":"34,-139r184,0r-5,31r-184,0xm24,-77r184,0r-5,31r-184,0"},">":{"d":"35,-145r5,-34r173,74r-4,25r-196,75r5,-34r147,-53"},"?":{"d":"121,-247v-20,0,-41,19,-35,43r-34,0v-1,-44,37,-72,75,-73v61,-3,70,78,28,108v-26,18,-70,12,-78,47v-3,14,7,26,21,26v15,0,28,-13,30,-28r33,0v-4,31,-37,58,-68,58v-32,0,-53,-26,-49,-58v7,-64,93,-40,105,-91v5,-20,-9,-32,-28,-32xm64,-15v1,-24,47,-30,42,0v-1,25,-46,29,-42,0","w":163},"@":{"d":"202,-134v8,-29,-4,-46,-29,-46v-29,0,-52,29,-56,55v-3,21,7,41,29,41v32,0,49,-24,56,-50xm219,-182r9,-22r25,0r-33,92v-4,12,-11,31,1,31v17,0,43,-33,49,-69v10,-60,-26,-98,-81,-98v-60,0,-114,50,-126,112v-19,95,94,140,166,96r23,21v-28,14,-53,25,-100,25v-77,0,-129,-60,-118,-142v15,-109,152,-187,240,-110v67,60,0,194,-68,191v-10,0,-15,-9,-15,-23v-14,12,-31,23,-53,23v-32,0,-54,-30,-50,-67v7,-60,89,-123,131,-60","w":288},"A":{"d":"200,-68r-125,0r-42,68r-36,0r175,-283r84,283r-36,0xm191,-99r-31,-110r-66,110r97,0","w":253},"B":{"d":"95,-241r-14,90v38,1,67,-4,74,-46v6,-41,-23,-45,-60,-44xm77,-124r-15,94v48,1,89,1,97,-48v7,-45,-40,-47,-82,-46xm23,0r43,-271v68,-2,131,1,121,74v-3,20,-18,43,-38,52v31,6,50,37,44,69v-15,76,-86,80,-170,76","w":192},"C":{"d":"265,-259r-7,39v-69,-64,-181,1,-192,85v-8,59,29,110,89,110v27,0,54,-10,77,-28r-6,40v-96,53,-213,-13,-194,-121v17,-100,133,-180,233,-125","w":237},"D":{"d":"23,0r43,-271v115,-9,205,23,187,134v-19,112,-107,146,-230,137xm95,-240r-33,209v79,2,143,-22,157,-105v14,-83,-47,-106,-124,-104","w":239},"E":{"d":"26,0r43,-271r146,0r-5,31r-112,0r-12,75r109,0r-5,31r-109,0r-16,103r112,0r-5,31r-146,0","w":187},"F":{"d":"195,-240r-98,0r-12,76r95,0r-5,31r-95,0r-21,133r-33,0r43,-271r131,0","w":170},"G":{"d":"187,-137r108,0v-10,82,-71,143,-151,143v-76,0,-124,-66,-115,-141v14,-119,190,-198,265,-90r-27,23v-53,-88,-193,-28,-204,66v-6,57,29,111,88,111v42,0,94,-37,102,-81r-71,0","w":280},"H":{"d":"83,-162r129,0r17,-109r34,0r-43,271r-34,0r21,-130r-129,0r-21,130r-34,0r43,-271r34,0","w":243},"I":{"d":"102,-271r-43,271r-34,0r43,-271r34,0","w":83},"J":{"d":"118,-271r34,0r-27,172v-8,52,-27,105,-90,105v-16,0,-29,-4,-41,-12r22,-29v7,6,15,9,25,9v39,0,46,-45,50,-73","w":130},"K":{"d":"84,-154r134,-117r44,0r-141,122r100,149r-45,0r-83,-126r-15,13r-18,113r-34,0r43,-271r34,0","w":216},"L":{"d":"103,-271r-38,240r82,0r-5,31r-116,0r43,-271r34,0","w":138},"M":{"d":"152,6r-52,-185r-60,179r-35,0r100,-283r59,214r127,-214r11,283r-35,0r-4,-179","w":306},"N":{"d":"23,0r45,-284r170,213r31,-200r34,0r-44,282r-170,-213r-32,202r-34,0","w":282},"O":{"d":"193,-277v78,0,132,63,120,141v-13,81,-87,142,-165,142v-78,0,-133,-61,-120,-142v12,-78,87,-141,165,-141xm153,-26v59,0,116,-48,126,-110v9,-60,-27,-110,-91,-110v-64,0,-117,50,-126,110v-10,62,32,110,91,110","w":298},"P":{"d":"78,-114r-18,114r-34,0r43,-271r39,0v84,0,106,28,97,78v-11,63,-62,82,-127,79xm98,-241r-15,97v42,1,82,-3,90,-50v8,-45,-37,-47,-75,-47","w":178},"Q":{"d":"290,6r-41,0r-20,-24v-94,61,-222,-3,-201,-118v14,-78,87,-141,165,-141v78,0,132,63,120,141v-6,39,-28,75,-59,100xm199,-102r36,42v70,-50,59,-186,-47,-186v-64,0,-116,50,-126,110v-14,85,73,138,148,95r-53,-61r42,0","w":298},"R":{"d":"128,-118r67,118r-41,0r-62,-115r-14,0r-18,115r-34,0r43,-271v42,1,81,-8,111,12v58,39,12,139,-52,141xm98,-241r-16,98v43,1,83,-3,91,-50v8,-45,-36,-49,-75,-48","w":195},"S":{"d":"211,-236r-30,16v-13,-42,-86,-29,-91,13v-4,29,28,37,50,46v36,15,62,37,55,82v-8,49,-52,85,-101,85v-44,0,-72,-32,-71,-76r35,-7v-5,30,15,51,44,51v29,0,56,-25,59,-53v7,-70,-117,-47,-104,-128v12,-71,127,-99,154,-29","w":193},"T":{"d":"137,-240r-38,240r-34,0r38,-240r-64,0r5,-31r162,0r-4,31r-65,0","w":164},"U":{"d":"64,-271r34,0r-25,160v-7,44,0,85,52,85v52,0,72,-41,79,-85r25,-160r34,0r-27,171v-9,60,-54,106,-116,106v-62,0,-92,-46,-83,-106","w":240},"V":{"d":"78,-271r49,200r112,-200r37,0r-163,285r-73,-285r38,0","w":230},"W":{"d":"75,-271r46,194r108,-200r45,200r107,-194r36,0r-157,282r-45,-199r-108,199r-68,-282r36,0","w":369},"X":{"d":"108,-142r-55,-129r39,0r40,99r74,-99r39,0r-99,129r60,142r-38,0r-46,-111r-84,111r-38,0","w":206},"Y":{"d":"105,-118r-64,-153r39,0r48,115r85,-115r39,0r-113,153r-19,118r-34,0","w":206},"Z":{"d":"63,-31r138,0r-5,31r-193,0r176,-240r-118,0r5,-31r173,0","w":198},"[":{"d":"96,-261r-47,300r35,0r-5,30r-68,0r57,-360r68,0r-4,30r-36,0","w":111},"\\":{"d":"61,-312r30,0r96,312r-30,0","w":198},"]":{"d":"51,39r47,-300r-35,0r5,-30r68,0r-57,360r-68,0r4,-30r36,0","w":111},"^":{"d":"29,-111r98,-160r40,0r47,160r-34,0r-38,-130r-79,130r-34,0"},"_":{"d":"176,27r-3,18r-180,0r3,-18r180,0","w":180},"\u2018":{"d":"77,-170r-27,-11r63,-96r19,8","w":99},"a":{"d":"99,-23v66,0,96,-122,19,-122v-33,0,-58,30,-63,61v-5,32,10,61,44,61xm207,-168r-27,168r-32,0v0,-8,5,-20,3,-26v-16,19,-38,32,-62,32v-51,0,-71,-43,-66,-91v7,-70,107,-126,147,-55r5,-28r32,0","w":200},"b":{"d":"107,-23v66,0,98,-122,20,-122v-33,0,-58,30,-63,61v-5,32,9,61,43,61xm20,0r49,-312r33,0r-27,172v17,-20,39,-34,64,-34v49,0,69,43,65,89v-6,71,-105,128,-148,59r-4,26r-32,0","w":200},"c":{"d":"172,-162r-7,41v-32,-46,-102,-12,-110,37v-9,61,67,78,99,37r-7,42v-62,32,-137,-9,-125,-78v11,-65,86,-114,150,-79","w":158},"d":{"d":"99,-23v66,0,96,-122,19,-122v-33,0,-58,30,-63,61v-5,32,10,61,44,61xm148,0v0,-8,5,-20,3,-26v-16,19,-38,32,-62,32v-52,0,-71,-43,-66,-91v7,-70,107,-126,147,-55r27,-172r33,0r-50,312r-32,0","w":200},"e":{"d":"183,-79r-129,0v-4,29,11,56,42,56v25,0,41,-13,56,-33r25,16v-20,29,-53,46,-86,46v-51,0,-77,-39,-69,-89v8,-52,43,-91,97,-91v56,-1,74,44,64,95xm60,-103r94,0v-1,-63,-85,-46,-94,0","w":175},"f":{"d":"155,-312r-5,32v-6,-3,-13,-7,-20,-7v-23,0,-28,29,-31,46r-11,73r45,0r-5,30r-45,0r-22,138r-32,0r22,-138r-15,0r5,-30r14,0v11,-68,11,-171,100,-144","w":99},"g":{"d":"98,-23v66,0,98,-122,20,-122v-33,0,-58,30,-63,61v-5,32,9,61,43,61xm207,-168r-26,165v-9,58,-32,99,-98,99v-47,0,-77,-28,-70,-76r33,0v-5,30,13,48,43,48v52,0,59,-51,62,-94v-16,19,-38,32,-62,32v-52,0,-71,-43,-66,-91v7,-70,107,-126,147,-55r4,-28r33,0","w":199},"h":{"d":"72,-312r32,0r-25,166v13,-18,34,-28,55,-28v89,0,34,114,32,174r-32,0r15,-96v5,-29,3,-49,-30,-49v-69,0,-47,90,-64,145r-33,0","w":188},"i":{"d":"89,-168r-27,168r-32,0r26,-168r33,0xm88,-268v12,0,21,9,19,22v-2,12,-14,22,-26,22v-12,0,-21,-10,-19,-22v2,-13,14,-22,26,-22","w":91},"j":{"d":"89,-168r-42,264r-33,0r42,-264r33,0xm88,-268v12,0,21,9,19,22v-2,12,-14,22,-26,22v-12,0,-21,-10,-19,-22v2,-13,14,-22,26,-22","w":91},"k":{"d":"106,-312r-32,207r73,-63r43,0r-83,69r63,99r-42,0r-48,-77r-13,11r-10,66r-33,0r50,-312r32,0","w":166},"l":{"d":"106,-312r-50,312r-32,0r49,-312r33,0","w":79},"m":{"d":"80,-168v0,7,-4,16,-2,21v22,-33,78,-38,92,3v13,-18,36,-30,57,-30v84,0,29,115,28,174r-32,0r15,-95v3,-22,4,-50,-24,-50v-63,0,-43,93,-60,145r-32,0r14,-89v3,-22,8,-56,-22,-56v-63,0,-44,92,-60,145r-33,0r27,-168r32,0","w":276},"n":{"d":"81,-168v0,7,-4,17,-2,22v13,-18,34,-28,55,-28v89,0,34,114,32,174r-32,0r15,-96v5,-29,3,-49,-30,-49v-69,0,-47,90,-64,145r-33,0r27,-168r32,0","w":188},"o":{"d":"125,-174v50,0,83,39,75,90v-8,51,-54,90,-104,90v-50,0,-84,-39,-76,-90v8,-51,55,-90,105,-90xm120,-143v-32,0,-62,27,-67,59v-5,32,16,59,48,59v32,0,62,-27,67,-59v5,-32,-16,-59,-48,-59","w":194},"p":{"d":"107,-23v66,0,98,-122,20,-122v-33,0,-58,30,-63,61v-5,32,9,61,43,61xm79,-168v-1,9,-6,21,-4,28v17,-20,39,-34,64,-34v49,0,69,43,65,89v-6,71,-105,128,-148,59r-19,122r-32,0r41,-264r33,0","w":200},"q":{"d":"99,-23v66,0,96,-122,19,-122v-33,0,-58,30,-63,61v-5,32,10,61,44,61xm207,-168r-42,264r-32,0r18,-122v-16,19,-38,32,-62,32v-52,0,-71,-43,-66,-91v7,-70,107,-126,147,-55r5,-28r32,0","w":200},"r":{"d":"84,-168v-1,8,-6,20,-4,27v14,-27,49,-44,77,-24r-20,29v-69,-30,-70,74,-80,136r-33,0r27,-168r33,0","w":126},"s":{"d":"139,-144r-28,14v-5,-20,-37,-19,-40,2v2,33,74,28,66,78v-10,57,-103,80,-119,18r29,-13v6,29,53,28,57,-2v-5,-38,-71,-30,-64,-78v7,-47,84,-71,99,-19","w":138},"t":{"d":"81,-138r-22,138r-32,0r22,-138r-18,0r5,-30r18,0r10,-65r32,0r-10,65r32,0r-5,30r-32,0","w":86},"u":{"d":"48,-168r32,0r-15,93v-4,27,-1,51,31,51v65,0,46,-92,62,-144r32,0v-13,76,-9,174,-99,174v-94,0,-51,-109,-43,-174","w":184},"v":{"d":"58,-168r32,105r65,-105r37,0r-113,174r-57,-174r36,0","w":160},"w":{"d":"58,-168r32,107r68,-117r31,117r66,-107r36,0r-113,174r-31,-113r-68,113r-58,-174r37,0","w":258},"x":{"d":"85,-91r-49,-77r39,0r31,54r52,-54r39,0r-74,77r58,91r-38,0r-44,-68r-65,68r-39,0","w":176},"y":{"d":"77,-29r-55,-139r38,0r40,106r70,-106r36,0r-178,264r-37,0","w":174},"z":{"d":"69,-30r109,0r-5,30r-172,0r136,-138r-95,0r5,-30r158,0","w":178},"{":{"d":"33,-98r4,-26v38,-13,35,-75,46,-120v10,-42,25,-51,66,-47r-5,30v-45,-6,-31,57,-39,89v-11,40,-32,58,-37,61v4,3,24,21,17,62r-10,66v-6,20,2,26,22,23r-5,30v-70,17,-49,-66,-41,-113v4,-27,-1,-47,-18,-55","w":120},"|":{"d":"163,-283r-57,360r-31,0r57,-360r31,0","w":205},"}":{"d":"123,-124r-5,26v-37,14,-35,76,-46,120v-11,42,-25,52,-66,48r5,-30v45,6,27,-58,40,-89v7,-41,32,-59,37,-62v-4,-3,-25,-20,-18,-61r11,-67v5,-19,-3,-24,-22,-22r4,-30v71,-17,49,67,41,113v-5,27,2,46,19,54","w":120},"~":{"d":"87,-126v32,0,47,32,68,37v14,0,22,-13,36,-31r21,18v-14,20,-35,44,-61,44v-23,0,-50,-37,-68,-37v-12,0,-24,10,-38,29r-20,-16v16,-19,36,-44,62,-44"},"\u00a1":{"d":"63,-162v1,-24,46,-29,41,0v-1,25,-46,29,-41,0xm60,-116r33,0r-34,209r-32,0","w":115},"\u00a2":{"d":"168,-253r-4,27v15,1,30,3,42,11v-3,13,-2,30,-7,41v-8,-13,-23,-22,-40,-22r-18,118v18,-3,32,-9,47,-22r-7,42v-15,7,-28,10,-45,10r-5,31r-17,0r5,-32v-42,-7,-69,-43,-62,-87v7,-45,44,-82,90,-89r4,-28r17,0xm123,-79r19,-115v-51,6,-79,99,-19,115"},"\u00a3":{"d":"152,6v-42,0,-97,-50,-121,0r-26,-15v17,-23,34,-39,62,-40v9,-21,15,-40,7,-59r-47,0r4,-21r36,0v-37,-72,22,-148,91,-148v51,0,78,34,73,84r-34,12v7,-35,-8,-65,-43,-65v-30,0,-62,29,-66,55v-4,25,9,44,16,62r53,0r-3,21r-45,0v3,22,0,40,-10,62v19,5,37,19,57,19v15,0,27,-14,35,-26r24,16v-14,24,-36,43,-63,43"},"\u2044":{"d":"144,-277r17,9r-202,274r-17,-10","w":59},"\u00a5":{"d":"136,-94r-15,94r-34,0r15,-94r-85,0r3,-20r85,0v1,-14,-10,-25,-13,-38r-66,0r4,-21r53,0r-41,-98r38,0r49,115r85,-115r39,0r-73,98r53,0r-3,21r-65,0v-8,13,-20,23,-26,38r85,0r-3,20r-85,0"},"\u0192":{"d":"157,-182r46,0r-7,25r-47,0v-39,81,-33,216,-152,211r10,-31v48,3,58,-31,71,-69r36,-111r-23,0r7,-25r25,0v19,-58,37,-136,119,-116r-11,30v-52,-16,-58,48,-74,86"},"\u00a7":{"d":"96,-121r58,32v29,-14,38,-52,5,-70r-61,-33v-14,8,-25,23,-27,38v-3,18,12,26,25,33xm153,-30v-5,-65,-125,-46,-115,-120v4,-26,21,-44,44,-59v-31,-49,22,-103,69,-103v37,0,66,21,62,60r-31,0v2,-21,-16,-32,-35,-32v-20,0,-39,16,-42,36v4,61,117,47,110,114v-3,24,-21,47,-42,61v39,51,-21,116,-75,113v-48,-3,-77,-30,-69,-82r32,0v-5,29,11,53,41,53v23,0,47,-17,51,-41"},"\u00a4":{"d":"36,-57v-17,-33,-5,-80,17,-102r-13,-16r25,-22r14,16v25,-21,84,-23,107,0r19,-16r18,22r-17,16v17,33,5,80,-16,102r12,16r-25,22r-14,-16v-25,21,-84,23,-107,0r-19,16r-18,-22xm111,-47v35,0,67,-28,73,-61v6,-36,-17,-61,-53,-61v-36,0,-68,25,-73,61v-5,33,18,61,53,61"},"'":{"d":"75,-271r36,0r-26,118r-22,0","w":99},"\u201c":{"d":"137,-170r-27,-11r63,-96r19,8xm77,-170r-27,-11r63,-96r19,8","w":158},"\u00ab":{"d":"130,-115r43,69r-23,14r-52,-83r79,-87r18,15xm61,-115r43,69r-23,14r-52,-83r79,-87r18,15","w":188},"\u2039":{"d":"58,-115r43,69r-23,14r-52,-83r79,-87r18,15","w":120},"\u203a":{"d":"35,-46r64,-69r-42,-72r22,-15r52,87r-78,83","w":120},"\ufb01":{"d":"181,-168r-26,168r-33,0r27,-168r32,0xm181,-268v12,0,21,9,19,22v-2,12,-14,22,-26,22v-12,0,-21,-10,-19,-22v2,-13,14,-22,26,-22xm155,-312r-5,32v-6,-3,-13,-7,-20,-7v-23,0,-28,29,-31,46r-11,73r45,0r-5,30r-45,0r-22,138r-32,0r22,-138r-15,0r5,-30r14,0v11,-68,11,-171,100,-144","w":184},"\ufb02":{"d":"205,-312r-50,312r-32,0r49,-312r33,0xm155,-312r-5,32v-6,-3,-13,-7,-20,-7v-23,0,-28,29,-31,46r-11,73r45,0r-5,30r-45,0r-22,138r-32,0r22,-138r-15,0r5,-30r14,0v11,-68,11,-171,100,-144","w":178},"\u2013":{"d":"20,-129r180,0r-4,27r-180,0","w":180},"\u2020":{"d":"137,-312r33,0r-16,99r65,0r-5,30r-65,0r-34,215r-32,0r34,-215r-65,0r4,-30r66,0"},"\u2021":{"d":"137,-312r33,0r-14,86r65,0r-5,31r-65,0r-7,43r65,0r-4,31r-66,0r-24,152r-32,0r24,-152r-65,0r5,-31r65,0r7,-43r-65,0r5,-31r65,0"},"\u00b7":{"d":"46,-92v1,-25,46,-28,42,0v-1,24,-47,30,-42,0","w":104},"\u00b6":{"d":"237,-271r-5,30r-22,0r-47,296r-30,0r47,-296r-23,0r-47,296r-30,0r25,-157v-41,0,-66,-28,-62,-77v4,-44,44,-92,92,-92r102,0"},"\u2022":{"d":"115,-68v-37,0,-63,-30,-57,-68v6,-38,40,-68,78,-68v38,0,64,30,58,68v-6,38,-42,68,-79,68"},"\u201a":{"d":"66,-43r26,11r-63,96r-18,-8","w":99},"\u201e":{"d":"64,-43r27,11r-63,96r-19,-8xm124,-43r26,11r-63,96r-18,-8","w":158},"\u201d":{"d":"92,-277r27,11r-63,96r-19,-8xm152,-277r27,11r-64,96r-18,-8","w":158},"\u00bb":{"d":"30,-46r65,-69r-43,-72r23,-15r52,87r-79,83xm99,-46r65,-69r-43,-72r23,-15r52,87r-79,83","w":188},"\u2026":{"d":"162,-15v1,-24,46,-29,41,0v-1,25,-46,29,-41,0xm282,-15v1,-25,46,-28,42,0v-1,24,-47,30,-42,0xm41,-15v1,-25,46,-28,42,0v-1,25,-46,29,-42,0","w":360},"\u2030":{"d":"115,-277v34,0,59,27,54,62v-5,34,-39,61,-73,61v-34,0,-59,-27,-54,-61v5,-35,39,-62,73,-62xm112,-256v-22,0,-44,19,-48,41v-3,22,13,40,35,40v49,0,70,-80,13,-81xm244,-277r15,9r-202,274r-15,-9xm206,-118v34,0,59,27,54,62v-5,34,-39,62,-73,62v-34,0,-59,-28,-54,-62v5,-35,39,-62,73,-62xm203,-96v-22,0,-44,18,-48,40v-3,22,13,40,35,40v48,0,70,-79,13,-80xm347,-118v34,0,59,27,54,62v-5,34,-39,62,-73,62v-34,0,-59,-28,-54,-62v5,-35,39,-62,73,-62xm344,-96v-22,0,-44,18,-48,40v-3,22,13,40,35,40v48,0,70,-79,13,-80","w":399},"\u00bf":{"d":"71,66v20,-1,38,-18,35,-43r34,0v1,44,-37,72,-75,73v-61,3,-70,-77,-29,-108v25,-19,70,-12,79,-46v3,-14,-7,-26,-21,-26v-15,0,-28,12,-30,27r-33,0v4,-31,36,-57,67,-57v32,0,53,25,49,57v-7,64,-92,40,-104,91v-5,20,9,32,28,32xm85,-162v1,-25,46,-28,42,0v-1,25,-46,29,-42,0","w":163},"`":{"d":"67,-248r32,-16r36,60r-18,9","w":129},"\u00b4":{"d":"114,-264r28,16r-68,53r-14,-9","w":129},"\u02c6":{"d":"61,-212r65,-52r50,52r-24,17r-31,-35r-42,35","w":169},"\u02dc":{"d":"151,-204v-28,0,-61,-37,-78,-2r-15,-15v12,-14,26,-30,45,-29v30,2,60,37,80,2r15,14v-11,17,-27,30,-47,30","w":183},"\u00af":{"d":"65,-250r130,0r-4,25r-130,0","w":180},"\u02d8":{"d":"65,-250r26,0v7,39,61,32,74,0r25,0v-14,60,-120,72,-125,0","w":176},"\u02d9":{"d":"79,-228v3,-25,48,-31,44,0v-2,12,-13,22,-25,22v-12,0,-20,-10,-19,-22","w":129},"\u00a8":{"d":"86,-250v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22xm162,-250v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22","w":169},"\u02da":{"d":"69,-231v4,-38,72,-46,65,0v-3,18,-20,32,-38,32v-18,0,-29,-14,-27,-32xm99,-215v20,2,27,-32,5,-33v-19,-2,-28,32,-5,33","w":129},"\u00b8":{"d":"85,17r-45,48r-18,-10r39,-49","w":118},"\u02dd":{"d":"167,-261r27,16r-67,53r-14,-9xm101,-264r27,16r-68,53r-14,-9","w":169},"\u02db":{"d":"23,47v4,-20,20,-43,52,-41v-19,6,-44,46,-9,48v6,0,12,-1,18,-5r-5,21v-23,13,-62,5,-56,-23","w":122},"\u02c7":{"d":"67,-248r23,-16r31,34r42,-34r19,16r-66,53","w":169},"\u2014":{"d":"67,-129r267,0r-5,27r-266,0","w":360},"\u00c6":{"d":"202,-68r-123,0r-42,68r-37,0r173,-271r119,0r9,31r-111,0r20,75r109,0r9,31r-108,0r27,103r112,0r9,31r-147,0xm195,-99r-31,-105r-66,105r97,0","w":358},"\u00aa":{"d":"90,-187v43,4,62,-72,11,-73v-42,-3,-59,71,-11,73xm159,-274r-16,101r-21,0v0,-5,4,-13,2,-16v-27,37,-98,15,-84,-35v1,-43,70,-75,95,-33r3,-17r21,0","w":120},"\u0141":{"d":"103,-271r-17,103r48,-30r-6,33r-47,28r-16,106r82,0r-5,31r-116,0r18,-116r-32,21r5,-33r32,-19r20,-124r34,0","w":138},"\u00d8":{"d":"269,-201r-178,152v85,72,231,-39,178,-152xm75,-68r179,-152v-85,-80,-244,40,-179,152xm4,-8r43,-36v-85,-133,108,-309,233,-199r40,-34r16,19r-40,35v77,136,-108,299,-233,198r-43,37","w":298},"\u0152":{"d":"258,0v2,-14,8,-32,7,-45v-30,33,-73,51,-117,51v-78,0,-130,-61,-120,-142v15,-119,193,-196,266,-88r7,-47r143,0r-5,31r-112,0r-12,75r108,0r-4,31r-109,0r-16,103r112,0r-5,31r-143,0xm153,-26v59,0,116,-48,126,-110v9,-60,-27,-110,-91,-110v-64,0,-117,50,-126,110v-10,62,32,110,91,110","w":411},"\u00ba":{"d":"35,-223v3,-64,128,-75,117,0v-3,63,-128,74,-117,0xm99,-258v-43,-4,-62,69,-11,70v44,4,63,-69,11,-70","w":116},"\u00e6":{"d":"175,-103r95,0v-1,-63,-85,-46,-95,0xm130,-51v-1,-40,-75,-35,-82,1v1,38,74,36,82,-1xm298,-79r-129,0v-4,29,11,56,42,56v25,0,41,-13,56,-33r25,16v-31,49,-112,65,-146,14v-17,21,-45,32,-69,32v-33,0,-66,-17,-60,-55v8,-55,81,-74,122,-41v6,-33,0,-57,-36,-55v-15,0,-31,0,-47,5r5,-29v41,-8,88,-11,104,23v18,-18,43,-28,69,-28v56,0,71,42,64,95","w":290},"\u0131":{"d":"89,-168r-27,168r-32,0r26,-168r33,0","w":91},"\u0142":{"d":"30,0r23,-148r-32,19r4,-29r33,-19r21,-135r32,0r-17,113r32,-21r-4,30r-33,20r-27,170r-32,0","w":91},"\u00f8":{"d":"58,-51r93,-81v-45,-35,-120,22,-93,81xm164,-115r-92,80v45,32,115,-22,92,-80xm3,-3r28,-24v-49,-86,66,-191,147,-128r25,-22r14,16r-26,22v44,87,-66,187,-146,127r-28,26","w":194},"\u0153":{"d":"207,-103r94,0v-1,-63,-85,-46,-94,0xm120,-143v-32,0,-62,27,-67,59v-5,32,16,59,48,59v32,0,62,-27,67,-59v5,-32,-16,-59,-48,-59xm330,-79r-129,0v-4,29,11,56,42,56v25,0,41,-13,56,-33r25,16v-31,51,-121,67,-150,9v-48,65,-167,39,-154,-53v12,-79,128,-126,171,-52v19,-24,44,-37,75,-38v56,-1,74,44,64,95","w":322},"\u00df":{"d":"101,6r4,-30v37,0,75,-32,81,-69v7,-42,-20,-63,-59,-66r5,-32v55,7,83,-95,17,-96v-48,0,-55,51,-60,86r-32,201r-33,0r22,-139r-14,0r5,-30r14,0v10,-73,22,-148,104,-148v80,0,85,114,21,138v34,12,49,50,43,86v-9,57,-63,102,-118,99"},"\u00f7":{"d":"24,-77r5,-31r184,0r-5,31r-184,0xm111,-45v12,0,21,10,19,23v-2,12,-14,22,-26,22v-12,0,-21,-10,-19,-22v2,-13,14,-23,26,-23xm133,-184v12,0,21,9,19,22v-2,12,-14,22,-26,22v-12,0,-21,-10,-19,-22v2,-13,14,-22,26,-22"},"\u00be":{"d":"287,-45r18,0r-4,21r-17,0r-4,24r-23,0r4,-24r-88,0r134,-146xm264,-45v2,-19,8,-42,8,-59r-53,59r45,0xm96,-186r3,-21v40,6,53,-50,12,-49v-14,0,-28,6,-30,20r-25,0v9,-27,30,-41,59,-41v53,0,58,66,15,80v47,27,5,90,-45,90v-27,0,-50,-17,-47,-44r23,0v5,36,62,26,66,-6v3,-19,-11,-30,-31,-29xm291,-277r17,9r-202,274r-16,-10","w":312},"\u00bc":{"d":"85,-251r-31,0r16,-20r41,0r-25,162r-23,0xm287,-45r18,0r-4,21r-17,0r-4,24r-23,0r4,-24r-88,0r134,-146xm264,-45v2,-19,8,-42,8,-59r-53,59r45,0xm271,-277r17,9r-202,274r-17,-10","w":312},"\u00b9":{"d":"94,-251r-31,0r16,-20r41,0r-25,162r-23,0","w":124},"\u00d7":{"d":"38,-162r25,-22r59,70r82,-70r18,22r-81,70r59,70r-25,22r-60,-70r-82,70r-18,-22r82,-70"},"\u00ae":{"d":"143,6v-79,0,-131,-63,-119,-142v12,-79,85,-141,164,-141v79,0,131,62,119,141v-12,79,-85,142,-164,142xm184,-254v-65,0,-126,51,-137,118v-11,67,35,119,100,119v65,0,126,-52,137,-119v11,-67,-35,-118,-100,-118xm189,-129r29,74r-27,0r-29,-74r-29,0r-12,74r-23,0r25,-159v51,3,122,-15,115,42v-5,31,-28,42,-49,43xm215,-170v5,-32,-43,-18,-72,-21r-7,39v32,-3,74,10,79,-18","w":288},"\u00de":{"d":"70,-63r-10,63r-34,0r43,-271r34,0r-8,50v83,-1,113,27,102,78v-12,63,-62,83,-127,80xm90,-191r-15,97v42,1,82,-2,90,-49v8,-45,-36,-49,-75,-48","w":178},"\u00a6":{"d":"127,-58r-14,90r-31,0r14,-90r31,0xm156,-238r-14,90r-31,0r14,-90r31,0","w":205},"\u00d0":{"d":"48,-159r18,-112v115,-9,205,23,187,134v-19,112,-107,146,-230,137r21,-130r-23,0r4,-29r23,0xm95,-240r-13,81r48,0r-4,29r-48,0r-16,99v79,2,143,-22,157,-105v14,-83,-47,-106,-124,-104","w":239},"\u00bd":{"d":"63,-109r22,-142r-31,0r16,-20r41,0r-25,162r-23,0xm233,-21r68,0r-3,21r-114,0r91,-87v23,-15,25,-59,-10,-58v-18,0,-32,11,-36,27r-24,0v8,-29,31,-48,63,-48v49,0,61,53,31,82xm252,-277r17,9r-202,274r-16,-10","w":312},"\u2212":{"d":"24,-77r5,-31r184,0r-5,31r-184,0"},"\u00e7":{"d":"172,-162r-7,41v-32,-46,-102,-12,-110,37v-9,61,67,78,99,37r-7,42v-62,32,-137,-9,-125,-78v11,-65,86,-114,150,-79xm105,17r-45,48r-18,-10r39,-49","w":158},"\u00f0":{"d":"120,-143v-32,0,-62,27,-67,59v-5,32,16,59,48,59v32,0,62,-27,67,-59v5,-32,-16,-59,-48,-59xm53,-230r57,-30v-11,-14,-22,-26,-34,-37r23,-19v13,10,27,24,40,41r57,-30r12,20r-55,29v33,48,58,111,49,165v-10,61,-56,97,-106,97v-50,0,-83,-39,-76,-90v8,-62,87,-114,141,-77v-10,-30,-23,-56,-38,-79r-57,30","w":194},"\u00b1":{"d":"12,0r5,-31r184,0r-5,31r-184,0xm121,-202r31,0r-10,62r76,0r-5,31r-76,0r-10,62r-31,0r10,-62r-77,0r5,-31r77,0"},"\u00c7":{"d":"265,-259r-7,39v-69,-64,-181,1,-192,85v-8,59,29,110,89,110v27,0,54,-10,77,-28r-6,40v-96,53,-213,-13,-194,-121v17,-100,133,-180,233,-125xm145,17r-46,48r-17,-10r39,-49","w":237},"\u00fe":{"d":"102,-312r-27,172v17,-20,39,-34,64,-34v49,0,69,43,65,89v-6,71,-105,128,-148,59r-19,122r-32,0r64,-408r33,0xm107,-23v66,0,98,-122,20,-122v-33,0,-58,30,-63,61v-5,32,9,61,43,61","w":200},"\u00a9":{"d":"143,6v-79,0,-131,-63,-119,-142v12,-79,85,-141,164,-141v79,0,131,62,119,141v-12,79,-85,142,-164,142xm184,-254v-65,0,-126,51,-137,118v-11,67,35,119,100,119v65,0,126,-52,137,-119v11,-67,-35,-118,-100,-118xm242,-165r-22,0v-1,-20,-16,-30,-40,-30v-71,0,-93,114,-18,117v24,0,42,-12,50,-33r22,0v-10,34,-42,56,-75,56v-48,0,-73,-37,-66,-82v7,-47,42,-82,91,-82v33,0,57,21,58,54","w":288},"\u00ac":{"d":"172,-41r10,-67r-153,0r5,-31r184,0r-15,98r-31,0"},"\u00b2":{"d":"72,-130r68,0r-3,21r-114,0r91,-87v24,-15,24,-58,-10,-58v-18,0,-32,11,-36,27r-24,0v8,-29,31,-48,63,-48v49,0,61,53,31,82","w":124},"\u00b3":{"d":"88,-186r4,-21v40,6,51,-51,11,-49v-14,0,-28,6,-30,20r-24,0v9,-27,29,-41,58,-41v54,0,60,65,16,80v47,27,4,90,-46,90v-27,0,-49,-17,-46,-44r23,0v5,36,62,26,66,-6v3,-19,-12,-30,-32,-29","w":124},"\u2122":{"d":"369,-271r-24,151r-23,0r20,-128r-72,128r-14,0r-31,-128r-21,128r-23,0r24,-151r38,0r27,106r62,-106r37,0xm178,-271r-4,23r-50,0r-20,128r-23,0r20,-128r-49,0r3,-23r123,0","w":338},"\u00b0":{"d":"161,-223v-5,30,-32,54,-62,54v-30,0,-51,-24,-46,-54v4,-30,33,-54,63,-54v30,0,50,24,45,54xm113,-259v-42,-4,-62,72,-11,72v41,5,61,-71,11,-72","w":144},"\u03bc":{"d":"48,-168r32,0r-15,93v-4,27,-1,51,31,51v65,0,46,-92,62,-144r32,0v-13,76,-9,176,-99,174v-14,0,-28,-8,-36,-16r-17,106r-32,0","w":184},"\u00c1":{"d":"200,-68r-125,0r-42,68r-36,0r175,-283r84,283r-36,0xm191,-99r-31,-110r-66,110r97,0xm205,-358r28,16r-68,53r-14,-9","w":253},"\u00c2":{"d":"200,-68r-125,0r-42,68r-36,0r175,-283r84,283r-36,0xm191,-99r-31,-110r-66,110r97,0xm118,-306r65,-52r50,52r-24,17r-31,-35r-42,35","w":253},"\u00c4":{"d":"200,-68r-125,0r-42,68r-36,0r175,-283r84,283r-36,0xm191,-99r-31,-110r-66,110r97,0xm143,-344v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22xm219,-344v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22","w":253},"\u00c0":{"d":"200,-68r-125,0r-42,68r-36,0r175,-283r84,283r-36,0xm191,-99r-31,-110r-66,110r97,0xm129,-342r32,-16r36,60r-18,9","w":253},"\u00c5":{"d":"200,-68r-125,0r-42,68r-36,0r175,-283r84,283r-36,0xm191,-99r-31,-110r-66,110r97,0xm145,-321v4,-38,72,-46,65,0v-3,18,-20,32,-38,32v-18,0,-29,-14,-27,-32xm175,-305v20,2,27,-32,5,-33v-19,-2,-28,32,-5,33","w":253},"\u00c3":{"d":"200,-68r-125,0r-42,68r-36,0r175,-283r84,283r-36,0xm191,-99r-31,-110r-66,110r97,0xm201,-298v-28,0,-61,-37,-78,-2r-15,-15v12,-14,26,-30,45,-29v30,2,60,37,80,2r15,14v-11,17,-27,30,-47,30","w":253},"\u00c9":{"d":"26,0r43,-271r146,0r-5,31r-112,0r-12,75r109,0r-5,31r-109,0r-16,103r112,0r-5,31r-146,0xm172,-358r28,16r-68,53r-14,-9","w":187},"\u00ca":{"d":"26,0r43,-271r146,0r-5,31r-112,0r-12,75r109,0r-5,31r-109,0r-16,103r112,0r-5,31r-146,0xm90,-306r65,-52r50,52r-24,17r-31,-35r-42,35","w":187},"\u00cb":{"d":"26,0r43,-271r146,0r-5,31r-112,0r-12,75r109,0r-5,31r-109,0r-16,103r112,0r-5,31r-146,0xm115,-344v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22xm191,-344v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22","w":187},"\u00c8":{"d":"26,0r43,-271r146,0r-5,31r-112,0r-12,75r109,0r-5,31r-109,0r-16,103r112,0r-5,31r-146,0xm104,-342r32,-16r36,60r-18,9","w":187},"\u00cd":{"d":"102,-271r-43,271r-34,0r43,-271r34,0xm117,-358r28,16r-68,53r-14,-9","w":83},"\u00ce":{"d":"102,-271r-43,271r-34,0r43,-271r34,0xm33,-306r65,-52r50,52r-24,17r-31,-35r-42,35","w":83},"\u00cf":{"d":"102,-271r-43,271r-34,0r43,-271r34,0xm58,-344v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22xm134,-344v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22","w":83},"\u00cc":{"d":"102,-271r-43,271r-34,0r43,-271r34,0xm48,-342r32,-16r36,60r-18,9","w":83},"\u00d1":{"d":"23,0r45,-284r170,213r31,-200r34,0r-44,282r-170,-213r-32,202r-34,0xm216,-298v-28,0,-61,-37,-78,-2r-15,-15v12,-14,26,-30,45,-29v30,2,60,37,80,2r15,14v-11,17,-27,30,-47,30","w":282},"\u00d3":{"d":"193,-277v78,0,132,63,120,141v-13,81,-87,142,-165,142v-78,0,-133,-61,-120,-142v12,-78,87,-141,165,-141xm153,-26v59,0,116,-48,126,-110v9,-60,-27,-110,-91,-110v-64,0,-117,50,-126,110v-10,62,32,110,91,110xm224,-358r28,16r-68,53r-14,-9","w":298},"\u00d4":{"d":"193,-277v78,0,132,63,120,141v-13,81,-87,142,-165,142v-78,0,-133,-61,-120,-142v12,-78,87,-141,165,-141xm153,-26v59,0,116,-48,126,-110v9,-60,-27,-110,-91,-110v-64,0,-117,50,-126,110v-10,62,32,110,91,110xm140,-306r65,-52r50,52r-24,17r-31,-35r-42,35","w":298},"\u00d6":{"d":"193,-277v78,0,132,63,120,141v-13,81,-87,142,-165,142v-78,0,-133,-61,-120,-142v12,-78,87,-141,165,-141xm153,-26v59,0,116,-48,126,-110v9,-60,-27,-110,-91,-110v-64,0,-117,50,-126,110v-10,62,32,110,91,110xm165,-344v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22xm241,-344v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22","w":298},"\u00d2":{"d":"193,-277v78,0,132,63,120,141v-13,81,-87,142,-165,142v-78,0,-133,-61,-120,-142v12,-78,87,-141,165,-141xm153,-26v59,0,116,-48,126,-110v9,-60,-27,-110,-91,-110v-64,0,-117,50,-126,110v-10,62,32,110,91,110xm155,-342r32,-16r36,60r-18,9","w":298},"\u00d5":{"d":"193,-277v78,0,132,63,120,141v-13,81,-87,142,-165,142v-78,0,-133,-61,-120,-142v12,-78,87,-141,165,-141xm153,-26v59,0,116,-48,126,-110v9,-60,-27,-110,-91,-110v-64,0,-117,50,-126,110v-10,62,32,110,91,110xm223,-298v-28,0,-61,-37,-78,-2r-15,-15v12,-14,26,-30,45,-29v30,2,60,37,80,2r15,14v-11,17,-27,30,-47,30","w":298},"\u0160":{"d":"211,-236r-30,16v-13,-42,-86,-29,-91,13v-4,29,28,37,50,46v36,15,62,37,55,82v-8,49,-52,85,-101,85v-44,0,-72,-32,-71,-76r35,-7v-5,30,15,51,44,51v29,0,56,-25,59,-53v7,-70,-117,-47,-104,-128v12,-71,127,-99,154,-29xm97,-342r23,-16r31,34r42,-34r19,16r-66,53","w":193},"\u00da":{"d":"64,-271r34,0r-25,160v-7,44,0,85,52,85v52,0,72,-41,79,-85r25,-160r34,0r-27,171v-9,60,-54,106,-116,106v-62,0,-92,-46,-83,-106xm195,-358r28,16r-68,53r-14,-9","w":240},"\u00db":{"d":"64,-271r34,0r-25,160v-7,44,0,85,52,85v52,0,72,-41,79,-85r25,-160r34,0r-27,171v-9,60,-54,106,-116,106v-62,0,-92,-46,-83,-106xm112,-306r65,-52r50,52r-24,17r-31,-35r-42,35","w":240},"\u00dc":{"d":"64,-271r34,0r-25,160v-7,44,0,85,52,85v52,0,72,-41,79,-85r25,-160r34,0r-27,171v-9,60,-54,106,-116,106v-62,0,-92,-46,-83,-106xm137,-344v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22xm213,-344v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22","w":240},"\u00d9":{"d":"64,-271r34,0r-25,160v-7,44,0,85,52,85v52,0,72,-41,79,-85r25,-160r34,0r-27,171v-9,60,-54,106,-116,106v-62,0,-92,-46,-83,-106xm127,-342r32,-16r36,60r-18,9","w":240},"\u00dd":{"d":"105,-118r-64,-153r39,0r48,115r85,-115r39,0r-113,153r-19,118r-34,0xm189,-358r28,16r-68,53r-14,-9","w":206},"\u0178":{"d":"105,-118r-64,-153r39,0r48,115r85,-115r39,0r-113,153r-19,118r-34,0xm124,-344v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22xm200,-344v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22","w":206},"\u017d":{"d":"63,-31r138,0r-5,31r-193,0r176,-240r-118,0r5,-31r173,0xm102,-342r23,-16r31,34r42,-34r19,16r-66,53","w":198},"\u00e1":{"d":"99,-23v66,0,96,-122,19,-122v-33,0,-58,30,-63,61v-5,32,10,61,44,61xm207,-168r-27,168r-32,0v0,-8,5,-20,3,-26v-16,19,-38,32,-62,32v-51,0,-71,-43,-66,-91v7,-70,107,-126,147,-55r5,-28r32,0xm164,-264r28,16r-68,53r-14,-9","w":200},"\u00e2":{"d":"99,-23v66,0,96,-122,19,-122v-33,0,-58,30,-63,61v-5,32,10,61,44,61xm207,-168r-27,168r-32,0v0,-8,5,-20,3,-26v-16,19,-38,32,-62,32v-51,0,-71,-43,-66,-91v7,-70,107,-126,147,-55r5,-28r32,0xm76,-212r65,-52r50,52r-24,17r-31,-35r-42,35","w":200},"\u00e4":{"d":"99,-23v66,0,96,-122,19,-122v-33,0,-58,30,-63,61v-5,32,10,61,44,61xm207,-168r-27,168r-32,0v0,-8,5,-20,3,-26v-16,19,-38,32,-62,32v-51,0,-71,-43,-66,-91v7,-70,107,-126,147,-55r5,-28r32,0xm101,-250v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22xm177,-250v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22","w":200},"\u00e0":{"d":"99,-23v66,0,96,-122,19,-122v-33,0,-58,30,-63,61v-5,32,10,61,44,61xm207,-168r-27,168r-32,0v0,-8,5,-20,3,-26v-16,19,-38,32,-62,32v-51,0,-71,-43,-66,-91v7,-70,107,-126,147,-55r5,-28r32,0xm97,-248r32,-16r36,60r-18,9","w":200},"\u00e5":{"d":"99,-23v66,0,96,-122,19,-122v-33,0,-58,30,-63,61v-5,32,10,61,44,61xm207,-168r-27,168r-32,0v0,-8,5,-20,3,-26v-16,19,-38,32,-62,32v-51,0,-71,-43,-66,-91v7,-70,107,-126,147,-55r5,-28r32,0xm104,-231v4,-38,72,-46,65,0v-3,18,-20,32,-38,32v-18,0,-29,-14,-27,-32xm134,-215v20,2,27,-32,5,-33v-19,-2,-28,32,-5,33","w":200},"\u00e3":{"d":"99,-23v66,0,96,-122,19,-122v-33,0,-58,30,-63,61v-5,32,10,61,44,61xm207,-168r-27,168r-32,0v0,-8,5,-20,3,-26v-16,19,-38,32,-62,32v-51,0,-71,-43,-66,-91v7,-70,107,-126,147,-55r5,-28r32,0xm159,-204v-28,0,-61,-37,-78,-2r-15,-15v12,-14,26,-30,45,-29v30,2,60,37,80,2r15,14v-11,17,-27,30,-47,30","w":200},"\u00e9":{"d":"183,-79r-129,0v-4,29,11,56,42,56v25,0,41,-13,56,-33r25,16v-20,29,-53,46,-86,46v-51,0,-77,-39,-69,-89v8,-52,43,-91,97,-91v56,-1,74,44,64,95xm60,-103r94,0v-1,-63,-85,-46,-94,0xm151,-264r28,16r-68,53r-14,-9","w":175},"\u00ea":{"d":"183,-79r-129,0v-4,29,11,56,42,56v25,0,41,-13,56,-33r25,16v-20,29,-53,46,-86,46v-51,0,-77,-39,-69,-89v8,-52,43,-91,97,-91v56,-1,74,44,64,95xm60,-103r94,0v-1,-63,-85,-46,-94,0xm64,-212r65,-52r50,52r-24,17r-31,-35r-42,35","w":175},"\u00eb":{"d":"183,-79r-129,0v-4,29,11,56,42,56v25,0,41,-13,56,-33r25,16v-20,29,-53,46,-86,46v-51,0,-77,-39,-69,-89v8,-52,43,-91,97,-91v56,-1,74,44,64,95xm60,-103r94,0v-1,-63,-85,-46,-94,0xm89,-250v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22xm165,-250v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22","w":175},"\u00e8":{"d":"183,-79r-129,0v-4,29,11,56,42,56v25,0,41,-13,56,-33r25,16v-20,29,-53,46,-86,46v-51,0,-77,-39,-69,-89v8,-52,43,-91,97,-91v56,-1,74,44,64,95xm60,-103r94,0v-1,-63,-85,-46,-94,0xm85,-248r32,-16r36,60r-18,9","w":175},"\u00ed":{"d":"89,-168r-27,168r-32,0r26,-168r33,0xm106,-264r28,16r-68,53r-14,-9","w":91},"\u00ee":{"d":"89,-168r-27,168r-32,0r26,-168r33,0xm22,-212r65,-52r50,52r-24,17r-31,-35r-42,35","w":91},"\u00ef":{"d":"89,-168r-27,168r-32,0r26,-168r33,0xm47,-250v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22xm123,-250v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22","w":91},"\u00ec":{"d":"89,-168r-27,168r-32,0r26,-168r33,0xm37,-248r32,-16r36,60r-18,9","w":91},"\u00f1":{"d":"81,-168v0,7,-4,17,-2,22v13,-18,34,-28,55,-28v89,0,34,114,32,174r-32,0r15,-96v5,-29,3,-49,-30,-49v-69,0,-47,90,-64,145r-33,0r27,-168r32,0xm154,-204v-28,0,-61,-37,-78,-2r-15,-15v12,-14,26,-30,45,-29v30,2,60,37,80,2r15,14v-11,17,-27,30,-47,30","w":188},"\u00f3":{"d":"125,-174v50,0,83,39,75,90v-8,51,-54,90,-104,90v-50,0,-84,-39,-76,-90v8,-51,55,-90,105,-90xm120,-143v-32,0,-62,27,-67,59v-5,32,16,59,48,59v32,0,62,-27,67,-59v5,-32,-16,-59,-48,-59xm161,-264r28,16r-68,53r-14,-9","w":194},"\u00f4":{"d":"125,-174v50,0,83,39,75,90v-8,51,-54,90,-104,90v-50,0,-84,-39,-76,-90v8,-51,55,-90,105,-90xm120,-143v-32,0,-62,27,-67,59v-5,32,16,59,48,59v32,0,62,-27,67,-59v5,-32,-16,-59,-48,-59xm74,-212r65,-52r50,52r-24,17r-31,-35r-42,35","w":194},"\u00f6":{"d":"125,-174v50,0,83,39,75,90v-8,51,-54,90,-104,90v-50,0,-84,-39,-76,-90v8,-51,55,-90,105,-90xm120,-143v-32,0,-62,27,-67,59v-5,32,16,59,48,59v32,0,62,-27,67,-59v5,-32,-16,-59,-48,-59xm99,-250v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22xm175,-250v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22","w":194},"\u00f2":{"d":"125,-174v50,0,83,39,75,90v-8,51,-54,90,-104,90v-50,0,-84,-39,-76,-90v8,-51,55,-90,105,-90xm120,-143v-32,0,-62,27,-67,59v-5,32,16,59,48,59v32,0,62,-27,67,-59v5,-32,-16,-59,-48,-59xm85,-248r32,-16r36,60r-18,9","w":194},"\u00f5":{"d":"125,-174v50,0,83,39,75,90v-8,51,-54,90,-104,90v-50,0,-84,-39,-76,-90v8,-51,55,-90,105,-90xm120,-143v-32,0,-62,27,-67,59v-5,32,16,59,48,59v32,0,62,-27,67,-59v5,-32,-16,-59,-48,-59xm156,-204v-28,0,-61,-37,-78,-2r-15,-15v12,-14,26,-30,45,-29v30,2,60,37,80,2r15,14v-11,17,-27,30,-47,30","w":194},"\u0161":{"d":"139,-144r-28,14v-5,-20,-37,-19,-40,2v2,33,74,28,66,78v-10,57,-103,80,-119,18r29,-13v6,29,53,28,57,-2v-5,-38,-71,-30,-64,-78v7,-47,84,-71,99,-19xm51,-248r23,-16r31,34r42,-34r19,16r-66,53","w":138},"\u00fa":{"d":"48,-168r32,0r-15,93v-4,27,-1,51,31,51v65,0,46,-92,62,-144r32,0v-13,76,-9,174,-99,174v-94,0,-51,-109,-43,-174xm156,-264r28,16r-68,53r-14,-9","w":184},"\u00fb":{"d":"48,-168r32,0r-15,93v-4,27,-1,51,31,51v65,0,46,-92,62,-144r32,0v-13,76,-9,174,-99,174v-94,0,-51,-109,-43,-174xm69,-212r65,-52r50,52r-24,17r-31,-35r-42,35","w":184},"\u00fc":{"d":"48,-168r32,0r-15,93v-4,27,-1,51,31,51v65,0,46,-92,62,-144r32,0v-13,76,-9,174,-99,174v-94,0,-51,-109,-43,-174xm94,-250v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22xm170,-250v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22","w":184},"\u00f9":{"d":"48,-168r32,0r-15,93v-4,27,-1,51,31,51v65,0,46,-92,62,-144r32,0v-13,76,-9,174,-99,174v-94,0,-51,-109,-43,-174xm80,-248r32,-16r36,60r-18,9","w":184},"\u00fd":{"d":"77,-29r-55,-139r38,0r40,106r70,-106r36,0r-178,264r-37,0xm158,-264r28,16r-68,53r-14,-9","w":174},"\u00ff":{"d":"77,-29r-55,-139r38,0r40,106r70,-106r36,0r-178,264r-37,0xm92,-250v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22xm168,-250v12,0,20,10,19,22v-3,25,-48,31,-44,0v2,-12,13,-22,25,-22","w":174},"\u017e":{"d":"69,-30r109,0r-5,30r-172,0r136,-138r-95,0r5,-30r158,0xm77,-248r23,-16r31,34r42,-34r19,16r-66,53","w":178},"\u00a0":{"w":104}}});



/* Box UI */
(function (b) { function m(d, a) { var e = d == window, c = a && a.message !== void 0 ? a.message : void 0, a = b.extend({}, b.blockUI.defaults, a || {}); a.overlayCSS = b.extend({}, b.blockUI.defaults.overlayCSS, a.overlayCSS || {}); var g = b.extend({}, b.blockUI.defaults.css, a.css || {}), i = b.extend({}, b.blockUI.defaults.themedCSS, a.themedCSS || {}), c = c === void 0 ? a.message : c; e && j && p(window, { fadeOut: 0 }); if (c && typeof c != "string" && (c.parentNode || c.jquery)) { var h = c.jquery ? c[0] : c, f = {}; b(d).data("blockUI.history", f); f.el = h; f.parent = h.parentNode; f.display = h.style.display; f.position = h.style.position; f.parent && f.parent.removeChild(h) } var f = a.baseZ, k = b.browser.msie || a.forceIframe ? b('<iframe class="blockUI" style="z-index:' + f++ + ';display:none;border:none;margin:0;padding:0;position:absolute;width:100%;height:100%;top:0;left:0" src="' + a.iframeSrc + '"></iframe>') : b('<div class="blockUI" style="display:none"></div>'), h = a.theme ? b('<div class="blockUI blockOverlay ui-widget-overlay" style="z-index:' + f++ + ';display:none"></div>') : b('<div class="blockUI blockOverlay" style="z-index:' + f++ + ';display:none;border:none;margin:0;padding:0;width:100%;height:100%;top:0;left:0"></div>'), f = b(a.theme && e ? '<div class="blockUI ' + a.blockMsgClass + ' blockPage ui-dialog ui-widget ui-corner-all" style="z-index:' + f + ';display:none;position:fixed"><div class="ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle">' + (a.title || "&nbsp;") + '</div><div class="ui-widget-content ui-dialog-content"></div></div>' : a.theme ? '<div class="blockUI ' + a.blockMsgClass + ' blockElement ui-dialog ui-widget ui-corner-all" style="z-index:' + f + ';display:none;position:absolute"><div class="ui-widget-header ui-dialog-titlebar ui-corner-all blockTitle">' + (a.title || "&nbsp;") + '</div><div class="ui-widget-content ui-dialog-content"></div></div>' : e ? '<div class="blockUI ' + a.blockMsgClass + ' blockPage" style="z-index:' + f + ';display:none;position:fixed"></div>' : '<div class="blockUI ' + a.blockMsgClass + ' blockElement" style="z-index:' + f + ';display:none;position:absolute"></div>'); c && (a.theme ? (f.css(i), f.addClass("ui-widget-content")) : f.css(g)); !a.theme && (!a.applyPlatformOpacityRules || !b.browser.mozilla || !/Linux/.test(navigator.platform)) && h.css(a.overlayCSS); h.css("position", e ? "fixed" : "absolute"); (b.browser.msie || a.forceIframe) && k.css("opacity", 0); var g = [k, h, f], o = e ? b("body") : b(d); b.each(g, function () { this.appendTo(o) }); a.theme && a.draggable && b.fn.draggable && f.draggable({ handle: ".ui-dialog-titlebar", cancel: "li" }); g = v && (!b.boxModel || b("object,embed", e ? null : d).length > 0); if (r || g) { e && a.allowBodyStretch && b.boxModel && b("html,body").css("height", "100%"); if ((r || !b.boxModel) && !e) var g = parseInt(b.css(d, "borderTopWidth")) || 0, i = parseInt(b.css(d, "borderLeftWidth")) || 0, m = g ? "(0 - " + g + ")" : 0, n = i ? "(0 - " + i + ")" : 0; b.each([k, h, f], function (b, d) { var c = d[0].style; c.position = "absolute"; if (b < 2) e ? c.setExpression("height", "Math.max(document.body.scrollHeight, document.body.offsetHeight) - (jQuery.boxModel?0:" + a.quirksmodeOffsetHack + ') + "px"') : c.setExpression("height", 'this.parentNode.offsetHeight + "px"'), e ? c.setExpression("width", 'jQuery.boxModel && document.documentElement.clientWidth || document.body.clientWidth + "px"') : c.setExpression("width", 'this.parentNode.offsetWidth + "px"'), n && c.setExpression("left", n), m && c.setExpression("top", m); else if (a.centerY) e && c.setExpression("top", '(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"'), c.marginTop = 0; else if (!a.centerY && e) { var f = "((document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + " + (a.css && a.css.top ? parseInt(a.css.top) : 0) + ') + "px"'; c.setExpression("top", f) } }) } c && (a.theme ? f.find(".ui-widget-content").append(c) : f.append(c), (c.jquery || c.nodeType) && b(c).show()); (b.browser.msie || a.forceIframe) && a.showOverlay && k.show(); if (a.fadeIn) g = a.onBlock ? a.onBlock : q, k = a.showOverlay && !c ? g : q, g = c ? g : q, a.showOverlay && h._fadeIn(a.fadeIn, k), c && f._fadeIn(a.fadeIn, g); else if (a.showOverlay && h.show(), c && f.show(), a.onBlock) a.onBlock(); s(1, d, a); e ? (j = f[0], l = b(":input:enabled:visible", j), a.focusInput && setTimeout(t, 20)) : w(f[0], a.centerX, a.centerY); a.timeout && (c = setTimeout(function () { e ? b.unblockUI(a) : b(d).unblock(a) }, a.timeout), b(d).data("blockUI.timeout", c)) } function p(d, a) { var e = d == window, c = b(d), g = c.data("blockUI.history"), i = c.data("blockUI.timeout"); i && (clearTimeout(i), c.removeData("blockUI.timeout")); a = b.extend({}, b.blockUI.defaults, a || {}); s(0, d, a); var h; h = e ? b("body").children().filter(".blockUI").add("body > .blockUI") : b(".blockUI", d); e && (j = l = null); a.fadeOut ? (h.fadeOut(a.fadeOut), setTimeout(function () { n(h, g, a, d) }, a.fadeOut)) : n(h, g, a, d) } function n(d, a, e, c) { d.each(function () { this.parentNode && this.parentNode.removeChild(this) }); if (a && a.el) a.el.style.display = a.display, a.el.style.position = a.position, a.parent && a.parent.appendChild(a.el), b(c).removeData("blockUI.history"); if (typeof e.onUnblock == "function") e.onUnblock(c, e) } function s(d, a, e) { var c = a == window, a = b(a); if (d || !(c && !j || !c && !a.data("blockUI.isBlocked"))) c || a.data("blockUI.isBlocked", d), e.bindEvents && (!d || e.showOverlay) && (d ? b(document).bind("mousedown mouseup keydown keypress", e, u) : b(document).unbind("mousedown mouseup keydown keypress", u)) } function u(d) { if (d.keyCode && d.keyCode == 9 && j && d.data.constrainTabKey) { var a = l, e = d.shiftKey && d.target === a[0]; if (!d.shiftKey && d.target === a[a.length - 1] || e) return setTimeout(function () { t(e) }, 10), false } a = d.data; return b(d.target).parents("div." + a.blockMsgClass).length > 0 ? true : b(d.target).parents().children().filter("div.blockUI").length == 0 } function t(b) { l && (b = l[b === true ? l.length - 1 : 0]) && b.focus() } function w(d, a, e) { var c = d.parentNode, g = d.style, i = (c.offsetWidth - d.offsetWidth) / 2 - (parseInt(b.css(c, "borderLeftWidth")) || 0), d = (c.offsetHeight - d.offsetHeight) / 2 - (parseInt(b.css(c, "borderTopWidth")) || 0); if (a) g.left = i > 0 ? i + "px" : "0"; if (e) g.top = d > 0 ? d + "px" : "0" } if (/1\.(0|1|2)\.(0|1|2)/.test(b.fn.jquery) || /^1.1/.test(b.fn.jquery)) alert("blockUI requires jQuery v1.2.3 or later! You are using v" + b.fn.jquery); else { b.fn._fadeIn = b.fn.fadeIn; var q = function () { }, o = document.documentMode || 0, v = b.browser.msie && (b.browser.version < 8 && !o || o < 8), r = b.browser.msie && /MSIE 6.0/.test(navigator.userAgent) && !o; b.blockUI = function (b) { m(window, b) }; b.unblockUI = function (b) { p(window, b) }; b.growlUI = function (d, a, e, c) { var g = b('<div class="growlUI"></div>'); d && g.append("<h1>" + d + "</h1>"); a && g.append("<h2>" + a + "</h2>"); e == void 0 && (e = 3E3); b.blockUI({ message: g, fadeIn: 700, fadeOut: 1E3, centerY: false, timeout: e, showOverlay: false, onUnblock: c, css: b.blockUI.defaults.growlCSS }) }; b.fn.block = function (d) { return this.unblock({ fadeOut: 0 }).each(function () { if (b.css(this, "position") == "static") this.style.position = "relative"; if (b.browser.msie) this.style.zoom = 1; m(this, d) }) }; b.fn.unblock = function (b) { return this.each(function () { p(this, b) }) }; b.blockUI.version = 2.38; b.blockUI.defaults = { message: "<h1>Please wait...</h1>", title: null, draggable: true, theme: false, css: { padding: 0, margin: 0, width: "30%", top: "40%", left: "35%", textAlign: "center", color: "#000", border: "3px solid #aaa", backgroundColor: "#fff", cursor: "wait" }, themedCSS: { width: "30%", top: "40%", left: "35%" }, overlayCSS: { backgroundColor: "#000", opacity: 0.6, cursor: "wait" }, growlCSS: { width: "350px", top: "10px", left: "", right: "10px", border: "none", padding: "5px", opacity: 0.6, cursor: "default", color: "#fff", backgroundColor: "#000", "-webkit-border-radius": "10px", "-moz-border-radius": "10px", "border-radius": "10px" }, iframeSrc: /^https/i.test(window.location.href || "") ? "javascript:false" : "about:blank", forceIframe: false, baseZ: 1E3, centerX: true, centerY: true, allowBodyStretch: true, bindEvents: true, constrainTabKey: true, fadeIn: 200, fadeOut: 400, timeout: 0, showOverlay: true, focusInput: true, applyPlatformOpacityRules: true, onBlock: null, onUnblock: null, quirksmodeOffsetHack: 4, blockMsgClass: "blockMsg" }; var j = null, l = [] } })(jQuery);


/* jRumble v1.3 - http://jackrugile.com/jrumble - MIT License */
(function(f){f.fn.jrumble=function(g){var a=f.extend({x:2,y:2,rotation:1,speed:15,opacity:false,opacityMin:0.5},g);return this.each(function(){var b=f(this),h=a.x*2,i=a.y*2,k=a.rotation*2,g=a.speed===0?1:a.speed,m=a.opacity,n=a.opacityMin,l,j,o=function(){var e=Math.floor(Math.random()*(h+1))-h/2,a=Math.floor(Math.random()*(i+1))-i/2,c=Math.floor(Math.random()*(k+1))-k/2,d=m?Math.random()+n:1,e=e===0&&h!==0?Math.random()<0.5?1:-1:e,a=a===0&&i!==0?Math.random()<0.5?1:-1:a;b.css("display")==="inline"&&(l=true,b.css("display","inline-block"));b.css({position:"relative",left:e+"px",top:a+"px","-ms-filter":"progid:DXImageTransform.Microsoft.Alpha(Opacity="+d*100+")",filter:"alpha(opacity="+d*100+")","-moz-opacity":d,"-khtml-opacity":d,opacity:d,"-webkit-transform":"rotate("+c+"deg)","-moz-transform":"rotate("+c+"deg)","-ms-transform":"rotate("+c+"deg)","-o-transform":"rotate("+c+"deg)",transform:"rotate("+c+"deg)"})},p={left:0,top:0,"-ms-filter":"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)",filter:"alpha(opacity=100)","-moz-opacity":1,"-khtml-opacity":1,opacity:1,"-webkit-transform":"rotate(0deg)","-moz-transform":"rotate(0deg)","-ms-transform":"rotate(0deg)","-o-transform":"rotate(0deg)",transform:"rotate(0deg)"};b.bind({startRumble:function(a){a.stopPropagation();clearInterval(j);j=setInterval(o,g)},stopRumble:function(a){a.stopPropagation();clearInterval(j);l&&b.css("display","inline");b.css(p)}})})}})(jQuery);


/* EKS */
	

    (function ($) { $.fn.konami = function (fn, params) { params = $.extend({}, $.fn.konami.params, params); this.each(function () { var tgt = $(this); tgt.bind("konami", fn).bind("keyup", function (event) { $.fn.konami.checkCode(event, params, tgt) }) }); return this }; $.fn.konami.params = { "code": [38, 38, 40, 40, 37, 39, 37, 39, 66, 65], "step": 0 }; $.fn.konami.checkCode = function (event, params, tgt) { if (event.keyCode == params.code[params.step]) params.step++; else params.step = 0; if (params.step == params.code.length) { tgt.trigger("konami"); params.step = 0 } } })(jQuery); 
	
	$(document).ready(function () { $(document).konami(function () { $("p, li, span, label, img, a, h1 *, h2*, input, .padding, #section-name *, td, #RelatedContent*, dt, dd, legend*").jrumble(); var demoStart = function () { $("p, li, span, label, img, a, h1 *, h2*, input, .padding, #section-name *, td, #RelatedContent*, dt, dd, legend*").trigger("startRumble"); }; var demoStop = function () { $("p, li, span, label, img, a, h1 *, h2*, input, .padding, #section-name *, td, #RelatedContent*, dt, dd, legend*").trigger("stopRumble"); setTimeout(demoStart, 300);  }; demoStart(); }, { "code": [83,72,65,75,69,77,69,78,79,87] }) });
	
